diff options
author | Andrei Otcheretianski <andrei.otcheretianski@intel.com> | 2022-06-30 15:43:44 +0200 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2022-07-15 11:43:20 +0200 |
commit | 0d5891e347a4924a6e6fd8e2799e3d3c762983eb (patch) | |
tree | e609fb58893eec783e0e7f428b8fccc12891ba61 /net/mac80211/tx.c | |
parent | wifi: mac80211: Allow EAPOL frames from link addresses (diff) | |
download | linux-0d5891e347a4924a6e6fd8e2799e3d3c762983eb.tar.xz linux-0d5891e347a4924a6e6fd8e2799e3d3c762983eb.zip |
wifi: mac80211: Allow EAPOL tx from specific link
Allow link source address on TX.
Signed-off-by: Andrei Otcheretianski <andrei.otcheretianski@intel.com>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/mac80211/tx.c')
-rw-r--r-- | net/mac80211/tx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/mac80211/tx.c b/net/mac80211/tx.c index 8f25cfe0d543..9d91a5f28044 100644 --- a/net/mac80211/tx.c +++ b/net/mac80211/tx.c @@ -2781,7 +2781,7 @@ static struct sk_buff *ieee80211_build_hdr(struct ieee80211_sub_if_data *sdata, (sdata->vif.type != NL80211_IFTYPE_OCB) && !multicast && !authorized && (cpu_to_be16(ethertype) != sdata->control_port_protocol || - !ether_addr_equal(sdata->vif.addr, skb->data + ETH_ALEN)))) { + !ieee80211_is_our_addr(sdata, skb->data + ETH_ALEN, NULL)))) { #ifdef CONFIG_MAC80211_VERBOSE_DEBUG net_info_ratelimited("%s: dropped frame to %pM (unauthorized port)\n", sdata->name, hdr.addr1); |