From: Johannes Berg Date: Mon, 13 May 2013 14:42:40 +0000 (+0200) Subject: mac80211: fix AP-mode frame matching X-Git-Tag: upstream/snapshot3+hdmi~4870^2~34^2~56 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2b9ccd4e4308272e5aec614b77c5385e7ec2ec90;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git mac80211: fix AP-mode frame matching In AP mode, ignore frames with mis-matched BSSID that aren't multicast or sent to the correct destination. This fixes reporting public action frames to userspace multiple times on multiple virtual AP interfaces. Cc: stable@vger.kernel.org Reported-by: Jouni Malinen Signed-off-by: Johannes Berg --- diff --git a/net/mac80211/rx.c b/net/mac80211/rx.c index c8447af..8e29526 100644 --- a/net/mac80211/rx.c +++ b/net/mac80211/rx.c @@ -3036,6 +3036,9 @@ static int prepare_for_handlers(struct ieee80211_rx_data *rx, * and location updates. Note that mac80211 * itself never looks at these frames. */ + if (!multicast && + !ether_addr_equal(sdata->vif.addr, hdr->addr1)) + return 0; if (ieee80211_is_public_action(hdr, skb->len)) return 1; if (!ieee80211_is_beacon(hdr->frame_control))