Message ID | 20220225132138.27722-1-baijiaju1990@gmail.com |
---|---|
State | New |
Headers | show |
Series | brcmfmac: check the return value of devm_kzalloc() in brcmf_of_probe() | expand |
Jia-Ju Bai <baijiaju1990@gmail.com> wrote: > The function devm_kzalloc() in brcmf_of_probe() can fail, so its return > value should be checked. > > Fixes: 29e354ebeeec ("brcmfmac: Transform compatible string for FW loading") > Reported-by: TOTE Robot <oslab@tsinghua.edu.cn> > Signed-off-by: Jia-Ju Bai <baijiaju1990@gmail.com> You are not calling of_node_put() in the error path. And I don't think this even applies. Patch set to Changes Requested.
On 2022/3/11 0:09, Kalle Valo wrote: > Jia-Ju Bai <baijiaju1990@gmail.com> wrote: > >> The function devm_kzalloc() in brcmf_of_probe() can fail, so its return >> value should be checked. >> >> Fixes: 29e354ebeeec ("brcmfmac: Transform compatible string for FW loading") >> Reported-by: TOTE Robot <oslab@tsinghua.edu.cn> >> Signed-off-by: Jia-Ju Bai <baijiaju1990@gmail.com> > You are not calling of_node_put() in the error path. And I don't think > this even applies. > > Patch set to Changes Requested. > Hi Kalle, Thanks for the reply :) I will add of_node_put() and send a V2 patch. Best wishes, Jia-Ju Bai
diff --git a/drivers/net/wireless/broadcom/brcm80211/brcmfmac/of.c b/drivers/net/wireless/broadcom/brcm80211/brcmfmac/of.c index 513c7e6421b2..535e8ddeab8d 100644 --- a/drivers/net/wireless/broadcom/brcm80211/brcmfmac/of.c +++ b/drivers/net/wireless/broadcom/brcm80211/brcmfmac/of.c @@ -80,6 +80,8 @@ void brcmf_of_probe(struct device *dev, enum brcmf_bus_type bus_type, /* get rid of '/' in the compatible string to be able to find the FW */ len = strlen(tmp) + 1; board_type = devm_kzalloc(dev, len, GFP_KERNEL); + if (!board_type) + return; strscpy(board_type, tmp, len); for (i = 0; i < board_type[i]; i++) { if (board_type[i] == '/')
The function devm_kzalloc() in brcmf_of_probe() can fail, so its return value should be checked. Fixes: 29e354ebeeec ("brcmfmac: Transform compatible string for FW loading") Reported-by: TOTE Robot <oslab@tsinghua.edu.cn> Signed-off-by: Jia-Ju Bai <baijiaju1990@gmail.com> --- drivers/net/wireless/broadcom/brcm80211/brcmfmac/of.c | 2 ++ 1 file changed, 2 insertions(+)