blob: 8851a2bb8c0b6b5c6f49d329ccd4751685ac5b2c [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 */
298ENTRY(save_args)
299 XCPT_FRAME
300 cld
Ingo Molnar14ae22b2008-11-21 15:20:47 +0100301 movq_cfi rdi, RDI+16-ARGOFFSET
302 movq_cfi rsi, RSI+16-ARGOFFSET
303 movq_cfi rdx, RDX+16-ARGOFFSET
304 movq_cfi rcx, RCX+16-ARGOFFSET
305 movq_cfi rax, RAX+16-ARGOFFSET
306 movq_cfi r8, R8+16-ARGOFFSET
307 movq_cfi r9, R9+16-ARGOFFSET
308 movq_cfi r10, R10+16-ARGOFFSET
309 movq_cfi r11, R11+16-ARGOFFSET
310
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100311 leaq -ARGOFFSET+16(%rsp),%rdi /* arg1 for handler */
Ingo Molnar14ae22b2008-11-21 15:20:47 +0100312 movq_cfi rbp, 8 /* push %rbp */
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100313 leaq 8(%rsp), %rbp /* mov %rsp, %ebp */
314 testl $3, CS(%rdi)
315 je 1f
316 SWAPGS
317 /*
Brian Gerst56895532009-01-19 00:38:58 +0900318 * irq_count is used to check if a CPU is already on an interrupt stack
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100319 * or not. While this is essentially redundant with preempt_count it is
320 * a little cheaper to use a separate counter in the PDA (short of
321 * moving irq_enter into assembly, which would be too much work)
322 */
Brian Gerst56895532009-01-19 00:38:58 +09003231: incl PER_CPU_VAR(irq_count)
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100324 jne 2f
Ingo Molnar14ae22b2008-11-21 15:20:47 +0100325 popq_cfi %rax /* move return address... */
Brian Gerst26f80bd2009-01-19 00:38:58 +0900326 mov PER_CPU_VAR(irq_stack_ptr),%rsp
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100327 EMPTY_FRAME 0
Martin Hicksa67798c2009-01-30 10:50:54 -0600328 pushq_cfi %rbp /* backlink for unwinder */
Ingo Molnar14ae22b2008-11-21 15:20:47 +0100329 pushq_cfi %rax /* ... to the new stack */
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100330 /*
331 * We entered an interrupt context - irqs are off:
332 */
3332: TRACE_IRQS_OFF
334 ret
335 CFI_ENDPROC
336END(save_args)
337
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100338ENTRY(save_rest)
339 PARTIAL_FRAME 1 REST_SKIP+8
340 movq 5*8+16(%rsp), %r11 /* save return address */
341 movq_cfi rbx, RBX+16
342 movq_cfi rbp, RBP+16
343 movq_cfi r12, R12+16
344 movq_cfi r13, R13+16
345 movq_cfi r14, R14+16
346 movq_cfi r15, R15+16
347 movq %r11, 8(%rsp) /* return address */
348 FIXUP_TOP_OF_STACK %r11, 16
349 ret
350 CFI_ENDPROC
351END(save_rest)
352
Alexander van Heukelume2f6bc22008-11-21 16:43:18 +0100353/* save complete stack frame */
Jan Beulichc2810182009-03-12 10:38:55 +0000354 .pushsection .kprobes.text, "ax"
Alexander van Heukelume2f6bc22008-11-21 16:43:18 +0100355ENTRY(save_paranoid)
356 XCPT_FRAME 1 RDI+8
357 cld
358 movq_cfi rdi, RDI+8
359 movq_cfi rsi, RSI+8
360 movq_cfi rdx, RDX+8
361 movq_cfi rcx, RCX+8
362 movq_cfi rax, RAX+8
363 movq_cfi r8, R8+8
364 movq_cfi r9, R9+8
365 movq_cfi r10, R10+8
366 movq_cfi r11, R11+8
367 movq_cfi rbx, RBX+8
368 movq_cfi rbp, RBP+8
369 movq_cfi r12, R12+8
370 movq_cfi r13, R13+8
371 movq_cfi r14, R14+8
372 movq_cfi r15, R15+8
373 movl $1,%ebx
374 movl $MSR_GS_BASE,%ecx
375 rdmsr
376 testl %edx,%edx
377 js 1f /* negative -> in kernel */
378 SWAPGS
379 xorl %ebx,%ebx
3801: ret
381 CFI_ENDPROC
382END(save_paranoid)
Jan Beulichc2810182009-03-12 10:38:55 +0000383 .popsection
Alexander van Heukelume2f6bc22008-11-21 16:43:18 +0100384
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385/*
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100386 * A newly forked process directly context switches into this address.
387 *
388 * rdi: prev task we switched from
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100389 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390ENTRY(ret_from_fork)
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100391 DEFAULT_FRAME
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100392
Benjamin LaHaise7106a5a2009-01-10 23:00:22 -0500393 LOCK ; btr $TIF_FORK,TI_flags(%r8)
394
Jan Beulichdf5d1872010-09-02 14:07:16 +0100395 pushq_cfi kernel_eflags(%rip)
396 popfq_cfi # reset kernel eflags
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100397
398 call schedule_tail # rdi: 'prev' task parameter
399
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 GET_THREAD_INFO(%rcx)
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100401
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 RESTORE_REST
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100403
404 testl $3, CS-ARGOFFSET(%rsp) # from kernel_thread?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 je int_ret_from_sys_call
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100406
407 testl $_TIF_IA32, TI_flags(%rcx) # 32-bit compat task needs IRET
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 jnz int_ret_from_sys_call
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100409
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100410 RESTORE_TOP_OF_STACK %rdi, -ARGOFFSET
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100411 jmp ret_from_sys_call # go to the SYSRET fastpath
412
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200414END(ret_from_fork)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
416/*
417 * System call entry. Upto 6 arguments in registers are supported.
418 *
419 * SYSCALL does not save anything on the stack and does not change the
420 * stack pointer.
421 */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100422
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423/*
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100424 * Register setup:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 * rax system call number
426 * rdi arg0
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100427 * rcx return address for syscall/sysret, C arg3
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 * rsi arg1
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100429 * rdx arg2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 * r10 arg3 (--> moved to rcx for C)
431 * r8 arg4
432 * r9 arg5
433 * r11 eflags for syscall/sysret, temporary for C
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100434 * r12-r15,rbp,rbx saved by C code, not touched.
435 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 * Interrupts are off on entry.
437 * Only called from user space.
438 *
439 * XXX if we had a free scratch register we could save the RSP into the stack frame
440 * and report it properly in ps. Unfortunately we haven't.
Andi Kleen7bf36bb2006-04-07 19:50:00 +0200441 *
442 * When user can change the frames always force IRET. That is because
443 * it deals with uncanonical addresses better. SYSRET has trouble
444 * with them due to bugs in both AMD and Intel CPUs.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100445 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
447ENTRY(system_call)
Jan Beulich7effaa82005-09-12 18:49:24 +0200448 CFI_STARTPROC simple
Jan Beulichadf14232006-09-26 10:52:41 +0200449 CFI_SIGNAL_FRAME
Brian Gerst9af45652009-01-19 00:38:58 +0900450 CFI_DEF_CFA rsp,KERNEL_STACK_OFFSET
Jan Beulich7effaa82005-09-12 18:49:24 +0200451 CFI_REGISTER rip,rcx
452 /*CFI_REGISTER rflags,r11*/
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100453 SWAPGS_UNSAFE_STACK
454 /*
455 * A hypervisor implementation might want to use a label
456 * after the swapgs, so that it can do the swapgs
457 * for the guest and jump here on syscall.
458 */
459ENTRY(system_call_after_swapgs)
460
Brian Gerst3d1e42a2009-01-19 00:38:58 +0900461 movq %rsp,PER_CPU_VAR(old_rsp)
Brian Gerst9af45652009-01-19 00:38:58 +0900462 movq PER_CPU_VAR(kernel_stack),%rsp
Ingo Molnar2601e642006-07-03 00:24:45 -0700463 /*
464 * No need to follow this irqs off/on section - it's straight
465 * and short:
466 */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100467 ENABLE_INTERRUPTS(CLBR_NONE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 SAVE_ARGS 8,1
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100469 movq %rax,ORIG_RAX-ARGOFFSET(%rsp)
Jan Beulich7effaa82005-09-12 18:49:24 +0200470 movq %rcx,RIP-ARGOFFSET(%rsp)
471 CFI_REL_OFFSET rip,RIP-ARGOFFSET
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 GET_THREAD_INFO(%rcx)
Roland McGrathd4d67152008-07-09 02:38:07 -0700473 testl $_TIF_WORK_SYSCALL_ENTRY,TI_flags(%rcx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 jnz tracesys
Roland McGrath86a1c342008-06-23 15:37:04 -0700475system_call_fastpath:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 cmpq $__NR_syscall_max,%rax
477 ja badsys
478 movq %r10,%rcx
479 call *sys_call_table(,%rax,8) # XXX: rip relative
480 movq %rax,RAX-ARGOFFSET(%rsp)
481/*
482 * Syscall return path ending with SYSRET (fast path)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100483 * Has incomplete stack frame and undefined top of stack.
484 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485ret_from_sys_call:
Andi Kleen11b854b2005-04-16 15:25:02 -0700486 movl $_TIF_ALLWORK_MASK,%edi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 /* edi: flagmask */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100488sysret_check:
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200489 LOCKDEP_SYS_EXIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 GET_THREAD_INFO(%rcx)
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100491 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700492 TRACE_IRQS_OFF
Glauber Costa26ccb8a2008-06-24 11:19:35 -0300493 movl TI_flags(%rcx),%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 andl %edi,%edx
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100495 jnz sysret_careful
Jan Beulichbcddc012006-12-07 02:14:02 +0100496 CFI_REMEMBER_STATE
Ingo Molnar2601e642006-07-03 00:24:45 -0700497 /*
498 * sysretq will re-enable interrupts:
499 */
500 TRACE_IRQS_ON
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 movq RIP-ARGOFFSET(%rsp),%rcx
Jan Beulich7effaa82005-09-12 18:49:24 +0200502 CFI_REGISTER rip,rcx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 RESTORE_ARGS 0,-ARG_SKIP,1
Jan Beulich7effaa82005-09-12 18:49:24 +0200504 /*CFI_REGISTER rflags,r11*/
Brian Gerst3d1e42a2009-01-19 00:38:58 +0900505 movq PER_CPU_VAR(old_rsp), %rsp
Jeremy Fitzhardinge2be29982008-06-25 00:19:28 -0400506 USERGS_SYSRET64
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
Jan Beulichbcddc012006-12-07 02:14:02 +0100508 CFI_RESTORE_STATE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 /* Handle reschedules */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100510 /* edx: work, edi: workmask */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511sysret_careful:
512 bt $TIF_NEED_RESCHED,%edx
513 jnc sysret_signal
Ingo Molnar2601e642006-07-03 00:24:45 -0700514 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100515 ENABLE_INTERRUPTS(CLBR_NONE)
Jan Beulichdf5d1872010-09-02 14:07:16 +0100516 pushq_cfi %rdi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 call schedule
Jan Beulichdf5d1872010-09-02 14:07:16 +0100518 popq_cfi %rdi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 jmp sysret_check
520
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100521 /* Handle a signal */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522sysret_signal:
Ingo Molnar2601e642006-07-03 00:24:45 -0700523 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100524 ENABLE_INTERRUPTS(CLBR_NONE)
Roland McGrath86a1c342008-06-23 15:37:04 -0700525#ifdef CONFIG_AUDITSYSCALL
526 bt $TIF_SYSCALL_AUDIT,%edx
527 jc sysret_audit
528#endif
Roland McGrathb60e7142009-09-22 16:46:34 -0700529 /*
530 * We have a signal, or exit tracing or single-step.
531 * These all wind up with the iret return path anyway,
532 * so just join that path right now.
533 */
534 FIXUP_TOP_OF_STACK %r11, -ARGOFFSET
535 jmp int_check_syscall_exit_work
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100536
Jan Beulich7effaa82005-09-12 18:49:24 +0200537badsys:
538 movq $-ENOSYS,RAX-ARGOFFSET(%rsp)
539 jmp ret_from_sys_call
540
Roland McGrath86a1c342008-06-23 15:37:04 -0700541#ifdef CONFIG_AUDITSYSCALL
542 /*
543 * Fast path for syscall audit without full syscall trace.
544 * We just call audit_syscall_entry() directly, and then
545 * jump back to the normal fast path.
546 */
547auditsys:
548 movq %r10,%r9 /* 6th arg: 4th syscall arg */
549 movq %rdx,%r8 /* 5th arg: 3rd syscall arg */
550 movq %rsi,%rcx /* 4th arg: 2nd syscall arg */
551 movq %rdi,%rdx /* 3rd arg: 1st syscall arg */
552 movq %rax,%rsi /* 2nd arg: syscall number */
553 movl $AUDIT_ARCH_X86_64,%edi /* 1st arg: audit arch */
554 call audit_syscall_entry
555 LOAD_ARGS 0 /* reload call-clobbered registers */
556 jmp system_call_fastpath
557
558 /*
559 * Return fast path for syscall audit. Call audit_syscall_exit()
560 * directly and then jump back to the fast path with TIF_SYSCALL_AUDIT
561 * masked off.
562 */
563sysret_audit:
Roland McGrath03275592010-07-21 17:44:12 -0700564 movq RAX-ARGOFFSET(%rsp),%rsi /* second arg, syscall return value */
565 cmpq $0,%rsi /* is it < 0? */
Roland McGrath86a1c342008-06-23 15:37:04 -0700566 setl %al /* 1 if so, 0 if not */
567 movzbl %al,%edi /* zero-extend that into %edi */
568 inc %edi /* first arg, 0->1(AUDITSC_SUCCESS), 1->2(AUDITSC_FAILURE) */
569 call audit_syscall_exit
570 movl $(_TIF_ALLWORK_MASK & ~_TIF_SYSCALL_AUDIT),%edi
571 jmp sysret_check
572#endif /* CONFIG_AUDITSYSCALL */
573
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 /* Do syscall tracing */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100575tracesys:
Roland McGrath86a1c342008-06-23 15:37:04 -0700576#ifdef CONFIG_AUDITSYSCALL
577 testl $(_TIF_WORK_SYSCALL_ENTRY & ~_TIF_SYSCALL_AUDIT),TI_flags(%rcx)
578 jz auditsys
579#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 SAVE_REST
Roland McGratha31f8dd2008-03-16 21:59:11 -0700581 movq $-ENOSYS,RAX(%rsp) /* ptrace can change this for a bad syscall */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 FIXUP_TOP_OF_STACK %rdi
583 movq %rsp,%rdi
584 call syscall_trace_enter
Roland McGrathd4d67152008-07-09 02:38:07 -0700585 /*
586 * Reload arg registers from stack in case ptrace changed them.
587 * We don't reload %rax because syscall_trace_enter() returned
588 * the value it wants us to use in the table lookup.
589 */
590 LOAD_ARGS ARGOFFSET, 1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 RESTORE_REST
592 cmpq $__NR_syscall_max,%rax
Roland McGratha31f8dd2008-03-16 21:59:11 -0700593 ja int_ret_from_sys_call /* RAX(%rsp) set to -ENOSYS above */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 movq %r10,%rcx /* fixup for C */
595 call *sys_call_table(,%rax,8)
Roland McGratha31f8dd2008-03-16 21:59:11 -0700596 movq %rax,RAX-ARGOFFSET(%rsp)
Andi Kleen7bf36bb2006-04-07 19:50:00 +0200597 /* Use IRET because user could have changed frame */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100598
599/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 * Syscall return path ending with IRET.
601 * Has correct top of stack, but partial stack frame.
Jan Beulichbcddc012006-12-07 02:14:02 +0100602 */
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +0300603GLOBAL(int_ret_from_sys_call)
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100604 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700605 TRACE_IRQS_OFF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 testl $3,CS-ARGOFFSET(%rsp)
607 je retint_restore_args
608 movl $_TIF_ALLWORK_MASK,%edi
609 /* edi: mask to check */
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +0300610GLOBAL(int_with_check)
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200611 LOCKDEP_SYS_EXIT_IRQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 GET_THREAD_INFO(%rcx)
Glauber Costa26ccb8a2008-06-24 11:19:35 -0300613 movl TI_flags(%rcx),%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 andl %edi,%edx
615 jnz int_careful
Glauber Costa26ccb8a2008-06-24 11:19:35 -0300616 andl $~TS_COMPAT,TI_status(%rcx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 jmp retint_swapgs
618
619 /* Either reschedule or signal or syscall exit tracking needed. */
620 /* First do a reschedule test. */
621 /* edx: work, edi: workmask */
622int_careful:
623 bt $TIF_NEED_RESCHED,%edx
624 jnc int_very_careful
Ingo Molnar2601e642006-07-03 00:24:45 -0700625 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100626 ENABLE_INTERRUPTS(CLBR_NONE)
Jan Beulichdf5d1872010-09-02 14:07:16 +0100627 pushq_cfi %rdi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 call schedule
Jan Beulichdf5d1872010-09-02 14:07:16 +0100629 popq_cfi %rdi
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100630 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700631 TRACE_IRQS_OFF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 jmp int_with_check
633
634 /* handle signals and tracing -- both require a full stack frame */
635int_very_careful:
Ingo Molnar2601e642006-07-03 00:24:45 -0700636 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100637 ENABLE_INTERRUPTS(CLBR_NONE)
Roland McGrathb60e7142009-09-22 16:46:34 -0700638int_check_syscall_exit_work:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 SAVE_REST
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100640 /* Check for syscall exit trace */
Roland McGrathd4d67152008-07-09 02:38:07 -0700641 testl $_TIF_WORK_SYSCALL_EXIT,%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 jz int_signal
Jan Beulichdf5d1872010-09-02 14:07:16 +0100643 pushq_cfi %rdi
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100644 leaq 8(%rsp),%rdi # &ptregs -> arg1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 call syscall_trace_leave
Jan Beulichdf5d1872010-09-02 14:07:16 +0100646 popq_cfi %rdi
Roland McGrathd4d67152008-07-09 02:38:07 -0700647 andl $~(_TIF_WORK_SYSCALL_EXIT|_TIF_SYSCALL_EMU),%edi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 jmp int_restore_rest
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100649
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650int_signal:
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100651 testl $_TIF_DO_NOTIFY_MASK,%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 jz 1f
653 movq %rsp,%rdi # &ptregs -> arg1
654 xorl %esi,%esi # oldset -> arg2
655 call do_notify_resume
Roland McGratheca91e72008-07-10 14:50:39 -07006561: movl $_TIF_WORK_MASK,%edi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657int_restore_rest:
658 RESTORE_REST
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100659 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700660 TRACE_IRQS_OFF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 jmp int_with_check
662 CFI_ENDPROC
Jan Beulichbcddc012006-12-07 02:14:02 +0100663END(system_call)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100664
665/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 * Certain special system calls that need to save a complete full stack frame.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100667 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 .macro PTREGSCALL label,func,arg
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100669ENTRY(\label)
670 PARTIAL_FRAME 1 8 /* offset 8: return address */
671 subq $REST_SKIP, %rsp
672 CFI_ADJUST_CFA_OFFSET REST_SKIP
673 call save_rest
674 DEFAULT_FRAME 0 8 /* offset 8: return address */
675 leaq 8(%rsp), \arg /* pt_regs pointer */
676 call \func
677 jmp ptregscall_common
678 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200679END(\label)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 .endm
681
682 PTREGSCALL stub_clone, sys_clone, %r8
683 PTREGSCALL stub_fork, sys_fork, %rdi
684 PTREGSCALL stub_vfork, sys_vfork, %rdi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 PTREGSCALL stub_sigaltstack, sys_sigaltstack, %rdx
686 PTREGSCALL stub_iopl, sys_iopl, %rsi
687
688ENTRY(ptregscall_common)
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100689 DEFAULT_FRAME 1 8 /* offset 8: return address */
690 RESTORE_TOP_OF_STACK %r11, 8
691 movq_cfi_restore R15+8, r15
692 movq_cfi_restore R14+8, r14
693 movq_cfi_restore R13+8, r13
694 movq_cfi_restore R12+8, r12
695 movq_cfi_restore RBP+8, rbp
696 movq_cfi_restore RBX+8, rbx
697 ret $REST_SKIP /* pop extended registers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200699END(ptregscall_common)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100700
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701ENTRY(stub_execve)
702 CFI_STARTPROC
Jan Beuliche6b04b62010-09-02 13:52:45 +0100703 addq $8, %rsp
704 PARTIAL_FRAME 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 SAVE_REST
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 FIXUP_TOP_OF_STACK %r11
Ingo Molnar5d119b22008-02-26 12:55:57 +0100707 movq %rsp, %rcx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 call sys_execve
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 RESTORE_TOP_OF_STACK %r11
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 movq %rax,RAX(%rsp)
711 RESTORE_REST
712 jmp int_ret_from_sys_call
713 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200714END(stub_execve)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100715
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716/*
717 * sigreturn is special because it needs to restore all registers on return.
718 * This cannot be done with SYSRET, so use the IRET return path instead.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100719 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720ENTRY(stub_rt_sigreturn)
721 CFI_STARTPROC
Jan Beulich7effaa82005-09-12 18:49:24 +0200722 addq $8, %rsp
Jan Beuliche6b04b62010-09-02 13:52:45 +0100723 PARTIAL_FRAME 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 SAVE_REST
725 movq %rsp,%rdi
726 FIXUP_TOP_OF_STACK %r11
727 call sys_rt_sigreturn
728 movq %rax,RAX(%rsp) # fixme, this could be done at the higher layer
729 RESTORE_REST
730 jmp int_ret_from_sys_call
731 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200732END(stub_rt_sigreturn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
Jan Beulich7effaa82005-09-12 18:49:24 +0200734/*
H. Peter Anvin939b7872008-11-11 13:51:52 -0800735 * Build the entry stubs and pointer table with some assembler magic.
736 * We pack 7 stubs into a single 32-byte chunk, which will fit in a
737 * single cache line on all modern x86 implementations.
738 */
739 .section .init.rodata,"a"
740ENTRY(interrupt)
741 .text
742 .p2align 5
743 .p2align CONFIG_X86_L1_CACHE_SHIFT
744ENTRY(irq_entries_start)
745 INTR_FRAME
746vector=FIRST_EXTERNAL_VECTOR
747.rept (NR_VECTORS-FIRST_EXTERNAL_VECTOR+6)/7
748 .balign 32
749 .rept 7
750 .if vector < NR_VECTORS
H. Peter Anvin86655962008-11-12 10:27:35 -0800751 .if vector <> FIRST_EXTERNAL_VECTOR
H. Peter Anvin939b7872008-11-11 13:51:52 -0800752 CFI_ADJUST_CFA_OFFSET -8
753 .endif
Jan Beulichdf5d1872010-09-02 14:07:16 +01007541: pushq_cfi $(~vector+0x80) /* Note: always in signed byte range */
H. Peter Anvin86655962008-11-12 10:27:35 -0800755 .if ((vector-FIRST_EXTERNAL_VECTOR)%7) <> 6
H. Peter Anvin939b7872008-11-11 13:51:52 -0800756 jmp 2f
757 .endif
758 .previous
759 .quad 1b
760 .text
761vector=vector+1
762 .endif
763 .endr
7642: jmp common_interrupt
765.endr
766 CFI_ENDPROC
767END(irq_entries_start)
768
769.previous
770END(interrupt)
771.previous
772
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100773/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 * Interrupt entry/exit.
775 *
776 * Interrupt entry points save only callee clobbered registers in fast path.
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100777 *
778 * Entry runs with interrupts off.
779 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780
Alexander van Heukelum722024d2008-11-13 13:50:20 +0100781/* 0(%rsp): ~(interrupt number) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 .macro interrupt func
Jan Beulichb1cccb12010-09-02 13:55:11 +0100783 subq $ORIG_RAX-ARGOFFSET+8, %rsp
784 CFI_ADJUST_CFA_OFFSET ORIG_RAX-ARGOFFSET+8
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100785 call save_args
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100786 PARTIAL_FRAME 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 call \func
788 .endm
789
Masami Hiramatsu8222d712009-08-27 13:23:25 -0400790/*
791 * Interrupt entry/exit should be protected against kprobes
792 */
793 .pushsection .kprobes.text, "ax"
Alexander van Heukelum722024d2008-11-13 13:50:20 +0100794 /*
795 * The interrupt stubs push (~vector+0x80) onto the stack and
796 * then jump to common_interrupt.
797 */
H. Peter Anvin939b7872008-11-11 13:51:52 -0800798 .p2align CONFIG_X86_L1_CACHE_SHIFT
799common_interrupt:
Jan Beulich7effaa82005-09-12 18:49:24 +0200800 XCPT_FRAME
Alexander van Heukelum722024d2008-11-13 13:50:20 +0100801 addq $-0x80,(%rsp) /* Adjust vector to [-256,-1] range */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 interrupt do_IRQ
Brian Gerst3d1e42a2009-01-19 00:38:58 +0900803 /* 0(%rsp): old_rsp-ARGOFFSET */
Jan Beulich7effaa82005-09-12 18:49:24 +0200804ret_from_intr:
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100805 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700806 TRACE_IRQS_OFF
Brian Gerst56895532009-01-19 00:38:58 +0900807 decl PER_CPU_VAR(irq_count)
Jan Beulich1de9c3f2006-06-26 13:57:35 +0200808 leaveq
Jan Beulichdf5d1872010-09-02 14:07:16 +0100809 CFI_RESTORE rbp
Jan Beulich7effaa82005-09-12 18:49:24 +0200810 CFI_DEF_CFA_REGISTER rsp
Jan Beulich1de9c3f2006-06-26 13:57:35 +0200811 CFI_ADJUST_CFA_OFFSET -8
Jan Beulich7effaa82005-09-12 18:49:24 +0200812exit_intr:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 GET_THREAD_INFO(%rcx)
814 testl $3,CS-ARGOFFSET(%rsp)
815 je retint_kernel
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100816
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 /* Interrupt came from user space */
818 /*
819 * Has a correct top of stack, but a partial stack frame
820 * %rcx: thread info. Interrupts off.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100821 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822retint_with_reschedule:
823 movl $_TIF_WORK_MASK,%edi
Jan Beulich7effaa82005-09-12 18:49:24 +0200824retint_check:
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200825 LOCKDEP_SYS_EXIT_IRQ
Glauber Costa26ccb8a2008-06-24 11:19:35 -0300826 movl TI_flags(%rcx),%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 andl %edi,%edx
Jan Beulich7effaa82005-09-12 18:49:24 +0200828 CFI_REMEMBER_STATE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 jnz retint_careful
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200830
831retint_swapgs: /* return to user-space */
Ingo Molnar2601e642006-07-03 00:24:45 -0700832 /*
833 * The iretq could re-enable interrupts:
834 */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100835 DISABLE_INTERRUPTS(CLBR_ANY)
Ingo Molnar2601e642006-07-03 00:24:45 -0700836 TRACE_IRQS_IRETQ
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100837 SWAPGS
Ingo Molnar2601e642006-07-03 00:24:45 -0700838 jmp restore_args
839
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200840retint_restore_args: /* return to kernel space */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100841 DISABLE_INTERRUPTS(CLBR_ANY)
Ingo Molnar2601e642006-07-03 00:24:45 -0700842 /*
843 * The iretq could re-enable interrupts:
844 */
845 TRACE_IRQS_IRETQ
846restore_args:
Ingo Molnar3701d8632008-02-09 23:24:08 +0100847 RESTORE_ARGS 0,8,0
848
Adrian Bunkf7f3d792008-02-13 23:29:53 +0200849irq_return:
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100850 INTERRUPT_RETURN
Ingo Molnar3701d8632008-02-09 23:24:08 +0100851
852 .section __ex_table, "a"
853 .quad irq_return, bad_iret
854 .previous
855
856#ifdef CONFIG_PARAVIRT
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100857ENTRY(native_iret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 iretq
859
860 .section __ex_table,"a"
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100861 .quad native_iret, bad_iret
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 .previous
Ingo Molnar3701d8632008-02-09 23:24:08 +0100863#endif
864
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 .section .fixup,"ax"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866bad_iret:
Roland McGrath3aa4b372008-02-06 22:39:43 +0100867 /*
868 * The iret traps when the %cs or %ss being restored is bogus.
869 * We've lost the original trap vector and error code.
870 * #GPF is the most likely one to get for an invalid selector.
871 * So pretend we completed the iret and took the #GPF in user mode.
872 *
873 * We are now running with the kernel GS after exception recovery.
874 * But error_entry expects us to have user GS to match the user %cs,
875 * so swap back.
876 */
877 pushq $0
878
879 SWAPGS
880 jmp general_protection
881
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100882 .previous
883
Jan Beulich7effaa82005-09-12 18:49:24 +0200884 /* edi: workmask, edx: work */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885retint_careful:
Jan Beulich7effaa82005-09-12 18:49:24 +0200886 CFI_RESTORE_STATE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 bt $TIF_NEED_RESCHED,%edx
888 jnc retint_signal
Ingo Molnar2601e642006-07-03 00:24:45 -0700889 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100890 ENABLE_INTERRUPTS(CLBR_NONE)
Jan Beulichdf5d1872010-09-02 14:07:16 +0100891 pushq_cfi %rdi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 call schedule
Jan Beulichdf5d1872010-09-02 14:07:16 +0100893 popq_cfi %rdi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 GET_THREAD_INFO(%rcx)
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100895 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700896 TRACE_IRQS_OFF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 jmp retint_check
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100898
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899retint_signal:
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100900 testl $_TIF_DO_NOTIFY_MASK,%edx
Andi Kleen10ffdbb2005-05-16 21:53:19 -0700901 jz retint_swapgs
Ingo Molnar2601e642006-07-03 00:24:45 -0700902 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100903 ENABLE_INTERRUPTS(CLBR_NONE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 SAVE_REST
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100905 movq $-1,ORIG_RAX(%rsp)
Andi Kleen3829ee62005-07-28 21:15:48 -0700906 xorl %esi,%esi # oldset
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 movq %rsp,%rdi # &pt_regs
908 call do_notify_resume
909 RESTORE_REST
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100910 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700911 TRACE_IRQS_OFF
Andi Kleenbe9e6872005-05-01 08:58:51 -0700912 GET_THREAD_INFO(%rcx)
Roland McGratheca91e72008-07-10 14:50:39 -0700913 jmp retint_with_reschedule
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914
915#ifdef CONFIG_PREEMPT
916 /* Returning to kernel space. Check if we need preemption */
917 /* rcx: threadinfo. interrupts off. */
Andi Kleenb06baba2006-09-26 10:52:29 +0200918ENTRY(retint_kernel)
Glauber Costa26ccb8a2008-06-24 11:19:35 -0300919 cmpl $0,TI_preempt_count(%rcx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 jnz retint_restore_args
Glauber Costa26ccb8a2008-06-24 11:19:35 -0300921 bt $TIF_NEED_RESCHED,TI_flags(%rcx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 jnc retint_restore_args
923 bt $9,EFLAGS-ARGOFFSET(%rsp) /* interrupts off? */
924 jnc retint_restore_args
925 call preempt_schedule_irq
926 jmp exit_intr
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100927#endif
Jan Beulich4b787e02006-06-26 13:56:55 +0200928
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200930END(common_interrupt)
Masami Hiramatsu8222d712009-08-27 13:23:25 -0400931/*
932 * End of kprobes section
933 */
934 .popsection
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100935
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936/*
937 * APIC interrupts.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100938 */
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100939.macro apicinterrupt num sym do_sym
940ENTRY(\sym)
Jan Beulich7effaa82005-09-12 18:49:24 +0200941 INTR_FRAME
Jan Beulichdf5d1872010-09-02 14:07:16 +0100942 pushq_cfi $~(\num)
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100943 interrupt \do_sym
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 jmp ret_from_intr
945 CFI_ENDPROC
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100946END(\sym)
947.endm
Jacob Shin89b831e2005-11-05 17:25:53 +0100948
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100949#ifdef CONFIG_SMP
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100950apicinterrupt IRQ_MOVE_CLEANUP_VECTOR \
951 irq_move_cleanup_interrupt smp_irq_move_cleanup_interrupt
Andi Kleen4ef702c2009-05-27 21:56:52 +0200952apicinterrupt REBOOT_VECTOR \
953 reboot_interrupt smp_reboot_interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954#endif
955
Nick Piggin03b48632009-01-20 04:36:04 +0100956#ifdef CONFIG_X86_UV
Cyrill Gorcunov5ae3a132008-11-27 00:02:10 +0300957apicinterrupt UV_BAU_MESSAGE \
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100958 uv_bau_message_intr1 uv_bau_message_interrupt
Nick Piggin03b48632009-01-20 04:36:04 +0100959#endif
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100960apicinterrupt LOCAL_TIMER_VECTOR \
961 apic_timer_interrupt smp_apic_timer_interrupt
Dimitri Sivanich4a4de9c2009-10-14 09:22:57 -0500962apicinterrupt X86_PLATFORM_IPI_VECTOR \
963 x86_platform_ipi smp_x86_platform_ipi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100965#ifdef CONFIG_SMP
966apicinterrupt INVALIDATE_TLB_VECTOR_START+0 \
967 invalidate_interrupt0 smp_invalidate_interrupt
968apicinterrupt INVALIDATE_TLB_VECTOR_START+1 \
969 invalidate_interrupt1 smp_invalidate_interrupt
970apicinterrupt INVALIDATE_TLB_VECTOR_START+2 \
971 invalidate_interrupt2 smp_invalidate_interrupt
972apicinterrupt INVALIDATE_TLB_VECTOR_START+3 \
973 invalidate_interrupt3 smp_invalidate_interrupt
974apicinterrupt INVALIDATE_TLB_VECTOR_START+4 \
975 invalidate_interrupt4 smp_invalidate_interrupt
976apicinterrupt INVALIDATE_TLB_VECTOR_START+5 \
977 invalidate_interrupt5 smp_invalidate_interrupt
978apicinterrupt INVALIDATE_TLB_VECTOR_START+6 \
979 invalidate_interrupt6 smp_invalidate_interrupt
980apicinterrupt INVALIDATE_TLB_VECTOR_START+7 \
981 invalidate_interrupt7 smp_invalidate_interrupt
982#endif
Cliff Wickman18129242008-06-02 08:56:14 -0500983
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100984apicinterrupt THRESHOLD_APIC_VECTOR \
Andi Kleen7856f6c2009-04-28 23:32:56 +0200985 threshold_interrupt smp_threshold_interrupt
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100986apicinterrupt THERMAL_APIC_VECTOR \
987 thermal_interrupt smp_thermal_interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988
Andi Kleenccc3c312009-05-27 21:56:54 +0200989#ifdef CONFIG_X86_MCE
990apicinterrupt MCE_SELF_VECTOR \
991 mce_self_interrupt smp_mce_self_interrupt
992#endif
993
Alexander van Heukelum322648d2008-11-23 10:08:28 +0100994#ifdef CONFIG_SMP
995apicinterrupt CALL_FUNCTION_SINGLE_VECTOR \
996 call_function_single_interrupt smp_call_function_single_interrupt
997apicinterrupt CALL_FUNCTION_VECTOR \
998 call_function_interrupt smp_call_function_interrupt
999apicinterrupt RESCHEDULE_VECTOR \
1000 reschedule_interrupt smp_reschedule_interrupt
1001#endif
1002
1003apicinterrupt ERROR_APIC_VECTOR \
1004 error_interrupt smp_error_interrupt
1005apicinterrupt SPURIOUS_APIC_VECTOR \
1006 spurious_interrupt smp_spurious_interrupt
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001007
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001008#ifdef CONFIG_PERF_EVENTS
Peter Zijlstrab6276f32009-04-06 11:45:03 +02001009apicinterrupt LOCAL_PENDING_VECTOR \
1010 perf_pending_interrupt smp_perf_pending_interrupt
Ingo Molnar241771e2008-12-03 10:39:53 +01001011#endif
1012
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013/*
1014 * Exception entry points.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001015 */
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001016.macro zeroentry sym do_sym
1017ENTRY(\sym)
Jan Beulich7effaa82005-09-12 18:49:24 +02001018 INTR_FRAME
Jeremy Fitzhardingefab58422008-06-25 00:19:31 -04001019 PARAVIRT_ADJUST_EXCEPTION_FRAME
Ingo Molnar14ae22b2008-11-21 15:20:47 +01001020 pushq_cfi $-1 /* ORIG_RAX: no syscall to restart */
Jan Beulichb1cccb12010-09-02 13:55:11 +01001021 subq $ORIG_RAX-R15, %rsp
1022 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
Alexander van Heukelumd99015b2008-11-19 01:18:11 +01001023 call error_entry
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +01001024 DEFAULT_FRAME 0
Alexander van Heukelumd99015b2008-11-19 01:18:11 +01001025 movq %rsp,%rdi /* pt_regs pointer */
1026 xorl %esi,%esi /* no error code */
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001027 call \do_sym
Alexander van Heukelumd99015b2008-11-19 01:18:11 +01001028 jmp error_exit /* %ebx: no swapgs flag */
Jan Beulich7effaa82005-09-12 18:49:24 +02001029 CFI_ENDPROC
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001030END(\sym)
1031.endm
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001033.macro paranoidzeroentry sym do_sym
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001034ENTRY(\sym)
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001035 INTR_FRAME
1036 PARAVIRT_ADJUST_EXCEPTION_FRAME
Jan Beulichb1cccb12010-09-02 13:55:11 +01001037 pushq_cfi $-1 /* ORIG_RAX: no syscall to restart */
1038 subq $ORIG_RAX-R15, %rsp
1039 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001040 call save_paranoid
1041 TRACE_IRQS_OFF
1042 movq %rsp,%rdi /* pt_regs pointer */
1043 xorl %esi,%esi /* no error code */
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001044 call \do_sym
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001045 jmp paranoid_exit /* %ebx: no swapgs flag */
1046 CFI_ENDPROC
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001047END(\sym)
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001048.endm
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001049
Brian Gerstc15a5952010-07-31 12:48:22 -04001050#define INIT_TSS_IST(x) PER_CPU_VAR(init_tss) + (TSS_ist + ((x) - 1) * 8)
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001051.macro paranoidzeroentry_ist sym do_sym ist
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001052ENTRY(\sym)
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001053 INTR_FRAME
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001054 PARAVIRT_ADJUST_EXCEPTION_FRAME
Jan Beulichb1cccb12010-09-02 13:55:11 +01001055 pushq_cfi $-1 /* ORIG_RAX: no syscall to restart */
1056 subq $ORIG_RAX-R15, %rsp
1057 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001058 call save_paranoid
1059 TRACE_IRQS_OFF
1060 movq %rsp,%rdi /* pt_regs pointer */
1061 xorl %esi,%esi /* no error code */
Brian Gerstc15a5952010-07-31 12:48:22 -04001062 subq $EXCEPTION_STKSZ, INIT_TSS_IST(\ist)
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001063 call \do_sym
Brian Gerstc15a5952010-07-31 12:48:22 -04001064 addq $EXCEPTION_STKSZ, INIT_TSS_IST(\ist)
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001065 jmp paranoid_exit /* %ebx: no swapgs flag */
1066 CFI_ENDPROC
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001067END(\sym)
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001068.endm
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001069
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001070.macro errorentry sym do_sym
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001071ENTRY(\sym)
Jan Beulich7effaa82005-09-12 18:49:24 +02001072 XCPT_FRAME
Jeremy Fitzhardingefab58422008-06-25 00:19:31 -04001073 PARAVIRT_ADJUST_EXCEPTION_FRAME
Jan Beulichb1cccb12010-09-02 13:55:11 +01001074 subq $ORIG_RAX-R15, %rsp
1075 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
Alexander van Heukelumd99015b2008-11-19 01:18:11 +01001076 call error_entry
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +01001077 DEFAULT_FRAME 0
Alexander van Heukelumd99015b2008-11-19 01:18:11 +01001078 movq %rsp,%rdi /* pt_regs pointer */
1079 movq ORIG_RAX(%rsp),%rsi /* get error code */
1080 movq $-1,ORIG_RAX(%rsp) /* no syscall to restart */
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001081 call \do_sym
Alexander van Heukelumd99015b2008-11-19 01:18:11 +01001082 jmp error_exit /* %ebx: no swapgs flag */
Jan Beulich7effaa82005-09-12 18:49:24 +02001083 CFI_ENDPROC
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001084END(\sym)
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001085.endm
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086
1087 /* error code is on the stack already */
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001088.macro paranoiderrorentry sym do_sym
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001089ENTRY(\sym)
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001090 XCPT_FRAME
1091 PARAVIRT_ADJUST_EXCEPTION_FRAME
Jan Beulichb1cccb12010-09-02 13:55:11 +01001092 subq $ORIG_RAX-R15, %rsp
1093 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
Alexander van Heukelume2f6bc22008-11-21 16:43:18 +01001094 call save_paranoid
1095 DEFAULT_FRAME 0
Alexander van Heukelum7e61a792008-09-26 14:03:03 +02001096 TRACE_IRQS_OFF
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001097 movq %rsp,%rdi /* pt_regs pointer */
1098 movq ORIG_RAX(%rsp),%rsi /* get error code */
1099 movq $-1,ORIG_RAX(%rsp) /* no syscall to restart */
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001100 call \do_sym
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001101 jmp paranoid_exit /* %ebx: no swapgs flag */
1102 CFI_ENDPROC
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001103END(\sym)
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001104.endm
1105
1106zeroentry divide_error do_divide_error
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001107zeroentry overflow do_overflow
1108zeroentry bounds do_bounds
1109zeroentry invalid_op do_invalid_op
1110zeroentry device_not_available do_device_not_available
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001111paranoiderrorentry double_fault do_double_fault
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001112zeroentry coprocessor_segment_overrun do_coprocessor_segment_overrun
1113errorentry invalid_TSS do_invalid_TSS
1114errorentry segment_not_present do_segment_not_present
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001115zeroentry spurious_interrupt_bug do_spurious_interrupt_bug
1116zeroentry coprocessor_error do_coprocessor_error
1117errorentry alignment_check do_alignment_check
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001118zeroentry simd_coprocessor_error do_simd_coprocessor_error
Ingo Molnar2601e642006-07-03 00:24:45 -07001119
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001120 /* Reload gs selector with exception handling */
1121 /* edi: new selector */
Jeremy Fitzhardinge9f9d4892008-06-25 00:19:32 -04001122ENTRY(native_load_gs_index)
Jan Beulich7effaa82005-09-12 18:49:24 +02001123 CFI_STARTPROC
Jan Beulichdf5d1872010-09-02 14:07:16 +01001124 pushfq_cfi
Jeremy Fitzhardingeb8aa2872009-01-28 14:35:03 -08001125 DISABLE_INTERRUPTS(CLBR_ANY & ~CLBR_RDI)
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001126 SWAPGS
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001127gs_change:
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001128 movl %edi,%gs
Linus Torvalds1da177e2005-04-16 15:20:36 -070011292: mfence /* workaround */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +01001130 SWAPGS
Jan Beulichdf5d1872010-09-02 14:07:16 +01001131 popfq_cfi
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001132 ret
Jan Beulich7effaa82005-09-12 18:49:24 +02001133 CFI_ENDPROC
Alexander van Heukelum6efdcfa2008-11-23 10:15:32 +01001134END(native_load_gs_index)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001135
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001136 .section __ex_table,"a"
1137 .align 8
1138 .quad gs_change,bad_gs
1139 .previous
1140 .section .fixup,"ax"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 /* running with kernelgs */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001142bad_gs:
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +01001143 SWAPGS /* switch back to user gs */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 xorl %eax,%eax
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001145 movl %eax,%gs
1146 jmp 2b
1147 .previous
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001148
Brian Gerst3bd95df2009-12-09 12:34:40 -05001149ENTRY(kernel_thread_helper)
Andi Kleenc05991e2006-08-30 19:37:08 +02001150 pushq $0 # fake return address
1151 CFI_STARTPROC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 /*
1153 * Here we are in the child and the registers are set as they were
1154 * at kernel_thread() invocation in the parent.
1155 */
Brian Gerst3bd95df2009-12-09 12:34:40 -05001156 call *%rsi
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 # exit
Andrey Mirkin1c5b5cf2007-10-17 18:04:33 +02001158 mov %eax, %edi
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 call do_exit
jia zhang5f5db592008-11-23 22:47:10 +08001160 ud2 # padding for call trace
Andi Kleenc05991e2006-08-30 19:37:08 +02001161 CFI_ENDPROC
Brian Gerst3bd95df2009-12-09 12:34:40 -05001162END(kernel_thread_helper)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163
1164/*
1165 * execve(). This function needs to use IRET, not SYSRET, to set up all state properly.
1166 *
1167 * C extern interface:
David Howellsc7887322010-08-11 11:26:22 +01001168 * extern long execve(const char *name, char **argv, char **envp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 *
1170 * asm input arguments:
1171 * rdi: name, rsi: argv, rdx: envp
1172 *
1173 * We want to fallback into:
David Howellsc7887322010-08-11 11:26:22 +01001174 * extern long sys_execve(const char *name, char **argv,char **envp, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 *
1176 * do_sys_execve asm fallback arguments:
Ingo Molnar5d119b22008-02-26 12:55:57 +01001177 * rdi: name, rsi: argv, rdx: envp, rcx: fake frame on the stack
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 */
Arnd Bergmann3db03b42006-10-02 02:18:31 -07001179ENTRY(kernel_execve)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 CFI_STARTPROC
1181 FAKE_STACK_FRAME $0
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001182 SAVE_ALL
Ingo Molnar5d119b22008-02-26 12:55:57 +01001183 movq %rsp,%rcx
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 call sys_execve
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001185 movq %rax, RAX(%rsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 RESTORE_REST
1187 testq %rax,%rax
1188 je int_ret_from_sys_call
1189 RESTORE_ARGS
1190 UNFAKE_STACK_FRAME
1191 ret
1192 CFI_ENDPROC
Alexander van Heukelum6efdcfa2008-11-23 10:15:32 +01001193END(kernel_execve)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194
Andi Kleen26995002006-08-02 22:37:28 +02001195/* Call softirq on interrupt stack. Interrupts are off. */
Andi Kleened6b6762005-07-28 21:15:49 -07001196ENTRY(call_softirq)
Jan Beulich7effaa82005-09-12 18:49:24 +02001197 CFI_STARTPROC
Jan Beulichdf5d1872010-09-02 14:07:16 +01001198 pushq_cfi %rbp
Andi Kleen26995002006-08-02 22:37:28 +02001199 CFI_REL_OFFSET rbp,0
1200 mov %rsp,%rbp
1201 CFI_DEF_CFA_REGISTER rbp
Brian Gerst56895532009-01-19 00:38:58 +09001202 incl PER_CPU_VAR(irq_count)
Brian Gerst26f80bd2009-01-19 00:38:58 +09001203 cmove PER_CPU_VAR(irq_stack_ptr),%rsp
Andi Kleen26995002006-08-02 22:37:28 +02001204 push %rbp # backlink for old unwinder
Andi Kleened6b6762005-07-28 21:15:49 -07001205 call __do_softirq
Andi Kleen26995002006-08-02 22:37:28 +02001206 leaveq
Jan Beulichdf5d1872010-09-02 14:07:16 +01001207 CFI_RESTORE rbp
Jan Beulich7effaa82005-09-12 18:49:24 +02001208 CFI_DEF_CFA_REGISTER rsp
Andi Kleen26995002006-08-02 22:37:28 +02001209 CFI_ADJUST_CFA_OFFSET -8
Brian Gerst56895532009-01-19 00:38:58 +09001210 decl PER_CPU_VAR(irq_count)
Andi Kleened6b6762005-07-28 21:15:49 -07001211 ret
Jan Beulich7effaa82005-09-12 18:49:24 +02001212 CFI_ENDPROC
Alexander van Heukelum6efdcfa2008-11-23 10:15:32 +01001213END(call_softirq)
Andi Kleen75154f42007-06-23 02:29:25 +02001214
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001215#ifdef CONFIG_XEN
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001216zeroentry xen_hypervisor_callback xen_do_hypervisor_callback
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001217
1218/*
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001219 * A note on the "critical region" in our callback handler.
1220 * We want to avoid stacking callback handlers due to events occurring
1221 * during handling of the last event. To do this, we keep events disabled
1222 * until we've done all processing. HOWEVER, we must enable events before
1223 * popping the stack frame (can't be done atomically) and so it would still
1224 * be possible to get enough handler activations to overflow the stack.
1225 * Although unlikely, bugs of that kind are hard to track down, so we'd
1226 * like to avoid the possibility.
1227 * So, on entry to the handler we detect whether we interrupted an
1228 * existing activation in its critical region -- if so, we pop the current
1229 * activation and restart the handler using the previous one.
1230 */
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001231ENTRY(xen_do_hypervisor_callback) # do_hypervisor_callback(struct *pt_regs)
1232 CFI_STARTPROC
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001233/*
1234 * Since we don't modify %rdi, evtchn_do_upall(struct *pt_regs) will
1235 * see the correct pointer to the pt_regs
1236 */
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001237 movq %rdi, %rsp # we don't return, adjust the stack frame
1238 CFI_ENDPROC
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +01001239 DEFAULT_FRAME
Brian Gerst56895532009-01-19 00:38:58 +0900124011: incl PER_CPU_VAR(irq_count)
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001241 movq %rsp,%rbp
1242 CFI_DEF_CFA_REGISTER rbp
Brian Gerst26f80bd2009-01-19 00:38:58 +09001243 cmovzq PER_CPU_VAR(irq_stack_ptr),%rsp
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001244 pushq %rbp # backlink for old unwinder
1245 call xen_evtchn_do_upcall
1246 popq %rsp
1247 CFI_DEF_CFA_REGISTER rsp
Brian Gerst56895532009-01-19 00:38:58 +09001248 decl PER_CPU_VAR(irq_count)
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001249 jmp error_exit
1250 CFI_ENDPROC
1251END(do_hypervisor_callback)
1252
1253/*
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001254 * Hypervisor uses this for application faults while it executes.
1255 * We get here for two reasons:
1256 * 1. Fault while reloading DS, ES, FS or GS
1257 * 2. Fault while executing IRET
1258 * Category 1 we do not need to fix up as Xen has already reloaded all segment
1259 * registers that could be reloaded and zeroed the others.
1260 * Category 2 we fix up by killing the current process. We cannot use the
1261 * normal Linux return path in this case because if we use the IRET hypercall
1262 * to pop the stack frame we end up in an infinite loop of failsafe callbacks.
1263 * We distinguish between categories by comparing each saved segment register
1264 * with its current contents: any discrepancy means we in category 1.
1265 */
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001266ENTRY(xen_failsafe_callback)
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +01001267 INTR_FRAME 1 (6*8)
1268 /*CFI_REL_OFFSET gs,GS*/
1269 /*CFI_REL_OFFSET fs,FS*/
1270 /*CFI_REL_OFFSET es,ES*/
1271 /*CFI_REL_OFFSET ds,DS*/
1272 CFI_REL_OFFSET r11,8
1273 CFI_REL_OFFSET rcx,0
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001274 movw %ds,%cx
1275 cmpw %cx,0x10(%rsp)
1276 CFI_REMEMBER_STATE
1277 jne 1f
1278 movw %es,%cx
1279 cmpw %cx,0x18(%rsp)
1280 jne 1f
1281 movw %fs,%cx
1282 cmpw %cx,0x20(%rsp)
1283 jne 1f
1284 movw %gs,%cx
1285 cmpw %cx,0x28(%rsp)
1286 jne 1f
1287 /* All segments match their saved values => Category 2 (Bad IRET). */
1288 movq (%rsp),%rcx
1289 CFI_RESTORE rcx
1290 movq 8(%rsp),%r11
1291 CFI_RESTORE r11
1292 addq $0x30,%rsp
1293 CFI_ADJUST_CFA_OFFSET -0x30
Ingo Molnar14ae22b2008-11-21 15:20:47 +01001294 pushq_cfi $0 /* RIP */
1295 pushq_cfi %r11
1296 pushq_cfi %rcx
Jeremy Fitzhardinge4a5c3e72008-07-08 15:07:09 -07001297 jmp general_protection
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001298 CFI_RESTORE_STATE
12991: /* Segment mismatch => Category 1 (Bad segment). Retry the IRET. */
1300 movq (%rsp),%rcx
1301 CFI_RESTORE rcx
1302 movq 8(%rsp),%r11
1303 CFI_RESTORE r11
1304 addq $0x30,%rsp
1305 CFI_ADJUST_CFA_OFFSET -0x30
Ingo Molnar14ae22b2008-11-21 15:20:47 +01001306 pushq_cfi $0
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001307 SAVE_ALL
1308 jmp error_exit
1309 CFI_ENDPROC
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001310END(xen_failsafe_callback)
1311
Sheng Yang38e20b02010-05-14 12:40:51 +01001312apicinterrupt XEN_HVM_EVTCHN_CALLBACK \
1313 xen_hvm_callback_vector xen_evtchn_do_upcall
1314
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001315#endif /* CONFIG_XEN */
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001316
1317/*
1318 * Some functions should be protected against kprobes
1319 */
1320 .pushsection .kprobes.text, "ax"
1321
1322paranoidzeroentry_ist debug do_debug DEBUG_STACK
1323paranoidzeroentry_ist int3 do_int3 DEBUG_STACK
1324paranoiderrorentry stack_segment do_stack_segment
Jeremy Fitzhardinge6cac5a92009-03-29 19:56:29 -07001325#ifdef CONFIG_XEN
1326zeroentry xen_debug do_debug
1327zeroentry xen_int3 do_int3
1328errorentry xen_stack_segment do_stack_segment
1329#endif
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001330errorentry general_protection do_general_protection
1331errorentry page_fault do_page_fault
1332#ifdef CONFIG_X86_MCE
Andi Kleen5d727922009-04-27 19:25:48 +02001333paranoidzeroentry machine_check *machine_check_vector(%rip)
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001334#endif
1335
1336 /*
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001337 * "Paranoid" exit path from exception stack.
1338 * Paranoid because this is used by NMIs and cannot take
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001339 * any kernel state for granted.
1340 * We don't do kernel preemption checks here, because only
1341 * NMI should be common and it does not enable IRQs and
1342 * cannot get reschedule ticks.
1343 *
1344 * "trace" is 0 for the NMI handler only, because irq-tracing
1345 * is fundamentally NMI-unsafe. (we cannot change the soft and
1346 * hard flags at once, atomically)
1347 */
1348
1349 /* ebx: no swapgs flag */
1350ENTRY(paranoid_exit)
Jan Beulich1f130a72010-09-02 13:54:32 +01001351 DEFAULT_FRAME
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001352 DISABLE_INTERRUPTS(CLBR_NONE)
1353 TRACE_IRQS_OFF
1354 testl %ebx,%ebx /* swapgs needed? */
1355 jnz paranoid_restore
1356 testl $3,CS(%rsp)
1357 jnz paranoid_userspace
1358paranoid_swapgs:
1359 TRACE_IRQS_IRETQ 0
1360 SWAPGS_UNSAFE_STACK
Steven Rostedt0300e7f12009-04-17 08:33:52 -04001361 RESTORE_ALL 8
1362 jmp irq_return
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001363paranoid_restore:
Steven Rostedt0300e7f12009-04-17 08:33:52 -04001364 TRACE_IRQS_IRETQ 0
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001365 RESTORE_ALL 8
1366 jmp irq_return
1367paranoid_userspace:
1368 GET_THREAD_INFO(%rcx)
1369 movl TI_flags(%rcx),%ebx
1370 andl $_TIF_WORK_MASK,%ebx
1371 jz paranoid_swapgs
1372 movq %rsp,%rdi /* &pt_regs */
1373 call sync_regs
1374 movq %rax,%rsp /* switch stack for scheduling */
1375 testl $_TIF_NEED_RESCHED,%ebx
1376 jnz paranoid_schedule
1377 movl %ebx,%edx /* arg3: thread flags */
1378 TRACE_IRQS_ON
1379 ENABLE_INTERRUPTS(CLBR_NONE)
1380 xorl %esi,%esi /* arg2: oldset */
1381 movq %rsp,%rdi /* arg1: &pt_regs */
1382 call do_notify_resume
1383 DISABLE_INTERRUPTS(CLBR_NONE)
1384 TRACE_IRQS_OFF
1385 jmp paranoid_userspace
1386paranoid_schedule:
1387 TRACE_IRQS_ON
1388 ENABLE_INTERRUPTS(CLBR_ANY)
1389 call schedule
1390 DISABLE_INTERRUPTS(CLBR_ANY)
1391 TRACE_IRQS_OFF
1392 jmp paranoid_userspace
1393 CFI_ENDPROC
1394END(paranoid_exit)
1395
1396/*
1397 * Exception entry point. This expects an error code/orig_rax on the stack.
1398 * returns in "no swapgs flag" in %ebx.
1399 */
1400ENTRY(error_entry)
1401 XCPT_FRAME
1402 CFI_ADJUST_CFA_OFFSET 15*8
1403 /* oldrax contains error code */
1404 cld
1405 movq_cfi rdi, RDI+8
1406 movq_cfi rsi, RSI+8
1407 movq_cfi rdx, RDX+8
1408 movq_cfi rcx, RCX+8
1409 movq_cfi rax, RAX+8
1410 movq_cfi r8, R8+8
1411 movq_cfi r9, R9+8
1412 movq_cfi r10, R10+8
1413 movq_cfi r11, R11+8
1414 movq_cfi rbx, RBX+8
1415 movq_cfi rbp, RBP+8
1416 movq_cfi r12, R12+8
1417 movq_cfi r13, R13+8
1418 movq_cfi r14, R14+8
1419 movq_cfi r15, R15+8
1420 xorl %ebx,%ebx
1421 testl $3,CS+8(%rsp)
1422 je error_kernelspace
1423error_swapgs:
1424 SWAPGS
1425error_sti:
1426 TRACE_IRQS_OFF
1427 ret
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001428
1429/*
1430 * There are two places in the kernel that can potentially fault with
1431 * usergs. Handle them here. The exception handlers after iret run with
1432 * kernel gs again, so don't set the user space flag. B stepping K8s
1433 * sometimes report an truncated RIP for IRET exceptions returning to
1434 * compat mode. Check for these here too.
1435 */
1436error_kernelspace:
1437 incl %ebx
1438 leaq irq_return(%rip),%rcx
1439 cmpq %rcx,RIP+8(%rsp)
1440 je error_swapgs
Brian Gerstae24ffe2009-10-12 10:18:23 -04001441 movl %ecx,%eax /* zero extend */
1442 cmpq %rax,RIP+8(%rsp)
1443 je bstep_iret
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001444 cmpq $gs_change,RIP+8(%rsp)
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001445 je error_swapgs
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001446 jmp error_sti
Brian Gerstae24ffe2009-10-12 10:18:23 -04001447
1448bstep_iret:
1449 /* Fix truncated RIP */
1450 movq %rcx,RIP+8(%rsp)
Brian Gerst97829de2009-11-03 14:02:05 -05001451 jmp error_swapgs
Jan Beuliche6b04b62010-09-02 13:52:45 +01001452 CFI_ENDPROC
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001453END(error_entry)
1454
1455
1456/* ebx: no swapgs flag (1: don't need swapgs, 0: need it) */
1457ENTRY(error_exit)
1458 DEFAULT_FRAME
1459 movl %ebx,%eax
1460 RESTORE_REST
1461 DISABLE_INTERRUPTS(CLBR_NONE)
1462 TRACE_IRQS_OFF
1463 GET_THREAD_INFO(%rcx)
1464 testl %eax,%eax
1465 jne retint_kernel
1466 LOCKDEP_SYS_EXIT_IRQ
1467 movl TI_flags(%rcx),%edx
1468 movl $_TIF_WORK_MASK,%edi
1469 andl %edi,%edx
1470 jnz retint_careful
1471 jmp retint_swapgs
1472 CFI_ENDPROC
1473END(error_exit)
1474
1475
1476 /* runs on exception stack */
1477ENTRY(nmi)
1478 INTR_FRAME
1479 PARAVIRT_ADJUST_EXCEPTION_FRAME
1480 pushq_cfi $-1
Jan Beulichb1cccb12010-09-02 13:55:11 +01001481 subq $ORIG_RAX-R15, %rsp
1482 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001483 call save_paranoid
1484 DEFAULT_FRAME 0
1485 /* paranoidentry do_nmi, 0; without TRACE_IRQS_OFF */
1486 movq %rsp,%rdi
1487 movq $-1,%rsi
1488 call do_nmi
1489#ifdef CONFIG_TRACE_IRQFLAGS
1490 /* paranoidexit; without TRACE_IRQS_OFF */
1491 /* ebx: no swapgs flag */
1492 DISABLE_INTERRUPTS(CLBR_NONE)
1493 testl %ebx,%ebx /* swapgs needed? */
1494 jnz nmi_restore
1495 testl $3,CS(%rsp)
1496 jnz nmi_userspace
1497nmi_swapgs:
1498 SWAPGS_UNSAFE_STACK
1499nmi_restore:
1500 RESTORE_ALL 8
1501 jmp irq_return
1502nmi_userspace:
1503 GET_THREAD_INFO(%rcx)
1504 movl TI_flags(%rcx),%ebx
1505 andl $_TIF_WORK_MASK,%ebx
1506 jz nmi_swapgs
1507 movq %rsp,%rdi /* &pt_regs */
1508 call sync_regs
1509 movq %rax,%rsp /* switch stack for scheduling */
1510 testl $_TIF_NEED_RESCHED,%ebx
1511 jnz nmi_schedule
1512 movl %ebx,%edx /* arg3: thread flags */
1513 ENABLE_INTERRUPTS(CLBR_NONE)
1514 xorl %esi,%esi /* arg2: oldset */
1515 movq %rsp,%rdi /* arg1: &pt_regs */
1516 call do_notify_resume
1517 DISABLE_INTERRUPTS(CLBR_NONE)
1518 jmp nmi_userspace
1519nmi_schedule:
1520 ENABLE_INTERRUPTS(CLBR_ANY)
1521 call schedule
1522 DISABLE_INTERRUPTS(CLBR_ANY)
1523 jmp nmi_userspace
1524 CFI_ENDPROC
1525#else
1526 jmp paranoid_exit
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001527 CFI_ENDPROC
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001528#endif
1529END(nmi)
1530
1531ENTRY(ignore_sysret)
1532 CFI_STARTPROC
1533 mov $-ENOSYS,%eax
1534 sysret
1535 CFI_ENDPROC
1536END(ignore_sysret)
1537
1538/*
1539 * End of kprobes section
1540 */
1541 .popsection