wifi: mac80211: fix race condition on enabling fast-xmit
authorFelix Fietkau <nbd@nbd.name>
Thu, 4 Jan 2024 18:10:59 +0000 (19:10 +0100)
committerJohannes Berg <johannes.berg@intel.com>
Thu, 18 Jan 2024 13:51:15 +0000 (14:51 +0100)
fast-xmit must only be enabled after the sta has been uploaded to the driver,
otherwise it could end up passing the not-yet-uploaded sta via drv_tx calls
to the driver, leading to potential crashes because of uninitialized drv_priv
data.
Add a missing sta->uploaded check and re-check fast xmit after inserting a sta.

Signed-off-by: Felix Fietkau <nbd@nbd.name>
Link: https://msgid.link/20240104181059.84032-1-nbd@nbd.name
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
net/mac80211/sta_info.c
net/mac80211/tx.c

index c33decbb97f2d7dcedda94acfb4193cbba02afb4..bcf3f727fc6dafdae78dc8ae52851600a7524c9c 100644 (file)
@@ -913,6 +913,8 @@ static int sta_info_insert_finish(struct sta_info *sta) __acquires(RCU)
        if (ieee80211_vif_is_mesh(&sdata->vif))
                mesh_accept_plinks_update(sdata);
 
+       ieee80211_check_fast_xmit(sta);
+
        return 0;
  out_remove:
        if (sta->sta.valid_links)
index ed4fdf655343f2ef5c4e655e88df66898eb101ff..4b2823e36a374685458655d6e7788d64a976b9fe 100644 (file)
@@ -3048,7 +3048,7 @@ void ieee80211_check_fast_xmit(struct sta_info *sta)
            sdata->vif.type == NL80211_IFTYPE_STATION)
                goto out;
 
-       if (!test_sta_flag(sta, WLAN_STA_AUTHORIZED))
+       if (!test_sta_flag(sta, WLAN_STA_AUTHORIZED) || !sta->uploaded)
                goto out;
 
        if (test_sta_flag(sta, WLAN_STA_PS_STA) ||