blob: 41f46d66eedec2dbb158260ec8f03f00edaf9349 [file] [log] [blame]
From d90c8383297753b4d89012b6b5e5760e919b6503 Mon Sep 17 00:00:00 2001
From: Michael-CY Lee <michael-cy.lee@mediatek.com>
Date: Thu, 25 Jan 2024 14:07:23 +0800
Subject: [PATCH 50/61] mtk: mac80211: fix AP mgmt not encrypted in WDS mode
with PMF on
In ieee80211_tx_prepare(), if tx->sta is still NULL after calling
sta_info_get(), the skb might be mgmt for WDS peer, so sta_info_get_bss()
if called to find sta from AP_VLAN, and then interface type & 4-addr
using is checked.
Signed-off-by: Michael-CY Lee <michael-cy.lee@mediatek.com>
---
net/mac80211/tx.c | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/net/mac80211/tx.c b/net/mac80211/tx.c
index e72bb7e..2808bc2 100644
--- a/net/mac80211/tx.c
+++ b/net/mac80211/tx.c
@@ -1234,6 +1234,13 @@ ieee80211_tx_prepare(struct ieee80211_sub_if_data *sdata,
if (!tx->sta && !is_multicast_ether_addr(hdr->addr1)) {
tx->sta = sta_info_get(sdata, hdr->addr1);
aggr_check = true;
+
+ if (!tx->sta) {
+ tx->sta = sta_info_get_bss(sdata, hdr->addr1);
+ if (!tx->sta || !tx->sta->sdata->wdev.use_4addr ||
+ tx->sta->sdata->vif.type != NL80211_IFTYPE_AP_VLAN)
+ tx->sta = NULL;
+ }
}
}
--
2.18.0