[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 9/9] target/i386: Use probe_access_full for final stage2 trans
From: |
Richard Henderson |
Subject: |
[PATCH v2 9/9] target/i386: Use probe_access_full for final stage2 translation |
Date: |
Sun, 2 Oct 2022 10:29:56 -0700 |
Rather than recurse directly on mmu_translate, go through the
same softmmu lookup that we did for the page table walk.
This centralizes all knowledge of MMU_NESTED_IDX, with respect
to setup of TranslationParams, to get_physical_address.
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
target/i386/tcg/sysemu/excp_helper.c | 40 +++++++++++++++++++---------
1 file changed, 27 insertions(+), 13 deletions(-)
diff --git a/target/i386/tcg/sysemu/excp_helper.c
b/target/i386/tcg/sysemu/excp_helper.c
index e8457e9b21..d51b5d7431 100644
--- a/target/i386/tcg/sysemu/excp_helper.c
+++ b/target/i386/tcg/sysemu/excp_helper.c
@@ -143,7 +143,7 @@ static bool mmu_translate(CPUX86State *env, const
TranslateParams *in,
.err = err,
.ptw_idx = in->ptw_idx,
};
- hwaddr pte_addr;
+ hwaddr pte_addr, paddr;
uint32_t pkr;
int page_size;
@@ -420,33 +420,47 @@ do_check_protect_pse36:
}
/* align to page_size */
- out->paddr = (pte & a20_mask & PG_ADDRESS_MASK & ~(page_size - 1))
- | (addr & (page_size - 1));
+ paddr = (pte & a20_mask & PG_ADDRESS_MASK & ~(page_size - 1))
+ | (addr & (page_size - 1));
if (in->ptw_idx == MMU_NESTED_IDX) {
- TranslateParams nested_in = {
- .addr = out->paddr,
- .access_type = access_type,
- .cr3 = env->nested_cr3,
- .pg_mode = env->nested_pg_mode,
- .mmu_idx = MMU_USER_IDX,
- .ptw_idx = MMU_PHYS_IDX,
- };
+ CPUTLBEntryFull *full;
+ int flags, nested_page_size;
- if (!mmu_translate(env, &nested_in, out, err)) {
+ flags = probe_access_full(env, paddr, access_type,
+ MMU_NESTED_IDX, true,
+ &pte_trans.haddr, &full, 0);
+ if (unlikely(flags & TLB_INVALID_MASK)) {
+ err->exception_index = 0; /* unused */
+ err->error_code = env->error_code;
+ err->cr2 = paddr;
err->stage2 = S2_GPA;
return false;
}
/* Merge stage1 & stage2 protection bits. */
- prot &= out->prot;
+ prot &= full->prot;
/* Re-verify resulting protection. */
if ((prot & (1 << access_type)) == 0) {
goto do_fault_protect;
}
+
+ /* Merge stage1 & stage2 addresses to final physical address. */
+ nested_page_size = 1 << full->lg_page_size;
+ paddr = (full->phys_addr & ~(nested_page_size - 1))
+ | (paddr & (nested_page_size - 1));
+
+ /*
+ * Use the larger of stage1 & stage2 page sizes, so that
+ * invalidation works.
+ */
+ if (nested_page_size > page_size) {
+ page_size = nested_page_size;
+ }
}
+ out->paddr = paddr;
out->prot = prot;
out->page_size = page_size;
return true;
--
2.34.1
- [PATCH v2 0/9] target/i386: Use atomic operations for pte updates, Richard Henderson, 2022/10/02
- [PATCH v2 1/9] target/i386: Use MMUAccessType across excp_helper.c, Richard Henderson, 2022/10/02
- [PATCH v2 3/9] target/i386: Introduce structures for mmu_translate, Richard Henderson, 2022/10/02
- [PATCH v2 7/9] target/i386: Combine 5 sets of variables in mmu_translate, Richard Henderson, 2022/10/02
- [PATCH v2 6/9] target/i386: Use MMU_NESTED_IDX for vmload/vmsave, Richard Henderson, 2022/10/02
- [PATCH v2 4/9] target/i386: Reorg GET_HPHYS, Richard Henderson, 2022/10/02
- [PATCH v2 2/9] target/i386: Direct call get_hphys from mmu_translate, Richard Henderson, 2022/10/02
- [PATCH v2 5/9] target/i386: Add MMU_PHYS_IDX and MMU_NESTED_IDX, Richard Henderson, 2022/10/02
- [PATCH v2 9/9] target/i386: Use probe_access_full for final stage2 translation,
Richard Henderson <=
- [PATCH v2 8/9] target/i386: Use atomic operations for pte updates, Richard Henderson, 2022/10/02
- Re: [PATCH v2 0/9] target/i386: Use atomic operations for pte updates, Paolo Bonzini, 2022/10/13