From: Damien Le Moal <dlemoal@kernel.org>
To: Henry Martin <bsdhenrymartin@gmail.com>,
cassel@kernel.org, linux-ide@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
Subject: Re: [PATCH v1] [ARM] pata_pxa: Fix null-ptr-deref in pxa_ata_probe()
Date: Fri, 4 Apr 2025 13:07:49 +0900 [thread overview]
Message-ID: <d16bdd67-5060-4bb1-991b-6c82f3936ace@kernel.org> (raw)
In-Reply-To: <f1e0683a-579f-470b-afa9-4869ac3ced98@kernel.org>
On 4/4/25 12:58 PM, Damien Le Moal wrote:
> On 4/3/25 12:45 PM, Henry Martin wrote:
The patch title should be:
ata: pata_pxa: Fix potential NULL pointer dereference in pxa_ata_probe()
>> devm_ioremap() returns NULL on error. Currently, pxa_ata_probe() does
>> not check for this case, which results in a NULL pointer dereference.
>
> , which can result in...
>
>>
>> Add NULL check after devm_ioremap() to prevent this issue.
>>
>> Fixes: 2dc6c6f15da9 ("[ARM] pata_pxa: DMA-capable PATA driver")
>> Signed-off-by: Henry Martin <bsdhenrymartin@gmail.com>
>> ---
>> drivers/ata/pata_pxa.c | 7 ++++++-
>> 1 file changed, 6 insertions(+), 1 deletion(-)
>>
>> diff --git a/drivers/ata/pata_pxa.c b/drivers/ata/pata_pxa.c
>> index 434f380114af..cc76290a3b1a 100644
>> --- a/drivers/ata/pata_pxa.c
>> +++ b/drivers/ata/pata_pxa.c
>> @@ -223,11 +223,16 @@ static int pxa_ata_probe(struct platform_device *pdev)
>>
>> ap->ioaddr.cmd_addr = devm_ioremap(&pdev->dev, cmd_res->start,
>> resource_size(cmd_res));
>> + if (!ap->ioaddr.cmd_addr)
>> + return -ENOMEM;
>> ap->ioaddr.ctl_addr = devm_ioremap(&pdev->dev, ctl_res->start,
>> resource_size(ctl_res));
>> + if (!ap->ioaddr.ctl_addr)
>> + return -ENOMEM;
>> ap->ioaddr.bmdma_addr = devm_ioremap(&pdev->dev, dma_res->start,
>> resource_size(dma_res));
>> -
>> + if (!ap->ioaddr.bmdma_addr)
>> + return -ENOMEM;
>
> Please keep the blank line here.
>
>> /*
>> * Adjust register offsets
>> */
>
>
--
Damien Le Moal
Western Digital Research
next prev parent reply other threads:[~2025-04-04 4:08 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-04-03 3:45 Henry Martin
2025-04-03 7:33 ` [PATCH] " Markus Elfring
2025-04-04 3:58 ` [PATCH v1] " Damien Le Moal
2025-04-04 4:07 ` Damien Le Moal [this message]
2025-04-04 6:14 ` [PATCH v2] ata: pata_pxa: Fix potential NULL pointer dereference " Henry Martin
2025-04-04 9:22 ` Markus Elfring
2025-04-08 3:43 ` Damien Le Moal
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=d16bdd67-5060-4bb1-991b-6c82f3936ace@kernel.org \
--to=dlemoal@kernel.org \
--cc=bsdhenrymartin@gmail.com \
--cc=cassel@kernel.org \
--cc=linux-ide@vger.kernel.org \
--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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®