Re: [PATCH wireless v2] wifi: wfx: validate MIB read length before copying to caller

From: Jérôme Pouiller

Date: Wed Sep 16 2026 - 13:52:46 EST


On Saturday 12 September 2026 06:47:55 Pacific Daylight Time Aamir Ahmed wrote:
> 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

Usually, you have to specify the name of the tool and the model used. eg.:

Assisted-by: Codex:GPT-5

[...]
> 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

Was this line generated by git-send-email?

--
Jérôme Pouiller