Skip to content

Commit 7f2590a

Browse files
amlutoIngo Molnar
authored andcommitted
x86/entry/64: Use a per-CPU trampoline stack for IDT entries
Historically, IDT entries from usermode have always gone directly to the running task's kernel stack. Rearrange it so that we enter on a per-CPU trampoline stack and then manually switch to the task's stack. This touches a couple of extra cachelines, but it gives us a chance to run some code before we touch the kernel stack. The asm isn't exactly beautiful, but I think that fully refactoring it can wait. Signed-off-by: Andy Lutomirski <luto@kernel.org> Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Borislav Petkov <bp@suse.de> Reviewed-by: Thomas Gleixner <tglx@linutronix.de> Cc: Boris Ostrovsky <boris.ostrovsky@oracle.com> Cc: Borislav Petkov <bp@alien8.de> Cc: Borislav Petkov <bpetkov@suse.de> Cc: Brian Gerst <brgerst@gmail.com> Cc: Dave Hansen <dave.hansen@intel.com> Cc: Dave Hansen <dave.hansen@linux.intel.com> Cc: David Laight <David.Laight@aculab.com> Cc: Denys Vlasenko <dvlasenk@redhat.com> Cc: Eduardo Valentin <eduval@amazon.com> Cc: Greg KH <gregkh@linuxfoundation.org> Cc: H. Peter Anvin <hpa@zytor.com> Cc: Josh Poimboeuf <jpoimboe@redhat.com> Cc: Juergen Gross <jgross@suse.com> Cc: Linus Torvalds <torvalds@linux-foundation.org> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Rik van Riel <riel@redhat.com> Cc: Will Deacon <will.deacon@arm.com> Cc: aliguori@amazon.com Cc: daniel.gruss@iaik.tugraz.at Cc: hughd@google.com Cc: keescook@google.com Link: https://lkml.kernel.org/r/20171204150606.225330557@linutronix.de Signed-off-by: Ingo Molnar <mingo@kernel.org>
1 parent 6d9256f commit 7f2590a

File tree

6 files changed

+72
-32
lines changed

6 files changed

+72
-32
lines changed

arch/x86/entry/entry_64.S

Lines changed: 50 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -560,6 +560,13 @@ END(irq_entries_start)
560560
/* 0(%rsp): ~(interrupt number) */
561561
.macro interrupt func
562562
cld
563+
564+
testb $3, CS-ORIG_RAX(%rsp)
565+
jz 1f
566+
SWAPGS
567+
call switch_to_thread_stack
568+
1:
569+
563570
ALLOC_PT_GPREGS_ON_STACK
564571
SAVE_C_REGS
565572
SAVE_EXTRA_REGS
@@ -569,12 +576,8 @@ END(irq_entries_start)
569576
jz 1f
570577

571578
/*
572-
* IRQ from user mode. Switch to kernel gsbase and inform context
573-
* tracking that we're in kernel mode.
574-
*/
575-
SWAPGS
576-
577-
/*
579+
* IRQ from user mode.
580+
*
578581
* We need to tell lockdep that IRQs are off. We can't do this until
579582
* we fix gsbase, and we should do it before enter_from_user_mode
580583
* (which can take locks). Since TRACE_IRQS_OFF idempotent,
@@ -828,6 +831,32 @@ apicinterrupt IRQ_WORK_VECTOR irq_work_interrupt smp_irq_work_interrupt
828831
*/
829832
#define CPU_TSS_IST(x) PER_CPU_VAR(cpu_tss) + (TSS_ist + ((x) - 1) * 8)
830833

