Skip to content

Commit 769dc04

Browse files
egrumbachjmberg-intel
authored andcommitted
mac80211: don't look at the PM bit of BAR frames
When a peer sends a BAR frame with PM bit clear, we should not modify its PM state as madated by the spec in 802.11-20012 10.2.1.2. Cc: stable@vger.kernel.org Signed-off-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com> Signed-off-by: Johannes Berg <johannes.berg@intel.com>
1 parent 0bed865 commit 769dc04

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

net/mac80211/rx.c

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1613,12 +1613,16 @@ ieee80211_rx_h_sta_process(struct ieee80211_rx_data *rx)
16131613
*/
16141614
if (!ieee80211_hw_check(&sta->local->hw, AP_LINK_PS) &&
16151615
!ieee80211_has_morefrags(hdr->frame_control) &&
1616+
!ieee80211_is_back_req(hdr->frame_control) &&
16161617
!(status->rx_flags & IEEE80211_RX_DEFERRED_RELEASE) &&
16171618
(rx->sdata->vif.type == NL80211_IFTYPE_AP ||
16181619
rx->sdata->vif.type == NL80211_IFTYPE_AP_VLAN) &&
1619-
/* PM bit is only checked in frames where it isn't reserved,
1620+
/*
1621+
* PM bit is only checked in frames where it isn't reserved,
16201622
* in AP mode it's reserved in non-bufferable management frames
16211623
* (cf. IEEE 802.11-2012 8.2.4.1.7 Power Management field)
1624+
* BAR frames should be ignored as specified in
1625+
* IEEE 802.11-2012 10.2.1.2.
16221626
*/
16231627
(!ieee80211_is_mgmt(hdr->frame_control) ||
16241628
ieee80211_is_bufferable_mmpdu(hdr->frame_control))) {

0 commit comments

Comments
 (0)