Linux wireless drivers development
 help / color / mirror / Atom feed
From: Sasha Levin <sashal@kernel.org>
To: patches@lists.linux.dev, stable@vger.kernel.org
Cc: Emmanuel Grumbach <emmanuel.grumbach@intel.com>,
	Miri Korenblit <miriam.rachel.korenblit@intel.com>,
	Sasha Levin <sashal@kernel.org>,
	linux-wireless@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: [PATCH AUTOSEL 6.18] wifi: iwlwifi: mld: validate txq_id in TX response handler
Date: Mon, 31 Aug 2026 09:29:45 -0400	[thread overview]
Message-ID: <20260831133314.4125787-557-sashal@kernel.org> (raw)
In-Reply-To: <20260831133314.4125787-1-sashal@kernel.org>

From: Emmanuel Grumbach <emmanuel.grumbach@intel.com>

[ Upstream commit e66ddfd94b829b8ecaaac932d9487fb4de6d267c ]

Validate txq_id from TX response notification before passing to
iwl_trans_reclaim(). Other reclaim paths in this file perform this
check to prevent out-of-bounds access on malformed notifications.

Assisted-by: GitHubCopilot:claude-haiku-4.5
Signed-off-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
Signed-off-by: Miri Korenblit <miriam.rachel.korenblit@intel.com>
Link: https://patch.msgid.link/20260715215523.b938c2dcf08d.I8a88ec359e229f1c41ac9c49fd9ce28a2b62b274@changeid
Signed-off-by: Sasha Levin <sashal@kernel.org>
---

LLM Generated explanations, may be completely bogus:

# Stable Backport Analysis: `wifi: iwlwifi: mld: validate txq_id in TX
response handler`

**Local tree:** `v6.18.44-2-g1b9e1abadee04` (Makefile: 6.18.44)

---

## PHASE 1: COMMIT MESSAGE FORENSICS

### Step 1.1: Subject line
**Record:** `[wifi: iwlwifi: mld]` `[validate]` — Add bounds validation
for `txq_id` in the MLD TX response notification handler before calling
`iwl_trans_reclaim()`.

### Step 1.2: Tags
**Record:**
- **Fixes:** — none
- **Reported-by:** — none
- **Tested-by:** — none
- **Reviewed-by:** — none on patch 1 (Johannes Berg reviewed other
  patches in the series)
- **Acked-by:** — none
- **Link:** `https://patch.msgid.link/20260715215523.b938c2dcf08d...`
  (blocked by bot protection; content recovered from local mbox)
- **Cc: stable:** — none (expected for manual review)
- **Signed-off-by:** Emmanuel Grumbach, Miri Korenblit (ignore pipeline
  SOBs)
- **Assisted-by:** GitHubCopilot:claude-haiku-4.5

Notable: no syzbot/user report, but the commit explicitly describes an
OOB access on malformed firmware notifications.

### Step 1.3: Body analysis
**Record:**
- **Bug:** `txq_id` from a TX response notification is passed to
  `iwl_trans_reclaim()` without validation.
- **Symptom:** Out-of-bounds access when firmware sends a malformed
  notification with an invalid queue ID.
- **Root cause:** Inconsistent validation — other reclaim paths in the
  same file already check `txq_id >= ARRAY_SIZE(mld->fw_id_to_txq)`.
- **Version info:** none stated.

### Step 1.4: Hidden bug fix?
**Record:** Not disguised — this is an explicit defensive bounds-check
bug fix, consistent with other `IWL_FW_CHECK` validations in iwlwifi MLD
code.

---

## PHASE 2: DIFF ANALYSIS

### Step 2.1: Inventory
**Record:**
- **File:** `drivers/net/wireless/intel/iwlwifi/mld/tx.c` (+4 lines)
- **Function:** `iwl_mld_handle_tx_resp_notif()`
- **Scope:** Single-file, surgical fix

### Step 2.2: Code flow change
**Record:**
- **Before:** After parsing `ssn`, immediately calls
  `iwl_trans_reclaim(mld->trans, txq_id, ssn, &skbs, false)`.
- **After:** Validates `txq_id < ARRAY_SIZE(mld->fw_id_to_txq)` via
  `IWL_FW_CHECK()`; returns early on failure.
- **Path affected:** Firmware TX response notification handler (normal
  TX completion path).

### Step 2.3: Bug mechanism
**Record:** **Buffer overflow / out-of-bounds access.** `txq_id` comes
from `le16_to_cpu(tx_resp->tx_queue)` (range 0–65535).
`iwl_pcie_reclaim()` indexes `trans_pcie->txqs.txq[txq_id]` with no
bounds check — array size is `IWL_MAX_TVQM_QUEUES` (512). Values ≥ 512
cause OOB array access before `WARN_ON(!txq)` can help.

### Step 2.4: Fix quality
**Record:**
- **Quality:** High — identical pattern already used at lines 1283–1286
  and 1389–1392 in the same file.
- **Regression risk:** Very low — only rejects already-invalid queue
  IDs.
- **Red flags:** None.

---

## PHASE 3: GIT HISTORY INVESTIGATION

### Step 3.1: Blame
**Record:** Lines around the missing check blame to `5d324e5159d9e`
(v6.18 merge point in this tree). The handler and missing validation
have been present since MLD `tx.c` landed in v6.18.

### Step 3.2: Fixes: tag
**Record:** N/A — no `Fixes:` tag.

### Step 3.3: Related file history
**Record:**
- `Invalid txq id` validation exists in flush and compressed-BA handlers
  since MLD `tx.c` was introduced.
- `iwl_mld_handle_tx_resp_notif()` was the inconsistent outlier.
- Part of `[PATCH 1/15]` iwlwifi fixes series (2026-07-15); patch 1 is
  standalone.

### Step 3.4: Author context
**Record:** Emmanuel Grumbach (Intel iwlwifi maintainer). Miri Korenblit
(iwlwifi maintainer) signed off. Similar MLD validation fixes already
backported to this tree (e.g. `1de92789ce31e` sta_mask validation).

### Step 3.5: Dependencies
**Record:** None. Self-contained 4-line addition; applies cleanly to
current HEAD (verified with `git apply --check`).

---

## PHASE 4: MAILING LIST AND EXTERNAL RESEARCH

### Step 4.1: Patch discussion
**Record:**
- `b4 dig -c 2df6643a5aa80`: no match (commit not in local tree).
- Local mbox
  `20260715_miriam_rachel_korenblit_wifi_iwlwifi_fixes_07_15_2026.mbx`:
  patch 1/15, standalone.
- No stable nomination in patch 1; no NAKs found.
- Link URL blocked by Anubis anti-bot page.

### Step 4.2: Reviewers
**Record:** Patch 1 has no `Reviewed-by`. Johannes Berg reviewed other
patches in the series.

### Step 4.3: Bug report
**Record:** No external bug report, syzbot, or user Reported-by. Bug
identified by code inspection (Copilot-assisted).

### Step 4.4: Series context
**Record:** Patch 1/15 is independent. Other patches in the series are
unrelated (NVM channels, mvm fixes, etc.).

### Step 4.5: Stable list history
**Record:** Not searched on lore (patch not yet merged). Similar iwlwifi
MLD validation fixes have been backported to this tree with `Cc:
stable@vger.kernel.org`.

---

## PHASE 5: CODE SEMANTIC ANALYSIS

### Step 5.1: Key functions
**Record:** `iwl_mld_handle_tx_resp_notif()`, `iwl_trans_reclaim()`,
`iwl_pcie_reclaim()`.

### Step 5.2: Callers
**Record:** Registered in `iwl_mld_rx_handlers[]` as
`RX_HANDLER_NO_OBJECT(LEGACY_GROUP, TX_CMD, tx_resp_notif,
RX_HANDLER_SYNC)` in `mld/notif.c`. Invoked synchronously on every TX
completion notification from firmware.

### Step 5.3: Callees
**Record:** `iwl_trans_reclaim()` → `iwl_pcie_reclaim()` →
`trans_pcie->txqs.txq[txq_id]` (unchecked index).

### Step 5.4: Reachability
**Record:** Hot path — every transmitted frame gets a TX response
notification on MLD-capable Intel WiFi hardware. Malformed notifications
can occur during firmware errors/corruption (the scenario `IWL_FW_CHECK`
is designed for).

