From: Hui Tang <tanghui20@huawei.com>
To: Andrew Lunn <andrew@lunn.ch>
Cc: <davem@davemloft.net>, <edumazet@google.com>, <kuba@kernel.org>,
<mw@semihalf.com>, <linux@armlinux.org.uk>, <pabeni@redhat.com>,
<netdev@vger.kernel.org>, <linux-kernel@vger.kernel.org>,
<yusongping@huawei.com>
Subject: Re: [PATCH net v2] net: mdio-ipq4019: fix possible invalid pointer dereference
Date: Sat, 19 Nov 2022 13:41:05 +0800 [thread overview]
Message-ID: <3cb5a576-8eb7-54fc-4f4b-9db360b6713d@huawei.com> (raw)
In-Reply-To: <Y3eMMc7maaPCKUNS@lunn.ch>
On 2022/11/18 21:44, Andrew Lunn wrote:
>> So, the code should be as follows, is that right?
>>
>> + void __iomem *devm_ioremap_resource_optional(struct device *dev,
>> + const struct resource *res)
>> + {
>> + void __iomem *base;
>> +
>> + base = __devm_ioremap_resource(dev, res, DEVM_IOREMAP);
>> + if (IS_ERR(base) && PTR_ERR(base) == -ENOMEM)
>> + return NULL;
>> +
>> + return base;
>> + }
>>
>>
>> [...]
>> res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
>> - if (res)
>> + if (res) {
>> + priv->eth_ldo_rdy = devm_ioremap_resource_optional(&pdev->dev, res)
>> + if (IS_ERR(priv->eth_ldo_rdy))
>> + return PTR_ERR(priv->eth_ldo_rdy);
>> + }
>> [...]
>
> Yes, that is the basic concept.
>
> The only thing i might change is the double meaning of -ENOMEM.
> __devm_ioremap_resource() allocates memory, and if that memory
> allocation fails, it returns -ENOMEM. If the resource does not exist,
> it also returns -ENOMEM. So you cannot tell these two error conditions
> apart. Most of the other get_foo() calls return -ENODEV if the
> gpio/regulator/clock does not exist, so you can tell if you are out of
> memory. But ioremap is specifically about memory so -ENOMEM actually
> makes sense.
>
> If you are out of memory, it seems likely the problem is not going to
> go away quickly, so the next allocation will also fail, and hopefully
> the error handling will then work. So i don't think it is major
> issue. So yes, go with the code above.
>
Hi, Andrew
My new patchset is ready, but I just found out that another patch has been
applied to netdev/net.git. Can I solve the problem in present way? And I
will add devm_ioremap_resource_optional() helper later to optimize related
drivers. How about this?
Thanks.
next prev parent reply other threads:[~2022-11-19 5:41 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-11-17 9:05 Hui Tang
2022-11-17 13:57 ` Andrew Lunn
2022-11-18 7:21 ` Hui Tang
2022-11-18 13:44 ` Andrew Lunn
2022-11-19 5:41 ` Hui Tang [this message]
2022-11-21 14:36 ` Andrew Lunn
2022-11-23 1:10 ` Hui Tang
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=3cb5a576-8eb7-54fc-4f4b-9db360b6713d@huawei.com \
--to=tanghui20@huawei.com \
--cc=andrew@lunn.ch \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=kuba@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux@armlinux.org.uk \
--cc=mw@semihalf.com \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=yusongping@huawei.com \
/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®