Linux wireless drivers development
 help / color / mirror / Atom feed
* [PATCH AUTOSEL 6.18-5.10] wifi: cfg80211: validate IEs in cfg80211_wext_siwgenie()
@ 2026-08-31 13:20 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
                   ` (75 more replies)
  0 siblings, 76 replies; 78+ messages in thread
From: Sasha Levin @ 2026-08-31 13:20 UTC (permalink / raw)
  To: patches, stable
  Cc: Deepanshu Kartikey, syzbot+cc867e537e4bd36f69bb, Johannes Berg,
	Sasha Levin, johannes, linux-wireless, linux-kernel

From: Deepanshu Kartikey <kartikey406@gmail.com>

[ Upstream commit a2f5286ca4f304d3fd469f01b96b518608912a5c ]

The KASAN allocation trace shows that a malformed IE buffer is
stored via SIOCSIWGENIE (cfg80211_wext_siwgenie()) without any
validation. The crash trace shows that a subsequent SIOCSIWESSID
triggers a connection attempt which calls cfg80211_sme_get_conn_ies()
to process the stored IE buffer, causing:

 - An out-of-bounds read in skip_ie() which reads ies[pos+1]
   (the length byte) past the end of the 1-byte buffer.

 - An integer underflow in the memcpy size argument when offs
   returned by ieee80211_ie_split() exceeds ies_len, causing
   unsigned subtraction to wrap to SIZE_MAX and triggering a
   fortify panic.

Fix this by validating the IE buffer in cfg80211_wext_siwgenie()
before storing it.

Reported-by: syzbot+cc867e537e4bd36f69bb@syzkaller.appspotmail.com
Closes: https://syzkaller.appspot.com/bug?extid=cc867e537e4bd36f69bb
Signed-off-by: Deepanshu Kartikey <kartikey406@gmail.com>
Link: https://patch.msgid.link/20260725142028.32560-1-kartikey406@gmail.com
[drop unnecessary ie_len check, update commit message]
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
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: cfg80211]` `[validate]` — Add IE validation in
`cfg80211_wext_siwgenie()` before storing user-supplied generic IE data.

### Step 1.2: Tags
**Record:**
- **Reported-by:** syzbot+cc867e537e4bd36f69bb@syzkaller.appspotmail.com
  (fuzzer-found, strong YES signal)
- **Closes:**
  https://syzkaller.appspot.com/bug?extid=cc867e537e4bd36f69bb
- **Link:**
  https://patch.msgid.link/20260725142028.32560-1-kartikey406@gmail.com
- **Signed-off-by:** Deepanshu Kartikey, Johannes Berg (cfg80211
  maintainer committed/applied)
- No Fixes:, Cc: stable, Reviewed-by, Tested-by, or Acked-by tags
- Notable: syzbot report with maintainer application

### Step 1.3: Body Analysis
**Record:**
- **Bug:** Malformed IE buffer stored via `SIOCSIWGENIE` without
  validation; later `SIOCSIWESSID` triggers connection and
  `cfg80211_sme_get_conn_ies()` processes the bad buffer.
- **Symptoms:** (1) OOB read in `skip_ie()` reading `ies[pos+1]` past a
  1-byte buffer; (2) integer underflow in `memcpy` size when
  `ieee80211_ie_split()` returns `offs > ies_len`, wrapping to
  `SIZE_MAX` and triggering fortify panic.
- **Root cause:** Wext path lacked the IE validation that nl80211
  already performs.
- **Version info:** None in commit message.

### Step 1.4: Hidden Bug Fix?
**Record:** No — this is an explicit bug fix for KASAN-reported OOB read
and fortify panic, not disguised cleanup.

---

## Phase 2: Diff Analysis

### Step 2.1: Inventory
**Record:**
- **Files:** `net/wireless/wext-sme.c` (+9 lines, 0 removed)
- **Function:** `cfg80211_wext_siwgenie()`
- **Scope:** Single-file surgical fix

### Step 2.2: Code Flow Change
**Record:**
- **Hunk (before):** If `ie_len > 0`, immediately `kmemdup()` and store
  buffer.
- **Hunk (after):** Before `kmemdup()`, walk IEs with
  `for_each_element()` and reject with `-EINVAL` if
  `!for_each_element_completed()`.
- **Path affected:** Error/input-validation path on `SIOCSIWGENIE`
  ioctl.

### Step 2.3: Bug Mechanism
**Record:**
- **Category:** Buffer overflow / out-of-bounds read + integer underflow
- **Mechanism:** `skip_ie()` assumes well-formed IEs (`u8 len = ies[pos
  + 1]`). A 1-byte stored buffer causes OOB read. Bad split offset leads
  to `ies_len - offs` underflow in `cfg80211_sme_get_conn_ies()`:

```529:534:net/wireless/sme.c
                offs = ieee80211_ie_split(ies, ies_len, before_extcapa,
                                          ARRAY_SIZE(before_extcapa),
0);
                memcpy(buf, ies, offs);
                /* leave a whole for extended capabilities IE */
                memcpy(buf + offs +
rdev->wiphy.extended_capabilities_len + 2,
                       ies + offs, ies_len - offs);
```

### Step 2.4: Fix Quality
**Record:**
- **Quality:** High — matches existing `validate_ie_attr()` pattern in
  `nl80211.c`.
- **Regression risk:** Very low — only rejects malformed input that
  would crash later; well-formed IEs unchanged.
- **Note:** Johannes dropped the explicit `ie_len < 2` check from v2;
  `for_each_element_completed()` correctly rejects 1-byte buffers (loop
  never runs, completion check fails).

---

## Phase 3: Git History Investigation

### Step 3.1: Blame
**Record:** Current `cfg80211_wext_siwgenie()` in this tree dates to
initial import at `5d324e5159d9e` (v6.18 merge base). The unvalidated
`kmemdup()` path has been present since wext-sme support was added — a
long-standing gap, not a recent regression.

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

### Step 3.3: Related Changes
**Record:** Many related validation fixes in `net/wireless/` (e.g.
`f8c547e543e12`, `cfbda103aeae6`, `584657c5fc58d`). nl80211 already
validates IEs via `validate_ie_attr()`; wext path was the missing piece.
Standalone fix — v3 helper series was explicitly rejected by maintainer.

### Step 3.4: Author Context
**Record:** Deepanshu Kartikey is a contributor; Johannes Berg (cfg80211
maintainer) applied the patch with modifications.

### Step 3.5: Dependencies
**Record:** No prerequisites. Uses `for_each_element` /
`for_each_element_completed` from `include/linux/ieee80211.h` (included
via `cfg80211.h`). No dependency on rejected v3
`cfg80211_validate_ies()` helper.

---

## Phase 4: Mailing List and External Research

### Step 4.1: Original Discussion
**Record:**
- **URL:**
  https://patch.msgid.link/20260725142028.32560-1-kartikey406@gmail.com
- **Series:** v1 (2026-07-10) → v2 (2026-07-25, committed version)
- **Maintainer:** Johannes Berg applied modified v2 on 2026-07-28,
  declined v3 refactor: *"the bigger cleanup isn't great for wireless as
  a fix right now"*
- No explicit Cc: stable nomination; no NAKs

### Step 4.2: Reviewers
**Record:** CC'd: johannes@sipsolutions.net, linux-
wireless@vger.kernel.org, syzbot. Jeff Johnson replied on thread.
Maintainer applied directly.

### Step 4.3: Bug Report
**Record:**
- **syzkaller:** KASAN slab-out-of-bounds in `skip_ie()` /
  `ieee80211_ie_split_ric()`
- **Repro:** C reproducer on 2026/07/09; fix commit `a2f5286ca4f3`
  identified
- **Stack trace confirms path:** `cfg80211_wext_siwgenie()` →
  `cfg80211_mgd_wext_siwessid()` → `cfg80211_sme_get_conn_ies()` → crash
- **Severity:** Kernel crash (KASAN OOB); syzbot security assessment
  flags DoS/exploitable

### Step 4.4: Related Patches
**Record:** v3 series (`cfg80211_validate_ies()` helper) exists but was
explicitly not taken for this fix cycle.

### Step 4.5: Stable List
**Record:** lore.kernel.org/stable search blocked (bot protection). No
stable discussion found.

---

## Phase 5: Code Semantic Analysis

### Step 5.1: Key Functions
**Record:** `cfg80211_wext_siwgenie()` (modified); downstream:
`cfg80211_mgd_wext_connect()`, `cfg80211_sme_get_conn_ies()`,
`skip_ie()`.

### Step 5.2: Callers
**Record:**
- `cfg80211_wext_siwgenie()` registered in `wext-compat.c` as
  `IW_HANDLER(SIOCSIWGENIE, ...)`
- Stored IEs consumed at connect time via `cfg80211_mgd_wext_connect()`
  (lines 31–32) → `cfg80211_connect()` → `cfg80211_sme_get_conn_ies()`

### Step 5.3: Callees
**Record:** `for_each_element()`, `for_each_element_completed()`,
`kmemdup()`, `kfree()`, `cfg80211_disconnect()`.

### Step 5.4: Reachability
**Record:**
- Reachable from userspace via `ioctl(SIOCSIWGENIE)` on wireless
  netdevice
- Requires `CAP_NET_ADMIN` (`wext_permission_check()` in `wext-
  core.c:991-996`)
- Only when `CONFIG_CFG80211_WEXT` is enabled (common on distros
  supporting `iwconfig`)

### Step 5.5: Similar Patterns
**Record:** Identical validation pattern in
`nl80211.c:validate_ie_attr()` and `scan.c:2749`. Wext path was the
outlier.

---

## Phase 6: Cross-Reference Against Local Tree

### Step 6.1: Buggy Code Present?
**Record:** **YES.** Local tree is **v6.18.44** (`git describe HEAD`).
`cfg80211_wext_siwgenie()` at lines 321–324 does unvalidated
`kmemdup()`. Fix commit `a2f5286ca4f3` is **NOT** an ancestor of HEAD
(`git merge-base --is-ancestor` → fix NOT in HEAD).

### Step 6.2: Backport Complications
**Record:** **Clean apply.** `git apply --check` on the fix diff
succeeds with no conflicts.

### Step 6.3: Related Fixes Already Present?
**Record:** No equivalent validation in `cfg80211_wext_siwgenie()`.
nl80211 IE validation exists separately; does not cover wext path.

---

## Phase 7: Subsystem Context

### Step 7.1: Subsystem
**Record:** `net/wireless` (cfg80211) — **IMPORTANT** subsystem; affects
wireless stack users.

### Step 7.2: Activity
**Record:** Actively maintained; multiple recent IE-validation hardening
commits in this tree.

---

## Phase 8: Impact and Risk Assessment

### Step 8.1: Who Is Affected
**Record:** Users with `CONFIG_CFG80211_WEXT` and wireless interfaces
using wext ioctls (`iwconfig`, legacy tools). Not universal, but common
on desktop/server distros.

### Step 8.2: Trigger Conditions
**Record:**
- `SIOCSIWGENIE` with malformed IE (e.g. 1-byte buffer) + `SIOCSIWESSID`
  to trigger connect
- Requires `CAP_NET_ADMIN` (not unprivileged)
- syzbot has reproducible C reproducer

### Step 8.3: Failure Mode
**Record:** KASAN slab-out-of-bounds read → potential kernel oops/panic;
fortify panic on memcpy underflow. **Severity: HIGH** (kernel crash).

### Step 8.4: Risk-Benefit
**Record:**
- **Benefit:** HIGH — prevents kernel crash from malformed wext IE input
- **Risk:** VERY LOW — 9-line input validation, established pattern,
  maintainer-reviewed
- **Ratio:** Strongly favors backport

---

## Phase 9: Final Synthesis

### Step 9.1: Evidence Summary

**FOR backport:**
- syzbot-reported, reproducible KASAN OOB read
- Kernel crash (fortify panic) on realistic ioctl sequence
- Small, surgical, maintainer-applied fix
- Matches existing nl80211 validation pattern
- Applies cleanly to v6.18.44
- Buggy code confirmed present; fix not yet in tree
- Part of ongoing cfg80211 IE hardening in stable

**AGAINST backport:**
- Requires `CAP_NET_ADMIN` (not unprivileged attack)
- Only affects wext compat path (`CONFIG_CFG80211_WEXT`)
- No explicit Cc: stable nomination (not a negative per instructions)

**Unresolved:** None material to the decision.

### Step 9.2: Stable Rules Checklist
1. Obviously correct and tested? **PASS** — standard `for_each_element`
   validation; syzbot repro; maintainer applied
2. Fixes real bug affecting users? **PASS** — KASAN-confirmed crash path
3. Important issue? **PASS** — kernel crash (HIGH severity)
4. Small and contained? **PASS** — 9 lines, 1 file
5. No new features/APIs? **PASS** — input validation only
6. Can apply to local tree? **PASS** — verified clean apply

### Step 9.3: Exception Categories
**Record:** N/A — standard bug fix, not device-ID/quirk/DT/docs
exception.

### Step 9.4: Decision Rationale

This commit closes a validation gap in the wext compatibility path that
nl80211 already covers. A `CAP_NET_ADMIN` caller can store a malformed
1-byte IE via `SIOCSIWGENIE`; a subsequent `SIOCSIWESSID` triggers
connection processing that reads past the buffer end in `skip_ie()` and
can panic via fortify-checked `memcpy`. The fix is minimal, follows an
established in-tree pattern, was applied by the cfg80211 maintainer,
applies cleanly to this v6.18.44 tree, and the vulnerable code is
confirmed present without the fix.

---

## Verification

- [Phase 1] Parsed tags: Reported-by syzbot, Closes syzkaller URL,
  Signed-off-by author + Johannes Berg
- [Phase 1] Subject: wifi: cfg80211 validate IEs in
  cfg80211_wext_siwgenie()
- [Phase 2] Diff: +9 lines in cfg80211_wext_siwgenie(), adds
  for_each_element validation before kmemdup
- [Phase 2] Verified skip_ie() OOB: `u8 len = ies[pos + 1]` at
  util.c:1967 with comment "assume validly formed"
- [Phase 2] Verified underflow path: cfg80211_sme_get_conn_ies() memcpy
  at sme.c:534 uses `ies_len - offs`
- [Phase 3] git blame: vulnerable function present in v6.18.44 tree
- [Phase 3] git merge-base --is-ancestor a2f5286ca4f3 HEAD → fix NOT in
  HEAD
- [Phase 3] git apply --check on fix diff → applies cleanly
- [Phase 4] b4 dig -c a2f5286ca4f3 →
  https://patch.msgid.link/20260725142028.32560-1-kartikey406@gmail.com
- [Phase 4] b4 dig -a → v1 and v2 series; v2 is committed version
- [Phase 4] b4 dig -w → johannes@sipsolutions.net, linux-wireless CC'd
- [Phase 4] Mbox: Johannes applied modified v2, declined v3 refactor
- [Phase 4] syzkaller report fetched: KASAN OOB in skip_ie, C repro, fix
  commit a2f5286ca4f3
- [Phase 4] Stack trace confirms siwgenie → siwessid → sme_get_conn_ies
  → skip_ie path
- [Phase 5] Call chain: wext-compat.c SIOCSIWGENIE handler → wext-sme.c
  connect path → sme.c
- [Phase 5] CAP_NET_ADMIN required: wext-core.c:991-996
  wext_permission_check()
- [Phase 5] for_each_element_completed pattern exists in nl80211.c:284
  and scan.c:2749
- [Phase 5] Macros available via cfg80211.h → ieee80211.h include chain
- [Phase 6] git describe HEAD → v6.18.44-2-g1b9e1abadee04 (6.18.y tree)
- [Phase 6] Makefile VERSION/PATCHLEVEL/SUBLEVEL → 6.18.44
- [Phase 6] Current wext-sme.c:321-324 lacks validation (buggy code
  confirmed)
- [Phase 7] net/wireless recent commits show active IE validation
  hardening
- [Phase 8] Failure mode: KASAN OOB + fortify panic, severity HIGH
- [Phase 8] Trigger requires CAP_NET_ADMIN (syzbot assessment:
  Unprivileged ❌)

**YES**

 net/wireless/wext-sme.c | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/net/wireless/wext-sme.c b/net/wireless/wext-sme.c
index 573b6b15a446e..b5914f3658db4 100644
--- a/net/wireless/wext-sme.c
+++ b/net/wireless/wext-sme.c
@@ -319,6 +319,15 @@ int cfg80211_wext_siwgenie(struct net_device *dev,
 		return 0;
 
 	if (ie_len) {
+		const struct element *elem;
+
+		for_each_element(elem, extra, ie_len) {
+			/* nothing */
+		}
+
+		if (!for_each_element_completed(elem, extra, ie_len))
+			return -EINVAL;
+
 		ie = kmemdup(extra, ie_len, GFP_KERNEL);
 		if (!ie)
 			return -ENOMEM;
-- 
2.53.0


^ permalink raw reply related	[flat|nested] 78+ messages in thread

end of thread, other threads:[~2026-09-03  8:09 UTC | newest]

Thread overview: 78+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
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 ` [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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox