KVM: VMX: Enable acknowledge interupt on vmexit
[deliverable/linux.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>
d7abc0fa 58#include <asm/asm.h>
91d1aa43 59#include <asm/context_tracking.h>
63bcff2a 60#include <asm/smap.h>
d7e7528b 61#include <linux/err.h>
1da177e4 62
86a1c34a
RM
63/* 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
1da177e4 69 .code64
ea714547
JO
70 .section .entry.text, "ax"
71
606576ce 72#ifdef CONFIG_FUNCTION_TRACER
d57c5d51
SR
73
74#ifdef CC_USING_FENTRY
75# define function_hook __fentry__
76#else
77# define function_hook mcount
78#endif
79
d61f82d0 80#ifdef CONFIG_DYNAMIC_FTRACE
d57c5d51
SR
81
82ENTRY(function_hook)
d61f82d0 83 retq
d57c5d51 84END(function_hook)
d61f82d0 85
08f6fba5
SR
86/* 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 */
d57c5d51
SR
97#ifdef CC_USING_FENTRY
98 movq SS+16(%rsp), %rsi
99#else
08f6fba5 100 movq 8(%rbp), %rsi
d57c5d51 101#endif
08f6fba5 102.endm
d61f82d0
SR
103
104ENTRY(ftrace_caller)
08f6fba5 105 /* Check if tracing was disabled (quick check) */
60a7ecf4
SR
106 cmpl $0, function_trace_stop
107 jne ftrace_stub
d61f82d0 108
08f6fba5
SR
109 ftrace_caller_setup
110 /* regs go into 4th parameter (but make it NULL) */
111 movq $0, %rcx
d61f82d0 112
bc8b2b92 113GLOBAL(ftrace_call)
d61f82d0
SR
114 call ftrace_stub
115
d680fe44 116 MCOUNT_RESTORE_FRAME
08f6fba5 117ftrace_return:
d61f82d0 118
48d68b20 119#ifdef CONFIG_FUNCTION_GRAPH_TRACER
bc8b2b92 120GLOBAL(ftrace_graph_call)
48d68b20
FW
121 jmp ftrace_stub
122#endif
d61f82d0 123
bc8b2b92 124GLOBAL(ftrace_stub)
d61f82d0
SR
125 retq
126END(ftrace_caller)
127
08f6fba5
SR
128ENTRY(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
47d5a5f8
SR
170 /* Handlers can change the RIP */
171 movq RIP(%rsp), %rax
172 movq %rax, SS+8(%rsp)
173
08f6fba5
SR
174 /* 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
d61f82d0 197#else /* ! CONFIG_DYNAMIC_FTRACE */
d57c5d51
SR
198
199ENTRY(function_hook)
60a7ecf4
SR
200 cmpl $0, function_trace_stop
201 jne ftrace_stub
202
16444a8a
ACM
203 cmpq $ftrace_stub, ftrace_trace_function
204 jnz trace
48d68b20
FW
205
206#ifdef CONFIG_FUNCTION_GRAPH_TRACER
207 cmpq $ftrace_stub, ftrace_graph_return
208 jnz ftrace_graph_caller
e49dc19c
SR
209
210 cmpq $ftrace_graph_entry_stub, ftrace_graph_entry
211 jnz ftrace_graph_caller
48d68b20
FW
212#endif
213
bc8b2b92 214GLOBAL(ftrace_stub)
16444a8a
ACM
215 retq
216
217trace:
d680fe44 218 MCOUNT_SAVE_FRAME
16444a8a 219
08f6fba5 220 movq RIP(%rsp), %rdi
d57c5d51
SR
221#ifdef CC_USING_FENTRY
222 movq SS+16(%rsp), %rsi
223#else
16444a8a 224 movq 8(%rbp), %rsi
d57c5d51 225#endif
395a59d0 226 subq $MCOUNT_INSN_SIZE, %rdi
16444a8a
ACM
227
228 call *ftrace_trace_function
229
d680fe44 230 MCOUNT_RESTORE_FRAME
16444a8a
ACM
231
232 jmp ftrace_stub
d57c5d51 233END(function_hook)
d61f82d0 234#endif /* CONFIG_DYNAMIC_FTRACE */
606576ce 235#endif /* CONFIG_FUNCTION_TRACER */
16444a8a 236
48d68b20
FW
237#ifdef CONFIG_FUNCTION_GRAPH_TRACER
238ENTRY(ftrace_graph_caller)
d680fe44 239 MCOUNT_SAVE_FRAME
48d68b20 240
d57c5d51
SR
241#ifdef CC_USING_FENTRY
242 leaq SS+16(%rsp), %rdi
243 movq $0, %rdx /* No framepointers needed */
244#else
48d68b20 245 leaq 8(%rbp), %rdi
71e308a2 246 movq (%rbp), %rdx
d57c5d51
SR
247#endif
248 movq RIP(%rsp), %rsi
bb4304c7 249 subq $MCOUNT_INSN_SIZE, %rsi
48d68b20
FW
250
251 call prepare_ftrace_return
252
d680fe44
CG
253 MCOUNT_RESTORE_FRAME
254
48d68b20
FW
255 retq
256END(ftrace_graph_caller)
257
bc8b2b92 258GLOBAL(return_to_handler)
4818d809 259 subq $24, %rsp
48d68b20 260
e71e99c2 261 /* Save the return values */
16444a8a 262 movq %rax, (%rsp)
e71e99c2 263 movq %rdx, 8(%rsp)
71e308a2 264 movq %rbp, %rdi
16444a8a 265
48d68b20 266 call ftrace_return_to_handler
16444a8a 267
194ec341 268 movq %rax, %rdi
e71e99c2 269 movq 8(%rsp), %rdx
16444a8a 270 movq (%rsp), %rax
194ec341
SR
271 addq $24, %rsp
272 jmp *%rdi
48d68b20 273#endif
16444a8a 274
16444a8a 275
dc37db4d 276#ifndef CONFIG_PREEMPT
1da177e4 277#define retint_kernel retint_restore_args
0bd7b798 278#endif
2601e64d 279
72fe4858 280#ifdef CONFIG_PARAVIRT
2be29982 281ENTRY(native_usergs_sysret64)
72fe4858
GOC
282 swapgs
283 sysretq
b3baaa13 284ENDPROC(native_usergs_sysret64)
72fe4858
GOC
285#endif /* CONFIG_PARAVIRT */
286
2601e64d
IM
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
5963e317
SR
297/*
298 * 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
1da177e4 335/*
0bd7b798
AH
336 * 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
1da177e4
LT
338 * fast path FIXUP_TOP_OF_STACK is needed.
339 * RESTORE_TOP_OF_STACK syncs the syscall state after any possible ptregs
340 * manipulation.
0bd7b798
AH
341 */
342
343 /* %rsp:at FRAMEEND */
c002a1e6 344 .macro FIXUP_TOP_OF_STACK tmp offset=0
3d1e42a7 345 movq PER_CPU_VAR(old_rsp),\tmp
c002a1e6
AH
346 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)
1da177e4
LT
352 .endm
353
c002a1e6
AH
354 .macro RESTORE_TOP_OF_STACK tmp offset=0
355 movq RSP+\offset(%rsp),\tmp
3d1e42a7 356 movq \tmp,PER_CPU_VAR(old_rsp)
c002a1e6
AH
357 movq EFLAGS+\offset(%rsp),\tmp
358 movq \tmp,R11+\offset(%rsp)
1da177e4
LT
359 .endm
360
361 .macro FAKE_STACK_FRAME child_rip
362 /* push in order ss, rsp, eflags, cs, rip */
3829ee6b 363 xorl %eax, %eax
df5d1874 364 pushq_cfi $__KERNEL_DS /* ss */
7effaa88 365 /*CFI_REL_OFFSET ss,0*/
df5d1874 366 pushq_cfi %rax /* rsp */
7effaa88 367 CFI_REL_OFFSET rsp,0
1cf8343f 368 pushq_cfi $(X86_EFLAGS_IF|X86_EFLAGS_BIT1) /* eflags - interrupts on */
7effaa88 369 /*CFI_REL_OFFSET rflags,0*/
df5d1874 370 pushq_cfi $__KERNEL_CS /* cs */
7effaa88 371 /*CFI_REL_OFFSET cs,0*/
df5d1874 372 pushq_cfi \child_rip /* rip */
7effaa88 373 CFI_REL_OFFSET rip,0
df5d1874 374 pushq_cfi %rax /* orig rax */
1da177e4
LT
375 .endm
376
377 .macro UNFAKE_STACK_FRAME
378 addq $8*6, %rsp
379 CFI_ADJUST_CFA_OFFSET -(6*8)
380 .endm
381
dcd072e2
AH
382/*
383 * initial frame state for interrupts (and exceptions without error code)
384 */
385 .macro EMPTY_FRAME start=1 offset=0
7effaa88 386 .if \start
dcd072e2 387 CFI_STARTPROC simple
adf14236 388 CFI_SIGNAL_FRAME
dcd072e2 389 CFI_DEF_CFA rsp,8+\offset
7effaa88 390 .else
dcd072e2 391 CFI_DEF_CFA_OFFSET 8+\offset
7effaa88 392 .endif
1da177e4 393 .endm
d99015b1
AH
394
395/*
dcd072e2 396 * initial frame state for interrupts (and exceptions without error code)
d99015b1 397 */
dcd072e2 398 .macro INTR_FRAME start=1 offset=0
e8a0e276
IM
399 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
d99015b1
AH
405 .endm
406
d99015b1
AH
407/*
408 * initial frame state for exceptions with error code (and interrupts
409 * with vector already pushed)
410 */
dcd072e2 411 .macro XCPT_FRAME start=1 offset=0
e8a0e276 412 INTR_FRAME \start, RIP+\offset-ORIG_RAX
dcd072e2
AH
413 /*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
e8a0e276
IM
420 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
dcd072e2
AH
430 .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
e8a0e276 436 PARTIAL_FRAME \start, R11+\offset-R15
dcd072e2
AH
437 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
d99015b1
AH
444
445/* save partial stack frame */
1871853f 446 .macro SAVE_ARGS_IRQ
d99015b1 447 cld
1871853f 448 /* start from rbp in pt_regs and jump over */
1b2b23d8
TG
449 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)
1871853f 458
a2bbe750
FW
459 /* 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
3b99a3ef
FW
464
465 leaq -RBP(%rsp),%rdi /* arg1 for handler */
69466466 466 testl $3, CS-RBP(%rsi)
d99015b1
AH
467 je 1f
468 SWAPGS
469 /*
56895530 470 * irq_count is used to check if a CPU is already on an interrupt stack
d99015b1
AH
471 * 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 */
56895530 4751: incl PER_CPU_VAR(irq_count)
69466466 476 cmovzq PER_CPU_VAR(irq_stack_ptr),%rsp
eab9e613 477 CFI_DEF_CFA_REGISTER rsi
a2bbe750 478
69466466 479 /* Store previous stack value */
a2bbe750 480 pushq %rsi
eab9e613
JB
481 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 */
a2bbe750
FW
486 /* We entered an interrupt context - irqs are off: */
487 TRACE_IRQS_OFF
1871853f 488 .endm
d99015b1 489
c002a1e6 490ENTRY(save_rest)
1b2b23d8 491 PARTIAL_FRAME 1 (REST_SKIP+8)
c002a1e6
AH
492 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
e2f6bc25 505/* save complete stack frame */
c2810188 506 .pushsection .kprobes.text, "ax"
e2f6bc25
AH
507ENTRY(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)
c2810188 535 .popsection
e2f6bc25 536
1da177e4 537/*
5b3eec0c
IM
538 * A newly forked process directly context switches into this address.
539 *
540 * rdi: prev task we switched from
0bd7b798 541 */
1da177e4 542ENTRY(ret_from_fork)
dcd072e2 543 DEFAULT_FRAME
5b3eec0c 544
7106a5ab
BL
545 LOCK ; btr $TIF_FORK,TI_flags(%r8)
546
6eebdda3 547 pushq_cfi $0x0002
df5d1874 548 popfq_cfi # reset kernel eflags
5b3eec0c
IM
549
550 call schedule_tail # rdi: 'prev' task parameter
551
1da177e4 552 GET_THREAD_INFO(%rcx)
5b3eec0c 553
1da177e4 554 RESTORE_REST
5b3eec0c
IM
555
556 testl $3, CS-ARGOFFSET(%rsp) # from kernel_thread?
7076aada 557 jz 1f
5b3eec0c
IM
558
559 testl $_TIF_IA32, TI_flags(%rcx) # 32-bit compat task needs IRET
1da177e4 560 jnz int_ret_from_sys_call
5b3eec0c 561
c002a1e6 562 RESTORE_TOP_OF_STACK %rdi, -ARGOFFSET
5b3eec0c
IM
563 jmp ret_from_sys_call # go to the SYSRET fastpath
564
7076aada 5651:
22e2430d 566 subq $REST_SKIP, %rsp # leave space for volatiles
7076aada
AV
567 CFI_ADJUST_CFA_OFFSET REST_SKIP
568 movq %rbp, %rdi
569 call *%rbx
22e2430d
AV
570 movl $0, RAX(%rsp)
571 RESTORE_REST
572 jmp int_ret_from_sys_call
1da177e4 573 CFI_ENDPROC
4b787e0b 574END(ret_from_fork)
1da177e4
LT
575
576/*
0d2eb44f 577 * System call entry. Up to 6 arguments in registers are supported.
1da177e4
LT
578 *
579 * SYSCALL does not save anything on the stack and does not change the
63bcff2a
PA
580 * stack pointer. However, it does mask the flags register for us, so
581 * CLD and CLAC are not needed.
1da177e4 582 */
0bd7b798 583
1da177e4 584/*
0bd7b798 585 * Register setup:
1da177e4
LT
586 * rax system call number
587 * rdi arg0
0bd7b798 588 * rcx return address for syscall/sysret, C arg3
1da177e4 589 * rsi arg1
0bd7b798 590 * rdx arg2
1da177e4
LT
591 * r10 arg3 (--> moved to rcx for C)
592 * r8 arg4
593 * r9 arg5
594 * r11 eflags for syscall/sysret, temporary for C
0bd7b798
AH
595 * r12-r15,rbp,rbx saved by C code, not touched.
596 *
1da177e4
LT
597 * 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.
7bf36bbc
AK
602 *
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.
0bd7b798 606 */
1da177e4
LT
607
608ENTRY(system_call)
7effaa88 609 CFI_STARTPROC simple
adf14236 610 CFI_SIGNAL_FRAME
9af45651 611 CFI_DEF_CFA rsp,KERNEL_STACK_OFFSET
7effaa88
JB
612 CFI_REGISTER rip,rcx
613 /*CFI_REGISTER rflags,r11*/
72fe4858
GOC
614 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 */
f6b2bc84 620GLOBAL(system_call_after_swapgs)
72fe4858 621
3d1e42a7 622 movq %rsp,PER_CPU_VAR(old_rsp)
9af45651 623 movq PER_CPU_VAR(kernel_stack),%rsp
2601e64d
IM
624 /*
625 * No need to follow this irqs off/on section - it's straight
626 * and short:
627 */
72fe4858 628 ENABLE_INTERRUPTS(CLBR_NONE)
cac0e0a7 629 SAVE_ARGS 8,0
0bd7b798 630 movq %rax,ORIG_RAX-ARGOFFSET(%rsp)
7effaa88
JB
631 movq %rcx,RIP-ARGOFFSET(%rsp)
632 CFI_REL_OFFSET rip,RIP-ARGOFFSET
46db09d3 633 testl $_TIF_WORK_SYSCALL_ENTRY,TI_flags+THREAD_INFO(%rsp,RIP-ARGOFFSET)
1da177e4 634 jnz tracesys
86a1c34a 635system_call_fastpath:
fca460f9 636#if __SYSCALL_MASK == ~0
1da177e4 637 cmpq $__NR_syscall_max,%rax
fca460f9
PA
638#else
639 andl $__SYSCALL_MASK,%eax
640 cmpl $__NR_syscall_max,%eax
641#endif
1da177e4
LT
642 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)
0bd7b798
AH
648 * Has incomplete stack frame and undefined top of stack.
649 */
1da177e4 650ret_from_sys_call:
11b854b2 651 movl $_TIF_ALLWORK_MASK,%edi
1da177e4 652 /* edi: flagmask */
0bd7b798 653sysret_check:
10cd706d 654 LOCKDEP_SYS_EXIT
72fe4858 655 DISABLE_INTERRUPTS(CLBR_NONE)
2601e64d 656 TRACE_IRQS_OFF
46db09d3 657 movl TI_flags+THREAD_INFO(%rsp,RIP-ARGOFFSET),%edx
1da177e4 658 andl %edi,%edx
0bd7b798 659 jnz sysret_careful
bcddc015 660 CFI_REMEMBER_STATE
2601e64d
IM
661 /*
662 * sysretq will re-enable interrupts:
663 */
664 TRACE_IRQS_ON
1da177e4 665 movq RIP-ARGOFFSET(%rsp),%rcx
7effaa88 666 CFI_REGISTER rip,rcx
838feb47 667 RESTORE_ARGS 1,-ARG_SKIP,0
7effaa88 668 /*CFI_REGISTER rflags,r11*/
3d1e42a7 669 movq PER_CPU_VAR(old_rsp), %rsp
2be29982 670 USERGS_SYSRET64
1da177e4 671
bcddc015 672 CFI_RESTORE_STATE
1da177e4 673 /* Handle reschedules */
0bd7b798 674 /* edx: work, edi: workmask */
1da177e4
LT
675sysret_careful:
676 bt $TIF_NEED_RESCHED,%edx
677 jnc sysret_signal
2601e64d 678 TRACE_IRQS_ON
72fe4858 679 ENABLE_INTERRUPTS(CLBR_NONE)
df5d1874 680 pushq_cfi %rdi
0430499c 681 SCHEDULE_USER
df5d1874 682 popq_cfi %rdi
1da177e4
LT
683 jmp sysret_check
684
0bd7b798 685 /* Handle a signal */
1da177e4 686sysret_signal:
2601e64d 687 TRACE_IRQS_ON
72fe4858 688 ENABLE_INTERRUPTS(CLBR_NONE)
86a1c34a
RM
689#ifdef CONFIG_AUDITSYSCALL
690 bt $TIF_SYSCALL_AUDIT,%edx
691 jc sysret_audit
692#endif
b60e714d
RM
693 /*
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
0bd7b798 700
7effaa88
JB
701badsys:
702 movq $-ENOSYS,RAX-ARGOFFSET(%rsp)
703 jmp ret_from_sys_call
704
86a1c34a
RM
705#ifdef CONFIG_AUDITSYSCALL
706 /*
707 * Fast path for syscall audit without full syscall trace.
b05d8447 708 * We just call __audit_syscall_entry() directly, and then
86a1c34a
RM
709 * 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 */
b05d8447 718 call __audit_syscall_entry
86a1c34a
RM
719 LOAD_ARGS 0 /* reload call-clobbered registers */
720 jmp system_call_fastpath
721
722 /*
d7e7528b 723 * Return fast path for syscall audit. Call __audit_syscall_exit()
86a1c34a
RM
724 * directly and then jump back to the fast path with TIF_SYSCALL_AUDIT
725 * masked off.
726 */
727sysret_audit:
03275591 728 movq RAX-ARGOFFSET(%rsp),%rsi /* second arg, syscall return value */
d7e7528b
EP
729 cmpq $-MAX_ERRNO,%rsi /* is it < -MAX_ERRNO? */
730 setbe %al /* 1 if so, 0 if not */
86a1c34a 731 movzbl %al,%edi /* zero-extend that into %edi */
d7e7528b 732 call __audit_syscall_exit
86a1c34a
RM
733 movl $(_TIF_ALLWORK_MASK & ~_TIF_SYSCALL_AUDIT),%edi
734 jmp sysret_check
735#endif /* CONFIG_AUDITSYSCALL */
736
1da177e4 737 /* Do syscall tracing */
0bd7b798 738tracesys:
86a1c34a 739#ifdef CONFIG_AUDITSYSCALL
46db09d3 740 testl $(_TIF_WORK_SYSCALL_ENTRY & ~_TIF_SYSCALL_AUDIT),TI_flags+THREAD_INFO(%rsp,RIP-ARGOFFSET)
86a1c34a
RM
741 jz auditsys
742#endif
1da177e4 743 SAVE_REST
a31f8dd7 744 movq $-ENOSYS,RAX(%rsp) /* ptrace can change this for a bad syscall */
1da177e4
LT
745 FIXUP_TOP_OF_STACK %rdi
746 movq %rsp,%rdi
747 call syscall_trace_enter
d4d67150
RM
748 /*
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
1da177e4 754 RESTORE_REST
fca460f9 755#if __SYSCALL_MASK == ~0
1da177e4 756 cmpq $__NR_syscall_max,%rax
fca460f9
PA
757#else
758 andl $__SYSCALL_MASK,%eax
759 cmpl $__NR_syscall_max,%eax
760#endif
a31f8dd7 761 ja int_ret_from_sys_call /* RAX(%rsp) set to -ENOSYS above */
1da177e4
LT
762 movq %r10,%rcx /* fixup for C */
763 call *sys_call_table(,%rax,8)
a31f8dd7 764 movq %rax,RAX-ARGOFFSET(%rsp)
7bf36bbc 765 /* Use IRET because user could have changed frame */
0bd7b798
AH
766
767/*
1da177e4
LT
768 * Syscall return path ending with IRET.
769 * Has correct top of stack, but partial stack frame.
bcddc015 770 */
bc8b2b92 771GLOBAL(int_ret_from_sys_call)
72fe4858 772 DISABLE_INTERRUPTS(CLBR_NONE)
2601e64d 773 TRACE_IRQS_OFF
1da177e4
LT
774 movl $_TIF_ALLWORK_MASK,%edi
775 /* edi: mask to check */
bc8b2b92 776GLOBAL(int_with_check)
10cd706d 777 LOCKDEP_SYS_EXIT_IRQ
1da177e4 778 GET_THREAD_INFO(%rcx)
26ccb8a7 779 movl TI_flags(%rcx),%edx
1da177e4
LT
780 andl %edi,%edx
781 jnz int_careful
26ccb8a7 782 andl $~TS_COMPAT,TI_status(%rcx)
1da177e4
LT
783 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
2601e64d 791 TRACE_IRQS_ON
72fe4858 792 ENABLE_INTERRUPTS(CLBR_NONE)
df5d1874 793 pushq_cfi %rdi
0430499c 794 SCHEDULE_USER
df5d1874 795 popq_cfi %rdi
72fe4858 796 DISABLE_INTERRUPTS(CLBR_NONE)
2601e64d 797 TRACE_IRQS_OFF
1da177e4
LT
798 jmp int_with_check
799
800 /* handle signals and tracing -- both require a full stack frame */
801int_very_careful:
2601e64d 802 TRACE_IRQS_ON
72fe4858 803 ENABLE_INTERRUPTS(CLBR_NONE)
b60e714d 804int_check_syscall_exit_work:
1da177e4 805 SAVE_REST
0bd7b798 806 /* Check for syscall exit trace */
d4d67150 807 testl $_TIF_WORK_SYSCALL_EXIT,%edx
1da177e4 808 jz int_signal
df5d1874 809 pushq_cfi %rdi
0bd7b798 810 leaq 8(%rsp),%rdi # &ptregs -> arg1
1da177e4 811 call syscall_trace_leave
df5d1874 812 popq_cfi %rdi
d4d67150 813 andl $~(_TIF_WORK_SYSCALL_EXIT|_TIF_SYSCALL_EMU),%edi
1da177e4 814 jmp int_restore_rest
0bd7b798 815
1da177e4 816int_signal:
8f4d37ec 817 testl $_TIF_DO_NOTIFY_MASK,%edx
1da177e4
LT
818 jz 1f
819 movq %rsp,%rdi # &ptregs -> arg1
820 xorl %esi,%esi # oldset -> arg2
821 call do_notify_resume
eca91e78 8221: movl $_TIF_WORK_MASK,%edi
1da177e4
LT
823int_restore_rest:
824 RESTORE_REST
72fe4858 825 DISABLE_INTERRUPTS(CLBR_NONE)
2601e64d 826 TRACE_IRQS_OFF
1da177e4
LT
827 jmp int_with_check
828 CFI_ENDPROC
bcddc015 829END(system_call)
0bd7b798 830
1d4b4b29
AV
831 .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
b3af11af
AV
847 .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
1d4b4b29
AV
859 FORK_LIKE clone
860 FORK_LIKE fork
861 FORK_LIKE vfork
b3af11af 862 FIXED_FRAME stub_iopl, sys_iopl
1da177e4
LT
863
864ENTRY(ptregscall_common)
c002a1e6
AH
865 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 */
1da177e4 874 CFI_ENDPROC
4b787e0b 875END(ptregscall_common)
0bd7b798 876
1da177e4
LT
877ENTRY(stub_execve)
878 CFI_STARTPROC
e6b04b6b
JB
879 addq $8, %rsp
880 PARTIAL_FRAME 0
1da177e4 881 SAVE_REST
1da177e4
LT
882 FIXUP_TOP_OF_STACK %r11
883 call sys_execve
1da177e4
LT
884 movq %rax,RAX(%rsp)
885 RESTORE_REST
886 jmp int_ret_from_sys_call
887 CFI_ENDPROC
4b787e0b 888END(stub_execve)
0bd7b798 889
1da177e4
LT
890/*
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.
0bd7b798 893 */
1da177e4
LT
894ENTRY(stub_rt_sigreturn)
895 CFI_STARTPROC
7effaa88 896 addq $8, %rsp
e6b04b6b 897 PARTIAL_FRAME 0
1da177e4 898 SAVE_REST
1da177e4
LT
899 FIXUP_TOP_OF_STACK %r11
900 call sys_rt_sigreturn
901 movq %rax,RAX(%rsp) # fixme, this could be done at the higher layer
902 RESTORE_REST
903 jmp int_ret_from_sys_call
904 CFI_ENDPROC
4b787e0b 905END(stub_rt_sigreturn)
1da177e4 906
c5a37394 907#ifdef CONFIG_X86_X32_ABI
c5a37394
PA
908ENTRY(stub_x32_rt_sigreturn)
909 CFI_STARTPROC
910 addq $8, %rsp
911 PARTIAL_FRAME 0
912 SAVE_REST
c5a37394
PA
913 FIXUP_TOP_OF_STACK %r11
914 call sys32_x32_rt_sigreturn
915 movq %rax,RAX(%rsp) # fixme, this could be done at the higher layer
916 RESTORE_REST
917 jmp int_ret_from_sys_call
918 CFI_ENDPROC
919END(stub_x32_rt_sigreturn)
920
d1a797f3
PA
921ENTRY(stub_x32_execve)
922 CFI_STARTPROC
923 addq $8, %rsp
924 PARTIAL_FRAME 0
925 SAVE_REST
926 FIXUP_TOP_OF_STACK %r11
6783eaa2 927 call compat_sys_execve
d1a797f3
PA
928 RESTORE_TOP_OF_STACK %r11
929 movq %rax,RAX(%rsp)
930 RESTORE_REST
931 jmp int_ret_from_sys_call
932 CFI_ENDPROC
933END(stub_x32_execve)
934
c5a37394
PA
935#endif
936
939b7871
PA
937/*
938 * Build the entry stubs and pointer table with some assembler magic.
939 * We pack 7 stubs into a single 32-byte chunk, which will fit in a
940 * single cache line on all modern x86 implementations.
941 */
942 .section .init.rodata,"a"
943ENTRY(interrupt)
ea714547 944 .section .entry.text
939b7871
PA
945 .p2align 5
946 .p2align CONFIG_X86_L1_CACHE_SHIFT
947ENTRY(irq_entries_start)
948 INTR_FRAME
949vector=FIRST_EXTERNAL_VECTOR
950.rept (NR_VECTORS-FIRST_EXTERNAL_VECTOR+6)/7
951 .balign 32
952 .rept 7
953 .if vector < NR_VECTORS
8665596e 954 .if vector <> FIRST_EXTERNAL_VECTOR
939b7871
PA
955 CFI_ADJUST_CFA_OFFSET -8
956 .endif
df5d1874 9571: pushq_cfi $(~vector+0x80) /* Note: always in signed byte range */
8665596e 958 .if ((vector-FIRST_EXTERNAL_VECTOR)%7) <> 6
939b7871
PA
959 jmp 2f
960 .endif
961 .previous
962 .quad 1b
ea714547 963 .section .entry.text
939b7871
PA
964vector=vector+1
965 .endif
966 .endr
9672: jmp common_interrupt
968.endr
969 CFI_ENDPROC
970END(irq_entries_start)
971
972.previous
973END(interrupt)
974.previous
975
d99015b1 976/*
1da177e4
LT
977 * Interrupt entry/exit.
978 *
979 * Interrupt entry points save only callee clobbered registers in fast path.
d99015b1
AH
980 *
981 * Entry runs with interrupts off.
982 */
1da177e4 983
722024db 984/* 0(%rsp): ~(interrupt number) */
1da177e4 985 .macro interrupt func
625dbc3b
FW
986 /* reserve pt_regs for scratch regs and rbp */
987 subq $ORIG_RAX-RBP, %rsp
988 CFI_ADJUST_CFA_OFFSET ORIG_RAX-RBP
1871853f 989 SAVE_ARGS_IRQ
1da177e4
LT
990 call \func
991 .endm
992
8222d718
MH
993/*
994 * Interrupt entry/exit should be protected against kprobes
995 */
996 .pushsection .kprobes.text, "ax"
722024db
AH
997 /*
998 * The interrupt stubs push (~vector+0x80) onto the stack and
999 * then jump to common_interrupt.
1000 */
939b7871
PA
1001 .p2align CONFIG_X86_L1_CACHE_SHIFT
1002common_interrupt:
7effaa88 1003 XCPT_FRAME
ee4eb87b 1004 ASM_CLAC
722024db 1005 addq $-0x80,(%rsp) /* Adjust vector to [-256,-1] range */
1da177e4 1006 interrupt do_IRQ
3d1e42a7 1007 /* 0(%rsp): old_rsp-ARGOFFSET */
7effaa88 1008ret_from_intr:
72fe4858 1009 DISABLE_INTERRUPTS(CLBR_NONE)
2601e64d 1010 TRACE_IRQS_OFF
56895530 1011 decl PER_CPU_VAR(irq_count)
625dbc3b 1012
a2bbe750
FW
1013 /* Restore saved previous stack */
1014 popq %rsi
928282e4 1015 CFI_DEF_CFA rsi,SS+8-RBP /* reg/off reset after def_cfa_expr */
eab9e613 1016 leaq ARGOFFSET-RBP(%rsi), %rsp
7effaa88 1017 CFI_DEF_CFA_REGISTER rsp
eab9e613 1018 CFI_ADJUST_CFA_OFFSET RBP-ARGOFFSET
625dbc3b 1019
7effaa88 1020exit_intr:
1da177e4
LT
1021 GET_THREAD_INFO(%rcx)
1022 testl $3,CS-ARGOFFSET(%rsp)
1023 je retint_kernel
0bd7b798 1024
1da177e4
LT
1025 /* Interrupt came from user space */
1026 /*
1027 * Has a correct top of stack, but a partial stack frame
1028 * %rcx: thread info. Interrupts off.
0bd7b798 1029 */
1da177e4
LT
1030retint_with_reschedule:
1031 movl $_TIF_WORK_MASK,%edi
7effaa88 1032retint_check:
10cd706d 1033 LOCKDEP_SYS_EXIT_IRQ
26ccb8a7 1034 movl TI_flags(%rcx),%edx
1da177e4 1035 andl %edi,%edx
7effaa88 1036 CFI_REMEMBER_STATE
1da177e4 1037 jnz retint_careful
10cd706d
PZ
1038
1039retint_swapgs: /* return to user-space */
2601e64d
IM
1040 /*
1041 * The iretq could re-enable interrupts:
1042 */
72fe4858 1043 DISABLE_INTERRUPTS(CLBR_ANY)
2601e64d 1044 TRACE_IRQS_IRETQ
72fe4858 1045 SWAPGS
2601e64d
IM
1046 jmp restore_args
1047
10cd706d 1048retint_restore_args: /* return to kernel space */
72fe4858 1049 DISABLE_INTERRUPTS(CLBR_ANY)
2601e64d
IM
1050 /*
1051 * The iretq could re-enable interrupts:
1052 */
1053 TRACE_IRQS_IRETQ
1054restore_args:
838feb47 1055 RESTORE_ARGS 1,8,1
3701d863 1056
f7f3d791 1057irq_return:
72fe4858 1058 INTERRUPT_RETURN
d7abc0fa 1059 _ASM_EXTABLE(irq_return, bad_iret)
3701d863
IM
1060
1061#ifdef CONFIG_PARAVIRT
72fe4858 1062ENTRY(native_iret)
1da177e4 1063 iretq
d7abc0fa 1064 _ASM_EXTABLE(native_iret, bad_iret)
3701d863
IM
1065#endif
1066
1da177e4 1067 .section .fixup,"ax"
1da177e4 1068bad_iret:
3aa4b37d
RM
1069 /*
1070 * The iret traps when the %cs or %ss being restored is bogus.
1071 * We've lost the original trap vector and error code.
1072 * #GPF is the most likely one to get for an invalid selector.
1073 * So pretend we completed the iret and took the #GPF in user mode.
1074 *
1075 * We are now running with the kernel GS after exception recovery.
1076 * But error_entry expects us to have user GS to match the user %cs,
1077 * so swap back.
1078 */
1079 pushq $0
1080
1081 SWAPGS
1082 jmp general_protection
1083
72fe4858
GOC
1084 .previous
1085
7effaa88 1086 /* edi: workmask, edx: work */
1da177e4 1087retint_careful:
7effaa88 1088 CFI_RESTORE_STATE
1da177e4
LT
1089 bt $TIF_NEED_RESCHED,%edx
1090 jnc retint_signal
2601e64d 1091 TRACE_IRQS_ON
72fe4858 1092 ENABLE_INTERRUPTS(CLBR_NONE)
df5d1874 1093 pushq_cfi %rdi
0430499c 1094 SCHEDULE_USER
df5d1874 1095 popq_cfi %rdi
1da177e4 1096 GET_THREAD_INFO(%rcx)
72fe4858 1097 DISABLE_INTERRUPTS(CLBR_NONE)
2601e64d 1098 TRACE_IRQS_OFF
1da177e4 1099 jmp retint_check
0bd7b798 1100
1da177e4 1101retint_signal:
8f4d37ec 1102 testl $_TIF_DO_NOTIFY_MASK,%edx
10ffdbb8 1103 jz retint_swapgs
2601e64d 1104 TRACE_IRQS_ON
72fe4858 1105 ENABLE_INTERRUPTS(CLBR_NONE)
1da177e4 1106 SAVE_REST
0bd7b798 1107 movq $-1,ORIG_RAX(%rsp)
3829ee6b 1108 xorl %esi,%esi # oldset
1da177e4
LT
1109 movq %rsp,%rdi # &pt_regs
1110 call do_notify_resume
1111 RESTORE_REST
72fe4858 1112 DISABLE_INTERRUPTS(CLBR_NONE)
2601e64d 1113 TRACE_IRQS_OFF
be9e6870 1114 GET_THREAD_INFO(%rcx)
eca91e78 1115 jmp retint_with_reschedule
1da177e4
LT
1116
1117#ifdef CONFIG_PREEMPT
1118 /* Returning to kernel space. Check if we need preemption */
1119 /* rcx: threadinfo. interrupts off. */
b06babac 1120ENTRY(retint_kernel)
26ccb8a7 1121 cmpl $0,TI_preempt_count(%rcx)
1da177e4 1122 jnz retint_restore_args
26ccb8a7 1123 bt $TIF_NEED_RESCHED,TI_flags(%rcx)
1da177e4
LT
1124 jnc retint_restore_args
1125 bt $9,EFLAGS-ARGOFFSET(%rsp) /* interrupts off? */
1126 jnc retint_restore_args
1127 call preempt_schedule_irq
1128 jmp exit_intr
0bd7b798 1129#endif
4b787e0b 1130
1da177e4 1131 CFI_ENDPROC
4b787e0b 1132END(common_interrupt)
8222d718
MH
1133/*
1134 * End of kprobes section
1135 */
1136 .popsection
0bd7b798 1137
1da177e4
LT
1138/*
1139 * APIC interrupts.
0bd7b798 1140 */
322648d1
AH
1141.macro apicinterrupt num sym do_sym
1142ENTRY(\sym)
7effaa88 1143 INTR_FRAME
ee4eb87b 1144 ASM_CLAC
df5d1874 1145 pushq_cfi $~(\num)
39e95433 1146.Lcommon_\sym:
322648d1 1147 interrupt \do_sym
1da177e4
LT
1148 jmp ret_from_intr
1149 CFI_ENDPROC
322648d1
AH
1150END(\sym)
1151.endm
1da177e4 1152
322648d1
AH
1153#ifdef CONFIG_SMP
1154apicinterrupt IRQ_MOVE_CLEANUP_VECTOR \
1155 irq_move_cleanup_interrupt smp_irq_move_cleanup_interrupt
4ef702c1
AK
1156apicinterrupt REBOOT_VECTOR \
1157 reboot_interrupt smp_reboot_interrupt
322648d1 1158#endif
1da177e4 1159
03b48632 1160#ifdef CONFIG_X86_UV
5ae3a139 1161apicinterrupt UV_BAU_MESSAGE \
322648d1 1162 uv_bau_message_intr1 uv_bau_message_interrupt
03b48632 1163#endif
322648d1
AH
1164apicinterrupt LOCAL_TIMER_VECTOR \
1165 apic_timer_interrupt smp_apic_timer_interrupt
4a4de9c7
DS
1166apicinterrupt X86_PLATFORM_IPI_VECTOR \
1167 x86_platform_ipi smp_x86_platform_ipi
89b831ef 1168
322648d1 1169apicinterrupt THRESHOLD_APIC_VECTOR \
7856f6cc 1170 threshold_interrupt smp_threshold_interrupt
322648d1
AH
1171apicinterrupt THERMAL_APIC_VECTOR \
1172 thermal_interrupt smp_thermal_interrupt
1812924b 1173
322648d1
AH
1174#ifdef CONFIG_SMP
1175apicinterrupt CALL_FUNCTION_SINGLE_VECTOR \
1176 call_function_single_interrupt smp_call_function_single_interrupt
1177apicinterrupt CALL_FUNCTION_VECTOR \
1178 call_function_interrupt smp_call_function_interrupt
1179apicinterrupt RESCHEDULE_VECTOR \
1180 reschedule_interrupt smp_reschedule_interrupt
1181#endif
1da177e4 1182
322648d1
AH
1183apicinterrupt ERROR_APIC_VECTOR \
1184 error_interrupt smp_error_interrupt
1185apicinterrupt SPURIOUS_APIC_VECTOR \
1186 spurious_interrupt smp_spurious_interrupt
0bd7b798 1187
e360adbe
PZ
1188#ifdef CONFIG_IRQ_WORK
1189apicinterrupt IRQ_WORK_VECTOR \
1190 irq_work_interrupt smp_irq_work_interrupt
241771ef
IM
1191#endif
1192
1da177e4
LT
1193/*
1194 * Exception entry points.
0bd7b798 1195 */
322648d1
AH
1196.macro zeroentry sym do_sym
1197ENTRY(\sym)
7effaa88 1198 INTR_FRAME
ee4eb87b 1199 ASM_CLAC
fab58420 1200 PARAVIRT_ADJUST_EXCEPTION_FRAME
14ae22ba 1201 pushq_cfi $-1 /* ORIG_RAX: no syscall to restart */
b1cccb1b
JB
1202 subq $ORIG_RAX-R15, %rsp
1203 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
d99015b1 1204 call error_entry
dcd072e2 1205 DEFAULT_FRAME 0
d99015b1
AH
1206 movq %rsp,%rdi /* pt_regs pointer */
1207 xorl %esi,%esi /* no error code */
322648d1 1208 call \do_sym
d99015b1 1209 jmp error_exit /* %ebx: no swapgs flag */
7effaa88 1210 CFI_ENDPROC
322648d1
AH
1211END(\sym)
1212.endm
1da177e4 1213
322648d1 1214.macro paranoidzeroentry sym do_sym
ddeb8f21 1215ENTRY(\sym)
b8b1d08b 1216 INTR_FRAME
ee4eb87b 1217 ASM_CLAC
b8b1d08b 1218 PARAVIRT_ADJUST_EXCEPTION_FRAME
b1cccb1b
JB
1219 pushq_cfi $-1 /* ORIG_RAX: no syscall to restart */
1220 subq $ORIG_RAX-R15, %rsp
1221 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
b8b1d08b
AH
1222 call save_paranoid
1223 TRACE_IRQS_OFF
1224 movq %rsp,%rdi /* pt_regs pointer */
1225 xorl %esi,%esi /* no error code */
322648d1 1226 call \do_sym
b8b1d08b
AH
1227 jmp paranoid_exit /* %ebx: no swapgs flag */
1228 CFI_ENDPROC
ddeb8f21 1229END(\sym)
322648d1 1230.endm
b8b1d08b 1231
c15a5958 1232#define INIT_TSS_IST(x) PER_CPU_VAR(init_tss) + (TSS_ist + ((x) - 1) * 8)
322648d1 1233.macro paranoidzeroentry_ist sym do_sym ist
ddeb8f21 1234ENTRY(\sym)
9f1e87ea 1235 INTR_FRAME
ee4eb87b 1236 ASM_CLAC
b8b1d08b 1237 PARAVIRT_ADJUST_EXCEPTION_FRAME
b1cccb1b
JB
1238 pushq_cfi $-1 /* ORIG_RAX: no syscall to restart */
1239 subq $ORIG_RAX-R15, %rsp
1240 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
b8b1d08b 1241 call save_paranoid
5963e317 1242 TRACE_IRQS_OFF_DEBUG
b8b1d08b
AH
1243 movq %rsp,%rdi /* pt_regs pointer */
1244 xorl %esi,%esi /* no error code */
c15a5958 1245 subq $EXCEPTION_STKSZ, INIT_TSS_IST(\ist)
322648d1 1246 call \do_sym
c15a5958 1247 addq $EXCEPTION_STKSZ, INIT_TSS_IST(\ist)
b8b1d08b
AH
1248 jmp paranoid_exit /* %ebx: no swapgs flag */
1249 CFI_ENDPROC
ddeb8f21 1250END(\sym)
322648d1 1251.endm
b8b1d08b 1252
ddeb8f21 1253.macro errorentry sym do_sym
322648d1 1254ENTRY(\sym)
7effaa88 1255 XCPT_FRAME
ee4eb87b 1256 ASM_CLAC
fab58420 1257 PARAVIRT_ADJUST_EXCEPTION_FRAME
b1cccb1b
JB
1258 subq $ORIG_RAX-R15, %rsp
1259 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
d99015b1 1260 call error_entry
dcd072e2 1261 DEFAULT_FRAME 0
d99015b1
AH
1262 movq %rsp,%rdi /* pt_regs pointer */
1263 movq ORIG_RAX(%rsp),%rsi /* get error code */
1264 movq $-1,ORIG_RAX(%rsp) /* no syscall to restart */
322648d1 1265 call \do_sym
d99015b1 1266 jmp error_exit /* %ebx: no swapgs flag */
7effaa88 1267 CFI_ENDPROC
322648d1 1268END(\sym)
322648d1 1269.endm
1da177e4
LT
1270
1271 /* error code is on the stack already */
ddeb8f21 1272.macro paranoiderrorentry sym do_sym
322648d1 1273ENTRY(\sym)
b8b1d08b 1274 XCPT_FRAME
ee4eb87b 1275 ASM_CLAC
b8b1d08b 1276 PARAVIRT_ADJUST_EXCEPTION_FRAME
b1cccb1b
JB
1277 subq $ORIG_RAX-R15, %rsp
1278 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
e2f6bc25
AH
1279 call save_paranoid
1280 DEFAULT_FRAME 0
7e61a793 1281 TRACE_IRQS_OFF
b8b1d08b
AH
1282 movq %rsp,%rdi /* pt_regs pointer */
1283 movq ORIG_RAX(%rsp),%rsi /* get error code */
1284 movq $-1,ORIG_RAX(%rsp) /* no syscall to restart */
322648d1 1285 call \do_sym
b8b1d08b
AH
1286 jmp paranoid_exit /* %ebx: no swapgs flag */
1287 CFI_ENDPROC
322648d1 1288END(\sym)
322648d1
AH
1289.endm
1290
1291zeroentry divide_error do_divide_error
322648d1
AH
1292zeroentry overflow do_overflow
1293zeroentry bounds do_bounds
1294zeroentry invalid_op do_invalid_op
1295zeroentry device_not_available do_device_not_available
ddeb8f21 1296paranoiderrorentry double_fault do_double_fault
322648d1
AH
1297zeroentry coprocessor_segment_overrun do_coprocessor_segment_overrun
1298errorentry invalid_TSS do_invalid_TSS
1299errorentry segment_not_present do_segment_not_present
322648d1
AH
1300zeroentry spurious_interrupt_bug do_spurious_interrupt_bug
1301zeroentry coprocessor_error do_coprocessor_error
1302errorentry alignment_check do_alignment_check
322648d1 1303zeroentry simd_coprocessor_error do_simd_coprocessor_error
5cec93c2 1304
2601e64d 1305
9f1e87ea
CG
1306 /* Reload gs selector with exception handling */
1307 /* edi: new selector */
9f9d489a 1308ENTRY(native_load_gs_index)
7effaa88 1309 CFI_STARTPROC
df5d1874 1310 pushfq_cfi
b8aa287f 1311 DISABLE_INTERRUPTS(CLBR_ANY & ~CLBR_RDI)
9f1e87ea 1312 SWAPGS
0bd7b798 1313gs_change:
9f1e87ea 1314 movl %edi,%gs
1da177e4 13152: mfence /* workaround */
72fe4858 1316 SWAPGS
df5d1874 1317 popfq_cfi
9f1e87ea 1318 ret
7effaa88 1319 CFI_ENDPROC
6efdcfaf 1320END(native_load_gs_index)
0bd7b798 1321
d7abc0fa 1322 _ASM_EXTABLE(gs_change,bad_gs)
9f1e87ea 1323 .section .fixup,"ax"
1da177e4 1324 /* running with kernelgs */
0bd7b798 1325bad_gs:
72fe4858 1326 SWAPGS /* switch back to user gs */
1da177e4 1327 xorl %eax,%eax
9f1e87ea
CG
1328 movl %eax,%gs
1329 jmp 2b
1330 .previous
0bd7b798 1331
2699500b 1332/* Call softirq on interrupt stack. Interrupts are off. */
ed6b676c 1333ENTRY(call_softirq)
7effaa88 1334 CFI_STARTPROC
df5d1874 1335 pushq_cfi %rbp
2699500b
AK
1336 CFI_REL_OFFSET rbp,0
1337 mov %rsp,%rbp
1338 CFI_DEF_CFA_REGISTER rbp
56895530 1339 incl PER_CPU_VAR(irq_count)
26f80bd6 1340 cmove PER_CPU_VAR(irq_stack_ptr),%rsp
2699500b 1341 push %rbp # backlink for old unwinder
ed6b676c 1342 call __do_softirq
2699500b 1343 leaveq
df5d1874 1344 CFI_RESTORE rbp
7effaa88 1345 CFI_DEF_CFA_REGISTER rsp
2699500b 1346 CFI_ADJUST_CFA_OFFSET -8
56895530 1347 decl PER_CPU_VAR(irq_count)
ed6b676c 1348 ret
7effaa88 1349 CFI_ENDPROC
6efdcfaf 1350END(call_softirq)
75154f40 1351
3d75e1b8 1352#ifdef CONFIG_XEN
322648d1 1353zeroentry xen_hypervisor_callback xen_do_hypervisor_callback
3d75e1b8
JF
1354
1355/*
9f1e87ea
CG
1356 * A note on the "critical region" in our callback handler.
1357 * We want to avoid stacking callback handlers due to events occurring
1358 * during handling of the last event. To do this, we keep events disabled
1359 * until we've done all processing. HOWEVER, we must enable events before
1360 * popping the stack frame (can't be done atomically) and so it would still
1361 * be possible to get enough handler activations to overflow the stack.
1362 * Although unlikely, bugs of that kind are hard to track down, so we'd
1363 * like to avoid the possibility.
1364 * So, on entry to the handler we detect whether we interrupted an
1365 * existing activation in its critical region -- if so, we pop the current
1366 * activation and restart the handler using the previous one.
1367 */
3d75e1b8
JF
1368ENTRY(xen_do_hypervisor_callback) # do_hypervisor_callback(struct *pt_regs)
1369 CFI_STARTPROC
9f1e87ea
CG
1370/*
1371 * Since we don't modify %rdi, evtchn_do_upall(struct *pt_regs) will
1372 * see the correct pointer to the pt_regs
1373 */
3d75e1b8
JF
1374 movq %rdi, %rsp # we don't return, adjust the stack frame
1375 CFI_ENDPROC
dcd072e2 1376 DEFAULT_FRAME
56895530 137711: incl PER_CPU_VAR(irq_count)
3d75e1b8
JF
1378 movq %rsp,%rbp
1379 CFI_DEF_CFA_REGISTER rbp
26f80bd6 1380 cmovzq PER_CPU_VAR(irq_stack_ptr),%rsp
3d75e1b8
JF
1381 pushq %rbp # backlink for old unwinder
1382 call xen_evtchn_do_upcall
1383 popq %rsp
1384 CFI_DEF_CFA_REGISTER rsp
56895530 1385 decl PER_CPU_VAR(irq_count)
3d75e1b8
JF
1386 jmp error_exit
1387 CFI_ENDPROC
371c394a 1388END(xen_do_hypervisor_callback)
3d75e1b8
JF
1389
1390/*
9f1e87ea
CG
1391 * Hypervisor uses this for application faults while it executes.
1392 * We get here for two reasons:
1393 * 1. Fault while reloading DS, ES, FS or GS
1394 * 2. Fault while executing IRET
1395 * Category 1 we do not need to fix up as Xen has already reloaded all segment
1396 * registers that could be reloaded and zeroed the others.
1397 * Category 2 we fix up by killing the current process. We cannot use the
1398 * normal Linux return path in this case because if we use the IRET hypercall
1399 * to pop the stack frame we end up in an infinite loop of failsafe callbacks.
1400 * We distinguish between categories by comparing each saved segment register
1401 * with its current contents: any discrepancy means we in category 1.
1402 */
3d75e1b8 1403ENTRY(xen_failsafe_callback)
dcd072e2
AH
1404 INTR_FRAME 1 (6*8)
1405 /*CFI_REL_OFFSET gs,GS*/
1406 /*CFI_REL_OFFSET fs,FS*/
1407 /*CFI_REL_OFFSET es,ES*/
1408 /*CFI_REL_OFFSET ds,DS*/
1409 CFI_REL_OFFSET r11,8
1410 CFI_REL_OFFSET rcx,0
3d75e1b8
JF
1411 movw %ds,%cx
1412 cmpw %cx,0x10(%rsp)
1413 CFI_REMEMBER_STATE
1414 jne 1f
1415 movw %es,%cx
1416 cmpw %cx,0x18(%rsp)
1417 jne 1f
1418 movw %fs,%cx
1419 cmpw %cx,0x20(%rsp)
1420 jne 1f
1421 movw %gs,%cx
1422 cmpw %cx,0x28(%rsp)
1423 jne 1f
1424 /* All segments match their saved values => Category 2 (Bad IRET). */
1425 movq (%rsp),%rcx
1426 CFI_RESTORE rcx
1427 movq 8(%rsp),%r11
1428 CFI_RESTORE r11
1429 addq $0x30,%rsp
1430 CFI_ADJUST_CFA_OFFSET -0x30
14ae22ba
IM
1431 pushq_cfi $0 /* RIP */
1432 pushq_cfi %r11
1433 pushq_cfi %rcx
4a5c3e77 1434 jmp general_protection
3d75e1b8
JF
1435 CFI_RESTORE_STATE
14361: /* Segment mismatch => Category 1 (Bad segment). Retry the IRET. */
1437 movq (%rsp),%rcx
1438 CFI_RESTORE rcx
1439 movq 8(%rsp),%r11
1440 CFI_RESTORE r11
1441 addq $0x30,%rsp
1442 CFI_ADJUST_CFA_OFFSET -0x30
a349e23d 1443 pushq_cfi $-1 /* orig_ax = -1 => not a system call */
3d75e1b8
JF
1444 SAVE_ALL
1445 jmp error_exit
1446 CFI_ENDPROC
3d75e1b8
JF
1447END(xen_failsafe_callback)
1448
bc2b0331 1449apicinterrupt HYPERVISOR_CALLBACK_VECTOR \
38e20b07
SY
1450 xen_hvm_callback_vector xen_evtchn_do_upcall
1451
3d75e1b8 1452#endif /* CONFIG_XEN */
ddeb8f21 1453
bc2b0331
S
1454#if IS_ENABLED(CONFIG_HYPERV)
1455apicinterrupt HYPERVISOR_CALLBACK_VECTOR \
1456 hyperv_callback_vector hyperv_vector_handler
1457#endif /* CONFIG_HYPERV */
1458
ddeb8f21
AH
1459/*
1460 * Some functions should be protected against kprobes
1461 */
1462 .pushsection .kprobes.text, "ax"
1463
1464paranoidzeroentry_ist debug do_debug DEBUG_STACK
1465paranoidzeroentry_ist int3 do_int3 DEBUG_STACK
1466paranoiderrorentry stack_segment do_stack_segment
6cac5a92
JF
1467#ifdef CONFIG_XEN
1468zeroentry xen_debug do_debug
1469zeroentry xen_int3 do_int3
1470errorentry xen_stack_segment do_stack_segment
1471#endif
ddeb8f21
AH
1472errorentry general_protection do_general_protection
1473errorentry page_fault do_page_fault
631bc487
GN
1474#ifdef CONFIG_KVM_GUEST
1475errorentry async_page_fault do_async_page_fault
1476#endif
ddeb8f21 1477#ifdef CONFIG_X86_MCE
5d727926 1478paranoidzeroentry machine_check *machine_check_vector(%rip)
ddeb8f21
AH
1479#endif
1480
1481 /*
9f1e87ea
CG
1482 * "Paranoid" exit path from exception stack.
1483 * Paranoid because this is used by NMIs and cannot take
ddeb8f21
AH
1484 * any kernel state for granted.
1485 * We don't do kernel preemption checks here, because only
1486 * NMI should be common and it does not enable IRQs and
1487 * cannot get reschedule ticks.
1488 *
1489 * "trace" is 0 for the NMI handler only, because irq-tracing
1490 * is fundamentally NMI-unsafe. (we cannot change the soft and
1491 * hard flags at once, atomically)
1492 */
1493
1494 /* ebx: no swapgs flag */
1495ENTRY(paranoid_exit)
1f130a78 1496 DEFAULT_FRAME
ddeb8f21 1497 DISABLE_INTERRUPTS(CLBR_NONE)
5963e317 1498 TRACE_IRQS_OFF_DEBUG
ddeb8f21
AH
1499 testl %ebx,%ebx /* swapgs needed? */
1500 jnz paranoid_restore
1501 testl $3,CS(%rsp)
1502 jnz paranoid_userspace
1503paranoid_swapgs:
1504 TRACE_IRQS_IRETQ 0
1505 SWAPGS_UNSAFE_STACK
0300e7f1
SR
1506 RESTORE_ALL 8
1507 jmp irq_return
ddeb8f21 1508paranoid_restore:
5963e317 1509 TRACE_IRQS_IRETQ_DEBUG 0
ddeb8f21
AH
1510 RESTORE_ALL 8
1511 jmp irq_return
1512paranoid_userspace:
1513 GET_THREAD_INFO(%rcx)
1514 movl TI_flags(%rcx),%ebx
1515 andl $_TIF_WORK_MASK,%ebx
1516 jz paranoid_swapgs
1517 movq %rsp,%rdi /* &pt_regs */
1518 call sync_regs
1519 movq %rax,%rsp /* switch stack for scheduling */
1520 testl $_TIF_NEED_RESCHED,%ebx
1521 jnz paranoid_schedule
1522 movl %ebx,%edx /* arg3: thread flags */
1523 TRACE_IRQS_ON
1524 ENABLE_INTERRUPTS(CLBR_NONE)
1525 xorl %esi,%esi /* arg2: oldset */
1526 movq %rsp,%rdi /* arg1: &pt_regs */
1527 call do_notify_resume
1528 DISABLE_INTERRUPTS(CLBR_NONE)
1529 TRACE_IRQS_OFF
1530 jmp paranoid_userspace
1531paranoid_schedule:
1532 TRACE_IRQS_ON
1533 ENABLE_INTERRUPTS(CLBR_ANY)
0430499c 1534 SCHEDULE_USER
ddeb8f21
AH
1535 DISABLE_INTERRUPTS(CLBR_ANY)
1536 TRACE_IRQS_OFF
1537 jmp paranoid_userspace
1538 CFI_ENDPROC
1539END(paranoid_exit)
1540
1541/*
1542 * Exception entry point. This expects an error code/orig_rax on the stack.
1543 * returns in "no swapgs flag" in %ebx.
1544 */
1545ENTRY(error_entry)
1546 XCPT_FRAME
1547 CFI_ADJUST_CFA_OFFSET 15*8
1548 /* oldrax contains error code */
1549 cld
1550 movq_cfi rdi, RDI+8
1551 movq_cfi rsi, RSI+8
1552 movq_cfi rdx, RDX+8
1553 movq_cfi rcx, RCX+8
1554 movq_cfi rax, RAX+8
1555 movq_cfi r8, R8+8
1556 movq_cfi r9, R9+8
1557 movq_cfi r10, R10+8
1558 movq_cfi r11, R11+8
1559 movq_cfi rbx, RBX+8
1560 movq_cfi rbp, RBP+8
1561 movq_cfi r12, R12+8
1562 movq_cfi r13, R13+8
1563 movq_cfi r14, R14+8
1564 movq_cfi r15, R15+8
1565 xorl %ebx,%ebx
1566 testl $3,CS+8(%rsp)
1567 je error_kernelspace
1568error_swapgs:
1569 SWAPGS
1570error_sti:
1571 TRACE_IRQS_OFF
1572 ret
ddeb8f21
AH
1573
1574/*
1575 * There are two places in the kernel that can potentially fault with
1576 * usergs. Handle them here. The exception handlers after iret run with
1577 * kernel gs again, so don't set the user space flag. B stepping K8s
1578 * sometimes report an truncated RIP for IRET exceptions returning to
1579 * compat mode. Check for these here too.
1580 */
1581error_kernelspace:
1582 incl %ebx
1583 leaq irq_return(%rip),%rcx
1584 cmpq %rcx,RIP+8(%rsp)
1585 je error_swapgs
ae24ffe5
BG
1586 movl %ecx,%eax /* zero extend */
1587 cmpq %rax,RIP+8(%rsp)
1588 je bstep_iret
ddeb8f21 1589 cmpq $gs_change,RIP+8(%rsp)
9f1e87ea 1590 je error_swapgs
ddeb8f21 1591 jmp error_sti
ae24ffe5
BG
1592
1593bstep_iret:
1594 /* Fix truncated RIP */
1595 movq %rcx,RIP+8(%rsp)
97829de5 1596 jmp error_swapgs
e6b04b6b 1597 CFI_ENDPROC
ddeb8f21
AH
1598END(error_entry)
1599
1600
1601/* ebx: no swapgs flag (1: don't need swapgs, 0: need it) */
1602ENTRY(error_exit)
1603 DEFAULT_FRAME
1604 movl %ebx,%eax
1605 RESTORE_REST
1606 DISABLE_INTERRUPTS(CLBR_NONE)
1607 TRACE_IRQS_OFF
1608 GET_THREAD_INFO(%rcx)
1609 testl %eax,%eax
1610 jne retint_kernel
1611 LOCKDEP_SYS_EXIT_IRQ
1612 movl TI_flags(%rcx),%edx
1613 movl $_TIF_WORK_MASK,%edi
1614 andl %edi,%edx
1615 jnz retint_careful
1616 jmp retint_swapgs
1617 CFI_ENDPROC
1618END(error_exit)
1619
3f3c8b8c
SR
1620/*
1621 * Test if a given stack is an NMI stack or not.
1622 */
1623 .macro test_in_nmi reg stack nmi_ret normal_ret
1624 cmpq %\reg, \stack
1625 ja \normal_ret
1626 subq $EXCEPTION_STKSZ, %\reg
1627 cmpq %\reg, \stack
1628 jb \normal_ret
1629 jmp \nmi_ret
1630 .endm
ddeb8f21
AH
1631
1632 /* runs on exception stack */
1633ENTRY(nmi)
1634 INTR_FRAME
1635 PARAVIRT_ADJUST_EXCEPTION_FRAME
3f3c8b8c
SR
1636 /*
1637 * We allow breakpoints in NMIs. If a breakpoint occurs, then
1638 * the iretq it performs will take us out of NMI context.
1639 * This means that we can have nested NMIs where the next
1640 * NMI is using the top of the stack of the previous NMI. We
1641 * can't let it execute because the nested NMI will corrupt the
1642 * stack of the previous NMI. NMI handlers are not re-entrant
1643 * anyway.
1644 *
1645 * To handle this case we do the following:
1646 * Check the a special location on the stack that contains
1647 * a variable that is set when NMIs are executing.
1648 * The interrupted task's stack is also checked to see if it
1649 * is an NMI stack.
1650 * If the variable is not set and the stack is not the NMI
1651 * stack then:
1652 * o Set the special variable on the stack
1653 * o Copy the interrupt frame into a "saved" location on the stack
1654 * o Copy the interrupt frame into a "copy" location on the stack
1655 * o Continue processing the NMI
1656 * If the variable is set or the previous stack is the NMI stack:
1657 * o Modify the "copy" location to jump to the repeate_nmi
1658 * o return back to the first NMI
1659 *
1660 * Now on exit of the first NMI, we first clear the stack variable
1661 * The NMI stack will tell any nested NMIs at that point that it is
1662 * nested. Then we pop the stack normally with iret, and if there was
1663 * a nested NMI that updated the copy interrupt stack frame, a
1664 * jump will be made to the repeat_nmi code that will handle the second
1665 * NMI.
1666 */
1667
1668 /* Use %rdx as out temp variable throughout */
1669 pushq_cfi %rdx
62610913 1670 CFI_REL_OFFSET rdx, 0
3f3c8b8c 1671
45d5a168
SR
1672 /*
1673 * If %cs was not the kernel segment, then the NMI triggered in user
1674 * space, which means it is definitely not nested.
1675 */
a38449ef 1676 cmpl $__KERNEL_CS, 16(%rsp)
45d5a168
SR
1677 jne first_nmi
1678
3f3c8b8c
SR
1679 /*
1680 * Check the special variable on the stack to see if NMIs are
1681 * executing.
1682 */
a38449ef 1683 cmpl $1, -8(%rsp)
3f3c8b8c
SR
1684 je nested_nmi
1685
1686 /*
1687 * Now test if the previous stack was an NMI stack.
1688 * We need the double check. We check the NMI stack to satisfy the
1689 * race when the first NMI clears the variable before returning.
1690 * We check the variable because the first NMI could be in a
1691 * breakpoint routine using a breakpoint stack.
1692 */
1693 lea 6*8(%rsp), %rdx
1694 test_in_nmi rdx, 4*8(%rsp), nested_nmi, first_nmi
62610913 1695 CFI_REMEMBER_STATE
3f3c8b8c
SR
1696
1697nested_nmi:
1698 /*
1699 * Do nothing if we interrupted the fixup in repeat_nmi.
1700 * It's about to repeat the NMI handler, so we are fine
1701 * with ignoring this one.
1702 */
1703 movq $repeat_nmi, %rdx
1704 cmpq 8(%rsp), %rdx
1705 ja 1f
1706 movq $end_repeat_nmi, %rdx
1707 cmpq 8(%rsp), %rdx
1708 ja nested_nmi_out
1709
17101:
1711 /* Set up the interrupted NMIs stack to jump to repeat_nmi */
28696f43 1712 leaq -1*8(%rsp), %rdx
3f3c8b8c 1713 movq %rdx, %rsp
28696f43
SQ
1714 CFI_ADJUST_CFA_OFFSET 1*8
1715 leaq -10*8(%rsp), %rdx
3f3c8b8c
SR
1716 pushq_cfi $__KERNEL_DS
1717 pushq_cfi %rdx
1718 pushfq_cfi
1719 pushq_cfi $__KERNEL_CS
1720 pushq_cfi $repeat_nmi
1721
1722 /* Put stack back */
28696f43
SQ
1723 addq $(6*8), %rsp
1724 CFI_ADJUST_CFA_OFFSET -6*8
3f3c8b8c
SR
1725
1726nested_nmi_out:
1727 popq_cfi %rdx
62610913 1728 CFI_RESTORE rdx
3f3c8b8c
SR
1729
1730 /* No need to check faults here */
1731 INTERRUPT_RETURN
1732
62610913 1733 CFI_RESTORE_STATE
3f3c8b8c
SR
1734first_nmi:
1735 /*
1736 * Because nested NMIs will use the pushed location that we
1737 * stored in rdx, we must keep that space available.
1738 * Here's what our stack frame will look like:
1739 * +-------------------------+
1740 * | original SS |
1741 * | original Return RSP |
1742 * | original RFLAGS |
1743 * | original CS |
1744 * | original RIP |
1745 * +-------------------------+
1746 * | temp storage for rdx |
1747 * +-------------------------+
1748 * | NMI executing variable |
1749 * +-------------------------+
3f3c8b8c
SR
1750 * | copied SS |
1751 * | copied Return RSP |
1752 * | copied RFLAGS |
1753 * | copied CS |
1754 * | copied RIP |
1755 * +-------------------------+
28696f43
SQ
1756 * | Saved SS |
1757 * | Saved Return RSP |
1758 * | Saved RFLAGS |
1759 * | Saved CS |
1760 * | Saved RIP |
1761 * +-------------------------+
3f3c8b8c
SR
1762 * | pt_regs |
1763 * +-------------------------+
1764 *
79fb4ad6
SR
1765 * The saved stack frame is used to fix up the copied stack frame
1766 * that a nested NMI may change to make the interrupted NMI iret jump
1767 * to the repeat_nmi. The original stack frame and the temp storage
3f3c8b8c
SR
1768 * is also used by nested NMIs and can not be trusted on exit.
1769 */
79fb4ad6 1770 /* Do not pop rdx, nested NMIs will corrupt that part of the stack */
62610913
JB
1771 movq (%rsp), %rdx
1772 CFI_RESTORE rdx
1773
3f3c8b8c
SR
1774 /* Set the NMI executing variable on the stack. */
1775 pushq_cfi $1
1776
28696f43
SQ
1777 /*
1778 * Leave room for the "copied" frame
1779 */
1780 subq $(5*8), %rsp
444723dc 1781 CFI_ADJUST_CFA_OFFSET 5*8
28696f43 1782
3f3c8b8c
SR
1783 /* Copy the stack frame to the Saved frame */
1784 .rept 5
28696f43 1785 pushq_cfi 11*8(%rsp)
3f3c8b8c 1786 .endr
62610913
JB
1787 CFI_DEF_CFA_OFFSET SS+8-RIP
1788
79fb4ad6
SR
1789 /* Everything up to here is safe from nested NMIs */
1790
62610913
JB
1791 /*
1792 * If there was a nested NMI, the first NMI's iret will return
1793 * here. But NMIs are still enabled and we can take another
1794 * nested NMI. The nested NMI checks the interrupted RIP to see
1795 * if it is between repeat_nmi and end_repeat_nmi, and if so
1796 * it will just return, as we are about to repeat an NMI anyway.
1797 * This makes it safe to copy to the stack frame that a nested
1798 * NMI will update.
1799 */
1800repeat_nmi:
1801 /*
1802 * Update the stack variable to say we are still in NMI (the update
1803 * is benign for the non-repeat case, where 1 was pushed just above
1804 * to this very stack slot).
1805 */
28696f43 1806 movq $1, 10*8(%rsp)
3f3c8b8c
SR
1807
1808 /* Make another copy, this one may be modified by nested NMIs */
28696f43
SQ
1809 addq $(10*8), %rsp
1810 CFI_ADJUST_CFA_OFFSET -10*8
3f3c8b8c 1811 .rept 5
28696f43 1812 pushq_cfi -6*8(%rsp)
3f3c8b8c 1813 .endr
28696f43 1814 subq $(5*8), %rsp
62610913
JB
1815 CFI_DEF_CFA_OFFSET SS+8-RIP
1816end_repeat_nmi:
3f3c8b8c
SR
1817
1818 /*
1819 * Everything below this point can be preempted by a nested
79fb4ad6
SR
1820 * NMI if the first NMI took an exception and reset our iret stack
1821 * so that we repeat another NMI.
3f3c8b8c 1822 */
1fd466ef 1823 pushq_cfi $-1 /* ORIG_RAX: no syscall to restart */
b1cccb1b
JB
1824 subq $ORIG_RAX-R15, %rsp
1825 CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
1fd466ef
SR
1826 /*
1827 * Use save_paranoid to handle SWAPGS, but no need to use paranoid_exit
1828 * as we should not be calling schedule in NMI context.
1829 * Even with normal interrupts enabled. An NMI should not be
1830 * setting NEED_RESCHED or anything that normal interrupts and
1831 * exceptions might do.
1832 */
ddeb8f21
AH
1833 call save_paranoid
1834 DEFAULT_FRAME 0
7fbb98c5
SR
1835
1836 /*
1837 * Save off the CR2 register. If we take a page fault in the NMI then
1838 * it could corrupt the CR2 value. If the NMI preempts a page fault
1839 * handler before it was able to read the CR2 register, and then the
1840 * NMI itself takes a page fault, the page fault that was preempted
1841 * will read the information from the NMI page fault and not the
1842 * origin fault. Save it off and restore it if it changes.
1843 * Use the r12 callee-saved register.
1844 */
1845 movq %cr2, %r12
1846
ddeb8f21
AH
1847 /* paranoidentry do_nmi, 0; without TRACE_IRQS_OFF */
1848 movq %rsp,%rdi
1849 movq $-1,%rsi
1850 call do_nmi
7fbb98c5
SR
1851
1852 /* Did the NMI take a page fault? Restore cr2 if it did */
1853 movq %cr2, %rcx
1854 cmpq %rcx, %r12
1855 je 1f
1856 movq %r12, %cr2
18571:
1858
ddeb8f21
AH
1859 testl %ebx,%ebx /* swapgs needed? */
1860 jnz nmi_restore
ddeb8f21
AH
1861nmi_swapgs:
1862 SWAPGS_UNSAFE_STACK
1863nmi_restore:
444723dc
JB
1864 /* Pop the extra iret frame at once */
1865 RESTORE_ALL 6*8
28696f43 1866
3f3c8b8c 1867 /* Clear the NMI executing stack variable */
28696f43 1868 movq $0, 5*8(%rsp)
ddeb8f21 1869 jmp irq_return
9f1e87ea 1870 CFI_ENDPROC
ddeb8f21
AH
1871END(nmi)
1872
1873ENTRY(ignore_sysret)
1874 CFI_STARTPROC
1875 mov $-ENOSYS,%eax
1876 sysret
1877 CFI_ENDPROC
1878END(ignore_sysret)
1879
1880/*
1881 * End of kprobes section
1882 */
1883 .popsection
This page took 0.838585 seconds and 5 git commands to generate.