From: Alex Williamson <alex.williamson@redhat.com>
To: "Liu, Yi L" <yi.l.liu@intel.com>
Cc: "jgg@nvidia.com" <jgg@nvidia.com>,
"Tian, Kevin" <kevin.tian@intel.com>,
"joro@8bytes.org" <joro@8bytes.org>,
"robin.murphy@arm.com" <robin.murphy@arm.com>,
"cohuck@redhat.com" <cohuck@redhat.com>,
"eric.auger@redhat.com" <eric.auger@redhat.com>,
"nicolinc@nvidia.com" <nicolinc@nvidia.com>,
"kvm@vger.kernel.org" <kvm@vger.kernel.org>,
"mjrosato@linux.ibm.com" <mjrosato@linux.ibm.com>,
"chao.p.peng@linux.intel.com" <chao.p.peng@linux.intel.com>,
"yi.y.sun@linux.intel.com" <yi.y.sun@linux.intel.com>,
"peterx@redhat.com" <peterx@redhat.com>,
"jasowang@redhat.com" <jasowang@redhat.com>,
"shameerali.kolothum.thodi@huawei.com"
<shameerali.kolothum.thodi@huawei.com>,
"lulu@redhat.com" <lulu@redhat.com>,
"suravee.suthikulpanit@amd.com" <suravee.suthikulpanit@amd.com>,
"intel-gvt-dev@lists.freedesktop.org"
<intel-gvt-dev@lists.freedesktop.org>,
"intel-gfx@lists.freedesktop.org"
<intel-gfx@lists.freedesktop.org>,
"linux-s390@vger.kernel.org" <linux-s390@vger.kernel.org>,
"Hao, Xudong" <xudong.hao@intel.com>,
"Zhao, Yan Y" <yan.y.zhao@intel.com>,
"Xu, Terrence" <terrence.xu@intel.com>,
"Jiang, Yanting" <yanting.jiang@intel.com>,
"Duan, Zhenzhong" <zhenzhong.duan@intel.com>,
"clegoate@redhat.com" <clegoate@redhat.com>
Subject: Re: [PATCH v6 10/10] vfio/pci: Allow passing zero-length fd array in VFIO_DEVICE_PCI_HOT_RESET
Date: Wed, 31 May 2023 11:21:46 -0600 [thread overview]
Message-ID: <20230531112146.7950d01a.alex.williamson@redhat.com> (raw)
In-Reply-To: <DS0PR11MB75298C069D298D29D9B7B459C34B9@DS0PR11MB7529.namprd11.prod.outlook.com>
On Tue, 30 May 2023 04:23:12 +0000
"Liu, Yi L" <yi.l.liu@intel.com> wrote:
> > From: Alex Williamson <alex.williamson@redhat.com>
> > Sent: Thursday, May 25, 2023 4:20 AM
> >
> > On Mon, 22 May 2023 04:57:51 -0700
> > Yi Liu <yi.l.liu@intel.com> wrote:
> >
> > > This is the way user to invoke hot-reset for the devices opened by cdev
> > > interface. User should check the flag VFIO_PCI_HOT_RESET_FLAG_DEV_ID_OWNED
> > > in the output of VFIO_DEVICE_GET_PCI_HOT_RESET_INFO ioctl before doing
> > > hot-reset for cdev devices.
> > >
> > > Suggested-by: Jason Gunthorpe <jgg@nvidia.com>
> > > Signed-off-by: Jason Gunthorpe <jgg@nvidia.com>
> > > Reviewed-by: Jason Gunthorpe <jgg@nvidia.com>
> > > Tested-by: Yanting Jiang <yanting.jiang@intel.com>
> > > Signed-off-by: Yi Liu <yi.l.liu@intel.com>
> > > ---
> > > drivers/vfio/pci/vfio_pci_core.c | 56 +++++++++++++++++++++++++-------
> > > include/uapi/linux/vfio.h | 14 ++++++++
> > > 2 files changed, 59 insertions(+), 11 deletions(-)
> > >
> > > diff --git a/drivers/vfio/pci/vfio_pci_core.c b/drivers/vfio/pci/vfio_pci_core.c
> > > index 890065f846e4..67f1cb426505 100644
> > > --- a/drivers/vfio/pci/vfio_pci_core.c
> > > +++ b/drivers/vfio/pci/vfio_pci_core.c
> > > @@ -181,7 +181,8 @@ static void vfio_pci_probe_mmaps(struct vfio_pci_core_device
> > *vdev)
> > > struct vfio_pci_group_info;
> > > static void vfio_pci_dev_set_try_reset(struct vfio_device_set *dev_set);
> > > static int vfio_pci_dev_set_hot_reset(struct vfio_device_set *dev_set,
> > > - struct vfio_pci_group_info *groups);
> > > + struct vfio_pci_group_info *groups,
> > > + struct iommufd_ctx *iommufd_ctx);
> > >
> > > /*
> > > * INTx masking requires the ability to disable INTx signaling via PCI_COMMAND
> > > @@ -1301,8 +1302,7 @@ vfio_pci_ioctl_pci_hot_reset_groups(struct
> > vfio_pci_core_device *vdev,
> > > if (ret)
> > > return ret;
> > >
> > > - /* Somewhere between 1 and count is OK */
> > > - if (!array_count || array_count > count)
> > > + if (array_count > count || vfio_device_cdev_opened(&vdev->vdev))
> > > return -EINVAL;
> > >
> > > group_fds = kcalloc(array_count, sizeof(*group_fds), GFP_KERNEL);
> > > @@ -1351,7 +1351,7 @@ vfio_pci_ioctl_pci_hot_reset_groups(struct
> > vfio_pci_core_device *vdev,
> > > info.count = array_count;
> > > info.files = files;
> > >
> > > - ret = vfio_pci_dev_set_hot_reset(vdev->vdev.dev_set, &info);
> > > + ret = vfio_pci_dev_set_hot_reset(vdev->vdev.dev_set, &info, NULL);
> > >
> > > hot_reset_release:
> > > for (file_idx--; file_idx >= 0; file_idx--)
> > > @@ -1380,7 +1380,11 @@ static int vfio_pci_ioctl_pci_hot_reset(struct
> > vfio_pci_core_device *vdev,
> > > else if (pci_probe_reset_bus(vdev->pdev->bus))
> > > return -ENODEV;
> > >
> > > - return vfio_pci_ioctl_pci_hot_reset_groups(vdev, hdr.count, slot, arg);
> > > + if (hdr.count)
> > > + return vfio_pci_ioctl_pci_hot_reset_groups(vdev, hdr.count, slot, arg);
> > > +
> > > + return vfio_pci_dev_set_hot_reset(vdev->vdev.dev_set, NULL,
> > > + vfio_iommufd_device_ictx(&vdev->vdev));
> > > }
> > >
> > > static int vfio_pci_ioctl_ioeventfd(struct vfio_pci_core_device *vdev,
> > > @@ -2347,13 +2351,16 @@ const struct pci_error_handlers
> > vfio_pci_core_err_handlers = {
> > > };
> > > EXPORT_SYMBOL_GPL(vfio_pci_core_err_handlers);
> > >
> > > -static bool vfio_dev_in_groups(struct vfio_pci_core_device *vdev,
> > > +static bool vfio_dev_in_groups(struct vfio_device *vdev,
> > > struct vfio_pci_group_info *groups)
> > > {
> > > unsigned int i;
> > >
> > > + if (!groups)
> > > + return false;
> > > +
> > > for (i = 0; i < groups->count; i++)
> > > - if (vfio_file_has_dev(groups->files[i], &vdev->vdev))
> > > + if (vfio_file_has_dev(groups->files[i], vdev))
> > > return true;
> > > return false;
> > > }
> > > @@ -2429,7 +2436,8 @@ static int vfio_pci_dev_set_pm_runtime_get(struct
> > vfio_device_set *dev_set)
> > > * get each memory_lock.
> > > */
> > > static int vfio_pci_dev_set_hot_reset(struct vfio_device_set *dev_set,
> > > - struct vfio_pci_group_info *groups)
> > > + struct vfio_pci_group_info *groups,
> > > + struct iommufd_ctx *iommufd_ctx)
> > > {
> > > struct vfio_pci_core_device *cur_mem;
> > > struct vfio_pci_core_device *cur_vma;
> > > @@ -2459,11 +2467,37 @@ static int vfio_pci_dev_set_hot_reset(struct
> > vfio_device_set *dev_set,
> > > goto err_unlock;
> > >
> > > list_for_each_entry(cur_vma, &dev_set->device_list, vdev.dev_set_list) {
> > > + bool owned;
> > > +
> > > /*
> > > - * Test whether all the affected devices are contained by the
> > > - * set of groups provided by the user.
> > > + * Test whether all the affected devices can be reset by the
> > > + * user.
> > > + *
> > > + * If the user provides a set of groups, all the devices
> > > + * in the dev_set should be contained by the set of groups
> > > + * provided by the user.
> >
> > "If called from a group opened device and the user provides a set of
> > groups,..."
> >
> > > + *
> > > + * If the user provides a zero-length group fd array, then
> >
> > "If called from a cdev opened device and the user provides a
> > zero-length array,..."
> >
> >
> > > + * all the devices in the dev_set must be bound to the same
> > > + * iommufd_ctx as the input iommufd_ctx. If there is any
> > > + * device that has not been bound to iommufd_ctx yet, check
> > > + * if its iommu_group has any device bound to the input
> > > + * iommufd_ctx Such devices can be considered owned by
> >
> > "."...........................^
>
> Thanks, above comments well received.
>
> > > + * the input iommufd_ctx as the device cannot be owned
> > > + * by another iommufd_ctx when its iommu_group is owned.
> > > + *
> > > + * Otherwise, reset is not allowed.
> >
> >
> > In the case where a non-null array is provided,
> > vfio_pci_ioctl_pci_hot_reset_groups() explicitly tests
> > vfio_device_cdev_opened(), so we exclude cdev devices from providing a
> > group list.
>
> Yes.
>
> > However, what prevents a compat opened group device from
> > providing a null array?
>
> I think I've asked this question before. What I got is seems no need
> to prevent it[1].
>
> [1] https://lore.kernel.org/kvm/BN9PR11MB5276ABE919C04E06A0326E8E8CBC9@BN9PR11MB5276.namprd11.prod.outlook.com/
>
> Now, I intend to disallow it. If compat mode user binds the devices
> to different containers, it shall be able to do hot reset as it can use
> group fd to prove ownership. But if using the zero-length array, it
> would be failed. So we may add below logic and remove the
> vfio_device_cdev_opened() in vfio_pci_ioctl_pci_hot_reset_groups().
>
> vfio_pci_ioctl_pci_hot_reset()
> {
> ...
> if (!!hdr.count == !!vfio_device_cdev_opened(&vdev->vdev))
> return -EINVAL;
> if (hdr.count)
> vfio_pci_ioctl_pci_hot_reset_groups(vdev, hdr.count, slot, arg);
> return vfio_pci_dev_set_hot_reset(vdev->vdev.dev_set, NULL,
> vfio_iommufd_device_ictx(&vdev->vdev));
> }
>
> >
> > I thought it would be that this function is called with groups == NULL
> > and therefore the vfio_dev_in_groups() test below fails, but I don't
> > think that's true for a compat opened device. Thanks,
>
> How about above logic?
The double negating a function that already returns bool is a bit
excessive. I might also move the test closer to the other parameter
checking with a comment noting the null array interface is only for
cdev opened devices. Thanks,
Alex
next prev parent reply other threads:[~2023-05-31 17:22 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-05-22 11:57 [PATCH v6 00/10] Enhance vfio PCI hot reset for vfio cdev device Yi Liu
2023-05-22 11:57 ` [PATCH v6 01/10] vfio-iommufd: Create iommufd_access for noiommu devices Yi Liu
2023-05-22 11:57 ` [PATCH v6 02/10] vfio/pci: Update comment around group_fd get in vfio_pci_ioctl_pci_hot_reset() Yi Liu
2023-05-22 11:57 ` [PATCH v6 03/10] vfio/pci: Move the existing hot reset logic to be a helper Yi Liu
2023-05-22 11:57 ` [PATCH v6 04/10] iommufd: Reserve all negative IDs in the iommufd xarray Yi Liu
2023-05-22 11:57 ` [PATCH v6 05/10] iommufd: Add iommufd_ctx_has_group() Yi Liu
2023-05-22 11:57 ` [PATCH v6 06/10] iommufd: Add helper to retrieve iommufd_ctx and devid Yi Liu
2023-05-22 11:57 ` [PATCH v6 07/10] vfio: Mark cdev usage in vfio_device Yi Liu
2023-05-22 11:57 ` [PATCH v6 08/10] vfio: Add helper to search vfio_device in a dev_set Yi Liu
2023-05-22 11:57 ` [PATCH v6 09/10] vfio/pci: Extend VFIO_DEVICE_GET_PCI_HOT_RESET_INFO for vfio device cdev Yi Liu
2023-05-24 19:56 ` Alex Williamson
2023-05-25 13:02 ` Liu, Yi L
2023-05-26 2:04 ` Baolu Lu
[not found] ` <ZHeZPPo/MWXV1L9Q@nvidia.com>
2023-06-01 6:06 ` Liu, Yi L
2023-06-01 14:24 ` Alex Williamson
2023-05-22 11:57 ` [PATCH v6 10/10] vfio/pci: Allow passing zero-length fd array in VFIO_DEVICE_PCI_HOT_RESET Yi Liu
2023-05-24 20:19 ` Alex Williamson
2023-05-30 4:23 ` Liu, Yi L
2023-05-31 17:21 ` Alex Williamson [this message]
2023-06-01 5:55 ` Liu, Yi L
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20230531112146.7950d01a.alex.williamson@redhat.com \
--to=alex.williamson@redhat.com \
--cc=chao.p.peng@linux.intel.com \
--cc=clegoate@redhat.com \
--cc=cohuck@redhat.com \
--cc=eric.auger@redhat.com \
--cc=intel-gfx@lists.freedesktop.org \
--cc=intel-gvt-dev@lists.freedesktop.org \
--cc=jasowang@redhat.com \
--cc=jgg@nvidia.com \
--cc=joro@8bytes.org \
--cc=kevin.tian@intel.com \
--cc=kvm@vger.kernel.org \
--cc=linux-s390@vger.kernel.org \
--cc=lulu@redhat.com \
--cc=mjrosato@linux.ibm.com \
--cc=nicolinc@nvidia.com \
--cc=peterx@redhat.com \
--cc=robin.murphy@arm.com \
--cc=shameerali.kolothum.thodi@huawei.com \
--cc=suravee.suthikulpanit@amd.com \
--cc=terrence.xu@intel.com \
--cc=xudong.hao@intel.com \
--cc=yan.y.zhao@intel.com \
--cc=yanting.jiang@intel.com \
--cc=yi.l.liu@intel.com \
--cc=yi.y.sun@linux.intel.com \
--cc=zhenzhong.duan@intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox