]> www.infradead.org Git - users/hch/configfs.git/commitdiff
KVM: x86/mmu: Bug the VM if KVM tries to split a !hugepage SPTE
authorSean Christopherson <seanjc@google.com>
Fri, 12 Jul 2024 15:13:34 +0000 (08:13 -0700)
committerPaolo Bonzini <pbonzini@redhat.com>
Tue, 16 Jul 2024 13:56:56 +0000 (09:56 -0400)
Bug the VM instead of simply warning if KVM tries to split a SPTE that is
non-present or not-huge.  KVM is guaranteed to end up in a broken state as
the callers fully expect a valid SPTE, e.g. the shadow MMU will add an
rmap entry, and all MMUs will account the expected small page.  Returning
'0' is also technically wrong now that SHADOW_NONPRESENT_VALUE exists,
i.e. would cause KVM to create a potential #VE SPTE.

While it would be possible to have the callers gracefully handle failure,
doing so would provide no practical value as the scenario really should be
impossible, while the error handling would add a non-trivial amount of
noise.

Fixes: a3fe5dbda0a4 ("KVM: x86/mmu: Split huge pages mapped by the TDP MMU when dirty logging is enabled")
Cc: David Matlack <dmatlack@google.com>
Signed-off-by: Sean Christopherson <seanjc@google.com>
Message-ID: <20240712151335.1242633-2-seanjc@google.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
arch/x86/kvm/mmu/spte.c

index 8275b96b65962f377fdbedce4f64f0e191d4a248..b15ce06edb46f96465af4deb636867f5e3239c08 100644 (file)
@@ -296,11 +296,7 @@ u64 make_huge_page_split_spte(struct kvm *kvm, u64 huge_spte, union kvm_mmu_page
 {
        u64 child_spte;
 
-       if (WARN_ON_ONCE(!is_shadow_present_pte(huge_spte)))
-               return 0;
-
-       if (WARN_ON_ONCE(!is_large_pte(huge_spte)))
-               return 0;
+       KVM_BUG_ON(!is_shadow_present_pte(huge_spte) || !is_large_pte(huge_spte), kvm);
 
        child_spte = huge_spte;