UPSTREAM: KVM: arm64: Use correct accessor to parse stage-1 PTEs

hyp_get_page_state() is used with pKVM to retrieve metadata about a page
by parsing a hypervisor stage-1 PTE. However, it incorrectly uses a
helper which parses *stage-2* mappings. Ouch.

Luckily, pkvm_getstate() only looks at the software bits, which happen
to be in the same place for stage-1 and stage-2 PTEs, and this all ends
up working correctly by accident. But clearly, we should do better.

Fix hyp_get_page_state() to use the correct helper.

Bug: 254441685
Fixes: e82edcc75c4e ("KVM: arm64: Implement do_share() helper for sharing memory")
Signed-off-by: Quentin Perret <qperret@google.com>
Signed-off-by: Marc Zyngier <maz@kernel.org>
Link: https://lore.kernel.org/r/20221025145156.855308-1-qperret@google.com
(cherry picked from commit 6853a71726b6f5930b4450889faf02e8f1cfe35c)
Signed-off-by: Lee Jones <joneslee@google.com>
Change-Id: I945716c849d40131c09d4926e5e56bc2a94730bc
This commit is contained in:
Quentin Perret
2022-10-25 14:51:56 +00:00
committed by Lee Jones
parent 2f6641fde7
commit 73d24f728f

View File

@@ -959,7 +959,7 @@ static enum pkvm_page_state hyp_get_page_state(kvm_pte_t pte)
if (!kvm_pte_valid(pte))
return PKVM_NOPAGE;
return pkvm_getstate(kvm_pgtable_stage2_pte_prot(pte));
return pkvm_getstate(kvm_pgtable_hyp_pte_prot(pte));
}
static int __hyp_check_page_state_range(u64 addr, u64 size,