blob: e3ba417e869766bb258ef489aa389f4933abf2a3 [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.
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 * - partial stack frame: partially saved registers upto 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
Steven Rostedt606576c2008-10-06 19:06:12 -040064#ifdef CONFIG_FUNCTION_TRACER
Steven Rostedtd61f82d2008-05-12 21:20:43 +020065#ifdef CONFIG_DYNAMIC_FTRACE
66ENTRY(mcount)
Steven Rostedtd61f82d2008-05-12 21:20:43 +020067 retq
68END(mcount)
69
70ENTRY(ftrace_caller)
Steven Rostedt60a7ecf2008-11-05 16:05:44 -050071 cmpl $0, function_trace_stop
72 jne ftrace_stub
Steven Rostedtd61f82d2008-05-12 21:20:43 +020073
Cyrill Gorcunovd680fe42008-12-13 00:09:08 +030074 MCOUNT_SAVE_FRAME
Steven Rostedtd61f82d2008-05-12 21:20:43 +020075
76 movq 0x38(%rsp), %rdi
77 movq 8(%rbp), %rsi
Abhishek Sagar395a59d2008-06-21 23:47:27 +053078 subq $MCOUNT_INSN_SIZE, %rdi
Steven Rostedtd61f82d2008-05-12 21:20:43 +020079
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +030080GLOBAL(ftrace_call)
Steven Rostedtd61f82d2008-05-12 21:20:43 +020081 call ftrace_stub
82
Cyrill Gorcunovd680fe42008-12-13 00:09:08 +030083 MCOUNT_RESTORE_FRAME
Steven Rostedtd61f82d2008-05-12 21:20:43 +020084
Frederic Weisbecker48d68b22008-12-02 00:20:39 +010085#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +030086GLOBAL(ftrace_graph_call)
Frederic Weisbecker48d68b22008-12-02 00:20:39 +010087 jmp ftrace_stub
88#endif
Steven Rostedtd61f82d2008-05-12 21:20:43 +020089
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +030090GLOBAL(ftrace_stub)
Steven Rostedtd61f82d2008-05-12 21:20:43 +020091 retq
92END(ftrace_caller)
93
94#else /* ! CONFIG_DYNAMIC_FTRACE */
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +020095ENTRY(mcount)
Steven Rostedt60a7ecf2008-11-05 16:05:44 -050096 cmpl $0, function_trace_stop
97 jne ftrace_stub
98
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +020099 cmpq $ftrace_stub, ftrace_trace_function
100 jnz trace
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100101
102#ifdef CONFIG_FUNCTION_GRAPH_TRACER
103 cmpq $ftrace_stub, ftrace_graph_return
104 jnz ftrace_graph_caller
Steven Rostedte49dc192008-12-02 23:50:05 -0500105
106 cmpq $ftrace_graph_entry_stub, ftrace_graph_entry
107 jnz ftrace_graph_caller
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100108#endif
109
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +0300110GLOBAL(ftrace_stub)
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200111 retq
112
113trace:
Cyrill Gorcunovd680fe42008-12-13 00:09:08 +0300114 MCOUNT_SAVE_FRAME
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200115
116 movq 0x38(%rsp), %rdi
117 movq 8(%rbp), %rsi
Abhishek Sagar395a59d2008-06-21 23:47:27 +0530118 subq $MCOUNT_INSN_SIZE, %rdi
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200119
120 call *ftrace_trace_function
121
Cyrill Gorcunovd680fe42008-12-13 00:09:08 +0300122 MCOUNT_RESTORE_FRAME
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200123
124 jmp ftrace_stub
125END(mcount)
Steven Rostedtd61f82d2008-05-12 21:20:43 +0200126#endif /* CONFIG_DYNAMIC_FTRACE */
Steven Rostedt606576c2008-10-06 19:06:12 -0400127#endif /* CONFIG_FUNCTION_TRACER */
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200128
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100129#ifdef CONFIG_FUNCTION_GRAPH_TRACER
130ENTRY(ftrace_graph_caller)
131 cmpl $0, function_trace_stop
132 jne ftrace_stub
133
Cyrill Gorcunovd680fe42008-12-13 00:09:08 +0300134 MCOUNT_SAVE_FRAME
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100135
136 leaq 8(%rbp), %rdi
137 movq 0x38(%rsp), %rsi
Steven Rostedt71e308a2009-06-18 12:45:08 -0400138 movq (%rbp), %rdx
Steven Rostedtbb4304c2008-12-02 15:34:09 -0500139 subq $MCOUNT_INSN_SIZE, %rsi
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100140
141 call prepare_ftrace_return
142
Cyrill Gorcunovd680fe42008-12-13 00:09:08 +0300143 MCOUNT_RESTORE_FRAME
144
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100145 retq
146END(ftrace_graph_caller)
147
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +0300148GLOBAL(return_to_handler)
Jiri Olsa4818d802009-07-29 10:58:37 +0200149 subq $24, %rsp
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100150
Steven Rostedte71e99c2009-03-25 14:30:04 -0400151 /* Save the return values */
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100152 movq %rax, (%rsp)
Steven Rostedte71e99c2009-03-25 14:30:04 -0400153 movq %rdx, 8(%rsp)
Steven Rostedt71e308a2009-06-18 12:45:08 -0400154 movq %rbp, %rdi
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100155
156 call ftrace_return_to_handler
157
Steven Rostedt194ec342009-10-13 16:33:50 -0400158 movq %rax, %rdi
Steven Rostedte71e99c2009-03-25 14:30:04 -0400159 movq 8(%rsp), %rdx
Jan Beulich7effaa82005-09-12 18:49:24 +0200160 movq (%rsp), %rax
Steven Rostedt194ec342009-10-13 16:33:50 -0400161 addq $24, %rsp
162 jmp *%rdi
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100163#endif
Jan Beulich7effaa82005-09-12 18:49:24 +0200164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
166#ifndef CONFIG_PREEMPT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167#define retint_kernel retint_restore_args
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100168#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
170#ifdef CONFIG_PARAVIRT
171ENTRY(native_usergs_sysret64)
172 swapgs
173 sysretq
Cyrill Gorcunovb3baaa12009-02-23 22:57:00 +0300174ENDPROC(native_usergs_sysret64)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175#endif /* CONFIG_PARAVIRT */
176
177
178.macro TRACE_IRQS_IRETQ offset=ARGOFFSET
179#ifdef CONFIG_TRACE_IRQFLAGS
180 bt $9,EFLAGS-\offset(%rsp) /* interrupts off? */
181 jnc 1f
182 TRACE_IRQS_ON
1831:
184#endif
185.endm
186
187/*
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100188 * C code is not supposed to know about undefined top of stack. Every time
189 * a C function with an pt_regs argument is called from the SYSCALL based
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 * fast path FIXUP_TOP_OF_STACK is needed.
191 * RESTORE_TOP_OF_STACK syncs the syscall state after any possible ptregs
192 * manipulation.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100193 */
194
195 /* %rsp:at FRAMEEND */
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100196 .macro FIXUP_TOP_OF_STACK tmp offset=0
Brian Gerst3d1e42a2009-01-19 00:38:58 +0900197 movq PER_CPU_VAR(old_rsp),\tmp
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100198 movq \tmp,RSP+\offset(%rsp)
199 movq $__USER_DS,SS+\offset(%rsp)
200 movq $__USER_CS,CS+\offset(%rsp)
201 movq $-1,RCX+\offset(%rsp)
202 movq R11+\offset(%rsp),\tmp /* get eflags */
203 movq \tmp,EFLAGS+\offset(%rsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 .endm
205
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100206 .macro RESTORE_TOP_OF_STACK tmp offset=0
207 movq RSP+\offset(%rsp),\tmp
Brian Gerst3d1e42a2009-01-19 00:38:58 +0900208 movq \tmp,PER_CPU_VAR(old_rsp)
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100209 movq EFLAGS+\offset(%rsp),\tmp
210 movq \tmp,R11+\offset(%rsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 .endm
212
213 .macro FAKE_STACK_FRAME child_rip
214 /* push in order ss, rsp, eflags, cs, rip */
215 xorl %eax, %eax
Jan Beulichdf5d1872010-09-02 14:07:16 +0100216 pushq_cfi $__KERNEL_DS /* ss */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 /*CFI_REL_OFFSET ss,0*/
Jan Beulichdf5d1872010-09-02 14:07:16 +0100218 pushq_cfi %rax /* rsp */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 CFI_REL_OFFSET rsp,0
Jan Beulichdf5d1872010-09-02 14:07:16 +0100220 pushq_cfi $X86_EFLAGS_IF /* eflags - interrupts on */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 /*CFI_REL_OFFSET rflags,0*/
Jan Beulichdf5d1872010-09-02 14:07:16 +0100222 pushq_cfi $__KERNEL_CS /* cs */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 /*CFI_REL_OFFSET cs,0*/
Jan Beulichdf5d1872010-09-02 14:07:16 +0100224 pushq_cfi \child_rip /* rip */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 CFI_REL_OFFSET rip,0
Jan Beulichdf5d1872010-09-02 14:07:16 +0100226 pushq_cfi %rax /* orig rax */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 .endm
228
229 .macro UNFAKE_STACK_FRAME
230 addq $8*6, %rsp
231 CFI_ADJUST_CFA_OFFSET -(6*8)
232 .endm
233
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100234/*
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100235 * initial frame state for interrupts (and exceptions without error code)
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100236 */
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100237 .macro EMPTY_FRAME start=1 offset=0
238 .if \start
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100239 CFI_STARTPROC simple
240 CFI_SIGNAL_FRAME
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100241 CFI_DEF_CFA rsp,8+\offset
242 .else
243 CFI_DEF_CFA_OFFSET 8+\offset
244 .endif
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100245 .endm
246
247/*
248 * initial frame state for interrupts (and exceptions without error code)
249 */
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100250 .macro INTR_FRAME start=1 offset=0
Ingo Molnare8a0e272008-11-21 15:11:32 +0100251 EMPTY_FRAME \start, SS+8+\offset-RIP
252 /*CFI_REL_OFFSET ss, SS+\offset-RIP*/
253 CFI_REL_OFFSET rsp, RSP+\offset-RIP
254 /*CFI_REL_OFFSET rflags, EFLAGS+\offset-RIP*/
255 /*CFI_REL_OFFSET cs, CS+\offset-RIP*/
256 CFI_REL_OFFSET rip, RIP+\offset-RIP
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100257 .endm
258
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100259/*
260 * initial frame state for exceptions with error code (and interrupts
261 * with vector already pushed)
262 */
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100263 .macro XCPT_FRAME start=1 offset=0
Ingo Molnare8a0e272008-11-21 15:11:32 +0100264 INTR_FRAME \start, RIP+\offset-ORIG_RAX
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100265 /*CFI_REL_OFFSET orig_rax, ORIG_RAX-ORIG_RAX*/
266 .endm
267
268/*
269 * frame that enables calling into C.
270 */
271 .macro PARTIAL_FRAME start=1 offset=0
Ingo Molnare8a0e272008-11-21 15:11:32 +0100272 XCPT_FRAME \start, ORIG_RAX+\offset-ARGOFFSET
273 CFI_REL_OFFSET rdi, RDI+\offset-ARGOFFSET
274 CFI_REL_OFFSET rsi, RSI+\offset-ARGOFFSET
275 CFI_REL_OFFSET rdx, RDX+\offset-ARGOFFSET
276 CFI_REL_OFFSET rcx, RCX+\offset-ARGOFFSET
277 CFI_REL_OFFSET rax, RAX+\offset-ARGOFFSET
278 CFI_REL_OFFSET r8, R8+\offset-ARGOFFSET
279 CFI_REL_OFFSET r9, R9+\offset-ARGOFFSET
280 CFI_REL_OFFSET r10, R10+\offset-ARGOFFSET
281 CFI_REL_OFFSET r11, R11+\offset-ARGOFFSET
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100282 .endm
283
284/*
285 * frame that enables passing a complete pt_regs to a C function.
286 */
287 .macro DEFAULT_FRAME start=1 offset=0
Ingo Molnare8a0e272008-11-21 15:11:32 +0100288 PARTIAL_FRAME \start, R11+\offset-R15
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100289 CFI_REL_OFFSET rbx, RBX+\offset
290 CFI_REL_OFFSET rbp, RBP+\offset
291 CFI_REL_OFFSET r12, R12+\offset
292 CFI_REL_OFFSET r13, R13+\offset
293 CFI_REL_OFFSET r14, R14+\offset
294 CFI_REL_OFFSET r15, R15+\offset
295 .endm
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100296
297/* save partial stack frame */
Masami Hiramatsude31ec82010-11-18 19:16:55 +0900298 .pushsection .kprobes.text, "ax"
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100299ENTRY(save_args)
300 XCPT_FRAME
301 cld
Ingo Molnar14ae22b2008-11-21 15:20:47 +0100302 movq_cfi rdi, RDI+16-ARGOFFSET
303 movq_cfi rsi, RSI+16-ARGOFFSET
304 movq_cfi rdx, RDX+16-ARGOFFSET
305 movq_cfi rcx, RCX+16-ARGOFFSET
306 movq_cfi rax, RAX+16-ARGOFFSET
307 movq_cfi r8, R8+16-ARGOFFSET
308 movq_cfi r9, R9+16-ARGOFFSET
309 movq_cfi r10, R10+16-ARGOFFSET
310 movq_cfi r11, R11+16-ARGOFFSET
311
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100312 leaq -ARGOFFSET+16(%rsp),%rdi /* arg1 for handler */
Ingo Molnar14ae22b2008-11-21 15:20:47 +0100313 movq_cfi rbp, 8 /* push %rbp */
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100314 leaq 8(%rsp), %rbp /* mov %rsp, %ebp */
315 testl $3, CS(%rdi)
316 je 1f
317 SWAPGS
318 /*
Brian Gerst56895532009-01-19 00:38:58 +0900319 * irq_count is used to check if a CPU is already on an interrupt stack
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100320 * or not. While this is essentially redundant with preempt_count it is
321 * a little cheaper to use a separate counter in the PDA (short of
322 * moving irq_enter into assembly, which would be too much work)
323 */
Brian Gerst56895532009-01-19 00:38:58 +09003241: incl PER_CPU_VAR(irq_count)
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100325 jne 2f
Ingo Molnar14ae22b2008-11-21 15:20:47 +0100326 popq_cfi %rax /* move return address... */
Brian Gerst26f80bd2009-01-19 00:38:58 +0900327 mov PER_CPU_VAR(irq_stack_ptr),%rsp
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100328 EMPTY_FRAME 0
Martin Hicksa67798c2009-01-30 10:50:54 -0600329 pushq_cfi %rbp /* backlink for unwinder */
Ingo Molnar14ae22b2008-11-21 15:20:47 +0100330 pushq_cfi %rax /* ... to the new stack */
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100331 /*
332 * We entered an interrupt context - irqs are off:
333 */
3342: TRACE_IRQS_OFF
335 ret
336 CFI_ENDPROC
337END(save_args)
Masami Hiramatsude31ec82010-11-18 19:16:55 +0900338 .popsection
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100339
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100340ENTRY(save_rest)
341 PARTIAL_FRAME 1 REST_SKIP+8
342 movq 5*8+16(%rsp), %r11 /* save return address */
343 movq_cfi rbx, RBX+16
344 movq_cfi rbp, RBP+16
345 movq_cfi r12, R12+16
346 movq_cfi r13, R13+16
347 movq_cfi r14, R14+16
348 movq_cfi r15, R15+16
349 movq %r11, 8(%rsp) /* return address */
350 FIXUP_TOP_OF_STACK %r11, 16
351 ret
352 CFI_ENDPROC
353END(save_rest)
354
Alexander van Heukelume2f6bc22008-11-21 16:43:18 +0100355/* save complete stack frame */
Jan Beulichc2810182009-03-12 10:38:55 +0000356 .pushsection .kprobes.text, "ax"
Alexander van Heukelume2f6bc22008-11-21 16:43:18 +0100357ENTRY(save_paranoid)
358 XCPT_FRAME 1 RDI+8
359 cld
360 movq_cfi rdi, RDI+8
361 movq_cfi rsi, RSI+8
362 movq_cfi rdx, RDX+8
363 movq_cfi rcx, RCX+8
364 movq_cfi rax, RAX+8
365 movq_cfi r8, R8+8
366 movq_cfi r9, R9+8
367 movq_cfi r10, R10+8
368 movq_cfi r11, R11+8
369 movq_cfi rbx, RBX+8
370 movq_cfi rbp, RBP+8
371 movq_cfi r12, R12+8
372 movq_cfi r13, R13+8
373 movq_cfi r14, R14+8
374 movq_cfi r15, R15+8
375 movl $1,%ebx
376 movl $MSR_GS_BASE,%ecx
377 rdmsr
378 testl %edx,%edx
379 js 1f /* negative -> in kernel */
380 SWAPGS
381 xorl %ebx,%ebx
3821: ret
383 CFI_ENDPROC
384END(save_paranoid)
Jan Beulichc2810182009-03-12 10:38:55 +0000385 .popsection
Alexander van Heukelume2f6bc22008-11-21 16:43:18 +0100386
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387/*
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100388 * A newly forked process directly context switches into this address.
389 *
390 * rdi: prev task we switched from
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100391 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392ENTRY(ret_from_fork)
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100393 DEFAULT_FRAME
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100394
Benjamin LaHaise7106a5a2009-01-10 23:00:22 -0500395 LOCK ; btr $TIF_FORK,TI_flags(%r8)
396
Jan Beulichdf5d1872010-09-02 14:07:16 +0100397 pushq_cfi kernel_eflags(%rip)
398 popfq_cfi # reset kernel eflags
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100399
400 call schedule_tail # rdi: 'prev' task parameter
401
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 GET_THREAD_INFO(%rcx)
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100403
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 RESTORE_REST
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100405
406 testl $3, CS-ARGOFFSET(%rsp) # from kernel_thread?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 je int_ret_from_sys_call
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100408
409 testl $_TIF_IA32, TI_flags(%rcx) # 32-bit compat task needs IRET
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 jnz int_ret_from_sys_call
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100411
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100412 RESTORE_TOP_OF_STACK %rdi, -ARGOFFSET
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100413 jmp ret_from_sys_call # go to the SYSRET fastpath
414
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200416END(ret_from_fork)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
418/*
419 * System call entry. Upto 6 arguments in registers are supported.
420 *
421 * SYSCALL does not save anything on the stack and does not change the
422 * stack pointer.
423 */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100424
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425/*
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100426 * Register setup:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 * rax system call number
428 * rdi arg0
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100429 * rcx return address for syscall/sysret, C arg3
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 * rsi arg1
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100431 * rdx arg2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 * r10 arg3 (--> moved to rcx for C)
433 * r8 arg4
434 * r9 arg5
435 * r11 eflags for syscall/sysret, temporary for C
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100436 * r12-r15,rbp,rbx saved by C code, not touched.
437 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 * Interrupts are off on entry.
439 * Only called from user space.
440 *
441 * XXX if we had a free scratch register we could save the RSP into the stack frame
442 * and report it properly in ps. Unfortunately we haven't.
Andi Kleen7bf36bb2006-04-07 19:50:00 +0200443 *
444 * When user can change the frames always force IRET. That is because
445 * it deals with uncanonical addresses better. SYSRET has trouble
446 * with them due to bugs in both AMD and Intel CPUs.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100447 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
449ENTRY(system_call)
Jan Beulich7effaa82005-09-12 18:49:24 +0200450 CFI_STARTPROC simple
Jan Beulichadf14232006-09-26 10:52:41 +0200451 CFI_SIGNAL_FRAME
Brian Gerst9af45652009-01-19 00:38:58 +0900452 CFI_DEF_CFA rsp,KERNEL_STACK_OFFSET
Jan Beulich7effaa82005-09-12 18:49:24 +0200453 CFI_REGISTER rip,rcx
454 /*CFI_REGISTER rflags,r11*/
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100455 SWAPGS_UNSAFE_STACK
456 /*
457 * A hypervisor implementation might want to use a label
458 * after the swapgs, so that it can do the swapgs
459 * for the guest and jump here on syscall.
460 */
461ENTRY(system_call_after_swapgs)
462
Brian Gerst3d1e42a2009-01-19 00:38:58 +0900463 movq %rsp,PER_CPU_VAR(old_rsp)
Brian Gerst9af45652009-01-19 00:38:58 +0900464 movq PER_CPU_VAR(kernel_stack),%rsp
Ingo Molnar2601e642006-07-03 00:24:45 -0700465 /*
466 * No need to follow this irqs off/on section - it's straight
467 * and short:
468 */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100469 ENABLE_INTERRUPTS(CLBR_NONE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 SAVE_ARGS 8,1
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100471 movq %rax,ORIG_RAX-ARGOFFSET(%rsp)
Jan Beulich7effaa82005-09-12 18:49:24 +0200472 movq %rcx,RIP-ARGOFFSET(%rsp)
473 CFI_REL_OFFSET rip,RIP-ARGOFFSET
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 GET_THREAD_INFO(%rcx)
Roland McGrathd4d67152008-07-09 02:38:07 -0700475 testl $_TIF_WORK_SYSCALL_ENTRY,TI_flags(%rcx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 jnz tracesys
Roland McGrath86a1c342008-06-23 15:37:04 -0700477system_call_fastpath:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 cmpq $__NR_syscall_max,%rax
479 ja badsys
480 movq %r10,%rcx
481 call *sys_call_table(,%rax,8) # XXX: rip relative
482 movq %rax,RAX-ARGOFFSET(%rsp)
483/*
484 * Syscall return path ending with SYSRET (fast path)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100485 * Has incomplete stack frame and undefined top of stack.
486 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487ret_from_sys_call:
Andi Kleen11b854b2005-04-16 15:25:02 -0700488 movl $_TIF_ALLWORK_MASK,%edi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 /* edi: flagmask */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100490sysret_check:
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200491 LOCKDEP_SYS_EXIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 GET_THREAD_INFO(%rcx)
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100493 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700494 TRACE_IRQS_OFF
Glauber Costa26ccb8a2008-06-24 11:19:35 -0300495 movl TI_flags(%rcx),%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 andl %edi,%edx
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100497 jnz sysret_careful
Jan Beulichbcddc012006-12-07 02:14:02 +0100498 CFI_REMEMBER_STATE
Ingo Molnar2601e642006-07-03 00:24:45 -0700499 /*
500 * sysretq will re-enable interrupts:
501 */
502 TRACE_IRQS_ON
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 movq RIP-ARGOFFSET(%rsp),%rcx
Jan Beulich7effaa82005-09-12 18:49:24 +0200504 CFI_REGISTER rip,rcx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 RESTORE_ARGS 0,-ARG_SKIP,1
Jan Beulich7effaa82005-09-12 18:49:24 +0200506 /*CFI_REGISTER rflags,r11*/
Brian Gerst3d1e42a2009-01-19 00:38:58 +0900507 movq PER_CPU_VAR(old_rsp), %rsp
Jeremy Fitzhardinge2be29982008-06-25 00:19:28 -0400508 USERGS_SYSRET64
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
Jan Beulichbcddc012006-12-07 02:14:02 +0100510 CFI_RESTORE_STATE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 /* Handle reschedules */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100512 /* edx: work, edi: workmask */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513sysret_careful:
514 bt $TIF_NEED_RESCHED,%edx
515 jnc sysret_signal
Ingo Molnar2601e642006-07-03 00:24:45 -0700516 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100517 ENABLE_INTERRUPTS(CLBR_NONE)
Jan Beulichdf5d1872010-09-02 14:07:16 +0100518 pushq_cfi %rdi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 call schedule
Jan Beulichdf5d1872010-09-02 14:07:16 +0100520 popq_cfi %rdi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 jmp sysret_check
522
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100523 /* Handle a signal */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524sysret_signal:
Ingo Molnar2601e642006-07-03 00:24:45 -0700525 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100526 ENABLE_INTERRUPTS(CLBR_NONE)
Roland McGrath86a1c342008-06-23 15:37:04 -0700527#ifdef CONFIG_AUDITSYSCALL
528 bt $TIF_SYSCALL_AUDIT,%edx
529 jc sysret_audit
530#endif
Roland McGrathb60e7142009-09-22 16:46:34 -0700531 /*
532 * We have a signal, or exit tracing or single-step.
533 * These all wind up with the iret return path anyway,
534 * so just join that path right now.
535 */
536 FIXUP_TOP_OF_STACK %r11, -ARGOFFSET
537 jmp int_check_syscall_exit_work
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100538
Jan Beulich7effaa82005-09-12 18:49:24 +0200539badsys:
540 movq $-ENOSYS,RAX-ARGOFFSET(%rsp)
541 jmp ret_from_sys_call
542
Roland McGrath86a1c342008-06-23 15:37:04 -0700543#ifdef CONFIG_AUDITSYSCALL
544 /*
545 * Fast path for syscall audit without full syscall trace.
546 * We just call audit_syscall_entry() directly, and then
547 * jump back to the normal fast path.
548 */
549auditsys:
550 movq %r10,%r9 /* 6th arg: 4th syscall arg */
551 movq %rdx,%r8 /* 5th arg: 3rd syscall arg */
552 movq %rsi,%rcx /* 4th arg: 2nd syscall arg */
553 movq %rdi,%rdx /* 3rd arg: 1st syscall arg */
554 movq %rax,%rsi /* 2nd arg: syscall number */
555 movl $AUDIT_ARCH_X86_64,%edi /* 1st arg: audit arch */
556 call audit_syscall_entry
557 LOAD_ARGS 0 /* reload call-clobbered registers */
558 jmp system_call_fastpath
559
560 /*
561 * Return fast path for syscall audit. Call audit_syscall_exit()
562 * directly and then jump back to the fast path with TIF_SYSCALL_AUDIT
563 * masked off.
564 */
565sysret_audit:
Roland McGrath03275592010-07-21 17:44:12 -0700566 movq RAX-ARGOFFSET(%rsp),%rsi /* second arg, syscall return value */
567 cmpq $0,%rsi /* is it < 0? */
Roland McGrath86a1c342008-06-23 15:37:04 -0700568 setl %al /* 1 if so, 0 if not */
569 movzbl %al,%edi /* zero-extend that into %edi */
570 inc %edi /* first arg, 0->1(AUDITSC_SUCCESS), 1->2(AUDITSC_FAILURE) */
571 call audit_syscall_exit
572 movl $(_TIF_ALLWORK_MASK & ~_TIF_SYSCALL_AUDIT),%edi
573 jmp sysret_check
574#endif /* CONFIG_AUDITSYSCALL */
575
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 /* Do syscall tracing */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100577tracesys:
Roland McGrath86a1c342008-06-23 15:37:04 -0700578#ifdef CONFIG_AUDITSYSCALL
579 testl $(_TIF_WORK_SYSCALL_ENTRY & ~_TIF_SYSCALL_AUDIT),TI_flags(%rcx)
580 jz auditsys
581#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 SAVE_REST
Roland McGratha31f8dd2008-03-16 21:59:11 -0700583 movq $-ENOSYS,RAX(%rsp) /* ptrace can change this for a bad syscall */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 FIXUP_TOP_OF_STACK %rdi
585 movq %rsp,%rdi
586 call syscall_trace_enter
Roland McGrathd4d67152008-07-09 02:38:07 -0700587 /*
588 * Reload arg registers from stack in case ptrace changed them.
589 * We don't reload %rax because syscall_trace_enter() returned
590 * the value it wants us to use in the table lookup.
591 */
592 LOAD_ARGS ARGOFFSET, 1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 RESTORE_REST
594 cmpq $__NR_syscall_max,%rax
Roland McGratha31f8dd2008-03-16 21:59:11 -0700595 ja int_ret_from_sys_call /* RAX(%rsp) set to -ENOSYS above */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 movq %r10,%rcx /* fixup for C */
597 call *sys_call_table(,%rax,8)
Roland McGratha31f8dd2008-03-16 21:59:11 -0700598 movq %rax,RAX-ARGOFFSET(%rsp)
Andi Kleen7bf36bb2006-04-07 19:50:00 +0200599 /* Use IRET because user could have changed frame */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100600
601/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 * Syscall return path ending with IRET.
603 * Has correct top of stack, but partial stack frame.
Jan Beulichbcddc012006-12-07 02:14:02 +0100604 */
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +0300605GLOBAL(int_ret_from_sys_call)
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100606 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700607 TRACE_IRQS_OFF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 testl $3,CS-ARGOFFSET(%rsp)
609 je retint_restore_args
610 movl $_TIF_ALLWORK_MASK,%edi
611 /* edi: mask to check */
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +0300612GLOBAL(int_with_check)
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200613 LOCKDEP_SYS_EXIT_IRQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 GET_THREAD_INFO(%rcx)
Glauber Costa26ccb8a2008-06-24 11:19:35 -0300615 movl TI_flags(%rcx),%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 andl %edi,%edx
617 jnz int_careful
Glauber Costa26ccb8a2008-06-24 11:19:35 -0300618 andl $~TS_COMPAT,TI_status(%rcx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 jmp retint_swapgs
620
621 /* Either reschedule or signal or syscall exit tracking needed. */
622 /* First do a reschedule test. */
623 /* edx: work, edi: workmask */
624int_careful:
625 bt $TIF_NEED_RESCHED,%edx
626 jnc int_very_careful
Ingo Molnar2601e642006-07-03 00:24:45 -0700627 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100628 ENABLE_INTERRUPTS(CLBR_NONE)
Jan Beulichdf5d1872010-09-02 14:07:16 +0100629 pushq_cfi %rdi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 call schedule
Jan Beulichdf5d1872010-09-02 14:07:16 +0100631 popq_cfi %rdi
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100632 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700633 TRACE_IRQS_OFF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 jmp int_with_check
635
636 /* handle signals and tracing -- both require a full stack frame */
637int_very_careful:
Ingo Molnar2601e642006-07-03 00:24:45 -0700638 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100639 ENABLE_INTERRUPTS(CLBR_NONE)
Roland McGrathb60e7142009-09-22 16:46:34 -0700640int_check_syscall_exit_work:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 SAVE_REST
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100642 /* Check for syscall exit trace */
Roland McGrathd4d67152008-07-09 02:38:07 -0700643 testl $_TIF_WORK_SYSCALL_EXIT,%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 jz int_signal
Jan Beulichdf5d1872010-09-02 14:07:16 +0100645 pushq_cfi %rdi
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100646 leaq 8(%rsp),%rdi # &ptregs -> arg1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 call syscall_trace_leave
Jan Beulichdf5d1872010-09-02 14:07:16 +0100648 popq_cfi %rdi
Roland McGrathd4d67152008-07-09 02:38:07 -0700649 andl $~(_TIF_WORK_SYSCALL_EXIT|_TIF_SYSCALL_EMU),%edi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 jmp int_restore_rest
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100651
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652int_signal:
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100653 testl $_TIF_DO_NOTIFY_MASK,%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 jz 1f
655 movq %rsp,%rdi # &ptregs -> arg1
656 xorl %esi,%esi # oldset -> arg2
657 call do_notify_resume
Roland McGratheca91e72008-07-10 14:50:39 -07006581: movl $_TIF_WORK_MASK,%edi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659int_restore_rest:
660 RESTORE_REST
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100661 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700662 TRACE_IRQS_OFF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 jmp int_with_check
664 CFI_ENDPROC
Jan Beulichbcddc012006-12-07 02:14:02 +0100665END(system_call)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100666
667/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 * Certain special system calls that need to save a complete full stack frame.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100669 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 .macro PTREGSCALL label,func,arg
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100671ENTRY(\label)
672 PARTIAL_FRAME 1 8 /* offset 8: return address */
673 subq $REST_SKIP, %rsp
674 CFI_ADJUST_CFA_OFFSET REST_SKIP
675 call save_rest
676 DEFAULT_FRAME 0 8 /* offset 8: return address */
677 leaq 8(%rsp), \arg /* pt_regs pointer */
678 call \func
679 jmp ptregscall_common
680 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200681END(\label)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 .endm
683
684 PTREGSCALL stub_clone, sys_clone, %r8
685 PTREGSCALL stub_fork, sys_fork, %rdi
686 PTREGSCALL stub_vfork, sys_vfork, %rdi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 PTREGSCALL stub_sigaltstack, sys_sigaltstack, %rdx
688 PTREGSCALL stub_iopl, sys_iopl, %rsi
689
690ENTRY(ptregscall_common)
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100691 DEFAULT_FRAME 1 8 /* offset 8: return address */
692 RESTORE_TOP_OF_STACK %r11, 8
693 movq_cfi_restore R15+8, r15
694 movq_cfi_restore R14+8, r14
695 movq_cfi_restore R13+8, r13
696 movq_cfi_restore R12+8, r12
697 movq_cfi_restore RBP+8, rbp
698 movq_cfi_restore RBX+8, rbx
699 ret $REST_SKIP /* pop extended registers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200701END(ptregscall_common)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100702
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703ENTRY(stub_execve)
704 CFI_STARTPROC
Jan Beuliche6b04b62010-09-02 13:52:45 +0100705 addq $8, %rsp
706 PARTIAL_FRAME 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 SAVE_REST
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 FIXUP_TOP_OF_STACK %r11
Ingo Molnar5d119b22008-02-26 12:55:57 +0100709 movq %rsp, %rcx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 call sys_execve
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 RESTORE_TOP_OF_STACK %r11
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 movq %rax,RAX(%rsp)
713 RESTORE_REST
714 jmp int_ret_from_sys_call
715 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200716END(stub_execve)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100717
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718/*
719 * sigreturn is special because it needs to restore all registers on return.
720 * This cannot be done with SYSRET, so use the IRET return path instead.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100721 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722ENTRY(stub_rt_sigreturn)
723 CFI_STARTPROC
Jan Beulich7effaa82005-09-12 18:49:24 +0200724 addq $8, %rsp
Jan Beuliche6b04b62010-09-02 13:52:45 +0100725 PARTIAL_FRAME 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 SAVE_REST
727 movq %rsp,%rdi
728 FIXUP_TOP_OF_STACK %r11
729 call sys_rt_sigreturn
730 movq %rax,RAX(%rsp) # fixme, this could be done at the higher layer
731 RESTORE_REST
732 jmp int_ret_from_sys_call
733 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200734END(stub_rt_sigreturn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735
Jan Beulich7effaa82005-09-12 18:49:24 +0200736/*
H. Peter Anvin939b7872008-11-11 13:51:52 -0800737 * Build the entry stubs and pointer table with some assembler magic.
738 * We pack 7 stubs into a single 32-byte chunk, which will fit in a
739 * single cache line on all modern x86 implementations.
740 */
741 .section .init.rodata,"a"
742ENTRY(interrupt)
743 .text
744 .p2align 5
745 .p2align CONFIG_X86_L1_CACHE_SHIFT
746ENTRY(irq_entries_start)
747 INTR_FRAME
748vector=FIRST_EXTERNAL_VECTOR
749.rept (NR_VECTORS-FIRST_EXTERNAL_VECTOR+6)/7
750 .balign 32
751 .rept 7
752 .if vector < NR_VECTORS
H. Peter Anvin86655962008-11-12 10:27:35 -0800753 .if vector <> FIRST_EXTERNAL_VECTOR
H. Peter Anvin939b7872008-11-11 13:51:52 -0800754 CFI_ADJUST_CFA_OFFSET -8
755 .endif
Jan Beulichdf5d1872010-09-02 14:07:16 +01007561: pushq_cfi $(~vector+0x80) /* Note: always in signed byte range */
H. Peter Anvin86655962008-11-12 10:27:35 -0800757 .if ((vector-FIRST_EXTERNAL_VECTOR)%7) <> 6
H. Peter Anvin939b7872008-11-11 13:51:52 -0800758 jmp 2f
759 .endif
760 .previous
761 .quad 1b
762 .text
763vector=vector+1
764 .endif
765 .endr
7662: jmp common_interrupt
767.endr
768 CFI_ENDPROC
769END(irq_entries_start)
770
771.previous
772END(interrupt)
773.previous
774
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100775/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 * Interrupt entry/exit.
777 *
778 * Interrupt entry points save only callee clobbered registers in fast path.
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100779 *
780 * Entry runs with interrupts off.
781 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782
Alexander van Heukelum722024d2008-11-13 13:50:20 +0100783/* 0(%rsp): ~(interrupt number) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 .macro interrupt func
Jan Beulichb1cccb12010-09-02 13:55:11 +0100785 subq $ORIG_RAX-ARGOFFSET+8, %rsp
786 CFI_ADJUST_CFA_OFFSET ORIG_RAX-ARGOFFSET+8
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100787 call save_args
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100788 PARTIAL_FRAME 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 call \func
790 .endm
791
Masami Hiramatsu8222d712009-08-27 13:23:25 -0400792/*
793 * Interrupt entry/exit should be protected against kprobes
794 */
795 .pushsection .kprobes.text, "ax"
Alexander van Heukelum722024d2008-11-13 13:50:20 +0100796 /*
797 * The interrupt stubs push (~vector+0x80) onto the stack and
798 * then jump to common_interrupt.
799 */
H. Peter Anvin939b7872008-11-11 13:51:52 -0800800 .p2align CONFIG_X86_L1_CACHE_SHIFT
801common_interrupt:
Jan Beulich7effaa82005-09-12 18:49:24 +0200802 XCPT_FRAME
Alexander van Heukelum722024d2008-11-13 13:50:20 +0100803 addq $-0x80,(%rsp) /* Adjust vector to [-256,-1] range */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 interrupt do_IRQ
Brian Gerst3d1e42a2009-01-19 00:38:58 +0900805 /* 0(%rsp): old_rsp-ARGOFFSET */
Jan Beulich7effaa82005-09-12 18:49:24 +0200806ret_from_intr:
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100807 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700808 TRACE_IRQS_OFF
Brian Gerst56895532009-01-19 00:38:58 +0900809 decl PER_CPU_VAR(irq_count)
Jan Beulich1de9c3f2006-06-26 13:57:35 +0200810 leaveq
Jan Beulichdf5d1872010-09-02 14:07:16 +0100811 CFI_RESTORE rbp
Jan Beulich7effaa82005-09-12 18:49:24 +0200812 CFI_DEF_CFA_REGISTER rsp
Jan Beulich1de9c3f2006-06-26 13:57:35 +0200813 CFI_ADJUST_CFA_OFFSET -8
Jan Beulich7effaa82005-09-12 18:49:24 +0200814exit_intr:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 GET_THREAD_INFO(%rcx)
816 testl $3,CS-ARGOFFSET(%rsp)
817 je retint_kernel
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100818
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 /* Interrupt came from user space */
820 /*
821 * Has a correct top of stack, but a partial stack frame
822 * %rcx: thread info. Interrupts off.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100823 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824retint_with_reschedule:
825 movl $_TIF_WORK_MASK,%edi
Jan Beulich7effaa82005-09-12 18:49:24 +0200826retint_check:
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200827 LOCKDEP_SYS_EXIT_IRQ
Glauber Costa26ccb8a2008-06-24 11:19:35 -0300828 movl TI_flags(%rcx),%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 andl %edi,%edx
Jan Beulich7effaa82005-09-12 18:49:24 +0200830 CFI_REMEMBER_STATE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 jnz retint_careful
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200832
833retint_swapgs: /* return to user-space */
Ingo Molnar2601e642006-07-03 00:24:45 -0700834 /*
835 * The iretq could re-enable interrupts:
836 */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100837 DISABLE_INTERRUPTS(CLBR_ANY)
Ingo Molnar2601e642006-07-03 00:24:45 -0700838 TRACE_IRQS_IRETQ
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100839 SWAPGS
Ingo Molnar2601e642006-07-03 00:24:45 -0700840 jmp restore_args
841
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200842retint_restore_args: /* return to kernel space */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100843 DISABLE_INTERRUPTS(CLBR_ANY)
Ingo Molnar2601e642006-07-03 00:24:45 -0700844 /*
845 * The iretq could re-enable interrupts:
846 */
847 TRACE_IRQS_IRETQ
848restore_args:
Ingo Molnar3701d8632008-02-09 23:24:08 +0100849 RESTORE_ARGS 0,8,0
850
Adrian Bunkf7f3d792008-02-13 23:29:53 +0200851irq_return:
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100852 INTERRUPT_RETURN
Ingo Molnar3701d8632008-02-09 23:24:08 +0100853
854 .section __ex_table, "a"
855 .quad irq_return, bad_iret
856 .previous
857
858#ifdef CONFIG_PARAVIRT
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100859ENTRY(native_iret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 iretq
861
862 .section __ex_table,"a"
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100863 .quad native_iret, bad_iret
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 .previous
Ingo Molnar3701d8632008-02-09 23:24:08 +0100865#endif
866
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 .section .fixup,"ax"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868bad_iret:
Roland McGrath3aa4b372008-02-06 22:39:43 +0100869 /*
870 * The iret traps when the %cs or %ss being restored is bogus.
871 * We've lost the original trap vector and error code.
872 * #GPF is the most likely one to get for an invalid selector.
873 * So pretend we completed the iret and took the #GPF in user mode.
874 *
875 * We are now running with the kernel GS after exception recovery.
876 * But error_entry expects us to have user GS to match the user %cs,
877 * so swap back.
878 */
879 pushq $0
880
881 SWAPGS
882 jmp general_protection
883
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100884 .previous
885
Jan Beulich7effaa82005-09-12 18:49:24 +0200886 /* edi: workmask, edx: work */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887retint_careful:
Jan Beulich7effaa82005-09-12 18:49:24 +0200888 CFI_RESTORE_STATE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 bt $TIF_NEED_RESCHED,%edx
890 jnc retint_signal
Ingo Molnar2601e642006-07-03 00:24:45 -0700891 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100892 ENABLE_INTERRUPTS(CLBR_NONE)
Jan Beulichdf5d1872010-09-02 14:07:16 +0100893 pushq_cfi %rdi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 call schedule
Jan Beulichdf5d1872010-09-02 14:07:16 +0100895 popq_cfi %rdi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 GET_THREAD_INFO(%rcx)
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100897 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700898 TRACE_IRQS_OFF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 jmp retint_check
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100900
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901retint_signal:
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100902 testl $_TIF_DO_NOTIFY_MASK,%edx
Andi Kleen10ffdbb2005-05-16 21:53:19 -0700903 jz retint_swapgs
Ingo Molnar2601e642006-07-03 00:24:45 -0700904 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100905 ENABLE_INTERRUPTS(CLBR_NONE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 SAVE_REST
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100907 movq $-1,ORIG_RAX(%rsp)
Andi Kleen3829ee62005-07-28 21:15:48 -0700908 xorl %esi,%esi # oldset
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 movq %rsp,%rdi # &pt_regs
910 call do_notify_resume
911 RESTORE_REST
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100912 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700913 TRACE_IRQS_OFF
Andi Kleenbe9e6872005-05-01 08:58:51 -0700914 GET_THREAD_INFO(%rcx)
Roland McGratheca91e72008-07-10 14:50:39 -0700915 jmp retint_with_reschedule
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916
917#ifdef CONFIG_PREEMPT
918 /* Returning to kernel space. Check if we need preemption */
919 /* rcx: threadinfo. interrupts off. */
Andi Kleenb06baba2006-09-26 10:52:29 +0200920ENTRY(retint_kernel)
Glauber Costa26ccb8a2008-06-24 11:19:35 -0300921 cmpl $0,TI_preempt_count(%rcx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 jnz retint_restore_args
Glauber Costa26ccb8a2008-06-24 11:19:35 -0300923 bt $TIF_NEED_RESCHED,TI_flags(%rcx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 jnc retint_restore_args
925 bt $9,EFLAGS-ARGOFFSET(%rsp) /* interrupts off? */
926 jnc retint_restore_args
927 call preempt_schedule_irq
928 jmp exit_intr
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100929#endif
Jan Beulich4b787e02006-06-26 13:56:55 +0200930
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200932END(common_interrupt)
Masami Hiramatsu8222d712009-08-27 13:23:25 -0400933/*
934 * End of kprobes section
935 */
936 .popsection
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100937
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938/*
939 * APIC interrupts.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100940 */
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100941.macro apicinterrupt num sym do_sym
942ENTRY(\sym)
Jan Beulich7effaa82005-09-12 18:49:24 +0200943 INTR_FRAME
Jan Beulichdf5d1872010-09-02 14:07:16 +0100944 pushq_cfi $~(\num)
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100945 interrupt \do_sym
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 jmp ret_from_intr
947 CFI_ENDPROC
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100948END(\sym)
949.endm
Jacob Shin89b831e2005-11-05 17:25:53 +0100950
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100951#ifdef CONFIG_SMP
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100952apicinterrupt IRQ_MOVE_CLEANUP_VECTOR \
953 irq_move_cleanup_interrupt smp_irq_move_cleanup_interrupt
Andi Kleen4ef702c2009-05-27 21:56:52 +0200954apicinterrupt REBOOT_VECTOR \
955 reboot_interrupt smp_reboot_interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956#endif
957
Nick Piggin03b48632009-01-20 04:36:04 +0100958#ifdef CONFIG_X86_UV
Cyrill Gorcunov5ae3a132008-11-27 00:02:10 +0300959apicinterrupt UV_BAU_MESSAGE \
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100960 uv_bau_message_intr1 uv_bau_message_interrupt
Nick Piggin03b48632009-01-20 04:36:04 +0100961#endif
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100962apicinterrupt LOCAL_TIMER_VECTOR \
963 apic_timer_interrupt smp_apic_timer_interrupt
Dimitri Sivanich4a4de9c2009-10-14 09:22:57 -0500964apicinterrupt X86_PLATFORM_IPI_VECTOR \
965 x86_platform_ipi smp_x86_platform_ipi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100967#ifdef CONFIG_SMP
Jan Beulich32342822010-10-19 14:52:26 +0100968.irpc idx, "01234567"
969apicinterrupt (INVALIDATE_TLB_VECTOR_START)+\idx \
970 invalidate_interrupt\idx smp_invalidate_interrupt
971.endr
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100972#endif
Cliff Wickman18129242008-06-02 08:56:14 -0500973
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100974apicinterrupt THRESHOLD_APIC_VECTOR \
Andi Kleen7856f6c2009-04-28 23:32:56 +0200975 threshold_interrupt smp_threshold_interrupt
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100976apicinterrupt THERMAL_APIC_VECTOR \
977 thermal_interrupt smp_thermal_interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978
Andi Kleenccc3c312009-05-27 21:56:54 +0200979#ifdef CONFIG_X86_MCE
980apicinterrupt MCE_SELF_VECTOR \
981 mce_self_interrupt smp_mce_self_interrupt
982#endif
983
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100984#ifdef CONFIG_SMP
985apicinterrupt CALL_FUNCTION_SINGLE_VECTOR \
986 call_function_single_interrupt smp_call_function_single_interrupt
987apicinterrupt CALL_FUNCTION_VECTOR \
988 call_function_interrupt smp_call_function_interrupt
989apicinterrupt RESCHEDULE_VECTOR \
990 reschedule_interrupt smp_reschedule_interrupt
991#endif
992
993apicinterrupt ERROR_APIC_VECTOR \
994 error_interrupt smp_error_interrupt
995apicinterrupt SPURIOUS_APIC_VECTOR \
996 spurious_interrupt smp_spurious_interrupt
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100997
Peter Zijlstrae360adb2010-10-14 14:01:34 +0800998#ifdef CONFIG_IRQ_WORK
999apicinterrupt IRQ_WORK_VECTOR \
1000 irq_work_interrupt smp_irq_work_interrupt
Ingo Molnar241771e2008-12-03 10:39:53 +01001001#endif
1002
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003/*
1004 * Exception entry points.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001005 */
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001006.macro zeroentry sym do_sym
1007ENTRY(\sym)
Jan Beulich7effaa82005-09-12 18:49:24 +02001008 INTR_FRAME
Jeremy Fitzhardingefab58422008-06-25 00:19:31 -04001009 PARAVIRT_ADJUST_EXCEPTION_FRAME
Ingo Molnar14ae22b2008-11-21 15:20:47 +01001010 pushq_cfi $-1 /* ORIG_RAX: no syscall to restart */
Jan Beulichb1cccb12010-09-02 13:55:11 +01001011 subq $ORIG_RAX-R15, %rsp
1012 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
Alexander van Heukelumd99015b2008-11-19 01:18:11 +01001013 call error_entry
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +01001014 DEFAULT_FRAME 0
Alexander van Heukelumd99015b2008-11-19 01:18:11 +01001015 movq %rsp,%rdi /* pt_regs pointer */
1016 xorl %esi,%esi /* no error code */
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001017 call \do_sym
Alexander van Heukelumd99015b2008-11-19 01:18:11 +01001018 jmp error_exit /* %ebx: no swapgs flag */
Jan Beulich7effaa82005-09-12 18:49:24 +02001019 CFI_ENDPROC
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001020END(\sym)
1021.endm
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001023.macro paranoidzeroentry sym do_sym
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001024ENTRY(\sym)
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001025 INTR_FRAME
1026 PARAVIRT_ADJUST_EXCEPTION_FRAME
Jan Beulichb1cccb12010-09-02 13:55:11 +01001027 pushq_cfi $-1 /* ORIG_RAX: no syscall to restart */
1028 subq $ORIG_RAX-R15, %rsp
1029 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001030 call save_paranoid
1031 TRACE_IRQS_OFF
1032 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 Heukelumb8b1d082008-11-21 16:44:28 +01001035 jmp paranoid_exit /* %ebx: no swapgs flag */
1036 CFI_ENDPROC
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001037END(\sym)
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001038.endm
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001039
Brian Gerstc15a5952010-07-31 12:48:22 -04001040#define INIT_TSS_IST(x) PER_CPU_VAR(init_tss) + (TSS_ist + ((x) - 1) * 8)
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001041.macro paranoidzeroentry_ist sym do_sym ist
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001042ENTRY(\sym)
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001043 INTR_FRAME
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001044 PARAVIRT_ADJUST_EXCEPTION_FRAME
Jan Beulichb1cccb12010-09-02 13:55:11 +01001045 pushq_cfi $-1 /* ORIG_RAX: no syscall to restart */
1046 subq $ORIG_RAX-R15, %rsp
1047 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001048 call save_paranoid
1049 TRACE_IRQS_OFF
1050 movq %rsp,%rdi /* pt_regs pointer */
1051 xorl %esi,%esi /* no error code */
Brian Gerstc15a5952010-07-31 12:48:22 -04001052 subq $EXCEPTION_STKSZ, INIT_TSS_IST(\ist)
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001053 call \do_sym
Brian Gerstc15a5952010-07-31 12:48:22 -04001054 addq $EXCEPTION_STKSZ, INIT_TSS_IST(\ist)
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001055 jmp paranoid_exit /* %ebx: no swapgs flag */
1056 CFI_ENDPROC
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001057END(\sym)
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001058.endm
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001059
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001060.macro errorentry sym do_sym
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001061ENTRY(\sym)
Jan Beulich7effaa82005-09-12 18:49:24 +02001062 XCPT_FRAME
Jeremy Fitzhardingefab58422008-06-25 00:19:31 -04001063 PARAVIRT_ADJUST_EXCEPTION_FRAME
Jan Beulichb1cccb12010-09-02 13:55:11 +01001064 subq $ORIG_RAX-R15, %rsp
1065 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
Alexander van Heukelumd99015b2008-11-19 01:18:11 +01001066 call error_entry
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +01001067 DEFAULT_FRAME 0
Alexander van Heukelumd99015b2008-11-19 01:18:11 +01001068 movq %rsp,%rdi /* pt_regs pointer */
1069 movq ORIG_RAX(%rsp),%rsi /* get error code */
1070 movq $-1,ORIG_RAX(%rsp) /* no syscall to restart */
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001071 call \do_sym
Alexander van Heukelumd99015b2008-11-19 01:18:11 +01001072 jmp error_exit /* %ebx: no swapgs flag */
Jan Beulich7effaa82005-09-12 18:49:24 +02001073 CFI_ENDPROC
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001074END(\sym)
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001075.endm
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076
1077 /* error code is on the stack already */
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001078.macro paranoiderrorentry sym do_sym
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001079ENTRY(\sym)
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001080 XCPT_FRAME
1081 PARAVIRT_ADJUST_EXCEPTION_FRAME
Jan Beulichb1cccb12010-09-02 13:55:11 +01001082 subq $ORIG_RAX-R15, %rsp
1083 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
Alexander van Heukelume2f6bc22008-11-21 16:43:18 +01001084 call save_paranoid
1085 DEFAULT_FRAME 0
Alexander van Heukelum7e61a792008-09-26 14:03:03 +02001086 TRACE_IRQS_OFF
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001087 movq %rsp,%rdi /* pt_regs pointer */
1088 movq ORIG_RAX(%rsp),%rsi /* get error code */
1089 movq $-1,ORIG_RAX(%rsp) /* no syscall to restart */
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001090 call \do_sym
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001091 jmp paranoid_exit /* %ebx: no swapgs flag */
1092 CFI_ENDPROC
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001093END(\sym)
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001094.endm
1095
1096zeroentry divide_error do_divide_error
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001097zeroentry overflow do_overflow
1098zeroentry bounds do_bounds
1099zeroentry invalid_op do_invalid_op
1100zeroentry device_not_available do_device_not_available
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001101paranoiderrorentry double_fault do_double_fault
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001102zeroentry coprocessor_segment_overrun do_coprocessor_segment_overrun
1103errorentry invalid_TSS do_invalid_TSS
1104errorentry segment_not_present do_segment_not_present
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001105zeroentry spurious_interrupt_bug do_spurious_interrupt_bug
1106zeroentry coprocessor_error do_coprocessor_error
1107errorentry alignment_check do_alignment_check
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001108zeroentry simd_coprocessor_error do_simd_coprocessor_error
Ingo Molnar2601e642006-07-03 00:24:45 -07001109
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001110 /* Reload gs selector with exception handling */
1111 /* edi: new selector */
Jeremy Fitzhardinge9f9d4892008-06-25 00:19:32 -04001112ENTRY(native_load_gs_index)
Jan Beulich7effaa82005-09-12 18:49:24 +02001113 CFI_STARTPROC
Jan Beulichdf5d1872010-09-02 14:07:16 +01001114 pushfq_cfi
Jeremy Fitzhardingeb8aa2872009-01-28 14:35:03 -08001115 DISABLE_INTERRUPTS(CLBR_ANY & ~CLBR_RDI)
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001116 SWAPGS
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001117gs_change:
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001118 movl %edi,%gs
Linus Torvalds1da177e2005-04-16 15:20:36 -070011192: mfence /* workaround */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +01001120 SWAPGS
Jan Beulichdf5d1872010-09-02 14:07:16 +01001121 popfq_cfi
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001122 ret
Jan Beulich7effaa82005-09-12 18:49:24 +02001123 CFI_ENDPROC
Alexander van Heukelum6efdcfa2008-11-23 10:15:32 +01001124END(native_load_gs_index)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001125
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001126 .section __ex_table,"a"
1127 .align 8
1128 .quad gs_change,bad_gs
1129 .previous
1130 .section .fixup,"ax"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 /* running with kernelgs */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001132bad_gs:
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +01001133 SWAPGS /* switch back to user gs */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 xorl %eax,%eax
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001135 movl %eax,%gs
1136 jmp 2b
1137 .previous
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001138
Brian Gerst3bd95df2009-12-09 12:34:40 -05001139ENTRY(kernel_thread_helper)
Andi Kleenc05991e2006-08-30 19:37:08 +02001140 pushq $0 # fake return address
1141 CFI_STARTPROC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 /*
1143 * Here we are in the child and the registers are set as they were
1144 * at kernel_thread() invocation in the parent.
1145 */
Brian Gerst3bd95df2009-12-09 12:34:40 -05001146 call *%rsi
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 # exit
Andrey Mirkin1c5b5cf2007-10-17 18:04:33 +02001148 mov %eax, %edi
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 call do_exit
jia zhang5f5db592008-11-23 22:47:10 +08001150 ud2 # padding for call trace
Andi Kleenc05991e2006-08-30 19:37:08 +02001151 CFI_ENDPROC
Brian Gerst3bd95df2009-12-09 12:34:40 -05001152END(kernel_thread_helper)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153
1154/*
1155 * execve(). This function needs to use IRET, not SYSRET, to set up all state properly.
1156 *
1157 * C extern interface:
David Howellsc7887322010-08-11 11:26:22 +01001158 * extern long execve(const char *name, char **argv, char **envp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 *
1160 * asm input arguments:
1161 * rdi: name, rsi: argv, rdx: envp
1162 *
1163 * We want to fallback into:
David Howellsc7887322010-08-11 11:26:22 +01001164 * extern long sys_execve(const char *name, char **argv,char **envp, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 *
1166 * do_sys_execve asm fallback arguments:
Ingo Molnar5d119b22008-02-26 12:55:57 +01001167 * rdi: name, rsi: argv, rdx: envp, rcx: fake frame on the stack
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 */
Arnd Bergmann3db03b42006-10-02 02:18:31 -07001169ENTRY(kernel_execve)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 CFI_STARTPROC
1171 FAKE_STACK_FRAME $0
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001172 SAVE_ALL
Ingo Molnar5d119b22008-02-26 12:55:57 +01001173 movq %rsp,%rcx
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 call sys_execve
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001175 movq %rax, RAX(%rsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 RESTORE_REST
1177 testq %rax,%rax
1178 je int_ret_from_sys_call
1179 RESTORE_ARGS
1180 UNFAKE_STACK_FRAME
1181 ret
1182 CFI_ENDPROC
Alexander van Heukelum6efdcfa2008-11-23 10:15:32 +01001183END(kernel_execve)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184
Andi Kleen26995002006-08-02 22:37:28 +02001185/* Call softirq on interrupt stack. Interrupts are off. */
Andi Kleened6b6762005-07-28 21:15:49 -07001186ENTRY(call_softirq)
Jan Beulich7effaa82005-09-12 18:49:24 +02001187 CFI_STARTPROC
Jan Beulichdf5d1872010-09-02 14:07:16 +01001188 pushq_cfi %rbp
Andi Kleen26995002006-08-02 22:37:28 +02001189 CFI_REL_OFFSET rbp,0
1190 mov %rsp,%rbp
1191 CFI_DEF_CFA_REGISTER rbp
Brian Gerst56895532009-01-19 00:38:58 +09001192 incl PER_CPU_VAR(irq_count)
Brian Gerst26f80bd2009-01-19 00:38:58 +09001193 cmove PER_CPU_VAR(irq_stack_ptr),%rsp
Andi Kleen26995002006-08-02 22:37:28 +02001194 push %rbp # backlink for old unwinder
Andi Kleened6b6762005-07-28 21:15:49 -07001195 call __do_softirq
Andi Kleen26995002006-08-02 22:37:28 +02001196 leaveq
Jan Beulichdf5d1872010-09-02 14:07:16 +01001197 CFI_RESTORE rbp
Jan Beulich7effaa82005-09-12 18:49:24 +02001198 CFI_DEF_CFA_REGISTER rsp
Andi Kleen26995002006-08-02 22:37:28 +02001199 CFI_ADJUST_CFA_OFFSET -8
Brian Gerst56895532009-01-19 00:38:58 +09001200 decl PER_CPU_VAR(irq_count)
Andi Kleened6b6762005-07-28 21:15:49 -07001201 ret
Jan Beulich7effaa82005-09-12 18:49:24 +02001202 CFI_ENDPROC
Alexander van Heukelum6efdcfa2008-11-23 10:15:32 +01001203END(call_softirq)
Andi Kleen75154f42007-06-23 02:29:25 +02001204
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001205#ifdef CONFIG_XEN
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001206zeroentry xen_hypervisor_callback xen_do_hypervisor_callback
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001207
1208/*
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001209 * A note on the "critical region" in our callback handler.
1210 * We want to avoid stacking callback handlers due to events occurring
1211 * during handling of the last event. To do this, we keep events disabled
1212 * until we've done all processing. HOWEVER, we must enable events before
1213 * popping the stack frame (can't be done atomically) and so it would still
1214 * be possible to get enough handler activations to overflow the stack.
1215 * Although unlikely, bugs of that kind are hard to track down, so we'd
1216 * like to avoid the possibility.
1217 * So, on entry to the handler we detect whether we interrupted an
1218 * existing activation in its critical region -- if so, we pop the current
1219 * activation and restart the handler using the previous one.
1220 */
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001221ENTRY(xen_do_hypervisor_callback) # do_hypervisor_callback(struct *pt_regs)
1222 CFI_STARTPROC
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001223/*
1224 * Since we don't modify %rdi, evtchn_do_upall(struct *pt_regs) will
1225 * see the correct pointer to the pt_regs
1226 */
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001227 movq %rdi, %rsp # we don't return, adjust the stack frame
1228 CFI_ENDPROC
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +01001229 DEFAULT_FRAME
Brian Gerst56895532009-01-19 00:38:58 +0900123011: incl PER_CPU_VAR(irq_count)
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001231 movq %rsp,%rbp
1232 CFI_DEF_CFA_REGISTER rbp
Brian Gerst26f80bd2009-01-19 00:38:58 +09001233 cmovzq PER_CPU_VAR(irq_stack_ptr),%rsp
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001234 pushq %rbp # backlink for old unwinder
1235 call xen_evtchn_do_upcall
1236 popq %rsp
1237 CFI_DEF_CFA_REGISTER rsp
Brian Gerst56895532009-01-19 00:38:58 +09001238 decl PER_CPU_VAR(irq_count)
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001239 jmp error_exit
1240 CFI_ENDPROC
1241END(do_hypervisor_callback)
1242
1243/*
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001244 * Hypervisor uses this for application faults while it executes.
1245 * We get here for two reasons:
1246 * 1. Fault while reloading DS, ES, FS or GS
1247 * 2. Fault while executing IRET
1248 * Category 1 we do not need to fix up as Xen has already reloaded all segment
1249 * registers that could be reloaded and zeroed the others.
1250 * Category 2 we fix up by killing the current process. We cannot use the
1251 * normal Linux return path in this case because if we use the IRET hypercall
1252 * to pop the stack frame we end up in an infinite loop of failsafe callbacks.
1253 * We distinguish between categories by comparing each saved segment register
1254 * with its current contents: any discrepancy means we in category 1.
1255 */
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001256ENTRY(xen_failsafe_callback)
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +01001257 INTR_FRAME 1 (6*8)
1258 /*CFI_REL_OFFSET gs,GS*/
1259 /*CFI_REL_OFFSET fs,FS*/
1260 /*CFI_REL_OFFSET es,ES*/
1261 /*CFI_REL_OFFSET ds,DS*/
1262 CFI_REL_OFFSET r11,8
1263 CFI_REL_OFFSET rcx,0
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001264 movw %ds,%cx
1265 cmpw %cx,0x10(%rsp)
1266 CFI_REMEMBER_STATE
1267 jne 1f
1268 movw %es,%cx
1269 cmpw %cx,0x18(%rsp)
1270 jne 1f
1271 movw %fs,%cx
1272 cmpw %cx,0x20(%rsp)
1273 jne 1f
1274 movw %gs,%cx
1275 cmpw %cx,0x28(%rsp)
1276 jne 1f
1277 /* All segments match their saved values => Category 2 (Bad IRET). */
1278 movq (%rsp),%rcx
1279 CFI_RESTORE rcx
1280 movq 8(%rsp),%r11
1281 CFI_RESTORE r11
1282 addq $0x30,%rsp
1283 CFI_ADJUST_CFA_OFFSET -0x30
Ingo Molnar14ae22b2008-11-21 15:20:47 +01001284 pushq_cfi $0 /* RIP */
1285 pushq_cfi %r11
1286 pushq_cfi %rcx
Jeremy Fitzhardinge4a5c3e72008-07-08 15:07:09 -07001287 jmp general_protection
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001288 CFI_RESTORE_STATE
12891: /* Segment mismatch => Category 1 (Bad segment). Retry the IRET. */
1290 movq (%rsp),%rcx
1291 CFI_RESTORE rcx
1292 movq 8(%rsp),%r11
1293 CFI_RESTORE r11
1294 addq $0x30,%rsp
1295 CFI_ADJUST_CFA_OFFSET -0x30
Ingo Molnar14ae22b2008-11-21 15:20:47 +01001296 pushq_cfi $0
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001297 SAVE_ALL
1298 jmp error_exit
1299 CFI_ENDPROC
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001300END(xen_failsafe_callback)
1301
Sheng Yang38e20b02010-05-14 12:40:51 +01001302apicinterrupt XEN_HVM_EVTCHN_CALLBACK \
1303 xen_hvm_callback_vector xen_evtchn_do_upcall
1304
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001305#endif /* CONFIG_XEN */
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001306
1307/*
1308 * Some functions should be protected against kprobes
1309 */
1310 .pushsection .kprobes.text, "ax"
1311
1312paranoidzeroentry_ist debug do_debug DEBUG_STACK
1313paranoidzeroentry_ist int3 do_int3 DEBUG_STACK
1314paranoiderrorentry stack_segment do_stack_segment
Jeremy Fitzhardinge6cac5a92009-03-29 19:56:29 -07001315#ifdef CONFIG_XEN
1316zeroentry xen_debug do_debug
1317zeroentry xen_int3 do_int3
1318errorentry xen_stack_segment do_stack_segment
1319#endif
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001320errorentry general_protection do_general_protection
1321errorentry page_fault do_page_fault
1322#ifdef CONFIG_X86_MCE
Andi Kleen5d727922009-04-27 19:25:48 +02001323paranoidzeroentry machine_check *machine_check_vector(%rip)
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001324#endif
1325
1326 /*
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001327 * "Paranoid" exit path from exception stack.
1328 * Paranoid because this is used by NMIs and cannot take
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001329 * any kernel state for granted.
1330 * We don't do kernel preemption checks here, because only
1331 * NMI should be common and it does not enable IRQs and
1332 * cannot get reschedule ticks.
1333 *
1334 * "trace" is 0 for the NMI handler only, because irq-tracing
1335 * is fundamentally NMI-unsafe. (we cannot change the soft and
1336 * hard flags at once, atomically)
1337 */
1338
1339 /* ebx: no swapgs flag */
1340ENTRY(paranoid_exit)
Jan Beulich1f130a72010-09-02 13:54:32 +01001341 DEFAULT_FRAME
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001342 DISABLE_INTERRUPTS(CLBR_NONE)
1343 TRACE_IRQS_OFF
1344 testl %ebx,%ebx /* swapgs needed? */
1345 jnz paranoid_restore
1346 testl $3,CS(%rsp)
1347 jnz paranoid_userspace
1348paranoid_swapgs:
1349 TRACE_IRQS_IRETQ 0
1350 SWAPGS_UNSAFE_STACK
Steven Rostedt0300e7f12009-04-17 08:33:52 -04001351 RESTORE_ALL 8
1352 jmp irq_return
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001353paranoid_restore:
Steven Rostedt0300e7f12009-04-17 08:33:52 -04001354 TRACE_IRQS_IRETQ 0
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001355 RESTORE_ALL 8
1356 jmp irq_return
1357paranoid_userspace:
1358 GET_THREAD_INFO(%rcx)
1359 movl TI_flags(%rcx),%ebx
1360 andl $_TIF_WORK_MASK,%ebx
1361 jz paranoid_swapgs
1362 movq %rsp,%rdi /* &pt_regs */
1363 call sync_regs
1364 movq %rax,%rsp /* switch stack for scheduling */
1365 testl $_TIF_NEED_RESCHED,%ebx
1366 jnz paranoid_schedule
1367 movl %ebx,%edx /* arg3: thread flags */
1368 TRACE_IRQS_ON
1369 ENABLE_INTERRUPTS(CLBR_NONE)
1370 xorl %esi,%esi /* arg2: oldset */
1371 movq %rsp,%rdi /* arg1: &pt_regs */
1372 call do_notify_resume
1373 DISABLE_INTERRUPTS(CLBR_NONE)
1374 TRACE_IRQS_OFF
1375 jmp paranoid_userspace
1376paranoid_schedule:
1377 TRACE_IRQS_ON
1378 ENABLE_INTERRUPTS(CLBR_ANY)
1379 call schedule
1380 DISABLE_INTERRUPTS(CLBR_ANY)
1381 TRACE_IRQS_OFF
1382 jmp paranoid_userspace
1383 CFI_ENDPROC
1384END(paranoid_exit)
1385
1386/*
1387 * Exception entry point. This expects an error code/orig_rax on the stack.
1388 * returns in "no swapgs flag" in %ebx.
1389 */
1390ENTRY(error_entry)
1391 XCPT_FRAME
1392 CFI_ADJUST_CFA_OFFSET 15*8
1393 /* oldrax contains error code */
1394 cld
1395 movq_cfi rdi, RDI+8
1396 movq_cfi rsi, RSI+8
1397 movq_cfi rdx, RDX+8
1398 movq_cfi rcx, RCX+8
1399 movq_cfi rax, RAX+8
1400 movq_cfi r8, R8+8
1401 movq_cfi r9, R9+8
1402 movq_cfi r10, R10+8
1403 movq_cfi r11, R11+8
1404 movq_cfi rbx, RBX+8
1405 movq_cfi rbp, RBP+8
1406 movq_cfi r12, R12+8
1407 movq_cfi r13, R13+8
1408 movq_cfi r14, R14+8
1409 movq_cfi r15, R15+8
1410 xorl %ebx,%ebx
1411 testl $3,CS+8(%rsp)
1412 je error_kernelspace
1413error_swapgs:
1414 SWAPGS
1415error_sti:
1416 TRACE_IRQS_OFF
1417 ret
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001418
1419/*
1420 * There are two places in the kernel that can potentially fault with
1421 * usergs. Handle them here. The exception handlers after iret run with
1422 * kernel gs again, so don't set the user space flag. B stepping K8s
1423 * sometimes report an truncated RIP for IRET exceptions returning to
1424 * compat mode. Check for these here too.
1425 */
1426error_kernelspace:
1427 incl %ebx
1428 leaq irq_return(%rip),%rcx
1429 cmpq %rcx,RIP+8(%rsp)
1430 je error_swapgs
Brian Gerstae24ffe2009-10-12 10:18:23 -04001431 movl %ecx,%eax /* zero extend */
1432 cmpq %rax,RIP+8(%rsp)
1433 je bstep_iret
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001434 cmpq $gs_change,RIP+8(%rsp)
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001435 je error_swapgs
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001436 jmp error_sti
Brian Gerstae24ffe2009-10-12 10:18:23 -04001437
1438bstep_iret:
1439 /* Fix truncated RIP */
1440 movq %rcx,RIP+8(%rsp)
Brian Gerst97829de2009-11-03 14:02:05 -05001441 jmp error_swapgs
Jan Beuliche6b04b62010-09-02 13:52:45 +01001442 CFI_ENDPROC
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001443END(error_entry)
1444
1445
1446/* ebx: no swapgs flag (1: don't need swapgs, 0: need it) */
1447ENTRY(error_exit)
1448 DEFAULT_FRAME
1449 movl %ebx,%eax
1450 RESTORE_REST
1451 DISABLE_INTERRUPTS(CLBR_NONE)
1452 TRACE_IRQS_OFF
1453 GET_THREAD_INFO(%rcx)
1454 testl %eax,%eax
1455 jne retint_kernel
1456 LOCKDEP_SYS_EXIT_IRQ
1457 movl TI_flags(%rcx),%edx
1458 movl $_TIF_WORK_MASK,%edi
1459 andl %edi,%edx
1460 jnz retint_careful
1461 jmp retint_swapgs
1462 CFI_ENDPROC
1463END(error_exit)
1464
1465
1466 /* runs on exception stack */
1467ENTRY(nmi)
1468 INTR_FRAME
1469 PARAVIRT_ADJUST_EXCEPTION_FRAME
1470 pushq_cfi $-1
Jan Beulichb1cccb12010-09-02 13:55:11 +01001471 subq $ORIG_RAX-R15, %rsp
1472 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001473 call save_paranoid
1474 DEFAULT_FRAME 0
1475 /* paranoidentry do_nmi, 0; without TRACE_IRQS_OFF */
1476 movq %rsp,%rdi
1477 movq $-1,%rsi
1478 call do_nmi
1479#ifdef CONFIG_TRACE_IRQFLAGS
1480 /* paranoidexit; without TRACE_IRQS_OFF */
1481 /* ebx: no swapgs flag */
1482 DISABLE_INTERRUPTS(CLBR_NONE)
1483 testl %ebx,%ebx /* swapgs needed? */
1484 jnz nmi_restore
1485 testl $3,CS(%rsp)
1486 jnz nmi_userspace
1487nmi_swapgs:
1488 SWAPGS_UNSAFE_STACK
1489nmi_restore:
1490 RESTORE_ALL 8
1491 jmp irq_return
1492nmi_userspace:
1493 GET_THREAD_INFO(%rcx)
1494 movl TI_flags(%rcx),%ebx
1495 andl $_TIF_WORK_MASK,%ebx
1496 jz nmi_swapgs
1497 movq %rsp,%rdi /* &pt_regs */
1498 call sync_regs
1499 movq %rax,%rsp /* switch stack for scheduling */
1500 testl $_TIF_NEED_RESCHED,%ebx
1501 jnz nmi_schedule
1502 movl %ebx,%edx /* arg3: thread flags */
1503 ENABLE_INTERRUPTS(CLBR_NONE)
1504 xorl %esi,%esi /* arg2: oldset */
1505 movq %rsp,%rdi /* arg1: &pt_regs */
1506 call do_notify_resume
1507 DISABLE_INTERRUPTS(CLBR_NONE)
1508 jmp nmi_userspace
1509nmi_schedule:
1510 ENABLE_INTERRUPTS(CLBR_ANY)
1511 call schedule
1512 DISABLE_INTERRUPTS(CLBR_ANY)
1513 jmp nmi_userspace
1514 CFI_ENDPROC
1515#else
1516 jmp paranoid_exit
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001517 CFI_ENDPROC
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001518#endif
1519END(nmi)
1520
1521ENTRY(ignore_sysret)
1522 CFI_STARTPROC
1523 mov $-ENOSYS,%eax
1524 sysret
1525 CFI_ENDPROC
1526END(ignore_sysret)
1527
1528/*
1529 * End of kprobes section
1530 */
1531 .popsection