### Step 5.5: Similar patterns
**Record:** Same validation in:
- `iwl_mld_flush_link_sta_txqs()` (lines 1283–1286)
- `iwl_mld_handle_compressed_ba_notif()` (lines 1389–1392)

`iwl_pcie` TX path uses `WARN_ONCE(txq_id >= IWL_MAX_TVQM_QUEUES, ...)`
in `tx-gen2.c` line 727.

---

## PHASE 6: CROSS-REFERENCING AGAINST LOCAL TREE

### Step 6.1: Buggy code exists?
**Record:** **Yes.** Current HEAD and `v6.18` tag both lack the
validation in `iwl_mld_handle_tx_resp_notif()` at line 1109. MLD `tx.c`
exists in v6.18 (`git ls-tree v6.18` confirmed).

### Step 6.2: Backport complications
**Record:** Clean apply — `git apply --check` succeeded with zero
conflicts.

### Step 6.3: Related fixes already present?
**Record:** The sibling-path validations (flush, compressed BA) are
present. This specific gap in the TX response handler is **not** fixed
yet.

---

## PHASE 7: SUBSYSTEM AND MAINTAINER CONTEXT

### Step 7.1: Subsystem criticality
**Record:** `drivers/net/wireless/intel/iwlwifi/mld/` — **IMPORTANT**
(Intel WiFi driver, common laptop hardware; MLD path for newer WiFi 7 /
MLO devices).

### Step 7.2: Subsystem activity
**Record:** Actively maintained; multiple MLD fixes already in this
6.18.y tree.

---

## PHASE 8: IMPACT AND RISK ASSESSMENT

### Step 8.1: Who is affected
**Record:** Users with Intel WiFi hardware using the MLD opmode
(`iwlmld`) on kernel 6.18+. Not universal, but affects a growing
hardware population.

### Step 8.2: Trigger conditions
**Record:** Firmware sends TX response with `txq_id >= 512`. Most likely
during firmware malfunction, corruption, or error recovery — the exact
scenario iwlwifi guards against with `IWL_FW_CHECK`. Not easily user-
triggerable, but reachable on every TX completion notification.

### Step 8.3: Failure mode severity
**Record:** OOB read of `txq[txq_id]` → possible NULL deref or use of
garbage pointer in `iwl_pcie_reclaim()` → **kernel oops**. Severity:
**HIGH**.

### Step 8.4: Risk-benefit
**Record:**
- **Benefit:** HIGH — prevents potential crash on malformed firmware
  notification.
- **Risk:** VERY LOW — 4 lines, proven pattern, early return only for
  invalid IDs.
- **Ratio:** Strongly favors backport.

---

## PHASE 9: FINAL SYNTHESIS

### Step 9.1: Evidence summary

**FOR backport:**
- Real OOB bug with crash potential
- Small, surgical, obviously correct fix
- Matches existing validation in the same file
- Bug present since v6.18 MLD code landed
- Applies cleanly to 6.18.44
- iwlwifi maintainers authored/signed
- Similar MLD validation fixes already backported to this tree

**AGAINST backport:**
- No user report or syzbot reproduction
- Requires malformed firmware notification (edge case)
- MLD-only (not all iwlwifi users)
- No explicit `Cc: stable` or `Reviewed-by` on this specific patch

**Unresolved:** None that affect the decision.

### Step 9.2: Stable rules checklist
1. Obviously correct and tested? **PASS** — mirrors two existing checks
   in the same file; no Tested-by but pattern is proven.
2. Fixes a real bug? **PASS** — missing bounds check before unchecked
   array index.
3. Important issue? **PASS** — OOB access → potential kernel crash
   (HIGH).
4. Small and contained? **PASS** — 4 lines, one function.
5. No new features or APIs? **PASS** — defensive validation only.
6. Can apply to local tree? **PASS** — verified clean apply.

### Step 9.3: Exception categories
**Record:** N/A — standard bug fix, not a device-ID/quirk/build/doc
exception.

### Step 9.4: Decision rationale

