blob: 52bda2e8f7aa60455b4c2aaa38af35623c4f9822 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/arch/x86_64/entry.S
3 *
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 * Copyright (C) 2000, 2001, 2002 Andi Kleen SuSE Labs
6 * Copyright (C) 2000 Pavel Machek <pavel@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 */
8
9/*
10 * entry.S contains the system-call and fault low-level handling routines.
11 *
Andy Lutomirski8b4777a2011-06-05 13:50:18 -040012 * Some of this is documented in Documentation/x86/entry_64.txt
13 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 * NOTE: This code handles signal-recognition, which happens every time
15 * after an interrupt and after each system call.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +010016 *
17 * Normal syscalls and interrupts don't save a full stack frame, this is
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 * only done for syscall tracing, signals or fork/exec et.al.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +010019 *
20 * A note on terminology:
21 * - top of stack: Architecture defined interrupt frame from SS to RIP
22 * at the top of the kernel process stack.
Lucas De Marchi0d2eb442011-03-17 16:24:16 -030023 * - partial stack frame: partially saved registers up to R11.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +010024 * - full stack frame: Like partial stack frame, but all register saved.
Andi Kleen2e91a172006-09-26 10:52:29 +020025 *
26 * Some macro usage:
27 * - CFI macros are used to generate dwarf2 unwind information for better
28 * backtraces. They don't change any code.
29 * - SAVE_ALL/RESTORE_ALL - Save/restore all registers
30 * - SAVE_ARGS/RESTORE_ARGS - Save/restore registers that C functions modify.
31 * There are unfortunately lots of special cases where some registers
32 * not touched. The macro is a big mess that should be cleaned up.
33 * - SAVE_REST/RESTORE_REST - Handle the registers not saved by SAVE_ARGS.
34 * Gives a full stack frame.
35 * - ENTRY/END Define functions in the symbol table.
36 * - FIXUP_TOP_OF_STACK/RESTORE_TOP_OF_STACK - Fix up the hardware stack
37 * frame that is otherwise undefined after a SYSCALL
38 * - TRACE_IRQ_* - Trace hard interrupt state for lock debugging.
39 * - errorentry/paranoidentry/zeroentry - Define exception entry points.
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 */
41
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <linux/linkage.h>
43#include <asm/segment.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <asm/cache.h>
45#include <asm/errno.h>
46#include <asm/dwarf2.h>
47#include <asm/calling.h>
Sam Ravnborge2d5df92005-09-09 21:28:48 +020048#include <asm/asm-offsets.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <asm/msr.h>
50#include <asm/unistd.h>
51#include <asm/thread_info.h>
52#include <asm/hw_irq.h>
Jeremy Fitzhardinge0341c142009-02-13 11:14:01 -080053#include <asm/page_types.h>
Ingo Molnar2601e642006-07-03 00:24:45 -070054#include <asm/irqflags.h>
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +010055#include <asm/paravirt.h>
Abhishek Sagar395a59d2008-06-21 23:47:27 +053056#include <asm/ftrace.h>
Tejun Heo9939dda2009-01-13 20:41:35 +090057#include <asm/percpu.h>
H. Peter Anvind7abc0f2012-04-20 12:19:50 -070058#include <asm/asm.h>
Eric Parisd7e75282012-01-03 14:23:06 -050059#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
Roland McGrath86a1c342008-06-23 15:37:04 -070061/* Avoid __ASSEMBLER__'ifying <linux/audit.h> just for this. */
62#include <linux/elf-em.h>
63#define AUDIT_ARCH_X86_64 (EM_X86_64|__AUDIT_ARCH_64BIT|__AUDIT_ARCH_LE)
64#define __AUDIT_ARCH_64BIT 0x80000000
65#define __AUDIT_ARCH_LE 0x40000000
66
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 .code64
Jiri Olsaea714542011-03-07 19:10:39 +010068 .section .entry.text, "ax"
69
Steven Rostedt606576c2008-10-06 19:06:12 -040070#ifdef CONFIG_FUNCTION_TRACER
Steven Rostedtd61f82d2008-05-12 21:20:43 +020071#ifdef CONFIG_DYNAMIC_FTRACE
72ENTRY(mcount)
Steven Rostedtd61f82d2008-05-12 21:20:43 +020073 retq
74END(mcount)
75
Steven Rostedt08f6fba2012-04-30 16:20:23 -040076/* skip is set if stack has been adjusted */
77.macro ftrace_caller_setup skip=0
78 MCOUNT_SAVE_FRAME \skip
79
80 /* Load the ftrace_ops into the 3rd parameter */
81 leaq function_trace_op, %rdx
82
83 /* Load ip into the first parameter */
84 movq RIP(%rsp), %rdi
85 subq $MCOUNT_INSN_SIZE, %rdi
86 /* Load the parent_ip into the second parameter */
87 movq 8(%rbp), %rsi
88.endm
89
Steven Rostedtd61f82d2008-05-12 21:20:43 +020090ENTRY(ftrace_caller)
Steven Rostedt08f6fba2012-04-30 16:20:23 -040091 /* Check if tracing was disabled (quick check) */
Steven Rostedt60a7ecf2008-11-05 16:05:44 -050092 cmpl $0, function_trace_stop
93 jne ftrace_stub
Steven Rostedtd61f82d2008-05-12 21:20:43 +020094
Steven Rostedt08f6fba2012-04-30 16:20:23 -040095 ftrace_caller_setup
96 /* regs go into 4th parameter (but make it NULL) */
97 movq $0, %rcx
Steven Rostedtd61f82d2008-05-12 21:20:43 +020098
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +030099GLOBAL(ftrace_call)
Steven Rostedtd61f82d2008-05-12 21:20:43 +0200100 call ftrace_stub
101
Cyrill Gorcunovd680fe42008-12-13 00:09:08 +0300102 MCOUNT_RESTORE_FRAME
Steven Rostedt08f6fba2012-04-30 16:20:23 -0400103ftrace_return:
Steven Rostedtd61f82d2008-05-12 21:20:43 +0200104
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100105#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +0300106GLOBAL(ftrace_graph_call)
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100107 jmp ftrace_stub
108#endif
Steven Rostedtd61f82d2008-05-12 21:20:43 +0200109
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +0300110GLOBAL(ftrace_stub)
Steven Rostedtd61f82d2008-05-12 21:20:43 +0200111 retq
112END(ftrace_caller)
113
Steven Rostedt08f6fba2012-04-30 16:20:23 -0400114ENTRY(ftrace_regs_caller)
115 /* Save the current flags before compare (in SS location)*/
116 pushfq
117
118 /* Check if tracing was disabled (quick check) */
119 cmpl $0, function_trace_stop
120 jne ftrace_restore_flags
121
122 /* skip=8 to skip flags saved in SS */
123 ftrace_caller_setup 8
124
125 /* Save the rest of pt_regs */
126 movq %r15, R15(%rsp)
127 movq %r14, R14(%rsp)
128 movq %r13, R13(%rsp)
129 movq %r12, R12(%rsp)
130 movq %r11, R11(%rsp)
131 movq %r10, R10(%rsp)
132 movq %rbp, RBP(%rsp)
133 movq %rbx, RBX(%rsp)
134 /* Copy saved flags */
135 movq SS(%rsp), %rcx
136 movq %rcx, EFLAGS(%rsp)
137 /* Kernel segments */
138 movq $__KERNEL_DS, %rcx
139 movq %rcx, SS(%rsp)
140 movq $__KERNEL_CS, %rcx
141 movq %rcx, CS(%rsp)
142 /* Stack - skipping return address */
143 leaq SS+16(%rsp), %rcx
144 movq %rcx, RSP(%rsp)
145
146 /* regs go into 4th parameter */
147 leaq (%rsp), %rcx
148
149GLOBAL(ftrace_regs_call)
150 call ftrace_stub
151
152 /* Copy flags back to SS, to restore them */
153 movq EFLAGS(%rsp), %rax
154 movq %rax, SS(%rsp)
155
156 /* restore the rest of pt_regs */
157 movq R15(%rsp), %r15
158 movq R14(%rsp), %r14
159 movq R13(%rsp), %r13
160 movq R12(%rsp), %r12
161 movq R10(%rsp), %r10
162 movq RBP(%rsp), %rbp
163 movq RBX(%rsp), %rbx
164
165 /* skip=8 to skip flags saved in SS */
166 MCOUNT_RESTORE_FRAME 8
167
168 /* Restore flags */
169 popfq
170
171 jmp ftrace_return
172ftrace_restore_flags:
173 popfq
174 jmp ftrace_stub
175
176END(ftrace_regs_caller)
177
178
Steven Rostedtd61f82d2008-05-12 21:20:43 +0200179#else /* ! CONFIG_DYNAMIC_FTRACE */
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200180ENTRY(mcount)
Steven Rostedt60a7ecf2008-11-05 16:05:44 -0500181 cmpl $0, function_trace_stop
182 jne ftrace_stub
183
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200184 cmpq $ftrace_stub, ftrace_trace_function
185 jnz trace
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100186
187#ifdef CONFIG_FUNCTION_GRAPH_TRACER
188 cmpq $ftrace_stub, ftrace_graph_return
189 jnz ftrace_graph_caller
Steven Rostedte49dc192008-12-02 23:50:05 -0500190
191 cmpq $ftrace_graph_entry_stub, ftrace_graph_entry
192 jnz ftrace_graph_caller
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100193#endif
194
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +0300195GLOBAL(ftrace_stub)
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200196 retq
197
198trace:
Cyrill Gorcunovd680fe42008-12-13 00:09:08 +0300199 MCOUNT_SAVE_FRAME
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200200
Steven Rostedt08f6fba2012-04-30 16:20:23 -0400201 movq RIP(%rsp), %rdi
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200202 movq 8(%rbp), %rsi
Abhishek Sagar395a59d2008-06-21 23:47:27 +0530203 subq $MCOUNT_INSN_SIZE, %rdi
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200204
205 call *ftrace_trace_function
206
Cyrill Gorcunovd680fe42008-12-13 00:09:08 +0300207 MCOUNT_RESTORE_FRAME
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200208
209 jmp ftrace_stub
210END(mcount)
Steven Rostedtd61f82d2008-05-12 21:20:43 +0200211#endif /* CONFIG_DYNAMIC_FTRACE */
Steven Rostedt606576c2008-10-06 19:06:12 -0400212#endif /* CONFIG_FUNCTION_TRACER */
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200213
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100214#ifdef CONFIG_FUNCTION_GRAPH_TRACER
215ENTRY(ftrace_graph_caller)
216 cmpl $0, function_trace_stop
217 jne ftrace_stub
218
Cyrill Gorcunovd680fe42008-12-13 00:09:08 +0300219 MCOUNT_SAVE_FRAME
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100220
221 leaq 8(%rbp), %rdi
Steven Rostedt08f6fba2012-04-30 16:20:23 -0400222 movq RIP(%rsp), %rsi
Steven Rostedt71e308a2009-06-18 12:45:08 -0400223 movq (%rbp), %rdx
Steven Rostedtbb4304c2008-12-02 15:34:09 -0500224 subq $MCOUNT_INSN_SIZE, %rsi
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100225
226 call prepare_ftrace_return
227
Cyrill Gorcunovd680fe42008-12-13 00:09:08 +0300228 MCOUNT_RESTORE_FRAME
229
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100230 retq
231END(ftrace_graph_caller)
232
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +0300233GLOBAL(return_to_handler)
Jiri Olsa4818d802009-07-29 10:58:37 +0200234 subq $24, %rsp
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100235
Steven Rostedte71e99c2009-03-25 14:30:04 -0400236 /* Save the return values */
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100237 movq %rax, (%rsp)
Steven Rostedte71e99c2009-03-25 14:30:04 -0400238 movq %rdx, 8(%rsp)
Steven Rostedt71e308a2009-06-18 12:45:08 -0400239 movq %rbp, %rdi
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100240
241 call ftrace_return_to_handler
242
Steven Rostedt194ec342009-10-13 16:33:50 -0400243 movq %rax, %rdi
Steven Rostedte71e99c2009-03-25 14:30:04 -0400244 movq 8(%rsp), %rdx
Jan Beulich7effaa82005-09-12 18:49:24 +0200245 movq (%rsp), %rax
Steven Rostedt194ec342009-10-13 16:33:50 -0400246 addq $24, %rsp
247 jmp *%rdi
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100248#endif
Jan Beulich7effaa82005-09-12 18:49:24 +0200249
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
251#ifndef CONFIG_PREEMPT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252#define retint_kernel retint_restore_args
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100253#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
255#ifdef CONFIG_PARAVIRT
256ENTRY(native_usergs_sysret64)
257 swapgs
258 sysretq
Cyrill Gorcunovb3baaa12009-02-23 22:57:00 +0300259ENDPROC(native_usergs_sysret64)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260#endif /* CONFIG_PARAVIRT */
261
262
263.macro TRACE_IRQS_IRETQ offset=ARGOFFSET
264#ifdef CONFIG_TRACE_IRQFLAGS
265 bt $9,EFLAGS-\offset(%rsp) /* interrupts off? */
266 jnc 1f
267 TRACE_IRQS_ON
2681:
269#endif
270.endm
271
272/*
Steven Rostedt5963e312012-05-30 11:54:53 -0400273 * When dynamic function tracer is enabled it will add a breakpoint
274 * to all locations that it is about to modify, sync CPUs, update
275 * all the code, sync CPUs, then remove the breakpoints. In this time
276 * if lockdep is enabled, it might jump back into the debug handler
277 * outside the updating of the IST protection. (TRACE_IRQS_ON/OFF).
278 *
279 * We need to change the IDT table before calling TRACE_IRQS_ON/OFF to
280 * make sure the stack pointer does not get reset back to the top
281 * of the debug stack, and instead just reuses the current stack.
282 */
283#if defined(CONFIG_DYNAMIC_FTRACE) && defined(CONFIG_TRACE_IRQFLAGS)
284
285.macro TRACE_IRQS_OFF_DEBUG
286 call debug_stack_set_zero
287 TRACE_IRQS_OFF
288 call debug_stack_reset
289.endm
290
291.macro TRACE_IRQS_ON_DEBUG
292 call debug_stack_set_zero
293 TRACE_IRQS_ON
294 call debug_stack_reset
295.endm
296
297.macro TRACE_IRQS_IRETQ_DEBUG offset=ARGOFFSET
298 bt $9,EFLAGS-\offset(%rsp) /* interrupts off? */
299 jnc 1f
300 TRACE_IRQS_ON_DEBUG
3011:
302.endm
303
304#else
305# define TRACE_IRQS_OFF_DEBUG TRACE_IRQS_OFF
306# define TRACE_IRQS_ON_DEBUG TRACE_IRQS_ON
307# define TRACE_IRQS_IRETQ_DEBUG TRACE_IRQS_IRETQ
308#endif
309
310/*
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100311 * C code is not supposed to know about undefined top of stack. Every time
312 * a C function with an pt_regs argument is called from the SYSCALL based
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 * fast path FIXUP_TOP_OF_STACK is needed.
314 * RESTORE_TOP_OF_STACK syncs the syscall state after any possible ptregs
315 * manipulation.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100316 */
317
318 /* %rsp:at FRAMEEND */
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100319 .macro FIXUP_TOP_OF_STACK tmp offset=0
Brian Gerst3d1e42a2009-01-19 00:38:58 +0900320 movq PER_CPU_VAR(old_rsp),\tmp
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100321 movq \tmp,RSP+\offset(%rsp)
322 movq $__USER_DS,SS+\offset(%rsp)
323 movq $__USER_CS,CS+\offset(%rsp)
324 movq $-1,RCX+\offset(%rsp)
325 movq R11+\offset(%rsp),\tmp /* get eflags */
326 movq \tmp,EFLAGS+\offset(%rsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 .endm
328
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100329 .macro RESTORE_TOP_OF_STACK tmp offset=0
330 movq RSP+\offset(%rsp),\tmp
Brian Gerst3d1e42a2009-01-19 00:38:58 +0900331 movq \tmp,PER_CPU_VAR(old_rsp)
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100332 movq EFLAGS+\offset(%rsp),\tmp
333 movq \tmp,R11+\offset(%rsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 .endm
335
336 .macro FAKE_STACK_FRAME child_rip
337 /* push in order ss, rsp, eflags, cs, rip */
338 xorl %eax, %eax
Jan Beulichdf5d1872010-09-02 14:07:16 +0100339 pushq_cfi $__KERNEL_DS /* ss */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 /*CFI_REL_OFFSET ss,0*/
Jan Beulichdf5d1872010-09-02 14:07:16 +0100341 pushq_cfi %rax /* rsp */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 CFI_REL_OFFSET rsp,0
Seiichi Ikarashi1cf83432011-12-06 17:58:14 +0900343 pushq_cfi $(X86_EFLAGS_IF|X86_EFLAGS_BIT1) /* eflags - interrupts on */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 /*CFI_REL_OFFSET rflags,0*/
Jan Beulichdf5d1872010-09-02 14:07:16 +0100345 pushq_cfi $__KERNEL_CS /* cs */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 /*CFI_REL_OFFSET cs,0*/
Jan Beulichdf5d1872010-09-02 14:07:16 +0100347 pushq_cfi \child_rip /* rip */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 CFI_REL_OFFSET rip,0
Jan Beulichdf5d1872010-09-02 14:07:16 +0100349 pushq_cfi %rax /* orig rax */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 .endm
351
352 .macro UNFAKE_STACK_FRAME
353 addq $8*6, %rsp
354 CFI_ADJUST_CFA_OFFSET -(6*8)
355 .endm
356
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100357/*
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100358 * initial frame state for interrupts (and exceptions without error code)
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100359 */
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100360 .macro EMPTY_FRAME start=1 offset=0
361 .if \start
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100362 CFI_STARTPROC simple
363 CFI_SIGNAL_FRAME
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100364 CFI_DEF_CFA rsp,8+\offset
365 .else
366 CFI_DEF_CFA_OFFSET 8+\offset
367 .endif
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100368 .endm
369
370/*
371 * initial frame state for interrupts (and exceptions without error code)
372 */
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100373 .macro INTR_FRAME start=1 offset=0
Ingo Molnare8a0e272008-11-21 15:11:32 +0100374 EMPTY_FRAME \start, SS+8+\offset-RIP
375 /*CFI_REL_OFFSET ss, SS+\offset-RIP*/
376 CFI_REL_OFFSET rsp, RSP+\offset-RIP
377 /*CFI_REL_OFFSET rflags, EFLAGS+\offset-RIP*/
378 /*CFI_REL_OFFSET cs, CS+\offset-RIP*/
379 CFI_REL_OFFSET rip, RIP+\offset-RIP
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100380 .endm
381
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100382/*
383 * initial frame state for exceptions with error code (and interrupts
384 * with vector already pushed)
385 */
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100386 .macro XCPT_FRAME start=1 offset=0
Ingo Molnare8a0e272008-11-21 15:11:32 +0100387 INTR_FRAME \start, RIP+\offset-ORIG_RAX
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100388 /*CFI_REL_OFFSET orig_rax, ORIG_RAX-ORIG_RAX*/
389 .endm
390
391/*
392 * frame that enables calling into C.
393 */
394 .macro PARTIAL_FRAME start=1 offset=0
Ingo Molnare8a0e272008-11-21 15:11:32 +0100395 XCPT_FRAME \start, ORIG_RAX+\offset-ARGOFFSET
396 CFI_REL_OFFSET rdi, RDI+\offset-ARGOFFSET
397 CFI_REL_OFFSET rsi, RSI+\offset-ARGOFFSET
398 CFI_REL_OFFSET rdx, RDX+\offset-ARGOFFSET
399 CFI_REL_OFFSET rcx, RCX+\offset-ARGOFFSET
400 CFI_REL_OFFSET rax, RAX+\offset-ARGOFFSET
401 CFI_REL_OFFSET r8, R8+\offset-ARGOFFSET
402 CFI_REL_OFFSET r9, R9+\offset-ARGOFFSET
403 CFI_REL_OFFSET r10, R10+\offset-ARGOFFSET
404 CFI_REL_OFFSET r11, R11+\offset-ARGOFFSET
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100405 .endm
406
407/*
408 * frame that enables passing a complete pt_regs to a C function.
409 */
410 .macro DEFAULT_FRAME start=1 offset=0
Ingo Molnare8a0e272008-11-21 15:11:32 +0100411 PARTIAL_FRAME \start, R11+\offset-R15
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100412 CFI_REL_OFFSET rbx, RBX+\offset
413 CFI_REL_OFFSET rbp, RBP+\offset
414 CFI_REL_OFFSET r12, R12+\offset
415 CFI_REL_OFFSET r13, R13+\offset
416 CFI_REL_OFFSET r14, R14+\offset
417 CFI_REL_OFFSET r15, R15+\offset
418 .endm
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100419
420/* save partial stack frame */
Frederic Weisbecker18718532011-07-01 01:51:22 +0200421 .macro SAVE_ARGS_IRQ
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100422 cld
Frederic Weisbecker18718532011-07-01 01:51:22 +0200423 /* start from rbp in pt_regs and jump over */
424 movq_cfi rdi, RDI-RBP
425 movq_cfi rsi, RSI-RBP
426 movq_cfi rdx, RDX-RBP
427 movq_cfi rcx, RCX-RBP
428 movq_cfi rax, RAX-RBP
429 movq_cfi r8, R8-RBP
430 movq_cfi r9, R9-RBP
431 movq_cfi r10, R10-RBP
432 movq_cfi r11, R11-RBP
Ingo Molnar14ae22b2008-11-21 15:20:47 +0100433
Frederic Weisbeckera2bbe752011-07-02 16:52:45 +0200434 /* Save rbp so that we can unwind from get_irq_regs() */
435 movq_cfi rbp, 0
436
437 /* Save previous stack value */
438 movq %rsp, %rsi
Frederic Weisbecker3b99a3ef2011-07-01 02:25:17 +0200439
440 leaq -RBP(%rsp),%rdi /* arg1 for handler */
Jan Beulich69466462012-02-24 11:55:01 +0000441 testl $3, CS-RBP(%rsi)
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100442 je 1f
443 SWAPGS
444 /*
Brian Gerst56895532009-01-19 00:38:58 +0900445 * irq_count is used to check if a CPU is already on an interrupt stack
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100446 * or not. While this is essentially redundant with preempt_count it is
447 * a little cheaper to use a separate counter in the PDA (short of
448 * moving irq_enter into assembly, which would be too much work)
449 */
Brian Gerst56895532009-01-19 00:38:58 +09004501: incl PER_CPU_VAR(irq_count)
Jan Beulich69466462012-02-24 11:55:01 +0000451 cmovzq PER_CPU_VAR(irq_stack_ptr),%rsp
Jan Beulicheab9e612011-09-28 16:57:52 +0100452 CFI_DEF_CFA_REGISTER rsi
Frederic Weisbeckera2bbe752011-07-02 16:52:45 +0200453
Jan Beulich69466462012-02-24 11:55:01 +0000454 /* Store previous stack value */
Frederic Weisbeckera2bbe752011-07-02 16:52:45 +0200455 pushq %rsi
Jan Beulicheab9e612011-09-28 16:57:52 +0100456 CFI_ESCAPE 0x0f /* DW_CFA_def_cfa_expression */, 6, \
457 0x77 /* DW_OP_breg7 */, 0, \
458 0x06 /* DW_OP_deref */, \
459 0x08 /* DW_OP_const1u */, SS+8-RBP, \
460 0x22 /* DW_OP_plus */
Frederic Weisbeckera2bbe752011-07-02 16:52:45 +0200461 /* We entered an interrupt context - irqs are off: */
462 TRACE_IRQS_OFF
Frederic Weisbecker18718532011-07-01 01:51:22 +0200463 .endm
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100464
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100465ENTRY(save_rest)
466 PARTIAL_FRAME 1 REST_SKIP+8
467 movq 5*8+16(%rsp), %r11 /* save return address */
468 movq_cfi rbx, RBX+16
469 movq_cfi rbp, RBP+16
470 movq_cfi r12, R12+16
471 movq_cfi r13, R13+16
472 movq_cfi r14, R14+16
473 movq_cfi r15, R15+16
474 movq %r11, 8(%rsp) /* return address */
475 FIXUP_TOP_OF_STACK %r11, 16
476 ret
477 CFI_ENDPROC
478END(save_rest)
479
Alexander van Heukelume2f6bc22008-11-21 16:43:18 +0100480/* save complete stack frame */
Jan Beulichc2810182009-03-12 10:38:55 +0000481 .pushsection .kprobes.text, "ax"
Alexander van Heukelume2f6bc22008-11-21 16:43:18 +0100482ENTRY(save_paranoid)
483 XCPT_FRAME 1 RDI+8
484 cld
485 movq_cfi rdi, RDI+8
486 movq_cfi rsi, RSI+8
487 movq_cfi rdx, RDX+8
488 movq_cfi rcx, RCX+8
489 movq_cfi rax, RAX+8
490 movq_cfi r8, R8+8
491 movq_cfi r9, R9+8
492 movq_cfi r10, R10+8
493 movq_cfi r11, R11+8
494 movq_cfi rbx, RBX+8
495 movq_cfi rbp, RBP+8
496 movq_cfi r12, R12+8
497 movq_cfi r13, R13+8
498 movq_cfi r14, R14+8
499 movq_cfi r15, R15+8
500 movl $1,%ebx
501 movl $MSR_GS_BASE,%ecx
502 rdmsr
503 testl %edx,%edx
504 js 1f /* negative -> in kernel */
505 SWAPGS
506 xorl %ebx,%ebx
5071: ret
508 CFI_ENDPROC
509END(save_paranoid)
Jan Beulichc2810182009-03-12 10:38:55 +0000510 .popsection
Alexander van Heukelume2f6bc22008-11-21 16:43:18 +0100511
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512/*
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100513 * A newly forked process directly context switches into this address.
514 *
515 * rdi: prev task we switched from
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100516 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517ENTRY(ret_from_fork)
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100518 DEFAULT_FRAME
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100519
Benjamin LaHaise7106a5a2009-01-10 23:00:22 -0500520 LOCK ; btr $TIF_FORK,TI_flags(%r8)
521
Jan Beulichdf5d1872010-09-02 14:07:16 +0100522 pushq_cfi kernel_eflags(%rip)
523 popfq_cfi # reset kernel eflags
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100524
525 call schedule_tail # rdi: 'prev' task parameter
526
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 GET_THREAD_INFO(%rcx)
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100528
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 RESTORE_REST
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100530
531 testl $3, CS-ARGOFFSET(%rsp) # from kernel_thread?
Jan Beulich70ea68552011-11-29 10:54:22 +0000532 jz retint_restore_args
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100533
534 testl $_TIF_IA32, TI_flags(%rcx) # 32-bit compat task needs IRET
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 jnz int_ret_from_sys_call
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100536
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100537 RESTORE_TOP_OF_STACK %rdi, -ARGOFFSET
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100538 jmp ret_from_sys_call # go to the SYSRET fastpath
539
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200541END(ret_from_fork)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
543/*
Lucas De Marchi0d2eb442011-03-17 16:24:16 -0300544 * System call entry. Up to 6 arguments in registers are supported.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 *
546 * SYSCALL does not save anything on the stack and does not change the
547 * stack pointer.
548 */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100549
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550/*
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100551 * Register setup:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 * rax system call number
553 * rdi arg0
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100554 * rcx return address for syscall/sysret, C arg3
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 * rsi arg1
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100556 * rdx arg2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 * r10 arg3 (--> moved to rcx for C)
558 * r8 arg4
559 * r9 arg5
560 * r11 eflags for syscall/sysret, temporary for C
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100561 * r12-r15,rbp,rbx saved by C code, not touched.
562 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 * Interrupts are off on entry.
564 * Only called from user space.
565 *
566 * XXX if we had a free scratch register we could save the RSP into the stack frame
567 * and report it properly in ps. Unfortunately we haven't.
Andi Kleen7bf36bb2006-04-07 19:50:00 +0200568 *
569 * When user can change the frames always force IRET. That is because
570 * it deals with uncanonical addresses better. SYSRET has trouble
571 * with them due to bugs in both AMD and Intel CPUs.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100572 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
574ENTRY(system_call)
Jan Beulich7effaa82005-09-12 18:49:24 +0200575 CFI_STARTPROC simple
Jan Beulichadf14232006-09-26 10:52:41 +0200576 CFI_SIGNAL_FRAME
Brian Gerst9af45652009-01-19 00:38:58 +0900577 CFI_DEF_CFA rsp,KERNEL_STACK_OFFSET
Jan Beulich7effaa82005-09-12 18:49:24 +0200578 CFI_REGISTER rip,rcx
579 /*CFI_REGISTER rflags,r11*/
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100580 SWAPGS_UNSAFE_STACK
581 /*
582 * A hypervisor implementation might want to use a label
583 * after the swapgs, so that it can do the swapgs
584 * for the guest and jump here on syscall.
585 */
Jan Beulichf6b2bc82011-11-29 11:24:10 +0000586GLOBAL(system_call_after_swapgs)
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100587
Brian Gerst3d1e42a2009-01-19 00:38:58 +0900588 movq %rsp,PER_CPU_VAR(old_rsp)
Brian Gerst9af45652009-01-19 00:38:58 +0900589 movq PER_CPU_VAR(kernel_stack),%rsp
Ingo Molnar2601e642006-07-03 00:24:45 -0700590 /*
591 * No need to follow this irqs off/on section - it's straight
592 * and short:
593 */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100594 ENABLE_INTERRUPTS(CLBR_NONE)
Borislav Petkovcac0e0a2011-05-31 22:21:52 +0200595 SAVE_ARGS 8,0
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100596 movq %rax,ORIG_RAX-ARGOFFSET(%rsp)
Jan Beulich7effaa82005-09-12 18:49:24 +0200597 movq %rcx,RIP-ARGOFFSET(%rsp)
598 CFI_REL_OFFSET rip,RIP-ARGOFFSET
Jan Beulich46db09d2011-11-29 11:17:45 +0000599 testl $_TIF_WORK_SYSCALL_ENTRY,TI_flags+THREAD_INFO(%rsp,RIP-ARGOFFSET)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 jnz tracesys
Roland McGrath86a1c342008-06-23 15:37:04 -0700601system_call_fastpath:
H. Peter Anvinfca460f2012-02-19 07:56:26 -0800602#if __SYSCALL_MASK == ~0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 cmpq $__NR_syscall_max,%rax
H. Peter Anvinfca460f2012-02-19 07:56:26 -0800604#else
605 andl $__SYSCALL_MASK,%eax
606 cmpl $__NR_syscall_max,%eax
607#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 ja badsys
609 movq %r10,%rcx
610 call *sys_call_table(,%rax,8) # XXX: rip relative
611 movq %rax,RAX-ARGOFFSET(%rsp)
612/*
613 * Syscall return path ending with SYSRET (fast path)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100614 * Has incomplete stack frame and undefined top of stack.
615 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616ret_from_sys_call:
Andi Kleen11b854b2005-04-16 15:25:02 -0700617 movl $_TIF_ALLWORK_MASK,%edi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 /* edi: flagmask */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100619sysret_check:
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200620 LOCKDEP_SYS_EXIT
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
Jan Beulich46db09d2011-11-29 11:17:45 +0000623 movl TI_flags+THREAD_INFO(%rsp,RIP-ARGOFFSET),%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 andl %edi,%edx
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100625 jnz sysret_careful
Jan Beulichbcddc012006-12-07 02:14:02 +0100626 CFI_REMEMBER_STATE
Ingo Molnar2601e642006-07-03 00:24:45 -0700627 /*
628 * sysretq will re-enable interrupts:
629 */
630 TRACE_IRQS_ON
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 movq RIP-ARGOFFSET(%rsp),%rcx
Jan Beulich7effaa82005-09-12 18:49:24 +0200632 CFI_REGISTER rip,rcx
Borislav Petkov838feb42011-05-31 22:21:53 +0200633 RESTORE_ARGS 1,-ARG_SKIP,0
Jan Beulich7effaa82005-09-12 18:49:24 +0200634 /*CFI_REGISTER rflags,r11*/
Brian Gerst3d1e42a2009-01-19 00:38:58 +0900635 movq PER_CPU_VAR(old_rsp), %rsp
Jeremy Fitzhardinge2be29982008-06-25 00:19:28 -0400636 USERGS_SYSRET64
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
Jan Beulichbcddc012006-12-07 02:14:02 +0100638 CFI_RESTORE_STATE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 /* Handle reschedules */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100640 /* edx: work, edi: workmask */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641sysret_careful:
642 bt $TIF_NEED_RESCHED,%edx
643 jnc sysret_signal
Ingo Molnar2601e642006-07-03 00:24:45 -0700644 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100645 ENABLE_INTERRUPTS(CLBR_NONE)
Jan Beulichdf5d1872010-09-02 14:07:16 +0100646 pushq_cfi %rdi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 call schedule
Jan Beulichdf5d1872010-09-02 14:07:16 +0100648 popq_cfi %rdi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 jmp sysret_check
650
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100651 /* Handle a signal */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652sysret_signal:
Ingo Molnar2601e642006-07-03 00:24:45 -0700653 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100654 ENABLE_INTERRUPTS(CLBR_NONE)
Roland McGrath86a1c342008-06-23 15:37:04 -0700655#ifdef CONFIG_AUDITSYSCALL
656 bt $TIF_SYSCALL_AUDIT,%edx
657 jc sysret_audit
658#endif
Roland McGrathb60e7142009-09-22 16:46:34 -0700659 /*
660 * We have a signal, or exit tracing or single-step.
661 * These all wind up with the iret return path anyway,
662 * so just join that path right now.
663 */
664 FIXUP_TOP_OF_STACK %r11, -ARGOFFSET
665 jmp int_check_syscall_exit_work
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100666
Jan Beulich7effaa82005-09-12 18:49:24 +0200667badsys:
668 movq $-ENOSYS,RAX-ARGOFFSET(%rsp)
669 jmp ret_from_sys_call
670
Roland McGrath86a1c342008-06-23 15:37:04 -0700671#ifdef CONFIG_AUDITSYSCALL
672 /*
673 * Fast path for syscall audit without full syscall trace.
Eric Parisb05d8442012-01-03 14:23:06 -0500674 * We just call __audit_syscall_entry() directly, and then
Roland McGrath86a1c342008-06-23 15:37:04 -0700675 * jump back to the normal fast path.
676 */
677auditsys:
678 movq %r10,%r9 /* 6th arg: 4th syscall arg */
679 movq %rdx,%r8 /* 5th arg: 3rd syscall arg */
680 movq %rsi,%rcx /* 4th arg: 2nd syscall arg */
681 movq %rdi,%rdx /* 3rd arg: 1st syscall arg */
682 movq %rax,%rsi /* 2nd arg: syscall number */
683 movl $AUDIT_ARCH_X86_64,%edi /* 1st arg: audit arch */
Eric Parisb05d8442012-01-03 14:23:06 -0500684 call __audit_syscall_entry
Roland McGrath86a1c342008-06-23 15:37:04 -0700685 LOAD_ARGS 0 /* reload call-clobbered registers */
686 jmp system_call_fastpath
687
688 /*
Eric Parisd7e75282012-01-03 14:23:06 -0500689 * Return fast path for syscall audit. Call __audit_syscall_exit()
Roland McGrath86a1c342008-06-23 15:37:04 -0700690 * directly and then jump back to the fast path with TIF_SYSCALL_AUDIT
691 * masked off.
692 */
693sysret_audit:
Roland McGrath03275592010-07-21 17:44:12 -0700694 movq RAX-ARGOFFSET(%rsp),%rsi /* second arg, syscall return value */
Eric Parisd7e75282012-01-03 14:23:06 -0500695 cmpq $-MAX_ERRNO,%rsi /* is it < -MAX_ERRNO? */
696 setbe %al /* 1 if so, 0 if not */
Roland McGrath86a1c342008-06-23 15:37:04 -0700697 movzbl %al,%edi /* zero-extend that into %edi */
Eric Parisd7e75282012-01-03 14:23:06 -0500698 call __audit_syscall_exit
Roland McGrath86a1c342008-06-23 15:37:04 -0700699 movl $(_TIF_ALLWORK_MASK & ~_TIF_SYSCALL_AUDIT),%edi
700 jmp sysret_check
701#endif /* CONFIG_AUDITSYSCALL */
702
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 /* Do syscall tracing */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100704tracesys:
Roland McGrath86a1c342008-06-23 15:37:04 -0700705#ifdef CONFIG_AUDITSYSCALL
Jan Beulich46db09d2011-11-29 11:17:45 +0000706 testl $(_TIF_WORK_SYSCALL_ENTRY & ~_TIF_SYSCALL_AUDIT),TI_flags+THREAD_INFO(%rsp,RIP-ARGOFFSET)
Roland McGrath86a1c342008-06-23 15:37:04 -0700707 jz auditsys
708#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 SAVE_REST
Roland McGratha31f8dd2008-03-16 21:59:11 -0700710 movq $-ENOSYS,RAX(%rsp) /* ptrace can change this for a bad syscall */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 FIXUP_TOP_OF_STACK %rdi
712 movq %rsp,%rdi
713 call syscall_trace_enter
Roland McGrathd4d67152008-07-09 02:38:07 -0700714 /*
715 * Reload arg registers from stack in case ptrace changed them.
716 * We don't reload %rax because syscall_trace_enter() returned
717 * the value it wants us to use in the table lookup.
718 */
719 LOAD_ARGS ARGOFFSET, 1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 RESTORE_REST
H. Peter Anvinfca460f2012-02-19 07:56:26 -0800721#if __SYSCALL_MASK == ~0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 cmpq $__NR_syscall_max,%rax
H. Peter Anvinfca460f2012-02-19 07:56:26 -0800723#else
724 andl $__SYSCALL_MASK,%eax
725 cmpl $__NR_syscall_max,%eax
726#endif
Roland McGratha31f8dd2008-03-16 21:59:11 -0700727 ja int_ret_from_sys_call /* RAX(%rsp) set to -ENOSYS above */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 movq %r10,%rcx /* fixup for C */
729 call *sys_call_table(,%rax,8)
Roland McGratha31f8dd2008-03-16 21:59:11 -0700730 movq %rax,RAX-ARGOFFSET(%rsp)
Andi Kleen7bf36bb2006-04-07 19:50:00 +0200731 /* Use IRET because user could have changed frame */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100732
733/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 * Syscall return path ending with IRET.
735 * Has correct top of stack, but partial stack frame.
Jan Beulichbcddc012006-12-07 02:14:02 +0100736 */
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +0300737GLOBAL(int_ret_from_sys_call)
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100738 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700739 TRACE_IRQS_OFF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 movl $_TIF_ALLWORK_MASK,%edi
741 /* edi: mask to check */
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +0300742GLOBAL(int_with_check)
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200743 LOCKDEP_SYS_EXIT_IRQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 GET_THREAD_INFO(%rcx)
Glauber Costa26ccb8a2008-06-24 11:19:35 -0300745 movl TI_flags(%rcx),%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 andl %edi,%edx
747 jnz int_careful
Glauber Costa26ccb8a2008-06-24 11:19:35 -0300748 andl $~TS_COMPAT,TI_status(%rcx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 jmp retint_swapgs
750
751 /* Either reschedule or signal or syscall exit tracking needed. */
752 /* First do a reschedule test. */
753 /* edx: work, edi: workmask */
754int_careful:
755 bt $TIF_NEED_RESCHED,%edx
756 jnc int_very_careful
Ingo Molnar2601e642006-07-03 00:24:45 -0700757 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100758 ENABLE_INTERRUPTS(CLBR_NONE)
Jan Beulichdf5d1872010-09-02 14:07:16 +0100759 pushq_cfi %rdi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 call schedule
Jan Beulichdf5d1872010-09-02 14:07:16 +0100761 popq_cfi %rdi
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100762 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700763 TRACE_IRQS_OFF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 jmp int_with_check
765
766 /* handle signals and tracing -- both require a full stack frame */
767int_very_careful:
Ingo Molnar2601e642006-07-03 00:24:45 -0700768 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100769 ENABLE_INTERRUPTS(CLBR_NONE)
Roland McGrathb60e7142009-09-22 16:46:34 -0700770int_check_syscall_exit_work:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 SAVE_REST
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100772 /* Check for syscall exit trace */
Roland McGrathd4d67152008-07-09 02:38:07 -0700773 testl $_TIF_WORK_SYSCALL_EXIT,%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 jz int_signal
Jan Beulichdf5d1872010-09-02 14:07:16 +0100775 pushq_cfi %rdi
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100776 leaq 8(%rsp),%rdi # &ptregs -> arg1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 call syscall_trace_leave
Jan Beulichdf5d1872010-09-02 14:07:16 +0100778 popq_cfi %rdi
Roland McGrathd4d67152008-07-09 02:38:07 -0700779 andl $~(_TIF_WORK_SYSCALL_EXIT|_TIF_SYSCALL_EMU),%edi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 jmp int_restore_rest
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100781
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782int_signal:
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100783 testl $_TIF_DO_NOTIFY_MASK,%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 jz 1f
785 movq %rsp,%rdi # &ptregs -> arg1
786 xorl %esi,%esi # oldset -> arg2
787 call do_notify_resume
Roland McGratheca91e72008-07-10 14:50:39 -07007881: movl $_TIF_WORK_MASK,%edi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789int_restore_rest:
790 RESTORE_REST
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100791 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700792 TRACE_IRQS_OFF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 jmp int_with_check
794 CFI_ENDPROC
Jan Beulichbcddc012006-12-07 02:14:02 +0100795END(system_call)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100796
797/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 * Certain special system calls that need to save a complete full stack frame.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100799 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 .macro PTREGSCALL label,func,arg
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100801ENTRY(\label)
802 PARTIAL_FRAME 1 8 /* offset 8: return address */
803 subq $REST_SKIP, %rsp
804 CFI_ADJUST_CFA_OFFSET REST_SKIP
805 call save_rest
806 DEFAULT_FRAME 0 8 /* offset 8: return address */
807 leaq 8(%rsp), \arg /* pt_regs pointer */
808 call \func
809 jmp ptregscall_common
810 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200811END(\label)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 .endm
813
814 PTREGSCALL stub_clone, sys_clone, %r8
815 PTREGSCALL stub_fork, sys_fork, %rdi
816 PTREGSCALL stub_vfork, sys_vfork, %rdi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 PTREGSCALL stub_sigaltstack, sys_sigaltstack, %rdx
818 PTREGSCALL stub_iopl, sys_iopl, %rsi
819
820ENTRY(ptregscall_common)
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100821 DEFAULT_FRAME 1 8 /* offset 8: return address */
822 RESTORE_TOP_OF_STACK %r11, 8
823 movq_cfi_restore R15+8, r15
824 movq_cfi_restore R14+8, r14
825 movq_cfi_restore R13+8, r13
826 movq_cfi_restore R12+8, r12
827 movq_cfi_restore RBP+8, rbp
828 movq_cfi_restore RBX+8, rbx
829 ret $REST_SKIP /* pop extended registers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200831END(ptregscall_common)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100832
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833ENTRY(stub_execve)
834 CFI_STARTPROC
Jan Beuliche6b04b62010-09-02 13:52:45 +0100835 addq $8, %rsp
836 PARTIAL_FRAME 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 SAVE_REST
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 FIXUP_TOP_OF_STACK %r11
Ingo Molnar5d119b22008-02-26 12:55:57 +0100839 movq %rsp, %rcx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 call sys_execve
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 RESTORE_TOP_OF_STACK %r11
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 movq %rax,RAX(%rsp)
843 RESTORE_REST
844 jmp int_ret_from_sys_call
845 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200846END(stub_execve)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100847
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848/*
849 * sigreturn is special because it needs to restore all registers on return.
850 * This cannot be done with SYSRET, so use the IRET return path instead.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100851 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852ENTRY(stub_rt_sigreturn)
853 CFI_STARTPROC
Jan Beulich7effaa82005-09-12 18:49:24 +0200854 addq $8, %rsp
Jan Beuliche6b04b62010-09-02 13:52:45 +0100855 PARTIAL_FRAME 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 SAVE_REST
857 movq %rsp,%rdi
858 FIXUP_TOP_OF_STACK %r11
859 call sys_rt_sigreturn
860 movq %rax,RAX(%rsp) # fixme, this could be done at the higher layer
861 RESTORE_REST
862 jmp int_ret_from_sys_call
863 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200864END(stub_rt_sigreturn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
H. Peter Anvinc5a37392012-02-19 09:41:09 -0800866#ifdef CONFIG_X86_X32_ABI
867 PTREGSCALL stub_x32_sigaltstack, sys32_sigaltstack, %rdx
868
869ENTRY(stub_x32_rt_sigreturn)
870 CFI_STARTPROC
871 addq $8, %rsp
872 PARTIAL_FRAME 0
873 SAVE_REST
874 movq %rsp,%rdi
875 FIXUP_TOP_OF_STACK %r11
876 call sys32_x32_rt_sigreturn
877 movq %rax,RAX(%rsp) # fixme, this could be done at the higher layer
878 RESTORE_REST
879 jmp int_ret_from_sys_call
880 CFI_ENDPROC
881END(stub_x32_rt_sigreturn)
882
H. Peter Anvind1a797f2012-02-19 10:06:34 -0800883ENTRY(stub_x32_execve)
884 CFI_STARTPROC
885 addq $8, %rsp
886 PARTIAL_FRAME 0
887 SAVE_REST
888 FIXUP_TOP_OF_STACK %r11
889 movq %rsp, %rcx
890 call sys32_execve
891 RESTORE_TOP_OF_STACK %r11
892 movq %rax,RAX(%rsp)
893 RESTORE_REST
894 jmp int_ret_from_sys_call
895 CFI_ENDPROC
896END(stub_x32_execve)
897
H. Peter Anvinc5a37392012-02-19 09:41:09 -0800898#endif
899
Jan Beulich7effaa82005-09-12 18:49:24 +0200900/*
H. Peter Anvin939b7872008-11-11 13:51:52 -0800901 * Build the entry stubs and pointer table with some assembler magic.
902 * We pack 7 stubs into a single 32-byte chunk, which will fit in a
903 * single cache line on all modern x86 implementations.
904 */
905 .section .init.rodata,"a"
906ENTRY(interrupt)
Jiri Olsaea714542011-03-07 19:10:39 +0100907 .section .entry.text
H. Peter Anvin939b7872008-11-11 13:51:52 -0800908 .p2align 5
909 .p2align CONFIG_X86_L1_CACHE_SHIFT
910ENTRY(irq_entries_start)
911 INTR_FRAME
912vector=FIRST_EXTERNAL_VECTOR
913.rept (NR_VECTORS-FIRST_EXTERNAL_VECTOR+6)/7
914 .balign 32
915 .rept 7
916 .if vector < NR_VECTORS
H. Peter Anvin86655962008-11-12 10:27:35 -0800917 .if vector <> FIRST_EXTERNAL_VECTOR
H. Peter Anvin939b7872008-11-11 13:51:52 -0800918 CFI_ADJUST_CFA_OFFSET -8
919 .endif
Jan Beulichdf5d1872010-09-02 14:07:16 +01009201: pushq_cfi $(~vector+0x80) /* Note: always in signed byte range */
H. Peter Anvin86655962008-11-12 10:27:35 -0800921 .if ((vector-FIRST_EXTERNAL_VECTOR)%7) <> 6
H. Peter Anvin939b7872008-11-11 13:51:52 -0800922 jmp 2f
923 .endif
924 .previous
925 .quad 1b
Jiri Olsaea714542011-03-07 19:10:39 +0100926 .section .entry.text
H. Peter Anvin939b7872008-11-11 13:51:52 -0800927vector=vector+1
928 .endif
929 .endr
9302: jmp common_interrupt
931.endr
932 CFI_ENDPROC
933END(irq_entries_start)
934
935.previous
936END(interrupt)
937.previous
938
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100939/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 * Interrupt entry/exit.
941 *
942 * Interrupt entry points save only callee clobbered registers in fast path.
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100943 *
944 * Entry runs with interrupts off.
945 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946
Alexander van Heukelum722024d2008-11-13 13:50:20 +0100947/* 0(%rsp): ~(interrupt number) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 .macro interrupt func
Frederic Weisbecker625dbc3b2011-01-06 15:22:47 +0100949 /* reserve pt_regs for scratch regs and rbp */
950 subq $ORIG_RAX-RBP, %rsp
951 CFI_ADJUST_CFA_OFFSET ORIG_RAX-RBP
Frederic Weisbecker18718532011-07-01 01:51:22 +0200952 SAVE_ARGS_IRQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 call \func
954 .endm
955
Masami Hiramatsu8222d712009-08-27 13:23:25 -0400956/*
957 * Interrupt entry/exit should be protected against kprobes
958 */
959 .pushsection .kprobes.text, "ax"
Alexander van Heukelum722024d2008-11-13 13:50:20 +0100960 /*
961 * The interrupt stubs push (~vector+0x80) onto the stack and
962 * then jump to common_interrupt.
963 */
H. Peter Anvin939b7872008-11-11 13:51:52 -0800964 .p2align CONFIG_X86_L1_CACHE_SHIFT
965common_interrupt:
Jan Beulich7effaa82005-09-12 18:49:24 +0200966 XCPT_FRAME
Alexander van Heukelum722024d2008-11-13 13:50:20 +0100967 addq $-0x80,(%rsp) /* Adjust vector to [-256,-1] range */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 interrupt do_IRQ
Brian Gerst3d1e42a2009-01-19 00:38:58 +0900969 /* 0(%rsp): old_rsp-ARGOFFSET */
Jan Beulich7effaa82005-09-12 18:49:24 +0200970ret_from_intr:
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100971 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700972 TRACE_IRQS_OFF
Brian Gerst56895532009-01-19 00:38:58 +0900973 decl PER_CPU_VAR(irq_count)
Frederic Weisbecker625dbc3b2011-01-06 15:22:47 +0100974
Frederic Weisbeckera2bbe752011-07-02 16:52:45 +0200975 /* Restore saved previous stack */
976 popq %rsi
Mark Wielaard928282e2012-02-24 11:32:05 +0100977 CFI_DEF_CFA rsi,SS+8-RBP /* reg/off reset after def_cfa_expr */
Jan Beulicheab9e612011-09-28 16:57:52 +0100978 leaq ARGOFFSET-RBP(%rsi), %rsp
Jan Beulich7effaa82005-09-12 18:49:24 +0200979 CFI_DEF_CFA_REGISTER rsp
Jan Beulicheab9e612011-09-28 16:57:52 +0100980 CFI_ADJUST_CFA_OFFSET RBP-ARGOFFSET
Frederic Weisbecker625dbc3b2011-01-06 15:22:47 +0100981
Jan Beulich7effaa82005-09-12 18:49:24 +0200982exit_intr:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 GET_THREAD_INFO(%rcx)
984 testl $3,CS-ARGOFFSET(%rsp)
985 je retint_kernel
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100986
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 /* Interrupt came from user space */
988 /*
989 * Has a correct top of stack, but a partial stack frame
990 * %rcx: thread info. Interrupts off.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100991 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992retint_with_reschedule:
993 movl $_TIF_WORK_MASK,%edi
Jan Beulich7effaa82005-09-12 18:49:24 +0200994retint_check:
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200995 LOCKDEP_SYS_EXIT_IRQ
Glauber Costa26ccb8a2008-06-24 11:19:35 -0300996 movl TI_flags(%rcx),%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 andl %edi,%edx
Jan Beulich7effaa82005-09-12 18:49:24 +0200998 CFI_REMEMBER_STATE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 jnz retint_careful
Peter Zijlstra10cd7062007-10-11 22:11:12 +02001000
1001retint_swapgs: /* return to user-space */
Ingo Molnar2601e642006-07-03 00:24:45 -07001002 /*
1003 * The iretq could re-enable interrupts:
1004 */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +01001005 DISABLE_INTERRUPTS(CLBR_ANY)
Ingo Molnar2601e642006-07-03 00:24:45 -07001006 TRACE_IRQS_IRETQ
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +01001007 SWAPGS
Ingo Molnar2601e642006-07-03 00:24:45 -07001008 jmp restore_args
1009
Peter Zijlstra10cd7062007-10-11 22:11:12 +02001010retint_restore_args: /* return to kernel space */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +01001011 DISABLE_INTERRUPTS(CLBR_ANY)
Ingo Molnar2601e642006-07-03 00:24:45 -07001012 /*
1013 * The iretq could re-enable interrupts:
1014 */
1015 TRACE_IRQS_IRETQ
1016restore_args:
Borislav Petkov838feb42011-05-31 22:21:53 +02001017 RESTORE_ARGS 1,8,1
Ingo Molnar3701d8632008-02-09 23:24:08 +01001018
Adrian Bunkf7f3d792008-02-13 23:29:53 +02001019irq_return:
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +01001020 INTERRUPT_RETURN
H. Peter Anvind7abc0f2012-04-20 12:19:50 -07001021 _ASM_EXTABLE(irq_return, bad_iret)
Ingo Molnar3701d8632008-02-09 23:24:08 +01001022
1023#ifdef CONFIG_PARAVIRT
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +01001024ENTRY(native_iret)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 iretq
H. Peter Anvind7abc0f2012-04-20 12:19:50 -07001026 _ASM_EXTABLE(native_iret, bad_iret)
Ingo Molnar3701d8632008-02-09 23:24:08 +01001027#endif
1028
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 .section .fixup,"ax"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030bad_iret:
Roland McGrath3aa4b372008-02-06 22:39:43 +01001031 /*
1032 * The iret traps when the %cs or %ss being restored is bogus.
1033 * We've lost the original trap vector and error code.
1034 * #GPF is the most likely one to get for an invalid selector.
1035 * So pretend we completed the iret and took the #GPF in user mode.
1036 *
1037 * We are now running with the kernel GS after exception recovery.
1038 * But error_entry expects us to have user GS to match the user %cs,
1039 * so swap back.
1040 */
1041 pushq $0
1042
1043 SWAPGS
1044 jmp general_protection
1045
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +01001046 .previous
1047
Jan Beulich7effaa82005-09-12 18:49:24 +02001048 /* edi: workmask, edx: work */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049retint_careful:
Jan Beulich7effaa82005-09-12 18:49:24 +02001050 CFI_RESTORE_STATE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 bt $TIF_NEED_RESCHED,%edx
1052 jnc retint_signal
Ingo Molnar2601e642006-07-03 00:24:45 -07001053 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +01001054 ENABLE_INTERRUPTS(CLBR_NONE)
Jan Beulichdf5d1872010-09-02 14:07:16 +01001055 pushq_cfi %rdi
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 call schedule
Jan Beulichdf5d1872010-09-02 14:07:16 +01001057 popq_cfi %rdi
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 GET_THREAD_INFO(%rcx)
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +01001059 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -07001060 TRACE_IRQS_OFF
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 jmp retint_check
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001062
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063retint_signal:
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001064 testl $_TIF_DO_NOTIFY_MASK,%edx
Andi Kleen10ffdbb2005-05-16 21:53:19 -07001065 jz retint_swapgs
Ingo Molnar2601e642006-07-03 00:24:45 -07001066 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +01001067 ENABLE_INTERRUPTS(CLBR_NONE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 SAVE_REST
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001069 movq $-1,ORIG_RAX(%rsp)
Andi Kleen3829ee62005-07-28 21:15:48 -07001070 xorl %esi,%esi # oldset
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 movq %rsp,%rdi # &pt_regs
1072 call do_notify_resume
1073 RESTORE_REST
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +01001074 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -07001075 TRACE_IRQS_OFF
Andi Kleenbe9e6872005-05-01 08:58:51 -07001076 GET_THREAD_INFO(%rcx)
Roland McGratheca91e72008-07-10 14:50:39 -07001077 jmp retint_with_reschedule
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078
1079#ifdef CONFIG_PREEMPT
1080 /* Returning to kernel space. Check if we need preemption */
1081 /* rcx: threadinfo. interrupts off. */
Andi Kleenb06baba2006-09-26 10:52:29 +02001082ENTRY(retint_kernel)
Glauber Costa26ccb8a2008-06-24 11:19:35 -03001083 cmpl $0,TI_preempt_count(%rcx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 jnz retint_restore_args
Glauber Costa26ccb8a2008-06-24 11:19:35 -03001085 bt $TIF_NEED_RESCHED,TI_flags(%rcx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 jnc retint_restore_args
1087 bt $9,EFLAGS-ARGOFFSET(%rsp) /* interrupts off? */
1088 jnc retint_restore_args
1089 call preempt_schedule_irq
1090 jmp exit_intr
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001091#endif
Jan Beulich4b787e02006-06-26 13:56:55 +02001092
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +02001094END(common_interrupt)
Masami Hiramatsu8222d712009-08-27 13:23:25 -04001095/*
1096 * End of kprobes section
1097 */
1098 .popsection
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001099
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100/*
1101 * APIC interrupts.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001102 */
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001103.macro apicinterrupt num sym do_sym
1104ENTRY(\sym)
Jan Beulich7effaa82005-09-12 18:49:24 +02001105 INTR_FRAME
Jan Beulichdf5d1872010-09-02 14:07:16 +01001106 pushq_cfi $~(\num)
Jan Beulich39e95432011-11-29 11:03:46 +00001107.Lcommon_\sym:
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001108 interrupt \do_sym
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 jmp ret_from_intr
1110 CFI_ENDPROC
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001111END(\sym)
1112.endm
Jacob Shin89b831e2005-11-05 17:25:53 +01001113
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001114#ifdef CONFIG_SMP
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001115apicinterrupt IRQ_MOVE_CLEANUP_VECTOR \
1116 irq_move_cleanup_interrupt smp_irq_move_cleanup_interrupt
Andi Kleen4ef702c2009-05-27 21:56:52 +02001117apicinterrupt REBOOT_VECTOR \
1118 reboot_interrupt smp_reboot_interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119#endif
1120
Nick Piggin03b48632009-01-20 04:36:04 +01001121#ifdef CONFIG_X86_UV
Cyrill Gorcunov5ae3a132008-11-27 00:02:10 +03001122apicinterrupt UV_BAU_MESSAGE \
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001123 uv_bau_message_intr1 uv_bau_message_interrupt
Nick Piggin03b48632009-01-20 04:36:04 +01001124#endif
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001125apicinterrupt LOCAL_TIMER_VECTOR \
1126 apic_timer_interrupt smp_apic_timer_interrupt
Dimitri Sivanich4a4de9c2009-10-14 09:22:57 -05001127apicinterrupt X86_PLATFORM_IPI_VECTOR \
1128 x86_platform_ipi smp_x86_platform_ipi
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001130#ifdef CONFIG_SMP
Jan Beulich39e95432011-11-29 11:03:46 +00001131 ALIGN
1132 INTR_FRAME
1133.irp idx,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15, \
Shaohua Li3a09fb42011-01-17 10:52:05 +08001134 16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31
1135.if NUM_INVALIDATE_TLB_VECTORS > \idx
Jan Beulich39e95432011-11-29 11:03:46 +00001136ENTRY(invalidate_interrupt\idx)
1137 pushq_cfi $~(INVALIDATE_TLB_VECTOR_START+\idx)
1138 jmp .Lcommon_invalidate_interrupt0
1139 CFI_ADJUST_CFA_OFFSET -8
1140END(invalidate_interrupt\idx)
Shaohua Li3a09fb42011-01-17 10:52:05 +08001141.endif
Jan Beulich32342822010-10-19 14:52:26 +01001142.endr
Jan Beulich39e95432011-11-29 11:03:46 +00001143 CFI_ENDPROC
1144apicinterrupt INVALIDATE_TLB_VECTOR_START, \
1145 invalidate_interrupt0, smp_invalidate_interrupt
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001146#endif
Cliff Wickman18129242008-06-02 08:56:14 -05001147
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001148apicinterrupt THRESHOLD_APIC_VECTOR \
Andi Kleen7856f6c2009-04-28 23:32:56 +02001149 threshold_interrupt smp_threshold_interrupt
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001150apicinterrupt THERMAL_APIC_VECTOR \
1151 thermal_interrupt smp_thermal_interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001153#ifdef CONFIG_SMP
1154apicinterrupt CALL_FUNCTION_SINGLE_VECTOR \
1155 call_function_single_interrupt smp_call_function_single_interrupt
1156apicinterrupt CALL_FUNCTION_VECTOR \
1157 call_function_interrupt smp_call_function_interrupt
1158apicinterrupt RESCHEDULE_VECTOR \
1159 reschedule_interrupt smp_reschedule_interrupt
1160#endif
1161
1162apicinterrupt ERROR_APIC_VECTOR \
1163 error_interrupt smp_error_interrupt
1164apicinterrupt SPURIOUS_APIC_VECTOR \
1165 spurious_interrupt smp_spurious_interrupt
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001166
Peter Zijlstrae360adb2010-10-14 14:01:34 +08001167#ifdef CONFIG_IRQ_WORK
1168apicinterrupt IRQ_WORK_VECTOR \
1169 irq_work_interrupt smp_irq_work_interrupt
Ingo Molnar241771e2008-12-03 10:39:53 +01001170#endif
1171
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172/*
1173 * Exception entry points.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001174 */
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001175.macro zeroentry sym do_sym
1176ENTRY(\sym)
Jan Beulich7effaa82005-09-12 18:49:24 +02001177 INTR_FRAME
Jeremy Fitzhardingefab58422008-06-25 00:19:31 -04001178 PARAVIRT_ADJUST_EXCEPTION_FRAME
Ingo Molnar14ae22b2008-11-21 15:20:47 +01001179 pushq_cfi $-1 /* ORIG_RAX: no syscall to restart */
Jan Beulichb1cccb12010-09-02 13:55:11 +01001180 subq $ORIG_RAX-R15, %rsp
1181 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
Alexander van Heukelumd99015b2008-11-19 01:18:11 +01001182 call error_entry
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +01001183 DEFAULT_FRAME 0
Alexander van Heukelumd99015b2008-11-19 01:18:11 +01001184 movq %rsp,%rdi /* pt_regs pointer */
1185 xorl %esi,%esi /* no error code */
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001186 call \do_sym
Alexander van Heukelumd99015b2008-11-19 01:18:11 +01001187 jmp error_exit /* %ebx: no swapgs flag */
Jan Beulich7effaa82005-09-12 18:49:24 +02001188 CFI_ENDPROC
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001189END(\sym)
1190.endm
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001192.macro paranoidzeroentry sym do_sym
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001193ENTRY(\sym)
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001194 INTR_FRAME
1195 PARAVIRT_ADJUST_EXCEPTION_FRAME
Jan Beulichb1cccb12010-09-02 13:55:11 +01001196 pushq_cfi $-1 /* ORIG_RAX: no syscall to restart */
1197 subq $ORIG_RAX-R15, %rsp
1198 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001199 call save_paranoid
1200 TRACE_IRQS_OFF
1201 movq %rsp,%rdi /* pt_regs pointer */
1202 xorl %esi,%esi /* no error code */
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001203 call \do_sym
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001204 jmp paranoid_exit /* %ebx: no swapgs flag */
1205 CFI_ENDPROC
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001206END(\sym)
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001207.endm
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001208
Brian Gerstc15a59582010-07-31 12:48:22 -04001209#define INIT_TSS_IST(x) PER_CPU_VAR(init_tss) + (TSS_ist + ((x) - 1) * 8)
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001210.macro paranoidzeroentry_ist sym do_sym ist
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001211ENTRY(\sym)
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001212 INTR_FRAME
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001213 PARAVIRT_ADJUST_EXCEPTION_FRAME
Jan Beulichb1cccb12010-09-02 13:55:11 +01001214 pushq_cfi $-1 /* ORIG_RAX: no syscall to restart */
1215 subq $ORIG_RAX-R15, %rsp
1216 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001217 call save_paranoid
Steven Rostedt5963e312012-05-30 11:54:53 -04001218 TRACE_IRQS_OFF_DEBUG
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001219 movq %rsp,%rdi /* pt_regs pointer */
1220 xorl %esi,%esi /* no error code */
Brian Gerstc15a59582010-07-31 12:48:22 -04001221 subq $EXCEPTION_STKSZ, INIT_TSS_IST(\ist)
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001222 call \do_sym
Brian Gerstc15a59582010-07-31 12:48:22 -04001223 addq $EXCEPTION_STKSZ, INIT_TSS_IST(\ist)
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001224 jmp paranoid_exit /* %ebx: no swapgs flag */
1225 CFI_ENDPROC
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001226END(\sym)
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001227.endm
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001228
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001229.macro errorentry sym do_sym
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001230ENTRY(\sym)
Jan Beulich7effaa82005-09-12 18:49:24 +02001231 XCPT_FRAME
Jeremy Fitzhardingefab58422008-06-25 00:19:31 -04001232 PARAVIRT_ADJUST_EXCEPTION_FRAME
Jan Beulichb1cccb12010-09-02 13:55:11 +01001233 subq $ORIG_RAX-R15, %rsp
1234 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
Alexander van Heukelumd99015b2008-11-19 01:18:11 +01001235 call error_entry
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +01001236 DEFAULT_FRAME 0
Alexander van Heukelumd99015b2008-11-19 01:18:11 +01001237 movq %rsp,%rdi /* pt_regs pointer */
1238 movq ORIG_RAX(%rsp),%rsi /* get error code */
1239 movq $-1,ORIG_RAX(%rsp) /* no syscall to restart */
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001240 call \do_sym
Alexander van Heukelumd99015b2008-11-19 01:18:11 +01001241 jmp error_exit /* %ebx: no swapgs flag */
Jan Beulich7effaa82005-09-12 18:49:24 +02001242 CFI_ENDPROC
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001243END(\sym)
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001244.endm
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245
1246 /* error code is on the stack already */
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001247.macro paranoiderrorentry sym do_sym
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001248ENTRY(\sym)
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001249 XCPT_FRAME
1250 PARAVIRT_ADJUST_EXCEPTION_FRAME
Jan Beulichb1cccb12010-09-02 13:55:11 +01001251 subq $ORIG_RAX-R15, %rsp
1252 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
Alexander van Heukelume2f6bc22008-11-21 16:43:18 +01001253 call save_paranoid
1254 DEFAULT_FRAME 0
Alexander van Heukelum7e61a792008-09-26 14:03:03 +02001255 TRACE_IRQS_OFF
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001256 movq %rsp,%rdi /* pt_regs pointer */
1257 movq ORIG_RAX(%rsp),%rsi /* get error code */
1258 movq $-1,ORIG_RAX(%rsp) /* no syscall to restart */
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001259 call \do_sym
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001260 jmp paranoid_exit /* %ebx: no swapgs flag */
1261 CFI_ENDPROC
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001262END(\sym)
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001263.endm
1264
1265zeroentry divide_error do_divide_error
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001266zeroentry overflow do_overflow
1267zeroentry bounds do_bounds
1268zeroentry invalid_op do_invalid_op
1269zeroentry device_not_available do_device_not_available
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001270paranoiderrorentry double_fault do_double_fault
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001271zeroentry coprocessor_segment_overrun do_coprocessor_segment_overrun
1272errorentry invalid_TSS do_invalid_TSS
1273errorentry segment_not_present do_segment_not_present
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001274zeroentry spurious_interrupt_bug do_spurious_interrupt_bug
1275zeroentry coprocessor_error do_coprocessor_error
1276errorentry alignment_check do_alignment_check
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001277zeroentry simd_coprocessor_error do_simd_coprocessor_error
Andy Lutomirski5cec93c2011-06-05 13:50:24 -04001278
Ingo Molnar2601e642006-07-03 00:24:45 -07001279
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001280 /* Reload gs selector with exception handling */
1281 /* edi: new selector */
Jeremy Fitzhardinge9f9d4892008-06-25 00:19:32 -04001282ENTRY(native_load_gs_index)
Jan Beulich7effaa82005-09-12 18:49:24 +02001283 CFI_STARTPROC
Jan Beulichdf5d1872010-09-02 14:07:16 +01001284 pushfq_cfi
Jeremy Fitzhardingeb8aa2872009-01-28 14:35:03 -08001285 DISABLE_INTERRUPTS(CLBR_ANY & ~CLBR_RDI)
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001286 SWAPGS
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001287gs_change:
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001288 movl %edi,%gs
Linus Torvalds1da177e2005-04-16 15:20:36 -070012892: mfence /* workaround */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +01001290 SWAPGS
Jan Beulichdf5d1872010-09-02 14:07:16 +01001291 popfq_cfi
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001292 ret
Jan Beulich7effaa82005-09-12 18:49:24 +02001293 CFI_ENDPROC
Alexander van Heukelum6efdcfa2008-11-23 10:15:32 +01001294END(native_load_gs_index)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001295
H. Peter Anvind7abc0f2012-04-20 12:19:50 -07001296 _ASM_EXTABLE(gs_change,bad_gs)
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001297 .section .fixup,"ax"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 /* running with kernelgs */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001299bad_gs:
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +01001300 SWAPGS /* switch back to user gs */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 xorl %eax,%eax
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001302 movl %eax,%gs
1303 jmp 2b
1304 .previous
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001305
Brian Gerst3bd95df2009-12-09 12:34:40 -05001306ENTRY(kernel_thread_helper)
Andi Kleenc05991e2006-08-30 19:37:08 +02001307 pushq $0 # fake return address
1308 CFI_STARTPROC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 /*
1310 * Here we are in the child and the registers are set as they were
1311 * at kernel_thread() invocation in the parent.
1312 */
Brian Gerst3bd95df2009-12-09 12:34:40 -05001313 call *%rsi
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 # exit
Andrey Mirkin1c5b5cf2007-10-17 18:04:33 +02001315 mov %eax, %edi
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 call do_exit
jia zhang5f5db592008-11-23 22:47:10 +08001317 ud2 # padding for call trace
Andi Kleenc05991e2006-08-30 19:37:08 +02001318 CFI_ENDPROC
Brian Gerst3bd95df2009-12-09 12:34:40 -05001319END(kernel_thread_helper)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320
1321/*
1322 * execve(). This function needs to use IRET, not SYSRET, to set up all state properly.
1323 *
1324 * C extern interface:
David Howellsc7887322010-08-11 11:26:22 +01001325 * extern long execve(const char *name, char **argv, char **envp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 *
1327 * asm input arguments:
1328 * rdi: name, rsi: argv, rdx: envp
1329 *
1330 * We want to fallback into:
David Howellsc7887322010-08-11 11:26:22 +01001331 * extern long sys_execve(const char *name, char **argv,char **envp, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 *
1333 * do_sys_execve asm fallback arguments:
Ingo Molnar5d119b22008-02-26 12:55:57 +01001334 * rdi: name, rsi: argv, rdx: envp, rcx: fake frame on the stack
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 */
Arnd Bergmann3db03b42006-10-02 02:18:31 -07001336ENTRY(kernel_execve)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 CFI_STARTPROC
1338 FAKE_STACK_FRAME $0
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001339 SAVE_ALL
Ingo Molnar5d119b22008-02-26 12:55:57 +01001340 movq %rsp,%rcx
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 call sys_execve
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001342 movq %rax, RAX(%rsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 RESTORE_REST
1344 testq %rax,%rax
1345 je int_ret_from_sys_call
1346 RESTORE_ARGS
1347 UNFAKE_STACK_FRAME
1348 ret
1349 CFI_ENDPROC
Alexander van Heukelum6efdcfa2008-11-23 10:15:32 +01001350END(kernel_execve)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351
Andi Kleen26995002006-08-02 22:37:28 +02001352/* Call softirq on interrupt stack. Interrupts are off. */
Andi Kleened6b6762005-07-28 21:15:49 -07001353ENTRY(call_softirq)
Jan Beulich7effaa82005-09-12 18:49:24 +02001354 CFI_STARTPROC
Jan Beulichdf5d1872010-09-02 14:07:16 +01001355 pushq_cfi %rbp
Andi Kleen26995002006-08-02 22:37:28 +02001356 CFI_REL_OFFSET rbp,0
1357 mov %rsp,%rbp
1358 CFI_DEF_CFA_REGISTER rbp
Brian Gerst56895532009-01-19 00:38:58 +09001359 incl PER_CPU_VAR(irq_count)
Brian Gerst26f80bd2009-01-19 00:38:58 +09001360 cmove PER_CPU_VAR(irq_stack_ptr),%rsp
Andi Kleen26995002006-08-02 22:37:28 +02001361 push %rbp # backlink for old unwinder
Andi Kleened6b6762005-07-28 21:15:49 -07001362 call __do_softirq
Andi Kleen26995002006-08-02 22:37:28 +02001363 leaveq
Jan Beulichdf5d1872010-09-02 14:07:16 +01001364 CFI_RESTORE rbp
Jan Beulich7effaa82005-09-12 18:49:24 +02001365 CFI_DEF_CFA_REGISTER rsp
Andi Kleen26995002006-08-02 22:37:28 +02001366 CFI_ADJUST_CFA_OFFSET -8
Brian Gerst56895532009-01-19 00:38:58 +09001367 decl PER_CPU_VAR(irq_count)
Andi Kleened6b6762005-07-28 21:15:49 -07001368 ret
Jan Beulich7effaa82005-09-12 18:49:24 +02001369 CFI_ENDPROC
Alexander van Heukelum6efdcfa2008-11-23 10:15:32 +01001370END(call_softirq)
Andi Kleen75154f42007-06-23 02:29:25 +02001371
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001372#ifdef CONFIG_XEN
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001373zeroentry xen_hypervisor_callback xen_do_hypervisor_callback
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001374
1375/*
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001376 * A note on the "critical region" in our callback handler.
1377 * We want to avoid stacking callback handlers due to events occurring
1378 * during handling of the last event. To do this, we keep events disabled
1379 * until we've done all processing. HOWEVER, we must enable events before
1380 * popping the stack frame (can't be done atomically) and so it would still
1381 * be possible to get enough handler activations to overflow the stack.
1382 * Although unlikely, bugs of that kind are hard to track down, so we'd
1383 * like to avoid the possibility.
1384 * So, on entry to the handler we detect whether we interrupted an
1385 * existing activation in its critical region -- if so, we pop the current
1386 * activation and restart the handler using the previous one.
1387 */
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001388ENTRY(xen_do_hypervisor_callback) # do_hypervisor_callback(struct *pt_regs)
1389 CFI_STARTPROC
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001390/*
1391 * Since we don't modify %rdi, evtchn_do_upall(struct *pt_regs) will
1392 * see the correct pointer to the pt_regs
1393 */
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001394 movq %rdi, %rsp # we don't return, adjust the stack frame
1395 CFI_ENDPROC
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +01001396 DEFAULT_FRAME
Brian Gerst56895532009-01-19 00:38:58 +0900139711: incl PER_CPU_VAR(irq_count)
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001398 movq %rsp,%rbp
1399 CFI_DEF_CFA_REGISTER rbp
Brian Gerst26f80bd2009-01-19 00:38:58 +09001400 cmovzq PER_CPU_VAR(irq_stack_ptr),%rsp
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001401 pushq %rbp # backlink for old unwinder
1402 call xen_evtchn_do_upcall
1403 popq %rsp
1404 CFI_DEF_CFA_REGISTER rsp
Brian Gerst56895532009-01-19 00:38:58 +09001405 decl PER_CPU_VAR(irq_count)
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001406 jmp error_exit
1407 CFI_ENDPROC
Alexander van Heukelum371c3942011-03-11 21:59:38 +01001408END(xen_do_hypervisor_callback)
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001409
1410/*
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001411 * Hypervisor uses this for application faults while it executes.
1412 * We get here for two reasons:
1413 * 1. Fault while reloading DS, ES, FS or GS
1414 * 2. Fault while executing IRET
1415 * Category 1 we do not need to fix up as Xen has already reloaded all segment
1416 * registers that could be reloaded and zeroed the others.
1417 * Category 2 we fix up by killing the current process. We cannot use the
1418 * normal Linux return path in this case because if we use the IRET hypercall
1419 * to pop the stack frame we end up in an infinite loop of failsafe callbacks.
1420 * We distinguish between categories by comparing each saved segment register
1421 * with its current contents: any discrepancy means we in category 1.
1422 */
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001423ENTRY(xen_failsafe_callback)
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +01001424 INTR_FRAME 1 (6*8)
1425 /*CFI_REL_OFFSET gs,GS*/
1426 /*CFI_REL_OFFSET fs,FS*/
1427 /*CFI_REL_OFFSET es,ES*/
1428 /*CFI_REL_OFFSET ds,DS*/
1429 CFI_REL_OFFSET r11,8
1430 CFI_REL_OFFSET rcx,0
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001431 movw %ds,%cx
1432 cmpw %cx,0x10(%rsp)
1433 CFI_REMEMBER_STATE
1434 jne 1f
1435 movw %es,%cx
1436 cmpw %cx,0x18(%rsp)
1437 jne 1f
1438 movw %fs,%cx
1439 cmpw %cx,0x20(%rsp)
1440 jne 1f
1441 movw %gs,%cx
1442 cmpw %cx,0x28(%rsp)
1443 jne 1f
1444 /* All segments match their saved values => Category 2 (Bad IRET). */
1445 movq (%rsp),%rcx
1446 CFI_RESTORE rcx
1447 movq 8(%rsp),%r11
1448 CFI_RESTORE r11
1449 addq $0x30,%rsp
1450 CFI_ADJUST_CFA_OFFSET -0x30
Ingo Molnar14ae22b2008-11-21 15:20:47 +01001451 pushq_cfi $0 /* RIP */
1452 pushq_cfi %r11
1453 pushq_cfi %rcx
Jeremy Fitzhardinge4a5c3e72008-07-08 15:07:09 -07001454 jmp general_protection
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001455 CFI_RESTORE_STATE
14561: /* Segment mismatch => Category 1 (Bad segment). Retry the IRET. */
1457 movq (%rsp),%rcx
1458 CFI_RESTORE rcx
1459 movq 8(%rsp),%r11
1460 CFI_RESTORE r11
1461 addq $0x30,%rsp
1462 CFI_ADJUST_CFA_OFFSET -0x30
Ingo Molnar14ae22b2008-11-21 15:20:47 +01001463 pushq_cfi $0
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001464 SAVE_ALL
1465 jmp error_exit
1466 CFI_ENDPROC
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001467END(xen_failsafe_callback)
1468
Sheng Yang38e20b02010-05-14 12:40:51 +01001469apicinterrupt XEN_HVM_EVTCHN_CALLBACK \
1470 xen_hvm_callback_vector xen_evtchn_do_upcall
1471
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001472#endif /* CONFIG_XEN */
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001473
1474/*
1475 * Some functions should be protected against kprobes
1476 */
1477 .pushsection .kprobes.text, "ax"
1478
1479paranoidzeroentry_ist debug do_debug DEBUG_STACK
1480paranoidzeroentry_ist int3 do_int3 DEBUG_STACK
1481paranoiderrorentry stack_segment do_stack_segment
Jeremy Fitzhardinge6cac5a92009-03-29 19:56:29 -07001482#ifdef CONFIG_XEN
1483zeroentry xen_debug do_debug
1484zeroentry xen_int3 do_int3
1485errorentry xen_stack_segment do_stack_segment
1486#endif
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001487errorentry general_protection do_general_protection
1488errorentry page_fault do_page_fault
Gleb Natapov631bc482010-10-14 11:22:52 +02001489#ifdef CONFIG_KVM_GUEST
1490errorentry async_page_fault do_async_page_fault
1491#endif
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001492#ifdef CONFIG_X86_MCE
Andi Kleen5d727922009-04-27 19:25:48 +02001493paranoidzeroentry machine_check *machine_check_vector(%rip)
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001494#endif
1495
1496 /*
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001497 * "Paranoid" exit path from exception stack.
1498 * Paranoid because this is used by NMIs and cannot take
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001499 * any kernel state for granted.
1500 * We don't do kernel preemption checks here, because only
1501 * NMI should be common and it does not enable IRQs and
1502 * cannot get reschedule ticks.
1503 *
1504 * "trace" is 0 for the NMI handler only, because irq-tracing
1505 * is fundamentally NMI-unsafe. (we cannot change the soft and
1506 * hard flags at once, atomically)
1507 */
1508
1509 /* ebx: no swapgs flag */
1510ENTRY(paranoid_exit)
Jan Beulich1f130a72010-09-02 13:54:32 +01001511 DEFAULT_FRAME
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001512 DISABLE_INTERRUPTS(CLBR_NONE)
Steven Rostedt5963e312012-05-30 11:54:53 -04001513 TRACE_IRQS_OFF_DEBUG
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001514 testl %ebx,%ebx /* swapgs needed? */
1515 jnz paranoid_restore
1516 testl $3,CS(%rsp)
1517 jnz paranoid_userspace
1518paranoid_swapgs:
1519 TRACE_IRQS_IRETQ 0
1520 SWAPGS_UNSAFE_STACK
Steven Rostedt0300e7f12009-04-17 08:33:52 -04001521 RESTORE_ALL 8
1522 jmp irq_return
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001523paranoid_restore:
Steven Rostedt5963e312012-05-30 11:54:53 -04001524 TRACE_IRQS_IRETQ_DEBUG 0
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001525 RESTORE_ALL 8
1526 jmp irq_return
1527paranoid_userspace:
1528 GET_THREAD_INFO(%rcx)
1529 movl TI_flags(%rcx),%ebx
1530 andl $_TIF_WORK_MASK,%ebx
1531 jz paranoid_swapgs
1532 movq %rsp,%rdi /* &pt_regs */
1533 call sync_regs
1534 movq %rax,%rsp /* switch stack for scheduling */
1535 testl $_TIF_NEED_RESCHED,%ebx
1536 jnz paranoid_schedule
1537 movl %ebx,%edx /* arg3: thread flags */
1538 TRACE_IRQS_ON
1539 ENABLE_INTERRUPTS(CLBR_NONE)
1540 xorl %esi,%esi /* arg2: oldset */
1541 movq %rsp,%rdi /* arg1: &pt_regs */
1542 call do_notify_resume
1543 DISABLE_INTERRUPTS(CLBR_NONE)
1544 TRACE_IRQS_OFF
1545 jmp paranoid_userspace
1546paranoid_schedule:
1547 TRACE_IRQS_ON
1548 ENABLE_INTERRUPTS(CLBR_ANY)
1549 call schedule
1550 DISABLE_INTERRUPTS(CLBR_ANY)
1551 TRACE_IRQS_OFF
1552 jmp paranoid_userspace
1553 CFI_ENDPROC
1554END(paranoid_exit)
1555
1556/*
1557 * Exception entry point. This expects an error code/orig_rax on the stack.
1558 * returns in "no swapgs flag" in %ebx.
1559 */
1560ENTRY(error_entry)
1561 XCPT_FRAME
1562 CFI_ADJUST_CFA_OFFSET 15*8
1563 /* oldrax contains error code */
1564 cld
1565 movq_cfi rdi, RDI+8
1566 movq_cfi rsi, RSI+8
1567 movq_cfi rdx, RDX+8
1568 movq_cfi rcx, RCX+8
1569 movq_cfi rax, RAX+8
1570 movq_cfi r8, R8+8
1571 movq_cfi r9, R9+8
1572 movq_cfi r10, R10+8
1573 movq_cfi r11, R11+8
1574 movq_cfi rbx, RBX+8
1575 movq_cfi rbp, RBP+8
1576 movq_cfi r12, R12+8
1577 movq_cfi r13, R13+8
1578 movq_cfi r14, R14+8
1579 movq_cfi r15, R15+8
1580 xorl %ebx,%ebx
1581 testl $3,CS+8(%rsp)
1582 je error_kernelspace
1583error_swapgs:
1584 SWAPGS
1585error_sti:
1586 TRACE_IRQS_OFF
1587 ret
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001588
1589/*
1590 * There are two places in the kernel that can potentially fault with
1591 * usergs. Handle them here. The exception handlers after iret run with
1592 * kernel gs again, so don't set the user space flag. B stepping K8s
1593 * sometimes report an truncated RIP for IRET exceptions returning to
1594 * compat mode. Check for these here too.
1595 */
1596error_kernelspace:
1597 incl %ebx
1598 leaq irq_return(%rip),%rcx
1599 cmpq %rcx,RIP+8(%rsp)
1600 je error_swapgs
Brian Gerstae24ffe2009-10-12 10:18:23 -04001601 movl %ecx,%eax /* zero extend */
1602 cmpq %rax,RIP+8(%rsp)
1603 je bstep_iret
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001604 cmpq $gs_change,RIP+8(%rsp)
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001605 je error_swapgs
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001606 jmp error_sti
Brian Gerstae24ffe2009-10-12 10:18:23 -04001607
1608bstep_iret:
1609 /* Fix truncated RIP */
1610 movq %rcx,RIP+8(%rsp)
Brian Gerst97829de2009-11-03 14:02:05 -05001611 jmp error_swapgs
Jan Beuliche6b04b62010-09-02 13:52:45 +01001612 CFI_ENDPROC
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001613END(error_entry)
1614
1615
1616/* ebx: no swapgs flag (1: don't need swapgs, 0: need it) */
1617ENTRY(error_exit)
1618 DEFAULT_FRAME
1619 movl %ebx,%eax
1620 RESTORE_REST
1621 DISABLE_INTERRUPTS(CLBR_NONE)
1622 TRACE_IRQS_OFF
1623 GET_THREAD_INFO(%rcx)
1624 testl %eax,%eax
1625 jne retint_kernel
1626 LOCKDEP_SYS_EXIT_IRQ
1627 movl TI_flags(%rcx),%edx
1628 movl $_TIF_WORK_MASK,%edi
1629 andl %edi,%edx
1630 jnz retint_careful
1631 jmp retint_swapgs
1632 CFI_ENDPROC
1633END(error_exit)
1634
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001635/*
1636 * Test if a given stack is an NMI stack or not.
1637 */
1638 .macro test_in_nmi reg stack nmi_ret normal_ret
1639 cmpq %\reg, \stack
1640 ja \normal_ret
1641 subq $EXCEPTION_STKSZ, %\reg
1642 cmpq %\reg, \stack
1643 jb \normal_ret
1644 jmp \nmi_ret
1645 .endm
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001646
1647 /* runs on exception stack */
1648ENTRY(nmi)
1649 INTR_FRAME
1650 PARAVIRT_ADJUST_EXCEPTION_FRAME
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001651 /*
1652 * We allow breakpoints in NMIs. If a breakpoint occurs, then
1653 * the iretq it performs will take us out of NMI context.
1654 * This means that we can have nested NMIs where the next
1655 * NMI is using the top of the stack of the previous NMI. We
1656 * can't let it execute because the nested NMI will corrupt the
1657 * stack of the previous NMI. NMI handlers are not re-entrant
1658 * anyway.
1659 *
1660 * To handle this case we do the following:
1661 * Check the a special location on the stack that contains
1662 * a variable that is set when NMIs are executing.
1663 * The interrupted task's stack is also checked to see if it
1664 * is an NMI stack.
1665 * If the variable is not set and the stack is not the NMI
1666 * stack then:
1667 * o Set the special variable on the stack
1668 * o Copy the interrupt frame into a "saved" location on the stack
1669 * o Copy the interrupt frame into a "copy" location on the stack
1670 * o Continue processing the NMI
1671 * If the variable is set or the previous stack is the NMI stack:
1672 * o Modify the "copy" location to jump to the repeate_nmi
1673 * o return back to the first NMI
1674 *
1675 * Now on exit of the first NMI, we first clear the stack variable
1676 * The NMI stack will tell any nested NMIs at that point that it is
1677 * nested. Then we pop the stack normally with iret, and if there was
1678 * a nested NMI that updated the copy interrupt stack frame, a
1679 * jump will be made to the repeat_nmi code that will handle the second
1680 * NMI.
1681 */
1682
1683 /* Use %rdx as out temp variable throughout */
1684 pushq_cfi %rdx
Jan Beulich62610912012-02-24 14:54:37 +00001685 CFI_REL_OFFSET rdx, 0
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001686
1687 /*
Steven Rostedt45d5a162012-02-19 16:43:37 -05001688 * If %cs was not the kernel segment, then the NMI triggered in user
1689 * space, which means it is definitely not nested.
1690 */
Steven Rostedta38449ef2012-02-20 15:29:34 -05001691 cmpl $__KERNEL_CS, 16(%rsp)
Steven Rostedt45d5a162012-02-19 16:43:37 -05001692 jne first_nmi
1693
1694 /*
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001695 * Check the special variable on the stack to see if NMIs are
1696 * executing.
1697 */
Steven Rostedta38449ef2012-02-20 15:29:34 -05001698 cmpl $1, -8(%rsp)
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001699 je nested_nmi
1700
1701 /*
1702 * Now test if the previous stack was an NMI stack.
1703 * We need the double check. We check the NMI stack to satisfy the
1704 * race when the first NMI clears the variable before returning.
1705 * We check the variable because the first NMI could be in a
1706 * breakpoint routine using a breakpoint stack.
1707 */
1708 lea 6*8(%rsp), %rdx
1709 test_in_nmi rdx, 4*8(%rsp), nested_nmi, first_nmi
Jan Beulich62610912012-02-24 14:54:37 +00001710 CFI_REMEMBER_STATE
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001711
1712nested_nmi:
1713 /*
1714 * Do nothing if we interrupted the fixup in repeat_nmi.
1715 * It's about to repeat the NMI handler, so we are fine
1716 * with ignoring this one.
1717 */
1718 movq $repeat_nmi, %rdx
1719 cmpq 8(%rsp), %rdx
1720 ja 1f
1721 movq $end_repeat_nmi, %rdx
1722 cmpq 8(%rsp), %rdx
1723 ja nested_nmi_out
1724
17251:
1726 /* Set up the interrupted NMIs stack to jump to repeat_nmi */
1727 leaq -6*8(%rsp), %rdx
1728 movq %rdx, %rsp
1729 CFI_ADJUST_CFA_OFFSET 6*8
1730 pushq_cfi $__KERNEL_DS
1731 pushq_cfi %rdx
1732 pushfq_cfi
1733 pushq_cfi $__KERNEL_CS
1734 pushq_cfi $repeat_nmi
1735
1736 /* Put stack back */
1737 addq $(11*8), %rsp
1738 CFI_ADJUST_CFA_OFFSET -11*8
1739
1740nested_nmi_out:
1741 popq_cfi %rdx
Jan Beulich62610912012-02-24 14:54:37 +00001742 CFI_RESTORE rdx
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001743
1744 /* No need to check faults here */
1745 INTERRUPT_RETURN
1746
Jan Beulich62610912012-02-24 14:54:37 +00001747 CFI_RESTORE_STATE
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001748first_nmi:
1749 /*
1750 * Because nested NMIs will use the pushed location that we
1751 * stored in rdx, we must keep that space available.
1752 * Here's what our stack frame will look like:
1753 * +-------------------------+
1754 * | original SS |
1755 * | original Return RSP |
1756 * | original RFLAGS |
1757 * | original CS |
1758 * | original RIP |
1759 * +-------------------------+
1760 * | temp storage for rdx |
1761 * +-------------------------+
1762 * | NMI executing variable |
1763 * +-------------------------+
1764 * | Saved SS |
1765 * | Saved Return RSP |
1766 * | Saved RFLAGS |
1767 * | Saved CS |
1768 * | Saved RIP |
1769 * +-------------------------+
1770 * | copied SS |
1771 * | copied Return RSP |
1772 * | copied RFLAGS |
1773 * | copied CS |
1774 * | copied RIP |
1775 * +-------------------------+
1776 * | pt_regs |
1777 * +-------------------------+
1778 *
Steven Rostedt79fb4ad2012-02-24 15:55:13 -05001779 * The saved stack frame is used to fix up the copied stack frame
1780 * that a nested NMI may change to make the interrupted NMI iret jump
1781 * to the repeat_nmi. The original stack frame and the temp storage
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001782 * is also used by nested NMIs and can not be trusted on exit.
1783 */
Steven Rostedt79fb4ad2012-02-24 15:55:13 -05001784 /* Do not pop rdx, nested NMIs will corrupt that part of the stack */
Jan Beulich62610912012-02-24 14:54:37 +00001785 movq (%rsp), %rdx
1786 CFI_RESTORE rdx
1787
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001788 /* Set the NMI executing variable on the stack. */
1789 pushq_cfi $1
1790
1791 /* Copy the stack frame to the Saved frame */
1792 .rept 5
1793 pushq_cfi 6*8(%rsp)
1794 .endr
Jan Beulich62610912012-02-24 14:54:37 +00001795 CFI_DEF_CFA_OFFSET SS+8-RIP
1796
Steven Rostedt79fb4ad2012-02-24 15:55:13 -05001797 /* Everything up to here is safe from nested NMIs */
1798
Jan Beulich62610912012-02-24 14:54:37 +00001799 /*
1800 * If there was a nested NMI, the first NMI's iret will return
1801 * here. But NMIs are still enabled and we can take another
1802 * nested NMI. The nested NMI checks the interrupted RIP to see
1803 * if it is between repeat_nmi and end_repeat_nmi, and if so
1804 * it will just return, as we are about to repeat an NMI anyway.
1805 * This makes it safe to copy to the stack frame that a nested
1806 * NMI will update.
1807 */
1808repeat_nmi:
1809 /*
1810 * Update the stack variable to say we are still in NMI (the update
1811 * is benign for the non-repeat case, where 1 was pushed just above
1812 * to this very stack slot).
1813 */
1814 movq $1, 5*8(%rsp)
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001815
1816 /* Make another copy, this one may be modified by nested NMIs */
1817 .rept 5
1818 pushq_cfi 4*8(%rsp)
1819 .endr
Jan Beulich62610912012-02-24 14:54:37 +00001820 CFI_DEF_CFA_OFFSET SS+8-RIP
1821end_repeat_nmi:
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001822
1823 /*
1824 * Everything below this point can be preempted by a nested
Steven Rostedt79fb4ad2012-02-24 15:55:13 -05001825 * NMI if the first NMI took an exception and reset our iret stack
1826 * so that we repeat another NMI.
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001827 */
Steven Rostedt1fd466e2011-12-08 12:32:27 -05001828 pushq_cfi $-1 /* ORIG_RAX: no syscall to restart */
Jan Beulichb1cccb12010-09-02 13:55:11 +01001829 subq $ORIG_RAX-R15, %rsp
1830 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
Steven Rostedt1fd466e2011-12-08 12:32:27 -05001831 /*
1832 * Use save_paranoid to handle SWAPGS, but no need to use paranoid_exit
1833 * as we should not be calling schedule in NMI context.
1834 * Even with normal interrupts enabled. An NMI should not be
1835 * setting NEED_RESCHED or anything that normal interrupts and
1836 * exceptions might do.
1837 */
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001838 call save_paranoid
1839 DEFAULT_FRAME 0
1840 /* paranoidentry do_nmi, 0; without TRACE_IRQS_OFF */
1841 movq %rsp,%rdi
1842 movq $-1,%rsi
1843 call do_nmi
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001844 testl %ebx,%ebx /* swapgs needed? */
1845 jnz nmi_restore
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001846nmi_swapgs:
1847 SWAPGS_UNSAFE_STACK
1848nmi_restore:
1849 RESTORE_ALL 8
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001850 /* Clear the NMI executing stack variable */
1851 movq $0, 10*8(%rsp)
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001852 jmp irq_return
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001853 CFI_ENDPROC
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001854END(nmi)
1855
1856ENTRY(ignore_sysret)
1857 CFI_STARTPROC
1858 mov $-ENOSYS,%eax
1859 sysret
1860 CFI_ENDPROC
1861END(ignore_sysret)
1862
1863/*
1864 * End of kprobes section
1865 */
1866 .popsection