Hi Shameer, [Adding Robin in CC] On 21/02/18 13:22, Shameer Kolothum wrote: > This checks and rejects any dma map request outside valid iova > range. > > Signed-off-by: Shameer Kolothum <shameerali.kolothum.thodi@xxxxxxxxxx> > --- > drivers/vfio/vfio_iommu_type1.c | 22 ++++++++++++++++++++++ > 1 file changed, 22 insertions(+) > > diff --git a/drivers/vfio/vfio_iommu_type1.c b/drivers/vfio/vfio_iommu_type1.c > index a80884e..3049393 100644 > --- a/drivers/vfio/vfio_iommu_type1.c > +++ b/drivers/vfio/vfio_iommu_type1.c > @@ -970,6 +970,23 @@ static int vfio_pin_map_dma(struct vfio_iommu *iommu, struct vfio_dma *dma, > return ret; > } > > +/* > + * Check dma map request is within a valid iova range > + */ > +static bool vfio_iommu_iova_dma_valid(struct vfio_iommu *iommu, > + dma_addr_t start, dma_addr_t end) > +{ > + struct list_head *iova = &iommu->iova_list; > + struct vfio_iova *node; > + > + list_for_each_entry(node, iova, list) { > + if ((start >= node->start) && (end <= node->end)) > + return true; I am now confused by the fact this change will prevent existing QEMU from working with this series on some platforms. For instance QEMU virt machine GPA space collides with Seattle PCI host bridge windows. On ARM the smmu and smmuv3 drivers report the PCI host bridge windows as reserved regions which does not seem to be the case on other platforms. The change happened in commit 273df9635385b2156851c7ee49f40658d7bcb29d (iommu/dma: Make PCI window reservation generic). For background, we already discussed the topic after LPC 2016. See https://www.spinics.net/lists/kernel/msg2379607.html. So is it the right choice to expose PCI host bridge windows as reserved regions? If yes shouldn't we make a difference between those and MSI windows in this series and do not reject any user space DMA_MAP attempt within PCI host bridge windows. Thanks Eric > + } > + > + return false; > +} > + > static int vfio_dma_do_map(struct vfio_iommu *iommu, > struct vfio_iommu_type1_dma_map *map) > { > @@ -1008,6 +1025,11 @@ static int vfio_dma_do_map(struct vfio_iommu *iommu, > goto out_unlock; > } > > + if (!vfio_iommu_iova_dma_valid(iommu, iova, iova + size - 1)) { > + ret = -EINVAL; > + goto out_unlock; > + } > + > dma = kzalloc(sizeof(*dma), GFP_KERNEL); > if (!dma) { > ret = -ENOMEM; >