From: Sasha Levin <sashal@kernel.org>
To: patches@lists.linux.dev, stable@vger.kernel.org
Cc: Shahar Tzarfati <shahar.tzarfati@intel.com>,
Johannes Berg <johannes.berg@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: fw: validate SMEM response size
Date: Mon, 31 Aug 2026 09:24:28 -0400 [thread overview]
Message-ID: <20260831133314.4125787-240-sashal@kernel.org> (raw)
In-Reply-To: <20260831133314.4125787-1-sashal@kernel.org>
From: Shahar Tzarfati <shahar.tzarfati@intel.com>
[ Upstream commit a31b0e535fd11219556c7382ee9f63b2438c3769 ]
The SMEM parsers cast firmware response payloads directly to shared
memory configuration structures. A short response can leave fields
outside the received payload while the driver still dereferences them.
Check the response payload length before reading the base fields in
both parser variants. Require the full legacy extended layout before
reading internal TX FIFO data. Valid responses keep the same parsed
values.
Signed-off-by: Shahar Tzarfati <shahar.tzarfati@intel.com>
Reviewed-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: Miri Korenblit <miriam.rachel.korenblit@intel.com>
Link: https://patch.msgid.link/20260715215523.fbdb0016a91d.I5f6c6e04589a24a233559191170ccb43372dee63@changeid
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
LLM Generated explanations, may be completely bogus:
## Phase 1: Commit Message Forensics
**Step 1.1 — Subject line**
Record: `[wifi: iwlwifi: fw]` `[validate]` — validate SMEM (shared
memory) firmware response payload size before parsing.
**Step 1.2 — Tags**
Record:
- **Reviewed-by:** Johannes Berg `<johannes.berg@intel.com>` (iwlwifi
maintainer)
- **Signed-off-by:** Shahar Tzarfati `<shahar.tzarfati@intel.com>`
(author)
- **Signed-off-by:** Miri Korenblit
`<miriam.rachel.korenblit@intel.com>` (maintainer)
- **Link:** `https://patch.msgid.link/20260715215523.fbdb0016a91d...`
- No Fixes:, Reported-by:, Tested-by:, Cc: stable, or syzbot tags
- Notable: maintainer review present; part of `[PATCH 5/15]` iwlwifi
fixes series (2026-07-15)
**Step 1.3 — Body analysis**
Record:
- **Bug:** SMEM parsers cast `pkt->data` directly to
`iwl_shared_mem_cfg` / `iwl_shared_mem_cfg_v2` and dereference fields
without verifying payload length.
- **Symptom:** A short firmware response can cause reads past the
received buffer.
- **Root cause:** Missing bounds checks before field access; extended-
layout path also reads `internal_txfifo_*` without verifying full
struct size.
- **Version info:** None in message.
**Step 1.4 — Hidden bug fix?**
Record: **Yes.** Although titled “validate,” this is a real out-of-
bounds read fix in firmware-response parsing, not cosmetic cleanup.
---
## Phase 2: Diff Analysis
**Step 2.1 — Inventory**
Record:
- **File:** `drivers/net/wireless/intel/iwlwifi/fw/smem.c` (+23 / −5
lines)
- **Functions:** `iwl_parse_shared_mem_22000()`,
`iwl_parse_shared_mem()`
- **Scope:** Single-file, surgical fix
**Step 2.2 — Code flow per hunk**
| Hunk | Before | After |
|------|--------|-------|
| `iwl_parse_shared_mem_22000()` | Reads `lmac_num` immediately from
cast pointer; only checks full struct size for API v4 tail fields |
Requires `payload_len >= offsetofend(..., lmac_smem[1])` (180 bytes)
before any reads |
| `iwl_parse_shared_mem()` base path | Reads `txfifo_size[]`,
`rxfifo_size[]` with no length check | Requires `payload_len >=
offsetof(..., rxfifo_addr)` (68 bytes) first |
| `iwl_parse_shared_mem()` extended path | Reads `internal_txfifo_*`
when capability set, no size check | Requires `payload_len >=
sizeof(*mem_cfg)` (100 bytes) before extended fields |
**Step 2.3 — Bug mechanism**
Record: **Buffer overflow / out-of-bounds read** — firmware response
parsing reads beyond `pkt` payload on short/malformed responses.
**Step 2.4 — Fix quality**
Record: Obviously correct; follows existing `IWL_FW_CHECK` +
`iwl_rx_packet_payload_len()` pattern already used in `pnvm.c` in this
tree. Minimal risk; early return on bad payload matches existing error-
handling style in the same file.
---
## Phase 3: Git History Investigation
**Step 3.1 — Blame**
Record: Parser functions trace to `5d324e5159d9e` (6.18 merge base).
Related bounds work in `1d49a42717bdc` added `lmac_num` cap and v4 full-
size check but left early reads unguarded. Buggy pattern has been
present since SMEM parsing existed in this file layout.
**Step 3.2 — Fixes: tag**
Record: N/A — no Fixes: tag.
**Step 3.3 — Related commits**
Record: Part of 15-patch series `wifi: iwlwifi: fixes - 07-15-2026`.
**Other series patches already in this 6.18.44 tree:**
- `eae7fdf7d4469` — pnvm payload validation (patch 8/15)
- `70a6de303c9b3` — TAS block-list pointer arithmetic (patch 6/15)
- `2d5dec517b539` — wake-packet handler bounds (patch from same author)
- `a076b0c457c71` — SAR GEO payload validation (patch 4/15)
This SMEM patch is **not** yet in the tree.
**Step 3.4 — Author context**
Record: Shahar Tzarfati; one other commit in tree (`2d5dec517b539`, same
series). Johannes Berg reviewed and has prior SMEM fix (`1d49a42717bdc`)
in tree.
**Step 3.5 — Dependencies**
Record: **Standalone.** Only touches `smem.c`; uses `IWL_FW_CHECK`,
`iwl_rx_packet_payload_len()`, and structs already present. No
prerequisite commits required.
---
## Phase 4: Mailing List and External Research
**Step 4.1 — Original discussion**
Record: `b4 am` on message-id found thread at lore; patch is `[PATCH
5/15]` in
`20260715_miriam_rachel_korenblit_wifi_iwlwifi_fixes_07_15_2026.mbx`.
Cover letter describes series as “bugfixes.” No explicit stable
nomination found in mbox text.
**Step 4.2 — Reviewers**
Record: `b4 am` attestation passed; Reviewed-by Johannes Berg; series
signed DKIM/intel.com.
**Step 4.3 — Bug report**
Record: N/A — no external bug report or syzbot link.
**Step 4.4 — Series context**
Record: 15-patch iwlwifi hardening series. This patch is independent;
siblings already partially backported to this tree.
**Step 4.5 — Stable list**
Record: No stable-list discussion found (UNVERIFIED beyond mbox search).
---
## Phase 5: Code Semantic Analysis
**Step 5.1 — Key functions**
Record: `iwl_parse_shared_mem_22000()`, `iwl_parse_shared_mem()`, called
from `iwl_get_shared_mem_conf()`.
**Step 5.2 — Callers**
Record:
- `iwl_get_shared_mem_conf()` ← `iwl_mvm_config_fw()` in `mvm/fw.c`
(post-firmware-start)
- `iwl_get_shared_mem_conf()` ← `iwl_mld_config_fw()` in `mld/fw.c`
Every iwlwifi MVM/MLD device hits this during firmware configuration.
**Step 5.3 — Callees**
Record: `iwl_rx_packet_payload_len()`, `IWL_FW_CHECK`, `le32_to_cpu()`,
`fw_has_capa()`, `iwl_fw_lookup_notif_ver()`.
**Step 5.4 — Reachability**
Record: Triggered on every iwlwifi bring-up when firmware responds to
`SHARED_MEM_CFG`. Short/malformed firmware response (corrupt FW, FW bug,
or hostile FW) can hit the buggy path. Not a direct syscall, but affects
all iwlwifi users at probe/init.
**Step 5.5 — Similar patterns**
Record: Same validation pattern added in `pnvm.c` (`eae7fdf7d4469`,
already in this tree). `smem.c` already had a partial v4 size check but
not early/base-path checks.
---
## Phase 6: Cross-Reference Against Local Tree (6.18.44)
**Step 6.1 — Buggy code present?**
Record: **Yes.** Current `smem.c` reads `mem_cfg->lmac_num` and v2
fields without upfront length validation; extended path lacks size
check. Tree: `v6.18.44-1-g2736c32da98b9`.
**Step 6.2 — Backport complications**
Record: **Clean apply confirmed** — `git apply --check` on extracted
patch 5 succeeds against current tree.
**Step 6.3 — Related fixes already present?**
Record: `1d49a42717bdc` (22000 LMAC count + v4 tail check) present.
`eae7fdf7d4469` (pnvm validation) present. **This specific SMEM
validation is absent.**
---
## Phase 7: Subsystem Context
**Step 7.1 — Subsystem / criticality**
Record: `drivers/net/wireless/intel/iwlwifi` — **IMPORTANT** (widely
deployed laptop/desktop WiFi; firmware init path).
**Step 7.2 — Activity**
Record: Actively maintained; multiple iwlwifi bounds-check fixes
backported to this tree in recent history.
---
## Phase 8: Impact and Risk Assessment
**Step 8.1 — Who is affected**
Record: All users of Intel iwlwifi (MVM and MLD) with `CONFIG_IWLWIFI`.
**Step 8.2 — Trigger conditions**
Record: Firmware returns undersized `SHARED_MEM_CFG` response. Uncommon
in normal operation; plausible with buggy/corrupt firmware or during
error recovery. Not trivially userspace-triggerable, but firmware is an
attack surface.
**Step 8.3 — Failure mode**
Record: Out-of-bounds read past response buffer → kernel oops, info
leak, or undefined behavior during WiFi init. **Severity: HIGH.**
**Step 8.4 — Risk vs benefit**
Record:
- **Benefit:** HIGH — prevents OOB read on common init path; aligns with
already-backported series siblings.
- **Risk:** LOW — 28-line change, defensive early returns, no API
change.
- **Ratio:** Strongly favors backport.
---
## Phase 9: Final Synthesis
**Step 9.1 — Evidence summary**
**FOR:**
- Real OOB-read bug in firmware response parsing
- Small, single-file, maintainer-reviewed fix
- Buggy code confirmed in 6.18.44 tree
- Applies cleanly
- Standalone (no series dependencies)
- Same iwlwifi hardening series already partially backported here
- Consistent with `pnvm.c` validation already in tree
- Affects all iwlwifi devices at firmware init
**AGAINST:**
- No user report or syzbot reproduction
- Trigger requires abnormal firmware response (mitigated: consequences
are severe)
- Slightly conservative minimum size for 22000 path (180 bytes vs
possibly smaller valid 1-LMAC response) — safe for spec-compliant
firmware
**Step 9.2 — Stable rules checklist**
1. Obviously correct and tested? **PASS** — clear bounds checks;
Reviewed-by maintainer; series tested by multiple Tested-by on
sibling patches
2. Fixes real bug affecting users? **PASS** — OOB read on iwlwifi init
3. Important issue? **PASS** — crash / memory safety (HIGH)
4. Small and contained? **PASS** — 1 file, ~28 lines
5. No new features/APIs? **PASS**
6. Can apply to local tree? **PASS** — verified clean apply
**Step 9.3 — Exception category**
Record: N/A (standard bug fix, not device-ID/quirk/docs).
**Step 9.4 — Decision rationale**
This is a textbook stable candidate: a small, obviously correct bounds-
check fix for firmware response parsing on a widely used driver, with
the buggy code present in Linux 6.18.44 and no dependencies. Sibling
patches from the same series are already in this tree; this one should
follow.
---
## Verification
- [Phase 1] Parsed subject, tags, body from provided commit message and
mbox patch 5/15
- [Phase 1] Confirmed Reviewed-by Johannes Berg; no Fixes:/Reported-
by:/syzbot
- [Phase 2] Read current `smem.c`; confirmed missing upfront validation
matches “before” side of diff
- [Phase 2] Computed struct offsets: `offsetofend(lmac_smem[1])=180`,
`offsetof(rxfifo_addr)=68`, `sizeof(cfg_v2)=100`
- [Phase 3] `git describe HEAD`: `v6.18.44-1-g2736c32da98b9`; Makefile
confirms 6.18.44
- [Phase 3] `git blame smem.c`: parsers from `5d324e5159d9e`; partial
fix `1d49a42717bdc` present
- [Phase 3] `git log -- drivers/net/wireless/intel/iwlwifi/`: confirmed
sibling backports (`eae7fdf7d4469`, `70a6de303c9b3`, `2d5dec517b539`,
`a076b0c457c71`); SMEM fix absent
- [Phase 4] `b4 am` on message-id: found 15-patch series; patch 5 is
SMEM validation
- [Phase 4] Read cover letter: series described as bugfixes
- [Phase 4] No Cc: stable found in mbox (grep returned empty)
- [Phase 5] `grep iwl_get_shared_mem_conf`: callers in `mvm/fw.c:1391`,
`mld/fw.c:459`
- [Phase 5] Confirmed `IWL_FW_CHECK` and `iwl_rx_packet_payload_len`
exist in tree
- [Phase 6] `git apply --check` on extracted patch 5: **succeeds**
(clean apply)
- [Phase 6] Confirmed buggy code present; fix not yet applied
- [Phase 8] Failure mode: OOB read at WiFi firmware init → HIGH severity
**YES**
drivers/net/wireless/intel/iwlwifi/fw/smem.c | 28 ++++++++++++++++----
1 file changed, 23 insertions(+), 5 deletions(-)
diff --git a/drivers/net/wireless/intel/iwlwifi/fw/smem.c b/drivers/net/wireless/intel/iwlwifi/fw/smem.c
index 344ddde85b189..20ed26a1bb00e 100644
--- a/drivers/net/wireless/intel/iwlwifi/fw/smem.c
+++ b/drivers/net/wireless/intel/iwlwifi/fw/smem.c
@@ -1,6 +1,6 @@
// SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause
/*
- * Copyright (C) 2012-2014, 2018-2021, 2025 Intel Corporation
+ * Copyright (C) 2012-2014, 2018-2021, 2025-2026 Intel Corporation
* Copyright (C) 2013-2015 Intel Mobile Communications GmbH
* Copyright (C) 2016-2017 Intel Deutschland GmbH
*/
@@ -14,9 +14,17 @@ static void iwl_parse_shared_mem_22000(struct iwl_fw_runtime *fwrt,
{
struct iwl_shared_mem_cfg *mem_cfg = (void *)pkt->data;
int i, lmac;
- int lmac_num = le32_to_cpu(mem_cfg->lmac_num);
- u8 api_ver = iwl_fw_lookup_notif_ver(fwrt->fw, SYSTEM_GROUP,
- SHARED_MEM_CFG_CMD, 0);
+ int lmac_num;
+ u8 api_ver;
+
+ if (IWL_FW_CHECK(fwrt, iwl_rx_packet_payload_len(pkt) <
+ offsetofend(struct iwl_shared_mem_cfg, lmac_smem[1]),
+ "bad shared mem notification size\n"))
+ return;
+
+ lmac_num = le32_to_cpu(mem_cfg->lmac_num);
+ api_ver = iwl_fw_lookup_notif_ver(fwrt->fw, SYSTEM_GROUP,
+ SHARED_MEM_CFG_CMD, 0);
/* Note: notification has 3 entries, but we only expect 2 */
if (IWL_FW_CHECK(fwrt, lmac_num > ARRAY_SIZE(fwrt->smem_cfg.lmac),
@@ -30,7 +38,7 @@ static void iwl_parse_shared_mem_22000(struct iwl_fw_runtime *fwrt,
if (api_ver >= 4 &&
!IWL_FW_CHECK(fwrt, iwl_rx_packet_payload_len(pkt) < sizeof(*mem_cfg),
- "bad shared mem notification size\n")) {
+ "bad shared mem notification size (v4)\n")) {
fwrt->smem_cfg.rxfifo2_control_size =
le32_to_cpu(mem_cfg->rxfifo2_control_size);
}
@@ -53,6 +61,11 @@ static void iwl_parse_shared_mem(struct iwl_fw_runtime *fwrt,
struct iwl_shared_mem_cfg_v2 *mem_cfg = (void *)pkt->data;
int i;
+ if (IWL_FW_CHECK(fwrt, iwl_rx_packet_payload_len(pkt) <
+ offsetof(struct iwl_shared_mem_cfg_v2, rxfifo_addr),
+ "bad shared mem notification size\n"))
+ return;
+
fwrt->smem_cfg.num_lmacs = 1;
fwrt->smem_cfg.num_txfifo_entries = ARRAY_SIZE(mem_cfg->txfifo_size);
@@ -67,6 +80,11 @@ static void iwl_parse_shared_mem(struct iwl_fw_runtime *fwrt,
/* new API has more data, from rxfifo_addr field and on */
if (fw_has_capa(&fwrt->fw->ucode_capa,
IWL_UCODE_TLV_CAPA_EXTEND_SHARED_MEM_CFG)) {
+ if (IWL_FW_CHECK(fwrt, iwl_rx_packet_payload_len(pkt) <
+ sizeof(*mem_cfg),
+ "bad shared mem notification size (extend)\n"))
+ return;
+
BUILD_BUG_ON(sizeof(fwrt->smem_cfg.internal_txfifo_size) !=
sizeof(mem_cfg->internal_txfifo_size));
--
2.53.0
next prev parent reply other threads:[~2026-08-31 13:41 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 ` Sasha Levin [this message]
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-240-sashal@kernel.org \
--to=sashal@kernel.org \
--cc=johannes.berg@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=shahar.tzarfati@intel.com \
--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