blob: 4486fee3999fd1d7fd71b0129304a9e1bfa48aa6 [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>
Frederic Weisbecker91d1aa432012-11-27 19:33:25 +010059#include <asm/context_tracking.h>
H. Peter Anvin63bcff22012-09-21 12:43:12 -070060#include <asm/smap.h>
Eric Parisd7e75282012-01-03 14:23:06 -050061#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Roland McGrath86a1c342008-06-23 15:37:04 -070063/* Avoid __ASSEMBLER__'ifying <linux/audit.h> just for this. */
64#include <linux/elf-em.h>
65#define AUDIT_ARCH_X86_64 (EM_X86_64|__AUDIT_ARCH_64BIT|__AUDIT_ARCH_LE)
66#define __AUDIT_ARCH_64BIT 0x80000000
67#define __AUDIT_ARCH_LE 0x40000000
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 .code64
Jiri Olsaea714542011-03-07 19:10:39 +010070 .section .entry.text, "ax"
71
Steven Rostedt606576c2008-10-06 19:06:12 -040072#ifdef CONFIG_FUNCTION_TRACER
Steven Rostedtd57c5d52011-02-09 13:32:18 -050073
74#ifdef CC_USING_FENTRY
75# define function_hook __fentry__
76#else
77# define function_hook mcount
78#endif
79
Steven Rostedtd61f82d2008-05-12 21:20:43 +020080#ifdef CONFIG_DYNAMIC_FTRACE
Steven Rostedtd57c5d52011-02-09 13:32:18 -050081
82ENTRY(function_hook)
Steven Rostedtd61f82d2008-05-12 21:20:43 +020083 retq
Steven Rostedtd57c5d52011-02-09 13:32:18 -050084END(function_hook)
Steven Rostedtd61f82d2008-05-12 21:20:43 +020085
Steven Rostedt08f6fba2012-04-30 16:20:23 -040086/* skip is set if stack has been adjusted */
87.macro ftrace_caller_setup skip=0
88 MCOUNT_SAVE_FRAME \skip
89
90 /* Load the ftrace_ops into the 3rd parameter */
91 leaq function_trace_op, %rdx
92
93 /* Load ip into the first parameter */
94 movq RIP(%rsp), %rdi
95 subq $MCOUNT_INSN_SIZE, %rdi
96 /* Load the parent_ip into the second parameter */
Steven Rostedtd57c5d52011-02-09 13:32:18 -050097#ifdef CC_USING_FENTRY
98 movq SS+16(%rsp), %rsi
99#else
Steven Rostedt08f6fba2012-04-30 16:20:23 -0400100 movq 8(%rbp), %rsi
Steven Rostedtd57c5d52011-02-09 13:32:18 -0500101#endif
Steven Rostedt08f6fba2012-04-30 16:20:23 -0400102.endm
Steven Rostedtd61f82d2008-05-12 21:20:43 +0200103
104ENTRY(ftrace_caller)
Steven Rostedt08f6fba2012-04-30 16:20:23 -0400105 /* Check if tracing was disabled (quick check) */
Steven Rostedt60a7ecf2008-11-05 16:05:44 -0500106 cmpl $0, function_trace_stop
107 jne ftrace_stub
Steven Rostedtd61f82d2008-05-12 21:20:43 +0200108
Steven Rostedt08f6fba2012-04-30 16:20:23 -0400109 ftrace_caller_setup
110 /* regs go into 4th parameter (but make it NULL) */
111 movq $0, %rcx
Steven Rostedtd61f82d2008-05-12 21:20:43 +0200112
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +0300113GLOBAL(ftrace_call)
Steven Rostedtd61f82d2008-05-12 21:20:43 +0200114 call ftrace_stub
115
Cyrill Gorcunovd680fe42008-12-13 00:09:08 +0300116 MCOUNT_RESTORE_FRAME
Steven Rostedt08f6fba2012-04-30 16:20:23 -0400117ftrace_return:
Steven Rostedtd61f82d2008-05-12 21:20:43 +0200118
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100119#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +0300120GLOBAL(ftrace_graph_call)
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100121 jmp ftrace_stub
122#endif
Steven Rostedtd61f82d2008-05-12 21:20:43 +0200123
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +0300124GLOBAL(ftrace_stub)
Steven Rostedtd61f82d2008-05-12 21:20:43 +0200125 retq
126END(ftrace_caller)
127
Steven Rostedt08f6fba2012-04-30 16:20:23 -0400128ENTRY(ftrace_regs_caller)
129 /* Save the current flags before compare (in SS location)*/
130 pushfq
131
132 /* Check if tracing was disabled (quick check) */
133 cmpl $0, function_trace_stop
134 jne ftrace_restore_flags
135
136 /* skip=8 to skip flags saved in SS */
137 ftrace_caller_setup 8
138
139 /* Save the rest of pt_regs */
140 movq %r15, R15(%rsp)
141 movq %r14, R14(%rsp)
142 movq %r13, R13(%rsp)
143 movq %r12, R12(%rsp)
144 movq %r11, R11(%rsp)
145 movq %r10, R10(%rsp)
146 movq %rbp, RBP(%rsp)
147 movq %rbx, RBX(%rsp)
148 /* Copy saved flags */
149 movq SS(%rsp), %rcx
150 movq %rcx, EFLAGS(%rsp)
151 /* Kernel segments */
152 movq $__KERNEL_DS, %rcx
153 movq %rcx, SS(%rsp)
154 movq $__KERNEL_CS, %rcx
155 movq %rcx, CS(%rsp)
156 /* Stack - skipping return address */
157 leaq SS+16(%rsp), %rcx
158 movq %rcx, RSP(%rsp)
159
160 /* regs go into 4th parameter */
161 leaq (%rsp), %rcx
162
163GLOBAL(ftrace_regs_call)
164 call ftrace_stub
165
166 /* Copy flags back to SS, to restore them */
167 movq EFLAGS(%rsp), %rax
168 movq %rax, SS(%rsp)
169
Steven Rostedt47d5a5f2012-09-05 23:31:18 +0900170 /* Handlers can change the RIP */
171 movq RIP(%rsp), %rax
172 movq %rax, SS+8(%rsp)
173
Steven Rostedt08f6fba2012-04-30 16:20:23 -0400174 /* restore the rest of pt_regs */
175 movq R15(%rsp), %r15
176 movq R14(%rsp), %r14
177 movq R13(%rsp), %r13
178 movq R12(%rsp), %r12
179 movq R10(%rsp), %r10
180 movq RBP(%rsp), %rbp
181 movq RBX(%rsp), %rbx
182
183 /* skip=8 to skip flags saved in SS */
184 MCOUNT_RESTORE_FRAME 8
185
186 /* Restore flags */
187 popfq
188
189 jmp ftrace_return
190ftrace_restore_flags:
191 popfq
192 jmp ftrace_stub
193
194END(ftrace_regs_caller)
195
196
Steven Rostedtd61f82d2008-05-12 21:20:43 +0200197#else /* ! CONFIG_DYNAMIC_FTRACE */
Steven Rostedtd57c5d52011-02-09 13:32:18 -0500198
199ENTRY(function_hook)
Steven Rostedt60a7ecf2008-11-05 16:05:44 -0500200 cmpl $0, function_trace_stop
201 jne ftrace_stub
202
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200203 cmpq $ftrace_stub, ftrace_trace_function
204 jnz trace
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100205
206#ifdef CONFIG_FUNCTION_GRAPH_TRACER
207 cmpq $ftrace_stub, ftrace_graph_return
208 jnz ftrace_graph_caller
Steven Rostedte49dc192008-12-02 23:50:05 -0500209
210 cmpq $ftrace_graph_entry_stub, ftrace_graph_entry
211 jnz ftrace_graph_caller
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100212#endif
213
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +0300214GLOBAL(ftrace_stub)
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200215 retq
216
217trace:
Cyrill Gorcunovd680fe42008-12-13 00:09:08 +0300218 MCOUNT_SAVE_FRAME
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200219
Steven Rostedt08f6fba2012-04-30 16:20:23 -0400220 movq RIP(%rsp), %rdi
Steven Rostedtd57c5d52011-02-09 13:32:18 -0500221#ifdef CC_USING_FENTRY
222 movq SS+16(%rsp), %rsi
223#else
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200224 movq 8(%rbp), %rsi
Steven Rostedtd57c5d52011-02-09 13:32:18 -0500225#endif
Abhishek Sagar395a59d2008-06-21 23:47:27 +0530226 subq $MCOUNT_INSN_SIZE, %rdi
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200227
228 call *ftrace_trace_function
229
Cyrill Gorcunovd680fe42008-12-13 00:09:08 +0300230 MCOUNT_RESTORE_FRAME
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200231
232 jmp ftrace_stub
Steven Rostedtd57c5d52011-02-09 13:32:18 -0500233END(function_hook)
Steven Rostedtd61f82d2008-05-12 21:20:43 +0200234#endif /* CONFIG_DYNAMIC_FTRACE */
Steven Rostedt606576c2008-10-06 19:06:12 -0400235#endif /* CONFIG_FUNCTION_TRACER */
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200236
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100237#ifdef CONFIG_FUNCTION_GRAPH_TRACER
238ENTRY(ftrace_graph_caller)
Cyrill Gorcunovd680fe42008-12-13 00:09:08 +0300239 MCOUNT_SAVE_FRAME
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100240
Steven Rostedtd57c5d52011-02-09 13:32:18 -0500241#ifdef CC_USING_FENTRY
242 leaq SS+16(%rsp), %rdi
243 movq $0, %rdx /* No framepointers needed */
244#else
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100245 leaq 8(%rbp), %rdi
Steven Rostedt71e308a2009-06-18 12:45:08 -0400246 movq (%rbp), %rdx
Steven Rostedtd57c5d52011-02-09 13:32:18 -0500247#endif
248 movq RIP(%rsp), %rsi
Steven Rostedtbb4304c2008-12-02 15:34:09 -0500249 subq $MCOUNT_INSN_SIZE, %rsi
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100250
251 call prepare_ftrace_return
252
Cyrill Gorcunovd680fe42008-12-13 00:09:08 +0300253 MCOUNT_RESTORE_FRAME
254
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100255 retq
256END(ftrace_graph_caller)
257
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +0300258GLOBAL(return_to_handler)
Jiri Olsa4818d802009-07-29 10:58:37 +0200259 subq $24, %rsp
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100260
Steven Rostedte71e99c2009-03-25 14:30:04 -0400261 /* Save the return values */
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100262 movq %rax, (%rsp)
Steven Rostedte71e99c2009-03-25 14:30:04 -0400263 movq %rdx, 8(%rsp)
Steven Rostedt71e308a2009-06-18 12:45:08 -0400264 movq %rbp, %rdi
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100265
266 call ftrace_return_to_handler
267
Steven Rostedt194ec342009-10-13 16:33:50 -0400268 movq %rax, %rdi
Steven Rostedte71e99c2009-03-25 14:30:04 -0400269 movq 8(%rsp), %rdx
Jan Beulich7effaa82005-09-12 18:49:24 +0200270 movq (%rsp), %rax
Steven Rostedt194ec342009-10-13 16:33:50 -0400271 addq $24, %rsp
272 jmp *%rdi
Frederic Weisbecker48d68b22008-12-02 00:20:39 +0100273#endif
Jan Beulich7effaa82005-09-12 18:49:24 +0200274
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
276#ifndef CONFIG_PREEMPT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277#define retint_kernel retint_restore_args
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100278#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
280#ifdef CONFIG_PARAVIRT
281ENTRY(native_usergs_sysret64)
282 swapgs
283 sysretq
Cyrill Gorcunovb3baaa12009-02-23 22:57:00 +0300284ENDPROC(native_usergs_sysret64)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285#endif /* CONFIG_PARAVIRT */
286
287
288.macro TRACE_IRQS_IRETQ offset=ARGOFFSET
289#ifdef CONFIG_TRACE_IRQFLAGS
290 bt $9,EFLAGS-\offset(%rsp) /* interrupts off? */
291 jnc 1f
292 TRACE_IRQS_ON
2931:
294#endif
295.endm
296
297/*
Steven Rostedt5963e312012-05-30 11:54:53 -0400298 * When dynamic function tracer is enabled it will add a breakpoint
299 * to all locations that it is about to modify, sync CPUs, update
300 * all the code, sync CPUs, then remove the breakpoints. In this time
301 * if lockdep is enabled, it might jump back into the debug handler
302 * outside the updating of the IST protection. (TRACE_IRQS_ON/OFF).
303 *
304 * We need to change the IDT table before calling TRACE_IRQS_ON/OFF to
305 * make sure the stack pointer does not get reset back to the top
306 * of the debug stack, and instead just reuses the current stack.
307 */
308#if defined(CONFIG_DYNAMIC_FTRACE) && defined(CONFIG_TRACE_IRQFLAGS)
309
310.macro TRACE_IRQS_OFF_DEBUG
311 call debug_stack_set_zero
312 TRACE_IRQS_OFF
313 call debug_stack_reset
314.endm
315
316.macro TRACE_IRQS_ON_DEBUG
317 call debug_stack_set_zero
318 TRACE_IRQS_ON
319 call debug_stack_reset
320.endm
321
322.macro TRACE_IRQS_IRETQ_DEBUG offset=ARGOFFSET
323 bt $9,EFLAGS-\offset(%rsp) /* interrupts off? */
324 jnc 1f
325 TRACE_IRQS_ON_DEBUG
3261:
327.endm
328
329#else
330# define TRACE_IRQS_OFF_DEBUG TRACE_IRQS_OFF
331# define TRACE_IRQS_ON_DEBUG TRACE_IRQS_ON
332# define TRACE_IRQS_IRETQ_DEBUG TRACE_IRQS_IRETQ
333#endif
334
335/*
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100336 * C code is not supposed to know about undefined top of stack. Every time
337 * a C function with an pt_regs argument is called from the SYSCALL based
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 * fast path FIXUP_TOP_OF_STACK is needed.
339 * RESTORE_TOP_OF_STACK syncs the syscall state after any possible ptregs
340 * manipulation.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100341 */
342
343 /* %rsp:at FRAMEEND */
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100344 .macro FIXUP_TOP_OF_STACK tmp offset=0
Brian Gerst3d1e42a2009-01-19 00:38:58 +0900345 movq PER_CPU_VAR(old_rsp),\tmp
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100346 movq \tmp,RSP+\offset(%rsp)
347 movq $__USER_DS,SS+\offset(%rsp)
348 movq $__USER_CS,CS+\offset(%rsp)
349 movq $-1,RCX+\offset(%rsp)
350 movq R11+\offset(%rsp),\tmp /* get eflags */
351 movq \tmp,EFLAGS+\offset(%rsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 .endm
353
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100354 .macro RESTORE_TOP_OF_STACK tmp offset=0
355 movq RSP+\offset(%rsp),\tmp
Brian Gerst3d1e42a2009-01-19 00:38:58 +0900356 movq \tmp,PER_CPU_VAR(old_rsp)
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100357 movq EFLAGS+\offset(%rsp),\tmp
358 movq \tmp,R11+\offset(%rsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 .endm
360
361 .macro FAKE_STACK_FRAME child_rip
362 /* push in order ss, rsp, eflags, cs, rip */
363 xorl %eax, %eax
Jan Beulichdf5d1872010-09-02 14:07:16 +0100364 pushq_cfi $__KERNEL_DS /* ss */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 /*CFI_REL_OFFSET ss,0*/
Jan Beulichdf5d1872010-09-02 14:07:16 +0100366 pushq_cfi %rax /* rsp */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 CFI_REL_OFFSET rsp,0
Seiichi Ikarashi1cf83432011-12-06 17:58:14 +0900368 pushq_cfi $(X86_EFLAGS_IF|X86_EFLAGS_BIT1) /* eflags - interrupts on */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 /*CFI_REL_OFFSET rflags,0*/
Jan Beulichdf5d1872010-09-02 14:07:16 +0100370 pushq_cfi $__KERNEL_CS /* cs */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 /*CFI_REL_OFFSET cs,0*/
Jan Beulichdf5d1872010-09-02 14:07:16 +0100372 pushq_cfi \child_rip /* rip */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 CFI_REL_OFFSET rip,0
Jan Beulichdf5d1872010-09-02 14:07:16 +0100374 pushq_cfi %rax /* orig rax */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 .endm
376
377 .macro UNFAKE_STACK_FRAME
378 addq $8*6, %rsp
379 CFI_ADJUST_CFA_OFFSET -(6*8)
380 .endm
381
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100382/*
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100383 * initial frame state for interrupts (and exceptions without error code)
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100384 */
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100385 .macro EMPTY_FRAME start=1 offset=0
386 .if \start
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100387 CFI_STARTPROC simple
388 CFI_SIGNAL_FRAME
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100389 CFI_DEF_CFA rsp,8+\offset
390 .else
391 CFI_DEF_CFA_OFFSET 8+\offset
392 .endif
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100393 .endm
394
395/*
396 * initial frame state for interrupts (and exceptions without error code)
397 */
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100398 .macro INTR_FRAME start=1 offset=0
Ingo Molnare8a0e272008-11-21 15:11:32 +0100399 EMPTY_FRAME \start, SS+8+\offset-RIP
400 /*CFI_REL_OFFSET ss, SS+\offset-RIP*/
401 CFI_REL_OFFSET rsp, RSP+\offset-RIP
402 /*CFI_REL_OFFSET rflags, EFLAGS+\offset-RIP*/
403 /*CFI_REL_OFFSET cs, CS+\offset-RIP*/
404 CFI_REL_OFFSET rip, RIP+\offset-RIP
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100405 .endm
406
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100407/*
408 * initial frame state for exceptions with error code (and interrupts
409 * with vector already pushed)
410 */
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100411 .macro XCPT_FRAME start=1 offset=0
Ingo Molnare8a0e272008-11-21 15:11:32 +0100412 INTR_FRAME \start, RIP+\offset-ORIG_RAX
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100413 /*CFI_REL_OFFSET orig_rax, ORIG_RAX-ORIG_RAX*/
414 .endm
415
416/*
417 * frame that enables calling into C.
418 */
419 .macro PARTIAL_FRAME start=1 offset=0
Ingo Molnare8a0e272008-11-21 15:11:32 +0100420 XCPT_FRAME \start, ORIG_RAX+\offset-ARGOFFSET
421 CFI_REL_OFFSET rdi, RDI+\offset-ARGOFFSET
422 CFI_REL_OFFSET rsi, RSI+\offset-ARGOFFSET
423 CFI_REL_OFFSET rdx, RDX+\offset-ARGOFFSET
424 CFI_REL_OFFSET rcx, RCX+\offset-ARGOFFSET
425 CFI_REL_OFFSET rax, RAX+\offset-ARGOFFSET
426 CFI_REL_OFFSET r8, R8+\offset-ARGOFFSET
427 CFI_REL_OFFSET r9, R9+\offset-ARGOFFSET
428 CFI_REL_OFFSET r10, R10+\offset-ARGOFFSET
429 CFI_REL_OFFSET r11, R11+\offset-ARGOFFSET
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100430 .endm
431
432/*
433 * frame that enables passing a complete pt_regs to a C function.
434 */
435 .macro DEFAULT_FRAME start=1 offset=0
Ingo Molnare8a0e272008-11-21 15:11:32 +0100436 PARTIAL_FRAME \start, R11+\offset-R15
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100437 CFI_REL_OFFSET rbx, RBX+\offset
438 CFI_REL_OFFSET rbp, RBP+\offset
439 CFI_REL_OFFSET r12, R12+\offset
440 CFI_REL_OFFSET r13, R13+\offset
441 CFI_REL_OFFSET r14, R14+\offset
442 CFI_REL_OFFSET r15, R15+\offset
443 .endm
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100444
445/* save partial stack frame */
Frederic Weisbecker18718532011-07-01 01:51:22 +0200446 .macro SAVE_ARGS_IRQ
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100447 cld
Frederic Weisbecker18718532011-07-01 01:51:22 +0200448 /* start from rbp in pt_regs and jump over */
Tao Guo1b2b23d2012-09-26 04:28:22 -0400449 movq_cfi rdi, (RDI-RBP)
450 movq_cfi rsi, (RSI-RBP)
451 movq_cfi rdx, (RDX-RBP)
452 movq_cfi rcx, (RCX-RBP)
453 movq_cfi rax, (RAX-RBP)
454 movq_cfi r8, (R8-RBP)
455 movq_cfi r9, (R9-RBP)
456 movq_cfi r10, (R10-RBP)
457 movq_cfi r11, (R11-RBP)
Ingo Molnar14ae22b2008-11-21 15:20:47 +0100458
Frederic Weisbeckera2bbe752011-07-02 16:52:45 +0200459 /* Save rbp so that we can unwind from get_irq_regs() */
460 movq_cfi rbp, 0
461
462 /* Save previous stack value */
463 movq %rsp, %rsi
Frederic Weisbecker3b99a3ef2011-07-01 02:25:17 +0200464
465 leaq -RBP(%rsp),%rdi /* arg1 for handler */
Jan Beulich69466462012-02-24 11:55:01 +0000466 testl $3, CS-RBP(%rsi)
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100467 je 1f
468 SWAPGS
469 /*
Brian Gerst56895532009-01-19 00:38:58 +0900470 * irq_count is used to check if a CPU is already on an interrupt stack
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100471 * or not. While this is essentially redundant with preempt_count it is
472 * a little cheaper to use a separate counter in the PDA (short of
473 * moving irq_enter into assembly, which would be too much work)
474 */
Brian Gerst56895532009-01-19 00:38:58 +09004751: incl PER_CPU_VAR(irq_count)
Jan Beulich69466462012-02-24 11:55:01 +0000476 cmovzq PER_CPU_VAR(irq_stack_ptr),%rsp
Jan Beulicheab9e612011-09-28 16:57:52 +0100477 CFI_DEF_CFA_REGISTER rsi
Frederic Weisbeckera2bbe752011-07-02 16:52:45 +0200478
Jan Beulich69466462012-02-24 11:55:01 +0000479 /* Store previous stack value */
Frederic Weisbeckera2bbe752011-07-02 16:52:45 +0200480 pushq %rsi
Jan Beulicheab9e612011-09-28 16:57:52 +0100481 CFI_ESCAPE 0x0f /* DW_CFA_def_cfa_expression */, 6, \
482 0x77 /* DW_OP_breg7 */, 0, \
483 0x06 /* DW_OP_deref */, \
484 0x08 /* DW_OP_const1u */, SS+8-RBP, \
485 0x22 /* DW_OP_plus */
Frederic Weisbeckera2bbe752011-07-02 16:52:45 +0200486 /* We entered an interrupt context - irqs are off: */
487 TRACE_IRQS_OFF
Frederic Weisbecker18718532011-07-01 01:51:22 +0200488 .endm
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100489
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100490ENTRY(save_rest)
Tao Guo1b2b23d2012-09-26 04:28:22 -0400491 PARTIAL_FRAME 1 (REST_SKIP+8)
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100492 movq 5*8+16(%rsp), %r11 /* save return address */
493 movq_cfi rbx, RBX+16
494 movq_cfi rbp, RBP+16
495 movq_cfi r12, R12+16
496 movq_cfi r13, R13+16
497 movq_cfi r14, R14+16
498 movq_cfi r15, R15+16
499 movq %r11, 8(%rsp) /* return address */
500 FIXUP_TOP_OF_STACK %r11, 16
501 ret
502 CFI_ENDPROC
503END(save_rest)
504
Alexander van Heukelume2f6bc22008-11-21 16:43:18 +0100505/* save complete stack frame */
Jan Beulichc2810182009-03-12 10:38:55 +0000506 .pushsection .kprobes.text, "ax"
Alexander van Heukelume2f6bc22008-11-21 16:43:18 +0100507ENTRY(save_paranoid)
508 XCPT_FRAME 1 RDI+8
509 cld
510 movq_cfi rdi, RDI+8
511 movq_cfi rsi, RSI+8
512 movq_cfi rdx, RDX+8
513 movq_cfi rcx, RCX+8
514 movq_cfi rax, RAX+8
515 movq_cfi r8, R8+8
516 movq_cfi r9, R9+8
517 movq_cfi r10, R10+8
518 movq_cfi r11, R11+8
519 movq_cfi rbx, RBX+8
520 movq_cfi rbp, RBP+8
521 movq_cfi r12, R12+8
522 movq_cfi r13, R13+8
523 movq_cfi r14, R14+8
524 movq_cfi r15, R15+8
525 movl $1,%ebx
526 movl $MSR_GS_BASE,%ecx
527 rdmsr
528 testl %edx,%edx
529 js 1f /* negative -> in kernel */
530 SWAPGS
531 xorl %ebx,%ebx
5321: ret
533 CFI_ENDPROC
534END(save_paranoid)
Jan Beulichc2810182009-03-12 10:38:55 +0000535 .popsection
Alexander van Heukelume2f6bc22008-11-21 16:43:18 +0100536
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537/*
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100538 * A newly forked process directly context switches into this address.
539 *
540 * rdi: prev task we switched from
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100541 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542ENTRY(ret_from_fork)
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +0100543 DEFAULT_FRAME
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100544
Benjamin LaHaise7106a5a2009-01-10 23:00:22 -0500545 LOCK ; btr $TIF_FORK,TI_flags(%r8)
546
Ian Campbell6eebdda2012-08-24 23:58:47 +0400547 pushq_cfi $0x0002
Jan Beulichdf5d1872010-09-02 14:07:16 +0100548 popfq_cfi # reset kernel eflags
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100549
550 call schedule_tail # rdi: 'prev' task parameter
551
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 GET_THREAD_INFO(%rcx)
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100553
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 RESTORE_REST
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100555
556 testl $3, CS-ARGOFFSET(%rsp) # from kernel_thread?
Al Viro7076aad2012-09-10 16:44:54 -0400557 jz 1f
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100558
559 testl $_TIF_IA32, TI_flags(%rcx) # 32-bit compat task needs IRET
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 jnz int_ret_from_sys_call
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100561
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100562 RESTORE_TOP_OF_STACK %rdi, -ARGOFFSET
Ingo Molnar5b3eec02008-11-27 14:41:21 +0100563 jmp ret_from_sys_call # go to the SYSRET fastpath
564
Al Viro7076aad2012-09-10 16:44:54 -04005651:
Al Viro22e2430d2012-10-10 21:35:42 -0400566 subq $REST_SKIP, %rsp # leave space for volatiles
Al Viro7076aad2012-09-10 16:44:54 -0400567 CFI_ADJUST_CFA_OFFSET REST_SKIP
568 movq %rbp, %rdi
569 call *%rbx
Al Viro22e2430d2012-10-10 21:35:42 -0400570 movl $0, RAX(%rsp)
571 RESTORE_REST
572 jmp int_ret_from_sys_call
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200574END(ret_from_fork)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
576/*
Lucas De Marchi0d2eb442011-03-17 16:24:16 -0300577 * System call entry. Up to 6 arguments in registers are supported.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 *
579 * SYSCALL does not save anything on the stack and does not change the
H. Peter Anvin63bcff22012-09-21 12:43:12 -0700580 * stack pointer. However, it does mask the flags register for us, so
581 * CLD and CLAC are not needed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100583
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584/*
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100585 * Register setup:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 * rax system call number
587 * rdi arg0
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100588 * rcx return address for syscall/sysret, C arg3
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 * rsi arg1
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100590 * rdx arg2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 * r10 arg3 (--> moved to rcx for C)
592 * r8 arg4
593 * r9 arg5
594 * r11 eflags for syscall/sysret, temporary for C
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100595 * r12-r15,rbp,rbx saved by C code, not touched.
596 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 * Interrupts are off on entry.
598 * Only called from user space.
599 *
600 * XXX if we had a free scratch register we could save the RSP into the stack frame
601 * and report it properly in ps. Unfortunately we haven't.
Andi Kleen7bf36bb2006-04-07 19:50:00 +0200602 *
603 * When user can change the frames always force IRET. That is because
604 * it deals with uncanonical addresses better. SYSRET has trouble
605 * with them due to bugs in both AMD and Intel CPUs.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100606 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
608ENTRY(system_call)
Jan Beulich7effaa82005-09-12 18:49:24 +0200609 CFI_STARTPROC simple
Jan Beulichadf14232006-09-26 10:52:41 +0200610 CFI_SIGNAL_FRAME
Brian Gerst9af45652009-01-19 00:38:58 +0900611 CFI_DEF_CFA rsp,KERNEL_STACK_OFFSET
Jan Beulich7effaa82005-09-12 18:49:24 +0200612 CFI_REGISTER rip,rcx
613 /*CFI_REGISTER rflags,r11*/
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100614 SWAPGS_UNSAFE_STACK
615 /*
616 * A hypervisor implementation might want to use a label
617 * after the swapgs, so that it can do the swapgs
618 * for the guest and jump here on syscall.
619 */
Jan Beulichf6b2bc82011-11-29 11:24:10 +0000620GLOBAL(system_call_after_swapgs)
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100621
Brian Gerst3d1e42a2009-01-19 00:38:58 +0900622 movq %rsp,PER_CPU_VAR(old_rsp)
Brian Gerst9af45652009-01-19 00:38:58 +0900623 movq PER_CPU_VAR(kernel_stack),%rsp
Ingo Molnar2601e642006-07-03 00:24:45 -0700624 /*
625 * No need to follow this irqs off/on section - it's straight
626 * and short:
627 */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100628 ENABLE_INTERRUPTS(CLBR_NONE)
Borislav Petkovcac0e0a2011-05-31 22:21:52 +0200629 SAVE_ARGS 8,0
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100630 movq %rax,ORIG_RAX-ARGOFFSET(%rsp)
Jan Beulich7effaa82005-09-12 18:49:24 +0200631 movq %rcx,RIP-ARGOFFSET(%rsp)
632 CFI_REL_OFFSET rip,RIP-ARGOFFSET
Jan Beulich46db09d2011-11-29 11:17:45 +0000633 testl $_TIF_WORK_SYSCALL_ENTRY,TI_flags+THREAD_INFO(%rsp,RIP-ARGOFFSET)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 jnz tracesys
Roland McGrath86a1c342008-06-23 15:37:04 -0700635system_call_fastpath:
H. Peter Anvinfca460f2012-02-19 07:56:26 -0800636#if __SYSCALL_MASK == ~0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 cmpq $__NR_syscall_max,%rax
H. Peter Anvinfca460f2012-02-19 07:56:26 -0800638#else
639 andl $__SYSCALL_MASK,%eax
640 cmpl $__NR_syscall_max,%eax
641#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 ja badsys
643 movq %r10,%rcx
644 call *sys_call_table(,%rax,8) # XXX: rip relative
645 movq %rax,RAX-ARGOFFSET(%rsp)
646/*
647 * Syscall return path ending with SYSRET (fast path)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100648 * Has incomplete stack frame and undefined top of stack.
649 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650ret_from_sys_call:
Andi Kleen11b854b2005-04-16 15:25:02 -0700651 movl $_TIF_ALLWORK_MASK,%edi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 /* edi: flagmask */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100653sysret_check:
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200654 LOCKDEP_SYS_EXIT
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100655 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700656 TRACE_IRQS_OFF
Jan Beulich46db09d2011-11-29 11:17:45 +0000657 movl TI_flags+THREAD_INFO(%rsp,RIP-ARGOFFSET),%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 andl %edi,%edx
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100659 jnz sysret_careful
Jan Beulichbcddc012006-12-07 02:14:02 +0100660 CFI_REMEMBER_STATE
Ingo Molnar2601e642006-07-03 00:24:45 -0700661 /*
662 * sysretq will re-enable interrupts:
663 */
664 TRACE_IRQS_ON
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 movq RIP-ARGOFFSET(%rsp),%rcx
Jan Beulich7effaa82005-09-12 18:49:24 +0200666 CFI_REGISTER rip,rcx
Borislav Petkov838feb42011-05-31 22:21:53 +0200667 RESTORE_ARGS 1,-ARG_SKIP,0
Jan Beulich7effaa82005-09-12 18:49:24 +0200668 /*CFI_REGISTER rflags,r11*/
Brian Gerst3d1e42a2009-01-19 00:38:58 +0900669 movq PER_CPU_VAR(old_rsp), %rsp
Jeremy Fitzhardinge2be29982008-06-25 00:19:28 -0400670 USERGS_SYSRET64
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
Jan Beulichbcddc012006-12-07 02:14:02 +0100672 CFI_RESTORE_STATE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 /* Handle reschedules */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100674 /* edx: work, edi: workmask */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675sysret_careful:
676 bt $TIF_NEED_RESCHED,%edx
677 jnc sysret_signal
Ingo Molnar2601e642006-07-03 00:24:45 -0700678 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100679 ENABLE_INTERRUPTS(CLBR_NONE)
Jan Beulichdf5d1872010-09-02 14:07:16 +0100680 pushq_cfi %rdi
Frederic Weisbecker04304992012-07-11 20:26:38 +0200681 SCHEDULE_USER
Jan Beulichdf5d1872010-09-02 14:07:16 +0100682 popq_cfi %rdi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 jmp sysret_check
684
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100685 /* Handle a signal */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686sysret_signal:
Ingo Molnar2601e642006-07-03 00:24:45 -0700687 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100688 ENABLE_INTERRUPTS(CLBR_NONE)
Roland McGrath86a1c342008-06-23 15:37:04 -0700689#ifdef CONFIG_AUDITSYSCALL
690 bt $TIF_SYSCALL_AUDIT,%edx
691 jc sysret_audit
692#endif
Roland McGrathb60e7142009-09-22 16:46:34 -0700693 /*
694 * We have a signal, or exit tracing or single-step.
695 * These all wind up with the iret return path anyway,
696 * so just join that path right now.
697 */
698 FIXUP_TOP_OF_STACK %r11, -ARGOFFSET
699 jmp int_check_syscall_exit_work
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100700
Jan Beulich7effaa82005-09-12 18:49:24 +0200701badsys:
702 movq $-ENOSYS,RAX-ARGOFFSET(%rsp)
703 jmp ret_from_sys_call
704
Roland McGrath86a1c342008-06-23 15:37:04 -0700705#ifdef CONFIG_AUDITSYSCALL
706 /*
707 * Fast path for syscall audit without full syscall trace.
Eric Parisb05d8442012-01-03 14:23:06 -0500708 * We just call __audit_syscall_entry() directly, and then
Roland McGrath86a1c342008-06-23 15:37:04 -0700709 * jump back to the normal fast path.
710 */
711auditsys:
712 movq %r10,%r9 /* 6th arg: 4th syscall arg */
713 movq %rdx,%r8 /* 5th arg: 3rd syscall arg */
714 movq %rsi,%rcx /* 4th arg: 2nd syscall arg */
715 movq %rdi,%rdx /* 3rd arg: 1st syscall arg */
716 movq %rax,%rsi /* 2nd arg: syscall number */
717 movl $AUDIT_ARCH_X86_64,%edi /* 1st arg: audit arch */
Eric Parisb05d8442012-01-03 14:23:06 -0500718 call __audit_syscall_entry
Roland McGrath86a1c342008-06-23 15:37:04 -0700719 LOAD_ARGS 0 /* reload call-clobbered registers */
720 jmp system_call_fastpath
721
722 /*
Eric Parisd7e75282012-01-03 14:23:06 -0500723 * Return fast path for syscall audit. Call __audit_syscall_exit()
Roland McGrath86a1c342008-06-23 15:37:04 -0700724 * directly and then jump back to the fast path with TIF_SYSCALL_AUDIT
725 * masked off.
726 */
727sysret_audit:
Roland McGrath03275592010-07-21 17:44:12 -0700728 movq RAX-ARGOFFSET(%rsp),%rsi /* second arg, syscall return value */
Eric Parisd7e75282012-01-03 14:23:06 -0500729 cmpq $-MAX_ERRNO,%rsi /* is it < -MAX_ERRNO? */
730 setbe %al /* 1 if so, 0 if not */
Roland McGrath86a1c342008-06-23 15:37:04 -0700731 movzbl %al,%edi /* zero-extend that into %edi */
Eric Parisd7e75282012-01-03 14:23:06 -0500732 call __audit_syscall_exit
Roland McGrath86a1c342008-06-23 15:37:04 -0700733 movl $(_TIF_ALLWORK_MASK & ~_TIF_SYSCALL_AUDIT),%edi
734 jmp sysret_check
735#endif /* CONFIG_AUDITSYSCALL */
736
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 /* Do syscall tracing */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100738tracesys:
Roland McGrath86a1c342008-06-23 15:37:04 -0700739#ifdef CONFIG_AUDITSYSCALL
Jan Beulich46db09d2011-11-29 11:17:45 +0000740 testl $(_TIF_WORK_SYSCALL_ENTRY & ~_TIF_SYSCALL_AUDIT),TI_flags+THREAD_INFO(%rsp,RIP-ARGOFFSET)
Roland McGrath86a1c342008-06-23 15:37:04 -0700741 jz auditsys
742#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 SAVE_REST
Roland McGratha31f8dd2008-03-16 21:59:11 -0700744 movq $-ENOSYS,RAX(%rsp) /* ptrace can change this for a bad syscall */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 FIXUP_TOP_OF_STACK %rdi
746 movq %rsp,%rdi
747 call syscall_trace_enter
Roland McGrathd4d67152008-07-09 02:38:07 -0700748 /*
749 * Reload arg registers from stack in case ptrace changed them.
750 * We don't reload %rax because syscall_trace_enter() returned
751 * the value it wants us to use in the table lookup.
752 */
753 LOAD_ARGS ARGOFFSET, 1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 RESTORE_REST
H. Peter Anvinfca460f2012-02-19 07:56:26 -0800755#if __SYSCALL_MASK == ~0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 cmpq $__NR_syscall_max,%rax
H. Peter Anvinfca460f2012-02-19 07:56:26 -0800757#else
758 andl $__SYSCALL_MASK,%eax
759 cmpl $__NR_syscall_max,%eax
760#endif
Roland McGratha31f8dd2008-03-16 21:59:11 -0700761 ja int_ret_from_sys_call /* RAX(%rsp) set to -ENOSYS above */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 movq %r10,%rcx /* fixup for C */
763 call *sys_call_table(,%rax,8)
Roland McGratha31f8dd2008-03-16 21:59:11 -0700764 movq %rax,RAX-ARGOFFSET(%rsp)
Andi Kleen7bf36bb2006-04-07 19:50:00 +0200765 /* Use IRET because user could have changed frame */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100766
767/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 * Syscall return path ending with IRET.
769 * Has correct top of stack, but partial stack frame.
Jan Beulichbcddc012006-12-07 02:14:02 +0100770 */
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +0300771GLOBAL(int_ret_from_sys_call)
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100772 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700773 TRACE_IRQS_OFF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 movl $_TIF_ALLWORK_MASK,%edi
775 /* edi: mask to check */
Cyrill Gorcunovbc8b2b92009-02-23 22:57:01 +0300776GLOBAL(int_with_check)
Peter Zijlstra10cd7062007-10-11 22:11:12 +0200777 LOCKDEP_SYS_EXIT_IRQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 GET_THREAD_INFO(%rcx)
Glauber Costa26ccb8a2008-06-24 11:19:35 -0300779 movl TI_flags(%rcx),%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 andl %edi,%edx
781 jnz int_careful
Glauber Costa26ccb8a2008-06-24 11:19:35 -0300782 andl $~TS_COMPAT,TI_status(%rcx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 jmp retint_swapgs
784
785 /* Either reschedule or signal or syscall exit tracking needed. */
786 /* First do a reschedule test. */
787 /* edx: work, edi: workmask */
788int_careful:
789 bt $TIF_NEED_RESCHED,%edx
790 jnc int_very_careful
Ingo Molnar2601e642006-07-03 00:24:45 -0700791 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100792 ENABLE_INTERRUPTS(CLBR_NONE)
Jan Beulichdf5d1872010-09-02 14:07:16 +0100793 pushq_cfi %rdi
Frederic Weisbecker04304992012-07-11 20:26:38 +0200794 SCHEDULE_USER
Jan Beulichdf5d1872010-09-02 14:07:16 +0100795 popq_cfi %rdi
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100796 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700797 TRACE_IRQS_OFF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 jmp int_with_check
799
800 /* handle signals and tracing -- both require a full stack frame */
801int_very_careful:
Ingo Molnar2601e642006-07-03 00:24:45 -0700802 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100803 ENABLE_INTERRUPTS(CLBR_NONE)
Roland McGrathb60e7142009-09-22 16:46:34 -0700804int_check_syscall_exit_work:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 SAVE_REST
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100806 /* Check for syscall exit trace */
Roland McGrathd4d67152008-07-09 02:38:07 -0700807 testl $_TIF_WORK_SYSCALL_EXIT,%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 jz int_signal
Jan Beulichdf5d1872010-09-02 14:07:16 +0100809 pushq_cfi %rdi
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100810 leaq 8(%rsp),%rdi # &ptregs -> arg1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 call syscall_trace_leave
Jan Beulichdf5d1872010-09-02 14:07:16 +0100812 popq_cfi %rdi
Roland McGrathd4d67152008-07-09 02:38:07 -0700813 andl $~(_TIF_WORK_SYSCALL_EXIT|_TIF_SYSCALL_EMU),%edi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 jmp int_restore_rest
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100815
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816int_signal:
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100817 testl $_TIF_DO_NOTIFY_MASK,%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 jz 1f
819 movq %rsp,%rdi # &ptregs -> arg1
820 xorl %esi,%esi # oldset -> arg2
821 call do_notify_resume
Roland McGratheca91e72008-07-10 14:50:39 -07008221: movl $_TIF_WORK_MASK,%edi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823int_restore_rest:
824 RESTORE_REST
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +0100825 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -0700826 TRACE_IRQS_OFF
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 jmp int_with_check
828 CFI_ENDPROC
Jan Beulichbcddc012006-12-07 02:14:02 +0100829END(system_call)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100830
Al Viro1d4b4b22012-10-22 22:34:11 -0400831 .macro FORK_LIKE func
832ENTRY(stub_\func)
833 CFI_STARTPROC
834 popq %r11 /* save return address */
835 PARTIAL_FRAME 0
836 SAVE_REST
837 pushq %r11 /* put it back on stack */
838 FIXUP_TOP_OF_STACK %r11, 8
839 DEFAULT_FRAME 0 8 /* offset 8: return address */
840 call sys_\func
841 RESTORE_TOP_OF_STACK %r11, 8
842 ret $REST_SKIP /* pop extended registers */
843 CFI_ENDPROC
844END(stub_\func)
845 .endm
846
Al Virob3af11a2012-11-19 22:00:52 -0500847 .macro FIXED_FRAME label,func
848ENTRY(\label)
849 CFI_STARTPROC
850 PARTIAL_FRAME 0 8 /* offset 8: return address */
851 FIXUP_TOP_OF_STACK %r11, 8-ARGOFFSET
852 call \func
853 RESTORE_TOP_OF_STACK %r11, 8-ARGOFFSET
854 ret
855 CFI_ENDPROC
856END(\label)
857 .endm
858
Al Viro1d4b4b22012-10-22 22:34:11 -0400859 FORK_LIKE clone
860 FORK_LIKE fork
861 FORK_LIKE vfork
Al Virob3af11a2012-11-19 22:00:52 -0500862 FIXED_FRAME stub_iopl, sys_iopl
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863
864ENTRY(ptregscall_common)
Alexander van Heukelumc002a1e2008-11-21 16:41:55 +0100865 DEFAULT_FRAME 1 8 /* offset 8: return address */
866 RESTORE_TOP_OF_STACK %r11, 8
867 movq_cfi_restore R15+8, r15
868 movq_cfi_restore R14+8, r14
869 movq_cfi_restore R13+8, r13
870 movq_cfi_restore R12+8, r12
871 movq_cfi_restore RBP+8, rbp
872 movq_cfi_restore RBX+8, rbx
873 ret $REST_SKIP /* pop extended registers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200875END(ptregscall_common)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100876
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877ENTRY(stub_execve)
878 CFI_STARTPROC
Jan Beuliche6b04b62010-09-02 13:52:45 +0100879 addq $8, %rsp
880 PARTIAL_FRAME 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 SAVE_REST
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 FIXUP_TOP_OF_STACK %r11
883 call sys_execve
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 movq %rax,RAX(%rsp)
885 RESTORE_REST
886 jmp int_ret_from_sys_call
887 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200888END(stub_execve)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100889
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890/*
891 * sigreturn is special because it needs to restore all registers on return.
892 * This cannot be done with SYSRET, so use the IRET return path instead.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +0100893 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894ENTRY(stub_rt_sigreturn)
895 CFI_STARTPROC
Jan Beulich7effaa82005-09-12 18:49:24 +0200896 addq $8, %rsp
Jan Beuliche6b04b62010-09-02 13:52:45 +0100897 PARTIAL_FRAME 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 SAVE_REST
899 movq %rsp,%rdi
900 FIXUP_TOP_OF_STACK %r11
901 call sys_rt_sigreturn
902 movq %rax,RAX(%rsp) # fixme, this could be done at the higher layer
903 RESTORE_REST
904 jmp int_ret_from_sys_call
905 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +0200906END(stub_rt_sigreturn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907
H. Peter Anvinc5a37392012-02-19 09:41:09 -0800908#ifdef CONFIG_X86_X32_ABI
H. Peter Anvinc5a37392012-02-19 09:41:09 -0800909ENTRY(stub_x32_rt_sigreturn)
910 CFI_STARTPROC
911 addq $8, %rsp
912 PARTIAL_FRAME 0
913 SAVE_REST
914 movq %rsp,%rdi
915 FIXUP_TOP_OF_STACK %r11
916 call sys32_x32_rt_sigreturn
917 movq %rax,RAX(%rsp) # fixme, this could be done at the higher layer
918 RESTORE_REST
919 jmp int_ret_from_sys_call
920 CFI_ENDPROC
921END(stub_x32_rt_sigreturn)
922
H. Peter Anvind1a797f2012-02-19 10:06:34 -0800923ENTRY(stub_x32_execve)
924 CFI_STARTPROC
925 addq $8, %rsp
926 PARTIAL_FRAME 0
927 SAVE_REST
928 FIXUP_TOP_OF_STACK %r11
Al Viro6783eaa22012-08-02 23:05:11 +0400929 call compat_sys_execve
H. Peter Anvind1a797f2012-02-19 10:06:34 -0800930 RESTORE_TOP_OF_STACK %r11
931 movq %rax,RAX(%rsp)
932 RESTORE_REST
933 jmp int_ret_from_sys_call
934 CFI_ENDPROC
935END(stub_x32_execve)
936
H. Peter Anvinc5a37392012-02-19 09:41:09 -0800937#endif
938
Jan Beulich7effaa82005-09-12 18:49:24 +0200939/*
H. Peter Anvin939b7872008-11-11 13:51:52 -0800940 * Build the entry stubs and pointer table with some assembler magic.
941 * We pack 7 stubs into a single 32-byte chunk, which will fit in a
942 * single cache line on all modern x86 implementations.
943 */
944 .section .init.rodata,"a"
945ENTRY(interrupt)
Jiri Olsaea714542011-03-07 19:10:39 +0100946 .section .entry.text
H. Peter Anvin939b7872008-11-11 13:51:52 -0800947 .p2align 5
948 .p2align CONFIG_X86_L1_CACHE_SHIFT
949ENTRY(irq_entries_start)
950 INTR_FRAME
951vector=FIRST_EXTERNAL_VECTOR
952.rept (NR_VECTORS-FIRST_EXTERNAL_VECTOR+6)/7
953 .balign 32
954 .rept 7
955 .if vector < NR_VECTORS
H. Peter Anvin86655962008-11-12 10:27:35 -0800956 .if vector <> FIRST_EXTERNAL_VECTOR
H. Peter Anvin939b7872008-11-11 13:51:52 -0800957 CFI_ADJUST_CFA_OFFSET -8
958 .endif
Jan Beulichdf5d1872010-09-02 14:07:16 +01009591: pushq_cfi $(~vector+0x80) /* Note: always in signed byte range */
H. Peter Anvin86655962008-11-12 10:27:35 -0800960 .if ((vector-FIRST_EXTERNAL_VECTOR)%7) <> 6
H. Peter Anvin939b7872008-11-11 13:51:52 -0800961 jmp 2f
962 .endif
963 .previous
964 .quad 1b
Jiri Olsaea714542011-03-07 19:10:39 +0100965 .section .entry.text
H. Peter Anvin939b7872008-11-11 13:51:52 -0800966vector=vector+1
967 .endif
968 .endr
9692: jmp common_interrupt
970.endr
971 CFI_ENDPROC
972END(irq_entries_start)
973
974.previous
975END(interrupt)
976.previous
977
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100978/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 * Interrupt entry/exit.
980 *
981 * Interrupt entry points save only callee clobbered registers in fast path.
Alexander van Heukelumd99015b2008-11-19 01:18:11 +0100982 *
983 * Entry runs with interrupts off.
984 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985
Alexander van Heukelum722024d2008-11-13 13:50:20 +0100986/* 0(%rsp): ~(interrupt number) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 .macro interrupt func
Frederic Weisbecker625dbc32011-01-06 15:22:47 +0100988 /* reserve pt_regs for scratch regs and rbp */
989 subq $ORIG_RAX-RBP, %rsp
990 CFI_ADJUST_CFA_OFFSET ORIG_RAX-RBP
Frederic Weisbecker18718532011-07-01 01:51:22 +0200991 SAVE_ARGS_IRQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 call \func
993 .endm
994
Masami Hiramatsu8222d712009-08-27 13:23:25 -0400995/*
996 * Interrupt entry/exit should be protected against kprobes
997 */
998 .pushsection .kprobes.text, "ax"
Alexander van Heukelum722024d2008-11-13 13:50:20 +0100999 /*
1000 * The interrupt stubs push (~vector+0x80) onto the stack and
1001 * then jump to common_interrupt.
1002 */
H. Peter Anvin939b7872008-11-11 13:51:52 -08001003 .p2align CONFIG_X86_L1_CACHE_SHIFT
1004common_interrupt:
Jan Beulich7effaa82005-09-12 18:49:24 +02001005 XCPT_FRAME
Jan Beulichee4eb872012-11-02 11:18:39 +00001006 ASM_CLAC
Alexander van Heukelum722024d2008-11-13 13:50:20 +01001007 addq $-0x80,(%rsp) /* Adjust vector to [-256,-1] range */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 interrupt do_IRQ
Brian Gerst3d1e42a2009-01-19 00:38:58 +09001009 /* 0(%rsp): old_rsp-ARGOFFSET */
Jan Beulich7effaa82005-09-12 18:49:24 +02001010ret_from_intr:
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +01001011 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -07001012 TRACE_IRQS_OFF
Brian Gerst56895532009-01-19 00:38:58 +09001013 decl PER_CPU_VAR(irq_count)
Frederic Weisbecker625dbc32011-01-06 15:22:47 +01001014
Frederic Weisbeckera2bbe752011-07-02 16:52:45 +02001015 /* Restore saved previous stack */
1016 popq %rsi
Mark Wielaard928282e2012-02-24 11:32:05 +01001017 CFI_DEF_CFA rsi,SS+8-RBP /* reg/off reset after def_cfa_expr */
Jan Beulicheab9e612011-09-28 16:57:52 +01001018 leaq ARGOFFSET-RBP(%rsi), %rsp
Jan Beulich7effaa82005-09-12 18:49:24 +02001019 CFI_DEF_CFA_REGISTER rsp
Jan Beulicheab9e612011-09-28 16:57:52 +01001020 CFI_ADJUST_CFA_OFFSET RBP-ARGOFFSET
Frederic Weisbecker625dbc32011-01-06 15:22:47 +01001021
Jan Beulich7effaa82005-09-12 18:49:24 +02001022exit_intr:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 GET_THREAD_INFO(%rcx)
1024 testl $3,CS-ARGOFFSET(%rsp)
1025 je retint_kernel
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001026
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 /* Interrupt came from user space */
1028 /*
1029 * Has a correct top of stack, but a partial stack frame
1030 * %rcx: thread info. Interrupts off.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001031 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032retint_with_reschedule:
1033 movl $_TIF_WORK_MASK,%edi
Jan Beulich7effaa82005-09-12 18:49:24 +02001034retint_check:
Peter Zijlstra10cd7062007-10-11 22:11:12 +02001035 LOCKDEP_SYS_EXIT_IRQ
Glauber Costa26ccb8a2008-06-24 11:19:35 -03001036 movl TI_flags(%rcx),%edx
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 andl %edi,%edx
Jan Beulich7effaa82005-09-12 18:49:24 +02001038 CFI_REMEMBER_STATE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 jnz retint_careful
Peter Zijlstra10cd7062007-10-11 22:11:12 +02001040
1041retint_swapgs: /* return to user-space */
Ingo Molnar2601e642006-07-03 00:24:45 -07001042 /*
1043 * The iretq could re-enable interrupts:
1044 */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +01001045 DISABLE_INTERRUPTS(CLBR_ANY)
Ingo Molnar2601e642006-07-03 00:24:45 -07001046 TRACE_IRQS_IRETQ
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +01001047 SWAPGS
Ingo Molnar2601e642006-07-03 00:24:45 -07001048 jmp restore_args
1049
Peter Zijlstra10cd7062007-10-11 22:11:12 +02001050retint_restore_args: /* return to kernel space */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +01001051 DISABLE_INTERRUPTS(CLBR_ANY)
Ingo Molnar2601e642006-07-03 00:24:45 -07001052 /*
1053 * The iretq could re-enable interrupts:
1054 */
1055 TRACE_IRQS_IRETQ
1056restore_args:
Borislav Petkov838feb42011-05-31 22:21:53 +02001057 RESTORE_ARGS 1,8,1
Ingo Molnar3701d8632008-02-09 23:24:08 +01001058
Adrian Bunkf7f3d792008-02-13 23:29:53 +02001059irq_return:
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +01001060 INTERRUPT_RETURN
H. Peter Anvind7abc0f2012-04-20 12:19:50 -07001061 _ASM_EXTABLE(irq_return, bad_iret)
Ingo Molnar3701d8632008-02-09 23:24:08 +01001062
1063#ifdef CONFIG_PARAVIRT
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +01001064ENTRY(native_iret)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 iretq
H. Peter Anvind7abc0f2012-04-20 12:19:50 -07001066 _ASM_EXTABLE(native_iret, bad_iret)
Ingo Molnar3701d8632008-02-09 23:24:08 +01001067#endif
1068
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 .section .fixup,"ax"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070bad_iret:
Roland McGrath3aa4b372008-02-06 22:39:43 +01001071 /*
1072 * The iret traps when the %cs or %ss being restored is bogus.
1073 * We've lost the original trap vector and error code.
1074 * #GPF is the most likely one to get for an invalid selector.
1075 * So pretend we completed the iret and took the #GPF in user mode.
1076 *
1077 * We are now running with the kernel GS after exception recovery.
1078 * But error_entry expects us to have user GS to match the user %cs,
1079 * so swap back.
1080 */
1081 pushq $0
1082
1083 SWAPGS
1084 jmp general_protection
1085
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +01001086 .previous
1087
Jan Beulich7effaa82005-09-12 18:49:24 +02001088 /* edi: workmask, edx: work */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089retint_careful:
Jan Beulich7effaa82005-09-12 18:49:24 +02001090 CFI_RESTORE_STATE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 bt $TIF_NEED_RESCHED,%edx
1092 jnc retint_signal
Ingo Molnar2601e642006-07-03 00:24:45 -07001093 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +01001094 ENABLE_INTERRUPTS(CLBR_NONE)
Jan Beulichdf5d1872010-09-02 14:07:16 +01001095 pushq_cfi %rdi
Frederic Weisbecker04304992012-07-11 20:26:38 +02001096 SCHEDULE_USER
Jan Beulichdf5d1872010-09-02 14:07:16 +01001097 popq_cfi %rdi
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 GET_THREAD_INFO(%rcx)
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +01001099 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -07001100 TRACE_IRQS_OFF
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 jmp retint_check
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001102
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103retint_signal:
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001104 testl $_TIF_DO_NOTIFY_MASK,%edx
Andi Kleen10ffdbb2005-05-16 21:53:19 -07001105 jz retint_swapgs
Ingo Molnar2601e642006-07-03 00:24:45 -07001106 TRACE_IRQS_ON
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +01001107 ENABLE_INTERRUPTS(CLBR_NONE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 SAVE_REST
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001109 movq $-1,ORIG_RAX(%rsp)
Andi Kleen3829ee62005-07-28 21:15:48 -07001110 xorl %esi,%esi # oldset
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 movq %rsp,%rdi # &pt_regs
1112 call do_notify_resume
1113 RESTORE_REST
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +01001114 DISABLE_INTERRUPTS(CLBR_NONE)
Ingo Molnar2601e642006-07-03 00:24:45 -07001115 TRACE_IRQS_OFF
Andi Kleenbe9e6872005-05-01 08:58:51 -07001116 GET_THREAD_INFO(%rcx)
Roland McGratheca91e72008-07-10 14:50:39 -07001117 jmp retint_with_reschedule
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118
1119#ifdef CONFIG_PREEMPT
1120 /* Returning to kernel space. Check if we need preemption */
1121 /* rcx: threadinfo. interrupts off. */
Andi Kleenb06baba2006-09-26 10:52:29 +02001122ENTRY(retint_kernel)
Glauber Costa26ccb8a2008-06-24 11:19:35 -03001123 cmpl $0,TI_preempt_count(%rcx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 jnz retint_restore_args
Glauber Costa26ccb8a2008-06-24 11:19:35 -03001125 bt $TIF_NEED_RESCHED,TI_flags(%rcx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 jnc retint_restore_args
1127 bt $9,EFLAGS-ARGOFFSET(%rsp) /* interrupts off? */
1128 jnc retint_restore_args
1129 call preempt_schedule_irq
1130 jmp exit_intr
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001131#endif
Jan Beulich4b787e02006-06-26 13:56:55 +02001132
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 CFI_ENDPROC
Jan Beulich4b787e02006-06-26 13:56:55 +02001134END(common_interrupt)
Masami Hiramatsu8222d712009-08-27 13:23:25 -04001135/*
1136 * End of kprobes section
1137 */
1138 .popsection
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001139
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140/*
1141 * APIC interrupts.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001142 */
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001143.macro apicinterrupt num sym do_sym
1144ENTRY(\sym)
Jan Beulich7effaa82005-09-12 18:49:24 +02001145 INTR_FRAME
Jan Beulichee4eb872012-11-02 11:18:39 +00001146 ASM_CLAC
Jan Beulichdf5d1872010-09-02 14:07:16 +01001147 pushq_cfi $~(\num)
Jan Beulich39e95432011-11-29 11:03:46 +00001148.Lcommon_\sym:
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001149 interrupt \do_sym
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 jmp ret_from_intr
1151 CFI_ENDPROC
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001152END(\sym)
1153.endm
Jacob Shin89b831e2005-11-05 17:25:53 +01001154
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001155#ifdef CONFIG_SMP
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001156apicinterrupt IRQ_MOVE_CLEANUP_VECTOR \
1157 irq_move_cleanup_interrupt smp_irq_move_cleanup_interrupt
Andi Kleen4ef702c2009-05-27 21:56:52 +02001158apicinterrupt REBOOT_VECTOR \
1159 reboot_interrupt smp_reboot_interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160#endif
1161
Nick Piggin03b48632009-01-20 04:36:04 +01001162#ifdef CONFIG_X86_UV
Cyrill Gorcunov5ae3a132008-11-27 00:02:10 +03001163apicinterrupt UV_BAU_MESSAGE \
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001164 uv_bau_message_intr1 uv_bau_message_interrupt
Nick Piggin03b48632009-01-20 04:36:04 +01001165#endif
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001166apicinterrupt LOCAL_TIMER_VECTOR \
1167 apic_timer_interrupt smp_apic_timer_interrupt
Dimitri Sivanich4a4de9c2009-10-14 09:22:57 -05001168apicinterrupt X86_PLATFORM_IPI_VECTOR \
1169 x86_platform_ipi smp_x86_platform_ipi
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001171apicinterrupt THRESHOLD_APIC_VECTOR \
Andi Kleen7856f6c2009-04-28 23:32:56 +02001172 threshold_interrupt smp_threshold_interrupt
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001173apicinterrupt THERMAL_APIC_VECTOR \
1174 thermal_interrupt smp_thermal_interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001176#ifdef CONFIG_SMP
1177apicinterrupt CALL_FUNCTION_SINGLE_VECTOR \
1178 call_function_single_interrupt smp_call_function_single_interrupt
1179apicinterrupt CALL_FUNCTION_VECTOR \
1180 call_function_interrupt smp_call_function_interrupt
1181apicinterrupt RESCHEDULE_VECTOR \
1182 reschedule_interrupt smp_reschedule_interrupt
1183#endif
1184
1185apicinterrupt ERROR_APIC_VECTOR \
1186 error_interrupt smp_error_interrupt
1187apicinterrupt SPURIOUS_APIC_VECTOR \
1188 spurious_interrupt smp_spurious_interrupt
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001189
Peter Zijlstrae360adb2010-10-14 14:01:34 +08001190#ifdef CONFIG_IRQ_WORK
1191apicinterrupt IRQ_WORK_VECTOR \
1192 irq_work_interrupt smp_irq_work_interrupt
Ingo Molnar241771e2008-12-03 10:39:53 +01001193#endif
1194
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195/*
1196 * Exception entry points.
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001197 */
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001198.macro zeroentry sym do_sym
1199ENTRY(\sym)
Jan Beulich7effaa82005-09-12 18:49:24 +02001200 INTR_FRAME
Jan Beulichee4eb872012-11-02 11:18:39 +00001201 ASM_CLAC
Jeremy Fitzhardingefab58422008-06-25 00:19:31 -04001202 PARAVIRT_ADJUST_EXCEPTION_FRAME
Ingo Molnar14ae22b2008-11-21 15:20:47 +01001203 pushq_cfi $-1 /* ORIG_RAX: no syscall to restart */
Jan Beulichb1cccb12010-09-02 13:55:11 +01001204 subq $ORIG_RAX-R15, %rsp
1205 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
Alexander van Heukelumd99015b2008-11-19 01:18:11 +01001206 call error_entry
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +01001207 DEFAULT_FRAME 0
Alexander van Heukelumd99015b2008-11-19 01:18:11 +01001208 movq %rsp,%rdi /* pt_regs pointer */
1209 xorl %esi,%esi /* no error code */
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001210 call \do_sym
Alexander van Heukelumd99015b2008-11-19 01:18:11 +01001211 jmp error_exit /* %ebx: no swapgs flag */
Jan Beulich7effaa82005-09-12 18:49:24 +02001212 CFI_ENDPROC
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001213END(\sym)
1214.endm
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001216.macro paranoidzeroentry sym do_sym
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001217ENTRY(\sym)
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001218 INTR_FRAME
Jan Beulichee4eb872012-11-02 11:18:39 +00001219 ASM_CLAC
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001220 PARAVIRT_ADJUST_EXCEPTION_FRAME
Jan Beulichb1cccb12010-09-02 13:55:11 +01001221 pushq_cfi $-1 /* ORIG_RAX: no syscall to restart */
1222 subq $ORIG_RAX-R15, %rsp
1223 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001224 call save_paranoid
1225 TRACE_IRQS_OFF
1226 movq %rsp,%rdi /* pt_regs pointer */
1227 xorl %esi,%esi /* no error code */
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001228 call \do_sym
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001229 jmp paranoid_exit /* %ebx: no swapgs flag */
1230 CFI_ENDPROC
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001231END(\sym)
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001232.endm
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001233
Brian Gerstc15a5952010-07-31 12:48:22 -04001234#define INIT_TSS_IST(x) PER_CPU_VAR(init_tss) + (TSS_ist + ((x) - 1) * 8)
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001235.macro paranoidzeroentry_ist sym do_sym ist
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001236ENTRY(\sym)
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001237 INTR_FRAME
Jan Beulichee4eb872012-11-02 11:18:39 +00001238 ASM_CLAC
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001239 PARAVIRT_ADJUST_EXCEPTION_FRAME
Jan Beulichb1cccb12010-09-02 13:55:11 +01001240 pushq_cfi $-1 /* ORIG_RAX: no syscall to restart */
1241 subq $ORIG_RAX-R15, %rsp
1242 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001243 call save_paranoid
Steven Rostedt5963e312012-05-30 11:54:53 -04001244 TRACE_IRQS_OFF_DEBUG
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001245 movq %rsp,%rdi /* pt_regs pointer */
1246 xorl %esi,%esi /* no error code */
Brian Gerstc15a5952010-07-31 12:48:22 -04001247 subq $EXCEPTION_STKSZ, INIT_TSS_IST(\ist)
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001248 call \do_sym
Brian Gerstc15a5952010-07-31 12:48:22 -04001249 addq $EXCEPTION_STKSZ, INIT_TSS_IST(\ist)
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001250 jmp paranoid_exit /* %ebx: no swapgs flag */
1251 CFI_ENDPROC
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001252END(\sym)
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001253.endm
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001254
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001255.macro errorentry sym do_sym
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001256ENTRY(\sym)
Jan Beulich7effaa82005-09-12 18:49:24 +02001257 XCPT_FRAME
Jan Beulichee4eb872012-11-02 11:18:39 +00001258 ASM_CLAC
Jeremy Fitzhardingefab58422008-06-25 00:19:31 -04001259 PARAVIRT_ADJUST_EXCEPTION_FRAME
Jan Beulichb1cccb12010-09-02 13:55:11 +01001260 subq $ORIG_RAX-R15, %rsp
1261 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
Alexander van Heukelumd99015b2008-11-19 01:18:11 +01001262 call error_entry
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +01001263 DEFAULT_FRAME 0
Alexander van Heukelumd99015b2008-11-19 01:18:11 +01001264 movq %rsp,%rdi /* pt_regs pointer */
1265 movq ORIG_RAX(%rsp),%rsi /* get error code */
1266 movq $-1,ORIG_RAX(%rsp) /* no syscall to restart */
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001267 call \do_sym
Alexander van Heukelumd99015b2008-11-19 01:18:11 +01001268 jmp error_exit /* %ebx: no swapgs flag */
Jan Beulich7effaa82005-09-12 18:49:24 +02001269 CFI_ENDPROC
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001270END(\sym)
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001271.endm
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272
1273 /* error code is on the stack already */
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001274.macro paranoiderrorentry sym do_sym
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001275ENTRY(\sym)
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001276 XCPT_FRAME
Jan Beulichee4eb872012-11-02 11:18:39 +00001277 ASM_CLAC
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001278 PARAVIRT_ADJUST_EXCEPTION_FRAME
Jan Beulichb1cccb12010-09-02 13:55:11 +01001279 subq $ORIG_RAX-R15, %rsp
1280 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
Alexander van Heukelume2f6bc22008-11-21 16:43:18 +01001281 call save_paranoid
1282 DEFAULT_FRAME 0
Alexander van Heukelum7e61a792008-09-26 14:03:03 +02001283 TRACE_IRQS_OFF
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001284 movq %rsp,%rdi /* pt_regs pointer */
1285 movq ORIG_RAX(%rsp),%rsi /* get error code */
1286 movq $-1,ORIG_RAX(%rsp) /* no syscall to restart */
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001287 call \do_sym
Alexander van Heukelumb8b1d082008-11-21 16:44:28 +01001288 jmp paranoid_exit /* %ebx: no swapgs flag */
1289 CFI_ENDPROC
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001290END(\sym)
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001291.endm
1292
1293zeroentry divide_error do_divide_error
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001294zeroentry overflow do_overflow
1295zeroentry bounds do_bounds
1296zeroentry invalid_op do_invalid_op
1297zeroentry device_not_available do_device_not_available
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001298paranoiderrorentry double_fault do_double_fault
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001299zeroentry coprocessor_segment_overrun do_coprocessor_segment_overrun
1300errorentry invalid_TSS do_invalid_TSS
1301errorentry segment_not_present do_segment_not_present
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001302zeroentry spurious_interrupt_bug do_spurious_interrupt_bug
1303zeroentry coprocessor_error do_coprocessor_error
1304errorentry alignment_check do_alignment_check
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001305zeroentry simd_coprocessor_error do_simd_coprocessor_error
Andy Lutomirski5cec93c2011-06-05 13:50:24 -04001306
Ingo Molnar2601e642006-07-03 00:24:45 -07001307
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001308 /* Reload gs selector with exception handling */
1309 /* edi: new selector */
Jeremy Fitzhardinge9f9d4892008-06-25 00:19:32 -04001310ENTRY(native_load_gs_index)
Jan Beulich7effaa82005-09-12 18:49:24 +02001311 CFI_STARTPROC
Jan Beulichdf5d1872010-09-02 14:07:16 +01001312 pushfq_cfi
Jeremy Fitzhardingeb8aa2872009-01-28 14:35:03 -08001313 DISABLE_INTERRUPTS(CLBR_ANY & ~CLBR_RDI)
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001314 SWAPGS
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001315gs_change:
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001316 movl %edi,%gs
Linus Torvalds1da177e2005-04-16 15:20:36 -070013172: mfence /* workaround */
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +01001318 SWAPGS
Jan Beulichdf5d1872010-09-02 14:07:16 +01001319 popfq_cfi
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001320 ret
Jan Beulich7effaa82005-09-12 18:49:24 +02001321 CFI_ENDPROC
Alexander van Heukelum6efdcfa2008-11-23 10:15:32 +01001322END(native_load_gs_index)
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001323
H. Peter Anvind7abc0f2012-04-20 12:19:50 -07001324 _ASM_EXTABLE(gs_change,bad_gs)
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001325 .section .fixup,"ax"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 /* running with kernelgs */
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001327bad_gs:
Glauber de Oliveira Costa72fe4852008-01-30 13:32:08 +01001328 SWAPGS /* switch back to user gs */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 xorl %eax,%eax
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001330 movl %eax,%gs
1331 jmp 2b
1332 .previous
Alexander van Heukelum0bd7b792008-11-16 15:29:00 +01001333
Andi Kleen26995002006-08-02 22:37:28 +02001334/* Call softirq on interrupt stack. Interrupts are off. */
Andi Kleened6b6762005-07-28 21:15:49 -07001335ENTRY(call_softirq)
Jan Beulich7effaa82005-09-12 18:49:24 +02001336 CFI_STARTPROC
Jan Beulichdf5d1872010-09-02 14:07:16 +01001337 pushq_cfi %rbp
Andi Kleen26995002006-08-02 22:37:28 +02001338 CFI_REL_OFFSET rbp,0
1339 mov %rsp,%rbp
1340 CFI_DEF_CFA_REGISTER rbp
Brian Gerst56895532009-01-19 00:38:58 +09001341 incl PER_CPU_VAR(irq_count)
Brian Gerst26f80bd2009-01-19 00:38:58 +09001342 cmove PER_CPU_VAR(irq_stack_ptr),%rsp
Andi Kleen26995002006-08-02 22:37:28 +02001343 push %rbp # backlink for old unwinder
Andi Kleened6b6762005-07-28 21:15:49 -07001344 call __do_softirq
Andi Kleen26995002006-08-02 22:37:28 +02001345 leaveq
Jan Beulichdf5d1872010-09-02 14:07:16 +01001346 CFI_RESTORE rbp
Jan Beulich7effaa82005-09-12 18:49:24 +02001347 CFI_DEF_CFA_REGISTER rsp
Andi Kleen26995002006-08-02 22:37:28 +02001348 CFI_ADJUST_CFA_OFFSET -8
Brian Gerst56895532009-01-19 00:38:58 +09001349 decl PER_CPU_VAR(irq_count)
Andi Kleened6b6762005-07-28 21:15:49 -07001350 ret
Jan Beulich7effaa82005-09-12 18:49:24 +02001351 CFI_ENDPROC
Alexander van Heukelum6efdcfa2008-11-23 10:15:32 +01001352END(call_softirq)
Andi Kleen75154f42007-06-23 02:29:25 +02001353
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001354#ifdef CONFIG_XEN
Alexander van Heukelum322648d2008-11-23 10:08:28 +01001355zeroentry xen_hypervisor_callback xen_do_hypervisor_callback
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001356
1357/*
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001358 * A note on the "critical region" in our callback handler.
1359 * We want to avoid stacking callback handlers due to events occurring
1360 * during handling of the last event. To do this, we keep events disabled
1361 * until we've done all processing. HOWEVER, we must enable events before
1362 * popping the stack frame (can't be done atomically) and so it would still
1363 * be possible to get enough handler activations to overflow the stack.
1364 * Although unlikely, bugs of that kind are hard to track down, so we'd
1365 * like to avoid the possibility.
1366 * So, on entry to the handler we detect whether we interrupted an
1367 * existing activation in its critical region -- if so, we pop the current
1368 * activation and restart the handler using the previous one.
1369 */
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001370ENTRY(xen_do_hypervisor_callback) # do_hypervisor_callback(struct *pt_regs)
1371 CFI_STARTPROC
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001372/*
1373 * Since we don't modify %rdi, evtchn_do_upall(struct *pt_regs) will
1374 * see the correct pointer to the pt_regs
1375 */
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001376 movq %rdi, %rsp # we don't return, adjust the stack frame
1377 CFI_ENDPROC
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +01001378 DEFAULT_FRAME
Brian Gerst56895532009-01-19 00:38:58 +0900137911: incl PER_CPU_VAR(irq_count)
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001380 movq %rsp,%rbp
1381 CFI_DEF_CFA_REGISTER rbp
Brian Gerst26f80bd2009-01-19 00:38:58 +09001382 cmovzq PER_CPU_VAR(irq_stack_ptr),%rsp
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001383 pushq %rbp # backlink for old unwinder
1384 call xen_evtchn_do_upcall
1385 popq %rsp
1386 CFI_DEF_CFA_REGISTER rsp
Brian Gerst56895532009-01-19 00:38:58 +09001387 decl PER_CPU_VAR(irq_count)
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001388 jmp error_exit
1389 CFI_ENDPROC
Alexander van Heukelum371c3942011-03-11 21:59:38 +01001390END(xen_do_hypervisor_callback)
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001391
1392/*
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001393 * Hypervisor uses this for application faults while it executes.
1394 * We get here for two reasons:
1395 * 1. Fault while reloading DS, ES, FS or GS
1396 * 2. Fault while executing IRET
1397 * Category 1 we do not need to fix up as Xen has already reloaded all segment
1398 * registers that could be reloaded and zeroed the others.
1399 * Category 2 we fix up by killing the current process. We cannot use the
1400 * normal Linux return path in this case because if we use the IRET hypercall
1401 * to pop the stack frame we end up in an infinite loop of failsafe callbacks.
1402 * We distinguish between categories by comparing each saved segment register
1403 * with its current contents: any discrepancy means we in category 1.
1404 */
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001405ENTRY(xen_failsafe_callback)
Alexander van Heukelumdcd072e2008-11-20 14:40:11 +01001406 INTR_FRAME 1 (6*8)
1407 /*CFI_REL_OFFSET gs,GS*/
1408 /*CFI_REL_OFFSET fs,FS*/
1409 /*CFI_REL_OFFSET es,ES*/
1410 /*CFI_REL_OFFSET ds,DS*/
1411 CFI_REL_OFFSET r11,8
1412 CFI_REL_OFFSET rcx,0
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001413 movw %ds,%cx
1414 cmpw %cx,0x10(%rsp)
1415 CFI_REMEMBER_STATE
1416 jne 1f
1417 movw %es,%cx
1418 cmpw %cx,0x18(%rsp)
1419 jne 1f
1420 movw %fs,%cx
1421 cmpw %cx,0x20(%rsp)
1422 jne 1f
1423 movw %gs,%cx
1424 cmpw %cx,0x28(%rsp)
1425 jne 1f
1426 /* All segments match their saved values => Category 2 (Bad IRET). */
1427 movq (%rsp),%rcx
1428 CFI_RESTORE rcx
1429 movq 8(%rsp),%r11
1430 CFI_RESTORE r11
1431 addq $0x30,%rsp
1432 CFI_ADJUST_CFA_OFFSET -0x30
Ingo Molnar14ae22b2008-11-21 15:20:47 +01001433 pushq_cfi $0 /* RIP */
1434 pushq_cfi %r11
1435 pushq_cfi %rcx
Jeremy Fitzhardinge4a5c3e72008-07-08 15:07:09 -07001436 jmp general_protection
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001437 CFI_RESTORE_STATE
14381: /* Segment mismatch => Category 1 (Bad segment). Retry the IRET. */
1439 movq (%rsp),%rcx
1440 CFI_RESTORE rcx
1441 movq 8(%rsp),%r11
1442 CFI_RESTORE r11
1443 addq $0x30,%rsp
1444 CFI_ADJUST_CFA_OFFSET -0x30
David Vrabela349e23d12012-10-19 17:29:07 +01001445 pushq_cfi $-1 /* orig_ax = -1 => not a system call */
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001446 SAVE_ALL
1447 jmp error_exit
1448 CFI_ENDPROC
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001449END(xen_failsafe_callback)
1450
Sheng Yang38e20b02010-05-14 12:40:51 +01001451apicinterrupt XEN_HVM_EVTCHN_CALLBACK \
1452 xen_hvm_callback_vector xen_evtchn_do_upcall
1453
Jeremy Fitzhardinge3d75e1b2008-07-08 15:06:49 -07001454#endif /* CONFIG_XEN */
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001455
1456/*
1457 * Some functions should be protected against kprobes
1458 */
1459 .pushsection .kprobes.text, "ax"
1460
1461paranoidzeroentry_ist debug do_debug DEBUG_STACK
1462paranoidzeroentry_ist int3 do_int3 DEBUG_STACK
1463paranoiderrorentry stack_segment do_stack_segment
Jeremy Fitzhardinge6cac5a92009-03-29 19:56:29 -07001464#ifdef CONFIG_XEN
1465zeroentry xen_debug do_debug
1466zeroentry xen_int3 do_int3
1467errorentry xen_stack_segment do_stack_segment
1468#endif
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001469errorentry general_protection do_general_protection
1470errorentry page_fault do_page_fault
Gleb Natapov631bc482010-10-14 11:22:52 +02001471#ifdef CONFIG_KVM_GUEST
1472errorentry async_page_fault do_async_page_fault
1473#endif
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001474#ifdef CONFIG_X86_MCE
Andi Kleen5d727922009-04-27 19:25:48 +02001475paranoidzeroentry machine_check *machine_check_vector(%rip)
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001476#endif
1477
1478 /*
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001479 * "Paranoid" exit path from exception stack.
1480 * Paranoid because this is used by NMIs and cannot take
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001481 * any kernel state for granted.
1482 * We don't do kernel preemption checks here, because only
1483 * NMI should be common and it does not enable IRQs and
1484 * cannot get reschedule ticks.
1485 *
1486 * "trace" is 0 for the NMI handler only, because irq-tracing
1487 * is fundamentally NMI-unsafe. (we cannot change the soft and
1488 * hard flags at once, atomically)
1489 */
1490
1491 /* ebx: no swapgs flag */
1492ENTRY(paranoid_exit)
Jan Beulich1f130a72010-09-02 13:54:32 +01001493 DEFAULT_FRAME
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001494 DISABLE_INTERRUPTS(CLBR_NONE)
Steven Rostedt5963e312012-05-30 11:54:53 -04001495 TRACE_IRQS_OFF_DEBUG
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001496 testl %ebx,%ebx /* swapgs needed? */
1497 jnz paranoid_restore
1498 testl $3,CS(%rsp)
1499 jnz paranoid_userspace
1500paranoid_swapgs:
1501 TRACE_IRQS_IRETQ 0
1502 SWAPGS_UNSAFE_STACK
Steven Rostedt0300e7f12009-04-17 08:33:52 -04001503 RESTORE_ALL 8
1504 jmp irq_return
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001505paranoid_restore:
Steven Rostedt5963e312012-05-30 11:54:53 -04001506 TRACE_IRQS_IRETQ_DEBUG 0
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001507 RESTORE_ALL 8
1508 jmp irq_return
1509paranoid_userspace:
1510 GET_THREAD_INFO(%rcx)
1511 movl TI_flags(%rcx),%ebx
1512 andl $_TIF_WORK_MASK,%ebx
1513 jz paranoid_swapgs
1514 movq %rsp,%rdi /* &pt_regs */
1515 call sync_regs
1516 movq %rax,%rsp /* switch stack for scheduling */
1517 testl $_TIF_NEED_RESCHED,%ebx
1518 jnz paranoid_schedule
1519 movl %ebx,%edx /* arg3: thread flags */
1520 TRACE_IRQS_ON
1521 ENABLE_INTERRUPTS(CLBR_NONE)
1522 xorl %esi,%esi /* arg2: oldset */
1523 movq %rsp,%rdi /* arg1: &pt_regs */
1524 call do_notify_resume
1525 DISABLE_INTERRUPTS(CLBR_NONE)
1526 TRACE_IRQS_OFF
1527 jmp paranoid_userspace
1528paranoid_schedule:
1529 TRACE_IRQS_ON
1530 ENABLE_INTERRUPTS(CLBR_ANY)
Frederic Weisbecker04304992012-07-11 20:26:38 +02001531 SCHEDULE_USER
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001532 DISABLE_INTERRUPTS(CLBR_ANY)
1533 TRACE_IRQS_OFF
1534 jmp paranoid_userspace
1535 CFI_ENDPROC
1536END(paranoid_exit)
1537
1538/*
1539 * Exception entry point. This expects an error code/orig_rax on the stack.
1540 * returns in "no swapgs flag" in %ebx.
1541 */
1542ENTRY(error_entry)
1543 XCPT_FRAME
1544 CFI_ADJUST_CFA_OFFSET 15*8
1545 /* oldrax contains error code */
1546 cld
1547 movq_cfi rdi, RDI+8
1548 movq_cfi rsi, RSI+8
1549 movq_cfi rdx, RDX+8
1550 movq_cfi rcx, RCX+8
1551 movq_cfi rax, RAX+8
1552 movq_cfi r8, R8+8
1553 movq_cfi r9, R9+8
1554 movq_cfi r10, R10+8
1555 movq_cfi r11, R11+8
1556 movq_cfi rbx, RBX+8
1557 movq_cfi rbp, RBP+8
1558 movq_cfi r12, R12+8
1559 movq_cfi r13, R13+8
1560 movq_cfi r14, R14+8
1561 movq_cfi r15, R15+8
1562 xorl %ebx,%ebx
1563 testl $3,CS+8(%rsp)
1564 je error_kernelspace
1565error_swapgs:
1566 SWAPGS
1567error_sti:
1568 TRACE_IRQS_OFF
1569 ret
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001570
1571/*
1572 * There are two places in the kernel that can potentially fault with
1573 * usergs. Handle them here. The exception handlers after iret run with
1574 * kernel gs again, so don't set the user space flag. B stepping K8s
1575 * sometimes report an truncated RIP for IRET exceptions returning to
1576 * compat mode. Check for these here too.
1577 */
1578error_kernelspace:
1579 incl %ebx
1580 leaq irq_return(%rip),%rcx
1581 cmpq %rcx,RIP+8(%rsp)
1582 je error_swapgs
Brian Gerstae24ffe2009-10-12 10:18:23 -04001583 movl %ecx,%eax /* zero extend */
1584 cmpq %rax,RIP+8(%rsp)
1585 je bstep_iret
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001586 cmpq $gs_change,RIP+8(%rsp)
Cyrill Gorcunov9f1e87e2008-11-27 21:10:08 +03001587 je error_swapgs
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001588 jmp error_sti
Brian Gerstae24ffe2009-10-12 10:18:23 -04001589
1590bstep_iret:
1591 /* Fix truncated RIP */
1592 movq %rcx,RIP+8(%rsp)
Brian Gerst97829de2009-11-03 14:02:05 -05001593 jmp error_swapgs
Jan Beuliche6b04b62010-09-02 13:52:45 +01001594 CFI_ENDPROC
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001595END(error_entry)
1596
1597
1598/* ebx: no swapgs flag (1: don't need swapgs, 0: need it) */
1599ENTRY(error_exit)
1600 DEFAULT_FRAME
1601 movl %ebx,%eax
1602 RESTORE_REST
1603 DISABLE_INTERRUPTS(CLBR_NONE)
1604 TRACE_IRQS_OFF
1605 GET_THREAD_INFO(%rcx)
1606 testl %eax,%eax
1607 jne retint_kernel
1608 LOCKDEP_SYS_EXIT_IRQ
1609 movl TI_flags(%rcx),%edx
1610 movl $_TIF_WORK_MASK,%edi
1611 andl %edi,%edx
1612 jnz retint_careful
1613 jmp retint_swapgs
1614 CFI_ENDPROC
1615END(error_exit)
1616
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001617/*
1618 * Test if a given stack is an NMI stack or not.
1619 */
1620 .macro test_in_nmi reg stack nmi_ret normal_ret
1621 cmpq %\reg, \stack
1622 ja \normal_ret
1623 subq $EXCEPTION_STKSZ, %\reg
1624 cmpq %\reg, \stack
1625 jb \normal_ret
1626 jmp \nmi_ret
1627 .endm
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001628
1629 /* runs on exception stack */
1630ENTRY(nmi)
1631 INTR_FRAME
1632 PARAVIRT_ADJUST_EXCEPTION_FRAME
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001633 /*
1634 * We allow breakpoints in NMIs. If a breakpoint occurs, then
1635 * the iretq it performs will take us out of NMI context.
1636 * This means that we can have nested NMIs where the next
1637 * NMI is using the top of the stack of the previous NMI. We
1638 * can't let it execute because the nested NMI will corrupt the
1639 * stack of the previous NMI. NMI handlers are not re-entrant
1640 * anyway.
1641 *
1642 * To handle this case we do the following:
1643 * Check the a special location on the stack that contains
1644 * a variable that is set when NMIs are executing.
1645 * The interrupted task's stack is also checked to see if it
1646 * is an NMI stack.
1647 * If the variable is not set and the stack is not the NMI
1648 * stack then:
1649 * o Set the special variable on the stack
1650 * o Copy the interrupt frame into a "saved" location on the stack
1651 * o Copy the interrupt frame into a "copy" location on the stack
1652 * o Continue processing the NMI
1653 * If the variable is set or the previous stack is the NMI stack:
1654 * o Modify the "copy" location to jump to the repeate_nmi
1655 * o return back to the first NMI
1656 *
1657 * Now on exit of the first NMI, we first clear the stack variable
1658 * The NMI stack will tell any nested NMIs at that point that it is
1659 * nested. Then we pop the stack normally with iret, and if there was
1660 * a nested NMI that updated the copy interrupt stack frame, a
1661 * jump will be made to the repeat_nmi code that will handle the second
1662 * NMI.
1663 */
1664
1665 /* Use %rdx as out temp variable throughout */
1666 pushq_cfi %rdx
Jan Beulich62610912012-02-24 14:54:37 +00001667 CFI_REL_OFFSET rdx, 0
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001668
1669 /*
Steven Rostedt45d5a162012-02-19 16:43:37 -05001670 * If %cs was not the kernel segment, then the NMI triggered in user
1671 * space, which means it is definitely not nested.
1672 */
Steven Rostedta38449e2012-02-20 15:29:34 -05001673 cmpl $__KERNEL_CS, 16(%rsp)
Steven Rostedt45d5a162012-02-19 16:43:37 -05001674 jne first_nmi
1675
1676 /*
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001677 * Check the special variable on the stack to see if NMIs are
1678 * executing.
1679 */
Steven Rostedta38449e2012-02-20 15:29:34 -05001680 cmpl $1, -8(%rsp)
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001681 je nested_nmi
1682
1683 /*
1684 * Now test if the previous stack was an NMI stack.
1685 * We need the double check. We check the NMI stack to satisfy the
1686 * race when the first NMI clears the variable before returning.
1687 * We check the variable because the first NMI could be in a
1688 * breakpoint routine using a breakpoint stack.
1689 */
1690 lea 6*8(%rsp), %rdx
1691 test_in_nmi rdx, 4*8(%rsp), nested_nmi, first_nmi
Jan Beulich62610912012-02-24 14:54:37 +00001692 CFI_REMEMBER_STATE
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001693
1694nested_nmi:
1695 /*
1696 * Do nothing if we interrupted the fixup in repeat_nmi.
1697 * It's about to repeat the NMI handler, so we are fine
1698 * with ignoring this one.
1699 */
1700 movq $repeat_nmi, %rdx
1701 cmpq 8(%rsp), %rdx
1702 ja 1f
1703 movq $end_repeat_nmi, %rdx
1704 cmpq 8(%rsp), %rdx
1705 ja nested_nmi_out
1706
17071:
1708 /* Set up the interrupted NMIs stack to jump to repeat_nmi */
Salman Qazi28696f42012-10-01 17:29:25 -07001709 leaq -1*8(%rsp), %rdx
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001710 movq %rdx, %rsp
Salman Qazi28696f42012-10-01 17:29:25 -07001711 CFI_ADJUST_CFA_OFFSET 1*8
1712 leaq -10*8(%rsp), %rdx
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001713 pushq_cfi $__KERNEL_DS
1714 pushq_cfi %rdx
1715 pushfq_cfi
1716 pushq_cfi $__KERNEL_CS
1717 pushq_cfi $repeat_nmi
1718
1719 /* Put stack back */
Salman Qazi28696f42012-10-01 17:29:25 -07001720 addq $(6*8), %rsp
1721 CFI_ADJUST_CFA_OFFSET -6*8
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001722
1723nested_nmi_out:
1724 popq_cfi %rdx
Jan Beulich62610912012-02-24 14:54:37 +00001725 CFI_RESTORE rdx
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001726
1727 /* No need to check faults here */
1728 INTERRUPT_RETURN
1729
Jan Beulich62610912012-02-24 14:54:37 +00001730 CFI_RESTORE_STATE
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001731first_nmi:
1732 /*
1733 * Because nested NMIs will use the pushed location that we
1734 * stored in rdx, we must keep that space available.
1735 * Here's what our stack frame will look like:
1736 * +-------------------------+
1737 * | original SS |
1738 * | original Return RSP |
1739 * | original RFLAGS |
1740 * | original CS |
1741 * | original RIP |
1742 * +-------------------------+
1743 * | temp storage for rdx |
1744 * +-------------------------+
1745 * | NMI executing variable |
1746 * +-------------------------+
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001747 * | copied SS |
1748 * | copied Return RSP |
1749 * | copied RFLAGS |
1750 * | copied CS |
1751 * | copied RIP |
1752 * +-------------------------+
Salman Qazi28696f42012-10-01 17:29:25 -07001753 * | Saved SS |
1754 * | Saved Return RSP |
1755 * | Saved RFLAGS |
1756 * | Saved CS |
1757 * | Saved RIP |
1758 * +-------------------------+
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001759 * | pt_regs |
1760 * +-------------------------+
1761 *
Steven Rostedt79fb4ad2012-02-24 15:55:13 -05001762 * The saved stack frame is used to fix up the copied stack frame
1763 * that a nested NMI may change to make the interrupted NMI iret jump
1764 * to the repeat_nmi. The original stack frame and the temp storage
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001765 * is also used by nested NMIs and can not be trusted on exit.
1766 */
Steven Rostedt79fb4ad2012-02-24 15:55:13 -05001767 /* Do not pop rdx, nested NMIs will corrupt that part of the stack */
Jan Beulich62610912012-02-24 14:54:37 +00001768 movq (%rsp), %rdx
1769 CFI_RESTORE rdx
1770
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001771 /* Set the NMI executing variable on the stack. */
1772 pushq_cfi $1
1773
Salman Qazi28696f42012-10-01 17:29:25 -07001774 /*
1775 * Leave room for the "copied" frame
1776 */
1777 subq $(5*8), %rsp
1778
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001779 /* Copy the stack frame to the Saved frame */
1780 .rept 5
Salman Qazi28696f42012-10-01 17:29:25 -07001781 pushq_cfi 11*8(%rsp)
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001782 .endr
Jan Beulich62610912012-02-24 14:54:37 +00001783 CFI_DEF_CFA_OFFSET SS+8-RIP
1784
Steven Rostedt79fb4ad2012-02-24 15:55:13 -05001785 /* Everything up to here is safe from nested NMIs */
1786
Jan Beulich62610912012-02-24 14:54:37 +00001787 /*
1788 * If there was a nested NMI, the first NMI's iret will return
1789 * here. But NMIs are still enabled and we can take another
1790 * nested NMI. The nested NMI checks the interrupted RIP to see
1791 * if it is between repeat_nmi and end_repeat_nmi, and if so
1792 * it will just return, as we are about to repeat an NMI anyway.
1793 * This makes it safe to copy to the stack frame that a nested
1794 * NMI will update.
1795 */
1796repeat_nmi:
1797 /*
1798 * Update the stack variable to say we are still in NMI (the update
1799 * is benign for the non-repeat case, where 1 was pushed just above
1800 * to this very stack slot).
1801 */
Salman Qazi28696f42012-10-01 17:29:25 -07001802 movq $1, 10*8(%rsp)
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001803
1804 /* Make another copy, this one may be modified by nested NMIs */
Salman Qazi28696f42012-10-01 17:29:25 -07001805 addq $(10*8), %rsp
1806 CFI_ADJUST_CFA_OFFSET -10*8
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001807 .rept 5
Salman Qazi28696f42012-10-01 17:29:25 -07001808 pushq_cfi -6*8(%rsp)
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001809 .endr
Salman Qazi28696f42012-10-01 17:29:25 -07001810 subq $(5*8), %rsp
Jan Beulich62610912012-02-24 14:54:37 +00001811 CFI_DEF_CFA_OFFSET SS+8-RIP
1812end_repeat_nmi:
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001813
1814 /*
1815 * Everything below this point can be preempted by a nested
Steven Rostedt79fb4ad2012-02-24 15:55:13 -05001816 * NMI if the first NMI took an exception and reset our iret stack
1817 * so that we repeat another NMI.
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001818 */
Steven Rostedt1fd466e2011-12-08 12:32:27 -05001819 pushq_cfi $-1 /* ORIG_RAX: no syscall to restart */
Jan Beulichb1cccb12010-09-02 13:55:11 +01001820 subq $ORIG_RAX-R15, %rsp
1821 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
Steven Rostedt1fd466e2011-12-08 12:32:27 -05001822 /*
1823 * Use save_paranoid to handle SWAPGS, but no need to use paranoid_exit
1824 * as we should not be calling schedule in NMI context.
1825 * Even with normal interrupts enabled. An NMI should not be
1826 * setting NEED_RESCHED or anything that normal interrupts and
1827 * exceptions might do.
1828 */
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001829 call save_paranoid
1830 DEFAULT_FRAME 0
Steven Rostedt7fbb98c2012-06-07 10:21:21 -04001831
1832 /*
1833 * Save off the CR2 register. If we take a page fault in the NMI then
1834 * it could corrupt the CR2 value. If the NMI preempts a page fault
1835 * handler before it was able to read the CR2 register, and then the
1836 * NMI itself takes a page fault, the page fault that was preempted
1837 * will read the information from the NMI page fault and not the
1838 * origin fault. Save it off and restore it if it changes.
1839 * Use the r12 callee-saved register.
1840 */
1841 movq %cr2, %r12
1842
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001843 /* paranoidentry do_nmi, 0; without TRACE_IRQS_OFF */
1844 movq %rsp,%rdi
1845 movq $-1,%rsi
1846 call do_nmi
Steven Rostedt7fbb98c2012-06-07 10:21:21 -04001847
1848 /* Did the NMI take a page fault? Restore cr2 if it did */
1849 movq %cr2, %rcx
1850 cmpq %rcx, %r12
1851 je 1f
1852 movq %r12, %cr2
18531:
1854
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001855 testl %ebx,%ebx /* swapgs needed? */
1856 jnz nmi_restore
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001857nmi_swapgs:
1858 SWAPGS_UNSAFE_STACK
1859nmi_restore:
1860 RESTORE_ALL 8
Salman Qazi28696f42012-10-01 17:29:25 -07001861
1862 /* Pop the extra iret frame */
1863 addq $(5*8), %rsp
1864
Steven Rostedt3f3c8b82011-12-08 12:36:23 -05001865 /* Clear the NMI executing stack variable */
Salman Qazi28696f42012-10-01 17:29:25 -07001866 movq $0, 5*8(%rsp)
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001867 jmp irq_return
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001868 CFI_ENDPROC
Alexander van Heukelumddeb8f22008-11-24 13:24:28 +01001869END(nmi)
1870
1871ENTRY(ignore_sysret)
1872 CFI_STARTPROC
1873 mov $-ENOSYS,%eax
1874 sysret
1875 CFI_ENDPROC
1876END(ignore_sysret)
1877
1878/*
1879 * End of kprobes section
1880 */
1881 .popsection