Re: [PATCH 08/12] KVM: nSVM: Use KVM-governed feature framework to track "vVM{SAVE,LOAD} enabled"

From: Sean Christopherson
Date: Wed Feb 22 2023 - 11:39:09 EST


+Maxim

On Wed, Feb 22, 2023, Yu Zhang wrote:
> On Tue, Feb 21, 2023 at 03:48:07PM -0800, Sean Christopherson wrote:
> > On Tue, Feb 21, 2023, Yu Zhang wrote:
> > > > Sorry, why guest_cpuid_is_intel(vcpu)? Is it becasue that a AMD host with virtual
> > > > VMSAVE/VMLOAD capability will always expose this feature for all AMD guests?
> > >
> > > Oh, sorry. I missed the guest_cpuid_has() in kvm_governed_feature_check_and_set().
> > > So please just ignore my 2nd question.
> > >
> > > As to the check of guest_cpuid_is_intel(), is it necessary?
> >
> > Yes? The comment in init_vmcb_after_set_cpuid() says:
> >
> > /*
> > * We must intercept SYSENTER_EIP and SYSENTER_ESP
> > * accesses because the processor only stores 32 bits.
> > * For the same reason we cannot use virtual VMLOAD/VMSAVE.
> > */
> >
> > but I'm struggling to connect the dots to SYSENTER. I suspect the comment is
> > misleading and has nothing to do 32-bit vs. 64-bit (or I'm reading it wrong) and
> > should be something like:
> >
> > /*
> > * Disable virtual VMLOAD/VMSAVE and intercept VMLOAD/VMSAVE if the
> > * guest CPU is Intel in order to inject #UD.
> > */
> >
> > In other words, a non-SVM guest shouldn't be allowed to execute VMLOAD/VMSAVE.
>
> Yes. Such interpretation makes sense. And vmload/vmsave shall be intercepted
> if guest CPU is Intel and #UD shall be injected. I guess this is done indirectly
> by judging the EFER_SVME not set in EFER in nested_svm_check_permissions()?

Nope, my interpretation is wrong. vmload_vmsave_interception() clears the upper
bits of SYSENTER_{EIP,ESP}

if (vmload) {
svm_copy_vmloadsave_state(svm->vmcb, vmcb12);
svm->sysenter_eip_hi = 0;
svm->sysenter_esp_hi = 0;
} else {
svm_copy_vmloadsave_state(vmcb12, svm->vmcb);
}

>From commit adc2a23734ac ("KVM: nSVM: improve SYSENTER emulation on AMD"):

3. Disable vmload/vmsave virtualization if vendor=GenuineIntel.
(It is somewhat insane to set vendor=GenuineIntel and still enable
SVM for the guest but well whatever).
Then zero the high 32 bit parts when kvm intercepts and emulates vmload.

Presumably AMD hardware loads only the lower 32 bits, which would leave garbage
in the upper bits and even leak state from L1 to L2 (again ignoring the fact that
exposing SVM to an Intel vCPU is bonkers).

I'll opportunistically massage the comment to make it more explicit about why
VMLOAD needs to be intercepted.

That said, clearing the bits for this seems wrong. That would corrupt the MSRs
for 64-bit Intel guests. The "target" of the fix was 32-bit L2s, i.e. I doubt
anything would notice.

This patch fixes nested migration of 32 bit nested guests, that was
broken because incorrect cached values of SYSENTER msrs were stored in
the migration stream if L1 changed these msrs with
vmload prior to L2 entry.

Maxim, would anything actually break if KVM let L1 load 64-bit values for the
SYSENTER MSRs?

> And as to X86_FEATURE_V_VMSAVE_VMLOAD, should the guest_cpuid_has() return true
> at all for a Intel guest?

Yes, because guest CPUID is userspace controlled. Except for emulating architectural
side effects, e.g. size of XSAVE area, KVM doesn't sanitize guest CPUID.