blob: 053c9552ffd94c8bad8fab58be06ffab8dc55a09 [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/*
Steven Rostedt5963e312012-05-30 11:54:53 -0400194 * When dynamic function tracer is enabled it will add a breakpoint
195 * to all locations that it is about to modify, sync CPUs, update
196 * all the code, sync CPUs, then remove the breakpoints. In this time
197 * if lockdep is enabled, it might jump back into the debug handler
198 * outside the updating of the IST protection. (TRACE_IRQS_ON/OFF).
199 *
200 * We need to change the IDT table before calling TRACE_IRQS_ON/OFF to
201 * make sure the stack pointer does not get reset back to the top
202 * of the debug stack, and instead just reuses the current stack.
203 */
204#if defined(CONFIG_DYNAMIC_FTRACE) && defined(CONFIG_TRACE_IRQFLAGS)
205
206.macro TRACE_IRQS_OFF_DEBUG
207 call debug_stack_set_zero
208 TRACE_IRQS_OFF
209 call debug_stack_reset
210.endm
211
212.macro TRACE_IRQS_ON_DEBUG
213 call debug_stack_set_zero
214 TRACE_IRQS_ON
215 call debug_stack_reset
216.endm
217
218.macro TRACE_IRQS_IRETQ_DEBUG offset=ARGOFFSET
219 bt $9,EFLAGS-\offset(%rsp) /* interrupts off? */
220 jnc 1f
221 TRACE_IRQS_ON_DEBUG
2221:
223.endm
224
225#else
226# define TRACE_IRQS_OFF_DEBUG TRACE_IRQS_OFF
227# define TRACE_IRQS_ON_DEBUG TRACE_IRQS_ON
228# define TRACE_IRQS_IRETQ_DEBUG TRACE_IRQS_IRETQ
229#endif
230
231/*
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100232 * C code is not supposed to know about undefined top of stack. Every time
233 * a C function with an pt_regs argument is called from the SYSCALL based
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 * fast path FIXUP_TOP_OF_STACK is needed.
235 * RESTORE_TOP_OF_STACK syncs the syscall state after any possible ptregs
236 * manipulation.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100237 */
238
239 /* %rsp:at FRAMEEND */
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100240 .macro FIXUP_TOP_OF_STACK tmp offset=0
Brian Gerst3d1e42a2009-01-19 00:38:58 +0900241 movq PER_CPU_VAR(old_rsp),\tmp
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100242 movq \tmp,RSP+\offset(%rsp)
243 movq $__USER_DS,SS+\offset(%rsp)
244 movq $__USER_CS,CS+\offset(%rsp)
245 movq $-1,RCX+\offset(%rsp)
246 movq R11+\offset(%rsp),\tmp /* get eflags */
247 movq \tmp,EFLAGS+\offset(%rsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 .endm
249
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100250 .macro RESTORE_TOP_OF_STACK tmp offset=0
251 movq RSP+\offset(%rsp),\tmp
Brian Gerst3d1e42a2009-01-19 00:38:58 +0900252 movq \tmp,PER_CPU_VAR(old_rsp)
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100253 movq EFLAGS+\offset(%rsp),\tmp
254 movq \tmp,R11+\offset(%rsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 .endm
256
257 .macro FAKE_STACK_FRAME child_rip
258 /* push in order ss, rsp, eflags, cs, rip */
259 xorl %eax, %eax
Jan Beulichdf5d1872010-09-02 14:07:16 +0100260 pushq_cfi $__KERNEL_DS /* ss */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 /*CFI_REL_OFFSET ss,0*/
Jan Beulichdf5d1872010-09-02 14:07:16 +0100262 pushq_cfi %rax /* rsp */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 CFI_REL_OFFSET rsp,0
Seiichi Ikarashi1cf83432011-12-06 17:58:14 +0900264 pushq_cfi $(X86_EFLAGS_IF|X86_EFLAGS_BIT1) /* eflags - interrupts on */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 /*CFI_REL_OFFSET rflags,0*/
Jan Beulichdf5d1872010-09-02 14:07:16 +0100266 pushq_cfi $__KERNEL_CS /* cs */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 /*CFI_REL_OFFSET cs,0*/
Jan Beulichdf5d1872010-09-02 14:07:16 +0100268 pushq_cfi \child_rip /* rip */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 CFI_REL_OFFSET rip,0
Jan Beulichdf5d1872010-09-02 14:07:16 +0100270 pushq_cfi %rax /* orig rax */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 .endm
272
273 .macro UNFAKE_STACK_FRAME
274 addq $8*6, %rsp
275 CFI_ADJUST_CFA_OFFSET -(6*8)
276 .endm
277
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100278/*
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100279 * initial frame state for interrupts (and exceptions without error code)
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100280 */
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100281 .macro EMPTY_FRAME start=1 offset=0
282 .if \start
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100283 CFI_STARTPROC simple
284 CFI_SIGNAL_FRAME
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100285 CFI_DEF_CFA rsp,8+\offset
286 .else
287 CFI_DEF_CFA_OFFSET 8+\offset
288 .endif
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100289 .endm
290
291/*
292 * initial frame state for interrupts (and exceptions without error code)
293 */
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100294 .macro INTR_FRAME start=1 offset=0
Ingo Molnare8a0e272008-11-21 15:11:32 +0100295 EMPTY_FRAME \start, SS+8+\offset-RIP
296 /*CFI_REL_OFFSET ss, SS+\offset-RIP*/
297 CFI_REL_OFFSET rsp, RSP+\offset-RIP
298 /*CFI_REL_OFFSET rflags, EFLAGS+\offset-RIP*/
299 /*CFI_REL_OFFSET cs, CS+\offset-RIP*/
300 CFI_REL_OFFSET rip, RIP+\offset-RIP
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100301 .endm
302
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100303/*
304 * initial frame state for exceptions with error code (and interrupts
305 * with vector already pushed)
306 */
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100307 .macro XCPT_FRAME start=1 offset=0
Ingo Molnare8a0e272008-11-21 15:11:32 +0100308 INTR_FRAME \start, RIP+\offset-ORIG_RAX
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100309 /*CFI_REL_OFFSET orig_rax, ORIG_RAX-ORIG_RAX*/
310 .endm
311
312/*
313 * frame that enables calling into C.
314 */
315 .macro PARTIAL_FRAME start=1 offset=0
Ingo Molnare8a0e272008-11-21 15:11:32 +0100316 XCPT_FRAME \start, ORIG_RAX+\offset-ARGOFFSET
317 CFI_REL_OFFSET rdi, RDI+\offset-ARGOFFSET
318 CFI_REL_OFFSET rsi, RSI+\offset-ARGOFFSET
319 CFI_REL_OFFSET rdx, RDX+\offset-ARGOFFSET
320 CFI_REL_OFFSET rcx, RCX+\offset-ARGOFFSET
321 CFI_REL_OFFSET rax, RAX+\offset-ARGOFFSET
322 CFI_REL_OFFSET r8, R8+\offset-ARGOFFSET
323 CFI_REL_OFFSET r9, R9+\offset-ARGOFFSET
324 CFI_REL_OFFSET r10, R10+\offset-ARGOFFSET
325 CFI_REL_OFFSET r11, R11+\offset-ARGOFFSET
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100326 .endm
327
328/*
329 * frame that enables passing a complete pt_regs to a C function.
330 */
331 .macro DEFAULT_FRAME start=1 offset=0
Ingo Molnare8a0e272008-11-21 15:11:32 +0100332 PARTIAL_FRAME \start, R11+\offset-R15
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100333 CFI_REL_OFFSET rbx, RBX+\offset
334 CFI_REL_OFFSET rbp, RBP+\offset
335 CFI_REL_OFFSET r12, R12+\offset
336 CFI_REL_OFFSET r13, R13+\offset
337 CFI_REL_OFFSET r14, R14+\offset
338 CFI_REL_OFFSET r15, R15+\offset
339 .endm
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100340
341/* save partial stack frame */
Frederic Weisbecker18718532011-07-01 01:51:22 +0200342 .macro SAVE_ARGS_IRQ
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100343 cld
Frederic Weisbecker18718532011-07-01 01:51:22 +0200344 /* start from rbp in pt_regs and jump over */
345 movq_cfi rdi, RDI-RBP
346 movq_cfi rsi, RSI-RBP
347 movq_cfi rdx, RDX-RBP
348 movq_cfi rcx, RCX-RBP
349 movq_cfi rax, RAX-RBP
350 movq_cfi r8, R8-RBP
351 movq_cfi r9, R9-RBP
352 movq_cfi r10, R10-RBP
353 movq_cfi r11, R11-RBP
Ingo Molnar14ae22b2008-11-21 15:20:47 +0100354
Frederic Weisbeckera2bbe752011-07-02 16:52:45 +0200355 /* Save rbp so that we can unwind from get_irq_regs() */
356 movq_cfi rbp, 0
357
358 /* Save previous stack value */
359 movq %rsp, %rsi
Frederic Weisbecker3b99a3ef2011-07-01 02:25:17 +0200360
361 leaq -RBP(%rsp),%rdi /* arg1 for handler */
Jan Beulich69466462012-02-24 11:55:01 +0000362 testl $3, CS-RBP(%rsi)
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100363 je 1f
364 SWAPGS
365 /*
Brian Gerst56895532009-01-19 00:38:58 +0900366 * irq_count is used to check if a CPU is already on an interrupt stack
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100367 * or not. While this is essentially redundant with preempt_count it is
368 * a little cheaper to use a separate counter in the PDA (short of
369 * moving irq_enter into assembly, which would be too much work)
370 */
Brian Gerst56895532009-01-19 00:38:58 +09003711: incl PER_CPU_VAR(irq_count)
Jan Beulich69466462012-02-24 11:55:01 +0000372 cmovzq PER_CPU_VAR(irq_stack_ptr),%rsp
Jan Beulicheab9e612011-09-28 16:57:52 +0100373 CFI_DEF_CFA_REGISTER rsi
Frederic Weisbeckera2bbe752011-07-02 16:52:45 +0200374
Jan Beulich69466462012-02-24 11:55:01 +0000375 /* Store previous stack value */
Frederic Weisbeckera2bbe752011-07-02 16:52:45 +0200376 pushq %rsi
Jan Beulicheab9e612011-09-28 16:57:52 +0100377 CFI_ESCAPE 0x0f /* DW_CFA_def_cfa_expression */, 6, \
378 0x77 /* DW_OP_breg7 */, 0, \
379 0x06 /* DW_OP_deref */, \
380 0x08 /* DW_OP_const1u */, SS+8-RBP, \
381 0x22 /* DW_OP_plus */
Frederic Weisbeckera2bbe752011-07-02 16:52:45 +0200382 /* We entered an interrupt context - irqs are off: */
383 TRACE_IRQS_OFF
Frederic Weisbecker18718532011-07-01 01:51:22 +0200384 .endm
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100385
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100386ENTRY(save_rest)
387 PARTIAL_FRAME 1 REST_SKIP+8
388 movq 5*8+16(%rsp), %r11 /* save return address */
389 movq_cfi rbx, RBX+16
390 movq_cfi rbp, RBP+16
391 movq_cfi r12, R12+16
392 movq_cfi r13, R13+16
393 movq_cfi r14, R14+16
394 movq_cfi r15, R15+16
395 movq %r11, 8(%rsp) /* return address */
396 FIXUP_TOP_OF_STACK %r11, 16
397 ret
398 CFI_ENDPROC
399END(save_rest)
400
Alexander van Heukelume2f6bc22008-11-21 16:43:18 +0100401/* save complete stack frame */
Jan Beulichc2810182009-03-12 10:38:55 +0000402 .pushsection .kprobes.text, "ax"
Alexander van Heukelume2f6bc22008-11-21 16:43:18 +0100403ENTRY(save_paranoid)
404 XCPT_FRAME 1 RDI+8
405 cld
406 movq_cfi rdi, RDI+8
407 movq_cfi rsi, RSI+8
408 movq_cfi rdx, RDX+8
409 movq_cfi rcx, RCX+8
410 movq_cfi rax, RAX+8
411 movq_cfi r8, R8+8
412 movq_cfi r9, R9+8
413 movq_cfi r10, R10+8
414 movq_cfi r11, R11+8
415 movq_cfi rbx, RBX+8
416 movq_cfi rbp, RBP+8
417 movq_cfi r12, R12+8
418 movq_cfi r13, R13+8
419 movq_cfi r14, R14+8
420 movq_cfi r15, R15+8
421 movl $1,%ebx
422 movl $MSR_GS_BASE,%ecx
423 rdmsr
424 testl %edx,%edx
425 js 1f /* negative -> in kernel */
426 SWAPGS
427 xorl %ebx,%ebx
4281: ret
429 CFI_ENDPROC
430END(save_paranoid)
Jan Beulichc2810182009-03-12 10:38:55 +0000431 .popsection
Alexander van Heukelume2f6bc22008-11-21 16:43:18 +0100432
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433/*
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100434 * A newly forked process directly context switches into this address.
435 *
436 * rdi: prev task we switched from
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100437 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438ENTRY(ret_from_fork)
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100439 DEFAULT_FRAME
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100440
Benjamin LaHaise7106a5a2009-01-10 23:00:22 -0500441 LOCK ; btr $TIF_FORK,TI_flags(%r8)
442
Jan Beulichdf5d1872010-09-02 14:07:16 +0100443 pushq_cfi kernel_eflags(%rip)
444 popfq_cfi # reset kernel eflags
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100445
446 call schedule_tail # rdi: 'prev' task parameter
447
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 GET_THREAD_INFO(%rcx)
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100449
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 RESTORE_REST
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100451
452 testl $3, CS-ARGOFFSET(%rsp) # from kernel_thread?
Al Viro7076aad2012-09-10 16:44:54 -0400453 jz 1f
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100454
455 testl $_TIF_IA32, TI_flags(%rcx) # 32-bit compat task needs IRET
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 jnz int_ret_from_sys_call
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100457
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100458 RESTORE_TOP_OF_STACK %rdi, -ARGOFFSET
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100459 jmp ret_from_sys_call # go to the SYSRET fastpath
460
Al Viro7076aad2012-09-10 16:44:54 -04004611:
462 subq $REST_SKIP, %rsp # move the stack pointer back
463 CFI_ADJUST_CFA_OFFSET REST_SKIP
464 movq %rbp, %rdi
465 call *%rbx
466 # exit
467 mov %eax, %edi
468 call do_exit
469 ud2 # padding for call trace
470
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200472END(ret_from_fork)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
474/*
Lucas De Marchi0d2eb442011-03-17 16:24:16 -0300475 * System call entry. Up to 6 arguments in registers are supported.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 *
477 * SYSCALL does not save anything on the stack and does not change the
478 * stack pointer.
479 */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100480
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481/*
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100482 * Register setup:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 * rax system call number
484 * rdi arg0
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100485 * rcx return address for syscall/sysret, C arg3
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 * rsi arg1
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100487 * rdx arg2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 * r10 arg3 (--> moved to rcx for C)
489 * r8 arg4
490 * r9 arg5
491 * r11 eflags for syscall/sysret, temporary for C
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100492 * r12-r15,rbp,rbx saved by C code, not touched.
493 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 * Interrupts are off on entry.
495 * Only called from user space.
496 *
497 * XXX if we had a free scratch register we could save the RSP into the stack frame
498 * and report it properly in ps. Unfortunately we haven't.
Andi Kleen7bf36bb2006-04-07 19:50:00 +0200499 *
500 * When user can change the frames always force IRET. That is because
501 * it deals with uncanonical addresses better. SYSRET has trouble
502 * with them due to bugs in both AMD and Intel CPUs.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100503 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
505ENTRY(system_call)
Jan Beulich7effaa82005-09-12 18:49:24 +0200506 CFI_STARTPROC simple
Jan Beulichadf14232006-09-26 10:52:41 +0200507 CFI_SIGNAL_FRAME
Brian Gerst9af45652009-01-19 00:38:58 +0900508 CFI_DEF_CFA rsp,KERNEL_STACK_OFFSET
Jan Beulich7effaa82005-09-12 18:49:24 +0200509 CFI_REGISTER rip,rcx
510 /*CFI_REGISTER rflags,r11*/
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100511 SWAPGS_UNSAFE_STACK
512 /*
513 * A hypervisor implementation might want to use a label
514 * after the swapgs, so that it can do the swapgs
515 * for the guest and jump here on syscall.
516 */
Jan Beulichf6b2bc82011-11-29 11:24:10 +0000517GLOBAL(system_call_after_swapgs)
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100518
Brian Gerst3d1e42a2009-01-19 00:38:58 +0900519 movq %rsp,PER_CPU_VAR(old_rsp)
Brian Gerst9af45652009-01-19 00:38:58 +0900520 movq PER_CPU_VAR(kernel_stack),%rsp
Ingo Molnar2601e642006-07-03 00:24:45 -0700521 /*
522 * No need to follow this irqs off/on section - it's straight
523 * and short:
524 */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100525 ENABLE_INTERRUPTS(CLBR_NONE)
Borislav Petkovcac0e0a2011-05-31 22:21:52 +0200526 SAVE_ARGS 8,0
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100527 movq %rax,ORIG_RAX-ARGOFFSET(%rsp)
Jan Beulich7effaa82005-09-12 18:49:24 +0200528 movq %rcx,RIP-ARGOFFSET(%rsp)
529 CFI_REL_OFFSET rip,RIP-ARGOFFSET
Jan Beulich46db09d2011-11-29 11:17:45 +0000530 testl $_TIF_WORK_SYSCALL_ENTRY,TI_flags+THREAD_INFO(%rsp,RIP-ARGOFFSET)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 jnz tracesys
Roland McGrath86a1c342008-06-23 15:37:04 -0700532system_call_fastpath:
H. Peter Anvinfca460f2012-02-19 07:56:26 -0800533#if __SYSCALL_MASK == ~0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 cmpq $__NR_syscall_max,%rax
H. Peter Anvinfca460f2012-02-19 07:56:26 -0800535#else
536 andl $__SYSCALL_MASK,%eax
537 cmpl $__NR_syscall_max,%eax
538#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 ja badsys
540 movq %r10,%rcx
541 call *sys_call_table(,%rax,8) # XXX: rip relative
542 movq %rax,RAX-ARGOFFSET(%rsp)
543/*
544 * Syscall return path ending with SYSRET (fast path)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100545 * Has incomplete stack frame and undefined top of stack.
546 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547ret_from_sys_call:
Andi Kleen11b854b2005-04-16 15:25:02 -0700548 movl $_TIF_ALLWORK_MASK,%edi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 /* edi: flagmask */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100550sysret_check:
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200551 LOCKDEP_SYS_EXIT
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100552 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700553 TRACE_IRQS_OFF
Jan Beulich46db09d2011-11-29 11:17:45 +0000554 movl TI_flags+THREAD_INFO(%rsp,RIP-ARGOFFSET),%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 andl %edi,%edx
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100556 jnz sysret_careful
Jan Beulichbcddc012006-12-07 02:14:02 +0100557 CFI_REMEMBER_STATE
Ingo Molnar2601e642006-07-03 00:24:45 -0700558 /*
559 * sysretq will re-enable interrupts:
560 */
561 TRACE_IRQS_ON
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 movq RIP-ARGOFFSET(%rsp),%rcx
Jan Beulich7effaa82005-09-12 18:49:24 +0200563 CFI_REGISTER rip,rcx
Borislav Petkov838feb42011-05-31 22:21:53 +0200564 RESTORE_ARGS 1,-ARG_SKIP,0
Jan Beulich7effaa82005-09-12 18:49:24 +0200565 /*CFI_REGISTER rflags,r11*/
Brian Gerst3d1e42a2009-01-19 00:38:58 +0900566 movq PER_CPU_VAR(old_rsp), %rsp
Jeremy Fitzhardinge2be29982008-06-25 00:19:28 -0400567 USERGS_SYSRET64
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
Jan Beulichbcddc012006-12-07 02:14:02 +0100569 CFI_RESTORE_STATE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 /* Handle reschedules */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100571 /* edx: work, edi: workmask */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572sysret_careful:
573 bt $TIF_NEED_RESCHED,%edx
574 jnc sysret_signal
Ingo Molnar2601e642006-07-03 00:24:45 -0700575 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100576 ENABLE_INTERRUPTS(CLBR_NONE)
Jan Beulichdf5d1872010-09-02 14:07:16 +0100577 pushq_cfi %rdi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 call schedule
Jan Beulichdf5d1872010-09-02 14:07:16 +0100579 popq_cfi %rdi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 jmp sysret_check
581
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100582 /* Handle a signal */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583sysret_signal:
Ingo Molnar2601e642006-07-03 00:24:45 -0700584 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100585 ENABLE_INTERRUPTS(CLBR_NONE)
Roland McGrath86a1c342008-06-23 15:37:04 -0700586#ifdef CONFIG_AUDITSYSCALL
587 bt $TIF_SYSCALL_AUDIT,%edx
588 jc sysret_audit
589#endif
Roland McGrathb60e7142009-09-22 16:46:34 -0700590 /*
591 * We have a signal, or exit tracing or single-step.
592 * These all wind up with the iret return path anyway,
593 * so just join that path right now.
594 */
595 FIXUP_TOP_OF_STACK %r11, -ARGOFFSET
596 jmp int_check_syscall_exit_work
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100597
Jan Beulich7effaa82005-09-12 18:49:24 +0200598badsys:
599 movq $-ENOSYS,RAX-ARGOFFSET(%rsp)
600 jmp ret_from_sys_call
601
Roland McGrath86a1c342008-06-23 15:37:04 -0700602#ifdef CONFIG_AUDITSYSCALL
603 /*
604 * Fast path for syscall audit without full syscall trace.
Eric Parisb05d8442012-01-03 14:23:06 -0500605 * We just call __audit_syscall_entry() directly, and then
Roland McGrath86a1c342008-06-23 15:37:04 -0700606 * jump back to the normal fast path.
607 */
608auditsys:
609 movq %r10,%r9 /* 6th arg: 4th syscall arg */
610 movq %rdx,%r8 /* 5th arg: 3rd syscall arg */
611 movq %rsi,%rcx /* 4th arg: 2nd syscall arg */
612 movq %rdi,%rdx /* 3rd arg: 1st syscall arg */
613 movq %rax,%rsi /* 2nd arg: syscall number */
614 movl $AUDIT_ARCH_X86_64,%edi /* 1st arg: audit arch */
Eric Parisb05d8442012-01-03 14:23:06 -0500615 call __audit_syscall_entry
Roland McGrath86a1c342008-06-23 15:37:04 -0700616 LOAD_ARGS 0 /* reload call-clobbered registers */
617 jmp system_call_fastpath
618
619 /*
Eric Parisd7e75282012-01-03 14:23:06 -0500620 * Return fast path for syscall audit. Call __audit_syscall_exit()
Roland McGrath86a1c342008-06-23 15:37:04 -0700621 * directly and then jump back to the fast path with TIF_SYSCALL_AUDIT
622 * masked off.
623 */
624sysret_audit:
Roland McGrath03275592010-07-21 17:44:12 -0700625 movq RAX-ARGOFFSET(%rsp),%rsi /* second arg, syscall return value */
Eric Parisd7e75282012-01-03 14:23:06 -0500626 cmpq $-MAX_ERRNO,%rsi /* is it < -MAX_ERRNO? */
627 setbe %al /* 1 if so, 0 if not */
Roland McGrath86a1c342008-06-23 15:37:04 -0700628 movzbl %al,%edi /* zero-extend that into %edi */
Eric Parisd7e75282012-01-03 14:23:06 -0500629 call __audit_syscall_exit
Roland McGrath86a1c342008-06-23 15:37:04 -0700630 movl $(_TIF_ALLWORK_MASK & ~_TIF_SYSCALL_AUDIT),%edi
631 jmp sysret_check
632#endif /* CONFIG_AUDITSYSCALL */
633
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 /* Do syscall tracing */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100635tracesys:
Roland McGrath86a1c342008-06-23 15:37:04 -0700636#ifdef CONFIG_AUDITSYSCALL
Jan Beulich46db09d2011-11-29 11:17:45 +0000637 testl $(_TIF_WORK_SYSCALL_ENTRY & ~_TIF_SYSCALL_AUDIT),TI_flags+THREAD_INFO(%rsp,RIP-ARGOFFSET)
Roland McGrath86a1c342008-06-23 15:37:04 -0700638 jz auditsys
639#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 SAVE_REST
Roland McGratha31f8dd2008-03-16 21:59:11 -0700641 movq $-ENOSYS,RAX(%rsp) /* ptrace can change this for a bad syscall */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 FIXUP_TOP_OF_STACK %rdi
643 movq %rsp,%rdi
644 call syscall_trace_enter
Roland McGrathd4d67152008-07-09 02:38:07 -0700645 /*
646 * Reload arg registers from stack in case ptrace changed them.
647 * We don't reload %rax because syscall_trace_enter() returned
648 * the value it wants us to use in the table lookup.
649 */
650 LOAD_ARGS ARGOFFSET, 1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 RESTORE_REST
H. Peter Anvinfca460f2012-02-19 07:56:26 -0800652#if __SYSCALL_MASK == ~0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 cmpq $__NR_syscall_max,%rax
H. Peter Anvinfca460f2012-02-19 07:56:26 -0800654#else
655 andl $__SYSCALL_MASK,%eax
656 cmpl $__NR_syscall_max,%eax
657#endif
Roland McGratha31f8dd2008-03-16 21:59:11 -0700658 ja int_ret_from_sys_call /* RAX(%rsp) set to -ENOSYS above */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 movq %r10,%rcx /* fixup for C */
660 call *sys_call_table(,%rax,8)
Roland McGratha31f8dd2008-03-16 21:59:11 -0700661 movq %rax,RAX-ARGOFFSET(%rsp)
Andi Kleen7bf36bb2006-04-07 19:50:00 +0200662 /* Use IRET because user could have changed frame */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100663
664/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 * Syscall return path ending with IRET.
666 * Has correct top of stack, but partial stack frame.
Jan Beulichbcddc012006-12-07 02:14:02 +0100667 */
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +0300668GLOBAL(int_ret_from_sys_call)
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100669 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700670 TRACE_IRQS_OFF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 movl $_TIF_ALLWORK_MASK,%edi
672 /* edi: mask to check */
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +0300673GLOBAL(int_with_check)
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200674 LOCKDEP_SYS_EXIT_IRQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 GET_THREAD_INFO(%rcx)
Glauber Costa26ccb8a2008-06-24 11:19:35 -0300676 movl TI_flags(%rcx),%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 andl %edi,%edx
678 jnz int_careful
Glauber Costa26ccb8a2008-06-24 11:19:35 -0300679 andl $~TS_COMPAT,TI_status(%rcx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 jmp retint_swapgs
681
682 /* Either reschedule or signal or syscall exit tracking needed. */
683 /* First do a reschedule test. */
684 /* edx: work, edi: workmask */
685int_careful:
686 bt $TIF_NEED_RESCHED,%edx
687 jnc int_very_careful
Ingo Molnar2601e642006-07-03 00:24:45 -0700688 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100689 ENABLE_INTERRUPTS(CLBR_NONE)
Jan Beulichdf5d1872010-09-02 14:07:16 +0100690 pushq_cfi %rdi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 call schedule
Jan Beulichdf5d1872010-09-02 14:07:16 +0100692 popq_cfi %rdi
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100693 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700694 TRACE_IRQS_OFF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 jmp int_with_check
696
697 /* handle signals and tracing -- both require a full stack frame */
698int_very_careful:
Ingo Molnar2601e642006-07-03 00:24:45 -0700699 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100700 ENABLE_INTERRUPTS(CLBR_NONE)
Roland McGrathb60e7142009-09-22 16:46:34 -0700701int_check_syscall_exit_work:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 SAVE_REST
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100703 /* Check for syscall exit trace */
Roland McGrathd4d67152008-07-09 02:38:07 -0700704 testl $_TIF_WORK_SYSCALL_EXIT,%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 jz int_signal
Jan Beulichdf5d1872010-09-02 14:07:16 +0100706 pushq_cfi %rdi
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100707 leaq 8(%rsp),%rdi # &ptregs -> arg1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 call syscall_trace_leave
Jan Beulichdf5d1872010-09-02 14:07:16 +0100709 popq_cfi %rdi
Roland McGrathd4d67152008-07-09 02:38:07 -0700710 andl $~(_TIF_WORK_SYSCALL_EXIT|_TIF_SYSCALL_EMU),%edi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 jmp int_restore_rest
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100712
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713int_signal:
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100714 testl $_TIF_DO_NOTIFY_MASK,%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 jz 1f
716 movq %rsp,%rdi # &ptregs -> arg1
717 xorl %esi,%esi # oldset -> arg2
718 call do_notify_resume
Roland McGratheca91e72008-07-10 14:50:39 -07007191: movl $_TIF_WORK_MASK,%edi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720int_restore_rest:
721 RESTORE_REST
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100722 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700723 TRACE_IRQS_OFF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 jmp int_with_check
725 CFI_ENDPROC
Jan Beulichbcddc012006-12-07 02:14:02 +0100726END(system_call)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100727
728/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 * Certain special system calls that need to save a complete full stack frame.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100730 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 .macro PTREGSCALL label,func,arg
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100732ENTRY(\label)
733 PARTIAL_FRAME 1 8 /* offset 8: return address */
734 subq $REST_SKIP, %rsp
735 CFI_ADJUST_CFA_OFFSET REST_SKIP
736 call save_rest
737 DEFAULT_FRAME 0 8 /* offset 8: return address */
738 leaq 8(%rsp), \arg /* pt_regs pointer */
739 call \func
740 jmp ptregscall_common
741 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200742END(\label)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 .endm
744
745 PTREGSCALL stub_clone, sys_clone, %r8
746 PTREGSCALL stub_fork, sys_fork, %rdi
747 PTREGSCALL stub_vfork, sys_vfork, %rdi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 PTREGSCALL stub_sigaltstack, sys_sigaltstack, %rdx
749 PTREGSCALL stub_iopl, sys_iopl, %rsi
750
751ENTRY(ptregscall_common)
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100752 DEFAULT_FRAME 1 8 /* offset 8: return address */
753 RESTORE_TOP_OF_STACK %r11, 8
754 movq_cfi_restore R15+8, r15
755 movq_cfi_restore R14+8, r14
756 movq_cfi_restore R13+8, r13
757 movq_cfi_restore R12+8, r12
758 movq_cfi_restore RBP+8, rbp
759 movq_cfi_restore RBX+8, rbx
760 ret $REST_SKIP /* pop extended registers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200762END(ptregscall_common)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100763
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764ENTRY(stub_execve)
765 CFI_STARTPROC
Jan Beuliche6b04b62010-09-02 13:52:45 +0100766 addq $8, %rsp
767 PARTIAL_FRAME 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 SAVE_REST
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 FIXUP_TOP_OF_STACK %r11
770 call sys_execve
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 RESTORE_TOP_OF_STACK %r11
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 movq %rax,RAX(%rsp)
773 RESTORE_REST
774 jmp int_ret_from_sys_call
775 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200776END(stub_execve)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100777
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778/*
779 * sigreturn is special because it needs to restore all registers on return.
780 * This cannot be done with SYSRET, so use the IRET return path instead.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100781 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782ENTRY(stub_rt_sigreturn)
783 CFI_STARTPROC
Jan Beulich7effaa82005-09-12 18:49:24 +0200784 addq $8, %rsp
Jan Beuliche6b04b62010-09-02 13:52:45 +0100785 PARTIAL_FRAME 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 SAVE_REST
787 movq %rsp,%rdi
788 FIXUP_TOP_OF_STACK %r11
789 call sys_rt_sigreturn
790 movq %rax,RAX(%rsp) # fixme, this could be done at the higher layer
791 RESTORE_REST
792 jmp int_ret_from_sys_call
793 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200794END(stub_rt_sigreturn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795
H. Peter Anvinc5a37392012-02-19 09:41:09 -0800796#ifdef CONFIG_X86_X32_ABI
797 PTREGSCALL stub_x32_sigaltstack, sys32_sigaltstack, %rdx
798
799ENTRY(stub_x32_rt_sigreturn)
800 CFI_STARTPROC
801 addq $8, %rsp
802 PARTIAL_FRAME 0
803 SAVE_REST
804 movq %rsp,%rdi
805 FIXUP_TOP_OF_STACK %r11
806 call sys32_x32_rt_sigreturn
807 movq %rax,RAX(%rsp) # fixme, this could be done at the higher layer
808 RESTORE_REST
809 jmp int_ret_from_sys_call
810 CFI_ENDPROC
811END(stub_x32_rt_sigreturn)
812
H. Peter Anvind1a797f2012-02-19 10:06:34 -0800813ENTRY(stub_x32_execve)
814 CFI_STARTPROC
815 addq $8, %rsp
816 PARTIAL_FRAME 0
817 SAVE_REST
818 FIXUP_TOP_OF_STACK %r11
Al Viro6783eaa22012-08-02 23:05:11 +0400819 call compat_sys_execve
H. Peter Anvind1a797f2012-02-19 10:06:34 -0800820 RESTORE_TOP_OF_STACK %r11
821 movq %rax,RAX(%rsp)
822 RESTORE_REST
823 jmp int_ret_from_sys_call
824 CFI_ENDPROC
825END(stub_x32_execve)
826
H. Peter Anvinc5a37392012-02-19 09:41:09 -0800827#endif
828
Jan Beulich7effaa82005-09-12 18:49:24 +0200829/*
H. Peter Anvin939b7872008-11-11 13:51:52 -0800830 * Build the entry stubs and pointer table with some assembler magic.
831 * We pack 7 stubs into a single 32-byte chunk, which will fit in a
832 * single cache line on all modern x86 implementations.
833 */
834 .section .init.rodata,"a"
835ENTRY(interrupt)
Jiri Olsaea714542011-03-07 19:10:39 +0100836 .section .entry.text
H. Peter Anvin939b7872008-11-11 13:51:52 -0800837 .p2align 5
838 .p2align CONFIG_X86_L1_CACHE_SHIFT
839ENTRY(irq_entries_start)
840 INTR_FRAME
841vector=FIRST_EXTERNAL_VECTOR
842.rept (NR_VECTORS-FIRST_EXTERNAL_VECTOR+6)/7
843 .balign 32
844 .rept 7
845 .if vector < NR_VECTORS
H. Peter Anvin86655962008-11-12 10:27:35 -0800846 .if vector <> FIRST_EXTERNAL_VECTOR
H. Peter Anvin939b7872008-11-11 13:51:52 -0800847 CFI_ADJUST_CFA_OFFSET -8
848 .endif
Jan Beulichdf5d1872010-09-02 14:07:16 +01008491: pushq_cfi $(~vector+0x80) /* Note: always in signed byte range */
H. Peter Anvin86655962008-11-12 10:27:35 -0800850 .if ((vector-FIRST_EXTERNAL_VECTOR)%7) <> 6
H. Peter Anvin939b7872008-11-11 13:51:52 -0800851 jmp 2f
852 .endif
853 .previous
854 .quad 1b
Jiri Olsaea714542011-03-07 19:10:39 +0100855 .section .entry.text
H. Peter Anvin939b7872008-11-11 13:51:52 -0800856vector=vector+1
857 .endif
858 .endr
8592: jmp common_interrupt
860.endr
861 CFI_ENDPROC
862END(irq_entries_start)
863
864.previous
865END(interrupt)
866.previous
867
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100868/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 * Interrupt entry/exit.
870 *
871 * Interrupt entry points save only callee clobbered registers in fast path.
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100872 *
873 * Entry runs with interrupts off.
874 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875
Alexander van Heukelum722024d2008-11-13 13:50:20 +0100876/* 0(%rsp): ~(interrupt number) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 .macro interrupt func
Frederic Weisbecker625dbc32011-01-06 15:22:47 +0100878 /* reserve pt_regs for scratch regs and rbp */
879 subq $ORIG_RAX-RBP, %rsp
880 CFI_ADJUST_CFA_OFFSET ORIG_RAX-RBP
Frederic Weisbecker18718532011-07-01 01:51:22 +0200881 SAVE_ARGS_IRQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 call \func
883 .endm
884
Masami Hiramatsu8222d712009-08-27 13:23:25 -0400885/*
886 * Interrupt entry/exit should be protected against kprobes
887 */
888 .pushsection .kprobes.text, "ax"
Alexander van Heukelum722024d2008-11-13 13:50:20 +0100889 /*
890 * The interrupt stubs push (~vector+0x80) onto the stack and
891 * then jump to common_interrupt.
892 */
H. Peter Anvin939b7872008-11-11 13:51:52 -0800893 .p2align CONFIG_X86_L1_CACHE_SHIFT
894common_interrupt:
Jan Beulich7effaa82005-09-12 18:49:24 +0200895 XCPT_FRAME
Alexander van Heukelum722024d2008-11-13 13:50:20 +0100896 addq $-0x80,(%rsp) /* Adjust vector to [-256,-1] range */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 interrupt do_IRQ
Brian Gerst3d1e42a2009-01-19 00:38:58 +0900898 /* 0(%rsp): old_rsp-ARGOFFSET */
Jan Beulich7effaa82005-09-12 18:49:24 +0200899ret_from_intr:
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100900 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700901 TRACE_IRQS_OFF
Brian Gerst56895532009-01-19 00:38:58 +0900902 decl PER_CPU_VAR(irq_count)
Frederic Weisbecker625dbc32011-01-06 15:22:47 +0100903
Frederic Weisbeckera2bbe752011-07-02 16:52:45 +0200904 /* Restore saved previous stack */
905 popq %rsi
Mark Wielaard928282e2012-02-24 11:32:05 +0100906 CFI_DEF_CFA rsi,SS+8-RBP /* reg/off reset after def_cfa_expr */
Jan Beulicheab9e612011-09-28 16:57:52 +0100907 leaq ARGOFFSET-RBP(%rsi), %rsp
Jan Beulich7effaa82005-09-12 18:49:24 +0200908 CFI_DEF_CFA_REGISTER rsp
Jan Beulicheab9e612011-09-28 16:57:52 +0100909 CFI_ADJUST_CFA_OFFSET RBP-ARGOFFSET
Frederic Weisbecker625dbc32011-01-06 15:22:47 +0100910
Jan Beulich7effaa82005-09-12 18:49:24 +0200911exit_intr:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 GET_THREAD_INFO(%rcx)
913 testl $3,CS-ARGOFFSET(%rsp)
914 je retint_kernel
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100915
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 /* Interrupt came from user space */
917 /*
918 * Has a correct top of stack, but a partial stack frame
919 * %rcx: thread info. Interrupts off.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100920 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921retint_with_reschedule:
922 movl $_TIF_WORK_MASK,%edi
Jan Beulich7effaa82005-09-12 18:49:24 +0200923retint_check:
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200924 LOCKDEP_SYS_EXIT_IRQ
Glauber Costa26ccb8a2008-06-24 11:19:35 -0300925 movl TI_flags(%rcx),%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 andl %edi,%edx
Jan Beulich7effaa82005-09-12 18:49:24 +0200927 CFI_REMEMBER_STATE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 jnz retint_careful
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200929
930retint_swapgs: /* return to user-space */
Ingo Molnar2601e642006-07-03 00:24:45 -0700931 /*
932 * The iretq could re-enable interrupts:
933 */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100934 DISABLE_INTERRUPTS(CLBR_ANY)
Ingo Molnar2601e642006-07-03 00:24:45 -0700935 TRACE_IRQS_IRETQ
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100936 SWAPGS
Ingo Molnar2601e642006-07-03 00:24:45 -0700937 jmp restore_args
938
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200939retint_restore_args: /* return to kernel space */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100940 DISABLE_INTERRUPTS(CLBR_ANY)
Ingo Molnar2601e642006-07-03 00:24:45 -0700941 /*
942 * The iretq could re-enable interrupts:
943 */
944 TRACE_IRQS_IRETQ
945restore_args:
Borislav Petkov838feb42011-05-31 22:21:53 +0200946 RESTORE_ARGS 1,8,1
Ingo Molnar3701d8632008-02-09 23:24:08 +0100947
Adrian Bunkf7f3d792008-02-13 23:29:53 +0200948irq_return:
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100949 INTERRUPT_RETURN
H. Peter Anvind7abc0f2012-04-20 12:19:50 -0700950 _ASM_EXTABLE(irq_return, bad_iret)
Ingo Molnar3701d8632008-02-09 23:24:08 +0100951
952#ifdef CONFIG_PARAVIRT
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100953ENTRY(native_iret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 iretq
H. Peter Anvind7abc0f2012-04-20 12:19:50 -0700955 _ASM_EXTABLE(native_iret, bad_iret)
Ingo Molnar3701d8632008-02-09 23:24:08 +0100956#endif
957
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 .section .fixup,"ax"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959bad_iret:
Roland McGrath3aa4b372008-02-06 22:39:43 +0100960 /*
961 * The iret traps when the %cs or %ss being restored is bogus.
962 * We've lost the original trap vector and error code.
963 * #GPF is the most likely one to get for an invalid selector.
964 * So pretend we completed the iret and took the #GPF in user mode.
965 *
966 * We are now running with the kernel GS after exception recovery.
967 * But error_entry expects us to have user GS to match the user %cs,
968 * so swap back.
969 */
970 pushq $0
971
972 SWAPGS
973 jmp general_protection
974
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100975 .previous
976
Jan Beulich7effaa82005-09-12 18:49:24 +0200977 /* edi: workmask, edx: work */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978retint_careful:
Jan Beulich7effaa82005-09-12 18:49:24 +0200979 CFI_RESTORE_STATE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 bt $TIF_NEED_RESCHED,%edx
981 jnc retint_signal
Ingo Molnar2601e642006-07-03 00:24:45 -0700982 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100983 ENABLE_INTERRUPTS(CLBR_NONE)
Jan Beulichdf5d1872010-09-02 14:07:16 +0100984 pushq_cfi %rdi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 call schedule
Jan Beulichdf5d1872010-09-02 14:07:16 +0100986 popq_cfi %rdi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 GET_THREAD_INFO(%rcx)
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100988 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700989 TRACE_IRQS_OFF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 jmp retint_check
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100991
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992retint_signal:
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100993 testl $_TIF_DO_NOTIFY_MASK,%edx
Andi Kleen10ffdbb2005-05-16 21:53:19 -0700994 jz retint_swapgs
Ingo Molnar2601e642006-07-03 00:24:45 -0700995 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100996 ENABLE_INTERRUPTS(CLBR_NONE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 SAVE_REST
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100998 movq $-1,ORIG_RAX(%rsp)
Andi Kleen3829ee62005-07-28 21:15:48 -0700999 xorl %esi,%esi # oldset
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 movq %rsp,%rdi # &pt_regs
1001 call do_notify_resume
1002 RESTORE_REST
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +01001003 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -07001004 TRACE_IRQS_OFF
Andi Kleenbe9e6872005-05-01 08:58:51 -07001005 GET_THREAD_INFO(%rcx)
Roland McGratheca91e72008-07-10 14:50:39 -07001006 jmp retint_with_reschedule
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007
1008#ifdef CONFIG_PREEMPT
1009 /* Returning to kernel space. Check if we need preemption */
1010 /* rcx: threadinfo. interrupts off. */
Andi Kleenb06baba2006-09-26 10:52:29 +02001011ENTRY(retint_kernel)
Glauber Costa26ccb8a2008-06-24 11:19:35 -03001012 cmpl $0,TI_preempt_count(%rcx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 jnz retint_restore_args
Glauber Costa26ccb8a2008-06-24 11:19:35 -03001014 bt $TIF_NEED_RESCHED,TI_flags(%rcx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 jnc retint_restore_args
1016 bt $9,EFLAGS-ARGOFFSET(%rsp) /* interrupts off? */
1017 jnc retint_restore_args
1018 call preempt_schedule_irq
1019 jmp exit_intr
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001020#endif
Jan Beulich4b787e02006-06-26 13:56:55 +02001021
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +02001023END(common_interrupt)
Masami Hiramatsu8222d712009-08-27 13:23:25 -04001024/*
1025 * End of kprobes section
1026 */
1027 .popsection
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001028
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029/*
1030 * APIC interrupts.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001031 */
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001032.macro apicinterrupt num sym do_sym
1033ENTRY(\sym)
Jan Beulich7effaa82005-09-12 18:49:24 +02001034 INTR_FRAME
Jan Beulichdf5d1872010-09-02 14:07:16 +01001035 pushq_cfi $~(\num)
Jan Beulich39e95432011-11-29 11:03:46 +00001036.Lcommon_\sym:
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001037 interrupt \do_sym
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 jmp ret_from_intr
1039 CFI_ENDPROC
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001040END(\sym)
1041.endm
Jacob Shin89b831e2005-11-05 17:25:53 +01001042
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001043#ifdef CONFIG_SMP
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001044apicinterrupt IRQ_MOVE_CLEANUP_VECTOR \
1045 irq_move_cleanup_interrupt smp_irq_move_cleanup_interrupt
Andi Kleen4ef702c2009-05-27 21:56:52 +02001046apicinterrupt REBOOT_VECTOR \
1047 reboot_interrupt smp_reboot_interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048#endif
1049
Nick Piggin03b48632009-01-20 04:36:04 +01001050#ifdef CONFIG_X86_UV
Cyrill Gorcunov5ae3a132008-11-27 00:02:10 +03001051apicinterrupt UV_BAU_MESSAGE \
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001052 uv_bau_message_intr1 uv_bau_message_interrupt
Nick Piggin03b48632009-01-20 04:36:04 +01001053#endif
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001054apicinterrupt LOCAL_TIMER_VECTOR \
1055 apic_timer_interrupt smp_apic_timer_interrupt
Dimitri Sivanich4a4de9c2009-10-14 09:22:57 -05001056apicinterrupt X86_PLATFORM_IPI_VECTOR \
1057 x86_platform_ipi smp_x86_platform_ipi
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001059apicinterrupt THRESHOLD_APIC_VECTOR \
Andi Kleen7856f6c2009-04-28 23:32:56 +02001060 threshold_interrupt smp_threshold_interrupt
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001061apicinterrupt THERMAL_APIC_VECTOR \
1062 thermal_interrupt smp_thermal_interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001064#ifdef CONFIG_SMP
1065apicinterrupt CALL_FUNCTION_SINGLE_VECTOR \
1066 call_function_single_interrupt smp_call_function_single_interrupt
1067apicinterrupt CALL_FUNCTION_VECTOR \
1068 call_function_interrupt smp_call_function_interrupt
1069apicinterrupt RESCHEDULE_VECTOR \
1070 reschedule_interrupt smp_reschedule_interrupt
1071#endif
1072
1073apicinterrupt ERROR_APIC_VECTOR \
1074 error_interrupt smp_error_interrupt
1075apicinterrupt SPURIOUS_APIC_VECTOR \
1076 spurious_interrupt smp_spurious_interrupt
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001077
Peter Zijlstrae360adb2010-10-14 14:01:34 +08001078#ifdef CONFIG_IRQ_WORK
1079apicinterrupt IRQ_WORK_VECTOR \
1080 irq_work_interrupt smp_irq_work_interrupt
Ingo Molnar241771e2008-12-03 10:39:53 +01001081#endif
1082
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083/*
1084 * Exception entry points.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001085 */
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001086.macro zeroentry sym do_sym
1087ENTRY(\sym)
Jan Beulich7effaa82005-09-12 18:49:24 +02001088 INTR_FRAME
Jeremy Fitzhardingefab58422008-06-25 00:19:31 -04001089 PARAVIRT_ADJUST_EXCEPTION_FRAME
Ingo Molnar14ae22b2008-11-21 15:20:47 +01001090 pushq_cfi $-1 /* ORIG_RAX: no syscall to restart */
Jan Beulichb1cccb12010-09-02 13:55:11 +01001091 subq $ORIG_RAX-R15, %rsp
1092 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
Alexander van Heukelumd99015b2008-11-19 01:18:11 +01001093 call error_entry
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +01001094 DEFAULT_FRAME 0
Alexander van Heukelumd99015b2008-11-19 01:18:11 +01001095 movq %rsp,%rdi /* pt_regs pointer */
1096 xorl %esi,%esi /* no error code */
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001097 call \do_sym
Alexander van Heukelumd99015b2008-11-19 01:18:11 +01001098 jmp error_exit /* %ebx: no swapgs flag */
Jan Beulich7effaa82005-09-12 18:49:24 +02001099 CFI_ENDPROC
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001100END(\sym)
1101.endm
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001103.macro paranoidzeroentry sym do_sym
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001104ENTRY(\sym)
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001105 INTR_FRAME
1106 PARAVIRT_ADJUST_EXCEPTION_FRAME
Jan Beulichb1cccb12010-09-02 13:55:11 +01001107 pushq_cfi $-1 /* ORIG_RAX: no syscall to restart */
1108 subq $ORIG_RAX-R15, %rsp
1109 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001110 call save_paranoid
1111 TRACE_IRQS_OFF
1112 movq %rsp,%rdi /* pt_regs pointer */
1113 xorl %esi,%esi /* no error code */
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001114 call \do_sym
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001115 jmp paranoid_exit /* %ebx: no swapgs flag */
1116 CFI_ENDPROC
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001117END(\sym)
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001118.endm
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001119
Brian Gerstc15a5952010-07-31 12:48:22 -04001120#define INIT_TSS_IST(x) PER_CPU_VAR(init_tss) + (TSS_ist + ((x) - 1) * 8)
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001121.macro paranoidzeroentry_ist sym do_sym ist
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001122ENTRY(\sym)
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001123 INTR_FRAME
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001124 PARAVIRT_ADJUST_EXCEPTION_FRAME
Jan Beulichb1cccb12010-09-02 13:55:11 +01001125 pushq_cfi $-1 /* ORIG_RAX: no syscall to restart */
1126 subq $ORIG_RAX-R15, %rsp
1127 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001128 call save_paranoid
Steven Rostedt5963e312012-05-30 11:54:53 -04001129 TRACE_IRQS_OFF_DEBUG
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001130 movq %rsp,%rdi /* pt_regs pointer */
1131 xorl %esi,%esi /* no error code */
Brian Gerstc15a5952010-07-31 12:48:22 -04001132 subq $EXCEPTION_STKSZ, INIT_TSS_IST(\ist)
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001133 call \do_sym
Brian Gerstc15a5952010-07-31 12:48:22 -04001134 addq $EXCEPTION_STKSZ, INIT_TSS_IST(\ist)
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001135 jmp paranoid_exit /* %ebx: no swapgs flag */
1136 CFI_ENDPROC
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001137END(\sym)
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001138.endm
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001139
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001140.macro errorentry sym do_sym
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001141ENTRY(\sym)
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)
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001160 XCPT_FRAME
1161 PARAVIRT_ADJUST_EXCEPTION_FRAME
Jan Beulichb1cccb12010-09-02 13:55:11 +01001162 subq $ORIG_RAX-R15, %rsp
1163 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
Alexander van Heukelume2f6bc22008-11-21 16:43:18 +01001164 call save_paranoid
1165 DEFAULT_FRAME 0
Alexander van Heukelum7e61a792008-09-26 14:03:03 +02001166 TRACE_IRQS_OFF
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001167 movq %rsp,%rdi /* pt_regs pointer */
1168 movq ORIG_RAX(%rsp),%rsi /* get error code */
1169 movq $-1,ORIG_RAX(%rsp) /* no syscall to restart */
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001170 call \do_sym
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001171 jmp paranoid_exit /* %ebx: no swapgs flag */
1172 CFI_ENDPROC
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001173END(\sym)
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001174.endm
1175
1176zeroentry divide_error do_divide_error
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001177zeroentry overflow do_overflow
1178zeroentry bounds do_bounds
1179zeroentry invalid_op do_invalid_op
1180zeroentry device_not_available do_device_not_available
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001181paranoiderrorentry double_fault do_double_fault
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001182zeroentry coprocessor_segment_overrun do_coprocessor_segment_overrun
1183errorentry invalid_TSS do_invalid_TSS
1184errorentry segment_not_present do_segment_not_present
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001185zeroentry spurious_interrupt_bug do_spurious_interrupt_bug
1186zeroentry coprocessor_error do_coprocessor_error
1187errorentry alignment_check do_alignment_check
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001188zeroentry simd_coprocessor_error do_simd_coprocessor_error
Andy Lutomirski5cec93c2011-06-05 13:50:24 -04001189
Ingo Molnar2601e642006-07-03 00:24:45 -07001190
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001191 /* Reload gs selector with exception handling */
1192 /* edi: new selector */
Jeremy Fitzhardinge9f9d4892008-06-25 00:19:32 -04001193ENTRY(native_load_gs_index)
Jan Beulich7effaa82005-09-12 18:49:24 +02001194 CFI_STARTPROC
Jan Beulichdf5d1872010-09-02 14:07:16 +01001195 pushfq_cfi
Jeremy Fitzhardingeb8aa2872009-01-28 14:35:03 -08001196 DISABLE_INTERRUPTS(CLBR_ANY & ~CLBR_RDI)
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001197 SWAPGS
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001198gs_change:
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001199 movl %edi,%gs
Linus Torvalds1da177e2005-04-16 15:20:36 -070012002: mfence /* workaround */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +01001201 SWAPGS
Jan Beulichdf5d1872010-09-02 14:07:16 +01001202 popfq_cfi
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001203 ret
Jan Beulich7effaa82005-09-12 18:49:24 +02001204 CFI_ENDPROC
Alexander van Heukelum6efdcfa2008-11-23 10:15:32 +01001205END(native_load_gs_index)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001206
H. Peter Anvind7abc0f2012-04-20 12:19:50 -07001207 _ASM_EXTABLE(gs_change,bad_gs)
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001208 .section .fixup,"ax"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 /* running with kernelgs */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001210bad_gs:
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +01001211 SWAPGS /* switch back to user gs */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 xorl %eax,%eax
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001213 movl %eax,%gs
1214 jmp 2b
1215 .previous
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001216
Al Viro6783eaa22012-08-02 23:05:11 +04001217ENTRY(ret_from_kernel_execve)
1218 movq %rdi, %rsp
1219 movl $0, RAX(%rsp)
1220 // RESTORE_REST
1221 movq 0*8(%rsp), %r15
1222 movq 1*8(%rsp), %r14
1223 movq 2*8(%rsp), %r13
1224 movq 3*8(%rsp), %r12
1225 movq 4*8(%rsp), %rbp
1226 movq 5*8(%rsp), %rbx
1227 addq $(6*8), %rsp
1228 jmp int_ret_from_sys_call
1229END(ret_from_kernel_execve)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230
Andi Kleen26995002006-08-02 22:37:28 +02001231/* Call softirq on interrupt stack. Interrupts are off. */
Andi Kleened6b6762005-07-28 21:15:49 -07001232ENTRY(call_softirq)
Jan Beulich7effaa82005-09-12 18:49:24 +02001233 CFI_STARTPROC
Jan Beulichdf5d1872010-09-02 14:07:16 +01001234 pushq_cfi %rbp
Andi Kleen26995002006-08-02 22:37:28 +02001235 CFI_REL_OFFSET rbp,0
1236 mov %rsp,%rbp
1237 CFI_DEF_CFA_REGISTER rbp
Brian Gerst56895532009-01-19 00:38:58 +09001238 incl PER_CPU_VAR(irq_count)
Brian Gerst26f80bd2009-01-19 00:38:58 +09001239 cmove PER_CPU_VAR(irq_stack_ptr),%rsp
Andi Kleen26995002006-08-02 22:37:28 +02001240 push %rbp # backlink for old unwinder
Andi Kleened6b6762005-07-28 21:15:49 -07001241 call __do_softirq
Andi Kleen26995002006-08-02 22:37:28 +02001242 leaveq
Jan Beulichdf5d1872010-09-02 14:07:16 +01001243 CFI_RESTORE rbp
Jan Beulich7effaa82005-09-12 18:49:24 +02001244 CFI_DEF_CFA_REGISTER rsp
Andi Kleen26995002006-08-02 22:37:28 +02001245 CFI_ADJUST_CFA_OFFSET -8
Brian Gerst56895532009-01-19 00:38:58 +09001246 decl PER_CPU_VAR(irq_count)
Andi Kleened6b6762005-07-28 21:15:49 -07001247 ret
Jan Beulich7effaa82005-09-12 18:49:24 +02001248 CFI_ENDPROC
Alexander van Heukelum6efdcfa2008-11-23 10:15:32 +01001249END(call_softirq)
Andi Kleen75154f42007-06-23 02:29:25 +02001250
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001251#ifdef CONFIG_XEN
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001252zeroentry xen_hypervisor_callback xen_do_hypervisor_callback
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001253
1254/*
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001255 * A note on the "critical region" in our callback handler.
1256 * We want to avoid stacking callback handlers due to events occurring
1257 * during handling of the last event. To do this, we keep events disabled
1258 * until we've done all processing. HOWEVER, we must enable events before
1259 * popping the stack frame (can't be done atomically) and so it would still
1260 * be possible to get enough handler activations to overflow the stack.
1261 * Although unlikely, bugs of that kind are hard to track down, so we'd
1262 * like to avoid the possibility.
1263 * So, on entry to the handler we detect whether we interrupted an
1264 * existing activation in its critical region -- if so, we pop the current
1265 * activation and restart the handler using the previous one.
1266 */
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001267ENTRY(xen_do_hypervisor_callback) # do_hypervisor_callback(struct *pt_regs)
1268 CFI_STARTPROC
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001269/*
1270 * Since we don't modify %rdi, evtchn_do_upall(struct *pt_regs) will
1271 * see the correct pointer to the pt_regs
1272 */
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001273 movq %rdi, %rsp # we don't return, adjust the stack frame
1274 CFI_ENDPROC
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +01001275 DEFAULT_FRAME
Brian Gerst56895532009-01-19 00:38:58 +0900127611: incl PER_CPU_VAR(irq_count)
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001277 movq %rsp,%rbp
1278 CFI_DEF_CFA_REGISTER rbp
Brian Gerst26f80bd2009-01-19 00:38:58 +09001279 cmovzq PER_CPU_VAR(irq_stack_ptr),%rsp
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001280 pushq %rbp # backlink for old unwinder
1281 call xen_evtchn_do_upcall
1282 popq %rsp
1283 CFI_DEF_CFA_REGISTER rsp
Brian Gerst56895532009-01-19 00:38:58 +09001284 decl PER_CPU_VAR(irq_count)
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001285 jmp error_exit
1286 CFI_ENDPROC
Alexander van Heukelum371c3942011-03-11 21:59:38 +01001287END(xen_do_hypervisor_callback)
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001288
1289/*
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001290 * Hypervisor uses this for application faults while it executes.
1291 * We get here for two reasons:
1292 * 1. Fault while reloading DS, ES, FS or GS
1293 * 2. Fault while executing IRET
1294 * Category 1 we do not need to fix up as Xen has already reloaded all segment
1295 * registers that could be reloaded and zeroed the others.
1296 * Category 2 we fix up by killing the current process. We cannot use the
1297 * normal Linux return path in this case because if we use the IRET hypercall
1298 * to pop the stack frame we end up in an infinite loop of failsafe callbacks.
1299 * We distinguish between categories by comparing each saved segment register
1300 * with its current contents: any discrepancy means we in category 1.
1301 */
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001302ENTRY(xen_failsafe_callback)
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +01001303 INTR_FRAME 1 (6*8)
1304 /*CFI_REL_OFFSET gs,GS*/
1305 /*CFI_REL_OFFSET fs,FS*/
1306 /*CFI_REL_OFFSET es,ES*/
1307 /*CFI_REL_OFFSET ds,DS*/
1308 CFI_REL_OFFSET r11,8
1309 CFI_REL_OFFSET rcx,0
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001310 movw %ds,%cx
1311 cmpw %cx,0x10(%rsp)
1312 CFI_REMEMBER_STATE
1313 jne 1f
1314 movw %es,%cx
1315 cmpw %cx,0x18(%rsp)
1316 jne 1f
1317 movw %fs,%cx
1318 cmpw %cx,0x20(%rsp)
1319 jne 1f
1320 movw %gs,%cx
1321 cmpw %cx,0x28(%rsp)
1322 jne 1f
1323 /* All segments match their saved values => Category 2 (Bad IRET). */
1324 movq (%rsp),%rcx
1325 CFI_RESTORE rcx
1326 movq 8(%rsp),%r11
1327 CFI_RESTORE r11
1328 addq $0x30,%rsp
1329 CFI_ADJUST_CFA_OFFSET -0x30
Ingo Molnar14ae22b2008-11-21 15:20:47 +01001330 pushq_cfi $0 /* RIP */
1331 pushq_cfi %r11
1332 pushq_cfi %rcx
Jeremy Fitzhardinge4a5c3e72008-07-08 15:07:09 -07001333 jmp general_protection
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001334 CFI_RESTORE_STATE
13351: /* Segment mismatch => Category 1 (Bad segment). Retry the IRET. */
1336 movq (%rsp),%rcx
1337 CFI_RESTORE rcx
1338 movq 8(%rsp),%r11
1339 CFI_RESTORE r11
1340 addq $0x30,%rsp
1341 CFI_ADJUST_CFA_OFFSET -0x30
Ingo Molnar14ae22b2008-11-21 15:20:47 +01001342 pushq_cfi $0
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001343 SAVE_ALL
1344 jmp error_exit
1345 CFI_ENDPROC
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001346END(xen_failsafe_callback)
1347
Sheng Yang38e20b02010-05-14 12:40:51 +01001348apicinterrupt XEN_HVM_EVTCHN_CALLBACK \
1349 xen_hvm_callback_vector xen_evtchn_do_upcall
1350
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001351#endif /* CONFIG_XEN */
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001352
1353/*
1354 * Some functions should be protected against kprobes
1355 */
1356 .pushsection .kprobes.text, "ax"
1357
1358paranoidzeroentry_ist debug do_debug DEBUG_STACK
1359paranoidzeroentry_ist int3 do_int3 DEBUG_STACK
1360paranoiderrorentry stack_segment do_stack_segment
Jeremy Fitzhardinge6cac5a92009-03-29 19:56:29 -07001361#ifdef CONFIG_XEN
1362zeroentry xen_debug do_debug
1363zeroentry xen_int3 do_int3
1364errorentry xen_stack_segment do_stack_segment
1365#endif
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001366errorentry general_protection do_general_protection
1367errorentry page_fault do_page_fault
Gleb Natapov631bc482010-10-14 11:22:52 +02001368#ifdef CONFIG_KVM_GUEST
1369errorentry async_page_fault do_async_page_fault
1370#endif
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001371#ifdef CONFIG_X86_MCE
Andi Kleen5d727922009-04-27 19:25:48 +02001372paranoidzeroentry machine_check *machine_check_vector(%rip)
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001373#endif
1374
1375 /*
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001376 * "Paranoid" exit path from exception stack.
1377 * Paranoid because this is used by NMIs and cannot take
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001378 * any kernel state for granted.
1379 * We don't do kernel preemption checks here, because only
1380 * NMI should be common and it does not enable IRQs and
1381 * cannot get reschedule ticks.
1382 *
1383 * "trace" is 0 for the NMI handler only, because irq-tracing
1384 * is fundamentally NMI-unsafe. (we cannot change the soft and
1385 * hard flags at once, atomically)
1386 */
1387
1388 /* ebx: no swapgs flag */
1389ENTRY(paranoid_exit)
Jan Beulich1f130a72010-09-02 13:54:32 +01001390 DEFAULT_FRAME
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001391 DISABLE_INTERRUPTS(CLBR_NONE)
Steven Rostedt5963e312012-05-30 11:54:53 -04001392 TRACE_IRQS_OFF_DEBUG
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001393 testl %ebx,%ebx /* swapgs needed? */
1394 jnz paranoid_restore
1395 testl $3,CS(%rsp)
1396 jnz paranoid_userspace
1397paranoid_swapgs:
1398 TRACE_IRQS_IRETQ 0
1399 SWAPGS_UNSAFE_STACK
Steven Rostedt0300e7f12009-04-17 08:33:52 -04001400 RESTORE_ALL 8
1401 jmp irq_return
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001402paranoid_restore:
Steven Rostedt5963e312012-05-30 11:54:53 -04001403 TRACE_IRQS_IRETQ_DEBUG 0
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001404 RESTORE_ALL 8
1405 jmp irq_return
1406paranoid_userspace:
1407 GET_THREAD_INFO(%rcx)
1408 movl TI_flags(%rcx),%ebx
1409 andl $_TIF_WORK_MASK,%ebx
1410 jz paranoid_swapgs
1411 movq %rsp,%rdi /* &pt_regs */
1412 call sync_regs
1413 movq %rax,%rsp /* switch stack for scheduling */
1414 testl $_TIF_NEED_RESCHED,%ebx
1415 jnz paranoid_schedule
1416 movl %ebx,%edx /* arg3: thread flags */
1417 TRACE_IRQS_ON
1418 ENABLE_INTERRUPTS(CLBR_NONE)
1419 xorl %esi,%esi /* arg2: oldset */
1420 movq %rsp,%rdi /* arg1: &pt_regs */
1421 call do_notify_resume
1422 DISABLE_INTERRUPTS(CLBR_NONE)
1423 TRACE_IRQS_OFF
1424 jmp paranoid_userspace
1425paranoid_schedule:
1426 TRACE_IRQS_ON
1427 ENABLE_INTERRUPTS(CLBR_ANY)
1428 call schedule
1429 DISABLE_INTERRUPTS(CLBR_ANY)
1430 TRACE_IRQS_OFF
1431 jmp paranoid_userspace
1432 CFI_ENDPROC
1433END(paranoid_exit)
1434
1435/*
1436 * Exception entry point. This expects an error code/orig_rax on the stack.
1437 * returns in "no swapgs flag" in %ebx.
1438 */
1439ENTRY(error_entry)
1440 XCPT_FRAME
1441 CFI_ADJUST_CFA_OFFSET 15*8
1442 /* oldrax contains error code */
1443 cld
1444 movq_cfi rdi, RDI+8
1445 movq_cfi rsi, RSI+8
1446 movq_cfi rdx, RDX+8
1447 movq_cfi rcx, RCX+8
1448 movq_cfi rax, RAX+8
1449 movq_cfi r8, R8+8
1450 movq_cfi r9, R9+8
1451 movq_cfi r10, R10+8
1452 movq_cfi r11, R11+8
1453 movq_cfi rbx, RBX+8
1454 movq_cfi rbp, RBP+8
1455 movq_cfi r12, R12+8
1456 movq_cfi r13, R13+8
1457 movq_cfi r14, R14+8
1458 movq_cfi r15, R15+8
1459 xorl %ebx,%ebx
1460 testl $3,CS+8(%rsp)
1461 je error_kernelspace
1462error_swapgs:
1463 SWAPGS
1464error_sti:
1465 TRACE_IRQS_OFF
1466 ret
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001467
1468/*
1469 * There are two places in the kernel that can potentially fault with
1470 * usergs. Handle them here. The exception handlers after iret run with
1471 * kernel gs again, so don't set the user space flag. B stepping K8s
1472 * sometimes report an truncated RIP for IRET exceptions returning to
1473 * compat mode. Check for these here too.
1474 */
1475error_kernelspace:
1476 incl %ebx
1477 leaq irq_return(%rip),%rcx
1478 cmpq %rcx,RIP+8(%rsp)
1479 je error_swapgs
Brian Gerstae24ffe2009-10-12 10:18:23 -04001480 movl %ecx,%eax /* zero extend */
1481 cmpq %rax,RIP+8(%rsp)
1482 je bstep_iret
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001483 cmpq $gs_change,RIP+8(%rsp)
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001484 je error_swapgs
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001485 jmp error_sti
Brian Gerstae24ffe2009-10-12 10:18:23 -04001486
1487bstep_iret:
1488 /* Fix truncated RIP */
1489 movq %rcx,RIP+8(%rsp)
Brian Gerst97829de2009-11-03 14:02:05 -05001490 jmp error_swapgs
Jan Beuliche6b04b62010-09-02 13:52:45 +01001491 CFI_ENDPROC
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001492END(error_entry)
1493
1494
1495/* ebx: no swapgs flag (1: don't need swapgs, 0: need it) */
1496ENTRY(error_exit)
1497 DEFAULT_FRAME
1498 movl %ebx,%eax
1499 RESTORE_REST
1500 DISABLE_INTERRUPTS(CLBR_NONE)
1501 TRACE_IRQS_OFF
1502 GET_THREAD_INFO(%rcx)
1503 testl %eax,%eax
1504 jne retint_kernel
1505 LOCKDEP_SYS_EXIT_IRQ
1506 movl TI_flags(%rcx),%edx
1507 movl $_TIF_WORK_MASK,%edi
1508 andl %edi,%edx
1509 jnz retint_careful
1510 jmp retint_swapgs
1511 CFI_ENDPROC
1512END(error_exit)
1513
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001514/*
1515 * Test if a given stack is an NMI stack or not.
1516 */
1517 .macro test_in_nmi reg stack nmi_ret normal_ret
1518 cmpq %\reg, \stack
1519 ja \normal_ret
1520 subq $EXCEPTION_STKSZ, %\reg
1521 cmpq %\reg, \stack
1522 jb \normal_ret
1523 jmp \nmi_ret
1524 .endm
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001525
1526 /* runs on exception stack */
1527ENTRY(nmi)
1528 INTR_FRAME
1529 PARAVIRT_ADJUST_EXCEPTION_FRAME
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001530 /*
1531 * We allow breakpoints in NMIs. If a breakpoint occurs, then
1532 * the iretq it performs will take us out of NMI context.
1533 * This means that we can have nested NMIs where the next
1534 * NMI is using the top of the stack of the previous NMI. We
1535 * can't let it execute because the nested NMI will corrupt the
1536 * stack of the previous NMI. NMI handlers are not re-entrant
1537 * anyway.
1538 *
1539 * To handle this case we do the following:
1540 * Check the a special location on the stack that contains
1541 * a variable that is set when NMIs are executing.
1542 * The interrupted task's stack is also checked to see if it
1543 * is an NMI stack.
1544 * If the variable is not set and the stack is not the NMI
1545 * stack then:
1546 * o Set the special variable on the stack
1547 * o Copy the interrupt frame into a "saved" location on the stack
1548 * o Copy the interrupt frame into a "copy" location on the stack
1549 * o Continue processing the NMI
1550 * If the variable is set or the previous stack is the NMI stack:
1551 * o Modify the "copy" location to jump to the repeate_nmi
1552 * o return back to the first NMI
1553 *
1554 * Now on exit of the first NMI, we first clear the stack variable
1555 * The NMI stack will tell any nested NMIs at that point that it is
1556 * nested. Then we pop the stack normally with iret, and if there was
1557 * a nested NMI that updated the copy interrupt stack frame, a
1558 * jump will be made to the repeat_nmi code that will handle the second
1559 * NMI.
1560 */
1561
1562 /* Use %rdx as out temp variable throughout */
1563 pushq_cfi %rdx
Jan Beulich62610912012-02-24 14:54:37 +00001564 CFI_REL_OFFSET rdx, 0
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001565
1566 /*
Steven Rostedt45d5a162012-02-19 16:43:37 -05001567 * If %cs was not the kernel segment, then the NMI triggered in user
1568 * space, which means it is definitely not nested.
1569 */
Steven Rostedta38449e2012-02-20 15:29:34 -05001570 cmpl $__KERNEL_CS, 16(%rsp)
Steven Rostedt45d5a162012-02-19 16:43:37 -05001571 jne first_nmi
1572
1573 /*
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001574 * Check the special variable on the stack to see if NMIs are
1575 * executing.
1576 */
Steven Rostedta38449e2012-02-20 15:29:34 -05001577 cmpl $1, -8(%rsp)
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001578 je nested_nmi
1579
1580 /*
1581 * Now test if the previous stack was an NMI stack.
1582 * We need the double check. We check the NMI stack to satisfy the
1583 * race when the first NMI clears the variable before returning.
1584 * We check the variable because the first NMI could be in a
1585 * breakpoint routine using a breakpoint stack.
1586 */
1587 lea 6*8(%rsp), %rdx
1588 test_in_nmi rdx, 4*8(%rsp), nested_nmi, first_nmi
Jan Beulich62610912012-02-24 14:54:37 +00001589 CFI_REMEMBER_STATE
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001590
1591nested_nmi:
1592 /*
1593 * Do nothing if we interrupted the fixup in repeat_nmi.
1594 * It's about to repeat the NMI handler, so we are fine
1595 * with ignoring this one.
1596 */
1597 movq $repeat_nmi, %rdx
1598 cmpq 8(%rsp), %rdx
1599 ja 1f
1600 movq $end_repeat_nmi, %rdx
1601 cmpq 8(%rsp), %rdx
1602 ja nested_nmi_out
1603
16041:
1605 /* Set up the interrupted NMIs stack to jump to repeat_nmi */
1606 leaq -6*8(%rsp), %rdx
1607 movq %rdx, %rsp
1608 CFI_ADJUST_CFA_OFFSET 6*8
1609 pushq_cfi $__KERNEL_DS
1610 pushq_cfi %rdx
1611 pushfq_cfi
1612 pushq_cfi $__KERNEL_CS
1613 pushq_cfi $repeat_nmi
1614
1615 /* Put stack back */
1616 addq $(11*8), %rsp
1617 CFI_ADJUST_CFA_OFFSET -11*8
1618
1619nested_nmi_out:
1620 popq_cfi %rdx
Jan Beulich62610912012-02-24 14:54:37 +00001621 CFI_RESTORE rdx
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001622
1623 /* No need to check faults here */
1624 INTERRUPT_RETURN
1625
Jan Beulich62610912012-02-24 14:54:37 +00001626 CFI_RESTORE_STATE
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001627first_nmi:
1628 /*
1629 * Because nested NMIs will use the pushed location that we
1630 * stored in rdx, we must keep that space available.
1631 * Here's what our stack frame will look like:
1632 * +-------------------------+
1633 * | original SS |
1634 * | original Return RSP |
1635 * | original RFLAGS |
1636 * | original CS |
1637 * | original RIP |
1638 * +-------------------------+
1639 * | temp storage for rdx |
1640 * +-------------------------+
1641 * | NMI executing variable |
1642 * +-------------------------+
1643 * | Saved SS |
1644 * | Saved Return RSP |
1645 * | Saved RFLAGS |
1646 * | Saved CS |
1647 * | Saved RIP |
1648 * +-------------------------+
1649 * | copied SS |
1650 * | copied Return RSP |
1651 * | copied RFLAGS |
1652 * | copied CS |
1653 * | copied RIP |
1654 * +-------------------------+
1655 * | pt_regs |
1656 * +-------------------------+
1657 *
Steven Rostedt79fb4ad2012-02-24 15:55:13 -05001658 * The saved stack frame is used to fix up the copied stack frame
1659 * that a nested NMI may change to make the interrupted NMI iret jump
1660 * to the repeat_nmi. The original stack frame and the temp storage
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001661 * is also used by nested NMIs and can not be trusted on exit.
1662 */
Steven Rostedt79fb4ad2012-02-24 15:55:13 -05001663 /* Do not pop rdx, nested NMIs will corrupt that part of the stack */
Jan Beulich62610912012-02-24 14:54:37 +00001664 movq (%rsp), %rdx
1665 CFI_RESTORE rdx
1666
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001667 /* Set the NMI executing variable on the stack. */
1668 pushq_cfi $1
1669
1670 /* Copy the stack frame to the Saved frame */
1671 .rept 5
1672 pushq_cfi 6*8(%rsp)
1673 .endr
Jan Beulich62610912012-02-24 14:54:37 +00001674 CFI_DEF_CFA_OFFSET SS+8-RIP
1675
Steven Rostedt79fb4ad2012-02-24 15:55:13 -05001676 /* Everything up to here is safe from nested NMIs */
1677
Jan Beulich62610912012-02-24 14:54:37 +00001678 /*
1679 * If there was a nested NMI, the first NMI's iret will return
1680 * here. But NMIs are still enabled and we can take another
1681 * nested NMI. The nested NMI checks the interrupted RIP to see
1682 * if it is between repeat_nmi and end_repeat_nmi, and if so
1683 * it will just return, as we are about to repeat an NMI anyway.
1684 * This makes it safe to copy to the stack frame that a nested
1685 * NMI will update.
1686 */
1687repeat_nmi:
1688 /*
1689 * Update the stack variable to say we are still in NMI (the update
1690 * is benign for the non-repeat case, where 1 was pushed just above
1691 * to this very stack slot).
1692 */
1693 movq $1, 5*8(%rsp)
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001694
1695 /* Make another copy, this one may be modified by nested NMIs */
1696 .rept 5
1697 pushq_cfi 4*8(%rsp)
1698 .endr
Jan Beulich62610912012-02-24 14:54:37 +00001699 CFI_DEF_CFA_OFFSET SS+8-RIP
1700end_repeat_nmi:
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001701
1702 /*
1703 * Everything below this point can be preempted by a nested
Steven Rostedt79fb4ad2012-02-24 15:55:13 -05001704 * NMI if the first NMI took an exception and reset our iret stack
1705 * so that we repeat another NMI.
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001706 */
Steven Rostedt1fd466e2011-12-08 12:32:27 -05001707 pushq_cfi $-1 /* ORIG_RAX: no syscall to restart */
Jan Beulichb1cccb12010-09-02 13:55:11 +01001708 subq $ORIG_RAX-R15, %rsp
1709 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
Steven Rostedt1fd466e2011-12-08 12:32:27 -05001710 /*
1711 * Use save_paranoid to handle SWAPGS, but no need to use paranoid_exit
1712 * as we should not be calling schedule in NMI context.
1713 * Even with normal interrupts enabled. An NMI should not be
1714 * setting NEED_RESCHED or anything that normal interrupts and
1715 * exceptions might do.
1716 */
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001717 call save_paranoid
1718 DEFAULT_FRAME 0
Steven Rostedt7fbb98c2012-06-07 10:21:21 -04001719
1720 /*
1721 * Save off the CR2 register. If we take a page fault in the NMI then
1722 * it could corrupt the CR2 value. If the NMI preempts a page fault
1723 * handler before it was able to read the CR2 register, and then the
1724 * NMI itself takes a page fault, the page fault that was preempted
1725 * will read the information from the NMI page fault and not the
1726 * origin fault. Save it off and restore it if it changes.
1727 * Use the r12 callee-saved register.
1728 */
1729 movq %cr2, %r12
1730
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001731 /* paranoidentry do_nmi, 0; without TRACE_IRQS_OFF */
1732 movq %rsp,%rdi
1733 movq $-1,%rsi
1734 call do_nmi
Steven Rostedt7fbb98c2012-06-07 10:21:21 -04001735
1736 /* Did the NMI take a page fault? Restore cr2 if it did */
1737 movq %cr2, %rcx
1738 cmpq %rcx, %r12
1739 je 1f
1740 movq %r12, %cr2
17411:
1742
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001743 testl %ebx,%ebx /* swapgs needed? */
1744 jnz nmi_restore
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001745nmi_swapgs:
1746 SWAPGS_UNSAFE_STACK
1747nmi_restore:
1748 RESTORE_ALL 8
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001749 /* Clear the NMI executing stack variable */
1750 movq $0, 10*8(%rsp)
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001751 jmp irq_return
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001752 CFI_ENDPROC
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001753END(nmi)
1754
1755ENTRY(ignore_sysret)
1756 CFI_STARTPROC
1757 mov $-ENOSYS,%eax
1758 sysret
1759 CFI_ENDPROC
1760END(ignore_sysret)
1761
1762/*
1763 * End of kprobes section
1764 */
1765 .popsection