mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Andrew Cooper <andrew.cooper3@citrix.com>
To: Borislav Petkov <bp@alien8.de>, "H. Peter Anvin" <hpa@zytor.com>
Cc: Andrew Cooper <andrew.cooper3@citrix.com>,
	x86-ML <x86@kernel.org>, LKML <linux-kernel@vger.kernel.org>
Subject: Re: Save a WRMSR GS.base?
Date: Thu, 4 Jun 2026 10:17:57 +0100	[thread overview]
Message-ID: <180aeb02-4ed9-436c-ba61-c8559eb7994c@citrix.com> (raw)
In-Reply-To: <20260604015303.GEaiDafyuU0bwP4Y05@fat_crate.local>

On 04/06/2026 2:53 am, Borislav Petkov wrote:
> Hi,
>
> so here:
>
> diff --git a/arch/x86/kernel/process_64.c b/arch/x86/kernel/process_64.c
> index b85e715ebb30..ffa894bdb4ee 100644
> --- a/arch/x86/kernel/process_64.c
> +++ b/arch/x86/kernel/process_64.c
> @@ -400,7 +400,9 @@ static __always_inline void x86_fsgsbase_load(struct thread_struct *prev,
>  
>  		/* Update the bases. */
>  		wrfsbase(next->fsbase);
> -		__wrgsbase_inactive(next->gsbase);
> +
> +		if (!cpu_feature_enabled(X86_FEATURE_LKGS))
> +			__wrgsbase_inactive(next->gsbase);
>  	} else {
>  		load_seg_legacy(prev->fsindex, prev->fsbase,
>  				next->fsindex, next->fsbase, FS);
>
> a couple of lines above in that function we have:
>
>                 if (unlikely(prev->gsindex || next->gsindex))
>                         loadseg(GS, next->gsindex);
>
> which, on a FRED machine, would do LKGS. Now that insn does:
>
> 		GS.selector := SRC;
> 		GS.attributes := descriptor.attributes;
> 		IA32_KERNEL_GS_BASE := descriptor.base; // bits 63:32 cleared
>
> so I can save myself the __wrgsbase_inactive() which ends up doing WRMSR
> GS.base. 
>
> Right? I.e., the diff above.
>
> We're also not doing the optimization of checking whether prev.GS.base and
> next.GS.base are equal. I see them both 0 in a trace here but I guess
> luserpace can change them so I guess we wanna overwrite GS.base on context
> switch unconditionally.
>
> But LKGS does that for us so we don't need the WRMSR GS.base there, right?
>
> Or am I missing something?

Yes, but it took me writing a "no" email to spot it.

If the LKGS (in load seg) was called unconditionally, then yes it would
be safe to drop the __wrgsbase_inactive(), but it's not.

Consider a prev and next which both have the same ->gsindex (so skips
loadseg()), but have different ->gsbase (still need to update KERN_GS_BASE).

~Andrew

  reply	other threads:[~2026-06-04  9:18 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-06-04  1:53 Borislav Petkov
2026-06-04  9:17 ` Andrew Cooper [this message]
2026-06-05  2:24   ` Borislav Petkov
2026-06-05  2:36     ` H. Peter Anvin
2026-06-05  2:54       ` Borislav Petkov
2026-06-05  3:20         ` H. Peter Anvin
2026-06-05  4:26           ` Borislav Petkov
2026-06-05  4:30             ` H. Peter Anvin
2026-06-05  4:38               ` Borislav Petkov
2026-06-05  5:05                 ` H. Peter Anvin
2026-06-05  9:13                   ` Andrew Cooper
2026-06-05 15:13                     ` H. Peter Anvin
2026-06-05 15:16                       ` Andrew Cooper
2026-06-05 15:51                         ` H. Peter Anvin
2026-06-05 17:17                           ` Borislav Petkov
2026-06-08  6:46                             ` H. Peter Anvin
2026-06-08 14:38                               ` Borislav Petkov
2026-06-08 17:30                                 ` H. Peter Anvin
2026-06-08 20:05                                   ` Borislav Petkov
2026-06-08 21:21                                     ` Borislav Petkov
2026-06-08 21:52                                       ` H. Peter Anvin
2026-06-08 22:58                                       ` Andrew Cooper
2026-06-18  1:09                                         ` Borislav Petkov
2026-06-18 10:22                                           ` David Laight
2026-06-18 18:17                                             ` H. Peter Anvin
2026-06-18 21:25                                           ` H. Peter Anvin

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=180aeb02-4ed9-436c-ba61-c8559eb7994c@citrix.com \
    --to=andrew.cooper3@citrix.com \
    --cc=bp@alien8.de \
    --cc=hpa@zytor.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=x86@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome