blob: 36e2ef5cc83fdba563e05c76bfe5d3fb0590ad64 [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)
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100149 subq $80, %rsp
150
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
158 movq %rax, 72(%rsp)
Steven Rostedte71e99c2009-03-25 14:30:04 -0400159 movq 8(%rsp), %rdx
Jan Beulich7effaa82005-09-12 18:49:24 +0200160 movq (%rsp), %rax
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100161 addq $72, %rsp
162 retq
163#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
216 pushq $__KERNEL_DS /* ss */
217 CFI_ADJUST_CFA_OFFSET 8
218 /*CFI_REL_OFFSET ss,0*/
219 pushq %rax /* rsp */
220 CFI_ADJUST_CFA_OFFSET 8
221 CFI_REL_OFFSET rsp,0
gorcunov@gmail.com33454532008-11-26 22:17:02 +0300222 pushq $X86_EFLAGS_IF /* eflags - interrupts on */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 CFI_ADJUST_CFA_OFFSET 8
224 /*CFI_REL_OFFSET rflags,0*/
225 pushq $__KERNEL_CS /* cs */
226 CFI_ADJUST_CFA_OFFSET 8
227 /*CFI_REL_OFFSET cs,0*/
228 pushq \child_rip /* rip */
229 CFI_ADJUST_CFA_OFFSET 8
230 CFI_REL_OFFSET rip,0
231 pushq %rax /* orig rax */
232 CFI_ADJUST_CFA_OFFSET 8
233 .endm
234
235 .macro UNFAKE_STACK_FRAME
236 addq $8*6, %rsp
237 CFI_ADJUST_CFA_OFFSET -(6*8)
238 .endm
239
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100240/*
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100241 * initial frame state for interrupts (and exceptions without error code)
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100242 */
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100243 .macro EMPTY_FRAME start=1 offset=0
244 .if \start
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100245 CFI_STARTPROC simple
246 CFI_SIGNAL_FRAME
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100247 CFI_DEF_CFA rsp,8+\offset
248 .else
249 CFI_DEF_CFA_OFFSET 8+\offset
250 .endif
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100251 .endm
252
253/*
254 * initial frame state for interrupts (and exceptions without error code)
255 */
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100256 .macro INTR_FRAME start=1 offset=0
Ingo Molnare8a0e272008-11-21 15:11:32 +0100257 EMPTY_FRAME \start, SS+8+\offset-RIP
258 /*CFI_REL_OFFSET ss, SS+\offset-RIP*/
259 CFI_REL_OFFSET rsp, RSP+\offset-RIP
260 /*CFI_REL_OFFSET rflags, EFLAGS+\offset-RIP*/
261 /*CFI_REL_OFFSET cs, CS+\offset-RIP*/
262 CFI_REL_OFFSET rip, RIP+\offset-RIP
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100263 .endm
264
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100265/*
266 * initial frame state for exceptions with error code (and interrupts
267 * with vector already pushed)
268 */
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100269 .macro XCPT_FRAME start=1 offset=0
Ingo Molnare8a0e272008-11-21 15:11:32 +0100270 INTR_FRAME \start, RIP+\offset-ORIG_RAX
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100271 /*CFI_REL_OFFSET orig_rax, ORIG_RAX-ORIG_RAX*/
272 .endm
273
274/*
275 * frame that enables calling into C.
276 */
277 .macro PARTIAL_FRAME start=1 offset=0
Ingo Molnare8a0e272008-11-21 15:11:32 +0100278 XCPT_FRAME \start, ORIG_RAX+\offset-ARGOFFSET
279 CFI_REL_OFFSET rdi, RDI+\offset-ARGOFFSET
280 CFI_REL_OFFSET rsi, RSI+\offset-ARGOFFSET
281 CFI_REL_OFFSET rdx, RDX+\offset-ARGOFFSET
282 CFI_REL_OFFSET rcx, RCX+\offset-ARGOFFSET
283 CFI_REL_OFFSET rax, RAX+\offset-ARGOFFSET
284 CFI_REL_OFFSET r8, R8+\offset-ARGOFFSET
285 CFI_REL_OFFSET r9, R9+\offset-ARGOFFSET
286 CFI_REL_OFFSET r10, R10+\offset-ARGOFFSET
287 CFI_REL_OFFSET r11, R11+\offset-ARGOFFSET
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100288 .endm
289
290/*
291 * frame that enables passing a complete pt_regs to a C function.
292 */
293 .macro DEFAULT_FRAME start=1 offset=0
Ingo Molnare8a0e272008-11-21 15:11:32 +0100294 PARTIAL_FRAME \start, R11+\offset-R15
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100295 CFI_REL_OFFSET rbx, RBX+\offset
296 CFI_REL_OFFSET rbp, RBP+\offset
297 CFI_REL_OFFSET r12, R12+\offset
298 CFI_REL_OFFSET r13, R13+\offset
299 CFI_REL_OFFSET r14, R14+\offset
300 CFI_REL_OFFSET r15, R15+\offset
301 .endm
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100302
303/* save partial stack frame */
304ENTRY(save_args)
305 XCPT_FRAME
306 cld
Ingo Molnar14ae22b2008-11-21 15:20:47 +0100307 movq_cfi rdi, RDI+16-ARGOFFSET
308 movq_cfi rsi, RSI+16-ARGOFFSET
309 movq_cfi rdx, RDX+16-ARGOFFSET
310 movq_cfi rcx, RCX+16-ARGOFFSET
311 movq_cfi rax, RAX+16-ARGOFFSET
312 movq_cfi r8, R8+16-ARGOFFSET
313 movq_cfi r9, R9+16-ARGOFFSET
314 movq_cfi r10, R10+16-ARGOFFSET
315 movq_cfi r11, R11+16-ARGOFFSET
316
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100317 leaq -ARGOFFSET+16(%rsp),%rdi /* arg1 for handler */
Ingo Molnar14ae22b2008-11-21 15:20:47 +0100318 movq_cfi rbp, 8 /* push %rbp */
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100319 leaq 8(%rsp), %rbp /* mov %rsp, %ebp */
320 testl $3, CS(%rdi)
321 je 1f
322 SWAPGS
323 /*
Brian Gerst56895532009-01-19 00:38:58 +0900324 * irq_count is used to check if a CPU is already on an interrupt stack
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100325 * or not. While this is essentially redundant with preempt_count it is
326 * a little cheaper to use a separate counter in the PDA (short of
327 * moving irq_enter into assembly, which would be too much work)
328 */
Brian Gerst56895532009-01-19 00:38:58 +09003291: incl PER_CPU_VAR(irq_count)
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100330 jne 2f
Ingo Molnar14ae22b2008-11-21 15:20:47 +0100331 popq_cfi %rax /* move return address... */
Brian Gerst26f80bd2009-01-19 00:38:58 +0900332 mov PER_CPU_VAR(irq_stack_ptr),%rsp
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100333 EMPTY_FRAME 0
Martin Hicksa67798c2009-01-30 10:50:54 -0600334 pushq_cfi %rbp /* backlink for unwinder */
Ingo Molnar14ae22b2008-11-21 15:20:47 +0100335 pushq_cfi %rax /* ... to the new stack */
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100336 /*
337 * We entered an interrupt context - irqs are off:
338 */
3392: TRACE_IRQS_OFF
340 ret
341 CFI_ENDPROC
342END(save_args)
343
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100344ENTRY(save_rest)
345 PARTIAL_FRAME 1 REST_SKIP+8
346 movq 5*8+16(%rsp), %r11 /* save return address */
347 movq_cfi rbx, RBX+16
348 movq_cfi rbp, RBP+16
349 movq_cfi r12, R12+16
350 movq_cfi r13, R13+16
351 movq_cfi r14, R14+16
352 movq_cfi r15, R15+16
353 movq %r11, 8(%rsp) /* return address */
354 FIXUP_TOP_OF_STACK %r11, 16
355 ret
356 CFI_ENDPROC
357END(save_rest)
358
Alexander van Heukelume2f6bc22008-11-21 16:43:18 +0100359/* save complete stack frame */
Jan Beulichc2810182009-03-12 10:38:55 +0000360 .pushsection .kprobes.text, "ax"
Alexander van Heukelume2f6bc22008-11-21 16:43:18 +0100361ENTRY(save_paranoid)
362 XCPT_FRAME 1 RDI+8
363 cld
364 movq_cfi rdi, RDI+8
365 movq_cfi rsi, RSI+8
366 movq_cfi rdx, RDX+8
367 movq_cfi rcx, RCX+8
368 movq_cfi rax, RAX+8
369 movq_cfi r8, R8+8
370 movq_cfi r9, R9+8
371 movq_cfi r10, R10+8
372 movq_cfi r11, R11+8
373 movq_cfi rbx, RBX+8
374 movq_cfi rbp, RBP+8
375 movq_cfi r12, R12+8
376 movq_cfi r13, R13+8
377 movq_cfi r14, R14+8
378 movq_cfi r15, R15+8
379 movl $1,%ebx
380 movl $MSR_GS_BASE,%ecx
381 rdmsr
382 testl %edx,%edx
383 js 1f /* negative -> in kernel */
384 SWAPGS
385 xorl %ebx,%ebx
3861: ret
387 CFI_ENDPROC
388END(save_paranoid)
Jan Beulichc2810182009-03-12 10:38:55 +0000389 .popsection
Alexander van Heukelume2f6bc22008-11-21 16:43:18 +0100390
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391/*
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100392 * A newly forked process directly context switches into this address.
393 *
394 * rdi: prev task we switched from
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100395 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396ENTRY(ret_from_fork)
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100397 DEFAULT_FRAME
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100398
Benjamin LaHaise7106a5a2009-01-10 23:00:22 -0500399 LOCK ; btr $TIF_FORK,TI_flags(%r8)
400
Andi Kleen658fdbe2006-09-26 10:52:41 +0200401 push kernel_eflags(%rip)
Alexander van Heukelume0a5a5d2008-07-22 18:14:16 +0200402 CFI_ADJUST_CFA_OFFSET 8
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100403 popf # reset kernel eflags
Alexander van Heukelume0a5a5d2008-07-22 18:14:16 +0200404 CFI_ADJUST_CFA_OFFSET -8
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100405
406 call schedule_tail # rdi: 'prev' task parameter
407
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 GET_THREAD_INFO(%rcx)
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100409
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 RESTORE_REST
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100411
412 testl $3, CS-ARGOFFSET(%rsp) # from kernel_thread?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 je int_ret_from_sys_call
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100414
415 testl $_TIF_IA32, TI_flags(%rcx) # 32-bit compat task needs IRET
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 jnz int_ret_from_sys_call
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100417
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100418 RESTORE_TOP_OF_STACK %rdi, -ARGOFFSET
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100419 jmp ret_from_sys_call # go to the SYSRET fastpath
420
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200422END(ret_from_fork)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
424/*
425 * System call entry. Upto 6 arguments in registers are supported.
426 *
427 * SYSCALL does not save anything on the stack and does not change the
428 * stack pointer.
429 */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100430
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431/*
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100432 * Register setup:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 * rax system call number
434 * rdi arg0
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100435 * rcx return address for syscall/sysret, C arg3
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 * rsi arg1
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100437 * rdx arg2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 * r10 arg3 (--> moved to rcx for C)
439 * r8 arg4
440 * r9 arg5
441 * r11 eflags for syscall/sysret, temporary for C
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100442 * r12-r15,rbp,rbx saved by C code, not touched.
443 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 * Interrupts are off on entry.
445 * Only called from user space.
446 *
447 * XXX if we had a free scratch register we could save the RSP into the stack frame
448 * and report it properly in ps. Unfortunately we haven't.
Andi Kleen7bf36bb2006-04-07 19:50:00 +0200449 *
450 * When user can change the frames always force IRET. That is because
451 * it deals with uncanonical addresses better. SYSRET has trouble
452 * with them due to bugs in both AMD and Intel CPUs.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100453 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
455ENTRY(system_call)
Jan Beulich7effaa82005-09-12 18:49:24 +0200456 CFI_STARTPROC simple
Jan Beulichadf14232006-09-26 10:52:41 +0200457 CFI_SIGNAL_FRAME
Brian Gerst9af45652009-01-19 00:38:58 +0900458 CFI_DEF_CFA rsp,KERNEL_STACK_OFFSET
Jan Beulich7effaa82005-09-12 18:49:24 +0200459 CFI_REGISTER rip,rcx
460 /*CFI_REGISTER rflags,r11*/
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100461 SWAPGS_UNSAFE_STACK
462 /*
463 * A hypervisor implementation might want to use a label
464 * after the swapgs, so that it can do the swapgs
465 * for the guest and jump here on syscall.
466 */
467ENTRY(system_call_after_swapgs)
468
Brian Gerst3d1e42a2009-01-19 00:38:58 +0900469 movq %rsp,PER_CPU_VAR(old_rsp)
Brian Gerst9af45652009-01-19 00:38:58 +0900470 movq PER_CPU_VAR(kernel_stack),%rsp
Ingo Molnar2601e642006-07-03 00:24:45 -0700471 /*
472 * No need to follow this irqs off/on section - it's straight
473 * and short:
474 */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100475 ENABLE_INTERRUPTS(CLBR_NONE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 SAVE_ARGS 8,1
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100477 movq %rax,ORIG_RAX-ARGOFFSET(%rsp)
Jan Beulich7effaa82005-09-12 18:49:24 +0200478 movq %rcx,RIP-ARGOFFSET(%rsp)
479 CFI_REL_OFFSET rip,RIP-ARGOFFSET
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 GET_THREAD_INFO(%rcx)
Roland McGrathd4d67152008-07-09 02:38:07 -0700481 testl $_TIF_WORK_SYSCALL_ENTRY,TI_flags(%rcx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 jnz tracesys
Roland McGrath86a1c342008-06-23 15:37:04 -0700483system_call_fastpath:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 cmpq $__NR_syscall_max,%rax
485 ja badsys
486 movq %r10,%rcx
487 call *sys_call_table(,%rax,8) # XXX: rip relative
488 movq %rax,RAX-ARGOFFSET(%rsp)
489/*
490 * Syscall return path ending with SYSRET (fast path)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100491 * Has incomplete stack frame and undefined top of stack.
492 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493ret_from_sys_call:
Andi Kleen11b854b2005-04-16 15:25:02 -0700494 movl $_TIF_ALLWORK_MASK,%edi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 /* edi: flagmask */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100496sysret_check:
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200497 LOCKDEP_SYS_EXIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 GET_THREAD_INFO(%rcx)
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100499 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700500 TRACE_IRQS_OFF
Glauber Costa26ccb8a2008-06-24 11:19:35 -0300501 movl TI_flags(%rcx),%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 andl %edi,%edx
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100503 jnz sysret_careful
Jan Beulichbcddc012006-12-07 02:14:02 +0100504 CFI_REMEMBER_STATE
Ingo Molnar2601e642006-07-03 00:24:45 -0700505 /*
506 * sysretq will re-enable interrupts:
507 */
508 TRACE_IRQS_ON
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 movq RIP-ARGOFFSET(%rsp),%rcx
Jan Beulich7effaa82005-09-12 18:49:24 +0200510 CFI_REGISTER rip,rcx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 RESTORE_ARGS 0,-ARG_SKIP,1
Jan Beulich7effaa82005-09-12 18:49:24 +0200512 /*CFI_REGISTER rflags,r11*/
Brian Gerst3d1e42a2009-01-19 00:38:58 +0900513 movq PER_CPU_VAR(old_rsp), %rsp
Jeremy Fitzhardinge2be29982008-06-25 00:19:28 -0400514 USERGS_SYSRET64
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
Jan Beulichbcddc012006-12-07 02:14:02 +0100516 CFI_RESTORE_STATE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 /* Handle reschedules */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100518 /* edx: work, edi: workmask */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519sysret_careful:
520 bt $TIF_NEED_RESCHED,%edx
521 jnc sysret_signal
Ingo Molnar2601e642006-07-03 00:24:45 -0700522 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100523 ENABLE_INTERRUPTS(CLBR_NONE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 pushq %rdi
Jan Beulich7effaa82005-09-12 18:49:24 +0200525 CFI_ADJUST_CFA_OFFSET 8
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 call schedule
527 popq %rdi
Jan Beulich7effaa82005-09-12 18:49:24 +0200528 CFI_ADJUST_CFA_OFFSET -8
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
Andi Kleen10ffdbb2005-05-16 21:53:19 -0700539 /* edx: work flags (arg3) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 leaq -ARGOFFSET(%rsp),%rdi # &pt_regs -> arg1
541 xorl %esi,%esi # oldset -> arg2
Alexander van Heukelumc8108412008-11-21 22:59:52 +0100542 SAVE_REST
543 FIXUP_TOP_OF_STACK %r11
544 call do_notify_resume
545 RESTORE_TOP_OF_STACK %r11
546 RESTORE_REST
Roland McGrath15e8f342008-06-23 20:41:12 -0700547 movl $_TIF_WORK_MASK,%edi
Andi Kleen7bf36bb2006-04-07 19:50:00 +0200548 /* Use IRET because user could have changed frame. This
549 works because ptregscall_common has called FIXUP_TOP_OF_STACK. */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100550 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700551 TRACE_IRQS_OFF
Andi Kleen7bf36bb2006-04-07 19:50:00 +0200552 jmp int_with_check
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100553
Jan Beulich7effaa82005-09-12 18:49:24 +0200554badsys:
555 movq $-ENOSYS,RAX-ARGOFFSET(%rsp)
556 jmp ret_from_sys_call
557
Roland McGrath86a1c342008-06-23 15:37:04 -0700558#ifdef CONFIG_AUDITSYSCALL
559 /*
560 * Fast path for syscall audit without full syscall trace.
561 * We just call audit_syscall_entry() directly, and then
562 * jump back to the normal fast path.
563 */
564auditsys:
565 movq %r10,%r9 /* 6th arg: 4th syscall arg */
566 movq %rdx,%r8 /* 5th arg: 3rd syscall arg */
567 movq %rsi,%rcx /* 4th arg: 2nd syscall arg */
568 movq %rdi,%rdx /* 3rd arg: 1st syscall arg */
569 movq %rax,%rsi /* 2nd arg: syscall number */
570 movl $AUDIT_ARCH_X86_64,%edi /* 1st arg: audit arch */
571 call audit_syscall_entry
572 LOAD_ARGS 0 /* reload call-clobbered registers */
573 jmp system_call_fastpath
574
575 /*
576 * Return fast path for syscall audit. Call audit_syscall_exit()
577 * directly and then jump back to the fast path with TIF_SYSCALL_AUDIT
578 * masked off.
579 */
580sysret_audit:
581 movq %rax,%rsi /* second arg, syscall return value */
582 cmpq $0,%rax /* is it < 0? */
583 setl %al /* 1 if so, 0 if not */
584 movzbl %al,%edi /* zero-extend that into %edi */
585 inc %edi /* first arg, 0->1(AUDITSC_SUCCESS), 1->2(AUDITSC_FAILURE) */
586 call audit_syscall_exit
587 movl $(_TIF_ALLWORK_MASK & ~_TIF_SYSCALL_AUDIT),%edi
588 jmp sysret_check
589#endif /* CONFIG_AUDITSYSCALL */
590
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 /* Do syscall tracing */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100592tracesys:
Roland McGrath86a1c342008-06-23 15:37:04 -0700593#ifdef CONFIG_AUDITSYSCALL
594 testl $(_TIF_WORK_SYSCALL_ENTRY & ~_TIF_SYSCALL_AUDIT),TI_flags(%rcx)
595 jz auditsys
596#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 SAVE_REST
Roland McGratha31f8dd2008-03-16 21:59:11 -0700598 movq $-ENOSYS,RAX(%rsp) /* ptrace can change this for a bad syscall */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 FIXUP_TOP_OF_STACK %rdi
600 movq %rsp,%rdi
601 call syscall_trace_enter
Roland McGrathd4d67152008-07-09 02:38:07 -0700602 /*
603 * Reload arg registers from stack in case ptrace changed them.
604 * We don't reload %rax because syscall_trace_enter() returned
605 * the value it wants us to use in the table lookup.
606 */
607 LOAD_ARGS ARGOFFSET, 1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 RESTORE_REST
609 cmpq $__NR_syscall_max,%rax
Roland McGratha31f8dd2008-03-16 21:59:11 -0700610 ja int_ret_from_sys_call /* RAX(%rsp) set to -ENOSYS above */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 movq %r10,%rcx /* fixup for C */
612 call *sys_call_table(,%rax,8)
Roland McGratha31f8dd2008-03-16 21:59:11 -0700613 movq %rax,RAX-ARGOFFSET(%rsp)
Andi Kleen7bf36bb2006-04-07 19:50:00 +0200614 /* Use IRET because user could have changed frame */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100615
616/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 * Syscall return path ending with IRET.
618 * Has correct top of stack, but partial stack frame.
Jan Beulichbcddc012006-12-07 02:14:02 +0100619 */
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +0300620GLOBAL(int_ret_from_sys_call)
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100621 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700622 TRACE_IRQS_OFF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 testl $3,CS-ARGOFFSET(%rsp)
624 je retint_restore_args
625 movl $_TIF_ALLWORK_MASK,%edi
626 /* edi: mask to check */
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +0300627GLOBAL(int_with_check)
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200628 LOCKDEP_SYS_EXIT_IRQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 GET_THREAD_INFO(%rcx)
Glauber Costa26ccb8a2008-06-24 11:19:35 -0300630 movl TI_flags(%rcx),%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 andl %edi,%edx
632 jnz int_careful
Glauber Costa26ccb8a2008-06-24 11:19:35 -0300633 andl $~TS_COMPAT,TI_status(%rcx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 jmp retint_swapgs
635
636 /* Either reschedule or signal or syscall exit tracking needed. */
637 /* First do a reschedule test. */
638 /* edx: work, edi: workmask */
639int_careful:
640 bt $TIF_NEED_RESCHED,%edx
641 jnc int_very_careful
Ingo Molnar2601e642006-07-03 00:24:45 -0700642 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100643 ENABLE_INTERRUPTS(CLBR_NONE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 pushq %rdi
Jan Beulich7effaa82005-09-12 18:49:24 +0200645 CFI_ADJUST_CFA_OFFSET 8
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 call schedule
647 popq %rdi
Jan Beulich7effaa82005-09-12 18:49:24 +0200648 CFI_ADJUST_CFA_OFFSET -8
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100649 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700650 TRACE_IRQS_OFF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 jmp int_with_check
652
653 /* handle signals and tracing -- both require a full stack frame */
654int_very_careful:
Ingo Molnar2601e642006-07-03 00:24:45 -0700655 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100656 ENABLE_INTERRUPTS(CLBR_NONE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 SAVE_REST
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100658 /* Check for syscall exit trace */
Roland McGrathd4d67152008-07-09 02:38:07 -0700659 testl $_TIF_WORK_SYSCALL_EXIT,%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 jz int_signal
661 pushq %rdi
Jan Beulich7effaa82005-09-12 18:49:24 +0200662 CFI_ADJUST_CFA_OFFSET 8
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100663 leaq 8(%rsp),%rdi # &ptregs -> arg1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 call syscall_trace_leave
665 popq %rdi
Jan Beulich7effaa82005-09-12 18:49:24 +0200666 CFI_ADJUST_CFA_OFFSET -8
Roland McGrathd4d67152008-07-09 02:38:07 -0700667 andl $~(_TIF_WORK_SYSCALL_EXIT|_TIF_SYSCALL_EMU),%edi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 jmp int_restore_rest
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100669
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670int_signal:
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100671 testl $_TIF_DO_NOTIFY_MASK,%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 jz 1f
673 movq %rsp,%rdi # &ptregs -> arg1
674 xorl %esi,%esi # oldset -> arg2
675 call do_notify_resume
Roland McGratheca91e72008-07-10 14:50:39 -07006761: movl $_TIF_WORK_MASK,%edi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677int_restore_rest:
678 RESTORE_REST
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100679 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700680 TRACE_IRQS_OFF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 jmp int_with_check
682 CFI_ENDPROC
Jan Beulichbcddc012006-12-07 02:14:02 +0100683END(system_call)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100684
685/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 * Certain special system calls that need to save a complete full stack frame.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100687 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 .macro PTREGSCALL label,func,arg
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100689ENTRY(\label)
690 PARTIAL_FRAME 1 8 /* offset 8: return address */
691 subq $REST_SKIP, %rsp
692 CFI_ADJUST_CFA_OFFSET REST_SKIP
693 call save_rest
694 DEFAULT_FRAME 0 8 /* offset 8: return address */
695 leaq 8(%rsp), \arg /* pt_regs pointer */
696 call \func
697 jmp ptregscall_common
698 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200699END(\label)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 .endm
701
702 PTREGSCALL stub_clone, sys_clone, %r8
703 PTREGSCALL stub_fork, sys_fork, %rdi
704 PTREGSCALL stub_vfork, sys_vfork, %rdi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 PTREGSCALL stub_sigaltstack, sys_sigaltstack, %rdx
706 PTREGSCALL stub_iopl, sys_iopl, %rsi
707
708ENTRY(ptregscall_common)
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100709 DEFAULT_FRAME 1 8 /* offset 8: return address */
710 RESTORE_TOP_OF_STACK %r11, 8
711 movq_cfi_restore R15+8, r15
712 movq_cfi_restore R14+8, r14
713 movq_cfi_restore R13+8, r13
714 movq_cfi_restore R12+8, r12
715 movq_cfi_restore RBP+8, rbp
716 movq_cfi_restore RBX+8, rbx
717 ret $REST_SKIP /* pop extended registers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200719END(ptregscall_common)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100720
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721ENTRY(stub_execve)
722 CFI_STARTPROC
723 popq %r11
Jan Beulich7effaa82005-09-12 18:49:24 +0200724 CFI_ADJUST_CFA_OFFSET -8
725 CFI_REGISTER rip, r11
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 SAVE_REST
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 FIXUP_TOP_OF_STACK %r11
Ingo Molnar5d119b22008-02-26 12:55:57 +0100728 movq %rsp, %rcx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 call sys_execve
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 RESTORE_TOP_OF_STACK %r11
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 movq %rax,RAX(%rsp)
732 RESTORE_REST
733 jmp int_ret_from_sys_call
734 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200735END(stub_execve)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100736
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737/*
738 * sigreturn is special because it needs to restore all registers on return.
739 * This cannot be done with SYSRET, so use the IRET return path instead.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100740 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741ENTRY(stub_rt_sigreturn)
742 CFI_STARTPROC
Jan Beulich7effaa82005-09-12 18:49:24 +0200743 addq $8, %rsp
744 CFI_ADJUST_CFA_OFFSET -8
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 SAVE_REST
746 movq %rsp,%rdi
747 FIXUP_TOP_OF_STACK %r11
748 call sys_rt_sigreturn
749 movq %rax,RAX(%rsp) # fixme, this could be done at the higher layer
750 RESTORE_REST
751 jmp int_ret_from_sys_call
752 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200753END(stub_rt_sigreturn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754
Jan Beulich7effaa82005-09-12 18:49:24 +0200755/*
H. Peter Anvin939b7872008-11-11 13:51:52 -0800756 * Build the entry stubs and pointer table with some assembler magic.
757 * We pack 7 stubs into a single 32-byte chunk, which will fit in a
758 * single cache line on all modern x86 implementations.
759 */
760 .section .init.rodata,"a"
761ENTRY(interrupt)
762 .text
763 .p2align 5
764 .p2align CONFIG_X86_L1_CACHE_SHIFT
765ENTRY(irq_entries_start)
766 INTR_FRAME
767vector=FIRST_EXTERNAL_VECTOR
768.rept (NR_VECTORS-FIRST_EXTERNAL_VECTOR+6)/7
769 .balign 32
770 .rept 7
771 .if vector < NR_VECTORS
H. Peter Anvin86655962008-11-12 10:27:35 -0800772 .if vector <> FIRST_EXTERNAL_VECTOR
H. Peter Anvin939b7872008-11-11 13:51:52 -0800773 CFI_ADJUST_CFA_OFFSET -8
774 .endif
7751: pushq $(~vector+0x80) /* Note: always in signed byte range */
776 CFI_ADJUST_CFA_OFFSET 8
H. Peter Anvin86655962008-11-12 10:27:35 -0800777 .if ((vector-FIRST_EXTERNAL_VECTOR)%7) <> 6
H. Peter Anvin939b7872008-11-11 13:51:52 -0800778 jmp 2f
779 .endif
780 .previous
781 .quad 1b
782 .text
783vector=vector+1
784 .endif
785 .endr
7862: jmp common_interrupt
787.endr
788 CFI_ENDPROC
789END(irq_entries_start)
790
791.previous
792END(interrupt)
793.previous
794
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100795/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 * Interrupt entry/exit.
797 *
798 * Interrupt entry points save only callee clobbered registers in fast path.
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100799 *
800 * Entry runs with interrupts off.
801 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802
Alexander van Heukelum722024d2008-11-13 13:50:20 +0100803/* 0(%rsp): ~(interrupt number) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 .macro interrupt func
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100805 subq $10*8, %rsp
806 CFI_ADJUST_CFA_OFFSET 10*8
807 call save_args
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100808 PARTIAL_FRAME 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 call \func
810 .endm
811
Masami Hiramatsu8222d712009-08-27 13:23:25 -0400812/*
813 * Interrupt entry/exit should be protected against kprobes
814 */
815 .pushsection .kprobes.text, "ax"
Alexander van Heukelum722024d2008-11-13 13:50:20 +0100816 /*
817 * The interrupt stubs push (~vector+0x80) onto the stack and
818 * then jump to common_interrupt.
819 */
H. Peter Anvin939b7872008-11-11 13:51:52 -0800820 .p2align CONFIG_X86_L1_CACHE_SHIFT
821common_interrupt:
Jan Beulich7effaa82005-09-12 18:49:24 +0200822 XCPT_FRAME
Alexander van Heukelum722024d2008-11-13 13:50:20 +0100823 addq $-0x80,(%rsp) /* Adjust vector to [-256,-1] range */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 interrupt do_IRQ
Brian Gerst3d1e42a2009-01-19 00:38:58 +0900825 /* 0(%rsp): old_rsp-ARGOFFSET */
Jan Beulich7effaa82005-09-12 18:49:24 +0200826ret_from_intr:
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100827 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700828 TRACE_IRQS_OFF
Brian Gerst56895532009-01-19 00:38:58 +0900829 decl PER_CPU_VAR(irq_count)
Jan Beulich1de9c3f2006-06-26 13:57:35 +0200830 leaveq
Jan Beulich7effaa82005-09-12 18:49:24 +0200831 CFI_DEF_CFA_REGISTER rsp
Jan Beulich1de9c3f2006-06-26 13:57:35 +0200832 CFI_ADJUST_CFA_OFFSET -8
Jan Beulich7effaa82005-09-12 18:49:24 +0200833exit_intr:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 GET_THREAD_INFO(%rcx)
835 testl $3,CS-ARGOFFSET(%rsp)
836 je retint_kernel
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100837
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 /* Interrupt came from user space */
839 /*
840 * Has a correct top of stack, but a partial stack frame
841 * %rcx: thread info. Interrupts off.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100842 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843retint_with_reschedule:
844 movl $_TIF_WORK_MASK,%edi
Jan Beulich7effaa82005-09-12 18:49:24 +0200845retint_check:
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200846 LOCKDEP_SYS_EXIT_IRQ
Glauber Costa26ccb8a2008-06-24 11:19:35 -0300847 movl TI_flags(%rcx),%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 andl %edi,%edx
Jan Beulich7effaa82005-09-12 18:49:24 +0200849 CFI_REMEMBER_STATE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 jnz retint_careful
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200851
852retint_swapgs: /* return to user-space */
Ingo Molnar2601e642006-07-03 00:24:45 -0700853 /*
854 * The iretq could re-enable interrupts:
855 */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100856 DISABLE_INTERRUPTS(CLBR_ANY)
Ingo Molnar2601e642006-07-03 00:24:45 -0700857 TRACE_IRQS_IRETQ
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100858 SWAPGS
Ingo Molnar2601e642006-07-03 00:24:45 -0700859 jmp restore_args
860
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200861retint_restore_args: /* return to kernel space */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100862 DISABLE_INTERRUPTS(CLBR_ANY)
Ingo Molnar2601e642006-07-03 00:24:45 -0700863 /*
864 * The iretq could re-enable interrupts:
865 */
866 TRACE_IRQS_IRETQ
867restore_args:
Ingo Molnar3701d8632008-02-09 23:24:08 +0100868 RESTORE_ARGS 0,8,0
869
Adrian Bunkf7f3d792008-02-13 23:29:53 +0200870irq_return:
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100871 INTERRUPT_RETURN
Ingo Molnar3701d8632008-02-09 23:24:08 +0100872
873 .section __ex_table, "a"
874 .quad irq_return, bad_iret
875 .previous
876
877#ifdef CONFIG_PARAVIRT
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100878ENTRY(native_iret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 iretq
880
881 .section __ex_table,"a"
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100882 .quad native_iret, bad_iret
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 .previous
Ingo Molnar3701d8632008-02-09 23:24:08 +0100884#endif
885
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 .section .fixup,"ax"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887bad_iret:
Roland McGrath3aa4b372008-02-06 22:39:43 +0100888 /*
889 * The iret traps when the %cs or %ss being restored is bogus.
890 * We've lost the original trap vector and error code.
891 * #GPF is the most likely one to get for an invalid selector.
892 * So pretend we completed the iret and took the #GPF in user mode.
893 *
894 * We are now running with the kernel GS after exception recovery.
895 * But error_entry expects us to have user GS to match the user %cs,
896 * so swap back.
897 */
898 pushq $0
899
900 SWAPGS
901 jmp general_protection
902
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100903 .previous
904
Jan Beulich7effaa82005-09-12 18:49:24 +0200905 /* edi: workmask, edx: work */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906retint_careful:
Jan Beulich7effaa82005-09-12 18:49:24 +0200907 CFI_RESTORE_STATE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 bt $TIF_NEED_RESCHED,%edx
909 jnc retint_signal
Ingo Molnar2601e642006-07-03 00:24:45 -0700910 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100911 ENABLE_INTERRUPTS(CLBR_NONE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 pushq %rdi
Jan Beulich7effaa82005-09-12 18:49:24 +0200913 CFI_ADJUST_CFA_OFFSET 8
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 call schedule
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100915 popq %rdi
Jan Beulich7effaa82005-09-12 18:49:24 +0200916 CFI_ADJUST_CFA_OFFSET -8
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 GET_THREAD_INFO(%rcx)
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100918 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700919 TRACE_IRQS_OFF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 jmp retint_check
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100921
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922retint_signal:
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100923 testl $_TIF_DO_NOTIFY_MASK,%edx
Andi Kleen10ffdbb2005-05-16 21:53:19 -0700924 jz retint_swapgs
Ingo Molnar2601e642006-07-03 00:24:45 -0700925 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100926 ENABLE_INTERRUPTS(CLBR_NONE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 SAVE_REST
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100928 movq $-1,ORIG_RAX(%rsp)
Andi Kleen3829ee62005-07-28 21:15:48 -0700929 xorl %esi,%esi # oldset
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 movq %rsp,%rdi # &pt_regs
931 call do_notify_resume
932 RESTORE_REST
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100933 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700934 TRACE_IRQS_OFF
Andi Kleenbe9e6872005-05-01 08:58:51 -0700935 GET_THREAD_INFO(%rcx)
Roland McGratheca91e72008-07-10 14:50:39 -0700936 jmp retint_with_reschedule
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937
938#ifdef CONFIG_PREEMPT
939 /* Returning to kernel space. Check if we need preemption */
940 /* rcx: threadinfo. interrupts off. */
Andi Kleenb06baba2006-09-26 10:52:29 +0200941ENTRY(retint_kernel)
Glauber Costa26ccb8a2008-06-24 11:19:35 -0300942 cmpl $0,TI_preempt_count(%rcx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 jnz retint_restore_args
Glauber Costa26ccb8a2008-06-24 11:19:35 -0300944 bt $TIF_NEED_RESCHED,TI_flags(%rcx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 jnc retint_restore_args
946 bt $9,EFLAGS-ARGOFFSET(%rsp) /* interrupts off? */
947 jnc retint_restore_args
948 call preempt_schedule_irq
949 jmp exit_intr
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100950#endif
Jan Beulich4b787e02006-06-26 13:56:55 +0200951
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200953END(common_interrupt)
Masami Hiramatsu8222d712009-08-27 13:23:25 -0400954/*
955 * End of kprobes section
956 */
957 .popsection
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100958
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959/*
960 * APIC interrupts.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100961 */
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100962.macro apicinterrupt num sym do_sym
963ENTRY(\sym)
Jan Beulich7effaa82005-09-12 18:49:24 +0200964 INTR_FRAME
Rusty Russell19eadf92006-06-27 02:53:44 -0700965 pushq $~(\num)
Jan Beulich7effaa82005-09-12 18:49:24 +0200966 CFI_ADJUST_CFA_OFFSET 8
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100967 interrupt \do_sym
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 jmp ret_from_intr
969 CFI_ENDPROC
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100970END(\sym)
971.endm
Jacob Shin89b831e2005-11-05 17:25:53 +0100972
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100973#ifdef CONFIG_SMP
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100974apicinterrupt IRQ_MOVE_CLEANUP_VECTOR \
975 irq_move_cleanup_interrupt smp_irq_move_cleanup_interrupt
Andi Kleen4ef702c2009-05-27 21:56:52 +0200976apicinterrupt REBOOT_VECTOR \
977 reboot_interrupt smp_reboot_interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978#endif
979
Nick Piggin03b48632009-01-20 04:36:04 +0100980#ifdef CONFIG_X86_UV
Cyrill Gorcunov5ae3a132008-11-27 00:02:10 +0300981apicinterrupt UV_BAU_MESSAGE \
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100982 uv_bau_message_intr1 uv_bau_message_interrupt
Nick Piggin03b48632009-01-20 04:36:04 +0100983#endif
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100984apicinterrupt LOCAL_TIMER_VECTOR \
985 apic_timer_interrupt smp_apic_timer_interrupt
Dimitri Sivanichacaabe72009-03-04 12:56:05 -0600986apicinterrupt GENERIC_INTERRUPT_VECTOR \
987 generic_interrupt smp_generic_interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100989#ifdef CONFIG_SMP
990apicinterrupt INVALIDATE_TLB_VECTOR_START+0 \
991 invalidate_interrupt0 smp_invalidate_interrupt
992apicinterrupt INVALIDATE_TLB_VECTOR_START+1 \
993 invalidate_interrupt1 smp_invalidate_interrupt
994apicinterrupt INVALIDATE_TLB_VECTOR_START+2 \
995 invalidate_interrupt2 smp_invalidate_interrupt
996apicinterrupt INVALIDATE_TLB_VECTOR_START+3 \
997 invalidate_interrupt3 smp_invalidate_interrupt
998apicinterrupt INVALIDATE_TLB_VECTOR_START+4 \
999 invalidate_interrupt4 smp_invalidate_interrupt
1000apicinterrupt INVALIDATE_TLB_VECTOR_START+5 \
1001 invalidate_interrupt5 smp_invalidate_interrupt
1002apicinterrupt INVALIDATE_TLB_VECTOR_START+6 \
1003 invalidate_interrupt6 smp_invalidate_interrupt
1004apicinterrupt INVALIDATE_TLB_VECTOR_START+7 \
1005 invalidate_interrupt7 smp_invalidate_interrupt
1006#endif
Cliff Wickman18129242008-06-02 08:56:14 -05001007
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001008apicinterrupt THRESHOLD_APIC_VECTOR \
Andi Kleen7856f6c2009-04-28 23:32:56 +02001009 threshold_interrupt smp_threshold_interrupt
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001010apicinterrupt THERMAL_APIC_VECTOR \
1011 thermal_interrupt smp_thermal_interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012
Andi Kleenccc3c312009-05-27 21:56:54 +02001013#ifdef CONFIG_X86_MCE
1014apicinterrupt MCE_SELF_VECTOR \
1015 mce_self_interrupt smp_mce_self_interrupt
1016#endif
1017
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001018#ifdef CONFIG_SMP
1019apicinterrupt CALL_FUNCTION_SINGLE_VECTOR \
1020 call_function_single_interrupt smp_call_function_single_interrupt
1021apicinterrupt CALL_FUNCTION_VECTOR \
1022 call_function_interrupt smp_call_function_interrupt
1023apicinterrupt RESCHEDULE_VECTOR \
1024 reschedule_interrupt smp_reschedule_interrupt
1025#endif
1026
1027apicinterrupt ERROR_APIC_VECTOR \
1028 error_interrupt smp_error_interrupt
1029apicinterrupt SPURIOUS_APIC_VECTOR \
1030 spurious_interrupt smp_spurious_interrupt
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001031
Ingo Molnar241771e2008-12-03 10:39:53 +01001032#ifdef CONFIG_PERF_COUNTERS
Peter Zijlstrab6276f32009-04-06 11:45:03 +02001033apicinterrupt LOCAL_PENDING_VECTOR \
1034 perf_pending_interrupt smp_perf_pending_interrupt
Ingo Molnar241771e2008-12-03 10:39:53 +01001035#endif
1036
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037/*
1038 * Exception entry points.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001039 */
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001040.macro zeroentry sym do_sym
1041ENTRY(\sym)
Jan Beulich7effaa82005-09-12 18:49:24 +02001042 INTR_FRAME
Jeremy Fitzhardingefab58422008-06-25 00:19:31 -04001043 PARAVIRT_ADJUST_EXCEPTION_FRAME
Ingo Molnar14ae22b2008-11-21 15:20:47 +01001044 pushq_cfi $-1 /* ORIG_RAX: no syscall to restart */
Alexander van Heukelumd99015b2008-11-19 01:18:11 +01001045 subq $15*8,%rsp
1046 CFI_ADJUST_CFA_OFFSET 15*8
1047 call error_entry
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +01001048 DEFAULT_FRAME 0
Alexander van Heukelumd99015b2008-11-19 01:18:11 +01001049 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 Heukelumd99015b2008-11-19 01:18:11 +01001052 jmp error_exit /* %ebx: no swapgs flag */
Jan Beulich7effaa82005-09-12 18:49:24 +02001053 CFI_ENDPROC
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001054END(\sym)
1055.endm
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001057.macro paranoidzeroentry sym do_sym
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001058ENTRY(\sym)
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001059 INTR_FRAME
1060 PARAVIRT_ADJUST_EXCEPTION_FRAME
1061 pushq $-1 /* ORIG_RAX: no syscall to restart */
1062 CFI_ADJUST_CFA_OFFSET 8
1063 subq $15*8, %rsp
1064 call save_paranoid
1065 TRACE_IRQS_OFF
1066 movq %rsp,%rdi /* pt_regs pointer */
1067 xorl %esi,%esi /* no error code */
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001068 call \do_sym
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001069 jmp paranoid_exit /* %ebx: no swapgs flag */
1070 CFI_ENDPROC
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001071END(\sym)
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001072.endm
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001073
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001074.macro paranoidzeroentry_ist sym do_sym ist
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001075ENTRY(\sym)
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001076 INTR_FRAME
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001077 PARAVIRT_ADJUST_EXCEPTION_FRAME
1078 pushq $-1 /* ORIG_RAX: no syscall to restart */
1079 CFI_ADJUST_CFA_OFFSET 8
1080 subq $15*8, %rsp
1081 call save_paranoid
1082 TRACE_IRQS_OFF
1083 movq %rsp,%rdi /* pt_regs pointer */
1084 xorl %esi,%esi /* no error code */
Tejun Heo9939dda2009-01-13 20:41:35 +09001085 PER_CPU(init_tss, %rbp)
1086 subq $EXCEPTION_STKSZ, TSS_ist + (\ist - 1) * 8(%rbp)
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001087 call \do_sym
Tejun Heo9939dda2009-01-13 20:41:35 +09001088 addq $EXCEPTION_STKSZ, TSS_ist + (\ist - 1) * 8(%rbp)
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001089 jmp paranoid_exit /* %ebx: no swapgs flag */
1090 CFI_ENDPROC
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001091END(\sym)
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001092.endm
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001093
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001094.macro errorentry sym do_sym
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001095ENTRY(\sym)
Jan Beulich7effaa82005-09-12 18:49:24 +02001096 XCPT_FRAME
Jeremy Fitzhardingefab58422008-06-25 00:19:31 -04001097 PARAVIRT_ADJUST_EXCEPTION_FRAME
Alexander van Heukelumd99015b2008-11-19 01:18:11 +01001098 subq $15*8,%rsp
1099 CFI_ADJUST_CFA_OFFSET 15*8
1100 call error_entry
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +01001101 DEFAULT_FRAME 0
Alexander van Heukelumd99015b2008-11-19 01:18:11 +01001102 movq %rsp,%rdi /* pt_regs pointer */
1103 movq ORIG_RAX(%rsp),%rsi /* get error code */
1104 movq $-1,ORIG_RAX(%rsp) /* no syscall to restart */
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001105 call \do_sym
Alexander van Heukelumd99015b2008-11-19 01:18:11 +01001106 jmp error_exit /* %ebx: no swapgs flag */
Jan Beulich7effaa82005-09-12 18:49:24 +02001107 CFI_ENDPROC
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001108END(\sym)
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001109.endm
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110
1111 /* error code is on the stack already */
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001112.macro paranoiderrorentry sym do_sym
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001113ENTRY(\sym)
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001114 XCPT_FRAME
1115 PARAVIRT_ADJUST_EXCEPTION_FRAME
1116 subq $15*8,%rsp
Alexander van Heukelume2f6bc22008-11-21 16:43:18 +01001117 CFI_ADJUST_CFA_OFFSET 15*8
1118 call save_paranoid
1119 DEFAULT_FRAME 0
Alexander van Heukelum7e61a792008-09-26 14:03:03 +02001120 TRACE_IRQS_OFF
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001121 movq %rsp,%rdi /* pt_regs pointer */
1122 movq ORIG_RAX(%rsp),%rsi /* get error code */
1123 movq $-1,ORIG_RAX(%rsp) /* no syscall to restart */
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001124 call \do_sym
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001125 jmp paranoid_exit /* %ebx: no swapgs flag */
1126 CFI_ENDPROC
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001127END(\sym)
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001128.endm
1129
1130zeroentry divide_error do_divide_error
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001131zeroentry overflow do_overflow
1132zeroentry bounds do_bounds
1133zeroentry invalid_op do_invalid_op
1134zeroentry device_not_available do_device_not_available
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001135paranoiderrorentry double_fault do_double_fault
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001136zeroentry coprocessor_segment_overrun do_coprocessor_segment_overrun
1137errorentry invalid_TSS do_invalid_TSS
1138errorentry segment_not_present do_segment_not_present
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001139zeroentry spurious_interrupt_bug do_spurious_interrupt_bug
1140zeroentry coprocessor_error do_coprocessor_error
1141errorentry alignment_check do_alignment_check
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001142zeroentry simd_coprocessor_error do_simd_coprocessor_error
Ingo Molnar2601e642006-07-03 00:24:45 -07001143
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001144 /* Reload gs selector with exception handling */
1145 /* edi: new selector */
Jeremy Fitzhardinge9f9d4892008-06-25 00:19:32 -04001146ENTRY(native_load_gs_index)
Jan Beulich7effaa82005-09-12 18:49:24 +02001147 CFI_STARTPROC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 pushf
Jan Beulich7effaa82005-09-12 18:49:24 +02001149 CFI_ADJUST_CFA_OFFSET 8
Jeremy Fitzhardingeb8aa2872009-01-28 14:35:03 -08001150 DISABLE_INTERRUPTS(CLBR_ANY & ~CLBR_RDI)
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001151 SWAPGS
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001152gs_change:
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001153 movl %edi,%gs
Linus Torvalds1da177e2005-04-16 15:20:36 -070011542: mfence /* workaround */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +01001155 SWAPGS
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001156 popf
Jan Beulich7effaa82005-09-12 18:49:24 +02001157 CFI_ADJUST_CFA_OFFSET -8
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001158 ret
Jan Beulich7effaa82005-09-12 18:49:24 +02001159 CFI_ENDPROC
Alexander van Heukelum6efdcfa2008-11-23 10:15:32 +01001160END(native_load_gs_index)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001161
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001162 .section __ex_table,"a"
1163 .align 8
1164 .quad gs_change,bad_gs
1165 .previous
1166 .section .fixup,"ax"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 /* running with kernelgs */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001168bad_gs:
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +01001169 SWAPGS /* switch back to user gs */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 xorl %eax,%eax
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001171 movl %eax,%gs
1172 jmp 2b
1173 .previous
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001174
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175/*
1176 * Create a kernel thread.
1177 *
1178 * C extern interface:
1179 * extern long kernel_thread(int (*fn)(void *), void * arg, unsigned long flags)
1180 *
1181 * asm input arguments:
1182 * rdi: fn, rsi: arg, rdx: flags
1183 */
1184ENTRY(kernel_thread)
1185 CFI_STARTPROC
1186 FAKE_STACK_FRAME $child_rip
1187 SAVE_ALL
1188
1189 # rdi: flags, rsi: usp, rdx: will be &pt_regs
1190 movq %rdx,%rdi
1191 orq kernel_thread_flags(%rip),%rdi
1192 movq $-1, %rsi
1193 movq %rsp, %rdx
1194
1195 xorl %r8d,%r8d
1196 xorl %r9d,%r9d
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001197
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 # clone now
1199 call do_fork
1200 movq %rax,RAX(%rsp)
1201 xorl %edi,%edi
1202
1203 /*
1204 * It isn't worth to check for reschedule here,
1205 * so internally to the x86_64 port you can rely on kernel_thread()
1206 * not to reschedule the child before returning, this avoids the need
1207 * of hacks for example to fork off the per-CPU idle tasks.
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001208 * [Hopefully no generic code relies on the reschedule -AK]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 */
1210 RESTORE_ALL
1211 UNFAKE_STACK_FRAME
1212 ret
1213 CFI_ENDPROC
Alexander van Heukelum6efdcfa2008-11-23 10:15:32 +01001214END(kernel_thread)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001215
Cyrill Gorcunovc2c631e2008-11-26 22:17:00 +03001216ENTRY(child_rip)
Andi Kleenc05991e2006-08-30 19:37:08 +02001217 pushq $0 # fake return address
1218 CFI_STARTPROC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 /*
1220 * Here we are in the child and the registers are set as they were
1221 * at kernel_thread() invocation in the parent.
1222 */
1223 movq %rdi, %rax
1224 movq %rsi, %rdi
1225 call *%rax
1226 # exit
Andrey Mirkin1c5b5cf2007-10-17 18:04:33 +02001227 mov %eax, %edi
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 call do_exit
jia zhang5f5db592008-11-23 22:47:10 +08001229 ud2 # padding for call trace
Andi Kleenc05991e2006-08-30 19:37:08 +02001230 CFI_ENDPROC
Alexander van Heukelum6efdcfa2008-11-23 10:15:32 +01001231END(child_rip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232
1233/*
1234 * execve(). This function needs to use IRET, not SYSRET, to set up all state properly.
1235 *
1236 * C extern interface:
1237 * extern long execve(char *name, char **argv, char **envp)
1238 *
1239 * asm input arguments:
1240 * rdi: name, rsi: argv, rdx: envp
1241 *
1242 * We want to fallback into:
Ingo Molnar5d119b22008-02-26 12:55:57 +01001243 * extern long sys_execve(char *name, char **argv,char **envp, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 *
1245 * do_sys_execve asm fallback arguments:
Ingo Molnar5d119b22008-02-26 12:55:57 +01001246 * rdi: name, rsi: argv, rdx: envp, rcx: fake frame on the stack
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 */
Arnd Bergmann3db03b42006-10-02 02:18:31 -07001248ENTRY(kernel_execve)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 CFI_STARTPROC
1250 FAKE_STACK_FRAME $0
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001251 SAVE_ALL
Ingo Molnar5d119b22008-02-26 12:55:57 +01001252 movq %rsp,%rcx
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 call sys_execve
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001254 movq %rax, RAX(%rsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 RESTORE_REST
1256 testq %rax,%rax
1257 je int_ret_from_sys_call
1258 RESTORE_ARGS
1259 UNFAKE_STACK_FRAME
1260 ret
1261 CFI_ENDPROC
Alexander van Heukelum6efdcfa2008-11-23 10:15:32 +01001262END(kernel_execve)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263
Andi Kleen26995002006-08-02 22:37:28 +02001264/* Call softirq on interrupt stack. Interrupts are off. */
Andi Kleened6b6762005-07-28 21:15:49 -07001265ENTRY(call_softirq)
Jan Beulich7effaa82005-09-12 18:49:24 +02001266 CFI_STARTPROC
Andi Kleen26995002006-08-02 22:37:28 +02001267 push %rbp
1268 CFI_ADJUST_CFA_OFFSET 8
1269 CFI_REL_OFFSET rbp,0
1270 mov %rsp,%rbp
1271 CFI_DEF_CFA_REGISTER rbp
Brian Gerst56895532009-01-19 00:38:58 +09001272 incl PER_CPU_VAR(irq_count)
Brian Gerst26f80bd2009-01-19 00:38:58 +09001273 cmove PER_CPU_VAR(irq_stack_ptr),%rsp
Andi Kleen26995002006-08-02 22:37:28 +02001274 push %rbp # backlink for old unwinder
Andi Kleened6b6762005-07-28 21:15:49 -07001275 call __do_softirq
Andi Kleen26995002006-08-02 22:37:28 +02001276 leaveq
Jan Beulich7effaa82005-09-12 18:49:24 +02001277 CFI_DEF_CFA_REGISTER rsp
Andi Kleen26995002006-08-02 22:37:28 +02001278 CFI_ADJUST_CFA_OFFSET -8
Brian Gerst56895532009-01-19 00:38:58 +09001279 decl PER_CPU_VAR(irq_count)
Andi Kleened6b6762005-07-28 21:15:49 -07001280 ret
Jan Beulich7effaa82005-09-12 18:49:24 +02001281 CFI_ENDPROC
Alexander van Heukelum6efdcfa2008-11-23 10:15:32 +01001282END(call_softirq)
Andi Kleen75154f42007-06-23 02:29:25 +02001283
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001284#ifdef CONFIG_XEN
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001285zeroentry xen_hypervisor_callback xen_do_hypervisor_callback
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001286
1287/*
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001288 * A note on the "critical region" in our callback handler.
1289 * We want to avoid stacking callback handlers due to events occurring
1290 * during handling of the last event. To do this, we keep events disabled
1291 * until we've done all processing. HOWEVER, we must enable events before
1292 * popping the stack frame (can't be done atomically) and so it would still
1293 * be possible to get enough handler activations to overflow the stack.
1294 * Although unlikely, bugs of that kind are hard to track down, so we'd
1295 * like to avoid the possibility.
1296 * So, on entry to the handler we detect whether we interrupted an
1297 * existing activation in its critical region -- if so, we pop the current
1298 * activation and restart the handler using the previous one.
1299 */
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001300ENTRY(xen_do_hypervisor_callback) # do_hypervisor_callback(struct *pt_regs)
1301 CFI_STARTPROC
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001302/*
1303 * Since we don't modify %rdi, evtchn_do_upall(struct *pt_regs) will
1304 * see the correct pointer to the pt_regs
1305 */
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001306 movq %rdi, %rsp # we don't return, adjust the stack frame
1307 CFI_ENDPROC
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +01001308 DEFAULT_FRAME
Brian Gerst56895532009-01-19 00:38:58 +0900130911: incl PER_CPU_VAR(irq_count)
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001310 movq %rsp,%rbp
1311 CFI_DEF_CFA_REGISTER rbp
Brian Gerst26f80bd2009-01-19 00:38:58 +09001312 cmovzq PER_CPU_VAR(irq_stack_ptr),%rsp
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001313 pushq %rbp # backlink for old unwinder
1314 call xen_evtchn_do_upcall
1315 popq %rsp
1316 CFI_DEF_CFA_REGISTER rsp
Brian Gerst56895532009-01-19 00:38:58 +09001317 decl PER_CPU_VAR(irq_count)
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001318 jmp error_exit
1319 CFI_ENDPROC
1320END(do_hypervisor_callback)
1321
1322/*
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001323 * Hypervisor uses this for application faults while it executes.
1324 * We get here for two reasons:
1325 * 1. Fault while reloading DS, ES, FS or GS
1326 * 2. Fault while executing IRET
1327 * Category 1 we do not need to fix up as Xen has already reloaded all segment
1328 * registers that could be reloaded and zeroed the others.
1329 * Category 2 we fix up by killing the current process. We cannot use the
1330 * normal Linux return path in this case because if we use the IRET hypercall
1331 * to pop the stack frame we end up in an infinite loop of failsafe callbacks.
1332 * We distinguish between categories by comparing each saved segment register
1333 * with its current contents: any discrepancy means we in category 1.
1334 */
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001335ENTRY(xen_failsafe_callback)
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +01001336 INTR_FRAME 1 (6*8)
1337 /*CFI_REL_OFFSET gs,GS*/
1338 /*CFI_REL_OFFSET fs,FS*/
1339 /*CFI_REL_OFFSET es,ES*/
1340 /*CFI_REL_OFFSET ds,DS*/
1341 CFI_REL_OFFSET r11,8
1342 CFI_REL_OFFSET rcx,0
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001343 movw %ds,%cx
1344 cmpw %cx,0x10(%rsp)
1345 CFI_REMEMBER_STATE
1346 jne 1f
1347 movw %es,%cx
1348 cmpw %cx,0x18(%rsp)
1349 jne 1f
1350 movw %fs,%cx
1351 cmpw %cx,0x20(%rsp)
1352 jne 1f
1353 movw %gs,%cx
1354 cmpw %cx,0x28(%rsp)
1355 jne 1f
1356 /* All segments match their saved values => Category 2 (Bad IRET). */
1357 movq (%rsp),%rcx
1358 CFI_RESTORE rcx
1359 movq 8(%rsp),%r11
1360 CFI_RESTORE r11
1361 addq $0x30,%rsp
1362 CFI_ADJUST_CFA_OFFSET -0x30
Ingo Molnar14ae22b2008-11-21 15:20:47 +01001363 pushq_cfi $0 /* RIP */
1364 pushq_cfi %r11
1365 pushq_cfi %rcx
Jeremy Fitzhardinge4a5c3e72008-07-08 15:07:09 -07001366 jmp general_protection
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001367 CFI_RESTORE_STATE
13681: /* Segment mismatch => Category 1 (Bad segment). Retry the IRET. */
1369 movq (%rsp),%rcx
1370 CFI_RESTORE rcx
1371 movq 8(%rsp),%r11
1372 CFI_RESTORE r11
1373 addq $0x30,%rsp
1374 CFI_ADJUST_CFA_OFFSET -0x30
Ingo Molnar14ae22b2008-11-21 15:20:47 +01001375 pushq_cfi $0
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001376 SAVE_ALL
1377 jmp error_exit
1378 CFI_ENDPROC
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001379END(xen_failsafe_callback)
1380
1381#endif /* CONFIG_XEN */
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001382
1383/*
1384 * Some functions should be protected against kprobes
1385 */
1386 .pushsection .kprobes.text, "ax"
1387
1388paranoidzeroentry_ist debug do_debug DEBUG_STACK
1389paranoidzeroentry_ist int3 do_int3 DEBUG_STACK
1390paranoiderrorentry stack_segment do_stack_segment
Jeremy Fitzhardinge6cac5a92009-03-29 19:56:29 -07001391#ifdef CONFIG_XEN
1392zeroentry xen_debug do_debug
1393zeroentry xen_int3 do_int3
1394errorentry xen_stack_segment do_stack_segment
1395#endif
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001396errorentry general_protection do_general_protection
1397errorentry page_fault do_page_fault
1398#ifdef CONFIG_X86_MCE
Andi Kleen5d727922009-04-27 19:25:48 +02001399paranoidzeroentry machine_check *machine_check_vector(%rip)
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001400#endif
1401
1402 /*
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001403 * "Paranoid" exit path from exception stack.
1404 * Paranoid because this is used by NMIs and cannot take
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001405 * any kernel state for granted.
1406 * We don't do kernel preemption checks here, because only
1407 * NMI should be common and it does not enable IRQs and
1408 * cannot get reschedule ticks.
1409 *
1410 * "trace" is 0 for the NMI handler only, because irq-tracing
1411 * is fundamentally NMI-unsafe. (we cannot change the soft and
1412 * hard flags at once, atomically)
1413 */
1414
1415 /* ebx: no swapgs flag */
1416ENTRY(paranoid_exit)
1417 INTR_FRAME
1418 DISABLE_INTERRUPTS(CLBR_NONE)
1419 TRACE_IRQS_OFF
1420 testl %ebx,%ebx /* swapgs needed? */
1421 jnz paranoid_restore
1422 testl $3,CS(%rsp)
1423 jnz paranoid_userspace
1424paranoid_swapgs:
1425 TRACE_IRQS_IRETQ 0
1426 SWAPGS_UNSAFE_STACK
Steven Rostedt0300e7f12009-04-17 08:33:52 -04001427 RESTORE_ALL 8
1428 jmp irq_return
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001429paranoid_restore:
Steven Rostedt0300e7f12009-04-17 08:33:52 -04001430 TRACE_IRQS_IRETQ 0
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001431 RESTORE_ALL 8
1432 jmp irq_return
1433paranoid_userspace:
1434 GET_THREAD_INFO(%rcx)
1435 movl TI_flags(%rcx),%ebx
1436 andl $_TIF_WORK_MASK,%ebx
1437 jz paranoid_swapgs
1438 movq %rsp,%rdi /* &pt_regs */
1439 call sync_regs
1440 movq %rax,%rsp /* switch stack for scheduling */
1441 testl $_TIF_NEED_RESCHED,%ebx
1442 jnz paranoid_schedule
1443 movl %ebx,%edx /* arg3: thread flags */
1444 TRACE_IRQS_ON
1445 ENABLE_INTERRUPTS(CLBR_NONE)
1446 xorl %esi,%esi /* arg2: oldset */
1447 movq %rsp,%rdi /* arg1: &pt_regs */
1448 call do_notify_resume
1449 DISABLE_INTERRUPTS(CLBR_NONE)
1450 TRACE_IRQS_OFF
1451 jmp paranoid_userspace
1452paranoid_schedule:
1453 TRACE_IRQS_ON
1454 ENABLE_INTERRUPTS(CLBR_ANY)
1455 call schedule
1456 DISABLE_INTERRUPTS(CLBR_ANY)
1457 TRACE_IRQS_OFF
1458 jmp paranoid_userspace
1459 CFI_ENDPROC
1460END(paranoid_exit)
1461
1462/*
1463 * Exception entry point. This expects an error code/orig_rax on the stack.
1464 * returns in "no swapgs flag" in %ebx.
1465 */
1466ENTRY(error_entry)
1467 XCPT_FRAME
1468 CFI_ADJUST_CFA_OFFSET 15*8
1469 /* oldrax contains error code */
1470 cld
1471 movq_cfi rdi, RDI+8
1472 movq_cfi rsi, RSI+8
1473 movq_cfi rdx, RDX+8
1474 movq_cfi rcx, RCX+8
1475 movq_cfi rax, RAX+8
1476 movq_cfi r8, R8+8
1477 movq_cfi r9, R9+8
1478 movq_cfi r10, R10+8
1479 movq_cfi r11, R11+8
1480 movq_cfi rbx, RBX+8
1481 movq_cfi rbp, RBP+8
1482 movq_cfi r12, R12+8
1483 movq_cfi r13, R13+8
1484 movq_cfi r14, R14+8
1485 movq_cfi r15, R15+8
1486 xorl %ebx,%ebx
1487 testl $3,CS+8(%rsp)
1488 je error_kernelspace
1489error_swapgs:
1490 SWAPGS
1491error_sti:
1492 TRACE_IRQS_OFF
1493 ret
1494 CFI_ENDPROC
1495
1496/*
1497 * There are two places in the kernel that can potentially fault with
1498 * usergs. Handle them here. The exception handlers after iret run with
1499 * kernel gs again, so don't set the user space flag. B stepping K8s
1500 * sometimes report an truncated RIP for IRET exceptions returning to
1501 * compat mode. Check for these here too.
1502 */
1503error_kernelspace:
1504 incl %ebx
1505 leaq irq_return(%rip),%rcx
1506 cmpq %rcx,RIP+8(%rsp)
1507 je error_swapgs
1508 movl %ecx,%ecx /* zero extend */
1509 cmpq %rcx,RIP+8(%rsp)
1510 je error_swapgs
1511 cmpq $gs_change,RIP+8(%rsp)
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001512 je error_swapgs
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001513 jmp error_sti
1514END(error_entry)
1515
1516
1517/* ebx: no swapgs flag (1: don't need swapgs, 0: need it) */
1518ENTRY(error_exit)
1519 DEFAULT_FRAME
1520 movl %ebx,%eax
1521 RESTORE_REST
1522 DISABLE_INTERRUPTS(CLBR_NONE)
1523 TRACE_IRQS_OFF
1524 GET_THREAD_INFO(%rcx)
1525 testl %eax,%eax
1526 jne retint_kernel
1527 LOCKDEP_SYS_EXIT_IRQ
1528 movl TI_flags(%rcx),%edx
1529 movl $_TIF_WORK_MASK,%edi
1530 andl %edi,%edx
1531 jnz retint_careful
1532 jmp retint_swapgs
1533 CFI_ENDPROC
1534END(error_exit)
1535
1536
1537 /* runs on exception stack */
1538ENTRY(nmi)
1539 INTR_FRAME
1540 PARAVIRT_ADJUST_EXCEPTION_FRAME
1541 pushq_cfi $-1
1542 subq $15*8, %rsp
1543 CFI_ADJUST_CFA_OFFSET 15*8
1544 call save_paranoid
1545 DEFAULT_FRAME 0
1546 /* paranoidentry do_nmi, 0; without TRACE_IRQS_OFF */
1547 movq %rsp,%rdi
1548 movq $-1,%rsi
1549 call do_nmi
1550#ifdef CONFIG_TRACE_IRQFLAGS
1551 /* paranoidexit; without TRACE_IRQS_OFF */
1552 /* ebx: no swapgs flag */
1553 DISABLE_INTERRUPTS(CLBR_NONE)
1554 testl %ebx,%ebx /* swapgs needed? */
1555 jnz nmi_restore
1556 testl $3,CS(%rsp)
1557 jnz nmi_userspace
1558nmi_swapgs:
1559 SWAPGS_UNSAFE_STACK
1560nmi_restore:
1561 RESTORE_ALL 8
1562 jmp irq_return
1563nmi_userspace:
1564 GET_THREAD_INFO(%rcx)
1565 movl TI_flags(%rcx),%ebx
1566 andl $_TIF_WORK_MASK,%ebx
1567 jz nmi_swapgs
1568 movq %rsp,%rdi /* &pt_regs */
1569 call sync_regs
1570 movq %rax,%rsp /* switch stack for scheduling */
1571 testl $_TIF_NEED_RESCHED,%ebx
1572 jnz nmi_schedule
1573 movl %ebx,%edx /* arg3: thread flags */
1574 ENABLE_INTERRUPTS(CLBR_NONE)
1575 xorl %esi,%esi /* arg2: oldset */
1576 movq %rsp,%rdi /* arg1: &pt_regs */
1577 call do_notify_resume
1578 DISABLE_INTERRUPTS(CLBR_NONE)
1579 jmp nmi_userspace
1580nmi_schedule:
1581 ENABLE_INTERRUPTS(CLBR_ANY)
1582 call schedule
1583 DISABLE_INTERRUPTS(CLBR_ANY)
1584 jmp nmi_userspace
1585 CFI_ENDPROC
1586#else
1587 jmp paranoid_exit
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001588 CFI_ENDPROC
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001589#endif
1590END(nmi)
1591
1592ENTRY(ignore_sysret)
1593 CFI_STARTPROC
1594 mov $-ENOSYS,%eax
1595 sysret
1596 CFI_ENDPROC
1597END(ignore_sysret)
1598
1599/*
1600 * End of kprobes section
1601 */
1602 .popsection