Linux IOMMU Development
 help / color / mirror / Atom feed
* [PATCH] dma: fix call order in dmam_free_coherent
@ 2024-07-18 14:38 Lance Richardson
  2024-07-19  5:27 ` Christoph Hellwig
  0 siblings, 1 reply; 2+ messages in thread
From: Lance Richardson @ 2024-07-18 14:38 UTC (permalink / raw)
  To: Christoph Hellwig, Marek Szyprowski, Robin Murphy
  Cc: Jeff Garzik, Tejun Heo, iommu, David Rientjes, Lance Richardson

dmam_free_coherent() frees a DMA allocation, which makes the
freed vaddr available for reuse, then calls devres_destroy()
to remove and free the data structure used to track the DMA
allocation. Between the two calls, it is possible for a
concurrent task to make an allocation with the same vaddr
and add it to the devres list.

If this happens, there will be two entries in the devres list
with the same vaddr and devres_destroy() can free the wrong
entry, triggering the WARN_ON() in dmam_match.

Fix by destroying the devres entry before freeing the DMA
allocation.

Tested:
  kokonut //net/encryption
    http://sponge2/b9145fe6-0f72-4325-ac2f-a84d81075b03

Fixes: 9ac7849e35f7 ("devres: device resource management")
Signed-off-by: Lance Richardson <rlance@google.com>
---
 kernel/dma/mapping.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kernel/dma/mapping.c b/kernel/dma/mapping.c
index 98e3d873792e..0492fb58be7b 100644
--- a/kernel/dma/mapping.c
+++ b/kernel/dma/mapping.c
@@ -59,8 +59,8 @@ void dmam_free_coherent(struct device *dev, size_t size, void *vaddr,
 {
 	struct dma_devres match_data = { size, vaddr, dma_handle };
 
-	dma_free_coherent(dev, size, vaddr, dma_handle);
 	WARN_ON(devres_destroy(dev, dmam_release, dmam_match, &match_data));
+	dma_free_coherent(dev, size, vaddr, dma_handle);
 }
 EXPORT_SYMBOL(dmam_free_coherent);
 
-- 
2.45.2.993.g49e7a77208-goog


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

* Re: [PATCH] dma: fix call order in dmam_free_coherent
  2024-07-18 14:38 [PATCH] dma: fix call order in dmam_free_coherent Lance Richardson
@ 2024-07-19  5:27 ` Christoph Hellwig
  0 siblings, 0 replies; 2+ messages in thread
From: Christoph Hellwig @ 2024-07-19  5:27 UTC (permalink / raw)
  To: Lance Richardson
  Cc: Christoph Hellwig, Marek Szyprowski, Robin Murphy, Jeff Garzik,
	Tejun Heo, iommu, David Rientjes

Thanks, applied.


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

end of thread, other threads:[~2024-07-19  5:27 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-18 14:38 [PATCH] dma: fix call order in dmam_free_coherent Lance Richardson
2024-07-19  5:27 ` Christoph Hellwig

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