public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] cdx: Fix driver_managed_dma check
@ 2025-04-25 13:39 Robin Murphy
  2025-04-30 19:54 ` William McVicker
  2025-05-05  8:25 ` Agarwal, Nikhil
  0 siblings, 2 replies; 3+ messages in thread
From: Robin Murphy @ 2025-04-25 13:39 UTC (permalink / raw)
  To: joro, will, Nipun Gupta, Nikhil Agarwal
  Cc: iommu, linux-kernel, Will McVicker

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
TOCTOU issue, where dev->driver becomes valid after to_cdx_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.

Reported-by: Will McVicker <willmcvicker@google.com>
Fixes: bcb81ac6ae3c ("iommu: Get DT/ACPI parsing into the proper probe path")
Signed-off-by: Robin Murphy <robin.murphy@arm.com>
---
 drivers/cdx/cdx.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/cdx/cdx.c b/drivers/cdx/cdx.c
index 092306ca2541..8aa92a198b71 100644
--- a/drivers/cdx/cdx.c
+++ b/drivers/cdx/cdx.c
@@ -348,7 +348,7 @@ static void cdx_shutdown(struct device *dev)
 
 static int cdx_dma_configure(struct device *dev)
 {
-	struct cdx_driver *cdx_drv = to_cdx_driver(dev->driver);
+	const struct device_driver *drv = READ_ONCE(dev->driver);
 	struct cdx_device *cdx_dev = to_cdx_device(dev);
 	struct cdx_controller *cdx = cdx_dev->cdx;
 	u32 input_id = cdx_dev->req_id;
@@ -360,8 +360,8 @@ static int cdx_dma_configure(struct device *dev)
 		return ret;
 	}
 
-	/* @cdx_drv may not be valid when we're called from the IOMMU layer */
-	if (!ret && dev->driver && !cdx_drv->driver_managed_dma) {
+	/* @drv may not be valid when we're called from the IOMMU layer */
+	if (!ret && drv && !to_cdx_driver(drv)->driver_managed_dma) {
 		ret = iommu_device_use_default_domain(dev);
 		if (ret)
 			arch_teardown_dma_ops(dev);
-- 
2.39.2.101.g768bb238c484.dirty


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] cdx: Fix driver_managed_dma check
  2025-04-25 13:39 [PATCH] cdx: Fix driver_managed_dma check Robin Murphy
@ 2025-04-30 19:54 ` William McVicker
  2025-05-05  8:25 ` Agarwal, Nikhil
  1 sibling, 0 replies; 3+ messages in thread
From: William McVicker @ 2025-04-30 19:54 UTC (permalink / raw)
  To: Robin Murphy; +Cc: joro, will, Nipun Gupta, Nikhil Agarwal, iommu, linux-kernel

On 04/25/2025, Robin Murphy wrote:
> 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
> TOCTOU issue, where dev->driver becomes valid after to_cdx_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.

Thanks!

Reviewed-by: Will McVicker <willmcvicker@google.com>

> 
> Reported-by: Will McVicker <willmcvicker@google.com>
> Fixes: bcb81ac6ae3c ("iommu: Get DT/ACPI parsing into the proper probe path")
> Signed-off-by: Robin Murphy <robin.murphy@arm.com>
> ---
>  drivers/cdx/cdx.c | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/drivers/cdx/cdx.c b/drivers/cdx/cdx.c
> index 092306ca2541..8aa92a198b71 100644
> --- a/drivers/cdx/cdx.c
> +++ b/drivers/cdx/cdx.c
> @@ -348,7 +348,7 @@ static void cdx_shutdown(struct device *dev)
>  
>  static int cdx_dma_configure(struct device *dev)
>  {
> -	struct cdx_driver *cdx_drv = to_cdx_driver(dev->driver);
> +	const struct device_driver *drv = READ_ONCE(dev->driver);
>  	struct cdx_device *cdx_dev = to_cdx_device(dev);
>  	struct cdx_controller *cdx = cdx_dev->cdx;
>  	u32 input_id = cdx_dev->req_id;
> @@ -360,8 +360,8 @@ static int cdx_dma_configure(struct device *dev)
>  		return ret;
>  	}
>  
> -	/* @cdx_drv may not be valid when we're called from the IOMMU layer */
> -	if (!ret && dev->driver && !cdx_drv->driver_managed_dma) {
> +	/* @drv may not be valid when we're called from the IOMMU layer */
> +	if (!ret && drv && !to_cdx_driver(drv)->driver_managed_dma) {
>  		ret = iommu_device_use_default_domain(dev);
>  		if (ret)
>  			arch_teardown_dma_ops(dev);
> -- 
> 2.39.2.101.g768bb238c484.dirty
> 

^ permalink raw reply	[flat|nested] 3+ messages in thread

* RE: [PATCH] cdx: Fix driver_managed_dma check
  2025-04-25 13:39 [PATCH] cdx: Fix driver_managed_dma check Robin Murphy
  2025-04-30 19:54 ` William McVicker
@ 2025-05-05  8:25 ` Agarwal, Nikhil
  1 sibling, 0 replies; 3+ messages in thread
From: Agarwal, Nikhil @ 2025-05-05  8:25 UTC (permalink / raw)
  To: Robin Murphy, joro@8bytes.org, will@kernel.org, Gupta, Nipun,
	Greg KH
  Cc: iommu@lists.linux.dev, linux-kernel@vger.kernel.org,
	Will McVicker



> -----Original Message-----
> From: Robin Murphy <robin.murphy@arm.com>
> Sent: Friday, April 25, 2025 7:09 PM
> To: joro@8bytes.org; will@kernel.org; Gupta, Nipun <Nipun.Gupta@amd.com>;
> Agarwal, Nikhil <nikhil.agarwal@amd.com>
> Cc: iommu@lists.linux.dev; linux-kernel@vger.kernel.org; Will McVicker
> <willmcvicker@google.com>
> Subject: [PATCH] cdx: 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 TOCTOU issue, where dev->driver becomes valid after to_cdx_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.
> 
> Reported-by: Will McVicker <willmcvicker@google.com>
> Fixes: bcb81ac6ae3c ("iommu: Get DT/ACPI parsing into the proper probe path")
> Signed-off-by: Robin Murphy <robin.murphy@arm.com>

Acked-by: Nikhil Agarwal <nikhil.agarwal@amd.com>


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2025-05-05  8:25 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-04-25 13:39 [PATCH] cdx: Fix driver_managed_dma check Robin Murphy
2025-04-30 19:54 ` William McVicker
2025-05-05  8:25 ` Agarwal, Nikhil

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox