Skip to content

Commit f7fbf70

Browse files
Javier Cardonajmberg-intel
authored andcommitted
mac80211: don't inspect Sequence Control field on control frames
Per IEEE Std. 802.11-2012, Sec 8.2.4.4.1, the sequence Control field is not present in control frames. We noticed this problem when processing Block Ack Requests. Cc: stable@vger.kernel.org Signed-off-by: Javier Cardona <javier@cozybit.com> Signed-off-by: Javier Lopez <jlopex@cozybit.com> Signed-off-by: Johannes Berg <johannes.berg@intel.com>
1 parent 2ac64cd commit f7fbf70

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

net/mac80211/rx.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1462,6 +1462,10 @@ ieee80211_rx_h_defragment(struct ieee80211_rx_data *rx)
14621462

14631463
hdr = (struct ieee80211_hdr *)rx->skb->data;
14641464
fc = hdr->frame_control;
1465+
1466+
if (ieee80211_is_ctl(fc))
1467+
return RX_CONTINUE;
1468+
14651469
sc = le16_to_cpu(hdr->seq_ctrl);
14661470
frag = sc & IEEE80211_SCTL_FRAG;
14671471

0 commit comments

Comments
 (0)