From: Rivaldi Hormat <rivaldihormat@gmail.com>
To: linux-wireless@vger.kernel.org
Cc: kvalo@kernel.org, ath10k@lists.infradead.org,
Rivaldi Hormat <rivaldihormat@gmail.com>
Subject: [PATCH 2/2] wifi: ath10k: Add missing validation in ath10k_htt_rx_proc_rx_frag_ind_hl
Date: Fri, 11 Sep 2026 07:23:17 +0000 [thread overview]
Message-ID: <20260911072318.5232-2-rivaldihormat@gmail.com> (raw)
In-Reply-To: <20260911072318.5232-1-rivaldihormat@gmail.com>
ath10k_htt_rx_proc_rx_frag_ind_hl() doesn't handle undersized packets.
This can lead to an integer underflow and an out-of-bounds read.
Fix this by adding the missing validation.
Signed-off-by: Rivaldi Hormat <rivaldihormat@gmail.com>
---
drivers/net/wireless/ath/ath10k/htt_rx.c | 30 ++++++++++++++++++++++++
1 file changed, 30 insertions(+)
diff --git a/drivers/net/wireless/ath/ath10k/htt_rx.c b/drivers/net/wireless/ath/ath10k/htt_rx.c
index ab2d373b4..4fabb9264 100644
--- a/drivers/net/wireless/ath/ath10k/htt_rx.c
+++ b/drivers/net/wireless/ath/ath10k/htt_rx.c
@@ -2775,6 +2775,13 @@ static bool ath10k_htt_rx_proc_rx_frag_ind_hl(struct ath10k_htt *htt,
struct htt_resp *resp;
size_t tot_hdr_len;
+
+ /* FIX: Validate skb length before skb_pull */
+ if (skb->len < HTT_RX_FRAG_IND_INFO0_HEADER_LEN) {
+ ath10k_warn(ar, "Invalid skb len %d for RX_FRAG_IND\n", skb->len);
+ return false;
+ }
+
resp = (struct htt_resp *)(skb->data + HTT_RX_FRAG_IND_INFO0_HEADER_LEN);
skb_pull(skb, HTT_RX_FRAG_IND_INFO0_HEADER_LEN);
skb_trim(skb, skb->len - FCS_LEN);
@@ -2792,6 +2799,13 @@ static bool ath10k_htt_rx_proc_rx_frag_ind_hl(struct ath10k_htt *htt,
num_mpdu_ranges = MS(__le32_to_cpu(rx_hl->hdr.info1),
HTT_RX_INDICATION_INFO1_NUM_MPDU_RANGES);
+ /* FIX: Validate num_mpdu_ranges */
+ if (num_mpdu_ranges > 1) {
+ ath10k_warn(ar, "Invalid num_mpdu_ranges %d\n", num_mpdu_ranges);
+ goto err;
+ }
+
+
tot_hdr_len = sizeof(struct htt_resp_hdr) +
sizeof(rx_hl->hdr) +
sizeof(rx_hl->ppdu) +
@@ -2799,10 +2813,26 @@ static bool ath10k_htt_rx_proc_rx_frag_ind_hl(struct ath10k_htt *htt,
sizeof(rx_hl->fw_desc) +
sizeof(struct htt_rx_indication_mpdu_range) * num_mpdu_ranges;
+ /* FIX: Validate tot_hdr_len against skb length */
+ if (tot_hdr_len > skb->len) {
+ ath10k_warn(ar, "Invalid tot_hdr_len %zu > skb->len %u\n",
+ tot_hdr_len, skb->len);
+ goto err;
+ }
+
+
tid = MS(rx_hl->hdr.info0, HTT_RX_INDICATION_INFO0_EXT_TID);
rx_desc = (struct htt_hl_rx_desc *)(skb->data + tot_hdr_len);
rx_desc_info = __le32_to_cpu(rx_desc->info);
+
+ /* FIX: Validate fw_desc.len against remaining skb length */
+ if (rx_hl->fw_desc.len > skb->len - tot_hdr_len) {
+ ath10k_warn(ar, "Invalid fw_desc.len %u > remaining skb len\n",
+ rx_hl->fw_desc.len);
+ goto err;
+ }
+
hdr = (struct ieee80211_hdr *)((u8 *)rx_desc + rx_hl->fw_desc.len);
if (is_multicast_ether_addr(hdr->addr1)) {
--
2.53.0
next prev parent reply other threads:[~2026-09-11 7:24 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-09-11 7:23 [PATCH 1/2] wifi: ath10k: Add missing validation in debugfs mem_value and reg_value Rivaldi Hormat
2026-09-11 7:23 ` Rivaldi Hormat [this message]
-- strict thread matches above, loose matches on Subject: below --
2026-09-10 8:06 Rivaldi Hormat
2026-09-10 8:06 ` [PATCH 2/2] wifi: ath10k: Add missing validation in ath10k_htt_rx_proc_rx_frag_ind_hl Rivaldi Hormat
2026-09-10 15:26 ` Jeff Johnson
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20260911072318.5232-2-rivaldihormat@gmail.com \
--to=rivaldihormat@gmail.com \
--cc=ath10k@lists.infradead.org \
--cc=kvalo@kernel.org \
--cc=linux-wireless@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox