[v6,2/4] iommufd: Add iommufd_access_replace() API
Commit Message
Extract all common procedure, between the iommufd_access_attach() API and
the new iommufd_access_replace() API, to an iommufd_access_change_pt()
helper.
Add iommufd_access_replace() function for VFIO emulated pathway to use.
Suggested-by: Jason Gunthorpe <jgg@nvidia.com>
Signed-off-by: Nicolin Chen <nicolinc@nvidia.com>
---
drivers/iommu/iommufd/device.c | 53 +++++++++++++++++++------
include/linux/iommufd.h | 1 +
tools/testing/selftests/iommu/iommfd*.c | 0
3 files changed, 42 insertions(+), 12 deletions(-)
create mode 100644 tools/testing/selftests/iommu/iommfd*.c
Comments
> From: Nicolin Chen <nicolinc@nvidia.com>
> Sent: Tuesday, March 28, 2023 2:05 AM
>
> Extract all common procedure, between the iommufd_access_attach() API
> and
> the new iommufd_access_replace() API, to an iommufd_access_change_pt()
> helper.
>
> Add iommufd_access_replace() function for VFIO emulated pathway to use.
>
> Suggested-by: Jason Gunthorpe <jgg@nvidia.com>
> Signed-off-by: Nicolin Chen <nicolinc@nvidia.com>
Reviewed-by: Kevin Tian <kevin.tian@intel.com>
On Mon, Mar 27, 2023 at 11:05:03AM -0700, Nicolin Chen wrote:
> tools/testing/selftests/iommu/iommfd*.c | 0
> diff --git a/tools/testing/selftests/iommu/iommfd*.c b/tools/testing/selftests/iommu/iommfd*.c
> new file mode 100644
> index 000000000000..e69de29bb2d1
Accidentally included a noise here...
This series is on top of cdev, so I will send a v7 after the
next version of cdev series (or next rc1), and drop this file.
Thanks
Nicolin
@@ -752,38 +752,67 @@ void iommufd_access_detach(struct iommufd_access *access)
}
EXPORT_SYMBOL_NS_GPL(iommufd_access_detach, IOMMUFD);
-int iommufd_access_attach(struct iommufd_access *access, u32 ioas_id)
+static int iommufd_access_change_pt(struct iommufd_access *access, u32 ioas_id)
{
struct iommufd_ioas *new_ioas;
- int rc = 0;
+ int rc;
- mutex_lock(&access->ioas_lock);
- if (access->ioas != NULL && access->ioas->obj.id != ioas_id) {
- mutex_unlock(&access->ioas_lock);
- return -EINVAL;
- }
+ lockdep_assert_held(&access->ioas_lock);
new_ioas = iommufd_get_ioas(access->ictx, ioas_id);
- if (IS_ERR(new_ioas)) {
- mutex_unlock(&access->ioas_lock);
+ if (IS_ERR(new_ioas))
return PTR_ERR(new_ioas);
- }
rc = iopt_add_access(&new_ioas->iopt, access);
if (rc) {
- mutex_unlock(&access->ioas_lock);
iommufd_put_object(&new_ioas->obj);
return rc;
}
iommufd_ref_to_users(&new_ioas->obj);
+ if (access->ioas)
+ __iommufd_access_detach(access);
access->ioas = new_ioas;
access->ioas_unpin = new_ioas;
- mutex_unlock(&access->ioas_lock);
return 0;
}
+
+int iommufd_access_attach(struct iommufd_access *access, u32 ioas_id)
+{
+ int rc;
+
+ mutex_lock(&access->ioas_lock);
+ if (access->ioas != NULL && access->ioas->obj.id != ioas_id) {
+ mutex_unlock(&access->ioas_lock);
+ return -EINVAL;
+ }
+
+ rc = iommufd_access_change_pt(access, ioas_id);
+ mutex_unlock(&access->ioas_lock);
+ return rc;
+}
EXPORT_SYMBOL_NS_GPL(iommufd_access_attach, IOMMUFD);
+int iommufd_access_replace(struct iommufd_access *access, u32 ioas_id)
+{
+ int rc;
+
+ mutex_lock(&access->ioas_lock);
+ if (!access->ioas) {
+ mutex_unlock(&access->ioas_lock);
+ return -ENOENT;
+ }
+ if (access->ioas->obj.id == ioas_id) {
+ mutex_unlock(&access->ioas_lock);
+ return 0;
+ }
+
+ rc = iommufd_access_change_pt(access, ioas_id);
+ mutex_unlock(&access->ioas_lock);
+ return rc;
+}
+EXPORT_SYMBOL_NS_GPL(iommufd_access_replace, IOMMUFD);
+
/**
* iommufd_access_notify_unmap - Notify users of an iopt to stop using it
* @iopt: iopt to work on
@@ -48,6 +48,7 @@ iommufd_access_create(struct iommufd_ctx *ictx,
const struct iommufd_access_ops *ops, void *data, u32 *id);
void iommufd_access_destroy(struct iommufd_access *access);
int iommufd_access_attach(struct iommufd_access *access, u32 ioas_id);
+int iommufd_access_replace(struct iommufd_access *access, u32 ioas_id);
void iommufd_access_detach(struct iommufd_access *access);
void iommufd_ctx_get(struct iommufd_ctx *ictx);
new file mode 100644