[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20260203220948.2176157-14-skhawaja@google.com>
Date: Tue, 3 Feb 2026 22:09:47 +0000
From: Samiullah Khawaja <skhawaja@...gle.com>
To: David Woodhouse <dwmw2@...radead.org>, Lu Baolu <baolu.lu@...ux.intel.com>,
Joerg Roedel <joro@...tes.org>, Will Deacon <will@...nel.org>, Jason Gunthorpe <jgg@...pe.ca>
Cc: Samiullah Khawaja <skhawaja@...gle.com>, Robin Murphy <robin.murphy@....com>,
Kevin Tian <kevin.tian@...el.com>, Alex Williamson <alex@...zbot.org>, Shuah Khan <shuah@...nel.org>,
iommu@...ts.linux.dev, linux-kernel@...r.kernel.org, kvm@...r.kernel.org,
Saeed Mahameed <saeedm@...dia.com>, Adithya Jayachandran <ajayachandra@...dia.com>,
Parav Pandit <parav@...dia.com>, Leon Romanovsky <leonro@...dia.com>, William Tu <witu@...dia.com>,
Pratyush Yadav <pratyush@...nel.org>, Pasha Tatashin <pasha.tatashin@...een.com>,
David Matlack <dmatlack@...gle.com>, Andrew Morton <akpm@...ux-foundation.org>,
Chris Li <chrisl@...nel.org>, Pranjal Shrivastava <praan@...gle.com>, Vipin Sharma <vipinsh@...gle.com>,
YiFei Zhu <zhuyifei@...gle.com>
Subject: [PATCH 13/14] vfio/pci: Preserve the iommufd state of the vfio cdev
If the vfio cdev is attached to an iommufd, preserve the state of the
attached iommufd also. Basically preserve the iommu state of the device
and also the attached domain. The token returned by the preservation API
will be used to restore/rebind to the iommufd state after liveupdate.
Signed-off-by: Samiullah Khawaja <skhawaja@...gle.com>
---
drivers/vfio/pci/vfio_pci_liveupdate.c | 28 +++++++++++++++++++++++++-
include/linux/kho/abi/vfio_pci.h | 10 +++++++++
2 files changed, 37 insertions(+), 1 deletion(-)
diff --git a/drivers/vfio/pci/vfio_pci_liveupdate.c b/drivers/vfio/pci/vfio_pci_liveupdate.c
index c52d6bdb455f..af6fbfb7a65c 100644
--- a/drivers/vfio/pci/vfio_pci_liveupdate.c
+++ b/drivers/vfio/pci/vfio_pci_liveupdate.c
@@ -15,6 +15,7 @@
#include <linux/liveupdate.h>
#include <linux/errno.h>
#include <linux/vfio.h>
+#include <linux/iommufd.h>
#include "vfio_pci_priv.h"
@@ -39,6 +40,7 @@ static int vfio_pci_liveupdate_preserve(struct liveupdate_file_op_args *args)
struct vfio_pci_core_device_ser *ser;
struct vfio_pci_core_device *vdev;
struct pci_dev *pdev;
+ u64 token = 0;
vdev = container_of(device, struct vfio_pci_core_device, vdev);
pdev = vdev->pdev;
@@ -49,15 +51,32 @@ static int vfio_pci_liveupdate_preserve(struct liveupdate_file_op_args *args)
if (vfio_pci_is_intel_display(pdev))
return -EINVAL;
+#if CONFIG_IOMMU_LIVEUPDATE
+ /* If iommufd is attached, preserve the underlying domain */
+ if (device->iommufd_attached) {
+ int err = iommufd_device_preserve(args->session,
+ device->iommufd_device,
+ &token);
+ if (err < 0)
+ return err;
+ }
+#endif
+
ser = kho_alloc_preserve(sizeof(*ser));
- if (IS_ERR(ser))
+ if (IS_ERR(ser)) {
+ if (device->iommufd_attached)
+ iommufd_device_unpreserve(args->session,
+ device->iommufd_device, token);
+
return PTR_ERR(ser);
+ }
pci_liveupdate_outgoing_preserve(pdev);
ser->bdf = pci_dev_id(pdev);
ser->domain = pci_domain_nr(pdev->bus);
ser->reset_works = vdev->reset_works;
+ ser->iommufd_ser.token = token;
args->serialized_data = virt_to_phys(ser);
return 0;
@@ -66,6 +85,13 @@ static int vfio_pci_liveupdate_preserve(struct liveupdate_file_op_args *args)
static void vfio_pci_liveupdate_unpreserve(struct liveupdate_file_op_args *args)
{
struct vfio_device *device = vfio_device_from_file(args->file);
+ struct vfio_pci_core_device_ser *ser;
+
+ ser = phys_to_virt(args->serialized_data);
+ if (device->iommufd_attached)
+ iommufd_device_unpreserve(args->session,
+ device->iommufd_device,
+ ser->iommufd_ser.token);
pci_liveupdate_outgoing_unpreserve(to_pci_dev(device->dev));
kho_unpreserve_free(phys_to_virt(args->serialized_data));
diff --git a/include/linux/kho/abi/vfio_pci.h b/include/linux/kho/abi/vfio_pci.h
index 6c3d3c6dfc09..d01bd58711c2 100644
--- a/include/linux/kho/abi/vfio_pci.h
+++ b/include/linux/kho/abi/vfio_pci.h
@@ -28,6 +28,15 @@
#define VFIO_PCI_LUO_FH_COMPATIBLE "vfio-pci-v1"
+/**
+ * struct vfio_iommufd_ser - Serialized state of the attached iommufd.
+ *
+ * @token: The token of the bound iommufd state.
+ */
+struct vfio_iommufd_ser {
+ u32 token;
+} __packed;
+
/**
* struct vfio_pci_core_device_ser - Serialized state of a single VFIO PCI
* device.
@@ -40,6 +49,7 @@ struct vfio_pci_core_device_ser {
u16 bdf;
u16 domain;
u8 reset_works;
+ struct vfio_iommufd_ser iommufd_ser;
} __packed;
#endif /* _LINUX_LIVEUPDATE_ABI_VFIO_PCI_H */
--
2.53.0.rc2.204.g2597b5adb4-goog
Powered by blists - more mailing lists