]> git.baikalelectronics.ru Git - kernel.git/commit
KVM: fix KVM_CLEAR_DIRTY_LOG for memory slots of unaligned size
authorPaolo Bonzini <pbonzini@redhat.com>
Wed, 17 Apr 2019 13:28:44 +0000 (15:28 +0200)
committerPaolo Bonzini <pbonzini@redhat.com>
Tue, 30 Apr 2019 19:22:15 +0000 (21:22 +0200)
commit2e2d9faf0e47081f62686a565ac7dc05f5518f0f
tree8cf55a1022132806b63cceb24b286514c2210e34
parent4e5c77e19daf0222432f6d451f09566bfb08921c
KVM: fix KVM_CLEAR_DIRTY_LOG for memory slots of unaligned size

If a memory slot's size is not a multiple of 64 pages (256K), then
the KVM_CLEAR_DIRTY_LOG API is unusable: clearing the final 64 pages
either requires the requested page range to go beyond memslot->npages,
or requires log->num_pages to be unaligned, and kvm_clear_dirty_log_protect
requires log->num_pages to be both in range and aligned.

To allow this case, allow log->num_pages not to be a multiple of 64 if
it ends exactly on the last page of the slot.

Reported-by: Peter Xu <peterx@redhat.com>
Fixes: fe4cdf0ec188 ("KVM: validate userspace input in kvm_clear_dirty_log_protect()", 2019-01-02)
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Documentation/virtual/kvm/api.txt
tools/testing/selftests/kvm/dirty_log_test.c
virt/kvm/kvm_main.c