]> git.baikalelectronics.ru Git - kernel.git/commit
KVM: SVM: avoid infinite loop on NPF from bad address
authorPaolo Bonzini <pbonzini@redhat.com>
Fri, 17 Apr 2020 16:21:06 +0000 (12:21 -0400)
committerPaolo Bonzini <pbonzini@redhat.com>
Tue, 21 Apr 2020 13:13:13 +0000 (09:13 -0400)
commit733782f8a52975da936b334a08b1b8420f488d6a
tree3bbd58436dcb3900f1f0c276e497b8381d0b169b
parente08b1a77138c56d89e02648f34bbe28a9f3301ea
KVM: SVM: avoid infinite loop on NPF from bad address

When a nested page fault is taken from an address that does not have
a memslot associated to it, kvm_mmu_do_page_fault returns RET_PF_EMULATE
(via mmu_set_spte) and kvm_mmu_page_fault then invokes svm_need_emulation_on_page_fault.

The default answer there is to return false, but in this case this just
causes the page fault to be retried ad libitum.  Since this is not a
fast path, and the only other case where it is taken is an erratum,
just stick a kvm_vcpu_gfn_to_memslot check in there to detect the
common case where the erratum is not happening.

This fixes an infinite loop in the new set_memory_region_test.

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
arch/x86/kvm/svm/svm.c
virt/kvm/kvm_main.c