From: Vinod Koul <vkoul@kernel.org>
To: Thomas Fourier <fourier.thomas@gmail.com>
Cc: Guennadi Liakhovetski <g.liakhovetski@gmx.de>,
dmaengine@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] dmaengine: nbpfaxi: Fix possible array access out of bounds of nbpf->chan
Date: Tue, 15 Jul 2025 20:41:11 +0530 [thread overview]
Message-ID: <aHZvjxx6Mn7_roLt@vaman> (raw)
In-Reply-To: <20250707082353.40402-2-fourier.thomas@gmail.com>
On 07-07-25, 10:23, Thomas Fourier wrote:
> The nbpf is alloc'd at line 1324 with a size of num_channels so it seems
> like the maximum index of nbpf->chan should be num_channels - 1.
I have already applied a patch from Dan sent earlier for this
>
> Fixes: b45b262cefd5 ("dmaengine: add a driver for AMBA AXI NBPF DMAC IP cores")
> Signed-off-by: Thomas Fourier <fourier.thomas@gmail.com>
> ---
> drivers/dma/nbpfaxi.c | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/dma/nbpfaxi.c b/drivers/dma/nbpfaxi.c
> index 0b75bb122898..dd1b5e2a603c 100644
> --- a/drivers/dma/nbpfaxi.c
> +++ b/drivers/dma/nbpfaxi.c
> @@ -1364,7 +1364,7 @@ static int nbpf_probe(struct platform_device *pdev)
> if (irqs == 1) {
> eirq = irqbuf[0];
>
> - for (i = 0; i <= num_channels; i++)
> + for (i = 0; i < num_channels; i++)
> nbpf->chan[i].irq = irqbuf[0];
> } else {
> eirq = platform_get_irq_byname(pdev, "error");
> @@ -1374,7 +1374,7 @@ static int nbpf_probe(struct platform_device *pdev)
> if (irqs == num_channels + 1) {
> struct nbpf_channel *chan;
>
> - for (i = 0, chan = nbpf->chan; i <= num_channels;
> + for (i = 0, chan = nbpf->chan; i < num_channels;
> i++, chan++) {
> /* Skip the error IRQ */
> if (irqbuf[i] == eirq)
> @@ -1391,7 +1391,7 @@ static int nbpf_probe(struct platform_device *pdev)
> else
> irq = irqbuf[0];
>
> - for (i = 0; i <= num_channels; i++)
> + for (i = 0; i < num_channels; i++)
> nbpf->chan[i].irq = irq;
> }
> }
> --
> 2.43.0
--
~Vinod
prev parent reply other threads:[~2025-07-15 15:11 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-07-07 8:23 [PATCH] dmaengine: nbpfaxi: Fix possible array access out of bounds of nbpf->chan Thomas Fourier
2025-07-15 15:11 ` Vinod Koul [this message]
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=aHZvjxx6Mn7_roLt@vaman \
--to=vkoul@kernel.org \
--cc=dmaengine@vger.kernel.org \
--cc=fourier.thomas@gmail.com \
--cc=g.liakhovetski@gmx.de \
--cc=linux-kernel@vger.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.