]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
x86/apic: KVM: Use cpu_physical_id() to get APIC ID of running vCPU for AVIC
authorSean Christopherson <seanjc@google.com>
Fri, 12 Jun 2026 18:54:59 +0000 (11:54 -0700)
committerPaolo Bonzini <pbonzini@redhat.com>
Wed, 24 Jun 2026 11:52:24 +0000 (07:52 -0400)
Use cpu_physical_id() instead of default_cpu_present_to_apicid() when
getting the APIC ID of the pCPU on which a vCPU is running/loaded, as the
kernel has gone way off the rails if a vCPU is loaded on a pCPU that has
been physically removed from the system.  Even if the impossible were to
happen, the absolutely worst case scenario is that hardware will ring the
AIVC doorbell on the wrong pCPU, i.e. a severely broken system will
experience mild performance issues.

Kill off KVM's superfluous kvm_cpu_get_apicid() wrapper along with the
for-KVM export of default_cpu_present_to_apicid(), as they existed purely
for the wonky AVIC usage.

Cc: Kai Huang <kai.huang@intel.com>
Cc: Yosry Ahmed <yosry@kernel.org>
Signed-off-by: Sean Christopherson <seanjc@google.com>
Acked-by: Naveen N Rao (AMD) <naveen@kernel.org>
Reviewed-by: Kai Huang <kai.huang@intel.com>
Reviewed-by: Yosry Ahmed <yosry@kernel.org>
Message-ID: <20260612185459.591892-1-seanjc@google.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
arch/x86/include/asm/kvm_host.h
arch/x86/kernel/apic/apic_common.c
arch/x86/kvm/svm/avic.c

index 9347c2b62cba499f5e14c827d1806c217fbe8016..5f6c1ce9673b7f5185e304ae14a7f58ce42056ca 100644 (file)
@@ -2525,16 +2525,6 @@ static inline void kvm_arch_vcpu_unblocking(struct kvm_vcpu *vcpu)
        kvm_x86_call(vcpu_unblocking)(vcpu);
 }
 
-static inline int kvm_cpu_get_apicid(int mps_cpu)
-{
-#ifdef CONFIG_X86_LOCAL_APIC
-       return default_cpu_present_to_apicid(mps_cpu);
-#else
-       WARN_ON_ONCE(1);
-       return BAD_APICID;
-#endif
-}
-
 int memslot_rmap_alloc(struct kvm_memory_slot *slot, unsigned long npages);
 
 #define KVM_CLOCK_VALID_FLAGS                                          \
index 2ed3b5c88c7f02edc2cdef45fce714c746114336..45e6b816353edbb715c6853880dc4b0f0cc36f8e 100644 (file)
@@ -26,7 +26,6 @@ u32 default_cpu_present_to_apicid(int mps_cpu)
        else
                return BAD_APICID;
 }
-EXPORT_SYMBOL_FOR_KVM(default_cpu_present_to_apicid);
 
 /*
  * Set up the logical destination ID when the APIC operates in logical
index 0726f88e679aa83f88baebddaadd7688b0946d68..58e493a80cb0eab6e5602f21346c0c09251cb0e1 100644 (file)
@@ -460,8 +460,8 @@ void avic_ring_doorbell(struct kvm_vcpu *vcpu)
        int cpu = READ_ONCE(vcpu->cpu);
 
        if (cpu != get_cpu()) {
-               wrmsrq(MSR_AMD64_SVM_AVIC_DOORBELL, kvm_cpu_get_apicid(cpu));
-               trace_kvm_avic_doorbell(vcpu->vcpu_id, kvm_cpu_get_apicid(cpu));
+               wrmsrq(MSR_AMD64_SVM_AVIC_DOORBELL, cpu_physical_id(cpu));
+               trace_kvm_avic_doorbell(vcpu->vcpu_id, cpu_physical_id(cpu));
        }
        put_cpu();
 }
@@ -1013,7 +1013,7 @@ static void __avic_vcpu_load(struct kvm_vcpu *vcpu, int cpu,
                             enum avic_vcpu_action action)
 {
        struct kvm_svm *kvm_svm = to_kvm_svm(vcpu->kvm);
-       int h_physical_id = kvm_cpu_get_apicid(cpu);
+       int h_physical_id = cpu_physical_id(cpu);
        struct vcpu_svm *svm = to_svm(vcpu);
        unsigned long flags;
        u64 entry;