wifi: mac80211: fast-xmit: handle non-MLO clients
authorJohannes Berg <johannes.berg@intel.com>
Mon, 18 Jul 2022 14:58:18 +0000 (16:58 +0200)
committerJohannes Berg <johannes.berg@intel.com>
Fri, 22 Jul 2022 12:27:58 +0000 (14:27 +0200)
If there's a non-MLO client, the A2 must be set to the BSSID
of the link since no translation will happen in lower layers
and it's needed that way for encryption.

Signed-off-by: Johannes Berg <johannes.berg@intel.com>
net/mac80211/tx.c

index cded1b207b73a1ad382242d9c4954b8db74692f7..f246b3d264ee63958461e44da3054a90e59fcf14 100644 (file)
@@ -3045,7 +3045,21 @@ void ieee80211_check_fast_xmit(struct sta_info *sta)
                fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS);
                /* DA BSSID SA */
                build.da_offs = offsetof(struct ieee80211_hdr, addr1);
-               memcpy(hdr->addr2, sdata->vif.addr, ETH_ALEN);
+               if (sta->sta.mlo || !sdata->vif.valid_links) {
+                       memcpy(hdr->addr2, sdata->vif.addr, ETH_ALEN);
+               } else {
+                       unsigned int link_id = sta->deflink.link_id;
+                       struct ieee80211_link_data *link;
+
+                       rcu_read_lock();
+                       link = rcu_dereference(sdata->link[link_id]);
+                       if (WARN_ON(!link)) {
+                               rcu_read_unlock();
+                               goto out;
+                       }
+                       memcpy(hdr->addr2, link->conf->addr, ETH_ALEN);
+                       rcu_read_unlock();
+               }
                build.sa_offs = offsetof(struct ieee80211_hdr, addr3);
                build.hdr_len = 24;
                break;