[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <aK340-6yIE_qujUm@google.com>
Date: Tue, 26 Aug 2025 11:11:31 -0700
From: Sean Christopherson <seanjc@...gle.com>
To: Xin Li <xin@...or.com>
Cc: linux-kernel@...r.kernel.org, kvm@...r.kernel.org,
linux-doc@...r.kernel.org, pbonzini@...hat.com, corbet@....net,
tglx@...utronix.de, mingo@...hat.com, bp@...en8.de,
dave.hansen@...ux.intel.com, x86@...nel.org, hpa@...or.com, luto@...nel.org,
peterz@...radead.org, andrew.cooper3@...rix.com, chao.gao@...el.com,
hch@...radead.org
Subject: Re: [PATCH v6 06/20] KVM: VMX: Set FRED MSR intercepts
On Sun, Aug 24, 2025, Xin Li wrote:
> On 8/21/2025 3:36 PM, Xin Li (Intel) wrote:
> > + /*
> > + * MSR_IA32_FRED_RSP0 and MSR_IA32_PL0_SSP (aka MSR_IA32_FRED_SSP0) are
> > + * designated for event delivery while executing in userspace. Since
> > + * KVM operates exclusively in kernel mode (the CPL is always 0 after
> > + * any VM exit), KVM can safely retain and operate with the guest-defined
> > + * values for MSR_IA32_FRED_RSP0 and MSR_IA32_PL0_SSP.
> > + *
> > + * Therefore, interception of MSR_IA32_FRED_RSP0 and MSR_IA32_PL0_SSP
> > + * is not required.
> > + *
> > + * Note, save and restore of MSR_IA32_PL0_SSP belong to CET supervisor
> > + * context management. However the FRED SSP MSRs, including
> > + * MSR_IA32_PL0_SSP, are supported by any processor that enumerates FRED.
> > + * If such a processor does not support CET, FRED transitions will not
> > + * use the MSRs, but the MSRs would still be accessible using MSR-access
> > + * instructions (e.g., RDMSR, WRMSR).
> > + */
> > + vmx_set_intercept_for_msr(vcpu, MSR_IA32_FRED_RSP0, MSR_TYPE_RW, intercept);
> > + vmx_set_intercept_for_msr(vcpu, MSR_IA32_PL0_SSP, MSR_TYPE_RW, intercept);
>
> Hi Sean,
>
> I'd like to bring up an issue concerning MSR_IA32_PL0_SSP.
>
> The FRED spec claims:
>
> The FRED SSP MSRs are supported by any processor that enumerates
> CPUID.(EAX=7,ECX=1):EAX.FRED[bit 17] as 1. If such a processor does not
> support CET, FRED transitions will not use the MSRs (because shadow stacks
> are not enabled), but the MSRs would still be accessible using MSR-access
> instructions (e.g., RDMSR, WRMSR).
>
> It means KVM needs to handle MSR_IA32_PL0_SSP even when FRED is supported
> but CET is not. And this can be broken down into two subtasks:
>
> 1) Allow such a guest to access MSR_IA32_PL0_SSP w/o triggering #GP. And
> this behavior is already implemented in patch 8 of this series.
>
> 2) Save and restore MSR_IA32_PL0_SSP in both KVM and Qemu for such a guest.
What novel work needs to be done in KVM? For QEMU, I assume it's just adding an
"or FRED" somewhere. For KVM, I'm missing what additional work would be required
that wouldn't be naturally covered by patch 8 (assuming patch 8 is bug-free).
> I have the patches for 2) but they are not included in this series, because
>
> 1) how much do we care the value in MSR_IA32_PL0_SSP in such a guest?
>
> Yes, Chao told me that you are the one saying that MSRs can be used as
> clobber registers and KVM should preserve the value. Does MSR_IA32_PL0_SSP
> in such a guest count?
If the architecture says that MSR_IA32_PL0_SSP exists and is accessible, then
KVM needs to honor that.
> 2) Saving/restoring MSR_IA32_PL0_SSP adds complexity, though it's seldom
> used. Is it worth it?
Honoring the architecture is generally not optional. There are extreme cases
where KVM violates that rule and takes (often undocumented) erratum, e.g. APIC
base relocation would require an absurd amount of complexity for no real world
benefit. But I would be very surprised if the complexity in KVM or QEMU to support
this scenario is at all meaningful, let alone enough to justify diverging from
the architectural spec.
> BTW I'm still working on a KVM unit test for it, using a L1 VMM that
> enumerates FRED but not CET.
>
> Thanks!
> Xin
Powered by blists - more mailing lists