0713af6
From: Julian Stecklina <jsteckli@os.info.tu-dresden.de>
0713af6
Subject: [PATCH] vfio, iommu: Fixed interaction of VFIO_IOMMU_MAP_DMA with IOMMU address limits
0713af6
0713af6
The BUG_ON in drivers/iommu/intel-iommu.c:785 can be triggered from userspace via
0713af6
VFIO by calling the VFIO_IOMMU_MAP_DMA ioctl on a vfio device with any address
0713af6
beyond the addressing capabilities of the IOMMU. The problem is that the ioctl code
0713af6
calls iommu_iova_to_phys before it calls iommu_map. iommu_map handles the case that
0713af6
it gets addresses beyond the addressing capabilities of its IOMMU.
0713af6
intel_iommu_iova_to_phys does not.
0713af6
0713af6
This patch fixes iommu_iova_to_phys to return NULL for addresses beyond what the
0713af6
IOMMU can handle. This in turn causes the ioctl call to fail in iommu_map and
0713af6
(correctly) return EFAULT to the user with a helpful warning message in the kernel
0713af6
log.
0713af6
0713af6
Signed-off-by: Julian Stecklina <jsteckli@os.inf.tu-dresden.de>
0713af6
---
0713af6
 drivers/iommu/intel-iommu.c | 6 +++++-
0713af6
 1 file changed, 5 insertions(+), 1 deletion(-)
0713af6
0713af6
diff --git a/drivers/iommu/intel-iommu.c b/drivers/iommu/intel-iommu.c
0713af6
index eec0d3e..61303db 100644
0713af6
--- a/drivers/iommu/intel-iommu.c
0713af6
+++ b/drivers/iommu/intel-iommu.c
0713af6
@@ -782,7 +782,11 @@ static struct dma_pte *pfn_to_dma_pte(struct dmar_domain *domain,
0713af6
 	int offset;
0713af6
 
0713af6
 	BUG_ON(!domain->pgd);
0713af6
-	BUG_ON(addr_width < BITS_PER_LONG && pfn >> addr_width);
0713af6
+
0713af6
+	if (addr_width < BITS_PER_LONG && pfn >> addr_width)
0713af6
+		/* Address beyond IOMMU's addressing capabilities. */
0713af6
+		return NULL;
0713af6
+
0713af6
 	parent = domain->pgd;
0713af6
 
0713af6
 	while (level > 0) {
0713af6
-- 
0713af6
1.8.3.1