* [PATCH v3] wifi: brcm80211: handle pmk_op allocation failure
@ 2024-02-29 10:31 Duoming Zhou
2024-02-29 11:36 ` Arend van Spriel
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Duoming Zhou @ 2024-02-29 10:31 UTC (permalink / raw)
To: linux-kernel
Cc: brcm80211-dev-list.pdl, brcm80211, linux-wireless, justinstitt,
quic_alokad, jisoo.jang, petr.tesarik.ext, hdegoede, keescook,
johannes.berg, kvalo, arend.vanspriel, Duoming Zhou
The kzalloc() in brcmf_pmksa_v3_op() will return null if the
physical memory has run out. As a result, if we dereference
the null value, the null pointer dereference bug will happen.
Return -ENOMEM from brcmf_pmksa_v3_op() if kzalloc() fails
for pmk_op.
Fixes: a96202acaea4 ("wifi: brcmfmac: cfg80211: Add support for PMKID_V3 operations")
Acked-by: Arend van Spriel <arend.vanspriel@broadcom.com>
Signed-off-by: Duoming Zhou <duoming@zju.edu.cn>
---
Changes in v3:
- Just return -ENOMEM.
drivers/net/wireless/broadcom/brcm80211/brcmfmac/cfg80211.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/drivers/net/wireless/broadcom/brcm80211/brcmfmac/cfg80211.c b/drivers/net/wireless/broadcom/brcm80211/brcmfmac/cfg80211.c
index 28d6a30cc01..1a5d7494f5e 100644
--- a/drivers/net/wireless/broadcom/brcm80211/brcmfmac/cfg80211.c
+++ b/drivers/net/wireless/broadcom/brcm80211/brcmfmac/cfg80211.c
@@ -4322,6 +4322,9 @@ brcmf_pmksa_v3_op(struct brcmf_if *ifp, struct cfg80211_pmksa *pmksa,
int ret;
pmk_op = kzalloc(sizeof(*pmk_op), GFP_KERNEL);
+ if (!pmk_op)
+ return -ENOMEM;
+
pmk_op->version = cpu_to_le16(BRCMF_PMKSA_VER_3);
if (!pmksa) {
--
2.17.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH v3] wifi: brcm80211: handle pmk_op allocation failure
2024-02-29 10:31 [PATCH v3] wifi: brcm80211: handle pmk_op allocation failure Duoming Zhou
@ 2024-02-29 11:36 ` Arend van Spriel
2024-03-01 0:40 ` Kees Cook
2024-03-05 18:56 ` Kalle Valo
2 siblings, 0 replies; 4+ messages in thread
From: Arend van Spriel @ 2024-02-29 11:36 UTC (permalink / raw)
To: Duoming Zhou, linux-kernel
Cc: brcm80211-dev-list.pdl, brcm80211, linux-wireless, justinstitt,
quic_alokad, jisoo.jang, petr.tesarik.ext, hdegoede, keescook,
johannes.berg, kvalo
[-- Attachment #1: Type: text/plain, Size: 721 bytes --]
On 2/29/2024 11:31 AM, Duoming Zhou wrote:
> The kzalloc() in brcmf_pmksa_v3_op() will return null if the
> physical memory has run out. As a result, if we dereference
> the null value, the null pointer dereference bug will happen.
>
> Return -ENOMEM from brcmf_pmksa_v3_op() if kzalloc() fails
> for pmk_op.
>
> Fixes: a96202acaea4 ("wifi: brcmfmac: cfg80211: Add support for PMKID_V3 operations")
> Acked-by: Arend van Spriel <arend.vanspriel@broadcom.com>
For real this time. Thanks!!
Regards,
Arend
> Signed-off-by: Duoming Zhou <duoming@zju.edu.cn>
> ---
> Changes in v3:
> - Just return -ENOMEM.
>
> drivers/net/wireless/broadcom/brcm80211/brcmfmac/cfg80211.c | 3 +++
> 1 file changed, 3 insertions(+)
[-- Attachment #2: S/MIME Cryptographic Signature --]
[-- Type: application/pkcs7-signature, Size: 4219 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v3] wifi: brcm80211: handle pmk_op allocation failure
2024-02-29 10:31 [PATCH v3] wifi: brcm80211: handle pmk_op allocation failure Duoming Zhou
2024-02-29 11:36 ` Arend van Spriel
@ 2024-03-01 0:40 ` Kees Cook
2024-03-05 18:56 ` Kalle Valo
2 siblings, 0 replies; 4+ messages in thread
From: Kees Cook @ 2024-03-01 0:40 UTC (permalink / raw)
To: Duoming Zhou
Cc: linux-kernel, brcm80211-dev-list.pdl, brcm80211, linux-wireless,
justinstitt, quic_alokad, jisoo.jang, petr.tesarik.ext, hdegoede,
johannes.berg, kvalo, arend.vanspriel
On Thu, Feb 29, 2024 at 06:31:53PM +0800, Duoming Zhou wrote:
> The kzalloc() in brcmf_pmksa_v3_op() will return null if the
> physical memory has run out. As a result, if we dereference
> the null value, the null pointer dereference bug will happen.
>
> Return -ENOMEM from brcmf_pmksa_v3_op() if kzalloc() fails
> for pmk_op.
>
> Fixes: a96202acaea4 ("wifi: brcmfmac: cfg80211: Add support for PMKID_V3 operations")
> Acked-by: Arend van Spriel <arend.vanspriel@broadcom.com>
> Signed-off-by: Duoming Zhou <duoming@zju.edu.cn>
Thanks for the respin! :)
Reviewed-by: Kees Cook <keescook@chromium.org>
--
Kees Cook
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v3] wifi: brcm80211: handle pmk_op allocation failure
2024-02-29 10:31 [PATCH v3] wifi: brcm80211: handle pmk_op allocation failure Duoming Zhou
2024-02-29 11:36 ` Arend van Spriel
2024-03-01 0:40 ` Kees Cook
@ 2024-03-05 18:56 ` Kalle Valo
2 siblings, 0 replies; 4+ messages in thread
From: Kalle Valo @ 2024-03-05 18:56 UTC (permalink / raw)
To: Duoming Zhou
Cc: linux-kernel, brcm80211-dev-list.pdl, brcm80211, linux-wireless,
justinstitt, quic_alokad, jisoo.jang, petr.tesarik.ext, hdegoede,
keescook, johannes.berg, arend.vanspriel, Duoming Zhou
Duoming Zhou <duoming@zju.edu.cn> wrote:
> The kzalloc() in brcmf_pmksa_v3_op() will return null if the
> physical memory has run out. As a result, if we dereference
> the null value, the null pointer dereference bug will happen.
>
> Return -ENOMEM from brcmf_pmksa_v3_op() if kzalloc() fails
> for pmk_op.
>
> Fixes: a96202acaea4 ("wifi: brcmfmac: cfg80211: Add support for PMKID_V3 operations")
> Acked-by: Arend van Spriel <arend.vanspriel@broadcom.com>
> Signed-off-by: Duoming Zhou <duoming@zju.edu.cn>
> Reviewed-by: Kees Cook <keescook@chromium.org>
Patch applied to wireless-next.git, thanks.
b4152222e04c wifi: brcm80211: handle pmk_op allocation failure
--
https://patchwork.kernel.org/project/linux-wireless/patch/20240229103153.18533-1-duoming@zju.edu.cn/
https://wireless.wiki.kernel.org/en/developers/documentation/submittingpatches
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-03-05 18:56 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-02-29 10:31 [PATCH v3] wifi: brcm80211: handle pmk_op allocation failure Duoming Zhou
2024-02-29 11:36 ` Arend van Spriel
2024-03-01 0:40 ` Kees Cook
2024-03-05 18:56 ` Kalle Valo
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox