Linux wireless drivers development
 help / color / mirror / Atom feed
* [PATCH] wifi: mwifiex: bound SDIO fw dump count by memory table size
@ 2026-09-04 12:57 Tianchu Chen
  2026-09-11  7:18 ` Tianchu Chen
  0 siblings, 1 reply; 2+ messages in thread
From: Tianchu Chen @ 2026-09-04 12:57 UTC (permalink / raw)
  To: briannorris, francesco; +Cc: linux-wireless, netdev

From: Tianchu Chen <flynnnchen@tencent.com>

mwifiex_sdio_fw_dump() reads the number of memory regions (dump_num) from 
a device register and uses it to index the static 15-entry
mem_type_mapping_tbl[] without any bounds check. A bogus device can
report a dump_num larger than the table, making each loop iteration
store a vmalloc pointer and a device-controlled size past the end
of the table into adjacent .data (up to ~5.7KB when dump_num is 255).

The dump path runs after command timeouts or firmware crashes, so a
bogus device can first force an error to trigger the dump and
then report a bogus dump_num.

Aborting the dump only loses the firmware snapshot; the card reset 
that follows is unaffected, so error recovery still completes.

Discovered by Atuin - Automated Vulnerability Discovery Engine.

Fixes: 54881c6b37c8d ("mwifiex: add firmware dump feature for SDIO")
Cc: stable@vger.kernel.org
Assisted-by: LLM
Signed-off-by: Tianchu Chen <flynnnchen@tencent.com>
---
 drivers/net/wireless/marvell/mwifiex/sdio.c | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/drivers/net/wireless/marvell/mwifiex/sdio.c b/drivers/net/wireless/marvell/mwifiex/sdio.c
index f039d6f19183a..e40ca40418b30 100644
--- a/drivers/net/wireless/marvell/mwifiex/sdio.c
+++ b/drivers/net/wireless/marvell/mwifiex/sdio.c
@@ -2795,6 +2795,11 @@ static void mwifiex_sdio_fw_dump(struct mwifiex_adapter *adapter)
 		mwifiex_dbg(adapter, ERROR, "SDIO read memory length err\n");
 		goto done;
 	}
+	if (dump_num > ARRAY_SIZE(mem_type_mapping_tbl)) {
+		mwifiex_dbg(adapter, ERROR,
+			    "Invalid fw dump num: %d\n", dump_num);
+		goto done;
+	}
 
 	/* Read the length of every memory which will dump */
 	for (idx = 0; idx < dump_num; idx++) {
-- 
2.51.0

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] wifi: mwifiex: bound SDIO fw dump count by memory table size
  2026-09-04 12:57 [PATCH] wifi: mwifiex: bound SDIO fw dump count by memory table size Tianchu Chen
@ 2026-09-11  7:18 ` Tianchu Chen
  0 siblings, 0 replies; 2+ messages in thread
From: Tianchu Chen @ 2026-09-11  7:18 UTC (permalink / raw)
  To: briannorris, francesco; +Cc: linux-wireless

September 4, 2026 at 8:57 PM, "Tianchu Chen" <tianchu.chen@linux.dev mailto:tianchu.chen@linux.dev?to=%22Tianchu%20Chen%22%20%3Ctianchu.chen%40linux.dev%3E > wrote:


> 
> From: Tianchu Chen <flynnnchen@tencent.com>
> 
> mwifiex_sdio_fw_dump() reads the number of memory regions (dump_num) from 
> a device register and uses it to index the static 15-entry
> mem_type_mapping_tbl[] without any bounds check. A bogus device can
> report a dump_num larger than the table, making each loop iteration
> store a vmalloc pointer and a device-controlled size past the end
> of the table into adjacent .data (up to ~5.7KB when dump_num is 255).
> 
> The dump path runs after command timeouts or firmware crashes, so a
> bogus device can first force an error to trigger the dump and
> then report a bogus dump_num.
> 
> Aborting the dump only loses the firmware snapshot; the card reset 
> that follows is unaffected, so error recovery still completes.
> 
> Discovered by Atuin - Automated Vulnerability Discovery Engine.
> 
> Fixes: 54881c6b37c8d ("mwifiex: add firmware dump feature for SDIO")
> Cc: stable@vger.kernel.org
> Assisted-by: LLM
> Signed-off-by: Tianchu Chen <flynnnchen@tencent.com>
> ---
>  drivers/net/wireless/marvell/mwifiex/sdio.c | 5 +++++
>  1 file changed, 5 insertions(+)
> 
> diff --git a/drivers/net/wireless/marvell/mwifiex/sdio.c b/drivers/net/wireless/marvell/mwifiex/sdio.c
> index f039d6f19183a..e40ca40418b30 100644
> --- a/drivers/net/wireless/marvell/mwifiex/sdio.c
> +++ b/drivers/net/wireless/marvell/mwifiex/sdio.c
> @@ -2795,6 +2795,11 @@ static void mwifiex_sdio_fw_dump(struct mwifiex_adapter *adapter)
>  mwifiex_dbg(adapter, ERROR, "SDIO read memory length err\n");
>  goto done;
>  }
> + if (dump_num > ARRAY_SIZE(mem_type_mapping_tbl)) {
> + mwifiex_dbg(adapter, ERROR,
> + "Invalid fw dump num: %d\n", dump_num);
> + goto done;
> + }
>  
>  /* Read the length of every memory which will dump */
>  for (idx = 0; idx < dump_num; idx++) {
> -- 
> 2.51.0
>

Hi,

I noticed that this patch is marked as "Changes Requested" in
Wireless Patchwork, but I haven't received any review comments.

Could you please point me to the requested changes or the relevant
review message? I am happy to send a v2 once I know what should be improved.

Best regards,

Tianchu

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2026-09-11  7:18 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-09-04 12:57 [PATCH] wifi: mwifiex: bound SDIO fw dump count by memory table size Tianchu Chen
2026-09-11  7:18 ` Tianchu Chen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox