Skip to content

Commit a7c42bb

Browse files
vittyvkbonzini
authored andcommitted
x86/kvm/lapic: preserve gfn_to_hva_cache len on cache reinit
vcpu->arch.pv_eoi is accessible through both HV_X64_MSR_VP_ASSIST_PAGE and MSR_KVM_PV_EOI_EN so on migration userspace may try to restore them in any order. Values match, however, kvm_lapic_enable_pv_eoi() uses different length: for Hyper-V case it's the whole struct hv_vp_assist_page, for KVM native case it is 8. In case we restore KVM-native MSR last cache will be reinitialized with len=8 so trying to access VP assist page beyond 8 bytes with kvm_read_guest_cached() will fail. Check if we re-initializing cache for the same address and preserve length in case it was greater. Signed-off-by: Vitaly Kuznetsov <vkuznets@redhat.com> Cc: stable@vger.kernel.org Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
1 parent 12e0c61 commit a7c42bb

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

arch/x86/kvm/lapic.c

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2647,14 +2647,22 @@ int kvm_hv_vapic_msr_read(struct kvm_vcpu *vcpu, u32 reg, u64 *data)
26472647
int kvm_lapic_enable_pv_eoi(struct kvm_vcpu *vcpu, u64 data, unsigned long len)
26482648
{
26492649
u64 addr = data & ~KVM_MSR_ENABLED;
2650+
struct gfn_to_hva_cache *ghc = &vcpu->arch.pv_eoi.data;
2651+
unsigned long new_len;
2652+
26502653
if (!IS_ALIGNED(addr, 4))
26512654
return 1;
26522655

26532656
vcpu->arch.pv_eoi.msr_val = data;
26542657
if (!pv_eoi_enabled(vcpu))
26552658
return 0;
2656-
return kvm_gfn_to_hva_cache_init(vcpu->kvm, &vcpu->arch.pv_eoi.data,
2657-
addr, len);
2659+
2660+
if (addr == ghc->gpa && len <= ghc->len)
2661+
new_len = ghc->len;
2662+
else
2663+
new_len = len;
2664+
2665+
return kvm_gfn_to_hva_cache_init(vcpu->kvm, ghc, addr, new_len);
26582666
}
26592667

26602668
void kvm_apic_accept_events(struct kvm_vcpu *vcpu)

0 commit comments

Comments
 (0)