This commit closes a validation gap in `iwl_mld_handle_tx_resp_notif()`
that sibling reclaim handlers in the same file already cover. Without
it, a malformed firmware TX response with `txq_id >= 512` can cause an
out-of-bounds access in `iwl_pcie_reclaim()` before any safety check
runs. The fix is minimal, follows an established iwlwifi pattern,
applies cleanly to the 6.18.44 tree where the bug exists, and prevents a
potential kernel crash on hardware using the MLD driver path.

---

## Verification

- [Phase 1] Parsed subject, tags, body from commit message and local
  mbox
- [Phase 1] Link URL fetch blocked; recovered patch from
  `20260715_miriam_rachel_korenblit_wifi_iwlwifi_fixes_07_15_2026.mbx`
- [Phase 2] Read `iwl_mld_handle_tx_resp_notif()` at lines 1073–1149 —
  missing validation confirmed
- [Phase 2] Read sibling validations at lines 1283–1286 and 1389–1392
- [Phase 2] Read `iwl_pcie_reclaim()` at `pcie/gen1_2/tx.c:2339` —
  unchecked `txq[txq_id]` access
- [Phase 2] Confirmed `IWL_MAX_TVQM_QUEUES = 512` in `iwl-trans.h:269`
- [Phase 2] Confirmed `fw_id_to_txq[IWL_MAX_TVQM_QUEUES]` in
  `mld/mld.h:200`
- [Phase 3] `git blame -L 1103,1110` — code from v6.18 merge
- [Phase 3] `git show v6.18:.../mld/tx.c` — bug present in v6.18 release
- [Phase 3] `git log -S 'Invalid txq id'` — validation in flush/BA paths
  since MLD introduction
- [Phase 4] `b4 dig -c 2df6643a5aa80` — no result (commit not in tree)
- [Phase 4] Read mbox patch 1/15 — standalone, 4 lines
- [Phase 5] `grep iwl_mld_handle_tx_resp_notif` — registered in
  `mld/notif.c:399` as TX_CMD handler
- [Phase 5] Read `IWL_FW_CHECK` macro in `fw/dbg.h:334`
- [Phase 6] `git describe HEAD` → v6.18.44; Makefile confirms 6.18.44
- [Phase 6] `git ls-tree v6.18 drivers/.../mld/tx.c` — MLD code in v6.18
- [Phase 6] `git apply --check` — patch applies cleanly
- [Phase 6] Compared with backported fix `1de92789ce31e` (similar MLD
  validation pattern)
- [Phase 8] Assessed failure mode: OOB → crash, severity HIGH

**YES**

 drivers/net/wireless/intel/iwlwifi/mld/tx.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/drivers/net/wireless/intel/iwlwifi/mld/tx.c b/drivers/net/wireless/intel/iwlwifi/mld/tx.c
index a60bfb1a2ab22..130f3a99de96f 100644
--- a/drivers/net/wireless/intel/iwlwifi/mld/tx.c
+++ b/drivers/net/wireless/intel/iwlwifi/mld/tx.c
@@ -1103,6 +1103,10 @@ void iwl_mld_handle_tx_resp_notif(struct iwl_mld *mld,
 	ssn = le32_to_cpup((__le32 *)agg_status +
 			   tx_resp->frame_count) & 0xFFFF;
 
+	if (IWL_FW_CHECK(mld, txq_id >= ARRAY_SIZE(mld->fw_id_to_txq),
+			 "Invalid txq id %d\n", txq_id))
+		return;
+
 	__skb_queue_head_init(&skbs);
 
 	/* we can free until ssn % q.n_bd not inclusive */
-- 
2.53.0


  parent reply	other threads:[~2026-08-31 13:50 UTC|newest]

Thread overview: 78+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-08-31 13:20 [PATCH AUTOSEL 6.18-5.10] wifi: cfg80211: validate IEs in cfg80211_wext_siwgenie() Sasha Levin
2026-08-31 13:20 ` [PATCH AUTOSEL 6.18-6.12] wifi: mt76: mt7925: handle 320MHz bandwidth in RXV and TXS Sasha Levin
2026-08-31 13:20 ` [PATCH AUTOSEL 6.18-6.12] wifi: iwlwifi: mvm: parse beacon notif per layout Sasha Levin
2026-08-31 13:21 ` [PATCH AUTOSEL 6.18] wifi: iwlwifi: mvm: fix P2P-Device binding handling Sasha Levin
2026-08-31 13:21 ` [PATCH AUTOSEL 6.18] wifi: nl80211: check link is beaconing for color change Sasha Levin
2026-08-31 13:21 ` [PATCH AUTOSEL 6.18-5.10] wifi: nl80211: Increase ie_len size to prevent truncated IEs in new peer notifications Sasha Levin
2026-08-31 13:21 ` [PATCH AUTOSEL 6.18-6.12] wifi: iwlwifi: pcie: null RX pointers after free Sasha Levin
2026-08-31 13:21 ` [PATCH AUTOSEL 6.18] wifi: ath12k: Prevent incorrect vif chanctx switch when handling multi-radio contexts Sasha Levin
2026-08-31 13:21 ` [PATCH AUTOSEL 6.18-5.15] wifi: iwlwifi: mvm: fix sched scan IE sizing Sasha Levin
2026-08-31 13:21 ` [PATCH AUTOSEL 6.18] wifi: iwlwifi: add support for AX231 Sasha Levin
2026-08-31 13:22 ` [PATCH AUTOSEL 6.18] wifi: iwlwifi: pcie: add two LNL PCI IDs Sasha Levin
2026-08-31 13:22 ` [PATCH AUTOSEL 6.18] wifi: iwlwifi: mld: fix an off-by-1 boundary check Sasha Levin
2026-08-31 13:22 ` [PATCH AUTOSEL 6.18] wifi: iwlwifi: adapt ND match notif sizing to fixed matches array Sasha Levin
2026-08-31 13:22 ` [PATCH AUTOSEL 6.18-6.12] wifi: iwlwifi: mvm: validate mac_link_id in session protect notif Sasha Levin
2026-08-31 13:22 ` [PATCH AUTOSEL 6.18-6.1] wifi: nl80211: reject beacons with bad HE operation Sasha Levin
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18-6.1] wifi: iwlwifi: acpi: validate WGDS table revision index Sasha Levin
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18-6.1] wifi: rtw89: pci: enable LTR based on pcie control register Sasha Levin
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18] wifi: mac80211: unify link STA removal in vif link removal Sasha Levin
2026-08-31 13:24 ` [PATCH AUTOSEL 6.18-6.6] wifi: iwlwifi: mvm: validate sta_id in BA window status notif Sasha Levin
2026-08-31 13:24 ` [PATCH AUTOSEL 6.18] wifi: mac80211: avoid out-of-bounds access in monitor Sasha Levin
2026-08-31 13:24 ` [PATCH AUTOSEL 6.18] wifi: iwlwifi: fw: validate SMEM response size Sasha Levin
2026-08-31 13:24 ` [PATCH AUTOSEL 6.18] wifi: iwlwifi: mld: purge async notifications upon nic error Sasha Levin
2026-08-31 13:24 ` [PATCH AUTOSEL 6.18] wifi: mac80211: use chandef in ieee80211_get_sta_bw() Sasha Levin
2026-08-31 13:24 ` [PATCH AUTOSEL 6.18-5.10] wifi: iwlwifi: mvm: fix an off-by-1 boundary check Sasha Levin
2026-08-31 13:24 ` [PATCH AUTOSEL 6.18-6.12] wifi: iwlwifi: mvm: validate TX_CMD response layout Sasha Levin
2026-08-31 13:25 ` [PATCH AUTOSEL 6.18] wifi: iwlwifi: mld: honor BSS_CHANGED_BEACON_ENABLED Sasha Levin
2026-08-31 13:25 ` [PATCH AUTOSEL 6.18-5.10] wifi: ralink: RT2X00: init EEPROM properly Sasha Levin
2026-08-31 13:25 ` [PATCH AUTOSEL 6.18-6.1] wifi: rtw88: Add NULL check for chip->edcca_th in rtw_fw_adaptivity_result() Sasha Levin
2026-08-31 13:25 ` [PATCH AUTOSEL 6.18-5.15] wifi: cfg80211: validate rx/tx MLME callback frame lengths before access Sasha Levin
2026-08-31 13:25 ` [PATCH AUTOSEL 6.18-5.10] wifi: mt76: transform aspm_conf for pci_disable_link_state Sasha Levin
2026-08-31 13:25 ` [PATCH AUTOSEL 6.18-6.6] wifi: iwlwifi: mvm: fix a possible underflow Sasha Levin
2026-08-31 13:25 ` [PATCH AUTOSEL 6.18-6.12] wifi: mt76: mt7925: add Netgear A8500 USB device ID Sasha Levin
2026-08-31 13:25 ` [PATCH AUTOSEL 6.18-5.10] wifi: rsi: avoid reading TKIP MIC keys for non-TKIP ciphers Sasha Levin
2026-08-31 13:25 ` [PATCH AUTOSEL 6.18-5.10] wifi: mac80211: validate deauth frame length before reason access Sasha Levin
2026-08-31 13:25 ` [PATCH AUTOSEL 6.18-5.10] wifi: mwifiex: replace one-element arrays with flexible array members Sasha Levin
2026-08-31 13:25 ` [PATCH AUTOSEL 6.18] wifi: iwlwifi: mvm: validate sta_id in TLC notif Sasha Levin
2026-08-31 13:25 ` [PATCH AUTOSEL 6.18-6.12] wifi: mt76: mt7925: add 320MHz bandwidth to bss_rlm_tlv Sasha Levin
2026-08-31 13:26 ` [PATCH AUTOSEL 6.18-6.12] wifi: mt76: mt7925: populate EHT 320MHz MCS map in sta_rec Sasha Levin
2026-08-31 13:26 ` [PATCH AUTOSEL 6.18] wifi: iwlwifi: mld: disallow puncturing in US/CA for WH Sasha Levin
2026-08-31 13:26 ` [PATCH AUTOSEL 6.18] wifi: iwlwifi: mld: don't WARN on WoWLAN suspend w/o netdetect Sasha Levin
2026-08-31 13:26 ` [PATCH AUTOSEL 6.18-6.12] wifi: cfg80211: reject duplicate wiphy cipher suite entries Sasha Levin
2026-09-03  8:09   ` Yuqi Xu
2026-08-31 13:26 ` [PATCH AUTOSEL 6.18] wifi: iwlwifi: validate SEC_RT TLV minimum size Sasha Levin
2026-08-31 13:26 ` [PATCH AUTOSEL 6.18-5.10] wifi: mac80211: always allow transmitting null-data on TXQs Sasha Levin
2026-08-31 13:26 ` [PATCH AUTOSEL 6.18] wifi: iwlwifi: mld: validate reorder BAID Sasha Levin
2026-08-31 13:26 ` [PATCH AUTOSEL 6.18-5.10] wifi: mac80211_hwsim: reject undersized HWSIM_ATTR_TX_INFO Sasha Levin
2026-08-31 13:27 ` [PATCH AUTOSEL 6.18] wifi: rtw89: disable HTC field in AP mode Sasha Levin
2026-08-31 13:27 ` [PATCH AUTOSEL 6.18-6.12] wifi: mac80211: explicitly disable FTM responder on AP stop Sasha Levin
2026-08-31 13:27 ` [PATCH AUTOSEL 6.18-6.6] wifi: iwlwifi: mvm: add a check on the tid coming from the firmware Sasha Levin
2026-08-31 13:27 ` [PATCH AUTOSEL 6.18] wifi: rtw89: suspend DIG when remain-on-channel Sasha Levin
2026-08-31 13:27 ` [PATCH AUTOSEL 6.18] wifi: iwlwifi: mld: clear tzone on fail Sasha Levin
2026-08-31 13:27 ` [PATCH AUTOSEL 6.18] wifi: iwlwifi: mvm: validate MCC header before n_channels Sasha Levin
2026-08-31 13:27 ` [PATCH AUTOSEL 6.18] wifi: iwlwifi: fix the access to CNVR TOP registers Sasha Levin
2026-08-31 13:27 ` [PATCH AUTOSEL 6.18-6.12] wifi: mac80211: ibss: wait for in-flight TX on disconnect Sasha Levin
2026-08-31 13:28 ` [PATCH AUTOSEL 6.18] wifi: iwlwifi: pcie: fix ACPI DSM check Sasha Levin
2026-08-31 13:28 ` [PATCH AUTOSEL 6.18] wifi: mac80211: clarify beacon parsing with MBSSID/EMA Sasha Levin
2026-08-31 13:28 ` [PATCH AUTOSEL 6.18] wifi: cfg80211: harden cfg80211_defragment_element() Sasha Levin
2026-08-31 13:28 ` [PATCH AUTOSEL 6.18] wifi: iwlwifi: mld: call iwl_mld_free_ap_early_key() for AP only Sasha Levin
2026-08-31 13:28 ` [PATCH AUTOSEL 6.18-6.6] wifi: rtw89: phy: check length before parsing PHY status IE Sasha Levin
2026-08-31 13:28 ` [PATCH AUTOSEL 6.18-5.10] wifi: rsi: validate beacon length before fixed buffer copy Sasha Levin
2026-08-31 13:28 ` [PATCH AUTOSEL 6.18-5.10] wifi: iwlwifi: bound aligned TLV advance in FW parser Sasha Levin
2026-08-31 13:28 ` [PATCH AUTOSEL 6.18-6.12] wifi: rtw89: disable CSI STBC for VHT 160MHz Sasha Levin
2026-08-31 13:28 ` [PATCH AUTOSEL 6.18] wifi: iwlwifi: Transition to basic uAPSD with MAC_PM_POWER_TABLE API VER_3 Sasha Levin
2026-08-31 13:29 ` [PATCH AUTOSEL 6.18] wifi: iwlwifi: mvm: d3: validate D3 resume notification payloads Sasha Levin
2026-08-31 13:29 ` [PATCH AUTOSEL 6.18] wifi: rtw89: mlo: rearrange MLSR link decision flow Sasha Levin
2026-08-31 13:29 ` [PATCH AUTOSEL 6.18-6.1] wifi: cfg80211: validate assoc response length before status and IE access Sasha Levin
2026-08-31 13:29 ` Sasha Levin [this message]
2026-08-31 13:29 ` [PATCH AUTOSEL 6.18-5.10] wifi: libertas: reject short monitor TX frames Sasha Levin
2026-08-31 13:30 ` [PATCH AUTOSEL 6.18-5.10] wifi: mac80211: don't call ieee80211_handle_reconfig_failure when not needed Sasha Levin
2026-08-31 13:30 ` [PATCH AUTOSEL 6.18] wifi: rtw89: 8851bu: add Mercusys MA60XNB (2c4e:0128) Sasha Levin
2026-08-31 13:30 ` [PATCH AUTOSEL 6.18] wifi: iwlwifi: mvm: verify scan id reported by firmware Sasha Levin
2026-08-31 13:30 ` [PATCH AUTOSEL 6.18-5.10] wifi: libipw: fix key index receive bound checks Sasha Levin
2026-08-31 13:30 ` [PATCH AUTOSEL 6.18-6.1] wifi: ath11k: fix invalid data access in ath11k_dp_rx_h_undecap_nwifi Sasha Levin
2026-08-31 13:30 ` [PATCH AUTOSEL 6.18-6.6] wifi: iwlwifi: mvm: fix out-of-bounds tid_data access in BA notif Sasha Levin
2026-08-31 13:31 ` [PATCH AUTOSEL 6.18] wifi: mt76: route TDLS-peer frames as 3-addr non-DS in HW encap Sasha Levin
2026-08-31 13:31 ` [PATCH AUTOSEL 6.18] wifi: iwlwifi: mld: don't parse a notif before checking its length Sasha Levin
2026-08-31 13:31 ` [PATCH AUTOSEL 6.18] wifi: iwlwifi: mld: keep healthy link on EMLSR missed beacon exit Sasha Levin
2026-08-31 13:31 ` [PATCH AUTOSEL 6.18] wifi: ath9k: Obtain system GPIOS from descriptors Sasha Levin

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=20260831133314.4125787-557-sashal@kernel.org \
    --to=sashal@kernel.org \
    --cc=emmanuel.grumbach@intel.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-wireless@vger.kernel.org \
    --cc=miriam.rachel.korenblit@intel.com \
    --cc=patches@lists.linux.dev \
    --cc=stable@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