* [PATCH] slimbus: qcom: fix potential NULL dereference in qcom_slim_prg_slew()
@ 2020-12-08 1:54 Zhang Changzhong
2020-12-29 20:15 ` patchwork-bot+linux-arm-msm
0 siblings, 1 reply; 2+ messages in thread
From: Zhang Changzhong @ 2020-12-08 1:54 UTC (permalink / raw)
To: Andy Gross, Bjorn Andersson, Srinivas Kandagatla, Sagar Dharia,
Greg Kroah-Hartman
Cc: Zhang Changzhong, linux-arm-msm, linux-kernel
platform_get_resource_byname() may fail and in this case a NULL
dereference will occur.
Fix it to use devm_platform_ioremap_resource_byname() instead of calling
platform_get_resource_byname() and devm_ioremap().
This is detected by Coccinelle semantic patch.
@@
expression pdev, res, n, t, e, e1, e2;
@@
res = \(platform_get_resource\|platform_get_resource_byname\)(pdev, t,
n);
+ if (!res)
+ return -EINVAL;
... when != res == NULL
e = devm_ioremap(e1, res->start, e2);
Fixes: ad7fcbc308b0 ("slimbus: qcom: Add Qualcomm Slimbus controller driver")
Signed-off-by: Zhang Changzhong <zhangchangzhong@huawei.com>
---
drivers/slimbus/qcom-ctrl.c | 9 ++-------
1 file changed, 2 insertions(+), 7 deletions(-)
diff --git a/drivers/slimbus/qcom-ctrl.c b/drivers/slimbus/qcom-ctrl.c
index 4aad256..f04b961 100644
--- a/drivers/slimbus/qcom-ctrl.c
+++ b/drivers/slimbus/qcom-ctrl.c
@@ -472,15 +472,10 @@ static void qcom_slim_rxwq(struct work_struct *work)
static void qcom_slim_prg_slew(struct platform_device *pdev,
struct qcom_slim_ctrl *ctrl)
{
- struct resource *slew_mem;
-
if (!ctrl->slew_reg) {
/* SLEW RATE register for this SLIMbus */
- slew_mem = platform_get_resource_byname(pdev, IORESOURCE_MEM,
- "slew");
- ctrl->slew_reg = devm_ioremap(&pdev->dev, slew_mem->start,
- resource_size(slew_mem));
- if (!ctrl->slew_reg)
+ ctrl->slew_reg = devm_platform_ioremap_resource_byname(pdev, "slew");
+ if (IS_ERR(ctrl->slew_reg))
return;
}
--
2.9.5
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] slimbus: qcom: fix potential NULL dereference in qcom_slim_prg_slew()
2020-12-08 1:54 [PATCH] slimbus: qcom: fix potential NULL dereference in qcom_slim_prg_slew() Zhang Changzhong
@ 2020-12-29 20:15 ` patchwork-bot+linux-arm-msm
0 siblings, 0 replies; 2+ messages in thread
From: patchwork-bot+linux-arm-msm @ 2020-12-29 20:15 UTC (permalink / raw)
To: Zhang Changzhong; +Cc: linux-arm-msm
Hello:
This patch was applied to qcom/linux.git (refs/heads/for-next):
On Tue, 8 Dec 2020 09:54:32 +0800 you wrote:
> platform_get_resource_byname() may fail and in this case a NULL
> dereference will occur.
>
> Fix it to use devm_platform_ioremap_resource_byname() instead of calling
> platform_get_resource_byname() and devm_ioremap().
>
> This is detected by Coccinelle semantic patch.
>
> [...]
Here is the summary with links:
- slimbus: qcom: fix potential NULL dereference in qcom_slim_prg_slew()
https://git.kernel.org/qcom/c/428bb001143c
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2020-12-29 20:18 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-12-08 1:54 [PATCH] slimbus: qcom: fix potential NULL dereference in qcom_slim_prg_slew() Zhang Changzhong
2020-12-29 20:15 ` patchwork-bot+linux-arm-msm
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).