834+
/*
835+
* Switch to the thread stack. This is called with the IRET frame and
836+
* orig_ax on the stack. (That is, RDI..R12 are not on the stack and
837+
* space has not been allocated for them.)
838+
*/
839+
ENTRY(switch_to_thread_stack)
840+
UNWIND_HINT_FUNC
841+
842+
pushq %rdi
843+
movq %rsp, %rdi
844+
movq PER_CPU_VAR(cpu_current_top_of_stack), %rsp
845+
UNWIND_HINT sp_offset=16 sp_reg=ORC_REG_DI
846+
847+
pushq 7*8(%rdi) /* regs->ss */
848+
pushq 6*8(%rdi) /* regs->rsp */
849+
pushq 5*8(%rdi) /* regs->eflags */
850+
pushq 4*8(%rdi) /* regs->cs */
851+
pushq 3*8(%rdi) /* regs->ip */
852+
pushq 2*8(%rdi) /* regs->orig_ax */
853+
pushq 8(%rdi) /* return address */
854+
UNWIND_HINT_FUNC
855+
856+
movq (%rdi), %rdi
857+
ret
858+
END(switch_to_thread_stack)
859+
831860
.macro idtentry sym do_sym has_error_code:req paranoid=0 shift_ist=-1
832861
ENTRY(\sym)
833862
UNWIND_HINT_IRET_REGS offset=\has_error_code*8
@@ -845,11 +874,12 @@ ENTRY(\sym)
845874

846875
ALLOC_PT_GPREGS_ON_STACK
847876

848-
.if \paranoid
849-
.if \paranoid == 1
877+
.if \paranoid < 2
850878
testb $3, CS(%rsp) /* If coming from userspace, switch stacks */
851-
jnz 1f
879+
jnz .Lfrom_usermode_switch_stack_\@
852880
.endif
881+
882+
.if \paranoid
853883
call paranoid_entry
854884
.else
855885
call error_entry
@@ -891,20 +921,15 @@ ENTRY(\sym)
891921
jmp error_exit
892922
.endif
893923

894-
.if \paranoid == 1
924+
.if \paranoid < 2
895925
/*
896-
* Paranoid entry from userspace. Switch stacks and treat it
926+
* Entry from userspace. Switch stacks and treat it
897927
* as a normal entry. This means that paranoid handlers
898928
* run in real process context if user_mode(regs).
899929
*/
900-
1:
930+
.Lfrom_usermode_switch_stack_\@:
901931
call error_entry
902932

903-
904-
movq %rsp, %rdi /* pt_regs pointer */
905-
call sync_regs
906-
movq %rax, %rsp /* switch stack */
907-
908933
movq %rsp, %rdi /* pt_regs pointer */
909934

910935
.if \has_error_code
@@ -1165,6 +1190,14 @@ ENTRY(error_entry)
11651190
SWAPGS
11661191

11671192
.Lerror_entry_from_usermode_after_swapgs:
1193+
/* Put us onto the real thread stack. */
1194+
popq %r12 /* save return addr in %12 */
1195+
movq %rsp, %rdi /* arg0 = pt_regs pointer */
1196+
call sync_regs
1197+
movq %rax, %rsp /* switch stack */
1198+
ENCODE_FRAME_POINTER
1199+
pushq %r12
1200+
11681201
/*
11691202
* We need to tell lockdep that IRQs are off. We can't do this until
11701203
* we fix gsbase, and we should do it before enter_from_user_mode

arch/x86/entry/entry_64_compat.S

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,8 +306,11 @@ ENTRY(entry_INT80_compat)
306306
*/
307307
movl %eax, %eax
308308

309-
/* Construct struct pt_regs on stack (iret frame is already on stack) */
310309
pushq %rax /* pt_regs->orig_ax */
310+
311+
/* switch to thread stack expects orig_ax to be pushed */
312+
call switch_to_thread_stack
313+
311314
pushq %rdi /* pt_regs->di */
312315
pushq %rsi /* pt_regs->si */
313316
pushq %rdx /* pt_regs->dx */

arch/x86/include/asm/switch_to.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,10 +90,12 @@ static inline void refresh_sysenter_cs(struct thread_struct *thread)
9090
/* This is used when switching tasks or entering/exiting vm86 mode. */
9191
static inline void update_sp0(struct task_struct *task)
9292
{
93+
/* On x86_64, sp0 always points to the entry trampoline stack, which is constant: */
9394
#ifdef CONFIG_X86_32
9495
load_sp0(task->thread.sp0);
9596
#else
96-
load_sp0(task_top_of_stack(task));
97+
if (static_cpu_has(X86_FEATURE_XENPV))
98+
load_sp0(task_top_of_stack(task));
9799
#endif
98100
}
99101

arch/x86/include/asm/traps.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,6 @@ dotraplinkage void do_segment_not_present(struct pt_regs *, long);
7575
dotraplinkage void do_stack_segment(struct pt_regs *, long);
7676
#ifdef CONFIG_X86_64
7777
dotraplinkage void do_double_fault(struct pt_regs *, long);
78-
asmlinkage struct pt_regs *sync_regs(struct pt_regs *);
7978
#endif
8079
dotraplinkage void do_general_protection(struct pt_regs *, long);
8180
dotraplinkage void do_page_fault(struct pt_regs *, unsigned long);

arch/x86/kernel/cpu/common.c

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1623,11 +1623,13 @@ void cpu_init(void)
16231623
setup_cpu_entry_area(cpu);
16241624

16251625
/*
1626-
* Initialize the TSS. Don't bother initializing sp0, as the initial
1627-
* task never enters user mode.
1626+
* Initialize the TSS. sp0 points to the entry trampoline stack
1627+
* regardless of what task is running.
16281628
*/
16291629
set_tss_desc(cpu, &get_cpu_entry_area(cpu)->tss.x86_tss);
16301630
load_TR_desc();
1631+
load_sp0((unsigned long)&get_cpu_entry_area(cpu)->tss +
1632+
offsetofend(struct tss_struct, SYSENTER_stack));
16311633

16321634
load_mm_ldt(&init_mm);
16331635

arch/x86/kernel/traps.c

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -619,14 +619,15 @@ NOKPROBE_SYMBOL(do_int3);
619619

620620
#ifdef CONFIG_X86_64
621621
/*
622-
* Help handler running on IST stack to switch off the IST stack if the
623-
* interrupted code was in user mode. The actual stack switch is done in
624-
* entry_64.S
622+
* Help handler running on a per-cpu (IST or entry trampoline) stack
623+
* to switch to the normal thread stack if the interrupted code was in
624+
* user mode. The actual stack switch is done in entry_64.S
625625
*/
626626
asmlinkage __visible notrace struct pt_regs *sync_regs(struct pt_regs *eregs)
627627
{
628-
struct pt_regs *regs = task_pt_regs(current);
629-
*regs = *eregs;
628+
struct pt_regs *regs = (struct pt_regs *)this_cpu_read(cpu_current_top_of_stack) - 1;
629+
if (regs != eregs)
630+
*regs = *eregs;
630631
return regs;
631632
}
632633
NOKPROBE_SYMBOL(sync_regs);
@@ -642,13 +643,13 @@ struct bad_iret_stack *fixup_bad_iret(struct bad_iret_stack *s)
642643
/*
643644
* This is called from entry_64.S early in handling a fault
644645
* caused by a bad iret to user mode. To handle the fault
645-
* correctly, we want move our stack frame to task_pt_regs
646-
* and we want to pretend that the exception came from the
647-
* iret target.
646+
* correctly, we want to move our stack frame to where it would
647+
* be had we entered directly on the entry stack (rather than
648+
* just below the IRET frame) and we want to pretend that the
649+
* exception came from the IRET target.
648650
*/
649651
struct bad_iret_stack *new_stack =
650-
container_of(task_pt_regs(current),
651-
struct bad_iret_stack, regs);
652+
(struct bad_iret_stack *)this_cpu_read(cpu_tss.x86_tss.sp0) - 1;
652653

653654
/* Copy the IRET target to the new stack. */
654655
memmove(&new_stack->regs.ip, (void *)s->regs.sp, 5*8);

0 commit comments

Comments
 (0)