mirror of
https://gitlab.com/qemu-project/qemu.git
synced 2026-08-26 22:23:12 -04:00
hw/riscv/riscv-iommu.c: fault when !PTE_U and no priv access
All IOMMU accesses are assumed to be user mode unless told otherwise,
i.e. we have a process_id. In case we have a non-user mode leaf PTE
(PTE_U isn't set) and we are running in user mode, we need to throw a
fault.
This also reflects on qos-riscv-iommu tests: the tests always run in
user mode so our PTEs must have PTE_U (bit 0x10) set.
Fixes: 0c54acb824 ("hw/riscv: add RISC-V IOMMU base emulation")
Resolves: https://gitlab.com/qemu-project/qemu/-/work_items/3553
Signed-off-by: Daniel Henrique Barboza <daniel.barboza@oss.qualcomm.com>
Reviewed-by: Nutty Liu <nutty.liu@hotmail.com>
Reviewed-by: Chao Liu <chao.liu.zevorn@gmail.com>
Message-ID: <20260701121111.537654-3-daniel.barboza@oss.qualcomm.com>
Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
This commit is contained in:
parent
c1d5ec3a2f
commit
b795ea0ba4
2 changed files with 10 additions and 2 deletions
|
|
@ -298,6 +298,7 @@ static int riscv_iommu_spa_fetch(RISCVIOMMUState *s, RISCVIOMMUContext *ctx,
|
|||
G_STAGE = 1,
|
||||
} pass;
|
||||
MemTxResult ret;
|
||||
bool pv = !!ctx->process_id;
|
||||
|
||||
satp = get_field(ctx->satp, RISCV_IOMMU_ATP_MODE_FIELD);
|
||||
gatp = get_field(ctx->gatp, RISCV_IOMMU_ATP_MODE_FIELD);
|
||||
|
|
@ -471,6 +472,13 @@ static int riscv_iommu_spa_fetch(RISCVIOMMUState *s, RISCVIOMMUContext *ctx,
|
|||
break; /* Invalid PTE */
|
||||
} else if (pte & PTE_RESERVED(false)) {
|
||||
break; /* Reserved PTE bits set */
|
||||
} else if (!(pte & PTE_U) && !pv) {
|
||||
/*
|
||||
* All accesses are assumed to be User mode unless
|
||||
* process_id is valid (pv). In case we have a
|
||||
* non-user mode PTE and !pv we need to fault.
|
||||
*/
|
||||
break;
|
||||
} else if (!(pte & (PTE_R | PTE_W | PTE_X))) {
|
||||
base = PPN_PHYS(ppn); /* Inner PTE, continue walking */
|
||||
} else if ((pte & (PTE_R | PTE_W | PTE_X)) == PTE_W) {
|
||||
|
|
|
|||
|
|
@ -54,8 +54,8 @@
|
|||
* PTE masks for RISC-V IOMMU page tables.
|
||||
* Values match PTE_V, PTE_R, PTE_W, PTE_A, PTE_D in target/riscv/cpu_bits.h
|
||||
*/
|
||||
#define QRIOMMU_NON_LEAF_PTE_MASK 0x001 /* PTE_V */
|
||||
#define QRIOMMU_LEAF_PTE_RW_MASK 0x0c7 /* V|R|W|A|D */
|
||||
#define QRIOMMU_NON_LEAF_PTE_MASK 0x011 /* PTE_V | PTE_U */
|
||||
#define QRIOMMU_LEAF_PTE_RW_MASK 0x0d7 /* V | R | W | A | D | PTE_U */
|
||||
#define QRIOMMU_PTE_PPN_MASK 0x003ffffffffffc00ull
|
||||
|
||||
/* Address-space base offset for test tables */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue