blob: 817bf22dad5a1b4e56974dfb21720bb3a1ffafb1 [file] [log] [blame]
Johannes Berg571ecf62007-07-27 15:43:22 +02001/*
2 * Copyright 2002-2005, Instant802 Networks, Inc.
3 * Copyright 2005-2006, Devicescape Software, Inc.
4 * Copyright 2006-2007 Jiri Benc <jbenc@suse.cz>
Johannes Berg84040802010-02-15 12:46:39 +02005 * Copyright 2007-2010 Johannes Berg <johannes@sipsolutions.net>
Johannes Bergd98ad832014-09-03 15:24:57 +03006 * Copyright 2013-2014 Intel Mobile Communications GmbH
Johannes Berg571ecf62007-07-27 15:43:22 +02007 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 */
12
S.Çağlar Onurab466232008-02-14 17:36:47 +020013#include <linux/jiffies.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090014#include <linux/slab.h>
Johannes Berg571ecf62007-07-27 15:43:22 +020015#include <linux/kernel.h>
16#include <linux/skbuff.h>
17#include <linux/netdevice.h>
18#include <linux/etherdevice.h>
Johannes Bergd4e46a32007-09-14 11:10:24 -040019#include <linux/rcupdate.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040020#include <linux/export.h>
Johannes Berg571ecf62007-07-27 15:43:22 +020021#include <net/mac80211.h>
22#include <net/ieee80211_radiotap.h>
Johannes Bergd26ad372012-02-20 11:38:41 +010023#include <asm/unaligned.h>
Johannes Berg571ecf62007-07-27 15:43:22 +020024
25#include "ieee80211_i.h"
Johannes Berg24487982009-04-23 18:52:52 +020026#include "driver-ops.h"
Johannes Berg2c8dccc2008-04-08 15:14:40 -040027#include "led.h"
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +010028#include "mesh.h"
Johannes Berg571ecf62007-07-27 15:43:22 +020029#include "wep.h"
30#include "wpa.h"
31#include "tkip.h"
32#include "wme.h"
Johannes Berg1d8d3de2011-12-16 15:28:57 +010033#include "rate.h"
Johannes Berg571ecf62007-07-27 15:43:22 +020034
Johannes Berg5a490512015-04-22 17:10:38 +020035static inline void ieee80211_rx_stats(struct net_device *dev, u32 len)
36{
37 struct pcpu_sw_netstats *tstats = this_cpu_ptr(dev->tstats);
38
39 u64_stats_update_begin(&tstats->syncp);
40 tstats->rx_packets++;
41 tstats->rx_bytes += len;
42 u64_stats_update_end(&tstats->syncp);
43}
44
Johannes Berga6828492015-06-16 15:17:15 +020045static u8 *ieee80211_get_bssid(struct ieee80211_hdr *hdr, size_t len,
46 enum nl80211_iftype type)
47{
48 __le16 fc = hdr->frame_control;
49
50 if (ieee80211_is_data(fc)) {
51 if (len < 24) /* drop incorrect hdr len (data) */
52 return NULL;
53
54 if (ieee80211_has_a4(fc))
55 return NULL;
56 if (ieee80211_has_tods(fc))
57 return hdr->addr1;
58 if (ieee80211_has_fromds(fc))
59 return hdr->addr2;
60
61 return hdr->addr3;
62 }
63
64 if (ieee80211_is_mgmt(fc)) {
65 if (len < 24) /* drop incorrect hdr len (mgmt) */
66 return NULL;
67 return hdr->addr3;
68 }
69
70 if (ieee80211_is_ctl(fc)) {
71 if (ieee80211_is_pspoll(fc))
72 return hdr->addr1;
73
74 if (ieee80211_is_back_req(fc)) {
75 switch (type) {
76 case NL80211_IFTYPE_STATION:
77 return hdr->addr2;
78 case NL80211_IFTYPE_AP:
79 case NL80211_IFTYPE_AP_VLAN:
80 return hdr->addr1;
81 default:
82 break; /* fall through to the return */
83 }
84 }
85 }
86
87 return NULL;
88}
89
Johannes Bergb2e77712007-09-26 15:19:39 +020090/*
91 * monitor mode reception
92 *
93 * This function cleans up the SKB, i.e. it removes all the stuff
94 * only useful for monitoring.
95 */
96static struct sk_buff *remove_monitor_info(struct ieee80211_local *local,
Johannes Berg1f7bba72014-11-06 22:56:36 +010097 struct sk_buff *skb,
98 unsigned int rtap_vendor_space)
Johannes Bergb2e77712007-09-26 15:19:39 +020099{
Johannes Berg30686bf2015-06-02 21:39:54 +0200100 if (ieee80211_hw_check(&local->hw, RX_INCLUDES_FCS)) {
Johannes Bergb2e77712007-09-26 15:19:39 +0200101 if (likely(skb->len > FCS_LEN))
Zhu Yie3cf8b32010-03-29 17:35:07 +0800102 __pskb_trim(skb, skb->len - FCS_LEN);
Johannes Bergb2e77712007-09-26 15:19:39 +0200103 else {
104 /* driver bug */
105 WARN_ON(1);
106 dev_kfree_skb(skb);
Dan Carpenter06247602012-11-27 20:31:19 +0300107 return NULL;
Johannes Bergb2e77712007-09-26 15:19:39 +0200108 }
109 }
110
Johannes Berg1f7bba72014-11-06 22:56:36 +0100111 __pskb_pull(skb, rtap_vendor_space);
112
Johannes Bergb2e77712007-09-26 15:19:39 +0200113 return skb;
114}
115
Johannes Berg1f7bba72014-11-06 22:56:36 +0100116static inline bool should_drop_frame(struct sk_buff *skb, int present_fcs_len,
117 unsigned int rtap_vendor_space)
Johannes Bergb2e77712007-09-26 15:19:39 +0200118{
Johannes Bergf1d58c22009-06-17 13:13:00 +0200119 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
Johannes Berg1f7bba72014-11-06 22:56:36 +0100120 struct ieee80211_hdr *hdr;
121
122 hdr = (void *)(skb->data + rtap_vendor_space);
Johannes Bergb2e77712007-09-26 15:19:39 +0200123
Johannes Berg4c298672012-07-05 11:34:31 +0200124 if (status->flag & (RX_FLAG_FAILED_FCS_CRC |
125 RX_FLAG_FAILED_PLCP_CRC |
126 RX_FLAG_AMPDU_IS_ZEROLEN))
Zhao, Gang6b59db72014-04-21 12:52:59 +0800127 return true;
128
Johannes Berg1f7bba72014-11-06 22:56:36 +0100129 if (unlikely(skb->len < 16 + present_fcs_len + rtap_vendor_space))
Zhao, Gang6b59db72014-04-21 12:52:59 +0800130 return true;
131
Harvey Harrison87228f52008-06-11 14:21:59 -0700132 if (ieee80211_is_ctl(hdr->frame_control) &&
133 !ieee80211_is_pspoll(hdr->frame_control) &&
134 !ieee80211_is_back_req(hdr->frame_control))
Zhao, Gang6b59db72014-04-21 12:52:59 +0800135 return true;
136
137 return false;
Johannes Bergb2e77712007-09-26 15:19:39 +0200138}
139
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200140static int
Johannes Berg1f7bba72014-11-06 22:56:36 +0100141ieee80211_rx_radiotap_hdrlen(struct ieee80211_local *local,
142 struct ieee80211_rx_status *status,
143 struct sk_buff *skb)
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200144{
145 int len;
146
147 /* always present fields */
Johannes Berga144f372013-07-03 13:34:02 +0200148 len = sizeof(struct ieee80211_radiotap_header) + 8;
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200149
Johannes Berga144f372013-07-03 13:34:02 +0200150 /* allocate extra bitmaps */
Johannes Berga144f372013-07-03 13:34:02 +0200151 if (status->chains)
152 len += 4 * hweight8(status->chains);
Johannes Berg90b9e4462012-11-16 10:09:08 +0100153
154 if (ieee80211_have_rx_timestamp(status)) {
155 len = ALIGN(len, 8);
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200156 len += 8;
Johannes Berg90b9e4462012-11-16 10:09:08 +0100157 }
Johannes Berg30686bf2015-06-02 21:39:54 +0200158 if (ieee80211_hw_check(&local->hw, SIGNAL_DBM))
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200159 len += 1;
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200160
Johannes Berga144f372013-07-03 13:34:02 +0200161 /* antenna field, if we don't have per-chain info */
162 if (!status->chains)
163 len += 1;
164
Johannes Berg90b9e4462012-11-16 10:09:08 +0100165 /* padding for RX_FLAGS if necessary */
166 len = ALIGN(len, 2);
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200167
Johannes Berg6d744ba2011-01-27 14:13:17 +0100168 if (status->flag & RX_FLAG_HT) /* HT info */
169 len += 3;
170
Johannes Berg4c298672012-07-05 11:34:31 +0200171 if (status->flag & RX_FLAG_AMPDU_DETAILS) {
Johannes Berg90b9e4462012-11-16 10:09:08 +0100172 len = ALIGN(len, 4);
Johannes Berg4c298672012-07-05 11:34:31 +0200173 len += 8;
174 }
175
Johannes Berg51648922012-11-22 23:00:18 +0100176 if (status->flag & RX_FLAG_VHT) {
177 len = ALIGN(len, 2);
178 len += 12;
179 }
180
Johannes Berga144f372013-07-03 13:34:02 +0200181 if (status->chains) {
182 /* antenna and antenna signal fields */
183 len += 2 * hweight8(status->chains);
184 }
185
Johannes Berg1f7bba72014-11-06 22:56:36 +0100186 if (status->flag & RX_FLAG_RADIOTAP_VENDOR_DATA) {
187 struct ieee80211_vendor_radiotap *rtap = (void *)skb->data;
188
189 /* vendor presence bitmap */
190 len += 4;
191 /* alignment for fixed 6-byte vendor data header */
192 len = ALIGN(len, 2);
193 /* vendor data header */
194 len += 6;
195 if (WARN_ON(rtap->align == 0))
196 rtap->align = 1;
197 len = ALIGN(len, rtap->align);
198 len += rtap->len + rtap->pad;
199 }
200
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200201 return len;
202}
203
Johannes Berg00ea6de2012-09-05 15:54:51 +0200204/*
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200205 * ieee80211_add_rx_radiotap_header - add radiotap header
206 *
207 * add a radiotap header containing all the fields which the hardware provided.
208 */
209static void
210ieee80211_add_rx_radiotap_header(struct ieee80211_local *local,
211 struct sk_buff *skb,
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200212 struct ieee80211_rate *rate,
Felix Fietkau973ef212012-04-16 14:56:48 +0200213 int rtap_len, bool has_fcs)
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200214{
Johannes Bergf1d58c22009-06-17 13:13:00 +0200215 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200216 struct ieee80211_radiotap_header *rthdr;
217 unsigned char *pos;
Johannes Berga144f372013-07-03 13:34:02 +0200218 __le32 *it_present;
219 u32 it_present_val;
Johannes Berg6a86b9c2009-10-28 09:58:52 +0100220 u16 rx_flags = 0;
Simon Wunderlicha5e70692013-07-08 16:55:52 +0200221 u16 channel_flags = 0;
Johannes Berga144f372013-07-03 13:34:02 +0200222 int mpdulen, chain;
223 unsigned long chains = status->chains;
Johannes Berg1f7bba72014-11-06 22:56:36 +0100224 struct ieee80211_vendor_radiotap rtap = {};
225
226 if (status->flag & RX_FLAG_RADIOTAP_VENDOR_DATA) {
227 rtap = *(struct ieee80211_vendor_radiotap *)skb->data;
228 /* rtap.len and rtap.pad are undone immediately */
229 skb_pull(skb, sizeof(rtap) + rtap.len + rtap.pad);
230 }
Thomas Pedersenf4bda332012-11-13 10:46:27 -0800231
232 mpdulen = skb->len;
Johannes Berg30686bf2015-06-02 21:39:54 +0200233 if (!(has_fcs && ieee80211_hw_check(&local->hw, RX_INCLUDES_FCS)))
Thomas Pedersenf4bda332012-11-13 10:46:27 -0800234 mpdulen += FCS_LEN;
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200235
236 rthdr = (struct ieee80211_radiotap_header *)skb_push(skb, rtap_len);
Johannes Berg1f7bba72014-11-06 22:56:36 +0100237 memset(rthdr, 0, rtap_len - rtap.len - rtap.pad);
Johannes Berga144f372013-07-03 13:34:02 +0200238 it_present = &rthdr->it_present;
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200239
240 /* radiotap header, set always present flags */
Emmanuel Grumbach0059b2b2014-02-05 16:36:01 +0200241 rthdr->it_len = cpu_to_le16(rtap_len);
Johannes Berga144f372013-07-03 13:34:02 +0200242 it_present_val = BIT(IEEE80211_RADIOTAP_FLAGS) |
243 BIT(IEEE80211_RADIOTAP_CHANNEL) |
244 BIT(IEEE80211_RADIOTAP_RX_FLAGS);
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200245
Johannes Berga144f372013-07-03 13:34:02 +0200246 if (!status->chains)
247 it_present_val |= BIT(IEEE80211_RADIOTAP_ANTENNA);
248
249 for_each_set_bit(chain, &chains, IEEE80211_MAX_CHAINS) {
250 it_present_val |=
251 BIT(IEEE80211_RADIOTAP_EXT) |
252 BIT(IEEE80211_RADIOTAP_RADIOTAP_NAMESPACE);
253 put_unaligned_le32(it_present_val, it_present);
254 it_present++;
255 it_present_val = BIT(IEEE80211_RADIOTAP_ANTENNA) |
256 BIT(IEEE80211_RADIOTAP_DBM_ANTSIGNAL);
257 }
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200258
Johannes Berg1f7bba72014-11-06 22:56:36 +0100259 if (status->flag & RX_FLAG_RADIOTAP_VENDOR_DATA) {
260 it_present_val |= BIT(IEEE80211_RADIOTAP_VENDOR_NAMESPACE) |
261 BIT(IEEE80211_RADIOTAP_EXT);
262 put_unaligned_le32(it_present_val, it_present);
263 it_present++;
264 it_present_val = rtap.present;
265 }
266
Johannes Berga144f372013-07-03 13:34:02 +0200267 put_unaligned_le32(it_present_val, it_present);
268
269 pos = (void *)(it_present + 1);
270
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200271 /* the order of the following fields is important */
272
273 /* IEEE80211_RADIOTAP_TSFT */
Thomas Pedersenf4bda332012-11-13 10:46:27 -0800274 if (ieee80211_have_rx_timestamp(status)) {
Johannes Berg90b9e4462012-11-16 10:09:08 +0100275 /* padding */
276 while ((pos - (u8 *)rthdr) & 7)
277 *pos++ = 0;
Thomas Pedersenf4bda332012-11-13 10:46:27 -0800278 put_unaligned_le64(
279 ieee80211_calculate_rx_timestamp(local, status,
280 mpdulen, 0),
281 pos);
Johannes Berg1df332e2012-10-26 00:09:11 +0200282 rthdr->it_present |= cpu_to_le32(1 << IEEE80211_RADIOTAP_TSFT);
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200283 pos += 8;
284 }
285
286 /* IEEE80211_RADIOTAP_FLAGS */
Johannes Berg30686bf2015-06-02 21:39:54 +0200287 if (has_fcs && ieee80211_hw_check(&local->hw, RX_INCLUDES_FCS))
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200288 *pos |= IEEE80211_RADIOTAP_F_FCS;
Johannes Bergaae89832009-03-13 12:52:10 +0100289 if (status->flag & (RX_FLAG_FAILED_FCS_CRC | RX_FLAG_FAILED_PLCP_CRC))
290 *pos |= IEEE80211_RADIOTAP_F_BADFCS;
Bruno Randolfb4f28bb2008-07-30 17:19:55 +0200291 if (status->flag & RX_FLAG_SHORTPRE)
292 *pos |= IEEE80211_RADIOTAP_F_SHORTPRE;
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200293 pos++;
294
295 /* IEEE80211_RADIOTAP_RATE */
Johannes Berg56146182012-11-09 15:07:02 +0100296 if (!rate || status->flag & (RX_FLAG_HT | RX_FLAG_VHT)) {
Jouni Malinen0fb8ca42008-12-12 14:38:33 +0200297 /*
Johannes Bergf8d1ccf2011-11-08 12:28:33 +0100298 * Without rate information don't add it. If we have,
Mohammed Shafi Shajakhan38f37be2011-02-07 10:10:04 +0530299 * MCS information is a separate field in radiotap,
Johannes Berg73b48092011-04-18 17:05:21 +0200300 * added below. The byte here is needed as padding
301 * for the channel though, so initialise it to 0.
Jouni Malinen0fb8ca42008-12-12 14:38:33 +0200302 */
303 *pos = 0;
Jouni Malinen8d6f6582008-12-15 10:37:50 +0200304 } else {
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200305 int shift = 0;
Jouni Malinenebe6c7b2009-01-10 11:47:33 +0200306 rthdr->it_present |= cpu_to_le32(1 << IEEE80211_RADIOTAP_RATE);
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200307 if (status->flag & RX_FLAG_10MHZ)
308 shift = 1;
309 else if (status->flag & RX_FLAG_5MHZ)
310 shift = 2;
311 *pos = DIV_ROUND_UP(rate->bitrate, 5 * (1 << shift));
Jouni Malinen8d6f6582008-12-15 10:37:50 +0200312 }
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200313 pos++;
314
315 /* IEEE80211_RADIOTAP_CHANNEL */
Johannes Berg6a86b9c2009-10-28 09:58:52 +0100316 put_unaligned_le16(status->freq, pos);
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200317 pos += 2;
Simon Wunderlicha5e70692013-07-08 16:55:52 +0200318 if (status->flag & RX_FLAG_10MHZ)
319 channel_flags |= IEEE80211_CHAN_HALF;
320 else if (status->flag & RX_FLAG_5MHZ)
321 channel_flags |= IEEE80211_CHAN_QUARTER;
322
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200323 if (status->band == IEEE80211_BAND_5GHZ)
Simon Wunderlicha5e70692013-07-08 16:55:52 +0200324 channel_flags |= IEEE80211_CHAN_OFDM | IEEE80211_CHAN_5GHZ;
Johannes Berg56146182012-11-09 15:07:02 +0100325 else if (status->flag & (RX_FLAG_HT | RX_FLAG_VHT))
Simon Wunderlicha5e70692013-07-08 16:55:52 +0200326 channel_flags |= IEEE80211_CHAN_DYN | IEEE80211_CHAN_2GHZ;
Johannes Bergf8d1ccf2011-11-08 12:28:33 +0100327 else if (rate && rate->flags & IEEE80211_RATE_ERP_G)
Simon Wunderlicha5e70692013-07-08 16:55:52 +0200328 channel_flags |= IEEE80211_CHAN_OFDM | IEEE80211_CHAN_2GHZ;
Johannes Bergf8d1ccf2011-11-08 12:28:33 +0100329 else if (rate)
Mathy Vanhoef3a5c5e82015-01-20 15:05:08 +0100330 channel_flags |= IEEE80211_CHAN_CCK | IEEE80211_CHAN_2GHZ;
Johannes Bergf8d1ccf2011-11-08 12:28:33 +0100331 else
Simon Wunderlicha5e70692013-07-08 16:55:52 +0200332 channel_flags |= IEEE80211_CHAN_2GHZ;
333 put_unaligned_le16(channel_flags, pos);
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200334 pos += 2;
335
336 /* IEEE80211_RADIOTAP_DBM_ANTSIGNAL */
Johannes Berg30686bf2015-06-02 21:39:54 +0200337 if (ieee80211_hw_check(&local->hw, SIGNAL_DBM) &&
Felix Fietkaufe8431f2012-03-01 18:00:07 +0100338 !(status->flag & RX_FLAG_NO_SIGNAL_VAL)) {
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200339 *pos = status->signal;
340 rthdr->it_present |=
341 cpu_to_le32(1 << IEEE80211_RADIOTAP_DBM_ANTSIGNAL);
342 pos++;
343 }
344
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200345 /* IEEE80211_RADIOTAP_LOCK_QUALITY is missing */
346
Johannes Berga144f372013-07-03 13:34:02 +0200347 if (!status->chains) {
348 /* IEEE80211_RADIOTAP_ANTENNA */
349 *pos = status->antenna;
350 pos++;
351 }
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200352
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200353 /* IEEE80211_RADIOTAP_DB_ANTNOISE is not used */
354
355 /* IEEE80211_RADIOTAP_RX_FLAGS */
356 /* ensure 2 byte alignment for the 2 byte field as required */
Johannes Berg6a86b9c2009-10-28 09:58:52 +0100357 if ((pos - (u8 *)rthdr) & 1)
Johannes Berg90b9e4462012-11-16 10:09:08 +0100358 *pos++ = 0;
Johannes Bergaae89832009-03-13 12:52:10 +0100359 if (status->flag & RX_FLAG_FAILED_PLCP_CRC)
Johannes Berg6a86b9c2009-10-28 09:58:52 +0100360 rx_flags |= IEEE80211_RADIOTAP_F_RX_BADPLCP;
361 put_unaligned_le16(rx_flags, pos);
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200362 pos += 2;
Johannes Berg6d744ba2011-01-27 14:13:17 +0100363
364 if (status->flag & RX_FLAG_HT) {
Oleksij Rempel786677d2013-05-24 12:05:45 +0200365 unsigned int stbc;
366
Johannes Berg6d744ba2011-01-27 14:13:17 +0100367 rthdr->it_present |= cpu_to_le32(1 << IEEE80211_RADIOTAP_MCS);
Johannes Bergac55d2f2012-05-10 09:09:10 +0200368 *pos++ = local->hw.radiotap_mcs_details;
Johannes Berg6d744ba2011-01-27 14:13:17 +0100369 *pos = 0;
370 if (status->flag & RX_FLAG_SHORT_GI)
371 *pos |= IEEE80211_RADIOTAP_MCS_SGI;
372 if (status->flag & RX_FLAG_40MHZ)
373 *pos |= IEEE80211_RADIOTAP_MCS_BW_40;
Johannes Bergac55d2f2012-05-10 09:09:10 +0200374 if (status->flag & RX_FLAG_HT_GF)
375 *pos |= IEEE80211_RADIOTAP_MCS_FMT_GF;
Emmanuel Grumbach63c361f2014-02-05 12:48:53 +0200376 if (status->flag & RX_FLAG_LDPC)
377 *pos |= IEEE80211_RADIOTAP_MCS_FEC_LDPC;
Oleksij Rempel786677d2013-05-24 12:05:45 +0200378 stbc = (status->flag & RX_FLAG_STBC_MASK) >> RX_FLAG_STBC_SHIFT;
379 *pos |= stbc << IEEE80211_RADIOTAP_MCS_STBC_SHIFT;
Johannes Berg6d744ba2011-01-27 14:13:17 +0100380 pos++;
381 *pos++ = status->rate_idx;
382 }
Johannes Berg4c298672012-07-05 11:34:31 +0200383
384 if (status->flag & RX_FLAG_AMPDU_DETAILS) {
385 u16 flags = 0;
386
387 /* ensure 4 byte alignment */
388 while ((pos - (u8 *)rthdr) & 3)
389 pos++;
390 rthdr->it_present |=
391 cpu_to_le32(1 << IEEE80211_RADIOTAP_AMPDU_STATUS);
392 put_unaligned_le32(status->ampdu_reference, pos);
393 pos += 4;
394 if (status->flag & RX_FLAG_AMPDU_REPORT_ZEROLEN)
395 flags |= IEEE80211_RADIOTAP_AMPDU_REPORT_ZEROLEN;
396 if (status->flag & RX_FLAG_AMPDU_IS_ZEROLEN)
397 flags |= IEEE80211_RADIOTAP_AMPDU_IS_ZEROLEN;
398 if (status->flag & RX_FLAG_AMPDU_LAST_KNOWN)
399 flags |= IEEE80211_RADIOTAP_AMPDU_LAST_KNOWN;
400 if (status->flag & RX_FLAG_AMPDU_IS_LAST)
401 flags |= IEEE80211_RADIOTAP_AMPDU_IS_LAST;
402 if (status->flag & RX_FLAG_AMPDU_DELIM_CRC_ERROR)
403 flags |= IEEE80211_RADIOTAP_AMPDU_DELIM_CRC_ERR;
404 if (status->flag & RX_FLAG_AMPDU_DELIM_CRC_KNOWN)
405 flags |= IEEE80211_RADIOTAP_AMPDU_DELIM_CRC_KNOWN;
406 put_unaligned_le16(flags, pos);
407 pos += 2;
408 if (status->flag & RX_FLAG_AMPDU_DELIM_CRC_KNOWN)
409 *pos++ = status->ampdu_delimiter_crc;
410 else
411 *pos++ = 0;
412 *pos++ = 0;
413 }
Johannes Berg90b9e4462012-11-16 10:09:08 +0100414
Johannes Berg51648922012-11-22 23:00:18 +0100415 if (status->flag & RX_FLAG_VHT) {
416 u16 known = local->hw.radiotap_vht_details;
417
418 rthdr->it_present |= cpu_to_le32(1 << IEEE80211_RADIOTAP_VHT);
Johannes Berg51648922012-11-22 23:00:18 +0100419 put_unaligned_le16(known, pos);
420 pos += 2;
421 /* flags */
422 if (status->flag & RX_FLAG_SHORT_GI)
423 *pos |= IEEE80211_RADIOTAP_VHT_FLAG_SGI;
Emmanuel Grumbach63c361f2014-02-05 12:48:53 +0200424 /* in VHT, STBC is binary */
425 if (status->flag & RX_FLAG_STBC_MASK)
426 *pos |= IEEE80211_RADIOTAP_VHT_FLAG_STBC;
Emmanuel Grumbachfb378c22014-03-04 10:35:25 +0200427 if (status->vht_flag & RX_VHT_FLAG_BF)
428 *pos |= IEEE80211_RADIOTAP_VHT_FLAG_BEAMFORMED;
Johannes Berg51648922012-11-22 23:00:18 +0100429 pos++;
430 /* bandwidth */
Emmanuel Grumbach1b8d2422014-02-05 16:37:11 +0200431 if (status->vht_flag & RX_VHT_FLAG_80MHZ)
Johannes Berg51648922012-11-22 23:00:18 +0100432 *pos++ = 4;
Emmanuel Grumbach1b8d2422014-02-05 16:37:11 +0200433 else if (status->vht_flag & RX_VHT_FLAG_160MHZ)
Johannes Berg51648922012-11-22 23:00:18 +0100434 *pos++ = 11;
435 else if (status->flag & RX_FLAG_40MHZ)
436 *pos++ = 1;
437 else /* 20 MHz */
438 *pos++ = 0;
439 /* MCS/NSS */
440 *pos = (status->rate_idx << 4) | status->vht_nss;
441 pos += 4;
442 /* coding field */
Emmanuel Grumbach63c361f2014-02-05 12:48:53 +0200443 if (status->flag & RX_FLAG_LDPC)
444 *pos |= IEEE80211_RADIOTAP_CODING_LDPC_USER0;
Johannes Berg51648922012-11-22 23:00:18 +0100445 pos++;
446 /* group ID */
447 pos++;
448 /* partial_aid */
449 pos += 2;
450 }
451
Johannes Berga144f372013-07-03 13:34:02 +0200452 for_each_set_bit(chain, &chains, IEEE80211_MAX_CHAINS) {
453 *pos++ = status->chain_signal[chain];
454 *pos++ = chain;
455 }
Johannes Berg1f7bba72014-11-06 22:56:36 +0100456
457 if (status->flag & RX_FLAG_RADIOTAP_VENDOR_DATA) {
458 /* ensure 2 byte alignment for the vendor field as required */
459 if ((pos - (u8 *)rthdr) & 1)
460 *pos++ = 0;
461 *pos++ = rtap.oui[0];
462 *pos++ = rtap.oui[1];
463 *pos++ = rtap.oui[2];
464 *pos++ = rtap.subns;
465 put_unaligned_le16(rtap.len, pos);
466 pos += 2;
467 /* align the actual payload as requested */
468 while ((pos - (u8 *)rthdr) & (rtap.align - 1))
469 *pos++ = 0;
470 /* data (and possible padding) already follows */
471 }
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200472}
473
Johannes Bergb2e77712007-09-26 15:19:39 +0200474/*
475 * This function copies a received frame to all monitor interfaces and
476 * returns a cleaned-up SKB that no longer includes the FCS nor the
477 * radiotap header the driver might have added.
478 */
479static struct sk_buff *
480ieee80211_rx_monitor(struct ieee80211_local *local, struct sk_buff *origskb,
Johannes Berg8318d782008-01-24 19:38:38 +0100481 struct ieee80211_rate *rate)
Johannes Bergb2e77712007-09-26 15:19:39 +0200482{
Johannes Bergf1d58c22009-06-17 13:13:00 +0200483 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(origskb);
Johannes Bergb2e77712007-09-26 15:19:39 +0200484 struct ieee80211_sub_if_data *sdata;
Johannes Berg1f7bba72014-11-06 22:56:36 +0100485 int rt_hdrlen, needed_headroom;
Johannes Bergb2e77712007-09-26 15:19:39 +0200486 struct sk_buff *skb, *skb2;
487 struct net_device *prev_dev = NULL;
488 int present_fcs_len = 0;
Johannes Berg1f7bba72014-11-06 22:56:36 +0100489 unsigned int rtap_vendor_space = 0;
490
491 if (unlikely(status->flag & RX_FLAG_RADIOTAP_VENDOR_DATA)) {
492 struct ieee80211_vendor_radiotap *rtap = (void *)origskb->data;
493
494 rtap_vendor_space = sizeof(*rtap) + rtap->len + rtap->pad;
495 }
Johannes Bergb2e77712007-09-26 15:19:39 +0200496
497 /*
498 * First, we may need to make a copy of the skb because
499 * (1) we need to modify it for radiotap (if not present), and
500 * (2) the other RX handlers will modify the skb we got.
501 *
502 * We don't need to, of course, if we aren't going to return
503 * the SKB because it has a bad FCS/PLCP checksum.
504 */
Johannes Berg0869aea2009-10-28 10:03:35 +0100505
Johannes Berg30686bf2015-06-02 21:39:54 +0200506 if (ieee80211_hw_check(&local->hw, RX_INCLUDES_FCS))
Johannes Bergb2e77712007-09-26 15:19:39 +0200507 present_fcs_len = FCS_LEN;
508
Johannes Berg1f7bba72014-11-06 22:56:36 +0100509 /* ensure hdr->frame_control and vendor radiotap data are in skb head */
510 if (!pskb_may_pull(origskb, 2 + rtap_vendor_space)) {
Zhu Yie3cf8b32010-03-29 17:35:07 +0800511 dev_kfree_skb(origskb);
512 return NULL;
513 }
514
Johannes Bergb2e77712007-09-26 15:19:39 +0200515 if (!local->monitors) {
Johannes Berg1f7bba72014-11-06 22:56:36 +0100516 if (should_drop_frame(origskb, present_fcs_len,
517 rtap_vendor_space)) {
Johannes Bergb2e77712007-09-26 15:19:39 +0200518 dev_kfree_skb(origskb);
519 return NULL;
520 }
521
Johannes Berg1f7bba72014-11-06 22:56:36 +0100522 return remove_monitor_info(local, origskb, rtap_vendor_space);
Johannes Bergb2e77712007-09-26 15:19:39 +0200523 }
524
Helmut Schaa751413e2012-12-05 14:36:12 +0100525 /* room for the radiotap header based on driver features */
Johannes Berg1f7bba72014-11-06 22:56:36 +0100526 rt_hdrlen = ieee80211_rx_radiotap_hdrlen(local, status, origskb);
527 needed_headroom = rt_hdrlen - rtap_vendor_space;
Helmut Schaa751413e2012-12-05 14:36:12 +0100528
Johannes Berg1f7bba72014-11-06 22:56:36 +0100529 if (should_drop_frame(origskb, present_fcs_len, rtap_vendor_space)) {
Johannes Bergb2e77712007-09-26 15:19:39 +0200530 /* only need to expand headroom if necessary */
531 skb = origskb;
532 origskb = NULL;
533
534 /*
535 * This shouldn't trigger often because most devices have an
536 * RX header they pull before we get here, and that should
537 * be big enough for our radiotap information. We should
538 * probably export the length to drivers so that we can have
539 * them allocate enough headroom to start with.
540 */
541 if (skb_headroom(skb) < needed_headroom &&
Johannes Bergc49e5ea2007-12-11 21:33:42 +0100542 pskb_expand_head(skb, needed_headroom, 0, GFP_ATOMIC)) {
Johannes Bergb2e77712007-09-26 15:19:39 +0200543 dev_kfree_skb(skb);
544 return NULL;
545 }
546 } else {
547 /*
548 * Need to make a copy and possibly remove radiotap header
549 * and FCS from the original.
550 */
551 skb = skb_copy_expand(origskb, needed_headroom, 0, GFP_ATOMIC);
552
Johannes Berg1f7bba72014-11-06 22:56:36 +0100553 origskb = remove_monitor_info(local, origskb,
554 rtap_vendor_space);
Johannes Bergb2e77712007-09-26 15:19:39 +0200555
556 if (!skb)
557 return origskb;
558 }
559
Johannes Berg0869aea2009-10-28 10:03:35 +0100560 /* prepend radiotap information */
Johannes Berg1f7bba72014-11-06 22:56:36 +0100561 ieee80211_add_rx_radiotap_header(local, skb, rate, rt_hdrlen, true);
Johannes Bergb2e77712007-09-26 15:19:39 +0200562
Johannes Bergce3edf6d02007-12-19 01:31:22 +0100563 skb_reset_mac_header(skb);
Johannes Bergb2e77712007-09-26 15:19:39 +0200564 skb->ip_summed = CHECKSUM_UNNECESSARY;
565 skb->pkt_type = PACKET_OTHERHOST;
566 skb->protocol = htons(ETH_P_802_2);
567
568 list_for_each_entry_rcu(sdata, &local->interfaces, list) {
Johannes Berg05c914f2008-09-11 00:01:58 +0200569 if (sdata->vif.type != NL80211_IFTYPE_MONITOR)
Johannes Bergb2e77712007-09-26 15:19:39 +0200570 continue;
571
Michael Wu3d30d942008-01-31 19:48:27 +0100572 if (sdata->u.mntr_flags & MONITOR_FLAG_COOK_FRAMES)
573 continue;
574
Johannes Berg9607e6b2009-12-23 13:15:31 +0100575 if (!ieee80211_sdata_running(sdata))
Johannes Berg47846c92009-11-25 17:46:19 +0100576 continue;
577
Johannes Bergb2e77712007-09-26 15:19:39 +0200578 if (prev_dev) {
579 skb2 = skb_clone(skb, GFP_ATOMIC);
580 if (skb2) {
581 skb2->dev = prev_dev;
John W. Linville5548a8a2010-06-24 14:25:56 -0400582 netif_receive_skb(skb2);
Johannes Bergb2e77712007-09-26 15:19:39 +0200583 }
584 }
585
586 prev_dev = sdata->dev;
Johannes Berg5a490512015-04-22 17:10:38 +0200587 ieee80211_rx_stats(sdata->dev, skb->len);
Johannes Bergb2e77712007-09-26 15:19:39 +0200588 }
589
590 if (prev_dev) {
591 skb->dev = prev_dev;
John W. Linville5548a8a2010-06-24 14:25:56 -0400592 netif_receive_skb(skb);
Johannes Bergb2e77712007-09-26 15:19:39 +0200593 } else
594 dev_kfree_skb(skb);
595
596 return origskb;
597}
598
Johannes Berg5cf121c2008-02-25 16:27:43 +0100599static void ieee80211_parse_qos(struct ieee80211_rx_data *rx)
Johannes Berg6e0d1142007-07-27 15:43:22 +0200600{
Harvey Harrison238f74a2008-07-02 11:05:34 -0700601 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
Johannes Berg554891e2010-09-24 12:38:25 +0200602 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(rx->skb);
Johannes Berg9e262972011-07-07 18:45:03 +0200603 int tid, seqno_idx, security_idx;
Johannes Berg6e0d1142007-07-27 15:43:22 +0200604
605 /* does the frame have a qos control field? */
Harvey Harrison238f74a2008-07-02 11:05:34 -0700606 if (ieee80211_is_data_qos(hdr->frame_control)) {
607 u8 *qc = ieee80211_get_qos_ctl(hdr);
Johannes Berg6e0d1142007-07-27 15:43:22 +0200608 /* frame has qos control */
Harvey Harrison238f74a2008-07-02 11:05:34 -0700609 tid = *qc & IEEE80211_QOS_CTL_TID_MASK;
Johannes Berg04b7dcf2011-06-22 10:06:59 +0200610 if (*qc & IEEE80211_QOS_CTL_A_MSDU_PRESENT)
Johannes Berg554891e2010-09-24 12:38:25 +0200611 status->rx_flags |= IEEE80211_RX_AMSDU;
Johannes Berg9e262972011-07-07 18:45:03 +0200612
613 seqno_idx = tid;
614 security_idx = tid;
Johannes Berg6e0d1142007-07-27 15:43:22 +0200615 } else {
Johannes Berg1411f9b2008-07-10 10:11:02 +0200616 /*
617 * IEEE 802.11-2007, 7.1.3.4.1 ("Sequence Number field"):
618 *
619 * Sequence numbers for management frames, QoS data
620 * frames with a broadcast/multicast address in the
621 * Address 1 field, and all non-QoS data frames sent
622 * by QoS STAs are assigned using an additional single
623 * modulo-4096 counter, [...]
624 *
625 * We also use that counter for non-QoS STAs.
626 */
Johannes Berg5a306f52012-11-14 23:22:21 +0100627 seqno_idx = IEEE80211_NUM_TIDS;
Johannes Berg9e262972011-07-07 18:45:03 +0200628 security_idx = 0;
629 if (ieee80211_is_mgmt(hdr->frame_control))
Johannes Berg5a306f52012-11-14 23:22:21 +0100630 security_idx = IEEE80211_NUM_TIDS;
Johannes Berg9e262972011-07-07 18:45:03 +0200631 tid = 0;
Johannes Berg6e0d1142007-07-27 15:43:22 +0200632 }
Johannes Berg52865dfd2007-07-27 15:43:22 +0200633
Johannes Berg9e262972011-07-07 18:45:03 +0200634 rx->seqno_idx = seqno_idx;
635 rx->security_idx = security_idx;
Johannes Berg6e0d1142007-07-27 15:43:22 +0200636 /* Set skb->priority to 1d tag if highest order bit of TID is not set.
637 * For now, set skb->priority to 0 for other cases. */
638 rx->skb->priority = (tid > 7) ? 0 : tid;
Johannes Berg38f37142008-01-29 17:07:43 +0100639}
Johannes Berg6e0d1142007-07-27 15:43:22 +0200640
Johannes Bergd1c3a372009-01-07 00:26:10 +0100641/**
642 * DOC: Packet alignment
643 *
644 * Drivers always need to pass packets that are aligned to two-byte boundaries
645 * to the stack.
646 *
647 * Additionally, should, if possible, align the payload data in a way that
648 * guarantees that the contained IP header is aligned to a four-byte
649 * boundary. In the case of regular frames, this simply means aligning the
650 * payload to a four-byte boundary (because either the IP header is directly
651 * contained, or IV/RFC1042 headers that have a length divisible by four are
Kalle Valo59d9cb02009-12-17 13:54:57 +0100652 * in front of it). If the payload data is not properly aligned and the
653 * architecture doesn't support efficient unaligned operations, mac80211
654 * will align the data.
Johannes Bergd1c3a372009-01-07 00:26:10 +0100655 *
656 * With A-MSDU frames, however, the payload data address must yield two modulo
657 * four because there are 14-byte 802.3 headers within the A-MSDU frames that
658 * push the IP header further back to a multiple of four again. Thankfully, the
659 * specs were sane enough this time around to require padding each A-MSDU
660 * subframe to a length that is a multiple of four.
661 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300662 * Padding like Atheros hardware adds which is between the 802.11 header and
Johannes Bergd1c3a372009-01-07 00:26:10 +0100663 * the payload is not supported, the driver is required to move the 802.11
664 * header to be directly in front of the payload in that case.
665 */
666static void ieee80211_verify_alignment(struct ieee80211_rx_data *rx)
Johannes Berg38f37142008-01-29 17:07:43 +0100667{
Kalle Valo59d9cb02009-12-17 13:54:57 +0100668#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
669 WARN_ONCE((unsigned long)rx->skb->data & 1,
670 "unaligned packet at 0x%p\n", rx->skb->data);
Johannes Bergd1c3a372009-01-07 00:26:10 +0100671#endif
Johannes Berg6e0d1142007-07-27 15:43:22 +0200672}
673
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +0200674
Johannes Berg571ecf62007-07-27 15:43:22 +0200675/* rx handlers */
676
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200677static int ieee80211_is_unicast_robust_mgmt_frame(struct sk_buff *skb)
678{
679 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
680
Johannes Bergd8ca16d2014-01-23 16:20:29 +0100681 if (is_multicast_ether_addr(hdr->addr1))
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200682 return 0;
683
Johannes Bergd8ca16d2014-01-23 16:20:29 +0100684 return ieee80211_is_robust_mgmt_frame(skb);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200685}
686
687
688static int ieee80211_is_multicast_robust_mgmt_frame(struct sk_buff *skb)
689{
690 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
691
Johannes Bergd8ca16d2014-01-23 16:20:29 +0100692 if (!is_multicast_ether_addr(hdr->addr1))
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200693 return 0;
694
Johannes Bergd8ca16d2014-01-23 16:20:29 +0100695 return ieee80211_is_robust_mgmt_frame(skb);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200696}
697
698
699/* Get the BIP key index from MMIE; return -1 if this is not a BIP frame */
700static int ieee80211_get_mmie_keyidx(struct sk_buff *skb)
701{
702 struct ieee80211_mgmt *hdr = (struct ieee80211_mgmt *) skb->data;
703 struct ieee80211_mmie *mmie;
Jouni Malinen56c52da2015-01-24 19:52:08 +0200704 struct ieee80211_mmie_16 *mmie16;
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200705
Johannes Berg1df332e2012-10-26 00:09:11 +0200706 if (skb->len < 24 + sizeof(*mmie) || !is_multicast_ether_addr(hdr->da))
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200707 return -1;
708
Johannes Bergd8ca16d2014-01-23 16:20:29 +0100709 if (!ieee80211_is_robust_mgmt_frame(skb))
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200710 return -1; /* not a robust management frame */
711
712 mmie = (struct ieee80211_mmie *)
713 (skb->data + skb->len - sizeof(*mmie));
Jouni Malinen56c52da2015-01-24 19:52:08 +0200714 if (mmie->element_id == WLAN_EID_MMIE &&
715 mmie->length == sizeof(*mmie) - 2)
716 return le16_to_cpu(mmie->key_id);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200717
Jouni Malinen56c52da2015-01-24 19:52:08 +0200718 mmie16 = (struct ieee80211_mmie_16 *)
719 (skb->data + skb->len - sizeof(*mmie16));
720 if (skb->len >= 24 + sizeof(*mmie16) &&
721 mmie16->element_id == WLAN_EID_MMIE &&
722 mmie16->length == sizeof(*mmie16) - 2)
723 return le16_to_cpu(mmie16->key_id);
724
725 return -1;
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200726}
727
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200728static int iwl80211_get_cs_keyid(const struct ieee80211_cipher_scheme *cs,
729 struct sk_buff *skb)
730{
731 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
732 __le16 fc;
733 int hdrlen;
734 u8 keyid;
735
736 fc = hdr->frame_control;
737 hdrlen = ieee80211_hdrlen(fc);
738
739 if (skb->len < hdrlen + cs->hdr_len)
740 return -EINVAL;
741
742 skb_copy_bits(skb, hdrlen + cs->key_idx_off, &keyid, 1);
743 keyid &= cs->key_idx_mask;
744 keyid >>= cs->key_idx_shift;
745
746 return keyid;
747}
748
Johannes Berg1df332e2012-10-26 00:09:11 +0200749static ieee80211_rx_result ieee80211_rx_mesh_check(struct ieee80211_rx_data *rx)
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100750{
Harvey Harrisona7767f92008-07-02 16:30:51 -0700751 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
Johannes Berg47846c92009-11-25 17:46:19 +0100752 char *dev_addr = rx->sdata->vif.addr;
Johannes Bergd6d1a5a2008-02-25 16:24:38 +0100753
Harvey Harrisona7767f92008-07-02 16:30:51 -0700754 if (ieee80211_is_data(hdr->frame_control)) {
Javier Cardona3c5772a2009-08-10 12:15:48 -0700755 if (is_multicast_ether_addr(hdr->addr1)) {
756 if (ieee80211_has_tods(hdr->frame_control) ||
Johannes Berg1df332e2012-10-26 00:09:11 +0200757 !ieee80211_has_fromds(hdr->frame_control))
Javier Cardona3c5772a2009-08-10 12:15:48 -0700758 return RX_DROP_MONITOR;
Joe Perchesb203ca32012-05-08 18:56:52 +0000759 if (ether_addr_equal(hdr->addr3, dev_addr))
Javier Cardona3c5772a2009-08-10 12:15:48 -0700760 return RX_DROP_MONITOR;
761 } else {
762 if (!ieee80211_has_a4(hdr->frame_control))
763 return RX_DROP_MONITOR;
Joe Perchesb203ca32012-05-08 18:56:52 +0000764 if (ether_addr_equal(hdr->addr4, dev_addr))
Javier Cardona3c5772a2009-08-10 12:15:48 -0700765 return RX_DROP_MONITOR;
766 }
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100767 }
768
769 /* If there is not an established peer link and this is not a peer link
770 * establisment frame, beacon or probe, drop the frame.
771 */
772
Javier Cardona57cf8042011-05-13 10:45:43 -0700773 if (!rx->sta || sta_plink_state(rx->sta) != NL80211_PLINK_ESTAB) {
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100774 struct ieee80211_mgmt *mgmt;
Johannes Bergd6d1a5a2008-02-25 16:24:38 +0100775
Harvey Harrisona7767f92008-07-02 16:30:51 -0700776 if (!ieee80211_is_mgmt(hdr->frame_control))
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100777 return RX_DROP_MONITOR;
778
Harvey Harrisona7767f92008-07-02 16:30:51 -0700779 if (ieee80211_is_action(hdr->frame_control)) {
Javier Cardonad3aaec8a2011-05-03 16:57:09 -0700780 u8 category;
Johannes Berg9b395bc2012-10-26 00:36:40 +0200781
782 /* make sure category field is present */
783 if (rx->skb->len < IEEE80211_MIN_ACTION_SIZE)
784 return RX_DROP_MONITOR;
785
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100786 mgmt = (struct ieee80211_mgmt *)hdr;
Javier Cardonad3aaec8a2011-05-03 16:57:09 -0700787 category = mgmt->u.action.category;
788 if (category != WLAN_CATEGORY_MESH_ACTION &&
Johannes Berg1df332e2012-10-26 00:09:11 +0200789 category != WLAN_CATEGORY_SELF_PROTECTED)
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100790 return RX_DROP_MONITOR;
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100791 return RX_CONTINUE;
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100792 }
793
Harvey Harrisona7767f92008-07-02 16:30:51 -0700794 if (ieee80211_is_probe_req(hdr->frame_control) ||
795 ieee80211_is_probe_resp(hdr->frame_control) ||
Javier Cardona71839122011-04-07 15:08:31 -0700796 ieee80211_is_beacon(hdr->frame_control) ||
797 ieee80211_is_auth(hdr->frame_control))
Harvey Harrisona7767f92008-07-02 16:30:51 -0700798 return RX_CONTINUE;
799
800 return RX_DROP_MONITOR;
Harvey Harrisona7767f92008-07-02 16:30:51 -0700801 }
802
Johannes Berg902acc72008-02-23 15:17:19 +0100803 return RX_CONTINUE;
804}
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100805
Johannes Bergd3b2fb52012-06-22 12:48:38 +0200806static void ieee80211_release_reorder_frame(struct ieee80211_sub_if_data *sdata,
Johannes Berg1edfb1a2009-11-25 17:46:16 +0100807 struct tid_ampdu_rx *tid_agg_rx,
Christian Lamparterf9e124f2013-02-04 17:44:44 +0000808 int index,
809 struct sk_buff_head *frames)
Johannes Berg1edfb1a2009-11-25 17:46:16 +0100810{
Michal Kazior83eb9352014-07-16 12:09:31 +0200811 struct sk_buff_head *skb_list = &tid_agg_rx->reorder_buf[index];
812 struct sk_buff *skb;
Christian Lamparter4cfda472010-12-27 23:21:26 +0100813 struct ieee80211_rx_status *status;
Johannes Berg1edfb1a2009-11-25 17:46:16 +0100814
Johannes Bergdd318572010-11-29 11:09:16 +0100815 lockdep_assert_held(&tid_agg_rx->reorder_lock);
816
Michal Kazior83eb9352014-07-16 12:09:31 +0200817 if (skb_queue_empty(skb_list))
Johannes Berg1edfb1a2009-11-25 17:46:16 +0100818 goto no_frame;
819
Michal Kazior83eb9352014-07-16 12:09:31 +0200820 if (!ieee80211_rx_reorder_ready(skb_list)) {
821 __skb_queue_purge(skb_list);
822 goto no_frame;
823 }
824
825 /* release frames from the reorder ring buffer */
Johannes Berg1edfb1a2009-11-25 17:46:16 +0100826 tid_agg_rx->stored_mpdu_num--;
Michal Kazior83eb9352014-07-16 12:09:31 +0200827 while ((skb = __skb_dequeue(skb_list))) {
828 status = IEEE80211_SKB_RXCB(skb);
829 status->rx_flags |= IEEE80211_RX_DEFERRED_RELEASE;
830 __skb_queue_tail(frames, skb);
831 }
Johannes Berg1edfb1a2009-11-25 17:46:16 +0100832
833no_frame:
Johannes Berg9a886582013-02-15 19:25:00 +0100834 tid_agg_rx->head_seq_num = ieee80211_sn_inc(tid_agg_rx->head_seq_num);
Johannes Berg1edfb1a2009-11-25 17:46:16 +0100835}
836
Johannes Bergd3b2fb52012-06-22 12:48:38 +0200837static void ieee80211_release_reorder_frames(struct ieee80211_sub_if_data *sdata,
Johannes Berg1edfb1a2009-11-25 17:46:16 +0100838 struct tid_ampdu_rx *tid_agg_rx,
Christian Lamparterf9e124f2013-02-04 17:44:44 +0000839 u16 head_seq_num,
840 struct sk_buff_head *frames)
Johannes Berg1edfb1a2009-11-25 17:46:16 +0100841{
842 int index;
843
Johannes Bergdd318572010-11-29 11:09:16 +0100844 lockdep_assert_held(&tid_agg_rx->reorder_lock);
845
Johannes Berg9a886582013-02-15 19:25:00 +0100846 while (ieee80211_sn_less(tid_agg_rx->head_seq_num, head_seq_num)) {
Karl Beldan2e3049b2013-10-24 15:53:32 +0200847 index = tid_agg_rx->head_seq_num % tid_agg_rx->buf_size;
Christian Lamparterf9e124f2013-02-04 17:44:44 +0000848 ieee80211_release_reorder_frame(sdata, tid_agg_rx, index,
849 frames);
Johannes Berg1edfb1a2009-11-25 17:46:16 +0100850 }
851}
852
853/*
854 * Timeout (in jiffies) for skb's that are waiting in the RX reorder buffer. If
855 * the skb was added to the buffer longer than this time ago, the earlier
856 * frames that have not yet been received are assumed to be lost and the skb
857 * can be released for processing. This may also release other skb's from the
858 * reorder buffer if there are no additional gaps between the frames.
Christian Lamparter2bff8eb2010-08-05 01:36:41 +0200859 *
860 * Callers must hold tid_agg_rx->reorder_lock.
Johannes Berg1edfb1a2009-11-25 17:46:16 +0100861 */
862#define HT_RX_REORDER_BUF_TIMEOUT (HZ / 10)
863
Johannes Bergd3b2fb52012-06-22 12:48:38 +0200864static void ieee80211_sta_reorder_release(struct ieee80211_sub_if_data *sdata,
Christian Lamparterf9e124f2013-02-04 17:44:44 +0000865 struct tid_ampdu_rx *tid_agg_rx,
866 struct sk_buff_head *frames)
Christian Lamparteraa0c8632010-08-05 01:36:04 +0200867{
Michal Kazior83eb9352014-07-16 12:09:31 +0200868 int index, i, j;
Christian Lamparteraa0c8632010-08-05 01:36:04 +0200869
Johannes Bergdd318572010-11-29 11:09:16 +0100870 lockdep_assert_held(&tid_agg_rx->reorder_lock);
871
Christian Lamparteraa0c8632010-08-05 01:36:04 +0200872 /* release the buffer until next missing frame */
Karl Beldan2e3049b2013-10-24 15:53:32 +0200873 index = tid_agg_rx->head_seq_num % tid_agg_rx->buf_size;
Michal Kazior83eb9352014-07-16 12:09:31 +0200874 if (!ieee80211_rx_reorder_ready(&tid_agg_rx->reorder_buf[index]) &&
Eliad Peller07ae2df2012-02-01 18:48:09 +0200875 tid_agg_rx->stored_mpdu_num) {
Christian Lamparteraa0c8632010-08-05 01:36:04 +0200876 /*
877 * No buffers ready to be released, but check whether any
878 * frames in the reorder buffer have timed out.
879 */
Christian Lamparteraa0c8632010-08-05 01:36:04 +0200880 int skipped = 1;
881 for (j = (index + 1) % tid_agg_rx->buf_size; j != index;
882 j = (j + 1) % tid_agg_rx->buf_size) {
Michal Kazior83eb9352014-07-16 12:09:31 +0200883 if (!ieee80211_rx_reorder_ready(
884 &tid_agg_rx->reorder_buf[j])) {
Christian Lamparteraa0c8632010-08-05 01:36:04 +0200885 skipped++;
886 continue;
887 }
Daniel Halperin499fe9a2011-03-24 16:01:48 -0700888 if (skipped &&
889 !time_after(jiffies, tid_agg_rx->reorder_time[j] +
Christian Lamparteraa0c8632010-08-05 01:36:04 +0200890 HT_RX_REORDER_BUF_TIMEOUT))
Christian Lamparter2bff8eb2010-08-05 01:36:41 +0200891 goto set_release_timer;
Christian Lamparteraa0c8632010-08-05 01:36:04 +0200892
Michal Kazior83eb9352014-07-16 12:09:31 +0200893 /* don't leave incomplete A-MSDUs around */
894 for (i = (index + 1) % tid_agg_rx->buf_size; i != j;
895 i = (i + 1) % tid_agg_rx->buf_size)
896 __skb_queue_purge(&tid_agg_rx->reorder_buf[i]);
897
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200898 ht_dbg_ratelimited(sdata,
899 "release an RX reorder frame due to timeout on earlier frames\n");
Christian Lamparterf9e124f2013-02-04 17:44:44 +0000900 ieee80211_release_reorder_frame(sdata, tid_agg_rx, j,
901 frames);
Christian Lamparteraa0c8632010-08-05 01:36:04 +0200902
903 /*
904 * Increment the head seq# also for the skipped slots.
905 */
906 tid_agg_rx->head_seq_num =
Johannes Berg9a886582013-02-15 19:25:00 +0100907 (tid_agg_rx->head_seq_num +
908 skipped) & IEEE80211_SN_MASK;
Christian Lamparteraa0c8632010-08-05 01:36:04 +0200909 skipped = 0;
910 }
Michal Kazior83eb9352014-07-16 12:09:31 +0200911 } else while (ieee80211_rx_reorder_ready(
912 &tid_agg_rx->reorder_buf[index])) {
Christian Lamparterf9e124f2013-02-04 17:44:44 +0000913 ieee80211_release_reorder_frame(sdata, tid_agg_rx, index,
914 frames);
Karl Beldan2e3049b2013-10-24 15:53:32 +0200915 index = tid_agg_rx->head_seq_num % tid_agg_rx->buf_size;
Christian Lamparteraa0c8632010-08-05 01:36:04 +0200916 }
Christian Lamparter2bff8eb2010-08-05 01:36:41 +0200917
918 if (tid_agg_rx->stored_mpdu_num) {
Karl Beldan2e3049b2013-10-24 15:53:32 +0200919 j = index = tid_agg_rx->head_seq_num % tid_agg_rx->buf_size;
Christian Lamparter2bff8eb2010-08-05 01:36:41 +0200920
921 for (; j != (index - 1) % tid_agg_rx->buf_size;
922 j = (j + 1) % tid_agg_rx->buf_size) {
Michal Kazior83eb9352014-07-16 12:09:31 +0200923 if (ieee80211_rx_reorder_ready(
924 &tid_agg_rx->reorder_buf[j]))
Christian Lamparter2bff8eb2010-08-05 01:36:41 +0200925 break;
926 }
927
928 set_release_timer:
929
Johannes Berg788211d2015-04-01 14:20:42 +0200930 if (!tid_agg_rx->removed)
931 mod_timer(&tid_agg_rx->reorder_timer,
932 tid_agg_rx->reorder_time[j] + 1 +
933 HT_RX_REORDER_BUF_TIMEOUT);
Christian Lamparter2bff8eb2010-08-05 01:36:41 +0200934 } else {
935 del_timer(&tid_agg_rx->reorder_timer);
936 }
Christian Lamparteraa0c8632010-08-05 01:36:04 +0200937}
938
Johannes Berg1edfb1a2009-11-25 17:46:16 +0100939/*
940 * As this function belongs to the RX path it must be under
941 * rcu_read_lock protection. It returns false if the frame
942 * can be processed immediately, true if it was consumed.
943 */
Johannes Bergd3b2fb52012-06-22 12:48:38 +0200944static bool ieee80211_sta_manage_reorder_buf(struct ieee80211_sub_if_data *sdata,
Johannes Berg1edfb1a2009-11-25 17:46:16 +0100945 struct tid_ampdu_rx *tid_agg_rx,
Christian Lamparterf9e124f2013-02-04 17:44:44 +0000946 struct sk_buff *skb,
947 struct sk_buff_head *frames)
Johannes Berg1edfb1a2009-11-25 17:46:16 +0100948{
949 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
Michal Kazior83eb9352014-07-16 12:09:31 +0200950 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
Johannes Berg1edfb1a2009-11-25 17:46:16 +0100951 u16 sc = le16_to_cpu(hdr->seq_ctrl);
952 u16 mpdu_seq_num = (sc & IEEE80211_SCTL_SEQ) >> 4;
953 u16 head_seq_num, buf_size;
954 int index;
Christian Lamparter2bff8eb2010-08-05 01:36:41 +0200955 bool ret = true;
Johannes Berg1edfb1a2009-11-25 17:46:16 +0100956
Johannes Bergdd318572010-11-29 11:09:16 +0100957 spin_lock(&tid_agg_rx->reorder_lock);
958
Michal Kazior4549cf22014-09-02 14:05:10 +0200959 /*
960 * Offloaded BA sessions have no known starting sequence number so pick
961 * one from first Rxed frame for this tid after BA was started.
962 */
963 if (unlikely(tid_agg_rx->auto_seq)) {
964 tid_agg_rx->auto_seq = false;
965 tid_agg_rx->ssn = mpdu_seq_num;
966 tid_agg_rx->head_seq_num = mpdu_seq_num;
967 }
968
Johannes Berg1edfb1a2009-11-25 17:46:16 +0100969 buf_size = tid_agg_rx->buf_size;
970 head_seq_num = tid_agg_rx->head_seq_num;
971
972 /* frame with out of date sequence number */
Johannes Berg9a886582013-02-15 19:25:00 +0100973 if (ieee80211_sn_less(mpdu_seq_num, head_seq_num)) {
Johannes Berg1edfb1a2009-11-25 17:46:16 +0100974 dev_kfree_skb(skb);
Christian Lamparter2bff8eb2010-08-05 01:36:41 +0200975 goto out;
Johannes Berg1edfb1a2009-11-25 17:46:16 +0100976 }
977
978 /*
979 * If frame the sequence number exceeds our buffering window
980 * size release some previous frames to make room for this one.
981 */
Johannes Berg9a886582013-02-15 19:25:00 +0100982 if (!ieee80211_sn_less(mpdu_seq_num, head_seq_num + buf_size)) {
983 head_seq_num = ieee80211_sn_inc(
984 ieee80211_sn_sub(mpdu_seq_num, buf_size));
Johannes Berg1edfb1a2009-11-25 17:46:16 +0100985 /* release stored frames up to new head to stack */
Johannes Bergd3b2fb52012-06-22 12:48:38 +0200986 ieee80211_release_reorder_frames(sdata, tid_agg_rx,
Christian Lamparterf9e124f2013-02-04 17:44:44 +0000987 head_seq_num, frames);
Johannes Berg1edfb1a2009-11-25 17:46:16 +0100988 }
989
990 /* Now the new frame is always in the range of the reordering buffer */
991
Karl Beldan2e3049b2013-10-24 15:53:32 +0200992 index = mpdu_seq_num % tid_agg_rx->buf_size;
Johannes Berg1edfb1a2009-11-25 17:46:16 +0100993
994 /* check if we already stored this frame */
Michal Kazior83eb9352014-07-16 12:09:31 +0200995 if (ieee80211_rx_reorder_ready(&tid_agg_rx->reorder_buf[index])) {
Johannes Berg1edfb1a2009-11-25 17:46:16 +0100996 dev_kfree_skb(skb);
Christian Lamparter2bff8eb2010-08-05 01:36:41 +0200997 goto out;
Johannes Berg1edfb1a2009-11-25 17:46:16 +0100998 }
999
1000 /*
1001 * If the current MPDU is in the right order and nothing else
1002 * is stored we can process it directly, no need to buffer it.
Johannes Bergc835b212011-03-15 23:17:01 +01001003 * If it is first but there's something stored, we may be able
1004 * to release frames after this one.
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001005 */
1006 if (mpdu_seq_num == tid_agg_rx->head_seq_num &&
1007 tid_agg_rx->stored_mpdu_num == 0) {
Michal Kazior83eb9352014-07-16 12:09:31 +02001008 if (!(status->flag & RX_FLAG_AMSDU_MORE))
1009 tid_agg_rx->head_seq_num =
1010 ieee80211_sn_inc(tid_agg_rx->head_seq_num);
Christian Lamparter2bff8eb2010-08-05 01:36:41 +02001011 ret = false;
1012 goto out;
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001013 }
1014
1015 /* put the frame in the reordering buffer */
Michal Kazior83eb9352014-07-16 12:09:31 +02001016 __skb_queue_tail(&tid_agg_rx->reorder_buf[index], skb);
1017 if (!(status->flag & RX_FLAG_AMSDU_MORE)) {
1018 tid_agg_rx->reorder_time[index] = jiffies;
1019 tid_agg_rx->stored_mpdu_num++;
1020 ieee80211_sta_reorder_release(sdata, tid_agg_rx, frames);
1021 }
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001022
Christian Lamparter2bff8eb2010-08-05 01:36:41 +02001023 out:
1024 spin_unlock(&tid_agg_rx->reorder_lock);
1025 return ret;
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001026}
1027
1028/*
1029 * Reorder MPDUs from A-MPDUs, keeping them on a buffer. Returns
1030 * true if the MPDU was buffered, false if it should be processed.
1031 */
Christian Lamparterf9e124f2013-02-04 17:44:44 +00001032static void ieee80211_rx_reorder_ampdu(struct ieee80211_rx_data *rx,
1033 struct sk_buff_head *frames)
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001034{
Johannes Berg2569a822009-11-25 17:46:17 +01001035 struct sk_buff *skb = rx->skb;
1036 struct ieee80211_local *local = rx->local;
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001037 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
Johannes Berg2569a822009-11-25 17:46:17 +01001038 struct sta_info *sta = rx->sta;
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001039 struct tid_ampdu_rx *tid_agg_rx;
1040 u16 sc;
Thomas Pedersen6cc00d52011-11-03 21:11:11 -07001041 u8 tid, ack_policy;
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001042
Johannes Berg051a41f2013-11-20 11:28:27 +01001043 if (!ieee80211_is_data_qos(hdr->frame_control) ||
1044 is_multicast_ether_addr(hdr->addr1))
Johannes Berg2569a822009-11-25 17:46:17 +01001045 goto dont_reorder;
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001046
1047 /*
1048 * filter the QoS data rx stream according to
1049 * STA/TID and check if this STA/TID is on aggregation
1050 */
1051
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001052 if (!sta)
Johannes Berg2569a822009-11-25 17:46:17 +01001053 goto dont_reorder;
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001054
Thomas Pedersen6cc00d52011-11-03 21:11:11 -07001055 ack_policy = *ieee80211_get_qos_ctl(hdr) &
1056 IEEE80211_QOS_CTL_ACK_POLICY_MASK;
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001057 tid = *ieee80211_get_qos_ctl(hdr) & IEEE80211_QOS_CTL_TID_MASK;
1058
Johannes Berga87f7362010-06-10 10:21:38 +02001059 tid_agg_rx = rcu_dereference(sta->ampdu_mlme.tid_rx[tid]);
1060 if (!tid_agg_rx)
1061 goto dont_reorder;
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001062
1063 /* qos null data frames are excluded */
1064 if (unlikely(hdr->frame_control & cpu_to_le16(IEEE80211_STYPE_NULLFUNC)))
Johannes Berga87f7362010-06-10 10:21:38 +02001065 goto dont_reorder;
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001066
Thomas Pedersen6cc00d52011-11-03 21:11:11 -07001067 /* not part of a BA session */
1068 if (ack_policy != IEEE80211_QOS_CTL_ACK_POLICY_BLOCKACK &&
1069 ack_policy != IEEE80211_QOS_CTL_ACK_POLICY_NORMAL)
1070 goto dont_reorder;
1071
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001072 /* new, potentially un-ordered, ampdu frame - process it */
1073
1074 /* reset session timer */
1075 if (tid_agg_rx->timeout)
Felix Fietkau12d3952f2012-03-18 22:58:06 +01001076 tid_agg_rx->last_rx = jiffies;
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001077
1078 /* if this mpdu is fragmented - terminate rx aggregation session */
1079 sc = le16_to_cpu(hdr->seq_ctrl);
1080 if (sc & IEEE80211_SCTL_FRAG) {
Johannes Bergc1475ca2010-06-10 10:21:37 +02001081 skb->pkt_type = IEEE80211_SDATA_QUEUE_TYPE_FRAME;
Johannes Berg344eec62010-06-10 10:21:36 +02001082 skb_queue_tail(&rx->sdata->skb_queue, skb);
1083 ieee80211_queue_work(&local->hw, &rx->sdata->work);
Johannes Berg2569a822009-11-25 17:46:17 +01001084 return;
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001085 }
1086
Johannes Berga87f7362010-06-10 10:21:38 +02001087 /*
1088 * No locking needed -- we will only ever process one
1089 * RX packet at a time, and thus own tid_agg_rx. All
1090 * other code manipulating it needs to (and does) make
1091 * sure that we cannot get to it any more before doing
1092 * anything with it.
1093 */
Christian Lamparterf9e124f2013-02-04 17:44:44 +00001094 if (ieee80211_sta_manage_reorder_buf(rx->sdata, tid_agg_rx, skb,
1095 frames))
Johannes Berg2569a822009-11-25 17:46:17 +01001096 return;
1097
1098 dont_reorder:
Christian Lamparterf9e124f2013-02-04 17:44:44 +00001099 __skb_queue_tail(frames, skb);
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001100}
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001101
Johannes Berg49461622008-06-30 15:10:45 +02001102static ieee80211_rx_result debug_noinline
Johannes Berg03954422014-11-11 16:49:25 +01001103ieee80211_rx_h_check_dup(struct ieee80211_rx_data *rx)
Johannes Berg571ecf62007-07-27 15:43:22 +02001104{
Harvey Harrisona7767f92008-07-02 16:30:51 -07001105 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
Johannes Berg554891e2010-09-24 12:38:25 +02001106 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(rx->skb);
Johannes Berg571ecf62007-07-27 15:43:22 +02001107
Johannes Berg6b0f3272013-07-11 22:33:26 +02001108 /*
1109 * Drop duplicate 802.11 retransmissions
1110 * (IEEE 802.11-2012: 9.3.2.10 "Duplicate detection and recovery")
1111 */
Johannes Berg03954422014-11-11 16:49:25 +01001112
1113 if (rx->skb->len < 24)
1114 return RX_CONTINUE;
1115
1116 if (ieee80211_is_ctl(hdr->frame_control) ||
1117 ieee80211_is_qos_nullfunc(hdr->frame_control) ||
1118 is_multicast_ether_addr(hdr->addr1))
1119 return RX_CONTINUE;
1120
1121 if (rx->sta) {
Harvey Harrisona7767f92008-07-02 16:30:51 -07001122 if (unlikely(ieee80211_has_retry(hdr->frame_control) &&
Johannes Berg9e262972011-07-07 18:45:03 +02001123 rx->sta->last_seq_ctrl[rx->seqno_idx] ==
Johannes Berg571ecf62007-07-27 15:43:22 +02001124 hdr->seq_ctrl)) {
Johannes Bergc206ca62015-04-22 20:47:28 +02001125 I802_DEBUG_INC(rx->local->dot11FrameDuplicateCount);
Johannes Berg5c900672015-04-22 14:48:34 +02001126 rx->sta->num_duplicates++;
Felix Fietkaub1f93312011-02-04 19:20:08 +01001127 return RX_DROP_UNUSABLE;
Michal Kazior0cfcefe2013-09-23 15:34:38 +02001128 } else if (!(status->flag & RX_FLAG_AMSDU_MORE)) {
Johannes Berg9e262972011-07-07 18:45:03 +02001129 rx->sta->last_seq_ctrl[rx->seqno_idx] = hdr->seq_ctrl;
Michal Kazior0cfcefe2013-09-23 15:34:38 +02001130 }
Johannes Berg571ecf62007-07-27 15:43:22 +02001131 }
1132
Johannes Berg03954422014-11-11 16:49:25 +01001133 return RX_CONTINUE;
1134}
1135
1136static ieee80211_rx_result debug_noinline
1137ieee80211_rx_h_check(struct ieee80211_rx_data *rx)
1138{
1139 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
1140
Johannes Berg571ecf62007-07-27 15:43:22 +02001141 /* Drop disallowed frame classes based on STA auth/assoc state;
1142 * IEEE 802.11, Chap 5.5.
1143 *
Johannes Bergccd7b362008-09-11 00:01:56 +02001144 * mac80211 filters only based on association state, i.e. it drops
1145 * Class 3 frames from not associated stations. hostapd sends
Johannes Berg571ecf62007-07-27 15:43:22 +02001146 * deauth/disassoc frames when needed. In addition, hostapd is
1147 * responsible for filtering on both auth and assoc states.
1148 */
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001149
Johannes Berg902acc72008-02-23 15:17:19 +01001150 if (ieee80211_vif_is_mesh(&rx->sdata->vif))
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001151 return ieee80211_rx_mesh_check(rx);
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001152
Harvey Harrisona7767f92008-07-02 16:30:51 -07001153 if (unlikely((ieee80211_is_data(hdr->frame_control) ||
1154 ieee80211_is_pspoll(hdr->frame_control)) &&
Johannes Berg05c914f2008-09-11 00:01:58 +02001155 rx->sdata->vif.type != NL80211_IFTYPE_ADHOC &&
Bill Jordan1be7fe82010-10-01 11:20:41 -04001156 rx->sdata->vif.type != NL80211_IFTYPE_WDS &&
Rostislav Lisovy239281f2014-11-03 10:33:19 +01001157 rx->sdata->vif.type != NL80211_IFTYPE_OCB &&
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001158 (!rx->sta || !test_sta_flag(rx->sta, WLAN_STA_ASSOC)))) {
Johannes Berg7852e362012-01-20 13:55:24 +01001159 /*
1160 * accept port control frames from the AP even when it's not
1161 * yet marked ASSOC to prevent a race where we don't set the
1162 * assoc bit quickly enough before it sends the first frame
1163 */
1164 if (rx->sta && rx->sdata->vif.type == NL80211_IFTYPE_STATION &&
Guy Eilam2a33bee2011-08-17 15:18:15 +03001165 ieee80211_is_data_present(hdr->frame_control)) {
Johannes Berg6dbda2d2012-10-26 00:41:23 +02001166 unsigned int hdrlen;
1167 __be16 ethertype;
Guy Eilam2a33bee2011-08-17 15:18:15 +03001168
Johannes Berg6dbda2d2012-10-26 00:41:23 +02001169 hdrlen = ieee80211_hdrlen(hdr->frame_control);
1170
1171 if (rx->skb->len < hdrlen + 8)
1172 return RX_DROP_MONITOR;
1173
1174 skb_copy_bits(rx->skb, hdrlen + 6, &ethertype, 2);
1175 if (ethertype == rx->sdata->control_port_protocol)
Guy Eilam2a33bee2011-08-17 15:18:15 +03001176 return RX_CONTINUE;
1177 }
Johannes Berg21fc7562011-11-04 11:18:13 +01001178
1179 if (rx->sdata->vif.type == NL80211_IFTYPE_AP &&
1180 cfg80211_rx_spurious_frame(rx->sdata->dev,
1181 hdr->addr2,
1182 GFP_ATOMIC))
1183 return RX_DROP_UNUSABLE;
1184
Johannes Berge4c26ad2008-01-31 19:48:21 +01001185 return RX_DROP_MONITOR;
Guy Eilam2a33bee2011-08-17 15:18:15 +03001186 }
Johannes Berg571ecf62007-07-27 15:43:22 +02001187
Johannes Berg9ae54c82008-01-31 19:48:20 +01001188 return RX_CONTINUE;
Johannes Berg570bd532007-07-27 15:43:22 +02001189}
1190
1191
Johannes Berg49461622008-06-30 15:10:45 +02001192static ieee80211_rx_result debug_noinline
Kalle Valo572e0012009-02-10 17:09:31 +02001193ieee80211_rx_h_check_more_data(struct ieee80211_rx_data *rx)
1194{
1195 struct ieee80211_local *local;
1196 struct ieee80211_hdr *hdr;
1197 struct sk_buff *skb;
1198
1199 local = rx->local;
1200 skb = rx->skb;
1201 hdr = (struct ieee80211_hdr *) skb->data;
1202
1203 if (!local->pspolling)
1204 return RX_CONTINUE;
1205
1206 if (!ieee80211_has_fromds(hdr->frame_control))
1207 /* this is not from AP */
1208 return RX_CONTINUE;
1209
1210 if (!ieee80211_is_data(hdr->frame_control))
1211 return RX_CONTINUE;
1212
1213 if (!ieee80211_has_moredata(hdr->frame_control)) {
1214 /* AP has no more frames buffered for us */
1215 local->pspolling = false;
1216 return RX_CONTINUE;
1217 }
1218
1219 /* more data bit is set, let's request a new frame from the AP */
1220 ieee80211_send_pspoll(local, rx->sdata);
1221
1222 return RX_CONTINUE;
1223}
1224
Marco Porschd012a602012-10-10 12:39:50 -07001225static void sta_ps_start(struct sta_info *sta)
Johannes Berg571ecf62007-07-27 15:43:22 +02001226{
Johannes Berg133b8222008-09-16 14:18:59 +02001227 struct ieee80211_sub_if_data *sdata = sta->sdata;
Christian Lamparter4571d3b2008-11-30 00:48:41 +01001228 struct ieee80211_local *local = sdata->local;
Marco Porschd012a602012-10-10 12:39:50 -07001229 struct ps_data *ps;
Felix Fietkauba8c3d62015-03-27 21:30:37 +01001230 int tid;
Joe Perches0795af52007-10-03 17:59:30 -07001231
Marco Porschd012a602012-10-10 12:39:50 -07001232 if (sta->sdata->vif.type == NL80211_IFTYPE_AP ||
1233 sta->sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
1234 ps = &sdata->bss->ps;
1235 else
1236 return;
1237
1238 atomic_inc(&ps->num_sta_ps);
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001239 set_sta_flag(sta, WLAN_STA_PS_STA);
Johannes Berg30686bf2015-06-02 21:39:54 +02001240 if (!ieee80211_hw_check(&local->hw, AP_LINK_PS))
Arik Nemtsovd057e5a2011-01-31 22:29:13 +02001241 drv_sta_notify(local, sdata, STA_NOTIFY_SLEEP, &sta->sta);
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02001242 ps_dbg(sdata, "STA %pM aid %d enters power save mode\n",
1243 sta->sta.addr, sta->sta.aid);
Felix Fietkauba8c3d62015-03-27 21:30:37 +01001244
Johannes Berg17c18bf2015-03-21 15:25:43 +01001245 ieee80211_clear_fast_xmit(sta);
1246
Felix Fietkauba8c3d62015-03-27 21:30:37 +01001247 if (!sta->sta.txq[0])
1248 return;
1249
1250 for (tid = 0; tid < ARRAY_SIZE(sta->sta.txq); tid++) {
1251 struct txq_info *txqi = to_txq_info(sta->sta.txq[tid]);
1252
1253 if (!skb_queue_len(&txqi->queue))
1254 set_bit(tid, &sta->txq_buffered_tids);
1255 else
1256 clear_bit(tid, &sta->txq_buffered_tids);
1257 }
Johannes Berg571ecf62007-07-27 15:43:22 +02001258}
1259
Marco Porschd012a602012-10-10 12:39:50 -07001260static void sta_ps_end(struct sta_info *sta)
Johannes Berg571ecf62007-07-27 15:43:22 +02001261{
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02001262 ps_dbg(sta->sdata, "STA %pM aid %d exits power save mode\n",
1263 sta->sta.addr, sta->sta.aid);
Johannes Berg004c8722008-02-20 11:21:35 +01001264
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001265 if (test_sta_flag(sta, WLAN_STA_PS_DRIVER)) {
Johannes Berge3685e02014-02-20 11:19:58 +01001266 /*
1267 * Clear the flag only if the other one is still set
1268 * so that the TX path won't start TX'ing new frames
1269 * directly ... In the case that the driver flag isn't
1270 * set ieee80211_sta_ps_deliver_wakeup() will clear it.
1271 */
1272 clear_sta_flag(sta, WLAN_STA_PS_STA);
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02001273 ps_dbg(sta->sdata, "STA %pM aid %d driver-ps-blocked\n",
1274 sta->sta.addr, sta->sta.aid);
Johannes Bergaf818582009-11-06 11:35:50 +01001275 return;
1276 }
1277
Johannes Berg5ac2e352014-05-27 16:32:27 +02001278 set_sta_flag(sta, WLAN_STA_PS_DELIVER);
1279 clear_sta_flag(sta, WLAN_STA_PS_STA);
Johannes Bergaf818582009-11-06 11:35:50 +01001280 ieee80211_sta_ps_deliver_wakeup(sta);
Johannes Berg571ecf62007-07-27 15:43:22 +02001281}
1282
Johannes Bergcf471612015-06-16 16:16:38 +02001283int ieee80211_sta_ps_transition(struct ieee80211_sta *pubsta, bool start)
Arik Nemtsovd057e5a2011-01-31 22:29:13 +02001284{
Johannes Bergcf471612015-06-16 16:16:38 +02001285 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
Arik Nemtsovd057e5a2011-01-31 22:29:13 +02001286 bool in_ps;
1287
Johannes Bergcf471612015-06-16 16:16:38 +02001288 WARN_ON(!ieee80211_hw_check(&sta->local->hw, AP_LINK_PS));
Arik Nemtsovd057e5a2011-01-31 22:29:13 +02001289
1290 /* Don't let the same PS state be set twice */
Johannes Bergcf471612015-06-16 16:16:38 +02001291 in_ps = test_sta_flag(sta, WLAN_STA_PS_STA);
Arik Nemtsovd057e5a2011-01-31 22:29:13 +02001292 if ((start && in_ps) || (!start && !in_ps))
1293 return -EINVAL;
1294
1295 if (start)
Johannes Bergcf471612015-06-16 16:16:38 +02001296 sta_ps_start(sta);
Arik Nemtsovd057e5a2011-01-31 22:29:13 +02001297 else
Johannes Bergcf471612015-06-16 16:16:38 +02001298 sta_ps_end(sta);
Arik Nemtsovd057e5a2011-01-31 22:29:13 +02001299
1300 return 0;
1301}
1302EXPORT_SYMBOL(ieee80211_sta_ps_transition);
1303
Johannes Berg49461622008-06-30 15:10:45 +02001304static ieee80211_rx_result debug_noinline
Johannes Berg47086fc2011-09-29 16:04:33 +02001305ieee80211_rx_h_uapsd_and_pspoll(struct ieee80211_rx_data *rx)
1306{
1307 struct ieee80211_sub_if_data *sdata = rx->sdata;
1308 struct ieee80211_hdr *hdr = (void *)rx->skb->data;
1309 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(rx->skb);
1310 int tid, ac;
1311
Johannes Berg5c900672015-04-22 14:48:34 +02001312 if (!rx->sta)
Johannes Berg47086fc2011-09-29 16:04:33 +02001313 return RX_CONTINUE;
1314
1315 if (sdata->vif.type != NL80211_IFTYPE_AP &&
1316 sdata->vif.type != NL80211_IFTYPE_AP_VLAN)
1317 return RX_CONTINUE;
1318
1319 /*
1320 * The device handles station powersave, so don't do anything about
1321 * uAPSD and PS-Poll frames (the latter shouldn't even come up from
1322 * it to mac80211 since they're handled.)
1323 */
Johannes Berg30686bf2015-06-02 21:39:54 +02001324 if (ieee80211_hw_check(&sdata->local->hw, AP_LINK_PS))
Johannes Berg47086fc2011-09-29 16:04:33 +02001325 return RX_CONTINUE;
1326
1327 /*
1328 * Don't do anything if the station isn't already asleep. In
1329 * the uAPSD case, the station will probably be marked asleep,
1330 * in the PS-Poll case the station must be confused ...
1331 */
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001332 if (!test_sta_flag(rx->sta, WLAN_STA_PS_STA))
Johannes Berg47086fc2011-09-29 16:04:33 +02001333 return RX_CONTINUE;
1334
1335 if (unlikely(ieee80211_is_pspoll(hdr->frame_control))) {
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001336 if (!test_sta_flag(rx->sta, WLAN_STA_SP)) {
1337 if (!test_sta_flag(rx->sta, WLAN_STA_PS_DRIVER))
Johannes Bergdeeaee12011-09-29 16:04:35 +02001338 ieee80211_sta_ps_deliver_poll_response(rx->sta);
1339 else
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001340 set_sta_flag(rx->sta, WLAN_STA_PSPOLL);
Johannes Bergdeeaee12011-09-29 16:04:35 +02001341 }
Johannes Berg47086fc2011-09-29 16:04:33 +02001342
1343 /* Free PS Poll skb here instead of returning RX_DROP that would
1344 * count as an dropped frame. */
1345 dev_kfree_skb(rx->skb);
1346
1347 return RX_QUEUED;
1348 } else if (!ieee80211_has_morefrags(hdr->frame_control) &&
1349 !(status->rx_flags & IEEE80211_RX_DEFERRED_RELEASE) &&
1350 ieee80211_has_pm(hdr->frame_control) &&
1351 (ieee80211_is_data_qos(hdr->frame_control) ||
1352 ieee80211_is_qos_nullfunc(hdr->frame_control))) {
1353 tid = *ieee80211_get_qos_ctl(hdr) & IEEE80211_QOS_CTL_TID_MASK;
1354 ac = ieee802_1d_to_ac[tid & 7];
1355
1356 /*
1357 * If this AC is not trigger-enabled do nothing.
1358 *
1359 * NB: This could/should check a separate bitmap of trigger-
1360 * enabled queues, but for now we only implement uAPSD w/o
1361 * TSPEC changes to the ACs, so they're always the same.
1362 */
1363 if (!(rx->sta->sta.uapsd_queues & BIT(ac)))
1364 return RX_CONTINUE;
1365
1366 /* if we are in a service period, do nothing */
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001367 if (test_sta_flag(rx->sta, WLAN_STA_SP))
Johannes Berg47086fc2011-09-29 16:04:33 +02001368 return RX_CONTINUE;
1369
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001370 if (!test_sta_flag(rx->sta, WLAN_STA_PS_DRIVER))
Johannes Berg47086fc2011-09-29 16:04:33 +02001371 ieee80211_sta_ps_deliver_uapsd(rx->sta);
1372 else
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001373 set_sta_flag(rx->sta, WLAN_STA_UAPSD);
Johannes Berg47086fc2011-09-29 16:04:33 +02001374 }
1375
1376 return RX_CONTINUE;
1377}
1378
1379static ieee80211_rx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +01001380ieee80211_rx_h_sta_process(struct ieee80211_rx_data *rx)
Johannes Berg571ecf62007-07-27 15:43:22 +02001381{
1382 struct sta_info *sta = rx->sta;
Johannes Bergeb9fb5b2009-11-16 13:58:20 +01001383 struct sk_buff *skb = rx->skb;
1384 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
1385 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Felix Fietkauef0621e2013-04-22 16:29:31 +02001386 int i;
Johannes Berg571ecf62007-07-27 15:43:22 +02001387
1388 if (!sta)
Johannes Berg9ae54c82008-01-31 19:48:20 +01001389 return RX_CONTINUE;
Johannes Berg571ecf62007-07-27 15:43:22 +02001390
Johannes Bergb291ba12009-07-10 15:29:03 +02001391 /*
1392 * Update last_rx only for IBSS packets which are for the current
Antonio Quartullie584da5e2012-11-25 23:13:42 +01001393 * BSSID and for station already AUTHORIZED to avoid keeping the
1394 * current IBSS network alive in cases where other STAs start
1395 * using different BSSID. This will also give the station another
1396 * chance to restart the authentication/authorization in case
1397 * something went wrong the first time.
Johannes Bergb291ba12009-07-10 15:29:03 +02001398 */
Johannes Berg05c914f2008-09-11 00:01:58 +02001399 if (rx->sdata->vif.type == NL80211_IFTYPE_ADHOC) {
Ron Rindjunsky71364712007-12-25 17:00:36 +02001400 u8 *bssid = ieee80211_get_bssid(hdr, rx->skb->len,
Johannes Berg05c914f2008-09-11 00:01:58 +02001401 NL80211_IFTYPE_ADHOC);
Antonio Quartullie584da5e2012-11-25 23:13:42 +01001402 if (ether_addr_equal(bssid, rx->sdata->u.ibss.bssid) &&
1403 test_sta_flag(sta, WLAN_STA_AUTHORIZED)) {
Johannes Berg571ecf62007-07-27 15:43:22 +02001404 sta->last_rx = jiffies;
Henning Roggef4ebddf2014-05-01 10:03:46 +02001405 if (ieee80211_is_data(hdr->frame_control) &&
1406 !is_multicast_ether_addr(hdr->addr1)) {
Felix Fietkau3af63342011-02-27 22:08:01 +01001407 sta->last_rx_rate_idx = status->rate_idx;
1408 sta->last_rx_rate_flag = status->flag;
Emmanuel Grumbach1b8d2422014-02-05 16:37:11 +02001409 sta->last_rx_rate_vht_flag = status->vht_flag;
Johannes Berg56146182012-11-09 15:07:02 +01001410 sta->last_rx_rate_vht_nss = status->vht_nss;
Felix Fietkau3af63342011-02-27 22:08:01 +01001411 }
1412 }
Rostislav Lisovy239281f2014-11-03 10:33:19 +01001413 } else if (rx->sdata->vif.type == NL80211_IFTYPE_OCB) {
Johannes Berg6fe3eac2015-04-22 15:10:45 +02001414 sta->last_rx = jiffies;
Johannes Bergb291ba12009-07-10 15:29:03 +02001415 } else if (!is_multicast_ether_addr(hdr->addr1)) {
1416 /*
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001417 * Mesh beacons will update last_rx when if they are found to
1418 * match the current local configuration when processed.
Johannes Berg571ecf62007-07-27 15:43:22 +02001419 */
Johannes Bergb291ba12009-07-10 15:29:03 +02001420 sta->last_rx = jiffies;
Felix Fietkau3af63342011-02-27 22:08:01 +01001421 if (ieee80211_is_data(hdr->frame_control)) {
1422 sta->last_rx_rate_idx = status->rate_idx;
1423 sta->last_rx_rate_flag = status->flag;
Chun-Yeow Yeohb8ff4162014-02-27 13:14:14 +08001424 sta->last_rx_rate_vht_flag = status->vht_flag;
Johannes Berg56146182012-11-09 15:07:02 +01001425 sta->last_rx_rate_vht_nss = status->vht_nss;
Felix Fietkau3af63342011-02-27 22:08:01 +01001426 }
Johannes Berg571ecf62007-07-27 15:43:22 +02001427 }
1428
Kalle Valo3cf335d2009-03-22 21:57:06 +02001429 if (rx->sdata->vif.type == NL80211_IFTYPE_STATION)
1430 ieee80211_sta_rx_notify(rx->sdata, hdr);
1431
Johannes Berg571ecf62007-07-27 15:43:22 +02001432 sta->rx_fragments++;
1433 sta->rx_bytes += rx->skb->len;
Felix Fietkaufe8431f2012-03-01 18:00:07 +01001434 if (!(status->flag & RX_FLAG_NO_SIGNAL_VAL)) {
1435 sta->last_signal = status->signal;
1436 ewma_add(&sta->avg_signal, -status->signal);
1437 }
Johannes Berg571ecf62007-07-27 15:43:22 +02001438
Felix Fietkauef0621e2013-04-22 16:29:31 +02001439 if (status->chains) {
1440 sta->chains = status->chains;
1441 for (i = 0; i < ARRAY_SIZE(status->chain_signal); i++) {
1442 int signal = status->chain_signal[i];
1443
1444 if (!(status->chains & BIT(i)))
1445 continue;
1446
1447 sta->chain_signal_last[i] = signal;
1448 ewma_add(&sta->chain_signal_avg[i], -signal);
1449 }
1450 }
1451
Johannes Berg72eaa432008-11-26 15:02:58 +01001452 /*
1453 * Change STA power saving mode only at the end of a frame
1454 * exchange sequence.
1455 */
Johannes Berg30686bf2015-06-02 21:39:54 +02001456 if (!ieee80211_hw_check(&sta->local->hw, AP_LINK_PS) &&
Arik Nemtsovd057e5a2011-01-31 22:29:13 +02001457 !ieee80211_has_morefrags(hdr->frame_control) &&
Christian Lamparter4cfda472010-12-27 23:21:26 +01001458 !(status->rx_flags & IEEE80211_RX_DEFERRED_RELEASE) &&
Johannes Berg05c914f2008-09-11 00:01:58 +02001459 (rx->sdata->vif.type == NL80211_IFTYPE_AP ||
Johannes Bergb4ba5442014-01-24 14:41:44 +01001460 rx->sdata->vif.type == NL80211_IFTYPE_AP_VLAN) &&
1461 /* PM bit is only checked in frames where it isn't reserved,
1462 * in AP mode it's reserved in non-bufferable management frames
1463 * (cf. IEEE 802.11-2012 8.2.4.1.7 Power Management field)
1464 */
1465 (!ieee80211_is_mgmt(hdr->frame_control) ||
1466 ieee80211_is_bufferable_mmpdu(hdr->frame_control))) {
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001467 if (test_sta_flag(sta, WLAN_STA_PS_STA)) {
Johannes Bergb4ba5442014-01-24 14:41:44 +01001468 if (!ieee80211_has_pm(hdr->frame_control))
Marco Porschd012a602012-10-10 12:39:50 -07001469 sta_ps_end(sta);
Johannes Berg72eaa432008-11-26 15:02:58 +01001470 } else {
1471 if (ieee80211_has_pm(hdr->frame_control))
Marco Porschd012a602012-10-10 12:39:50 -07001472 sta_ps_start(sta);
Johannes Berg72eaa432008-11-26 15:02:58 +01001473 }
Johannes Berg571ecf62007-07-27 15:43:22 +02001474 }
1475
Marco Porsch3f52b7e2013-01-30 18:14:08 +01001476 /* mesh power save support */
1477 if (ieee80211_vif_is_mesh(&rx->sdata->vif))
1478 ieee80211_mps_rx_h_sta_process(sta, hdr);
1479
Johannes Berg22403de2009-10-30 12:55:03 +01001480 /*
1481 * Drop (qos-)data::nullfunc frames silently, since they
1482 * are used only to control station power saving mode.
1483 */
1484 if (ieee80211_is_nullfunc(hdr->frame_control) ||
1485 ieee80211_is_qos_nullfunc(hdr->frame_control)) {
Johannes Berg571ecf62007-07-27 15:43:22 +02001486 I802_DEBUG_INC(rx->local->rx_handlers_drop_nullfunc);
Felix Fietkaud5242152010-01-08 18:06:26 +01001487
1488 /*
1489 * If we receive a 4-addr nullfunc frame from a STA
Johannes Berge7f4a942011-11-04 11:18:20 +01001490 * that was not moved to a 4-addr STA vlan yet send
1491 * the event to userspace and for older hostapd drop
1492 * the frame to the monitor interface.
Felix Fietkaud5242152010-01-08 18:06:26 +01001493 */
1494 if (ieee80211_has_a4(hdr->frame_control) &&
1495 (rx->sdata->vif.type == NL80211_IFTYPE_AP ||
1496 (rx->sdata->vif.type == NL80211_IFTYPE_AP_VLAN &&
Johannes Berge7f4a942011-11-04 11:18:20 +01001497 !rx->sdata->u.vlan.sta))) {
1498 if (!test_and_set_sta_flag(sta, WLAN_STA_4ADDR_EVENT))
1499 cfg80211_rx_unexpected_4addr_frame(
1500 rx->sdata->dev, sta->sta.addr,
1501 GFP_ATOMIC);
Felix Fietkaud5242152010-01-08 18:06:26 +01001502 return RX_DROP_MONITOR;
Johannes Berge7f4a942011-11-04 11:18:20 +01001503 }
Johannes Berg22403de2009-10-30 12:55:03 +01001504 /*
1505 * Update counter and free packet here to avoid
1506 * counting this as a dropped packed.
1507 */
Johannes Berg571ecf62007-07-27 15:43:22 +02001508 sta->rx_packets++;
1509 dev_kfree_skb(rx->skb);
Johannes Berg9ae54c82008-01-31 19:48:20 +01001510 return RX_QUEUED;
Johannes Berg571ecf62007-07-27 15:43:22 +02001511 }
1512
Johannes Berg9ae54c82008-01-31 19:48:20 +01001513 return RX_CONTINUE;
Johannes Berg571ecf62007-07-27 15:43:22 +02001514} /* ieee80211_rx_h_sta_process */
1515
Johan Almbladh86c228a2013-08-14 15:29:46 +02001516static ieee80211_rx_result debug_noinline
1517ieee80211_rx_h_decrypt(struct ieee80211_rx_data *rx)
1518{
1519 struct sk_buff *skb = rx->skb;
1520 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
1521 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
1522 int keyidx;
1523 int hdrlen;
1524 ieee80211_rx_result result = RX_DROP_UNUSABLE;
1525 struct ieee80211_key *sta_ptk = NULL;
1526 int mmie_keyidx = -1;
1527 __le16 fc;
Max Stepanov2475b1cc2013-03-24 14:23:27 +02001528 const struct ieee80211_cipher_scheme *cs = NULL;
Johan Almbladh86c228a2013-08-14 15:29:46 +02001529
1530 /*
1531 * Key selection 101
1532 *
1533 * There are four types of keys:
1534 * - GTK (group keys)
1535 * - IGTK (group keys for management frames)
1536 * - PTK (pairwise keys)
1537 * - STK (station-to-station pairwise keys)
1538 *
1539 * When selecting a key, we have to distinguish between multicast
1540 * (including broadcast) and unicast frames, the latter can only
1541 * use PTKs and STKs while the former always use GTKs and IGTKs.
1542 * Unless, of course, actual WEP keys ("pre-RSNA") are used, then
1543 * unicast frames can also use key indices like GTKs. Hence, if we
1544 * don't have a PTK/STK we check the key index for a WEP key.
1545 *
1546 * Note that in a regular BSS, multicast frames are sent by the
1547 * AP only, associated stations unicast the frame to the AP first
1548 * which then multicasts it on their behalf.
1549 *
1550 * There is also a slight problem in IBSS mode: GTKs are negotiated
1551 * with each station, that is something we don't currently handle.
1552 * The spec seems to expect that one negotiates the same key with
1553 * every station but there's no such requirement; VLANs could be
1554 * possible.
1555 */
1556
Johan Almbladh86c228a2013-08-14 15:29:46 +02001557 /* start without a key */
1558 rx->key = NULL;
Johan Almbladh86c228a2013-08-14 15:29:46 +02001559 fc = hdr->frame_control;
1560
Max Stepanov2475b1cc2013-03-24 14:23:27 +02001561 if (rx->sta) {
1562 int keyid = rx->sta->ptk_idx;
1563
1564 if (ieee80211_has_protected(fc) && rx->sta->cipher_scheme) {
1565 cs = rx->sta->cipher_scheme;
1566 keyid = iwl80211_get_cs_keyid(cs, rx->skb);
1567 if (unlikely(keyid < 0))
1568 return RX_DROP_UNUSABLE;
1569 }
1570 sta_ptk = rcu_dereference(rx->sta->ptk[keyid]);
1571 }
1572
Johan Almbladh86c228a2013-08-14 15:29:46 +02001573 if (!ieee80211_has_protected(fc))
1574 mmie_keyidx = ieee80211_get_mmie_keyidx(rx->skb);
1575
1576 if (!is_multicast_ether_addr(hdr->addr1) && sta_ptk) {
1577 rx->key = sta_ptk;
1578 if ((status->flag & RX_FLAG_DECRYPTED) &&
1579 (status->flag & RX_FLAG_IV_STRIPPED))
1580 return RX_CONTINUE;
1581 /* Skip decryption if the frame is not protected. */
1582 if (!ieee80211_has_protected(fc))
1583 return RX_CONTINUE;
1584 } else if (mmie_keyidx >= 0) {
1585 /* Broadcast/multicast robust management frame / BIP */
1586 if ((status->flag & RX_FLAG_DECRYPTED) &&
1587 (status->flag & RX_FLAG_IV_STRIPPED))
1588 return RX_CONTINUE;
1589
1590 if (mmie_keyidx < NUM_DEFAULT_KEYS ||
1591 mmie_keyidx >= NUM_DEFAULT_KEYS + NUM_DEFAULT_MGMT_KEYS)
1592 return RX_DROP_MONITOR; /* unexpected BIP keyidx */
1593 if (rx->sta)
1594 rx->key = rcu_dereference(rx->sta->gtk[mmie_keyidx]);
1595 if (!rx->key)
1596 rx->key = rcu_dereference(rx->sdata->keys[mmie_keyidx]);
1597 } else if (!ieee80211_has_protected(fc)) {
1598 /*
1599 * The frame was not protected, so skip decryption. However, we
1600 * need to set rx->key if there is a key that could have been
1601 * used so that the frame may be dropped if encryption would
1602 * have been expected.
1603 */
1604 struct ieee80211_key *key = NULL;
1605 struct ieee80211_sub_if_data *sdata = rx->sdata;
1606 int i;
1607
1608 if (ieee80211_is_mgmt(fc) &&
1609 is_multicast_ether_addr(hdr->addr1) &&
1610 (key = rcu_dereference(rx->sdata->default_mgmt_key)))
1611 rx->key = key;
1612 else {
1613 if (rx->sta) {
1614 for (i = 0; i < NUM_DEFAULT_KEYS; i++) {
1615 key = rcu_dereference(rx->sta->gtk[i]);
1616 if (key)
1617 break;
1618 }
1619 }
1620 if (!key) {
1621 for (i = 0; i < NUM_DEFAULT_KEYS; i++) {
1622 key = rcu_dereference(sdata->keys[i]);
1623 if (key)
1624 break;
1625 }
1626 }
1627 if (key)
1628 rx->key = key;
1629 }
1630 return RX_CONTINUE;
1631 } else {
1632 u8 keyid;
Max Stepanov2475b1cc2013-03-24 14:23:27 +02001633
Johan Almbladh86c228a2013-08-14 15:29:46 +02001634 /*
1635 * The device doesn't give us the IV so we won't be
1636 * able to look up the key. That's ok though, we
1637 * don't need to decrypt the frame, we just won't
1638 * be able to keep statistics accurate.
1639 * Except for key threshold notifications, should
1640 * we somehow allow the driver to tell us which key
1641 * the hardware used if this flag is set?
1642 */
1643 if ((status->flag & RX_FLAG_DECRYPTED) &&
1644 (status->flag & RX_FLAG_IV_STRIPPED))
1645 return RX_CONTINUE;
1646
1647 hdrlen = ieee80211_hdrlen(fc);
1648
Max Stepanov2475b1cc2013-03-24 14:23:27 +02001649 if (cs) {
1650 keyidx = iwl80211_get_cs_keyid(cs, rx->skb);
Johan Almbladh86c228a2013-08-14 15:29:46 +02001651
Max Stepanov2475b1cc2013-03-24 14:23:27 +02001652 if (unlikely(keyidx < 0))
1653 return RX_DROP_UNUSABLE;
1654 } else {
1655 if (rx->skb->len < 8 + hdrlen)
1656 return RX_DROP_UNUSABLE; /* TODO: count this? */
1657 /*
1658 * no need to call ieee80211_wep_get_keyidx,
1659 * it verifies a bunch of things we've done already
1660 */
1661 skb_copy_bits(rx->skb, hdrlen + 3, &keyid, 1);
1662 keyidx = keyid >> 6;
1663 }
Johan Almbladh86c228a2013-08-14 15:29:46 +02001664
1665 /* check per-station GTK first, if multicast packet */
1666 if (is_multicast_ether_addr(hdr->addr1) && rx->sta)
1667 rx->key = rcu_dereference(rx->sta->gtk[keyidx]);
1668
1669 /* if not found, try default key */
1670 if (!rx->key) {
1671 rx->key = rcu_dereference(rx->sdata->keys[keyidx]);
1672
1673 /*
1674 * RSNA-protected unicast frames should always be
1675 * sent with pairwise or station-to-station keys,
1676 * but for WEP we allow using a key index as well.
1677 */
1678 if (rx->key &&
1679 rx->key->conf.cipher != WLAN_CIPHER_SUITE_WEP40 &&
1680 rx->key->conf.cipher != WLAN_CIPHER_SUITE_WEP104 &&
1681 !is_multicast_ether_addr(hdr->addr1))
1682 rx->key = NULL;
1683 }
1684 }
1685
1686 if (rx->key) {
1687 if (unlikely(rx->key->flags & KEY_FLAG_TAINTED))
1688 return RX_DROP_MONITOR;
1689
1690 rx->key->tx_rx_count++;
1691 /* TODO: add threshold stuff again */
1692 } else {
1693 return RX_DROP_MONITOR;
1694 }
1695
1696 switch (rx->key->conf.cipher) {
1697 case WLAN_CIPHER_SUITE_WEP40:
1698 case WLAN_CIPHER_SUITE_WEP104:
1699 result = ieee80211_crypto_wep_decrypt(rx);
1700 break;
1701 case WLAN_CIPHER_SUITE_TKIP:
1702 result = ieee80211_crypto_tkip_decrypt(rx);
1703 break;
1704 case WLAN_CIPHER_SUITE_CCMP:
Jouni Malinen2b2ba0d2015-01-24 19:52:07 +02001705 result = ieee80211_crypto_ccmp_decrypt(
1706 rx, IEEE80211_CCMP_MIC_LEN);
1707 break;
1708 case WLAN_CIPHER_SUITE_CCMP_256:
1709 result = ieee80211_crypto_ccmp_decrypt(
1710 rx, IEEE80211_CCMP_256_MIC_LEN);
Johan Almbladh86c228a2013-08-14 15:29:46 +02001711 break;
1712 case WLAN_CIPHER_SUITE_AES_CMAC:
1713 result = ieee80211_crypto_aes_cmac_decrypt(rx);
1714 break;
Jouni Malinen56c52da2015-01-24 19:52:08 +02001715 case WLAN_CIPHER_SUITE_BIP_CMAC_256:
1716 result = ieee80211_crypto_aes_cmac_256_decrypt(rx);
1717 break;
Jouni Malinen8ade5382015-01-24 19:52:09 +02001718 case WLAN_CIPHER_SUITE_BIP_GMAC_128:
1719 case WLAN_CIPHER_SUITE_BIP_GMAC_256:
1720 result = ieee80211_crypto_aes_gmac_decrypt(rx);
1721 break;
Jouni Malinen00b9cfa2015-01-24 19:52:06 +02001722 case WLAN_CIPHER_SUITE_GCMP:
1723 case WLAN_CIPHER_SUITE_GCMP_256:
1724 result = ieee80211_crypto_gcmp_decrypt(rx);
1725 break;
Johan Almbladh86c228a2013-08-14 15:29:46 +02001726 default:
Max Stepanov2475b1cc2013-03-24 14:23:27 +02001727 result = ieee80211_crypto_hw_decrypt(rx);
Johan Almbladh86c228a2013-08-14 15:29:46 +02001728 }
1729
1730 /* the hdr variable is invalid after the decrypt handlers */
1731
1732 /* either the frame has been decrypted or will be dropped */
1733 status->flag |= RX_FLAG_DECRYPTED;
1734
1735 return result;
1736}
1737
Johannes Berg571ecf62007-07-27 15:43:22 +02001738static inline struct ieee80211_fragment_entry *
1739ieee80211_reassemble_add(struct ieee80211_sub_if_data *sdata,
1740 unsigned int frag, unsigned int seq, int rx_queue,
1741 struct sk_buff **skb)
1742{
1743 struct ieee80211_fragment_entry *entry;
Johannes Berg571ecf62007-07-27 15:43:22 +02001744
Johannes Berg571ecf62007-07-27 15:43:22 +02001745 entry = &sdata->fragments[sdata->fragment_next++];
1746 if (sdata->fragment_next >= IEEE80211_FRAGMENT_MAX)
1747 sdata->fragment_next = 0;
1748
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02001749 if (!skb_queue_empty(&entry->skb_list))
Johannes Berg571ecf62007-07-27 15:43:22 +02001750 __skb_queue_purge(&entry->skb_list);
Johannes Berg571ecf62007-07-27 15:43:22 +02001751
1752 __skb_queue_tail(&entry->skb_list, *skb); /* no need for locking */
1753 *skb = NULL;
1754 entry->first_frag_time = jiffies;
1755 entry->seq = seq;
1756 entry->rx_queue = rx_queue;
1757 entry->last_frag = frag;
1758 entry->ccmp = 0;
1759 entry->extra_len = 0;
1760
1761 return entry;
1762}
1763
1764static inline struct ieee80211_fragment_entry *
1765ieee80211_reassemble_find(struct ieee80211_sub_if_data *sdata,
Harvey Harrisonb73d70a2008-07-15 18:44:12 -07001766 unsigned int frag, unsigned int seq,
Johannes Berg571ecf62007-07-27 15:43:22 +02001767 int rx_queue, struct ieee80211_hdr *hdr)
1768{
1769 struct ieee80211_fragment_entry *entry;
1770 int i, idx;
1771
1772 idx = sdata->fragment_next;
1773 for (i = 0; i < IEEE80211_FRAGMENT_MAX; i++) {
1774 struct ieee80211_hdr *f_hdr;
Johannes Berg571ecf62007-07-27 15:43:22 +02001775
1776 idx--;
1777 if (idx < 0)
1778 idx = IEEE80211_FRAGMENT_MAX - 1;
1779
1780 entry = &sdata->fragments[idx];
1781 if (skb_queue_empty(&entry->skb_list) || entry->seq != seq ||
1782 entry->rx_queue != rx_queue ||
1783 entry->last_frag + 1 != frag)
1784 continue;
1785
Harvey Harrisonb73d70a2008-07-15 18:44:12 -07001786 f_hdr = (struct ieee80211_hdr *)entry->skb_list.next->data;
Johannes Berg571ecf62007-07-27 15:43:22 +02001787
Harvey Harrisonb73d70a2008-07-15 18:44:12 -07001788 /*
1789 * Check ftype and addresses are equal, else check next fragment
1790 */
1791 if (((hdr->frame_control ^ f_hdr->frame_control) &
1792 cpu_to_le16(IEEE80211_FCTL_FTYPE)) ||
Joe Perchesb203ca32012-05-08 18:56:52 +00001793 !ether_addr_equal(hdr->addr1, f_hdr->addr1) ||
1794 !ether_addr_equal(hdr->addr2, f_hdr->addr2))
Johannes Berg571ecf62007-07-27 15:43:22 +02001795 continue;
1796
S.Çağlar Onurab466232008-02-14 17:36:47 +02001797 if (time_after(jiffies, entry->first_frag_time + 2 * HZ)) {
Johannes Berg571ecf62007-07-27 15:43:22 +02001798 __skb_queue_purge(&entry->skb_list);
1799 continue;
1800 }
1801 return entry;
1802 }
1803
1804 return NULL;
1805}
1806
Johannes Berg49461622008-06-30 15:10:45 +02001807static ieee80211_rx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +01001808ieee80211_rx_h_defragment(struct ieee80211_rx_data *rx)
Johannes Berg571ecf62007-07-27 15:43:22 +02001809{
1810 struct ieee80211_hdr *hdr;
1811 u16 sc;
Harvey Harrison358c8d92008-07-15 18:44:13 -07001812 __le16 fc;
Johannes Berg571ecf62007-07-27 15:43:22 +02001813 unsigned int frag, seq;
1814 struct ieee80211_fragment_entry *entry;
1815 struct sk_buff *skb;
Johannes Berg554891e2010-09-24 12:38:25 +02001816 struct ieee80211_rx_status *status;
Johannes Berg571ecf62007-07-27 15:43:22 +02001817
Harvey Harrisonb73d70a2008-07-15 18:44:12 -07001818 hdr = (struct ieee80211_hdr *)rx->skb->data;
Harvey Harrison358c8d92008-07-15 18:44:13 -07001819 fc = hdr->frame_control;
Javier Cardonaf7fbf702012-10-25 11:10:18 -07001820
1821 if (ieee80211_is_ctl(fc))
1822 return RX_CONTINUE;
1823
Johannes Berg571ecf62007-07-27 15:43:22 +02001824 sc = le16_to_cpu(hdr->seq_ctrl);
1825 frag = sc & IEEE80211_SCTL_FRAG;
1826
Johannes Bergb8fff402014-11-03 13:57:46 +01001827 if (is_multicast_ether_addr(hdr->addr1)) {
Johannes Bergc206ca62015-04-22 20:47:28 +02001828 I802_DEBUG_INC(rx->local->dot11MulticastReceivedFrameCount);
Andreas Müllerd0259332014-12-12 12:11:11 +01001829 goto out_no_led;
Johannes Berg571ecf62007-07-27 15:43:22 +02001830 }
Johannes Bergb8fff402014-11-03 13:57:46 +01001831
Andreas Müllerd0259332014-12-12 12:11:11 +01001832 if (likely(!ieee80211_has_morefrags(fc) && frag == 0))
1833 goto out;
1834
Johannes Berg571ecf62007-07-27 15:43:22 +02001835 I802_DEBUG_INC(rx->local->rx_handlers_fragments);
1836
Zhu Yie3cf8b32010-03-29 17:35:07 +08001837 if (skb_linearize(rx->skb))
1838 return RX_DROP_UNUSABLE;
1839
Abhijeet Kolekar058897a2010-05-11 11:22:11 -07001840 /*
1841 * skb_linearize() might change the skb->data and
1842 * previously cached variables (in this case, hdr) need to
1843 * be refreshed with the new data.
1844 */
1845 hdr = (struct ieee80211_hdr *)rx->skb->data;
Johannes Berg571ecf62007-07-27 15:43:22 +02001846 seq = (sc & IEEE80211_SCTL_SEQ) >> 4;
1847
1848 if (frag == 0) {
1849 /* This is the first fragment of a new frame. */
1850 entry = ieee80211_reassemble_add(rx->sdata, frag, seq,
Johannes Berg9e262972011-07-07 18:45:03 +02001851 rx->seqno_idx, &(rx->skb));
Jouni Malinen2b2ba0d2015-01-24 19:52:07 +02001852 if (rx->key &&
1853 (rx->key->conf.cipher == WLAN_CIPHER_SUITE_CCMP ||
1854 rx->key->conf.cipher == WLAN_CIPHER_SUITE_CCMP_256) &&
Harvey Harrison358c8d92008-07-15 18:44:13 -07001855 ieee80211_has_protected(fc)) {
Johannes Berg9e262972011-07-07 18:45:03 +02001856 int queue = rx->security_idx;
Johannes Berg571ecf62007-07-27 15:43:22 +02001857 /* Store CCMP PN so that we can verify that the next
1858 * fragment has a sequential PN value. */
1859 entry->ccmp = 1;
1860 memcpy(entry->last_pn,
Jouni Malinen91902522010-06-11 10:27:33 -07001861 rx->key->u.ccmp.rx_pn[queue],
Johannes Berg4325f6c2013-05-08 13:09:08 +02001862 IEEE80211_CCMP_PN_LEN);
Johannes Berg571ecf62007-07-27 15:43:22 +02001863 }
Johannes Berg9ae54c82008-01-31 19:48:20 +01001864 return RX_QUEUED;
Johannes Berg571ecf62007-07-27 15:43:22 +02001865 }
1866
1867 /* This is a fragment for a frame that should already be pending in
1868 * fragment cache. Add this fragment to the end of the pending entry.
1869 */
Johannes Berg9e262972011-07-07 18:45:03 +02001870 entry = ieee80211_reassemble_find(rx->sdata, frag, seq,
1871 rx->seqno_idx, hdr);
Johannes Berg571ecf62007-07-27 15:43:22 +02001872 if (!entry) {
1873 I802_DEBUG_INC(rx->local->rx_handlers_drop_defrag);
Johannes Berge4c26ad2008-01-31 19:48:21 +01001874 return RX_DROP_MONITOR;
Johannes Berg571ecf62007-07-27 15:43:22 +02001875 }
1876
1877 /* Verify that MPDUs within one MSDU have sequential PN values.
1878 * (IEEE 802.11i, 8.3.3.4.5) */
1879 if (entry->ccmp) {
1880 int i;
Johannes Berg4325f6c2013-05-08 13:09:08 +02001881 u8 pn[IEEE80211_CCMP_PN_LEN], *rpn;
Jouni Malinen91902522010-06-11 10:27:33 -07001882 int queue;
Jouni Malinen2b2ba0d2015-01-24 19:52:07 +02001883 if (!rx->key ||
1884 (rx->key->conf.cipher != WLAN_CIPHER_SUITE_CCMP &&
1885 rx->key->conf.cipher != WLAN_CIPHER_SUITE_CCMP_256))
Johannes Berge4c26ad2008-01-31 19:48:21 +01001886 return RX_DROP_UNUSABLE;
Johannes Berg4325f6c2013-05-08 13:09:08 +02001887 memcpy(pn, entry->last_pn, IEEE80211_CCMP_PN_LEN);
1888 for (i = IEEE80211_CCMP_PN_LEN - 1; i >= 0; i--) {
Johannes Berg571ecf62007-07-27 15:43:22 +02001889 pn[i]++;
1890 if (pn[i])
1891 break;
1892 }
Johannes Berg9e262972011-07-07 18:45:03 +02001893 queue = rx->security_idx;
Jouni Malinen91902522010-06-11 10:27:33 -07001894 rpn = rx->key->u.ccmp.rx_pn[queue];
Johannes Berg4325f6c2013-05-08 13:09:08 +02001895 if (memcmp(pn, rpn, IEEE80211_CCMP_PN_LEN))
Johannes Berge4c26ad2008-01-31 19:48:21 +01001896 return RX_DROP_UNUSABLE;
Johannes Berg4325f6c2013-05-08 13:09:08 +02001897 memcpy(entry->last_pn, pn, IEEE80211_CCMP_PN_LEN);
Johannes Berg571ecf62007-07-27 15:43:22 +02001898 }
1899
Harvey Harrison358c8d92008-07-15 18:44:13 -07001900 skb_pull(rx->skb, ieee80211_hdrlen(fc));
Johannes Berg571ecf62007-07-27 15:43:22 +02001901 __skb_queue_tail(&entry->skb_list, rx->skb);
1902 entry->last_frag = frag;
1903 entry->extra_len += rx->skb->len;
Harvey Harrison358c8d92008-07-15 18:44:13 -07001904 if (ieee80211_has_morefrags(fc)) {
Johannes Berg571ecf62007-07-27 15:43:22 +02001905 rx->skb = NULL;
Johannes Berg9ae54c82008-01-31 19:48:20 +01001906 return RX_QUEUED;
Johannes Berg571ecf62007-07-27 15:43:22 +02001907 }
1908
1909 rx->skb = __skb_dequeue(&entry->skb_list);
1910 if (skb_tailroom(rx->skb) < entry->extra_len) {
Johannes Bergf1160432015-04-22 20:25:20 +02001911 I802_DEBUG_INC(rx->local->rx_expand_skb_head_defrag);
Johannes Berg571ecf62007-07-27 15:43:22 +02001912 if (unlikely(pskb_expand_head(rx->skb, 0, entry->extra_len,
1913 GFP_ATOMIC))) {
1914 I802_DEBUG_INC(rx->local->rx_handlers_drop_defrag);
1915 __skb_queue_purge(&entry->skb_list);
Johannes Berge4c26ad2008-01-31 19:48:21 +01001916 return RX_DROP_UNUSABLE;
Johannes Berg571ecf62007-07-27 15:43:22 +02001917 }
1918 }
1919 while ((skb = __skb_dequeue(&entry->skb_list))) {
1920 memcpy(skb_put(rx->skb, skb->len), skb->data, skb->len);
1921 dev_kfree_skb(skb);
1922 }
1923
1924 /* Complete frame has been reassembled - process it now */
Johannes Berg554891e2010-09-24 12:38:25 +02001925 status = IEEE80211_SKB_RXCB(rx->skb);
1926 status->rx_flags |= IEEE80211_RX_FRAGMENTED;
Johannes Berg571ecf62007-07-27 15:43:22 +02001927
1928 out:
Andreas Müllerd0259332014-12-12 12:11:11 +01001929 ieee80211_led_rx(rx->local);
1930 out_no_led:
Johannes Berg571ecf62007-07-27 15:43:22 +02001931 if (rx->sta)
1932 rx->sta->rx_packets++;
Johannes Berg9ae54c82008-01-31 19:48:20 +01001933 return RX_CONTINUE;
Johannes Berg571ecf62007-07-27 15:43:22 +02001934}
1935
Johannes Berg1df332e2012-10-26 00:09:11 +02001936static int ieee80211_802_1x_port_control(struct ieee80211_rx_data *rx)
Johannes Berg571ecf62007-07-27 15:43:22 +02001937{
Johannes Berg1df332e2012-10-26 00:09:11 +02001938 if (unlikely(!rx->sta || !test_sta_flag(rx->sta, WLAN_STA_AUTHORIZED)))
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001939 return -EACCES;
Johannes Berg571ecf62007-07-27 15:43:22 +02001940
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001941 return 0;
Johannes Berg571ecf62007-07-27 15:43:22 +02001942}
1943
Johannes Berg1df332e2012-10-26 00:09:11 +02001944static int ieee80211_drop_unencrypted(struct ieee80211_rx_data *rx, __le16 fc)
Johannes Berg571ecf62007-07-27 15:43:22 +02001945{
Johannes Bergeb9fb5b2009-11-16 13:58:20 +01001946 struct sk_buff *skb = rx->skb;
1947 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
1948
Johannes Berg3017b802007-08-28 17:01:53 -04001949 /*
Johannes Berg7848ba72007-09-14 11:10:25 -04001950 * Pass through unencrypted frames if the hardware has
1951 * decrypted them already.
Johannes Berg3017b802007-08-28 17:01:53 -04001952 */
Johannes Bergeb9fb5b2009-11-16 13:58:20 +01001953 if (status->flag & RX_FLAG_DECRYPTED)
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001954 return 0;
Johannes Berg571ecf62007-07-27 15:43:22 +02001955
1956 /* Drop unencrypted frames if key is set. */
Harvey Harrison358c8d92008-07-15 18:44:13 -07001957 if (unlikely(!ieee80211_has_protected(fc) &&
1958 !ieee80211_is_nullfunc(fc) &&
Johannes Berge8f4fb72015-03-20 11:37:36 +01001959 ieee80211_is_data(fc) && rx->key))
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +02001960 return -EACCES;
Johannes Bergbef5d1c2010-02-16 11:05:00 +01001961
1962 return 0;
1963}
1964
Johannes Berg1df332e2012-10-26 00:09:11 +02001965static int ieee80211_drop_unencrypted_mgmt(struct ieee80211_rx_data *rx)
Johannes Bergbef5d1c2010-02-16 11:05:00 +01001966{
1967 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
Jouni Malinene3efca02010-03-28 22:31:15 -07001968 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(rx->skb);
Johannes Bergbef5d1c2010-02-16 11:05:00 +01001969 __le16 fc = hdr->frame_control;
Johannes Bergbef5d1c2010-02-16 11:05:00 +01001970
Jouni Malinene3efca02010-03-28 22:31:15 -07001971 /*
1972 * Pass through unencrypted frames if the hardware has
1973 * decrypted them already.
1974 */
1975 if (status->flag & RX_FLAG_DECRYPTED)
1976 return 0;
Johannes Bergbef5d1c2010-02-16 11:05:00 +01001977
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001978 if (rx->sta && test_sta_flag(rx->sta, WLAN_STA_MFP)) {
Jouni Malinend211e902010-03-28 22:29:52 -07001979 if (unlikely(!ieee80211_has_protected(fc) &&
1980 ieee80211_is_unicast_robust_mgmt_frame(rx->skb) &&
Jouni Malinencf4e5942010-12-16 00:52:40 +02001981 rx->key)) {
Johannes Berg6ff57cf2013-05-16 00:55:00 +02001982 if (ieee80211_is_deauth(fc) ||
1983 ieee80211_is_disassoc(fc))
1984 cfg80211_rx_unprot_mlme_mgmt(rx->sdata->dev,
1985 rx->skb->data,
1986 rx->skb->len);
Jouni Malinenf2ca3ea2009-05-08 12:36:03 +03001987 return -EACCES;
Jouni Malinencf4e5942010-12-16 00:52:40 +02001988 }
Jouni Malinenf2ca3ea2009-05-08 12:36:03 +03001989 /* BIP does not use Protected field, so need to check MMIE */
Joe Perchesf64f9e72009-11-29 16:55:45 -08001990 if (unlikely(ieee80211_is_multicast_robust_mgmt_frame(rx->skb) &&
Jouni Malinencf4e5942010-12-16 00:52:40 +02001991 ieee80211_get_mmie_keyidx(rx->skb) < 0)) {
Johannes Berg6ff57cf2013-05-16 00:55:00 +02001992 if (ieee80211_is_deauth(fc) ||
1993 ieee80211_is_disassoc(fc))
1994 cfg80211_rx_unprot_mlme_mgmt(rx->sdata->dev,
1995 rx->skb->data,
1996 rx->skb->len);
Jouni Malinenf2ca3ea2009-05-08 12:36:03 +03001997 return -EACCES;
Jouni Malinencf4e5942010-12-16 00:52:40 +02001998 }
Jouni Malinenf2ca3ea2009-05-08 12:36:03 +03001999 /*
2000 * When using MFP, Action frames are not allowed prior to
2001 * having configured keys.
2002 */
2003 if (unlikely(ieee80211_is_action(fc) && !rx->key &&
Johannes Bergd8ca16d2014-01-23 16:20:29 +01002004 ieee80211_is_robust_mgmt_frame(rx->skb)))
Jouni Malinenf2ca3ea2009-05-08 12:36:03 +03002005 return -EACCES;
2006 }
Johannes Bergb3fc9c62008-04-13 10:12:47 +02002007
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002008 return 0;
Johannes Berg571ecf62007-07-27 15:43:22 +02002009}
2010
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002011static int
Felix Fietkau4114fa22011-04-12 19:15:22 +02002012__ieee80211_data_to_8023(struct ieee80211_rx_data *rx, bool *port_control)
Johannes Berg571ecf62007-07-27 15:43:22 +02002013{
Johannes Bergeb9fb5b2009-11-16 13:58:20 +01002014 struct ieee80211_sub_if_data *sdata = rx->sdata;
Felix Fietkauf14543ee2009-11-10 20:10:05 +01002015 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
Felix Fietkaufbb327c2011-01-18 15:48:48 +01002016 bool check_port_control = false;
2017 struct ethhdr *ehdr;
2018 int ret;
Felix Fietkauf14543ee2009-11-10 20:10:05 +01002019
Felix Fietkau4114fa22011-04-12 19:15:22 +02002020 *port_control = false;
Johannes Berg9bc383d2009-11-19 11:55:19 +01002021 if (ieee80211_has_a4(hdr->frame_control) &&
2022 sdata->vif.type == NL80211_IFTYPE_AP_VLAN && !sdata->u.vlan.sta)
Felix Fietkauf14543ee2009-11-10 20:10:05 +01002023 return -1;
Johannes Berg9bc383d2009-11-19 11:55:19 +01002024
Felix Fietkaufbb327c2011-01-18 15:48:48 +01002025 if (sdata->vif.type == NL80211_IFTYPE_STATION &&
2026 !!sdata->u.mgd.use_4addr != !!ieee80211_has_a4(hdr->frame_control)) {
2027
2028 if (!sdata->u.mgd.use_4addr)
2029 return -1;
2030 else
2031 check_port_control = true;
2032 }
2033
Johannes Berg9bc383d2009-11-19 11:55:19 +01002034 if (is_multicast_ether_addr(hdr->addr1) &&
Felix Fietkaufbb327c2011-01-18 15:48:48 +01002035 sdata->vif.type == NL80211_IFTYPE_AP_VLAN && sdata->u.vlan.sta)
Felix Fietkauf14543ee2009-11-10 20:10:05 +01002036 return -1;
Johannes Berg571ecf62007-07-27 15:43:22 +02002037
Felix Fietkaufbb327c2011-01-18 15:48:48 +01002038 ret = ieee80211_data_to_8023(rx->skb, sdata->vif.addr, sdata->vif.type);
Felix Fietkau4114fa22011-04-12 19:15:22 +02002039 if (ret < 0)
Felix Fietkaufbb327c2011-01-18 15:48:48 +01002040 return ret;
2041
2042 ehdr = (struct ethhdr *) rx->skb->data;
Felix Fietkau4114fa22011-04-12 19:15:22 +02002043 if (ehdr->h_proto == rx->sdata->control_port_protocol)
2044 *port_control = true;
2045 else if (check_port_control)
Felix Fietkaufbb327c2011-01-18 15:48:48 +01002046 return -1;
2047
2048 return 0;
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002049}
Johannes Berg571ecf62007-07-27 15:43:22 +02002050
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002051/*
2052 * requires that rx->skb is a frame with ethernet header
2053 */
Harvey Harrison358c8d92008-07-15 18:44:13 -07002054static bool ieee80211_frame_allowed(struct ieee80211_rx_data *rx, __le16 fc)
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002055{
Senthil Balasubramanianc97c23e2008-05-28 23:15:32 +05302056 static const u8 pae_group_addr[ETH_ALEN] __aligned(2)
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002057 = { 0x01, 0x80, 0xC2, 0x00, 0x00, 0x03 };
2058 struct ethhdr *ehdr = (struct ethhdr *) rx->skb->data;
2059
2060 /*
2061 * Allow EAPOL frames to us/the PAE group address regardless
2062 * of whether the frame was encrypted or not.
2063 */
Johannes Berga621fa42010-08-27 14:26:54 +03002064 if (ehdr->h_proto == rx->sdata->control_port_protocol &&
Joe Perches3bc79452012-05-08 18:56:53 +00002065 (ether_addr_equal(ehdr->h_dest, rx->sdata->vif.addr) ||
2066 ether_addr_equal(ehdr->h_dest, pae_group_addr)))
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002067 return true;
2068
2069 if (ieee80211_802_1x_port_control(rx) ||
Harvey Harrison358c8d92008-07-15 18:44:13 -07002070 ieee80211_drop_unencrypted(rx, fc))
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002071 return false;
2072
2073 return true;
2074}
2075
2076/*
2077 * requires that rx->skb is a frame with ethernet header
2078 */
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002079static void
Johannes Berg5cf121c2008-02-25 16:27:43 +01002080ieee80211_deliver_skb(struct ieee80211_rx_data *rx)
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002081{
Johannes Bergeb9fb5b2009-11-16 13:58:20 +01002082 struct ieee80211_sub_if_data *sdata = rx->sdata;
2083 struct net_device *dev = sdata->dev;
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002084 struct sk_buff *skb, *xmit_skb;
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002085 struct ethhdr *ehdr = (struct ethhdr *) rx->skb->data;
2086 struct sta_info *dsta;
Johannes Berg571ecf62007-07-27 15:43:22 +02002087
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002088 skb = rx->skb;
2089 xmit_skb = NULL;
Johannes Berg571ecf62007-07-27 15:43:22 +02002090
Johannes Berg5a490512015-04-22 17:10:38 +02002091 ieee80211_rx_stats(dev, skb->len);
2092
Johannes Berg05c914f2008-09-11 00:01:58 +02002093 if ((sdata->vif.type == NL80211_IFTYPE_AP ||
2094 sdata->vif.type == NL80211_IFTYPE_AP_VLAN) &&
Johannes Berg213cd112008-09-11 00:01:54 +02002095 !(sdata->flags & IEEE80211_SDATA_DONT_BRIDGE_PACKETS) &&
Johannes Berg9bc383d2009-11-19 11:55:19 +01002096 (sdata->vif.type != NL80211_IFTYPE_AP_VLAN || !sdata->u.vlan.sta)) {
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002097 if (is_multicast_ether_addr(ehdr->h_dest)) {
2098 /*
2099 * send multicast frames both to higher layers in
2100 * local net stack and back to the wireless medium
2101 */
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002102 xmit_skb = skb_copy(skb, GFP_ATOMIC);
Joe Perchese87cc472012-05-13 21:56:26 +00002103 if (!xmit_skb)
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002104 net_info_ratelimited("%s: failed to clone multicast frame\n",
Joe Perchese87cc472012-05-13 21:56:26 +00002105 dev->name);
Johannes Berg571ecf62007-07-27 15:43:22 +02002106 } else {
Johannes Bergabe60632009-11-25 17:46:18 +01002107 dsta = sta_info_get(sdata, skb->data);
2108 if (dsta) {
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002109 /*
2110 * The destination station is associated to
2111 * this AP (in this VLAN), so send the frame
2112 * directly to it and do not pass it to local
2113 * net stack.
Johannes Berg571ecf62007-07-27 15:43:22 +02002114 */
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002115 xmit_skb = skb;
Johannes Berg571ecf62007-07-27 15:43:22 +02002116 skb = NULL;
2117 }
Johannes Berg571ecf62007-07-27 15:43:22 +02002118 }
2119 }
2120
Kalle Valo59d9cb02009-12-17 13:54:57 +01002121#ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
Johannes Berg9e890a1f2013-12-04 09:16:31 +01002122 if (skb) {
2123 /* 'align' will only take the values 0 or 2 here since all
2124 * frames are required to be aligned to 2-byte boundaries
2125 * when being passed to mac80211; the code here works just
2126 * as well if that isn't true, but mac80211 assumes it can
2127 * access fields as 2-byte aligned (e.g. for ether_addr_equal)
Johannes Bergd1c3a372009-01-07 00:26:10 +01002128 */
Johannes Berg9e890a1f2013-12-04 09:16:31 +01002129 int align;
2130
2131 align = (unsigned long)(skb->data + sizeof(struct ethhdr)) & 3;
Johannes Bergd1c3a372009-01-07 00:26:10 +01002132 if (align) {
2133 if (WARN_ON(skb_headroom(skb) < 3)) {
2134 dev_kfree_skb(skb);
2135 skb = NULL;
2136 } else {
2137 u8 *data = skb->data;
Zhu Yi8ce0b582009-10-28 13:13:52 -07002138 size_t len = skb_headlen(skb);
2139 skb->data -= align;
2140 memmove(skb->data, data, len);
2141 skb_set_tail_pointer(skb, len);
Johannes Bergd1c3a372009-01-07 00:26:10 +01002142 }
2143 }
Johannes Berg9e890a1f2013-12-04 09:16:31 +01002144 }
Johannes Bergd1c3a372009-01-07 00:26:10 +01002145#endif
2146
Johannes Berg9e890a1f2013-12-04 09:16:31 +01002147 if (skb) {
2148 /* deliver to local stack */
2149 skb->protocol = eth_type_trans(skb, dev);
2150 memset(skb->cb, 0, sizeof(skb->cb));
Johannes Bergaf9f9b22015-06-11 16:02:32 +02002151 if (rx->napi)
2152 napi_gro_receive(rx->napi, skb);
Johannes Berg06d181a2014-02-04 20:51:09 +01002153 else
2154 netif_receive_skb(skb);
Johannes Berg571ecf62007-07-27 15:43:22 +02002155 }
2156
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002157 if (xmit_skb) {
Helmut Schaaaef6c922011-12-21 09:11:35 +01002158 /*
2159 * Send to wireless media and increase priority by 256 to
2160 * keep the received priority instead of reclassifying
2161 * the frame (see cfg80211_classify8021d).
2162 */
2163 xmit_skb->priority += 256;
YOSHIFUJI Hideakif831e902007-12-12 03:54:23 +09002164 xmit_skb->protocol = htons(ETH_P_802_3);
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002165 skb_reset_network_header(xmit_skb);
2166 skb_reset_mac_header(xmit_skb);
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002167 dev_queue_xmit(xmit_skb);
Johannes Berg571ecf62007-07-27 15:43:22 +02002168 }
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002169}
2170
Johannes Berg49461622008-06-30 15:10:45 +02002171static ieee80211_rx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +01002172ieee80211_rx_h_amsdu(struct ieee80211_rx_data *rx)
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02002173{
Johannes Bergeb9fb5b2009-11-16 13:58:20 +01002174 struct net_device *dev = rx->sdata->dev;
Zhu Yieaf85ca2009-12-01 10:18:37 +08002175 struct sk_buff *skb = rx->skb;
Harvey Harrison358c8d92008-07-15 18:44:13 -07002176 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
2177 __le16 fc = hdr->frame_control;
Zhu Yieaf85ca2009-12-01 10:18:37 +08002178 struct sk_buff_head frame_list;
Johannes Berg554891e2010-09-24 12:38:25 +02002179 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(rx->skb);
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02002180
Harvey Harrison358c8d92008-07-15 18:44:13 -07002181 if (unlikely(!ieee80211_is_data(fc)))
Johannes Berg9ae54c82008-01-31 19:48:20 +01002182 return RX_CONTINUE;
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02002183
Harvey Harrison358c8d92008-07-15 18:44:13 -07002184 if (unlikely(!ieee80211_is_data_present(fc)))
Johannes Berge4c26ad2008-01-31 19:48:21 +01002185 return RX_DROP_MONITOR;
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02002186
Johannes Berg554891e2010-09-24 12:38:25 +02002187 if (!(status->rx_flags & IEEE80211_RX_AMSDU))
Johannes Berg9ae54c82008-01-31 19:48:20 +01002188 return RX_CONTINUE;
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02002189
Zhu Yieaf85ca2009-12-01 10:18:37 +08002190 if (ieee80211_has_a4(hdr->frame_control) &&
2191 rx->sdata->vif.type == NL80211_IFTYPE_AP_VLAN &&
2192 !rx->sdata->u.vlan.sta)
2193 return RX_DROP_UNUSABLE;
2194
2195 if (is_multicast_ether_addr(hdr->addr1) &&
2196 ((rx->sdata->vif.type == NL80211_IFTYPE_AP_VLAN &&
2197 rx->sdata->u.vlan.sta) ||
2198 (rx->sdata->vif.type == NL80211_IFTYPE_STATION &&
2199 rx->sdata->u.mgd.use_4addr)))
Johannes Berge4c26ad2008-01-31 19:48:21 +01002200 return RX_DROP_UNUSABLE;
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02002201
2202 skb->dev = dev;
Zhu Yieaf85ca2009-12-01 10:18:37 +08002203 __skb_queue_head_init(&frame_list);
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02002204
Zhu Yie3cf8b32010-03-29 17:35:07 +08002205 if (skb_linearize(skb))
2206 return RX_DROP_UNUSABLE;
2207
Zhu Yieaf85ca2009-12-01 10:18:37 +08002208 ieee80211_amsdu_to_8023s(skb, &frame_list, dev->dev_addr,
2209 rx->sdata->vif.type,
Yogesh Ashok Powar8b3beca2011-05-13 11:22:31 -07002210 rx->local->hw.extra_tx_headroom, true);
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02002211
Zhu Yieaf85ca2009-12-01 10:18:37 +08002212 while (!skb_queue_empty(&frame_list)) {
2213 rx->skb = __skb_dequeue(&frame_list);
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02002214
Harvey Harrison358c8d92008-07-15 18:44:13 -07002215 if (!ieee80211_frame_allowed(rx, fc)) {
Zhu Yieaf85ca2009-12-01 10:18:37 +08002216 dev_kfree_skb(rx->skb);
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002217 continue;
2218 }
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02002219
2220 ieee80211_deliver_skb(rx);
2221 }
2222
Johannes Berg9ae54c82008-01-31 19:48:20 +01002223 return RX_QUEUED;
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02002224}
2225
Ingo Molnarbf94e172008-10-12 23:51:38 -07002226#ifdef CONFIG_MAC80211_MESH
Davide Pesaventob0dee572008-09-27 17:29:12 +02002227static ieee80211_rx_result
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02002228ieee80211_rx_h_mesh_fwding(struct ieee80211_rx_data *rx)
2229{
Thomas Pedersen30789eb2011-11-24 17:15:26 -08002230 struct ieee80211_hdr *fwd_hdr, *hdr;
2231 struct ieee80211_tx_info *info;
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02002232 struct ieee80211s_hdr *mesh_hdr;
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02002233 struct sk_buff *skb = rx->skb, *fwd_skb;
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002234 struct ieee80211_local *local = rx->local;
Johannes Bergeb9fb5b2009-11-16 13:58:20 +01002235 struct ieee80211_sub_if_data *sdata = rx->sdata;
Thomas Pedersen30789eb2011-11-24 17:15:26 -08002236 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Thomas Pedersen30789eb2011-11-24 17:15:26 -08002237 u16 q, hdrlen;
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02002238
2239 hdr = (struct ieee80211_hdr *) skb->data;
2240 hdrlen = ieee80211_hdrlen(hdr->frame_control);
Johannes Berg9b395bc2012-10-26 00:36:40 +02002241
2242 /* make sure fixed part of mesh header is there, also checks skb len */
2243 if (!pskb_may_pull(rx->skb, hdrlen + 6))
2244 return RX_DROP_MONITOR;
2245
2246 mesh_hdr = (struct ieee80211s_hdr *) (skb->data + hdrlen);
2247
2248 /* make sure full mesh header is there, also checks skb len */
2249 if (!pskb_may_pull(rx->skb,
2250 hdrlen + ieee80211_get_mesh_hdrlen(mesh_hdr)))
2251 return RX_DROP_MONITOR;
2252
2253 /* reload pointers */
2254 hdr = (struct ieee80211_hdr *) skb->data;
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02002255 mesh_hdr = (struct ieee80211s_hdr *) (skb->data + hdrlen);
2256
Bob Copelandd0c22112015-03-02 14:28:52 -05002257 if (ieee80211_drop_unencrypted(rx, hdr->frame_control))
2258 return RX_DROP_MONITOR;
2259
Thomas Pedersen2157fdd2011-09-01 12:32:14 -07002260 /* frame is in RMC, don't forward */
2261 if (ieee80211_is_data(hdr->frame_control) &&
2262 is_multicast_ether_addr(hdr->addr1) &&
Johannes Bergbf7cd942013-02-15 14:40:31 +01002263 mesh_rmc_check(rx->sdata, hdr->addr3, mesh_hdr))
Thomas Pedersen2157fdd2011-09-01 12:32:14 -07002264 return RX_DROP_MONITOR;
2265
Johannes Berg5c900672015-04-22 14:48:34 +02002266 if (!ieee80211_is_data(hdr->frame_control))
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02002267 return RX_CONTINUE;
2268
2269 if (!mesh_hdr->ttl)
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02002270 return RX_DROP_MONITOR;
2271
Javier Cardona43b7b312009-10-15 18:10:51 -07002272 if (mesh_hdr->flags & MESH_FLAGS_AE) {
YanBo79617de2008-09-22 13:30:32 +08002273 struct mesh_path *mppath;
Javier Cardona43b7b312009-10-15 18:10:51 -07002274 char *proxied_addr;
2275 char *mpp_addr;
2276
2277 if (is_multicast_ether_addr(hdr->addr1)) {
2278 mpp_addr = hdr->addr3;
2279 proxied_addr = mesh_hdr->eaddr1;
Johannes Berg9b395bc2012-10-26 00:36:40 +02002280 } else if (mesh_hdr->flags & MESH_FLAGS_AE_A5_A6) {
2281 /* has_a4 already checked in ieee80211_rx_mesh_check */
Javier Cardona43b7b312009-10-15 18:10:51 -07002282 mpp_addr = hdr->addr4;
2283 proxied_addr = mesh_hdr->eaddr2;
Johannes Berg9b395bc2012-10-26 00:36:40 +02002284 } else {
2285 return RX_DROP_MONITOR;
Javier Cardona43b7b312009-10-15 18:10:51 -07002286 }
YanBo79617de2008-09-22 13:30:32 +08002287
YanBo79617de2008-09-22 13:30:32 +08002288 rcu_read_lock();
Johannes Bergbf7cd942013-02-15 14:40:31 +01002289 mppath = mpp_path_lookup(sdata, proxied_addr);
YanBo79617de2008-09-22 13:30:32 +08002290 if (!mppath) {
Johannes Bergbf7cd942013-02-15 14:40:31 +01002291 mpp_path_add(sdata, proxied_addr, mpp_addr);
YanBo79617de2008-09-22 13:30:32 +08002292 } else {
2293 spin_lock_bh(&mppath->state_lock);
Joe Perchesb203ca32012-05-08 18:56:52 +00002294 if (!ether_addr_equal(mppath->mpp, mpp_addr))
Javier Cardona43b7b312009-10-15 18:10:51 -07002295 memcpy(mppath->mpp, mpp_addr, ETH_ALEN);
YanBo79617de2008-09-22 13:30:32 +08002296 spin_unlock_bh(&mppath->state_lock);
2297 }
2298 rcu_read_unlock();
2299 }
2300
Javier Cardona3c5772a2009-08-10 12:15:48 -07002301 /* Frame has reached destination. Don't forward */
2302 if (!is_multicast_ether_addr(hdr->addr1) &&
Joe Perchesb203ca32012-05-08 18:56:52 +00002303 ether_addr_equal(sdata->vif.addr, hdr->addr3))
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02002304 return RX_CONTINUE;
2305
Yoni Divinsky00e96de2012-06-20 15:39:13 +03002306 q = ieee80211_select_queue_80211(sdata, skb, hdr);
Thomas Pedersend3c15972011-11-24 17:15:23 -08002307 if (ieee80211_queue_stopped(&local->hw, q)) {
Thomas Pedersen30789eb2011-11-24 17:15:26 -08002308 IEEE80211_IFSTA_MESH_CTR_INC(ifmsh, dropped_frames_congestion);
Thomas Pedersend3c15972011-11-24 17:15:23 -08002309 return RX_DROP_MONITOR;
2310 }
2311 skb_set_queue_mapping(skb, q);
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02002312
Thomas Pedersen30789eb2011-11-24 17:15:26 -08002313 if (!--mesh_hdr->ttl) {
2314 IEEE80211_IFSTA_MESH_CTR_INC(ifmsh, dropped_frames_ttl);
Javier Cardona2ac64cd2012-10-24 12:43:31 -07002315 goto out;
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02002316 }
2317
Chun-Yeow Yeohd6655082012-03-02 02:03:19 +08002318 if (!ifmsh->mshcfg.dot11MeshForwarding)
2319 goto out;
2320
Thomas Pedersen30789eb2011-11-24 17:15:26 -08002321 fwd_skb = skb_copy(skb, GFP_ATOMIC);
2322 if (!fwd_skb) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002323 net_info_ratelimited("%s: failed to clone mesh frame\n",
Joe Perchese87cc472012-05-13 21:56:26 +00002324 sdata->name);
Thomas Pedersen30789eb2011-11-24 17:15:26 -08002325 goto out;
2326 }
2327
2328 fwd_hdr = (struct ieee80211_hdr *) fwd_skb->data;
Thomas Pedersen9d6d6f42013-04-08 11:06:12 -07002329 fwd_hdr->frame_control &= ~cpu_to_le16(IEEE80211_FCTL_RETRY);
Thomas Pedersen30789eb2011-11-24 17:15:26 -08002330 info = IEEE80211_SKB_CB(fwd_skb);
2331 memset(info, 0, sizeof(*info));
2332 info->flags |= IEEE80211_TX_INTFL_NEED_TXPROCESSING;
2333 info->control.vif = &rx->sdata->vif;
2334 info->control.jiffies = jiffies;
2335 if (is_multicast_ether_addr(fwd_hdr->addr1)) {
2336 IEEE80211_IFSTA_MESH_CTR_INC(ifmsh, fwded_mcast);
2337 memcpy(fwd_hdr->addr2, sdata->vif.addr, ETH_ALEN);
Marco Porsch3f52b7e2013-01-30 18:14:08 +01002338 /* update power mode indication when forwarding */
2339 ieee80211_mps_set_frame_flags(sdata, NULL, fwd_hdr);
Johannes Bergbf7cd942013-02-15 14:40:31 +01002340 } else if (!mesh_nexthop_lookup(sdata, fwd_skb)) {
Marco Porsch3f52b7e2013-01-30 18:14:08 +01002341 /* mesh power mode flags updated in mesh_nexthop_lookup */
Thomas Pedersen30789eb2011-11-24 17:15:26 -08002342 IEEE80211_IFSTA_MESH_CTR_INC(ifmsh, fwded_unicast);
2343 } else {
2344 /* unable to resolve next hop */
Johannes Bergbf7cd942013-02-15 14:40:31 +01002345 mesh_path_error_tx(sdata, ifmsh->mshcfg.element_ttl,
Chun-Yeow Yeohf63f8422013-11-13 15:39:12 +08002346 fwd_hdr->addr3, 0,
2347 WLAN_REASON_MESH_PATH_NOFORWARD,
2348 fwd_hdr->addr2);
Thomas Pedersen30789eb2011-11-24 17:15:26 -08002349 IEEE80211_IFSTA_MESH_CTR_INC(ifmsh, dropped_frames_no_route);
Jesper Juhl74b8cc32012-01-14 21:52:17 +01002350 kfree_skb(fwd_skb);
Thomas Pedersen30789eb2011-11-24 17:15:26 -08002351 return RX_DROP_MONITOR;
2352 }
2353
2354 IEEE80211_IFSTA_MESH_CTR_INC(ifmsh, fwded_frames);
2355 ieee80211_add_pending_skb(local, fwd_skb);
Johannes Bergb51aff02010-12-22 10:15:07 +01002356 out:
Johannes Bergdf140462015-04-22 14:40:58 +02002357 if (is_multicast_ether_addr(hdr->addr1))
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02002358 return RX_CONTINUE;
Johannes Bergdf140462015-04-22 14:40:58 +02002359 return RX_DROP_MONITOR;
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02002360}
Ingo Molnarbf94e172008-10-12 23:51:38 -07002361#endif
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02002362
2363static ieee80211_rx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +01002364ieee80211_rx_h_data(struct ieee80211_rx_data *rx)
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002365{
Johannes Bergeb9fb5b2009-11-16 13:58:20 +01002366 struct ieee80211_sub_if_data *sdata = rx->sdata;
Vivek Natarajane15276a2010-02-08 17:47:01 +05302367 struct ieee80211_local *local = rx->local;
Johannes Bergeb9fb5b2009-11-16 13:58:20 +01002368 struct net_device *dev = sdata->dev;
Harvey Harrison358c8d92008-07-15 18:44:13 -07002369 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
2370 __le16 fc = hdr->frame_control;
Felix Fietkau4114fa22011-04-12 19:15:22 +02002371 bool port_control;
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002372 int err;
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002373
Harvey Harrison358c8d92008-07-15 18:44:13 -07002374 if (unlikely(!ieee80211_is_data(hdr->frame_control)))
Johannes Berg9ae54c82008-01-31 19:48:20 +01002375 return RX_CONTINUE;
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002376
Harvey Harrison358c8d92008-07-15 18:44:13 -07002377 if (unlikely(!ieee80211_is_data_present(hdr->frame_control)))
Johannes Berge4c26ad2008-01-31 19:48:21 +01002378 return RX_DROP_MONITOR;
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002379
Johannes Berg79c892b2014-11-21 14:26:31 +01002380 if (rx->sta) {
Johannes Berg3d6dc342015-01-23 13:23:48 +01002381 /* The seqno index has the same property as needed
Johannes Berg79c892b2014-11-21 14:26:31 +01002382 * for the rx_msdu field, i.e. it is IEEE80211_NUM_TIDS
2383 * for non-QoS-data frames. Here we know it's a data
2384 * frame, so count MSDUs.
2385 */
Johannes Berg3d6dc342015-01-23 13:23:48 +01002386 rx->sta->rx_msdu[rx->seqno_idx]++;
Johannes Berg79c892b2014-11-21 14:26:31 +01002387 }
2388
Felix Fietkauf14543ee2009-11-10 20:10:05 +01002389 /*
Johannes Berge7f4a942011-11-04 11:18:20 +01002390 * Send unexpected-4addr-frame event to hostapd. For older versions,
2391 * also drop the frame to cooked monitor interfaces.
Felix Fietkauf14543ee2009-11-10 20:10:05 +01002392 */
2393 if (ieee80211_has_a4(hdr->frame_control) &&
Johannes Berge7f4a942011-11-04 11:18:20 +01002394 sdata->vif.type == NL80211_IFTYPE_AP) {
2395 if (rx->sta &&
2396 !test_and_set_sta_flag(rx->sta, WLAN_STA_4ADDR_EVENT))
2397 cfg80211_rx_unexpected_4addr_frame(
2398 rx->sdata->dev, rx->sta->sta.addr, GFP_ATOMIC);
Felix Fietkauf14543ee2009-11-10 20:10:05 +01002399 return RX_DROP_MONITOR;
Johannes Berge7f4a942011-11-04 11:18:20 +01002400 }
Felix Fietkauf14543ee2009-11-10 20:10:05 +01002401
Felix Fietkau4114fa22011-04-12 19:15:22 +02002402 err = __ieee80211_data_to_8023(rx, &port_control);
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002403 if (unlikely(err))
Johannes Berge4c26ad2008-01-31 19:48:21 +01002404 return RX_DROP_UNUSABLE;
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002405
Harvey Harrison358c8d92008-07-15 18:44:13 -07002406 if (!ieee80211_frame_allowed(rx, fc))
Johannes Berge4c26ad2008-01-31 19:48:21 +01002407 return RX_DROP_MONITOR;
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002408
Arik Nemtsov8a4d32f2014-11-09 18:50:20 +02002409 /* directly handle TDLS channel switch requests/responses */
2410 if (unlikely(((struct ethhdr *)rx->skb->data)->h_proto ==
2411 cpu_to_be16(ETH_P_TDLS))) {
2412 struct ieee80211_tdls_data *tf = (void *)rx->skb->data;
2413
2414 if (pskb_may_pull(rx->skb,
2415 offsetof(struct ieee80211_tdls_data, u)) &&
2416 tf->payload_type == WLAN_TDLS_SNAP_RFTYPE &&
2417 tf->category == WLAN_CATEGORY_TDLS &&
2418 (tf->action_code == WLAN_TDLS_CHANNEL_SWITCH_REQUEST ||
2419 tf->action_code == WLAN_TDLS_CHANNEL_SWITCH_RESPONSE)) {
2420 rx->skb->pkt_type = IEEE80211_SDATA_QUEUE_TDLS_CHSW;
2421 skb_queue_tail(&sdata->skb_queue, rx->skb);
2422 ieee80211_queue_work(&rx->local->hw, &sdata->work);
2423 if (rx->sta)
2424 rx->sta->rx_packets++;
2425
2426 return RX_QUEUED;
2427 }
2428 }
2429
Felix Fietkau4114fa22011-04-12 19:15:22 +02002430 if (rx->sdata->vif.type == NL80211_IFTYPE_AP_VLAN &&
2431 unlikely(port_control) && sdata->bss) {
2432 sdata = container_of(sdata->bss, struct ieee80211_sub_if_data,
2433 u.ap);
2434 dev = sdata->dev;
2435 rx->sdata = sdata;
2436 }
2437
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002438 rx->skb->dev = dev;
2439
Helmut Schaa08ca9442010-11-30 12:19:34 +01002440 if (local->ps_sdata && local->hw.conf.dynamic_ps_timeout > 0 &&
Rajkumar Manoharan8c99f692011-02-02 22:57:53 +05302441 !is_multicast_ether_addr(
2442 ((struct ethhdr *)rx->skb->data)->h_dest) &&
2443 (!local->scanning &&
2444 !test_bit(SDATA_STATE_OFFCHANNEL, &sdata->state))) {
Vivek Natarajane15276a2010-02-08 17:47:01 +05302445 mod_timer(&local->dynamic_ps_timer, jiffies +
2446 msecs_to_jiffies(local->hw.conf.dynamic_ps_timeout));
2447 }
2448
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002449 ieee80211_deliver_skb(rx);
Johannes Berg571ecf62007-07-27 15:43:22 +02002450
Johannes Berg9ae54c82008-01-31 19:48:20 +01002451 return RX_QUEUED;
Johannes Berg571ecf62007-07-27 15:43:22 +02002452}
2453
Johannes Berg49461622008-06-30 15:10:45 +02002454static ieee80211_rx_result debug_noinline
Christian Lamparterf9e124f2013-02-04 17:44:44 +00002455ieee80211_rx_h_ctrl(struct ieee80211_rx_data *rx, struct sk_buff_head *frames)
Ron Rindjunsky71364712007-12-25 17:00:36 +02002456{
Ron Rindjunsky71364712007-12-25 17:00:36 +02002457 struct sk_buff *skb = rx->skb;
Harvey Harrisona7767f92008-07-02 16:30:51 -07002458 struct ieee80211_bar *bar = (struct ieee80211_bar *)skb->data;
Ron Rindjunsky71364712007-12-25 17:00:36 +02002459 struct tid_ampdu_rx *tid_agg_rx;
2460 u16 start_seq_num;
2461 u16 tid;
2462
Harvey Harrisona7767f92008-07-02 16:30:51 -07002463 if (likely(!ieee80211_is_ctl(bar->frame_control)))
Johannes Berg9ae54c82008-01-31 19:48:20 +01002464 return RX_CONTINUE;
Ron Rindjunsky71364712007-12-25 17:00:36 +02002465
Harvey Harrisona7767f92008-07-02 16:30:51 -07002466 if (ieee80211_is_back_req(bar->frame_control)) {
Johannes Berg8ae59772010-05-30 14:52:58 +02002467 struct {
2468 __le16 control, start_seq_num;
2469 } __packed bar_data;
Emmanuel Grumbach63822462015-04-20 22:53:37 +03002470 struct ieee80211_event event = {
2471 .type = BAR_RX_EVENT,
2472 };
Johannes Berg8ae59772010-05-30 14:52:58 +02002473
Ron Rindjunsky71364712007-12-25 17:00:36 +02002474 if (!rx->sta)
Johannes Berga02ae752009-11-16 12:00:40 +01002475 return RX_DROP_MONITOR;
Johannes Berg8ae59772010-05-30 14:52:58 +02002476
2477 if (skb_copy_bits(skb, offsetof(struct ieee80211_bar, control),
2478 &bar_data, sizeof(bar_data)))
2479 return RX_DROP_MONITOR;
2480
Johannes Berg8ae59772010-05-30 14:52:58 +02002481 tid = le16_to_cpu(bar_data.control) >> 12;
Johannes Berga87f7362010-06-10 10:21:38 +02002482
2483 tid_agg_rx = rcu_dereference(rx->sta->ampdu_mlme.tid_rx[tid]);
2484 if (!tid_agg_rx)
Johannes Berga02ae752009-11-16 12:00:40 +01002485 return RX_DROP_MONITOR;
Ron Rindjunsky71364712007-12-25 17:00:36 +02002486
Johannes Berg8ae59772010-05-30 14:52:58 +02002487 start_seq_num = le16_to_cpu(bar_data.start_seq_num) >> 4;
Emmanuel Grumbach63822462015-04-20 22:53:37 +03002488 event.u.ba.tid = tid;
2489 event.u.ba.ssn = start_seq_num;
2490 event.u.ba.sta = &rx->sta->sta;
Ron Rindjunsky71364712007-12-25 17:00:36 +02002491
2492 /* reset session timer */
Johannes Berg20ad19d2009-02-10 21:25:45 +01002493 if (tid_agg_rx->timeout)
2494 mod_timer(&tid_agg_rx->session_timer,
2495 TU_TO_EXP_TIME(tid_agg_rx->timeout));
Ron Rindjunsky71364712007-12-25 17:00:36 +02002496
Johannes Bergdd318572010-11-29 11:09:16 +01002497 spin_lock(&tid_agg_rx->reorder_lock);
Johannes Berga02ae752009-11-16 12:00:40 +01002498 /* release stored frames up to start of BAR */
Johannes Bergd3b2fb52012-06-22 12:48:38 +02002499 ieee80211_release_reorder_frames(rx->sdata, tid_agg_rx,
Christian Lamparterf9e124f2013-02-04 17:44:44 +00002500 start_seq_num, frames);
Johannes Bergdd318572010-11-29 11:09:16 +01002501 spin_unlock(&tid_agg_rx->reorder_lock);
2502
Emmanuel Grumbach63822462015-04-20 22:53:37 +03002503 drv_event_callback(rx->local, rx->sdata, &event);
2504
Johannes Berga02ae752009-11-16 12:00:40 +01002505 kfree_skb(skb);
2506 return RX_QUEUED;
Ron Rindjunsky71364712007-12-25 17:00:36 +02002507 }
2508
Johannes Berg08daeca2010-05-30 14:53:43 +02002509 /*
2510 * After this point, we only want management frames,
2511 * so we can drop all remaining control frames to
2512 * cooked monitor interfaces.
2513 */
2514 return RX_DROP_MONITOR;
Ron Rindjunsky71364712007-12-25 17:00:36 +02002515}
2516
Jouni Malinenf4f727a2009-01-10 11:46:53 +02002517static void ieee80211_process_sa_query_req(struct ieee80211_sub_if_data *sdata,
2518 struct ieee80211_mgmt *mgmt,
2519 size_t len)
Jouni Malinenfea14732009-01-08 13:32:06 +02002520{
2521 struct ieee80211_local *local = sdata->local;
2522 struct sk_buff *skb;
2523 struct ieee80211_mgmt *resp;
2524
Joe Perchesb203ca32012-05-08 18:56:52 +00002525 if (!ether_addr_equal(mgmt->da, sdata->vif.addr)) {
Jouni Malinenfea14732009-01-08 13:32:06 +02002526 /* Not to own unicast address */
2527 return;
2528 }
2529
Joe Perchesb203ca32012-05-08 18:56:52 +00002530 if (!ether_addr_equal(mgmt->sa, sdata->u.mgd.bssid) ||
2531 !ether_addr_equal(mgmt->bssid, sdata->u.mgd.bssid)) {
Johannes Berg77fdaa12009-07-07 03:45:17 +02002532 /* Not from the current AP or not associated yet. */
Jouni Malinenfea14732009-01-08 13:32:06 +02002533 return;
2534 }
2535
2536 if (len < 24 + 1 + sizeof(resp->u.action.u.sa_query)) {
2537 /* Too short SA Query request frame */
2538 return;
2539 }
2540
2541 skb = dev_alloc_skb(sizeof(*resp) + local->hw.extra_tx_headroom);
2542 if (skb == NULL)
2543 return;
2544
2545 skb_reserve(skb, local->hw.extra_tx_headroom);
2546 resp = (struct ieee80211_mgmt *) skb_put(skb, 24);
2547 memset(resp, 0, 24);
2548 memcpy(resp->da, mgmt->sa, ETH_ALEN);
Johannes Berg47846c92009-11-25 17:46:19 +01002549 memcpy(resp->sa, sdata->vif.addr, ETH_ALEN);
Johannes Berg46900292009-02-15 12:44:28 +01002550 memcpy(resp->bssid, sdata->u.mgd.bssid, ETH_ALEN);
Jouni Malinenfea14732009-01-08 13:32:06 +02002551 resp->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
2552 IEEE80211_STYPE_ACTION);
2553 skb_put(skb, 1 + sizeof(resp->u.action.u.sa_query));
2554 resp->u.action.category = WLAN_CATEGORY_SA_QUERY;
2555 resp->u.action.u.sa_query.action = WLAN_ACTION_SA_QUERY_RESPONSE;
2556 memcpy(resp->u.action.u.sa_query.trans_id,
2557 mgmt->u.action.u.sa_query.trans_id,
2558 WLAN_SA_QUERY_TR_ID_LEN);
2559
Johannes Berg62ae67b2009-11-18 18:42:05 +01002560 ieee80211_tx_skb(sdata, skb);
Jouni Malinenfea14732009-01-08 13:32:06 +02002561}
2562
Johannes Berg49461622008-06-30 15:10:45 +02002563static ieee80211_rx_result debug_noinline
Johannes Berg2e161f72010-08-12 15:38:38 +02002564ieee80211_rx_h_mgmt_check(struct ieee80211_rx_data *rx)
2565{
2566 struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *) rx->skb->data;
Johannes Berg554891e2010-09-24 12:38:25 +02002567 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(rx->skb);
Johannes Berg2e161f72010-08-12 15:38:38 +02002568
2569 /*
2570 * From here on, look only at management frames.
2571 * Data and control frames are already handled,
2572 * and unknown (reserved) frames are useless.
2573 */
2574 if (rx->skb->len < 24)
2575 return RX_DROP_MONITOR;
2576
2577 if (!ieee80211_is_mgmt(mgmt->frame_control))
2578 return RX_DROP_MONITOR;
2579
Johannes Bergee971922011-11-04 11:18:18 +01002580 if (rx->sdata->vif.type == NL80211_IFTYPE_AP &&
2581 ieee80211_is_beacon(mgmt->frame_control) &&
2582 !(rx->flags & IEEE80211_RX_BEACON_REPORTED)) {
Johannes Berg804483e2012-03-05 22:18:41 +01002583 int sig = 0;
2584
Johannes Berg30686bf2015-06-02 21:39:54 +02002585 if (ieee80211_hw_check(&rx->local->hw, SIGNAL_DBM))
Johannes Berg804483e2012-03-05 22:18:41 +01002586 sig = status->signal;
2587
Johannes Bergee971922011-11-04 11:18:18 +01002588 cfg80211_report_obss_beacon(rx->local->hw.wiphy,
2589 rx->skb->data, rx->skb->len,
Ben Greear37c73b52012-10-26 14:49:25 -07002590 status->freq, sig);
Johannes Bergee971922011-11-04 11:18:18 +01002591 rx->flags |= IEEE80211_RX_BEACON_REPORTED;
2592 }
2593
Johannes Berg2e161f72010-08-12 15:38:38 +02002594 if (ieee80211_drop_unencrypted_mgmt(rx))
2595 return RX_DROP_UNUSABLE;
2596
2597 return RX_CONTINUE;
2598}
2599
2600static ieee80211_rx_result debug_noinline
Johannes Bergde1ede72008-09-09 14:42:50 +02002601ieee80211_rx_h_action(struct ieee80211_rx_data *rx)
2602{
2603 struct ieee80211_local *local = rx->local;
Johannes Bergeb9fb5b2009-11-16 13:58:20 +01002604 struct ieee80211_sub_if_data *sdata = rx->sdata;
Johannes Bergde1ede72008-09-09 14:42:50 +02002605 struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *) rx->skb->data;
Johannes Berg554891e2010-09-24 12:38:25 +02002606 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(rx->skb);
Johannes Bergde1ede72008-09-09 14:42:50 +02002607 int len = rx->skb->len;
2608
2609 if (!ieee80211_is_action(mgmt->frame_control))
2610 return RX_CONTINUE;
2611
Jouni Malinen026331c2010-02-15 12:53:10 +02002612 /* drop too small frames */
2613 if (len < IEEE80211_MIN_ACTION_SIZE)
2614 return RX_DROP_UNUSABLE;
2615
Marco Porsch815b8092012-12-05 15:04:26 -08002616 if (!rx->sta && mgmt->u.action.category != WLAN_CATEGORY_PUBLIC &&
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02002617 mgmt->u.action.category != WLAN_CATEGORY_SELF_PROTECTED &&
2618 mgmt->u.action.category != WLAN_CATEGORY_SPECTRUM_MGMT)
Johannes Berg84040802010-02-15 12:46:39 +02002619 return RX_DROP_UNUSABLE;
Johannes Bergde1ede72008-09-09 14:42:50 +02002620
Johannes Bergde1ede72008-09-09 14:42:50 +02002621 switch (mgmt->u.action.category) {
Johannes Berg1d8d3de2011-12-16 15:28:57 +01002622 case WLAN_CATEGORY_HT:
2623 /* reject HT action frames from stations not supporting HT */
2624 if (!rx->sta->sta.ht_cap.ht_supported)
2625 goto invalid;
2626
2627 if (sdata->vif.type != NL80211_IFTYPE_STATION &&
2628 sdata->vif.type != NL80211_IFTYPE_MESH_POINT &&
2629 sdata->vif.type != NL80211_IFTYPE_AP_VLAN &&
2630 sdata->vif.type != NL80211_IFTYPE_AP &&
2631 sdata->vif.type != NL80211_IFTYPE_ADHOC)
2632 break;
2633
Johannes Bergec61cd62012-12-28 12:12:10 +01002634 /* verify action & smps_control/chanwidth are present */
Johannes Berg1d8d3de2011-12-16 15:28:57 +01002635 if (len < IEEE80211_MIN_ACTION_SIZE + 2)
2636 goto invalid;
2637
2638 switch (mgmt->u.action.u.ht_smps.action) {
2639 case WLAN_HT_ACTION_SMPS: {
2640 struct ieee80211_supported_band *sband;
Johannes Bergaf0ed692013-02-12 14:21:00 +01002641 enum ieee80211_smps_mode smps_mode;
Johannes Berg1d8d3de2011-12-16 15:28:57 +01002642
2643 /* convert to HT capability */
2644 switch (mgmt->u.action.u.ht_smps.smps_control) {
2645 case WLAN_HT_SMPS_CONTROL_DISABLED:
Johannes Bergaf0ed692013-02-12 14:21:00 +01002646 smps_mode = IEEE80211_SMPS_OFF;
Johannes Berg1d8d3de2011-12-16 15:28:57 +01002647 break;
2648 case WLAN_HT_SMPS_CONTROL_STATIC:
Johannes Bergaf0ed692013-02-12 14:21:00 +01002649 smps_mode = IEEE80211_SMPS_STATIC;
Johannes Berg1d8d3de2011-12-16 15:28:57 +01002650 break;
2651 case WLAN_HT_SMPS_CONTROL_DYNAMIC:
Johannes Bergaf0ed692013-02-12 14:21:00 +01002652 smps_mode = IEEE80211_SMPS_DYNAMIC;
Johannes Berg1d8d3de2011-12-16 15:28:57 +01002653 break;
2654 default:
2655 goto invalid;
2656 }
Johannes Berg1d8d3de2011-12-16 15:28:57 +01002657
2658 /* if no change do nothing */
Johannes Bergaf0ed692013-02-12 14:21:00 +01002659 if (rx->sta->sta.smps_mode == smps_mode)
Johannes Berg1d8d3de2011-12-16 15:28:57 +01002660 goto handled;
Johannes Bergaf0ed692013-02-12 14:21:00 +01002661 rx->sta->sta.smps_mode = smps_mode;
Johannes Berg1d8d3de2011-12-16 15:28:57 +01002662
2663 sband = rx->local->hw.wiphy->bands[status->band];
2664
Johannes Berg64f68e52012-03-28 10:58:37 +02002665 rate_control_rate_update(local, sband, rx->sta,
2666 IEEE80211_RC_SMPS_CHANGED);
Johannes Berg1d8d3de2011-12-16 15:28:57 +01002667 goto handled;
2668 }
Johannes Bergec61cd62012-12-28 12:12:10 +01002669 case WLAN_HT_ACTION_NOTIFY_CHANWIDTH: {
2670 struct ieee80211_supported_band *sband;
2671 u8 chanwidth = mgmt->u.action.u.ht_notify_cw.chanwidth;
Eliad Peller1c45c5c2014-12-14 11:05:51 +02002672 enum ieee80211_sta_rx_bandwidth max_bw, new_bw;
Johannes Bergec61cd62012-12-28 12:12:10 +01002673
2674 /* If it doesn't support 40 MHz it can't change ... */
Johannes Berge1a0c6b2013-02-07 11:47:44 +01002675 if (!(rx->sta->sta.ht_cap.cap &
2676 IEEE80211_HT_CAP_SUP_WIDTH_20_40))
Johannes Bergec61cd62012-12-28 12:12:10 +01002677 goto handled;
2678
Johannes Berge1a0c6b2013-02-07 11:47:44 +01002679 if (chanwidth == IEEE80211_HT_CHANWIDTH_20MHZ)
Eliad Peller1c45c5c2014-12-14 11:05:51 +02002680 max_bw = IEEE80211_STA_RX_BW_20;
Johannes Bergec61cd62012-12-28 12:12:10 +01002681 else
Eliad Peller1c45c5c2014-12-14 11:05:51 +02002682 max_bw = ieee80211_sta_cap_rx_bw(rx->sta);
2683
2684 /* set cur_max_bandwidth and recalc sta bw */
2685 rx->sta->cur_max_bandwidth = max_bw;
2686 new_bw = ieee80211_sta_cur_vht_bw(rx->sta);
Johannes Berge1a0c6b2013-02-07 11:47:44 +01002687
2688 if (rx->sta->sta.bandwidth == new_bw)
2689 goto handled;
Johannes Bergec61cd62012-12-28 12:12:10 +01002690
Eliad Peller1c45c5c2014-12-14 11:05:51 +02002691 rx->sta->sta.bandwidth = new_bw;
Johannes Bergec61cd62012-12-28 12:12:10 +01002692 sband = rx->local->hw.wiphy->bands[status->band];
2693
2694 rate_control_rate_update(local, sband, rx->sta,
2695 IEEE80211_RC_BW_CHANGED);
2696 goto handled;
2697 }
Johannes Berg1d8d3de2011-12-16 15:28:57 +01002698 default:
2699 goto invalid;
2700 }
2701
2702 break;
Johannes Berg1b3a2e42013-03-26 15:17:18 +01002703 case WLAN_CATEGORY_PUBLIC:
2704 if (len < IEEE80211_MIN_ACTION_SIZE + 1)
2705 goto invalid;
2706 if (sdata->vif.type != NL80211_IFTYPE_STATION)
2707 break;
2708 if (!rx->sta)
2709 break;
2710 if (!ether_addr_equal(mgmt->bssid, sdata->u.mgd.bssid))
2711 break;
2712 if (mgmt->u.action.u.ext_chan_switch.action_code !=
2713 WLAN_PUB_ACTION_EXT_CHANSW_ANN)
2714 break;
2715 if (len < offsetof(struct ieee80211_mgmt,
2716 u.action.u.ext_chan_switch.variable))
2717 goto invalid;
2718 goto queue;
Johannes Berg0af83d32012-12-27 18:55:36 +01002719 case WLAN_CATEGORY_VHT:
2720 if (sdata->vif.type != NL80211_IFTYPE_STATION &&
2721 sdata->vif.type != NL80211_IFTYPE_MESH_POINT &&
2722 sdata->vif.type != NL80211_IFTYPE_AP_VLAN &&
2723 sdata->vif.type != NL80211_IFTYPE_AP &&
2724 sdata->vif.type != NL80211_IFTYPE_ADHOC)
2725 break;
2726
2727 /* verify action code is present */
2728 if (len < IEEE80211_MIN_ACTION_SIZE + 1)
2729 goto invalid;
2730
2731 switch (mgmt->u.action.u.vht_opmode_notif.action_code) {
2732 case WLAN_VHT_ACTION_OPMODE_NOTIF: {
2733 u8 opmode;
2734
2735 /* verify opmode is present */
2736 if (len < IEEE80211_MIN_ACTION_SIZE + 2)
2737 goto invalid;
2738
2739 opmode = mgmt->u.action.u.vht_opmode_notif.operating_mode;
2740
2741 ieee80211_vht_handle_opmode(rx->sdata, rx->sta,
Johannes Bergbee7f582013-02-07 22:24:55 +01002742 opmode, status->band,
2743 false);
Johannes Berg0af83d32012-12-27 18:55:36 +01002744 goto handled;
2745 }
2746 default:
2747 break;
2748 }
2749 break;
Johannes Bergde1ede72008-09-09 14:42:50 +02002750 case WLAN_CATEGORY_BACK:
Johannes Berg8abd3f92009-02-10 21:25:47 +01002751 if (sdata->vif.type != NL80211_IFTYPE_STATION &&
Thomas Pedersenae2772b2011-10-26 14:47:29 -07002752 sdata->vif.type != NL80211_IFTYPE_MESH_POINT &&
Johannes Berg8abd3f92009-02-10 21:25:47 +01002753 sdata->vif.type != NL80211_IFTYPE_AP_VLAN &&
Alexander Simon13c40c52011-11-30 16:56:34 +01002754 sdata->vif.type != NL80211_IFTYPE_AP &&
2755 sdata->vif.type != NL80211_IFTYPE_ADHOC)
Johannes Berg84040802010-02-15 12:46:39 +02002756 break;
Johannes Berg8abd3f92009-02-10 21:25:47 +01002757
Jouni Malinen026331c2010-02-15 12:53:10 +02002758 /* verify action_code is present */
2759 if (len < IEEE80211_MIN_ACTION_SIZE + 1)
2760 break;
2761
Johannes Bergde1ede72008-09-09 14:42:50 +02002762 switch (mgmt->u.action.u.addba_req.action_code) {
2763 case WLAN_ACTION_ADDBA_REQ:
2764 if (len < (IEEE80211_MIN_ACTION_SIZE +
2765 sizeof(mgmt->u.action.u.addba_req)))
Johannes Bergbed7ee6e2010-06-10 10:21:35 +02002766 goto invalid;
2767 break;
Johannes Bergde1ede72008-09-09 14:42:50 +02002768 case WLAN_ACTION_ADDBA_RESP:
2769 if (len < (IEEE80211_MIN_ACTION_SIZE +
2770 sizeof(mgmt->u.action.u.addba_resp)))
Johannes Bergbed7ee6e2010-06-10 10:21:35 +02002771 goto invalid;
2772 break;
Johannes Bergde1ede72008-09-09 14:42:50 +02002773 case WLAN_ACTION_DELBA:
2774 if (len < (IEEE80211_MIN_ACTION_SIZE +
2775 sizeof(mgmt->u.action.u.delba)))
Johannes Bergbed7ee6e2010-06-10 10:21:35 +02002776 goto invalid;
2777 break;
2778 default:
2779 goto invalid;
Johannes Bergde1ede72008-09-09 14:42:50 +02002780 }
Johannes Bergbed7ee6e2010-06-10 10:21:35 +02002781
Johannes Berg8b58ff82010-06-10 10:21:51 +02002782 goto queue;
Johannes Berg39192c02008-09-09 14:49:03 +02002783 case WLAN_CATEGORY_SPECTRUM_MGMT:
Jouni Malinen026331c2010-02-15 12:53:10 +02002784 /* verify action_code is present */
2785 if (len < IEEE80211_MIN_ACTION_SIZE + 1)
2786 break;
2787
Johannes Berg39192c02008-09-09 14:49:03 +02002788 switch (mgmt->u.action.u.measurement.action_code) {
2789 case WLAN_ACTION_SPCT_MSR_REQ:
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02002790 if (status->band != IEEE80211_BAND_5GHZ)
2791 break;
2792
Johannes Berg39192c02008-09-09 14:49:03 +02002793 if (len < (IEEE80211_MIN_ACTION_SIZE +
2794 sizeof(mgmt->u.action.u.measurement)))
Johannes Berg84040802010-02-15 12:46:39 +02002795 break;
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02002796
Johannes Bergcc32abd2009-05-15 11:52:31 +02002797 if (sdata->vif.type != NL80211_IFTYPE_STATION)
Johannes Berg84040802010-02-15 12:46:39 +02002798 break;
Johannes Bergcc32abd2009-05-15 11:52:31 +02002799
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02002800 ieee80211_process_measurement_req(sdata, mgmt, len);
2801 goto handled;
2802 case WLAN_ACTION_SPCT_CHL_SWITCH: {
2803 u8 *bssid;
2804 if (len < (IEEE80211_MIN_ACTION_SIZE +
2805 sizeof(mgmt->u.action.u.chan_switch)))
2806 break;
2807
2808 if (sdata->vif.type != NL80211_IFTYPE_STATION &&
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07002809 sdata->vif.type != NL80211_IFTYPE_ADHOC &&
2810 sdata->vif.type != NL80211_IFTYPE_MESH_POINT)
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02002811 break;
2812
2813 if (sdata->vif.type == NL80211_IFTYPE_STATION)
2814 bssid = sdata->u.mgd.bssid;
2815 else if (sdata->vif.type == NL80211_IFTYPE_ADHOC)
2816 bssid = sdata->u.ibss.bssid;
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07002817 else if (sdata->vif.type == NL80211_IFTYPE_MESH_POINT)
2818 bssid = mgmt->sa;
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02002819 else
2820 break;
2821
2822 if (!ether_addr_equal(mgmt->bssid, bssid))
Johannes Berg84040802010-02-15 12:46:39 +02002823 break;
Sujithc481ec92009-01-06 09:28:37 +05302824
Johannes Berg8b58ff82010-06-10 10:21:51 +02002825 goto queue;
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02002826 }
Johannes Berg39192c02008-09-09 14:49:03 +02002827 }
2828 break;
Jouni Malinenfea14732009-01-08 13:32:06 +02002829 case WLAN_CATEGORY_SA_QUERY:
2830 if (len < (IEEE80211_MIN_ACTION_SIZE +
2831 sizeof(mgmt->u.action.u.sa_query)))
Johannes Berg84040802010-02-15 12:46:39 +02002832 break;
2833
Jouni Malinenfea14732009-01-08 13:32:06 +02002834 switch (mgmt->u.action.u.sa_query.action) {
2835 case WLAN_ACTION_SA_QUERY_REQUEST:
2836 if (sdata->vif.type != NL80211_IFTYPE_STATION)
Johannes Berg84040802010-02-15 12:46:39 +02002837 break;
Jouni Malinenfea14732009-01-08 13:32:06 +02002838 ieee80211_process_sa_query_req(sdata, mgmt, len);
Johannes Berg84040802010-02-15 12:46:39 +02002839 goto handled;
Jouni Malinenfea14732009-01-08 13:32:06 +02002840 }
2841 break;
Thomas Pedersen8db09852011-08-12 20:01:00 -07002842 case WLAN_CATEGORY_SELF_PROTECTED:
Johannes Berg9b395bc2012-10-26 00:36:40 +02002843 if (len < (IEEE80211_MIN_ACTION_SIZE +
2844 sizeof(mgmt->u.action.u.self_prot.action_code)))
2845 break;
2846
Thomas Pedersen8db09852011-08-12 20:01:00 -07002847 switch (mgmt->u.action.u.self_prot.action_code) {
2848 case WLAN_SP_MESH_PEERING_OPEN:
2849 case WLAN_SP_MESH_PEERING_CLOSE:
2850 case WLAN_SP_MESH_PEERING_CONFIRM:
2851 if (!ieee80211_vif_is_mesh(&sdata->vif))
2852 goto invalid;
Thomas Pedersena6dad6a2013-03-04 13:06:12 -08002853 if (sdata->u.mesh.user_mpm)
Thomas Pedersen8db09852011-08-12 20:01:00 -07002854 /* userspace handles this frame */
2855 break;
2856 goto queue;
2857 case WLAN_SP_MGK_INFORM:
2858 case WLAN_SP_MGK_ACK:
2859 if (!ieee80211_vif_is_mesh(&sdata->vif))
2860 goto invalid;
2861 break;
2862 }
2863 break;
Javier Cardonad3aaec8a2011-05-03 16:57:09 -07002864 case WLAN_CATEGORY_MESH_ACTION:
Johannes Berg9b395bc2012-10-26 00:36:40 +02002865 if (len < (IEEE80211_MIN_ACTION_SIZE +
2866 sizeof(mgmt->u.action.u.mesh_action.action_code)))
2867 break;
2868
Johannes Berg77a121c2010-06-10 10:21:34 +02002869 if (!ieee80211_vif_is_mesh(&sdata->vif))
2870 break;
Thomas Pedersen25d49e42011-08-11 19:35:15 -07002871 if (mesh_action_is_path_sel(mgmt) &&
Johannes Berg1df332e2012-10-26 00:09:11 +02002872 !mesh_path_sel_is_hwmp(sdata))
Javier Cardonac7108a72010-12-16 17:37:50 -08002873 break;
2874 goto queue;
Johannes Berg84040802010-02-15 12:46:39 +02002875 }
Jouni Malinen026331c2010-02-15 12:53:10 +02002876
Johannes Berg2e161f72010-08-12 15:38:38 +02002877 return RX_CONTINUE;
2878
Johannes Bergbed7ee6e2010-06-10 10:21:35 +02002879 invalid:
Johannes Berg554891e2010-09-24 12:38:25 +02002880 status->rx_flags |= IEEE80211_RX_MALFORMED_ACTION_FRM;
Johannes Berg2e161f72010-08-12 15:38:38 +02002881 /* will return in the next handlers */
2882 return RX_CONTINUE;
2883
2884 handled:
2885 if (rx->sta)
2886 rx->sta->rx_packets++;
2887 dev_kfree_skb(rx->skb);
2888 return RX_QUEUED;
2889
2890 queue:
2891 rx->skb->pkt_type = IEEE80211_SDATA_QUEUE_TYPE_FRAME;
2892 skb_queue_tail(&sdata->skb_queue, rx->skb);
2893 ieee80211_queue_work(&local->hw, &sdata->work);
2894 if (rx->sta)
2895 rx->sta->rx_packets++;
2896 return RX_QUEUED;
2897}
2898
2899static ieee80211_rx_result debug_noinline
2900ieee80211_rx_h_userspace_mgmt(struct ieee80211_rx_data *rx)
2901{
Johannes Berg554891e2010-09-24 12:38:25 +02002902 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(rx->skb);
Johannes Berg804483e2012-03-05 22:18:41 +01002903 int sig = 0;
Johannes Berg2e161f72010-08-12 15:38:38 +02002904
2905 /* skip known-bad action frames and return them in the next handler */
Johannes Berg554891e2010-09-24 12:38:25 +02002906 if (status->rx_flags & IEEE80211_RX_MALFORMED_ACTION_FRM)
Johannes Berg2e161f72010-08-12 15:38:38 +02002907 return RX_CONTINUE;
Felix Fietkaud7907442010-01-07 20:23:53 +01002908
Jouni Malinen026331c2010-02-15 12:53:10 +02002909 /*
2910 * Getting here means the kernel doesn't know how to handle
2911 * it, but maybe userspace does ... include returned frames
2912 * so userspace can register for those to know whether ones
2913 * it transmitted were processed or returned.
2914 */
Jouni Malinen026331c2010-02-15 12:53:10 +02002915
Johannes Berg30686bf2015-06-02 21:39:54 +02002916 if (ieee80211_hw_check(&rx->local->hw, SIGNAL_DBM))
Johannes Berg804483e2012-03-05 22:18:41 +01002917 sig = status->signal;
2918
Johannes Berg71bbc992012-06-15 15:30:18 +02002919 if (cfg80211_rx_mgmt(&rx->sdata->wdev, status->freq, sig,
Vladimir Kondratiev970fdfa2014-08-11 03:29:57 -07002920 rx->skb->data, rx->skb->len, 0)) {
Johannes Berg2e161f72010-08-12 15:38:38 +02002921 if (rx->sta)
2922 rx->sta->rx_packets++;
2923 dev_kfree_skb(rx->skb);
2924 return RX_QUEUED;
2925 }
2926
Johannes Berg2e161f72010-08-12 15:38:38 +02002927 return RX_CONTINUE;
2928}
2929
2930static ieee80211_rx_result debug_noinline
2931ieee80211_rx_h_action_return(struct ieee80211_rx_data *rx)
2932{
2933 struct ieee80211_local *local = rx->local;
2934 struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *) rx->skb->data;
2935 struct sk_buff *nskb;
2936 struct ieee80211_sub_if_data *sdata = rx->sdata;
Johannes Berg554891e2010-09-24 12:38:25 +02002937 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(rx->skb);
Johannes Berg2e161f72010-08-12 15:38:38 +02002938
2939 if (!ieee80211_is_action(mgmt->frame_control))
2940 return RX_CONTINUE;
2941
2942 /*
2943 * For AP mode, hostapd is responsible for handling any action
2944 * frames that we didn't handle, including returning unknown
2945 * ones. For all other modes we will return them to the sender,
2946 * setting the 0x80 bit in the action category, as required by
Johannes Berg4b5ebcc2012-06-27 15:38:56 +02002947 * 802.11-2012 9.24.4.
Johannes Berg2e161f72010-08-12 15:38:38 +02002948 * Newer versions of hostapd shall also use the management frame
2949 * registration mechanisms, but older ones still use cooked
2950 * monitor interfaces so push all frames there.
2951 */
Johannes Berg554891e2010-09-24 12:38:25 +02002952 if (!(status->rx_flags & IEEE80211_RX_MALFORMED_ACTION_FRM) &&
Johannes Berg2e161f72010-08-12 15:38:38 +02002953 (sdata->vif.type == NL80211_IFTYPE_AP ||
2954 sdata->vif.type == NL80211_IFTYPE_AP_VLAN))
2955 return RX_DROP_MONITOR;
Jouni Malinen026331c2010-02-15 12:53:10 +02002956
Johannes Berg4b5ebcc2012-06-27 15:38:56 +02002957 if (is_multicast_ether_addr(mgmt->da))
2958 return RX_DROP_MONITOR;
2959
Johannes Berg84040802010-02-15 12:46:39 +02002960 /* do not return rejected action frames */
2961 if (mgmt->u.action.category & 0x80)
2962 return RX_DROP_UNUSABLE;
2963
2964 nskb = skb_copy_expand(rx->skb, local->hw.extra_tx_headroom, 0,
2965 GFP_ATOMIC);
2966 if (nskb) {
John W. Linville292b4df2010-06-24 11:13:56 -04002967 struct ieee80211_mgmt *nmgmt = (void *)nskb->data;
Johannes Berg84040802010-02-15 12:46:39 +02002968
John W. Linville292b4df2010-06-24 11:13:56 -04002969 nmgmt->u.action.category |= 0x80;
2970 memcpy(nmgmt->da, nmgmt->sa, ETH_ALEN);
2971 memcpy(nmgmt->sa, rx->sdata->vif.addr, ETH_ALEN);
Johannes Berg84040802010-02-15 12:46:39 +02002972
2973 memset(nskb->cb, 0, sizeof(nskb->cb));
2974
Johannes Berg07e5a5f2013-03-07 13:22:05 +01002975 if (rx->sdata->vif.type == NL80211_IFTYPE_P2P_DEVICE) {
2976 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(nskb);
2977
2978 info->flags = IEEE80211_TX_CTL_TX_OFFCHAN |
2979 IEEE80211_TX_INTFL_OFFCHAN_TX_OK |
2980 IEEE80211_TX_CTL_NO_CCK_RATE;
Johannes Berg30686bf2015-06-02 21:39:54 +02002981 if (ieee80211_hw_check(&local->hw, QUEUE_CONTROL))
Johannes Berg07e5a5f2013-03-07 13:22:05 +01002982 info->hw_queue =
2983 local->hw.offchannel_tx_hw_queue;
2984 }
2985
2986 __ieee80211_tx_skb_tid_band(rx->sdata, nskb, 7,
2987 status->band);
Johannes Bergde1ede72008-09-09 14:42:50 +02002988 }
Johannes Berg39192c02008-09-09 14:49:03 +02002989 dev_kfree_skb(rx->skb);
2990 return RX_QUEUED;
Johannes Bergde1ede72008-09-09 14:42:50 +02002991}
2992
2993static ieee80211_rx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +01002994ieee80211_rx_h_mgmt(struct ieee80211_rx_data *rx)
Johannes Berg571ecf62007-07-27 15:43:22 +02002995{
Johannes Bergeb9fb5b2009-11-16 13:58:20 +01002996 struct ieee80211_sub_if_data *sdata = rx->sdata;
Johannes Berg77a121c2010-06-10 10:21:34 +02002997 struct ieee80211_mgmt *mgmt = (void *)rx->skb->data;
2998 __le16 stype;
Johannes Berg571ecf62007-07-27 15:43:22 +02002999
Johannes Berg77a121c2010-06-10 10:21:34 +02003000 stype = mgmt->frame_control & cpu_to_le16(IEEE80211_FCTL_STYPE);
Johannes Berg472dbc42008-09-11 00:01:49 +02003001
Johannes Berg77a121c2010-06-10 10:21:34 +02003002 if (!ieee80211_vif_is_mesh(&sdata->vif) &&
3003 sdata->vif.type != NL80211_IFTYPE_ADHOC &&
Rostislav Lisovy239281f2014-11-03 10:33:19 +01003004 sdata->vif.type != NL80211_IFTYPE_OCB &&
Johannes Berg77a121c2010-06-10 10:21:34 +02003005 sdata->vif.type != NL80211_IFTYPE_STATION)
3006 return RX_DROP_MONITOR;
Johannes Bergf9d540e2007-09-28 14:02:09 +02003007
Johannes Berg77a121c2010-06-10 10:21:34 +02003008 switch (stype) {
Johannes Berg66e67e42012-01-20 13:55:27 +01003009 case cpu_to_le16(IEEE80211_STYPE_AUTH):
Johannes Berg77a121c2010-06-10 10:21:34 +02003010 case cpu_to_le16(IEEE80211_STYPE_BEACON):
3011 case cpu_to_le16(IEEE80211_STYPE_PROBE_RESP):
3012 /* process for all: mesh, mlme, ibss */
3013 break;
Johannes Berg66e67e42012-01-20 13:55:27 +01003014 case cpu_to_le16(IEEE80211_STYPE_ASSOC_RESP):
3015 case cpu_to_le16(IEEE80211_STYPE_REASSOC_RESP):
Johannes Berg77a121c2010-06-10 10:21:34 +02003016 case cpu_to_le16(IEEE80211_STYPE_DEAUTH):
3017 case cpu_to_le16(IEEE80211_STYPE_DISASSOC):
Christian Lamparter2c313332010-11-29 20:53:23 +01003018 if (is_multicast_ether_addr(mgmt->da) &&
3019 !is_broadcast_ether_addr(mgmt->da))
3020 return RX_DROP_MONITOR;
3021
Johannes Berg77a121c2010-06-10 10:21:34 +02003022 /* process only for station */
3023 if (sdata->vif.type != NL80211_IFTYPE_STATION)
3024 return RX_DROP_MONITOR;
3025 break;
3026 case cpu_to_le16(IEEE80211_STYPE_PROBE_REQ):
Thomas Pedersen9fb04b52013-02-14 11:20:14 -08003027 /* process only for ibss and mesh */
3028 if (sdata->vif.type != NL80211_IFTYPE_ADHOC &&
3029 sdata->vif.type != NL80211_IFTYPE_MESH_POINT)
Johannes Berg77a121c2010-06-10 10:21:34 +02003030 return RX_DROP_MONITOR;
3031 break;
3032 default:
3033 return RX_DROP_MONITOR;
3034 }
Johannes Berg46900292009-02-15 12:44:28 +01003035
Johannes Berg77a121c2010-06-10 10:21:34 +02003036 /* queue up frame and kick off work to process it */
Johannes Bergc1475ca2010-06-10 10:21:37 +02003037 rx->skb->pkt_type = IEEE80211_SDATA_QUEUE_TYPE_FRAME;
Johannes Berg77a121c2010-06-10 10:21:34 +02003038 skb_queue_tail(&sdata->skb_queue, rx->skb);
3039 ieee80211_queue_work(&rx->local->hw, &sdata->work);
Johannes Berg8b58ff82010-06-10 10:21:51 +02003040 if (rx->sta)
3041 rx->sta->rx_packets++;
Johannes Berg77a121c2010-06-10 10:21:34 +02003042
3043 return RX_QUEUED;
Johannes Berg571ecf62007-07-27 15:43:22 +02003044}
3045
Johannes Berg5cf121c2008-02-25 16:27:43 +01003046/* TODO: use IEEE80211_RX_FRAGMENTED */
Johannes Berg5f0b7de2009-11-16 13:58:21 +01003047static void ieee80211_rx_cooked_monitor(struct ieee80211_rx_data *rx,
3048 struct ieee80211_rate *rate)
Michael Wu3d30d942008-01-31 19:48:27 +01003049{
3050 struct ieee80211_sub_if_data *sdata;
3051 struct ieee80211_local *local = rx->local;
Michael Wu3d30d942008-01-31 19:48:27 +01003052 struct sk_buff *skb = rx->skb, *skb2;
3053 struct net_device *prev_dev = NULL;
Johannes Bergeb9fb5b2009-11-16 13:58:20 +01003054 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
Johannes Berg293702a2012-03-02 13:18:19 +01003055 int needed_headroom;
Michael Wu3d30d942008-01-31 19:48:27 +01003056
Johannes Berg554891e2010-09-24 12:38:25 +02003057 /*
3058 * If cooked monitor has been processed already, then
3059 * don't do it again. If not, set the flag.
3060 */
3061 if (rx->flags & IEEE80211_RX_CMNTR)
John W. Linville7c1e1832010-09-24 15:52:49 -04003062 goto out_free_skb;
Johannes Berg554891e2010-09-24 12:38:25 +02003063 rx->flags |= IEEE80211_RX_CMNTR;
John W. Linville7c1e1832010-09-24 15:52:49 -04003064
Johannes Berg152c4772011-10-21 10:22:22 +02003065 /* If there are no cooked monitor interfaces, just free the SKB */
3066 if (!local->cooked_mntrs)
3067 goto out_free_skb;
3068
Johannes Berg1f7bba72014-11-06 22:56:36 +01003069 /* vendor data is long removed here */
3070 status->flag &= ~RX_FLAG_RADIOTAP_VENDOR_DATA;
Johannes Berg293702a2012-03-02 13:18:19 +01003071 /* room for the radiotap header based on driver features */
Johannes Berg1f7bba72014-11-06 22:56:36 +01003072 needed_headroom = ieee80211_rx_radiotap_hdrlen(local, status, skb);
Johannes Berg293702a2012-03-02 13:18:19 +01003073
3074 if (skb_headroom(skb) < needed_headroom &&
3075 pskb_expand_head(skb, needed_headroom, 0, GFP_ATOMIC))
Michael Wu3d30d942008-01-31 19:48:27 +01003076 goto out_free_skb;
3077
Johannes Berg293702a2012-03-02 13:18:19 +01003078 /* prepend radiotap information */
Felix Fietkau973ef212012-04-16 14:56:48 +02003079 ieee80211_add_rx_radiotap_header(local, skb, rate, needed_headroom,
3080 false);
Michael Wu3d30d942008-01-31 19:48:27 +01003081
3082 skb_set_mac_header(skb, 0);
3083 skb->ip_summed = CHECKSUM_UNNECESSARY;
3084 skb->pkt_type = PACKET_OTHERHOST;
3085 skb->protocol = htons(ETH_P_802_2);
3086
3087 list_for_each_entry_rcu(sdata, &local->interfaces, list) {
Johannes Berg9607e6b2009-12-23 13:15:31 +01003088 if (!ieee80211_sdata_running(sdata))
Michael Wu3d30d942008-01-31 19:48:27 +01003089 continue;
3090
Johannes Berg05c914f2008-09-11 00:01:58 +02003091 if (sdata->vif.type != NL80211_IFTYPE_MONITOR ||
Michael Wu3d30d942008-01-31 19:48:27 +01003092 !(sdata->u.mntr_flags & MONITOR_FLAG_COOK_FRAMES))
3093 continue;
3094
3095 if (prev_dev) {
3096 skb2 = skb_clone(skb, GFP_ATOMIC);
3097 if (skb2) {
3098 skb2->dev = prev_dev;
John W. Linville5548a8a2010-06-24 14:25:56 -04003099 netif_receive_skb(skb2);
Michael Wu3d30d942008-01-31 19:48:27 +01003100 }
3101 }
3102
3103 prev_dev = sdata->dev;
Johannes Berg5a490512015-04-22 17:10:38 +02003104 ieee80211_rx_stats(sdata->dev, skb->len);
Michael Wu3d30d942008-01-31 19:48:27 +01003105 }
3106
3107 if (prev_dev) {
3108 skb->dev = prev_dev;
John W. Linville5548a8a2010-06-24 14:25:56 -04003109 netif_receive_skb(skb);
Johannes Berg554891e2010-09-24 12:38:25 +02003110 return;
3111 }
Michael Wu3d30d942008-01-31 19:48:27 +01003112
3113 out_free_skb:
3114 dev_kfree_skb(skb);
3115}
3116
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003117static void ieee80211_rx_handlers_result(struct ieee80211_rx_data *rx,
3118 ieee80211_rx_result res)
3119{
3120 switch (res) {
3121 case RX_DROP_MONITOR:
3122 I802_DEBUG_INC(rx->sdata->local->rx_handlers_drop);
3123 if (rx->sta)
3124 rx->sta->rx_dropped++;
3125 /* fall through */
3126 case RX_CONTINUE: {
3127 struct ieee80211_rate *rate = NULL;
3128 struct ieee80211_supported_band *sband;
3129 struct ieee80211_rx_status *status;
3130
3131 status = IEEE80211_SKB_RXCB((rx->skb));
3132
3133 sband = rx->local->hw.wiphy->bands[status->band];
Johannes Berg56146182012-11-09 15:07:02 +01003134 if (!(status->flag & RX_FLAG_HT) &&
3135 !(status->flag & RX_FLAG_VHT))
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003136 rate = &sband->bitrates[status->rate_idx];
3137
3138 ieee80211_rx_cooked_monitor(rx, rate);
3139 break;
3140 }
3141 case RX_DROP_UNUSABLE:
3142 I802_DEBUG_INC(rx->sdata->local->rx_handlers_drop);
3143 if (rx->sta)
3144 rx->sta->rx_dropped++;
3145 dev_kfree_skb(rx->skb);
3146 break;
3147 case RX_QUEUED:
3148 I802_DEBUG_INC(rx->sdata->local->rx_handlers_queued);
3149 break;
3150 }
3151}
3152
Christian Lamparterf9e124f2013-02-04 17:44:44 +00003153static void ieee80211_rx_handlers(struct ieee80211_rx_data *rx,
3154 struct sk_buff_head *frames)
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003155{
3156 ieee80211_rx_result res = RX_DROP_MONITOR;
3157 struct sk_buff *skb;
3158
3159#define CALL_RXH(rxh) \
3160 do { \
3161 res = rxh(rx); \
3162 if (res != RX_CONTINUE) \
3163 goto rxh_next; \
3164 } while (0);
3165
Johannes Berg45ceeee2015-03-16 09:08:20 +01003166 /* Lock here to avoid hitting all of the data used in the RX
3167 * path (e.g. key data, station data, ...) concurrently when
3168 * a frame is released from the reorder buffer due to timeout
3169 * from the timer, potentially concurrently with RX from the
3170 * driver.
3171 */
Christian Lamparterf9e124f2013-02-04 17:44:44 +00003172 spin_lock_bh(&rx->local->rx_path_lock);
Christian Lamparter24a8fda2010-12-30 17:25:29 +01003173
Christian Lamparterf9e124f2013-02-04 17:44:44 +00003174 while ((skb = __skb_dequeue(frames))) {
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003175 /*
3176 * all the other fields are valid across frames
3177 * that belong to an aMPDU since they are on the
3178 * same TID from the same station
3179 */
3180 rx->skb = skb;
3181
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003182 CALL_RXH(ieee80211_rx_h_check_more_data)
Johannes Berg47086fc2011-09-29 16:04:33 +02003183 CALL_RXH(ieee80211_rx_h_uapsd_and_pspoll)
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003184 CALL_RXH(ieee80211_rx_h_sta_process)
Johan Almbladh86c228a2013-08-14 15:29:46 +02003185 CALL_RXH(ieee80211_rx_h_decrypt)
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003186 CALL_RXH(ieee80211_rx_h_defragment)
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003187 CALL_RXH(ieee80211_rx_h_michael_mic_verify)
3188 /* must be after MMIC verify so header is counted in MPDU mic */
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003189#ifdef CONFIG_MAC80211_MESH
3190 if (ieee80211_vif_is_mesh(&rx->sdata->vif))
3191 CALL_RXH(ieee80211_rx_h_mesh_fwding);
3192#endif
Javier Cardona2154c812011-09-07 17:49:53 -07003193 CALL_RXH(ieee80211_rx_h_amsdu)
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003194 CALL_RXH(ieee80211_rx_h_data)
Christian Lamparterf9e124f2013-02-04 17:44:44 +00003195
3196 /* special treatment -- needs the queue */
3197 res = ieee80211_rx_h_ctrl(rx, frames);
3198 if (res != RX_CONTINUE)
3199 goto rxh_next;
3200
Johannes Berg2e161f72010-08-12 15:38:38 +02003201 CALL_RXH(ieee80211_rx_h_mgmt_check)
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003202 CALL_RXH(ieee80211_rx_h_action)
Johannes Berg2e161f72010-08-12 15:38:38 +02003203 CALL_RXH(ieee80211_rx_h_userspace_mgmt)
3204 CALL_RXH(ieee80211_rx_h_action_return)
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003205 CALL_RXH(ieee80211_rx_h_mgmt)
3206
3207 rxh_next:
3208 ieee80211_rx_handlers_result(rx, res);
Christian Lamparterf9e124f2013-02-04 17:44:44 +00003209
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003210#undef CALL_RXH
3211 }
Christian Lamparter24a8fda2010-12-30 17:25:29 +01003212
Christian Lamparterf9e124f2013-02-04 17:44:44 +00003213 spin_unlock_bh(&rx->local->rx_path_lock);
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003214}
Johannes Berg571ecf62007-07-27 15:43:22 +02003215
Johannes Berg4406c372010-09-24 11:21:06 +02003216static void ieee80211_invoke_rx_handlers(struct ieee80211_rx_data *rx)
Johannes Berg58905292008-01-31 19:48:25 +01003217{
Christian Lamparterf9e124f2013-02-04 17:44:44 +00003218 struct sk_buff_head reorder_release;
Johannes Berg58905292008-01-31 19:48:25 +01003219 ieee80211_rx_result res = RX_DROP_MONITOR;
3220
Christian Lamparterf9e124f2013-02-04 17:44:44 +00003221 __skb_queue_head_init(&reorder_release);
3222
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02003223#define CALL_RXH(rxh) \
3224 do { \
3225 res = rxh(rx); \
3226 if (res != RX_CONTINUE) \
Johannes Berg2569a822009-11-25 17:46:17 +01003227 goto rxh_next; \
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02003228 } while (0);
Johannes Berg58905292008-01-31 19:48:25 +01003229
Johannes Berg03954422014-11-11 16:49:25 +01003230 CALL_RXH(ieee80211_rx_h_check_dup)
Johannes Berg49461622008-06-30 15:10:45 +02003231 CALL_RXH(ieee80211_rx_h_check)
Johannes Berg2569a822009-11-25 17:46:17 +01003232
Christian Lamparterf9e124f2013-02-04 17:44:44 +00003233 ieee80211_rx_reorder_ampdu(rx, &reorder_release);
Johannes Berg2569a822009-11-25 17:46:17 +01003234
Christian Lamparterf9e124f2013-02-04 17:44:44 +00003235 ieee80211_rx_handlers(rx, &reorder_release);
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003236 return;
Johannes Berg49461622008-06-30 15:10:45 +02003237
Johannes Berg2569a822009-11-25 17:46:17 +01003238 rxh_next:
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003239 ieee80211_rx_handlers_result(rx, res);
3240
3241#undef CALL_RXH
Johannes Berg58905292008-01-31 19:48:25 +01003242}
3243
Christian Lamparter2bff8eb2010-08-05 01:36:41 +02003244/*
Johannes Bergdd318572010-11-29 11:09:16 +01003245 * This function makes calls into the RX path, therefore
3246 * it has to be invoked under RCU read lock.
Christian Lamparter2bff8eb2010-08-05 01:36:41 +02003247 */
3248void ieee80211_release_reorder_timeout(struct sta_info *sta, int tid)
3249{
Christian Lamparterf9e124f2013-02-04 17:44:44 +00003250 struct sk_buff_head frames;
Johannes Berg554891e2010-09-24 12:38:25 +02003251 struct ieee80211_rx_data rx = {
3252 .sta = sta,
3253 .sdata = sta->sdata,
3254 .local = sta->local,
Johannes Berg9e262972011-07-07 18:45:03 +02003255 /* This is OK -- must be QoS data frame */
3256 .security_idx = tid,
3257 .seqno_idx = tid,
Johannes Bergaf9f9b22015-06-11 16:02:32 +02003258 .napi = NULL, /* must be NULL to not have races */
Johannes Berg554891e2010-09-24 12:38:25 +02003259 };
Christian Lamparter2c15a0c2010-08-24 19:22:42 +02003260 struct tid_ampdu_rx *tid_agg_rx;
3261
3262 tid_agg_rx = rcu_dereference(sta->ampdu_mlme.tid_rx[tid]);
3263 if (!tid_agg_rx)
3264 return;
Christian Lamparter2bff8eb2010-08-05 01:36:41 +02003265
Christian Lamparterf9e124f2013-02-04 17:44:44 +00003266 __skb_queue_head_init(&frames);
3267
Christian Lamparter2c15a0c2010-08-24 19:22:42 +02003268 spin_lock(&tid_agg_rx->reorder_lock);
Christian Lamparterf9e124f2013-02-04 17:44:44 +00003269 ieee80211_sta_reorder_release(sta->sdata, tid_agg_rx, &frames);
Christian Lamparter2c15a0c2010-08-24 19:22:42 +02003270 spin_unlock(&tid_agg_rx->reorder_lock);
Christian Lamparter2bff8eb2010-08-05 01:36:41 +02003271
Emmanuel Grumbachb497de62015-04-20 22:53:38 +03003272 if (!skb_queue_empty(&frames)) {
3273 struct ieee80211_event event = {
3274 .type = BA_FRAME_TIMEOUT,
3275 .u.ba.tid = tid,
3276 .u.ba.sta = &sta->sta,
3277 };
3278 drv_event_callback(rx.local, rx.sdata, &event);
3279 }
3280
Christian Lamparterf9e124f2013-02-04 17:44:44 +00003281 ieee80211_rx_handlers(&rx, &frames);
Christian Lamparter2bff8eb2010-08-05 01:36:41 +02003282}
3283
Johannes Berg571ecf62007-07-27 15:43:22 +02003284/* main receive path */
3285
Johannes Berga58fbe12015-04-22 15:08:39 +02003286static bool ieee80211_accept_frame(struct ieee80211_rx_data *rx)
Johannes Berg23a24de2007-07-27 15:43:22 +02003287{
Johannes Berg20b01f82010-09-24 11:21:05 +02003288 struct ieee80211_sub_if_data *sdata = rx->sdata;
Johannes Bergeb9fb5b2009-11-16 13:58:20 +01003289 struct sk_buff *skb = rx->skb;
Johannes Berga58fbe12015-04-22 15:08:39 +02003290 struct ieee80211_hdr *hdr = (void *)skb->data;
Johannes Bergeb9fb5b2009-11-16 13:58:20 +01003291 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
3292 u8 *bssid = ieee80211_get_bssid(hdr, skb->len, sdata->vif.type);
Johannes Berg23a24de2007-07-27 15:43:22 +02003293 int multicast = is_multicast_ether_addr(hdr->addr1);
3294
Johannes Berg51fb61e2007-12-19 01:31:27 +01003295 switch (sdata->vif.type) {
Johannes Berg05c914f2008-09-11 00:01:58 +02003296 case NL80211_IFTYPE_STATION:
Johannes Berg9bc383d2009-11-19 11:55:19 +01003297 if (!bssid && !sdata->u.mgd.use_4addr)
Johannes Berg3c2723f52014-01-07 16:23:24 +01003298 return false;
Johannes Berga58fbe12015-04-22 15:08:39 +02003299 if (multicast)
3300 return true;
3301 return ether_addr_equal(sdata->vif.addr, hdr->addr1);
Johannes Berg05c914f2008-09-11 00:01:58 +02003302 case NL80211_IFTYPE_ADHOC:
Johannes Berg23a24de2007-07-27 15:43:22 +02003303 if (!bssid)
Johannes Berg3c2723f52014-01-07 16:23:24 +01003304 return false;
Felix Fietkau6329b8d2013-09-17 11:15:43 +02003305 if (ether_addr_equal(sdata->vif.addr, hdr->addr2) ||
3306 ether_addr_equal(sdata->u.ibss.bssid, hdr->addr2))
Johannes Berg3c2723f52014-01-07 16:23:24 +01003307 return false;
Johannes Berga58fbe12015-04-22 15:08:39 +02003308 if (ieee80211_is_beacon(hdr->frame_control))
Johannes Berg3c2723f52014-01-07 16:23:24 +01003309 return true;
Johannes Berga58fbe12015-04-22 15:08:39 +02003310 if (!ieee80211_bssid_match(bssid, sdata->u.ibss.bssid))
Johannes Berg3c2723f52014-01-07 16:23:24 +01003311 return false;
Johannes Berga58fbe12015-04-22 15:08:39 +02003312 if (!multicast &&
3313 !ether_addr_equal(sdata->vif.addr, hdr->addr1))
Johannes Bergdf140462015-04-22 14:40:58 +02003314 return false;
Johannes Berga58fbe12015-04-22 15:08:39 +02003315 if (!rx->sta) {
Jouni Malinen0fb8ca42008-12-12 14:38:33 +02003316 int rate_idx;
Johannes Berg56146182012-11-09 15:07:02 +01003317 if (status->flag & (RX_FLAG_HT | RX_FLAG_VHT))
3318 rate_idx = 0; /* TODO: HT/VHT rates */
Jouni Malinen0fb8ca42008-12-12 14:38:33 +02003319 else
Johannes Bergeb9fb5b2009-11-16 13:58:20 +01003320 rate_idx = status->rate_idx;
Johannes Berg8bf11d82011-12-15 11:17:37 +01003321 ieee80211_ibss_rx_no_sta(sdata, bssid, hdr->addr2,
3322 BIT(rate_idx));
Jouni Malinen0fb8ca42008-12-12 14:38:33 +02003323 }
Johannes Berga58fbe12015-04-22 15:08:39 +02003324 return true;
Rostislav Lisovy239281f2014-11-03 10:33:19 +01003325 case NL80211_IFTYPE_OCB:
3326 if (!bssid)
3327 return false;
Johannes Berga58fbe12015-04-22 15:08:39 +02003328 if (ieee80211_is_beacon(hdr->frame_control))
Rostislav Lisovy239281f2014-11-03 10:33:19 +01003329 return false;
Johannes Berga58fbe12015-04-22 15:08:39 +02003330 if (!is_broadcast_ether_addr(bssid))
Rostislav Lisovy239281f2014-11-03 10:33:19 +01003331 return false;
Johannes Berga58fbe12015-04-22 15:08:39 +02003332 if (!multicast &&
3333 !ether_addr_equal(sdata->dev->dev_addr, hdr->addr1))
Johannes Bergdf140462015-04-22 14:40:58 +02003334 return false;
Johannes Berga58fbe12015-04-22 15:08:39 +02003335 if (!rx->sta) {
Rostislav Lisovy239281f2014-11-03 10:33:19 +01003336 int rate_idx;
3337 if (status->flag & RX_FLAG_HT)
3338 rate_idx = 0; /* TODO: HT rates */
3339 else
3340 rate_idx = status->rate_idx;
3341 ieee80211_ocb_rx_no_sta(sdata, bssid, hdr->addr2,
3342 BIT(rate_idx));
3343 }
Johannes Berga58fbe12015-04-22 15:08:39 +02003344 return true;
Johannes Berg05c914f2008-09-11 00:01:58 +02003345 case NL80211_IFTYPE_MESH_POINT:
Johannes Berga58fbe12015-04-22 15:08:39 +02003346 if (multicast)
3347 return true;
3348 return ether_addr_equal(sdata->vif.addr, hdr->addr1);
Johannes Berg05c914f2008-09-11 00:01:58 +02003349 case NL80211_IFTYPE_AP_VLAN:
3350 case NL80211_IFTYPE_AP:
Johannes Berga58fbe12015-04-22 15:08:39 +02003351 if (!bssid)
3352 return ether_addr_equal(sdata->vif.addr, hdr->addr1);
3353
3354 if (!ieee80211_bssid_match(bssid, sdata->vif.addr)) {
Johannes Berg3df6eae2011-12-06 10:39:40 +01003355 /*
3356 * Accept public action frames even when the
3357 * BSSID doesn't match, this is used for P2P
3358 * and location updates. Note that mac80211
3359 * itself never looks at these frames.
3360 */
Johannes Berg2b9ccd42013-05-13 16:42:40 +02003361 if (!multicast &&
3362 !ether_addr_equal(sdata->vif.addr, hdr->addr1))
Johannes Berg3c2723f52014-01-07 16:23:24 +01003363 return false;
Johannes Bergd48b2962012-07-06 22:19:27 +02003364 if (ieee80211_is_public_action(hdr, skb->len))
Johannes Berg3c2723f52014-01-07 16:23:24 +01003365 return true;
Johannes Berg5c900672015-04-22 14:48:34 +02003366 return ieee80211_is_beacon(hdr->frame_control);
Johannes Berga58fbe12015-04-22 15:08:39 +02003367 }
3368
3369 if (!ieee80211_has_tods(hdr->frame_control)) {
Arik Nemtsovdb8e1732014-07-17 17:14:30 +03003370 /* ignore data frames to TDLS-peers */
3371 if (ieee80211_is_data(hdr->frame_control))
3372 return false;
3373 /* ignore action frames to TDLS-peers */
3374 if (ieee80211_is_action(hdr->frame_control) &&
3375 !ether_addr_equal(bssid, hdr->addr1))
3376 return false;
Johannes Berg23a24de2007-07-27 15:43:22 +02003377 }
Johannes Berga58fbe12015-04-22 15:08:39 +02003378 return true;
Johannes Berg05c914f2008-09-11 00:01:58 +02003379 case NL80211_IFTYPE_WDS:
Harvey Harrisona7767f92008-07-02 16:30:51 -07003380 if (bssid || !ieee80211_is_data(hdr->frame_control))
Johannes Berg3c2723f52014-01-07 16:23:24 +01003381 return false;
Johannes Berga58fbe12015-04-22 15:08:39 +02003382 return ether_addr_equal(sdata->u.wds.remote_addr, hdr->addr2);
Johannes Bergf142c6b2012-06-18 20:07:15 +02003383 case NL80211_IFTYPE_P2P_DEVICE:
Johannes Berga58fbe12015-04-22 15:08:39 +02003384 return ieee80211_is_public_action(hdr, skb->len) ||
3385 ieee80211_is_probe_req(hdr->frame_control) ||
3386 ieee80211_is_probe_resp(hdr->frame_control) ||
3387 ieee80211_is_beacon(hdr->frame_control);
Johannes Berg2ca27bc2010-09-16 14:58:23 +02003388 default:
Johannes Bergfb1c1cd2007-09-26 15:19:43 +02003389 break;
Johannes Berg23a24de2007-07-27 15:43:22 +02003390 }
3391
Johannes Berga58fbe12015-04-22 15:08:39 +02003392 WARN_ON_ONCE(1);
3393 return false;
Johannes Berg23a24de2007-07-27 15:43:22 +02003394}
3395
Johannes Berg571ecf62007-07-27 15:43:22 +02003396/*
Johannes Berg4406c372010-09-24 11:21:06 +02003397 * This function returns whether or not the SKB
3398 * was destined for RX processing or not, which,
3399 * if consume is true, is equivalent to whether
3400 * or not the skb was consumed.
3401 */
3402static bool ieee80211_prepare_and_rx_handle(struct ieee80211_rx_data *rx,
3403 struct sk_buff *skb, bool consume)
3404{
3405 struct ieee80211_local *local = rx->local;
3406 struct ieee80211_sub_if_data *sdata = rx->sdata;
Johannes Berg4406c372010-09-24 11:21:06 +02003407
3408 rx->skb = skb;
Johannes Berg4406c372010-09-24 11:21:06 +02003409
Johannes Berga58fbe12015-04-22 15:08:39 +02003410 if (!ieee80211_accept_frame(rx))
Johannes Berg4406c372010-09-24 11:21:06 +02003411 return false;
3412
Johannes Berg4406c372010-09-24 11:21:06 +02003413 if (!consume) {
3414 skb = skb_copy(skb, GFP_ATOMIC);
3415 if (!skb) {
3416 if (net_ratelimit())
3417 wiphy_debug(local->hw.wiphy,
Ben Greearb305dae2011-01-08 10:30:54 -08003418 "failed to copy skb for %s\n",
Johannes Berg4406c372010-09-24 11:21:06 +02003419 sdata->name);
3420 return true;
3421 }
3422
3423 rx->skb = skb;
3424 }
3425
3426 ieee80211_invoke_rx_handlers(rx);
3427 return true;
3428}
3429
3430/*
Zhao, Gang6b59db72014-04-21 12:52:59 +08003431 * This is the actual Rx frames handler. as it belongs to Rx path it must
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02003432 * be called with rcu_read_lock protection.
Johannes Berg571ecf62007-07-27 15:43:22 +02003433 */
Ron Rindjunsky71ebb4a2008-01-21 12:39:12 +02003434static void __ieee80211_rx_handle_packet(struct ieee80211_hw *hw,
Johannes Bergaf9f9b22015-06-11 16:02:32 +02003435 struct sk_buff *skb,
3436 struct napi_struct *napi)
Johannes Berg571ecf62007-07-27 15:43:22 +02003437{
3438 struct ieee80211_local *local = hw_to_local(hw);
3439 struct ieee80211_sub_if_data *sdata;
Johannes Berg571ecf62007-07-27 15:43:22 +02003440 struct ieee80211_hdr *hdr;
Zhu Yie3cf8b32010-03-29 17:35:07 +08003441 __le16 fc;
Johannes Berg5cf121c2008-02-25 16:27:43 +01003442 struct ieee80211_rx_data rx;
Johannes Berg4406c372010-09-24 11:21:06 +02003443 struct ieee80211_sub_if_data *prev;
Johannes Berg7bedd0c2015-02-13 21:55:15 +01003444 struct sta_info *sta, *prev_sta;
3445 struct rhash_head *tmp;
Zhu Yie3cf8b32010-03-29 17:35:07 +08003446 int err = 0;
Johannes Berg571ecf62007-07-27 15:43:22 +02003447
Zhu Yie3cf8b32010-03-29 17:35:07 +08003448 fc = ((struct ieee80211_hdr *)skb->data)->frame_control;
Johannes Berg571ecf62007-07-27 15:43:22 +02003449 memset(&rx, 0, sizeof(rx));
3450 rx.skb = skb;
3451 rx.local = local;
Johannes Bergaf9f9b22015-06-11 16:02:32 +02003452 rx.napi = napi;
Johannes Berg72abd812007-09-17 01:29:22 -04003453
Zhu Yie3cf8b32010-03-29 17:35:07 +08003454 if (ieee80211_is_data(fc) || ieee80211_is_mgmt(fc))
Johannes Bergc206ca62015-04-22 20:47:28 +02003455 I802_DEBUG_INC(local->dot11ReceivedFragmentCount);
Johannes Berg571ecf62007-07-27 15:43:22 +02003456
Johannes Berg4a4f1a52012-10-26 00:33:36 +02003457 if (ieee80211_is_mgmt(fc)) {
3458 /* drop frame if too short for header */
3459 if (skb->len < ieee80211_hdrlen(fc))
3460 err = -ENOBUFS;
3461 else
3462 err = skb_linearize(skb);
3463 } else {
Zhu Yie3cf8b32010-03-29 17:35:07 +08003464 err = !pskb_may_pull(skb, ieee80211_hdrlen(fc));
Johannes Berg4a4f1a52012-10-26 00:33:36 +02003465 }
Zhu Yie3cf8b32010-03-29 17:35:07 +08003466
3467 if (err) {
3468 dev_kfree_skb(skb);
3469 return;
3470 }
3471
3472 hdr = (struct ieee80211_hdr *)skb->data;
Johannes Berg38f37142008-01-29 17:07:43 +01003473 ieee80211_parse_qos(&rx);
Johannes Bergd1c3a372009-01-07 00:26:10 +01003474 ieee80211_verify_alignment(&rx);
Johannes Berg38f37142008-01-29 17:07:43 +01003475
Johannes Bergd48b2962012-07-06 22:19:27 +02003476 if (unlikely(ieee80211_is_probe_resp(hdr->frame_control) ||
3477 ieee80211_is_beacon(hdr->frame_control)))
3478 ieee80211_scan_rx(local, skb);
3479
Zhu Yie3cf8b32010-03-29 17:35:07 +08003480 if (ieee80211_is_data(fc)) {
Johannes Berg7bedd0c2015-02-13 21:55:15 +01003481 const struct bucket_table *tbl;
3482
Ben Greear56af3262010-09-23 10:22:24 -07003483 prev_sta = NULL;
Johannes Berg4406c372010-09-24 11:21:06 +02003484
Johannes Berg7bedd0c2015-02-13 21:55:15 +01003485 tbl = rht_dereference_rcu(local->sta_hash.tbl, &local->sta_hash);
3486
3487 for_each_sta_info(local, tbl, hdr->addr2, sta, tmp) {
Ben Greear56af3262010-09-23 10:22:24 -07003488 if (!prev_sta) {
3489 prev_sta = sta;
3490 continue;
3491 }
3492
3493 rx.sta = prev_sta;
3494 rx.sdata = prev_sta->sdata;
Johannes Berg4406c372010-09-24 11:21:06 +02003495 ieee80211_prepare_and_rx_handle(&rx, skb, false);
Johannes Berg571ecf62007-07-27 15:43:22 +02003496
Ben Greear56af3262010-09-23 10:22:24 -07003497 prev_sta = sta;
Johannes Berg4406c372010-09-24 11:21:06 +02003498 }
Ben Greear56af3262010-09-23 10:22:24 -07003499
3500 if (prev_sta) {
3501 rx.sta = prev_sta;
3502 rx.sdata = prev_sta->sdata;
3503
Johannes Berg4406c372010-09-24 11:21:06 +02003504 if (ieee80211_prepare_and_rx_handle(&rx, skb, true))
Ben Greear56af3262010-09-23 10:22:24 -07003505 return;
Senthil Balasubramanian8e26d5a2010-11-30 20:15:38 +05303506 goto out;
Ben Greear56af3262010-09-23 10:22:24 -07003507 }
Johannes Berg4406c372010-09-24 11:21:06 +02003508 }
3509
Johannes Berg4b0dd982010-09-24 11:21:07 +02003510 prev = NULL;
Johannes Berg4406c372010-09-24 11:21:06 +02003511
Johannes Berg4b0dd982010-09-24 11:21:07 +02003512 list_for_each_entry_rcu(sdata, &local->interfaces, list) {
3513 if (!ieee80211_sdata_running(sdata))
3514 continue;
Johannes Bergabe60632009-11-25 17:46:18 +01003515
Johannes Berg4b0dd982010-09-24 11:21:07 +02003516 if (sdata->vif.type == NL80211_IFTYPE_MONITOR ||
3517 sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
3518 continue;
Johannes Bergabe60632009-11-25 17:46:18 +01003519
Johannes Berg4b0dd982010-09-24 11:21:07 +02003520 /*
3521 * frame is destined for this interface, but if it's
3522 * not also for the previous one we handle that after
3523 * the loop to avoid copying the SKB once too much
3524 */
Johannes Bergb2e77712007-09-26 15:19:39 +02003525
Johannes Berg4b0dd982010-09-24 11:21:07 +02003526 if (!prev) {
Johannes Berg340e11f2007-07-27 15:43:22 +02003527 prev = sdata;
Johannes Berg4b0dd982010-09-24 11:21:07 +02003528 continue;
Johannes Berg8e6f00322007-07-27 15:43:22 +02003529 }
Felix Fietkau4bb29f82010-01-22 00:36:39 +01003530
Johannes Berg7852e362012-01-20 13:55:24 +01003531 rx.sta = sta_info_get_bss(prev, hdr->addr2);
Johannes Berg4b0dd982010-09-24 11:21:07 +02003532 rx.sdata = prev;
3533 ieee80211_prepare_and_rx_handle(&rx, skb, false);
Felix Fietkau4bb29f82010-01-22 00:36:39 +01003534
Johannes Berg4b0dd982010-09-24 11:21:07 +02003535 prev = sdata;
3536 }
Johannes Berg4406c372010-09-24 11:21:06 +02003537
Johannes Berg4b0dd982010-09-24 11:21:07 +02003538 if (prev) {
Johannes Berg7852e362012-01-20 13:55:24 +01003539 rx.sta = sta_info_get_bss(prev, hdr->addr2);
Johannes Berg4b0dd982010-09-24 11:21:07 +02003540 rx.sdata = prev;
3541
3542 if (ieee80211_prepare_and_rx_handle(&rx, skb, true))
3543 return;
Johannes Berg571ecf62007-07-27 15:43:22 +02003544 }
Johannes Berg4406c372010-09-24 11:21:06 +02003545
Senthil Balasubramanian8e26d5a2010-11-30 20:15:38 +05303546 out:
Johannes Berg4406c372010-09-24 11:21:06 +02003547 dev_kfree_skb(skb);
Johannes Berg571ecf62007-07-27 15:43:22 +02003548}
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02003549
3550/*
3551 * This is the receive path handler. It is called by a low level driver when an
3552 * 802.11 MPDU is received from the hardware.
3553 */
Johannes Bergaf9f9b22015-06-11 16:02:32 +02003554void ieee80211_rx_napi(struct ieee80211_hw *hw, struct sk_buff *skb,
3555 struct napi_struct *napi)
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02003556{
3557 struct ieee80211_local *local = hw_to_local(hw);
Johannes Berg8318d782008-01-24 19:38:38 +01003558 struct ieee80211_rate *rate = NULL;
3559 struct ieee80211_supported_band *sband;
Johannes Bergf1d58c22009-06-17 13:13:00 +02003560 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
Johannes Berg8318d782008-01-24 19:38:38 +01003561
Johannes Bergd20ef632009-10-11 15:10:40 +02003562 WARN_ON_ONCE(softirq_count() == 0);
3563
Johannes Berg444e38032012-09-30 17:08:35 +02003564 if (WARN_ON(status->band >= IEEE80211_NUM_BANDS))
Johannes Berg77a980d2009-08-24 11:46:30 +02003565 goto drop;
Johannes Berg8318d782008-01-24 19:38:38 +01003566
3567 sband = local->hw.wiphy->bands[status->band];
Johannes Berg77a980d2009-08-24 11:46:30 +02003568 if (WARN_ON(!sband))
3569 goto drop;
Johannes Berg8318d782008-01-24 19:38:38 +01003570
Johannes Berg89c3a8a2009-07-28 18:10:17 +02003571 /*
3572 * If we're suspending, it is possible although not too likely
3573 * that we'd be receiving frames after having already partially
3574 * quiesced the stack. We can't process such frames then since
3575 * that might, for example, cause stations to be added or other
3576 * driver callbacks be invoked.
3577 */
Johannes Berg77a980d2009-08-24 11:46:30 +02003578 if (unlikely(local->quiescing || local->suspended))
3579 goto drop;
Johannes Berg89c3a8a2009-07-28 18:10:17 +02003580
Arik Nemtsov04800ad2012-06-06 11:25:02 +03003581 /* We might be during a HW reconfig, prevent Rx for the same reason */
3582 if (unlikely(local->in_reconfig))
3583 goto drop;
3584
Johannes Bergea77f122009-08-21 14:44:45 +02003585 /*
3586 * The same happens when we're not even started,
3587 * but that's worth a warning.
3588 */
Johannes Berg77a980d2009-08-24 11:46:30 +02003589 if (WARN_ON(!local->started))
3590 goto drop;
Johannes Bergea77f122009-08-21 14:44:45 +02003591
Johannes Bergfc885182010-07-30 13:23:12 +02003592 if (likely(!(status->flag & RX_FLAG_FAILED_PLCP_CRC))) {
Luis R. Rodrigueze5d6eb82009-11-09 16:03:22 -05003593 /*
Johannes Bergfc885182010-07-30 13:23:12 +02003594 * Validate the rate, unless a PLCP error means that
3595 * we probably can't have a valid rate here anyway.
Luis R. Rodrigueze5d6eb82009-11-09 16:03:22 -05003596 */
Johannes Bergfc885182010-07-30 13:23:12 +02003597
3598 if (status->flag & RX_FLAG_HT) {
3599 /*
3600 * rate_idx is MCS index, which can be [0-76]
3601 * as documented on:
3602 *
3603 * http://wireless.kernel.org/en/developers/Documentation/ieee80211/802.11n
3604 *
3605 * Anything else would be some sort of driver or
3606 * hardware error. The driver should catch hardware
3607 * errors.
3608 */
Johannes Berg444e38032012-09-30 17:08:35 +02003609 if (WARN(status->rate_idx > 76,
Johannes Bergfc885182010-07-30 13:23:12 +02003610 "Rate marked as an HT rate but passed "
3611 "status->rate_idx is not "
3612 "an MCS index [0-76]: %d (0x%02x)\n",
3613 status->rate_idx,
3614 status->rate_idx))
3615 goto drop;
Johannes Berg56146182012-11-09 15:07:02 +01003616 } else if (status->flag & RX_FLAG_VHT) {
3617 if (WARN_ONCE(status->rate_idx > 9 ||
3618 !status->vht_nss ||
3619 status->vht_nss > 8,
3620 "Rate marked as a VHT rate but data is invalid: MCS: %d, NSS: %d\n",
3621 status->rate_idx, status->vht_nss))
3622 goto drop;
Johannes Bergfc885182010-07-30 13:23:12 +02003623 } else {
Johannes Berg444e38032012-09-30 17:08:35 +02003624 if (WARN_ON(status->rate_idx >= sband->n_bitrates))
Johannes Bergfc885182010-07-30 13:23:12 +02003625 goto drop;
3626 rate = &sband->bitrates[status->rate_idx];
3627 }
Jouni Malinen0fb8ca42008-12-12 14:38:33 +02003628 }
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02003629
Johannes Berg554891e2010-09-24 12:38:25 +02003630 status->rx_flags = 0;
3631
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02003632 /*
3633 * key references and virtual interfaces are protected using RCU
3634 * and this requires that we are in a read-side RCU section during
3635 * receive processing
3636 */
3637 rcu_read_lock();
3638
3639 /*
3640 * Frames with failed FCS/PLCP checksum are not returned,
3641 * all other frames are returned without radiotap header
3642 * if it was previously present.
3643 * Also, frames with less than 16 bytes are dropped.
3644 */
Johannes Bergf1d58c22009-06-17 13:13:00 +02003645 skb = ieee80211_rx_monitor(local, skb, rate);
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02003646 if (!skb) {
3647 rcu_read_unlock();
3648 return;
3649 }
3650
Johannes Berge1e54062010-11-30 08:58:45 +01003651 ieee80211_tpt_led_trig_rx(local,
3652 ((struct ieee80211_hdr *)skb->data)->frame_control,
3653 skb->len);
Johannes Bergaf9f9b22015-06-11 16:02:32 +02003654 __ieee80211_rx_handle_packet(hw, skb, napi);
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02003655
3656 rcu_read_unlock();
Johannes Berg77a980d2009-08-24 11:46:30 +02003657
3658 return;
3659 drop:
3660 kfree_skb(skb);
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02003661}
Johannes Bergaf9f9b22015-06-11 16:02:32 +02003662EXPORT_SYMBOL(ieee80211_rx_napi);
Johannes Berg571ecf62007-07-27 15:43:22 +02003663
3664/* This is a version of the rx handler that can be called from hard irq
3665 * context. Post the skb on the queue and schedule the tasklet */
Johannes Bergf1d58c22009-06-17 13:13:00 +02003666void ieee80211_rx_irqsafe(struct ieee80211_hw *hw, struct sk_buff *skb)
Johannes Berg571ecf62007-07-27 15:43:22 +02003667{
3668 struct ieee80211_local *local = hw_to_local(hw);
3669
3670 BUILD_BUG_ON(sizeof(struct ieee80211_rx_status) > sizeof(skb->cb));
3671
Johannes Berg571ecf62007-07-27 15:43:22 +02003672 skb->pkt_type = IEEE80211_RX_MSG;
3673 skb_queue_tail(&local->skb_queue, skb);
3674 tasklet_schedule(&local->tasklet);
3675}
3676EXPORT_SYMBOL(ieee80211_rx_irqsafe);