blob: ed767b747fe5e731c38e92fd872cd71a137adc55 [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 Rostedtd57c5d52011-02-09 13:32:18 -050071
72#ifdef CC_USING_FENTRY
73# define function_hook __fentry__
74#else
75# define function_hook mcount
76#endif
77
Steven Rostedtd61f82d2008-05-12 21:20:43 +020078#ifdef CONFIG_DYNAMIC_FTRACE
Steven Rostedtd57c5d52011-02-09 13:32:18 -050079
80ENTRY(function_hook)
Steven Rostedtd61f82d2008-05-12 21:20:43 +020081 retq
Steven Rostedtd57c5d52011-02-09 13:32:18 -050082END(function_hook)
Steven Rostedtd61f82d2008-05-12 21:20:43 +020083
Steven Rostedt08f6fba2012-04-30 16:20:23 -040084/* skip is set if stack has been adjusted */
85.macro ftrace_caller_setup skip=0
86 MCOUNT_SAVE_FRAME \skip
87
88 /* Load the ftrace_ops into the 3rd parameter */
89 leaq function_trace_op, %rdx
90
91 /* Load ip into the first parameter */
92 movq RIP(%rsp), %rdi
93 subq $MCOUNT_INSN_SIZE, %rdi
94 /* Load the parent_ip into the second parameter */
Steven Rostedtd57c5d52011-02-09 13:32:18 -050095#ifdef CC_USING_FENTRY
96 movq SS+16(%rsp), %rsi
97#else
Steven Rostedt08f6fba2012-04-30 16:20:23 -040098 movq 8(%rbp), %rsi
Steven Rostedtd57c5d52011-02-09 13:32:18 -050099#endif
Steven Rostedt08f6fba2012-04-30 16:20:23 -0400100.endm
101
Steven Rostedtd61f82d2008-05-12 21:20:43 +0200102ENTRY(ftrace_caller)
Steven Rostedt08f6fba2012-04-30 16:20:23 -0400103 /* Check if tracing was disabled (quick check) */
Steven Rostedt60a7ecf2008-11-05 16:05:44 -0500104 cmpl $0, function_trace_stop
105 jne ftrace_stub
Steven Rostedtd61f82d2008-05-12 21:20:43 +0200106
Steven Rostedt08f6fba2012-04-30 16:20:23 -0400107 ftrace_caller_setup
108 /* regs go into 4th parameter (but make it NULL) */
109 movq $0, %rcx
Steven Rostedtd61f82d2008-05-12 21:20:43 +0200110
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +0300111GLOBAL(ftrace_call)
Steven Rostedtd61f82d2008-05-12 21:20:43 +0200112 call ftrace_stub
113
Cyrill Gorcunovd680fe42008-12-13 00:09:08 +0300114 MCOUNT_RESTORE_FRAME
Steven Rostedt08f6fba2012-04-30 16:20:23 -0400115ftrace_return:
Steven Rostedtd61f82d2008-05-12 21:20:43 +0200116
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100117#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +0300118GLOBAL(ftrace_graph_call)
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100119 jmp ftrace_stub
120#endif
Steven Rostedtd61f82d2008-05-12 21:20:43 +0200121
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +0300122GLOBAL(ftrace_stub)
Steven Rostedtd61f82d2008-05-12 21:20:43 +0200123 retq
124END(ftrace_caller)
125
Steven Rostedt08f6fba2012-04-30 16:20:23 -0400126ENTRY(ftrace_regs_caller)
127 /* Save the current flags before compare (in SS location)*/
128 pushfq
129
130 /* Check if tracing was disabled (quick check) */
131 cmpl $0, function_trace_stop
132 jne ftrace_restore_flags
133
134 /* skip=8 to skip flags saved in SS */
135 ftrace_caller_setup 8
136
137 /* Save the rest of pt_regs */
138 movq %r15, R15(%rsp)
139 movq %r14, R14(%rsp)
140 movq %r13, R13(%rsp)
141 movq %r12, R12(%rsp)
142 movq %r11, R11(%rsp)
143 movq %r10, R10(%rsp)
144 movq %rbp, RBP(%rsp)
145 movq %rbx, RBX(%rsp)
146 /* Copy saved flags */
147 movq SS(%rsp), %rcx
148 movq %rcx, EFLAGS(%rsp)
149 /* Kernel segments */
150 movq $__KERNEL_DS, %rcx
151 movq %rcx, SS(%rsp)
152 movq $__KERNEL_CS, %rcx
153 movq %rcx, CS(%rsp)
154 /* Stack - skipping return address */
155 leaq SS+16(%rsp), %rcx
156 movq %rcx, RSP(%rsp)
157
158 /* regs go into 4th parameter */
159 leaq (%rsp), %rcx
160
161GLOBAL(ftrace_regs_call)
162 call ftrace_stub
163
164 /* Copy flags back to SS, to restore them */
165 movq EFLAGS(%rsp), %rax
166 movq %rax, SS(%rsp)
167
168 /* restore the rest of pt_regs */
169 movq R15(%rsp), %r15
170 movq R14(%rsp), %r14
171 movq R13(%rsp), %r13
172 movq R12(%rsp), %r12
173 movq R10(%rsp), %r10
174 movq RBP(%rsp), %rbp
175 movq RBX(%rsp), %rbx
176
177 /* skip=8 to skip flags saved in SS */
178 MCOUNT_RESTORE_FRAME 8
179
180 /* Restore flags */
181 popfq
182
183 jmp ftrace_return
184ftrace_restore_flags:
185 popfq
186 jmp ftrace_stub
187
188END(ftrace_regs_caller)
189
190
Steven Rostedtd61f82d2008-05-12 21:20:43 +0200191#else /* ! CONFIG_DYNAMIC_FTRACE */
Steven Rostedtd57c5d52011-02-09 13:32:18 -0500192
193ENTRY(function_hook)
Steven Rostedt60a7ecf2008-11-05 16:05:44 -0500194 cmpl $0, function_trace_stop
195 jne ftrace_stub
196
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200197 cmpq $ftrace_stub, ftrace_trace_function
198 jnz trace
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100199
200#ifdef CONFIG_FUNCTION_GRAPH_TRACER
201 cmpq $ftrace_stub, ftrace_graph_return
202 jnz ftrace_graph_caller
Steven Rostedte49dc192008-12-02 23:50:05 -0500203
204 cmpq $ftrace_graph_entry_stub, ftrace_graph_entry
205 jnz ftrace_graph_caller
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100206#endif
207
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +0300208GLOBAL(ftrace_stub)
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200209 retq
210
211trace:
Cyrill Gorcunovd680fe42008-12-13 00:09:08 +0300212 MCOUNT_SAVE_FRAME
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200213
Steven Rostedt08f6fba2012-04-30 16:20:23 -0400214 movq RIP(%rsp), %rdi
Steven Rostedtd57c5d52011-02-09 13:32:18 -0500215#ifdef CC_USING_FENTRY
216 movq SS+16(%rsp), %rsi
217#else
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200218 movq 8(%rbp), %rsi
Steven Rostedtd57c5d52011-02-09 13:32:18 -0500219#endif
Abhishek Sagar395a59d2008-06-21 23:47:27 +0530220 subq $MCOUNT_INSN_SIZE, %rdi
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200221
222 call *ftrace_trace_function
223
Cyrill Gorcunovd680fe42008-12-13 00:09:08 +0300224 MCOUNT_RESTORE_FRAME
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200225
226 jmp ftrace_stub
Steven Rostedtd57c5d52011-02-09 13:32:18 -0500227END(function_hook)
Steven Rostedtd61f82d2008-05-12 21:20:43 +0200228#endif /* CONFIG_DYNAMIC_FTRACE */
Steven Rostedt606576c2008-10-06 19:06:12 -0400229#endif /* CONFIG_FUNCTION_TRACER */
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200230
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100231#ifdef CONFIG_FUNCTION_GRAPH_TRACER
232ENTRY(ftrace_graph_caller)
Cyrill Gorcunovd680fe42008-12-13 00:09:08 +0300233 MCOUNT_SAVE_FRAME
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100234
Steven Rostedtd57c5d52011-02-09 13:32:18 -0500235#ifdef CC_USING_FENTRY
236 leaq SS+16(%rsp), %rdi
237 movq $0, %rdx /* No framepointers needed */
238#else
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100239 leaq 8(%rbp), %rdi
Steven Rostedt71e308a2009-06-18 12:45:08 -0400240 movq (%rbp), %rdx
Steven Rostedtd57c5d52011-02-09 13:32:18 -0500241#endif
242 movq RIP(%rsp), %rsi
Steven Rostedtbb4304c2008-12-02 15:34:09 -0500243 subq $MCOUNT_INSN_SIZE, %rsi
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100244
245 call prepare_ftrace_return
246
Cyrill Gorcunovd680fe42008-12-13 00:09:08 +0300247 MCOUNT_RESTORE_FRAME
248
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100249 retq
250END(ftrace_graph_caller)
251
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +0300252GLOBAL(return_to_handler)
Jiri Olsa4818d802009-07-29 10:58:37 +0200253 subq $24, %rsp
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100254
Steven Rostedte71e99c2009-03-25 14:30:04 -0400255 /* Save the return values */
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100256 movq %rax, (%rsp)
Steven Rostedte71e99c2009-03-25 14:30:04 -0400257 movq %rdx, 8(%rsp)
Steven Rostedt71e308a2009-06-18 12:45:08 -0400258 movq %rbp, %rdi
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100259
260 call ftrace_return_to_handler
261
Steven Rostedt194ec342009-10-13 16:33:50 -0400262 movq %rax, %rdi
Steven Rostedte71e99c2009-03-25 14:30:04 -0400263 movq 8(%rsp), %rdx
Jan Beulich7effaa82005-09-12 18:49:24 +0200264 movq (%rsp), %rax
Steven Rostedt194ec342009-10-13 16:33:50 -0400265 addq $24, %rsp
266 jmp *%rdi
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100267#endif
Jan Beulich7effaa82005-09-12 18:49:24 +0200268
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
270#ifndef CONFIG_PREEMPT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271#define retint_kernel retint_restore_args
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100272#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
274#ifdef CONFIG_PARAVIRT
275ENTRY(native_usergs_sysret64)
276 swapgs
277 sysretq
Cyrill Gorcunovb3baaa12009-02-23 22:57:00 +0300278ENDPROC(native_usergs_sysret64)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279#endif /* CONFIG_PARAVIRT */
280
281
282.macro TRACE_IRQS_IRETQ offset=ARGOFFSET
283#ifdef CONFIG_TRACE_IRQFLAGS
284 bt $9,EFLAGS-\offset(%rsp) /* interrupts off? */
285 jnc 1f
286 TRACE_IRQS_ON
2871:
288#endif
289.endm
290
291/*
Steven Rostedt5963e312012-05-30 11:54:53 -0400292 * When dynamic function tracer is enabled it will add a breakpoint
293 * to all locations that it is about to modify, sync CPUs, update
294 * all the code, sync CPUs, then remove the breakpoints. In this time
295 * if lockdep is enabled, it might jump back into the debug handler
296 * outside the updating of the IST protection. (TRACE_IRQS_ON/OFF).
297 *
298 * We need to change the IDT table before calling TRACE_IRQS_ON/OFF to
299 * make sure the stack pointer does not get reset back to the top
300 * of the debug stack, and instead just reuses the current stack.
301 */
302#if defined(CONFIG_DYNAMIC_FTRACE) && defined(CONFIG_TRACE_IRQFLAGS)
303
304.macro TRACE_IRQS_OFF_DEBUG
305 call debug_stack_set_zero
306 TRACE_IRQS_OFF
307 call debug_stack_reset
308.endm
309
310.macro TRACE_IRQS_ON_DEBUG
311 call debug_stack_set_zero
312 TRACE_IRQS_ON
313 call debug_stack_reset
314.endm
315
316.macro TRACE_IRQS_IRETQ_DEBUG offset=ARGOFFSET
317 bt $9,EFLAGS-\offset(%rsp) /* interrupts off? */
318 jnc 1f
319 TRACE_IRQS_ON_DEBUG
3201:
321.endm
322
323#else
324# define TRACE_IRQS_OFF_DEBUG TRACE_IRQS_OFF
325# define TRACE_IRQS_ON_DEBUG TRACE_IRQS_ON
326# define TRACE_IRQS_IRETQ_DEBUG TRACE_IRQS_IRETQ
327#endif
328
329/*
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100330 * C code is not supposed to know about undefined top of stack. Every time
331 * a C function with an pt_regs argument is called from the SYSCALL based
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 * fast path FIXUP_TOP_OF_STACK is needed.
333 * RESTORE_TOP_OF_STACK syncs the syscall state after any possible ptregs
334 * manipulation.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100335 */
336
337 /* %rsp:at FRAMEEND */
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100338 .macro FIXUP_TOP_OF_STACK tmp offset=0
Brian Gerst3d1e42a2009-01-19 00:38:58 +0900339 movq PER_CPU_VAR(old_rsp),\tmp
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100340 movq \tmp,RSP+\offset(%rsp)
341 movq $__USER_DS,SS+\offset(%rsp)
342 movq $__USER_CS,CS+\offset(%rsp)
343 movq $-1,RCX+\offset(%rsp)
344 movq R11+\offset(%rsp),\tmp /* get eflags */
345 movq \tmp,EFLAGS+\offset(%rsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 .endm
347
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100348 .macro RESTORE_TOP_OF_STACK tmp offset=0
349 movq RSP+\offset(%rsp),\tmp
Brian Gerst3d1e42a2009-01-19 00:38:58 +0900350 movq \tmp,PER_CPU_VAR(old_rsp)
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100351 movq EFLAGS+\offset(%rsp),\tmp
352 movq \tmp,R11+\offset(%rsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 .endm
354
355 .macro FAKE_STACK_FRAME child_rip
356 /* push in order ss, rsp, eflags, cs, rip */
357 xorl %eax, %eax
Jan Beulichdf5d1872010-09-02 14:07:16 +0100358 pushq_cfi $__KERNEL_DS /* ss */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 /*CFI_REL_OFFSET ss,0*/
Jan Beulichdf5d1872010-09-02 14:07:16 +0100360 pushq_cfi %rax /* rsp */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 CFI_REL_OFFSET rsp,0
Seiichi Ikarashi1cf83432011-12-06 17:58:14 +0900362 pushq_cfi $(X86_EFLAGS_IF|X86_EFLAGS_BIT1) /* eflags - interrupts on */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 /*CFI_REL_OFFSET rflags,0*/
Jan Beulichdf5d1872010-09-02 14:07:16 +0100364 pushq_cfi $__KERNEL_CS /* cs */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 /*CFI_REL_OFFSET cs,0*/
Jan Beulichdf5d1872010-09-02 14:07:16 +0100366 pushq_cfi \child_rip /* rip */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 CFI_REL_OFFSET rip,0
Jan Beulichdf5d1872010-09-02 14:07:16 +0100368 pushq_cfi %rax /* orig rax */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 .endm
370
371 .macro UNFAKE_STACK_FRAME
372 addq $8*6, %rsp
373 CFI_ADJUST_CFA_OFFSET -(6*8)
374 .endm
375
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100376/*
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100377 * initial frame state for interrupts (and exceptions without error code)
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100378 */
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100379 .macro EMPTY_FRAME start=1 offset=0
380 .if \start
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100381 CFI_STARTPROC simple
382 CFI_SIGNAL_FRAME
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100383 CFI_DEF_CFA rsp,8+\offset
384 .else
385 CFI_DEF_CFA_OFFSET 8+\offset
386 .endif
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100387 .endm
388
389/*
390 * initial frame state for interrupts (and exceptions without error code)
391 */
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100392 .macro INTR_FRAME start=1 offset=0
Ingo Molnare8a0e272008-11-21 15:11:32 +0100393 EMPTY_FRAME \start, SS+8+\offset-RIP
394 /*CFI_REL_OFFSET ss, SS+\offset-RIP*/
395 CFI_REL_OFFSET rsp, RSP+\offset-RIP
396 /*CFI_REL_OFFSET rflags, EFLAGS+\offset-RIP*/
397 /*CFI_REL_OFFSET cs, CS+\offset-RIP*/
398 CFI_REL_OFFSET rip, RIP+\offset-RIP
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100399 .endm
400
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100401/*
402 * initial frame state for exceptions with error code (and interrupts
403 * with vector already pushed)
404 */
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100405 .macro XCPT_FRAME start=1 offset=0
Ingo Molnare8a0e272008-11-21 15:11:32 +0100406 INTR_FRAME \start, RIP+\offset-ORIG_RAX
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100407 /*CFI_REL_OFFSET orig_rax, ORIG_RAX-ORIG_RAX*/
408 .endm
409
410/*
411 * frame that enables calling into C.
412 */
413 .macro PARTIAL_FRAME start=1 offset=0
Ingo Molnare8a0e272008-11-21 15:11:32 +0100414 XCPT_FRAME \start, ORIG_RAX+\offset-ARGOFFSET
415 CFI_REL_OFFSET rdi, RDI+\offset-ARGOFFSET
416 CFI_REL_OFFSET rsi, RSI+\offset-ARGOFFSET
417 CFI_REL_OFFSET rdx, RDX+\offset-ARGOFFSET
418 CFI_REL_OFFSET rcx, RCX+\offset-ARGOFFSET
419 CFI_REL_OFFSET rax, RAX+\offset-ARGOFFSET
420 CFI_REL_OFFSET r8, R8+\offset-ARGOFFSET
421 CFI_REL_OFFSET r9, R9+\offset-ARGOFFSET
422 CFI_REL_OFFSET r10, R10+\offset-ARGOFFSET
423 CFI_REL_OFFSET r11, R11+\offset-ARGOFFSET
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100424 .endm
425
426/*
427 * frame that enables passing a complete pt_regs to a C function.
428 */
429 .macro DEFAULT_FRAME start=1 offset=0
Ingo Molnare8a0e272008-11-21 15:11:32 +0100430 PARTIAL_FRAME \start, R11+\offset-R15
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100431 CFI_REL_OFFSET rbx, RBX+\offset
432 CFI_REL_OFFSET rbp, RBP+\offset
433 CFI_REL_OFFSET r12, R12+\offset
434 CFI_REL_OFFSET r13, R13+\offset
435 CFI_REL_OFFSET r14, R14+\offset
436 CFI_REL_OFFSET r15, R15+\offset
437 .endm
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100438
439/* save partial stack frame */
Frederic Weisbecker18718532011-07-01 01:51:22 +0200440 .macro SAVE_ARGS_IRQ
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100441 cld
Frederic Weisbecker18718532011-07-01 01:51:22 +0200442 /* start from rbp in pt_regs and jump over */
443 movq_cfi rdi, RDI-RBP
444 movq_cfi rsi, RSI-RBP
445 movq_cfi rdx, RDX-RBP
446 movq_cfi rcx, RCX-RBP
447 movq_cfi rax, RAX-RBP
448 movq_cfi r8, R8-RBP
449 movq_cfi r9, R9-RBP
450 movq_cfi r10, R10-RBP
451 movq_cfi r11, R11-RBP
Ingo Molnar14ae22b2008-11-21 15:20:47 +0100452
Frederic Weisbeckera2bbe752011-07-02 16:52:45 +0200453 /* Save rbp so that we can unwind from get_irq_regs() */
454 movq_cfi rbp, 0
455
456 /* Save previous stack value */
457 movq %rsp, %rsi
Frederic Weisbecker3b99a3ef2011-07-01 02:25:17 +0200458
459 leaq -RBP(%rsp),%rdi /* arg1 for handler */
Jan Beulich69466462012-02-24 11:55:01 +0000460 testl $3, CS-RBP(%rsi)
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100461 je 1f
462 SWAPGS
463 /*
Brian Gerst56895532009-01-19 00:38:58 +0900464 * irq_count is used to check if a CPU is already on an interrupt stack
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100465 * or not. While this is essentially redundant with preempt_count it is
466 * a little cheaper to use a separate counter in the PDA (short of
467 * moving irq_enter into assembly, which would be too much work)
468 */
Brian Gerst56895532009-01-19 00:38:58 +09004691: incl PER_CPU_VAR(irq_count)
Jan Beulich69466462012-02-24 11:55:01 +0000470 cmovzq PER_CPU_VAR(irq_stack_ptr),%rsp
Jan Beulicheab9e612011-09-28 16:57:52 +0100471 CFI_DEF_CFA_REGISTER rsi
Frederic Weisbeckera2bbe752011-07-02 16:52:45 +0200472
Jan Beulich69466462012-02-24 11:55:01 +0000473 /* Store previous stack value */
Frederic Weisbeckera2bbe752011-07-02 16:52:45 +0200474 pushq %rsi
Jan Beulicheab9e612011-09-28 16:57:52 +0100475 CFI_ESCAPE 0x0f /* DW_CFA_def_cfa_expression */, 6, \
476 0x77 /* DW_OP_breg7 */, 0, \
477 0x06 /* DW_OP_deref */, \
478 0x08 /* DW_OP_const1u */, SS+8-RBP, \
479 0x22 /* DW_OP_plus */
Frederic Weisbeckera2bbe752011-07-02 16:52:45 +0200480 /* We entered an interrupt context - irqs are off: */
481 TRACE_IRQS_OFF
Frederic Weisbecker18718532011-07-01 01:51:22 +0200482 .endm
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100483
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100484ENTRY(save_rest)
485 PARTIAL_FRAME 1 REST_SKIP+8
486 movq 5*8+16(%rsp), %r11 /* save return address */
487 movq_cfi rbx, RBX+16
488 movq_cfi rbp, RBP+16
489 movq_cfi r12, R12+16
490 movq_cfi r13, R13+16
491 movq_cfi r14, R14+16
492 movq_cfi r15, R15+16
493 movq %r11, 8(%rsp) /* return address */
494 FIXUP_TOP_OF_STACK %r11, 16
495 ret
496 CFI_ENDPROC
497END(save_rest)
498
Alexander van Heukelume2f6bc22008-11-21 16:43:18 +0100499/* save complete stack frame */
Jan Beulichc2810182009-03-12 10:38:55 +0000500 .pushsection .kprobes.text, "ax"
Alexander van Heukelume2f6bc22008-11-21 16:43:18 +0100501ENTRY(save_paranoid)
502 XCPT_FRAME 1 RDI+8
503 cld
504 movq_cfi rdi, RDI+8
505 movq_cfi rsi, RSI+8
506 movq_cfi rdx, RDX+8
507 movq_cfi rcx, RCX+8
508 movq_cfi rax, RAX+8
509 movq_cfi r8, R8+8
510 movq_cfi r9, R9+8
511 movq_cfi r10, R10+8
512 movq_cfi r11, R11+8
513 movq_cfi rbx, RBX+8
514 movq_cfi rbp, RBP+8
515 movq_cfi r12, R12+8
516 movq_cfi r13, R13+8
517 movq_cfi r14, R14+8
518 movq_cfi r15, R15+8
519 movl $1,%ebx
520 movl $MSR_GS_BASE,%ecx
521 rdmsr
522 testl %edx,%edx
523 js 1f /* negative -> in kernel */
524 SWAPGS
525 xorl %ebx,%ebx
5261: ret
527 CFI_ENDPROC
528END(save_paranoid)
Jan Beulichc2810182009-03-12 10:38:55 +0000529 .popsection
Alexander van Heukelume2f6bc22008-11-21 16:43:18 +0100530
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531/*
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100532 * A newly forked process directly context switches into this address.
533 *
534 * rdi: prev task we switched from
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100535 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536ENTRY(ret_from_fork)
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100537 DEFAULT_FRAME
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100538
Benjamin LaHaise7106a5a2009-01-10 23:00:22 -0500539 LOCK ; btr $TIF_FORK,TI_flags(%r8)
540
Jan Beulichdf5d1872010-09-02 14:07:16 +0100541 pushq_cfi kernel_eflags(%rip)
542 popfq_cfi # reset kernel eflags
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100543
544 call schedule_tail # rdi: 'prev' task parameter
545
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 GET_THREAD_INFO(%rcx)
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100547
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 RESTORE_REST
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100549
550 testl $3, CS-ARGOFFSET(%rsp) # from kernel_thread?
Jan Beulich70ea6852011-11-29 10:54:22 +0000551 jz retint_restore_args
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100552
553 testl $_TIF_IA32, TI_flags(%rcx) # 32-bit compat task needs IRET
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 jnz int_ret_from_sys_call
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100555
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100556 RESTORE_TOP_OF_STACK %rdi, -ARGOFFSET
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100557 jmp ret_from_sys_call # go to the SYSRET fastpath
558
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200560END(ret_from_fork)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
562/*
Lucas De Marchi0d2eb442011-03-17 16:24:16 -0300563 * System call entry. Up to 6 arguments in registers are supported.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 *
565 * SYSCALL does not save anything on the stack and does not change the
566 * stack pointer.
567 */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100568
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569/*
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100570 * Register setup:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 * rax system call number
572 * rdi arg0
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100573 * rcx return address for syscall/sysret, C arg3
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 * rsi arg1
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100575 * rdx arg2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 * r10 arg3 (--> moved to rcx for C)
577 * r8 arg4
578 * r9 arg5
579 * r11 eflags for syscall/sysret, temporary for C
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100580 * r12-r15,rbp,rbx saved by C code, not touched.
581 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 * Interrupts are off on entry.
583 * Only called from user space.
584 *
585 * XXX if we had a free scratch register we could save the RSP into the stack frame
586 * and report it properly in ps. Unfortunately we haven't.
Andi Kleen7bf36bb2006-04-07 19:50:00 +0200587 *
588 * When user can change the frames always force IRET. That is because
589 * it deals with uncanonical addresses better. SYSRET has trouble
590 * with them due to bugs in both AMD and Intel CPUs.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100591 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
593ENTRY(system_call)
Jan Beulich7effaa82005-09-12 18:49:24 +0200594 CFI_STARTPROC simple
Jan Beulichadf14232006-09-26 10:52:41 +0200595 CFI_SIGNAL_FRAME
Brian Gerst9af45652009-01-19 00:38:58 +0900596 CFI_DEF_CFA rsp,KERNEL_STACK_OFFSET
Jan Beulich7effaa82005-09-12 18:49:24 +0200597 CFI_REGISTER rip,rcx
598 /*CFI_REGISTER rflags,r11*/
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100599 SWAPGS_UNSAFE_STACK
600 /*
601 * A hypervisor implementation might want to use a label
602 * after the swapgs, so that it can do the swapgs
603 * for the guest and jump here on syscall.
604 */
Jan Beulichf6b2bc82011-11-29 11:24:10 +0000605GLOBAL(system_call_after_swapgs)
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100606
Brian Gerst3d1e42a2009-01-19 00:38:58 +0900607 movq %rsp,PER_CPU_VAR(old_rsp)
Brian Gerst9af45652009-01-19 00:38:58 +0900608 movq PER_CPU_VAR(kernel_stack),%rsp
Ingo Molnar2601e642006-07-03 00:24:45 -0700609 /*
610 * No need to follow this irqs off/on section - it's straight
611 * and short:
612 */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100613 ENABLE_INTERRUPTS(CLBR_NONE)
Borislav Petkovcac0e0a2011-05-31 22:21:52 +0200614 SAVE_ARGS 8,0
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100615 movq %rax,ORIG_RAX-ARGOFFSET(%rsp)
Jan Beulich7effaa82005-09-12 18:49:24 +0200616 movq %rcx,RIP-ARGOFFSET(%rsp)
617 CFI_REL_OFFSET rip,RIP-ARGOFFSET
Jan Beulich46db09d2011-11-29 11:17:45 +0000618 testl $_TIF_WORK_SYSCALL_ENTRY,TI_flags+THREAD_INFO(%rsp,RIP-ARGOFFSET)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 jnz tracesys
Roland McGrath86a1c342008-06-23 15:37:04 -0700620system_call_fastpath:
H. Peter Anvinfca460f2012-02-19 07:56:26 -0800621#if __SYSCALL_MASK == ~0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 cmpq $__NR_syscall_max,%rax
H. Peter Anvinfca460f2012-02-19 07:56:26 -0800623#else
624 andl $__SYSCALL_MASK,%eax
625 cmpl $__NR_syscall_max,%eax
626#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 ja badsys
628 movq %r10,%rcx
629 call *sys_call_table(,%rax,8) # XXX: rip relative
630 movq %rax,RAX-ARGOFFSET(%rsp)
631/*
632 * Syscall return path ending with SYSRET (fast path)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100633 * Has incomplete stack frame and undefined top of stack.
634 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635ret_from_sys_call:
Andi Kleen11b854b2005-04-16 15:25:02 -0700636 movl $_TIF_ALLWORK_MASK,%edi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 /* edi: flagmask */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100638sysret_check:
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200639 LOCKDEP_SYS_EXIT
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100640 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700641 TRACE_IRQS_OFF
Jan Beulich46db09d2011-11-29 11:17:45 +0000642 movl TI_flags+THREAD_INFO(%rsp,RIP-ARGOFFSET),%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 andl %edi,%edx
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100644 jnz sysret_careful
Jan Beulichbcddc012006-12-07 02:14:02 +0100645 CFI_REMEMBER_STATE
Ingo Molnar2601e642006-07-03 00:24:45 -0700646 /*
647 * sysretq will re-enable interrupts:
648 */
649 TRACE_IRQS_ON
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 movq RIP-ARGOFFSET(%rsp),%rcx
Jan Beulich7effaa82005-09-12 18:49:24 +0200651 CFI_REGISTER rip,rcx
Borislav Petkov838feb42011-05-31 22:21:53 +0200652 RESTORE_ARGS 1,-ARG_SKIP,0
Jan Beulich7effaa82005-09-12 18:49:24 +0200653 /*CFI_REGISTER rflags,r11*/
Brian Gerst3d1e42a2009-01-19 00:38:58 +0900654 movq PER_CPU_VAR(old_rsp), %rsp
Jeremy Fitzhardinge2be29982008-06-25 00:19:28 -0400655 USERGS_SYSRET64
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656
Jan Beulichbcddc012006-12-07 02:14:02 +0100657 CFI_RESTORE_STATE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 /* Handle reschedules */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100659 /* edx: work, edi: workmask */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660sysret_careful:
661 bt $TIF_NEED_RESCHED,%edx
662 jnc sysret_signal
Ingo Molnar2601e642006-07-03 00:24:45 -0700663 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100664 ENABLE_INTERRUPTS(CLBR_NONE)
Jan Beulichdf5d1872010-09-02 14:07:16 +0100665 pushq_cfi %rdi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 call schedule
Jan Beulichdf5d1872010-09-02 14:07:16 +0100667 popq_cfi %rdi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 jmp sysret_check
669
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100670 /* Handle a signal */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671sysret_signal:
Ingo Molnar2601e642006-07-03 00:24:45 -0700672 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100673 ENABLE_INTERRUPTS(CLBR_NONE)
Roland McGrath86a1c342008-06-23 15:37:04 -0700674#ifdef CONFIG_AUDITSYSCALL
675 bt $TIF_SYSCALL_AUDIT,%edx
676 jc sysret_audit
677#endif
Roland McGrathb60e7142009-09-22 16:46:34 -0700678 /*
679 * We have a signal, or exit tracing or single-step.
680 * These all wind up with the iret return path anyway,
681 * so just join that path right now.
682 */
683 FIXUP_TOP_OF_STACK %r11, -ARGOFFSET
684 jmp int_check_syscall_exit_work
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100685
Jan Beulich7effaa82005-09-12 18:49:24 +0200686badsys:
687 movq $-ENOSYS,RAX-ARGOFFSET(%rsp)
688 jmp ret_from_sys_call
689
Roland McGrath86a1c342008-06-23 15:37:04 -0700690#ifdef CONFIG_AUDITSYSCALL
691 /*
692 * Fast path for syscall audit without full syscall trace.
Eric Parisb05d8442012-01-03 14:23:06 -0500693 * We just call __audit_syscall_entry() directly, and then
Roland McGrath86a1c342008-06-23 15:37:04 -0700694 * jump back to the normal fast path.
695 */
696auditsys:
697 movq %r10,%r9 /* 6th arg: 4th syscall arg */
698 movq %rdx,%r8 /* 5th arg: 3rd syscall arg */
699 movq %rsi,%rcx /* 4th arg: 2nd syscall arg */
700 movq %rdi,%rdx /* 3rd arg: 1st syscall arg */
701 movq %rax,%rsi /* 2nd arg: syscall number */
702 movl $AUDIT_ARCH_X86_64,%edi /* 1st arg: audit arch */
Eric Parisb05d8442012-01-03 14:23:06 -0500703 call __audit_syscall_entry
Roland McGrath86a1c342008-06-23 15:37:04 -0700704 LOAD_ARGS 0 /* reload call-clobbered registers */
705 jmp system_call_fastpath
706
707 /*
Eric Parisd7e75282012-01-03 14:23:06 -0500708 * Return fast path for syscall audit. Call __audit_syscall_exit()
Roland McGrath86a1c342008-06-23 15:37:04 -0700709 * directly and then jump back to the fast path with TIF_SYSCALL_AUDIT
710 * masked off.
711 */
712sysret_audit:
Roland McGrath03275592010-07-21 17:44:12 -0700713 movq RAX-ARGOFFSET(%rsp),%rsi /* second arg, syscall return value */
Eric Parisd7e75282012-01-03 14:23:06 -0500714 cmpq $-MAX_ERRNO,%rsi /* is it < -MAX_ERRNO? */
715 setbe %al /* 1 if so, 0 if not */
Roland McGrath86a1c342008-06-23 15:37:04 -0700716 movzbl %al,%edi /* zero-extend that into %edi */
Eric Parisd7e75282012-01-03 14:23:06 -0500717 call __audit_syscall_exit
Roland McGrath86a1c342008-06-23 15:37:04 -0700718 movl $(_TIF_ALLWORK_MASK & ~_TIF_SYSCALL_AUDIT),%edi
719 jmp sysret_check
720#endif /* CONFIG_AUDITSYSCALL */
721
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 /* Do syscall tracing */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100723tracesys:
Roland McGrath86a1c342008-06-23 15:37:04 -0700724#ifdef CONFIG_AUDITSYSCALL
Jan Beulich46db09d2011-11-29 11:17:45 +0000725 testl $(_TIF_WORK_SYSCALL_ENTRY & ~_TIF_SYSCALL_AUDIT),TI_flags+THREAD_INFO(%rsp,RIP-ARGOFFSET)
Roland McGrath86a1c342008-06-23 15:37:04 -0700726 jz auditsys
727#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 SAVE_REST
Roland McGratha31f8dd2008-03-16 21:59:11 -0700729 movq $-ENOSYS,RAX(%rsp) /* ptrace can change this for a bad syscall */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 FIXUP_TOP_OF_STACK %rdi
731 movq %rsp,%rdi
732 call syscall_trace_enter
Roland McGrathd4d67152008-07-09 02:38:07 -0700733 /*
734 * Reload arg registers from stack in case ptrace changed them.
735 * We don't reload %rax because syscall_trace_enter() returned
736 * the value it wants us to use in the table lookup.
737 */
738 LOAD_ARGS ARGOFFSET, 1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 RESTORE_REST
H. Peter Anvinfca460f2012-02-19 07:56:26 -0800740#if __SYSCALL_MASK == ~0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 cmpq $__NR_syscall_max,%rax
H. Peter Anvinfca460f2012-02-19 07:56:26 -0800742#else
743 andl $__SYSCALL_MASK,%eax
744 cmpl $__NR_syscall_max,%eax
745#endif
Roland McGratha31f8dd2008-03-16 21:59:11 -0700746 ja int_ret_from_sys_call /* RAX(%rsp) set to -ENOSYS above */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 movq %r10,%rcx /* fixup for C */
748 call *sys_call_table(,%rax,8)
Roland McGratha31f8dd2008-03-16 21:59:11 -0700749 movq %rax,RAX-ARGOFFSET(%rsp)
Andi Kleen7bf36bb2006-04-07 19:50:00 +0200750 /* Use IRET because user could have changed frame */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100751
752/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 * Syscall return path ending with IRET.
754 * Has correct top of stack, but partial stack frame.
Jan Beulichbcddc012006-12-07 02:14:02 +0100755 */
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +0300756GLOBAL(int_ret_from_sys_call)
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100757 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700758 TRACE_IRQS_OFF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 movl $_TIF_ALLWORK_MASK,%edi
760 /* edi: mask to check */
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +0300761GLOBAL(int_with_check)
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200762 LOCKDEP_SYS_EXIT_IRQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 GET_THREAD_INFO(%rcx)
Glauber Costa26ccb8a2008-06-24 11:19:35 -0300764 movl TI_flags(%rcx),%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 andl %edi,%edx
766 jnz int_careful
Glauber Costa26ccb8a2008-06-24 11:19:35 -0300767 andl $~TS_COMPAT,TI_status(%rcx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 jmp retint_swapgs
769
770 /* Either reschedule or signal or syscall exit tracking needed. */
771 /* First do a reschedule test. */
772 /* edx: work, edi: workmask */
773int_careful:
774 bt $TIF_NEED_RESCHED,%edx
775 jnc int_very_careful
Ingo Molnar2601e642006-07-03 00:24:45 -0700776 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100777 ENABLE_INTERRUPTS(CLBR_NONE)
Jan Beulichdf5d1872010-09-02 14:07:16 +0100778 pushq_cfi %rdi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 call schedule
Jan Beulichdf5d1872010-09-02 14:07:16 +0100780 popq_cfi %rdi
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100781 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700782 TRACE_IRQS_OFF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 jmp int_with_check
784
785 /* handle signals and tracing -- both require a full stack frame */
786int_very_careful:
Ingo Molnar2601e642006-07-03 00:24:45 -0700787 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100788 ENABLE_INTERRUPTS(CLBR_NONE)
Roland McGrathb60e7142009-09-22 16:46:34 -0700789int_check_syscall_exit_work:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 SAVE_REST
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100791 /* Check for syscall exit trace */
Roland McGrathd4d67152008-07-09 02:38:07 -0700792 testl $_TIF_WORK_SYSCALL_EXIT,%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 jz int_signal
Jan Beulichdf5d1872010-09-02 14:07:16 +0100794 pushq_cfi %rdi
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100795 leaq 8(%rsp),%rdi # &ptregs -> arg1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 call syscall_trace_leave
Jan Beulichdf5d1872010-09-02 14:07:16 +0100797 popq_cfi %rdi
Roland McGrathd4d67152008-07-09 02:38:07 -0700798 andl $~(_TIF_WORK_SYSCALL_EXIT|_TIF_SYSCALL_EMU),%edi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 jmp int_restore_rest
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100800
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801int_signal:
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100802 testl $_TIF_DO_NOTIFY_MASK,%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 jz 1f
804 movq %rsp,%rdi # &ptregs -> arg1
805 xorl %esi,%esi # oldset -> arg2
806 call do_notify_resume
Roland McGratheca91e72008-07-10 14:50:39 -07008071: movl $_TIF_WORK_MASK,%edi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808int_restore_rest:
809 RESTORE_REST
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100810 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700811 TRACE_IRQS_OFF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 jmp int_with_check
813 CFI_ENDPROC
Jan Beulichbcddc012006-12-07 02:14:02 +0100814END(system_call)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100815
816/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 * Certain special system calls that need to save a complete full stack frame.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100818 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 .macro PTREGSCALL label,func,arg
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100820ENTRY(\label)
821 PARTIAL_FRAME 1 8 /* offset 8: return address */
822 subq $REST_SKIP, %rsp
823 CFI_ADJUST_CFA_OFFSET REST_SKIP
824 call save_rest
825 DEFAULT_FRAME 0 8 /* offset 8: return address */
826 leaq 8(%rsp), \arg /* pt_regs pointer */
827 call \func
828 jmp ptregscall_common
829 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200830END(\label)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 .endm
832
833 PTREGSCALL stub_clone, sys_clone, %r8
834 PTREGSCALL stub_fork, sys_fork, %rdi
835 PTREGSCALL stub_vfork, sys_vfork, %rdi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 PTREGSCALL stub_sigaltstack, sys_sigaltstack, %rdx
837 PTREGSCALL stub_iopl, sys_iopl, %rsi
838
839ENTRY(ptregscall_common)
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100840 DEFAULT_FRAME 1 8 /* offset 8: return address */
841 RESTORE_TOP_OF_STACK %r11, 8
842 movq_cfi_restore R15+8, r15
843 movq_cfi_restore R14+8, r14
844 movq_cfi_restore R13+8, r13
845 movq_cfi_restore R12+8, r12
846 movq_cfi_restore RBP+8, rbp
847 movq_cfi_restore RBX+8, rbx
848 ret $REST_SKIP /* pop extended registers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200850END(ptregscall_common)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100851
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852ENTRY(stub_execve)
853 CFI_STARTPROC
Jan Beuliche6b04b62010-09-02 13:52:45 +0100854 addq $8, %rsp
855 PARTIAL_FRAME 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 SAVE_REST
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 FIXUP_TOP_OF_STACK %r11
Ingo Molnar5d119b22008-02-26 12:55:57 +0100858 movq %rsp, %rcx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 call sys_execve
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 RESTORE_TOP_OF_STACK %r11
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 movq %rax,RAX(%rsp)
862 RESTORE_REST
863 jmp int_ret_from_sys_call
864 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200865END(stub_execve)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100866
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867/*
868 * sigreturn is special because it needs to restore all registers on return.
869 * This cannot be done with SYSRET, so use the IRET return path instead.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100870 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871ENTRY(stub_rt_sigreturn)
872 CFI_STARTPROC
Jan Beulich7effaa82005-09-12 18:49:24 +0200873 addq $8, %rsp
Jan Beuliche6b04b62010-09-02 13:52:45 +0100874 PARTIAL_FRAME 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 SAVE_REST
876 movq %rsp,%rdi
877 FIXUP_TOP_OF_STACK %r11
878 call sys_rt_sigreturn
879 movq %rax,RAX(%rsp) # fixme, this could be done at the higher layer
880 RESTORE_REST
881 jmp int_ret_from_sys_call
882 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200883END(stub_rt_sigreturn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884
H. Peter Anvinc5a37392012-02-19 09:41:09 -0800885#ifdef CONFIG_X86_X32_ABI
886 PTREGSCALL stub_x32_sigaltstack, sys32_sigaltstack, %rdx
887
888ENTRY(stub_x32_rt_sigreturn)
889 CFI_STARTPROC
890 addq $8, %rsp
891 PARTIAL_FRAME 0
892 SAVE_REST
893 movq %rsp,%rdi
894 FIXUP_TOP_OF_STACK %r11
895 call sys32_x32_rt_sigreturn
896 movq %rax,RAX(%rsp) # fixme, this could be done at the higher layer
897 RESTORE_REST
898 jmp int_ret_from_sys_call
899 CFI_ENDPROC
900END(stub_x32_rt_sigreturn)
901
H. Peter Anvind1a797f2012-02-19 10:06:34 -0800902ENTRY(stub_x32_execve)
903 CFI_STARTPROC
904 addq $8, %rsp
905 PARTIAL_FRAME 0
906 SAVE_REST
907 FIXUP_TOP_OF_STACK %r11
908 movq %rsp, %rcx
909 call sys32_execve
910 RESTORE_TOP_OF_STACK %r11
911 movq %rax,RAX(%rsp)
912 RESTORE_REST
913 jmp int_ret_from_sys_call
914 CFI_ENDPROC
915END(stub_x32_execve)
916
H. Peter Anvinc5a37392012-02-19 09:41:09 -0800917#endif
918
Jan Beulich7effaa82005-09-12 18:49:24 +0200919/*
H. Peter Anvin939b7872008-11-11 13:51:52 -0800920 * Build the entry stubs and pointer table with some assembler magic.
921 * We pack 7 stubs into a single 32-byte chunk, which will fit in a
922 * single cache line on all modern x86 implementations.
923 */
924 .section .init.rodata,"a"
925ENTRY(interrupt)
Jiri Olsaea714542011-03-07 19:10:39 +0100926 .section .entry.text
H. Peter Anvin939b7872008-11-11 13:51:52 -0800927 .p2align 5
928 .p2align CONFIG_X86_L1_CACHE_SHIFT
929ENTRY(irq_entries_start)
930 INTR_FRAME
931vector=FIRST_EXTERNAL_VECTOR
932.rept (NR_VECTORS-FIRST_EXTERNAL_VECTOR+6)/7
933 .balign 32
934 .rept 7
935 .if vector < NR_VECTORS
H. Peter Anvin86655962008-11-12 10:27:35 -0800936 .if vector <> FIRST_EXTERNAL_VECTOR
H. Peter Anvin939b7872008-11-11 13:51:52 -0800937 CFI_ADJUST_CFA_OFFSET -8
938 .endif
Jan Beulichdf5d1872010-09-02 14:07:16 +01009391: pushq_cfi $(~vector+0x80) /* Note: always in signed byte range */
H. Peter Anvin86655962008-11-12 10:27:35 -0800940 .if ((vector-FIRST_EXTERNAL_VECTOR)%7) <> 6
H. Peter Anvin939b7872008-11-11 13:51:52 -0800941 jmp 2f
942 .endif
943 .previous
944 .quad 1b
Jiri Olsaea714542011-03-07 19:10:39 +0100945 .section .entry.text
H. Peter Anvin939b7872008-11-11 13:51:52 -0800946vector=vector+1
947 .endif
948 .endr
9492: jmp common_interrupt
950.endr
951 CFI_ENDPROC
952END(irq_entries_start)
953
954.previous
955END(interrupt)
956.previous
957
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100958/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 * Interrupt entry/exit.
960 *
961 * Interrupt entry points save only callee clobbered registers in fast path.
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100962 *
963 * Entry runs with interrupts off.
964 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965
Alexander van Heukelum722024d2008-11-13 13:50:20 +0100966/* 0(%rsp): ~(interrupt number) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 .macro interrupt func
Frederic Weisbecker625dbc32011-01-06 15:22:47 +0100968 /* reserve pt_regs for scratch regs and rbp */
969 subq $ORIG_RAX-RBP, %rsp
970 CFI_ADJUST_CFA_OFFSET ORIG_RAX-RBP
Frederic Weisbecker18718532011-07-01 01:51:22 +0200971 SAVE_ARGS_IRQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 call \func
973 .endm
974
Masami Hiramatsu8222d712009-08-27 13:23:25 -0400975/*
976 * Interrupt entry/exit should be protected against kprobes
977 */
978 .pushsection .kprobes.text, "ax"
Alexander van Heukelum722024d2008-11-13 13:50:20 +0100979 /*
980 * The interrupt stubs push (~vector+0x80) onto the stack and
981 * then jump to common_interrupt.
982 */
H. Peter Anvin939b7872008-11-11 13:51:52 -0800983 .p2align CONFIG_X86_L1_CACHE_SHIFT
984common_interrupt:
Jan Beulich7effaa82005-09-12 18:49:24 +0200985 XCPT_FRAME
Alexander van Heukelum722024d2008-11-13 13:50:20 +0100986 addq $-0x80,(%rsp) /* Adjust vector to [-256,-1] range */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 interrupt do_IRQ
Brian Gerst3d1e42a2009-01-19 00:38:58 +0900988 /* 0(%rsp): old_rsp-ARGOFFSET */
Jan Beulich7effaa82005-09-12 18:49:24 +0200989ret_from_intr:
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100990 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700991 TRACE_IRQS_OFF
Brian Gerst56895532009-01-19 00:38:58 +0900992 decl PER_CPU_VAR(irq_count)
Frederic Weisbecker625dbc32011-01-06 15:22:47 +0100993
Frederic Weisbeckera2bbe752011-07-02 16:52:45 +0200994 /* Restore saved previous stack */
995 popq %rsi
Mark Wielaard928282e2012-02-24 11:32:05 +0100996 CFI_DEF_CFA rsi,SS+8-RBP /* reg/off reset after def_cfa_expr */
Jan Beulicheab9e612011-09-28 16:57:52 +0100997 leaq ARGOFFSET-RBP(%rsi), %rsp
Jan Beulich7effaa82005-09-12 18:49:24 +0200998 CFI_DEF_CFA_REGISTER rsp
Jan Beulicheab9e612011-09-28 16:57:52 +0100999 CFI_ADJUST_CFA_OFFSET RBP-ARGOFFSET
Frederic Weisbecker625dbc32011-01-06 15:22:47 +01001000
Jan Beulich7effaa82005-09-12 18:49:24 +02001001exit_intr:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 GET_THREAD_INFO(%rcx)
1003 testl $3,CS-ARGOFFSET(%rsp)
1004 je retint_kernel
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001005
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 /* Interrupt came from user space */
1007 /*
1008 * Has a correct top of stack, but a partial stack frame
1009 * %rcx: thread info. Interrupts off.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001010 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011retint_with_reschedule:
1012 movl $_TIF_WORK_MASK,%edi
Jan Beulich7effaa82005-09-12 18:49:24 +02001013retint_check:
Peter Zijlstra10cd7062007-10-11 22:11:12 +02001014 LOCKDEP_SYS_EXIT_IRQ
Glauber Costa26ccb8a2008-06-24 11:19:35 -03001015 movl TI_flags(%rcx),%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 andl %edi,%edx
Jan Beulich7effaa82005-09-12 18:49:24 +02001017 CFI_REMEMBER_STATE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 jnz retint_careful
Peter Zijlstra10cd7062007-10-11 22:11:12 +02001019
1020retint_swapgs: /* return to user-space */
Ingo Molnar2601e642006-07-03 00:24:45 -07001021 /*
1022 * The iretq could re-enable interrupts:
1023 */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +01001024 DISABLE_INTERRUPTS(CLBR_ANY)
Ingo Molnar2601e642006-07-03 00:24:45 -07001025 TRACE_IRQS_IRETQ
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +01001026 SWAPGS
Ingo Molnar2601e642006-07-03 00:24:45 -07001027 jmp restore_args
1028
Peter Zijlstra10cd7062007-10-11 22:11:12 +02001029retint_restore_args: /* return to kernel space */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +01001030 DISABLE_INTERRUPTS(CLBR_ANY)
Ingo Molnar2601e642006-07-03 00:24:45 -07001031 /*
1032 * The iretq could re-enable interrupts:
1033 */
1034 TRACE_IRQS_IRETQ
1035restore_args:
Borislav Petkov838feb42011-05-31 22:21:53 +02001036 RESTORE_ARGS 1,8,1
Ingo Molnar3701d8632008-02-09 23:24:08 +01001037
Adrian Bunkf7f3d792008-02-13 23:29:53 +02001038irq_return:
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +01001039 INTERRUPT_RETURN
H. Peter Anvind7abc0f2012-04-20 12:19:50 -07001040 _ASM_EXTABLE(irq_return, bad_iret)
Ingo Molnar3701d8632008-02-09 23:24:08 +01001041
1042#ifdef CONFIG_PARAVIRT
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +01001043ENTRY(native_iret)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 iretq
H. Peter Anvind7abc0f2012-04-20 12:19:50 -07001045 _ASM_EXTABLE(native_iret, bad_iret)
Ingo Molnar3701d8632008-02-09 23:24:08 +01001046#endif
1047
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 .section .fixup,"ax"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049bad_iret:
Roland McGrath3aa4b372008-02-06 22:39:43 +01001050 /*
1051 * The iret traps when the %cs or %ss being restored is bogus.
1052 * We've lost the original trap vector and error code.
1053 * #GPF is the most likely one to get for an invalid selector.
1054 * So pretend we completed the iret and took the #GPF in user mode.
1055 *
1056 * We are now running with the kernel GS after exception recovery.
1057 * But error_entry expects us to have user GS to match the user %cs,
1058 * so swap back.
1059 */
1060 pushq $0
1061
1062 SWAPGS
1063 jmp general_protection
1064
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +01001065 .previous
1066
Jan Beulich7effaa82005-09-12 18:49:24 +02001067 /* edi: workmask, edx: work */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068retint_careful:
Jan Beulich7effaa82005-09-12 18:49:24 +02001069 CFI_RESTORE_STATE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 bt $TIF_NEED_RESCHED,%edx
1071 jnc retint_signal
Ingo Molnar2601e642006-07-03 00:24:45 -07001072 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +01001073 ENABLE_INTERRUPTS(CLBR_NONE)
Jan Beulichdf5d1872010-09-02 14:07:16 +01001074 pushq_cfi %rdi
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 call schedule
Jan Beulichdf5d1872010-09-02 14:07:16 +01001076 popq_cfi %rdi
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 GET_THREAD_INFO(%rcx)
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +01001078 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -07001079 TRACE_IRQS_OFF
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 jmp retint_check
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001081
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082retint_signal:
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001083 testl $_TIF_DO_NOTIFY_MASK,%edx
Andi Kleen10ffdbb2005-05-16 21:53:19 -07001084 jz retint_swapgs
Ingo Molnar2601e642006-07-03 00:24:45 -07001085 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +01001086 ENABLE_INTERRUPTS(CLBR_NONE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 SAVE_REST
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001088 movq $-1,ORIG_RAX(%rsp)
Andi Kleen3829ee62005-07-28 21:15:48 -07001089 xorl %esi,%esi # oldset
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 movq %rsp,%rdi # &pt_regs
1091 call do_notify_resume
1092 RESTORE_REST
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +01001093 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -07001094 TRACE_IRQS_OFF
Andi Kleenbe9e6872005-05-01 08:58:51 -07001095 GET_THREAD_INFO(%rcx)
Roland McGratheca91e72008-07-10 14:50:39 -07001096 jmp retint_with_reschedule
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097
1098#ifdef CONFIG_PREEMPT
1099 /* Returning to kernel space. Check if we need preemption */
1100 /* rcx: threadinfo. interrupts off. */
Andi Kleenb06baba2006-09-26 10:52:29 +02001101ENTRY(retint_kernel)
Glauber Costa26ccb8a2008-06-24 11:19:35 -03001102 cmpl $0,TI_preempt_count(%rcx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 jnz retint_restore_args
Glauber Costa26ccb8a2008-06-24 11:19:35 -03001104 bt $TIF_NEED_RESCHED,TI_flags(%rcx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 jnc retint_restore_args
1106 bt $9,EFLAGS-ARGOFFSET(%rsp) /* interrupts off? */
1107 jnc retint_restore_args
1108 call preempt_schedule_irq
1109 jmp exit_intr
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001110#endif
Jan Beulich4b787e02006-06-26 13:56:55 +02001111
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +02001113END(common_interrupt)
Masami Hiramatsu8222d712009-08-27 13:23:25 -04001114/*
1115 * End of kprobes section
1116 */
1117 .popsection
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001118
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119/*
1120 * APIC interrupts.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001121 */
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001122.macro apicinterrupt num sym do_sym
1123ENTRY(\sym)
Jan Beulich7effaa82005-09-12 18:49:24 +02001124 INTR_FRAME
Jan Beulichdf5d1872010-09-02 14:07:16 +01001125 pushq_cfi $~(\num)
Jan Beulich39e95432011-11-29 11:03:46 +00001126.Lcommon_\sym:
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001127 interrupt \do_sym
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 jmp ret_from_intr
1129 CFI_ENDPROC
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001130END(\sym)
1131.endm
Jacob Shin89b831e2005-11-05 17:25:53 +01001132
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001133#ifdef CONFIG_SMP
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001134apicinterrupt IRQ_MOVE_CLEANUP_VECTOR \
1135 irq_move_cleanup_interrupt smp_irq_move_cleanup_interrupt
Andi Kleen4ef702c2009-05-27 21:56:52 +02001136apicinterrupt REBOOT_VECTOR \
1137 reboot_interrupt smp_reboot_interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138#endif
1139
Nick Piggin03b48632009-01-20 04:36:04 +01001140#ifdef CONFIG_X86_UV
Cyrill Gorcunov5ae3a132008-11-27 00:02:10 +03001141apicinterrupt UV_BAU_MESSAGE \
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001142 uv_bau_message_intr1 uv_bau_message_interrupt
Nick Piggin03b48632009-01-20 04:36:04 +01001143#endif
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001144apicinterrupt LOCAL_TIMER_VECTOR \
1145 apic_timer_interrupt smp_apic_timer_interrupt
Dimitri Sivanich4a4de9c2009-10-14 09:22:57 -05001146apicinterrupt X86_PLATFORM_IPI_VECTOR \
1147 x86_platform_ipi smp_x86_platform_ipi
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001149apicinterrupt THRESHOLD_APIC_VECTOR \
Andi Kleen7856f6c2009-04-28 23:32:56 +02001150 threshold_interrupt smp_threshold_interrupt
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001151apicinterrupt THERMAL_APIC_VECTOR \
1152 thermal_interrupt smp_thermal_interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001154#ifdef CONFIG_SMP
1155apicinterrupt CALL_FUNCTION_SINGLE_VECTOR \
1156 call_function_single_interrupt smp_call_function_single_interrupt
1157apicinterrupt CALL_FUNCTION_VECTOR \
1158 call_function_interrupt smp_call_function_interrupt
1159apicinterrupt RESCHEDULE_VECTOR \
1160 reschedule_interrupt smp_reschedule_interrupt
1161#endif
1162
1163apicinterrupt ERROR_APIC_VECTOR \
1164 error_interrupt smp_error_interrupt
1165apicinterrupt SPURIOUS_APIC_VECTOR \
1166 spurious_interrupt smp_spurious_interrupt
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001167
Peter Zijlstrae360adb2010-10-14 14:01:34 +08001168#ifdef CONFIG_IRQ_WORK
1169apicinterrupt IRQ_WORK_VECTOR \
1170 irq_work_interrupt smp_irq_work_interrupt
Ingo Molnar241771e2008-12-03 10:39:53 +01001171#endif
1172
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173/*
1174 * Exception entry points.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001175 */
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001176.macro zeroentry sym do_sym
1177ENTRY(\sym)
Jan Beulich7effaa82005-09-12 18:49:24 +02001178 INTR_FRAME
Jeremy Fitzhardingefab58422008-06-25 00:19:31 -04001179 PARAVIRT_ADJUST_EXCEPTION_FRAME
Ingo Molnar14ae22b2008-11-21 15:20:47 +01001180 pushq_cfi $-1 /* ORIG_RAX: no syscall to restart */
Jan Beulichb1cccb12010-09-02 13:55:11 +01001181 subq $ORIG_RAX-R15, %rsp
1182 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
Alexander van Heukelumd99015b2008-11-19 01:18:11 +01001183 call error_entry
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +01001184 DEFAULT_FRAME 0
Alexander van Heukelumd99015b2008-11-19 01:18:11 +01001185 movq %rsp,%rdi /* pt_regs pointer */
1186 xorl %esi,%esi /* no error code */
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001187 call \do_sym
Alexander van Heukelumd99015b2008-11-19 01:18:11 +01001188 jmp error_exit /* %ebx: no swapgs flag */
Jan Beulich7effaa82005-09-12 18:49:24 +02001189 CFI_ENDPROC
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001190END(\sym)
1191.endm
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001193.macro paranoidzeroentry sym do_sym
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001194ENTRY(\sym)
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001195 INTR_FRAME
1196 PARAVIRT_ADJUST_EXCEPTION_FRAME
Jan Beulichb1cccb12010-09-02 13:55:11 +01001197 pushq_cfi $-1 /* ORIG_RAX: no syscall to restart */
1198 subq $ORIG_RAX-R15, %rsp
1199 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001200 call save_paranoid
1201 TRACE_IRQS_OFF
1202 movq %rsp,%rdi /* pt_regs pointer */
1203 xorl %esi,%esi /* no error code */
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001204 call \do_sym
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001205 jmp paranoid_exit /* %ebx: no swapgs flag */
1206 CFI_ENDPROC
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001207END(\sym)
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001208.endm
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001209
Brian Gerstc15a5952010-07-31 12:48:22 -04001210#define INIT_TSS_IST(x) PER_CPU_VAR(init_tss) + (TSS_ist + ((x) - 1) * 8)
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001211.macro paranoidzeroentry_ist sym do_sym ist
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001212ENTRY(\sym)
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001213 INTR_FRAME
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001214 PARAVIRT_ADJUST_EXCEPTION_FRAME
Jan Beulichb1cccb12010-09-02 13:55:11 +01001215 pushq_cfi $-1 /* ORIG_RAX: no syscall to restart */
1216 subq $ORIG_RAX-R15, %rsp
1217 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001218 call save_paranoid
Steven Rostedt5963e312012-05-30 11:54:53 -04001219 TRACE_IRQS_OFF_DEBUG
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001220 movq %rsp,%rdi /* pt_regs pointer */
1221 xorl %esi,%esi /* no error code */
Brian Gerstc15a5952010-07-31 12:48:22 -04001222 subq $EXCEPTION_STKSZ, INIT_TSS_IST(\ist)
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001223 call \do_sym
Brian Gerstc15a5952010-07-31 12:48:22 -04001224 addq $EXCEPTION_STKSZ, INIT_TSS_IST(\ist)
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001225 jmp paranoid_exit /* %ebx: no swapgs flag */
1226 CFI_ENDPROC
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001227END(\sym)
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001228.endm
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001229
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001230.macro errorentry sym do_sym
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001231ENTRY(\sym)
Jan Beulich7effaa82005-09-12 18:49:24 +02001232 XCPT_FRAME
Jeremy Fitzhardingefab58422008-06-25 00:19:31 -04001233 PARAVIRT_ADJUST_EXCEPTION_FRAME
Jan Beulichb1cccb12010-09-02 13:55:11 +01001234 subq $ORIG_RAX-R15, %rsp
1235 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
Alexander van Heukelumd99015b2008-11-19 01:18:11 +01001236 call error_entry
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +01001237 DEFAULT_FRAME 0
Alexander van Heukelumd99015b2008-11-19 01:18:11 +01001238 movq %rsp,%rdi /* pt_regs pointer */
1239 movq ORIG_RAX(%rsp),%rsi /* get error code */
1240 movq $-1,ORIG_RAX(%rsp) /* no syscall to restart */
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001241 call \do_sym
Alexander van Heukelumd99015b2008-11-19 01:18:11 +01001242 jmp error_exit /* %ebx: no swapgs flag */
Jan Beulich7effaa82005-09-12 18:49:24 +02001243 CFI_ENDPROC
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001244END(\sym)
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001245.endm
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246
1247 /* error code is on the stack already */
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001248.macro paranoiderrorentry sym do_sym
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001249ENTRY(\sym)
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001250 XCPT_FRAME
1251 PARAVIRT_ADJUST_EXCEPTION_FRAME
Jan Beulichb1cccb12010-09-02 13:55:11 +01001252 subq $ORIG_RAX-R15, %rsp
1253 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
Alexander van Heukelume2f6bc22008-11-21 16:43:18 +01001254 call save_paranoid
1255 DEFAULT_FRAME 0
Alexander van Heukelum7e61a792008-09-26 14:03:03 +02001256 TRACE_IRQS_OFF
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001257 movq %rsp,%rdi /* pt_regs pointer */
1258 movq ORIG_RAX(%rsp),%rsi /* get error code */
1259 movq $-1,ORIG_RAX(%rsp) /* no syscall to restart */
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001260 call \do_sym
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001261 jmp paranoid_exit /* %ebx: no swapgs flag */
1262 CFI_ENDPROC
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001263END(\sym)
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001264.endm
1265
1266zeroentry divide_error do_divide_error
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001267zeroentry overflow do_overflow
1268zeroentry bounds do_bounds
1269zeroentry invalid_op do_invalid_op
1270zeroentry device_not_available do_device_not_available
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001271paranoiderrorentry double_fault do_double_fault
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001272zeroentry coprocessor_segment_overrun do_coprocessor_segment_overrun
1273errorentry invalid_TSS do_invalid_TSS
1274errorentry segment_not_present do_segment_not_present
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001275zeroentry spurious_interrupt_bug do_spurious_interrupt_bug
1276zeroentry coprocessor_error do_coprocessor_error
1277errorentry alignment_check do_alignment_check
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001278zeroentry simd_coprocessor_error do_simd_coprocessor_error
Andy Lutomirski5cec93c2011-06-05 13:50:24 -04001279
Ingo Molnar2601e642006-07-03 00:24:45 -07001280
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001281 /* Reload gs selector with exception handling */
1282 /* edi: new selector */
Jeremy Fitzhardinge9f9d4892008-06-25 00:19:32 -04001283ENTRY(native_load_gs_index)
Jan Beulich7effaa82005-09-12 18:49:24 +02001284 CFI_STARTPROC
Jan Beulichdf5d1872010-09-02 14:07:16 +01001285 pushfq_cfi
Jeremy Fitzhardingeb8aa2872009-01-28 14:35:03 -08001286 DISABLE_INTERRUPTS(CLBR_ANY & ~CLBR_RDI)
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001287 SWAPGS
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001288gs_change:
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001289 movl %edi,%gs
Linus Torvalds1da177e2005-04-16 15:20:36 -070012902: mfence /* workaround */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +01001291 SWAPGS
Jan Beulichdf5d1872010-09-02 14:07:16 +01001292 popfq_cfi
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001293 ret
Jan Beulich7effaa82005-09-12 18:49:24 +02001294 CFI_ENDPROC
Alexander van Heukelum6efdcfa2008-11-23 10:15:32 +01001295END(native_load_gs_index)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001296
H. Peter Anvind7abc0f2012-04-20 12:19:50 -07001297 _ASM_EXTABLE(gs_change,bad_gs)
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001298 .section .fixup,"ax"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 /* running with kernelgs */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001300bad_gs:
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +01001301 SWAPGS /* switch back to user gs */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 xorl %eax,%eax
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001303 movl %eax,%gs
1304 jmp 2b
1305 .previous
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001306
Brian Gerst3bd95df2009-12-09 12:34:40 -05001307ENTRY(kernel_thread_helper)
Andi Kleenc05991e2006-08-30 19:37:08 +02001308 pushq $0 # fake return address
1309 CFI_STARTPROC
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 /*
1311 * Here we are in the child and the registers are set as they were
1312 * at kernel_thread() invocation in the parent.
1313 */
Brian Gerst3bd95df2009-12-09 12:34:40 -05001314 call *%rsi
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 # exit
Andrey Mirkin1c5b5cf2007-10-17 18:04:33 +02001316 mov %eax, %edi
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 call do_exit
jia zhang5f5db592008-11-23 22:47:10 +08001318 ud2 # padding for call trace
Andi Kleenc05991e2006-08-30 19:37:08 +02001319 CFI_ENDPROC
Brian Gerst3bd95df2009-12-09 12:34:40 -05001320END(kernel_thread_helper)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321
1322/*
1323 * execve(). This function needs to use IRET, not SYSRET, to set up all state properly.
1324 *
1325 * C extern interface:
David Howellsc7887322010-08-11 11:26:22 +01001326 * extern long execve(const char *name, char **argv, char **envp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 *
1328 * asm input arguments:
1329 * rdi: name, rsi: argv, rdx: envp
1330 *
1331 * We want to fallback into:
David Howellsc7887322010-08-11 11:26:22 +01001332 * extern long sys_execve(const char *name, char **argv,char **envp, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 *
1334 * do_sys_execve asm fallback arguments:
Ingo Molnar5d119b22008-02-26 12:55:57 +01001335 * rdi: name, rsi: argv, rdx: envp, rcx: fake frame on the stack
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 */
Arnd Bergmann3db03b42006-10-02 02:18:31 -07001337ENTRY(kernel_execve)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 CFI_STARTPROC
1339 FAKE_STACK_FRAME $0
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001340 SAVE_ALL
Ingo Molnar5d119b22008-02-26 12:55:57 +01001341 movq %rsp,%rcx
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 call sys_execve
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001343 movq %rax, RAX(%rsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 RESTORE_REST
1345 testq %rax,%rax
1346 je int_ret_from_sys_call
1347 RESTORE_ARGS
1348 UNFAKE_STACK_FRAME
1349 ret
1350 CFI_ENDPROC
Alexander van Heukelum6efdcfa2008-11-23 10:15:32 +01001351END(kernel_execve)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352
Andi Kleen26995002006-08-02 22:37:28 +02001353/* Call softirq on interrupt stack. Interrupts are off. */
Andi Kleened6b6762005-07-28 21:15:49 -07001354ENTRY(call_softirq)
Jan Beulich7effaa82005-09-12 18:49:24 +02001355 CFI_STARTPROC
Jan Beulichdf5d1872010-09-02 14:07:16 +01001356 pushq_cfi %rbp
Andi Kleen26995002006-08-02 22:37:28 +02001357 CFI_REL_OFFSET rbp,0
1358 mov %rsp,%rbp
1359 CFI_DEF_CFA_REGISTER rbp
Brian Gerst56895532009-01-19 00:38:58 +09001360 incl PER_CPU_VAR(irq_count)
Brian Gerst26f80bd2009-01-19 00:38:58 +09001361 cmove PER_CPU_VAR(irq_stack_ptr),%rsp
Andi Kleen26995002006-08-02 22:37:28 +02001362 push %rbp # backlink for old unwinder
Andi Kleened6b6762005-07-28 21:15:49 -07001363 call __do_softirq
Andi Kleen26995002006-08-02 22:37:28 +02001364 leaveq
Jan Beulichdf5d1872010-09-02 14:07:16 +01001365 CFI_RESTORE rbp
Jan Beulich7effaa82005-09-12 18:49:24 +02001366 CFI_DEF_CFA_REGISTER rsp
Andi Kleen26995002006-08-02 22:37:28 +02001367 CFI_ADJUST_CFA_OFFSET -8
Brian Gerst56895532009-01-19 00:38:58 +09001368 decl PER_CPU_VAR(irq_count)
Andi Kleened6b6762005-07-28 21:15:49 -07001369 ret
Jan Beulich7effaa82005-09-12 18:49:24 +02001370 CFI_ENDPROC
Alexander van Heukelum6efdcfa2008-11-23 10:15:32 +01001371END(call_softirq)
Andi Kleen75154f42007-06-23 02:29:25 +02001372
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001373#ifdef CONFIG_XEN
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001374zeroentry xen_hypervisor_callback xen_do_hypervisor_callback
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001375
1376/*
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001377 * A note on the "critical region" in our callback handler.
1378 * We want to avoid stacking callback handlers due to events occurring
1379 * during handling of the last event. To do this, we keep events disabled
1380 * until we've done all processing. HOWEVER, we must enable events before
1381 * popping the stack frame (can't be done atomically) and so it would still
1382 * be possible to get enough handler activations to overflow the stack.
1383 * Although unlikely, bugs of that kind are hard to track down, so we'd
1384 * like to avoid the possibility.
1385 * So, on entry to the handler we detect whether we interrupted an
1386 * existing activation in its critical region -- if so, we pop the current
1387 * activation and restart the handler using the previous one.
1388 */
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001389ENTRY(xen_do_hypervisor_callback) # do_hypervisor_callback(struct *pt_regs)
1390 CFI_STARTPROC
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001391/*
1392 * Since we don't modify %rdi, evtchn_do_upall(struct *pt_regs) will
1393 * see the correct pointer to the pt_regs
1394 */
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001395 movq %rdi, %rsp # we don't return, adjust the stack frame
1396 CFI_ENDPROC
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +01001397 DEFAULT_FRAME
Brian Gerst56895532009-01-19 00:38:58 +0900139811: incl PER_CPU_VAR(irq_count)
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001399 movq %rsp,%rbp
1400 CFI_DEF_CFA_REGISTER rbp
Brian Gerst26f80bd2009-01-19 00:38:58 +09001401 cmovzq PER_CPU_VAR(irq_stack_ptr),%rsp
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001402 pushq %rbp # backlink for old unwinder
1403 call xen_evtchn_do_upcall
1404 popq %rsp
1405 CFI_DEF_CFA_REGISTER rsp
Brian Gerst56895532009-01-19 00:38:58 +09001406 decl PER_CPU_VAR(irq_count)
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001407 jmp error_exit
1408 CFI_ENDPROC
Alexander van Heukelum371c3942011-03-11 21:59:38 +01001409END(xen_do_hypervisor_callback)
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001410
1411/*
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001412 * Hypervisor uses this for application faults while it executes.
1413 * We get here for two reasons:
1414 * 1. Fault while reloading DS, ES, FS or GS
1415 * 2. Fault while executing IRET
1416 * Category 1 we do not need to fix up as Xen has already reloaded all segment
1417 * registers that could be reloaded and zeroed the others.
1418 * Category 2 we fix up by killing the current process. We cannot use the
1419 * normal Linux return path in this case because if we use the IRET hypercall
1420 * to pop the stack frame we end up in an infinite loop of failsafe callbacks.
1421 * We distinguish between categories by comparing each saved segment register
1422 * with its current contents: any discrepancy means we in category 1.
1423 */
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001424ENTRY(xen_failsafe_callback)
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +01001425 INTR_FRAME 1 (6*8)
1426 /*CFI_REL_OFFSET gs,GS*/
1427 /*CFI_REL_OFFSET fs,FS*/
1428 /*CFI_REL_OFFSET es,ES*/
1429 /*CFI_REL_OFFSET ds,DS*/
1430 CFI_REL_OFFSET r11,8
1431 CFI_REL_OFFSET rcx,0
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001432 movw %ds,%cx
1433 cmpw %cx,0x10(%rsp)
1434 CFI_REMEMBER_STATE
1435 jne 1f
1436 movw %es,%cx
1437 cmpw %cx,0x18(%rsp)
1438 jne 1f
1439 movw %fs,%cx
1440 cmpw %cx,0x20(%rsp)
1441 jne 1f
1442 movw %gs,%cx
1443 cmpw %cx,0x28(%rsp)
1444 jne 1f
1445 /* All segments match their saved values => Category 2 (Bad IRET). */
1446 movq (%rsp),%rcx
1447 CFI_RESTORE rcx
1448 movq 8(%rsp),%r11
1449 CFI_RESTORE r11
1450 addq $0x30,%rsp
1451 CFI_ADJUST_CFA_OFFSET -0x30
Ingo Molnar14ae22b2008-11-21 15:20:47 +01001452 pushq_cfi $0 /* RIP */
1453 pushq_cfi %r11
1454 pushq_cfi %rcx
Jeremy Fitzhardinge4a5c3e72008-07-08 15:07:09 -07001455 jmp general_protection
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001456 CFI_RESTORE_STATE
14571: /* Segment mismatch => Category 1 (Bad segment). Retry the IRET. */
1458 movq (%rsp),%rcx
1459 CFI_RESTORE rcx
1460 movq 8(%rsp),%r11
1461 CFI_RESTORE r11
1462 addq $0x30,%rsp
1463 CFI_ADJUST_CFA_OFFSET -0x30
Ingo Molnar14ae22b2008-11-21 15:20:47 +01001464 pushq_cfi $0
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001465 SAVE_ALL
1466 jmp error_exit
1467 CFI_ENDPROC
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001468END(xen_failsafe_callback)
1469
Sheng Yang38e20b02010-05-14 12:40:51 +01001470apicinterrupt XEN_HVM_EVTCHN_CALLBACK \
1471 xen_hvm_callback_vector xen_evtchn_do_upcall
1472
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001473#endif /* CONFIG_XEN */
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001474
1475/*
1476 * Some functions should be protected against kprobes
1477 */
1478 .pushsection .kprobes.text, "ax"
1479
1480paranoidzeroentry_ist debug do_debug DEBUG_STACK
1481paranoidzeroentry_ist int3 do_int3 DEBUG_STACK
1482paranoiderrorentry stack_segment do_stack_segment
Jeremy Fitzhardinge6cac5a92009-03-29 19:56:29 -07001483#ifdef CONFIG_XEN
1484zeroentry xen_debug do_debug
1485zeroentry xen_int3 do_int3
1486errorentry xen_stack_segment do_stack_segment
1487#endif
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001488errorentry general_protection do_general_protection
1489errorentry page_fault do_page_fault
Gleb Natapov631bc482010-10-14 11:22:52 +02001490#ifdef CONFIG_KVM_GUEST
1491errorentry async_page_fault do_async_page_fault
1492#endif
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001493#ifdef CONFIG_X86_MCE
Andi Kleen5d727922009-04-27 19:25:48 +02001494paranoidzeroentry machine_check *machine_check_vector(%rip)
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001495#endif
1496
1497 /*
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001498 * "Paranoid" exit path from exception stack.
1499 * Paranoid because this is used by NMIs and cannot take
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001500 * any kernel state for granted.
1501 * We don't do kernel preemption checks here, because only
1502 * NMI should be common and it does not enable IRQs and
1503 * cannot get reschedule ticks.
1504 *
1505 * "trace" is 0 for the NMI handler only, because irq-tracing
1506 * is fundamentally NMI-unsafe. (we cannot change the soft and
1507 * hard flags at once, atomically)
1508 */
1509
1510 /* ebx: no swapgs flag */
1511ENTRY(paranoid_exit)
Jan Beulich1f130a72010-09-02 13:54:32 +01001512 DEFAULT_FRAME
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001513 DISABLE_INTERRUPTS(CLBR_NONE)
Steven Rostedt5963e312012-05-30 11:54:53 -04001514 TRACE_IRQS_OFF_DEBUG
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001515 testl %ebx,%ebx /* swapgs needed? */
1516 jnz paranoid_restore
1517 testl $3,CS(%rsp)
1518 jnz paranoid_userspace
1519paranoid_swapgs:
1520 TRACE_IRQS_IRETQ 0
1521 SWAPGS_UNSAFE_STACK
Steven Rostedt0300e7f12009-04-17 08:33:52 -04001522 RESTORE_ALL 8
1523 jmp irq_return
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001524paranoid_restore:
Steven Rostedt5963e312012-05-30 11:54:53 -04001525 TRACE_IRQS_IRETQ_DEBUG 0
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001526 RESTORE_ALL 8
1527 jmp irq_return
1528paranoid_userspace:
1529 GET_THREAD_INFO(%rcx)
1530 movl TI_flags(%rcx),%ebx
1531 andl $_TIF_WORK_MASK,%ebx
1532 jz paranoid_swapgs
1533 movq %rsp,%rdi /* &pt_regs */
1534 call sync_regs
1535 movq %rax,%rsp /* switch stack for scheduling */
1536 testl $_TIF_NEED_RESCHED,%ebx
1537 jnz paranoid_schedule
1538 movl %ebx,%edx /* arg3: thread flags */
1539 TRACE_IRQS_ON
1540 ENABLE_INTERRUPTS(CLBR_NONE)
1541 xorl %esi,%esi /* arg2: oldset */
1542 movq %rsp,%rdi /* arg1: &pt_regs */
1543 call do_notify_resume
1544 DISABLE_INTERRUPTS(CLBR_NONE)
1545 TRACE_IRQS_OFF
1546 jmp paranoid_userspace
1547paranoid_schedule:
1548 TRACE_IRQS_ON
1549 ENABLE_INTERRUPTS(CLBR_ANY)
1550 call schedule
1551 DISABLE_INTERRUPTS(CLBR_ANY)
1552 TRACE_IRQS_OFF
1553 jmp paranoid_userspace
1554 CFI_ENDPROC
1555END(paranoid_exit)
1556
1557/*
1558 * Exception entry point. This expects an error code/orig_rax on the stack.
1559 * returns in "no swapgs flag" in %ebx.
1560 */
1561ENTRY(error_entry)
1562 XCPT_FRAME
1563 CFI_ADJUST_CFA_OFFSET 15*8
1564 /* oldrax contains error code */
1565 cld
1566 movq_cfi rdi, RDI+8
1567 movq_cfi rsi, RSI+8
1568 movq_cfi rdx, RDX+8
1569 movq_cfi rcx, RCX+8
1570 movq_cfi rax, RAX+8
1571 movq_cfi r8, R8+8
1572 movq_cfi r9, R9+8
1573 movq_cfi r10, R10+8
1574 movq_cfi r11, R11+8
1575 movq_cfi rbx, RBX+8
1576 movq_cfi rbp, RBP+8
1577 movq_cfi r12, R12+8
1578 movq_cfi r13, R13+8
1579 movq_cfi r14, R14+8
1580 movq_cfi r15, R15+8
1581 xorl %ebx,%ebx
1582 testl $3,CS+8(%rsp)
1583 je error_kernelspace
1584error_swapgs:
1585 SWAPGS
1586error_sti:
1587 TRACE_IRQS_OFF
1588 ret
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001589
1590/*
1591 * There are two places in the kernel that can potentially fault with
1592 * usergs. Handle them here. The exception handlers after iret run with
1593 * kernel gs again, so don't set the user space flag. B stepping K8s
1594 * sometimes report an truncated RIP for IRET exceptions returning to
1595 * compat mode. Check for these here too.
1596 */
1597error_kernelspace:
1598 incl %ebx
1599 leaq irq_return(%rip),%rcx
1600 cmpq %rcx,RIP+8(%rsp)
1601 je error_swapgs
Brian Gerstae24ffe2009-10-12 10:18:23 -04001602 movl %ecx,%eax /* zero extend */
1603 cmpq %rax,RIP+8(%rsp)
1604 je bstep_iret
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001605 cmpq $gs_change,RIP+8(%rsp)
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001606 je error_swapgs
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001607 jmp error_sti
Brian Gerstae24ffe2009-10-12 10:18:23 -04001608
1609bstep_iret:
1610 /* Fix truncated RIP */
1611 movq %rcx,RIP+8(%rsp)
Brian Gerst97829de2009-11-03 14:02:05 -05001612 jmp error_swapgs
Jan Beuliche6b04b62010-09-02 13:52:45 +01001613 CFI_ENDPROC
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001614END(error_entry)
1615
1616
1617/* ebx: no swapgs flag (1: don't need swapgs, 0: need it) */
1618ENTRY(error_exit)
1619 DEFAULT_FRAME
1620 movl %ebx,%eax
1621 RESTORE_REST
1622 DISABLE_INTERRUPTS(CLBR_NONE)
1623 TRACE_IRQS_OFF
1624 GET_THREAD_INFO(%rcx)
1625 testl %eax,%eax
1626 jne retint_kernel
1627 LOCKDEP_SYS_EXIT_IRQ
1628 movl TI_flags(%rcx),%edx
1629 movl $_TIF_WORK_MASK,%edi
1630 andl %edi,%edx
1631 jnz retint_careful
1632 jmp retint_swapgs
1633 CFI_ENDPROC
1634END(error_exit)
1635
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001636/*
1637 * Test if a given stack is an NMI stack or not.
1638 */
1639 .macro test_in_nmi reg stack nmi_ret normal_ret
1640 cmpq %\reg, \stack
1641 ja \normal_ret
1642 subq $EXCEPTION_STKSZ, %\reg
1643 cmpq %\reg, \stack
1644 jb \normal_ret
1645 jmp \nmi_ret
1646 .endm
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001647
1648 /* runs on exception stack */
1649ENTRY(nmi)
1650 INTR_FRAME
1651 PARAVIRT_ADJUST_EXCEPTION_FRAME
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001652 /*
1653 * We allow breakpoints in NMIs. If a breakpoint occurs, then
1654 * the iretq it performs will take us out of NMI context.
1655 * This means that we can have nested NMIs where the next
1656 * NMI is using the top of the stack of the previous NMI. We
1657 * can't let it execute because the nested NMI will corrupt the
1658 * stack of the previous NMI. NMI handlers are not re-entrant
1659 * anyway.
1660 *
1661 * To handle this case we do the following:
1662 * Check the a special location on the stack that contains
1663 * a variable that is set when NMIs are executing.
1664 * The interrupted task's stack is also checked to see if it
1665 * is an NMI stack.
1666 * If the variable is not set and the stack is not the NMI
1667 * stack then:
1668 * o Set the special variable on the stack
1669 * o Copy the interrupt frame into a "saved" location on the stack
1670 * o Copy the interrupt frame into a "copy" location on the stack
1671 * o Continue processing the NMI
1672 * If the variable is set or the previous stack is the NMI stack:
1673 * o Modify the "copy" location to jump to the repeate_nmi
1674 * o return back to the first NMI
1675 *
1676 * Now on exit of the first NMI, we first clear the stack variable
1677 * The NMI stack will tell any nested NMIs at that point that it is
1678 * nested. Then we pop the stack normally with iret, and if there was
1679 * a nested NMI that updated the copy interrupt stack frame, a
1680 * jump will be made to the repeat_nmi code that will handle the second
1681 * NMI.
1682 */
1683
1684 /* Use %rdx as out temp variable throughout */
1685 pushq_cfi %rdx
Jan Beulich62610912012-02-24 14:54:37 +00001686 CFI_REL_OFFSET rdx, 0
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001687
1688 /*
Steven Rostedt45d5a162012-02-19 16:43:37 -05001689 * If %cs was not the kernel segment, then the NMI triggered in user
1690 * space, which means it is definitely not nested.
1691 */
Steven Rostedta38449e2012-02-20 15:29:34 -05001692 cmpl $__KERNEL_CS, 16(%rsp)
Steven Rostedt45d5a162012-02-19 16:43:37 -05001693 jne first_nmi
1694
1695 /*
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001696 * Check the special variable on the stack to see if NMIs are
1697 * executing.
1698 */
Steven Rostedta38449e2012-02-20 15:29:34 -05001699 cmpl $1, -8(%rsp)
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001700 je nested_nmi
1701
1702 /*
1703 * Now test if the previous stack was an NMI stack.
1704 * We need the double check. We check the NMI stack to satisfy the
1705 * race when the first NMI clears the variable before returning.
1706 * We check the variable because the first NMI could be in a
1707 * breakpoint routine using a breakpoint stack.
1708 */
1709 lea 6*8(%rsp), %rdx
1710 test_in_nmi rdx, 4*8(%rsp), nested_nmi, first_nmi
Jan Beulich62610912012-02-24 14:54:37 +00001711 CFI_REMEMBER_STATE
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001712
1713nested_nmi:
1714 /*
1715 * Do nothing if we interrupted the fixup in repeat_nmi.
1716 * It's about to repeat the NMI handler, so we are fine
1717 * with ignoring this one.
1718 */
1719 movq $repeat_nmi, %rdx
1720 cmpq 8(%rsp), %rdx
1721 ja 1f
1722 movq $end_repeat_nmi, %rdx
1723 cmpq 8(%rsp), %rdx
1724 ja nested_nmi_out
1725
17261:
1727 /* Set up the interrupted NMIs stack to jump to repeat_nmi */
1728 leaq -6*8(%rsp), %rdx
1729 movq %rdx, %rsp
1730 CFI_ADJUST_CFA_OFFSET 6*8
1731 pushq_cfi $__KERNEL_DS
1732 pushq_cfi %rdx
1733 pushfq_cfi
1734 pushq_cfi $__KERNEL_CS
1735 pushq_cfi $repeat_nmi
1736
1737 /* Put stack back */
1738 addq $(11*8), %rsp
1739 CFI_ADJUST_CFA_OFFSET -11*8
1740
1741nested_nmi_out:
1742 popq_cfi %rdx
Jan Beulich62610912012-02-24 14:54:37 +00001743 CFI_RESTORE rdx
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001744
1745 /* No need to check faults here */
1746 INTERRUPT_RETURN
1747
Jan Beulich62610912012-02-24 14:54:37 +00001748 CFI_RESTORE_STATE
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001749first_nmi:
1750 /*
1751 * Because nested NMIs will use the pushed location that we
1752 * stored in rdx, we must keep that space available.
1753 * Here's what our stack frame will look like:
1754 * +-------------------------+
1755 * | original SS |
1756 * | original Return RSP |
1757 * | original RFLAGS |
1758 * | original CS |
1759 * | original RIP |
1760 * +-------------------------+
1761 * | temp storage for rdx |
1762 * +-------------------------+
1763 * | NMI executing variable |
1764 * +-------------------------+
1765 * | Saved SS |
1766 * | Saved Return RSP |
1767 * | Saved RFLAGS |
1768 * | Saved CS |
1769 * | Saved RIP |
1770 * +-------------------------+
1771 * | copied SS |
1772 * | copied Return RSP |
1773 * | copied RFLAGS |
1774 * | copied CS |
1775 * | copied RIP |
1776 * +-------------------------+
1777 * | pt_regs |
1778 * +-------------------------+
1779 *
Steven Rostedt79fb4ad2012-02-24 15:55:13 -05001780 * The saved stack frame is used to fix up the copied stack frame
1781 * that a nested NMI may change to make the interrupted NMI iret jump
1782 * to the repeat_nmi. The original stack frame and the temp storage
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001783 * is also used by nested NMIs and can not be trusted on exit.
1784 */
Steven Rostedt79fb4ad2012-02-24 15:55:13 -05001785 /* Do not pop rdx, nested NMIs will corrupt that part of the stack */
Jan Beulich62610912012-02-24 14:54:37 +00001786 movq (%rsp), %rdx
1787 CFI_RESTORE rdx
1788
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001789 /* Set the NMI executing variable on the stack. */
1790 pushq_cfi $1
1791
1792 /* Copy the stack frame to the Saved frame */
1793 .rept 5
1794 pushq_cfi 6*8(%rsp)
1795 .endr
Jan Beulich62610912012-02-24 14:54:37 +00001796 CFI_DEF_CFA_OFFSET SS+8-RIP
1797
Steven Rostedt79fb4ad2012-02-24 15:55:13 -05001798 /* Everything up to here is safe from nested NMIs */
1799
Jan Beulich62610912012-02-24 14:54:37 +00001800 /*
1801 * If there was a nested NMI, the first NMI's iret will return
1802 * here. But NMIs are still enabled and we can take another
1803 * nested NMI. The nested NMI checks the interrupted RIP to see
1804 * if it is between repeat_nmi and end_repeat_nmi, and if so
1805 * it will just return, as we are about to repeat an NMI anyway.
1806 * This makes it safe to copy to the stack frame that a nested
1807 * NMI will update.
1808 */
1809repeat_nmi:
1810 /*
1811 * Update the stack variable to say we are still in NMI (the update
1812 * is benign for the non-repeat case, where 1 was pushed just above
1813 * to this very stack slot).
1814 */
1815 movq $1, 5*8(%rsp)
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001816
1817 /* Make another copy, this one may be modified by nested NMIs */
1818 .rept 5
1819 pushq_cfi 4*8(%rsp)
1820 .endr
Jan Beulich62610912012-02-24 14:54:37 +00001821 CFI_DEF_CFA_OFFSET SS+8-RIP
1822end_repeat_nmi:
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001823
1824 /*
1825 * Everything below this point can be preempted by a nested
Steven Rostedt79fb4ad2012-02-24 15:55:13 -05001826 * NMI if the first NMI took an exception and reset our iret stack
1827 * so that we repeat another NMI.
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001828 */
Steven Rostedt1fd466e2011-12-08 12:32:27 -05001829 pushq_cfi $-1 /* ORIG_RAX: no syscall to restart */
Jan Beulichb1cccb12010-09-02 13:55:11 +01001830 subq $ORIG_RAX-R15, %rsp
1831 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
Steven Rostedt1fd466e2011-12-08 12:32:27 -05001832 /*
1833 * Use save_paranoid to handle SWAPGS, but no need to use paranoid_exit
1834 * as we should not be calling schedule in NMI context.
1835 * Even with normal interrupts enabled. An NMI should not be
1836 * setting NEED_RESCHED or anything that normal interrupts and
1837 * exceptions might do.
1838 */
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001839 call save_paranoid
1840 DEFAULT_FRAME 0
Steven Rostedt7fbb98c2012-06-07 10:21:21 -04001841
1842 /*
1843 * Save off the CR2 register. If we take a page fault in the NMI then
1844 * it could corrupt the CR2 value. If the NMI preempts a page fault
1845 * handler before it was able to read the CR2 register, and then the
1846 * NMI itself takes a page fault, the page fault that was preempted
1847 * will read the information from the NMI page fault and not the
1848 * origin fault. Save it off and restore it if it changes.
1849 * Use the r12 callee-saved register.
1850 */
1851 movq %cr2, %r12
1852
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001853 /* paranoidentry do_nmi, 0; without TRACE_IRQS_OFF */
1854 movq %rsp,%rdi
1855 movq $-1,%rsi
1856 call do_nmi
Steven Rostedt7fbb98c2012-06-07 10:21:21 -04001857
1858 /* Did the NMI take a page fault? Restore cr2 if it did */
1859 movq %cr2, %rcx
1860 cmpq %rcx, %r12
1861 je 1f
1862 movq %r12, %cr2
18631:
1864
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001865 testl %ebx,%ebx /* swapgs needed? */
1866 jnz nmi_restore
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001867nmi_swapgs:
1868 SWAPGS_UNSAFE_STACK
1869nmi_restore:
1870 RESTORE_ALL 8
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001871 /* Clear the NMI executing stack variable */
1872 movq $0, 10*8(%rsp)
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001873 jmp irq_return
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001874 CFI_ENDPROC
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001875END(nmi)
1876
1877ENTRY(ignore_sysret)
1878 CFI_STARTPROC
1879 mov $-ENOSYS,%eax
1880 sysret
1881 CFI_ENDPROC
1882END(ignore_sysret)
1883
1884/*
1885 * End of kprobes section
1886 */
1887 .popsection