]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
vfio: Fix unbalanced vfio_df_close call in no-iommu mode
authorJacob Pan <jacob.pan@linux.microsoft.com>
Wed, 18 Jun 2025 23:46:17 +0000 (16:46 -0700)
committerAlex Williamson <alex.williamson@redhat.com>
Fri, 11 Jul 2025 20:43:37 +0000 (14:43 -0600)
For devices with no-iommu enabled in IOMMUFD VFIO compat mode, the group open
path skips vfio_df_open(), leaving open_count at 0. This causes a warning in
vfio_assert_device_open(device) when vfio_df_close() is called during group
close.

The correct behavior is to skip only the IOMMUFD bind in the device open path
for no-iommu devices. Commit 6086efe73498 omitted vfio_df_open(), which was
too broad. This patch restores the previous behavior, ensuring
the vfio_df_open is called in the group open path.

Fixes: 6086efe73498 ("vfio-iommufd: Move noiommu compat validation out of vfio_iommufd_bind()")
Suggested-by: Alex Williamson <alex.williamson@redhat.com>
Suggested-by: Jason Gunthorpe <jgg@nvidia.com>
Signed-off-by: Jacob Pan <jacob.pan@linux.microsoft.com>
Reviewed-by: Jason Gunthorpe <jgg@nvidia.com>
Link: https://lore.kernel.org/r/20250618234618.1910456-1-jacob.pan@linux.microsoft.com
Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
drivers/vfio/group.c
drivers/vfio/iommufd.c

index c321d442f0da090af34d818535c26b7b6d8f811b..c376a6279de0e63f3794851ccb9988d289ee3866 100644 (file)
@@ -192,11 +192,10 @@ static int vfio_df_group_open(struct vfio_device_file *df)
                 * implies they expected translation to exist
                 */
                if (!capable(CAP_SYS_RAWIO) ||
-                   vfio_iommufd_device_has_compat_ioas(device, df->iommufd))
+                   vfio_iommufd_device_has_compat_ioas(device, df->iommufd)) {
                        ret = -EPERM;
-               else
-                       ret = 0;
-               goto out_put_kvm;
+                       goto out_put_kvm;
+               }
        }
 
        ret = vfio_df_open(df);
index c8c3a2d53f86e197a72f0e4d798c201f3d8e31d4..a38d262c602809367054dd2c2344814d1cebdf64 100644 (file)
@@ -25,6 +25,10 @@ int vfio_df_iommufd_bind(struct vfio_device_file *df)
 
        lockdep_assert_held(&vdev->dev_set->lock);
 
+       /* Returns 0 to permit device opening under noiommu mode */
+       if (vfio_device_is_noiommu(vdev))
+               return 0;
+
        return vdev->ops->bind_iommufd(vdev, ictx, &df->devid);
 }