On Wed, Sep 21, 2022 at 03:30:55PM -0400, Steven Sistare wrote: > > If Steve wants to keep it then someone needs to fix the deadlock in > > the vfio implementation before any userspace starts to appear. > > The only VFIO_DMA_UNMAP_FLAG_VADDR issue I am aware of is broken pinned accounting > across exec, which can result in mm->locked_vm becoming negative. I have several > fixes, but none result in limits being reached at exactly the same time as before -- > the same general issue being discussed for iommufd. I am still thinking about it. Oh, yeah, I noticed this was all busted up too. > I am not aware of a deadlock problem. Please elaborate or point me to an > email thread. VFIO_DMA_UNMAP_FLAG_VADDR open codes a lock in the kernel where userspace can tigger the lock to be taken and then returns to userspace with the lock held. Any scenario where a kernel thread hits that open-coded lock and then userspace does-the-wrong-thing will deadlock the kernel. For instance consider a mdev driver. We assert VFIO_DMA_UNMAP_FLAG_VADDR, the mdev driver does a DMA in a workqueue and becomes blocked on the now locked lock. Userspace then tries to close the device FD. FD closure will trigger device close and the VFIO core code requirement is that mdev driver device teardown must halt all concurrent threads touching vfio_device. Thus the mdev will try to fence its workqeue and then deadlock - unable to flush/cancel a work that is currently blocked on a lock held by userspace that will never be unlocked. This is just the first scenario that comes to mind. The approach to give userspace control of a lock that kernel threads can become blocked on is so completely sketchy it is a complete no-go in my opinion. If I had seen it when it was posted I would have hard NAK'd it. My "full" solution in mind for iommufd is to pin all the memory upon VFIO_DMA_UNMAP_FLAG_VADDR, so we can continue satisfy DMA requests while the mm_struct is not available. But IMHO this is basically useless for any actual user of mdevs. The other option is to just exclude mdevs and fail the VFIO_DMA_UNMAP_FLAG_VADDR if any are present, then prevent them from becoming present while it is asserted. In this way we don't need to do anything beyond a simple check as the iommu_domain is already fully populated and pinned. > > I can fix the deadlock in iommufd in a terrible expensive way, but > > would rather we design a better interface if nobody is using it yet. I > > advocate for passing the memfd to the kernel and use that as the page > > provider, not a mm_struct. > > memfd support alone is not sufficient. Live update also supports guest ram > backed by named shared memory. By "memfd" I broadly mean whatever FD based storage you want to use: shmem, hugetlbfs, whatever. Just not a mm_struct. The point is we satisfy the page requests through the fd based object, not through a vma in the mm_struct. Jason