]>
Commit | Line | Data |
---|---|---|
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 <[email protected]> | |
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 | 16 | * |
0bd7b798 | 17 | * A note on terminology: |
7fcb3bc3 | 18 | * - iret frame: Architecture defined interrupt frame from SS to RIP |
0bd7b798 | 19 | * at the top of the kernel process stack. |
2e91a17b AK |
20 | * |
21 | * Some macro usage: | |
22 | * - CFI macros are used to generate dwarf2 unwind information for better | |
23 | * backtraces. They don't change any code. | |
2e91a17b | 24 | * - ENTRY/END Define functions in the symbol table. |
2e91a17b | 25 | * - TRACE_IRQ_* - Trace hard interrupt state for lock debugging. |
cb5dd2c5 | 26 | * - idtentry - Define exception entry points. |
1da177e4 LT |
27 | */ |
28 | ||
1da177e4 LT |
29 | #include <linux/linkage.h> |
30 | #include <asm/segment.h> | |
1da177e4 LT |
31 | #include <asm/cache.h> |
32 | #include <asm/errno.h> | |
33 | #include <asm/dwarf2.h> | |
34 | #include <asm/calling.h> | |
e2d5df93 | 35 | #include <asm/asm-offsets.h> |
1da177e4 LT |
36 | #include <asm/msr.h> |
37 | #include <asm/unistd.h> | |
38 | #include <asm/thread_info.h> | |
39 | #include <asm/hw_irq.h> | |
0341c14d | 40 | #include <asm/page_types.h> |
2601e64d | 41 | #include <asm/irqflags.h> |
72fe4858 | 42 | #include <asm/paravirt.h> |
9939ddaf | 43 | #include <asm/percpu.h> |
d7abc0fa | 44 | #include <asm/asm.h> |
91d1aa43 | 45 | #include <asm/context_tracking.h> |
63bcff2a | 46 | #include <asm/smap.h> |
3891a04a | 47 | #include <asm/pgtable_types.h> |
d7e7528b | 48 | #include <linux/err.h> |
1da177e4 | 49 | |
86a1c34a RM |
50 | /* Avoid __ASSEMBLER__'ifying <linux/audit.h> just for this. */ |
51 | #include <linux/elf-em.h> | |
52 | #define AUDIT_ARCH_X86_64 (EM_X86_64|__AUDIT_ARCH_64BIT|__AUDIT_ARCH_LE) | |
53 | #define __AUDIT_ARCH_64BIT 0x80000000 | |
54 | #define __AUDIT_ARCH_LE 0x40000000 | |
55 | ||
1da177e4 | 56 | .code64 |
ea714547 JO |
57 | .section .entry.text, "ax" |
58 | ||
16444a8a | 59 | |
72fe4858 | 60 | #ifdef CONFIG_PARAVIRT |
2be29982 | 61 | ENTRY(native_usergs_sysret64) |
72fe4858 GOC |
62 | swapgs |
63 | sysretq | |
b3baaa13 | 64 | ENDPROC(native_usergs_sysret64) |
72fe4858 GOC |
65 | #endif /* CONFIG_PARAVIRT */ |
66 | ||
2601e64d | 67 | |
f2db9382 | 68 | .macro TRACE_IRQS_IRETQ |
2601e64d | 69 | #ifdef CONFIG_TRACE_IRQFLAGS |
f2db9382 | 70 | bt $9,EFLAGS(%rsp) /* interrupts off? */ |
2601e64d IM |
71 | jnc 1f |
72 | TRACE_IRQS_ON | |
73 | 1: | |
74 | #endif | |
75 | .endm | |
76 | ||
5963e317 SR |
77 | /* |
78 | * When dynamic function tracer is enabled it will add a breakpoint | |
79 | * to all locations that it is about to modify, sync CPUs, update | |
80 | * all the code, sync CPUs, then remove the breakpoints. In this time | |
81 | * if lockdep is enabled, it might jump back into the debug handler | |
82 | * outside the updating of the IST protection. (TRACE_IRQS_ON/OFF). | |
83 | * | |
84 | * We need to change the IDT table before calling TRACE_IRQS_ON/OFF to | |
85 | * make sure the stack pointer does not get reset back to the top | |
86 | * of the debug stack, and instead just reuses the current stack. | |
87 | */ | |
88 | #if defined(CONFIG_DYNAMIC_FTRACE) && defined(CONFIG_TRACE_IRQFLAGS) | |
89 | ||
90 | .macro TRACE_IRQS_OFF_DEBUG | |
91 | call debug_stack_set_zero | |
92 | TRACE_IRQS_OFF | |
93 | call debug_stack_reset | |
94 | .endm | |
95 | ||
96 | .macro TRACE_IRQS_ON_DEBUG | |
97 | call debug_stack_set_zero | |
98 | TRACE_IRQS_ON | |
99 | call debug_stack_reset | |
100 | .endm | |
101 | ||
f2db9382 DV |
102 | .macro TRACE_IRQS_IRETQ_DEBUG |
103 | bt $9,EFLAGS(%rsp) /* interrupts off? */ | |
5963e317 SR |
104 | jnc 1f |
105 | TRACE_IRQS_ON_DEBUG | |
106 | 1: | |
107 | .endm | |
108 | ||
109 | #else | |
110 | # define TRACE_IRQS_OFF_DEBUG TRACE_IRQS_OFF | |
111 | # define TRACE_IRQS_ON_DEBUG TRACE_IRQS_ON | |
112 | # define TRACE_IRQS_IRETQ_DEBUG TRACE_IRQS_IRETQ | |
113 | #endif | |
114 | ||
dcd072e2 | 115 | /* |
e90e147c | 116 | * empty frame |
dcd072e2 AH |
117 | */ |
118 | .macro EMPTY_FRAME start=1 offset=0 | |
7effaa88 | 119 | .if \start |
dcd072e2 | 120 | CFI_STARTPROC simple |
adf14236 | 121 | CFI_SIGNAL_FRAME |
dcd072e2 | 122 | CFI_DEF_CFA rsp,8+\offset |
7effaa88 | 123 | .else |
dcd072e2 | 124 | CFI_DEF_CFA_OFFSET 8+\offset |
7effaa88 | 125 | .endif |
1da177e4 | 126 | .endm |
d99015b1 AH |
127 | |
128 | /* | |
dcd072e2 | 129 | * initial frame state for interrupts (and exceptions without error code) |
d99015b1 | 130 | */ |
dcd072e2 | 131 | .macro INTR_FRAME start=1 offset=0 |
911d2bb5 DV |
132 | EMPTY_FRAME \start, 5*8+\offset |
133 | /*CFI_REL_OFFSET ss, 4*8+\offset*/ | |
134 | CFI_REL_OFFSET rsp, 3*8+\offset | |
135 | /*CFI_REL_OFFSET rflags, 2*8+\offset*/ | |
136 | /*CFI_REL_OFFSET cs, 1*8+\offset*/ | |
137 | CFI_REL_OFFSET rip, 0*8+\offset | |
d99015b1 AH |
138 | .endm |
139 | ||
d99015b1 AH |
140 | /* |
141 | * initial frame state for exceptions with error code (and interrupts | |
142 | * with vector already pushed) | |
143 | */ | |
dcd072e2 | 144 | .macro XCPT_FRAME start=1 offset=0 |
911d2bb5 | 145 | INTR_FRAME \start, 1*8+\offset |
dcd072e2 AH |
146 | .endm |
147 | ||
148 | /* | |
76f5df43 | 149 | * frame that enables passing a complete pt_regs to a C function. |
dcd072e2 | 150 | */ |
76f5df43 | 151 | .macro DEFAULT_FRAME start=1 offset=0 |
f2db9382 DV |
152 | XCPT_FRAME \start, ORIG_RAX+\offset |
153 | CFI_REL_OFFSET rdi, RDI+\offset | |
154 | CFI_REL_OFFSET rsi, RSI+\offset | |
155 | CFI_REL_OFFSET rdx, RDX+\offset | |
156 | CFI_REL_OFFSET rcx, RCX+\offset | |
157 | CFI_REL_OFFSET rax, RAX+\offset | |
158 | CFI_REL_OFFSET r8, R8+\offset | |
159 | CFI_REL_OFFSET r9, R9+\offset | |
160 | CFI_REL_OFFSET r10, R10+\offset | |
161 | CFI_REL_OFFSET r11, R11+\offset | |
dcd072e2 AH |
162 | CFI_REL_OFFSET rbx, RBX+\offset |
163 | CFI_REL_OFFSET rbp, RBP+\offset | |
164 | CFI_REL_OFFSET r12, R12+\offset | |
165 | CFI_REL_OFFSET r13, R13+\offset | |
166 | CFI_REL_OFFSET r14, R14+\offset | |
167 | CFI_REL_OFFSET r15, R15+\offset | |
168 | .endm | |
d99015b1 | 169 | |
1da177e4 | 170 | /* |
b87cf63e | 171 | * 64bit SYSCALL instruction entry. Up to 6 arguments in registers. |
1da177e4 | 172 | * |
b87cf63e DV |
173 | * 64bit SYSCALL saves rip to rcx, clears rflags.RF, then saves rflags to r11, |
174 | * then loads new ss, cs, and rip from previously programmed MSRs. | |
175 | * rflags gets masked by a value from another MSR (so CLD and CLAC | |
176 | * are not needed). SYSCALL does not save anything on the stack | |
177 | * and does not change rsp. | |
178 | * | |
179 | * Registers on entry: | |
1da177e4 | 180 | * rax system call number |
b87cf63e DV |
181 | * rcx return address |
182 | * r11 saved rflags (note: r11 is callee-clobbered register in C ABI) | |
1da177e4 | 183 | * rdi arg0 |
1da177e4 | 184 | * rsi arg1 |
0bd7b798 | 185 | * rdx arg2 |
b87cf63e | 186 | * r10 arg3 (needs to be moved to rcx to conform to C ABI) |
1da177e4 LT |
187 | * r8 arg4 |
188 | * r9 arg5 | |
b87cf63e | 189 | * (note: r12-r15,rbp,rbx are callee-preserved in C ABI) |
0bd7b798 | 190 | * |
1da177e4 LT |
191 | * Only called from user space. |
192 | * | |
7fcb3bc3 | 193 | * When user can change pt_regs->foo always force IRET. That is because |
7bf36bbc AK |
194 | * it deals with uncanonical addresses better. SYSRET has trouble |
195 | * with them due to bugs in both AMD and Intel CPUs. | |
0bd7b798 | 196 | */ |
1da177e4 LT |
197 | |
198 | ENTRY(system_call) | |
7effaa88 | 199 | CFI_STARTPROC simple |
adf14236 | 200 | CFI_SIGNAL_FRAME |
ef593260 | 201 | CFI_DEF_CFA rsp,0 |
7effaa88 JB |
202 | CFI_REGISTER rip,rcx |
203 | /*CFI_REGISTER rflags,r11*/ | |
9ed8e7d8 DV |
204 | |
205 | /* | |
206 | * Interrupts are off on entry. | |
207 | * We do not frame this tiny irq-off block with TRACE_IRQS_OFF/ON, | |
208 | * it is too small to ever cause noticeable irq latency. | |
209 | */ | |
72fe4858 GOC |
210 | SWAPGS_UNSAFE_STACK |
211 | /* | |
212 | * A hypervisor implementation might want to use a label | |
213 | * after the swapgs, so that it can do the swapgs | |
214 | * for the guest and jump here on syscall. | |
215 | */ | |
f6b2bc84 | 216 | GLOBAL(system_call_after_swapgs) |
72fe4858 | 217 | |
c38e5038 | 218 | movq %rsp,PER_CPU_VAR(rsp_scratch) |
9af45651 | 219 | movq PER_CPU_VAR(kernel_stack),%rsp |
9ed8e7d8 DV |
220 | |
221 | /* Construct struct pt_regs on stack */ | |
222 | pushq_cfi $__USER_DS /* pt_regs->ss */ | |
223 | pushq_cfi PER_CPU_VAR(rsp_scratch) /* pt_regs->sp */ | |
33db1fd4 | 224 | /* |
9ed8e7d8 DV |
225 | * Re-enable interrupts. |
226 | * We use 'rsp_scratch' as a scratch space, hence irq-off block above | |
227 | * must execute atomically in the face of possible interrupt-driven | |
228 | * task preemption. We must enable interrupts only after we're done | |
229 | * with using rsp_scratch: | |
33db1fd4 DV |
230 | */ |
231 | ENABLE_INTERRUPTS(CLBR_NONE) | |
9ed8e7d8 DV |
232 | pushq_cfi %r11 /* pt_regs->flags */ |
233 | pushq_cfi $__USER_CS /* pt_regs->cs */ | |
234 | pushq_cfi %rcx /* pt_regs->ip */ | |
235 | CFI_REL_OFFSET rip,0 | |
236 | pushq_cfi_reg rax /* pt_regs->orig_ax */ | |
237 | pushq_cfi_reg rdi /* pt_regs->di */ | |
238 | pushq_cfi_reg rsi /* pt_regs->si */ | |
239 | pushq_cfi_reg rdx /* pt_regs->dx */ | |
240 | pushq_cfi_reg rcx /* pt_regs->cx */ | |
241 | pushq_cfi $-ENOSYS /* pt_regs->ax */ | |
242 | pushq_cfi_reg r8 /* pt_regs->r8 */ | |
243 | pushq_cfi_reg r9 /* pt_regs->r9 */ | |
244 | pushq_cfi_reg r10 /* pt_regs->r10 */ | |
a71ffdd7 DV |
245 | pushq_cfi_reg r11 /* pt_regs->r11 */ |
246 | sub $(6*8),%rsp /* pt_regs->bp,bx,r12-15 not saved */ | |
27be87c5 | 247 | CFI_ADJUST_CFA_OFFSET 6*8 |
9ed8e7d8 | 248 | |
dca5b52a | 249 | testl $_TIF_WORK_SYSCALL_ENTRY, ASM_THREAD_INFO(TI_flags, %rsp, SIZEOF_PTREGS) |
1da177e4 | 250 | jnz tracesys |
86a1c34a | 251 | system_call_fastpath: |
fca460f9 | 252 | #if __SYSCALL_MASK == ~0 |
1da177e4 | 253 | cmpq $__NR_syscall_max,%rax |
fca460f9 PA |
254 | #else |
255 | andl $__SYSCALL_MASK,%eax | |
256 | cmpl $__NR_syscall_max,%eax | |
257 | #endif | |
146b2b09 | 258 | ja 1f /* return -ENOSYS (already in pt_regs->ax) */ |
1da177e4 | 259 | movq %r10,%rcx |
146b2b09 | 260 | call *sys_call_table(,%rax,8) |
f2db9382 | 261 | movq %rax,RAX(%rsp) |
146b2b09 | 262 | 1: |
1da177e4 | 263 | /* |
146b2b09 DV |
264 | * Syscall return path ending with SYSRET (fast path). |
265 | * Has incompletely filled pt_regs. | |
0bd7b798 | 266 | */ |
10cd706d | 267 | LOCKDEP_SYS_EXIT |
4416c5a6 DV |
268 | /* |
269 | * We do not frame this tiny irq-off block with TRACE_IRQS_OFF/ON, | |
270 | * it is too small to ever cause noticeable irq latency. | |
271 | */ | |
72fe4858 | 272 | DISABLE_INTERRUPTS(CLBR_NONE) |
b3494a4a AL |
273 | |
274 | /* | |
275 | * We must check ti flags with interrupts (or at least preemption) | |
276 | * off because we must *never* return to userspace without | |
277 | * processing exit work that is enqueued if we're preempted here. | |
278 | * In particular, returning to userspace with any of the one-shot | |
279 | * flags (TIF_NOTIFY_RESUME, TIF_USER_RETURN_NOTIFY, etc) set is | |
280 | * very bad. | |
281 | */ | |
06ab9c1b IM |
282 | testl $_TIF_ALLWORK_MASK, ASM_THREAD_INFO(TI_flags, %rsp, SIZEOF_PTREGS) |
283 | jnz int_ret_from_sys_call_irqs_off /* Go to the slow path */ | |
b3494a4a | 284 | |
bcddc015 | 285 | CFI_REMEMBER_STATE |
4416c5a6 | 286 | |
29722cd4 DV |
287 | RESTORE_C_REGS_EXCEPT_RCX_R11 |
288 | movq RIP(%rsp),%rcx | |
7effaa88 | 289 | CFI_REGISTER rip,rcx |
29722cd4 | 290 | movq EFLAGS(%rsp),%r11 |
7effaa88 | 291 | /*CFI_REGISTER rflags,r11*/ |
263042e4 | 292 | movq RSP(%rsp),%rsp |
b87cf63e DV |
293 | /* |
294 | * 64bit SYSRET restores rip from rcx, | |
295 | * rflags from r11 (but RF and VM bits are forced to 0), | |
296 | * cs and ss are loaded from MSRs. | |
4416c5a6 | 297 | * Restoration of rflags re-enables interrupts. |
61f01dd9 AL |
298 | * |
299 | * NB: On AMD CPUs with the X86_BUG_SYSRET_SS_ATTRS bug, the ss | |
300 | * descriptor is not reinitialized. This means that we should | |
301 | * avoid SYSRET with SS == NULL, which could happen if we schedule, | |
302 | * exit the kernel, and re-enter using an interrupt vector. (All | |
303 | * interrupt entries on x86_64 set SS to NULL.) We prevent that | |
304 | * from happening by reloading SS in __switch_to. (Actually | |
305 | * detecting the failure in 64-bit userspace is tricky but can be | |
306 | * done.) | |
b87cf63e | 307 | */ |
2be29982 | 308 | USERGS_SYSRET64 |
1da177e4 | 309 | |
bcddc015 | 310 | CFI_RESTORE_STATE |
1da177e4 | 311 | |
7fcb3bc3 | 312 | /* Do syscall entry tracing */ |
0bd7b798 | 313 | tracesys: |
76f5df43 | 314 | movq %rsp, %rdi |
47eb582e | 315 | movl $AUDIT_ARCH_X86_64, %esi |
1dcf74f6 AL |
316 | call syscall_trace_enter_phase1 |
317 | test %rax, %rax | |
318 | jnz tracesys_phase2 /* if needed, run the slow path */ | |
76f5df43 | 319 | RESTORE_C_REGS_EXCEPT_RAX /* else restore clobbered regs */ |
f2db9382 | 320 | movq ORIG_RAX(%rsp), %rax |
1dcf74f6 AL |
321 | jmp system_call_fastpath /* and return to the fast path */ |
322 | ||
323 | tracesys_phase2: | |
76f5df43 | 324 | SAVE_EXTRA_REGS |
1dcf74f6 | 325 | movq %rsp, %rdi |
47eb582e | 326 | movl $AUDIT_ARCH_X86_64, %esi |
1dcf74f6 AL |
327 | movq %rax,%rdx |
328 | call syscall_trace_enter_phase2 | |
329 | ||
d4d67150 | 330 | /* |
e90e147c | 331 | * Reload registers from stack in case ptrace changed them. |
1dcf74f6 | 332 | * We don't reload %rax because syscall_trace_entry_phase2() returned |
d4d67150 RM |
333 | * the value it wants us to use in the table lookup. |
334 | */ | |
76f5df43 DV |
335 | RESTORE_C_REGS_EXCEPT_RAX |
336 | RESTORE_EXTRA_REGS | |
fca460f9 | 337 | #if __SYSCALL_MASK == ~0 |
1da177e4 | 338 | cmpq $__NR_syscall_max,%rax |
fca460f9 PA |
339 | #else |
340 | andl $__SYSCALL_MASK,%eax | |
341 | cmpl $__NR_syscall_max,%eax | |
342 | #endif | |
a6de5a21 | 343 | ja 1f /* return -ENOSYS (already in pt_regs->ax) */ |
1da177e4 LT |
344 | movq %r10,%rcx /* fixup for C */ |
345 | call *sys_call_table(,%rax,8) | |
f2db9382 | 346 | movq %rax,RAX(%rsp) |
a6de5a21 | 347 | 1: |
7fcb3bc3 | 348 | /* Use IRET because user could have changed pt_regs->foo */ |
0bd7b798 AH |
349 | |
350 | /* | |
1da177e4 | 351 | * Syscall return path ending with IRET. |
7fcb3bc3 | 352 | * Has correct iret frame. |
bcddc015 | 353 | */ |
bc8b2b92 | 354 | GLOBAL(int_ret_from_sys_call) |
72fe4858 | 355 | DISABLE_INTERRUPTS(CLBR_NONE) |
4416c5a6 | 356 | int_ret_from_sys_call_irqs_off: /* jumps come here from the irqs-off SYSRET path */ |
2601e64d | 357 | TRACE_IRQS_OFF |
1da177e4 LT |
358 | movl $_TIF_ALLWORK_MASK,%edi |
359 | /* edi: mask to check */ | |
bc8b2b92 | 360 | GLOBAL(int_with_check) |
10cd706d | 361 | LOCKDEP_SYS_EXIT_IRQ |
1da177e4 | 362 | GET_THREAD_INFO(%rcx) |
26ccb8a7 | 363 | movl TI_flags(%rcx),%edx |
1da177e4 LT |
364 | andl %edi,%edx |
365 | jnz int_careful | |
fffbb5dc DV |
366 | andl $~TS_COMPAT,TI_status(%rcx) |
367 | jmp syscall_return | |
1da177e4 LT |
368 | |
369 | /* Either reschedule or signal or syscall exit tracking needed. */ | |
370 | /* First do a reschedule test. */ | |
371 | /* edx: work, edi: workmask */ | |
372 | int_careful: | |
373 | bt $TIF_NEED_RESCHED,%edx | |
374 | jnc int_very_careful | |
2601e64d | 375 | TRACE_IRQS_ON |
72fe4858 | 376 | ENABLE_INTERRUPTS(CLBR_NONE) |
df5d1874 | 377 | pushq_cfi %rdi |
0430499c | 378 | SCHEDULE_USER |
df5d1874 | 379 | popq_cfi %rdi |
72fe4858 | 380 | DISABLE_INTERRUPTS(CLBR_NONE) |
2601e64d | 381 | TRACE_IRQS_OFF |
1da177e4 LT |
382 | jmp int_with_check |
383 | ||
7fcb3bc3 | 384 | /* handle signals and tracing -- both require a full pt_regs */ |
1da177e4 | 385 | int_very_careful: |
2601e64d | 386 | TRACE_IRQS_ON |
72fe4858 | 387 | ENABLE_INTERRUPTS(CLBR_NONE) |
76f5df43 | 388 | SAVE_EXTRA_REGS |
0bd7b798 | 389 | /* Check for syscall exit trace */ |
d4d67150 | 390 | testl $_TIF_WORK_SYSCALL_EXIT,%edx |
1da177e4 | 391 | jz int_signal |
df5d1874 | 392 | pushq_cfi %rdi |
0bd7b798 | 393 | leaq 8(%rsp),%rdi # &ptregs -> arg1 |
1da177e4 | 394 | call syscall_trace_leave |
df5d1874 | 395 | popq_cfi %rdi |
d4d67150 | 396 | andl $~(_TIF_WORK_SYSCALL_EXIT|_TIF_SYSCALL_EMU),%edi |
1da177e4 | 397 | jmp int_restore_rest |
0bd7b798 | 398 | |
1da177e4 | 399 | int_signal: |
8f4d37ec | 400 | testl $_TIF_DO_NOTIFY_MASK,%edx |
1da177e4 LT |
401 | jz 1f |
402 | movq %rsp,%rdi # &ptregs -> arg1 | |
403 | xorl %esi,%esi # oldset -> arg2 | |
404 | call do_notify_resume | |
eca91e78 | 405 | 1: movl $_TIF_WORK_MASK,%edi |
1da177e4 | 406 | int_restore_rest: |
76f5df43 | 407 | RESTORE_EXTRA_REGS |
72fe4858 | 408 | DISABLE_INTERRUPTS(CLBR_NONE) |
2601e64d | 409 | TRACE_IRQS_OFF |
1da177e4 | 410 | jmp int_with_check |
fffbb5dc DV |
411 | |
412 | syscall_return: | |
413 | /* The IRETQ could re-enable interrupts: */ | |
414 | DISABLE_INTERRUPTS(CLBR_ANY) | |
415 | TRACE_IRQS_IRETQ | |
416 | ||
417 | /* | |
418 | * Try to use SYSRET instead of IRET if we're returning to | |
419 | * a completely clean 64-bit userspace context. | |
420 | */ | |
421 | movq RCX(%rsp),%rcx | |
422 | cmpq %rcx,RIP(%rsp) /* RCX == RIP */ | |
423 | jne opportunistic_sysret_failed | |
424 | ||
425 | /* | |
426 | * On Intel CPUs, SYSRET with non-canonical RCX/RIP will #GP | |
427 | * in kernel space. This essentially lets the user take over | |
428 | * the kernel, since userspace controls RSP. It's not worth | |
429 | * testing for canonicalness exactly -- this check detects any | |
430 | * of the 17 high bits set, which is true for non-canonical | |
431 | * or kernel addresses. (This will pessimize vsyscall=native. | |
432 | * Big deal.) | |
433 | * | |
434 | * If virtual addresses ever become wider, this will need | |
435 | * to be updated to remain correct on both old and new CPUs. | |
436 | */ | |
437 | .ifne __VIRTUAL_MASK_SHIFT - 47 | |
438 | .error "virtual address width changed -- SYSRET checks need update" | |
439 | .endif | |
440 | shr $__VIRTUAL_MASK_SHIFT, %rcx | |
441 | jnz opportunistic_sysret_failed | |
442 | ||
443 | cmpq $__USER_CS,CS(%rsp) /* CS must match SYSRET */ | |
444 | jne opportunistic_sysret_failed | |
445 | ||
446 | movq R11(%rsp),%r11 | |
447 | cmpq %r11,EFLAGS(%rsp) /* R11 == RFLAGS */ | |
448 | jne opportunistic_sysret_failed | |
449 | ||
450 | /* | |
451 | * SYSRET can't restore RF. SYSRET can restore TF, but unlike IRET, | |
452 | * restoring TF results in a trap from userspace immediately after | |
453 | * SYSRET. This would cause an infinite loop whenever #DB happens | |
454 | * with register state that satisfies the opportunistic SYSRET | |
455 | * conditions. For example, single-stepping this user code: | |
456 | * | |
457 | * movq $stuck_here,%rcx | |
458 | * pushfq | |
459 | * popq %r11 | |
460 | * stuck_here: | |
461 | * | |
462 | * would never get past 'stuck_here'. | |
463 | */ | |
464 | testq $(X86_EFLAGS_RF|X86_EFLAGS_TF), %r11 | |
465 | jnz opportunistic_sysret_failed | |
466 | ||
467 | /* nothing to check for RSP */ | |
468 | ||
469 | cmpq $__USER_DS,SS(%rsp) /* SS must match SYSRET */ | |
470 | jne opportunistic_sysret_failed | |
471 | ||
472 | /* | |
473 | * We win! This label is here just for ease of understanding | |
474 | * perf profiles. Nothing jumps here. | |
475 | */ | |
476 | syscall_return_via_sysret: | |
477 | CFI_REMEMBER_STATE | |
478 | /* r11 is already restored (see code above) */ | |
479 | RESTORE_C_REGS_EXCEPT_R11 | |
480 | movq RSP(%rsp),%rsp | |
481 | USERGS_SYSRET64 | |
482 | CFI_RESTORE_STATE | |
483 | ||
484 | opportunistic_sysret_failed: | |
485 | SWAPGS | |
486 | jmp restore_c_regs_and_iret | |
1da177e4 | 487 | CFI_ENDPROC |
bcddc015 | 488 | END(system_call) |
0bd7b798 | 489 | |
fffbb5dc | 490 | |
1d4b4b29 AV |
491 | .macro FORK_LIKE func |
492 | ENTRY(stub_\func) | |
493 | CFI_STARTPROC | |
76f5df43 DV |
494 | DEFAULT_FRAME 0, 8 /* offset 8: return address */ |
495 | SAVE_EXTRA_REGS 8 | |
772951c4 | 496 | jmp sys_\func |
1d4b4b29 AV |
497 | CFI_ENDPROC |
498 | END(stub_\func) | |
499 | .endm | |
500 | ||
501 | FORK_LIKE clone | |
502 | FORK_LIKE fork | |
503 | FORK_LIKE vfork | |
1da177e4 | 504 | |
1da177e4 LT |
505 | ENTRY(stub_execve) |
506 | CFI_STARTPROC | |
fc3e958a DV |
507 | DEFAULT_FRAME 0, 8 |
508 | call sys_execve | |
509 | return_from_execve: | |
510 | testl %eax, %eax | |
511 | jz 1f | |
512 | /* exec failed, can use fast SYSRET code path in this case */ | |
513 | ret | |
514 | 1: | |
515 | /* must use IRET code path (pt_regs->cs may have changed) */ | |
516 | addq $8, %rsp | |
8b3607b5 | 517 | CFI_ADJUST_CFA_OFFSET -8 |
fc3e958a DV |
518 | ZERO_EXTRA_REGS |
519 | movq %rax,RAX(%rsp) | |
520 | jmp int_ret_from_sys_call | |
1da177e4 | 521 | CFI_ENDPROC |
4b787e0b | 522 | END(stub_execve) |
a37f34a3 DV |
523 | /* |
524 | * Remaining execve stubs are only 7 bytes long. | |
525 | * ENTRY() often aligns to 16 bytes, which in this case has no benefits. | |
526 | */ | |
527 | .align 8 | |
528 | GLOBAL(stub_execveat) | |
27d6ec7a | 529 | CFI_STARTPROC |
fc3e958a DV |
530 | DEFAULT_FRAME 0, 8 |
531 | call sys_execveat | |
532 | jmp return_from_execve | |
27d6ec7a DD |
533 | CFI_ENDPROC |
534 | END(stub_execveat) | |
535 | ||
05f1752d | 536 | #ifdef CONFIG_X86_X32_ABI |
a37f34a3 DV |
537 | .align 8 |
538 | GLOBAL(stub_x32_execve) | |
05f1752d DV |
539 | CFI_STARTPROC |
540 | DEFAULT_FRAME 0, 8 | |
541 | call compat_sys_execve | |
542 | jmp return_from_execve | |
543 | CFI_ENDPROC | |
544 | END(stub_x32_execve) | |
a37f34a3 DV |
545 | .align 8 |
546 | GLOBAL(stub_x32_execveat) | |
05f1752d DV |
547 | CFI_STARTPROC |
548 | DEFAULT_FRAME 0, 8 | |
549 | call compat_sys_execveat | |
550 | jmp return_from_execve | |
551 | CFI_ENDPROC | |
552 | END(stub_x32_execveat) | |
553 | #endif | |
554 | ||
0f90fb97 | 555 | #ifdef CONFIG_IA32_EMULATION |
a37f34a3 DV |
556 | .align 8 |
557 | GLOBAL(stub32_execve) | |
0f90fb97 DV |
558 | CFI_STARTPROC |
559 | call compat_sys_execve | |
560 | jmp return_from_execve | |
561 | CFI_ENDPROC | |
562 | END(stub32_execve) | |
a37f34a3 DV |
563 | .align 8 |
564 | GLOBAL(stub32_execveat) | |
0f90fb97 DV |
565 | CFI_STARTPROC |
566 | call compat_sys_execveat | |
567 | jmp return_from_execve | |
568 | CFI_ENDPROC | |
569 | END(stub32_execveat) | |
570 | #endif | |
571 | ||
1da177e4 LT |
572 | /* |
573 | * sigreturn is special because it needs to restore all registers on return. | |
574 | * This cannot be done with SYSRET, so use the IRET return path instead. | |
0bd7b798 | 575 | */ |
1da177e4 LT |
576 | ENTRY(stub_rt_sigreturn) |
577 | CFI_STARTPROC | |
31f0119b DV |
578 | DEFAULT_FRAME 0, 8 |
579 | /* | |
580 | * SAVE_EXTRA_REGS result is not normally needed: | |
581 | * sigreturn overwrites all pt_regs->GPREGS. | |
582 | * But sigreturn can fail (!), and there is no easy way to detect that. | |
583 | * To make sure RESTORE_EXTRA_REGS doesn't restore garbage on error, | |
584 | * we SAVE_EXTRA_REGS here. | |
585 | */ | |
586 | SAVE_EXTRA_REGS 8 | |
1da177e4 | 587 | call sys_rt_sigreturn |
31f0119b DV |
588 | return_from_stub: |
589 | addq $8, %rsp | |
590 | CFI_ADJUST_CFA_OFFSET -8 | |
76f5df43 | 591 | RESTORE_EXTRA_REGS |
31f0119b | 592 | movq %rax,RAX(%rsp) |
1da177e4 LT |
593 | jmp int_ret_from_sys_call |
594 | CFI_ENDPROC | |
4b787e0b | 595 | END(stub_rt_sigreturn) |
1da177e4 | 596 | |
c5a37394 | 597 | #ifdef CONFIG_X86_X32_ABI |
c5a37394 PA |
598 | ENTRY(stub_x32_rt_sigreturn) |
599 | CFI_STARTPROC | |
31f0119b DV |
600 | DEFAULT_FRAME 0, 8 |
601 | SAVE_EXTRA_REGS 8 | |
c5a37394 | 602 | call sys32_x32_rt_sigreturn |
31f0119b | 603 | jmp return_from_stub |
c5a37394 PA |
604 | CFI_ENDPROC |
605 | END(stub_x32_rt_sigreturn) | |
c5a37394 PA |
606 | #endif |
607 | ||
1eeb207f DV |
608 | /* |
609 | * A newly forked process directly context switches into this address. | |
610 | * | |
611 | * rdi: prev task we switched from | |
612 | */ | |
613 | ENTRY(ret_from_fork) | |
614 | DEFAULT_FRAME | |
615 | ||
616 | LOCK ; btr $TIF_FORK,TI_flags(%r8) | |
617 | ||
618 | pushq_cfi $0x0002 | |
619 | popfq_cfi # reset kernel eflags | |
620 | ||
621 | call schedule_tail # rdi: 'prev' task parameter | |
622 | ||
1eeb207f DV |
623 | RESTORE_EXTRA_REGS |
624 | ||
625 | testl $3,CS(%rsp) # from kernel_thread? | |
1eeb207f | 626 | |
1e3fbb8a AL |
627 | /* |
628 | * By the time we get here, we have no idea whether our pt_regs, | |
629 | * ti flags, and ti status came from the 64-bit SYSCALL fast path, | |
630 | * the slow path, or one of the ia32entry paths. | |
66ad4efa | 631 | * Use IRET code path to return, since it can safely handle |
1e3fbb8a AL |
632 | * all of the above. |
633 | */ | |
66ad4efa | 634 | jnz int_ret_from_sys_call |
1eeb207f | 635 | |
66ad4efa DV |
636 | /* We came from kernel_thread */ |
637 | /* nb: we depend on RESTORE_EXTRA_REGS above */ | |
1eeb207f DV |
638 | movq %rbp, %rdi |
639 | call *%rbx | |
640 | movl $0, RAX(%rsp) | |
641 | RESTORE_EXTRA_REGS | |
642 | jmp int_ret_from_sys_call | |
643 | CFI_ENDPROC | |
644 | END(ret_from_fork) | |
645 | ||
939b7871 | 646 | /* |
3304c9c3 DV |
647 | * Build the entry stubs with some assembler magic. |
648 | * We pack 1 stub into every 8-byte block. | |
939b7871 | 649 | */ |
3304c9c3 | 650 | .align 8 |
939b7871 PA |
651 | ENTRY(irq_entries_start) |
652 | INTR_FRAME | |
3304c9c3 DV |
653 | vector=FIRST_EXTERNAL_VECTOR |
654 | .rept (FIRST_SYSTEM_VECTOR - FIRST_EXTERNAL_VECTOR) | |
655 | pushq_cfi $(~vector+0x80) /* Note: always in signed byte range */ | |
656 | vector=vector+1 | |
657 | jmp common_interrupt | |
939b7871 | 658 | CFI_ADJUST_CFA_OFFSET -8 |
3304c9c3 DV |
659 | .align 8 |
660 | .endr | |
939b7871 PA |
661 | CFI_ENDPROC |
662 | END(irq_entries_start) | |
663 | ||
d99015b1 | 664 | /* |
1da177e4 LT |
665 | * Interrupt entry/exit. |
666 | * | |
667 | * Interrupt entry points save only callee clobbered registers in fast path. | |
d99015b1 AH |
668 | * |
669 | * Entry runs with interrupts off. | |
670 | */ | |
1da177e4 | 671 | |
722024db | 672 | /* 0(%rsp): ~(interrupt number) */ |
1da177e4 | 673 | .macro interrupt func |
f6f64681 | 674 | cld |
e90e147c DV |
675 | /* |
676 | * Since nothing in interrupt handling code touches r12...r15 members | |
677 | * of "struct pt_regs", and since interrupts can nest, we can save | |
678 | * four stack slots and simultaneously provide | |
679 | * an unwind-friendly stack layout by saving "truncated" pt_regs | |
680 | * exactly up to rbp slot, without these members. | |
681 | */ | |
76f5df43 DV |
682 | ALLOC_PT_GPREGS_ON_STACK -RBP |
683 | SAVE_C_REGS -RBP | |
684 | /* this goes to 0(%rsp) for unwinder, not for saving the value: */ | |
685 | SAVE_EXTRA_REGS_RBP -RBP | |
686 | ||
687 | leaq -RBP(%rsp),%rdi /* arg1 for \func (pointer to pt_regs) */ | |
f6f64681 | 688 | |
76f5df43 | 689 | testl $3, CS-RBP(%rsp) |
f6f64681 DV |
690 | je 1f |
691 | SWAPGS | |
76f5df43 | 692 | 1: |
f6f64681 | 693 | /* |
e90e147c | 694 | * Save previous stack pointer, optionally switch to interrupt stack. |
f6f64681 DV |
695 | * irq_count is used to check if a CPU is already on an interrupt stack |
696 | * or not. While this is essentially redundant with preempt_count it is | |
697 | * a little cheaper to use a separate counter in the PDA (short of | |
698 | * moving irq_enter into assembly, which would be too much work) | |
699 | */ | |
76f5df43 DV |
700 | movq %rsp, %rsi |
701 | incl PER_CPU_VAR(irq_count) | |
f6f64681 DV |
702 | cmovzq PER_CPU_VAR(irq_stack_ptr),%rsp |
703 | CFI_DEF_CFA_REGISTER rsi | |
f6f64681 | 704 | pushq %rsi |
911d2bb5 DV |
705 | /* |
706 | * For debugger: | |
707 | * "CFA (Current Frame Address) is the value on stack + offset" | |
708 | */ | |
f6f64681 | 709 | CFI_ESCAPE 0x0f /* DW_CFA_def_cfa_expression */, 6, \ |
911d2bb5 | 710 | 0x77 /* DW_OP_breg7 (rsp) */, 0, \ |
f6f64681 | 711 | 0x06 /* DW_OP_deref */, \ |
911d2bb5 | 712 | 0x08 /* DW_OP_const1u */, SIZEOF_PTREGS-RBP, \ |
f6f64681 DV |
713 | 0x22 /* DW_OP_plus */ |
714 | /* We entered an interrupt context - irqs are off: */ | |
715 | TRACE_IRQS_OFF | |
716 | ||
1da177e4 LT |
717 | call \func |
718 | .endm | |
719 | ||
722024db AH |
720 | /* |
721 | * The interrupt stubs push (~vector+0x80) onto the stack and | |
722 | * then jump to common_interrupt. | |
723 | */ | |
939b7871 PA |
724 | .p2align CONFIG_X86_L1_CACHE_SHIFT |
725 | common_interrupt: | |
7effaa88 | 726 | XCPT_FRAME |
ee4eb87b | 727 | ASM_CLAC |
722024db | 728 | addq $-0x80,(%rsp) /* Adjust vector to [-256,-1] range */ |
1da177e4 | 729 | interrupt do_IRQ |
34061f13 | 730 | /* 0(%rsp): old RSP */ |
7effaa88 | 731 | ret_from_intr: |
72fe4858 | 732 | DISABLE_INTERRUPTS(CLBR_NONE) |
2601e64d | 733 | TRACE_IRQS_OFF |
56895530 | 734 | decl PER_CPU_VAR(irq_count) |
625dbc3b | 735 | |
a2bbe750 FW |
736 | /* Restore saved previous stack */ |
737 | popq %rsi | |
911d2bb5 | 738 | CFI_DEF_CFA rsi,SIZEOF_PTREGS-RBP /* reg/off reset after def_cfa_expr */ |
e90e147c | 739 | /* return code expects complete pt_regs - adjust rsp accordingly: */ |
f2db9382 | 740 | leaq -RBP(%rsi),%rsp |
7effaa88 | 741 | CFI_DEF_CFA_REGISTER rsp |
f2db9382 | 742 | CFI_ADJUST_CFA_OFFSET RBP |
625dbc3b | 743 | |
f2db9382 | 744 | testl $3,CS(%rsp) |
1da177e4 | 745 | je retint_kernel |
1da177e4 | 746 | /* Interrupt came from user space */ |
a3675b32 DV |
747 | |
748 | GET_THREAD_INFO(%rcx) | |
1da177e4 | 749 | /* |
1da177e4 | 750 | * %rcx: thread info. Interrupts off. |
0bd7b798 | 751 | */ |
1da177e4 LT |
752 | retint_with_reschedule: |
753 | movl $_TIF_WORK_MASK,%edi | |
7effaa88 | 754 | retint_check: |
10cd706d | 755 | LOCKDEP_SYS_EXIT_IRQ |
26ccb8a7 | 756 | movl TI_flags(%rcx),%edx |
1da177e4 | 757 | andl %edi,%edx |
7effaa88 | 758 | CFI_REMEMBER_STATE |
1da177e4 | 759 | jnz retint_careful |
10cd706d PZ |
760 | |
761 | retint_swapgs: /* return to user-space */ | |
2601e64d IM |
762 | /* |
763 | * The iretq could re-enable interrupts: | |
764 | */ | |
72fe4858 | 765 | DISABLE_INTERRUPTS(CLBR_ANY) |
2601e64d | 766 | TRACE_IRQS_IRETQ |
2a23c6b8 | 767 | |
72fe4858 | 768 | SWAPGS |
fffbb5dc | 769 | jmp restore_c_regs_and_iret |
2601e64d | 770 | |
627276cb | 771 | /* Returning to kernel space */ |
6ba71b76 | 772 | retint_kernel: |
627276cb DV |
773 | #ifdef CONFIG_PREEMPT |
774 | /* Interrupts are off */ | |
775 | /* Check if we need preemption */ | |
627276cb | 776 | bt $9,EFLAGS(%rsp) /* interrupts were off? */ |
6ba71b76 | 777 | jnc 1f |
36acef25 DV |
778 | 0: cmpl $0,PER_CPU_VAR(__preempt_count) |
779 | jnz 1f | |
627276cb | 780 | call preempt_schedule_irq |
36acef25 | 781 | jmp 0b |
6ba71b76 | 782 | 1: |
627276cb | 783 | #endif |
2601e64d IM |
784 | /* |
785 | * The iretq could re-enable interrupts: | |
786 | */ | |
787 | TRACE_IRQS_IRETQ | |
fffbb5dc DV |
788 | |
789 | /* | |
790 | * At this label, code paths which return to kernel and to user, | |
791 | * which come from interrupts/exception and from syscalls, merge. | |
792 | */ | |
793 | restore_c_regs_and_iret: | |
76f5df43 DV |
794 | RESTORE_C_REGS |
795 | REMOVE_PT_GPREGS_FROM_STACK 8 | |
3701d863 | 796 | |
f7f3d791 | 797 | irq_return: |
7209a75d AL |
798 | INTERRUPT_RETURN |
799 | ||
800 | ENTRY(native_iret) | |
3891a04a PA |
801 | /* |
802 | * Are we returning to a stack segment from the LDT? Note: in | |
803 | * 64-bit mode SS:RSP on the exception stack is always valid. | |
804 | */ | |
34273f41 | 805 | #ifdef CONFIG_X86_ESPFIX64 |
3891a04a | 806 | testb $4,(SS-RIP)(%rsp) |
7209a75d | 807 | jnz native_irq_return_ldt |
34273f41 | 808 | #endif |
3891a04a | 809 | |
af726f21 | 810 | .global native_irq_return_iret |
7209a75d | 811 | native_irq_return_iret: |
b645af2d AL |
812 | /* |
813 | * This may fault. Non-paranoid faults on return to userspace are | |
814 | * handled by fixup_bad_iret. These include #SS, #GP, and #NP. | |
815 | * Double-faults due to espfix64 are handled in do_double_fault. | |
816 | * Other faults here are fatal. | |
817 | */ | |
1da177e4 | 818 | iretq |
3701d863 | 819 | |
34273f41 | 820 | #ifdef CONFIG_X86_ESPFIX64 |
7209a75d | 821 | native_irq_return_ldt: |
3891a04a PA |
822 | pushq_cfi %rax |
823 | pushq_cfi %rdi | |
824 | SWAPGS | |
825 | movq PER_CPU_VAR(espfix_waddr),%rdi | |
826 | movq %rax,(0*8)(%rdi) /* RAX */ | |
827 | movq (2*8)(%rsp),%rax /* RIP */ | |
828 | movq %rax,(1*8)(%rdi) | |
829 | movq (3*8)(%rsp),%rax /* CS */ | |
830 | movq %rax,(2*8)(%rdi) | |
831 | movq (4*8)(%rsp),%rax /* RFLAGS */ | |
832 | movq %rax,(3*8)(%rdi) | |
833 | movq (6*8)(%rsp),%rax /* SS */ | |
834 | movq %rax,(5*8)(%rdi) | |
835 | movq (5*8)(%rsp),%rax /* RSP */ | |
836 | movq %rax,(4*8)(%rdi) | |
837 | andl $0xffff0000,%eax | |
838 | popq_cfi %rdi | |
839 | orq PER_CPU_VAR(espfix_stack),%rax | |
840 | SWAPGS | |
841 | movq %rax,%rsp | |
842 | popq_cfi %rax | |
7209a75d | 843 | jmp native_irq_return_iret |
34273f41 | 844 | #endif |
3891a04a | 845 | |
7effaa88 | 846 | /* edi: workmask, edx: work */ |
1da177e4 | 847 | retint_careful: |
7effaa88 | 848 | CFI_RESTORE_STATE |
1da177e4 LT |
849 | bt $TIF_NEED_RESCHED,%edx |
850 | jnc retint_signal | |
2601e64d | 851 | TRACE_IRQS_ON |
72fe4858 | 852 | ENABLE_INTERRUPTS(CLBR_NONE) |
df5d1874 | 853 | pushq_cfi %rdi |
0430499c | 854 | SCHEDULE_USER |
df5d1874 | 855 | popq_cfi %rdi |
1da177e4 | 856 | GET_THREAD_INFO(%rcx) |
72fe4858 | 857 | DISABLE_INTERRUPTS(CLBR_NONE) |
2601e64d | 858 | TRACE_IRQS_OFF |
1da177e4 | 859 | jmp retint_check |
0bd7b798 | 860 | |
1da177e4 | 861 | retint_signal: |
8f4d37ec | 862 | testl $_TIF_DO_NOTIFY_MASK,%edx |
10ffdbb8 | 863 | jz retint_swapgs |
2601e64d | 864 | TRACE_IRQS_ON |
72fe4858 | 865 | ENABLE_INTERRUPTS(CLBR_NONE) |
76f5df43 | 866 | SAVE_EXTRA_REGS |
0bd7b798 | 867 | movq $-1,ORIG_RAX(%rsp) |
3829ee6b | 868 | xorl %esi,%esi # oldset |
1da177e4 LT |
869 | movq %rsp,%rdi # &pt_regs |
870 | call do_notify_resume | |
76f5df43 | 871 | RESTORE_EXTRA_REGS |
72fe4858 | 872 | DISABLE_INTERRUPTS(CLBR_NONE) |
2601e64d | 873 | TRACE_IRQS_OFF |
be9e6870 | 874 | GET_THREAD_INFO(%rcx) |
eca91e78 | 875 | jmp retint_with_reschedule |
1da177e4 | 876 | |
1da177e4 | 877 | CFI_ENDPROC |
4b787e0b | 878 | END(common_interrupt) |
3891a04a | 879 | |
1da177e4 LT |
880 | /* |
881 | * APIC interrupts. | |
0bd7b798 | 882 | */ |
cf910e83 | 883 | .macro apicinterrupt3 num sym do_sym |
322648d1 | 884 | ENTRY(\sym) |
7effaa88 | 885 | INTR_FRAME |
ee4eb87b | 886 | ASM_CLAC |
df5d1874 | 887 | pushq_cfi $~(\num) |
39e95433 | 888 | .Lcommon_\sym: |
322648d1 | 889 | interrupt \do_sym |
1da177e4 LT |
890 | jmp ret_from_intr |
891 | CFI_ENDPROC | |
322648d1 AH |
892 | END(\sym) |
893 | .endm | |
1da177e4 | 894 | |
cf910e83 SA |
895 | #ifdef CONFIG_TRACING |
896 | #define trace(sym) trace_##sym | |
897 | #define smp_trace(sym) smp_trace_##sym | |
898 | ||
899 | .macro trace_apicinterrupt num sym | |
900 | apicinterrupt3 \num trace(\sym) smp_trace(\sym) | |
901 | .endm | |
902 | #else | |
903 | .macro trace_apicinterrupt num sym do_sym | |
904 | .endm | |
905 | #endif | |
906 | ||
907 | .macro apicinterrupt num sym do_sym | |
908 | apicinterrupt3 \num \sym \do_sym | |
909 | trace_apicinterrupt \num \sym | |
910 | .endm | |
911 | ||
322648d1 | 912 | #ifdef CONFIG_SMP |
cf910e83 | 913 | apicinterrupt3 IRQ_MOVE_CLEANUP_VECTOR \ |
322648d1 | 914 | irq_move_cleanup_interrupt smp_irq_move_cleanup_interrupt |
cf910e83 | 915 | apicinterrupt3 REBOOT_VECTOR \ |
4ef702c1 | 916 | reboot_interrupt smp_reboot_interrupt |
322648d1 | 917 | #endif |
1da177e4 | 918 | |
03b48632 | 919 | #ifdef CONFIG_X86_UV |
cf910e83 | 920 | apicinterrupt3 UV_BAU_MESSAGE \ |
322648d1 | 921 | uv_bau_message_intr1 uv_bau_message_interrupt |
03b48632 | 922 | #endif |
322648d1 AH |
923 | apicinterrupt LOCAL_TIMER_VECTOR \ |
924 | apic_timer_interrupt smp_apic_timer_interrupt | |
4a4de9c7 DS |
925 | apicinterrupt X86_PLATFORM_IPI_VECTOR \ |
926 | x86_platform_ipi smp_x86_platform_ipi | |
89b831ef | 927 | |
d78f2664 | 928 | #ifdef CONFIG_HAVE_KVM |
cf910e83 | 929 | apicinterrupt3 POSTED_INTR_VECTOR \ |
d78f2664 YZ |
930 | kvm_posted_intr_ipi smp_kvm_posted_intr_ipi |
931 | #endif | |
932 | ||
33e5ff63 | 933 | #ifdef CONFIG_X86_MCE_THRESHOLD |
322648d1 | 934 | apicinterrupt THRESHOLD_APIC_VECTOR \ |
7856f6cc | 935 | threshold_interrupt smp_threshold_interrupt |
33e5ff63 SA |
936 | #endif |
937 | ||
938 | #ifdef CONFIG_X86_THERMAL_VECTOR | |
322648d1 AH |
939 | apicinterrupt THERMAL_APIC_VECTOR \ |
940 | thermal_interrupt smp_thermal_interrupt | |
33e5ff63 | 941 | #endif |
1812924b | 942 | |
322648d1 AH |
943 | #ifdef CONFIG_SMP |
944 | apicinterrupt CALL_FUNCTION_SINGLE_VECTOR \ | |
945 | call_function_single_interrupt smp_call_function_single_interrupt | |
946 | apicinterrupt CALL_FUNCTION_VECTOR \ | |
947 | call_function_interrupt smp_call_function_interrupt | |
948 | apicinterrupt RESCHEDULE_VECTOR \ | |
949 | reschedule_interrupt smp_reschedule_interrupt | |
950 | #endif | |
1da177e4 | 951 | |
322648d1 AH |
952 | apicinterrupt ERROR_APIC_VECTOR \ |
953 | error_interrupt smp_error_interrupt | |
954 | apicinterrupt SPURIOUS_APIC_VECTOR \ | |
955 | spurious_interrupt smp_spurious_interrupt | |
0bd7b798 | 956 | |
e360adbe PZ |
957 | #ifdef CONFIG_IRQ_WORK |
958 | apicinterrupt IRQ_WORK_VECTOR \ | |
959 | irq_work_interrupt smp_irq_work_interrupt | |
241771ef IM |
960 | #endif |
961 | ||
1da177e4 LT |
962 | /* |
963 | * Exception entry points. | |
0bd7b798 | 964 | */ |
9b476688 | 965 | #define CPU_TSS_IST(x) PER_CPU_VAR(cpu_tss) + (TSS_ist + ((x) - 1) * 8) |
577ed45e AL |
966 | |
967 | .macro idtentry sym do_sym has_error_code:req paranoid=0 shift_ist=-1 | |
322648d1 | 968 | ENTRY(\sym) |
577ed45e AL |
969 | /* Sanity check */ |
970 | .if \shift_ist != -1 && \paranoid == 0 | |
971 | .error "using shift_ist requires paranoid=1" | |
972 | .endif | |
973 | ||
cb5dd2c5 AL |
974 | .if \has_error_code |
975 | XCPT_FRAME | |
976 | .else | |
7effaa88 | 977 | INTR_FRAME |
cb5dd2c5 | 978 | .endif |
1da177e4 | 979 | |
ee4eb87b | 980 | ASM_CLAC |
b8b1d08b | 981 | PARAVIRT_ADJUST_EXCEPTION_FRAME |
cb5dd2c5 AL |
982 | |
983 | .ifeq \has_error_code | |
984 | pushq_cfi $-1 /* ORIG_RAX: no syscall to restart */ | |
985 | .endif | |
986 | ||
76f5df43 | 987 | ALLOC_PT_GPREGS_ON_STACK |
cb5dd2c5 AL |
988 | |
989 | .if \paranoid | |
48e08d0f AL |
990 | .if \paranoid == 1 |
991 | CFI_REMEMBER_STATE | |
992 | testl $3, CS(%rsp) /* If coming from userspace, switch */ | |
993 | jnz 1f /* stacks. */ | |
994 | .endif | |
ebfc453e | 995 | call paranoid_entry |
cb5dd2c5 AL |
996 | .else |
997 | call error_entry | |
998 | .endif | |
ebfc453e | 999 | /* returned flag: ebx=0: need swapgs on exit, ebx=1: don't need it */ |
cb5dd2c5 | 1000 | |
1bd24efc | 1001 | DEFAULT_FRAME 0 |
cb5dd2c5 AL |
1002 | |
1003 | .if \paranoid | |
577ed45e AL |
1004 | .if \shift_ist != -1 |
1005 | TRACE_IRQS_OFF_DEBUG /* reload IDT in case of recursion */ | |
1006 | .else | |
b8b1d08b | 1007 | TRACE_IRQS_OFF |
cb5dd2c5 | 1008 | .endif |
577ed45e | 1009 | .endif |
cb5dd2c5 AL |
1010 | |
1011 | movq %rsp,%rdi /* pt_regs pointer */ | |
1012 | ||
1013 | .if \has_error_code | |
1014 | movq ORIG_RAX(%rsp),%rsi /* get error code */ | |
1015 | movq $-1,ORIG_RAX(%rsp) /* no syscall to restart */ | |
1016 | .else | |
1017 | xorl %esi,%esi /* no error code */ | |
1018 | .endif | |
1019 | ||
577ed45e | 1020 | .if \shift_ist != -1 |
9b476688 | 1021 | subq $EXCEPTION_STKSZ, CPU_TSS_IST(\shift_ist) |
577ed45e AL |
1022 | .endif |
1023 | ||
322648d1 | 1024 | call \do_sym |
cb5dd2c5 | 1025 | |
577ed45e | 1026 | .if \shift_ist != -1 |
9b476688 | 1027 | addq $EXCEPTION_STKSZ, CPU_TSS_IST(\shift_ist) |
577ed45e AL |
1028 | .endif |
1029 | ||
ebfc453e | 1030 | /* these procedures expect "no swapgs" flag in ebx */ |
cb5dd2c5 | 1031 | .if \paranoid |
ebfc453e | 1032 | jmp paranoid_exit |
cb5dd2c5 | 1033 | .else |
ebfc453e | 1034 | jmp error_exit |
cb5dd2c5 AL |
1035 | .endif |
1036 | ||
48e08d0f AL |
1037 | .if \paranoid == 1 |
1038 | CFI_RESTORE_STATE | |
1039 | /* | |
1040 | * Paranoid entry from userspace. Switch stacks and treat it | |
1041 | * as a normal entry. This means that paranoid handlers | |
1042 | * run in real process context if user_mode(regs). | |
1043 | */ | |
1044 | 1: | |
1045 | call error_entry | |
1046 | ||
1047 | DEFAULT_FRAME 0 | |
1048 | ||
1049 | movq %rsp,%rdi /* pt_regs pointer */ | |
1050 | call sync_regs | |
1051 | movq %rax,%rsp /* switch stack */ | |
1052 | ||
1053 | movq %rsp,%rdi /* pt_regs pointer */ | |
1054 | ||
1055 | .if \has_error_code | |
1056 | movq ORIG_RAX(%rsp),%rsi /* get error code */ | |
1057 | movq $-1,ORIG_RAX(%rsp) /* no syscall to restart */ | |
1058 | .else | |
1059 | xorl %esi,%esi /* no error code */ | |
1060 | .endif | |
1061 | ||
1062 | call \do_sym | |
1063 | ||
1064 | jmp error_exit /* %ebx: no swapgs flag */ | |
1065 | .endif | |
1066 | ||
b8b1d08b | 1067 | CFI_ENDPROC |
ddeb8f21 | 1068 | END(\sym) |
322648d1 | 1069 | .endm |
b8b1d08b | 1070 | |
25c74b10 | 1071 | #ifdef CONFIG_TRACING |
cb5dd2c5 AL |
1072 | .macro trace_idtentry sym do_sym has_error_code:req |
1073 | idtentry trace(\sym) trace(\do_sym) has_error_code=\has_error_code | |
1074 | idtentry \sym \do_sym has_error_code=\has_error_code | |
25c74b10 SA |
1075 | .endm |
1076 | #else | |
cb5dd2c5 AL |
1077 | .macro trace_idtentry sym do_sym has_error_code:req |
1078 | idtentry \sym \do_sym has_error_code=\has_error_code | |
25c74b10 SA |
1079 | .endm |
1080 | #endif | |
1081 | ||
cb5dd2c5 AL |
1082 | idtentry divide_error do_divide_error has_error_code=0 |
1083 | idtentry overflow do_overflow has_error_code=0 | |
1084 | idtentry bounds do_bounds has_error_code=0 | |
1085 | idtentry invalid_op do_invalid_op has_error_code=0 | |
1086 | idtentry device_not_available do_device_not_available has_error_code=0 | |
48e08d0f | 1087 | idtentry double_fault do_double_fault has_error_code=1 paranoid=2 |
cb5dd2c5 AL |
1088 | idtentry coprocessor_segment_overrun do_coprocessor_segment_overrun has_error_code=0 |
1089 | idtentry invalid_TSS do_invalid_TSS has_error_code=1 | |
1090 | idtentry segment_not_present do_segment_not_present has_error_code=1 | |
1091 | idtentry spurious_interrupt_bug do_spurious_interrupt_bug has_error_code=0 | |
1092 | idtentry coprocessor_error do_coprocessor_error has_error_code=0 | |
1093 | idtentry alignment_check do_alignment_check has_error_code=1 | |
1094 | idtentry simd_coprocessor_error do_simd_coprocessor_error has_error_code=0 | |
5cec93c2 | 1095 | |
2601e64d | 1096 | |
9f1e87ea CG |
1097 | /* Reload gs selector with exception handling */ |
1098 | /* edi: new selector */ | |
9f9d489a | 1099 | ENTRY(native_load_gs_index) |
7effaa88 | 1100 | CFI_STARTPROC |
df5d1874 | 1101 | pushfq_cfi |
b8aa287f | 1102 | DISABLE_INTERRUPTS(CLBR_ANY & ~CLBR_RDI) |
9f1e87ea | 1103 | SWAPGS |
0bd7b798 | 1104 | gs_change: |
9f1e87ea | 1105 | movl %edi,%gs |
1da177e4 | 1106 | 2: mfence /* workaround */ |
72fe4858 | 1107 | SWAPGS |
df5d1874 | 1108 | popfq_cfi |
9f1e87ea | 1109 | ret |
7effaa88 | 1110 | CFI_ENDPROC |
6efdcfaf | 1111 | END(native_load_gs_index) |
0bd7b798 | 1112 | |
d7abc0fa | 1113 | _ASM_EXTABLE(gs_change,bad_gs) |
9f1e87ea | 1114 | .section .fixup,"ax" |
1da177e4 | 1115 | /* running with kernelgs */ |
0bd7b798 | 1116 | bad_gs: |
72fe4858 | 1117 | SWAPGS /* switch back to user gs */ |
1da177e4 | 1118 | xorl %eax,%eax |
9f1e87ea CG |
1119 | movl %eax,%gs |
1120 | jmp 2b | |
1121 | .previous | |
0bd7b798 | 1122 | |
2699500b | 1123 | /* Call softirq on interrupt stack. Interrupts are off. */ |
7d65f4a6 | 1124 | ENTRY(do_softirq_own_stack) |
7effaa88 | 1125 | CFI_STARTPROC |
df5d1874 | 1126 | pushq_cfi %rbp |
2699500b AK |
1127 | CFI_REL_OFFSET rbp,0 |
1128 | mov %rsp,%rbp | |
1129 | CFI_DEF_CFA_REGISTER rbp | |
56895530 | 1130 | incl PER_CPU_VAR(irq_count) |
26f80bd6 | 1131 | cmove PER_CPU_VAR(irq_stack_ptr),%rsp |
2699500b | 1132 | push %rbp # backlink for old unwinder |
ed6b676c | 1133 | call __do_softirq |
2699500b | 1134 | leaveq |
df5d1874 | 1135 | CFI_RESTORE rbp |
7effaa88 | 1136 | CFI_DEF_CFA_REGISTER rsp |
2699500b | 1137 | CFI_ADJUST_CFA_OFFSET -8 |
56895530 | 1138 | decl PER_CPU_VAR(irq_count) |
ed6b676c | 1139 | ret |
7effaa88 | 1140 | CFI_ENDPROC |
7d65f4a6 | 1141 | END(do_softirq_own_stack) |
75154f40 | 1142 | |
3d75e1b8 | 1143 | #ifdef CONFIG_XEN |
cb5dd2c5 | 1144 | idtentry xen_hypervisor_callback xen_do_hypervisor_callback has_error_code=0 |
3d75e1b8 JF |
1145 | |
1146 | /* | |
9f1e87ea CG |
1147 | * A note on the "critical region" in our callback handler. |
1148 | * We want to avoid stacking callback handlers due to events occurring | |
1149 | * during handling of the last event. To do this, we keep events disabled | |
1150 | * until we've done all processing. HOWEVER, we must enable events before | |
1151 | * popping the stack frame (can't be done atomically) and so it would still | |
1152 | * be possible to get enough handler activations to overflow the stack. | |
1153 | * Although unlikely, bugs of that kind are hard to track down, so we'd | |
1154 | * like to avoid the possibility. | |
1155 | * So, on entry to the handler we detect whether we interrupted an | |
1156 | * existing activation in its critical region -- if so, we pop the current | |
1157 | * activation and restart the handler using the previous one. | |
1158 | */ | |
3d75e1b8 JF |
1159 | ENTRY(xen_do_hypervisor_callback) # do_hypervisor_callback(struct *pt_regs) |
1160 | CFI_STARTPROC | |
9f1e87ea CG |
1161 | /* |
1162 | * Since we don't modify %rdi, evtchn_do_upall(struct *pt_regs) will | |
1163 | * see the correct pointer to the pt_regs | |
1164 | */ | |
3d75e1b8 JF |
1165 | movq %rdi, %rsp # we don't return, adjust the stack frame |
1166 | CFI_ENDPROC | |
dcd072e2 | 1167 | DEFAULT_FRAME |
56895530 | 1168 | 11: incl PER_CPU_VAR(irq_count) |
3d75e1b8 JF |
1169 | movq %rsp,%rbp |
1170 | CFI_DEF_CFA_REGISTER rbp | |
26f80bd6 | 1171 | cmovzq PER_CPU_VAR(irq_stack_ptr),%rsp |
3d75e1b8 JF |
1172 | pushq %rbp # backlink for old unwinder |
1173 | call xen_evtchn_do_upcall | |
1174 | popq %rsp | |
1175 | CFI_DEF_CFA_REGISTER rsp | |
56895530 | 1176 | decl PER_CPU_VAR(irq_count) |
fdfd811d DV |
1177 | #ifndef CONFIG_PREEMPT |
1178 | call xen_maybe_preempt_hcall | |
1179 | #endif | |
3d75e1b8 JF |
1180 | jmp error_exit |
1181 | CFI_ENDPROC | |
371c394a | 1182 | END(xen_do_hypervisor_callback) |
3d75e1b8 JF |
1183 | |
1184 | /* | |
9f1e87ea CG |
1185 | * Hypervisor uses this for application faults while it executes. |
1186 | * We get here for two reasons: | |
1187 | * 1. Fault while reloading DS, ES, FS or GS | |
1188 | * 2. Fault while executing IRET | |
1189 | * Category 1 we do not need to fix up as Xen has already reloaded all segment | |
1190 | * registers that could be reloaded and zeroed the others. | |
1191 | * Category 2 we fix up by killing the current process. We cannot use the | |
1192 | * normal Linux return path in this case because if we use the IRET hypercall | |
1193 | * to pop the stack frame we end up in an infinite loop of failsafe callbacks. | |
1194 | * We distinguish between categories by comparing each saved segment register | |
1195 | * with its current contents: any discrepancy means we in category 1. | |
1196 | */ | |
3d75e1b8 | 1197 | ENTRY(xen_failsafe_callback) |
dcd072e2 AH |
1198 | INTR_FRAME 1 (6*8) |
1199 | /*CFI_REL_OFFSET gs,GS*/ | |
1200 | /*CFI_REL_OFFSET fs,FS*/ | |
1201 | /*CFI_REL_OFFSET es,ES*/ | |
1202 | /*CFI_REL_OFFSET ds,DS*/ | |
1203 | CFI_REL_OFFSET r11,8 | |
1204 | CFI_REL_OFFSET rcx,0 | |
3d75e1b8 JF |
1205 | movw %ds,%cx |
1206 | cmpw %cx,0x10(%rsp) | |
1207 | CFI_REMEMBER_STATE | |
1208 | jne 1f | |
1209 | movw %es,%cx | |
1210 | cmpw %cx,0x18(%rsp) | |
1211 | jne 1f | |
1212 | movw %fs,%cx | |
1213 | cmpw %cx,0x20(%rsp) | |
1214 | jne 1f | |
1215 | movw %gs,%cx | |
1216 | cmpw %cx,0x28(%rsp) | |
1217 | jne 1f | |
1218 | /* All segments match their saved values => Category 2 (Bad IRET). */ | |
1219 | movq (%rsp),%rcx | |
1220 | CFI_RESTORE rcx | |
1221 | movq 8(%rsp),%r11 | |
1222 | CFI_RESTORE r11 | |
1223 | addq $0x30,%rsp | |
1224 | CFI_ADJUST_CFA_OFFSET -0x30 | |
14ae22ba IM |
1225 | pushq_cfi $0 /* RIP */ |
1226 | pushq_cfi %r11 | |
1227 | pushq_cfi %rcx | |
4a5c3e77 | 1228 | jmp general_protection |
3d75e1b8 JF |
1229 | CFI_RESTORE_STATE |
1230 | 1: /* Segment mismatch => Category 1 (Bad segment). Retry the IRET. */ | |
1231 | movq (%rsp),%rcx | |
1232 | CFI_RESTORE rcx | |
1233 | movq 8(%rsp),%r11 | |
1234 | CFI_RESTORE r11 | |
1235 | addq $0x30,%rsp | |
1236 | CFI_ADJUST_CFA_OFFSET -0x30 | |
a349e23d | 1237 | pushq_cfi $-1 /* orig_ax = -1 => not a system call */ |
76f5df43 DV |
1238 | ALLOC_PT_GPREGS_ON_STACK |
1239 | SAVE_C_REGS | |
1240 | SAVE_EXTRA_REGS | |
3d75e1b8 JF |
1241 | jmp error_exit |
1242 | CFI_ENDPROC | |
3d75e1b8 JF |
1243 | END(xen_failsafe_callback) |
1244 | ||
cf910e83 | 1245 | apicinterrupt3 HYPERVISOR_CALLBACK_VECTOR \ |
38e20b07 SY |
1246 | xen_hvm_callback_vector xen_evtchn_do_upcall |
1247 | ||
3d75e1b8 | 1248 | #endif /* CONFIG_XEN */ |
ddeb8f21 | 1249 | |
bc2b0331 | 1250 | #if IS_ENABLED(CONFIG_HYPERV) |
cf910e83 | 1251 | apicinterrupt3 HYPERVISOR_CALLBACK_VECTOR \ |
bc2b0331 S |
1252 | hyperv_callback_vector hyperv_vector_handler |
1253 | #endif /* CONFIG_HYPERV */ | |
1254 | ||
577ed45e AL |
1255 | idtentry debug do_debug has_error_code=0 paranoid=1 shift_ist=DEBUG_STACK |
1256 | idtentry int3 do_int3 has_error_code=0 paranoid=1 shift_ist=DEBUG_STACK | |
6f442be2 | 1257 | idtentry stack_segment do_stack_segment has_error_code=1 |
6cac5a92 | 1258 | #ifdef CONFIG_XEN |
cb5dd2c5 AL |
1259 | idtentry xen_debug do_debug has_error_code=0 |
1260 | idtentry xen_int3 do_int3 has_error_code=0 | |
1261 | idtentry xen_stack_segment do_stack_segment has_error_code=1 | |
6cac5a92 | 1262 | #endif |
cb5dd2c5 AL |
1263 | idtentry general_protection do_general_protection has_error_code=1 |
1264 | trace_idtentry page_fault do_page_fault has_error_code=1 | |
631bc487 | 1265 | #ifdef CONFIG_KVM_GUEST |
cb5dd2c5 | 1266 | idtentry async_page_fault do_async_page_fault has_error_code=1 |
631bc487 | 1267 | #endif |
ddeb8f21 | 1268 | #ifdef CONFIG_X86_MCE |
cb5dd2c5 | 1269 | idtentry machine_check has_error_code=0 paranoid=1 do_sym=*machine_check_vector(%rip) |
ddeb8f21 AH |
1270 | #endif |
1271 | ||
ebfc453e DV |
1272 | /* |
1273 | * Save all registers in pt_regs, and switch gs if needed. | |
1274 | * Use slow, but surefire "are we in kernel?" check. | |
1275 | * Return: ebx=0: need swapgs on exit, ebx=1: otherwise | |
1276 | */ | |
1277 | ENTRY(paranoid_entry) | |
1278 | XCPT_FRAME 1 15*8 | |
1eeb207f DV |
1279 | cld |
1280 | SAVE_C_REGS 8 | |
1281 | SAVE_EXTRA_REGS 8 | |
1282 | movl $1,%ebx | |
1283 | movl $MSR_GS_BASE,%ecx | |
1284 | rdmsr | |
1285 | testl %edx,%edx | |
1286 | js 1f /* negative -> in kernel */ | |
1287 | SWAPGS | |
1288 | xorl %ebx,%ebx | |
1289 | 1: ret | |
1290 | CFI_ENDPROC | |
ebfc453e | 1291 | END(paranoid_entry) |
ddeb8f21 | 1292 | |
ebfc453e DV |
1293 | /* |
1294 | * "Paranoid" exit path from exception stack. This is invoked | |
1295 | * only on return from non-NMI IST interrupts that came | |
1296 | * from kernel space. | |
1297 | * | |
1298 | * We may be returning to very strange contexts (e.g. very early | |
1299 | * in syscall entry), so checking for preemption here would | |
1300 | * be complicated. Fortunately, we there's no good reason | |
1301 | * to try to handle preemption here. | |
1302 | */ | |
1303 | /* On entry, ebx is "no swapgs" flag (1: don't need swapgs, 0: need it) */ | |
ddeb8f21 | 1304 | ENTRY(paranoid_exit) |
1f130a78 | 1305 | DEFAULT_FRAME |
ddeb8f21 | 1306 | DISABLE_INTERRUPTS(CLBR_NONE) |
5963e317 | 1307 | TRACE_IRQS_OFF_DEBUG |
ddeb8f21 | 1308 | testl %ebx,%ebx /* swapgs needed? */ |
0d550836 | 1309 | jnz paranoid_exit_no_swapgs |
f2db9382 | 1310 | TRACE_IRQS_IRETQ |
ddeb8f21 | 1311 | SWAPGS_UNSAFE_STACK |
0d550836 DV |
1312 | jmp paranoid_exit_restore |
1313 | paranoid_exit_no_swapgs: | |
f2db9382 | 1314 | TRACE_IRQS_IRETQ_DEBUG |
0d550836 | 1315 | paranoid_exit_restore: |
76f5df43 DV |
1316 | RESTORE_EXTRA_REGS |
1317 | RESTORE_C_REGS | |
1318 | REMOVE_PT_GPREGS_FROM_STACK 8 | |
48e08d0f | 1319 | INTERRUPT_RETURN |
ddeb8f21 AH |
1320 | CFI_ENDPROC |
1321 | END(paranoid_exit) | |
1322 | ||
1323 | /* | |
ebfc453e DV |
1324 | * Save all registers in pt_regs, and switch gs if needed. |
1325 | * Return: ebx=0: need swapgs on exit, ebx=1: otherwise | |
ddeb8f21 AH |
1326 | */ |
1327 | ENTRY(error_entry) | |
ebfc453e | 1328 | XCPT_FRAME 1 15*8 |
ddeb8f21 | 1329 | cld |
76f5df43 DV |
1330 | SAVE_C_REGS 8 |
1331 | SAVE_EXTRA_REGS 8 | |
ddeb8f21 AH |
1332 | xorl %ebx,%ebx |
1333 | testl $3,CS+8(%rsp) | |
1334 | je error_kernelspace | |
1335 | error_swapgs: | |
1336 | SWAPGS | |
1337 | error_sti: | |
1338 | TRACE_IRQS_OFF | |
1339 | ret | |
ddeb8f21 | 1340 | |
ebfc453e DV |
1341 | /* |
1342 | * There are two places in the kernel that can potentially fault with | |
1343 | * usergs. Handle them here. B stepping K8s sometimes report a | |
1344 | * truncated RIP for IRET exceptions returning to compat mode. Check | |
1345 | * for these here too. | |
1346 | */ | |
ddeb8f21 | 1347 | error_kernelspace: |
3bab13b0 | 1348 | CFI_REL_OFFSET rcx, RCX+8 |
ddeb8f21 | 1349 | incl %ebx |
7209a75d | 1350 | leaq native_irq_return_iret(%rip),%rcx |
ddeb8f21 | 1351 | cmpq %rcx,RIP+8(%rsp) |
b645af2d | 1352 | je error_bad_iret |
ae24ffe5 BG |
1353 | movl %ecx,%eax /* zero extend */ |
1354 | cmpq %rax,RIP+8(%rsp) | |
1355 | je bstep_iret | |
ddeb8f21 | 1356 | cmpq $gs_change,RIP+8(%rsp) |
9f1e87ea | 1357 | je error_swapgs |
ddeb8f21 | 1358 | jmp error_sti |
ae24ffe5 BG |
1359 | |
1360 | bstep_iret: | |
1361 | /* Fix truncated RIP */ | |
1362 | movq %rcx,RIP+8(%rsp) | |
b645af2d AL |
1363 | /* fall through */ |
1364 | ||
1365 | error_bad_iret: | |
1366 | SWAPGS | |
1367 | mov %rsp,%rdi | |
1368 | call fixup_bad_iret | |
1369 | mov %rax,%rsp | |
1370 | decl %ebx /* Return to usergs */ | |
1371 | jmp error_sti | |
e6b04b6b | 1372 | CFI_ENDPROC |
ddeb8f21 AH |
1373 | END(error_entry) |
1374 | ||
1375 | ||
ebfc453e | 1376 | /* On entry, ebx is "no swapgs" flag (1: don't need swapgs, 0: need it) */ |
ddeb8f21 AH |
1377 | ENTRY(error_exit) |
1378 | DEFAULT_FRAME | |
1379 | movl %ebx,%eax | |
76f5df43 | 1380 | RESTORE_EXTRA_REGS |
ddeb8f21 AH |
1381 | DISABLE_INTERRUPTS(CLBR_NONE) |
1382 | TRACE_IRQS_OFF | |
1383 | GET_THREAD_INFO(%rcx) | |
1384 | testl %eax,%eax | |
1385 | jne retint_kernel | |
1386 | LOCKDEP_SYS_EXIT_IRQ | |
1387 | movl TI_flags(%rcx),%edx | |
1388 | movl $_TIF_WORK_MASK,%edi | |
1389 | andl %edi,%edx | |
1390 | jnz retint_careful | |
1391 | jmp retint_swapgs | |
1392 | CFI_ENDPROC | |
1393 | END(error_exit) | |
1394 | ||
0784b364 | 1395 | /* Runs on exception stack */ |
ddeb8f21 AH |
1396 | ENTRY(nmi) |
1397 | INTR_FRAME | |
1398 | PARAVIRT_ADJUST_EXCEPTION_FRAME | |
3f3c8b8c SR |
1399 | /* |
1400 | * We allow breakpoints in NMIs. If a breakpoint occurs, then | |
1401 | * the iretq it performs will take us out of NMI context. | |
1402 | * This means that we can have nested NMIs where the next | |
1403 | * NMI is using the top of the stack of the previous NMI. We | |
1404 | * can't let it execute because the nested NMI will corrupt the | |
1405 | * stack of the previous NMI. NMI handlers are not re-entrant | |
1406 | * anyway. | |
1407 | * | |
1408 | * To handle this case we do the following: | |
1409 | * Check the a special location on the stack that contains | |
1410 | * a variable that is set when NMIs are executing. | |
1411 | * The interrupted task's stack is also checked to see if it | |
1412 | * is an NMI stack. | |
1413 | * If the variable is not set and the stack is not the NMI | |
1414 | * stack then: | |
1415 | * o Set the special variable on the stack | |
1416 | * o Copy the interrupt frame into a "saved" location on the stack | |
1417 | * o Copy the interrupt frame into a "copy" location on the stack | |
1418 | * o Continue processing the NMI | |
1419 | * If the variable is set or the previous stack is the NMI stack: | |
1420 | * o Modify the "copy" location to jump to the repeate_nmi | |
1421 | * o return back to the first NMI | |
1422 | * | |
1423 | * Now on exit of the first NMI, we first clear the stack variable | |
1424 | * The NMI stack will tell any nested NMIs at that point that it is | |
1425 | * nested. Then we pop the stack normally with iret, and if there was | |
1426 | * a nested NMI that updated the copy interrupt stack frame, a | |
1427 | * jump will be made to the repeat_nmi code that will handle the second | |
1428 | * NMI. | |
1429 | */ | |
1430 | ||
146b2b09 | 1431 | /* Use %rdx as our temp variable throughout */ |
3f3c8b8c | 1432 | pushq_cfi %rdx |
62610913 | 1433 | CFI_REL_OFFSET rdx, 0 |
3f3c8b8c | 1434 | |
45d5a168 SR |
1435 | /* |
1436 | * If %cs was not the kernel segment, then the NMI triggered in user | |
1437 | * space, which means it is definitely not nested. | |
1438 | */ | |
a38449ef | 1439 | cmpl $__KERNEL_CS, 16(%rsp) |
45d5a168 SR |
1440 | jne first_nmi |
1441 | ||
3f3c8b8c SR |
1442 | /* |
1443 | * Check the special variable on the stack to see if NMIs are | |
1444 | * executing. | |
1445 | */ | |
a38449ef | 1446 | cmpl $1, -8(%rsp) |
3f3c8b8c SR |
1447 | je nested_nmi |
1448 | ||
1449 | /* | |
1450 | * Now test if the previous stack was an NMI stack. | |
1451 | * We need the double check. We check the NMI stack to satisfy the | |
1452 | * race when the first NMI clears the variable before returning. | |
1453 | * We check the variable because the first NMI could be in a | |
1454 | * breakpoint routine using a breakpoint stack. | |
1455 | */ | |
0784b364 DV |
1456 | lea 6*8(%rsp), %rdx |
1457 | /* Compare the NMI stack (rdx) with the stack we came from (4*8(%rsp)) */ | |
1458 | cmpq %rdx, 4*8(%rsp) | |
1459 | /* If the stack pointer is above the NMI stack, this is a normal NMI */ | |
1460 | ja first_nmi | |
1461 | subq $EXCEPTION_STKSZ, %rdx | |
1462 | cmpq %rdx, 4*8(%rsp) | |
1463 | /* If it is below the NMI stack, it is a normal NMI */ | |
1464 | jb first_nmi | |
1465 | /* Ah, it is within the NMI stack, treat it as nested */ | |
0784b364 | 1466 | |
62610913 | 1467 | CFI_REMEMBER_STATE |
3f3c8b8c SR |
1468 | |
1469 | nested_nmi: | |
1470 | /* | |
1471 | * Do nothing if we interrupted the fixup in repeat_nmi. | |
1472 | * It's about to repeat the NMI handler, so we are fine | |
1473 | * with ignoring this one. | |
1474 | */ | |
1475 | movq $repeat_nmi, %rdx | |
1476 | cmpq 8(%rsp), %rdx | |
1477 | ja 1f | |
1478 | movq $end_repeat_nmi, %rdx | |
1479 | cmpq 8(%rsp), %rdx | |
1480 | ja nested_nmi_out | |
1481 | ||
1482 | 1: | |
1483 | /* Set up the interrupted NMIs stack to jump to repeat_nmi */ | |
28696f43 | 1484 | leaq -1*8(%rsp), %rdx |
3f3c8b8c | 1485 | movq %rdx, %rsp |
28696f43 SQ |
1486 | CFI_ADJUST_CFA_OFFSET 1*8 |
1487 | leaq -10*8(%rsp), %rdx | |
3f3c8b8c SR |
1488 | pushq_cfi $__KERNEL_DS |
1489 | pushq_cfi %rdx | |
1490 | pushfq_cfi | |
1491 | pushq_cfi $__KERNEL_CS | |
1492 | pushq_cfi $repeat_nmi | |
1493 | ||
1494 | /* Put stack back */ | |
28696f43 SQ |
1495 | addq $(6*8), %rsp |
1496 | CFI_ADJUST_CFA_OFFSET -6*8 | |
3f3c8b8c SR |
1497 | |
1498 | nested_nmi_out: | |
1499 | popq_cfi %rdx | |
62610913 | 1500 | CFI_RESTORE rdx |
3f3c8b8c SR |
1501 | |
1502 | /* No need to check faults here */ | |
1503 | INTERRUPT_RETURN | |
1504 | ||
62610913 | 1505 | CFI_RESTORE_STATE |
3f3c8b8c SR |
1506 | first_nmi: |
1507 | /* | |
1508 | * Because nested NMIs will use the pushed location that we | |
1509 | * stored in rdx, we must keep that space available. | |
1510 | * Here's what our stack frame will look like: | |
1511 | * +-------------------------+ | |
1512 | * | original SS | | |
1513 | * | original Return RSP | | |
1514 | * | original RFLAGS | | |
1515 | * | original CS | | |
1516 | * | original RIP | | |
1517 | * +-------------------------+ | |
1518 | * | temp storage for rdx | | |
1519 | * +-------------------------+ | |
1520 | * | NMI executing variable | | |
1521 | * +-------------------------+ | |
3f3c8b8c SR |
1522 | * | copied SS | |
1523 | * | copied Return RSP | | |
1524 | * | copied RFLAGS | | |
1525 | * | copied CS | | |
1526 | * | copied RIP | | |
1527 | * +-------------------------+ | |
28696f43 SQ |
1528 | * | Saved SS | |
1529 | * | Saved Return RSP | | |
1530 | * | Saved RFLAGS | | |
1531 | * | Saved CS | | |
1532 | * | Saved RIP | | |
1533 | * +-------------------------+ | |
3f3c8b8c SR |
1534 | * | pt_regs | |
1535 | * +-------------------------+ | |
1536 | * | |
79fb4ad6 SR |
1537 | * The saved stack frame is used to fix up the copied stack frame |
1538 | * that a nested NMI may change to make the interrupted NMI iret jump | |
1539 | * to the repeat_nmi. The original stack frame and the temp storage | |
3f3c8b8c SR |
1540 | * is also used by nested NMIs and can not be trusted on exit. |
1541 | */ | |
79fb4ad6 | 1542 | /* Do not pop rdx, nested NMIs will corrupt that part of the stack */ |
62610913 JB |
1543 | movq (%rsp), %rdx |
1544 | CFI_RESTORE rdx | |
1545 | ||
3f3c8b8c SR |
1546 | /* Set the NMI executing variable on the stack. */ |
1547 | pushq_cfi $1 | |
1548 | ||
28696f43 SQ |
1549 | /* |
1550 | * Leave room for the "copied" frame | |
1551 | */ | |
1552 | subq $(5*8), %rsp | |
444723dc | 1553 | CFI_ADJUST_CFA_OFFSET 5*8 |
28696f43 | 1554 | |
3f3c8b8c SR |
1555 | /* Copy the stack frame to the Saved frame */ |
1556 | .rept 5 | |
28696f43 | 1557 | pushq_cfi 11*8(%rsp) |
3f3c8b8c | 1558 | .endr |
911d2bb5 | 1559 | CFI_DEF_CFA_OFFSET 5*8 |
62610913 | 1560 | |
79fb4ad6 SR |
1561 | /* Everything up to here is safe from nested NMIs */ |
1562 | ||
62610913 JB |
1563 | /* |
1564 | * If there was a nested NMI, the first NMI's iret will return | |
1565 | * here. But NMIs are still enabled and we can take another | |
1566 | * nested NMI. The nested NMI checks the interrupted RIP to see | |
1567 | * if it is between repeat_nmi and end_repeat_nmi, and if so | |
1568 | * it will just return, as we are about to repeat an NMI anyway. | |
1569 | * This makes it safe to copy to the stack frame that a nested | |
1570 | * NMI will update. | |
1571 | */ | |
1572 | repeat_nmi: | |
1573 | /* | |
1574 | * Update the stack variable to say we are still in NMI (the update | |
1575 | * is benign for the non-repeat case, where 1 was pushed just above | |
1576 | * to this very stack slot). | |
1577 | */ | |
28696f43 | 1578 | movq $1, 10*8(%rsp) |
3f3c8b8c SR |
1579 | |
1580 | /* Make another copy, this one may be modified by nested NMIs */ | |
28696f43 SQ |
1581 | addq $(10*8), %rsp |
1582 | CFI_ADJUST_CFA_OFFSET -10*8 | |
3f3c8b8c | 1583 | .rept 5 |
28696f43 | 1584 | pushq_cfi -6*8(%rsp) |
3f3c8b8c | 1585 | .endr |
28696f43 | 1586 | subq $(5*8), %rsp |
911d2bb5 | 1587 | CFI_DEF_CFA_OFFSET 5*8 |
62610913 | 1588 | end_repeat_nmi: |
3f3c8b8c SR |
1589 | |
1590 | /* | |
1591 | * Everything below this point can be preempted by a nested | |
79fb4ad6 SR |
1592 | * NMI if the first NMI took an exception and reset our iret stack |
1593 | * so that we repeat another NMI. | |
3f3c8b8c | 1594 | */ |
1fd466ef | 1595 | pushq_cfi $-1 /* ORIG_RAX: no syscall to restart */ |
76f5df43 DV |
1596 | ALLOC_PT_GPREGS_ON_STACK |
1597 | ||
1fd466ef | 1598 | /* |
ebfc453e | 1599 | * Use paranoid_entry to handle SWAPGS, but no need to use paranoid_exit |
1fd466ef SR |
1600 | * as we should not be calling schedule in NMI context. |
1601 | * Even with normal interrupts enabled. An NMI should not be | |
1602 | * setting NEED_RESCHED or anything that normal interrupts and | |
1603 | * exceptions might do. | |
1604 | */ | |
ebfc453e | 1605 | call paranoid_entry |
ddeb8f21 | 1606 | DEFAULT_FRAME 0 |
7fbb98c5 SR |
1607 | |
1608 | /* | |
1609 | * Save off the CR2 register. If we take a page fault in the NMI then | |
1610 | * it could corrupt the CR2 value. If the NMI preempts a page fault | |
1611 | * handler before it was able to read the CR2 register, and then the | |
1612 | * NMI itself takes a page fault, the page fault that was preempted | |
1613 | * will read the information from the NMI page fault and not the | |
1614 | * origin fault. Save it off and restore it if it changes. | |
1615 | * Use the r12 callee-saved register. | |
1616 | */ | |
1617 | movq %cr2, %r12 | |
1618 | ||
ddeb8f21 AH |
1619 | /* paranoidentry do_nmi, 0; without TRACE_IRQS_OFF */ |
1620 | movq %rsp,%rdi | |
1621 | movq $-1,%rsi | |
1622 | call do_nmi | |
7fbb98c5 SR |
1623 | |
1624 | /* Did the NMI take a page fault? Restore cr2 if it did */ | |
1625 | movq %cr2, %rcx | |
1626 | cmpq %rcx, %r12 | |
1627 | je 1f | |
1628 | movq %r12, %cr2 | |
1629 | 1: | |
1630 | ||
ddeb8f21 AH |
1631 | testl %ebx,%ebx /* swapgs needed? */ |
1632 | jnz nmi_restore | |
ddeb8f21 AH |
1633 | nmi_swapgs: |
1634 | SWAPGS_UNSAFE_STACK | |
1635 | nmi_restore: | |
76f5df43 DV |
1636 | RESTORE_EXTRA_REGS |
1637 | RESTORE_C_REGS | |
444723dc | 1638 | /* Pop the extra iret frame at once */ |
76f5df43 | 1639 | REMOVE_PT_GPREGS_FROM_STACK 6*8 |
28696f43 | 1640 | |
3f3c8b8c | 1641 | /* Clear the NMI executing stack variable */ |
28696f43 | 1642 | movq $0, 5*8(%rsp) |
ddeb8f21 | 1643 | jmp irq_return |
9f1e87ea | 1644 | CFI_ENDPROC |
ddeb8f21 AH |
1645 | END(nmi) |
1646 | ||
1647 | ENTRY(ignore_sysret) | |
1648 | CFI_STARTPROC | |
1649 | mov $-ENOSYS,%eax | |
1650 | sysret | |
1651 | CFI_ENDPROC | |
1652 | END(ignore_sysret) | |
1653 |