blob: 72c4a777bb9178e49a00fefc783f85688d56afff [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Roland McGrath86a1c342008-06-23 15:37:04 -070059/* Avoid __ASSEMBLER__'ifying <linux/audit.h> just for this. */
60#include <linux/elf-em.h>
61#define AUDIT_ARCH_X86_64 (EM_X86_64|__AUDIT_ARCH_64BIT|__AUDIT_ARCH_LE)
62#define __AUDIT_ARCH_64BIT 0x80000000
63#define __AUDIT_ARCH_LE 0x40000000
64
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 .code64
Jiri Olsaea714542011-03-07 19:10:39 +010066 .section .entry.text, "ax"
67
Steven Rostedt606576c2008-10-06 19:06:12 -040068#ifdef CONFIG_FUNCTION_TRACER
Steven Rostedtd61f82d2008-05-12 21:20:43 +020069#ifdef CONFIG_DYNAMIC_FTRACE
70ENTRY(mcount)
Steven Rostedtd61f82d2008-05-12 21:20:43 +020071 retq
72END(mcount)
73
74ENTRY(ftrace_caller)
Steven Rostedt60a7ecf2008-11-05 16:05:44 -050075 cmpl $0, function_trace_stop
76 jne ftrace_stub
Steven Rostedtd61f82d2008-05-12 21:20:43 +020077
Cyrill Gorcunovd680fe42008-12-13 00:09:08 +030078 MCOUNT_SAVE_FRAME
Steven Rostedtd61f82d2008-05-12 21:20:43 +020079
80 movq 0x38(%rsp), %rdi
81 movq 8(%rbp), %rsi
Abhishek Sagar395a59d2008-06-21 23:47:27 +053082 subq $MCOUNT_INSN_SIZE, %rdi
Steven Rostedtd61f82d2008-05-12 21:20:43 +020083
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +030084GLOBAL(ftrace_call)
Steven Rostedtd61f82d2008-05-12 21:20:43 +020085 call ftrace_stub
86
Cyrill Gorcunovd680fe42008-12-13 00:09:08 +030087 MCOUNT_RESTORE_FRAME
Steven Rostedtd61f82d2008-05-12 21:20:43 +020088
Frederic Weisbecker48d68b22008-12-02 00:20:39 +010089#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +030090GLOBAL(ftrace_graph_call)
Frederic Weisbecker48d68b22008-12-02 00:20:39 +010091 jmp ftrace_stub
92#endif
Steven Rostedtd61f82d2008-05-12 21:20:43 +020093
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +030094GLOBAL(ftrace_stub)
Steven Rostedtd61f82d2008-05-12 21:20:43 +020095 retq
96END(ftrace_caller)
97
98#else /* ! CONFIG_DYNAMIC_FTRACE */
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +020099ENTRY(mcount)
Steven Rostedt60a7ecf2008-11-05 16:05:44 -0500100 cmpl $0, function_trace_stop
101 jne ftrace_stub
102
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200103 cmpq $ftrace_stub, ftrace_trace_function
104 jnz trace
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100105
106#ifdef CONFIG_FUNCTION_GRAPH_TRACER
107 cmpq $ftrace_stub, ftrace_graph_return
108 jnz ftrace_graph_caller
Steven Rostedte49dc192008-12-02 23:50:05 -0500109
110 cmpq $ftrace_graph_entry_stub, ftrace_graph_entry
111 jnz ftrace_graph_caller
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100112#endif
113
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +0300114GLOBAL(ftrace_stub)
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200115 retq
116
117trace:
Cyrill Gorcunovd680fe42008-12-13 00:09:08 +0300118 MCOUNT_SAVE_FRAME
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200119
120 movq 0x38(%rsp), %rdi
121 movq 8(%rbp), %rsi
Abhishek Sagar395a59d2008-06-21 23:47:27 +0530122 subq $MCOUNT_INSN_SIZE, %rdi
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200123
124 call *ftrace_trace_function
125
Cyrill Gorcunovd680fe42008-12-13 00:09:08 +0300126 MCOUNT_RESTORE_FRAME
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200127
128 jmp ftrace_stub
129END(mcount)
Steven Rostedtd61f82d2008-05-12 21:20:43 +0200130#endif /* CONFIG_DYNAMIC_FTRACE */
Steven Rostedt606576c2008-10-06 19:06:12 -0400131#endif /* CONFIG_FUNCTION_TRACER */
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200132
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100133#ifdef CONFIG_FUNCTION_GRAPH_TRACER
134ENTRY(ftrace_graph_caller)
135 cmpl $0, function_trace_stop
136 jne ftrace_stub
137
Cyrill Gorcunovd680fe42008-12-13 00:09:08 +0300138 MCOUNT_SAVE_FRAME
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100139
140 leaq 8(%rbp), %rdi
141 movq 0x38(%rsp), %rsi
Steven Rostedt71e308a2009-06-18 12:45:08 -0400142 movq (%rbp), %rdx
Steven Rostedtbb4304c2008-12-02 15:34:09 -0500143 subq $MCOUNT_INSN_SIZE, %rsi
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100144
145 call prepare_ftrace_return
146
Cyrill Gorcunovd680fe42008-12-13 00:09:08 +0300147 MCOUNT_RESTORE_FRAME
148
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100149 retq
150END(ftrace_graph_caller)
151
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +0300152GLOBAL(return_to_handler)
Jiri Olsa4818d802009-07-29 10:58:37 +0200153 subq $24, %rsp
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100154
Steven Rostedte71e99c2009-03-25 14:30:04 -0400155 /* Save the return values */
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100156 movq %rax, (%rsp)
Steven Rostedte71e99c2009-03-25 14:30:04 -0400157 movq %rdx, 8(%rsp)
Steven Rostedt71e308a2009-06-18 12:45:08 -0400158 movq %rbp, %rdi
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100159
160 call ftrace_return_to_handler
161
Steven Rostedt194ec342009-10-13 16:33:50 -0400162 movq %rax, %rdi
Steven Rostedte71e99c2009-03-25 14:30:04 -0400163 movq 8(%rsp), %rdx
Jan Beulich7effaa82005-09-12 18:49:24 +0200164 movq (%rsp), %rax
Steven Rostedt194ec342009-10-13 16:33:50 -0400165 addq $24, %rsp
166 jmp *%rdi
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100167#endif
Jan Beulich7effaa82005-09-12 18:49:24 +0200168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
170#ifndef CONFIG_PREEMPT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171#define retint_kernel retint_restore_args
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100172#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
174#ifdef CONFIG_PARAVIRT
175ENTRY(native_usergs_sysret64)
176 swapgs
177 sysretq
Cyrill Gorcunovb3baaa12009-02-23 22:57:00 +0300178ENDPROC(native_usergs_sysret64)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179#endif /* CONFIG_PARAVIRT */
180
181
182.macro TRACE_IRQS_IRETQ offset=ARGOFFSET
183#ifdef CONFIG_TRACE_IRQFLAGS
184 bt $9,EFLAGS-\offset(%rsp) /* interrupts off? */
185 jnc 1f
186 TRACE_IRQS_ON
1871:
188#endif
189.endm
190
191/*
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100192 * C code is not supposed to know about undefined top of stack. Every time
193 * a C function with an pt_regs argument is called from the SYSCALL based
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 * fast path FIXUP_TOP_OF_STACK is needed.
195 * RESTORE_TOP_OF_STACK syncs the syscall state after any possible ptregs
196 * manipulation.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100197 */
198
199 /* %rsp:at FRAMEEND */
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100200 .macro FIXUP_TOP_OF_STACK tmp offset=0
Brian Gerst3d1e42a2009-01-19 00:38:58 +0900201 movq PER_CPU_VAR(old_rsp),\tmp
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100202 movq \tmp,RSP+\offset(%rsp)
203 movq $__USER_DS,SS+\offset(%rsp)
204 movq $__USER_CS,CS+\offset(%rsp)
205 movq $-1,RCX+\offset(%rsp)
206 movq R11+\offset(%rsp),\tmp /* get eflags */
207 movq \tmp,EFLAGS+\offset(%rsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 .endm
209
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100210 .macro RESTORE_TOP_OF_STACK tmp offset=0
211 movq RSP+\offset(%rsp),\tmp
Brian Gerst3d1e42a2009-01-19 00:38:58 +0900212 movq \tmp,PER_CPU_VAR(old_rsp)
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100213 movq EFLAGS+\offset(%rsp),\tmp
214 movq \tmp,R11+\offset(%rsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 .endm
216
217 .macro FAKE_STACK_FRAME child_rip
218 /* push in order ss, rsp, eflags, cs, rip */
219 xorl %eax, %eax
Jan Beulichdf5d1872010-09-02 14:07:16 +0100220 pushq_cfi $__KERNEL_DS /* ss */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 /*CFI_REL_OFFSET ss,0*/
Jan Beulichdf5d1872010-09-02 14:07:16 +0100222 pushq_cfi %rax /* rsp */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 CFI_REL_OFFSET rsp,0
Jan Beulichdf5d1872010-09-02 14:07:16 +0100224 pushq_cfi $X86_EFLAGS_IF /* eflags - interrupts on */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 /*CFI_REL_OFFSET rflags,0*/
Jan Beulichdf5d1872010-09-02 14:07:16 +0100226 pushq_cfi $__KERNEL_CS /* cs */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 /*CFI_REL_OFFSET cs,0*/
Jan Beulichdf5d1872010-09-02 14:07:16 +0100228 pushq_cfi \child_rip /* rip */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 CFI_REL_OFFSET rip,0
Jan Beulichdf5d1872010-09-02 14:07:16 +0100230 pushq_cfi %rax /* orig rax */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 .endm
232
233 .macro UNFAKE_STACK_FRAME
234 addq $8*6, %rsp
235 CFI_ADJUST_CFA_OFFSET -(6*8)
236 .endm
237
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100238/*
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100239 * initial frame state for interrupts (and exceptions without error code)
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100240 */
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100241 .macro EMPTY_FRAME start=1 offset=0
242 .if \start
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100243 CFI_STARTPROC simple
244 CFI_SIGNAL_FRAME
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100245 CFI_DEF_CFA rsp,8+\offset
246 .else
247 CFI_DEF_CFA_OFFSET 8+\offset
248 .endif
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100249 .endm
250
251/*
252 * initial frame state for interrupts (and exceptions without error code)
253 */
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100254 .macro INTR_FRAME start=1 offset=0
Ingo Molnare8a0e272008-11-21 15:11:32 +0100255 EMPTY_FRAME \start, SS+8+\offset-RIP
256 /*CFI_REL_OFFSET ss, SS+\offset-RIP*/
257 CFI_REL_OFFSET rsp, RSP+\offset-RIP
258 /*CFI_REL_OFFSET rflags, EFLAGS+\offset-RIP*/
259 /*CFI_REL_OFFSET cs, CS+\offset-RIP*/
260 CFI_REL_OFFSET rip, RIP+\offset-RIP
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100261 .endm
262
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100263/*
264 * initial frame state for exceptions with error code (and interrupts
265 * with vector already pushed)
266 */
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100267 .macro XCPT_FRAME start=1 offset=0
Ingo Molnare8a0e272008-11-21 15:11:32 +0100268 INTR_FRAME \start, RIP+\offset-ORIG_RAX
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100269 /*CFI_REL_OFFSET orig_rax, ORIG_RAX-ORIG_RAX*/
270 .endm
271
272/*
273 * frame that enables calling into C.
274 */
275 .macro PARTIAL_FRAME start=1 offset=0
Ingo Molnare8a0e272008-11-21 15:11:32 +0100276 XCPT_FRAME \start, ORIG_RAX+\offset-ARGOFFSET
277 CFI_REL_OFFSET rdi, RDI+\offset-ARGOFFSET
278 CFI_REL_OFFSET rsi, RSI+\offset-ARGOFFSET
279 CFI_REL_OFFSET rdx, RDX+\offset-ARGOFFSET
280 CFI_REL_OFFSET rcx, RCX+\offset-ARGOFFSET
281 CFI_REL_OFFSET rax, RAX+\offset-ARGOFFSET
282 CFI_REL_OFFSET r8, R8+\offset-ARGOFFSET
283 CFI_REL_OFFSET r9, R9+\offset-ARGOFFSET
284 CFI_REL_OFFSET r10, R10+\offset-ARGOFFSET
285 CFI_REL_OFFSET r11, R11+\offset-ARGOFFSET
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100286 .endm
287
288/*
289 * frame that enables passing a complete pt_regs to a C function.
290 */
291 .macro DEFAULT_FRAME start=1 offset=0
Ingo Molnare8a0e272008-11-21 15:11:32 +0100292 PARTIAL_FRAME \start, R11+\offset-R15
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100293 CFI_REL_OFFSET rbx, RBX+\offset
294 CFI_REL_OFFSET rbp, RBP+\offset
295 CFI_REL_OFFSET r12, R12+\offset
296 CFI_REL_OFFSET r13, R13+\offset
297 CFI_REL_OFFSET r14, R14+\offset
298 CFI_REL_OFFSET r15, R15+\offset
299 .endm
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100300
301/* save partial stack frame */
Masami Hiramatsude31ec82010-11-18 19:16:55 +0900302 .pushsection .kprobes.text, "ax"
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100303ENTRY(save_args)
304 XCPT_FRAME
305 cld
Frederic Weisbecker625dbc32011-01-06 15:22:47 +0100306 /*
307 * start from rbp in pt_regs and jump over
308 * return address.
309 */
310 movq_cfi rdi, RDI+8-RBP
311 movq_cfi rsi, RSI+8-RBP
312 movq_cfi rdx, RDX+8-RBP
313 movq_cfi rcx, RCX+8-RBP
314 movq_cfi rax, RAX+8-RBP
315 movq_cfi r8, R8+8-RBP
316 movq_cfi r9, R9+8-RBP
317 movq_cfi r10, R10+8-RBP
318 movq_cfi r11, R11+8-RBP
Ingo Molnar14ae22b2008-11-21 15:20:47 +0100319
Frederic Weisbecker625dbc32011-01-06 15:22:47 +0100320 leaq -RBP+8(%rsp),%rdi /* arg1 for handler */
Ingo Molnar14ae22b2008-11-21 15:20:47 +0100321 movq_cfi rbp, 8 /* push %rbp */
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100322 leaq 8(%rsp), %rbp /* mov %rsp, %ebp */
323 testl $3, CS(%rdi)
324 je 1f
325 SWAPGS
326 /*
Brian Gerst56895532009-01-19 00:38:58 +0900327 * irq_count is used to check if a CPU is already on an interrupt stack
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100328 * or not. While this is essentially redundant with preempt_count it is
329 * a little cheaper to use a separate counter in the PDA (short of
330 * moving irq_enter into assembly, which would be too much work)
331 */
Brian Gerst56895532009-01-19 00:38:58 +09003321: incl PER_CPU_VAR(irq_count)
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100333 jne 2f
Ingo Molnar14ae22b2008-11-21 15:20:47 +0100334 popq_cfi %rax /* move return address... */
Brian Gerst26f80bd2009-01-19 00:38:58 +0900335 mov PER_CPU_VAR(irq_stack_ptr),%rsp
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100336 EMPTY_FRAME 0
Martin Hicksa67798c2009-01-30 10:50:54 -0600337 pushq_cfi %rbp /* backlink for unwinder */
Ingo Molnar14ae22b2008-11-21 15:20:47 +0100338 pushq_cfi %rax /* ... to the new stack */
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100339 /*
340 * We entered an interrupt context - irqs are off:
341 */
3422: TRACE_IRQS_OFF
343 ret
344 CFI_ENDPROC
345END(save_args)
Masami Hiramatsude31ec82010-11-18 19:16:55 +0900346 .popsection
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100347
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100348ENTRY(save_rest)
349 PARTIAL_FRAME 1 REST_SKIP+8
350 movq 5*8+16(%rsp), %r11 /* save return address */
351 movq_cfi rbx, RBX+16
352 movq_cfi rbp, RBP+16
353 movq_cfi r12, R12+16
354 movq_cfi r13, R13+16
355 movq_cfi r14, R14+16
356 movq_cfi r15, R15+16
357 movq %r11, 8(%rsp) /* return address */
358 FIXUP_TOP_OF_STACK %r11, 16
359 ret
360 CFI_ENDPROC
361END(save_rest)
362
Alexander van Heukelume2f6bc22008-11-21 16:43:18 +0100363/* save complete stack frame */
Jan Beulichc2810182009-03-12 10:38:55 +0000364 .pushsection .kprobes.text, "ax"
Alexander van Heukelume2f6bc22008-11-21 16:43:18 +0100365ENTRY(save_paranoid)
366 XCPT_FRAME 1 RDI+8
367 cld
368 movq_cfi rdi, RDI+8
369 movq_cfi rsi, RSI+8
370 movq_cfi rdx, RDX+8
371 movq_cfi rcx, RCX+8
372 movq_cfi rax, RAX+8
373 movq_cfi r8, R8+8
374 movq_cfi r9, R9+8
375 movq_cfi r10, R10+8
376 movq_cfi r11, R11+8
377 movq_cfi rbx, RBX+8
378 movq_cfi rbp, RBP+8
379 movq_cfi r12, R12+8
380 movq_cfi r13, R13+8
381 movq_cfi r14, R14+8
382 movq_cfi r15, R15+8
383 movl $1,%ebx
384 movl $MSR_GS_BASE,%ecx
385 rdmsr
386 testl %edx,%edx
387 js 1f /* negative -> in kernel */
388 SWAPGS
389 xorl %ebx,%ebx
3901: ret
391 CFI_ENDPROC
392END(save_paranoid)
Jan Beulichc2810182009-03-12 10:38:55 +0000393 .popsection
Alexander van Heukelume2f6bc22008-11-21 16:43:18 +0100394
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395/*
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100396 * A newly forked process directly context switches into this address.
397 *
398 * rdi: prev task we switched from
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100399 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400ENTRY(ret_from_fork)
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100401 DEFAULT_FRAME
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100402
Benjamin LaHaise7106a5a2009-01-10 23:00:22 -0500403 LOCK ; btr $TIF_FORK,TI_flags(%r8)
404
Jan Beulichdf5d1872010-09-02 14:07:16 +0100405 pushq_cfi kernel_eflags(%rip)
406 popfq_cfi # reset kernel eflags
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100407
408 call schedule_tail # rdi: 'prev' task parameter
409
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 GET_THREAD_INFO(%rcx)
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100411
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 RESTORE_REST
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100413
414 testl $3, CS-ARGOFFSET(%rsp) # from kernel_thread?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 je int_ret_from_sys_call
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100416
417 testl $_TIF_IA32, TI_flags(%rcx) # 32-bit compat task needs IRET
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 jnz int_ret_from_sys_call
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100419
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100420 RESTORE_TOP_OF_STACK %rdi, -ARGOFFSET
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100421 jmp ret_from_sys_call # go to the SYSRET fastpath
422
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200424END(ret_from_fork)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
426/*
Lucas De Marchi0d2eb442011-03-17 16:24:16 -0300427 * System call entry. Up to 6 arguments in registers are supported.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 *
429 * SYSCALL does not save anything on the stack and does not change the
430 * stack pointer.
431 */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100432
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433/*
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100434 * Register setup:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 * rax system call number
436 * rdi arg0
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100437 * rcx return address for syscall/sysret, C arg3
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 * rsi arg1
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100439 * rdx arg2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 * r10 arg3 (--> moved to rcx for C)
441 * r8 arg4
442 * r9 arg5
443 * r11 eflags for syscall/sysret, temporary for C
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100444 * r12-r15,rbp,rbx saved by C code, not touched.
445 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 * Interrupts are off on entry.
447 * Only called from user space.
448 *
449 * XXX if we had a free scratch register we could save the RSP into the stack frame
450 * and report it properly in ps. Unfortunately we haven't.
Andi Kleen7bf36bb2006-04-07 19:50:00 +0200451 *
452 * When user can change the frames always force IRET. That is because
453 * it deals with uncanonical addresses better. SYSRET has trouble
454 * with them due to bugs in both AMD and Intel CPUs.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100455 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456
457ENTRY(system_call)
Jan Beulich7effaa82005-09-12 18:49:24 +0200458 CFI_STARTPROC simple
Jan Beulichadf14232006-09-26 10:52:41 +0200459 CFI_SIGNAL_FRAME
Brian Gerst9af45652009-01-19 00:38:58 +0900460 CFI_DEF_CFA rsp,KERNEL_STACK_OFFSET
Jan Beulich7effaa82005-09-12 18:49:24 +0200461 CFI_REGISTER rip,rcx
462 /*CFI_REGISTER rflags,r11*/
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100463 SWAPGS_UNSAFE_STACK
464 /*
465 * A hypervisor implementation might want to use a label
466 * after the swapgs, so that it can do the swapgs
467 * for the guest and jump here on syscall.
468 */
469ENTRY(system_call_after_swapgs)
470
Brian Gerst3d1e42a2009-01-19 00:38:58 +0900471 movq %rsp,PER_CPU_VAR(old_rsp)
Brian Gerst9af45652009-01-19 00:38:58 +0900472 movq PER_CPU_VAR(kernel_stack),%rsp
Ingo Molnar2601e642006-07-03 00:24:45 -0700473 /*
474 * No need to follow this irqs off/on section - it's straight
475 * and short:
476 */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100477 ENABLE_INTERRUPTS(CLBR_NONE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 SAVE_ARGS 8,1
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100479 movq %rax,ORIG_RAX-ARGOFFSET(%rsp)
Jan Beulich7effaa82005-09-12 18:49:24 +0200480 movq %rcx,RIP-ARGOFFSET(%rsp)
481 CFI_REL_OFFSET rip,RIP-ARGOFFSET
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 GET_THREAD_INFO(%rcx)
Roland McGrathd4d67152008-07-09 02:38:07 -0700483 testl $_TIF_WORK_SYSCALL_ENTRY,TI_flags(%rcx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 jnz tracesys
Roland McGrath86a1c342008-06-23 15:37:04 -0700485system_call_fastpath:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 cmpq $__NR_syscall_max,%rax
487 ja badsys
488 movq %r10,%rcx
489 call *sys_call_table(,%rax,8) # XXX: rip relative
490 movq %rax,RAX-ARGOFFSET(%rsp)
491/*
492 * Syscall return path ending with SYSRET (fast path)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100493 * Has incomplete stack frame and undefined top of stack.
494 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495ret_from_sys_call:
Andi Kleen11b854b2005-04-16 15:25:02 -0700496 movl $_TIF_ALLWORK_MASK,%edi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 /* edi: flagmask */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100498sysret_check:
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200499 LOCKDEP_SYS_EXIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 GET_THREAD_INFO(%rcx)
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100501 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700502 TRACE_IRQS_OFF
Glauber Costa26ccb8a2008-06-24 11:19:35 -0300503 movl TI_flags(%rcx),%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 andl %edi,%edx
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100505 jnz sysret_careful
Jan Beulichbcddc012006-12-07 02:14:02 +0100506 CFI_REMEMBER_STATE
Ingo Molnar2601e642006-07-03 00:24:45 -0700507 /*
508 * sysretq will re-enable interrupts:
509 */
510 TRACE_IRQS_ON
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 movq RIP-ARGOFFSET(%rsp),%rcx
Jan Beulich7effaa82005-09-12 18:49:24 +0200512 CFI_REGISTER rip,rcx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 RESTORE_ARGS 0,-ARG_SKIP,1
Jan Beulich7effaa82005-09-12 18:49:24 +0200514 /*CFI_REGISTER rflags,r11*/
Brian Gerst3d1e42a2009-01-19 00:38:58 +0900515 movq PER_CPU_VAR(old_rsp), %rsp
Jeremy Fitzhardinge2be29982008-06-25 00:19:28 -0400516 USERGS_SYSRET64
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
Jan Beulichbcddc012006-12-07 02:14:02 +0100518 CFI_RESTORE_STATE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 /* Handle reschedules */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100520 /* edx: work, edi: workmask */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521sysret_careful:
522 bt $TIF_NEED_RESCHED,%edx
523 jnc sysret_signal
Ingo Molnar2601e642006-07-03 00:24:45 -0700524 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100525 ENABLE_INTERRUPTS(CLBR_NONE)
Jan Beulichdf5d1872010-09-02 14:07:16 +0100526 pushq_cfi %rdi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 call schedule
Jan Beulichdf5d1872010-09-02 14:07:16 +0100528 popq_cfi %rdi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 jmp sysret_check
530
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100531 /* Handle a signal */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532sysret_signal:
Ingo Molnar2601e642006-07-03 00:24:45 -0700533 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100534 ENABLE_INTERRUPTS(CLBR_NONE)
Roland McGrath86a1c342008-06-23 15:37:04 -0700535#ifdef CONFIG_AUDITSYSCALL
536 bt $TIF_SYSCALL_AUDIT,%edx
537 jc sysret_audit
538#endif
Roland McGrathb60e7142009-09-22 16:46:34 -0700539 /*
540 * We have a signal, or exit tracing or single-step.
541 * These all wind up with the iret return path anyway,
542 * so just join that path right now.
543 */
544 FIXUP_TOP_OF_STACK %r11, -ARGOFFSET
545 jmp int_check_syscall_exit_work
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100546
Jan Beulich7effaa82005-09-12 18:49:24 +0200547badsys:
548 movq $-ENOSYS,RAX-ARGOFFSET(%rsp)
549 jmp ret_from_sys_call
550
Roland McGrath86a1c342008-06-23 15:37:04 -0700551#ifdef CONFIG_AUDITSYSCALL
552 /*
553 * Fast path for syscall audit without full syscall trace.
554 * We just call audit_syscall_entry() directly, and then
555 * jump back to the normal fast path.
556 */
557auditsys:
558 movq %r10,%r9 /* 6th arg: 4th syscall arg */
559 movq %rdx,%r8 /* 5th arg: 3rd syscall arg */
560 movq %rsi,%rcx /* 4th arg: 2nd syscall arg */
561 movq %rdi,%rdx /* 3rd arg: 1st syscall arg */
562 movq %rax,%rsi /* 2nd arg: syscall number */
563 movl $AUDIT_ARCH_X86_64,%edi /* 1st arg: audit arch */
564 call audit_syscall_entry
565 LOAD_ARGS 0 /* reload call-clobbered registers */
566 jmp system_call_fastpath
567
568 /*
569 * Return fast path for syscall audit. Call audit_syscall_exit()
570 * directly and then jump back to the fast path with TIF_SYSCALL_AUDIT
571 * masked off.
572 */
573sysret_audit:
Roland McGrath03275592010-07-21 17:44:12 -0700574 movq RAX-ARGOFFSET(%rsp),%rsi /* second arg, syscall return value */
575 cmpq $0,%rsi /* is it < 0? */
Roland McGrath86a1c342008-06-23 15:37:04 -0700576 setl %al /* 1 if so, 0 if not */
577 movzbl %al,%edi /* zero-extend that into %edi */
578 inc %edi /* first arg, 0->1(AUDITSC_SUCCESS), 1->2(AUDITSC_FAILURE) */
579 call audit_syscall_exit
580 movl $(_TIF_ALLWORK_MASK & ~_TIF_SYSCALL_AUDIT),%edi
581 jmp sysret_check
582#endif /* CONFIG_AUDITSYSCALL */
583
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 /* Do syscall tracing */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100585tracesys:
Roland McGrath86a1c342008-06-23 15:37:04 -0700586#ifdef CONFIG_AUDITSYSCALL
587 testl $(_TIF_WORK_SYSCALL_ENTRY & ~_TIF_SYSCALL_AUDIT),TI_flags(%rcx)
588 jz auditsys
589#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 SAVE_REST
Roland McGratha31f8dd2008-03-16 21:59:11 -0700591 movq $-ENOSYS,RAX(%rsp) /* ptrace can change this for a bad syscall */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 FIXUP_TOP_OF_STACK %rdi
593 movq %rsp,%rdi
594 call syscall_trace_enter
Roland McGrathd4d67152008-07-09 02:38:07 -0700595 /*
596 * Reload arg registers from stack in case ptrace changed them.
597 * We don't reload %rax because syscall_trace_enter() returned
598 * the value it wants us to use in the table lookup.
599 */
600 LOAD_ARGS ARGOFFSET, 1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 RESTORE_REST
602 cmpq $__NR_syscall_max,%rax
Roland McGratha31f8dd2008-03-16 21:59:11 -0700603 ja int_ret_from_sys_call /* RAX(%rsp) set to -ENOSYS above */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 movq %r10,%rcx /* fixup for C */
605 call *sys_call_table(,%rax,8)
Roland McGratha31f8dd2008-03-16 21:59:11 -0700606 movq %rax,RAX-ARGOFFSET(%rsp)
Andi Kleen7bf36bb2006-04-07 19:50:00 +0200607 /* Use IRET because user could have changed frame */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100608
609/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 * Syscall return path ending with IRET.
611 * Has correct top of stack, but partial stack frame.
Jan Beulichbcddc012006-12-07 02:14:02 +0100612 */
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +0300613GLOBAL(int_ret_from_sys_call)
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100614 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700615 TRACE_IRQS_OFF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 testl $3,CS-ARGOFFSET(%rsp)
617 je retint_restore_args
618 movl $_TIF_ALLWORK_MASK,%edi
619 /* edi: mask to check */
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +0300620GLOBAL(int_with_check)
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200621 LOCKDEP_SYS_EXIT_IRQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 GET_THREAD_INFO(%rcx)
Glauber Costa26ccb8a2008-06-24 11:19:35 -0300623 movl TI_flags(%rcx),%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 andl %edi,%edx
625 jnz int_careful
Glauber Costa26ccb8a2008-06-24 11:19:35 -0300626 andl $~TS_COMPAT,TI_status(%rcx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 jmp retint_swapgs
628
629 /* Either reschedule or signal or syscall exit tracking needed. */
630 /* First do a reschedule test. */
631 /* edx: work, edi: workmask */
632int_careful:
633 bt $TIF_NEED_RESCHED,%edx
634 jnc int_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)
Jan Beulichdf5d1872010-09-02 14:07:16 +0100637 pushq_cfi %rdi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 call schedule
Jan Beulichdf5d1872010-09-02 14:07:16 +0100639 popq_cfi %rdi
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100640 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700641 TRACE_IRQS_OFF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 jmp int_with_check
643
644 /* handle signals and tracing -- both require a full stack frame */
645int_very_careful:
Ingo Molnar2601e642006-07-03 00:24:45 -0700646 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100647 ENABLE_INTERRUPTS(CLBR_NONE)
Roland McGrathb60e7142009-09-22 16:46:34 -0700648int_check_syscall_exit_work:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 SAVE_REST
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100650 /* Check for syscall exit trace */
Roland McGrathd4d67152008-07-09 02:38:07 -0700651 testl $_TIF_WORK_SYSCALL_EXIT,%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 jz int_signal
Jan Beulichdf5d1872010-09-02 14:07:16 +0100653 pushq_cfi %rdi
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100654 leaq 8(%rsp),%rdi # &ptregs -> arg1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 call syscall_trace_leave
Jan Beulichdf5d1872010-09-02 14:07:16 +0100656 popq_cfi %rdi
Roland McGrathd4d67152008-07-09 02:38:07 -0700657 andl $~(_TIF_WORK_SYSCALL_EXIT|_TIF_SYSCALL_EMU),%edi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 jmp int_restore_rest
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100659
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660int_signal:
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100661 testl $_TIF_DO_NOTIFY_MASK,%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 jz 1f
663 movq %rsp,%rdi # &ptregs -> arg1
664 xorl %esi,%esi # oldset -> arg2
665 call do_notify_resume
Roland McGratheca91e72008-07-10 14:50:39 -07006661: movl $_TIF_WORK_MASK,%edi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667int_restore_rest:
668 RESTORE_REST
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 jmp int_with_check
672 CFI_ENDPROC
Jan Beulichbcddc012006-12-07 02:14:02 +0100673END(system_call)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100674
675/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 * Certain special system calls that need to save a complete full stack frame.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100677 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 .macro PTREGSCALL label,func,arg
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100679ENTRY(\label)
680 PARTIAL_FRAME 1 8 /* offset 8: return address */
681 subq $REST_SKIP, %rsp
682 CFI_ADJUST_CFA_OFFSET REST_SKIP
683 call save_rest
684 DEFAULT_FRAME 0 8 /* offset 8: return address */
685 leaq 8(%rsp), \arg /* pt_regs pointer */
686 call \func
687 jmp ptregscall_common
688 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200689END(\label)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 .endm
691
692 PTREGSCALL stub_clone, sys_clone, %r8
693 PTREGSCALL stub_fork, sys_fork, %rdi
694 PTREGSCALL stub_vfork, sys_vfork, %rdi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 PTREGSCALL stub_sigaltstack, sys_sigaltstack, %rdx
696 PTREGSCALL stub_iopl, sys_iopl, %rsi
697
698ENTRY(ptregscall_common)
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100699 DEFAULT_FRAME 1 8 /* offset 8: return address */
700 RESTORE_TOP_OF_STACK %r11, 8
701 movq_cfi_restore R15+8, r15
702 movq_cfi_restore R14+8, r14
703 movq_cfi_restore R13+8, r13
704 movq_cfi_restore R12+8, r12
705 movq_cfi_restore RBP+8, rbp
706 movq_cfi_restore RBX+8, rbx
707 ret $REST_SKIP /* pop extended registers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200709END(ptregscall_common)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100710
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711ENTRY(stub_execve)
712 CFI_STARTPROC
Jan Beuliche6b04b62010-09-02 13:52:45 +0100713 addq $8, %rsp
714 PARTIAL_FRAME 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 SAVE_REST
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 FIXUP_TOP_OF_STACK %r11
Ingo Molnar5d119b22008-02-26 12:55:57 +0100717 movq %rsp, %rcx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 call sys_execve
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 RESTORE_TOP_OF_STACK %r11
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 movq %rax,RAX(%rsp)
721 RESTORE_REST
722 jmp int_ret_from_sys_call
723 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200724END(stub_execve)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100725
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726/*
727 * sigreturn is special because it needs to restore all registers on return.
728 * This cannot be done with SYSRET, so use the IRET return path instead.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100729 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730ENTRY(stub_rt_sigreturn)
731 CFI_STARTPROC
Jan Beulich7effaa82005-09-12 18:49:24 +0200732 addq $8, %rsp
Jan Beuliche6b04b62010-09-02 13:52:45 +0100733 PARTIAL_FRAME 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 SAVE_REST
735 movq %rsp,%rdi
736 FIXUP_TOP_OF_STACK %r11
737 call sys_rt_sigreturn
738 movq %rax,RAX(%rsp) # fixme, this could be done at the higher layer
739 RESTORE_REST
740 jmp int_ret_from_sys_call
741 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200742END(stub_rt_sigreturn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743
Jan Beulich7effaa82005-09-12 18:49:24 +0200744/*
H. Peter Anvin939b7872008-11-11 13:51:52 -0800745 * Build the entry stubs and pointer table with some assembler magic.
746 * We pack 7 stubs into a single 32-byte chunk, which will fit in a
747 * single cache line on all modern x86 implementations.
748 */
749 .section .init.rodata,"a"
750ENTRY(interrupt)
Jiri Olsaea714542011-03-07 19:10:39 +0100751 .section .entry.text
H. Peter Anvin939b7872008-11-11 13:51:52 -0800752 .p2align 5
753 .p2align CONFIG_X86_L1_CACHE_SHIFT
754ENTRY(irq_entries_start)
755 INTR_FRAME
756vector=FIRST_EXTERNAL_VECTOR
757.rept (NR_VECTORS-FIRST_EXTERNAL_VECTOR+6)/7
758 .balign 32
759 .rept 7
760 .if vector < NR_VECTORS
H. Peter Anvin86655962008-11-12 10:27:35 -0800761 .if vector <> FIRST_EXTERNAL_VECTOR
H. Peter Anvin939b7872008-11-11 13:51:52 -0800762 CFI_ADJUST_CFA_OFFSET -8
763 .endif
Jan Beulichdf5d1872010-09-02 14:07:16 +01007641: pushq_cfi $(~vector+0x80) /* Note: always in signed byte range */
H. Peter Anvin86655962008-11-12 10:27:35 -0800765 .if ((vector-FIRST_EXTERNAL_VECTOR)%7) <> 6
H. Peter Anvin939b7872008-11-11 13:51:52 -0800766 jmp 2f
767 .endif
768 .previous
769 .quad 1b
Jiri Olsaea714542011-03-07 19:10:39 +0100770 .section .entry.text
H. Peter Anvin939b7872008-11-11 13:51:52 -0800771vector=vector+1
772 .endif
773 .endr
7742: jmp common_interrupt
775.endr
776 CFI_ENDPROC
777END(irq_entries_start)
778
779.previous
780END(interrupt)
781.previous
782
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100783/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 * Interrupt entry/exit.
785 *
786 * Interrupt entry points save only callee clobbered registers in fast path.
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100787 *
788 * Entry runs with interrupts off.
789 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790
Alexander van Heukelum722024d2008-11-13 13:50:20 +0100791/* 0(%rsp): ~(interrupt number) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 .macro interrupt func
Frederic Weisbecker625dbc32011-01-06 15:22:47 +0100793 /* reserve pt_regs for scratch regs and rbp */
794 subq $ORIG_RAX-RBP, %rsp
795 CFI_ADJUST_CFA_OFFSET ORIG_RAX-RBP
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100796 call save_args
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100797 PARTIAL_FRAME 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 call \func
799 .endm
800
Masami Hiramatsu8222d712009-08-27 13:23:25 -0400801/*
802 * Interrupt entry/exit should be protected against kprobes
803 */
804 .pushsection .kprobes.text, "ax"
Alexander van Heukelum722024d2008-11-13 13:50:20 +0100805 /*
806 * The interrupt stubs push (~vector+0x80) onto the stack and
807 * then jump to common_interrupt.
808 */
H. Peter Anvin939b7872008-11-11 13:51:52 -0800809 .p2align CONFIG_X86_L1_CACHE_SHIFT
810common_interrupt:
Jan Beulich7effaa82005-09-12 18:49:24 +0200811 XCPT_FRAME
Alexander van Heukelum722024d2008-11-13 13:50:20 +0100812 addq $-0x80,(%rsp) /* Adjust vector to [-256,-1] range */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 interrupt do_IRQ
Brian Gerst3d1e42a2009-01-19 00:38:58 +0900814 /* 0(%rsp): old_rsp-ARGOFFSET */
Jan Beulich7effaa82005-09-12 18:49:24 +0200815ret_from_intr:
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100816 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700817 TRACE_IRQS_OFF
Brian Gerst56895532009-01-19 00:38:58 +0900818 decl PER_CPU_VAR(irq_count)
Jan Beulich1de9c3f2006-06-26 13:57:35 +0200819 leaveq
Frederic Weisbecker625dbc32011-01-06 15:22:47 +0100820
Jan Beulichdf5d1872010-09-02 14:07:16 +0100821 CFI_RESTORE rbp
Jan Beulich7effaa82005-09-12 18:49:24 +0200822 CFI_DEF_CFA_REGISTER rsp
Jan Beulich1de9c3f2006-06-26 13:57:35 +0200823 CFI_ADJUST_CFA_OFFSET -8
Frederic Weisbecker625dbc32011-01-06 15:22:47 +0100824
825 /* we did not save rbx, restore only from ARGOFFSET */
826 addq $8, %rsp
827 CFI_ADJUST_CFA_OFFSET -8
Jan Beulich7effaa82005-09-12 18:49:24 +0200828exit_intr:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 GET_THREAD_INFO(%rcx)
830 testl $3,CS-ARGOFFSET(%rsp)
831 je retint_kernel
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100832
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 /* Interrupt came from user space */
834 /*
835 * Has a correct top of stack, but a partial stack frame
836 * %rcx: thread info. Interrupts off.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100837 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838retint_with_reschedule:
839 movl $_TIF_WORK_MASK,%edi
Jan Beulich7effaa82005-09-12 18:49:24 +0200840retint_check:
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200841 LOCKDEP_SYS_EXIT_IRQ
Glauber Costa26ccb8a2008-06-24 11:19:35 -0300842 movl TI_flags(%rcx),%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 andl %edi,%edx
Jan Beulich7effaa82005-09-12 18:49:24 +0200844 CFI_REMEMBER_STATE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 jnz retint_careful
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200846
847retint_swapgs: /* return to user-space */
Ingo Molnar2601e642006-07-03 00:24:45 -0700848 /*
849 * The iretq could re-enable interrupts:
850 */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100851 DISABLE_INTERRUPTS(CLBR_ANY)
Ingo Molnar2601e642006-07-03 00:24:45 -0700852 TRACE_IRQS_IRETQ
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100853 SWAPGS
Ingo Molnar2601e642006-07-03 00:24:45 -0700854 jmp restore_args
855
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200856retint_restore_args: /* return to kernel space */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100857 DISABLE_INTERRUPTS(CLBR_ANY)
Ingo Molnar2601e642006-07-03 00:24:45 -0700858 /*
859 * The iretq could re-enable interrupts:
860 */
861 TRACE_IRQS_IRETQ
862restore_args:
Ingo Molnar3701d8632008-02-09 23:24:08 +0100863 RESTORE_ARGS 0,8,0
864
Adrian Bunkf7f3d792008-02-13 23:29:53 +0200865irq_return:
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100866 INTERRUPT_RETURN
Ingo Molnar3701d8632008-02-09 23:24:08 +0100867
868 .section __ex_table, "a"
869 .quad irq_return, bad_iret
870 .previous
871
872#ifdef CONFIG_PARAVIRT
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100873ENTRY(native_iret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 iretq
875
876 .section __ex_table,"a"
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100877 .quad native_iret, bad_iret
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 .previous
Ingo Molnar3701d8632008-02-09 23:24:08 +0100879#endif
880
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 .section .fixup,"ax"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882bad_iret:
Roland McGrath3aa4b372008-02-06 22:39:43 +0100883 /*
884 * The iret traps when the %cs or %ss being restored is bogus.
885 * We've lost the original trap vector and error code.
886 * #GPF is the most likely one to get for an invalid selector.
887 * So pretend we completed the iret and took the #GPF in user mode.
888 *
889 * We are now running with the kernel GS after exception recovery.
890 * But error_entry expects us to have user GS to match the user %cs,
891 * so swap back.
892 */
893 pushq $0
894
895 SWAPGS
896 jmp general_protection
897
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100898 .previous
899
Jan Beulich7effaa82005-09-12 18:49:24 +0200900 /* edi: workmask, edx: work */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901retint_careful:
Jan Beulich7effaa82005-09-12 18:49:24 +0200902 CFI_RESTORE_STATE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 bt $TIF_NEED_RESCHED,%edx
904 jnc retint_signal
Ingo Molnar2601e642006-07-03 00:24:45 -0700905 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100906 ENABLE_INTERRUPTS(CLBR_NONE)
Jan Beulichdf5d1872010-09-02 14:07:16 +0100907 pushq_cfi %rdi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 call schedule
Jan Beulichdf5d1872010-09-02 14:07:16 +0100909 popq_cfi %rdi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 GET_THREAD_INFO(%rcx)
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100911 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700912 TRACE_IRQS_OFF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 jmp retint_check
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100914
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915retint_signal:
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100916 testl $_TIF_DO_NOTIFY_MASK,%edx
Andi Kleen10ffdbb2005-05-16 21:53:19 -0700917 jz retint_swapgs
Ingo Molnar2601e642006-07-03 00:24:45 -0700918 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100919 ENABLE_INTERRUPTS(CLBR_NONE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 SAVE_REST
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100921 movq $-1,ORIG_RAX(%rsp)
Andi Kleen3829ee62005-07-28 21:15:48 -0700922 xorl %esi,%esi # oldset
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 movq %rsp,%rdi # &pt_regs
924 call do_notify_resume
925 RESTORE_REST
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100926 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700927 TRACE_IRQS_OFF
Andi Kleenbe9e6872005-05-01 08:58:51 -0700928 GET_THREAD_INFO(%rcx)
Roland McGratheca91e72008-07-10 14:50:39 -0700929 jmp retint_with_reschedule
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930
931#ifdef CONFIG_PREEMPT
932 /* Returning to kernel space. Check if we need preemption */
933 /* rcx: threadinfo. interrupts off. */
Andi Kleenb06baba2006-09-26 10:52:29 +0200934ENTRY(retint_kernel)
Glauber Costa26ccb8a2008-06-24 11:19:35 -0300935 cmpl $0,TI_preempt_count(%rcx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 jnz retint_restore_args
Glauber Costa26ccb8a2008-06-24 11:19:35 -0300937 bt $TIF_NEED_RESCHED,TI_flags(%rcx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 jnc retint_restore_args
939 bt $9,EFLAGS-ARGOFFSET(%rsp) /* interrupts off? */
940 jnc retint_restore_args
941 call preempt_schedule_irq
942 jmp exit_intr
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100943#endif
Jan Beulich4b787e02006-06-26 13:56:55 +0200944
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200946END(common_interrupt)
Masami Hiramatsu8222d712009-08-27 13:23:25 -0400947/*
948 * End of kprobes section
949 */
950 .popsection
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100951
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952/*
953 * APIC interrupts.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100954 */
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100955.macro apicinterrupt num sym do_sym
956ENTRY(\sym)
Jan Beulich7effaa82005-09-12 18:49:24 +0200957 INTR_FRAME
Jan Beulichdf5d1872010-09-02 14:07:16 +0100958 pushq_cfi $~(\num)
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100959 interrupt \do_sym
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 jmp ret_from_intr
961 CFI_ENDPROC
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100962END(\sym)
963.endm
Jacob Shin89b831e2005-11-05 17:25:53 +0100964
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100965#ifdef CONFIG_SMP
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100966apicinterrupt IRQ_MOVE_CLEANUP_VECTOR \
967 irq_move_cleanup_interrupt smp_irq_move_cleanup_interrupt
Andi Kleen4ef702c2009-05-27 21:56:52 +0200968apicinterrupt REBOOT_VECTOR \
969 reboot_interrupt smp_reboot_interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970#endif
971
Nick Piggin03b48632009-01-20 04:36:04 +0100972#ifdef CONFIG_X86_UV
Cyrill Gorcunov5ae3a132008-11-27 00:02:10 +0300973apicinterrupt UV_BAU_MESSAGE \
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100974 uv_bau_message_intr1 uv_bau_message_interrupt
Nick Piggin03b48632009-01-20 04:36:04 +0100975#endif
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100976apicinterrupt LOCAL_TIMER_VECTOR \
977 apic_timer_interrupt smp_apic_timer_interrupt
Dimitri Sivanich4a4de9c2009-10-14 09:22:57 -0500978apicinterrupt X86_PLATFORM_IPI_VECTOR \
979 x86_platform_ipi smp_x86_platform_ipi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100981#ifdef CONFIG_SMP
Shaohua Li3a09fb42011-01-17 10:52:05 +0800982.irp idx,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15, \
983 16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31
984.if NUM_INVALIDATE_TLB_VECTORS > \idx
Jan Beulich32342822010-10-19 14:52:26 +0100985apicinterrupt (INVALIDATE_TLB_VECTOR_START)+\idx \
986 invalidate_interrupt\idx smp_invalidate_interrupt
Shaohua Li3a09fb42011-01-17 10:52:05 +0800987.endif
Jan Beulich32342822010-10-19 14:52:26 +0100988.endr
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100989#endif
Cliff Wickman18129242008-06-02 08:56:14 -0500990
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100991apicinterrupt THRESHOLD_APIC_VECTOR \
Andi Kleen7856f6c2009-04-28 23:32:56 +0200992 threshold_interrupt smp_threshold_interrupt
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100993apicinterrupt THERMAL_APIC_VECTOR \
994 thermal_interrupt smp_thermal_interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995
Andi Kleenccc3c312009-05-27 21:56:54 +0200996#ifdef CONFIG_X86_MCE
997apicinterrupt MCE_SELF_VECTOR \
998 mce_self_interrupt smp_mce_self_interrupt
999#endif
1000
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001001#ifdef CONFIG_SMP
1002apicinterrupt CALL_FUNCTION_SINGLE_VECTOR \
1003 call_function_single_interrupt smp_call_function_single_interrupt
1004apicinterrupt CALL_FUNCTION_VECTOR \
1005 call_function_interrupt smp_call_function_interrupt
1006apicinterrupt RESCHEDULE_VECTOR \
1007 reschedule_interrupt smp_reschedule_interrupt
1008#endif
1009
1010apicinterrupt ERROR_APIC_VECTOR \
1011 error_interrupt smp_error_interrupt
1012apicinterrupt SPURIOUS_APIC_VECTOR \
1013 spurious_interrupt smp_spurious_interrupt
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001014
Peter Zijlstrae360adb2010-10-14 14:01:34 +08001015#ifdef CONFIG_IRQ_WORK
1016apicinterrupt IRQ_WORK_VECTOR \
1017 irq_work_interrupt smp_irq_work_interrupt
Ingo Molnar241771e2008-12-03 10:39:53 +01001018#endif
1019
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020/*
1021 * Exception entry points.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001022 */
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001023.macro zeroentry sym do_sym
1024ENTRY(\sym)
Jan Beulich7effaa82005-09-12 18:49:24 +02001025 INTR_FRAME
Jeremy Fitzhardingefab58422008-06-25 00:19:31 -04001026 PARAVIRT_ADJUST_EXCEPTION_FRAME
Ingo Molnar14ae22b2008-11-21 15:20:47 +01001027 pushq_cfi $-1 /* ORIG_RAX: no syscall to restart */
Jan Beulichb1cccb12010-09-02 13:55:11 +01001028 subq $ORIG_RAX-R15, %rsp
1029 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
Alexander van Heukelumd99015b2008-11-19 01:18:11 +01001030 call error_entry
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +01001031 DEFAULT_FRAME 0
Alexander van Heukelumd99015b2008-11-19 01:18:11 +01001032 movq %rsp,%rdi /* pt_regs pointer */
1033 xorl %esi,%esi /* no error code */
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001034 call \do_sym
Alexander van Heukelumd99015b2008-11-19 01:18:11 +01001035 jmp error_exit /* %ebx: no swapgs flag */
Jan Beulich7effaa82005-09-12 18:49:24 +02001036 CFI_ENDPROC
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001037END(\sym)
1038.endm
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001040.macro paranoidzeroentry sym do_sym
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001041ENTRY(\sym)
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001042 INTR_FRAME
1043 PARAVIRT_ADJUST_EXCEPTION_FRAME
Jan Beulichb1cccb12010-09-02 13:55:11 +01001044 pushq_cfi $-1 /* ORIG_RAX: no syscall to restart */
1045 subq $ORIG_RAX-R15, %rsp
1046 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001047 call save_paranoid
1048 TRACE_IRQS_OFF
1049 movq %rsp,%rdi /* pt_regs pointer */
1050 xorl %esi,%esi /* no error code */
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001051 call \do_sym
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001052 jmp paranoid_exit /* %ebx: no swapgs flag */
1053 CFI_ENDPROC
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001054END(\sym)
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001055.endm
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001056
Brian Gerstc15a5952010-07-31 12:48:22 -04001057#define INIT_TSS_IST(x) PER_CPU_VAR(init_tss) + (TSS_ist + ((x) - 1) * 8)
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001058.macro paranoidzeroentry_ist sym do_sym ist
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001059ENTRY(\sym)
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001060 INTR_FRAME
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001061 PARAVIRT_ADJUST_EXCEPTION_FRAME
Jan Beulichb1cccb12010-09-02 13:55:11 +01001062 pushq_cfi $-1 /* ORIG_RAX: no syscall to restart */
1063 subq $ORIG_RAX-R15, %rsp
1064 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001065 call save_paranoid
1066 TRACE_IRQS_OFF
1067 movq %rsp,%rdi /* pt_regs pointer */
1068 xorl %esi,%esi /* no error code */
Brian Gerstc15a5952010-07-31 12:48:22 -04001069 subq $EXCEPTION_STKSZ, INIT_TSS_IST(\ist)
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001070 call \do_sym
Brian Gerstc15a5952010-07-31 12:48:22 -04001071 addq $EXCEPTION_STKSZ, INIT_TSS_IST(\ist)
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001072 jmp paranoid_exit /* %ebx: no swapgs flag */
1073 CFI_ENDPROC
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001074END(\sym)
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001075.endm
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001076
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001077.macro errorentry sym do_sym
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001078ENTRY(\sym)
Jan Beulich7effaa82005-09-12 18:49:24 +02001079 XCPT_FRAME
Jeremy Fitzhardingefab58422008-06-25 00:19:31 -04001080 PARAVIRT_ADJUST_EXCEPTION_FRAME
Jan Beulichb1cccb12010-09-02 13:55:11 +01001081 subq $ORIG_RAX-R15, %rsp
1082 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
Alexander van Heukelumd99015b2008-11-19 01:18:11 +01001083 call error_entry
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +01001084 DEFAULT_FRAME 0
Alexander van Heukelumd99015b2008-11-19 01:18:11 +01001085 movq %rsp,%rdi /* pt_regs pointer */
1086 movq ORIG_RAX(%rsp),%rsi /* get error code */
1087 movq $-1,ORIG_RAX(%rsp) /* no syscall to restart */
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001088 call \do_sym
Alexander van Heukelumd99015b2008-11-19 01:18:11 +01001089 jmp error_exit /* %ebx: no swapgs flag */
Jan Beulich7effaa82005-09-12 18:49:24 +02001090 CFI_ENDPROC
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001091END(\sym)
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001092.endm
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093
1094 /* error code is on the stack already */
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001095.macro paranoiderrorentry sym do_sym
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001096ENTRY(\sym)
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001097 XCPT_FRAME
1098 PARAVIRT_ADJUST_EXCEPTION_FRAME
Jan Beulichb1cccb12010-09-02 13:55:11 +01001099 subq $ORIG_RAX-R15, %rsp
1100 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
Alexander van Heukelume2f6bc22008-11-21 16:43:18 +01001101 call save_paranoid
1102 DEFAULT_FRAME 0
Alexander van Heukelum7e61a792008-09-26 14:03:03 +02001103 TRACE_IRQS_OFF
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001104 movq %rsp,%rdi /* pt_regs pointer */
1105 movq ORIG_RAX(%rsp),%rsi /* get error code */
1106 movq $-1,ORIG_RAX(%rsp) /* no syscall to restart */
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001107 call \do_sym
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001108 jmp paranoid_exit /* %ebx: no swapgs flag */
1109 CFI_ENDPROC
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001110END(\sym)
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001111.endm
1112
1113zeroentry divide_error do_divide_error
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001114zeroentry overflow do_overflow
1115zeroentry bounds do_bounds
1116zeroentry invalid_op do_invalid_op
1117zeroentry device_not_available do_device_not_available
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001118paranoiderrorentry double_fault do_double_fault
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001119zeroentry coprocessor_segment_overrun do_coprocessor_segment_overrun
1120errorentry invalid_TSS do_invalid_TSS
1121errorentry segment_not_present do_segment_not_present
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001122zeroentry spurious_interrupt_bug do_spurious_interrupt_bug
1123zeroentry coprocessor_error do_coprocessor_error
1124errorentry alignment_check do_alignment_check
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001125zeroentry simd_coprocessor_error do_simd_coprocessor_error
Ingo Molnar2601e642006-07-03 00:24:45 -07001126
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001127 /* Reload gs selector with exception handling */
1128 /* edi: new selector */
Jeremy Fitzhardinge9f9d4892008-06-25 00:19:32 -04001129ENTRY(native_load_gs_index)
Jan Beulich7effaa82005-09-12 18:49:24 +02001130 CFI_STARTPROC
Jan Beulichdf5d1872010-09-02 14:07:16 +01001131 pushfq_cfi
Jeremy Fitzhardingeb8aa2872009-01-28 14:35:03 -08001132 DISABLE_INTERRUPTS(CLBR_ANY & ~CLBR_RDI)
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001133 SWAPGS
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001134gs_change:
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001135 movl %edi,%gs
Linus Torvalds1da177e2005-04-16 15:20:36 -070011362: mfence /* workaround */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +01001137 SWAPGS
Jan Beulichdf5d1872010-09-02 14:07:16 +01001138 popfq_cfi
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001139 ret
Jan Beulich7effaa82005-09-12 18:49:24 +02001140 CFI_ENDPROC
Alexander van Heukelum6efdcfa2008-11-23 10:15:32 +01001141END(native_load_gs_index)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001142
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001143 .section __ex_table,"a"
1144 .align 8
1145 .quad gs_change,bad_gs
1146 .previous
1147 .section .fixup,"ax"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 /* running with kernelgs */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001149bad_gs:
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +01001150 SWAPGS /* switch back to user gs */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 xorl %eax,%eax
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001152 movl %eax,%gs
1153 jmp 2b
1154 .previous
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001155
Brian Gerst3bd95df2009-12-09 12:34:40 -05001156ENTRY(kernel_thread_helper)
Andi Kleenc05991e2006-08-30 19:37:08 +02001157 pushq $0 # fake return address
1158 CFI_STARTPROC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 /*
1160 * Here we are in the child and the registers are set as they were
1161 * at kernel_thread() invocation in the parent.
1162 */
Brian Gerst3bd95df2009-12-09 12:34:40 -05001163 call *%rsi
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 # exit
Andrey Mirkin1c5b5cf2007-10-17 18:04:33 +02001165 mov %eax, %edi
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 call do_exit
jia zhang5f5db592008-11-23 22:47:10 +08001167 ud2 # padding for call trace
Andi Kleenc05991e2006-08-30 19:37:08 +02001168 CFI_ENDPROC
Brian Gerst3bd95df2009-12-09 12:34:40 -05001169END(kernel_thread_helper)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170
1171/*
1172 * execve(). This function needs to use IRET, not SYSRET, to set up all state properly.
1173 *
1174 * C extern interface:
David Howellsc7887322010-08-11 11:26:22 +01001175 * extern long execve(const char *name, char **argv, char **envp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 *
1177 * asm input arguments:
1178 * rdi: name, rsi: argv, rdx: envp
1179 *
1180 * We want to fallback into:
David Howellsc7887322010-08-11 11:26:22 +01001181 * extern long sys_execve(const char *name, char **argv,char **envp, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 *
1183 * do_sys_execve asm fallback arguments:
Ingo Molnar5d119b22008-02-26 12:55:57 +01001184 * rdi: name, rsi: argv, rdx: envp, rcx: fake frame on the stack
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 */
Arnd Bergmann3db03b42006-10-02 02:18:31 -07001186ENTRY(kernel_execve)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 CFI_STARTPROC
1188 FAKE_STACK_FRAME $0
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001189 SAVE_ALL
Ingo Molnar5d119b22008-02-26 12:55:57 +01001190 movq %rsp,%rcx
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 call sys_execve
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001192 movq %rax, RAX(%rsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 RESTORE_REST
1194 testq %rax,%rax
1195 je int_ret_from_sys_call
1196 RESTORE_ARGS
1197 UNFAKE_STACK_FRAME
1198 ret
1199 CFI_ENDPROC
Alexander van Heukelum6efdcfa2008-11-23 10:15:32 +01001200END(kernel_execve)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201
Andi Kleen26995002006-08-02 22:37:28 +02001202/* Call softirq on interrupt stack. Interrupts are off. */
Andi Kleened6b6762005-07-28 21:15:49 -07001203ENTRY(call_softirq)
Jan Beulich7effaa82005-09-12 18:49:24 +02001204 CFI_STARTPROC
Jan Beulichdf5d1872010-09-02 14:07:16 +01001205 pushq_cfi %rbp
Andi Kleen26995002006-08-02 22:37:28 +02001206 CFI_REL_OFFSET rbp,0
1207 mov %rsp,%rbp
1208 CFI_DEF_CFA_REGISTER rbp
Brian Gerst56895532009-01-19 00:38:58 +09001209 incl PER_CPU_VAR(irq_count)
Brian Gerst26f80bd2009-01-19 00:38:58 +09001210 cmove PER_CPU_VAR(irq_stack_ptr),%rsp
Andi Kleen26995002006-08-02 22:37:28 +02001211 push %rbp # backlink for old unwinder
Andi Kleened6b6762005-07-28 21:15:49 -07001212 call __do_softirq
Andi Kleen26995002006-08-02 22:37:28 +02001213 leaveq
Jan Beulichdf5d1872010-09-02 14:07:16 +01001214 CFI_RESTORE rbp
Jan Beulich7effaa82005-09-12 18:49:24 +02001215 CFI_DEF_CFA_REGISTER rsp
Andi Kleen26995002006-08-02 22:37:28 +02001216 CFI_ADJUST_CFA_OFFSET -8
Brian Gerst56895532009-01-19 00:38:58 +09001217 decl PER_CPU_VAR(irq_count)
Andi Kleened6b6762005-07-28 21:15:49 -07001218 ret
Jan Beulich7effaa82005-09-12 18:49:24 +02001219 CFI_ENDPROC
Alexander van Heukelum6efdcfa2008-11-23 10:15:32 +01001220END(call_softirq)
Andi Kleen75154f42007-06-23 02:29:25 +02001221
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001222#ifdef CONFIG_XEN
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001223zeroentry xen_hypervisor_callback xen_do_hypervisor_callback
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001224
1225/*
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001226 * A note on the "critical region" in our callback handler.
1227 * We want to avoid stacking callback handlers due to events occurring
1228 * during handling of the last event. To do this, we keep events disabled
1229 * until we've done all processing. HOWEVER, we must enable events before
1230 * popping the stack frame (can't be done atomically) and so it would still
1231 * be possible to get enough handler activations to overflow the stack.
1232 * Although unlikely, bugs of that kind are hard to track down, so we'd
1233 * like to avoid the possibility.
1234 * So, on entry to the handler we detect whether we interrupted an
1235 * existing activation in its critical region -- if so, we pop the current
1236 * activation and restart the handler using the previous one.
1237 */
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001238ENTRY(xen_do_hypervisor_callback) # do_hypervisor_callback(struct *pt_regs)
1239 CFI_STARTPROC
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001240/*
1241 * Since we don't modify %rdi, evtchn_do_upall(struct *pt_regs) will
1242 * see the correct pointer to the pt_regs
1243 */
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001244 movq %rdi, %rsp # we don't return, adjust the stack frame
1245 CFI_ENDPROC
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +01001246 DEFAULT_FRAME
Brian Gerst56895532009-01-19 00:38:58 +0900124711: incl PER_CPU_VAR(irq_count)
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001248 movq %rsp,%rbp
1249 CFI_DEF_CFA_REGISTER rbp
Brian Gerst26f80bd2009-01-19 00:38:58 +09001250 cmovzq PER_CPU_VAR(irq_stack_ptr),%rsp
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001251 pushq %rbp # backlink for old unwinder
1252 call xen_evtchn_do_upcall
1253 popq %rsp
1254 CFI_DEF_CFA_REGISTER rsp
Brian Gerst56895532009-01-19 00:38:58 +09001255 decl PER_CPU_VAR(irq_count)
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001256 jmp error_exit
1257 CFI_ENDPROC
Alexander van Heukelum371c3942011-03-11 21:59:38 +01001258END(xen_do_hypervisor_callback)
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001259
1260/*
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001261 * Hypervisor uses this for application faults while it executes.
1262 * We get here for two reasons:
1263 * 1. Fault while reloading DS, ES, FS or GS
1264 * 2. Fault while executing IRET
1265 * Category 1 we do not need to fix up as Xen has already reloaded all segment
1266 * registers that could be reloaded and zeroed the others.
1267 * Category 2 we fix up by killing the current process. We cannot use the
1268 * normal Linux return path in this case because if we use the IRET hypercall
1269 * to pop the stack frame we end up in an infinite loop of failsafe callbacks.
1270 * We distinguish between categories by comparing each saved segment register
1271 * with its current contents: any discrepancy means we in category 1.
1272 */
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001273ENTRY(xen_failsafe_callback)
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +01001274 INTR_FRAME 1 (6*8)
1275 /*CFI_REL_OFFSET gs,GS*/
1276 /*CFI_REL_OFFSET fs,FS*/
1277 /*CFI_REL_OFFSET es,ES*/
1278 /*CFI_REL_OFFSET ds,DS*/
1279 CFI_REL_OFFSET r11,8
1280 CFI_REL_OFFSET rcx,0
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001281 movw %ds,%cx
1282 cmpw %cx,0x10(%rsp)
1283 CFI_REMEMBER_STATE
1284 jne 1f
1285 movw %es,%cx
1286 cmpw %cx,0x18(%rsp)
1287 jne 1f
1288 movw %fs,%cx
1289 cmpw %cx,0x20(%rsp)
1290 jne 1f
1291 movw %gs,%cx
1292 cmpw %cx,0x28(%rsp)
1293 jne 1f
1294 /* All segments match their saved values => Category 2 (Bad IRET). */
1295 movq (%rsp),%rcx
1296 CFI_RESTORE rcx
1297 movq 8(%rsp),%r11
1298 CFI_RESTORE r11
1299 addq $0x30,%rsp
1300 CFI_ADJUST_CFA_OFFSET -0x30
Ingo Molnar14ae22b2008-11-21 15:20:47 +01001301 pushq_cfi $0 /* RIP */
1302 pushq_cfi %r11
1303 pushq_cfi %rcx
Jeremy Fitzhardinge4a5c3e72008-07-08 15:07:09 -07001304 jmp general_protection
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001305 CFI_RESTORE_STATE
13061: /* Segment mismatch => Category 1 (Bad segment). Retry the IRET. */
1307 movq (%rsp),%rcx
1308 CFI_RESTORE rcx
1309 movq 8(%rsp),%r11
1310 CFI_RESTORE r11
1311 addq $0x30,%rsp
1312 CFI_ADJUST_CFA_OFFSET -0x30
Ingo Molnar14ae22b2008-11-21 15:20:47 +01001313 pushq_cfi $0
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001314 SAVE_ALL
1315 jmp error_exit
1316 CFI_ENDPROC
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001317END(xen_failsafe_callback)
1318
Sheng Yang38e20b02010-05-14 12:40:51 +01001319apicinterrupt XEN_HVM_EVTCHN_CALLBACK \
1320 xen_hvm_callback_vector xen_evtchn_do_upcall
1321
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001322#endif /* CONFIG_XEN */
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001323
1324/*
1325 * Some functions should be protected against kprobes
1326 */
1327 .pushsection .kprobes.text, "ax"
1328
1329paranoidzeroentry_ist debug do_debug DEBUG_STACK
1330paranoidzeroentry_ist int3 do_int3 DEBUG_STACK
1331paranoiderrorentry stack_segment do_stack_segment
Jeremy Fitzhardinge6cac5a92009-03-29 19:56:29 -07001332#ifdef CONFIG_XEN
1333zeroentry xen_debug do_debug
1334zeroentry xen_int3 do_int3
1335errorentry xen_stack_segment do_stack_segment
1336#endif
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001337errorentry general_protection do_general_protection
1338errorentry page_fault do_page_fault
Gleb Natapov631bc482010-10-14 11:22:52 +02001339#ifdef CONFIG_KVM_GUEST
1340errorentry async_page_fault do_async_page_fault
1341#endif
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001342#ifdef CONFIG_X86_MCE
Andi Kleen5d727922009-04-27 19:25:48 +02001343paranoidzeroentry machine_check *machine_check_vector(%rip)
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001344#endif
1345
1346 /*
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001347 * "Paranoid" exit path from exception stack.
1348 * Paranoid because this is used by NMIs and cannot take
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001349 * any kernel state for granted.
1350 * We don't do kernel preemption checks here, because only
1351 * NMI should be common and it does not enable IRQs and
1352 * cannot get reschedule ticks.
1353 *
1354 * "trace" is 0 for the NMI handler only, because irq-tracing
1355 * is fundamentally NMI-unsafe. (we cannot change the soft and
1356 * hard flags at once, atomically)
1357 */
1358
1359 /* ebx: no swapgs flag */
1360ENTRY(paranoid_exit)
Jan Beulich1f130a72010-09-02 13:54:32 +01001361 DEFAULT_FRAME
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001362 DISABLE_INTERRUPTS(CLBR_NONE)
1363 TRACE_IRQS_OFF
1364 testl %ebx,%ebx /* swapgs needed? */
1365 jnz paranoid_restore
1366 testl $3,CS(%rsp)
1367 jnz paranoid_userspace
1368paranoid_swapgs:
1369 TRACE_IRQS_IRETQ 0
1370 SWAPGS_UNSAFE_STACK
Steven Rostedt0300e7f12009-04-17 08:33:52 -04001371 RESTORE_ALL 8
1372 jmp irq_return
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001373paranoid_restore:
Steven Rostedt0300e7f12009-04-17 08:33:52 -04001374 TRACE_IRQS_IRETQ 0
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001375 RESTORE_ALL 8
1376 jmp irq_return
1377paranoid_userspace:
1378 GET_THREAD_INFO(%rcx)
1379 movl TI_flags(%rcx),%ebx
1380 andl $_TIF_WORK_MASK,%ebx
1381 jz paranoid_swapgs
1382 movq %rsp,%rdi /* &pt_regs */
1383 call sync_regs
1384 movq %rax,%rsp /* switch stack for scheduling */
1385 testl $_TIF_NEED_RESCHED,%ebx
1386 jnz paranoid_schedule
1387 movl %ebx,%edx /* arg3: thread flags */
1388 TRACE_IRQS_ON
1389 ENABLE_INTERRUPTS(CLBR_NONE)
1390 xorl %esi,%esi /* arg2: oldset */
1391 movq %rsp,%rdi /* arg1: &pt_regs */
1392 call do_notify_resume
1393 DISABLE_INTERRUPTS(CLBR_NONE)
1394 TRACE_IRQS_OFF
1395 jmp paranoid_userspace
1396paranoid_schedule:
1397 TRACE_IRQS_ON
1398 ENABLE_INTERRUPTS(CLBR_ANY)
1399 call schedule
1400 DISABLE_INTERRUPTS(CLBR_ANY)
1401 TRACE_IRQS_OFF
1402 jmp paranoid_userspace
1403 CFI_ENDPROC
1404END(paranoid_exit)
1405
1406/*
1407 * Exception entry point. This expects an error code/orig_rax on the stack.
1408 * returns in "no swapgs flag" in %ebx.
1409 */
1410ENTRY(error_entry)
1411 XCPT_FRAME
1412 CFI_ADJUST_CFA_OFFSET 15*8
1413 /* oldrax contains error code */
1414 cld
1415 movq_cfi rdi, RDI+8
1416 movq_cfi rsi, RSI+8
1417 movq_cfi rdx, RDX+8
1418 movq_cfi rcx, RCX+8
1419 movq_cfi rax, RAX+8
1420 movq_cfi r8, R8+8
1421 movq_cfi r9, R9+8
1422 movq_cfi r10, R10+8
1423 movq_cfi r11, R11+8
1424 movq_cfi rbx, RBX+8
1425 movq_cfi rbp, RBP+8
1426 movq_cfi r12, R12+8
1427 movq_cfi r13, R13+8
1428 movq_cfi r14, R14+8
1429 movq_cfi r15, R15+8
1430 xorl %ebx,%ebx
1431 testl $3,CS+8(%rsp)
1432 je error_kernelspace
1433error_swapgs:
1434 SWAPGS
1435error_sti:
1436 TRACE_IRQS_OFF
1437 ret
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001438
1439/*
1440 * There are two places in the kernel that can potentially fault with
1441 * usergs. Handle them here. The exception handlers after iret run with
1442 * kernel gs again, so don't set the user space flag. B stepping K8s
1443 * sometimes report an truncated RIP for IRET exceptions returning to
1444 * compat mode. Check for these here too.
1445 */
1446error_kernelspace:
1447 incl %ebx
1448 leaq irq_return(%rip),%rcx
1449 cmpq %rcx,RIP+8(%rsp)
1450 je error_swapgs
Brian Gerstae24ffe2009-10-12 10:18:23 -04001451 movl %ecx,%eax /* zero extend */
1452 cmpq %rax,RIP+8(%rsp)
1453 je bstep_iret
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001454 cmpq $gs_change,RIP+8(%rsp)
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001455 je error_swapgs
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001456 jmp error_sti
Brian Gerstae24ffe2009-10-12 10:18:23 -04001457
1458bstep_iret:
1459 /* Fix truncated RIP */
1460 movq %rcx,RIP+8(%rsp)
Brian Gerst97829de2009-11-03 14:02:05 -05001461 jmp error_swapgs
Jan Beuliche6b04b62010-09-02 13:52:45 +01001462 CFI_ENDPROC
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001463END(error_entry)
1464
1465
1466/* ebx: no swapgs flag (1: don't need swapgs, 0: need it) */
1467ENTRY(error_exit)
1468 DEFAULT_FRAME
1469 movl %ebx,%eax
1470 RESTORE_REST
1471 DISABLE_INTERRUPTS(CLBR_NONE)
1472 TRACE_IRQS_OFF
1473 GET_THREAD_INFO(%rcx)
1474 testl %eax,%eax
1475 jne retint_kernel
1476 LOCKDEP_SYS_EXIT_IRQ
1477 movl TI_flags(%rcx),%edx
1478 movl $_TIF_WORK_MASK,%edi
1479 andl %edi,%edx
1480 jnz retint_careful
1481 jmp retint_swapgs
1482 CFI_ENDPROC
1483END(error_exit)
1484
1485
1486 /* runs on exception stack */
1487ENTRY(nmi)
1488 INTR_FRAME
1489 PARAVIRT_ADJUST_EXCEPTION_FRAME
1490 pushq_cfi $-1
Jan Beulichb1cccb12010-09-02 13:55:11 +01001491 subq $ORIG_RAX-R15, %rsp
1492 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001493 call save_paranoid
1494 DEFAULT_FRAME 0
1495 /* paranoidentry do_nmi, 0; without TRACE_IRQS_OFF */
1496 movq %rsp,%rdi
1497 movq $-1,%rsi
1498 call do_nmi
1499#ifdef CONFIG_TRACE_IRQFLAGS
1500 /* paranoidexit; without TRACE_IRQS_OFF */
1501 /* ebx: no swapgs flag */
1502 DISABLE_INTERRUPTS(CLBR_NONE)
1503 testl %ebx,%ebx /* swapgs needed? */
1504 jnz nmi_restore
1505 testl $3,CS(%rsp)
1506 jnz nmi_userspace
1507nmi_swapgs:
1508 SWAPGS_UNSAFE_STACK
1509nmi_restore:
1510 RESTORE_ALL 8
1511 jmp irq_return
1512nmi_userspace:
1513 GET_THREAD_INFO(%rcx)
1514 movl TI_flags(%rcx),%ebx
1515 andl $_TIF_WORK_MASK,%ebx
1516 jz nmi_swapgs
1517 movq %rsp,%rdi /* &pt_regs */
1518 call sync_regs
1519 movq %rax,%rsp /* switch stack for scheduling */
1520 testl $_TIF_NEED_RESCHED,%ebx
1521 jnz nmi_schedule
1522 movl %ebx,%edx /* arg3: thread flags */
1523 ENABLE_INTERRUPTS(CLBR_NONE)
1524 xorl %esi,%esi /* arg2: oldset */
1525 movq %rsp,%rdi /* arg1: &pt_regs */
1526 call do_notify_resume
1527 DISABLE_INTERRUPTS(CLBR_NONE)
1528 jmp nmi_userspace
1529nmi_schedule:
1530 ENABLE_INTERRUPTS(CLBR_ANY)
1531 call schedule
1532 DISABLE_INTERRUPTS(CLBR_ANY)
1533 jmp nmi_userspace
1534 CFI_ENDPROC
1535#else
1536 jmp paranoid_exit
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001537 CFI_ENDPROC
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001538#endif
1539END(nmi)
1540
1541ENTRY(ignore_sysret)
1542 CFI_STARTPROC
1543 mov $-ENOSYS,%eax
1544 sysret
1545 CFI_ENDPROC
1546END(ignore_sysret)
1547
1548/*
1549 * End of kprobes section
1550 */
1551 .popsection