Skip to content

Commit 9bcd5ce

Browse files
Oleksandr Tyshchenkogregkh
authored andcommitted
iommu/io-pgtable-arm: Check for leaf entry before dereferencing it
[ Upstream commit ed46e66cc1b3d684042f92dfa2ab15ee917b4cac ] Do a check for already installed leaf entry at the current level before dereferencing it in order to avoid walking the page table down with wrong pointer to the next level. Signed-off-by: Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com> CC: Will Deacon <will.deacon@arm.com> CC: Robin Murphy <robin.murphy@arm.com> Signed-off-by: Will Deacon <will.deacon@arm.com> Signed-off-by: Sasha Levin <alexander.levin@verizon.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent cadfa3a commit 9bcd5ce

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

drivers/iommu/io-pgtable-arm.c

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,8 +335,12 @@ static int __arm_lpae_map(struct arm_lpae_io_pgtable *data, unsigned long iova,
335335
if (cfg->quirks & IO_PGTABLE_QUIRK_ARM_NS)
336336
pte |= ARM_LPAE_PTE_NSTABLE;
337337
__arm_lpae_set_pte(ptep, pte, cfg);
338-
} else {
338+
} else if (!iopte_leaf(pte, lvl)) {
339339
cptep = iopte_deref(pte, data);
340+
} else {
341+
/* We require an unmap first */
342+
WARN_ON(!selftest_running);
343+
return -EEXIST;
340344
}
341345

342346
/* Rinse, repeat */

0 commit comments

Comments
 (0)