]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/commitdiff
KVM: arm64: Refuse illegal KVM_ARM_VCPU_PMU_V3 at reset time
authorMarc Zyngier <maz@kernel.org>
Thu, 12 Nov 2020 18:13:27 +0000 (18:13 +0000)
committerMarc Zyngier <maz@kernel.org>
Fri, 27 Nov 2020 11:40:39 +0000 (11:40 +0000)
We accept to configure a PMU when a vcpu is created, even if the
HW (or the host) doesn't support it. This results in failures
when attributes get set, which is a bit odd as we should have
failed the vcpu creation the first place.

Move the check to the point where we check the vcpu feature set,
and fail early if we cannot support a PMU. This further simplifies
the attribute handling.

Reviewed-by: Alexandru Elisei <alexandru.elisei@arm.com>
Signed-off-by: Marc Zyngier <maz@kernel.org>
arch/arm64/kvm/pmu-emul.c
arch/arm64/kvm/reset.c

index c640d16d1bbdb929271817e46e044b6b7e786b9c..812495e915e47e57ada4625e719237fbddfb7e8c 100644 (file)
@@ -913,7 +913,7 @@ static bool pmu_irq_is_valid(struct kvm *kvm, int irq)
 
 int kvm_arm_pmu_v3_set_attr(struct kvm_vcpu *vcpu, struct kvm_device_attr *attr)
 {
-       if (!kvm_arm_support_pmu_v3() || !kvm_vcpu_has_pmu(vcpu))
+       if (!kvm_vcpu_has_pmu(vcpu))
                return -ENODEV;
 
        if (vcpu->arch.pmu.created)
@@ -1034,7 +1034,7 @@ int kvm_arm_pmu_v3_has_attr(struct kvm_vcpu *vcpu, struct kvm_device_attr *attr)
        case KVM_ARM_VCPU_PMU_V3_IRQ:
        case KVM_ARM_VCPU_PMU_V3_INIT:
        case KVM_ARM_VCPU_PMU_V3_FILTER:
-               if (kvm_arm_support_pmu_v3() && kvm_vcpu_has_pmu(vcpu))
+               if (kvm_vcpu_has_pmu(vcpu))
                        return 0;
        }
 
index 74ce92a4988c18e87dc3e5ccaf325d33df42d3bb..3e772ea4e066d7eff155ab4060f779f692029add 100644 (file)
@@ -285,6 +285,10 @@ int kvm_reset_vcpu(struct kvm_vcpu *vcpu)
                        pstate = VCPU_RESET_PSTATE_EL1;
                }
 
+               if (kvm_vcpu_has_pmu(vcpu) && !kvm_arm_support_pmu_v3()) {
+                       ret = -EINVAL;
+                       goto out;
+               }
                break;
        }