/*
* Apply runtime CPUID updates to the incoming CPUID entries to avoid
- * false positives due mismatches on KVM-owned feature flags.
+ * false positives due mismatches on KVM-owned feature flags. Note,
+ * runtime CPUID updates may consume other CPUID-driven vCPU state,
+ * e.g. KVM or Xen CPUID bases. Updating runtime state before full
+ * CPUID processing is functionally correct only because any change in
+ * CPUID is disallowed, i.e. using stale data is ok because the below
+ * checks will reject the change.
*
* Note! @e2 and @nent track the _old_ CPUID entries!
*/
static u32 kvm_apply_cpuid_pv_features_quirk(struct kvm_vcpu *vcpu)
{
- struct kvm_hypervisor_cpuid kvm_cpuid;
struct kvm_cpuid_entry2 *best;
+ u32 features_leaf = vcpu->arch.kvm_cpuid.base | KVM_CPUID_FEATURES;
- kvm_cpuid = kvm_get_hypervisor_cpuid(vcpu, KVM_SIGNATURE);
- if (!kvm_cpuid.base)
+ if (!vcpu->arch.kvm_cpuid.base ||
+ vcpu->arch.kvm_cpuid.limit < features_leaf)
return 0;
- best = kvm_find_cpuid_entry(vcpu, kvm_cpuid.base | KVM_CPUID_FEATURES);
+ best = kvm_find_cpuid_entry(vcpu, features_leaf);
if (!best)
return 0;
if (r)
goto err;
+ vcpu->arch.kvm_cpuid = kvm_get_hypervisor_cpuid(vcpu, KVM_SIGNATURE);
#ifdef CONFIG_KVM_XEN
vcpu->arch.xen.cpuid = kvm_get_hypervisor_cpuid(vcpu, XEN_SIGNATURE);
#endif