diff options
author | Felix Fietkau <nbd@nbd.name> | 2022-05-31 21:08:24 +0200 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2022-06-29 11:43:15 +0200 |
commit | f856373e2f31ffd340e47e2b00027bd4070f74b3 (patch) | |
tree | 4ab015f338e797aad4e81c7796ef20a40736f482 /net/mac80211/iface.c | |
parent | a4926abb787e2ef3ee2997e6ca8844d859478647 (diff) | |
download | linux-f856373e2f31ffd340e47e2b00027bd4070f74b3.tar.gz linux-f856373e2f31ffd340e47e2b00027bd4070f74b3.tar.bz2 linux-f856373e2f31ffd340e47e2b00027bd4070f74b3.zip |
wifi: mac80211: do not wake queues on a vif that is being stopped
When a vif is being removed and sdata->bss is cleared, __ieee80211_wake_txqs
can still be called on it, which crashes as soon as sdata->bss is being
dereferenced.
To fix this properly, check for SDATA_STATE_RUNNING before waking queues,
and take the fq lock when setting it (to ensure that __ieee80211_wake_txqs
observes the change when running on a different CPU)
Signed-off-by: Felix Fietkau <nbd@nbd.name>
Acked-by: Toke Høiland-Jørgensen <toke@kernel.org>
Link: https://lore.kernel.org/r/20220531190824.60019-1-nbd@nbd.name
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/mac80211/iface.c')
-rw-r--r-- | net/mac80211/iface.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net/mac80211/iface.c b/net/mac80211/iface.c index 41531478437c..15a73b7fdd75 100644 --- a/net/mac80211/iface.c +++ b/net/mac80211/iface.c @@ -377,7 +377,9 @@ static void ieee80211_do_stop(struct ieee80211_sub_if_data *sdata, bool going_do bool cancel_scan; struct cfg80211_nan_func *func; + spin_lock_bh(&local->fq.lock); clear_bit(SDATA_STATE_RUNNING, &sdata->state); + spin_unlock_bh(&local->fq.lock); cancel_scan = rcu_access_pointer(local->scan_sdata) == sdata; if (cancel_scan) |