Linux kernel and device drivers for NXP i.MX platforms
 help / color / mirror / Atom feed
From: sashiko-bot@kernel.org
To: "Pengpeng Hou" <pengpeng@iscas.ac.cn>
Cc: imx@lists.linux.dev, vkoul@kernel.org, Frank.Li@kernel.org,
	dmaengine@vger.kernel.org
Subject: Re: [PATCH] dmaengine: fsl-edma: make channel resource allocation transactional
Date: Sun, 30 Aug 2026 14:27:52 +0000	[thread overview]
Message-ID: <20260830142752.CDC241F000E9@smtp.kernel.org> (raw)
In-Reply-To: <20260830140925.30268-1-pengpeng@iscas.ac.cn>

Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:

Pre-existing issues:
- [High] Pending vchan tasklet is not synchronized before destroying the channel's DMA pool in fsl_edma_free_chan_resources, causing a use-after-free race.
--

commit 4815c2b1d9762a4bc22fe65a8797f16c559c652f
Author: Pengpeng Hou <pengpeng@iscas.ac.cn>

    dmaengine: fsl-edma: make channel resource allocation transactional

This commit modifies fsl_edma_alloc_chan_resources to properly handle clock
enable failures and DMA pool allocation failures. It checks these prerequisites
and ensures resources are correctly unwound on failure.

> diff --git a/drivers/dma/fsl-edma-common.c b/drivers/dma/fsl-edma-common.c
> index bb7531c456dfa..02b92d1464cca 100644
> --- a/drivers/dma/fsl-edma-common.c
> +++ b/drivers/dma/fsl-edma-common.c
[ ... ]
> @@ -873,7 +880,9 @@ int fsl_edma_alloc_chan_resources(struct dma_chan *chan)
>  		free_irq(fsl_chan->txirq, fsl_chan);
>  err_txirq:
>  	dma_pool_destroy(fsl_chan->tcd_pool);
> -	clk_disable_unprepare(fsl_chan->clk);
> +err_pool:
> +	if (fsl_edma_drvflags(fsl_chan) & FSL_EDMA_DRV_HAS_CHCLK)
> +		clk_disable_unprepare(fsl_chan->clk);
>  
>  	return ret;
>  }

[Severity: High]
This is a pre-existing issue, but while we are looking at channel resource
management, is there a use-after-free race when destroying the DMA pool in
fsl_edma_free_chan_resources()?

drivers/dma/fsl-edma-common.c:fsl_edma_free_chan_resources() {
    ...
	vchan_dma_desc_free_list(&fsl_chan->vchan, &head);
	dma_pool_destroy(fsl_chan->tcd_pool);
	fsl_chan->tcd_pool = NULL;
    ...
}

If a client driver releases an active DMA channel without explicitly calling
dmaengine_terminate_sync() beforehand, dma_release_channel() synchronizes
running tasklets and then calls free_chan_resources.

Because free_chan_resources disables the active hardware itself without
subsequently killing the tasklet again, an interrupt can fire right after the
initial synchronization but before the hardware is disabled.

This interrupt will schedule the vchan_complete tasklet, which then executes
concurrently with or after free_chan_resources destroys the tcd_pool.

Can this lead to a use-after-free when the tasklet attempts to free
descriptors into the destroyed pool via vchan_vdesc_fini()?

-- 
Sashiko AI review · https://sashiko.dev/#/patchset/20260830140925.30268-1-pengpeng@iscas.ac.cn?part=1

  reply	other threads:[~2026-08-30 14:27 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-08-30 14:09 [PATCH] dmaengine: fsl-edma: make channel resource allocation transactional Pengpeng Hou
2026-08-30 14:27 ` sashiko-bot [this message]
2026-08-31 15:46 ` Frank Li

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20260830142752.CDC241F000E9@smtp.kernel.org \
    --to=sashiko-bot@kernel.org \
    --cc=Frank.Li@kernel.org \
    --cc=dmaengine@vger.kernel.org \
    --cc=imx@lists.linux.dev \
    --cc=pengpeng@iscas.ac.cn \
    --cc=sashiko-reviews@lists.linux.dev \
    --cc=vkoul@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox