]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
vfio/cdx: Consolidate MSI configured state onto cdx_irqs
authorAlex Williamson <alex.williamson@nvidia.com>
Fri, 17 Apr 2026 20:27:58 +0000 (14:27 -0600)
committerAlex Williamson <alex@shazbot.org>
Tue, 21 Apr 2026 18:01:22 +0000 (12:01 -0600)
struct vfio_cdx_device carries three fields that track whether MSI has
been configured: vdev->cdx_irqs (the allocated vector array), vdev->
msi_count (the array length), and vdev->config_msi (a boolean flag).
The three are set together when vfio_cdx_msi_enable() succeeds and
cleared together by vfio_cdx_msi_disable().  However, the error paths
in vfio_cdx_msi_enable() free the cdx_irqs allocation on failure
without resetting the pointer, leaving it stale and skewed from the
other two fields until the next enable call overwrites it.

Clear vdev->cdx_irqs to NULL alongside the kfree() in both error paths
so the pointer consistently reflects the configured state.  With that
invariant restored and access to the MSI state serialized by
cdx_irqs_lock, vdev->config_msi is fully redundant with
(vdev->cdx_irqs != NULL).  Drop the config_msi field and switch all
readers to test cdx_irqs directly.

Assisted-by: Claude:claude-opus-4-7
Signed-off-by: Alex Williamson <alex.williamson@nvidia.com>
Acked-by: Nikhil Agarwal <nikhil.agarwal@amd.com>
Link: https://lore.kernel.org/r/20260417202800.88287-4-alex.williamson@nvidia.com
Signed-off-by: Alex Williamson <alex@shazbot.org>
drivers/vfio/cdx/intr.c
drivers/vfio/cdx/private.h

index 6dfe0ced3bdd8a1dc45956d12fb908ba7cc9ac03..4439481fe633069a31930d21723a28aa150c3be7 100644 (file)
@@ -32,26 +32,27 @@ static int vfio_cdx_msi_enable(struct vfio_cdx_device *vdev, int nvec)
                return -ENOMEM;
 
        ret = cdx_enable_msi(cdx_dev);
-       if (ret) {
-               kfree(vdev->cdx_irqs);
-               return ret;
-       }
+       if (ret)
+               goto err_free;
 
        /* Allocate cdx MSIs */
        ret = msi_domain_alloc_irqs(dev, MSI_DEFAULT_DOMAIN, nvec);
-       if (ret) {
-               cdx_disable_msi(cdx_dev);
-               kfree(vdev->cdx_irqs);
-               return ret;
-       }
+       if (ret)
+               goto err_disable;
 
        for (msi_idx = 0; msi_idx < nvec; msi_idx++)
                vdev->cdx_irqs[msi_idx].irq_no = msi_get_virq(dev, msi_idx);
 
        vdev->msi_count = nvec;
-       vdev->config_msi = 1;
 
        return 0;
+
+err_disable:
+       cdx_disable_msi(cdx_dev);
+err_free:
+       kfree(vdev->cdx_irqs);
+       vdev->cdx_irqs = NULL;
+       return ret;
 }
 
 static int vfio_cdx_msi_set_vector_signal(struct vfio_cdx_device *vdev,
@@ -129,7 +130,7 @@ static void vfio_cdx_msi_disable(struct vfio_cdx_device *vdev)
 
        vfio_cdx_msi_set_block(vdev, 0, vdev->msi_count, NULL);
 
-       if (!vdev->config_msi)
+       if (!vdev->cdx_irqs)
                return;
 
        msi_domain_free_irqs_all(dev, MSI_DEFAULT_DOMAIN);
@@ -138,7 +139,6 @@ static void vfio_cdx_msi_disable(struct vfio_cdx_device *vdev)
 
        vdev->cdx_irqs = NULL;
        vdev->msi_count = 0;
-       vdev->config_msi = 0;
 }
 
 static int vfio_cdx_set_msi_trigger(struct vfio_cdx_device *vdev,
@@ -163,7 +163,7 @@ static int vfio_cdx_set_msi_trigger(struct vfio_cdx_device *vdev,
                s32 *fds = data;
                int ret;
 
-               if (vdev->config_msi)
+               if (vdev->cdx_irqs)
                        return vfio_cdx_msi_set_block(vdev, start, count,
                                                  fds);
                ret = vfio_cdx_msi_enable(vdev, cdx_dev->num_msi);
@@ -177,8 +177,7 @@ static int vfio_cdx_set_msi_trigger(struct vfio_cdx_device *vdev,
                return ret;
        }
 
-       /* Ensure MSI is configured before accessing cdx_irqs */
-       if (!vdev->config_msi)
+       if (!vdev->cdx_irqs)
                return -EINVAL;
 
        for (i = start; i < start + count; i++) {
index 94374b5fc9899cc39f2ad806ddb2b8028d0e7a07..4c00bf633356a59c4d051c53060de91245d22de6 100644 (file)
@@ -38,7 +38,6 @@ struct vfio_cdx_device {
        u32                     flags;
 #define BME_SUPPORT BIT(0)
        u32                     msi_count;
-       u8                      config_msi;
 };
 
 #ifdef CONFIG_GENERIC_MSI_IRQ