Re: [PATCH v6 38/76] x86/head/64: Set CR4.FSGSBASE early

From: Joerg Roedel
Date: Mon Aug 31 2020 - 04:58:22 EST


On Sat, Aug 29, 2020 at 05:55:25PM +0200, Borislav Petkov wrote:
> On Mon, Aug 24, 2020 at 10:54:33AM +0200, Joerg Roedel wrote:
> > From: Joerg Roedel <jroedel@xxxxxxx>
> >
> > Early exception handling will use rd/wrgsbase in paranoid_entry/exit.
> > Enable the feature to avoid #UD exceptions on boot APs.
> >
> > Signed-off-by: Joerg Roedel <jroedel@xxxxxxx>
> > Link: https://lore.kernel.org/r/20200724160336.5435-38-joro@xxxxxxxxxx
> > ---
> > arch/x86/kernel/head_64.S | 7 +++++++
> > 1 file changed, 7 insertions(+)
> >
> > diff --git a/arch/x86/kernel/head_64.S b/arch/x86/kernel/head_64.S
> > index 08412f308de3..4622940134a5 100644
> > --- a/arch/x86/kernel/head_64.S
> > +++ b/arch/x86/kernel/head_64.S
> > @@ -153,6 +153,13 @@ SYM_CODE_START(secondary_startup_64)
> > orl $X86_CR4_LA57, %ecx
> > 1:
> > #endif
> > +
> > + ALTERNATIVE "jmp .Lstartup_write_cr4", "", X86_FEATURE_FSGSBASE
> > +
> > + /* Early exception handling uses FSGSBASE on APs */
> > + orl $X86_CR4_FSGSBASE, %ecx
>
> How is this supposed to work?
>
> Alternatives haven't run that early yet and that piece of code looks
> like this:
>
> ffffffff81000067: eb 06 jmp ffffffff8100006f <secondary_startup_64+0x1f>
> ffffffff81000069: 81 c9 00 00 01 00 or $0x10000,%ecx
> ffffffff8100006f: 0f 22 e1 mov %rcx,%cr4
>
> so we'll never set X86_CR4_FSGSBASE during early boot.

This is not needed on the boot CPU, but only on secondary CPUs. When
those are brought up the alternatives have been patches already. The
commit message should probably be more clear about that, I will fix
that.

The CR4 bit also can't be set unconditionally here on the boot CPU,
because at that point the kernel does not know whether the CPU has
support for the fsgsbase instructions.


Regards,

Joerg