]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - arch/x86/kernel/entry_64.S
x32: Handle process creation
[mirror_ubuntu-zesty-kernel.git] / arch / x86 / kernel / entry_64.S
CommitLineData
1da177e4
LT
1/*
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>
1da177e4
LT
7 */
8
9/*
10 * entry.S contains the system-call and fault low-level handling routines.
11 *
8b4777a4
AL
12 * Some of this is documented in Documentation/x86/entry_64.txt
13 *
1da177e4
LT
14 * NOTE: This code handles signal-recognition, which happens every time
15 * after an interrupt and after each system call.
0bd7b798
AH
16 *
17 * Normal syscalls and interrupts don't save a full stack frame, this is
1da177e4 18 * only done for syscall tracing, signals or fork/exec et.al.
0bd7b798
AH
19 *
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.
0d2eb44f 23 * - partial stack frame: partially saved registers up to R11.
0bd7b798 24 * - full stack frame: Like partial stack frame, but all register saved.
2e91a17b
AK
25 *
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.
1da177e4
LT
40 */
41
1da177e4
LT
42#include <linux/linkage.h>
43#include <asm/segment.h>
1da177e4
LT
44#include <asm/cache.h>
45#include <asm/errno.h>
46#include <asm/dwarf2.h>
47#include <asm/calling.h>
e2d5df93 48#include <asm/asm-offsets.h>
1da177e4
LT
49#include <asm/msr.h>
50#include <asm/unistd.h>
51#include <asm/thread_info.h>
52#include <asm/hw_irq.h>
0341c14d 53#include <asm/page_types.h>
2601e64d 54#include <asm/irqflags.h>
72fe4858 55#include <asm/paravirt.h>
395a59d0 56#include <asm/ftrace.h>
9939ddaf 57#include <asm/percpu.h>
d7e7528b 58#include <linux/err.h>
1da177e4 59
86a1c34a
RM
60/* Avoid __ASSEMBLER__'ifying <linux/audit.h> just for this. */
61#include <linux/elf-em.h>
62#define AUDIT_ARCH_X86_64 (EM_X86_64|__AUDIT_ARCH_64BIT|__AUDIT_ARCH_LE)
63#define __AUDIT_ARCH_64BIT 0x80000000
64#define __AUDIT_ARCH_LE 0x40000000
65
1da177e4 66 .code64
ea714547
JO
67 .section .entry.text, "ax"
68
606576ce 69#ifdef CONFIG_FUNCTION_TRACER
d61f82d0
SR
70#ifdef CONFIG_DYNAMIC_FTRACE
71ENTRY(mcount)
d61f82d0
SR
72 retq
73END(mcount)
74
75ENTRY(ftrace_caller)
60a7ecf4
SR
76 cmpl $0, function_trace_stop
77 jne ftrace_stub
d61f82d0 78
d680fe44 79 MCOUNT_SAVE_FRAME
d61f82d0
SR
80
81 movq 0x38(%rsp), %rdi
82 movq 8(%rbp), %rsi
395a59d0 83 subq $MCOUNT_INSN_SIZE, %rdi
d61f82d0 84
bc8b2b92 85GLOBAL(ftrace_call)
d61f82d0
SR
86 call ftrace_stub
87
d680fe44 88 MCOUNT_RESTORE_FRAME
d61f82d0 89
48d68b20 90#ifdef CONFIG_FUNCTION_GRAPH_TRACER
bc8b2b92 91GLOBAL(ftrace_graph_call)
48d68b20
FW
92 jmp ftrace_stub
93#endif
d61f82d0 94
bc8b2b92 95GLOBAL(ftrace_stub)
d61f82d0
SR
96 retq
97END(ftrace_caller)
98
99#else /* ! CONFIG_DYNAMIC_FTRACE */
16444a8a 100ENTRY(mcount)
60a7ecf4
SR
101 cmpl $0, function_trace_stop
102 jne ftrace_stub
103
16444a8a
ACM
104 cmpq $ftrace_stub, ftrace_trace_function
105 jnz trace
48d68b20
FW
106
107#ifdef CONFIG_FUNCTION_GRAPH_TRACER
108 cmpq $ftrace_stub, ftrace_graph_return
109 jnz ftrace_graph_caller
e49dc19c
SR
110
111 cmpq $ftrace_graph_entry_stub, ftrace_graph_entry
112 jnz ftrace_graph_caller
48d68b20
FW
113#endif
114
bc8b2b92 115GLOBAL(ftrace_stub)
16444a8a
ACM
116 retq
117
118trace:
d680fe44 119 MCOUNT_SAVE_FRAME
16444a8a
ACM
120
121 movq 0x38(%rsp), %rdi
122 movq 8(%rbp), %rsi
395a59d0 123 subq $MCOUNT_INSN_SIZE, %rdi
16444a8a
ACM
124
125 call *ftrace_trace_function
126
d680fe44 127 MCOUNT_RESTORE_FRAME
16444a8a
ACM
128
129 jmp ftrace_stub
130END(mcount)
d61f82d0 131#endif /* CONFIG_DYNAMIC_FTRACE */
606576ce 132#endif /* CONFIG_FUNCTION_TRACER */
16444a8a 133
48d68b20
FW
134#ifdef CONFIG_FUNCTION_GRAPH_TRACER
135ENTRY(ftrace_graph_caller)
136 cmpl $0, function_trace_stop
137 jne ftrace_stub
138
d680fe44 139 MCOUNT_SAVE_FRAME
48d68b20
FW
140
141 leaq 8(%rbp), %rdi
142 movq 0x38(%rsp), %rsi
71e308a2 143 movq (%rbp), %rdx
bb4304c7 144 subq $MCOUNT_INSN_SIZE, %rsi
48d68b20
FW
145
146 call prepare_ftrace_return
147
d680fe44
CG
148 MCOUNT_RESTORE_FRAME
149
48d68b20
FW
150 retq
151END(ftrace_graph_caller)
152
bc8b2b92 153GLOBAL(return_to_handler)
4818d809 154 subq $24, %rsp
48d68b20 155
e71e99c2 156 /* Save the return values */
16444a8a 157 movq %rax, (%rsp)
e71e99c2 158 movq %rdx, 8(%rsp)
71e308a2 159 movq %rbp, %rdi
16444a8a 160
48d68b20 161 call ftrace_return_to_handler
16444a8a 162
194ec341 163 movq %rax, %rdi
e71e99c2 164 movq 8(%rsp), %rdx
16444a8a 165 movq (%rsp), %rax
194ec341
SR
166 addq $24, %rsp
167 jmp *%rdi
48d68b20 168#endif
16444a8a 169
16444a8a 170
dc37db4d 171#ifndef CONFIG_PREEMPT
1da177e4 172#define retint_kernel retint_restore_args
0bd7b798 173#endif
2601e64d 174
72fe4858 175#ifdef CONFIG_PARAVIRT
2be29982 176ENTRY(native_usergs_sysret64)
72fe4858
GOC
177 swapgs
178 sysretq
b3baaa13 179ENDPROC(native_usergs_sysret64)
72fe4858
GOC
180#endif /* CONFIG_PARAVIRT */
181
2601e64d
IM
182
183.macro TRACE_IRQS_IRETQ offset=ARGOFFSET
184#ifdef CONFIG_TRACE_IRQFLAGS
185 bt $9,EFLAGS-\offset(%rsp) /* interrupts off? */
186 jnc 1f
187 TRACE_IRQS_ON
1881:
189#endif
190.endm
191
1da177e4 192/*
0bd7b798
AH
193 * C code is not supposed to know about undefined top of stack. Every time
194 * a C function with an pt_regs argument is called from the SYSCALL based
1da177e4
LT
195 * fast path FIXUP_TOP_OF_STACK is needed.
196 * RESTORE_TOP_OF_STACK syncs the syscall state after any possible ptregs
197 * manipulation.
0bd7b798
AH
198 */
199
200 /* %rsp:at FRAMEEND */
c002a1e6 201 .macro FIXUP_TOP_OF_STACK tmp offset=0
3d1e42a7 202 movq PER_CPU_VAR(old_rsp),\tmp
c002a1e6
AH
203 movq \tmp,RSP+\offset(%rsp)
204 movq $__USER_DS,SS+\offset(%rsp)
205 movq $__USER_CS,CS+\offset(%rsp)
206 movq $-1,RCX+\offset(%rsp)
207 movq R11+\offset(%rsp),\tmp /* get eflags */
208 movq \tmp,EFLAGS+\offset(%rsp)
1da177e4
LT
209 .endm
210
c002a1e6
AH
211 .macro RESTORE_TOP_OF_STACK tmp offset=0
212 movq RSP+\offset(%rsp),\tmp
3d1e42a7 213 movq \tmp,PER_CPU_VAR(old_rsp)
c002a1e6
AH
214 movq EFLAGS+\offset(%rsp),\tmp
215 movq \tmp,R11+\offset(%rsp)
1da177e4
LT
216 .endm
217
218 .macro FAKE_STACK_FRAME child_rip
219 /* push in order ss, rsp, eflags, cs, rip */
3829ee6b 220 xorl %eax, %eax
df5d1874 221 pushq_cfi $__KERNEL_DS /* ss */
7effaa88 222 /*CFI_REL_OFFSET ss,0*/
df5d1874 223 pushq_cfi %rax /* rsp */
7effaa88 224 CFI_REL_OFFSET rsp,0
1cf8343f 225 pushq_cfi $(X86_EFLAGS_IF|X86_EFLAGS_BIT1) /* eflags - interrupts on */
7effaa88 226 /*CFI_REL_OFFSET rflags,0*/
df5d1874 227 pushq_cfi $__KERNEL_CS /* cs */
7effaa88 228 /*CFI_REL_OFFSET cs,0*/
df5d1874 229 pushq_cfi \child_rip /* rip */
7effaa88 230 CFI_REL_OFFSET rip,0
df5d1874 231 pushq_cfi %rax /* orig rax */
1da177e4
LT
232 .endm
233
234 .macro UNFAKE_STACK_FRAME
235 addq $8*6, %rsp
236 CFI_ADJUST_CFA_OFFSET -(6*8)
237 .endm
238
dcd072e2
AH
239/*
240 * initial frame state for interrupts (and exceptions without error code)
241 */
242 .macro EMPTY_FRAME start=1 offset=0
7effaa88 243 .if \start
dcd072e2 244 CFI_STARTPROC simple
adf14236 245 CFI_SIGNAL_FRAME
dcd072e2 246 CFI_DEF_CFA rsp,8+\offset
7effaa88 247 .else
dcd072e2 248 CFI_DEF_CFA_OFFSET 8+\offset
7effaa88 249 .endif
1da177e4 250 .endm
d99015b1
AH
251
252/*
dcd072e2 253 * initial frame state for interrupts (and exceptions without error code)
d99015b1 254 */
dcd072e2 255 .macro INTR_FRAME start=1 offset=0
e8a0e276
IM
256 EMPTY_FRAME \start, SS+8+\offset-RIP
257 /*CFI_REL_OFFSET ss, SS+\offset-RIP*/
258 CFI_REL_OFFSET rsp, RSP+\offset-RIP
259 /*CFI_REL_OFFSET rflags, EFLAGS+\offset-RIP*/
260 /*CFI_REL_OFFSET cs, CS+\offset-RIP*/
261 CFI_REL_OFFSET rip, RIP+\offset-RIP
d99015b1
AH
262 .endm
263
d99015b1
AH
264/*
265 * initial frame state for exceptions with error code (and interrupts
266 * with vector already pushed)
267 */
dcd072e2 268 .macro XCPT_FRAME start=1 offset=0
e8a0e276 269 INTR_FRAME \start, RIP+\offset-ORIG_RAX
dcd072e2
AH
270 /*CFI_REL_OFFSET orig_rax, ORIG_RAX-ORIG_RAX*/
271 .endm
272
273/*
274 * frame that enables calling into C.
275 */
276 .macro PARTIAL_FRAME start=1 offset=0
e8a0e276
IM
277 XCPT_FRAME \start, ORIG_RAX+\offset-ARGOFFSET
278 CFI_REL_OFFSET rdi, RDI+\offset-ARGOFFSET
279 CFI_REL_OFFSET rsi, RSI+\offset-ARGOFFSET
280 CFI_REL_OFFSET rdx, RDX+\offset-ARGOFFSET
281 CFI_REL_OFFSET rcx, RCX+\offset-ARGOFFSET
282 CFI_REL_OFFSET rax, RAX+\offset-ARGOFFSET
283 CFI_REL_OFFSET r8, R8+\offset-ARGOFFSET
284 CFI_REL_OFFSET r9, R9+\offset-ARGOFFSET
285 CFI_REL_OFFSET r10, R10+\offset-ARGOFFSET
286 CFI_REL_OFFSET r11, R11+\offset-ARGOFFSET
dcd072e2
AH
287 .endm
288
289/*
290 * frame that enables passing a complete pt_regs to a C function.
291 */
292 .macro DEFAULT_FRAME start=1 offset=0
e8a0e276 293 PARTIAL_FRAME \start, R11+\offset-R15
dcd072e2
AH
294 CFI_REL_OFFSET rbx, RBX+\offset
295 CFI_REL_OFFSET rbp, RBP+\offset
296 CFI_REL_OFFSET r12, R12+\offset
297 CFI_REL_OFFSET r13, R13+\offset
298 CFI_REL_OFFSET r14, R14+\offset
299 CFI_REL_OFFSET r15, R15+\offset
300 .endm
d99015b1
AH
301
302/* save partial stack frame */
1871853f 303 .macro SAVE_ARGS_IRQ
d99015b1 304 cld
1871853f
FW
305 /* start from rbp in pt_regs and jump over */
306 movq_cfi rdi, RDI-RBP
307 movq_cfi rsi, RSI-RBP
308 movq_cfi rdx, RDX-RBP
309 movq_cfi rcx, RCX-RBP
310 movq_cfi rax, RAX-RBP
311 movq_cfi r8, R8-RBP
312 movq_cfi r9, R9-RBP
313 movq_cfi r10, R10-RBP
314 movq_cfi r11, R11-RBP
315
a2bbe750
FW
316 /* Save rbp so that we can unwind from get_irq_regs() */
317 movq_cfi rbp, 0
318
319 /* Save previous stack value */
320 movq %rsp, %rsi
3b99a3ef
FW
321
322 leaq -RBP(%rsp),%rdi /* arg1 for handler */
d99015b1
AH
323 testl $3, CS(%rdi)
324 je 1f
325 SWAPGS
326 /*
56895530 327 * irq_count is used to check if a CPU is already on an interrupt stack
d99015b1
AH
328 * or not. While this is essentially redundant with preempt_count it is
329 * a little cheaper to use a separate counter in the PDA (short of
330 * moving irq_enter into assembly, which would be too much work)
331 */
56895530 3321: incl PER_CPU_VAR(irq_count)
d99015b1 333 jne 2f
26f80bd6 334 mov PER_CPU_VAR(irq_stack_ptr),%rsp
eab9e613 335 CFI_DEF_CFA_REGISTER rsi
a2bbe750
FW
336
3372: /* Store previous stack value */
338 pushq %rsi
eab9e613
JB
339 CFI_ESCAPE 0x0f /* DW_CFA_def_cfa_expression */, 6, \
340 0x77 /* DW_OP_breg7 */, 0, \
341 0x06 /* DW_OP_deref */, \
342 0x08 /* DW_OP_const1u */, SS+8-RBP, \
343 0x22 /* DW_OP_plus */
a2bbe750
FW
344 /* We entered an interrupt context - irqs are off: */
345 TRACE_IRQS_OFF
1871853f 346 .endm
d99015b1 347
c002a1e6
AH
348ENTRY(save_rest)
349 PARTIAL_FRAME 1 REST_SKIP+8
350 movq 5*8+16(%rsp), %r11 /* save return address */
351 movq_cfi rbx, RBX+16
352 movq_cfi rbp, RBP+16
353 movq_cfi r12, R12+16
354 movq_cfi r13, R13+16
355 movq_cfi r14, R14+16
356 movq_cfi r15, R15+16
357 movq %r11, 8(%rsp) /* return address */
358 FIXUP_TOP_OF_STACK %r11, 16
359 ret
360 CFI_ENDPROC
361END(save_rest)
362
e2f6bc25 363/* save complete stack frame */
c2810188 364 .pushsection .kprobes.text, "ax"
e2f6bc25
AH
365ENTRY(save_paranoid)
366 XCPT_FRAME 1 RDI+8
367 cld
368 movq_cfi rdi, RDI+8
369 movq_cfi rsi, RSI+8
370 movq_cfi rdx, RDX+8
371 movq_cfi rcx, RCX+8
372 movq_cfi rax, RAX+8
373 movq_cfi r8, R8+8
374 movq_cfi r9, R9+8
375 movq_cfi r10, R10+8
376 movq_cfi r11, R11+8
377 movq_cfi rbx, RBX+8
378 movq_cfi rbp, RBP+8
379 movq_cfi r12, R12+8
380 movq_cfi r13, R13+8
381 movq_cfi r14, R14+8
382 movq_cfi r15, R15+8
383 movl $1,%ebx
384 movl $MSR_GS_BASE,%ecx
385 rdmsr
386 testl %edx,%edx
387 js 1f /* negative -> in kernel */
388 SWAPGS
389 xorl %ebx,%ebx
3901: ret
391 CFI_ENDPROC
392END(save_paranoid)
c2810188 393 .popsection
e2f6bc25 394
1da177e4 395/*
5b3eec0c
IM
396 * A newly forked process directly context switches into this address.
397 *
398 * rdi: prev task we switched from
0bd7b798 399 */
1da177e4 400ENTRY(ret_from_fork)
dcd072e2 401 DEFAULT_FRAME
5b3eec0c 402
7106a5ab
BL
403 LOCK ; btr $TIF_FORK,TI_flags(%r8)
404
df5d1874
JB
405 pushq_cfi kernel_eflags(%rip)
406 popfq_cfi # reset kernel eflags
5b3eec0c
IM
407
408 call schedule_tail # rdi: 'prev' task parameter
409
1da177e4 410 GET_THREAD_INFO(%rcx)
5b3eec0c 411
1da177e4 412 RESTORE_REST
5b3eec0c
IM
413
414 testl $3, CS-ARGOFFSET(%rsp) # from kernel_thread?
70ea6855 415 jz retint_restore_args
5b3eec0c
IM
416
417 testl $_TIF_IA32, TI_flags(%rcx) # 32-bit compat task needs IRET
1da177e4 418 jnz int_ret_from_sys_call
5b3eec0c 419
c002a1e6 420 RESTORE_TOP_OF_STACK %rdi, -ARGOFFSET
5b3eec0c
IM
421 jmp ret_from_sys_call # go to the SYSRET fastpath
422
1da177e4 423 CFI_ENDPROC
4b787e0b 424END(ret_from_fork)
1da177e4
LT
425
426/*
0d2eb44f 427 * System call entry. Up to 6 arguments in registers are supported.
1da177e4
LT
428 *
429 * SYSCALL does not save anything on the stack and does not change the
430 * stack pointer.
431 */
0bd7b798 432
1da177e4 433/*
0bd7b798 434 * Register setup:
1da177e4
LT
435 * rax system call number
436 * rdi arg0
0bd7b798 437 * rcx return address for syscall/sysret, C arg3
1da177e4 438 * rsi arg1
0bd7b798 439 * rdx arg2
1da177e4
LT
440 * r10 arg3 (--> moved to rcx for C)
441 * r8 arg4
442 * r9 arg5
443 * r11 eflags for syscall/sysret, temporary for C
0bd7b798
AH
444 * r12-r15,rbp,rbx saved by C code, not touched.
445 *
1da177e4
LT
446 * Interrupts are off on entry.
447 * Only called from user space.
448 *
449 * XXX if we had a free scratch register we could save the RSP into the stack frame
450 * and report it properly in ps. Unfortunately we haven't.
7bf36bbc
AK
451 *
452 * When user can change the frames always force IRET. That is because
453 * it deals with uncanonical addresses better. SYSRET has trouble
454 * with them due to bugs in both AMD and Intel CPUs.
0bd7b798 455 */
1da177e4
LT
456
457ENTRY(system_call)
7effaa88 458 CFI_STARTPROC simple
adf14236 459 CFI_SIGNAL_FRAME
9af45651 460 CFI_DEF_CFA rsp,KERNEL_STACK_OFFSET
7effaa88
JB
461 CFI_REGISTER rip,rcx
462 /*CFI_REGISTER rflags,r11*/
72fe4858
GOC
463 SWAPGS_UNSAFE_STACK
464 /*
465 * A hypervisor implementation might want to use a label
466 * after the swapgs, so that it can do the swapgs
467 * for the guest and jump here on syscall.
468 */
f6b2bc84 469GLOBAL(system_call_after_swapgs)
72fe4858 470
3d1e42a7 471 movq %rsp,PER_CPU_VAR(old_rsp)
9af45651 472 movq PER_CPU_VAR(kernel_stack),%rsp
2601e64d
IM
473 /*
474 * No need to follow this irqs off/on section - it's straight
475 * and short:
476 */
72fe4858 477 ENABLE_INTERRUPTS(CLBR_NONE)
cac0e0a7 478 SAVE_ARGS 8,0
0bd7b798 479 movq %rax,ORIG_RAX-ARGOFFSET(%rsp)
7effaa88
JB
480 movq %rcx,RIP-ARGOFFSET(%rsp)
481 CFI_REL_OFFSET rip,RIP-ARGOFFSET
46db09d3 482 testl $_TIF_WORK_SYSCALL_ENTRY,TI_flags+THREAD_INFO(%rsp,RIP-ARGOFFSET)
1da177e4 483 jnz tracesys
86a1c34a 484system_call_fastpath:
fca460f9 485#if __SYSCALL_MASK == ~0
1da177e4 486 cmpq $__NR_syscall_max,%rax
fca460f9
PA
487#else
488 andl $__SYSCALL_MASK,%eax
489 cmpl $__NR_syscall_max,%eax
490#endif
1da177e4
LT
491 ja badsys
492 movq %r10,%rcx
493 call *sys_call_table(,%rax,8) # XXX: rip relative
494 movq %rax,RAX-ARGOFFSET(%rsp)
495/*
496 * Syscall return path ending with SYSRET (fast path)
0bd7b798
AH
497 * Has incomplete stack frame and undefined top of stack.
498 */
1da177e4 499ret_from_sys_call:
11b854b2 500 movl $_TIF_ALLWORK_MASK,%edi
1da177e4 501 /* edi: flagmask */
0bd7b798 502sysret_check:
10cd706d 503 LOCKDEP_SYS_EXIT
72fe4858 504 DISABLE_INTERRUPTS(CLBR_NONE)
2601e64d 505 TRACE_IRQS_OFF
46db09d3 506 movl TI_flags+THREAD_INFO(%rsp,RIP-ARGOFFSET),%edx
1da177e4 507 andl %edi,%edx
0bd7b798 508 jnz sysret_careful
bcddc015 509 CFI_REMEMBER_STATE
2601e64d
IM
510 /*
511 * sysretq will re-enable interrupts:
512 */
513 TRACE_IRQS_ON
1da177e4 514 movq RIP-ARGOFFSET(%rsp),%rcx
7effaa88 515 CFI_REGISTER rip,rcx
838feb47 516 RESTORE_ARGS 1,-ARG_SKIP,0
7effaa88 517 /*CFI_REGISTER rflags,r11*/
3d1e42a7 518 movq PER_CPU_VAR(old_rsp), %rsp
2be29982 519 USERGS_SYSRET64
1da177e4 520
bcddc015 521 CFI_RESTORE_STATE
1da177e4 522 /* Handle reschedules */
0bd7b798 523 /* edx: work, edi: workmask */
1da177e4
LT
524sysret_careful:
525 bt $TIF_NEED_RESCHED,%edx
526 jnc sysret_signal
2601e64d 527 TRACE_IRQS_ON
72fe4858 528 ENABLE_INTERRUPTS(CLBR_NONE)
df5d1874 529 pushq_cfi %rdi
1da177e4 530 call schedule
df5d1874 531 popq_cfi %rdi
1da177e4
LT
532 jmp sysret_check
533
0bd7b798 534 /* Handle a signal */
1da177e4 535sysret_signal:
2601e64d 536 TRACE_IRQS_ON
72fe4858 537 ENABLE_INTERRUPTS(CLBR_NONE)
86a1c34a
RM
538#ifdef CONFIG_AUDITSYSCALL
539 bt $TIF_SYSCALL_AUDIT,%edx
540 jc sysret_audit
541#endif
b60e714d
RM
542 /*
543 * We have a signal, or exit tracing or single-step.
544 * These all wind up with the iret return path anyway,
545 * so just join that path right now.
546 */
547 FIXUP_TOP_OF_STACK %r11, -ARGOFFSET
548 jmp int_check_syscall_exit_work
0bd7b798 549
7effaa88
JB
550badsys:
551 movq $-ENOSYS,RAX-ARGOFFSET(%rsp)
552 jmp ret_from_sys_call
553
86a1c34a
RM
554#ifdef CONFIG_AUDITSYSCALL
555 /*
556 * Fast path for syscall audit without full syscall trace.
b05d8447 557 * We just call __audit_syscall_entry() directly, and then
86a1c34a
RM
558 * jump back to the normal fast path.
559 */
560auditsys:
561 movq %r10,%r9 /* 6th arg: 4th syscall arg */
562 movq %rdx,%r8 /* 5th arg: 3rd syscall arg */
563 movq %rsi,%rcx /* 4th arg: 2nd syscall arg */
564 movq %rdi,%rdx /* 3rd arg: 1st syscall arg */
565 movq %rax,%rsi /* 2nd arg: syscall number */
566 movl $AUDIT_ARCH_X86_64,%edi /* 1st arg: audit arch */
b05d8447 567 call __audit_syscall_entry
86a1c34a
RM
568 LOAD_ARGS 0 /* reload call-clobbered registers */
569 jmp system_call_fastpath
570
571 /*
d7e7528b 572 * Return fast path for syscall audit. Call __audit_syscall_exit()
86a1c34a
RM
573 * directly and then jump back to the fast path with TIF_SYSCALL_AUDIT
574 * masked off.
575 */
576sysret_audit:
03275591 577 movq RAX-ARGOFFSET(%rsp),%rsi /* second arg, syscall return value */
d7e7528b
EP
578 cmpq $-MAX_ERRNO,%rsi /* is it < -MAX_ERRNO? */
579 setbe %al /* 1 if so, 0 if not */
86a1c34a 580 movzbl %al,%edi /* zero-extend that into %edi */
d7e7528b 581 call __audit_syscall_exit
86a1c34a
RM
582 movl $(_TIF_ALLWORK_MASK & ~_TIF_SYSCALL_AUDIT),%edi
583 jmp sysret_check
584#endif /* CONFIG_AUDITSYSCALL */
585
1da177e4 586 /* Do syscall tracing */
0bd7b798 587tracesys:
86a1c34a 588#ifdef CONFIG_AUDITSYSCALL
46db09d3 589 testl $(_TIF_WORK_SYSCALL_ENTRY & ~_TIF_SYSCALL_AUDIT),TI_flags+THREAD_INFO(%rsp,RIP-ARGOFFSET)
86a1c34a
RM
590 jz auditsys
591#endif
1da177e4 592 SAVE_REST
a31f8dd7 593 movq $-ENOSYS,RAX(%rsp) /* ptrace can change this for a bad syscall */
1da177e4
LT
594 FIXUP_TOP_OF_STACK %rdi
595 movq %rsp,%rdi
596 call syscall_trace_enter
d4d67150
RM
597 /*
598 * Reload arg registers from stack in case ptrace changed them.
599 * We don't reload %rax because syscall_trace_enter() returned
600 * the value it wants us to use in the table lookup.
601 */
602 LOAD_ARGS ARGOFFSET, 1
1da177e4 603 RESTORE_REST
fca460f9 604#if __SYSCALL_MASK == ~0
1da177e4 605 cmpq $__NR_syscall_max,%rax
fca460f9
PA
606#else
607 andl $__SYSCALL_MASK,%eax
608 cmpl $__NR_syscall_max,%eax
609#endif
a31f8dd7 610 ja int_ret_from_sys_call /* RAX(%rsp) set to -ENOSYS above */
1da177e4
LT
611 movq %r10,%rcx /* fixup for C */
612 call *sys_call_table(,%rax,8)
a31f8dd7 613 movq %rax,RAX-ARGOFFSET(%rsp)
7bf36bbc 614 /* Use IRET because user could have changed frame */
0bd7b798
AH
615
616/*
1da177e4
LT
617 * Syscall return path ending with IRET.
618 * Has correct top of stack, but partial stack frame.
bcddc015 619 */
bc8b2b92 620GLOBAL(int_ret_from_sys_call)
72fe4858 621 DISABLE_INTERRUPTS(CLBR_NONE)
2601e64d 622 TRACE_IRQS_OFF
1da177e4
LT
623 movl $_TIF_ALLWORK_MASK,%edi
624 /* edi: mask to check */
bc8b2b92 625GLOBAL(int_with_check)
10cd706d 626 LOCKDEP_SYS_EXIT_IRQ
1da177e4 627 GET_THREAD_INFO(%rcx)
26ccb8a7 628 movl TI_flags(%rcx),%edx
1da177e4
LT
629 andl %edi,%edx
630 jnz int_careful
26ccb8a7 631 andl $~TS_COMPAT,TI_status(%rcx)
1da177e4
LT
632 jmp retint_swapgs
633
634 /* Either reschedule or signal or syscall exit tracking needed. */
635 /* First do a reschedule test. */
636 /* edx: work, edi: workmask */
637int_careful:
638 bt $TIF_NEED_RESCHED,%edx
639 jnc int_very_careful
2601e64d 640 TRACE_IRQS_ON
72fe4858 641 ENABLE_INTERRUPTS(CLBR_NONE)
df5d1874 642 pushq_cfi %rdi
1da177e4 643 call schedule
df5d1874 644 popq_cfi %rdi
72fe4858 645 DISABLE_INTERRUPTS(CLBR_NONE)
2601e64d 646 TRACE_IRQS_OFF
1da177e4
LT
647 jmp int_with_check
648
649 /* handle signals and tracing -- both require a full stack frame */
650int_very_careful:
2601e64d 651 TRACE_IRQS_ON
72fe4858 652 ENABLE_INTERRUPTS(CLBR_NONE)
b60e714d 653int_check_syscall_exit_work:
1da177e4 654 SAVE_REST
0bd7b798 655 /* Check for syscall exit trace */
d4d67150 656 testl $_TIF_WORK_SYSCALL_EXIT,%edx
1da177e4 657 jz int_signal
df5d1874 658 pushq_cfi %rdi
0bd7b798 659 leaq 8(%rsp),%rdi # &ptregs -> arg1
1da177e4 660 call syscall_trace_leave
df5d1874 661 popq_cfi %rdi
d4d67150 662 andl $~(_TIF_WORK_SYSCALL_EXIT|_TIF_SYSCALL_EMU),%edi
1da177e4 663 jmp int_restore_rest
0bd7b798 664
1da177e4 665int_signal:
8f4d37ec 666 testl $_TIF_DO_NOTIFY_MASK,%edx
1da177e4
LT
667 jz 1f
668 movq %rsp,%rdi # &ptregs -> arg1
669 xorl %esi,%esi # oldset -> arg2
670 call do_notify_resume
eca91e78 6711: movl $_TIF_WORK_MASK,%edi
1da177e4
LT
672int_restore_rest:
673 RESTORE_REST
72fe4858 674 DISABLE_INTERRUPTS(CLBR_NONE)
2601e64d 675 TRACE_IRQS_OFF
1da177e4
LT
676 jmp int_with_check
677 CFI_ENDPROC
bcddc015 678END(system_call)
0bd7b798
AH
679
680/*
1da177e4 681 * Certain special system calls that need to save a complete full stack frame.
0bd7b798 682 */
1da177e4 683 .macro PTREGSCALL label,func,arg
c002a1e6
AH
684ENTRY(\label)
685 PARTIAL_FRAME 1 8 /* offset 8: return address */
686 subq $REST_SKIP, %rsp
687 CFI_ADJUST_CFA_OFFSET REST_SKIP
688 call save_rest
689 DEFAULT_FRAME 0 8 /* offset 8: return address */
690 leaq 8(%rsp), \arg /* pt_regs pointer */
691 call \func
692 jmp ptregscall_common
693 CFI_ENDPROC
4b787e0b 694END(\label)
1da177e4
LT
695 .endm
696
697 PTREGSCALL stub_clone, sys_clone, %r8
698 PTREGSCALL stub_fork, sys_fork, %rdi
699 PTREGSCALL stub_vfork, sys_vfork, %rdi
1da177e4
LT
700 PTREGSCALL stub_sigaltstack, sys_sigaltstack, %rdx
701 PTREGSCALL stub_iopl, sys_iopl, %rsi
702
703ENTRY(ptregscall_common)
c002a1e6
AH
704 DEFAULT_FRAME 1 8 /* offset 8: return address */
705 RESTORE_TOP_OF_STACK %r11, 8
706 movq_cfi_restore R15+8, r15
707 movq_cfi_restore R14+8, r14
708 movq_cfi_restore R13+8, r13
709 movq_cfi_restore R12+8, r12
710 movq_cfi_restore RBP+8, rbp
711 movq_cfi_restore RBX+8, rbx
712 ret $REST_SKIP /* pop extended registers */
1da177e4 713 CFI_ENDPROC
4b787e0b 714END(ptregscall_common)
0bd7b798 715
1da177e4
LT
716ENTRY(stub_execve)
717 CFI_STARTPROC
e6b04b6b
JB
718 addq $8, %rsp
719 PARTIAL_FRAME 0
1da177e4 720 SAVE_REST
1da177e4 721 FIXUP_TOP_OF_STACK %r11
5d119b2c 722 movq %rsp, %rcx
1da177e4 723 call sys_execve
1da177e4 724 RESTORE_TOP_OF_STACK %r11
1da177e4
LT
725 movq %rax,RAX(%rsp)
726 RESTORE_REST
727 jmp int_ret_from_sys_call
728 CFI_ENDPROC
4b787e0b 729END(stub_execve)
0bd7b798 730
1da177e4
LT
731/*
732 * sigreturn is special because it needs to restore all registers on return.
733 * This cannot be done with SYSRET, so use the IRET return path instead.
0bd7b798 734 */
1da177e4
LT
735ENTRY(stub_rt_sigreturn)
736 CFI_STARTPROC
7effaa88 737 addq $8, %rsp
e6b04b6b 738 PARTIAL_FRAME 0
1da177e4
LT
739 SAVE_REST
740 movq %rsp,%rdi
741 FIXUP_TOP_OF_STACK %r11
742 call sys_rt_sigreturn
743 movq %rax,RAX(%rsp) # fixme, this could be done at the higher layer
744 RESTORE_REST
745 jmp int_ret_from_sys_call
746 CFI_ENDPROC
4b787e0b 747END(stub_rt_sigreturn)
1da177e4 748
c5a37394
PA
749#ifdef CONFIG_X86_X32_ABI
750 PTREGSCALL stub_x32_sigaltstack, sys32_sigaltstack, %rdx
751
752ENTRY(stub_x32_rt_sigreturn)
753 CFI_STARTPROC
754 addq $8, %rsp
755 PARTIAL_FRAME 0
756 SAVE_REST
757 movq %rsp,%rdi
758 FIXUP_TOP_OF_STACK %r11
759 call sys32_x32_rt_sigreturn
760 movq %rax,RAX(%rsp) # fixme, this could be done at the higher layer
761 RESTORE_REST
762 jmp int_ret_from_sys_call
763 CFI_ENDPROC
764END(stub_x32_rt_sigreturn)
765
d1a797f3
PA
766ENTRY(stub_x32_execve)
767 CFI_STARTPROC
768 addq $8, %rsp
769 PARTIAL_FRAME 0
770 SAVE_REST
771 FIXUP_TOP_OF_STACK %r11
772 movq %rsp, %rcx
773 call sys32_execve
774 RESTORE_TOP_OF_STACK %r11
775 movq %rax,RAX(%rsp)
776 RESTORE_REST
777 jmp int_ret_from_sys_call
778 CFI_ENDPROC
779END(stub_x32_execve)
780
c5a37394
PA
781#endif
782
939b7871
PA
783/*
784 * Build the entry stubs and pointer table with some assembler magic.
785 * We pack 7 stubs into a single 32-byte chunk, which will fit in a
786 * single cache line on all modern x86 implementations.
787 */
788 .section .init.rodata,"a"
789ENTRY(interrupt)
ea714547 790 .section .entry.text
939b7871
PA
791 .p2align 5
792 .p2align CONFIG_X86_L1_CACHE_SHIFT
793ENTRY(irq_entries_start)
794 INTR_FRAME
795vector=FIRST_EXTERNAL_VECTOR
796.rept (NR_VECTORS-FIRST_EXTERNAL_VECTOR+6)/7
797 .balign 32
798 .rept 7
799 .if vector < NR_VECTORS
8665596e 800 .if vector <> FIRST_EXTERNAL_VECTOR
939b7871
PA
801 CFI_ADJUST_CFA_OFFSET -8
802 .endif
df5d1874 8031: pushq_cfi $(~vector+0x80) /* Note: always in signed byte range */
8665596e 804 .if ((vector-FIRST_EXTERNAL_VECTOR)%7) <> 6
939b7871
PA
805 jmp 2f
806 .endif
807 .previous
808 .quad 1b
ea714547 809 .section .entry.text
939b7871
PA
810vector=vector+1
811 .endif
812 .endr
8132: jmp common_interrupt
814.endr
815 CFI_ENDPROC
816END(irq_entries_start)
817
818.previous
819END(interrupt)
820.previous
821
d99015b1 822/*
1da177e4
LT
823 * Interrupt entry/exit.
824 *
825 * Interrupt entry points save only callee clobbered registers in fast path.
d99015b1
AH
826 *
827 * Entry runs with interrupts off.
828 */
1da177e4 829
722024db 830/* 0(%rsp): ~(interrupt number) */
1da177e4 831 .macro interrupt func
625dbc3b
FW
832 /* reserve pt_regs for scratch regs and rbp */
833 subq $ORIG_RAX-RBP, %rsp
834 CFI_ADJUST_CFA_OFFSET ORIG_RAX-RBP
1871853f 835 SAVE_ARGS_IRQ
1da177e4
LT
836 call \func
837 .endm
838
8222d718
MH
839/*
840 * Interrupt entry/exit should be protected against kprobes
841 */
842 .pushsection .kprobes.text, "ax"
722024db
AH
843 /*
844 * The interrupt stubs push (~vector+0x80) onto the stack and
845 * then jump to common_interrupt.
846 */
939b7871
PA
847 .p2align CONFIG_X86_L1_CACHE_SHIFT
848common_interrupt:
7effaa88 849 XCPT_FRAME
722024db 850 addq $-0x80,(%rsp) /* Adjust vector to [-256,-1] range */
1da177e4 851 interrupt do_IRQ
3d1e42a7 852 /* 0(%rsp): old_rsp-ARGOFFSET */
7effaa88 853ret_from_intr:
72fe4858 854 DISABLE_INTERRUPTS(CLBR_NONE)
2601e64d 855 TRACE_IRQS_OFF
56895530 856 decl PER_CPU_VAR(irq_count)
625dbc3b 857
a2bbe750
FW
858 /* Restore saved previous stack */
859 popq %rsi
eab9e613
JB
860 CFI_DEF_CFA_REGISTER rsi
861 leaq ARGOFFSET-RBP(%rsi), %rsp
7effaa88 862 CFI_DEF_CFA_REGISTER rsp
eab9e613 863 CFI_ADJUST_CFA_OFFSET RBP-ARGOFFSET
625dbc3b 864
7effaa88 865exit_intr:
1da177e4
LT
866 GET_THREAD_INFO(%rcx)
867 testl $3,CS-ARGOFFSET(%rsp)
868 je retint_kernel
0bd7b798 869
1da177e4
LT
870 /* Interrupt came from user space */
871 /*
872 * Has a correct top of stack, but a partial stack frame
873 * %rcx: thread info. Interrupts off.
0bd7b798 874 */
1da177e4
LT
875retint_with_reschedule:
876 movl $_TIF_WORK_MASK,%edi
7effaa88 877retint_check:
10cd706d 878 LOCKDEP_SYS_EXIT_IRQ
26ccb8a7 879 movl TI_flags(%rcx),%edx
1da177e4 880 andl %edi,%edx
7effaa88 881 CFI_REMEMBER_STATE
1da177e4 882 jnz retint_careful
10cd706d
PZ
883
884retint_swapgs: /* return to user-space */
2601e64d
IM
885 /*
886 * The iretq could re-enable interrupts:
887 */
72fe4858 888 DISABLE_INTERRUPTS(CLBR_ANY)
2601e64d 889 TRACE_IRQS_IRETQ
72fe4858 890 SWAPGS
2601e64d
IM
891 jmp restore_args
892
10cd706d 893retint_restore_args: /* return to kernel space */
72fe4858 894 DISABLE_INTERRUPTS(CLBR_ANY)
2601e64d
IM
895 /*
896 * The iretq could re-enable interrupts:
897 */
898 TRACE_IRQS_IRETQ
899restore_args:
838feb47 900 RESTORE_ARGS 1,8,1
3701d863 901
f7f3d791 902irq_return:
72fe4858 903 INTERRUPT_RETURN
3701d863
IM
904
905 .section __ex_table, "a"
906 .quad irq_return, bad_iret
907 .previous
908
909#ifdef CONFIG_PARAVIRT
72fe4858 910ENTRY(native_iret)
1da177e4
LT
911 iretq
912
913 .section __ex_table,"a"
72fe4858 914 .quad native_iret, bad_iret
1da177e4 915 .previous
3701d863
IM
916#endif
917
1da177e4 918 .section .fixup,"ax"
1da177e4 919bad_iret:
3aa4b37d
RM
920 /*
921 * The iret traps when the %cs or %ss being restored is bogus.
922 * We've lost the original trap vector and error code.
923 * #GPF is the most likely one to get for an invalid selector.
924 * So pretend we completed the iret and took the #GPF in user mode.
925 *
926 * We are now running with the kernel GS after exception recovery.
927 * But error_entry expects us to have user GS to match the user %cs,
928 * so swap back.
929 */
930 pushq $0
931
932 SWAPGS
933 jmp general_protection
934
72fe4858
GOC
935 .previous
936
7effaa88 937 /* edi: workmask, edx: work */
1da177e4 938retint_careful:
7effaa88 939 CFI_RESTORE_STATE
1da177e4
LT
940 bt $TIF_NEED_RESCHED,%edx
941 jnc retint_signal
2601e64d 942 TRACE_IRQS_ON
72fe4858 943 ENABLE_INTERRUPTS(CLBR_NONE)
df5d1874 944 pushq_cfi %rdi
1da177e4 945 call schedule
df5d1874 946 popq_cfi %rdi
1da177e4 947 GET_THREAD_INFO(%rcx)
72fe4858 948 DISABLE_INTERRUPTS(CLBR_NONE)
2601e64d 949 TRACE_IRQS_OFF
1da177e4 950 jmp retint_check
0bd7b798 951
1da177e4 952retint_signal:
8f4d37ec 953 testl $_TIF_DO_NOTIFY_MASK,%edx
10ffdbb8 954 jz retint_swapgs
2601e64d 955 TRACE_IRQS_ON
72fe4858 956 ENABLE_INTERRUPTS(CLBR_NONE)
1da177e4 957 SAVE_REST
0bd7b798 958 movq $-1,ORIG_RAX(%rsp)
3829ee6b 959 xorl %esi,%esi # oldset
1da177e4
LT
960 movq %rsp,%rdi # &pt_regs
961 call do_notify_resume
962 RESTORE_REST
72fe4858 963 DISABLE_INTERRUPTS(CLBR_NONE)
2601e64d 964 TRACE_IRQS_OFF
be9e6870 965 GET_THREAD_INFO(%rcx)
eca91e78 966 jmp retint_with_reschedule
1da177e4
LT
967
968#ifdef CONFIG_PREEMPT
969 /* Returning to kernel space. Check if we need preemption */
970 /* rcx: threadinfo. interrupts off. */
b06babac 971ENTRY(retint_kernel)
26ccb8a7 972 cmpl $0,TI_preempt_count(%rcx)
1da177e4 973 jnz retint_restore_args
26ccb8a7 974 bt $TIF_NEED_RESCHED,TI_flags(%rcx)
1da177e4
LT
975 jnc retint_restore_args
976 bt $9,EFLAGS-ARGOFFSET(%rsp) /* interrupts off? */
977 jnc retint_restore_args
978 call preempt_schedule_irq
979 jmp exit_intr
0bd7b798 980#endif
4b787e0b 981
1da177e4 982 CFI_ENDPROC
4b787e0b 983END(common_interrupt)
8222d718
MH
984/*
985 * End of kprobes section
986 */
987 .popsection
0bd7b798 988
1da177e4
LT
989/*
990 * APIC interrupts.
0bd7b798 991 */
322648d1
AH
992.macro apicinterrupt num sym do_sym
993ENTRY(\sym)
7effaa88 994 INTR_FRAME
df5d1874 995 pushq_cfi $~(\num)
39e95433 996.Lcommon_\sym:
322648d1 997 interrupt \do_sym
1da177e4
LT
998 jmp ret_from_intr
999 CFI_ENDPROC
322648d1
AH
1000END(\sym)
1001.endm
1da177e4 1002
322648d1
AH
1003#ifdef CONFIG_SMP
1004apicinterrupt IRQ_MOVE_CLEANUP_VECTOR \
1005 irq_move_cleanup_interrupt smp_irq_move_cleanup_interrupt
4ef702c1
AK
1006apicinterrupt REBOOT_VECTOR \
1007 reboot_interrupt smp_reboot_interrupt
322648d1 1008#endif
1da177e4 1009
03b48632 1010#ifdef CONFIG_X86_UV
5ae3a139 1011apicinterrupt UV_BAU_MESSAGE \
322648d1 1012 uv_bau_message_intr1 uv_bau_message_interrupt
03b48632 1013#endif
322648d1
AH
1014apicinterrupt LOCAL_TIMER_VECTOR \
1015 apic_timer_interrupt smp_apic_timer_interrupt
4a4de9c7
DS
1016apicinterrupt X86_PLATFORM_IPI_VECTOR \
1017 x86_platform_ipi smp_x86_platform_ipi
89b831ef 1018
0bd7b798 1019#ifdef CONFIG_SMP
39e95433
JB
1020 ALIGN
1021 INTR_FRAME
1022.irp idx,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15, \
3a09fb45
SL
1023 16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31
1024.if NUM_INVALIDATE_TLB_VECTORS > \idx
39e95433
JB
1025ENTRY(invalidate_interrupt\idx)
1026 pushq_cfi $~(INVALIDATE_TLB_VECTOR_START+\idx)
1027 jmp .Lcommon_invalidate_interrupt0
1028 CFI_ADJUST_CFA_OFFSET -8
1029END(invalidate_interrupt\idx)
3a09fb45 1030.endif
3234282f 1031.endr
39e95433
JB
1032 CFI_ENDPROC
1033apicinterrupt INVALIDATE_TLB_VECTOR_START, \
1034 invalidate_interrupt0, smp_invalidate_interrupt
1da177e4
LT
1035#endif
1036
322648d1 1037apicinterrupt THRESHOLD_APIC_VECTOR \
7856f6cc 1038 threshold_interrupt smp_threshold_interrupt
322648d1
AH
1039apicinterrupt THERMAL_APIC_VECTOR \
1040 thermal_interrupt smp_thermal_interrupt
1812924b 1041
322648d1
AH
1042#ifdef CONFIG_SMP
1043apicinterrupt CALL_FUNCTION_SINGLE_VECTOR \
1044 call_function_single_interrupt smp_call_function_single_interrupt
1045apicinterrupt CALL_FUNCTION_VECTOR \
1046 call_function_interrupt smp_call_function_interrupt
1047apicinterrupt RESCHEDULE_VECTOR \
1048 reschedule_interrupt smp_reschedule_interrupt
1049#endif
1da177e4 1050
322648d1
AH
1051apicinterrupt ERROR_APIC_VECTOR \
1052 error_interrupt smp_error_interrupt
1053apicinterrupt SPURIOUS_APIC_VECTOR \
1054 spurious_interrupt smp_spurious_interrupt
0bd7b798 1055
e360adbe
PZ
1056#ifdef CONFIG_IRQ_WORK
1057apicinterrupt IRQ_WORK_VECTOR \
1058 irq_work_interrupt smp_irq_work_interrupt
241771ef
IM
1059#endif
1060
1da177e4
LT
1061/*
1062 * Exception entry points.
0bd7b798 1063 */
322648d1
AH
1064.macro zeroentry sym do_sym
1065ENTRY(\sym)
7effaa88 1066 INTR_FRAME
fab58420 1067 PARAVIRT_ADJUST_EXCEPTION_FRAME
14ae22ba 1068 pushq_cfi $-1 /* ORIG_RAX: no syscall to restart */
b1cccb1b
JB
1069 subq $ORIG_RAX-R15, %rsp
1070 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
d99015b1 1071 call error_entry
dcd072e2 1072 DEFAULT_FRAME 0
d99015b1
AH
1073 movq %rsp,%rdi /* pt_regs pointer */
1074 xorl %esi,%esi /* no error code */
322648d1 1075 call \do_sym
d99015b1 1076 jmp error_exit /* %ebx: no swapgs flag */
7effaa88 1077 CFI_ENDPROC
322648d1
AH
1078END(\sym)
1079.endm
1da177e4 1080
322648d1 1081.macro paranoidzeroentry sym do_sym
ddeb8f21 1082ENTRY(\sym)
b8b1d08b
AH
1083 INTR_FRAME
1084 PARAVIRT_ADJUST_EXCEPTION_FRAME
b1cccb1b
JB
1085 pushq_cfi $-1 /* ORIG_RAX: no syscall to restart */
1086 subq $ORIG_RAX-R15, %rsp
1087 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
b8b1d08b
AH
1088 call save_paranoid
1089 TRACE_IRQS_OFF
1090 movq %rsp,%rdi /* pt_regs pointer */
1091 xorl %esi,%esi /* no error code */
322648d1 1092 call \do_sym
b8b1d08b
AH
1093 jmp paranoid_exit /* %ebx: no swapgs flag */
1094 CFI_ENDPROC
ddeb8f21 1095END(\sym)
322648d1 1096.endm
b8b1d08b 1097
c15a5958 1098#define INIT_TSS_IST(x) PER_CPU_VAR(init_tss) + (TSS_ist + ((x) - 1) * 8)
322648d1 1099.macro paranoidzeroentry_ist sym do_sym ist
ddeb8f21 1100ENTRY(\sym)
9f1e87ea 1101 INTR_FRAME
b8b1d08b 1102 PARAVIRT_ADJUST_EXCEPTION_FRAME
b1cccb1b
JB
1103 pushq_cfi $-1 /* ORIG_RAX: no syscall to restart */
1104 subq $ORIG_RAX-R15, %rsp
1105 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
b8b1d08b
AH
1106 call save_paranoid
1107 TRACE_IRQS_OFF
1108 movq %rsp,%rdi /* pt_regs pointer */
1109 xorl %esi,%esi /* no error code */
c15a5958 1110 subq $EXCEPTION_STKSZ, INIT_TSS_IST(\ist)
322648d1 1111 call \do_sym
c15a5958 1112 addq $EXCEPTION_STKSZ, INIT_TSS_IST(\ist)
b8b1d08b
AH
1113 jmp paranoid_exit /* %ebx: no swapgs flag */
1114 CFI_ENDPROC
ddeb8f21 1115END(\sym)
322648d1 1116.endm
b8b1d08b 1117
ddeb8f21 1118.macro errorentry sym do_sym
322648d1 1119ENTRY(\sym)
7effaa88 1120 XCPT_FRAME
fab58420 1121 PARAVIRT_ADJUST_EXCEPTION_FRAME
b1cccb1b
JB
1122 subq $ORIG_RAX-R15, %rsp
1123 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
d99015b1 1124 call error_entry
dcd072e2 1125 DEFAULT_FRAME 0
d99015b1
AH
1126 movq %rsp,%rdi /* pt_regs pointer */
1127 movq ORIG_RAX(%rsp),%rsi /* get error code */
1128 movq $-1,ORIG_RAX(%rsp) /* no syscall to restart */
322648d1 1129 call \do_sym
d99015b1 1130 jmp error_exit /* %ebx: no swapgs flag */
7effaa88 1131 CFI_ENDPROC
322648d1 1132END(\sym)
322648d1 1133.endm
1da177e4
LT
1134
1135 /* error code is on the stack already */
ddeb8f21 1136.macro paranoiderrorentry sym do_sym
322648d1 1137ENTRY(\sym)
b8b1d08b
AH
1138 XCPT_FRAME
1139 PARAVIRT_ADJUST_EXCEPTION_FRAME
b1cccb1b
JB
1140 subq $ORIG_RAX-R15, %rsp
1141 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
e2f6bc25
AH
1142 call save_paranoid
1143 DEFAULT_FRAME 0
7e61a793 1144 TRACE_IRQS_OFF
b8b1d08b
AH
1145 movq %rsp,%rdi /* pt_regs pointer */
1146 movq ORIG_RAX(%rsp),%rsi /* get error code */
1147 movq $-1,ORIG_RAX(%rsp) /* no syscall to restart */
322648d1 1148 call \do_sym
b8b1d08b
AH
1149 jmp paranoid_exit /* %ebx: no swapgs flag */
1150 CFI_ENDPROC
322648d1 1151END(\sym)
322648d1
AH
1152.endm
1153
1154zeroentry divide_error do_divide_error
322648d1
AH
1155zeroentry overflow do_overflow
1156zeroentry bounds do_bounds
1157zeroentry invalid_op do_invalid_op
1158zeroentry device_not_available do_device_not_available
ddeb8f21 1159paranoiderrorentry double_fault do_double_fault
322648d1
AH
1160zeroentry coprocessor_segment_overrun do_coprocessor_segment_overrun
1161errorentry invalid_TSS do_invalid_TSS
1162errorentry segment_not_present do_segment_not_present
322648d1
AH
1163zeroentry spurious_interrupt_bug do_spurious_interrupt_bug
1164zeroentry coprocessor_error do_coprocessor_error
1165errorentry alignment_check do_alignment_check
322648d1 1166zeroentry simd_coprocessor_error do_simd_coprocessor_error
5cec93c2 1167
2601e64d 1168
9f1e87ea
CG
1169 /* Reload gs selector with exception handling */
1170 /* edi: new selector */
9f9d489a 1171ENTRY(native_load_gs_index)
7effaa88 1172 CFI_STARTPROC
df5d1874 1173 pushfq_cfi
b8aa287f 1174 DISABLE_INTERRUPTS(CLBR_ANY & ~CLBR_RDI)
9f1e87ea 1175 SWAPGS
0bd7b798 1176gs_change:
9f1e87ea 1177 movl %edi,%gs
1da177e4 11782: mfence /* workaround */
72fe4858 1179 SWAPGS
df5d1874 1180 popfq_cfi
9f1e87ea 1181 ret
7effaa88 1182 CFI_ENDPROC
6efdcfaf 1183END(native_load_gs_index)
0bd7b798 1184
9f1e87ea
CG
1185 .section __ex_table,"a"
1186 .align 8
1187 .quad gs_change,bad_gs
1188 .previous
1189 .section .fixup,"ax"
1da177e4 1190 /* running with kernelgs */
0bd7b798 1191bad_gs:
72fe4858 1192 SWAPGS /* switch back to user gs */
1da177e4 1193 xorl %eax,%eax
9f1e87ea
CG
1194 movl %eax,%gs
1195 jmp 2b
1196 .previous
0bd7b798 1197
3bd95dfb 1198ENTRY(kernel_thread_helper)
c05991ed
AK
1199 pushq $0 # fake return address
1200 CFI_STARTPROC
1da177e4
LT
1201 /*
1202 * Here we are in the child and the registers are set as they were
1203 * at kernel_thread() invocation in the parent.
1204 */
3bd95dfb 1205 call *%rsi
1da177e4 1206 # exit
1c5b5cfd 1207 mov %eax, %edi
1da177e4 1208 call do_exit
5f5db591 1209 ud2 # padding for call trace
c05991ed 1210 CFI_ENDPROC
3bd95dfb 1211END(kernel_thread_helper)
1da177e4
LT
1212
1213/*
1214 * execve(). This function needs to use IRET, not SYSRET, to set up all state properly.
1215 *
1216 * C extern interface:
c7887325 1217 * extern long execve(const char *name, char **argv, char **envp)
1da177e4
LT
1218 *
1219 * asm input arguments:
1220 * rdi: name, rsi: argv, rdx: envp
1221 *
1222 * We want to fallback into:
c7887325 1223 * extern long sys_execve(const char *name, char **argv,char **envp, struct pt_regs *regs)
1da177e4
LT
1224 *
1225 * do_sys_execve asm fallback arguments:
5d119b2c 1226 * rdi: name, rsi: argv, rdx: envp, rcx: fake frame on the stack
1da177e4 1227 */
3db03b4a 1228ENTRY(kernel_execve)
1da177e4
LT
1229 CFI_STARTPROC
1230 FAKE_STACK_FRAME $0
0bd7b798 1231 SAVE_ALL
5d119b2c 1232 movq %rsp,%rcx
1da177e4 1233 call sys_execve
0bd7b798 1234 movq %rax, RAX(%rsp)
1da177e4
LT
1235 RESTORE_REST
1236 testq %rax,%rax
1237 je int_ret_from_sys_call
1238 RESTORE_ARGS
1239 UNFAKE_STACK_FRAME
1240 ret
1241 CFI_ENDPROC
6efdcfaf 1242END(kernel_execve)
1da177e4 1243
2699500b 1244/* Call softirq on interrupt stack. Interrupts are off. */
ed6b676c 1245ENTRY(call_softirq)
7effaa88 1246 CFI_STARTPROC
df5d1874 1247 pushq_cfi %rbp
2699500b
AK
1248 CFI_REL_OFFSET rbp,0
1249 mov %rsp,%rbp
1250 CFI_DEF_CFA_REGISTER rbp
56895530 1251 incl PER_CPU_VAR(irq_count)
26f80bd6 1252 cmove PER_CPU_VAR(irq_stack_ptr),%rsp
2699500b 1253 push %rbp # backlink for old unwinder
ed6b676c 1254 call __do_softirq
2699500b 1255 leaveq
df5d1874 1256 CFI_RESTORE rbp
7effaa88 1257 CFI_DEF_CFA_REGISTER rsp
2699500b 1258 CFI_ADJUST_CFA_OFFSET -8
56895530 1259 decl PER_CPU_VAR(irq_count)
ed6b676c 1260 ret
7effaa88 1261 CFI_ENDPROC
6efdcfaf 1262END(call_softirq)
75154f40 1263
3d75e1b8 1264#ifdef CONFIG_XEN
322648d1 1265zeroentry xen_hypervisor_callback xen_do_hypervisor_callback
3d75e1b8
JF
1266
1267/*
9f1e87ea
CG
1268 * A note on the "critical region" in our callback handler.
1269 * We want to avoid stacking callback handlers due to events occurring
1270 * during handling of the last event. To do this, we keep events disabled
1271 * until we've done all processing. HOWEVER, we must enable events before
1272 * popping the stack frame (can't be done atomically) and so it would still
1273 * be possible to get enough handler activations to overflow the stack.
1274 * Although unlikely, bugs of that kind are hard to track down, so we'd
1275 * like to avoid the possibility.
1276 * So, on entry to the handler we detect whether we interrupted an
1277 * existing activation in its critical region -- if so, we pop the current
1278 * activation and restart the handler using the previous one.
1279 */
3d75e1b8
JF
1280ENTRY(xen_do_hypervisor_callback) # do_hypervisor_callback(struct *pt_regs)
1281 CFI_STARTPROC
9f1e87ea
CG
1282/*
1283 * Since we don't modify %rdi, evtchn_do_upall(struct *pt_regs) will
1284 * see the correct pointer to the pt_regs
1285 */
3d75e1b8
JF
1286 movq %rdi, %rsp # we don't return, adjust the stack frame
1287 CFI_ENDPROC
dcd072e2 1288 DEFAULT_FRAME
56895530 128911: incl PER_CPU_VAR(irq_count)
3d75e1b8
JF
1290 movq %rsp,%rbp
1291 CFI_DEF_CFA_REGISTER rbp
26f80bd6 1292 cmovzq PER_CPU_VAR(irq_stack_ptr),%rsp
3d75e1b8
JF
1293 pushq %rbp # backlink for old unwinder
1294 call xen_evtchn_do_upcall
1295 popq %rsp
1296 CFI_DEF_CFA_REGISTER rsp
56895530 1297 decl PER_CPU_VAR(irq_count)
3d75e1b8
JF
1298 jmp error_exit
1299 CFI_ENDPROC
371c394a 1300END(xen_do_hypervisor_callback)
3d75e1b8
JF
1301
1302/*
9f1e87ea
CG
1303 * Hypervisor uses this for application faults while it executes.
1304 * We get here for two reasons:
1305 * 1. Fault while reloading DS, ES, FS or GS
1306 * 2. Fault while executing IRET
1307 * Category 1 we do not need to fix up as Xen has already reloaded all segment
1308 * registers that could be reloaded and zeroed the others.
1309 * Category 2 we fix up by killing the current process. We cannot use the
1310 * normal Linux return path in this case because if we use the IRET hypercall
1311 * to pop the stack frame we end up in an infinite loop of failsafe callbacks.
1312 * We distinguish between categories by comparing each saved segment register
1313 * with its current contents: any discrepancy means we in category 1.
1314 */
3d75e1b8 1315ENTRY(xen_failsafe_callback)
dcd072e2
AH
1316 INTR_FRAME 1 (6*8)
1317 /*CFI_REL_OFFSET gs,GS*/
1318 /*CFI_REL_OFFSET fs,FS*/
1319 /*CFI_REL_OFFSET es,ES*/
1320 /*CFI_REL_OFFSET ds,DS*/
1321 CFI_REL_OFFSET r11,8
1322 CFI_REL_OFFSET rcx,0
3d75e1b8
JF
1323 movw %ds,%cx
1324 cmpw %cx,0x10(%rsp)
1325 CFI_REMEMBER_STATE
1326 jne 1f
1327 movw %es,%cx
1328 cmpw %cx,0x18(%rsp)
1329 jne 1f
1330 movw %fs,%cx
1331 cmpw %cx,0x20(%rsp)
1332 jne 1f
1333 movw %gs,%cx
1334 cmpw %cx,0x28(%rsp)
1335 jne 1f
1336 /* All segments match their saved values => Category 2 (Bad IRET). */
1337 movq (%rsp),%rcx
1338 CFI_RESTORE rcx
1339 movq 8(%rsp),%r11
1340 CFI_RESTORE r11
1341 addq $0x30,%rsp
1342 CFI_ADJUST_CFA_OFFSET -0x30
14ae22ba
IM
1343 pushq_cfi $0 /* RIP */
1344 pushq_cfi %r11
1345 pushq_cfi %rcx
4a5c3e77 1346 jmp general_protection
3d75e1b8
JF
1347 CFI_RESTORE_STATE
13481: /* Segment mismatch => Category 1 (Bad segment). Retry the IRET. */
1349 movq (%rsp),%rcx
1350 CFI_RESTORE rcx
1351 movq 8(%rsp),%r11
1352 CFI_RESTORE r11
1353 addq $0x30,%rsp
1354 CFI_ADJUST_CFA_OFFSET -0x30
14ae22ba 1355 pushq_cfi $0
3d75e1b8
JF
1356 SAVE_ALL
1357 jmp error_exit
1358 CFI_ENDPROC
3d75e1b8
JF
1359END(xen_failsafe_callback)
1360
38e20b07
SY
1361apicinterrupt XEN_HVM_EVTCHN_CALLBACK \
1362 xen_hvm_callback_vector xen_evtchn_do_upcall
1363
3d75e1b8 1364#endif /* CONFIG_XEN */
ddeb8f21
AH
1365
1366/*
1367 * Some functions should be protected against kprobes
1368 */
1369 .pushsection .kprobes.text, "ax"
1370
1371paranoidzeroentry_ist debug do_debug DEBUG_STACK
1372paranoidzeroentry_ist int3 do_int3 DEBUG_STACK
1373paranoiderrorentry stack_segment do_stack_segment
6cac5a92
JF
1374#ifdef CONFIG_XEN
1375zeroentry xen_debug do_debug
1376zeroentry xen_int3 do_int3
1377errorentry xen_stack_segment do_stack_segment
1378#endif
ddeb8f21
AH
1379errorentry general_protection do_general_protection
1380errorentry page_fault do_page_fault
631bc487
GN
1381#ifdef CONFIG_KVM_GUEST
1382errorentry async_page_fault do_async_page_fault
1383#endif
ddeb8f21 1384#ifdef CONFIG_X86_MCE
5d727926 1385paranoidzeroentry machine_check *machine_check_vector(%rip)
ddeb8f21
AH
1386#endif
1387
1388 /*
9f1e87ea
CG
1389 * "Paranoid" exit path from exception stack.
1390 * Paranoid because this is used by NMIs and cannot take
ddeb8f21
AH
1391 * any kernel state for granted.
1392 * We don't do kernel preemption checks here, because only
1393 * NMI should be common and it does not enable IRQs and
1394 * cannot get reschedule ticks.
1395 *
1396 * "trace" is 0 for the NMI handler only, because irq-tracing
1397 * is fundamentally NMI-unsafe. (we cannot change the soft and
1398 * hard flags at once, atomically)
1399 */
1400
1401 /* ebx: no swapgs flag */
1402ENTRY(paranoid_exit)
1f130a78 1403 DEFAULT_FRAME
ddeb8f21
AH
1404 DISABLE_INTERRUPTS(CLBR_NONE)
1405 TRACE_IRQS_OFF
1406 testl %ebx,%ebx /* swapgs needed? */
1407 jnz paranoid_restore
1408 testl $3,CS(%rsp)
1409 jnz paranoid_userspace
1410paranoid_swapgs:
1411 TRACE_IRQS_IRETQ 0
1412 SWAPGS_UNSAFE_STACK
0300e7f1
SR
1413 RESTORE_ALL 8
1414 jmp irq_return
ddeb8f21 1415paranoid_restore:
0300e7f1 1416 TRACE_IRQS_IRETQ 0
ddeb8f21
AH
1417 RESTORE_ALL 8
1418 jmp irq_return
1419paranoid_userspace:
1420 GET_THREAD_INFO(%rcx)
1421 movl TI_flags(%rcx),%ebx
1422 andl $_TIF_WORK_MASK,%ebx
1423 jz paranoid_swapgs
1424 movq %rsp,%rdi /* &pt_regs */
1425 call sync_regs
1426 movq %rax,%rsp /* switch stack for scheduling */
1427 testl $_TIF_NEED_RESCHED,%ebx
1428 jnz paranoid_schedule
1429 movl %ebx,%edx /* arg3: thread flags */
1430 TRACE_IRQS_ON
1431 ENABLE_INTERRUPTS(CLBR_NONE)
1432 xorl %esi,%esi /* arg2: oldset */
1433 movq %rsp,%rdi /* arg1: &pt_regs */
1434 call do_notify_resume
1435 DISABLE_INTERRUPTS(CLBR_NONE)
1436 TRACE_IRQS_OFF
1437 jmp paranoid_userspace
1438paranoid_schedule:
1439 TRACE_IRQS_ON
1440 ENABLE_INTERRUPTS(CLBR_ANY)
1441 call schedule
1442 DISABLE_INTERRUPTS(CLBR_ANY)
1443 TRACE_IRQS_OFF
1444 jmp paranoid_userspace
1445 CFI_ENDPROC
1446END(paranoid_exit)
1447
1448/*
1449 * Exception entry point. This expects an error code/orig_rax on the stack.
1450 * returns in "no swapgs flag" in %ebx.
1451 */
1452ENTRY(error_entry)
1453 XCPT_FRAME
1454 CFI_ADJUST_CFA_OFFSET 15*8
1455 /* oldrax contains error code */
1456 cld
1457 movq_cfi rdi, RDI+8
1458 movq_cfi rsi, RSI+8
1459 movq_cfi rdx, RDX+8
1460 movq_cfi rcx, RCX+8
1461 movq_cfi rax, RAX+8
1462 movq_cfi r8, R8+8
1463 movq_cfi r9, R9+8
1464 movq_cfi r10, R10+8
1465 movq_cfi r11, R11+8
1466 movq_cfi rbx, RBX+8
1467 movq_cfi rbp, RBP+8
1468 movq_cfi r12, R12+8
1469 movq_cfi r13, R13+8
1470 movq_cfi r14, R14+8
1471 movq_cfi r15, R15+8
1472 xorl %ebx,%ebx
1473 testl $3,CS+8(%rsp)
1474 je error_kernelspace
1475error_swapgs:
1476 SWAPGS
1477error_sti:
1478 TRACE_IRQS_OFF
1479 ret
ddeb8f21
AH
1480
1481/*
1482 * There are two places in the kernel that can potentially fault with
1483 * usergs. Handle them here. The exception handlers after iret run with
1484 * kernel gs again, so don't set the user space flag. B stepping K8s
1485 * sometimes report an truncated RIP for IRET exceptions returning to
1486 * compat mode. Check for these here too.
1487 */
1488error_kernelspace:
1489 incl %ebx
1490 leaq irq_return(%rip),%rcx
1491 cmpq %rcx,RIP+8(%rsp)
1492 je error_swapgs
ae24ffe5
BG
1493 movl %ecx,%eax /* zero extend */
1494 cmpq %rax,RIP+8(%rsp)
1495 je bstep_iret
ddeb8f21 1496 cmpq $gs_change,RIP+8(%rsp)
9f1e87ea 1497 je error_swapgs
ddeb8f21 1498 jmp error_sti
ae24ffe5
BG
1499
1500bstep_iret:
1501 /* Fix truncated RIP */
1502 movq %rcx,RIP+8(%rsp)
97829de5 1503 jmp error_swapgs
e6b04b6b 1504 CFI_ENDPROC
ddeb8f21
AH
1505END(error_entry)
1506
1507
1508/* ebx: no swapgs flag (1: don't need swapgs, 0: need it) */
1509ENTRY(error_exit)
1510 DEFAULT_FRAME
1511 movl %ebx,%eax
1512 RESTORE_REST
1513 DISABLE_INTERRUPTS(CLBR_NONE)
1514 TRACE_IRQS_OFF
1515 GET_THREAD_INFO(%rcx)
1516 testl %eax,%eax
1517 jne retint_kernel
1518 LOCKDEP_SYS_EXIT_IRQ
1519 movl TI_flags(%rcx),%edx
1520 movl $_TIF_WORK_MASK,%edi
1521 andl %edi,%edx
1522 jnz retint_careful
1523 jmp retint_swapgs
1524 CFI_ENDPROC
1525END(error_exit)
1526
3f3c8b8c
SR
1527/*
1528 * Test if a given stack is an NMI stack or not.
1529 */
1530 .macro test_in_nmi reg stack nmi_ret normal_ret
1531 cmpq %\reg, \stack
1532 ja \normal_ret
1533 subq $EXCEPTION_STKSZ, %\reg
1534 cmpq %\reg, \stack
1535 jb \normal_ret
1536 jmp \nmi_ret
1537 .endm
ddeb8f21
AH
1538
1539 /* runs on exception stack */
1540ENTRY(nmi)
1541 INTR_FRAME
1542 PARAVIRT_ADJUST_EXCEPTION_FRAME
3f3c8b8c
SR
1543 /*
1544 * We allow breakpoints in NMIs. If a breakpoint occurs, then
1545 * the iretq it performs will take us out of NMI context.
1546 * This means that we can have nested NMIs where the next
1547 * NMI is using the top of the stack of the previous NMI. We
1548 * can't let it execute because the nested NMI will corrupt the
1549 * stack of the previous NMI. NMI handlers are not re-entrant
1550 * anyway.
1551 *
1552 * To handle this case we do the following:
1553 * Check the a special location on the stack that contains
1554 * a variable that is set when NMIs are executing.
1555 * The interrupted task's stack is also checked to see if it
1556 * is an NMI stack.
1557 * If the variable is not set and the stack is not the NMI
1558 * stack then:
1559 * o Set the special variable on the stack
1560 * o Copy the interrupt frame into a "saved" location on the stack
1561 * o Copy the interrupt frame into a "copy" location on the stack
1562 * o Continue processing the NMI
1563 * If the variable is set or the previous stack is the NMI stack:
1564 * o Modify the "copy" location to jump to the repeate_nmi
1565 * o return back to the first NMI
1566 *
1567 * Now on exit of the first NMI, we first clear the stack variable
1568 * The NMI stack will tell any nested NMIs at that point that it is
1569 * nested. Then we pop the stack normally with iret, and if there was
1570 * a nested NMI that updated the copy interrupt stack frame, a
1571 * jump will be made to the repeat_nmi code that will handle the second
1572 * NMI.
1573 */
1574
1575 /* Use %rdx as out temp variable throughout */
1576 pushq_cfi %rdx
1577
1578 /*
1579 * Check the special variable on the stack to see if NMIs are
1580 * executing.
1581 */
1582 cmp $1, -8(%rsp)
1583 je nested_nmi
1584
1585 /*
1586 * Now test if the previous stack was an NMI stack.
1587 * We need the double check. We check the NMI stack to satisfy the
1588 * race when the first NMI clears the variable before returning.
1589 * We check the variable because the first NMI could be in a
1590 * breakpoint routine using a breakpoint stack.
1591 */
1592 lea 6*8(%rsp), %rdx
1593 test_in_nmi rdx, 4*8(%rsp), nested_nmi, first_nmi
1594
1595nested_nmi:
1596 /*
1597 * Do nothing if we interrupted the fixup in repeat_nmi.
1598 * It's about to repeat the NMI handler, so we are fine
1599 * with ignoring this one.
1600 */
1601 movq $repeat_nmi, %rdx
1602 cmpq 8(%rsp), %rdx
1603 ja 1f
1604 movq $end_repeat_nmi, %rdx
1605 cmpq 8(%rsp), %rdx
1606 ja nested_nmi_out
1607
16081:
1609 /* Set up the interrupted NMIs stack to jump to repeat_nmi */
1610 leaq -6*8(%rsp), %rdx
1611 movq %rdx, %rsp
1612 CFI_ADJUST_CFA_OFFSET 6*8
1613 pushq_cfi $__KERNEL_DS
1614 pushq_cfi %rdx
1615 pushfq_cfi
1616 pushq_cfi $__KERNEL_CS
1617 pushq_cfi $repeat_nmi
1618
1619 /* Put stack back */
1620 addq $(11*8), %rsp
1621 CFI_ADJUST_CFA_OFFSET -11*8
1622
1623nested_nmi_out:
1624 popq_cfi %rdx
1625
1626 /* No need to check faults here */
1627 INTERRUPT_RETURN
1628
1629first_nmi:
1630 /*
1631 * Because nested NMIs will use the pushed location that we
1632 * stored in rdx, we must keep that space available.
1633 * Here's what our stack frame will look like:
1634 * +-------------------------+
1635 * | original SS |
1636 * | original Return RSP |
1637 * | original RFLAGS |
1638 * | original CS |
1639 * | original RIP |
1640 * +-------------------------+
1641 * | temp storage for rdx |
1642 * +-------------------------+
1643 * | NMI executing variable |
1644 * +-------------------------+
1645 * | Saved SS |
1646 * | Saved Return RSP |
1647 * | Saved RFLAGS |
1648 * | Saved CS |
1649 * | Saved RIP |
1650 * +-------------------------+
1651 * | copied SS |
1652 * | copied Return RSP |
1653 * | copied RFLAGS |
1654 * | copied CS |
1655 * | copied RIP |
1656 * +-------------------------+
1657 * | pt_regs |
1658 * +-------------------------+
1659 *
1660 * The saved RIP is used to fix up the copied RIP that a nested
1661 * NMI may zero out. The original stack frame and the temp storage
1662 * is also used by nested NMIs and can not be trusted on exit.
1663 */
1664 /* Set the NMI executing variable on the stack. */
1665 pushq_cfi $1
1666
1667 /* Copy the stack frame to the Saved frame */
1668 .rept 5
1669 pushq_cfi 6*8(%rsp)
1670 .endr
1671
1672 /* Make another copy, this one may be modified by nested NMIs */
1673 .rept 5
1674 pushq_cfi 4*8(%rsp)
1675 .endr
1676
1677 /* Do not pop rdx, nested NMIs will corrupt it */
1678 movq 11*8(%rsp), %rdx
1679
1680 /*
1681 * Everything below this point can be preempted by a nested
1682 * NMI if the first NMI took an exception. Repeated NMIs
1683 * caused by an exception and nested NMI will start here, and
1684 * can still be preempted by another NMI.
1685 */
1686restart_nmi:
1fd466ef 1687 pushq_cfi $-1 /* ORIG_RAX: no syscall to restart */
b1cccb1b
JB
1688 subq $ORIG_RAX-R15, %rsp
1689 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
1fd466ef
SR
1690 /*
1691 * Use save_paranoid to handle SWAPGS, but no need to use paranoid_exit
1692 * as we should not be calling schedule in NMI context.
1693 * Even with normal interrupts enabled. An NMI should not be
1694 * setting NEED_RESCHED or anything that normal interrupts and
1695 * exceptions might do.
1696 */
ddeb8f21
AH
1697 call save_paranoid
1698 DEFAULT_FRAME 0
1699 /* paranoidentry do_nmi, 0; without TRACE_IRQS_OFF */
1700 movq %rsp,%rdi
1701 movq $-1,%rsi
1702 call do_nmi
ddeb8f21
AH
1703 testl %ebx,%ebx /* swapgs needed? */
1704 jnz nmi_restore
ddeb8f21
AH
1705nmi_swapgs:
1706 SWAPGS_UNSAFE_STACK
1707nmi_restore:
1708 RESTORE_ALL 8
3f3c8b8c
SR
1709 /* Clear the NMI executing stack variable */
1710 movq $0, 10*8(%rsp)
ddeb8f21 1711 jmp irq_return
9f1e87ea 1712 CFI_ENDPROC
ddeb8f21
AH
1713END(nmi)
1714
3f3c8b8c
SR
1715 /*
1716 * If an NMI hit an iret because of an exception or breakpoint,
1717 * it can lose its NMI context, and a nested NMI may come in.
1718 * In that case, the nested NMI will change the preempted NMI's
1719 * stack to jump to here when it does the final iret.
1720 */
1721repeat_nmi:
1722 INTR_FRAME
1723 /* Update the stack variable to say we are still in NMI */
1724 movq $1, 5*8(%rsp)
1725
1726 /* copy the saved stack back to copy stack */
1727 .rept 5
1728 pushq_cfi 4*8(%rsp)
1729 .endr
1730
1731 jmp restart_nmi
1732 CFI_ENDPROC
1733end_repeat_nmi:
1734
ddeb8f21
AH
1735ENTRY(ignore_sysret)
1736 CFI_STARTPROC
1737 mov $-ENOSYS,%eax
1738 sysret
1739 CFI_ENDPROC
1740END(ignore_sysret)
1741
1742/*
1743 * End of kprobes section
1744 */
1745 .popsection