提交 9f9f0a44 编写于 作者: S Suthikulpanit, Suravee 提交者: Caspar Zhang

svm: Fix AVIC DFR and LDR handling

commit 98d90582be2e08246a70af31e09950ecb8876252 upstream.

Current SVM AVIC driver makes two incorrect assumptions:
  1. APIC LDR register cannot be zero
  2. APIC DFR for all vCPUs must be the same

LDR=0 means the local APIC does not support logical destination mode.
Therefore, the driver should mark any previously assigned logical APIC ID
table entry as invalid, and return success.  Also, DFR is specific to
a particular local APIC, and can be different among all vCPUs
(as observed on Windows 10).

These incorrect assumptions cause Windows 10 and FreeBSD VMs to fail
to boot with AVIC enabled. So, instead of flush the whole logical APIC ID
table, handle DFR and LDR for each vCPU independently.

Fixes: 18f40c53 ('svm: Add VMEXIT handlers for AVIC')
Cc: Radim Krčmář <rkrcmar@redhat.com>
Cc: Paolo Bonzini <pbonzini@redhat.com>
Reported-by: NJulian Stecklina <jsteckli@amazon.de>
Signed-off-by: NSuravee Suthikulpanit <suravee.suthikulpanit@amd.com>
Signed-off-by: NPaolo Bonzini <pbonzini@redhat.com>
Signed-off-by: NWANG Siyuan <Siyuan.Wang@amd.com>
Acked-by: NCaspar Zhang <caspar@linux.alibaba.com>
上级 aebb60fc
...@@ -145,7 +145,6 @@ struct kvm_svm { ...@@ -145,7 +145,6 @@ struct kvm_svm {
/* Struct members for AVIC */ /* Struct members for AVIC */
u32 avic_vm_id; u32 avic_vm_id;
u32 ldr_mode;
struct page *avic_logical_id_table_page; struct page *avic_logical_id_table_page;
struct page *avic_physical_id_table_page; struct page *avic_physical_id_table_page;
struct hlist_node hnode; struct hlist_node hnode;
...@@ -236,6 +235,7 @@ struct vcpu_svm { ...@@ -236,6 +235,7 @@ struct vcpu_svm {
bool nrips_enabled : 1; bool nrips_enabled : 1;
u32 ldr_reg; u32 ldr_reg;
u32 dfr_reg;
struct page *avic_backing_page; struct page *avic_backing_page;
u64 *avic_physical_id_cache; u64 *avic_physical_id_cache;
bool avic_is_running; bool avic_is_running;
...@@ -2112,6 +2112,7 @@ static int avic_init_vcpu(struct vcpu_svm *svm) ...@@ -2112,6 +2112,7 @@ static int avic_init_vcpu(struct vcpu_svm *svm)
INIT_LIST_HEAD(&svm->ir_list); INIT_LIST_HEAD(&svm->ir_list);
spin_lock_init(&svm->ir_list_lock); spin_lock_init(&svm->ir_list_lock);
svm->dfr_reg = APIC_DFR_FLAT;
return ret; return ret;
} }
...@@ -4576,8 +4577,7 @@ static u32 *avic_get_logical_id_entry(struct kvm_vcpu *vcpu, u32 ldr, bool flat) ...@@ -4576,8 +4577,7 @@ static u32 *avic_get_logical_id_entry(struct kvm_vcpu *vcpu, u32 ldr, bool flat)
return &logical_apic_id_table[index]; return &logical_apic_id_table[index];
} }
static int avic_ldr_write(struct kvm_vcpu *vcpu, u8 g_physical_id, u32 ldr, static int avic_ldr_write(struct kvm_vcpu *vcpu, u8 g_physical_id, u32 ldr)
bool valid)
{ {
bool flat; bool flat;
u32 *entry, new_entry; u32 *entry, new_entry;
...@@ -4590,31 +4590,39 @@ static int avic_ldr_write(struct kvm_vcpu *vcpu, u8 g_physical_id, u32 ldr, ...@@ -4590,31 +4590,39 @@ static int avic_ldr_write(struct kvm_vcpu *vcpu, u8 g_physical_id, u32 ldr,
new_entry = READ_ONCE(*entry); new_entry = READ_ONCE(*entry);
new_entry &= ~AVIC_LOGICAL_ID_ENTRY_GUEST_PHYSICAL_ID_MASK; new_entry &= ~AVIC_LOGICAL_ID_ENTRY_GUEST_PHYSICAL_ID_MASK;
new_entry |= (g_physical_id & AVIC_LOGICAL_ID_ENTRY_GUEST_PHYSICAL_ID_MASK); new_entry |= (g_physical_id & AVIC_LOGICAL_ID_ENTRY_GUEST_PHYSICAL_ID_MASK);
if (valid) new_entry |= AVIC_LOGICAL_ID_ENTRY_VALID_MASK;
new_entry |= AVIC_LOGICAL_ID_ENTRY_VALID_MASK;
else
new_entry &= ~AVIC_LOGICAL_ID_ENTRY_VALID_MASK;
WRITE_ONCE(*entry, new_entry); WRITE_ONCE(*entry, new_entry);
return 0; return 0;
} }
static void avic_invalidate_logical_id_entry(struct kvm_vcpu *vcpu)
{
struct vcpu_svm *svm = to_svm(vcpu);
bool flat = svm->dfr_reg == APIC_DFR_FLAT;
u32 *entry = avic_get_logical_id_entry(vcpu, svm->ldr_reg, flat);
if (entry)
WRITE_ONCE(*entry, (u32) ~AVIC_LOGICAL_ID_ENTRY_VALID_MASK);
}
static int avic_handle_ldr_update(struct kvm_vcpu *vcpu) static int avic_handle_ldr_update(struct kvm_vcpu *vcpu)
{ {
int ret; int ret = 0;
struct vcpu_svm *svm = to_svm(vcpu); struct vcpu_svm *svm = to_svm(vcpu);
u32 ldr = kvm_lapic_get_reg(vcpu->arch.apic, APIC_LDR); u32 ldr = kvm_lapic_get_reg(vcpu->arch.apic, APIC_LDR);
if (!ldr) if (ldr == svm->ldr_reg)
return 1; return 0;
ret = avic_ldr_write(vcpu, vcpu->vcpu_id, ldr, true); avic_invalidate_logical_id_entry(vcpu);
if (ret && svm->ldr_reg) {
avic_ldr_write(vcpu, 0, svm->ldr_reg, false); if (ldr)
svm->ldr_reg = 0; ret = avic_ldr_write(vcpu, vcpu->vcpu_id, ldr);
} else {
if (!ret)
svm->ldr_reg = ldr; svm->ldr_reg = ldr;
}
return ret; return ret;
} }
...@@ -4648,27 +4656,16 @@ static int avic_handle_apic_id_update(struct kvm_vcpu *vcpu) ...@@ -4648,27 +4656,16 @@ static int avic_handle_apic_id_update(struct kvm_vcpu *vcpu)
return 0; return 0;
} }
static int avic_handle_dfr_update(struct kvm_vcpu *vcpu) static void avic_handle_dfr_update(struct kvm_vcpu *vcpu)
{ {
struct vcpu_svm *svm = to_svm(vcpu); struct vcpu_svm *svm = to_svm(vcpu);
struct kvm_svm *kvm_svm = to_kvm_svm(vcpu->kvm);
u32 dfr = kvm_lapic_get_reg(vcpu->arch.apic, APIC_DFR); u32 dfr = kvm_lapic_get_reg(vcpu->arch.apic, APIC_DFR);
u32 mod = (dfr >> 28) & 0xf;
/*
* We assume that all local APICs are using the same type.
* If this changes, we need to flush the AVIC logical
* APID id table.
*/
if (kvm_svm->ldr_mode == mod)
return 0;
clear_page(page_address(kvm_svm->avic_logical_id_table_page)); if (svm->dfr_reg == dfr)
kvm_svm->ldr_mode = mod; return;
if (svm->ldr_reg) avic_invalidate_logical_id_entry(vcpu);
avic_handle_ldr_update(vcpu); svm->dfr_reg = dfr;
return 0;
} }
static int avic_unaccel_trap_write(struct vcpu_svm *svm) static int avic_unaccel_trap_write(struct vcpu_svm *svm)
...@@ -6178,8 +6175,7 @@ static inline void avic_post_state_restore(struct kvm_vcpu *vcpu) ...@@ -6178,8 +6175,7 @@ static inline void avic_post_state_restore(struct kvm_vcpu *vcpu)
{ {
if (avic_handle_apic_id_update(vcpu) != 0) if (avic_handle_apic_id_update(vcpu) != 0)
return; return;
if (avic_handle_dfr_update(vcpu) != 0) avic_handle_dfr_update(vcpu);
return;
avic_handle_ldr_update(vcpu); avic_handle_ldr_update(vcpu);
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册