blob: 20dc8e6b6d8050be24883d10853c7ce2eaf5ca22 [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 *
12 * NOTE: This code handles signal-recognition, which happens every time
13 * after an interrupt and after each system call.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +010014 *
15 * Normal syscalls and interrupts don't save a full stack frame, this is
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 * only done for syscall tracing, signals or fork/exec et.al.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +010017 *
18 * A note on terminology:
19 * - top of stack: Architecture defined interrupt frame from SS to RIP
20 * at the top of the kernel process stack.
Lucas De Marchi0d2eb442011-03-17 16:24:16 -030021 * - partial stack frame: partially saved registers up to R11.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +010022 * - full stack frame: Like partial stack frame, but all register saved.
Andi Kleen2e91a172006-09-26 10:52:29 +020023 *
24 * Some macro usage:
25 * - CFI macros are used to generate dwarf2 unwind information for better
26 * backtraces. They don't change any code.
27 * - SAVE_ALL/RESTORE_ALL - Save/restore all registers
28 * - SAVE_ARGS/RESTORE_ARGS - Save/restore registers that C functions modify.
29 * There are unfortunately lots of special cases where some registers
30 * not touched. The macro is a big mess that should be cleaned up.
31 * - SAVE_REST/RESTORE_REST - Handle the registers not saved by SAVE_ARGS.
32 * Gives a full stack frame.
33 * - ENTRY/END Define functions in the symbol table.
34 * - FIXUP_TOP_OF_STACK/RESTORE_TOP_OF_STACK - Fix up the hardware stack
35 * frame that is otherwise undefined after a SYSCALL
36 * - TRACE_IRQ_* - Trace hard interrupt state for lock debugging.
37 * - errorentry/paranoidentry/zeroentry - Define exception entry points.
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 */
39
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <linux/linkage.h>
41#include <asm/segment.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <asm/cache.h>
43#include <asm/errno.h>
44#include <asm/dwarf2.h>
45#include <asm/calling.h>
Sam Ravnborge2d5df92005-09-09 21:28:48 +020046#include <asm/asm-offsets.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <asm/msr.h>
48#include <asm/unistd.h>
49#include <asm/thread_info.h>
50#include <asm/hw_irq.h>
Jeremy Fitzhardinge0341c142009-02-13 11:14:01 -080051#include <asm/page_types.h>
Ingo Molnar2601e642006-07-03 00:24:45 -070052#include <asm/irqflags.h>
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +010053#include <asm/paravirt.h>
Abhishek Sagar395a59d2008-06-21 23:47:27 +053054#include <asm/ftrace.h>
Tejun Heo9939dda2009-01-13 20:41:35 +090055#include <asm/percpu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Roland McGrath86a1c342008-06-23 15:37:04 -070057/* Avoid __ASSEMBLER__'ifying <linux/audit.h> just for this. */
58#include <linux/elf-em.h>
59#define AUDIT_ARCH_X86_64 (EM_X86_64|__AUDIT_ARCH_64BIT|__AUDIT_ARCH_LE)
60#define __AUDIT_ARCH_64BIT 0x80000000
61#define __AUDIT_ARCH_LE 0x40000000
62
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 .code64
Jiri Olsaea714542011-03-07 19:10:39 +010064 .section .entry.text, "ax"
65
Steven Rostedt606576c2008-10-06 19:06:12 -040066#ifdef CONFIG_FUNCTION_TRACER
Steven Rostedtd61f82d2008-05-12 21:20:43 +020067#ifdef CONFIG_DYNAMIC_FTRACE
68ENTRY(mcount)
Steven Rostedtd61f82d2008-05-12 21:20:43 +020069 retq
70END(mcount)
71
72ENTRY(ftrace_caller)
Steven Rostedt60a7ecf2008-11-05 16:05:44 -050073 cmpl $0, function_trace_stop
74 jne ftrace_stub
Steven Rostedtd61f82d2008-05-12 21:20:43 +020075
Cyrill Gorcunovd680fe42008-12-13 00:09:08 +030076 MCOUNT_SAVE_FRAME
Steven Rostedtd61f82d2008-05-12 21:20:43 +020077
78 movq 0x38(%rsp), %rdi
79 movq 8(%rbp), %rsi
Abhishek Sagar395a59d2008-06-21 23:47:27 +053080 subq $MCOUNT_INSN_SIZE, %rdi
Steven Rostedtd61f82d2008-05-12 21:20:43 +020081
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +030082GLOBAL(ftrace_call)
Steven Rostedtd61f82d2008-05-12 21:20:43 +020083 call ftrace_stub
84
Cyrill Gorcunovd680fe42008-12-13 00:09:08 +030085 MCOUNT_RESTORE_FRAME
Steven Rostedtd61f82d2008-05-12 21:20:43 +020086
Frederic Weisbecker48d68b22008-12-02 00:20:39 +010087#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +030088GLOBAL(ftrace_graph_call)
Frederic Weisbecker48d68b22008-12-02 00:20:39 +010089 jmp ftrace_stub
90#endif
Steven Rostedtd61f82d2008-05-12 21:20:43 +020091
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +030092GLOBAL(ftrace_stub)
Steven Rostedtd61f82d2008-05-12 21:20:43 +020093 retq
94END(ftrace_caller)
95
96#else /* ! CONFIG_DYNAMIC_FTRACE */
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +020097ENTRY(mcount)
Steven Rostedt60a7ecf2008-11-05 16:05:44 -050098 cmpl $0, function_trace_stop
99 jne ftrace_stub
100
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200101 cmpq $ftrace_stub, ftrace_trace_function
102 jnz trace
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100103
104#ifdef CONFIG_FUNCTION_GRAPH_TRACER
105 cmpq $ftrace_stub, ftrace_graph_return
106 jnz ftrace_graph_caller
Steven Rostedte49dc192008-12-02 23:50:05 -0500107
108 cmpq $ftrace_graph_entry_stub, ftrace_graph_entry
109 jnz ftrace_graph_caller
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100110#endif
111
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +0300112GLOBAL(ftrace_stub)
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200113 retq
114
115trace:
Cyrill Gorcunovd680fe42008-12-13 00:09:08 +0300116 MCOUNT_SAVE_FRAME
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200117
118 movq 0x38(%rsp), %rdi
119 movq 8(%rbp), %rsi
Abhishek Sagar395a59d2008-06-21 23:47:27 +0530120 subq $MCOUNT_INSN_SIZE, %rdi
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200121
122 call *ftrace_trace_function
123
Cyrill Gorcunovd680fe42008-12-13 00:09:08 +0300124 MCOUNT_RESTORE_FRAME
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200125
126 jmp ftrace_stub
127END(mcount)
Steven Rostedtd61f82d2008-05-12 21:20:43 +0200128#endif /* CONFIG_DYNAMIC_FTRACE */
Steven Rostedt606576c2008-10-06 19:06:12 -0400129#endif /* CONFIG_FUNCTION_TRACER */
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200130
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100131#ifdef CONFIG_FUNCTION_GRAPH_TRACER
132ENTRY(ftrace_graph_caller)
133 cmpl $0, function_trace_stop
134 jne ftrace_stub
135
Cyrill Gorcunovd680fe42008-12-13 00:09:08 +0300136 MCOUNT_SAVE_FRAME
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100137
138 leaq 8(%rbp), %rdi
139 movq 0x38(%rsp), %rsi
Steven Rostedt71e308a2009-06-18 12:45:08 -0400140 movq (%rbp), %rdx
Steven Rostedtbb4304c2008-12-02 15:34:09 -0500141 subq $MCOUNT_INSN_SIZE, %rsi
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100142
143 call prepare_ftrace_return
144
Cyrill Gorcunovd680fe42008-12-13 00:09:08 +0300145 MCOUNT_RESTORE_FRAME
146
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100147 retq
148END(ftrace_graph_caller)
149
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +0300150GLOBAL(return_to_handler)
Jiri Olsa4818d802009-07-29 10:58:37 +0200151 subq $24, %rsp
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100152
Steven Rostedte71e99c2009-03-25 14:30:04 -0400153 /* Save the return values */
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100154 movq %rax, (%rsp)
Steven Rostedte71e99c2009-03-25 14:30:04 -0400155 movq %rdx, 8(%rsp)
Steven Rostedt71e308a2009-06-18 12:45:08 -0400156 movq %rbp, %rdi
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100157
158 call ftrace_return_to_handler
159
Steven Rostedt194ec342009-10-13 16:33:50 -0400160 movq %rax, %rdi
Steven Rostedte71e99c2009-03-25 14:30:04 -0400161 movq 8(%rsp), %rdx
Jan Beulich7effaa82005-09-12 18:49:24 +0200162 movq (%rsp), %rax
Steven Rostedt194ec342009-10-13 16:33:50 -0400163 addq $24, %rsp
164 jmp *%rdi
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100165#endif
Jan Beulich7effaa82005-09-12 18:49:24 +0200166
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
168#ifndef CONFIG_PREEMPT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169#define retint_kernel retint_restore_args
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100170#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
172#ifdef CONFIG_PARAVIRT
173ENTRY(native_usergs_sysret64)
174 swapgs
175 sysretq
Cyrill Gorcunovb3baaa12009-02-23 22:57:00 +0300176ENDPROC(native_usergs_sysret64)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177#endif /* CONFIG_PARAVIRT */
178
179
180.macro TRACE_IRQS_IRETQ offset=ARGOFFSET
181#ifdef CONFIG_TRACE_IRQFLAGS
182 bt $9,EFLAGS-\offset(%rsp) /* interrupts off? */
183 jnc 1f
184 TRACE_IRQS_ON
1851:
186#endif
187.endm
188
189/*
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100190 * C code is not supposed to know about undefined top of stack. Every time
191 * a C function with an pt_regs argument is called from the SYSCALL based
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 * fast path FIXUP_TOP_OF_STACK is needed.
193 * RESTORE_TOP_OF_STACK syncs the syscall state after any possible ptregs
194 * manipulation.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100195 */
196
197 /* %rsp:at FRAMEEND */
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100198 .macro FIXUP_TOP_OF_STACK tmp offset=0
Brian Gerst3d1e42a2009-01-19 00:38:58 +0900199 movq PER_CPU_VAR(old_rsp),\tmp
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100200 movq \tmp,RSP+\offset(%rsp)
201 movq $__USER_DS,SS+\offset(%rsp)
202 movq $__USER_CS,CS+\offset(%rsp)
203 movq $-1,RCX+\offset(%rsp)
204 movq R11+\offset(%rsp),\tmp /* get eflags */
205 movq \tmp,EFLAGS+\offset(%rsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 .endm
207
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100208 .macro RESTORE_TOP_OF_STACK tmp offset=0
209 movq RSP+\offset(%rsp),\tmp
Brian Gerst3d1e42a2009-01-19 00:38:58 +0900210 movq \tmp,PER_CPU_VAR(old_rsp)
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100211 movq EFLAGS+\offset(%rsp),\tmp
212 movq \tmp,R11+\offset(%rsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 .endm
214
215 .macro FAKE_STACK_FRAME child_rip
216 /* push in order ss, rsp, eflags, cs, rip */
217 xorl %eax, %eax
Jan Beulichdf5d1872010-09-02 14:07:16 +0100218 pushq_cfi $__KERNEL_DS /* ss */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 /*CFI_REL_OFFSET ss,0*/
Jan Beulichdf5d1872010-09-02 14:07:16 +0100220 pushq_cfi %rax /* rsp */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 CFI_REL_OFFSET rsp,0
Jan Beulichdf5d1872010-09-02 14:07:16 +0100222 pushq_cfi $X86_EFLAGS_IF /* eflags - interrupts on */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 /*CFI_REL_OFFSET rflags,0*/
Jan Beulichdf5d1872010-09-02 14:07:16 +0100224 pushq_cfi $__KERNEL_CS /* cs */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 /*CFI_REL_OFFSET cs,0*/
Jan Beulichdf5d1872010-09-02 14:07:16 +0100226 pushq_cfi \child_rip /* rip */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 CFI_REL_OFFSET rip,0
Jan Beulichdf5d1872010-09-02 14:07:16 +0100228 pushq_cfi %rax /* orig rax */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 .endm
230
231 .macro UNFAKE_STACK_FRAME
232 addq $8*6, %rsp
233 CFI_ADJUST_CFA_OFFSET -(6*8)
234 .endm
235
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100236/*
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100237 * initial frame state for interrupts (and exceptions without error code)
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100238 */
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100239 .macro EMPTY_FRAME start=1 offset=0
240 .if \start
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100241 CFI_STARTPROC simple
242 CFI_SIGNAL_FRAME
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100243 CFI_DEF_CFA rsp,8+\offset
244 .else
245 CFI_DEF_CFA_OFFSET 8+\offset
246 .endif
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100247 .endm
248
249/*
250 * initial frame state for interrupts (and exceptions without error code)
251 */
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100252 .macro INTR_FRAME start=1 offset=0
Ingo Molnare8a0e272008-11-21 15:11:32 +0100253 EMPTY_FRAME \start, SS+8+\offset-RIP
254 /*CFI_REL_OFFSET ss, SS+\offset-RIP*/
255 CFI_REL_OFFSET rsp, RSP+\offset-RIP
256 /*CFI_REL_OFFSET rflags, EFLAGS+\offset-RIP*/
257 /*CFI_REL_OFFSET cs, CS+\offset-RIP*/
258 CFI_REL_OFFSET rip, RIP+\offset-RIP
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100259 .endm
260
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100261/*
262 * initial frame state for exceptions with error code (and interrupts
263 * with vector already pushed)
264 */
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100265 .macro XCPT_FRAME start=1 offset=0
Ingo Molnare8a0e272008-11-21 15:11:32 +0100266 INTR_FRAME \start, RIP+\offset-ORIG_RAX
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100267 /*CFI_REL_OFFSET orig_rax, ORIG_RAX-ORIG_RAX*/
268 .endm
269
270/*
271 * frame that enables calling into C.
272 */
273 .macro PARTIAL_FRAME start=1 offset=0
Ingo Molnare8a0e272008-11-21 15:11:32 +0100274 XCPT_FRAME \start, ORIG_RAX+\offset-ARGOFFSET
275 CFI_REL_OFFSET rdi, RDI+\offset-ARGOFFSET
276 CFI_REL_OFFSET rsi, RSI+\offset-ARGOFFSET
277 CFI_REL_OFFSET rdx, RDX+\offset-ARGOFFSET
278 CFI_REL_OFFSET rcx, RCX+\offset-ARGOFFSET
279 CFI_REL_OFFSET rax, RAX+\offset-ARGOFFSET
280 CFI_REL_OFFSET r8, R8+\offset-ARGOFFSET
281 CFI_REL_OFFSET r9, R9+\offset-ARGOFFSET
282 CFI_REL_OFFSET r10, R10+\offset-ARGOFFSET
283 CFI_REL_OFFSET r11, R11+\offset-ARGOFFSET
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100284 .endm
285
286/*
287 * frame that enables passing a complete pt_regs to a C function.
288 */
289 .macro DEFAULT_FRAME start=1 offset=0
Ingo Molnare8a0e272008-11-21 15:11:32 +0100290 PARTIAL_FRAME \start, R11+\offset-R15
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100291 CFI_REL_OFFSET rbx, RBX+\offset
292 CFI_REL_OFFSET rbp, RBP+\offset
293 CFI_REL_OFFSET r12, R12+\offset
294 CFI_REL_OFFSET r13, R13+\offset
295 CFI_REL_OFFSET r14, R14+\offset
296 CFI_REL_OFFSET r15, R15+\offset
297 .endm
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100298
299/* save partial stack frame */
Frederic Weisbecker18718532011-07-01 01:51:22 +0200300 .macro SAVE_ARGS_IRQ
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100301 cld
Frederic Weisbecker18718532011-07-01 01:51:22 +0200302 /* start from rbp in pt_regs and jump over */
303 movq_cfi rdi, RDI-RBP
304 movq_cfi rsi, RSI-RBP
305 movq_cfi rdx, RDX-RBP
306 movq_cfi rcx, RCX-RBP
307 movq_cfi rax, RAX-RBP
308 movq_cfi r8, R8-RBP
309 movq_cfi r9, R9-RBP
310 movq_cfi r10, R10-RBP
311 movq_cfi r11, R11-RBP
Ingo Molnar14ae22b2008-11-21 15:20:47 +0100312
Frederic Weisbecker18718532011-07-01 01:51:22 +0200313 movq_cfi rbp, 0 /* push %rbp */
314 movq %rsp, %rbp
Frederic Weisbecker3b99a3ef2011-07-01 02:25:17 +0200315
316 leaq -RBP(%rsp),%rdi /* arg1 for handler */
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100317 testl $3, CS(%rdi)
318 je 1f
319 SWAPGS
320 /*
Brian Gerst56895532009-01-19 00:38:58 +0900321 * irq_count is used to check if a CPU is already on an interrupt stack
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100322 * or not. While this is essentially redundant with preempt_count it is
323 * a little cheaper to use a separate counter in the PDA (short of
324 * moving irq_enter into assembly, which would be too much work)
325 */
Brian Gerst56895532009-01-19 00:38:58 +09003261: incl PER_CPU_VAR(irq_count)
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100327 jne 2f
Brian Gerst26f80bd2009-01-19 00:38:58 +0900328 mov PER_CPU_VAR(irq_stack_ptr),%rsp
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100329 EMPTY_FRAME 0
Martin Hicksa67798c2009-01-30 10:50:54 -0600330 pushq_cfi %rbp /* backlink for unwinder */
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100331 /*
332 * We entered an interrupt context - irqs are off:
333 */
3342: TRACE_IRQS_OFF
Frederic Weisbecker18718532011-07-01 01:51:22 +0200335 .endm
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100336
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100337ENTRY(save_rest)
338 PARTIAL_FRAME 1 REST_SKIP+8
339 movq 5*8+16(%rsp), %r11 /* save return address */
340 movq_cfi rbx, RBX+16
341 movq_cfi rbp, RBP+16
342 movq_cfi r12, R12+16
343 movq_cfi r13, R13+16
344 movq_cfi r14, R14+16
345 movq_cfi r15, R15+16
346 movq %r11, 8(%rsp) /* return address */
347 FIXUP_TOP_OF_STACK %r11, 16
348 ret
349 CFI_ENDPROC
350END(save_rest)
351
Alexander van Heukelume2f6bc22008-11-21 16:43:18 +0100352/* save complete stack frame */
Jan Beulichc2810182009-03-12 10:38:55 +0000353 .pushsection .kprobes.text, "ax"
Alexander van Heukelume2f6bc22008-11-21 16:43:18 +0100354ENTRY(save_paranoid)
355 XCPT_FRAME 1 RDI+8
356 cld
357 movq_cfi rdi, RDI+8
358 movq_cfi rsi, RSI+8
359 movq_cfi rdx, RDX+8
360 movq_cfi rcx, RCX+8
361 movq_cfi rax, RAX+8
362 movq_cfi r8, R8+8
363 movq_cfi r9, R9+8
364 movq_cfi r10, R10+8
365 movq_cfi r11, R11+8
366 movq_cfi rbx, RBX+8
367 movq_cfi rbp, RBP+8
368 movq_cfi r12, R12+8
369 movq_cfi r13, R13+8
370 movq_cfi r14, R14+8
371 movq_cfi r15, R15+8
372 movl $1,%ebx
373 movl $MSR_GS_BASE,%ecx
374 rdmsr
375 testl %edx,%edx
376 js 1f /* negative -> in kernel */
377 SWAPGS
378 xorl %ebx,%ebx
3791: ret
380 CFI_ENDPROC
381END(save_paranoid)
Jan Beulichc2810182009-03-12 10:38:55 +0000382 .popsection
Alexander van Heukelume2f6bc22008-11-21 16:43:18 +0100383
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384/*
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100385 * A newly forked process directly context switches into this address.
386 *
387 * rdi: prev task we switched from
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100388 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389ENTRY(ret_from_fork)
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100390 DEFAULT_FRAME
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100391
Benjamin LaHaise7106a5a2009-01-10 23:00:22 -0500392 LOCK ; btr $TIF_FORK,TI_flags(%r8)
393
Jan Beulichdf5d1872010-09-02 14:07:16 +0100394 pushq_cfi kernel_eflags(%rip)
395 popfq_cfi # reset kernel eflags
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100396
397 call schedule_tail # rdi: 'prev' task parameter
398
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 GET_THREAD_INFO(%rcx)
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100400
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 RESTORE_REST
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100402
403 testl $3, CS-ARGOFFSET(%rsp) # from kernel_thread?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 je int_ret_from_sys_call
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100405
406 testl $_TIF_IA32, TI_flags(%rcx) # 32-bit compat task needs IRET
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 jnz int_ret_from_sys_call
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100408
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100409 RESTORE_TOP_OF_STACK %rdi, -ARGOFFSET
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100410 jmp ret_from_sys_call # go to the SYSRET fastpath
411
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200413END(ret_from_fork)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
415/*
Lucas De Marchi0d2eb442011-03-17 16:24:16 -0300416 * System call entry. Up to 6 arguments in registers are supported.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 *
418 * SYSCALL does not save anything on the stack and does not change the
419 * stack pointer.
420 */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100421
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422/*
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100423 * Register setup:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 * rax system call number
425 * rdi arg0
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100426 * rcx return address for syscall/sysret, C arg3
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 * rsi arg1
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100428 * rdx arg2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 * r10 arg3 (--> moved to rcx for C)
430 * r8 arg4
431 * r9 arg5
432 * r11 eflags for syscall/sysret, temporary for C
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100433 * r12-r15,rbp,rbx saved by C code, not touched.
434 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 * Interrupts are off on entry.
436 * Only called from user space.
437 *
438 * XXX if we had a free scratch register we could save the RSP into the stack frame
439 * and report it properly in ps. Unfortunately we haven't.
Andi Kleen7bf36bb2006-04-07 19:50:00 +0200440 *
441 * When user can change the frames always force IRET. That is because
442 * it deals with uncanonical addresses better. SYSRET has trouble
443 * with them due to bugs in both AMD and Intel CPUs.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100444 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
446ENTRY(system_call)
Jan Beulich7effaa82005-09-12 18:49:24 +0200447 CFI_STARTPROC simple
Jan Beulichadf14232006-09-26 10:52:41 +0200448 CFI_SIGNAL_FRAME
Brian Gerst9af45652009-01-19 00:38:58 +0900449 CFI_DEF_CFA rsp,KERNEL_STACK_OFFSET
Jan Beulich7effaa82005-09-12 18:49:24 +0200450 CFI_REGISTER rip,rcx
451 /*CFI_REGISTER rflags,r11*/
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100452 SWAPGS_UNSAFE_STACK
453 /*
454 * A hypervisor implementation might want to use a label
455 * after the swapgs, so that it can do the swapgs
456 * for the guest and jump here on syscall.
457 */
458ENTRY(system_call_after_swapgs)
459
Brian Gerst3d1e42a2009-01-19 00:38:58 +0900460 movq %rsp,PER_CPU_VAR(old_rsp)
Brian Gerst9af45652009-01-19 00:38:58 +0900461 movq PER_CPU_VAR(kernel_stack),%rsp
Ingo Molnar2601e642006-07-03 00:24:45 -0700462 /*
463 * No need to follow this irqs off/on section - it's straight
464 * and short:
465 */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100466 ENABLE_INTERRUPTS(CLBR_NONE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 SAVE_ARGS 8,1
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100468 movq %rax,ORIG_RAX-ARGOFFSET(%rsp)
Jan Beulich7effaa82005-09-12 18:49:24 +0200469 movq %rcx,RIP-ARGOFFSET(%rsp)
470 CFI_REL_OFFSET rip,RIP-ARGOFFSET
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 GET_THREAD_INFO(%rcx)
Roland McGrathd4d67152008-07-09 02:38:07 -0700472 testl $_TIF_WORK_SYSCALL_ENTRY,TI_flags(%rcx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 jnz tracesys
Roland McGrath86a1c342008-06-23 15:37:04 -0700474system_call_fastpath:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 cmpq $__NR_syscall_max,%rax
476 ja badsys
477 movq %r10,%rcx
478 call *sys_call_table(,%rax,8) # XXX: rip relative
479 movq %rax,RAX-ARGOFFSET(%rsp)
480/*
481 * Syscall return path ending with SYSRET (fast path)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100482 * Has incomplete stack frame and undefined top of stack.
483 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484ret_from_sys_call:
Andi Kleen11b854b2005-04-16 15:25:02 -0700485 movl $_TIF_ALLWORK_MASK,%edi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 /* edi: flagmask */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100487sysret_check:
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200488 LOCKDEP_SYS_EXIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 GET_THREAD_INFO(%rcx)
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100490 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700491 TRACE_IRQS_OFF
Glauber Costa26ccb8a2008-06-24 11:19:35 -0300492 movl TI_flags(%rcx),%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 andl %edi,%edx
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100494 jnz sysret_careful
Jan Beulichbcddc012006-12-07 02:14:02 +0100495 CFI_REMEMBER_STATE
Ingo Molnar2601e642006-07-03 00:24:45 -0700496 /*
497 * sysretq will re-enable interrupts:
498 */
499 TRACE_IRQS_ON
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 movq RIP-ARGOFFSET(%rsp),%rcx
Jan Beulich7effaa82005-09-12 18:49:24 +0200501 CFI_REGISTER rip,rcx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 RESTORE_ARGS 0,-ARG_SKIP,1
Jan Beulich7effaa82005-09-12 18:49:24 +0200503 /*CFI_REGISTER rflags,r11*/
Brian Gerst3d1e42a2009-01-19 00:38:58 +0900504 movq PER_CPU_VAR(old_rsp), %rsp
Jeremy Fitzhardinge2be29982008-06-25 00:19:28 -0400505 USERGS_SYSRET64
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
Jan Beulichbcddc012006-12-07 02:14:02 +0100507 CFI_RESTORE_STATE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 /* Handle reschedules */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100509 /* edx: work, edi: workmask */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510sysret_careful:
511 bt $TIF_NEED_RESCHED,%edx
512 jnc sysret_signal
Ingo Molnar2601e642006-07-03 00:24:45 -0700513 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100514 ENABLE_INTERRUPTS(CLBR_NONE)
Jan Beulichdf5d1872010-09-02 14:07:16 +0100515 pushq_cfi %rdi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 call schedule
Jan Beulichdf5d1872010-09-02 14:07:16 +0100517 popq_cfi %rdi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 jmp sysret_check
519
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100520 /* Handle a signal */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521sysret_signal:
Ingo Molnar2601e642006-07-03 00:24:45 -0700522 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100523 ENABLE_INTERRUPTS(CLBR_NONE)
Roland McGrath86a1c342008-06-23 15:37:04 -0700524#ifdef CONFIG_AUDITSYSCALL
525 bt $TIF_SYSCALL_AUDIT,%edx
526 jc sysret_audit
527#endif
Roland McGrathb60e7142009-09-22 16:46:34 -0700528 /*
529 * We have a signal, or exit tracing or single-step.
530 * These all wind up with the iret return path anyway,
531 * so just join that path right now.
532 */
533 FIXUP_TOP_OF_STACK %r11, -ARGOFFSET
534 jmp int_check_syscall_exit_work
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100535
Jan Beulich7effaa82005-09-12 18:49:24 +0200536badsys:
537 movq $-ENOSYS,RAX-ARGOFFSET(%rsp)
538 jmp ret_from_sys_call
539
Roland McGrath86a1c342008-06-23 15:37:04 -0700540#ifdef CONFIG_AUDITSYSCALL
541 /*
542 * Fast path for syscall audit without full syscall trace.
543 * We just call audit_syscall_entry() directly, and then
544 * jump back to the normal fast path.
545 */
546auditsys:
547 movq %r10,%r9 /* 6th arg: 4th syscall arg */
548 movq %rdx,%r8 /* 5th arg: 3rd syscall arg */
549 movq %rsi,%rcx /* 4th arg: 2nd syscall arg */
550 movq %rdi,%rdx /* 3rd arg: 1st syscall arg */
551 movq %rax,%rsi /* 2nd arg: syscall number */
552 movl $AUDIT_ARCH_X86_64,%edi /* 1st arg: audit arch */
553 call audit_syscall_entry
554 LOAD_ARGS 0 /* reload call-clobbered registers */
555 jmp system_call_fastpath
556
557 /*
558 * Return fast path for syscall audit. Call audit_syscall_exit()
559 * directly and then jump back to the fast path with TIF_SYSCALL_AUDIT
560 * masked off.
561 */
562sysret_audit:
Roland McGrath03275592010-07-21 17:44:12 -0700563 movq RAX-ARGOFFSET(%rsp),%rsi /* second arg, syscall return value */
564 cmpq $0,%rsi /* is it < 0? */
Roland McGrath86a1c342008-06-23 15:37:04 -0700565 setl %al /* 1 if so, 0 if not */
566 movzbl %al,%edi /* zero-extend that into %edi */
567 inc %edi /* first arg, 0->1(AUDITSC_SUCCESS), 1->2(AUDITSC_FAILURE) */
568 call audit_syscall_exit
569 movl $(_TIF_ALLWORK_MASK & ~_TIF_SYSCALL_AUDIT),%edi
570 jmp sysret_check
571#endif /* CONFIG_AUDITSYSCALL */
572
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 /* Do syscall tracing */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100574tracesys:
Roland McGrath86a1c342008-06-23 15:37:04 -0700575#ifdef CONFIG_AUDITSYSCALL
576 testl $(_TIF_WORK_SYSCALL_ENTRY & ~_TIF_SYSCALL_AUDIT),TI_flags(%rcx)
577 jz auditsys
578#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 SAVE_REST
Roland McGratha31f8dd2008-03-16 21:59:11 -0700580 movq $-ENOSYS,RAX(%rsp) /* ptrace can change this for a bad syscall */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 FIXUP_TOP_OF_STACK %rdi
582 movq %rsp,%rdi
583 call syscall_trace_enter
Roland McGrathd4d67152008-07-09 02:38:07 -0700584 /*
585 * Reload arg registers from stack in case ptrace changed them.
586 * We don't reload %rax because syscall_trace_enter() returned
587 * the value it wants us to use in the table lookup.
588 */
589 LOAD_ARGS ARGOFFSET, 1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 RESTORE_REST
591 cmpq $__NR_syscall_max,%rax
Roland McGratha31f8dd2008-03-16 21:59:11 -0700592 ja int_ret_from_sys_call /* RAX(%rsp) set to -ENOSYS above */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 movq %r10,%rcx /* fixup for C */
594 call *sys_call_table(,%rax,8)
Roland McGratha31f8dd2008-03-16 21:59:11 -0700595 movq %rax,RAX-ARGOFFSET(%rsp)
Andi Kleen7bf36bb2006-04-07 19:50:00 +0200596 /* Use IRET because user could have changed frame */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100597
598/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 * Syscall return path ending with IRET.
600 * Has correct top of stack, but partial stack frame.
Jan Beulichbcddc012006-12-07 02:14:02 +0100601 */
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +0300602GLOBAL(int_ret_from_sys_call)
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100603 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700604 TRACE_IRQS_OFF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 testl $3,CS-ARGOFFSET(%rsp)
606 je retint_restore_args
607 movl $_TIF_ALLWORK_MASK,%edi
608 /* edi: mask to check */
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +0300609GLOBAL(int_with_check)
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200610 LOCKDEP_SYS_EXIT_IRQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 GET_THREAD_INFO(%rcx)
Glauber Costa26ccb8a2008-06-24 11:19:35 -0300612 movl TI_flags(%rcx),%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 andl %edi,%edx
614 jnz int_careful
Glauber Costa26ccb8a2008-06-24 11:19:35 -0300615 andl $~TS_COMPAT,TI_status(%rcx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 jmp retint_swapgs
617
618 /* Either reschedule or signal or syscall exit tracking needed. */
619 /* First do a reschedule test. */
620 /* edx: work, edi: workmask */
621int_careful:
622 bt $TIF_NEED_RESCHED,%edx
623 jnc int_very_careful
Ingo Molnar2601e642006-07-03 00:24:45 -0700624 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100625 ENABLE_INTERRUPTS(CLBR_NONE)
Jan Beulichdf5d1872010-09-02 14:07:16 +0100626 pushq_cfi %rdi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 call schedule
Jan Beulichdf5d1872010-09-02 14:07:16 +0100628 popq_cfi %rdi
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100629 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700630 TRACE_IRQS_OFF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 jmp int_with_check
632
633 /* handle signals and tracing -- both require a full stack frame */
634int_very_careful:
Ingo Molnar2601e642006-07-03 00:24:45 -0700635 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100636 ENABLE_INTERRUPTS(CLBR_NONE)
Roland McGrathb60e7142009-09-22 16:46:34 -0700637int_check_syscall_exit_work:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 SAVE_REST
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100639 /* Check for syscall exit trace */
Roland McGrathd4d67152008-07-09 02:38:07 -0700640 testl $_TIF_WORK_SYSCALL_EXIT,%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 jz int_signal
Jan Beulichdf5d1872010-09-02 14:07:16 +0100642 pushq_cfi %rdi
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100643 leaq 8(%rsp),%rdi # &ptregs -> arg1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 call syscall_trace_leave
Jan Beulichdf5d1872010-09-02 14:07:16 +0100645 popq_cfi %rdi
Roland McGrathd4d67152008-07-09 02:38:07 -0700646 andl $~(_TIF_WORK_SYSCALL_EXIT|_TIF_SYSCALL_EMU),%edi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 jmp int_restore_rest
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100648
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649int_signal:
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100650 testl $_TIF_DO_NOTIFY_MASK,%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 jz 1f
652 movq %rsp,%rdi # &ptregs -> arg1
653 xorl %esi,%esi # oldset -> arg2
654 call do_notify_resume
Roland McGratheca91e72008-07-10 14:50:39 -07006551: movl $_TIF_WORK_MASK,%edi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656int_restore_rest:
657 RESTORE_REST
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100658 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700659 TRACE_IRQS_OFF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 jmp int_with_check
661 CFI_ENDPROC
Jan Beulichbcddc012006-12-07 02:14:02 +0100662END(system_call)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100663
664/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 * Certain special system calls that need to save a complete full stack frame.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100666 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 .macro PTREGSCALL label,func,arg
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100668ENTRY(\label)
669 PARTIAL_FRAME 1 8 /* offset 8: return address */
670 subq $REST_SKIP, %rsp
671 CFI_ADJUST_CFA_OFFSET REST_SKIP
672 call save_rest
673 DEFAULT_FRAME 0 8 /* offset 8: return address */
674 leaq 8(%rsp), \arg /* pt_regs pointer */
675 call \func
676 jmp ptregscall_common
677 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200678END(\label)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 .endm
680
681 PTREGSCALL stub_clone, sys_clone, %r8
682 PTREGSCALL stub_fork, sys_fork, %rdi
683 PTREGSCALL stub_vfork, sys_vfork, %rdi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 PTREGSCALL stub_sigaltstack, sys_sigaltstack, %rdx
685 PTREGSCALL stub_iopl, sys_iopl, %rsi
686
687ENTRY(ptregscall_common)
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100688 DEFAULT_FRAME 1 8 /* offset 8: return address */
689 RESTORE_TOP_OF_STACK %r11, 8
690 movq_cfi_restore R15+8, r15
691 movq_cfi_restore R14+8, r14
692 movq_cfi_restore R13+8, r13
693 movq_cfi_restore R12+8, r12
694 movq_cfi_restore RBP+8, rbp
695 movq_cfi_restore RBX+8, rbx
696 ret $REST_SKIP /* pop extended registers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200698END(ptregscall_common)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100699
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700ENTRY(stub_execve)
701 CFI_STARTPROC
Jan Beuliche6b04b62010-09-02 13:52:45 +0100702 addq $8, %rsp
703 PARTIAL_FRAME 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 SAVE_REST
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 FIXUP_TOP_OF_STACK %r11
Ingo Molnar5d119b22008-02-26 12:55:57 +0100706 movq %rsp, %rcx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 call sys_execve
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 RESTORE_TOP_OF_STACK %r11
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 movq %rax,RAX(%rsp)
710 RESTORE_REST
711 jmp int_ret_from_sys_call
712 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200713END(stub_execve)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100714
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715/*
716 * sigreturn is special because it needs to restore all registers on return.
717 * This cannot be done with SYSRET, so use the IRET return path instead.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100718 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719ENTRY(stub_rt_sigreturn)
720 CFI_STARTPROC
Jan Beulich7effaa82005-09-12 18:49:24 +0200721 addq $8, %rsp
Jan Beuliche6b04b62010-09-02 13:52:45 +0100722 PARTIAL_FRAME 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 SAVE_REST
724 movq %rsp,%rdi
725 FIXUP_TOP_OF_STACK %r11
726 call sys_rt_sigreturn
727 movq %rax,RAX(%rsp) # fixme, this could be done at the higher layer
728 RESTORE_REST
729 jmp int_ret_from_sys_call
730 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200731END(stub_rt_sigreturn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
Jan Beulich7effaa82005-09-12 18:49:24 +0200733/*
H. Peter Anvin939b7872008-11-11 13:51:52 -0800734 * Build the entry stubs and pointer table with some assembler magic.
735 * We pack 7 stubs into a single 32-byte chunk, which will fit in a
736 * single cache line on all modern x86 implementations.
737 */
738 .section .init.rodata,"a"
739ENTRY(interrupt)
Jiri Olsaea714542011-03-07 19:10:39 +0100740 .section .entry.text
H. Peter Anvin939b7872008-11-11 13:51:52 -0800741 .p2align 5
742 .p2align CONFIG_X86_L1_CACHE_SHIFT
743ENTRY(irq_entries_start)
744 INTR_FRAME
745vector=FIRST_EXTERNAL_VECTOR
746.rept (NR_VECTORS-FIRST_EXTERNAL_VECTOR+6)/7
747 .balign 32
748 .rept 7
749 .if vector < NR_VECTORS
H. Peter Anvin86655962008-11-12 10:27:35 -0800750 .if vector <> FIRST_EXTERNAL_VECTOR
H. Peter Anvin939b7872008-11-11 13:51:52 -0800751 CFI_ADJUST_CFA_OFFSET -8
752 .endif
Jan Beulichdf5d1872010-09-02 14:07:16 +01007531: pushq_cfi $(~vector+0x80) /* Note: always in signed byte range */
H. Peter Anvin86655962008-11-12 10:27:35 -0800754 .if ((vector-FIRST_EXTERNAL_VECTOR)%7) <> 6
H. Peter Anvin939b7872008-11-11 13:51:52 -0800755 jmp 2f
756 .endif
757 .previous
758 .quad 1b
Jiri Olsaea714542011-03-07 19:10:39 +0100759 .section .entry.text
H. Peter Anvin939b7872008-11-11 13:51:52 -0800760vector=vector+1
761 .endif
762 .endr
7632: jmp common_interrupt
764.endr
765 CFI_ENDPROC
766END(irq_entries_start)
767
768.previous
769END(interrupt)
770.previous
771
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100772/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 * Interrupt entry/exit.
774 *
775 * Interrupt entry points save only callee clobbered registers in fast path.
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100776 *
777 * Entry runs with interrupts off.
778 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779
Alexander van Heukelum722024d2008-11-13 13:50:20 +0100780/* 0(%rsp): ~(interrupt number) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 .macro interrupt func
Frederic Weisbecker625dbc32011-01-06 15:22:47 +0100782 /* reserve pt_regs for scratch regs and rbp */
783 subq $ORIG_RAX-RBP, %rsp
784 CFI_ADJUST_CFA_OFFSET ORIG_RAX-RBP
Frederic Weisbecker18718532011-07-01 01:51:22 +0200785 SAVE_ARGS_IRQ
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100786 PARTIAL_FRAME 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 call \func
788 .endm
789
Masami Hiramatsu8222d712009-08-27 13:23:25 -0400790/*
791 * Interrupt entry/exit should be protected against kprobes
792 */
793 .pushsection .kprobes.text, "ax"
Alexander van Heukelum722024d2008-11-13 13:50:20 +0100794 /*
795 * The interrupt stubs push (~vector+0x80) onto the stack and
796 * then jump to common_interrupt.
797 */
H. Peter Anvin939b7872008-11-11 13:51:52 -0800798 .p2align CONFIG_X86_L1_CACHE_SHIFT
799common_interrupt:
Jan Beulich7effaa82005-09-12 18:49:24 +0200800 XCPT_FRAME
Alexander van Heukelum722024d2008-11-13 13:50:20 +0100801 addq $-0x80,(%rsp) /* Adjust vector to [-256,-1] range */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 interrupt do_IRQ
Brian Gerst3d1e42a2009-01-19 00:38:58 +0900803 /* 0(%rsp): old_rsp-ARGOFFSET */
Jan Beulich7effaa82005-09-12 18:49:24 +0200804ret_from_intr:
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100805 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700806 TRACE_IRQS_OFF
Brian Gerst56895532009-01-19 00:38:58 +0900807 decl PER_CPU_VAR(irq_count)
Jan Beulich1de9c3f2006-06-26 13:57:35 +0200808 leaveq
Frederic Weisbecker625dbc32011-01-06 15:22:47 +0100809
Jan Beulichdf5d1872010-09-02 14:07:16 +0100810 CFI_RESTORE rbp
Jan Beulich7effaa82005-09-12 18:49:24 +0200811 CFI_DEF_CFA_REGISTER rsp
Jan Beulich1de9c3f2006-06-26 13:57:35 +0200812 CFI_ADJUST_CFA_OFFSET -8
Frederic Weisbecker625dbc32011-01-06 15:22:47 +0100813
814 /* we did not save rbx, restore only from ARGOFFSET */
815 addq $8, %rsp
816 CFI_ADJUST_CFA_OFFSET -8
Jan Beulich7effaa82005-09-12 18:49:24 +0200817exit_intr:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 GET_THREAD_INFO(%rcx)
819 testl $3,CS-ARGOFFSET(%rsp)
820 je retint_kernel
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100821
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 /* Interrupt came from user space */
823 /*
824 * Has a correct top of stack, but a partial stack frame
825 * %rcx: thread info. Interrupts off.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100826 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827retint_with_reschedule:
828 movl $_TIF_WORK_MASK,%edi
Jan Beulich7effaa82005-09-12 18:49:24 +0200829retint_check:
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200830 LOCKDEP_SYS_EXIT_IRQ
Glauber Costa26ccb8a2008-06-24 11:19:35 -0300831 movl TI_flags(%rcx),%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 andl %edi,%edx
Jan Beulich7effaa82005-09-12 18:49:24 +0200833 CFI_REMEMBER_STATE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 jnz retint_careful
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200835
836retint_swapgs: /* return to user-space */
Ingo Molnar2601e642006-07-03 00:24:45 -0700837 /*
838 * The iretq could re-enable interrupts:
839 */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100840 DISABLE_INTERRUPTS(CLBR_ANY)
Ingo Molnar2601e642006-07-03 00:24:45 -0700841 TRACE_IRQS_IRETQ
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100842 SWAPGS
Ingo Molnar2601e642006-07-03 00:24:45 -0700843 jmp restore_args
844
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200845retint_restore_args: /* return to kernel space */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100846 DISABLE_INTERRUPTS(CLBR_ANY)
Ingo Molnar2601e642006-07-03 00:24:45 -0700847 /*
848 * The iretq could re-enable interrupts:
849 */
850 TRACE_IRQS_IRETQ
851restore_args:
Ingo Molnar3701d8632008-02-09 23:24:08 +0100852 RESTORE_ARGS 0,8,0
853
Adrian Bunkf7f3d792008-02-13 23:29:53 +0200854irq_return:
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100855 INTERRUPT_RETURN
Ingo Molnar3701d8632008-02-09 23:24:08 +0100856
857 .section __ex_table, "a"
858 .quad irq_return, bad_iret
859 .previous
860
861#ifdef CONFIG_PARAVIRT
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100862ENTRY(native_iret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 iretq
864
865 .section __ex_table,"a"
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100866 .quad native_iret, bad_iret
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 .previous
Ingo Molnar3701d8632008-02-09 23:24:08 +0100868#endif
869
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 .section .fixup,"ax"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871bad_iret:
Roland McGrath3aa4b372008-02-06 22:39:43 +0100872 /*
873 * The iret traps when the %cs or %ss being restored is bogus.
874 * We've lost the original trap vector and error code.
875 * #GPF is the most likely one to get for an invalid selector.
876 * So pretend we completed the iret and took the #GPF in user mode.
877 *
878 * We are now running with the kernel GS after exception recovery.
879 * But error_entry expects us to have user GS to match the user %cs,
880 * so swap back.
881 */
882 pushq $0
883
884 SWAPGS
885 jmp general_protection
886
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100887 .previous
888
Jan Beulich7effaa82005-09-12 18:49:24 +0200889 /* edi: workmask, edx: work */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890retint_careful:
Jan Beulich7effaa82005-09-12 18:49:24 +0200891 CFI_RESTORE_STATE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 bt $TIF_NEED_RESCHED,%edx
893 jnc retint_signal
Ingo Molnar2601e642006-07-03 00:24:45 -0700894 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100895 ENABLE_INTERRUPTS(CLBR_NONE)
Jan Beulichdf5d1872010-09-02 14:07:16 +0100896 pushq_cfi %rdi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 call schedule
Jan Beulichdf5d1872010-09-02 14:07:16 +0100898 popq_cfi %rdi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 GET_THREAD_INFO(%rcx)
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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 jmp retint_check
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100903
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904retint_signal:
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100905 testl $_TIF_DO_NOTIFY_MASK,%edx
Andi Kleen10ffdbb2005-05-16 21:53:19 -0700906 jz retint_swapgs
Ingo Molnar2601e642006-07-03 00:24:45 -0700907 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100908 ENABLE_INTERRUPTS(CLBR_NONE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 SAVE_REST
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100910 movq $-1,ORIG_RAX(%rsp)
Andi Kleen3829ee62005-07-28 21:15:48 -0700911 xorl %esi,%esi # oldset
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 movq %rsp,%rdi # &pt_regs
913 call do_notify_resume
914 RESTORE_REST
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100915 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700916 TRACE_IRQS_OFF
Andi Kleenbe9e6872005-05-01 08:58:51 -0700917 GET_THREAD_INFO(%rcx)
Roland McGratheca91e72008-07-10 14:50:39 -0700918 jmp retint_with_reschedule
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919
920#ifdef CONFIG_PREEMPT
921 /* Returning to kernel space. Check if we need preemption */
922 /* rcx: threadinfo. interrupts off. */
Andi Kleenb06baba2006-09-26 10:52:29 +0200923ENTRY(retint_kernel)
Glauber Costa26ccb8a2008-06-24 11:19:35 -0300924 cmpl $0,TI_preempt_count(%rcx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 jnz retint_restore_args
Glauber Costa26ccb8a2008-06-24 11:19:35 -0300926 bt $TIF_NEED_RESCHED,TI_flags(%rcx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 jnc retint_restore_args
928 bt $9,EFLAGS-ARGOFFSET(%rsp) /* interrupts off? */
929 jnc retint_restore_args
930 call preempt_schedule_irq
931 jmp exit_intr
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100932#endif
Jan Beulich4b787e02006-06-26 13:56:55 +0200933
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200935END(common_interrupt)
Masami Hiramatsu8222d712009-08-27 13:23:25 -0400936/*
937 * End of kprobes section
938 */
939 .popsection
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100940
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941/*
942 * APIC interrupts.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100943 */
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100944.macro apicinterrupt num sym do_sym
945ENTRY(\sym)
Jan Beulich7effaa82005-09-12 18:49:24 +0200946 INTR_FRAME
Jan Beulichdf5d1872010-09-02 14:07:16 +0100947 pushq_cfi $~(\num)
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100948 interrupt \do_sym
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 jmp ret_from_intr
950 CFI_ENDPROC
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100951END(\sym)
952.endm
Jacob Shin89b831e2005-11-05 17:25:53 +0100953
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100954#ifdef CONFIG_SMP
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100955apicinterrupt IRQ_MOVE_CLEANUP_VECTOR \
956 irq_move_cleanup_interrupt smp_irq_move_cleanup_interrupt
Andi Kleen4ef702c2009-05-27 21:56:52 +0200957apicinterrupt REBOOT_VECTOR \
958 reboot_interrupt smp_reboot_interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959#endif
960
Nick Piggin03b48632009-01-20 04:36:04 +0100961#ifdef CONFIG_X86_UV
Cyrill Gorcunov5ae3a132008-11-27 00:02:10 +0300962apicinterrupt UV_BAU_MESSAGE \
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100963 uv_bau_message_intr1 uv_bau_message_interrupt
Nick Piggin03b48632009-01-20 04:36:04 +0100964#endif
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100965apicinterrupt LOCAL_TIMER_VECTOR \
966 apic_timer_interrupt smp_apic_timer_interrupt
Dimitri Sivanich4a4de9c2009-10-14 09:22:57 -0500967apicinterrupt X86_PLATFORM_IPI_VECTOR \
968 x86_platform_ipi smp_x86_platform_ipi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100970#ifdef CONFIG_SMP
Shaohua Li3a09fb42011-01-17 10:52:05 +0800971.irp idx,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15, \
972 16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31
973.if NUM_INVALIDATE_TLB_VECTORS > \idx
Jan Beulich32342822010-10-19 14:52:26 +0100974apicinterrupt (INVALIDATE_TLB_VECTOR_START)+\idx \
975 invalidate_interrupt\idx smp_invalidate_interrupt
Shaohua Li3a09fb42011-01-17 10:52:05 +0800976.endif
Jan Beulich32342822010-10-19 14:52:26 +0100977.endr
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100978#endif
Cliff Wickman18129242008-06-02 08:56:14 -0500979
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100980apicinterrupt THRESHOLD_APIC_VECTOR \
Andi Kleen7856f6c2009-04-28 23:32:56 +0200981 threshold_interrupt smp_threshold_interrupt
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100982apicinterrupt THERMAL_APIC_VECTOR \
983 thermal_interrupt smp_thermal_interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984
Andi Kleenccc3c312009-05-27 21:56:54 +0200985#ifdef CONFIG_X86_MCE
986apicinterrupt MCE_SELF_VECTOR \
987 mce_self_interrupt smp_mce_self_interrupt
988#endif
989
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100990#ifdef CONFIG_SMP
991apicinterrupt CALL_FUNCTION_SINGLE_VECTOR \
992 call_function_single_interrupt smp_call_function_single_interrupt
993apicinterrupt CALL_FUNCTION_VECTOR \
994 call_function_interrupt smp_call_function_interrupt
995apicinterrupt RESCHEDULE_VECTOR \
996 reschedule_interrupt smp_reschedule_interrupt
997#endif
998
999apicinterrupt ERROR_APIC_VECTOR \
1000 error_interrupt smp_error_interrupt
1001apicinterrupt SPURIOUS_APIC_VECTOR \
1002 spurious_interrupt smp_spurious_interrupt
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001003
Peter Zijlstrae360adb2010-10-14 14:01:34 +08001004#ifdef CONFIG_IRQ_WORK
1005apicinterrupt IRQ_WORK_VECTOR \
1006 irq_work_interrupt smp_irq_work_interrupt
Ingo Molnar241771e2008-12-03 10:39:53 +01001007#endif
1008
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009/*
1010 * Exception entry points.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001011 */
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001012.macro zeroentry sym do_sym
1013ENTRY(\sym)
Jan Beulich7effaa82005-09-12 18:49:24 +02001014 INTR_FRAME
Jeremy Fitzhardingefab58422008-06-25 00:19:31 -04001015 PARAVIRT_ADJUST_EXCEPTION_FRAME
Ingo Molnar14ae22b2008-11-21 15:20:47 +01001016 pushq_cfi $-1 /* ORIG_RAX: no syscall to restart */
Jan Beulichb1cccb12010-09-02 13:55:11 +01001017 subq $ORIG_RAX-R15, %rsp
1018 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
Alexander van Heukelumd99015b2008-11-19 01:18:11 +01001019 call error_entry
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +01001020 DEFAULT_FRAME 0
Alexander van Heukelumd99015b2008-11-19 01:18:11 +01001021 movq %rsp,%rdi /* pt_regs pointer */
1022 xorl %esi,%esi /* no error code */
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001023 call \do_sym
Alexander van Heukelumd99015b2008-11-19 01:18:11 +01001024 jmp error_exit /* %ebx: no swapgs flag */
Jan Beulich7effaa82005-09-12 18:49:24 +02001025 CFI_ENDPROC
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001026END(\sym)
1027.endm
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001029.macro paranoidzeroentry sym do_sym
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001030ENTRY(\sym)
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001031 INTR_FRAME
1032 PARAVIRT_ADJUST_EXCEPTION_FRAME
Jan Beulichb1cccb12010-09-02 13:55:11 +01001033 pushq_cfi $-1 /* ORIG_RAX: no syscall to restart */
1034 subq $ORIG_RAX-R15, %rsp
1035 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001036 call save_paranoid
1037 TRACE_IRQS_OFF
1038 movq %rsp,%rdi /* pt_regs pointer */
1039 xorl %esi,%esi /* no error code */
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001040 call \do_sym
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001041 jmp paranoid_exit /* %ebx: no swapgs flag */
1042 CFI_ENDPROC
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001043END(\sym)
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001044.endm
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001045
Brian Gerstc15a5952010-07-31 12:48:22 -04001046#define INIT_TSS_IST(x) PER_CPU_VAR(init_tss) + (TSS_ist + ((x) - 1) * 8)
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001047.macro paranoidzeroentry_ist sym do_sym ist
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001048ENTRY(\sym)
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001049 INTR_FRAME
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001050 PARAVIRT_ADJUST_EXCEPTION_FRAME
Jan Beulichb1cccb12010-09-02 13:55:11 +01001051 pushq_cfi $-1 /* ORIG_RAX: no syscall to restart */
1052 subq $ORIG_RAX-R15, %rsp
1053 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001054 call save_paranoid
1055 TRACE_IRQS_OFF
1056 movq %rsp,%rdi /* pt_regs pointer */
1057 xorl %esi,%esi /* no error code */
Brian Gerstc15a5952010-07-31 12:48:22 -04001058 subq $EXCEPTION_STKSZ, INIT_TSS_IST(\ist)
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001059 call \do_sym
Brian Gerstc15a5952010-07-31 12:48:22 -04001060 addq $EXCEPTION_STKSZ, INIT_TSS_IST(\ist)
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001061 jmp paranoid_exit /* %ebx: no swapgs flag */
1062 CFI_ENDPROC
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001063END(\sym)
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001064.endm
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001065
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001066.macro errorentry sym do_sym
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001067ENTRY(\sym)
Jan Beulich7effaa82005-09-12 18:49:24 +02001068 XCPT_FRAME
Jeremy Fitzhardingefab58422008-06-25 00:19:31 -04001069 PARAVIRT_ADJUST_EXCEPTION_FRAME
Jan Beulichb1cccb12010-09-02 13:55:11 +01001070 subq $ORIG_RAX-R15, %rsp
1071 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
Alexander van Heukelumd99015b2008-11-19 01:18:11 +01001072 call error_entry
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +01001073 DEFAULT_FRAME 0
Alexander van Heukelumd99015b2008-11-19 01:18:11 +01001074 movq %rsp,%rdi /* pt_regs pointer */
1075 movq ORIG_RAX(%rsp),%rsi /* get error code */
1076 movq $-1,ORIG_RAX(%rsp) /* no syscall to restart */
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001077 call \do_sym
Alexander van Heukelumd99015b2008-11-19 01:18:11 +01001078 jmp error_exit /* %ebx: no swapgs flag */
Jan Beulich7effaa82005-09-12 18:49:24 +02001079 CFI_ENDPROC
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001080END(\sym)
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001081.endm
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082
1083 /* error code is on the stack already */
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001084.macro paranoiderrorentry sym do_sym
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001085ENTRY(\sym)
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001086 XCPT_FRAME
1087 PARAVIRT_ADJUST_EXCEPTION_FRAME
Jan Beulichb1cccb12010-09-02 13:55:11 +01001088 subq $ORIG_RAX-R15, %rsp
1089 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
Alexander van Heukelume2f6bc22008-11-21 16:43:18 +01001090 call save_paranoid
1091 DEFAULT_FRAME 0
Alexander van Heukelum7e61a792008-09-26 14:03:03 +02001092 TRACE_IRQS_OFF
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001093 movq %rsp,%rdi /* pt_regs pointer */
1094 movq ORIG_RAX(%rsp),%rsi /* get error code */
1095 movq $-1,ORIG_RAX(%rsp) /* no syscall to restart */
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001096 call \do_sym
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001097 jmp paranoid_exit /* %ebx: no swapgs flag */
1098 CFI_ENDPROC
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001099END(\sym)
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001100.endm
1101
1102zeroentry divide_error do_divide_error
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001103zeroentry overflow do_overflow
1104zeroentry bounds do_bounds
1105zeroentry invalid_op do_invalid_op
1106zeroentry device_not_available do_device_not_available
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001107paranoiderrorentry double_fault do_double_fault
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001108zeroentry coprocessor_segment_overrun do_coprocessor_segment_overrun
1109errorentry invalid_TSS do_invalid_TSS
1110errorentry segment_not_present do_segment_not_present
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001111zeroentry spurious_interrupt_bug do_spurious_interrupt_bug
1112zeroentry coprocessor_error do_coprocessor_error
1113errorentry alignment_check do_alignment_check
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001114zeroentry simd_coprocessor_error do_simd_coprocessor_error
Ingo Molnar2601e642006-07-03 00:24:45 -07001115
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001116 /* Reload gs selector with exception handling */
1117 /* edi: new selector */
Jeremy Fitzhardinge9f9d4892008-06-25 00:19:32 -04001118ENTRY(native_load_gs_index)
Jan Beulich7effaa82005-09-12 18:49:24 +02001119 CFI_STARTPROC
Jan Beulichdf5d1872010-09-02 14:07:16 +01001120 pushfq_cfi
Jeremy Fitzhardingeb8aa2872009-01-28 14:35:03 -08001121 DISABLE_INTERRUPTS(CLBR_ANY & ~CLBR_RDI)
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001122 SWAPGS
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001123gs_change:
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001124 movl %edi,%gs
Linus Torvalds1da177e2005-04-16 15:20:36 -070011252: mfence /* workaround */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +01001126 SWAPGS
Jan Beulichdf5d1872010-09-02 14:07:16 +01001127 popfq_cfi
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001128 ret
Jan Beulich7effaa82005-09-12 18:49:24 +02001129 CFI_ENDPROC
Alexander van Heukelum6efdcfa2008-11-23 10:15:32 +01001130END(native_load_gs_index)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001131
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001132 .section __ex_table,"a"
1133 .align 8
1134 .quad gs_change,bad_gs
1135 .previous
1136 .section .fixup,"ax"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 /* running with kernelgs */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001138bad_gs:
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +01001139 SWAPGS /* switch back to user gs */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 xorl %eax,%eax
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001141 movl %eax,%gs
1142 jmp 2b
1143 .previous
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001144
Brian Gerst3bd95df2009-12-09 12:34:40 -05001145ENTRY(kernel_thread_helper)
Andi Kleenc05991e2006-08-30 19:37:08 +02001146 pushq $0 # fake return address
1147 CFI_STARTPROC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 /*
1149 * Here we are in the child and the registers are set as they were
1150 * at kernel_thread() invocation in the parent.
1151 */
Brian Gerst3bd95df2009-12-09 12:34:40 -05001152 call *%rsi
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 # exit
Andrey Mirkin1c5b5cf2007-10-17 18:04:33 +02001154 mov %eax, %edi
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 call do_exit
jia zhang5f5db592008-11-23 22:47:10 +08001156 ud2 # padding for call trace
Andi Kleenc05991e2006-08-30 19:37:08 +02001157 CFI_ENDPROC
Brian Gerst3bd95df2009-12-09 12:34:40 -05001158END(kernel_thread_helper)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159
1160/*
1161 * execve(). This function needs to use IRET, not SYSRET, to set up all state properly.
1162 *
1163 * C extern interface:
David Howellsc7887322010-08-11 11:26:22 +01001164 * extern long execve(const char *name, char **argv, char **envp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 *
1166 * asm input arguments:
1167 * rdi: name, rsi: argv, rdx: envp
1168 *
1169 * We want to fallback into:
David Howellsc7887322010-08-11 11:26:22 +01001170 * extern long sys_execve(const char *name, char **argv,char **envp, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 *
1172 * do_sys_execve asm fallback arguments:
Ingo Molnar5d119b22008-02-26 12:55:57 +01001173 * rdi: name, rsi: argv, rdx: envp, rcx: fake frame on the stack
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 */
Arnd Bergmann3db03b42006-10-02 02:18:31 -07001175ENTRY(kernel_execve)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 CFI_STARTPROC
1177 FAKE_STACK_FRAME $0
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001178 SAVE_ALL
Ingo Molnar5d119b22008-02-26 12:55:57 +01001179 movq %rsp,%rcx
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 call sys_execve
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001181 movq %rax, RAX(%rsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 RESTORE_REST
1183 testq %rax,%rax
1184 je int_ret_from_sys_call
1185 RESTORE_ARGS
1186 UNFAKE_STACK_FRAME
1187 ret
1188 CFI_ENDPROC
Alexander van Heukelum6efdcfa2008-11-23 10:15:32 +01001189END(kernel_execve)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190
Andi Kleen26995002006-08-02 22:37:28 +02001191/* Call softirq on interrupt stack. Interrupts are off. */
Andi Kleened6b6762005-07-28 21:15:49 -07001192ENTRY(call_softirq)
Jan Beulich7effaa82005-09-12 18:49:24 +02001193 CFI_STARTPROC
Jan Beulichdf5d1872010-09-02 14:07:16 +01001194 pushq_cfi %rbp
Andi Kleen26995002006-08-02 22:37:28 +02001195 CFI_REL_OFFSET rbp,0
1196 mov %rsp,%rbp
1197 CFI_DEF_CFA_REGISTER rbp
Brian Gerst56895532009-01-19 00:38:58 +09001198 incl PER_CPU_VAR(irq_count)
Brian Gerst26f80bd2009-01-19 00:38:58 +09001199 cmove PER_CPU_VAR(irq_stack_ptr),%rsp
Andi Kleen26995002006-08-02 22:37:28 +02001200 push %rbp # backlink for old unwinder
Andi Kleened6b6762005-07-28 21:15:49 -07001201 call __do_softirq
Andi Kleen26995002006-08-02 22:37:28 +02001202 leaveq
Jan Beulichdf5d1872010-09-02 14:07:16 +01001203 CFI_RESTORE rbp
Jan Beulich7effaa82005-09-12 18:49:24 +02001204 CFI_DEF_CFA_REGISTER rsp
Andi Kleen26995002006-08-02 22:37:28 +02001205 CFI_ADJUST_CFA_OFFSET -8
Brian Gerst56895532009-01-19 00:38:58 +09001206 decl PER_CPU_VAR(irq_count)
Andi Kleened6b6762005-07-28 21:15:49 -07001207 ret
Jan Beulich7effaa82005-09-12 18:49:24 +02001208 CFI_ENDPROC
Alexander van Heukelum6efdcfa2008-11-23 10:15:32 +01001209END(call_softirq)
Andi Kleen75154f42007-06-23 02:29:25 +02001210
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001211#ifdef CONFIG_XEN
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001212zeroentry xen_hypervisor_callback xen_do_hypervisor_callback
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001213
1214/*
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001215 * A note on the "critical region" in our callback handler.
1216 * We want to avoid stacking callback handlers due to events occurring
1217 * during handling of the last event. To do this, we keep events disabled
1218 * until we've done all processing. HOWEVER, we must enable events before
1219 * popping the stack frame (can't be done atomically) and so it would still
1220 * be possible to get enough handler activations to overflow the stack.
1221 * Although unlikely, bugs of that kind are hard to track down, so we'd
1222 * like to avoid the possibility.
1223 * So, on entry to the handler we detect whether we interrupted an
1224 * existing activation in its critical region -- if so, we pop the current
1225 * activation and restart the handler using the previous one.
1226 */
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001227ENTRY(xen_do_hypervisor_callback) # do_hypervisor_callback(struct *pt_regs)
1228 CFI_STARTPROC
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001229/*
1230 * Since we don't modify %rdi, evtchn_do_upall(struct *pt_regs) will
1231 * see the correct pointer to the pt_regs
1232 */
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001233 movq %rdi, %rsp # we don't return, adjust the stack frame
1234 CFI_ENDPROC
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +01001235 DEFAULT_FRAME
Brian Gerst56895532009-01-19 00:38:58 +0900123611: incl PER_CPU_VAR(irq_count)
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001237 movq %rsp,%rbp
1238 CFI_DEF_CFA_REGISTER rbp
Brian Gerst26f80bd2009-01-19 00:38:58 +09001239 cmovzq PER_CPU_VAR(irq_stack_ptr),%rsp
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001240 pushq %rbp # backlink for old unwinder
1241 call xen_evtchn_do_upcall
1242 popq %rsp
1243 CFI_DEF_CFA_REGISTER rsp
Brian Gerst56895532009-01-19 00:38:58 +09001244 decl PER_CPU_VAR(irq_count)
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001245 jmp error_exit
1246 CFI_ENDPROC
Alexander van Heukelum371c3942011-03-11 21:59:38 +01001247END(xen_do_hypervisor_callback)
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001248
1249/*
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001250 * Hypervisor uses this for application faults while it executes.
1251 * We get here for two reasons:
1252 * 1. Fault while reloading DS, ES, FS or GS
1253 * 2. Fault while executing IRET
1254 * Category 1 we do not need to fix up as Xen has already reloaded all segment
1255 * registers that could be reloaded and zeroed the others.
1256 * Category 2 we fix up by killing the current process. We cannot use the
1257 * normal Linux return path in this case because if we use the IRET hypercall
1258 * to pop the stack frame we end up in an infinite loop of failsafe callbacks.
1259 * We distinguish between categories by comparing each saved segment register
1260 * with its current contents: any discrepancy means we in category 1.
1261 */
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001262ENTRY(xen_failsafe_callback)
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +01001263 INTR_FRAME 1 (6*8)
1264 /*CFI_REL_OFFSET gs,GS*/
1265 /*CFI_REL_OFFSET fs,FS*/
1266 /*CFI_REL_OFFSET es,ES*/
1267 /*CFI_REL_OFFSET ds,DS*/
1268 CFI_REL_OFFSET r11,8
1269 CFI_REL_OFFSET rcx,0
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001270 movw %ds,%cx
1271 cmpw %cx,0x10(%rsp)
1272 CFI_REMEMBER_STATE
1273 jne 1f
1274 movw %es,%cx
1275 cmpw %cx,0x18(%rsp)
1276 jne 1f
1277 movw %fs,%cx
1278 cmpw %cx,0x20(%rsp)
1279 jne 1f
1280 movw %gs,%cx
1281 cmpw %cx,0x28(%rsp)
1282 jne 1f
1283 /* All segments match their saved values => Category 2 (Bad IRET). */
1284 movq (%rsp),%rcx
1285 CFI_RESTORE rcx
1286 movq 8(%rsp),%r11
1287 CFI_RESTORE r11
1288 addq $0x30,%rsp
1289 CFI_ADJUST_CFA_OFFSET -0x30
Ingo Molnar14ae22b2008-11-21 15:20:47 +01001290 pushq_cfi $0 /* RIP */
1291 pushq_cfi %r11
1292 pushq_cfi %rcx
Jeremy Fitzhardinge4a5c3e72008-07-08 15:07:09 -07001293 jmp general_protection
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001294 CFI_RESTORE_STATE
12951: /* Segment mismatch => Category 1 (Bad segment). Retry the IRET. */
1296 movq (%rsp),%rcx
1297 CFI_RESTORE rcx
1298 movq 8(%rsp),%r11
1299 CFI_RESTORE r11
1300 addq $0x30,%rsp
1301 CFI_ADJUST_CFA_OFFSET -0x30
Ingo Molnar14ae22b2008-11-21 15:20:47 +01001302 pushq_cfi $0
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001303 SAVE_ALL
1304 jmp error_exit
1305 CFI_ENDPROC
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001306END(xen_failsafe_callback)
1307
Sheng Yang38e20b02010-05-14 12:40:51 +01001308apicinterrupt XEN_HVM_EVTCHN_CALLBACK \
1309 xen_hvm_callback_vector xen_evtchn_do_upcall
1310
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001311#endif /* CONFIG_XEN */
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001312
1313/*
1314 * Some functions should be protected against kprobes
1315 */
1316 .pushsection .kprobes.text, "ax"
1317
1318paranoidzeroentry_ist debug do_debug DEBUG_STACK
1319paranoidzeroentry_ist int3 do_int3 DEBUG_STACK
1320paranoiderrorentry stack_segment do_stack_segment
Jeremy Fitzhardinge6cac5a92009-03-29 19:56:29 -07001321#ifdef CONFIG_XEN
1322zeroentry xen_debug do_debug
1323zeroentry xen_int3 do_int3
1324errorentry xen_stack_segment do_stack_segment
1325#endif
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001326errorentry general_protection do_general_protection
1327errorentry page_fault do_page_fault
Gleb Natapov631bc482010-10-14 11:22:52 +02001328#ifdef CONFIG_KVM_GUEST
1329errorentry async_page_fault do_async_page_fault
1330#endif
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001331#ifdef CONFIG_X86_MCE
Andi Kleen5d727922009-04-27 19:25:48 +02001332paranoidzeroentry machine_check *machine_check_vector(%rip)
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001333#endif
1334
1335 /*
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001336 * "Paranoid" exit path from exception stack.
1337 * Paranoid because this is used by NMIs and cannot take
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001338 * any kernel state for granted.
1339 * We don't do kernel preemption checks here, because only
1340 * NMI should be common and it does not enable IRQs and
1341 * cannot get reschedule ticks.
1342 *
1343 * "trace" is 0 for the NMI handler only, because irq-tracing
1344 * is fundamentally NMI-unsafe. (we cannot change the soft and
1345 * hard flags at once, atomically)
1346 */
1347
1348 /* ebx: no swapgs flag */
1349ENTRY(paranoid_exit)
Jan Beulich1f130a72010-09-02 13:54:32 +01001350 DEFAULT_FRAME
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001351 DISABLE_INTERRUPTS(CLBR_NONE)
1352 TRACE_IRQS_OFF
1353 testl %ebx,%ebx /* swapgs needed? */
1354 jnz paranoid_restore
1355 testl $3,CS(%rsp)
1356 jnz paranoid_userspace
1357paranoid_swapgs:
1358 TRACE_IRQS_IRETQ 0
1359 SWAPGS_UNSAFE_STACK
Steven Rostedt0300e7f12009-04-17 08:33:52 -04001360 RESTORE_ALL 8
1361 jmp irq_return
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001362paranoid_restore:
Steven Rostedt0300e7f12009-04-17 08:33:52 -04001363 TRACE_IRQS_IRETQ 0
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001364 RESTORE_ALL 8
1365 jmp irq_return
1366paranoid_userspace:
1367 GET_THREAD_INFO(%rcx)
1368 movl TI_flags(%rcx),%ebx
1369 andl $_TIF_WORK_MASK,%ebx
1370 jz paranoid_swapgs
1371 movq %rsp,%rdi /* &pt_regs */
1372 call sync_regs
1373 movq %rax,%rsp /* switch stack for scheduling */
1374 testl $_TIF_NEED_RESCHED,%ebx
1375 jnz paranoid_schedule
1376 movl %ebx,%edx /* arg3: thread flags */
1377 TRACE_IRQS_ON
1378 ENABLE_INTERRUPTS(CLBR_NONE)
1379 xorl %esi,%esi /* arg2: oldset */
1380 movq %rsp,%rdi /* arg1: &pt_regs */
1381 call do_notify_resume
1382 DISABLE_INTERRUPTS(CLBR_NONE)
1383 TRACE_IRQS_OFF
1384 jmp paranoid_userspace
1385paranoid_schedule:
1386 TRACE_IRQS_ON
1387 ENABLE_INTERRUPTS(CLBR_ANY)
1388 call schedule
1389 DISABLE_INTERRUPTS(CLBR_ANY)
1390 TRACE_IRQS_OFF
1391 jmp paranoid_userspace
1392 CFI_ENDPROC
1393END(paranoid_exit)
1394
1395/*
1396 * Exception entry point. This expects an error code/orig_rax on the stack.
1397 * returns in "no swapgs flag" in %ebx.
1398 */
1399ENTRY(error_entry)
1400 XCPT_FRAME
1401 CFI_ADJUST_CFA_OFFSET 15*8
1402 /* oldrax contains error code */
1403 cld
1404 movq_cfi rdi, RDI+8
1405 movq_cfi rsi, RSI+8
1406 movq_cfi rdx, RDX+8
1407 movq_cfi rcx, RCX+8
1408 movq_cfi rax, RAX+8
1409 movq_cfi r8, R8+8
1410 movq_cfi r9, R9+8
1411 movq_cfi r10, R10+8
1412 movq_cfi r11, R11+8
1413 movq_cfi rbx, RBX+8
1414 movq_cfi rbp, RBP+8
1415 movq_cfi r12, R12+8
1416 movq_cfi r13, R13+8
1417 movq_cfi r14, R14+8
1418 movq_cfi r15, R15+8
1419 xorl %ebx,%ebx
1420 testl $3,CS+8(%rsp)
1421 je error_kernelspace
1422error_swapgs:
1423 SWAPGS
1424error_sti:
1425 TRACE_IRQS_OFF
1426 ret
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001427
1428/*
1429 * There are two places in the kernel that can potentially fault with
1430 * usergs. Handle them here. The exception handlers after iret run with
1431 * kernel gs again, so don't set the user space flag. B stepping K8s
1432 * sometimes report an truncated RIP for IRET exceptions returning to
1433 * compat mode. Check for these here too.
1434 */
1435error_kernelspace:
1436 incl %ebx
1437 leaq irq_return(%rip),%rcx
1438 cmpq %rcx,RIP+8(%rsp)
1439 je error_swapgs
Brian Gerstae24ffe2009-10-12 10:18:23 -04001440 movl %ecx,%eax /* zero extend */
1441 cmpq %rax,RIP+8(%rsp)
1442 je bstep_iret
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001443 cmpq $gs_change,RIP+8(%rsp)
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001444 je error_swapgs
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001445 jmp error_sti
Brian Gerstae24ffe2009-10-12 10:18:23 -04001446
1447bstep_iret:
1448 /* Fix truncated RIP */
1449 movq %rcx,RIP+8(%rsp)
Brian Gerst97829de2009-11-03 14:02:05 -05001450 jmp error_swapgs
Jan Beuliche6b04b62010-09-02 13:52:45 +01001451 CFI_ENDPROC
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001452END(error_entry)
1453
1454
1455/* ebx: no swapgs flag (1: don't need swapgs, 0: need it) */
1456ENTRY(error_exit)
1457 DEFAULT_FRAME
1458 movl %ebx,%eax
1459 RESTORE_REST
1460 DISABLE_INTERRUPTS(CLBR_NONE)
1461 TRACE_IRQS_OFF
1462 GET_THREAD_INFO(%rcx)
1463 testl %eax,%eax
1464 jne retint_kernel
1465 LOCKDEP_SYS_EXIT_IRQ
1466 movl TI_flags(%rcx),%edx
1467 movl $_TIF_WORK_MASK,%edi
1468 andl %edi,%edx
1469 jnz retint_careful
1470 jmp retint_swapgs
1471 CFI_ENDPROC
1472END(error_exit)
1473
1474
1475 /* runs on exception stack */
1476ENTRY(nmi)
1477 INTR_FRAME
1478 PARAVIRT_ADJUST_EXCEPTION_FRAME
1479 pushq_cfi $-1
Jan Beulichb1cccb12010-09-02 13:55:11 +01001480 subq $ORIG_RAX-R15, %rsp
1481 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001482 call save_paranoid
1483 DEFAULT_FRAME 0
1484 /* paranoidentry do_nmi, 0; without TRACE_IRQS_OFF */
1485 movq %rsp,%rdi
1486 movq $-1,%rsi
1487 call do_nmi
1488#ifdef CONFIG_TRACE_IRQFLAGS
1489 /* paranoidexit; without TRACE_IRQS_OFF */
1490 /* ebx: no swapgs flag */
1491 DISABLE_INTERRUPTS(CLBR_NONE)
1492 testl %ebx,%ebx /* swapgs needed? */
1493 jnz nmi_restore
1494 testl $3,CS(%rsp)
1495 jnz nmi_userspace
1496nmi_swapgs:
1497 SWAPGS_UNSAFE_STACK
1498nmi_restore:
1499 RESTORE_ALL 8
1500 jmp irq_return
1501nmi_userspace:
1502 GET_THREAD_INFO(%rcx)
1503 movl TI_flags(%rcx),%ebx
1504 andl $_TIF_WORK_MASK,%ebx
1505 jz nmi_swapgs
1506 movq %rsp,%rdi /* &pt_regs */
1507 call sync_regs
1508 movq %rax,%rsp /* switch stack for scheduling */
1509 testl $_TIF_NEED_RESCHED,%ebx
1510 jnz nmi_schedule
1511 movl %ebx,%edx /* arg3: thread flags */
1512 ENABLE_INTERRUPTS(CLBR_NONE)
1513 xorl %esi,%esi /* arg2: oldset */
1514 movq %rsp,%rdi /* arg1: &pt_regs */
1515 call do_notify_resume
1516 DISABLE_INTERRUPTS(CLBR_NONE)
1517 jmp nmi_userspace
1518nmi_schedule:
1519 ENABLE_INTERRUPTS(CLBR_ANY)
1520 call schedule
1521 DISABLE_INTERRUPTS(CLBR_ANY)
1522 jmp nmi_userspace
1523 CFI_ENDPROC
1524#else
1525 jmp paranoid_exit
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001526 CFI_ENDPROC
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001527#endif
1528END(nmi)
1529
1530ENTRY(ignore_sysret)
1531 CFI_STARTPROC
1532 mov $-ENOSYS,%eax
1533 sysret
1534 CFI_ENDPROC
1535END(ignore_sysret)
1536
1537/*
1538 * End of kprobes section
1539 */
1540 .popsection