Skip to content

Commit 202c6d0

Browse files
committed
PCI: Fix driver_managed_dma check
JIRA: https://issues.redhat.com/browse/RHEL-116573 Upstream Status: git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git commit 78447d4 Author: Robin Murphy <robin.murphy@arm.com> Date: Fri Apr 25 14:39:29 2025 +0100 PCI: Fix driver_managed_dma check Since it's not currently safe to take device_lock() in the IOMMU probe path, that can race against really_probe() setting dev->driver before attempting to bind. The race itself isn't so bad, since we're only concerned with dereferencing dev->driver itself anyway, but sadly my attempt to implement the check with minimal churn leads to a kind of Time-of-Check to Time-of-Use (TOCTOU) issue, where dev->driver becomes valid after to_pci_driver(NULL) is already computed, and thus the check fails to work as intended. Will and I both hit this with the platform bus, but the pattern here is the same, so fix it for correctness too. Fixes: bcb81ac ("iommu: Get DT/ACPI parsing into the proper probe path") Reported-by: Will McVicker <willmcvicker@google.com> Signed-off-by: Robin Murphy <robin.murphy@arm.com> Signed-off-by: Bjorn Helgaas <bhelgaas@google.com> Reviewed-by: Will McVicker <willmcvicker@google.com> Link: https://patch.msgid.link/20250425133929.646493-4-robin.murphy@arm.com Signed-off-by: Eder Zulian <ezulian@redhat.com>
1 parent d6029c0 commit 202c6d0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

drivers/pci/pci-driver.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1641,7 +1641,7 @@ static int pci_bus_num_vf(struct device *dev)
16411641
*/
16421642
static int pci_dma_configure(struct device *dev)
16431643
{
1644-
struct pci_driver *driver = to_pci_driver(dev->driver);
1644+
const struct device_driver *drv = READ_ONCE(dev->driver);
16451645
struct device *bridge;
16461646
int ret = 0;
16471647

@@ -1658,8 +1658,8 @@ static int pci_dma_configure(struct device *dev)
16581658

16591659
pci_put_host_bridge_device(bridge);
16601660

1661-
/* @driver may not be valid when we're called from the IOMMU layer */
1662-
if (!ret && dev->driver && !driver->driver_managed_dma) {
1661+
/* @drv may not be valid when we're called from the IOMMU layer */
1662+
if (!ret && drv && !to_pci_driver(drv)->driver_managed_dma) {
16631663
ret = iommu_device_use_default_domain(dev);
16641664
if (ret)
16651665
arch_teardown_dma_ops(dev);

0 commit comments

Comments
 (0)