All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3] iommu/riscv: prevent NULL deref in iova_to_phys
@ 2025-08-15  7:12 ` XianLiang Huang
  0 siblings, 0 replies; 10+ messages in thread
From: XianLiang Huang @ 2025-08-15  7:12 UTC (permalink / raw)
  To: tjeznach
  Cc: markus.elfring, joro, will, robin.murphy, paul.walmsley, palmer,
	aou, alex, iommu, linux-riscv, linux-kernel, huangxianliang

The riscv_iommu_pte_fetch() function returns either NULL for
unmapped/never-mapped iova, or a valid leaf pte pointer that requires no
further validation.

riscv_iommu_iova_to_phys() failed to handle NULL returns. Fix by adding NULL
check before dereferencing and returning 0 for invalid iova.

Fixes: 488ffbf18171 ("iommu/riscv: Paging domain support")
Cc: Tomasz Jeznach <tjeznach@rivosinc.com>
Signed-off-by: XianLiang Huang <huangxianliang@lanxincomputing.com>
---
Changes
v3:
- Remove redundant pte validation in riscv_iommu_iova_to_phys
- Improve subject line to emphasize prevention

v2:
- Refine problem description
- Add "Fixes" tag
---
 drivers/iommu/riscv/iommu.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/iommu/riscv/iommu.c b/drivers/iommu/riscv/iommu.c
index 2d0d31ba2886..0eae2f4bdc5e 100644
--- a/drivers/iommu/riscv/iommu.c
+++ b/drivers/iommu/riscv/iommu.c
@@ -1283,7 +1283,7 @@ static phys_addr_t riscv_iommu_iova_to_phys(struct iommu_domain *iommu_domain,
 	unsigned long *ptr;
 
 	ptr = riscv_iommu_pte_fetch(domain, iova, &pte_size);
-	if (_io_pte_none(*ptr) || !_io_pte_present(*ptr))
+	if (!ptr)
 		return 0;
 
 	return pfn_to_phys(__page_val_to_pfn(*ptr)) | (iova & (pte_size - 1));
-- 
2.34.1

^ permalink raw reply related	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2025-08-18 17:33 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-08-15  7:12 [PATCH v3] iommu/riscv: prevent NULL deref in iova_to_phys XianLiang Huang
2025-08-15  7:12 ` XianLiang Huang
2025-08-15  9:03 ` Markus Elfring
2025-08-15  9:03   ` Markus Elfring
2025-08-15 10:01 ` Joerg Roedel
2025-08-15 10:01   ` Joerg Roedel
2025-08-15 14:43   ` Robin Murphy
2025-08-15 14:43     ` Robin Murphy
2025-08-18 16:04     ` Joerg Roedel
2025-08-18 16:04       ` Joerg Roedel

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.