summaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorDenis Kenzior <denkenz@gmail.com>2019-08-27 17:41:19 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2019-09-06 10:22:21 +0200
commit4f139c0376fb028d64d7a6ca5ad0a3c8dc78941f (patch)
tree4a6dd693fd1792091e4a22736370577fbf1090c9 /net
parent58f91aac4dfe184b07584533f83b51e0a9a39cf8 (diff)
downloadlinux-stable-4f139c0376fb028d64d7a6ca5ad0a3c8dc78941f.tar.gz
linux-stable-4f139c0376fb028d64d7a6ca5ad0a3c8dc78941f.tar.bz2
linux-stable-4f139c0376fb028d64d7a6ca5ad0a3c8dc78941f.zip
mac80211: Don't memset RXCB prior to PAE intercept
commit c8a41c6afa27b8c3f61622dfd882b912da9d6721 upstream. In ieee80211_deliver_skb_to_local_stack intercepts EAPoL frames if mac80211 is configured to do so and forwards the contents over nl80211. During this process some additional data is also forwarded, including whether the frame was received encrypted or not. Unfortunately just prior to the call to ieee80211_deliver_skb_to_local_stack, skb->cb is cleared, resulting in incorrect data being exposed over nl80211. Fixes: 018f6fbf540d ("mac80211: Send control port frames over nl80211") Cc: stable@vger.kernel.org Signed-off-by: Denis Kenzior <denkenz@gmail.com> Link: https://lore.kernel.org/r/20190827224120.14545-2-denkenz@gmail.com Signed-off-by: Johannes Berg <johannes.berg@intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'net')
-rw-r--r--net/mac80211/rx.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/mac80211/rx.c b/net/mac80211/rx.c
index 7523d995ea8a..348e9ddaf312 100644
--- a/net/mac80211/rx.c
+++ b/net/mac80211/rx.c
@@ -2377,6 +2377,8 @@ static void ieee80211_deliver_skb_to_local_stack(struct sk_buff *skb,
cfg80211_rx_control_port(dev, skb, noencrypt);
dev_kfree_skb(skb);
} else {
+ memset(skb->cb, 0, sizeof(skb->cb));
+
/* deliver to local stack */
if (rx->napi)
napi_gro_receive(rx->napi, skb);
@@ -2470,8 +2472,6 @@ ieee80211_deliver_skb(struct ieee80211_rx_data *rx)
if (skb) {
skb->protocol = eth_type_trans(skb, dev);
- memset(skb->cb, 0, sizeof(skb->cb));
-
ieee80211_deliver_skb_to_local_stack(skb, rx);
}