[PATCH] net: ll_temac: check the return value of devm_kmalloc()

Subsystems: networking drivers, the rest, xilinx ll temac ethernet driver

STALE1661d

2 messages, 2 authors, 2022-02-17 · open the first message on its own page

[PATCH] net: ll_temac: check the return value of devm_kmalloc()

From: <hidden>
Date: 2022-02-16 10:55:57

From: Xiaoke Wang <redacted>

devm_kmalloc() returns a pointer to allocated memory on success, NULL
on failure. While lp->indirect_lock is allocated by devm_kmalloc()
without proper check. It is better to check the value of it to
prevent potential wrong memory access.

Signed-off-by: Xiaoke Wang <redacted>
---
 drivers/net/ethernet/xilinx/ll_temac_main.c | 5 +++++
 1 file changed, 5 insertions(+)
diff --git a/drivers/net/ethernet/xilinx/ll_temac_main.c b/drivers/net/ethernet/xilinx/ll_temac_main.c
index 463094c..7c5dd39 100644
--- a/drivers/net/ethernet/xilinx/ll_temac_main.c
+++ b/drivers/net/ethernet/xilinx/ll_temac_main.c
@@ -1427,6 +1427,11 @@ static int temac_probe(struct platform_device *pdev)
 		lp->indirect_lock = devm_kmalloc(&pdev->dev,
 						 sizeof(*lp->indirect_lock),
 						 GFP_KERNEL);
+		if (!lp->indirect_lock) {
+			dev_err(&pdev->dev,
+				"indirect register lock allocation failed\n");
+			return -ENOMEM;
+		}
 		spin_lock_init(lp->indirect_lock);
 	}
 
-- 

Re: [PATCH] net: ll_temac: check the return value of devm_kmalloc()

From: Jakub Kicinski <kuba@kernel.org>
Date: 2022-02-17 16:52:14

On Wed, 16 Feb 2022 18:46:42 +0800 xkernel.wang@foxmail.com wrote:
From: Xiaoke Wang <redacted>

devm_kmalloc() returns a pointer to allocated memory on success, NULL
on failure. While lp->indirect_lock is allocated by devm_kmalloc()
without proper check. It is better to check the value of it to
prevent potential wrong memory access.
Consider adding a Fixes tag, although I guess this is not a real bug
since tiny allocations don't really fail.
quoted hunk
Signed-off-by: Xiaoke Wang <redacted>
---
 drivers/net/ethernet/xilinx/ll_temac_main.c | 5 +++++
 1 file changed, 5 insertions(+)
diff --git a/drivers/net/ethernet/xilinx/ll_temac_main.c b/drivers/net/ethernet/xilinx/ll_temac_main.c
index 463094c..7c5dd39 100644
--- a/drivers/net/ethernet/xilinx/ll_temac_main.c
+++ b/drivers/net/ethernet/xilinx/ll_temac_main.c
@@ -1427,6 +1427,11 @@ static int temac_probe(struct platform_device *pdev)
 		lp->indirect_lock = devm_kmalloc(&pdev->dev,
 						 sizeof(*lp->indirect_lock),
 						 GFP_KERNEL);
+		if (!lp->indirect_lock) {
+			dev_err(&pdev->dev,
+				"indirect register lock allocation failed\n");
There's no need for this message, kmalloc() will display an error
already.
+			return -ENOMEM;
+		}
 		spin_lock_init(lp->indirect_lock);
 	}
 

Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help