mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH wireless v2] wifi: wfx: validate MIB read length before copying to caller
@ 2026-09-12 13:47 Aamir Ahmed
  2026-09-16 17:37 ` Jérôme Pouiller
  0 siblings, 1 reply; 3+ messages in thread
From: Aamir Ahmed @ 2026-09-12 13:47 UTC (permalink / raw)
  To: jerome.pouiller, linux-wireless; +Cc: linux-kernel

wfx_hif_read_mib() copies reply->length bytes from the firmware
response into the caller-provided buffer without checking that
reply->length does not exceed val_len. A firmware response with
a length field larger than expected overruns the caller buffer and
reads past the end of the reply allocation.

Replace the dead -ENOMEM check with an active validation that
reply->length fits within val_len before the memcpy.

Fixes: f95a29d40782 ("staging: wfx: add HIF commands helpers")
Assisted-by: LLM
Signed-off-by: Aamir Ahmed <elb12345@hotmail.co.uk>
---
v2:
  - return -EIO rather than -EINVAL, for consistency with the
    confirmation-mismatch path above (Jérôme)
  - add the Assisted-by: LLM tag (Jérôme)
  - Cc LKML (Jérôme)
  - correct the Fixes: tag; wfx_hif_read_mib() came in with
    f95a29d40782, not the TX-frames commit v1 pointed at
  - say what is actually overrun; v1 called it a heap overflow, but
    the caller buffer is overrun and the reply allocation over-read
  - name the target tree in the subject
v1: https://lore.kernel.org/linux-wireless/AS8P251MB00014841C19595C74C545C80C8B22@AS8P251MB0001.EURP251.PROD.OUTLOOK.COM/

Compile-tested only; I have no WFxxx hardware.

 drivers/net/wireless/silabs/wfx/hif_tx.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/drivers/net/wireless/silabs/wfx/hif_tx.c b/drivers/net/wireless/silabs/wfx/hif_tx.c
index 9f403d275cb1..9efb108bd877 100644
--- a/drivers/net/wireless/silabs/wfx/hif_tx.c
+++ b/drivers/net/wireless/silabs/wfx/hif_tx.c
@@ -207,9 +207,11 @@ int wfx_hif_read_mib(struct wfx_dev *wdev, int vif_id, u16 mib_id, void *val, si
 		dev_warn(wdev->dev, "%s: confirmation mismatch request\n", __func__);
 		ret = -EIO;
 	}
-	if (ret == -ENOMEM)
+	if (!ret && le16_to_cpu(reply->length) > val_len) {
 		dev_err(wdev->dev, "buffer is too small to receive %s (%zu < %d)\n",
 			wfx_get_mib_name(mib_id), val_len, le16_to_cpu(reply->length));
+		ret = -EIO;
+	}
 	if (!ret)
 		memcpy(val, &reply->mib_data, le16_to_cpu(reply->length));
 	else

base-commit: df2908090cda368b01ff43709f51890076c56157
-- 
2.55.0


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

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

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-09-12 13:47 [PATCH wireless v2] wifi: wfx: validate MIB read length before copying to caller Aamir Ahmed
2026-09-16 17:37 ` Jérôme Pouiller
2026-09-16 18:37   ` Aamir Ahmed

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

all inboxes | Powered by JetHome®