* [PATCH] iommu/amd: Fix PCI device reference leak in PPR handling
@ 2026-08-14 13:39 Ruoyu Wang
2026-08-16 14:48 ` Markus Elfring
0 siblings, 1 reply; 2+ messages in thread
From: Ruoyu Wang @ 2026-08-14 13:39 UTC (permalink / raw)
To: Joerg Roedel, Suravee Suthikulpanit, Will Deacon, Robin Murphy,
Jason Gunthorpe, Wei Huang, Vasant Hegde
Cc: iommu, linux-kernel, Ruoyu Wang
pci_get_domain_bus_and_slot() takes a reference on the returned PCI
device. iommu_call_iopf_notifier() fails to release it after either
reporting a valid PPR fault or completing a rejected request. Each
handled request therefore leaks a reference and can prevent the PCI
device from being released.
Call pci_dev_put() after the final use of the lookup reference on both
paths.
This issue was found by a static analysis checker and confirmed by
manual source review.
Fixes: 978d626b8f1a ("iommu/amd: Add IO page fault notifier handler")
Signed-off-by: Ruoyu Wang <ruoyuw560@gmail.com>
---
drivers/iommu/amd/ppr.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/drivers/iommu/amd/ppr.c b/drivers/iommu/amd/ppr.c
index 1f8d2823bea42..1e4392b17bd8f 100644
--- a/drivers/iommu/amd/ppr.c
+++ b/drivers/iommu/amd/ppr.c
@@ -151,6 +151,7 @@ static void iommu_call_iopf_notifier(struct amd_iommu *iommu, u64 *raw)
/* Submit event */
iommu_report_device_fault(&pdev->dev, &event);
+ pci_dev_put(pdev);
return;
@@ -159,6 +160,7 @@ static void iommu_call_iopf_notifier(struct amd_iommu *iommu, u64 *raw)
amd_iommu_complete_ppr(&pdev->dev, PPR_PASID(raw[0]),
IOMMU_PAGE_RESP_FAILURE,
PPR_TAG(raw[0]) & 0x1FF);
+ pci_dev_put(pdev);
}
void amd_iommu_poll_ppr_log(struct amd_iommu *iommu)
--
2.51.0
^ permalink raw reply [flat|nested] 2+ messages in thread* Re: [PATCH] iommu/amd: Fix PCI device reference leak in PPR handling
2026-08-14 13:39 [PATCH] iommu/amd: Fix PCI device reference leak in PPR handling Ruoyu Wang
@ 2026-08-16 14:48 ` Markus Elfring
0 siblings, 0 replies; 2+ messages in thread
From: Markus Elfring @ 2026-08-16 14:48 UTC (permalink / raw)
To: Ruoyu Wang, iommu, Jason Gunthorpe, Jörg Rödel,
Robin Murphy, Suravee Suthikulpanit, Vasant Hegde, Wei Huang,
Will Deacon
Cc: LKML, kernel-janitors
…
> Call pci_dev_put() after the final use of the lookup reference on both
> paths.
…
How do you think about to apply the attribute “__free(pci_dev_put)”
also in the implementation of the function “iommu_call_iopf_notifier”?
https://elixir.bootlin.com/linux/v7.2-rc7/source/include/linux/pci.h#L1269
https://elixir.bootlin.com/linux/v7.2-rc7/source/drivers/iommu/amd/ppr.c#L107-L162
Regards,
Markus
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-08-16 14:48 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-08-14 13:39 [PATCH] iommu/amd: Fix PCI device reference leak in PPR handling Ruoyu Wang
2026-08-16 14:48 ` Markus Elfring
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®