* [PATCH] iommufd/selftest: Return dmabuf fd from IOMMU_TEST_OP_DMABUF_GET again
@ 2026-09-02 8:54 Qinyun Tan
2026-09-02 13:47 ` Yee Li
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Qinyun Tan @ 2026-09-02 8:54 UTC (permalink / raw)
To: Jason Gunthorpe
Cc: Kevin Tian, Joerg Roedel, Will Deacon, Robin Murphy, yeeli,
Xunlei Pang, iommu, linux-kernel, Qinyun Tan
The selftest helper reads the new dmabuf fd from the ioctl return
value:
*out_fd = ioctl(fd, IOMMU_TEST_CMD, &cmd);
Commit dba4254e216d ("iommufd/selftest: Fix dmabuf leak in
iommufd_test_dmabuf_get()") fixed the dmabuf leak on dma_buf_fd()
failure, but the applied version also changed the success path to
return 0, so userspace no longer receives the fd. Note the patch as
posted on the list returned rc here; the change to return 0 appeared
when it was applied:
https://lore.kernel.org/all/20260707030635.221577-1-seven.yi.lee@gmail.com/
Every test using test_cmd_get_dmabuf() then operates on fd 0 instead
of the dmabuf, and the dmabuf_simple and dmabuf_revoke selftests fail
across all fixtures:
# iommufd.c:1595:dmabuf_simple:Expected -1 (-1) ==
_test_ioctl_ioas_map_file(...) (0)
Keep the dma_buf_put() on failure but return the fd on success.
Fixes: dba4254e216d ("iommufd/selftest: Fix dmabuf leak in iommufd_test_dmabuf_get()")
Signed-off-by: Qinyun Tan <qinyuntan@linux.alibaba.com>
---
drivers/iommu/iommufd/selftest.c | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/drivers/iommu/iommufd/selftest.c b/drivers/iommu/iommufd/selftest.c
index ee706f18f7e91..f6da927461b57 100644
--- a/drivers/iommu/iommufd/selftest.c
+++ b/drivers/iommu/iommufd/selftest.c
@@ -2056,11 +2056,9 @@ static int iommufd_test_dmabuf_get(struct iommufd_ucmd *ucmd,
}
rc = dma_buf_fd(dmabuf, open_flags);
- if (rc < 0) {
+ if (rc < 0)
dma_buf_put(dmabuf);
- return rc;
- }
- return 0;
+ return rc;
err_free:
kfree(priv->memory);
--
2.43.7
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [PATCH] iommufd/selftest: Return dmabuf fd from IOMMU_TEST_OP_DMABUF_GET again
2026-09-02 8:54 [PATCH] iommufd/selftest: Return dmabuf fd from IOMMU_TEST_OP_DMABUF_GET again Qinyun Tan
@ 2026-09-02 13:47 ` Yee Li
2026-09-03 8:08 ` Lai, Yi
2026-09-09 16:23 ` Jason Gunthorpe
2 siblings, 0 replies; 4+ messages in thread
From: Yee Li @ 2026-09-02 13:47 UTC (permalink / raw)
To: Qinyun Tan
Cc: Jason Gunthorpe, Kevin Tian, Joerg Roedel, Will Deacon,
Robin Murphy, Xunlei Pang, iommu, linux-kernel
> failure, but the applied version also changed the success path to
> return 0, so userspace no longer receives the fd. Note the patch as
> posted on the list returned rc here; the change to return 0 appeared
> when it was applied:
Thanks for catching it.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] iommufd/selftest: Return dmabuf fd from IOMMU_TEST_OP_DMABUF_GET again
2026-09-02 8:54 [PATCH] iommufd/selftest: Return dmabuf fd from IOMMU_TEST_OP_DMABUF_GET again Qinyun Tan
2026-09-02 13:47 ` Yee Li
@ 2026-09-03 8:08 ` Lai, Yi
2026-09-09 16:23 ` Jason Gunthorpe
2 siblings, 0 replies; 4+ messages in thread
From: Lai, Yi @ 2026-09-03 8:08 UTC (permalink / raw)
To: Qinyun Tan
Cc: Jason Gunthorpe, Kevin Tian, Joerg Roedel, Will Deacon,
Robin Murphy, yeeli, Xunlei Pang, iommu, linux-kernel, yi1.lai
On Wed, Sep 02, 2026 at 04:54:14PM +0800, Qinyun Tan wrote:
> The selftest helper reads the new dmabuf fd from the ioctl return
> value:
>
> *out_fd = ioctl(fd, IOMMU_TEST_CMD, &cmd);
>
> Commit dba4254e216d ("iommufd/selftest: Fix dmabuf leak in
> iommufd_test_dmabuf_get()") fixed the dmabuf leak on dma_buf_fd()
> failure, but the applied version also changed the success path to
> return 0, so userspace no longer receives the fd. Note the patch as
> posted on the list returned rc here; the change to return 0 appeared
> when it was applied:
>
> https://lore.kernel.org/all/20260707030635.221577-1-seven.yi.lee@gmail.com/
>
> Every test using test_cmd_get_dmabuf() then operates on fd 0 instead
> of the dmabuf, and the dmabuf_simple and dmabuf_revoke selftests fail
> across all fixtures:
>
> # iommufd.c:1595:dmabuf_simple:Expected -1 (-1) ==
> _test_ioctl_ioas_map_file(...) (0)
>
> Keep the dma_buf_put() on failure but return the fd on success.
>
> Fixes: dba4254e216d ("iommufd/selftest: Fix dmabuf leak in iommufd_test_dmabuf_get()")
> Signed-off-by: Qinyun Tan <qinyuntan@linux.alibaba.com>
> ---
> drivers/iommu/iommufd/selftest.c | 6 ++----
> 1 file changed, 2 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/iommu/iommufd/selftest.c b/drivers/iommu/iommufd/selftest.c
> index ee706f18f7e91..f6da927461b57 100644
> --- a/drivers/iommu/iommufd/selftest.c
> +++ b/drivers/iommu/iommufd/selftest.c
> @@ -2056,11 +2056,9 @@ static int iommufd_test_dmabuf_get(struct iommufd_ucmd *ucmd,
> }
>
> rc = dma_buf_fd(dmabuf, open_flags);
> - if (rc < 0) {
> + if (rc < 0)
> dma_buf_put(dmabuf);
> - return rc;
> - }
> - return 0;
> + return rc;
>
> err_free:
> kfree(priv->memory);
> --
> 2.43.7
>
Applied on upstream v7.3-rc1 kernel, issue was resolved.
Tested-by: Yi Lai <yi1.lai@intel.com>
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH] iommufd/selftest: Return dmabuf fd from IOMMU_TEST_OP_DMABUF_GET again
2026-09-02 8:54 [PATCH] iommufd/selftest: Return dmabuf fd from IOMMU_TEST_OP_DMABUF_GET again Qinyun Tan
2026-09-02 13:47 ` Yee Li
2026-09-03 8:08 ` Lai, Yi
@ 2026-09-09 16:23 ` Jason Gunthorpe
2 siblings, 0 replies; 4+ messages in thread
From: Jason Gunthorpe @ 2026-09-09 16:23 UTC (permalink / raw)
To: Jason Gunthorpe, Qinyun Tan
Cc: Kevin Tian, Joerg Roedel, Will Deacon, Robin Murphy, yeeli,
Xunlei Pang, iommu, linux-kernel
On Wed, 02 Sep 2026 16:54:14 +0800, Qinyun Tan wrote:
> iommufd/selftest: Return dmabuf fd from IOMMU_TEST_OP_DMABUF_GET again
Applied, thanks!
[1/1] iommufd/selftest: Return dmabuf fd from IOMMU_TEST_OP_DMABUF_GET again
commit: 1d56f4d6db3d2b2c93017a80c4f9c4cfffa9d193
Best regards,
--
Jason
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2026-09-09 16:23 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-09-02 8:54 [PATCH] iommufd/selftest: Return dmabuf fd from IOMMU_TEST_OP_DMABUF_GET again Qinyun Tan
2026-09-02 13:47 ` Yee Li
2026-09-03 8:08 ` Lai, Yi
2026-09-09 16:23 ` Jason Gunthorpe
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox