[PATCH v5 1/1] wifi: mac80211: fix monitor mode frame capture for real chanctx drivers

From: Devin Wittmayer

Date: Wed Jun 03 2026 - 15:29:30 EST


From: 傅继晗 <fjhhz1997@xxxxxxxxx>

Commit d594cc6f2c58 ("wifi: mac80211: restore non-chanctx injection
behaviour") restored the monitor injection fallback for drivers using
chanctx emulation but explicitly deferred drivers that transitioned
to real chanctx ops. mt76 falls in that category and still drops
every injected frame when monitor coexists with another interface.

When the monitor has no chanctx of its own, fall back to the only
chanctx in flight if there is exactly one. Refuse if multiple are
present: picking arbitrarily would inject on an unrelated channel.
Emulated and real chanctx drivers both flow through this fallback,
since emulation always presents zero or one chanctx in
local->chanctx_list.

Reran the airgeddon evil-twin flow (hostapd AP + coexisting monitor
VIF on the same phy + aireplay-ng deauth from the monitor) on
mt7921e PCIe and mt7921u USB across 2.4 GHz and 5 GHz, and on a
Kali VM with MT7921U passthrough as the closest match to the
original reporter's setup. None reproduced the hang seen against
the earlier attempt at this fix
(<20251216111909.25076-2-johannes@xxxxxxxxxxxxxxxx>) or against v1
on lore in March.

Cc: <stable+noautosel@xxxxxxxxxx> # causes some older drivers to crash
Reported-by: Oscar Alfonso Diaz <oscar.alfonso.diaz@xxxxxxxxx>
Closes: https://github.com/morrownr/USB-WiFi/issues/682
Tested-by: Devin Wittmayer <lucid_duck@xxxxxxxxxxxxx>
Fixes: 0a44dfc07074 ("wifi: mac80211: simplify non-chanctx drivers")
Signed-off-by: 傅继晗 <fjhhz1997@xxxxxxxxx>
Signed-off-by: Devin Wittmayer <lucid_duck@xxxxxxxxxxxxx>
---
v5:
- Use list_for_each_entry_rcu() to find the single chanctx instead
of list_first_or_null_rcu() plus an rcu_access_pointer() check on
ctx->list.next. That field is not an __rcu pointer, so the check
tripped a sparse warning. No functional change.
- Opt out of stable autoselect (the fix reintroduces the crash on
older drivers) instead of Cc: stable # 6.9+.

v4:
- Drop the dedicated local->emulate_chanctx branch. Emulation always
presents zero or one chanctx in local->chanctx_list, so the
single-chanctx walk handles that path too.
- Real-chanctx TX path is unchanged, so v3 Tested-by carries.

v3:
- Replace list_is_singular() + list_first_entry() with an RCU walk.
The v2 pair re-read ->next without RCU between the singularity check
and the entry fetch, racing list_del_rcu() of the sole entry
(rculist.h).

v2:
- First respin under my submitter signoff; preserves fjh1997
authorship.
- Verification matrix; airgeddon evil-twin flow on mt7921e/mt7921u/
Kali-VM does not reproduce the hang reported against the v1 attempt
at this fix.

net/mac80211/tx.c | 14 ++++++++++++--
1 file changed, 12 insertions(+), 2 deletions(-)

diff --git a/net/mac80211/tx.c b/net/mac80211/tx.c
index 933c86ca21c3..cf336e92c072 100644
--- a/net/mac80211/tx.c
+++ b/net/mac80211/tx.c
@@ -2407,10 +2407,20 @@ netdev_tx_t ieee80211_monitor_start_xmit(struct sk_buff *skb,
rcu_dereference(tmp_sdata->vif.bss_conf.chanctx_conf);
}

+ if (!chanctx_conf) {
+ struct ieee80211_chanctx *ctx;
+ bool first = true;
+
+ list_for_each_entry_rcu(ctx, &local->chanctx_list, list) {
+ if (!first)
+ goto fail_rcu;
+ chanctx_conf = &ctx->conf;
+ first = false;
+ }
+ }
+
if (chanctx_conf)
chandef = &chanctx_conf->def;
- else if (local->emulate_chanctx)
- chandef = &local->hw.conf.chandef;
else
goto fail_rcu;

--
2.54.0