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-6.12] wifi: iwlwifi: mvm: validate mac_link_id in session protect notif
Date: Mon, 31 Aug 2026 09:22:48 -0400	[thread overview]
Message-ID: <20260831133314.4125787-140-sashal@kernel.org> (raw)
In-Reply-To: <20260831133314.4125787-1-sashal@kernel.org>

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

[ Upstream commit 71245daf7d58a3c407c7e1422facce13ff6a584b ]

Check the mac_id before accessing the vif_id_to_mac array.

Assisted-by: GitHubCopilot:gpt-5.3-codex
Signed-off-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
Link: https://patch.msgid.link/20260714141909.547ea470e686.I931445ae6f37bf0e1ef6f112c811712fc48af9c9@changeid
Signed-off-by: Miri Korenblit <miriam.rachel.korenblit@intel.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---

LLM Generated explanations, may be completely bogus:

# Stable Backport Analysis: `wifi: iwlwifi: mvm: validate mac_link_id in
session protect notif`

**Local tree:** Linux **6.18.44** (`v6.18.44-1-g2736c32da98b9`,
`VERSION=6 PATCHLEVEL=18 SUBLEVEL=44`)

---

## PHASE 1: COMMIT MESSAGE FORENSICS

### Step 1.1: Subject line
**Record:** `[wifi: iwlwifi: mvm]` `[validate]` — Add bounds validation
for `mac_link_id` in the session protection firmware notification
handler before indexing `vif_id_to_mac`.

### Step 1.2: Tags
**Record:**
- **Assisted-by:** GitHubCopilot:gpt-5.3-codex
- **Signed-off-by:** Emmanuel Grumbach \<emmanuel.grumbach@intel.com\>
  (iwlwifi maintainer)
- **Link:** https://patch.msgid.link/20260714141909.547ea470e686.I931445
  ae6f37bf0e1ef6f112c811712fc48af9c9@changeid
- **Signed-off-by:** Miri Korenblit
  \<miriam.rachel.korenblit@intel.com\>
- **No** Fixes:, Reported-by:, Tested-by:, Reviewed-by:, Acked-by:, or
  Cc: stable tags
- **Notable:** Maintainer-authored; no fuzzer or user bug report cited

### Step 1.3: Body
**Record:**
- **Bug:** `mac_link_id` from firmware is used to index `vif_id_to_mac`
  without validating it first.
- **Symptom:** Not explicitly stated (no crash trace); implied mis-
  handling of invalid firmware notification.
- **Root cause (from code):** `mac_link_id` is read as a 32-bit value
  into an `int`, then passed to `iwl_mvm_rcu_dereference_vif_id()` which
  takes `u8`. Values ≥ 256 truncate modulo 256 and can map to valid
  indices 0–3, bypassing the helper’s `WARN_ON` bounds check.

### Step 1.4: Hidden bug fix?
**Record:** Yes. Despite the terse message, this is a real logic/safety
bug fix, not cosmetic cleanup. It mirrors an existing pattern in
`rxmq.c` for the same array.

---

## PHASE 2: DIFF ANALYSIS

### Step 2.1: Inventory
**Record:**
- **File:** `drivers/net/wireless/intel/iwlwifi/mvm/time-event.c` (+5
  lines)
- **Function:** `iwl_mvm_rx_session_protect_notif()`
- **Scope:** Single-file, surgical fix

### Step 2.2: Code flow change
**Record:**
- **Before:** `id = le32_to_cpu(notif->mac_link_id)` → immediate
  `iwl_mvm_rcu_dereference_vif_id(mvm, id, true)` (implicit `int` → `u8`
  truncation).
- **After:** `IWL_FW_CHECK` on full `int id` against
  `ARRAY_SIZE(mvm->vif_id_to_mac)` (4); early return if invalid; then
  existing lookup proceeds.
- **Path:** Firmware RX notification handler
  (`SESSION_PROTECTION_NOTIF`), normal runtime path during
  association/session protection.

### Step 2.3: Bug mechanism
**Record:** **Logic / bounds-check bypass via type truncation.**

`NUM_MAC_INDEX_DRIVER` = 4, so valid indices are 0–3:

```15:16:drivers/net/wireless/intel/iwlwifi/fw/api/mac.h
#define NUM_MAC_INDEX_DRIVER    MAC_INDEX_AUX
#define NUM_MAC_INDEX           (NUM_MAC_INDEX_DRIVER + 1)
```

`iwl_mvm_rcu_dereference_vif_id()` only checks the truncated `u8`:

```1384:1391:drivers/net/wireless/intel/iwlwifi/mvm/mvm.h
static inline struct ieee80211_vif *
iwl_mvm_rcu_dereference_vif_id(struct iwl_mvm *mvm, u8 vif_id, bool rcu)
{
        if (WARN_ON(vif_id >= ARRAY_SIZE(mvm->vif_id_to_mac)))
                return NULL;
```

Example: `mac_link_id = 256` → `u8` = 0 → passes check → wrong VIF at
index 0. Values 4–255 are caught; values ≥ 256 congruent to 0–3 mod 256
are not.

Downstream effects in `iwl_mvm_rx_session_protect_notif()` include
modifying the wrong interface’s `time_event_data`, calling
`iwl_mvm_te_check_disconnect()` on the wrong VIF, and corrupting P2P ROC
state.

### Step 2.4: Fix quality
**Record:** Obviously correct; matches existing driver pattern in
`rxmq.c`:

```2618:2623:drivers/net/wireless/intel/iwlwifi/mvm/rxmq.c
        /* >= means AUX MAC/link ID, no energy correction needed then */
        if (IWL_FW_CHECK(mvm, id >= ARRAY_SIZE(mvm->vif_id_to_mac),
                         "invalid link ID %d\n", id))
                return;

        vif = iwl_mvm_rcu_dereference_vif_id(mvm, id, false);
```

**Regression risk:** Very low — early return only on invalid firmware
input; no API or locking changes.

---

## PHASE 3: GIT HISTORY INVESTIGATION

### Step 3.1: Blame
**Record:** `iwl_mvm_rx_session_protect_notif()` exists at lines
953–1025 in this tree. Blame attributes lines to merge commit
`5d324e5159d9e` (shallow history for this file). Function and handler
registration in `ops.c` are present in 6.18.44.

### Step 3.2: Fixes: tag
**Record:** N/A — no Fixes: tag in commit message.

### Step 3.3: Related file history
**Record:** `git log --oneline -20 -- time-event.c` returns only the usb
merge commit (limited per-file history in this checkout). The beacon-
filter validation in `rxmq.c` at line 2619 establishes precedent for
this exact check pattern.

### Step 3.4: Author context
**Record:** Emmanuel Grumbach is iwlwifi maintainer. Miri Korenblit is
an active iwlwifi contributor. High credibility for driver correctness.

### Step 3.5: Dependencies
**Record:** Standalone; no series or prerequisite commits. Uses existing
`IWL_FW_CHECK` macro from `fw/dbg.h`. No new structures or APIs.

---

## PHASE 4: MAILING LIST AND EXTERNAL RESEARCH

### Step 4.1: Original discussion
**Record:** `b4 dig` on HEAD did not match this patch. Link URL and
lore.kernel.org blocked by Anubis bot protection — could not read
thread. **UNVERIFIED:** reviewer feedback and stable nominations.

### Step 4.2: Reviewers
**Record:** **UNVERIFIED** — `b4 dig -w` not run (no commit hash
available in this evaluation context).

### Step 4.3: Bug report
**Record:** No Reported-by or syzbot link. Bug inferred from code
analysis and driver consistency with `rxmq.c`.

### Step 4.4: Related patches
**Record:** Same validation pattern exists for beacon filter
notifications in `rxmq.c`. This commit closes a gap in `time-event.c`
where `IWL_FW_CHECK` is currently absent.

### Step 4.5: Stable list
**Record:** **UNVERIFIED** — lore stable search blocked.

---

## PHASE 5: CODE SEMANTIC ANALYSIS

### Step 5.1: Key functions
**Record:** `iwl_mvm_rx_session_protect_notif()` (modified); uses
`iwl_mvm_rcu_dereference_vif_id()`, `iwl_mvm_te_check_disconnect()`,
`iwl_mvm_te_clear_data()`, `ieee80211_ready_on_channel()` /
`ieee80211_remain_on_channel_expired()`.

### Step 5.2: Callers
**Record:** Registered in `ops.c` as RX handler for
`SESSION_PROTECTION_NOTIF` under `MAC_CONF_GROUP` — invoked on every
session-protection firmware notification for Intel MVM devices.

### Step 5.3: Callees
**Record:** RCU lookup, spinlocks on `time_event_lock`, mac80211
callbacks. Invalid ID can corrupt another interface’s session-protection
/ ROC state.

### Step 5.4: Reachability
**Record:** Triggered by iwlwifi firmware notifications during WiFi
association, session protection, and P2P ROC. Reachable during normal
WiFi use on Intel hardware (`CONFIG_IWLMVM`).

### Step 5.5: Similar patterns
**Record:** `rxmq.c` lines 272–273 and 2619–2621 already validate before
`vif_id_to_mac` access. `time-event.c` is the outlier lacking this
check.

---

## PHASE 6: CROSS-REFERENCE AGAINST LOCAL TREE

### Step 6.1: Buggy code present?
**Record:** **Yes.** Current `time-event.c` at lines 958–965 has no
`IWL_FW_CHECK`; passes raw `int id` directly to
`iwl_mvm_rcu_dereference_vif_id()`. Fix is **not** yet applied in
6.18.44.

### Step 6.2: Backport complications
**Record:** Clean apply expected — 5-line insertion before
`rcu_read_lock()`. No conflicting changes observed. `IWL_FW_CHECK` and
`vif_id_to_mac` already exist in this tree.

### Step 6.3: Related fixes already present?
**Record:** Beacon-filter path in `rxmq.c` already has this validation.
No duplicate fix for session-protect in this tree (`grep` found no
"Invalid mac_link_id" string).

---

## PHASE 7: SUBSYSTEM CONTEXT

### Step 7.1: Subsystem criticality
**Record:** `drivers/net/wireless/intel/iwlwifi/mvm` — **IMPORTANT**
(Intel WiFi, widely deployed on laptops/desktops).

### Step 7.2: Activity
**Record:** iwlwifi actively maintained; MLD path added alongside legacy
MVM. This fix targets the MVM notification path still used by many
devices in 6.18.y.

---

## PHASE 8: IMPACT AND RISK

### Step 8.1: Who is affected
**Record:** Users of Intel WiFi with MVM driver (`CONFIG_IWLMVM=y/m`),
during session protection / association / P2P ROC.

### Step 8.2: Trigger conditions
**Record:** Firmware sends `SESSION_PROTECTION_NOTIF` with `mac_link_id`
≥ 4, or ≥ 256 with value mod 256 in 0–3. Requires firmware misbehavior
or edge-case firmware state — not everyday, but plausible and not user-
privilege-dependent.

### Step 8.3: Failure mode severity
**Record:** Wrong-interface session-protection state corruption;
possible spurious disconnect (`iwl_mvm_te_check_disconnect`) or ROC
misbehavior on an unrelated VIF. **Severity: MEDIUM–HIGH** (functional
WiFi breakage, not kernel oops, but user-visible connectivity impact).

### Step 8.4: Risk–benefit
**Record:**
- **Benefit:** Prevents cross-interface state corruption from invalid
  firmware notifications; aligns with existing driver defensive pattern.
- **Risk:** Very low — 5 lines, early return on invalid input only.
- **Ratio:** Favorable for stable.

---

## PHASE 9: FINAL SYNTHESIS

### Step 9.1: Evidence summary

**FOR backport:**
- Real bug: `int`→`u8` truncation bypasses bounds checking for
  `vif_id_to_mac`
- Wrong VIF can be operated on (disconnect, time-event corruption)
- Small, surgical, maintainer-authored fix
- Matches established pattern in same driver (`rxmq.c`)
- Buggy code confirmed present in Linux 6.18.44; fix not yet applied
- No new APIs or features

**AGAINST backport:**
- No explicit crash report, syzbot, or user Reported-by
- Commit message is minimal
- Trigger requires invalid firmware `mac_link_id` (not proven in the
  wild from available sources)

**UNRESOLVED:**
- Mailing list review discussion (lore blocked)
- Whether a specific production firmware bug motivated this fix

### Step 9.2: Stable rules checklist
| Criterion | Result |
|-----------|--------|
| 1. Obviously correct and tested? | **PASS** — matches existing
`rxmq.c` pattern; maintainer SOB |
| 2. Fixes a real bug? | **PASS** — truncation bypass is verifiable in
code |
| 3. Important issue? | **PASS** — wrong-interface WiFi state corruption
/ disconnect |
| 4. Small and contained? | **PASS** — 5 lines, one function |
| 5. No new features/APIs? | **PASS** |
| 6. Can apply to local tree? | **PASS** — code exists; clean apply
expected |

### Step 9.3: Exception categories
**Record:** N/A (not device ID, quirk, DT, build, or docs — standard
driver bug fix).

### Step 9.4: Decision rationale
For **this** tree (6.18.44), the vulnerable code is present and the fix
is a minimal, obviously-correct defensive validation that prevents
wrong-interface state corruption when firmware sends an out-of-range
`mac_link_id`. It follows an established iwlwifi pattern and carries
negligible regression risk.

---

## Verification

- **[Phase 1]** Parsed subject, tags, body from user-provided commit
  message
- **[Phase 2]** Read `time-event.c` lines 953–1025: fix absent,
  vulnerable code confirmed
- **[Phase 2]** Read `mvm.h` lines 1384–1394: `u8` parameter + `WARN_ON`
  only on truncated value
- **[Phase 2]** Read `mac.h` line 15: `NUM_MAC_INDEX_DRIVER = 4`
- **[Phase 2]** Read `rxmq.c` lines 2618–2623: identical validation
  pattern exists
- **[Phase 2]** Read `fw/dbg.h` lines 334–342: `IWL_FW_CHECK` logs and
  returns condition
- **[Phase 3]** `git describe HEAD`: v6.18.44-1-g2736c32da98b9
- **[Phase 3]** `git blame -L 953,970 time-event.c`: function present in
  tree
- **[Phase 3]** `grep IWL_FW_CHECK time-event.c`: no matches (fix not
  present)
- **[Phase 4]** `b4 dig -c HEAD`: no match for this patch
- **[Phase 4]** WebFetch patch.msgid.link and lore.kernel.org: blocked
  by Anubis — **UNVERIFIED**
- **[Phase 5]** `grep iwl_mvm_rx_session_protect_notif`: handler in
  `ops.c` line 355
- **[Phase 5]** `grep iwl_mvm_rcu_dereference_vif_id mvm/`: multiple
  call sites; `time-event.c` lacks pre-check
- **[Phase 6]** Confirmed buggy code at lines 958–965 without
  `IWL_FW_CHECK`
- **[Phase 6]** `grep "Invalid mac_link_id"`: no results (fix not
  applied)
- **[Phase 8]** Traced downstream effects:
  `iwl_mvm_te_check_disconnect`, ROC callbacks on wrong VIF

---

**YES**Two background git history lookups (`git log -S` for when
`iwl_mvm_rx_session_protect_notif` was introduced, and a repo-depth
check) timed out and were killed — likely due to the large tree and the
accidental `--all` on one of them.

That didn’t change the backport verdict: the vulnerable code is present
in this 6.18.44 tree, the fix is a 5-line bounds check matching an
existing `rxmq.c` pattern, and the analysis already concluded **YES**.

 drivers/net/wireless/intel/iwlwifi/mvm/time-event.c | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/drivers/net/wireless/intel/iwlwifi/mvm/time-event.c b/drivers/net/wireless/intel/iwlwifi/mvm/time-event.c
index 1a3a8a3f0fb49..356f68f5e6ac3 100644
--- a/drivers/net/wireless/intel/iwlwifi/mvm/time-event.c
+++ b/drivers/net/wireless/intel/iwlwifi/mvm/time-event.c
@@ -960,6 +960,11 @@ void iwl_mvm_rx_session_protect_notif(struct iwl_mvm *mvm,
 	struct ieee80211_vif *vif;
 	struct iwl_mvm_vif *mvmvif;
 
+	if (IWL_FW_CHECK(mvm, id >= ARRAY_SIZE(mvm->vif_id_to_mac),
+			 "Invalid mac_link_id (%d) in session protect notif\n",
+			 id))
+		return;
+
 	rcu_read_lock();
 
 	/* note we use link ID == MAC ID */
-- 
2.53.0


  parent reply	other threads:[~2026-08-31 13:38 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 ` Sasha Levin [this message]
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 ` [PATCH AUTOSEL 6.18] wifi: iwlwifi: mld: validate txq_id in TX response handler Sasha Levin
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-140-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