Merge branch 'for-next' of git://git.kernel.org/pub/scm/linux/kernel/git/shli/md
[linux-2.6-block.git] / net / mac80211 / rx.c
CommitLineData
571ecf67
JB
1/*
2 * Copyright 2002-2005, Instant802 Networks, Inc.
3 * Copyright 2005-2006, Devicescape Software, Inc.
4 * Copyright 2006-2007 Jiri Benc <jbenc@suse.cz>
84040805 5 * Copyright 2007-2010 Johannes Berg <johannes@sipsolutions.net>
d98ad83e 6 * Copyright 2013-2014 Intel Mobile Communications GmbH
b7540d8f 7 * Copyright(c) 2015 - 2017 Intel Deutschland GmbH
571ecf67
JB
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 */
13
ab46623e 14#include <linux/jiffies.h>
5a0e3ad6 15#include <linux/slab.h>
571ecf67
JB
16#include <linux/kernel.h>
17#include <linux/skbuff.h>
18#include <linux/netdevice.h>
19#include <linux/etherdevice.h>
d4e46a3d 20#include <linux/rcupdate.h>
bc3b2d7f 21#include <linux/export.h>
06470f74 22#include <linux/bitops.h>
571ecf67
JB
23#include <net/mac80211.h>
24#include <net/ieee80211_radiotap.h>
d26ad377 25#include <asm/unaligned.h>
571ecf67
JB
26
27#include "ieee80211_i.h"
24487981 28#include "driver-ops.h"
2c8dccc7 29#include "led.h"
33b64eb2 30#include "mesh.h"
571ecf67
JB
31#include "wep.h"
32#include "wpa.h"
33#include "tkip.h"
34#include "wme.h"
1d8d3dec 35#include "rate.h"
571ecf67 36
5a490510
JB
37static inline void ieee80211_rx_stats(struct net_device *dev, u32 len)
38{
39 struct pcpu_sw_netstats *tstats = this_cpu_ptr(dev->tstats);
40
41 u64_stats_update_begin(&tstats->syncp);
42 tstats->rx_packets++;
43 tstats->rx_bytes += len;
44 u64_stats_update_end(&tstats->syncp);
45}
46
a6828493
JB
47static u8 *ieee80211_get_bssid(struct ieee80211_hdr *hdr, size_t len,
48 enum nl80211_iftype type)
49{
50 __le16 fc = hdr->frame_control;
51
52 if (ieee80211_is_data(fc)) {
53 if (len < 24) /* drop incorrect hdr len (data) */
54 return NULL;
55
56 if (ieee80211_has_a4(fc))
57 return NULL;
58 if (ieee80211_has_tods(fc))
59 return hdr->addr1;
60 if (ieee80211_has_fromds(fc))
61 return hdr->addr2;
62
63 return hdr->addr3;
64 }
65
66 if (ieee80211_is_mgmt(fc)) {
67 if (len < 24) /* drop incorrect hdr len (mgmt) */
68 return NULL;
69 return hdr->addr3;
70 }
71
72 if (ieee80211_is_ctl(fc)) {
73 if (ieee80211_is_pspoll(fc))
74 return hdr->addr1;
75
76 if (ieee80211_is_back_req(fc)) {
77 switch (type) {
78 case NL80211_IFTYPE_STATION:
79 return hdr->addr2;
80 case NL80211_IFTYPE_AP:
81 case NL80211_IFTYPE_AP_VLAN:
82 return hdr->addr1;
83 default:
84 break; /* fall through to the return */
85 }
86 }
87 }
88
89 return NULL;
90}
91
b2e7771e
JB
92/*
93 * monitor mode reception
94 *
95 * This function cleans up the SKB, i.e. it removes all the stuff
96 * only useful for monitoring.
97 */
30841f5c
JB
98static void remove_monitor_info(struct sk_buff *skb,
99 unsigned int present_fcs_len,
100 unsigned int rtap_vendor_space)
b2e7771e 101{
30841f5c
JB
102 if (present_fcs_len)
103 __pskb_trim(skb, skb->len - present_fcs_len);
1f7bba79 104 __pskb_pull(skb, rtap_vendor_space);
b2e7771e
JB
105}
106
1f7bba79
JB
107static inline bool should_drop_frame(struct sk_buff *skb, int present_fcs_len,
108 unsigned int rtap_vendor_space)
b2e7771e 109{
f1d58c25 110 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
1f7bba79
JB
111 struct ieee80211_hdr *hdr;
112
113 hdr = (void *)(skb->data + rtap_vendor_space);
b2e7771e 114
4c298677 115 if (status->flag & (RX_FLAG_FAILED_FCS_CRC |
17883048
GB
116 RX_FLAG_FAILED_PLCP_CRC |
117 RX_FLAG_ONLY_MONITOR))
6b59db7d
ZG
118 return true;
119
1f7bba79 120 if (unlikely(skb->len < 16 + present_fcs_len + rtap_vendor_space))
6b59db7d
ZG
121 return true;
122
87228f57
HH
123 if (ieee80211_is_ctl(hdr->frame_control) &&
124 !ieee80211_is_pspoll(hdr->frame_control) &&
125 !ieee80211_is_back_req(hdr->frame_control))
6b59db7d
ZG
126 return true;
127
128 return false;
b2e7771e
JB
129}
130
601ae7f2 131static int
1f7bba79
JB
132ieee80211_rx_radiotap_hdrlen(struct ieee80211_local *local,
133 struct ieee80211_rx_status *status,
134 struct sk_buff *skb)
601ae7f2
BR
135{
136 int len;
137
138 /* always present fields */
a144f378 139 len = sizeof(struct ieee80211_radiotap_header) + 8;
601ae7f2 140
a144f378 141 /* allocate extra bitmaps */
a144f378
JB
142 if (status->chains)
143 len += 4 * hweight8(status->chains);
90b9e446
JB
144
145 if (ieee80211_have_rx_timestamp(status)) {
146 len = ALIGN(len, 8);
601ae7f2 147 len += 8;
90b9e446 148 }
30686bf7 149 if (ieee80211_hw_check(&local->hw, SIGNAL_DBM))
601ae7f2 150 len += 1;
601ae7f2 151
a144f378
JB
152 /* antenna field, if we don't have per-chain info */
153 if (!status->chains)
154 len += 1;
155
90b9e446
JB
156 /* padding for RX_FLAGS if necessary */
157 len = ALIGN(len, 2);
601ae7f2 158
da6a4352 159 if (status->encoding == RX_ENC_HT) /* HT info */
6d744bac
JB
160 len += 3;
161
4c298677 162 if (status->flag & RX_FLAG_AMPDU_DETAILS) {
90b9e446 163 len = ALIGN(len, 4);
4c298677
JB
164 len += 8;
165 }
166
da6a4352 167 if (status->encoding == RX_ENC_VHT) {
51648921
JB
168 len = ALIGN(len, 2);
169 len += 12;
170 }
171
99ee7cae
JB
172 if (local->hw.radiotap_timestamp.units_pos >= 0) {
173 len = ALIGN(len, 8);
174 len += 12;
175 }
176
a144f378
JB
177 if (status->chains) {
178 /* antenna and antenna signal fields */
179 len += 2 * hweight8(status->chains);
180 }
181
1f7bba79
JB
182 if (status->flag & RX_FLAG_RADIOTAP_VENDOR_DATA) {
183 struct ieee80211_vendor_radiotap *rtap = (void *)skb->data;
184
185 /* vendor presence bitmap */
186 len += 4;
187 /* alignment for fixed 6-byte vendor data header */
188 len = ALIGN(len, 2);
189 /* vendor data header */
190 len += 6;
191 if (WARN_ON(rtap->align == 0))
192 rtap->align = 1;
193 len = ALIGN(len, rtap->align);
194 len += rtap->len + rtap->pad;
195 }
196
601ae7f2
BR
197 return len;
198}
199
9e478066
JB
200static void ieee80211_handle_mu_mimo_mon(struct ieee80211_sub_if_data *sdata,
201 struct sk_buff *skb,
202 int rtap_vendor_space)
203{
204 struct {
205 struct ieee80211_hdr_3addr hdr;
206 u8 category;
207 u8 action_code;
208 } __packed action;
209
210 if (!sdata)
211 return;
212
213 BUILD_BUG_ON(sizeof(action) != IEEE80211_MIN_ACTION_SIZE + 1);
214
215 if (skb->len < rtap_vendor_space + sizeof(action) +
216 VHT_MUMIMO_GROUPS_DATA_LEN)
217 return;
218
219 if (!is_valid_ether_addr(sdata->u.mntr.mu_follow_addr))
220 return;
221
222 skb_copy_bits(skb, rtap_vendor_space, &action, sizeof(action));
223
224 if (!ieee80211_is_action(action.hdr.frame_control))
225 return;
226
227 if (action.category != WLAN_CATEGORY_VHT)
228 return;
229
230 if (action.action_code != WLAN_VHT_ACTION_GROUPID_MGMT)
231 return;
232
233 if (!ether_addr_equal(action.hdr.addr1, sdata->u.mntr.mu_follow_addr))
234 return;
235
236 skb = skb_copy(skb, GFP_ATOMIC);
237 if (!skb)
238 return;
239
9e478066
JB
240 skb_queue_tail(&sdata->skb_queue, skb);
241 ieee80211_queue_work(&sdata->local->hw, &sdata->work);
242}
243
00ea6deb 244/*
601ae7f2
BR
245 * ieee80211_add_rx_radiotap_header - add radiotap header
246 *
247 * add a radiotap header containing all the fields which the hardware provided.
248 */
249static void
250ieee80211_add_rx_radiotap_header(struct ieee80211_local *local,
251 struct sk_buff *skb,
601ae7f2 252 struct ieee80211_rate *rate,
973ef21a 253 int rtap_len, bool has_fcs)
601ae7f2 254{
f1d58c25 255 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
601ae7f2
BR
256 struct ieee80211_radiotap_header *rthdr;
257 unsigned char *pos;
a144f378
JB
258 __le32 *it_present;
259 u32 it_present_val;
6a86b9c7 260 u16 rx_flags = 0;
a5e70697 261 u16 channel_flags = 0;
a144f378
JB
262 int mpdulen, chain;
263 unsigned long chains = status->chains;
1f7bba79
JB
264 struct ieee80211_vendor_radiotap rtap = {};
265
266 if (status->flag & RX_FLAG_RADIOTAP_VENDOR_DATA) {
267 rtap = *(struct ieee80211_vendor_radiotap *)skb->data;
268 /* rtap.len and rtap.pad are undone immediately */
269 skb_pull(skb, sizeof(rtap) + rtap.len + rtap.pad);
270 }
f4bda337
TP
271
272 mpdulen = skb->len;
30686bf7 273 if (!(has_fcs && ieee80211_hw_check(&local->hw, RX_INCLUDES_FCS)))
f4bda337 274 mpdulen += FCS_LEN;
601ae7f2 275
d58ff351 276 rthdr = skb_push(skb, rtap_len);
1f7bba79 277 memset(rthdr, 0, rtap_len - rtap.len - rtap.pad);
a144f378 278 it_present = &rthdr->it_present;
601ae7f2
BR
279
280 /* radiotap header, set always present flags */
0059b2b1 281 rthdr->it_len = cpu_to_le16(rtap_len);
a144f378
JB
282 it_present_val = BIT(IEEE80211_RADIOTAP_FLAGS) |
283 BIT(IEEE80211_RADIOTAP_CHANNEL) |
284 BIT(IEEE80211_RADIOTAP_RX_FLAGS);
285
286 if (!status->chains)
287 it_present_val |= BIT(IEEE80211_RADIOTAP_ANTENNA);
288
289 for_each_set_bit(chain, &chains, IEEE80211_MAX_CHAINS) {
290 it_present_val |=
291 BIT(IEEE80211_RADIOTAP_EXT) |
292 BIT(IEEE80211_RADIOTAP_RADIOTAP_NAMESPACE);
293 put_unaligned_le32(it_present_val, it_present);
294 it_present++;
295 it_present_val = BIT(IEEE80211_RADIOTAP_ANTENNA) |
296 BIT(IEEE80211_RADIOTAP_DBM_ANTSIGNAL);
297 }
601ae7f2 298
1f7bba79
JB
299 if (status->flag & RX_FLAG_RADIOTAP_VENDOR_DATA) {
300 it_present_val |= BIT(IEEE80211_RADIOTAP_VENDOR_NAMESPACE) |
301 BIT(IEEE80211_RADIOTAP_EXT);
302 put_unaligned_le32(it_present_val, it_present);
303 it_present++;
304 it_present_val = rtap.present;
305 }
306
a144f378
JB
307 put_unaligned_le32(it_present_val, it_present);
308
309 pos = (void *)(it_present + 1);
310
601ae7f2
BR
311 /* the order of the following fields is important */
312
313 /* IEEE80211_RADIOTAP_TSFT */
f4bda337 314 if (ieee80211_have_rx_timestamp(status)) {
90b9e446
JB
315 /* padding */
316 while ((pos - (u8 *)rthdr) & 7)
317 *pos++ = 0;
f4bda337
TP
318 put_unaligned_le64(
319 ieee80211_calculate_rx_timestamp(local, status,
320 mpdulen, 0),
321 pos);
1df332e8 322 rthdr->it_present |= cpu_to_le32(1 << IEEE80211_RADIOTAP_TSFT);
601ae7f2
BR
323 pos += 8;
324 }
325
326 /* IEEE80211_RADIOTAP_FLAGS */
30686bf7 327 if (has_fcs && ieee80211_hw_check(&local->hw, RX_INCLUDES_FCS))
601ae7f2 328 *pos |= IEEE80211_RADIOTAP_F_FCS;
aae89831
JB
329 if (status->flag & (RX_FLAG_FAILED_FCS_CRC | RX_FLAG_FAILED_PLCP_CRC))
330 *pos |= IEEE80211_RADIOTAP_F_BADFCS;
7fdd69c5 331 if (status->enc_flags & RX_ENC_FLAG_SHORTPRE)
b4f28bbb 332 *pos |= IEEE80211_RADIOTAP_F_SHORTPRE;
601ae7f2
BR
333 pos++;
334
335 /* IEEE80211_RADIOTAP_RATE */
da6a4352 336 if (!rate || status->encoding != RX_ENC_LEGACY) {
0fb8ca45 337 /*
f8d1ccf1 338 * Without rate information don't add it. If we have,
38f37be2 339 * MCS information is a separate field in radiotap,
73b48099
JB
340 * added below. The byte here is needed as padding
341 * for the channel though, so initialise it to 0.
0fb8ca45
JM
342 */
343 *pos = 0;
8d6f658e 344 } else {
2103dec1 345 int shift = 0;
ebe6c7ba 346 rthdr->it_present |= cpu_to_le32(1 << IEEE80211_RADIOTAP_RATE);
da6a4352 347 if (status->bw == RATE_INFO_BW_10)
2103dec1 348 shift = 1;
da6a4352 349 else if (status->bw == RATE_INFO_BW_5)
2103dec1
SW
350 shift = 2;
351 *pos = DIV_ROUND_UP(rate->bitrate, 5 * (1 << shift));
8d6f658e 352 }
601ae7f2
BR
353 pos++;
354
355 /* IEEE80211_RADIOTAP_CHANNEL */
6a86b9c7 356 put_unaligned_le16(status->freq, pos);
601ae7f2 357 pos += 2;
da6a4352 358 if (status->bw == RATE_INFO_BW_10)
a5e70697 359 channel_flags |= IEEE80211_CHAN_HALF;
da6a4352 360 else if (status->bw == RATE_INFO_BW_5)
a5e70697
SW
361 channel_flags |= IEEE80211_CHAN_QUARTER;
362
57fbcce3 363 if (status->band == NL80211_BAND_5GHZ)
a5e70697 364 channel_flags |= IEEE80211_CHAN_OFDM | IEEE80211_CHAN_5GHZ;
da6a4352 365 else if (status->encoding != RX_ENC_LEGACY)
a5e70697 366 channel_flags |= IEEE80211_CHAN_DYN | IEEE80211_CHAN_2GHZ;
f8d1ccf1 367 else if (rate && rate->flags & IEEE80211_RATE_ERP_G)
a5e70697 368 channel_flags |= IEEE80211_CHAN_OFDM | IEEE80211_CHAN_2GHZ;
f8d1ccf1 369 else if (rate)
3a5c5e81 370 channel_flags |= IEEE80211_CHAN_CCK | IEEE80211_CHAN_2GHZ;
f8d1ccf1 371 else
a5e70697
SW
372 channel_flags |= IEEE80211_CHAN_2GHZ;
373 put_unaligned_le16(channel_flags, pos);
601ae7f2
BR
374 pos += 2;
375
376 /* IEEE80211_RADIOTAP_DBM_ANTSIGNAL */
30686bf7 377 if (ieee80211_hw_check(&local->hw, SIGNAL_DBM) &&
fe8431f8 378 !(status->flag & RX_FLAG_NO_SIGNAL_VAL)) {
601ae7f2
BR
379 *pos = status->signal;
380 rthdr->it_present |=
381 cpu_to_le32(1 << IEEE80211_RADIOTAP_DBM_ANTSIGNAL);
382 pos++;
383 }
384
601ae7f2
BR
385 /* IEEE80211_RADIOTAP_LOCK_QUALITY is missing */
386
a144f378
JB
387 if (!status->chains) {
388 /* IEEE80211_RADIOTAP_ANTENNA */
389 *pos = status->antenna;
390 pos++;
391 }
601ae7f2 392
601ae7f2
BR
393 /* IEEE80211_RADIOTAP_DB_ANTNOISE is not used */
394
395 /* IEEE80211_RADIOTAP_RX_FLAGS */
396 /* ensure 2 byte alignment for the 2 byte field as required */
6a86b9c7 397 if ((pos - (u8 *)rthdr) & 1)
90b9e446 398 *pos++ = 0;
aae89831 399 if (status->flag & RX_FLAG_FAILED_PLCP_CRC)
6a86b9c7
JB
400 rx_flags |= IEEE80211_RADIOTAP_F_RX_BADPLCP;
401 put_unaligned_le16(rx_flags, pos);
601ae7f2 402 pos += 2;
6d744bac 403
da6a4352 404 if (status->encoding == RX_ENC_HT) {
786677d1
OR
405 unsigned int stbc;
406
6d744bac 407 rthdr->it_present |= cpu_to_le32(1 << IEEE80211_RADIOTAP_MCS);
ac55d2fe 408 *pos++ = local->hw.radiotap_mcs_details;
6d744bac 409 *pos = 0;
7fdd69c5 410 if (status->enc_flags & RX_ENC_FLAG_SHORT_GI)
6d744bac 411 *pos |= IEEE80211_RADIOTAP_MCS_SGI;
da6a4352 412 if (status->bw == RATE_INFO_BW_40)
6d744bac 413 *pos |= IEEE80211_RADIOTAP_MCS_BW_40;
7fdd69c5 414 if (status->enc_flags & RX_ENC_FLAG_HT_GF)
ac55d2fe 415 *pos |= IEEE80211_RADIOTAP_MCS_FMT_GF;
7fdd69c5 416 if (status->enc_flags & RX_ENC_FLAG_LDPC)
63c361f5 417 *pos |= IEEE80211_RADIOTAP_MCS_FEC_LDPC;
7fdd69c5 418 stbc = (status->enc_flags & RX_ENC_FLAG_STBC_MASK) >> RX_ENC_FLAG_STBC_SHIFT;
786677d1 419 *pos |= stbc << IEEE80211_RADIOTAP_MCS_STBC_SHIFT;
6d744bac
JB
420 pos++;
421 *pos++ = status->rate_idx;
422 }
4c298677
JB
423
424 if (status->flag & RX_FLAG_AMPDU_DETAILS) {
425 u16 flags = 0;
426
427 /* ensure 4 byte alignment */
428 while ((pos - (u8 *)rthdr) & 3)
429 pos++;
430 rthdr->it_present |=
431 cpu_to_le32(1 << IEEE80211_RADIOTAP_AMPDU_STATUS);
432 put_unaligned_le32(status->ampdu_reference, pos);
433 pos += 4;
4c298677
JB
434 if (status->flag & RX_FLAG_AMPDU_LAST_KNOWN)
435 flags |= IEEE80211_RADIOTAP_AMPDU_LAST_KNOWN;
436 if (status->flag & RX_FLAG_AMPDU_IS_LAST)
437 flags |= IEEE80211_RADIOTAP_AMPDU_IS_LAST;
438 if (status->flag & RX_FLAG_AMPDU_DELIM_CRC_ERROR)
439 flags |= IEEE80211_RADIOTAP_AMPDU_DELIM_CRC_ERR;
440 if (status->flag & RX_FLAG_AMPDU_DELIM_CRC_KNOWN)
441 flags |= IEEE80211_RADIOTAP_AMPDU_DELIM_CRC_KNOWN;
442 put_unaligned_le16(flags, pos);
443 pos += 2;
444 if (status->flag & RX_FLAG_AMPDU_DELIM_CRC_KNOWN)
445 *pos++ = status->ampdu_delimiter_crc;
446 else
447 *pos++ = 0;
448 *pos++ = 0;
449 }
90b9e446 450
da6a4352 451 if (status->encoding == RX_ENC_VHT) {
51648921
JB
452 u16 known = local->hw.radiotap_vht_details;
453
454 rthdr->it_present |= cpu_to_le32(1 << IEEE80211_RADIOTAP_VHT);
51648921
JB
455 put_unaligned_le16(known, pos);
456 pos += 2;
457 /* flags */
7fdd69c5 458 if (status->enc_flags & RX_ENC_FLAG_SHORT_GI)
51648921 459 *pos |= IEEE80211_RADIOTAP_VHT_FLAG_SGI;
63c361f5 460 /* in VHT, STBC is binary */
7fdd69c5 461 if (status->enc_flags & RX_ENC_FLAG_STBC_MASK)
63c361f5 462 *pos |= IEEE80211_RADIOTAP_VHT_FLAG_STBC;
7fdd69c5 463 if (status->enc_flags & RX_ENC_FLAG_BF)
fb378c23 464 *pos |= IEEE80211_RADIOTAP_VHT_FLAG_BEAMFORMED;
51648921
JB
465 pos++;
466 /* bandwidth */
da6a4352
JB
467 switch (status->bw) {
468 case RATE_INFO_BW_80:
51648921 469 *pos++ = 4;
da6a4352
JB
470 break;
471 case RATE_INFO_BW_160:
51648921 472 *pos++ = 11;
da6a4352
JB
473 break;
474 case RATE_INFO_BW_40:
51648921 475 *pos++ = 1;
da6a4352
JB
476 break;
477 default:
51648921 478 *pos++ = 0;
da6a4352 479 }
51648921 480 /* MCS/NSS */
8613c948 481 *pos = (status->rate_idx << 4) | status->nss;
51648921
JB
482 pos += 4;
483 /* coding field */
7fdd69c5 484 if (status->enc_flags & RX_ENC_FLAG_LDPC)
63c361f5 485 *pos |= IEEE80211_RADIOTAP_CODING_LDPC_USER0;
51648921
JB
486 pos++;
487 /* group ID */
488 pos++;
489 /* partial_aid */
490 pos += 2;
491 }
492
99ee7cae
JB
493 if (local->hw.radiotap_timestamp.units_pos >= 0) {
494 u16 accuracy = 0;
495 u8 flags = IEEE80211_RADIOTAP_TIMESTAMP_FLAG_32BIT;
496
497 rthdr->it_present |=
498 cpu_to_le32(1 << IEEE80211_RADIOTAP_TIMESTAMP);
499
500 /* ensure 8 byte alignment */
501 while ((pos - (u8 *)rthdr) & 7)
502 pos++;
503
504 put_unaligned_le64(status->device_timestamp, pos);
505 pos += sizeof(u64);
506
507 if (local->hw.radiotap_timestamp.accuracy >= 0) {
508 accuracy = local->hw.radiotap_timestamp.accuracy;
509 flags |= IEEE80211_RADIOTAP_TIMESTAMP_FLAG_ACCURACY;
510 }
511 put_unaligned_le16(accuracy, pos);
512 pos += sizeof(u16);
513
514 *pos++ = local->hw.radiotap_timestamp.units_pos;
515 *pos++ = flags;
516 }
517
a144f378
JB
518 for_each_set_bit(chain, &chains, IEEE80211_MAX_CHAINS) {
519 *pos++ = status->chain_signal[chain];
520 *pos++ = chain;
521 }
1f7bba79
JB
522
523 if (status->flag & RX_FLAG_RADIOTAP_VENDOR_DATA) {
524 /* ensure 2 byte alignment for the vendor field as required */
525 if ((pos - (u8 *)rthdr) & 1)
526 *pos++ = 0;
527 *pos++ = rtap.oui[0];
528 *pos++ = rtap.oui[1];
529 *pos++ = rtap.oui[2];
530 *pos++ = rtap.subns;
531 put_unaligned_le16(rtap.len, pos);
532 pos += 2;
533 /* align the actual payload as requested */
534 while ((pos - (u8 *)rthdr) & (rtap.align - 1))
535 *pos++ = 0;
536 /* data (and possible padding) already follows */
537 }
601ae7f2
BR
538}
539
127f60bf
JB
540static struct sk_buff *
541ieee80211_make_monitor_skb(struct ieee80211_local *local,
542 struct sk_buff **origskb,
543 struct ieee80211_rate *rate,
544 int rtap_vendor_space, bool use_origskb)
545{
546 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(*origskb);
547 int rt_hdrlen, needed_headroom;
548 struct sk_buff *skb;
549
550 /* room for the radiotap header based on driver features */
551 rt_hdrlen = ieee80211_rx_radiotap_hdrlen(local, status, *origskb);
552 needed_headroom = rt_hdrlen - rtap_vendor_space;
553
554 if (use_origskb) {
555 /* only need to expand headroom if necessary */
556 skb = *origskb;
557 *origskb = NULL;
558
559 /*
560 * This shouldn't trigger often because most devices have an
561 * RX header they pull before we get here, and that should
562 * be big enough for our radiotap information. We should
563 * probably export the length to drivers so that we can have
564 * them allocate enough headroom to start with.
565 */
566 if (skb_headroom(skb) < needed_headroom &&
567 pskb_expand_head(skb, needed_headroom, 0, GFP_ATOMIC)) {
568 dev_kfree_skb(skb);
569 return NULL;
570 }
571 } else {
572 /*
573 * Need to make a copy and possibly remove radiotap header
574 * and FCS from the original.
575 */
576 skb = skb_copy_expand(*origskb, needed_headroom, 0, GFP_ATOMIC);
577
578 if (!skb)
579 return NULL;
580 }
581
582 /* prepend radiotap information */
583 ieee80211_add_rx_radiotap_header(local, skb, rate, rt_hdrlen, true);
584
585 skb_reset_mac_header(skb);
586 skb->ip_summed = CHECKSUM_UNNECESSARY;
587 skb->pkt_type = PACKET_OTHERHOST;
588 skb->protocol = htons(ETH_P_802_2);
589
590 return skb;
591}
592
b2e7771e
JB
593/*
594 * This function copies a received frame to all monitor interfaces and
595 * returns a cleaned-up SKB that no longer includes the FCS nor the
596 * radiotap header the driver might have added.
597 */
598static struct sk_buff *
599ieee80211_rx_monitor(struct ieee80211_local *local, struct sk_buff *origskb,
8318d78a 600 struct ieee80211_rate *rate)
b2e7771e 601{
f1d58c25 602 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(origskb);
b2e7771e 603 struct ieee80211_sub_if_data *sdata;
127f60bf 604 struct sk_buff *monskb = NULL;
b2e7771e 605 int present_fcs_len = 0;
1f7bba79 606 unsigned int rtap_vendor_space = 0;
42bd20d9
AE
607 struct ieee80211_sub_if_data *monitor_sdata =
608 rcu_dereference(local->monitor_sdata);
127f60bf 609 bool only_monitor = false;
1f7bba79
JB
610
611 if (unlikely(status->flag & RX_FLAG_RADIOTAP_VENDOR_DATA)) {
612 struct ieee80211_vendor_radiotap *rtap = (void *)origskb->data;
613
614 rtap_vendor_space = sizeof(*rtap) + rtap->len + rtap->pad;
615 }
b2e7771e
JB
616
617 /*
618 * First, we may need to make a copy of the skb because
619 * (1) we need to modify it for radiotap (if not present), and
620 * (2) the other RX handlers will modify the skb we got.
621 *
622 * We don't need to, of course, if we aren't going to return
623 * the SKB because it has a bad FCS/PLCP checksum.
624 */
0869aea0 625
30841f5c
JB
626 if (ieee80211_hw_check(&local->hw, RX_INCLUDES_FCS)) {
627 if (unlikely(origskb->len <= FCS_LEN)) {
628 /* driver bug */
629 WARN_ON(1);
630 dev_kfree_skb(origskb);
631 return NULL;
632 }
b2e7771e 633 present_fcs_len = FCS_LEN;
30841f5c 634 }
b2e7771e 635
1f7bba79
JB
636 /* ensure hdr->frame_control and vendor radiotap data are in skb head */
637 if (!pskb_may_pull(origskb, 2 + rtap_vendor_space)) {
e3cf8b3f
ZY
638 dev_kfree_skb(origskb);
639 return NULL;
640 }
641
127f60bf
JB
642 only_monitor = should_drop_frame(origskb, present_fcs_len,
643 rtap_vendor_space);
644
17883048 645 if (!local->monitors || (status->flag & RX_FLAG_SKIP_MONITOR)) {
127f60bf 646 if (only_monitor) {
b2e7771e
JB
647 dev_kfree_skb(origskb);
648 return NULL;
649 }
650
30841f5c
JB
651 remove_monitor_info(origskb, present_fcs_len,
652 rtap_vendor_space);
653 return origskb;
b2e7771e
JB
654 }
655
9e478066
JB
656 ieee80211_handle_mu_mimo_mon(monitor_sdata, origskb, rtap_vendor_space);
657
f64331d5 658 list_for_each_entry_rcu(sdata, &local->mon_list, u.mntr.list) {
127f60bf
JB
659 bool last_monitor = list_is_last(&sdata->u.mntr.list,
660 &local->mon_list);
661
662 if (!monskb)
663 monskb = ieee80211_make_monitor_skb(local, &origskb,
664 rate,
665 rtap_vendor_space,
666 only_monitor &&
667 last_monitor);
668
669 if (monskb) {
670 struct sk_buff *skb;
671
672 if (last_monitor) {
673 skb = monskb;
674 monskb = NULL;
675 } else {
676 skb = skb_clone(monskb, GFP_ATOMIC);
677 }
678
679 if (skb) {
680 skb->dev = sdata->dev;
681 ieee80211_rx_stats(skb->dev, skb->len);
682 netif_receive_skb(skb);
b2e7771e
JB
683 }
684 }
685
127f60bf
JB
686 if (last_monitor)
687 break;
b2e7771e
JB
688 }
689
127f60bf
JB
690 /* this happens if last_monitor was erroneously false */
691 dev_kfree_skb(monskb);
692
693 /* ditto */
694 if (!origskb)
695 return NULL;
b2e7771e 696
127f60bf 697 remove_monitor_info(origskb, present_fcs_len, rtap_vendor_space);
b2e7771e
JB
698 return origskb;
699}
700
5cf121c3 701static void ieee80211_parse_qos(struct ieee80211_rx_data *rx)
6e0d114d 702{
238f74a2 703 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
554891e6 704 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(rx->skb);
9e26297a 705 int tid, seqno_idx, security_idx;
6e0d114d
JB
706
707 /* does the frame have a qos control field? */
238f74a2
HH
708 if (ieee80211_is_data_qos(hdr->frame_control)) {
709 u8 *qc = ieee80211_get_qos_ctl(hdr);
6e0d114d 710 /* frame has qos control */
238f74a2 711 tid = *qc & IEEE80211_QOS_CTL_TID_MASK;
04b7dcf9 712 if (*qc & IEEE80211_QOS_CTL_A_MSDU_PRESENT)
554891e6 713 status->rx_flags |= IEEE80211_RX_AMSDU;
9e26297a
JB
714
715 seqno_idx = tid;
716 security_idx = tid;
6e0d114d 717 } else {
1411f9b5
JB
718 /*
719 * IEEE 802.11-2007, 7.1.3.4.1 ("Sequence Number field"):
720 *
721 * Sequence numbers for management frames, QoS data
722 * frames with a broadcast/multicast address in the
723 * Address 1 field, and all non-QoS data frames sent
724 * by QoS STAs are assigned using an additional single
725 * modulo-4096 counter, [...]
726 *
727 * We also use that counter for non-QoS STAs.
728 */
5a306f58 729 seqno_idx = IEEE80211_NUM_TIDS;
9e26297a
JB
730 security_idx = 0;
731 if (ieee80211_is_mgmt(hdr->frame_control))
5a306f58 732 security_idx = IEEE80211_NUM_TIDS;
9e26297a 733 tid = 0;
6e0d114d 734 }
52865dfd 735
9e26297a
JB
736 rx->seqno_idx = seqno_idx;
737 rx->security_idx = security_idx;
6e0d114d
JB
738 /* Set skb->priority to 1d tag if highest order bit of TID is not set.
739 * For now, set skb->priority to 0 for other cases. */
740 rx->skb->priority = (tid > 7) ? 0 : tid;
38f3714d 741}
6e0d114d 742
d1c3a37c
JB
743/**
744 * DOC: Packet alignment
745 *
746 * Drivers always need to pass packets that are aligned to two-byte boundaries
747 * to the stack.
748 *
749 * Additionally, should, if possible, align the payload data in a way that
750 * guarantees that the contained IP header is aligned to a four-byte
751 * boundary. In the case of regular frames, this simply means aligning the
752 * payload to a four-byte boundary (because either the IP header is directly
753 * contained, or IV/RFC1042 headers that have a length divisible by four are
59d9cb07
KV
754 * in front of it). If the payload data is not properly aligned and the
755 * architecture doesn't support efficient unaligned operations, mac80211
756 * will align the data.
d1c3a37c
JB
757 *
758 * With A-MSDU frames, however, the payload data address must yield two modulo
759 * four because there are 14-byte 802.3 headers within the A-MSDU frames that
760 * push the IP header further back to a multiple of four again. Thankfully, the
761 * specs were sane enough this time around to require padding each A-MSDU
762 * subframe to a length that is a multiple of four.
763 *
25985edc 764 * Padding like Atheros hardware adds which is between the 802.11 header and
d1c3a37c
JB
765 * the payload is not supported, the driver is required to move the 802.11
766 * header to be directly in front of the payload in that case.
767 */
768static void ieee80211_verify_alignment(struct ieee80211_rx_data *rx)
38f3714d 769{
59d9cb07 770#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
441275e1 771 WARN_ON_ONCE((unsigned long)rx->skb->data & 1);
d1c3a37c 772#endif
6e0d114d
JB
773}
774
6368e4b1 775
571ecf67
JB
776/* rx handlers */
777
3cfcf6ac
JM
778static int ieee80211_is_unicast_robust_mgmt_frame(struct sk_buff *skb)
779{
780 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
781
d8ca16db 782 if (is_multicast_ether_addr(hdr->addr1))
3cfcf6ac
JM
783 return 0;
784
d8ca16db 785 return ieee80211_is_robust_mgmt_frame(skb);
3cfcf6ac
JM
786}
787
788
789static int ieee80211_is_multicast_robust_mgmt_frame(struct sk_buff *skb)
790{
791 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
792
d8ca16db 793 if (!is_multicast_ether_addr(hdr->addr1))
3cfcf6ac
JM
794 return 0;
795
d8ca16db 796 return ieee80211_is_robust_mgmt_frame(skb);
3cfcf6ac
JM
797}
798
799
800/* Get the BIP key index from MMIE; return -1 if this is not a BIP frame */
801static int ieee80211_get_mmie_keyidx(struct sk_buff *skb)
802{
803 struct ieee80211_mgmt *hdr = (struct ieee80211_mgmt *) skb->data;
804 struct ieee80211_mmie *mmie;
56c52da2 805 struct ieee80211_mmie_16 *mmie16;
3cfcf6ac 806
1df332e8 807 if (skb->len < 24 + sizeof(*mmie) || !is_multicast_ether_addr(hdr->da))
3cfcf6ac
JM
808 return -1;
809
d8ca16db 810 if (!ieee80211_is_robust_mgmt_frame(skb))
3cfcf6ac
JM
811 return -1; /* not a robust management frame */
812
813 mmie = (struct ieee80211_mmie *)
814 (skb->data + skb->len - sizeof(*mmie));
56c52da2
JM
815 if (mmie->element_id == WLAN_EID_MMIE &&
816 mmie->length == sizeof(*mmie) - 2)
817 return le16_to_cpu(mmie->key_id);
818
819 mmie16 = (struct ieee80211_mmie_16 *)
820 (skb->data + skb->len - sizeof(*mmie16));
821 if (skb->len >= 24 + sizeof(*mmie16) &&
822 mmie16->element_id == WLAN_EID_MMIE &&
823 mmie16->length == sizeof(*mmie16) - 2)
824 return le16_to_cpu(mmie16->key_id);
825
826 return -1;
3cfcf6ac
JM
827}
828
2c61cf9c
JB
829static int ieee80211_get_cs_keyid(const struct ieee80211_cipher_scheme *cs,
830 struct sk_buff *skb)
2475b1cc
MS
831{
832 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
833 __le16 fc;
834 int hdrlen;
835 u8 keyid;
836
837 fc = hdr->frame_control;
838 hdrlen = ieee80211_hdrlen(fc);
839
840 if (skb->len < hdrlen + cs->hdr_len)
841 return -EINVAL;
842
843 skb_copy_bits(skb, hdrlen + cs->key_idx_off, &keyid, 1);
844 keyid &= cs->key_idx_mask;
845 keyid >>= cs->key_idx_shift;
846
847 return keyid;
848}
849
1df332e8 850static ieee80211_rx_result ieee80211_rx_mesh_check(struct ieee80211_rx_data *rx)
33b64eb2 851{
a7767f95 852 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
47846c9b 853 char *dev_addr = rx->sdata->vif.addr;
d6d1a5a7 854
a7767f95 855 if (ieee80211_is_data(hdr->frame_control)) {
3c5772a5
JC
856 if (is_multicast_ether_addr(hdr->addr1)) {
857 if (ieee80211_has_tods(hdr->frame_control) ||
1df332e8 858 !ieee80211_has_fromds(hdr->frame_control))
3c5772a5 859 return RX_DROP_MONITOR;
b203ca39 860 if (ether_addr_equal(hdr->addr3, dev_addr))
3c5772a5
JC
861 return RX_DROP_MONITOR;
862 } else {
863 if (!ieee80211_has_a4(hdr->frame_control))
864 return RX_DROP_MONITOR;
b203ca39 865 if (ether_addr_equal(hdr->addr4, dev_addr))
3c5772a5
JC
866 return RX_DROP_MONITOR;
867 }
33b64eb2
LCC
868 }
869
870 /* If there is not an established peer link and this is not a peer link
871 * establisment frame, beacon or probe, drop the frame.
872 */
873
57cf8043 874 if (!rx->sta || sta_plink_state(rx->sta) != NL80211_PLINK_ESTAB) {
33b64eb2 875 struct ieee80211_mgmt *mgmt;
d6d1a5a7 876
a7767f95 877 if (!ieee80211_is_mgmt(hdr->frame_control))
33b64eb2
LCC
878 return RX_DROP_MONITOR;
879
a7767f95 880 if (ieee80211_is_action(hdr->frame_control)) {
d3aaec8a 881 u8 category;
9b395bc3
JB
882
883 /* make sure category field is present */
884 if (rx->skb->len < IEEE80211_MIN_ACTION_SIZE)
885 return RX_DROP_MONITOR;
886
33b64eb2 887 mgmt = (struct ieee80211_mgmt *)hdr;
d3aaec8a
JC
888 category = mgmt->u.action.category;
889 if (category != WLAN_CATEGORY_MESH_ACTION &&
1df332e8 890 category != WLAN_CATEGORY_SELF_PROTECTED)
33b64eb2 891 return RX_DROP_MONITOR;
33b64eb2 892 return RX_CONTINUE;
33b64eb2
LCC
893 }
894
a7767f95
HH
895 if (ieee80211_is_probe_req(hdr->frame_control) ||
896 ieee80211_is_probe_resp(hdr->frame_control) ||
71839121
JC
897 ieee80211_is_beacon(hdr->frame_control) ||
898 ieee80211_is_auth(hdr->frame_control))
a7767f95
HH
899 return RX_CONTINUE;
900
901 return RX_DROP_MONITOR;
a7767f95
HH
902 }
903
902acc78
JB
904 return RX_CONTINUE;
905}
33b64eb2 906
fb4ea054
JB
907static inline bool ieee80211_rx_reorder_ready(struct tid_ampdu_rx *tid_agg_rx,
908 int index)
909{
910 struct sk_buff_head *frames = &tid_agg_rx->reorder_buf[index];
911 struct sk_buff *tail = skb_peek_tail(frames);
912 struct ieee80211_rx_status *status;
913
06470f74
SS
914 if (tid_agg_rx->reorder_buf_filtered & BIT_ULL(index))
915 return true;
916
fb4ea054
JB
917 if (!tail)
918 return false;
919
920 status = IEEE80211_SKB_RXCB(tail);
921 if (status->flag & RX_FLAG_AMSDU_MORE)
922 return false;
923
924 return true;
925}
926
d3b2fb53 927static void ieee80211_release_reorder_frame(struct ieee80211_sub_if_data *sdata,
1edfb1af 928 struct tid_ampdu_rx *tid_agg_rx,
f9e124fb
CL
929 int index,
930 struct sk_buff_head *frames)
1edfb1af 931{
83eb935e
MK
932 struct sk_buff_head *skb_list = &tid_agg_rx->reorder_buf[index];
933 struct sk_buff *skb;
4cfda47b 934 struct ieee80211_rx_status *status;
1edfb1af 935
dd318575
JB
936 lockdep_assert_held(&tid_agg_rx->reorder_lock);
937
83eb935e 938 if (skb_queue_empty(skb_list))
1edfb1af
JB
939 goto no_frame;
940
fb4ea054 941 if (!ieee80211_rx_reorder_ready(tid_agg_rx, index)) {
83eb935e
MK
942 __skb_queue_purge(skb_list);
943 goto no_frame;
944 }
945
946 /* release frames from the reorder ring buffer */
1edfb1af 947 tid_agg_rx->stored_mpdu_num--;
83eb935e
MK
948 while ((skb = __skb_dequeue(skb_list))) {
949 status = IEEE80211_SKB_RXCB(skb);
950 status->rx_flags |= IEEE80211_RX_DEFERRED_RELEASE;
951 __skb_queue_tail(frames, skb);
952 }
1edfb1af
JB
953
954no_frame:
06470f74 955 tid_agg_rx->reorder_buf_filtered &= ~BIT_ULL(index);
9a886586 956 tid_agg_rx->head_seq_num = ieee80211_sn_inc(tid_agg_rx->head_seq_num);
1edfb1af
JB
957}
958
d3b2fb53 959static void ieee80211_release_reorder_frames(struct ieee80211_sub_if_data *sdata,
1edfb1af 960 struct tid_ampdu_rx *tid_agg_rx,
f9e124fb
CL
961 u16 head_seq_num,
962 struct sk_buff_head *frames)
1edfb1af
JB
963{
964 int index;
965
dd318575
JB
966 lockdep_assert_held(&tid_agg_rx->reorder_lock);
967
9a886586 968 while (ieee80211_sn_less(tid_agg_rx->head_seq_num, head_seq_num)) {
2e3049b7 969 index = tid_agg_rx->head_seq_num % tid_agg_rx->buf_size;
f9e124fb
CL
970 ieee80211_release_reorder_frame(sdata, tid_agg_rx, index,
971 frames);
1edfb1af
JB
972 }
973}
974
975/*
976 * Timeout (in jiffies) for skb's that are waiting in the RX reorder buffer. If
977 * the skb was added to the buffer longer than this time ago, the earlier
978 * frames that have not yet been received are assumed to be lost and the skb
979 * can be released for processing. This may also release other skb's from the
980 * reorder buffer if there are no additional gaps between the frames.
2bff8ebf
CL
981 *
982 * Callers must hold tid_agg_rx->reorder_lock.
1edfb1af
JB
983 */
984#define HT_RX_REORDER_BUF_TIMEOUT (HZ / 10)
985
d3b2fb53 986static void ieee80211_sta_reorder_release(struct ieee80211_sub_if_data *sdata,
f9e124fb
CL
987 struct tid_ampdu_rx *tid_agg_rx,
988 struct sk_buff_head *frames)
aa0c8636 989{
83eb935e 990 int index, i, j;
aa0c8636 991
dd318575
JB
992 lockdep_assert_held(&tid_agg_rx->reorder_lock);
993
aa0c8636 994 /* release the buffer until next missing frame */
2e3049b7 995 index = tid_agg_rx->head_seq_num % tid_agg_rx->buf_size;
fb4ea054 996 if (!ieee80211_rx_reorder_ready(tid_agg_rx, index) &&
07ae2dfc 997 tid_agg_rx->stored_mpdu_num) {
aa0c8636
CL
998 /*
999 * No buffers ready to be released, but check whether any
1000 * frames in the reorder buffer have timed out.
1001 */
aa0c8636
CL
1002 int skipped = 1;
1003 for (j = (index + 1) % tid_agg_rx->buf_size; j != index;
1004 j = (j + 1) % tid_agg_rx->buf_size) {
fb4ea054 1005 if (!ieee80211_rx_reorder_ready(tid_agg_rx, j)) {
aa0c8636
CL
1006 skipped++;
1007 continue;
1008 }
499fe9a4
DH
1009 if (skipped &&
1010 !time_after(jiffies, tid_agg_rx->reorder_time[j] +
aa0c8636 1011 HT_RX_REORDER_BUF_TIMEOUT))
2bff8ebf 1012 goto set_release_timer;
aa0c8636 1013
83eb935e
MK
1014 /* don't leave incomplete A-MSDUs around */
1015 for (i = (index + 1) % tid_agg_rx->buf_size; i != j;
1016 i = (i + 1) % tid_agg_rx->buf_size)
1017 __skb_queue_purge(&tid_agg_rx->reorder_buf[i]);
1018
bdcbd8e0
JB
1019 ht_dbg_ratelimited(sdata,
1020 "release an RX reorder frame due to timeout on earlier frames\n");
f9e124fb
CL
1021 ieee80211_release_reorder_frame(sdata, tid_agg_rx, j,
1022 frames);
aa0c8636
CL
1023
1024 /*
1025 * Increment the head seq# also for the skipped slots.
1026 */
1027 tid_agg_rx->head_seq_num =
9a886586
JB
1028 (tid_agg_rx->head_seq_num +
1029 skipped) & IEEE80211_SN_MASK;
aa0c8636
CL
1030 skipped = 0;
1031 }
fb4ea054 1032 } else while (ieee80211_rx_reorder_ready(tid_agg_rx, index)) {
f9e124fb
CL
1033 ieee80211_release_reorder_frame(sdata, tid_agg_rx, index,
1034 frames);
2e3049b7 1035 index = tid_agg_rx->head_seq_num % tid_agg_rx->buf_size;
aa0c8636 1036 }
2bff8ebf
CL
1037
1038 if (tid_agg_rx->stored_mpdu_num) {
2e3049b7 1039 j = index = tid_agg_rx->head_seq_num % tid_agg_rx->buf_size;
2bff8ebf
CL
1040
1041 for (; j != (index - 1) % tid_agg_rx->buf_size;
1042 j = (j + 1) % tid_agg_rx->buf_size) {
fb4ea054 1043 if (ieee80211_rx_reorder_ready(tid_agg_rx, j))
2bff8ebf
CL
1044 break;
1045 }
1046
1047 set_release_timer:
1048
788211d8
JB
1049 if (!tid_agg_rx->removed)
1050 mod_timer(&tid_agg_rx->reorder_timer,
1051 tid_agg_rx->reorder_time[j] + 1 +
1052 HT_RX_REORDER_BUF_TIMEOUT);
2bff8ebf
CL
1053 } else {
1054 del_timer(&tid_agg_rx->reorder_timer);
1055 }
aa0c8636
CL
1056}
1057
1edfb1af
JB
1058/*
1059 * As this function belongs to the RX path it must be under
1060 * rcu_read_lock protection. It returns false if the frame
1061 * can be processed immediately, true if it was consumed.
1062 */
d3b2fb53 1063static bool ieee80211_sta_manage_reorder_buf(struct ieee80211_sub_if_data *sdata,
1edfb1af 1064 struct tid_ampdu_rx *tid_agg_rx,
f9e124fb
CL
1065 struct sk_buff *skb,
1066 struct sk_buff_head *frames)
1edfb1af
JB
1067{
1068 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
83eb935e 1069 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
1edfb1af
JB
1070 u16 sc = le16_to_cpu(hdr->seq_ctrl);
1071 u16 mpdu_seq_num = (sc & IEEE80211_SCTL_SEQ) >> 4;
1072 u16 head_seq_num, buf_size;
1073 int index;
2bff8ebf 1074 bool ret = true;
1edfb1af 1075
dd318575
JB
1076 spin_lock(&tid_agg_rx->reorder_lock);
1077
4549cf2b
MK
1078 /*
1079 * Offloaded BA sessions have no known starting sequence number so pick
1080 * one from first Rxed frame for this tid after BA was started.
1081 */
1082 if (unlikely(tid_agg_rx->auto_seq)) {
1083 tid_agg_rx->auto_seq = false;
1084 tid_agg_rx->ssn = mpdu_seq_num;
1085 tid_agg_rx->head_seq_num = mpdu_seq_num;
1086 }
1087
1edfb1af
JB
1088 buf_size = tid_agg_rx->buf_size;
1089 head_seq_num = tid_agg_rx->head_seq_num;
1090
b7540d8f
SS
1091 /*
1092 * If the current MPDU's SN is smaller than the SSN, it shouldn't
1093 * be reordered.
1094 */
1095 if (unlikely(!tid_agg_rx->started)) {
1096 if (ieee80211_sn_less(mpdu_seq_num, head_seq_num)) {
1097 ret = false;
1098 goto out;
1099 }
1100 tid_agg_rx->started = true;
1101 }
1102
1edfb1af 1103 /* frame with out of date sequence number */
9a886586 1104 if (ieee80211_sn_less(mpdu_seq_num, head_seq_num)) {
1edfb1af 1105 dev_kfree_skb(skb);
2bff8ebf 1106 goto out;
1edfb1af
JB
1107 }
1108
1109 /*
1110 * If frame the sequence number exceeds our buffering window
1111 * size release some previous frames to make room for this one.
1112 */
9a886586
JB
1113 if (!ieee80211_sn_less(mpdu_seq_num, head_seq_num + buf_size)) {
1114 head_seq_num = ieee80211_sn_inc(
1115 ieee80211_sn_sub(mpdu_seq_num, buf_size));
1edfb1af 1116 /* release stored frames up to new head to stack */
d3b2fb53 1117 ieee80211_release_reorder_frames(sdata, tid_agg_rx,
f9e124fb 1118 head_seq_num, frames);
1edfb1af
JB
1119 }
1120
1121 /* Now the new frame is always in the range of the reordering buffer */
1122
2e3049b7 1123 index = mpdu_seq_num % tid_agg_rx->buf_size;
1edfb1af
JB
1124
1125 /* check if we already stored this frame */
fb4ea054 1126 if (ieee80211_rx_reorder_ready(tid_agg_rx, index)) {
1edfb1af 1127 dev_kfree_skb(skb);
2bff8ebf 1128 goto out;
1edfb1af
JB
1129 }
1130
1131 /*
1132 * If the current MPDU is in the right order and nothing else
1133 * is stored we can process it directly, no need to buffer it.
c835b214
JB
1134 * If it is first but there's something stored, we may be able
1135 * to release frames after this one.
1edfb1af
JB
1136 */
1137 if (mpdu_seq_num == tid_agg_rx->head_seq_num &&
1138 tid_agg_rx->stored_mpdu_num == 0) {
83eb935e
MK
1139 if (!(status->flag & RX_FLAG_AMSDU_MORE))
1140 tid_agg_rx->head_seq_num =
1141 ieee80211_sn_inc(tid_agg_rx->head_seq_num);
2bff8ebf
CL
1142 ret = false;
1143 goto out;
1edfb1af
JB
1144 }
1145
1146 /* put the frame in the reordering buffer */
83eb935e
MK
1147 __skb_queue_tail(&tid_agg_rx->reorder_buf[index], skb);
1148 if (!(status->flag & RX_FLAG_AMSDU_MORE)) {
1149 tid_agg_rx->reorder_time[index] = jiffies;
1150 tid_agg_rx->stored_mpdu_num++;
1151 ieee80211_sta_reorder_release(sdata, tid_agg_rx, frames);
1152 }
1edfb1af 1153
2bff8ebf
CL
1154 out:
1155 spin_unlock(&tid_agg_rx->reorder_lock);
1156 return ret;
1edfb1af
JB
1157}
1158
1159/*
1160 * Reorder MPDUs from A-MPDUs, keeping them on a buffer. Returns
1161 * true if the MPDU was buffered, false if it should be processed.
1162 */
f9e124fb
CL
1163static void ieee80211_rx_reorder_ampdu(struct ieee80211_rx_data *rx,
1164 struct sk_buff_head *frames)
1edfb1af 1165{
2569a826
JB
1166 struct sk_buff *skb = rx->skb;
1167 struct ieee80211_local *local = rx->local;
1edfb1af 1168 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
2569a826 1169 struct sta_info *sta = rx->sta;
1edfb1af
JB
1170 struct tid_ampdu_rx *tid_agg_rx;
1171 u16 sc;
6cc00d54 1172 u8 tid, ack_policy;
1edfb1af 1173
051a41fa
JB
1174 if (!ieee80211_is_data_qos(hdr->frame_control) ||
1175 is_multicast_ether_addr(hdr->addr1))
2569a826 1176 goto dont_reorder;
1edfb1af
JB
1177
1178 /*
1179 * filter the QoS data rx stream according to
1180 * STA/TID and check if this STA/TID is on aggregation
1181 */
1182
1edfb1af 1183 if (!sta)
2569a826 1184 goto dont_reorder;
1edfb1af 1185
6cc00d54
TP
1186 ack_policy = *ieee80211_get_qos_ctl(hdr) &
1187 IEEE80211_QOS_CTL_ACK_POLICY_MASK;
1edfb1af
JB
1188 tid = *ieee80211_get_qos_ctl(hdr) & IEEE80211_QOS_CTL_TID_MASK;
1189
a87f736d 1190 tid_agg_rx = rcu_dereference(sta->ampdu_mlme.tid_rx[tid]);
bfe40fa3
JB
1191 if (!tid_agg_rx) {
1192 if (ack_policy == IEEE80211_QOS_CTL_ACK_POLICY_BLOCKACK &&
1193 !test_bit(tid, rx->sta->ampdu_mlme.agg_session_valid) &&
1194 !test_and_set_bit(tid, rx->sta->ampdu_mlme.unexpected_agg))
1195 ieee80211_send_delba(rx->sdata, rx->sta->sta.addr, tid,
1196 WLAN_BACK_RECIPIENT,
1197 WLAN_REASON_QSTA_REQUIRE_SETUP);
a87f736d 1198 goto dont_reorder;
bfe40fa3 1199 }
1edfb1af
JB
1200
1201 /* qos null data frames are excluded */
1202 if (unlikely(hdr->frame_control & cpu_to_le16(IEEE80211_STYPE_NULLFUNC)))
a87f736d 1203 goto dont_reorder;
1edfb1af 1204
6cc00d54
TP
1205 /* not part of a BA session */
1206 if (ack_policy != IEEE80211_QOS_CTL_ACK_POLICY_BLOCKACK &&
1207 ack_policy != IEEE80211_QOS_CTL_ACK_POLICY_NORMAL)
1208 goto dont_reorder;
1209
1edfb1af
JB
1210 /* new, potentially un-ordered, ampdu frame - process it */
1211
1212 /* reset session timer */
1213 if (tid_agg_rx->timeout)
12d3952f 1214 tid_agg_rx->last_rx = jiffies;
1edfb1af
JB
1215
1216 /* if this mpdu is fragmented - terminate rx aggregation session */
1217 sc = le16_to_cpu(hdr->seq_ctrl);
1218 if (sc & IEEE80211_SCTL_FRAG) {
344eec67
JB
1219 skb_queue_tail(&rx->sdata->skb_queue, skb);
1220 ieee80211_queue_work(&local->hw, &rx->sdata->work);
2569a826 1221 return;
1edfb1af
JB
1222 }
1223
a87f736d
JB
1224 /*
1225 * No locking needed -- we will only ever process one
1226 * RX packet at a time, and thus own tid_agg_rx. All
1227 * other code manipulating it needs to (and does) make
1228 * sure that we cannot get to it any more before doing
1229 * anything with it.
1230 */
f9e124fb
CL
1231 if (ieee80211_sta_manage_reorder_buf(rx->sdata, tid_agg_rx, skb,
1232 frames))
2569a826
JB
1233 return;
1234
1235 dont_reorder:
f9e124fb 1236 __skb_queue_tail(frames, skb);
1edfb1af 1237}
33b64eb2 1238
49461622 1239static ieee80211_rx_result debug_noinline
0395442a 1240ieee80211_rx_h_check_dup(struct ieee80211_rx_data *rx)
571ecf67 1241{
a7767f95 1242 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
554891e6 1243 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(rx->skb);
571ecf67 1244
f9cfa5f3
SS
1245 if (status->flag & RX_FLAG_DUP_VALIDATED)
1246 return RX_CONTINUE;
1247
6b0f3274
JB
1248 /*
1249 * Drop duplicate 802.11 retransmissions
1250 * (IEEE 802.11-2012: 9.3.2.10 "Duplicate detection and recovery")
1251 */
0395442a
JB
1252
1253 if (rx->skb->len < 24)
1254 return RX_CONTINUE;
1255
1256 if (ieee80211_is_ctl(hdr->frame_control) ||
1257 ieee80211_is_qos_nullfunc(hdr->frame_control) ||
1258 is_multicast_ether_addr(hdr->addr1))
1259 return RX_CONTINUE;
1260
a732fa70
JB
1261 if (!rx->sta)
1262 return RX_CONTINUE;
1263
1264 if (unlikely(ieee80211_has_retry(hdr->frame_control) &&
1265 rx->sta->last_seq_ctrl[rx->seqno_idx] == hdr->seq_ctrl)) {
1266 I802_DEBUG_INC(rx->local->dot11FrameDuplicateCount);
e5a9f8d0 1267 rx->sta->rx_stats.num_duplicates++;
a732fa70
JB
1268 return RX_DROP_UNUSABLE;
1269 } else if (!(status->flag & RX_FLAG_AMSDU_MORE)) {
1270 rx->sta->last_seq_ctrl[rx->seqno_idx] = hdr->seq_ctrl;
571ecf67
JB
1271 }
1272
0395442a
JB
1273 return RX_CONTINUE;
1274}
1275
1276static ieee80211_rx_result debug_noinline
1277ieee80211_rx_h_check(struct ieee80211_rx_data *rx)
1278{
1279 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
1280
571ecf67
JB
1281 /* Drop disallowed frame classes based on STA auth/assoc state;
1282 * IEEE 802.11, Chap 5.5.
1283 *
ccd7b362
JB
1284 * mac80211 filters only based on association state, i.e. it drops
1285 * Class 3 frames from not associated stations. hostapd sends
571ecf67
JB
1286 * deauth/disassoc frames when needed. In addition, hostapd is
1287 * responsible for filtering on both auth and assoc states.
1288 */
33b64eb2 1289
902acc78 1290 if (ieee80211_vif_is_mesh(&rx->sdata->vif))
33b64eb2 1291 return ieee80211_rx_mesh_check(rx);
33b64eb2 1292
a7767f95
HH
1293 if (unlikely((ieee80211_is_data(hdr->frame_control) ||
1294 ieee80211_is_pspoll(hdr->frame_control)) &&
05c914fe 1295 rx->sdata->vif.type != NL80211_IFTYPE_ADHOC &&
1be7fe8d 1296 rx->sdata->vif.type != NL80211_IFTYPE_WDS &&
239281f8 1297 rx->sdata->vif.type != NL80211_IFTYPE_OCB &&
c2c98fde 1298 (!rx->sta || !test_sta_flag(rx->sta, WLAN_STA_ASSOC)))) {
7852e361
JB
1299 /*
1300 * accept port control frames from the AP even when it's not
1301 * yet marked ASSOC to prevent a race where we don't set the
1302 * assoc bit quickly enough before it sends the first frame
1303 */
1304 if (rx->sta && rx->sdata->vif.type == NL80211_IFTYPE_STATION &&
2a33bee2 1305 ieee80211_is_data_present(hdr->frame_control)) {
6dbda2d0
JB
1306 unsigned int hdrlen;
1307 __be16 ethertype;
1308
1309 hdrlen = ieee80211_hdrlen(hdr->frame_control);
1310
1311 if (rx->skb->len < hdrlen + 8)
1312 return RX_DROP_MONITOR;
1313
1314 skb_copy_bits(rx->skb, hdrlen + 6, &ethertype, 2);
1315 if (ethertype == rx->sdata->control_port_protocol)
2a33bee2
GE
1316 return RX_CONTINUE;
1317 }
21fc7560
JB
1318
1319 if (rx->sdata->vif.type == NL80211_IFTYPE_AP &&
1320 cfg80211_rx_spurious_frame(rx->sdata->dev,
1321 hdr->addr2,
1322 GFP_ATOMIC))
1323 return RX_DROP_UNUSABLE;
1324
e4c26add 1325 return RX_DROP_MONITOR;
2a33bee2 1326 }
571ecf67 1327
9ae54c84 1328 return RX_CONTINUE;
570bd537
JB
1329}
1330
1331
572e0012
KV
1332static ieee80211_rx_result debug_noinline
1333ieee80211_rx_h_check_more_data(struct ieee80211_rx_data *rx)
1334{
1335 struct ieee80211_local *local;
1336 struct ieee80211_hdr *hdr;
1337 struct sk_buff *skb;
1338
1339 local = rx->local;
1340 skb = rx->skb;
1341 hdr = (struct ieee80211_hdr *) skb->data;
1342
1343 if (!local->pspolling)
1344 return RX_CONTINUE;
1345
1346 if (!ieee80211_has_fromds(hdr->frame_control))
1347 /* this is not from AP */
1348 return RX_CONTINUE;
1349
1350 if (!ieee80211_is_data(hdr->frame_control))
1351 return RX_CONTINUE;
1352
1353 if (!ieee80211_has_moredata(hdr->frame_control)) {
1354 /* AP has no more frames buffered for us */
1355 local->pspolling = false;
1356 return RX_CONTINUE;
1357 }
1358
1359 /* more data bit is set, let's request a new frame from the AP */
1360 ieee80211_send_pspoll(local, rx->sdata);
1361
1362 return RX_CONTINUE;
1363}
1364
d012a605 1365static void sta_ps_start(struct sta_info *sta)
571ecf67 1366{
133b8226 1367 struct ieee80211_sub_if_data *sdata = sta->sdata;
4571d3bf 1368 struct ieee80211_local *local = sdata->local;
d012a605 1369 struct ps_data *ps;
ba8c3d6f 1370 int tid;
0795af57 1371
d012a605
MP
1372 if (sta->sdata->vif.type == NL80211_IFTYPE_AP ||
1373 sta->sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
1374 ps = &sdata->bss->ps;
1375 else
1376 return;
1377
1378 atomic_inc(&ps->num_sta_ps);
c2c98fde 1379 set_sta_flag(sta, WLAN_STA_PS_STA);
30686bf7 1380 if (!ieee80211_hw_check(&local->hw, AP_LINK_PS))
d057e5a3 1381 drv_sta_notify(local, sdata, STA_NOTIFY_SLEEP, &sta->sta);
bdcbd8e0
JB
1382 ps_dbg(sdata, "STA %pM aid %d enters power save mode\n",
1383 sta->sta.addr, sta->sta.aid);
ba8c3d6f 1384
17c18bf8
JB
1385 ieee80211_clear_fast_xmit(sta);
1386
ba8c3d6f
FF
1387 if (!sta->sta.txq[0])
1388 return;
1389
1390 for (tid = 0; tid < ARRAY_SIZE(sta->sta.txq); tid++) {
bb42f2d1 1391 if (txq_has_queue(sta->sta.txq[tid]))
ba8c3d6f
FF
1392 set_bit(tid, &sta->txq_buffered_tids);
1393 else
1394 clear_bit(tid, &sta->txq_buffered_tids);
1395 }
571ecf67
JB
1396}
1397
d012a605 1398static void sta_ps_end(struct sta_info *sta)
571ecf67 1399{
bdcbd8e0
JB
1400 ps_dbg(sta->sdata, "STA %pM aid %d exits power save mode\n",
1401 sta->sta.addr, sta->sta.aid);
004c872e 1402
c2c98fde 1403 if (test_sta_flag(sta, WLAN_STA_PS_DRIVER)) {
e3685e03
JB
1404 /*
1405 * Clear the flag only if the other one is still set
1406 * so that the TX path won't start TX'ing new frames
1407 * directly ... In the case that the driver flag isn't
1408 * set ieee80211_sta_ps_deliver_wakeup() will clear it.
1409 */
1410 clear_sta_flag(sta, WLAN_STA_PS_STA);
bdcbd8e0
JB
1411 ps_dbg(sta->sdata, "STA %pM aid %d driver-ps-blocked\n",
1412 sta->sta.addr, sta->sta.aid);
af818581
JB
1413 return;
1414 }
1415
5ac2e350
JB
1416 set_sta_flag(sta, WLAN_STA_PS_DELIVER);
1417 clear_sta_flag(sta, WLAN_STA_PS_STA);
af818581 1418 ieee80211_sta_ps_deliver_wakeup(sta);
571ecf67
JB
1419}
1420
cf47161a 1421int ieee80211_sta_ps_transition(struct ieee80211_sta *pubsta, bool start)
d057e5a3 1422{
cf47161a 1423 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
d057e5a3
AN
1424 bool in_ps;
1425
cf47161a 1426 WARN_ON(!ieee80211_hw_check(&sta->local->hw, AP_LINK_PS));
d057e5a3
AN
1427
1428 /* Don't let the same PS state be set twice */
cf47161a 1429 in_ps = test_sta_flag(sta, WLAN_STA_PS_STA);
d057e5a3
AN
1430 if ((start && in_ps) || (!start && !in_ps))
1431 return -EINVAL;
1432
1433 if (start)
cf47161a 1434 sta_ps_start(sta);
d057e5a3 1435 else
cf47161a 1436 sta_ps_end(sta);
d057e5a3
AN
1437
1438 return 0;
1439}
1440EXPORT_SYMBOL(ieee80211_sta_ps_transition);
1441
46fa38e8
JB
1442void ieee80211_sta_pspoll(struct ieee80211_sta *pubsta)
1443{
1444 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
1445
1446 if (test_sta_flag(sta, WLAN_STA_SP))
1447 return;
1448
1449 if (!test_sta_flag(sta, WLAN_STA_PS_DRIVER))
1450 ieee80211_sta_ps_deliver_poll_response(sta);
1451 else
1452 set_sta_flag(sta, WLAN_STA_PSPOLL);
1453}
1454EXPORT_SYMBOL(ieee80211_sta_pspoll);
1455
1456void ieee80211_sta_uapsd_trigger(struct ieee80211_sta *pubsta, u8 tid)
1457{
1458 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
731977e9 1459 int ac = ieee80211_ac_from_tid(tid);
46fa38e8
JB
1460
1461 /*
0aa419ec
EG
1462 * If this AC is not trigger-enabled do nothing unless the
1463 * driver is calling us after it already checked.
46fa38e8
JB
1464 *
1465 * NB: This could/should check a separate bitmap of trigger-
1466 * enabled queues, but for now we only implement uAPSD w/o
1467 * TSPEC changes to the ACs, so they're always the same.
1468 */
f438ceb8
EG
1469 if (!(sta->sta.uapsd_queues & ieee80211_ac_to_qos_mask[ac]) &&
1470 tid != IEEE80211_NUM_TIDS)
46fa38e8
JB
1471 return;
1472
1473 /* if we are in a service period, do nothing */
1474 if (test_sta_flag(sta, WLAN_STA_SP))
1475 return;
1476
1477 if (!test_sta_flag(sta, WLAN_STA_PS_DRIVER))
1478 ieee80211_sta_ps_deliver_uapsd(sta);
1479 else
1480 set_sta_flag(sta, WLAN_STA_UAPSD);
1481}
1482EXPORT_SYMBOL(ieee80211_sta_uapsd_trigger);
1483
47086fc5
JB
1484static ieee80211_rx_result debug_noinline
1485ieee80211_rx_h_uapsd_and_pspoll(struct ieee80211_rx_data *rx)
1486{
1487 struct ieee80211_sub_if_data *sdata = rx->sdata;
1488 struct ieee80211_hdr *hdr = (void *)rx->skb->data;
1489 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(rx->skb);
47086fc5 1490
5c90067c 1491 if (!rx->sta)
47086fc5
JB
1492 return RX_CONTINUE;
1493
1494 if (sdata->vif.type != NL80211_IFTYPE_AP &&
1495 sdata->vif.type != NL80211_IFTYPE_AP_VLAN)
1496 return RX_CONTINUE;
1497
1498 /*
1499 * The device handles station powersave, so don't do anything about
1500 * uAPSD and PS-Poll frames (the latter shouldn't even come up from
1501 * it to mac80211 since they're handled.)
1502 */
30686bf7 1503 if (ieee80211_hw_check(&sdata->local->hw, AP_LINK_PS))
47086fc5
JB
1504 return RX_CONTINUE;
1505
1506 /*
1507 * Don't do anything if the station isn't already asleep. In
1508 * the uAPSD case, the station will probably be marked asleep,
1509 * in the PS-Poll case the station must be confused ...
1510 */
c2c98fde 1511 if (!test_sta_flag(rx->sta, WLAN_STA_PS_STA))
47086fc5
JB
1512 return RX_CONTINUE;
1513
1514 if (unlikely(ieee80211_is_pspoll(hdr->frame_control))) {
46fa38e8 1515 ieee80211_sta_pspoll(&rx->sta->sta);
47086fc5
JB
1516
1517 /* Free PS Poll skb here instead of returning RX_DROP that would
1518 * count as an dropped frame. */
1519 dev_kfree_skb(rx->skb);
1520
1521 return RX_QUEUED;
1522 } else if (!ieee80211_has_morefrags(hdr->frame_control) &&
1523 !(status->rx_flags & IEEE80211_RX_DEFERRED_RELEASE) &&
1524 ieee80211_has_pm(hdr->frame_control) &&
1525 (ieee80211_is_data_qos(hdr->frame_control) ||
1526 ieee80211_is_qos_nullfunc(hdr->frame_control))) {
46fa38e8 1527 u8 tid;
47086fc5 1528
46fa38e8 1529 tid = *ieee80211_get_qos_ctl(hdr) & IEEE80211_QOS_CTL_TID_MASK;
47086fc5 1530
46fa38e8 1531 ieee80211_sta_uapsd_trigger(&rx->sta->sta, tid);
47086fc5
JB
1532 }
1533
1534 return RX_CONTINUE;
1535}
1536
49461622 1537static ieee80211_rx_result debug_noinline
5cf121c3 1538ieee80211_rx_h_sta_process(struct ieee80211_rx_data *rx)
571ecf67
JB
1539{
1540 struct sta_info *sta = rx->sta;
eb9fb5b8
JB
1541 struct sk_buff *skb = rx->skb;
1542 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
1543 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
ef0621e8 1544 int i;
571ecf67
JB
1545
1546 if (!sta)
9ae54c84 1547 return RX_CONTINUE;
571ecf67 1548
b291ba11
JB
1549 /*
1550 * Update last_rx only for IBSS packets which are for the current
e584da5e
AQ
1551 * BSSID and for station already AUTHORIZED to avoid keeping the
1552 * current IBSS network alive in cases where other STAs start
1553 * using different BSSID. This will also give the station another
1554 * chance to restart the authentication/authorization in case
1555 * something went wrong the first time.
b291ba11 1556 */
05c914fe 1557 if (rx->sdata->vif.type == NL80211_IFTYPE_ADHOC) {
71364716 1558 u8 *bssid = ieee80211_get_bssid(hdr, rx->skb->len,
05c914fe 1559 NL80211_IFTYPE_ADHOC);
e584da5e
AQ
1560 if (ether_addr_equal(bssid, rx->sdata->u.ibss.bssid) &&
1561 test_sta_flag(sta, WLAN_STA_AUTHORIZED)) {
e5a9f8d0 1562 sta->rx_stats.last_rx = jiffies;
f4ebddf9 1563 if (ieee80211_is_data(hdr->frame_control) &&
4f6b1b3d
JB
1564 !is_multicast_ether_addr(hdr->addr1))
1565 sta->rx_stats.last_rate =
1566 sta_stats_encode_rate(status);
3af6334c 1567 }
239281f8 1568 } else if (rx->sdata->vif.type == NL80211_IFTYPE_OCB) {
e5a9f8d0 1569 sta->rx_stats.last_rx = jiffies;
b291ba11
JB
1570 } else if (!is_multicast_ether_addr(hdr->addr1)) {
1571 /*
33b64eb2
LCC
1572 * Mesh beacons will update last_rx when if they are found to
1573 * match the current local configuration when processed.
571ecf67 1574 */
e5a9f8d0 1575 sta->rx_stats.last_rx = jiffies;
4f6b1b3d
JB
1576 if (ieee80211_is_data(hdr->frame_control))
1577 sta->rx_stats.last_rate = sta_stats_encode_rate(status);
571ecf67
JB
1578 }
1579
3cf335d5
KV
1580 if (rx->sdata->vif.type == NL80211_IFTYPE_STATION)
1581 ieee80211_sta_rx_notify(rx->sdata, hdr);
1582
e5a9f8d0 1583 sta->rx_stats.fragments++;
0f9c5a61
JB
1584
1585 u64_stats_update_begin(&rx->sta->rx_stats.syncp);
e5a9f8d0 1586 sta->rx_stats.bytes += rx->skb->len;
0f9c5a61
JB
1587 u64_stats_update_end(&rx->sta->rx_stats.syncp);
1588
fe8431f8 1589 if (!(status->flag & RX_FLAG_NO_SIGNAL_VAL)) {
e5a9f8d0 1590 sta->rx_stats.last_signal = status->signal;
0be6ed13 1591 ewma_signal_add(&sta->rx_stats_avg.signal, -status->signal);
fe8431f8 1592 }
571ecf67 1593
ef0621e8 1594 if (status->chains) {
e5a9f8d0 1595 sta->rx_stats.chains = status->chains;
ef0621e8
FF
1596 for (i = 0; i < ARRAY_SIZE(status->chain_signal); i++) {
1597 int signal = status->chain_signal[i];
1598
1599 if (!(status->chains & BIT(i)))
1600 continue;
1601
e5a9f8d0 1602 sta->rx_stats.chain_signal_last[i] = signal;
0be6ed13 1603 ewma_signal_add(&sta->rx_stats_avg.chain_signal[i],
e5a9f8d0 1604 -signal);
ef0621e8
FF
1605 }
1606 }
1607
72eaa43a
JB
1608 /*
1609 * Change STA power saving mode only at the end of a frame
1610 * exchange sequence.
1611 */
30686bf7 1612 if (!ieee80211_hw_check(&sta->local->hw, AP_LINK_PS) &&
d057e5a3 1613 !ieee80211_has_morefrags(hdr->frame_control) &&
769dc04d 1614 !ieee80211_is_back_req(hdr->frame_control) &&
4cfda47b 1615 !(status->rx_flags & IEEE80211_RX_DEFERRED_RELEASE) &&
05c914fe 1616 (rx->sdata->vif.type == NL80211_IFTYPE_AP ||
b4ba544c 1617 rx->sdata->vif.type == NL80211_IFTYPE_AP_VLAN) &&
769dc04d
EG
1618 /*
1619 * PM bit is only checked in frames where it isn't reserved,
b4ba544c
JB
1620 * in AP mode it's reserved in non-bufferable management frames
1621 * (cf. IEEE 802.11-2012 8.2.4.1.7 Power Management field)
769dc04d
EG
1622 * BAR frames should be ignored as specified in
1623 * IEEE 802.11-2012 10.2.1.2.
b4ba544c
JB
1624 */
1625 (!ieee80211_is_mgmt(hdr->frame_control) ||
1626 ieee80211_is_bufferable_mmpdu(hdr->frame_control))) {
c2c98fde 1627 if (test_sta_flag(sta, WLAN_STA_PS_STA)) {
b4ba544c 1628 if (!ieee80211_has_pm(hdr->frame_control))
d012a605 1629 sta_ps_end(sta);
72eaa43a
JB
1630 } else {
1631 if (ieee80211_has_pm(hdr->frame_control))
d012a605 1632 sta_ps_start(sta);
72eaa43a 1633 }
571ecf67
JB
1634 }
1635
3f52b7e3
MP
1636 /* mesh power save support */
1637 if (ieee80211_vif_is_mesh(&rx->sdata->vif))
1638 ieee80211_mps_rx_h_sta_process(sta, hdr);
1639
22403def
JB
1640 /*
1641 * Drop (qos-)data::nullfunc frames silently, since they
1642 * are used only to control station power saving mode.
1643 */
1644 if (ieee80211_is_nullfunc(hdr->frame_control) ||
1645 ieee80211_is_qos_nullfunc(hdr->frame_control)) {
571ecf67 1646 I802_DEBUG_INC(rx->local->rx_handlers_drop_nullfunc);
d524215f
FF
1647
1648 /*
1649 * If we receive a 4-addr nullfunc frame from a STA
e7f4a940
JB
1650 * that was not moved to a 4-addr STA vlan yet send
1651 * the event to userspace and for older hostapd drop
1652 * the frame to the monitor interface.
d524215f
FF
1653 */
1654 if (ieee80211_has_a4(hdr->frame_control) &&
1655 (rx->sdata->vif.type == NL80211_IFTYPE_AP ||
1656 (rx->sdata->vif.type == NL80211_IFTYPE_AP_VLAN &&
e7f4a940
JB
1657 !rx->sdata->u.vlan.sta))) {
1658 if (!test_and_set_sta_flag(sta, WLAN_STA_4ADDR_EVENT))
1659 cfg80211_rx_unexpected_4addr_frame(
1660 rx->sdata->dev, sta->sta.addr,
1661 GFP_ATOMIC);
d524215f 1662 return RX_DROP_MONITOR;
e7f4a940 1663 }
22403def
JB
1664 /*
1665 * Update counter and free packet here to avoid
1666 * counting this as a dropped packed.
1667 */
e5a9f8d0 1668 sta->rx_stats.packets++;
571ecf67 1669 dev_kfree_skb(rx->skb);
9ae54c84 1670 return RX_QUEUED;
571ecf67
JB
1671 }
1672
9ae54c84 1673 return RX_CONTINUE;
571ecf67
JB
1674} /* ieee80211_rx_h_sta_process */
1675
86c228a7
JA
1676static ieee80211_rx_result debug_noinline
1677ieee80211_rx_h_decrypt(struct ieee80211_rx_data *rx)
1678{
1679 struct sk_buff *skb = rx->skb;
1680 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
1681 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
1682 int keyidx;
1683 int hdrlen;
1684 ieee80211_rx_result result = RX_DROP_UNUSABLE;
1685 struct ieee80211_key *sta_ptk = NULL;
1686 int mmie_keyidx = -1;
1687 __le16 fc;
2475b1cc 1688 const struct ieee80211_cipher_scheme *cs = NULL;
86c228a7
JA
1689
1690 /*
1691 * Key selection 101
1692 *
1693 * There are four types of keys:
1694 * - GTK (group keys)
1695 * - IGTK (group keys for management frames)
1696 * - PTK (pairwise keys)
1697 * - STK (station-to-station pairwise keys)
1698 *
1699 * When selecting a key, we have to distinguish between multicast
1700 * (including broadcast) and unicast frames, the latter can only
1701 * use PTKs and STKs while the former always use GTKs and IGTKs.
1702 * Unless, of course, actual WEP keys ("pre-RSNA") are used, then
1703 * unicast frames can also use key indices like GTKs. Hence, if we
1704 * don't have a PTK/STK we check the key index for a WEP key.
1705 *
1706 * Note that in a regular BSS, multicast frames are sent by the
1707 * AP only, associated stations unicast the frame to the AP first
1708 * which then multicasts it on their behalf.
1709 *
1710 * There is also a slight problem in IBSS mode: GTKs are negotiated
1711 * with each station, that is something we don't currently handle.
1712 * The spec seems to expect that one negotiates the same key with
1713 * every station but there's no such requirement; VLANs could be
1714 * possible.
1715 */
1716
86c228a7
JA
1717 /* start without a key */
1718 rx->key = NULL;
2475b1cc 1719 fc = hdr->frame_control;
86c228a7 1720
2475b1cc
MS
1721 if (rx->sta) {
1722 int keyid = rx->sta->ptk_idx;
86c228a7 1723
2475b1cc
MS
1724 if (ieee80211_has_protected(fc) && rx->sta->cipher_scheme) {
1725 cs = rx->sta->cipher_scheme;
2c61cf9c 1726 keyid = ieee80211_get_cs_keyid(cs, rx->skb);
2475b1cc
MS
1727 if (unlikely(keyid < 0))
1728 return RX_DROP_UNUSABLE;
1729 }
1730 sta_ptk = rcu_dereference(rx->sta->ptk[keyid]);
1731 }
86c228a7
JA
1732
1733 if (!ieee80211_has_protected(fc))
1734 mmie_keyidx = ieee80211_get_mmie_keyidx(rx->skb);
1735
1736 if (!is_multicast_ether_addr(hdr->addr1) && sta_ptk) {
1737 rx->key = sta_ptk;
1738 if ((status->flag & RX_FLAG_DECRYPTED) &&
1739 (status->flag & RX_FLAG_IV_STRIPPED))
1740 return RX_CONTINUE;
1741 /* Skip decryption if the frame is not protected. */
1742 if (!ieee80211_has_protected(fc))
1743 return RX_CONTINUE;
1744 } else if (mmie_keyidx >= 0) {
1745 /* Broadcast/multicast robust management frame / BIP */
1746 if ((status->flag & RX_FLAG_DECRYPTED) &&
1747 (status->flag & RX_FLAG_IV_STRIPPED))
1748 return RX_CONTINUE;
1749
1750 if (mmie_keyidx < NUM_DEFAULT_KEYS ||
1751 mmie_keyidx >= NUM_DEFAULT_KEYS + NUM_DEFAULT_MGMT_KEYS)
1752 return RX_DROP_MONITOR; /* unexpected BIP keyidx */
46f6b060
MH
1753 if (rx->sta) {
1754 if (ieee80211_is_group_privacy_action(skb) &&
1755 test_sta_flag(rx->sta, WLAN_STA_MFP))
1756 return RX_DROP_MONITOR;
1757
86c228a7 1758 rx->key = rcu_dereference(rx->sta->gtk[mmie_keyidx]);
46f6b060 1759 }
86c228a7
JA
1760 if (!rx->key)
1761 rx->key = rcu_dereference(rx->sdata->keys[mmie_keyidx]);
1762 } else if (!ieee80211_has_protected(fc)) {
1763 /*
1764 * The frame was not protected, so skip decryption. However, we
1765 * need to set rx->key if there is a key that could have been
1766 * used so that the frame may be dropped if encryption would
1767 * have been expected.
1768 */
1769 struct ieee80211_key *key = NULL;
1770 struct ieee80211_sub_if_data *sdata = rx->sdata;
1771 int i;
1772
1773 if (ieee80211_is_mgmt(fc) &&
1774 is_multicast_ether_addr(hdr->addr1) &&
1775 (key = rcu_dereference(rx->sdata->default_mgmt_key)))
1776 rx->key = key;
1777 else {
1778 if (rx->sta) {
1779 for (i = 0; i < NUM_DEFAULT_KEYS; i++) {
1780 key = rcu_dereference(rx->sta->gtk[i]);
1781 if (key)
1782 break;
1783 }
1784 }
1785 if (!key) {
1786 for (i = 0; i < NUM_DEFAULT_KEYS; i++) {
1787 key = rcu_dereference(sdata->keys[i]);
1788 if (key)
1789 break;
1790 }
1791 }
1792 if (key)
1793 rx->key = key;
1794 }
1795 return RX_CONTINUE;
1796 } else {
1797 u8 keyid;
2475b1cc 1798
86c228a7
JA
1799 /*
1800 * The device doesn't give us the IV so we won't be
1801 * able to look up the key. That's ok though, we
1802 * don't need to decrypt the frame, we just won't
1803 * be able to keep statistics accurate.
1804 * Except for key threshold notifications, should
1805 * we somehow allow the driver to tell us which key
1806 * the hardware used if this flag is set?
1807 */
1808 if ((status->flag & RX_FLAG_DECRYPTED) &&
1809 (status->flag & RX_FLAG_IV_STRIPPED))
1810 return RX_CONTINUE;
1811
1812 hdrlen = ieee80211_hdrlen(fc);
1813
2475b1cc 1814 if (cs) {
2c61cf9c 1815 keyidx = ieee80211_get_cs_keyid(cs, rx->skb);
86c228a7 1816
2475b1cc
MS
1817 if (unlikely(keyidx < 0))
1818 return RX_DROP_UNUSABLE;
1819 } else {
1820 if (rx->skb->len < 8 + hdrlen)
1821 return RX_DROP_UNUSABLE; /* TODO: count this? */
1822 /*
1823 * no need to call ieee80211_wep_get_keyidx,
1824 * it verifies a bunch of things we've done already
1825 */
1826 skb_copy_bits(rx->skb, hdrlen + 3, &keyid, 1);
1827 keyidx = keyid >> 6;
1828 }
86c228a7
JA
1829
1830 /* check per-station GTK first, if multicast packet */
1831 if (is_multicast_ether_addr(hdr->addr1) && rx->sta)
1832 rx->key = rcu_dereference(rx->sta->gtk[keyidx]);
1833
1834 /* if not found, try default key */
1835 if (!rx->key) {
1836 rx->key = rcu_dereference(rx->sdata->keys[keyidx]);
1837
1838 /*
1839 * RSNA-protected unicast frames should always be
1840 * sent with pairwise or station-to-station keys,
1841 * but for WEP we allow using a key index as well.
1842 */
1843 if (rx->key &&
1844 rx->key->conf.cipher != WLAN_CIPHER_SUITE_WEP40 &&
1845 rx->key->conf.cipher != WLAN_CIPHER_SUITE_WEP104 &&
1846 !is_multicast_ether_addr(hdr->addr1))
1847 rx->key = NULL;
1848 }
1849 }
1850
1851 if (rx->key) {
1852 if (unlikely(rx->key->flags & KEY_FLAG_TAINTED))
1853 return RX_DROP_MONITOR;
1854
86c228a7
JA
1855 /* TODO: add threshold stuff again */
1856 } else {
1857 return RX_DROP_MONITOR;
1858 }
1859
1860 switch (rx->key->conf.cipher) {
1861 case WLAN_CIPHER_SUITE_WEP40:
1862 case WLAN_CIPHER_SUITE_WEP104:
1863 result = ieee80211_crypto_wep_decrypt(rx);
1864 break;
1865 case WLAN_CIPHER_SUITE_TKIP:
1866 result = ieee80211_crypto_tkip_decrypt(rx);
1867 break;
1868 case WLAN_CIPHER_SUITE_CCMP:
2b2ba0db
JM
1869 result = ieee80211_crypto_ccmp_decrypt(
1870 rx, IEEE80211_CCMP_MIC_LEN);
1871 break;
1872 case WLAN_CIPHER_SUITE_CCMP_256:
1873 result = ieee80211_crypto_ccmp_decrypt(
1874 rx, IEEE80211_CCMP_256_MIC_LEN);
86c228a7
JA
1875 break;
1876 case WLAN_CIPHER_SUITE_AES_CMAC:
1877 result = ieee80211_crypto_aes_cmac_decrypt(rx);
1878 break;
56c52da2
JM
1879 case WLAN_CIPHER_SUITE_BIP_CMAC_256:
1880 result = ieee80211_crypto_aes_cmac_256_decrypt(rx);
1881 break;
8ade538b
JM
1882 case WLAN_CIPHER_SUITE_BIP_GMAC_128:
1883 case WLAN_CIPHER_SUITE_BIP_GMAC_256:
1884 result = ieee80211_crypto_aes_gmac_decrypt(rx);
1885 break;
00b9cfa3
JM
1886 case WLAN_CIPHER_SUITE_GCMP:
1887 case WLAN_CIPHER_SUITE_GCMP_256:
1888 result = ieee80211_crypto_gcmp_decrypt(rx);
1889 break;
86c228a7 1890 default:
2475b1cc 1891 result = ieee80211_crypto_hw_decrypt(rx);
86c228a7
JA
1892 }
1893
1894 /* the hdr variable is invalid after the decrypt handlers */
1895
1896 /* either the frame has been decrypted or will be dropped */
1897 status->flag |= RX_FLAG_DECRYPTED;
1898
1899 return result;
1900}
1901
571ecf67
JB
1902static inline struct ieee80211_fragment_entry *
1903ieee80211_reassemble_add(struct ieee80211_sub_if_data *sdata,
1904 unsigned int frag, unsigned int seq, int rx_queue,
1905 struct sk_buff **skb)
1906{
1907 struct ieee80211_fragment_entry *entry;
571ecf67 1908
571ecf67
JB
1909 entry = &sdata->fragments[sdata->fragment_next++];
1910 if (sdata->fragment_next >= IEEE80211_FRAGMENT_MAX)
1911 sdata->fragment_next = 0;
1912
bdcbd8e0 1913 if (!skb_queue_empty(&entry->skb_list))
571ecf67 1914 __skb_queue_purge(&entry->skb_list);
571ecf67
JB
1915
1916 __skb_queue_tail(&entry->skb_list, *skb); /* no need for locking */
1917 *skb = NULL;
1918 entry->first_frag_time = jiffies;
1919 entry->seq = seq;
1920 entry->rx_queue = rx_queue;
1921 entry->last_frag = frag;
9acc54be 1922 entry->check_sequential_pn = false;
571ecf67
JB
1923 entry->extra_len = 0;
1924
1925 return entry;
1926}
1927
1928static inline struct ieee80211_fragment_entry *
1929ieee80211_reassemble_find(struct ieee80211_sub_if_data *sdata,
b73d70ad 1930 unsigned int frag, unsigned int seq,
571ecf67
JB
1931 int rx_queue, struct ieee80211_hdr *hdr)
1932{
1933 struct ieee80211_fragment_entry *entry;
1934 int i, idx;
1935
1936 idx = sdata->fragment_next;
1937 for (i = 0; i < IEEE80211_FRAGMENT_MAX; i++) {
1938 struct ieee80211_hdr *f_hdr;
571ecf67
JB
1939
1940 idx--;
1941 if (idx < 0)
1942 idx = IEEE80211_FRAGMENT_MAX - 1;
1943
1944 entry = &sdata->fragments[idx];
1945 if (skb_queue_empty(&entry->skb_list) || entry->seq != seq ||
1946 entry->rx_queue != rx_queue ||
1947 entry->last_frag + 1 != frag)
1948 continue;
1949
b73d70ad 1950 f_hdr = (struct ieee80211_hdr *)entry->skb_list.next->data;
571ecf67 1951
b73d70ad
HH
1952 /*
1953 * Check ftype and addresses are equal, else check next fragment
1954 */
1955 if (((hdr->frame_control ^ f_hdr->frame_control) &
1956 cpu_to_le16(IEEE80211_FCTL_FTYPE)) ||
b203ca39
JP
1957 !ether_addr_equal(hdr->addr1, f_hdr->addr1) ||
1958 !ether_addr_equal(hdr->addr2, f_hdr->addr2))
571ecf67
JB
1959 continue;
1960
ab46623e 1961 if (time_after(jiffies, entry->first_frag_time + 2 * HZ)) {
571ecf67
JB
1962 __skb_queue_purge(&entry->skb_list);
1963 continue;
1964 }
1965 return entry;
1966 }
1967
1968 return NULL;
1969}
1970
49461622 1971static ieee80211_rx_result debug_noinline
5cf121c3 1972ieee80211_rx_h_defragment(struct ieee80211_rx_data *rx)
571ecf67
JB
1973{
1974 struct ieee80211_hdr *hdr;
1975 u16 sc;
358c8d9d 1976 __le16 fc;
571ecf67
JB
1977 unsigned int frag, seq;
1978 struct ieee80211_fragment_entry *entry;
1979 struct sk_buff *skb;
1980
b73d70ad 1981 hdr = (struct ieee80211_hdr *)rx->skb->data;
358c8d9d 1982 fc = hdr->frame_control;
f7fbf70e
JC
1983
1984 if (ieee80211_is_ctl(fc))
1985 return RX_CONTINUE;
1986
571ecf67
JB
1987 sc = le16_to_cpu(hdr->seq_ctrl);
1988 frag = sc & IEEE80211_SCTL_FRAG;
1989
b8fff407 1990 if (is_multicast_ether_addr(hdr->addr1)) {
c206ca67 1991 I802_DEBUG_INC(rx->local->dot11MulticastReceivedFrameCount);
d025933e 1992 goto out_no_led;
571ecf67 1993 }
b8fff407 1994
d025933e
AM
1995 if (likely(!ieee80211_has_morefrags(fc) && frag == 0))
1996 goto out;
1997
571ecf67
JB
1998 I802_DEBUG_INC(rx->local->rx_handlers_fragments);
1999
e3cf8b3f
ZY
2000 if (skb_linearize(rx->skb))
2001 return RX_DROP_UNUSABLE;
2002
058897a4
AK
2003 /*
2004 * skb_linearize() might change the skb->data and
2005 * previously cached variables (in this case, hdr) need to
2006 * be refreshed with the new data.
2007 */
2008 hdr = (struct ieee80211_hdr *)rx->skb->data;
571ecf67
JB
2009 seq = (sc & IEEE80211_SCTL_SEQ) >> 4;
2010
2011 if (frag == 0) {
2012 /* This is the first fragment of a new frame. */
2013 entry = ieee80211_reassemble_add(rx->sdata, frag, seq,
9e26297a 2014 rx->seqno_idx, &(rx->skb));
2b2ba0db
JM
2015 if (rx->key &&
2016 (rx->key->conf.cipher == WLAN_CIPHER_SUITE_CCMP ||
9acc54be
JB
2017 rx->key->conf.cipher == WLAN_CIPHER_SUITE_CCMP_256 ||
2018 rx->key->conf.cipher == WLAN_CIPHER_SUITE_GCMP ||
2019 rx->key->conf.cipher == WLAN_CIPHER_SUITE_GCMP_256) &&
358c8d9d 2020 ieee80211_has_protected(fc)) {
9e26297a 2021 int queue = rx->security_idx;
9acc54be
JB
2022
2023 /* Store CCMP/GCMP PN so that we can verify that the
2024 * next fragment has a sequential PN value.
2025 */
2026 entry->check_sequential_pn = true;
571ecf67 2027 memcpy(entry->last_pn,
9190252c 2028 rx->key->u.ccmp.rx_pn[queue],
4325f6ca 2029 IEEE80211_CCMP_PN_LEN);
9acc54be
JB
2030 BUILD_BUG_ON(offsetof(struct ieee80211_key,
2031 u.ccmp.rx_pn) !=
2032 offsetof(struct ieee80211_key,
2033 u.gcmp.rx_pn));
2034 BUILD_BUG_ON(sizeof(rx->key->u.ccmp.rx_pn[queue]) !=
2035 sizeof(rx->key->u.gcmp.rx_pn[queue]));
2036 BUILD_BUG_ON(IEEE80211_CCMP_PN_LEN !=
2037 IEEE80211_GCMP_PN_LEN);
571ecf67 2038 }
9ae54c84 2039 return RX_QUEUED;
571ecf67
JB
2040 }
2041
2042 /* This is a fragment for a frame that should already be pending in
2043 * fragment cache. Add this fragment to the end of the pending entry.
2044 */
9e26297a
JB
2045 entry = ieee80211_reassemble_find(rx->sdata, frag, seq,
2046 rx->seqno_idx, hdr);
571ecf67
JB
2047 if (!entry) {
2048 I802_DEBUG_INC(rx->local->rx_handlers_drop_defrag);
e4c26add 2049 return RX_DROP_MONITOR;
571ecf67
JB
2050 }
2051
9acc54be
JB
2052 /* "The receiver shall discard MSDUs and MMPDUs whose constituent
2053 * MPDU PN values are not incrementing in steps of 1."
2054 * see IEEE P802.11-REVmc/D5.0, 12.5.3.4.4, item d (for CCMP)
2055 * and IEEE P802.11-REVmc/D5.0, 12.5.5.4.4, item d (for GCMP)
2056 */
2057 if (entry->check_sequential_pn) {
571ecf67 2058 int i;
4325f6ca 2059 u8 pn[IEEE80211_CCMP_PN_LEN], *rpn;
9190252c 2060 int queue;
9acc54be 2061
2b2ba0db
JM
2062 if (!rx->key ||
2063 (rx->key->conf.cipher != WLAN_CIPHER_SUITE_CCMP &&
9acc54be
JB
2064 rx->key->conf.cipher != WLAN_CIPHER_SUITE_CCMP_256 &&
2065 rx->key->conf.cipher != WLAN_CIPHER_SUITE_GCMP &&
2066 rx->key->conf.cipher != WLAN_CIPHER_SUITE_GCMP_256))
e4c26add 2067 return RX_DROP_UNUSABLE;
4325f6ca
JB
2068 memcpy(pn, entry->last_pn, IEEE80211_CCMP_PN_LEN);
2069 for (i = IEEE80211_CCMP_PN_LEN - 1; i >= 0; i--) {
571ecf67
JB
2070 pn[i]++;
2071 if (pn[i])
2072 break;
2073 }
9e26297a 2074 queue = rx->security_idx;
9190252c 2075 rpn = rx->key->u.ccmp.rx_pn[queue];
4325f6ca 2076 if (memcmp(pn, rpn, IEEE80211_CCMP_PN_LEN))
e4c26add 2077 return RX_DROP_UNUSABLE;
4325f6ca 2078 memcpy(entry->last_pn, pn, IEEE80211_CCMP_PN_LEN);
571ecf67
JB
2079 }
2080
358c8d9d 2081 skb_pull(rx->skb, ieee80211_hdrlen(fc));
571ecf67
JB
2082 __skb_queue_tail(&entry->skb_list, rx->skb);
2083 entry->last_frag = frag;
2084 entry->extra_len += rx->skb->len;
358c8d9d 2085 if (ieee80211_has_morefrags(fc)) {
571ecf67 2086 rx->skb = NULL;
9ae54c84 2087 return RX_QUEUED;
571ecf67
JB
2088 }
2089
2090 rx->skb = __skb_dequeue(&entry->skb_list);
2091 if (skb_tailroom(rx->skb) < entry->extra_len) {
f1160434 2092 I802_DEBUG_INC(rx->local->rx_expand_skb_head_defrag);
571ecf67
JB
2093 if (unlikely(pskb_expand_head(rx->skb, 0, entry->extra_len,
2094 GFP_ATOMIC))) {
2095 I802_DEBUG_INC(rx->local->rx_handlers_drop_defrag);
2096 __skb_queue_purge(&entry->skb_list);
e4c26add 2097 return RX_DROP_UNUSABLE;
571ecf67
JB
2098 }
2099 }
2100 while ((skb = __skb_dequeue(&entry->skb_list))) {
59ae1d12 2101 skb_put_data(rx->skb, skb->data, skb->len);
571ecf67
JB
2102 dev_kfree_skb(skb);
2103 }
2104
571ecf67 2105 out:
d025933e
AM
2106 ieee80211_led_rx(rx->local);
2107 out_no_led:
571ecf67 2108 if (rx->sta)
e5a9f8d0 2109 rx->sta->rx_stats.packets++;
9ae54c84 2110 return RX_CONTINUE;
571ecf67
JB
2111}
2112
1df332e8 2113static int ieee80211_802_1x_port_control(struct ieee80211_rx_data *rx)
571ecf67 2114{
1df332e8 2115 if (unlikely(!rx->sta || !test_sta_flag(rx->sta, WLAN_STA_AUTHORIZED)))
76ee65bf 2116 return -EACCES;
571ecf67 2117
76ee65bf 2118 return 0;
571ecf67
JB
2119}
2120
1df332e8 2121static int ieee80211_drop_unencrypted(struct ieee80211_rx_data *rx, __le16 fc)
571ecf67 2122{
eb9fb5b8
JB
2123 struct sk_buff *skb = rx->skb;
2124 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
2125
3017b80b 2126 /*
7848ba7d
JB
2127 * Pass through unencrypted frames if the hardware has
2128 * decrypted them already.
3017b80b 2129 */
eb9fb5b8 2130 if (status->flag & RX_FLAG_DECRYPTED)
76ee65bf 2131 return 0;
571ecf67
JB
2132
2133 /* Drop unencrypted frames if key is set. */
358c8d9d
HH
2134 if (unlikely(!ieee80211_has_protected(fc) &&
2135 !ieee80211_is_nullfunc(fc) &&
e8f4fb7c 2136 ieee80211_is_data(fc) && rx->key))
76ee65bf 2137 return -EACCES;
bef5d1c7
JB
2138
2139 return 0;
2140}
2141
1df332e8 2142static int ieee80211_drop_unencrypted_mgmt(struct ieee80211_rx_data *rx)
bef5d1c7
JB
2143{
2144 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
e3efca0a 2145 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(rx->skb);
bef5d1c7 2146 __le16 fc = hdr->frame_control;
bef5d1c7 2147
e3efca0a
JM
2148 /*
2149 * Pass through unencrypted frames if the hardware has
2150 * decrypted them already.
2151 */
2152 if (status->flag & RX_FLAG_DECRYPTED)
2153 return 0;
bef5d1c7 2154
c2c98fde 2155 if (rx->sta && test_sta_flag(rx->sta, WLAN_STA_MFP)) {
d211e90e
JM
2156 if (unlikely(!ieee80211_has_protected(fc) &&
2157 ieee80211_is_unicast_robust_mgmt_frame(rx->skb) &&
cf4e594e 2158 rx->key)) {
6ff57cf8
JB
2159 if (ieee80211_is_deauth(fc) ||
2160 ieee80211_is_disassoc(fc))
2161 cfg80211_rx_unprot_mlme_mgmt(rx->sdata->dev,
2162 rx->skb->data,
2163 rx->skb->len);
f2ca3ea4 2164 return -EACCES;
cf4e594e 2165 }
f2ca3ea4 2166 /* BIP does not use Protected field, so need to check MMIE */
f64f9e71 2167 if (unlikely(ieee80211_is_multicast_robust_mgmt_frame(rx->skb) &&
cf4e594e 2168 ieee80211_get_mmie_keyidx(rx->skb) < 0)) {
6ff57cf8
JB
2169 if (ieee80211_is_deauth(fc) ||
2170 ieee80211_is_disassoc(fc))
2171 cfg80211_rx_unprot_mlme_mgmt(rx->sdata->dev,
2172 rx->skb->data,
2173 rx->skb->len);
f2ca3ea4 2174 return -EACCES;
cf4e594e 2175 }
f2ca3ea4
JM
2176 /*
2177 * When using MFP, Action frames are not allowed prior to
2178 * having configured keys.
2179 */
2180 if (unlikely(ieee80211_is_action(fc) && !rx->key &&
d8ca16db 2181 ieee80211_is_robust_mgmt_frame(rx->skb)))
f2ca3ea4
JM
2182 return -EACCES;
2183 }
b3fc9c6c 2184
76ee65bf 2185 return 0;
571ecf67
JB
2186}
2187
76ee65bf 2188static int
4114fa21 2189__ieee80211_data_to_8023(struct ieee80211_rx_data *rx, bool *port_control)
571ecf67 2190{
eb9fb5b8 2191 struct ieee80211_sub_if_data *sdata = rx->sdata;
f14543ee 2192 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
fbb327c5
FF
2193 bool check_port_control = false;
2194 struct ethhdr *ehdr;
2195 int ret;
f14543ee 2196
4114fa21 2197 *port_control = false;
9bc383de
JB
2198 if (ieee80211_has_a4(hdr->frame_control) &&
2199 sdata->vif.type == NL80211_IFTYPE_AP_VLAN && !sdata->u.vlan.sta)
f14543ee 2200 return -1;
9bc383de 2201
fbb327c5
FF
2202 if (sdata->vif.type == NL80211_IFTYPE_STATION &&
2203 !!sdata->u.mgd.use_4addr != !!ieee80211_has_a4(hdr->frame_control)) {
2204
2205 if (!sdata->u.mgd.use_4addr)
2206 return -1;
2207 else
2208 check_port_control = true;
2209 }
2210
9bc383de 2211 if (is_multicast_ether_addr(hdr->addr1) &&
fbb327c5 2212 sdata->vif.type == NL80211_IFTYPE_AP_VLAN && sdata->u.vlan.sta)
f14543ee 2213 return -1;
571ecf67 2214
fbb327c5 2215 ret = ieee80211_data_to_8023(rx->skb, sdata->vif.addr, sdata->vif.type);
4114fa21 2216 if (ret < 0)
fbb327c5
FF
2217 return ret;
2218
2219 ehdr = (struct ethhdr *) rx->skb->data;
4114fa21
FF
2220 if (ehdr->h_proto == rx->sdata->control_port_protocol)
2221 *port_control = true;
2222 else if (check_port_control)
fbb327c5
FF
2223 return -1;
2224
2225 return 0;
76ee65bf 2226}
571ecf67 2227
ce3edf6d
JB
2228/*
2229 * requires that rx->skb is a frame with ethernet header
2230 */
358c8d9d 2231static bool ieee80211_frame_allowed(struct ieee80211_rx_data *rx, __le16 fc)
ce3edf6d 2232{
c97c23e3 2233 static const u8 pae_group_addr[ETH_ALEN] __aligned(2)
ce3edf6d
JB
2234 = { 0x01, 0x80, 0xC2, 0x00, 0x00, 0x03 };
2235 struct ethhdr *ehdr = (struct ethhdr *) rx->skb->data;
2236
2237 /*
2238 * Allow EAPOL frames to us/the PAE group address regardless
2239 * of whether the frame was encrypted or not.
2240 */
a621fa4d 2241 if (ehdr->h_proto == rx->sdata->control_port_protocol &&
3bc7945e
JP
2242 (ether_addr_equal(ehdr->h_dest, rx->sdata->vif.addr) ||
2243 ether_addr_equal(ehdr->h_dest, pae_group_addr)))
ce3edf6d
JB
2244 return true;
2245
2246 if (ieee80211_802_1x_port_control(rx) ||
358c8d9d 2247 ieee80211_drop_unencrypted(rx, fc))
ce3edf6d
JB
2248 return false;
2249
2250 return true;
2251}
2252
2253/*
2254 * requires that rx->skb is a frame with ethernet header
2255 */
76ee65bf 2256static void
5cf121c3 2257ieee80211_deliver_skb(struct ieee80211_rx_data *rx)
76ee65bf 2258{
eb9fb5b8
JB
2259 struct ieee80211_sub_if_data *sdata = rx->sdata;
2260 struct net_device *dev = sdata->dev;
76ee65bf 2261 struct sk_buff *skb, *xmit_skb;
ce3edf6d
JB
2262 struct ethhdr *ehdr = (struct ethhdr *) rx->skb->data;
2263 struct sta_info *dsta;
571ecf67 2264
76ee65bf
RR
2265 skb = rx->skb;
2266 xmit_skb = NULL;
571ecf67 2267
5a490510
JB
2268 ieee80211_rx_stats(dev, skb->len);
2269
de8f18d3
JB
2270 if (rx->sta) {
2271 /* The seqno index has the same property as needed
2272 * for the rx_msdu field, i.e. it is IEEE80211_NUM_TIDS
2273 * for non-QoS-data frames. Here we know it's a data
2274 * frame, so count MSDUs.
2275 */
0f9c5a61 2276 u64_stats_update_begin(&rx->sta->rx_stats.syncp);
de8f18d3 2277 rx->sta->rx_stats.msdu[rx->seqno_idx]++;
0f9c5a61 2278 u64_stats_update_end(&rx->sta->rx_stats.syncp);
de8f18d3
JB
2279 }
2280
05c914fe
JB
2281 if ((sdata->vif.type == NL80211_IFTYPE_AP ||
2282 sdata->vif.type == NL80211_IFTYPE_AP_VLAN) &&
213cd118 2283 !(sdata->flags & IEEE80211_SDATA_DONT_BRIDGE_PACKETS) &&
9bc383de 2284 (sdata->vif.type != NL80211_IFTYPE_AP_VLAN || !sdata->u.vlan.sta)) {
72f15d53
MB
2285 if (is_multicast_ether_addr(ehdr->h_dest) &&
2286 ieee80211_vif_get_num_mcast_if(sdata) != 0) {
ce3edf6d
JB
2287 /*
2288 * send multicast frames both to higher layers in
2289 * local net stack and back to the wireless medium
2290 */
76ee65bf 2291 xmit_skb = skb_copy(skb, GFP_ATOMIC);
e87cc472 2292 if (!xmit_skb)
bdcbd8e0 2293 net_info_ratelimited("%s: failed to clone multicast frame\n",
e87cc472 2294 dev->name);
72f15d53 2295 } else if (!is_multicast_ether_addr(ehdr->h_dest)) {
abe60632
JB
2296 dsta = sta_info_get(sdata, skb->data);
2297 if (dsta) {
ce3edf6d
JB
2298 /*
2299 * The destination station is associated to
2300 * this AP (in this VLAN), so send the frame
2301 * directly to it and do not pass it to local
2302 * net stack.
571ecf67 2303 */
76ee65bf 2304 xmit_skb = skb;
571ecf67
JB
2305 skb = NULL;
2306 }
571ecf67
JB
2307 }
2308 }
2309
59d9cb07 2310#ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
9e890a1f
JB
2311 if (skb) {
2312 /* 'align' will only take the values 0 or 2 here since all
2313 * frames are required to be aligned to 2-byte boundaries
2314 * when being passed to mac80211; the code here works just
2315 * as well if that isn't true, but mac80211 assumes it can
2316 * access fields as 2-byte aligned (e.g. for ether_addr_equal)
d1c3a37c 2317 */
9e890a1f
JB
2318 int align;
2319
2320 align = (unsigned long)(skb->data + sizeof(struct ethhdr)) & 3;
d1c3a37c
JB
2321 if (align) {
2322 if (WARN_ON(skb_headroom(skb) < 3)) {
2323 dev_kfree_skb(skb);
2324 skb = NULL;
2325 } else {
2326 u8 *data = skb->data;
8ce0b589
ZY
2327 size_t len = skb_headlen(skb);
2328 skb->data -= align;
2329 memmove(skb->data, data, len);
2330 skb_set_tail_pointer(skb, len);
d1c3a37c
JB
2331 }
2332 }
9e890a1f 2333 }
d1c3a37c
JB
2334#endif
2335
9e890a1f
JB
2336 if (skb) {
2337 /* deliver to local stack */
2338 skb->protocol = eth_type_trans(skb, dev);
2339 memset(skb->cb, 0, sizeof(skb->cb));
af9f9b22
JB
2340 if (rx->napi)
2341 napi_gro_receive(rx->napi, skb);
06d181a8
JB
2342 else
2343 netif_receive_skb(skb);
571ecf67
JB
2344 }
2345
76ee65bf 2346 if (xmit_skb) {
aef6c928
HS
2347 /*
2348 * Send to wireless media and increase priority by 256 to
2349 * keep the received priority instead of reclassifying
2350 * the frame (see cfg80211_classify8021d).
2351 */
2352 xmit_skb->priority += 256;
f831e909 2353 xmit_skb->protocol = htons(ETH_P_802_3);
ce3edf6d
JB
2354 skb_reset_network_header(xmit_skb);
2355 skb_reset_mac_header(xmit_skb);
76ee65bf 2356 dev_queue_xmit(xmit_skb);
571ecf67 2357 }
76ee65bf
RR
2358}
2359
49461622 2360static ieee80211_rx_result debug_noinline
5cf121c3 2361ieee80211_rx_h_amsdu(struct ieee80211_rx_data *rx)
fd4c7f2f 2362{
eb9fb5b8 2363 struct net_device *dev = rx->sdata->dev;
eaf85ca7 2364 struct sk_buff *skb = rx->skb;
358c8d9d
HH
2365 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
2366 __le16 fc = hdr->frame_control;
eaf85ca7 2367 struct sk_buff_head frame_list;
554891e6 2368 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(rx->skb);
7f6990c8 2369 struct ethhdr ethhdr;
e2b5227f 2370 const u8 *check_da = ethhdr.h_dest, *check_sa = ethhdr.h_source;
fd4c7f2f 2371
358c8d9d 2372 if (unlikely(!ieee80211_is_data(fc)))
9ae54c84 2373 return RX_CONTINUE;
fd4c7f2f 2374
358c8d9d 2375 if (unlikely(!ieee80211_is_data_present(fc)))
e4c26add 2376 return RX_DROP_MONITOR;
fd4c7f2f 2377
554891e6 2378 if (!(status->rx_flags & IEEE80211_RX_AMSDU))
9ae54c84 2379 return RX_CONTINUE;
fd4c7f2f 2380
ea720935
JB
2381 if (unlikely(ieee80211_has_a4(hdr->frame_control))) {
2382 switch (rx->sdata->vif.type) {
2383 case NL80211_IFTYPE_AP_VLAN:
2384 if (!rx->sdata->u.vlan.sta)
2385 return RX_DROP_UNUSABLE;
2386 break;
2387 case NL80211_IFTYPE_STATION:
2388 if (!rx->sdata->u.mgd.use_4addr)
2389 return RX_DROP_UNUSABLE;
2390 break;
2391 default:
2392 return RX_DROP_UNUSABLE;
2393 }
e2b5227f
JB
2394 check_da = NULL;
2395 check_sa = NULL;
2396 } else switch (rx->sdata->vif.type) {
2397 case NL80211_IFTYPE_AP:
2398 case NL80211_IFTYPE_AP_VLAN:
2399 check_da = NULL;
2400 break;
2401 case NL80211_IFTYPE_STATION:
2402 if (!rx->sta ||
2403 !test_sta_flag(rx->sta, WLAN_STA_TDLS_PEER))
2404 check_sa = NULL;
2405 break;
2406 case NL80211_IFTYPE_MESH_POINT:
2407 check_sa = NULL;
2408 break;
2409 default:
2410 break;
ea720935 2411 }
fd4c7f2f 2412
ea720935 2413 if (is_multicast_ether_addr(hdr->addr1))
e4c26add 2414 return RX_DROP_UNUSABLE;
fd4c7f2f 2415
eaf85ca7
ZY
2416 skb->dev = dev;
2417 __skb_queue_head_init(&frame_list);
fd4c7f2f 2418
7f6990c8
JB
2419 if (ieee80211_data_to_8023_exthdr(skb, &ethhdr,
2420 rx->sdata->vif.addr,
2421 rx->sdata->vif.type))
2422 return RX_DROP_UNUSABLE;
2423
eaf85ca7
ZY
2424 ieee80211_amsdu_to_8023s(skb, &frame_list, dev->dev_addr,
2425 rx->sdata->vif.type,
8b935ee2 2426 rx->local->hw.extra_tx_headroom,
e2b5227f 2427 check_da, check_sa);
fd4c7f2f 2428
eaf85ca7
ZY
2429 while (!skb_queue_empty(&frame_list)) {
2430 rx->skb = __skb_dequeue(&frame_list);
fd4c7f2f 2431
358c8d9d 2432 if (!ieee80211_frame_allowed(rx, fc)) {
eaf85ca7 2433 dev_kfree_skb(rx->skb);
ce3edf6d
JB
2434 continue;
2435 }
fd4c7f2f
RR
2436
2437 ieee80211_deliver_skb(rx);
2438 }
2439
9ae54c84 2440 return RX_QUEUED;
fd4c7f2f
RR
2441}
2442
bf94e17b 2443#ifdef CONFIG_MAC80211_MESH
b0dee578 2444static ieee80211_rx_result
e32f85f7
LCC
2445ieee80211_rx_h_mesh_fwding(struct ieee80211_rx_data *rx)
2446{
30789eb6
TP
2447 struct ieee80211_hdr *fwd_hdr, *hdr;
2448 struct ieee80211_tx_info *info;
e32f85f7 2449 struct ieee80211s_hdr *mesh_hdr;
e32f85f7 2450 struct sk_buff *skb = rx->skb, *fwd_skb;
3b8d81e0 2451 struct ieee80211_local *local = rx->local;
eb9fb5b8 2452 struct ieee80211_sub_if_data *sdata = rx->sdata;
30789eb6 2453 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
cf440128 2454 u16 ac, q, hdrlen;
e32f85f7
LCC
2455
2456 hdr = (struct ieee80211_hdr *) skb->data;
2457 hdrlen = ieee80211_hdrlen(hdr->frame_control);
9b395bc3
JB
2458
2459 /* make sure fixed part of mesh header is there, also checks skb len */
2460 if (!pskb_may_pull(rx->skb, hdrlen + 6))
2461 return RX_DROP_MONITOR;
2462
2463 mesh_hdr = (struct ieee80211s_hdr *) (skb->data + hdrlen);
2464
2465 /* make sure full mesh header is there, also checks skb len */
2466 if (!pskb_may_pull(rx->skb,
2467 hdrlen + ieee80211_get_mesh_hdrlen(mesh_hdr)))
2468 return RX_DROP_MONITOR;
2469
2470 /* reload pointers */
2471 hdr = (struct ieee80211_hdr *) skb->data;
e32f85f7
LCC
2472 mesh_hdr = (struct ieee80211s_hdr *) (skb->data + hdrlen);
2473
d0c22119
BC
2474 if (ieee80211_drop_unencrypted(rx, hdr->frame_control))
2475 return RX_DROP_MONITOR;
2476
2157fdd6
TP
2477 /* frame is in RMC, don't forward */
2478 if (ieee80211_is_data(hdr->frame_control) &&
2479 is_multicast_ether_addr(hdr->addr1) &&
bf7cd94d 2480 mesh_rmc_check(rx->sdata, hdr->addr3, mesh_hdr))
2157fdd6
TP
2481 return RX_DROP_MONITOR;
2482
5c90067c 2483 if (!ieee80211_is_data(hdr->frame_control))
e32f85f7
LCC
2484 return RX_CONTINUE;
2485
2486 if (!mesh_hdr->ttl)
e32f85f7
LCC
2487 return RX_DROP_MONITOR;
2488
43b7b314 2489 if (mesh_hdr->flags & MESH_FLAGS_AE) {
79617dee 2490 struct mesh_path *mppath;
43b7b314
JC
2491 char *proxied_addr;
2492 char *mpp_addr;
2493
2494 if (is_multicast_ether_addr(hdr->addr1)) {
2495 mpp_addr = hdr->addr3;
2496 proxied_addr = mesh_hdr->eaddr1;
5667c86a
RM
2497 } else if ((mesh_hdr->flags & MESH_FLAGS_AE) ==
2498 MESH_FLAGS_AE_A5_A6) {
9b395bc3 2499 /* has_a4 already checked in ieee80211_rx_mesh_check */
43b7b314
JC
2500 mpp_addr = hdr->addr4;
2501 proxied_addr = mesh_hdr->eaddr2;
9b395bc3
JB
2502 } else {
2503 return RX_DROP_MONITOR;
43b7b314 2504 }
79617dee 2505
79617dee 2506 rcu_read_lock();
bf7cd94d 2507 mppath = mpp_path_lookup(sdata, proxied_addr);
79617dee 2508 if (!mppath) {
bf7cd94d 2509 mpp_path_add(sdata, proxied_addr, mpp_addr);
79617dee
Y
2510 } else {
2511 spin_lock_bh(&mppath->state_lock);
b203ca39 2512 if (!ether_addr_equal(mppath->mpp, mpp_addr))
43b7b314 2513 memcpy(mppath->mpp, mpp_addr, ETH_ALEN);
ab1c7906 2514 mppath->exp_time = jiffies;
79617dee
Y
2515 spin_unlock_bh(&mppath->state_lock);
2516 }
2517 rcu_read_unlock();
2518 }
2519
3c5772a5
JC
2520 /* Frame has reached destination. Don't forward */
2521 if (!is_multicast_ether_addr(hdr->addr1) &&
b203ca39 2522 ether_addr_equal(sdata->vif.addr, hdr->addr3))
e32f85f7
LCC
2523 return RX_CONTINUE;
2524
cf440128
MK
2525 ac = ieee80211_select_queue_80211(sdata, skb, hdr);
2526 q = sdata->vif.hw_queue[ac];
d3c1597b 2527 if (ieee80211_queue_stopped(&local->hw, q)) {
30789eb6 2528 IEEE80211_IFSTA_MESH_CTR_INC(ifmsh, dropped_frames_congestion);
d3c1597b
TP
2529 return RX_DROP_MONITOR;
2530 }
2531 skb_set_queue_mapping(skb, q);
e32f85f7 2532
30789eb6
TP
2533 if (!--mesh_hdr->ttl) {
2534 IEEE80211_IFSTA_MESH_CTR_INC(ifmsh, dropped_frames_ttl);
2ac64cd1 2535 goto out;
30789eb6
TP
2536 }
2537
d665508b
CYY
2538 if (!ifmsh->mshcfg.dot11MeshForwarding)
2539 goto out;
2540
c38c39bf
CI
2541 fwd_skb = skb_copy_expand(skb, local->tx_headroom +
2542 sdata->encrypt_headroom, 0, GFP_ATOMIC);
30789eb6 2543 if (!fwd_skb) {
bdcbd8e0 2544 net_info_ratelimited("%s: failed to clone mesh frame\n",
e87cc472 2545 sdata->name);
30789eb6
TP
2546 goto out;
2547 }
2548
2549 fwd_hdr = (struct ieee80211_hdr *) fwd_skb->data;
9d6d6f49 2550 fwd_hdr->frame_control &= ~cpu_to_le16(IEEE80211_FCTL_RETRY);
30789eb6
TP
2551 info = IEEE80211_SKB_CB(fwd_skb);
2552 memset(info, 0, sizeof(*info));
2553 info->flags |= IEEE80211_TX_INTFL_NEED_TXPROCESSING;
2554 info->control.vif = &rx->sdata->vif;
2555 info->control.jiffies = jiffies;
2556 if (is_multicast_ether_addr(fwd_hdr->addr1)) {
2557 IEEE80211_IFSTA_MESH_CTR_INC(ifmsh, fwded_mcast);
2558 memcpy(fwd_hdr->addr2, sdata->vif.addr, ETH_ALEN);
3f52b7e3
MP
2559 /* update power mode indication when forwarding */
2560 ieee80211_mps_set_frame_flags(sdata, NULL, fwd_hdr);
bf7cd94d 2561 } else if (!mesh_nexthop_lookup(sdata, fwd_skb)) {
3f52b7e3 2562 /* mesh power mode flags updated in mesh_nexthop_lookup */
30789eb6
TP
2563 IEEE80211_IFSTA_MESH_CTR_INC(ifmsh, fwded_unicast);
2564 } else {
2565 /* unable to resolve next hop */
bf7cd94d 2566 mesh_path_error_tx(sdata, ifmsh->mshcfg.element_ttl,
f63f8421
CYY
2567 fwd_hdr->addr3, 0,
2568 WLAN_REASON_MESH_PATH_NOFORWARD,
2569 fwd_hdr->addr2);
30789eb6 2570 IEEE80211_IFSTA_MESH_CTR_INC(ifmsh, dropped_frames_no_route);
74b8cc3d 2571 kfree_skb(fwd_skb);
30789eb6 2572 return RX_DROP_MONITOR;
e32f85f7
LCC
2573 }
2574
30789eb6
TP
2575 IEEE80211_IFSTA_MESH_CTR_INC(ifmsh, fwded_frames);
2576 ieee80211_add_pending_skb(local, fwd_skb);
b51aff05 2577 out:
df140465 2578 if (is_multicast_ether_addr(hdr->addr1))
e32f85f7 2579 return RX_CONTINUE;
df140465 2580 return RX_DROP_MONITOR;
e32f85f7 2581}
bf94e17b 2582#endif
e32f85f7 2583
49461622 2584static ieee80211_rx_result debug_noinline
5cf121c3 2585ieee80211_rx_h_data(struct ieee80211_rx_data *rx)
76ee65bf 2586{
eb9fb5b8 2587 struct ieee80211_sub_if_data *sdata = rx->sdata;
e15276a4 2588 struct ieee80211_local *local = rx->local;
eb9fb5b8 2589 struct net_device *dev = sdata->dev;
358c8d9d
HH
2590 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
2591 __le16 fc = hdr->frame_control;
4114fa21 2592 bool port_control;
ce3edf6d 2593 int err;
76ee65bf 2594
358c8d9d 2595 if (unlikely(!ieee80211_is_data(hdr->frame_control)))
9ae54c84 2596 return RX_CONTINUE;
76ee65bf 2597
358c8d9d 2598 if (unlikely(!ieee80211_is_data_present(hdr->frame_control)))
e4c26add 2599 return RX_DROP_MONITOR;
76ee65bf 2600
f14543ee 2601 /*
e7f4a940
JB
2602 * Send unexpected-4addr-frame event to hostapd. For older versions,
2603 * also drop the frame to cooked monitor interfaces.
f14543ee
FF
2604 */
2605 if (ieee80211_has_a4(hdr->frame_control) &&
e7f4a940
JB
2606 sdata->vif.type == NL80211_IFTYPE_AP) {
2607 if (rx->sta &&
2608 !test_and_set_sta_flag(rx->sta, WLAN_STA_4ADDR_EVENT))
2609 cfg80211_rx_unexpected_4addr_frame(
2610 rx->sdata->dev, rx->sta->sta.addr, GFP_ATOMIC);
f14543ee 2611 return RX_DROP_MONITOR;
e7f4a940 2612 }
f14543ee 2613
4114fa21 2614 err = __ieee80211_data_to_8023(rx, &port_control);
76ee65bf 2615 if (unlikely(err))
e4c26add 2616 return RX_DROP_UNUSABLE;
76ee65bf 2617
358c8d9d 2618 if (!ieee80211_frame_allowed(rx, fc))
e4c26add 2619 return RX_DROP_MONITOR;
ce3edf6d 2620
8a4d32f3
AN
2621 /* directly handle TDLS channel switch requests/responses */
2622 if (unlikely(((struct ethhdr *)rx->skb->data)->h_proto ==
2623 cpu_to_be16(ETH_P_TDLS))) {
2624 struct ieee80211_tdls_data *tf = (void *)rx->skb->data;
2625
2626 if (pskb_may_pull(rx->skb,
2627 offsetof(struct ieee80211_tdls_data, u)) &&
2628 tf->payload_type == WLAN_TDLS_SNAP_RFTYPE &&
2629 tf->category == WLAN_CATEGORY_TDLS &&
2630 (tf->action_code == WLAN_TDLS_CHANNEL_SWITCH_REQUEST ||
2631 tf->action_code == WLAN_TDLS_CHANNEL_SWITCH_RESPONSE)) {
c8ff71e6
AN
2632 skb_queue_tail(&local->skb_queue_tdls_chsw, rx->skb);
2633 schedule_work(&local->tdls_chsw_work);
8a4d32f3 2634 if (rx->sta)
e5a9f8d0 2635 rx->sta->rx_stats.packets++;
8a4d32f3
AN
2636
2637 return RX_QUEUED;
2638 }
2639 }
2640
4114fa21
FF
2641 if (rx->sdata->vif.type == NL80211_IFTYPE_AP_VLAN &&
2642 unlikely(port_control) && sdata->bss) {
2643 sdata = container_of(sdata->bss, struct ieee80211_sub_if_data,
2644 u.ap);
2645 dev = sdata->dev;
2646 rx->sdata = sdata;
2647 }
2648
76ee65bf
RR
2649 rx->skb->dev = dev;
2650
602fae42
JB
2651 if (!ieee80211_hw_check(&local->hw, SUPPORTS_DYNAMIC_PS) &&
2652 local->ps_sdata && local->hw.conf.dynamic_ps_timeout > 0 &&
8c99f691
RM
2653 !is_multicast_ether_addr(
2654 ((struct ethhdr *)rx->skb->data)->h_dest) &&
2655 (!local->scanning &&
602fae42
JB
2656 !test_bit(SDATA_STATE_OFFCHANNEL, &sdata->state)))
2657 mod_timer(&local->dynamic_ps_timer, jiffies +
2658 msecs_to_jiffies(local->hw.conf.dynamic_ps_timeout));
e15276a4 2659
76ee65bf 2660 ieee80211_deliver_skb(rx);
571ecf67 2661
9ae54c84 2662 return RX_QUEUED;
571ecf67
JB
2663}
2664
49461622 2665static ieee80211_rx_result debug_noinline
f9e124fb 2666ieee80211_rx_h_ctrl(struct ieee80211_rx_data *rx, struct sk_buff_head *frames)
71364716 2667{
71364716 2668 struct sk_buff *skb = rx->skb;
a7767f95 2669 struct ieee80211_bar *bar = (struct ieee80211_bar *)skb->data;
71364716
RR
2670 struct tid_ampdu_rx *tid_agg_rx;
2671 u16 start_seq_num;
2672 u16 tid;
2673
a7767f95 2674 if (likely(!ieee80211_is_ctl(bar->frame_control)))
9ae54c84 2675 return RX_CONTINUE;
71364716 2676
a7767f95 2677 if (ieee80211_is_back_req(bar->frame_control)) {
8ae5977f
JB
2678 struct {
2679 __le16 control, start_seq_num;
2680 } __packed bar_data;
6382246e
EG
2681 struct ieee80211_event event = {
2682 .type = BAR_RX_EVENT,
2683 };
8ae5977f 2684
71364716 2685 if (!rx->sta)
a02ae758 2686 return RX_DROP_MONITOR;
8ae5977f
JB
2687
2688 if (skb_copy_bits(skb, offsetof(struct ieee80211_bar, control),
2689 &bar_data, sizeof(bar_data)))
2690 return RX_DROP_MONITOR;
2691
8ae5977f 2692 tid = le16_to_cpu(bar_data.control) >> 12;
a87f736d 2693
53f24974
JB
2694 if (!test_bit(tid, rx->sta->ampdu_mlme.agg_session_valid) &&
2695 !test_and_set_bit(tid, rx->sta->ampdu_mlme.unexpected_agg))
2696 ieee80211_send_delba(rx->sdata, rx->sta->sta.addr, tid,
2697 WLAN_BACK_RECIPIENT,
2698 WLAN_REASON_QSTA_REQUIRE_SETUP);
2699
a87f736d
JB
2700 tid_agg_rx = rcu_dereference(rx->sta->ampdu_mlme.tid_rx[tid]);
2701 if (!tid_agg_rx)
a02ae758 2702 return RX_DROP_MONITOR;
71364716 2703
8ae5977f 2704 start_seq_num = le16_to_cpu(bar_data.start_seq_num) >> 4;
6382246e
EG
2705 event.u.ba.tid = tid;
2706 event.u.ba.ssn = start_seq_num;
2707 event.u.ba.sta = &rx->sta->sta;
71364716
RR
2708
2709 /* reset session timer */
20ad19d0
JB
2710 if (tid_agg_rx->timeout)
2711 mod_timer(&tid_agg_rx->session_timer,
2712 TU_TO_EXP_TIME(tid_agg_rx->timeout));
71364716 2713
dd318575 2714 spin_lock(&tid_agg_rx->reorder_lock);
a02ae758 2715 /* release stored frames up to start of BAR */
d3b2fb53 2716 ieee80211_release_reorder_frames(rx->sdata, tid_agg_rx,
f9e124fb 2717 start_seq_num, frames);
dd318575
JB
2718 spin_unlock(&tid_agg_rx->reorder_lock);
2719
6382246e
EG
2720 drv_event_callback(rx->local, rx->sdata, &event);
2721
a02ae758
JB
2722 kfree_skb(skb);
2723 return RX_QUEUED;
71364716
RR
2724 }
2725
08daecae
JB
2726 /*
2727 * After this point, we only want management frames,
2728 * so we can drop all remaining control frames to
2729 * cooked monitor interfaces.
2730 */
2731 return RX_DROP_MONITOR;
71364716
RR
2732}
2733
f4f727a6
JM
2734static void ieee80211_process_sa_query_req(struct ieee80211_sub_if_data *sdata,
2735 struct ieee80211_mgmt *mgmt,
2736 size_t len)
fea14732
JM
2737{
2738 struct ieee80211_local *local = sdata->local;
2739 struct sk_buff *skb;
2740 struct ieee80211_mgmt *resp;
2741
b203ca39 2742 if (!ether_addr_equal(mgmt->da, sdata->vif.addr)) {
fea14732
JM
2743 /* Not to own unicast address */
2744 return;
2745 }
2746
b203ca39
JP
2747 if (!ether_addr_equal(mgmt->sa, sdata->u.mgd.bssid) ||
2748 !ether_addr_equal(mgmt->bssid, sdata->u.mgd.bssid)) {
77fdaa12 2749 /* Not from the current AP or not associated yet. */
fea14732
JM
2750 return;
2751 }
2752
2753 if (len < 24 + 1 + sizeof(resp->u.action.u.sa_query)) {
2754 /* Too short SA Query request frame */
2755 return;
2756 }
2757
2758 skb = dev_alloc_skb(sizeof(*resp) + local->hw.extra_tx_headroom);
2759 if (skb == NULL)
2760 return;
2761
2762 skb_reserve(skb, local->hw.extra_tx_headroom);
b080db58 2763 resp = skb_put_zero(skb, 24);
fea14732 2764 memcpy(resp->da, mgmt->sa, ETH_ALEN);
47846c9b 2765 memcpy(resp->sa, sdata->vif.addr, ETH_ALEN);
46900298 2766 memcpy(resp->bssid, sdata->u.mgd.bssid, ETH_ALEN);
fea14732
JM
2767 resp->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
2768 IEEE80211_STYPE_ACTION);
2769 skb_put(skb, 1 + sizeof(resp->u.action.u.sa_query));
2770 resp->u.action.category = WLAN_CATEGORY_SA_QUERY;
2771 resp->u.action.u.sa_query.action = WLAN_ACTION_SA_QUERY_RESPONSE;
2772 memcpy(resp->u.action.u.sa_query.trans_id,
2773 mgmt->u.action.u.sa_query.trans_id,
2774 WLAN_SA_QUERY_TR_ID_LEN);
2775
62ae67be 2776 ieee80211_tx_skb(sdata, skb);
fea14732
JM
2777}
2778
2e161f78
JB
2779static ieee80211_rx_result debug_noinline
2780ieee80211_rx_h_mgmt_check(struct ieee80211_rx_data *rx)
2781{
2782 struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *) rx->skb->data;
554891e6 2783 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(rx->skb);
2e161f78
JB
2784
2785 /*
2786 * From here on, look only at management frames.
2787 * Data and control frames are already handled,
2788 * and unknown (reserved) frames are useless.
2789 */
2790 if (rx->skb->len < 24)
2791 return RX_DROP_MONITOR;
2792
2793 if (!ieee80211_is_mgmt(mgmt->frame_control))
2794 return RX_DROP_MONITOR;
2795
ee971924
JB
2796 if (rx->sdata->vif.type == NL80211_IFTYPE_AP &&
2797 ieee80211_is_beacon(mgmt->frame_control) &&
2798 !(rx->flags & IEEE80211_RX_BEACON_REPORTED)) {
804483e9
JB
2799 int sig = 0;
2800
30686bf7 2801 if (ieee80211_hw_check(&rx->local->hw, SIGNAL_DBM))
804483e9
JB
2802 sig = status->signal;
2803
ee971924
JB
2804 cfg80211_report_obss_beacon(rx->local->hw.wiphy,
2805 rx->skb->data, rx->skb->len,
37c73b5f 2806 status->freq, sig);
ee971924
JB
2807 rx->flags |= IEEE80211_RX_BEACON_REPORTED;
2808 }
2809
2e161f78
JB
2810 if (ieee80211_drop_unencrypted_mgmt(rx))
2811 return RX_DROP_UNUSABLE;
2812
2813 return RX_CONTINUE;
2814}
2815
de1ede7a
JB
2816static ieee80211_rx_result debug_noinline
2817ieee80211_rx_h_action(struct ieee80211_rx_data *rx)
2818{
2819 struct ieee80211_local *local = rx->local;
eb9fb5b8 2820 struct ieee80211_sub_if_data *sdata = rx->sdata;
de1ede7a 2821 struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *) rx->skb->data;
554891e6 2822 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(rx->skb);
de1ede7a
JB
2823 int len = rx->skb->len;
2824
2825 if (!ieee80211_is_action(mgmt->frame_control))
2826 return RX_CONTINUE;
2827
026331c4
JM
2828 /* drop too small frames */
2829 if (len < IEEE80211_MIN_ACTION_SIZE)
84040805 2830 return RX_DROP_UNUSABLE;
de1ede7a 2831
815b8092 2832 if (!rx->sta && mgmt->u.action.category != WLAN_CATEGORY_PUBLIC &&
cd7760e6
SW
2833 mgmt->u.action.category != WLAN_CATEGORY_SELF_PROTECTED &&
2834 mgmt->u.action.category != WLAN_CATEGORY_SPECTRUM_MGMT)
84040805 2835 return RX_DROP_UNUSABLE;
de1ede7a 2836
de1ede7a 2837 switch (mgmt->u.action.category) {
1d8d3dec
JB
2838 case WLAN_CATEGORY_HT:
2839 /* reject HT action frames from stations not supporting HT */
2840 if (!rx->sta->sta.ht_cap.ht_supported)
2841 goto invalid;
2842
2843 if (sdata->vif.type != NL80211_IFTYPE_STATION &&
2844 sdata->vif.type != NL80211_IFTYPE_MESH_POINT &&
2845 sdata->vif.type != NL80211_IFTYPE_AP_VLAN &&
2846 sdata->vif.type != NL80211_IFTYPE_AP &&
2847 sdata->vif.type != NL80211_IFTYPE_ADHOC)
2848 break;
2849
ec61cd63 2850 /* verify action & smps_control/chanwidth are present */
1d8d3dec
JB
2851 if (len < IEEE80211_MIN_ACTION_SIZE + 2)
2852 goto invalid;
2853
2854 switch (mgmt->u.action.u.ht_smps.action) {
2855 case WLAN_HT_ACTION_SMPS: {
2856 struct ieee80211_supported_band *sband;
af0ed69b 2857 enum ieee80211_smps_mode smps_mode;
1d8d3dec
JB
2858
2859 /* convert to HT capability */
2860 switch (mgmt->u.action.u.ht_smps.smps_control) {
2861 case WLAN_HT_SMPS_CONTROL_DISABLED:
af0ed69b 2862 smps_mode = IEEE80211_SMPS_OFF;
1d8d3dec
JB
2863 break;
2864 case WLAN_HT_SMPS_CONTROL_STATIC:
af0ed69b 2865 smps_mode = IEEE80211_SMPS_STATIC;
1d8d3dec
JB
2866 break;
2867 case WLAN_HT_SMPS_CONTROL_DYNAMIC:
af0ed69b 2868 smps_mode = IEEE80211_SMPS_DYNAMIC;
1d8d3dec
JB
2869 break;
2870 default:
2871 goto invalid;
2872 }
1d8d3dec
JB
2873
2874 /* if no change do nothing */
af0ed69b 2875 if (rx->sta->sta.smps_mode == smps_mode)
1d8d3dec 2876 goto handled;
af0ed69b 2877 rx->sta->sta.smps_mode = smps_mode;
1d8d3dec
JB
2878
2879 sband = rx->local->hw.wiphy->bands[status->band];
2880
64f68e5d
JB
2881 rate_control_rate_update(local, sband, rx->sta,
2882 IEEE80211_RC_SMPS_CHANGED);
1d8d3dec
JB
2883 goto handled;
2884 }
ec61cd63
JB
2885 case WLAN_HT_ACTION_NOTIFY_CHANWIDTH: {
2886 struct ieee80211_supported_band *sband;
2887 u8 chanwidth = mgmt->u.action.u.ht_notify_cw.chanwidth;
1c45c5ce 2888 enum ieee80211_sta_rx_bandwidth max_bw, new_bw;
ec61cd63
JB
2889
2890 /* If it doesn't support 40 MHz it can't change ... */
e1a0c6b3
JB
2891 if (!(rx->sta->sta.ht_cap.cap &
2892 IEEE80211_HT_CAP_SUP_WIDTH_20_40))
ec61cd63
JB
2893 goto handled;
2894
e1a0c6b3 2895 if (chanwidth == IEEE80211_HT_CHANWIDTH_20MHZ)
1c45c5ce 2896 max_bw = IEEE80211_STA_RX_BW_20;
e1a0c6b3 2897 else
1c45c5ce
EP
2898 max_bw = ieee80211_sta_cap_rx_bw(rx->sta);
2899
2900 /* set cur_max_bandwidth and recalc sta bw */
2901 rx->sta->cur_max_bandwidth = max_bw;
2902 new_bw = ieee80211_sta_cur_vht_bw(rx->sta);
ec61cd63 2903
e1a0c6b3 2904 if (rx->sta->sta.bandwidth == new_bw)
ec61cd63
JB
2905 goto handled;
2906
1c45c5ce 2907 rx->sta->sta.bandwidth = new_bw;
ec61cd63
JB
2908 sband = rx->local->hw.wiphy->bands[status->band];
2909
2910 rate_control_rate_update(local, sband, rx->sta,
2911 IEEE80211_RC_BW_CHANGED);
2912 goto handled;
2913 }
1d8d3dec
JB
2914 default:
2915 goto invalid;
2916 }
2917
0af83d3d 2918 break;
1b3a2e49
JB
2919 case WLAN_CATEGORY_PUBLIC:
2920 if (len < IEEE80211_MIN_ACTION_SIZE + 1)
2921 goto invalid;
2922 if (sdata->vif.type != NL80211_IFTYPE_STATION)
2923 break;
2924 if (!rx->sta)
2925 break;
2926 if (!ether_addr_equal(mgmt->bssid, sdata->u.mgd.bssid))
2927 break;
2928 if (mgmt->u.action.u.ext_chan_switch.action_code !=
2929 WLAN_PUB_ACTION_EXT_CHANSW_ANN)
2930 break;
2931 if (len < offsetof(struct ieee80211_mgmt,
2932 u.action.u.ext_chan_switch.variable))
2933 goto invalid;
2934 goto queue;
0af83d3d
JB
2935 case WLAN_CATEGORY_VHT:
2936 if (sdata->vif.type != NL80211_IFTYPE_STATION &&
2937 sdata->vif.type != NL80211_IFTYPE_MESH_POINT &&
2938 sdata->vif.type != NL80211_IFTYPE_AP_VLAN &&
2939 sdata->vif.type != NL80211_IFTYPE_AP &&
2940 sdata->vif.type != NL80211_IFTYPE_ADHOC)
2941 break;
2942
2943 /* verify action code is present */
2944 if (len < IEEE80211_MIN_ACTION_SIZE + 1)
2945 goto invalid;
2946
2947 switch (mgmt->u.action.u.vht_opmode_notif.action_code) {
2948 case WLAN_VHT_ACTION_OPMODE_NOTIF: {
0af83d3d
JB
2949 /* verify opmode is present */
2950 if (len < IEEE80211_MIN_ACTION_SIZE + 2)
2951 goto invalid;
d2941df8 2952 goto queue;
0af83d3d 2953 }
23a1f8d4
SS
2954 case WLAN_VHT_ACTION_GROUPID_MGMT: {
2955 if (len < IEEE80211_MIN_ACTION_SIZE + 25)
2956 goto invalid;
2957 goto queue;
2958 }
0af83d3d
JB
2959 default:
2960 break;
2961 }
1d8d3dec 2962 break;
de1ede7a 2963 case WLAN_CATEGORY_BACK:
8abd3f9b 2964 if (sdata->vif.type != NL80211_IFTYPE_STATION &&
ae2772b3 2965 sdata->vif.type != NL80211_IFTYPE_MESH_POINT &&
8abd3f9b 2966 sdata->vif.type != NL80211_IFTYPE_AP_VLAN &&
13c40c54
AS
2967 sdata->vif.type != NL80211_IFTYPE_AP &&
2968 sdata->vif.type != NL80211_IFTYPE_ADHOC)
84040805 2969 break;
8abd3f9b 2970
026331c4
JM
2971 /* verify action_code is present */
2972 if (len < IEEE80211_MIN_ACTION_SIZE + 1)
2973 break;
2974
de1ede7a
JB
2975 switch (mgmt->u.action.u.addba_req.action_code) {
2976 case WLAN_ACTION_ADDBA_REQ:
2977 if (len < (IEEE80211_MIN_ACTION_SIZE +
2978 sizeof(mgmt->u.action.u.addba_req)))
bed7ee6e
JB
2979 goto invalid;
2980 break;
de1ede7a
JB
2981 case WLAN_ACTION_ADDBA_RESP:
2982 if (len < (IEEE80211_MIN_ACTION_SIZE +
2983 sizeof(mgmt->u.action.u.addba_resp)))
bed7ee6e
JB
2984 goto invalid;
2985 break;
de1ede7a
JB
2986 case WLAN_ACTION_DELBA:
2987 if (len < (IEEE80211_MIN_ACTION_SIZE +
2988 sizeof(mgmt->u.action.u.delba)))
bed7ee6e
JB
2989 goto invalid;
2990 break;
2991 default:
2992 goto invalid;
de1ede7a 2993 }
bed7ee6e 2994
8b58ff83 2995 goto queue;
39192c0b 2996 case WLAN_CATEGORY_SPECTRUM_MGMT:
026331c4
JM
2997 /* verify action_code is present */
2998 if (len < IEEE80211_MIN_ACTION_SIZE + 1)
2999 break;
3000
39192c0b
JB
3001 switch (mgmt->u.action.u.measurement.action_code) {
3002 case WLAN_ACTION_SPCT_MSR_REQ:
57fbcce3 3003 if (status->band != NL80211_BAND_5GHZ)
cd7760e6
SW
3004 break;
3005
39192c0b
JB
3006 if (len < (IEEE80211_MIN_ACTION_SIZE +
3007 sizeof(mgmt->u.action.u.measurement)))
84040805 3008 break;
cd7760e6
SW
3009
3010 if (sdata->vif.type != NL80211_IFTYPE_STATION)
3011 break;
3012
39192c0b 3013 ieee80211_process_measurement_req(sdata, mgmt, len);
84040805 3014 goto handled;
cd7760e6
SW
3015 case WLAN_ACTION_SPCT_CHL_SWITCH: {
3016 u8 *bssid;
3017 if (len < (IEEE80211_MIN_ACTION_SIZE +
3018 sizeof(mgmt->u.action.u.chan_switch)))
84040805 3019 break;
cc32abd4 3020
cd7760e6 3021 if (sdata->vif.type != NL80211_IFTYPE_STATION &&
b8456a14
CYY
3022 sdata->vif.type != NL80211_IFTYPE_ADHOC &&
3023 sdata->vif.type != NL80211_IFTYPE_MESH_POINT)
cd7760e6
SW
3024 break;
3025
3026 if (sdata->vif.type == NL80211_IFTYPE_STATION)
3027 bssid = sdata->u.mgd.bssid;
3028 else if (sdata->vif.type == NL80211_IFTYPE_ADHOC)
3029 bssid = sdata->u.ibss.bssid;
b8456a14
CYY
3030 else if (sdata->vif.type == NL80211_IFTYPE_MESH_POINT)
3031 bssid = mgmt->sa;
cd7760e6
SW
3032 else
3033 break;
3034
3035 if (!ether_addr_equal(mgmt->bssid, bssid))
84040805 3036 break;
c481ec97 3037
8b58ff83 3038 goto queue;
cd7760e6 3039 }
39192c0b
JB
3040 }
3041 break;
fea14732
JM
3042 case WLAN_CATEGORY_SA_QUERY:
3043 if (len < (IEEE80211_MIN_ACTION_SIZE +
3044 sizeof(mgmt->u.action.u.sa_query)))
84040805
JB
3045 break;
3046
fea14732
JM
3047 switch (mgmt->u.action.u.sa_query.action) {
3048 case WLAN_ACTION_SA_QUERY_REQUEST:
3049 if (sdata->vif.type != NL80211_IFTYPE_STATION)
84040805 3050 break;
fea14732 3051 ieee80211_process_sa_query_req(sdata, mgmt, len);
84040805 3052 goto handled;
fea14732
JM
3053 }
3054 break;
8db09850 3055 case WLAN_CATEGORY_SELF_PROTECTED:
9b395bc3
JB
3056 if (len < (IEEE80211_MIN_ACTION_SIZE +
3057 sizeof(mgmt->u.action.u.self_prot.action_code)))
3058 break;
3059
8db09850
TP
3060 switch (mgmt->u.action.u.self_prot.action_code) {
3061 case WLAN_SP_MESH_PEERING_OPEN:
3062 case WLAN_SP_MESH_PEERING_CLOSE:
3063 case WLAN_SP_MESH_PEERING_CONFIRM:
3064 if (!ieee80211_vif_is_mesh(&sdata->vif))
3065 goto invalid;
a6dad6a2 3066 if (sdata->u.mesh.user_mpm)
8db09850
TP
3067 /* userspace handles this frame */
3068 break;
3069 goto queue;
3070 case WLAN_SP_MGK_INFORM:
3071 case WLAN_SP_MGK_ACK:
3072 if (!ieee80211_vif_is_mesh(&sdata->vif))
3073 goto invalid;
3074 break;
3075 }
3076 break;
d3aaec8a 3077 case WLAN_CATEGORY_MESH_ACTION:
9b395bc3
JB
3078 if (len < (IEEE80211_MIN_ACTION_SIZE +
3079 sizeof(mgmt->u.action.u.mesh_action.action_code)))
3080 break;
3081
77a121c3
JB
3082 if (!ieee80211_vif_is_mesh(&sdata->vif))
3083 break;
25d49e4d 3084 if (mesh_action_is_path_sel(mgmt) &&
1df332e8 3085 !mesh_path_sel_is_hwmp(sdata))
c7108a71
JC
3086 break;
3087 goto queue;
84040805 3088 }
026331c4 3089
2e161f78
JB
3090 return RX_CONTINUE;
3091
bed7ee6e 3092 invalid:
554891e6 3093 status->rx_flags |= IEEE80211_RX_MALFORMED_ACTION_FRM;
2e161f78
JB
3094 /* will return in the next handlers */
3095 return RX_CONTINUE;
3096
3097 handled:
3098 if (rx->sta)
e5a9f8d0 3099 rx->sta->rx_stats.packets++;
2e161f78
JB
3100 dev_kfree_skb(rx->skb);
3101 return RX_QUEUED;
3102
3103 queue:
2e161f78
JB
3104 skb_queue_tail(&sdata->skb_queue, rx->skb);
3105 ieee80211_queue_work(&local->hw, &sdata->work);
3106 if (rx->sta)
e5a9f8d0 3107 rx->sta->rx_stats.packets++;
2e161f78
JB
3108 return RX_QUEUED;
3109}
3110
3111static ieee80211_rx_result debug_noinline
3112ieee80211_rx_h_userspace_mgmt(struct ieee80211_rx_data *rx)
3113{
554891e6 3114 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(rx->skb);
804483e9 3115 int sig = 0;
2e161f78
JB
3116
3117 /* skip known-bad action frames and return them in the next handler */
554891e6 3118 if (status->rx_flags & IEEE80211_RX_MALFORMED_ACTION_FRM)
2e161f78 3119 return RX_CONTINUE;
d7907448 3120
026331c4
JM
3121 /*
3122 * Getting here means the kernel doesn't know how to handle
3123 * it, but maybe userspace does ... include returned frames
3124 * so userspace can register for those to know whether ones
3125 * it transmitted were processed or returned.
3126 */
026331c4 3127
30686bf7 3128 if (ieee80211_hw_check(&rx->local->hw, SIGNAL_DBM))
804483e9
JB
3129 sig = status->signal;
3130
71bbc994 3131 if (cfg80211_rx_mgmt(&rx->sdata->wdev, status->freq, sig,
970fdfa8 3132 rx->skb->data, rx->skb->len, 0)) {
2e161f78 3133 if (rx->sta)
e5a9f8d0 3134 rx->sta->rx_stats.packets++;
2e161f78
JB
3135 dev_kfree_skb(rx->skb);
3136 return RX_QUEUED;
3137 }
3138
2e161f78
JB
3139 return RX_CONTINUE;
3140}
3141
3142static ieee80211_rx_result debug_noinline
3143ieee80211_rx_h_action_return(struct ieee80211_rx_data *rx)
3144{
3145 struct ieee80211_local *local = rx->local;
3146 struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *) rx->skb->data;
3147 struct sk_buff *nskb;
3148 struct ieee80211_sub_if_data *sdata = rx->sdata;
554891e6 3149 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(rx->skb);
2e161f78
JB
3150
3151 if (!ieee80211_is_action(mgmt->frame_control))
3152 return RX_CONTINUE;
3153
3154 /*
3155 * For AP mode, hostapd is responsible for handling any action
3156 * frames that we didn't handle, including returning unknown
3157 * ones. For all other modes we will return them to the sender,
3158 * setting the 0x80 bit in the action category, as required by
4b5ebccc 3159 * 802.11-2012 9.24.4.
2e161f78
JB
3160 * Newer versions of hostapd shall also use the management frame
3161 * registration mechanisms, but older ones still use cooked
3162 * monitor interfaces so push all frames there.
3163 */
554891e6 3164 if (!(status->rx_flags & IEEE80211_RX_MALFORMED_ACTION_FRM) &&
2e161f78
JB
3165 (sdata->vif.type == NL80211_IFTYPE_AP ||
3166 sdata->vif.type == NL80211_IFTYPE_AP_VLAN))
3167 return RX_DROP_MONITOR;
026331c4 3168
4b5ebccc
JB
3169 if (is_multicast_ether_addr(mgmt->da))
3170 return RX_DROP_MONITOR;
3171
84040805
JB
3172 /* do not return rejected action frames */
3173 if (mgmt->u.action.category & 0x80)
3174 return RX_DROP_UNUSABLE;
3175
3176 nskb = skb_copy_expand(rx->skb, local->hw.extra_tx_headroom, 0,
3177 GFP_ATOMIC);
3178 if (nskb) {
292b4df6 3179 struct ieee80211_mgmt *nmgmt = (void *)nskb->data;
84040805 3180
292b4df6
JL
3181 nmgmt->u.action.category |= 0x80;
3182 memcpy(nmgmt->da, nmgmt->sa, ETH_ALEN);
3183 memcpy(nmgmt->sa, rx->sdata->vif.addr, ETH_ALEN);
84040805
JB
3184
3185 memset(nskb->cb, 0, sizeof(nskb->cb));
3186
07e5a5f5
JB
3187 if (rx->sdata->vif.type == NL80211_IFTYPE_P2P_DEVICE) {
3188 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(nskb);
3189
3190 info->flags = IEEE80211_TX_CTL_TX_OFFCHAN |
3191 IEEE80211_TX_INTFL_OFFCHAN_TX_OK |
3192 IEEE80211_TX_CTL_NO_CCK_RATE;
30686bf7 3193 if (ieee80211_hw_check(&local->hw, QUEUE_CONTROL))
07e5a5f5
JB
3194 info->hw_queue =
3195 local->hw.offchannel_tx_hw_queue;
3196 }
3197
3198 __ieee80211_tx_skb_tid_band(rx->sdata, nskb, 7,
3199 status->band);
de1ede7a 3200 }
39192c0b
JB
3201 dev_kfree_skb(rx->skb);
3202 return RX_QUEUED;
de1ede7a
JB
3203}
3204
49461622 3205static ieee80211_rx_result debug_noinline
5cf121c3 3206ieee80211_rx_h_mgmt(struct ieee80211_rx_data *rx)
571ecf67 3207{
eb9fb5b8 3208 struct ieee80211_sub_if_data *sdata = rx->sdata;
77a121c3
JB
3209 struct ieee80211_mgmt *mgmt = (void *)rx->skb->data;
3210 __le16 stype;
571ecf67 3211
77a121c3 3212 stype = mgmt->frame_control & cpu_to_le16(IEEE80211_FCTL_STYPE);
472dbc45 3213
77a121c3
JB
3214 if (!ieee80211_vif_is_mesh(&sdata->vif) &&
3215 sdata->vif.type != NL80211_IFTYPE_ADHOC &&
239281f8 3216 sdata->vif.type != NL80211_IFTYPE_OCB &&
77a121c3
JB
3217 sdata->vif.type != NL80211_IFTYPE_STATION)
3218 return RX_DROP_MONITOR;
472dbc45 3219
77a121c3 3220 switch (stype) {
66e67e41 3221 case cpu_to_le16(IEEE80211_STYPE_AUTH):
77a121c3
JB
3222 case cpu_to_le16(IEEE80211_STYPE_BEACON):
3223 case cpu_to_le16(IEEE80211_STYPE_PROBE_RESP):
3224 /* process for all: mesh, mlme, ibss */
3225 break;
66e67e41
JB
3226 case cpu_to_le16(IEEE80211_STYPE_ASSOC_RESP):
3227 case cpu_to_le16(IEEE80211_STYPE_REASSOC_RESP):
77a121c3
JB
3228 case cpu_to_le16(IEEE80211_STYPE_DEAUTH):
3229 case cpu_to_le16(IEEE80211_STYPE_DISASSOC):
2c31333a
CL
3230 if (is_multicast_ether_addr(mgmt->da) &&
3231 !is_broadcast_ether_addr(mgmt->da))
3232 return RX_DROP_MONITOR;
3233
77a121c3
JB
3234 /* process only for station */
3235 if (sdata->vif.type != NL80211_IFTYPE_STATION)
3236 return RX_DROP_MONITOR;
3237 break;
3238 case cpu_to_le16(IEEE80211_STYPE_PROBE_REQ):
9fb04b50
TP
3239 /* process only for ibss and mesh */
3240 if (sdata->vif.type != NL80211_IFTYPE_ADHOC &&
3241 sdata->vif.type != NL80211_IFTYPE_MESH_POINT)
77a121c3
JB
3242 return RX_DROP_MONITOR;
3243 break;
3244 default:
3245 return RX_DROP_MONITOR;
3246 }
f9d540ee 3247
77a121c3
JB
3248 /* queue up frame and kick off work to process it */
3249 skb_queue_tail(&sdata->skb_queue, rx->skb);
3250 ieee80211_queue_work(&rx->local->hw, &sdata->work);
8b58ff83 3251 if (rx->sta)
e5a9f8d0 3252 rx->sta->rx_stats.packets++;
46900298 3253
77a121c3 3254 return RX_QUEUED;
571ecf67
JB
3255}
3256
5f0b7de5
JB
3257static void ieee80211_rx_cooked_monitor(struct ieee80211_rx_data *rx,
3258 struct ieee80211_rate *rate)
3d30d949
MW
3259{
3260 struct ieee80211_sub_if_data *sdata;
3261 struct ieee80211_local *local = rx->local;
3d30d949
MW
3262 struct sk_buff *skb = rx->skb, *skb2;
3263 struct net_device *prev_dev = NULL;
eb9fb5b8 3264 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
293702a3 3265 int needed_headroom;
3d30d949 3266
554891e6
JB
3267 /*
3268 * If cooked monitor has been processed already, then
3269 * don't do it again. If not, set the flag.
3270 */
3271 if (rx->flags & IEEE80211_RX_CMNTR)
7c1e1831 3272 goto out_free_skb;
554891e6 3273 rx->flags |= IEEE80211_RX_CMNTR;
7c1e1831 3274
152c477a
JB
3275 /* If there are no cooked monitor interfaces, just free the SKB */
3276 if (!local->cooked_mntrs)
3277 goto out_free_skb;
3278
1f7bba79
JB
3279 /* vendor data is long removed here */
3280 status->flag &= ~RX_FLAG_RADIOTAP_VENDOR_DATA;
293702a3 3281 /* room for the radiotap header based on driver features */
1f7bba79 3282 needed_headroom = ieee80211_rx_radiotap_hdrlen(local, status, skb);
3d30d949 3283
293702a3
JB
3284 if (skb_headroom(skb) < needed_headroom &&
3285 pskb_expand_head(skb, needed_headroom, 0, GFP_ATOMIC))
3286 goto out_free_skb;
3d30d949 3287
293702a3 3288 /* prepend radiotap information */
973ef21a
FF
3289 ieee80211_add_rx_radiotap_header(local, skb, rate, needed_headroom,
3290 false);
3d30d949 3291
d57a544d 3292 skb_reset_mac_header(skb);
3d30d949
MW
3293 skb->ip_summed = CHECKSUM_UNNECESSARY;
3294 skb->pkt_type = PACKET_OTHERHOST;
3295 skb->protocol = htons(ETH_P_802_2);
3296
3297 list_for_each_entry_rcu(sdata, &local->interfaces, list) {
9607e6b6 3298 if (!ieee80211_sdata_running(sdata))
3d30d949
MW
3299 continue;
3300
05c914fe 3301 if (sdata->vif.type != NL80211_IFTYPE_MONITOR ||
d8212184 3302 !(sdata->u.mntr.flags & MONITOR_FLAG_COOK_FRAMES))
3d30d949
MW
3303 continue;
3304
3305 if (prev_dev) {
3306 skb2 = skb_clone(skb, GFP_ATOMIC);
3307 if (skb2) {
3308 skb2->dev = prev_dev;
5548a8a1 3309 netif_receive_skb(skb2);
3d30d949
MW
3310 }
3311 }
3312
3313 prev_dev = sdata->dev;
5a490510 3314 ieee80211_rx_stats(sdata->dev, skb->len);
3d30d949
MW
3315 }
3316
3317 if (prev_dev) {
3318 skb->dev = prev_dev;
5548a8a1 3319 netif_receive_skb(skb);
554891e6
JB
3320 return;
3321 }
3d30d949
MW
3322
3323 out_free_skb:
3324 dev_kfree_skb(skb);
3325}
3326
aa0c8636
CL
3327static void ieee80211_rx_handlers_result(struct ieee80211_rx_data *rx,
3328 ieee80211_rx_result res)
3329{
3330 switch (res) {
3331 case RX_DROP_MONITOR:
3332 I802_DEBUG_INC(rx->sdata->local->rx_handlers_drop);
3333 if (rx->sta)
e5a9f8d0 3334 rx->sta->rx_stats.dropped++;
aa0c8636
CL
3335 /* fall through */
3336 case RX_CONTINUE: {
3337 struct ieee80211_rate *rate = NULL;
3338 struct ieee80211_supported_band *sband;
3339 struct ieee80211_rx_status *status;
3340
3341 status = IEEE80211_SKB_RXCB((rx->skb));
3342
3343 sband = rx->local->hw.wiphy->bands[status->band];
da6a4352
JB
3344 if (!(status->encoding == RX_ENC_HT) &&
3345 !(status->encoding == RX_ENC_VHT))
aa0c8636
CL
3346 rate = &sband->bitrates[status->rate_idx];
3347
3348 ieee80211_rx_cooked_monitor(rx, rate);
3349 break;
3350 }
3351 case RX_DROP_UNUSABLE:
3352 I802_DEBUG_INC(rx->sdata->local->rx_handlers_drop);
3353 if (rx->sta)
e5a9f8d0 3354 rx->sta->rx_stats.dropped++;
aa0c8636
CL
3355 dev_kfree_skb(rx->skb);
3356 break;
3357 case RX_QUEUED:
3358 I802_DEBUG_INC(rx->sdata->local->rx_handlers_queued);
3359 break;
3360 }
3361}
571ecf67 3362
f9e124fb
CL
3363static void ieee80211_rx_handlers(struct ieee80211_rx_data *rx,
3364 struct sk_buff_head *frames)
58905290 3365{
58905290 3366 ieee80211_rx_result res = RX_DROP_MONITOR;
aa0c8636 3367 struct sk_buff *skb;
8944b79f 3368
e32f85f7
LCC
3369#define CALL_RXH(rxh) \
3370 do { \
3371 res = rxh(rx); \
3372 if (res != RX_CONTINUE) \
2569a826 3373 goto rxh_next; \
8ebaa5b0 3374 } while (0)
49461622 3375
45ceeee8
JB
3376 /* Lock here to avoid hitting all of the data used in the RX
3377 * path (e.g. key data, station data, ...) concurrently when
3378 * a frame is released from the reorder buffer due to timeout
3379 * from the timer, potentially concurrently with RX from the
3380 * driver.
3381 */
f9e124fb 3382 spin_lock_bh(&rx->local->rx_path_lock);
24a8fdad 3383
f9e124fb 3384 while ((skb = __skb_dequeue(frames))) {
2569a826
JB
3385 /*
3386 * all the other fields are valid across frames
3387 * that belong to an aMPDU since they are on the
3388 * same TID from the same station
3389 */
3390 rx->skb = skb;
3391
8ebaa5b0
JB
3392 CALL_RXH(ieee80211_rx_h_check_more_data);
3393 CALL_RXH(ieee80211_rx_h_uapsd_and_pspoll);
3394 CALL_RXH(ieee80211_rx_h_sta_process);
3395 CALL_RXH(ieee80211_rx_h_decrypt);
3396 CALL_RXH(ieee80211_rx_h_defragment);
3397 CALL_RXH(ieee80211_rx_h_michael_mic_verify);
2569a826 3398 /* must be after MMIC verify so header is counted in MPDU mic */
bf94e17b 3399#ifdef CONFIG_MAC80211_MESH
aa0c8636 3400 if (ieee80211_vif_is_mesh(&rx->sdata->vif))
2569a826 3401 CALL_RXH(ieee80211_rx_h_mesh_fwding);
bf94e17b 3402#endif
8ebaa5b0
JB
3403 CALL_RXH(ieee80211_rx_h_amsdu);
3404 CALL_RXH(ieee80211_rx_h_data);
f9e124fb
CL
3405
3406 /* special treatment -- needs the queue */
3407 res = ieee80211_rx_h_ctrl(rx, frames);
3408 if (res != RX_CONTINUE)
3409 goto rxh_next;
3410
8ebaa5b0
JB
3411 CALL_RXH(ieee80211_rx_h_mgmt_check);
3412 CALL_RXH(ieee80211_rx_h_action);
3413 CALL_RXH(ieee80211_rx_h_userspace_mgmt);
3414 CALL_RXH(ieee80211_rx_h_action_return);
3415 CALL_RXH(ieee80211_rx_h_mgmt);
49461622 3416
aa0c8636
CL
3417 rxh_next:
3418 ieee80211_rx_handlers_result(rx, res);
f9e124fb 3419
49461622 3420#undef CALL_RXH
aa0c8636 3421 }
24a8fdad 3422
f9e124fb 3423 spin_unlock_bh(&rx->local->rx_path_lock);
aa0c8636
CL
3424}
3425
4406c376 3426static void ieee80211_invoke_rx_handlers(struct ieee80211_rx_data *rx)
aa0c8636 3427{
f9e124fb 3428 struct sk_buff_head reorder_release;
aa0c8636
CL
3429 ieee80211_rx_result res = RX_DROP_MONITOR;
3430
f9e124fb
CL
3431 __skb_queue_head_init(&reorder_release);
3432
aa0c8636
CL
3433#define CALL_RXH(rxh) \
3434 do { \
3435 res = rxh(rx); \
3436 if (res != RX_CONTINUE) \
3437 goto rxh_next; \
8ebaa5b0 3438 } while (0)
aa0c8636 3439
8ebaa5b0
JB
3440 CALL_RXH(ieee80211_rx_h_check_dup);
3441 CALL_RXH(ieee80211_rx_h_check);
aa0c8636 3442
f9e124fb 3443 ieee80211_rx_reorder_ampdu(rx, &reorder_release);
aa0c8636 3444
f9e124fb 3445 ieee80211_rx_handlers(rx, &reorder_release);
aa0c8636 3446 return;
49461622 3447
2569a826 3448 rxh_next:
aa0c8636
CL
3449 ieee80211_rx_handlers_result(rx, res);
3450
3451#undef CALL_RXH
58905290
JB
3452}
3453
2bff8ebf 3454/*
dd318575
JB
3455 * This function makes calls into the RX path, therefore
3456 * it has to be invoked under RCU read lock.
2bff8ebf
CL
3457 */
3458void ieee80211_release_reorder_timeout(struct sta_info *sta, int tid)
3459{
f9e124fb 3460 struct sk_buff_head frames;
554891e6
JB
3461 struct ieee80211_rx_data rx = {
3462 .sta = sta,
3463 .sdata = sta->sdata,
3464 .local = sta->local,
9e26297a
JB
3465 /* This is OK -- must be QoS data frame */
3466 .security_idx = tid,
3467 .seqno_idx = tid,
af9f9b22 3468 .napi = NULL, /* must be NULL to not have races */
554891e6 3469 };
2c15a0cf
CL
3470 struct tid_ampdu_rx *tid_agg_rx;
3471
3472 tid_agg_rx = rcu_dereference(sta->ampdu_mlme.tid_rx[tid]);
3473 if (!tid_agg_rx)
3474 return;
2bff8ebf 3475
f9e124fb
CL
3476 __skb_queue_head_init(&frames);
3477
2c15a0cf 3478 spin_lock(&tid_agg_rx->reorder_lock);
f9e124fb 3479 ieee80211_sta_reorder_release(sta->sdata, tid_agg_rx, &frames);
2c15a0cf 3480 spin_unlock(&tid_agg_rx->reorder_lock);
2bff8ebf 3481
b497de63
EG
3482 if (!skb_queue_empty(&frames)) {
3483 struct ieee80211_event event = {
3484 .type = BA_FRAME_TIMEOUT,
3485 .u.ba.tid = tid,
3486 .u.ba.sta = &sta->sta,
3487 };
3488 drv_event_callback(rx.local, rx.sdata, &event);
3489 }
3490
f9e124fb 3491 ieee80211_rx_handlers(&rx, &frames);
2bff8ebf
CL
3492}
3493
06470f74
SS
3494void ieee80211_mark_rx_ba_filtered_frames(struct ieee80211_sta *pubsta, u8 tid,
3495 u16 ssn, u64 filtered,
3496 u16 received_mpdus)
3497{
3498 struct sta_info *sta;
3499 struct tid_ampdu_rx *tid_agg_rx;
3500 struct sk_buff_head frames;
3501 struct ieee80211_rx_data rx = {
3502 /* This is OK -- must be QoS data frame */
3503 .security_idx = tid,
3504 .seqno_idx = tid,
3505 };
3506 int i, diff;
3507
3508 if (WARN_ON(!pubsta || tid >= IEEE80211_NUM_TIDS))
3509 return;
3510
3511 __skb_queue_head_init(&frames);
3512
3513 sta = container_of(pubsta, struct sta_info, sta);
3514
3515 rx.sta = sta;
3516 rx.sdata = sta->sdata;
3517 rx.local = sta->local;
3518
3519 rcu_read_lock();
3520 tid_agg_rx = rcu_dereference(sta->ampdu_mlme.tid_rx[tid]);
3521 if (!tid_agg_rx)
3522 goto out;
3523
3524 spin_lock_bh(&tid_agg_rx->reorder_lock);
3525
3526 if (received_mpdus >= IEEE80211_SN_MODULO >> 1) {
3527 int release;
3528
3529 /* release all frames in the reorder buffer */
3530 release = (tid_agg_rx->head_seq_num + tid_agg_rx->buf_size) %
3531 IEEE80211_SN_MODULO;
3532 ieee80211_release_reorder_frames(sta->sdata, tid_agg_rx,
3533 release, &frames);
3534 /* update ssn to match received ssn */
3535 tid_agg_rx->head_seq_num = ssn;
3536 } else {
3537 ieee80211_release_reorder_frames(sta->sdata, tid_agg_rx, ssn,
3538 &frames);
3539 }
3540
3541 /* handle the case that received ssn is behind the mac ssn.
3542 * it can be tid_agg_rx->buf_size behind and still be valid */
3543 diff = (tid_agg_rx->head_seq_num - ssn) & IEEE80211_SN_MASK;
3544 if (diff >= tid_agg_rx->buf_size) {
3545 tid_agg_rx->reorder_buf_filtered = 0;
3546 goto release;
3547 }
3548 filtered = filtered >> diff;
3549 ssn += diff;
3550
3551 /* update bitmap */
3552 for (i = 0; i < tid_agg_rx->buf_size; i++) {
3553 int index = (ssn + i) % tid_agg_rx->buf_size;
3554
3555 tid_agg_rx->reorder_buf_filtered &= ~BIT_ULL(index);
3556 if (filtered & BIT_ULL(i))
3557 tid_agg_rx->reorder_buf_filtered |= BIT_ULL(index);
3558 }
3559
3560 /* now process also frames that the filter marking released */
3561 ieee80211_sta_reorder_release(sta->sdata, tid_agg_rx, &frames);
3562
3563release:
3564 spin_unlock_bh(&tid_agg_rx->reorder_lock);
3565
3566 ieee80211_rx_handlers(&rx, &frames);
3567
3568 out:
3569 rcu_read_unlock();
3570}
3571EXPORT_SYMBOL(ieee80211_mark_rx_ba_filtered_frames);
3572
571ecf67
JB
3573/* main receive path */
3574
a58fbe1a 3575static bool ieee80211_accept_frame(struct ieee80211_rx_data *rx)
23a24def 3576{
20b01f80 3577 struct ieee80211_sub_if_data *sdata = rx->sdata;
eb9fb5b8 3578 struct sk_buff *skb = rx->skb;
a58fbe1a 3579 struct ieee80211_hdr *hdr = (void *)skb->data;
eb9fb5b8
JB
3580 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
3581 u8 *bssid = ieee80211_get_bssid(hdr, skb->len, sdata->vif.type);
e5f2e067 3582 bool multicast = is_multicast_ether_addr(hdr->addr1);
23a24def 3583
51fb61e7 3584 switch (sdata->vif.type) {
05c914fe 3585 case NL80211_IFTYPE_STATION:
9bc383de 3586 if (!bssid && !sdata->u.mgd.use_4addr)
3c2723f5 3587 return false;
a58fbe1a
JB
3588 if (multicast)
3589 return true;
3590 return ether_addr_equal(sdata->vif.addr, hdr->addr1);
05c914fe 3591 case NL80211_IFTYPE_ADHOC:
23a24def 3592 if (!bssid)
3c2723f5 3593 return false;
6329b8d9
FF
3594 if (ether_addr_equal(sdata->vif.addr, hdr->addr2) ||
3595 ether_addr_equal(sdata->u.ibss.bssid, hdr->addr2))
3c2723f5 3596 return false;
a58fbe1a 3597 if (ieee80211_is_beacon(hdr->frame_control))
3c2723f5 3598 return true;
a58fbe1a 3599 if (!ieee80211_bssid_match(bssid, sdata->u.ibss.bssid))
3c2723f5 3600 return false;
a58fbe1a
JB
3601 if (!multicast &&
3602 !ether_addr_equal(sdata->vif.addr, hdr->addr1))
df140465 3603 return false;
a58fbe1a 3604 if (!rx->sta) {
0fb8ca45 3605 int rate_idx;
da6a4352 3606 if (status->encoding != RX_ENC_LEGACY)
5614618e 3607 rate_idx = 0; /* TODO: HT/VHT rates */
0fb8ca45 3608 else
eb9fb5b8 3609 rate_idx = status->rate_idx;
8bf11d8d
JB
3610 ieee80211_ibss_rx_no_sta(sdata, bssid, hdr->addr2,
3611 BIT(rate_idx));
0fb8ca45 3612 }
a58fbe1a 3613 return true;
239281f8
RL
3614 case NL80211_IFTYPE_OCB:
3615 if (!bssid)
3616 return false;
cc117298 3617 if (!ieee80211_is_data_present(hdr->frame_control))
239281f8 3618 return false;
a58fbe1a 3619 if (!is_broadcast_ether_addr(bssid))
239281f8 3620 return false;
a58fbe1a
JB
3621 if (!multicast &&
3622 !ether_addr_equal(sdata->dev->dev_addr, hdr->addr1))
df140465 3623 return false;
a58fbe1a 3624 if (!rx->sta) {
239281f8 3625 int rate_idx;
da6a4352 3626 if (status->encoding != RX_ENC_LEGACY)
239281f8
RL
3627 rate_idx = 0; /* TODO: HT rates */
3628 else
3629 rate_idx = status->rate_idx;
3630 ieee80211_ocb_rx_no_sta(sdata, bssid, hdr->addr2,
3631 BIT(rate_idx));
3632 }
a58fbe1a 3633 return true;
05c914fe 3634 case NL80211_IFTYPE_MESH_POINT:
736a80bb
JB
3635 if (ether_addr_equal(sdata->vif.addr, hdr->addr2))
3636 return false;
a58fbe1a
JB
3637 if (multicast)
3638 return true;
3639 return ether_addr_equal(sdata->vif.addr, hdr->addr1);
05c914fe
JB
3640 case NL80211_IFTYPE_AP_VLAN:
3641 case NL80211_IFTYPE_AP:
a58fbe1a
JB
3642 if (!bssid)
3643 return ether_addr_equal(sdata->vif.addr, hdr->addr1);
3644
3645 if (!ieee80211_bssid_match(bssid, sdata->vif.addr)) {
3df6eaea
JB
3646 /*
3647 * Accept public action frames even when the
3648 * BSSID doesn't match, this is used for P2P
3649 * and location updates. Note that mac80211
3650 * itself never looks at these frames.
3651 */
2b9ccd4e
JB
3652 if (!multicast &&
3653 !ether_addr_equal(sdata->vif.addr, hdr->addr1))
3c2723f5 3654 return false;
d48b2968 3655 if (ieee80211_is_public_action(hdr, skb->len))
3c2723f5 3656 return true;
5c90067c 3657 return ieee80211_is_beacon(hdr->frame_control);
a58fbe1a
JB
3658 }
3659
3660 if (!ieee80211_has_tods(hdr->frame_control)) {
db8e1732
AN
3661 /* ignore data frames to TDLS-peers */
3662 if (ieee80211_is_data(hdr->frame_control))
3663 return false;
3664 /* ignore action frames to TDLS-peers */
3665 if (ieee80211_is_action(hdr->frame_control) &&
1ec7bae8 3666 !is_broadcast_ether_addr(bssid) &&
db8e1732
AN
3667 !ether_addr_equal(bssid, hdr->addr1))
3668 return false;
23a24def 3669 }
3018e947
JB
3670
3671 /*
3672 * 802.11-2016 Table 9-26 says that for data frames, A1 must be
3673 * the BSSID - we've checked that already but may have accepted
3674 * the wildcard (ff:ff:ff:ff:ff:ff).
3675 *
3676 * It also says:
3677 * The BSSID of the Data frame is determined as follows:
3678 * a) If the STA is contained within an AP or is associated
3679 * with an AP, the BSSID is the address currently in use
3680 * by the STA contained in the AP.
3681 *
3682 * So we should not accept data frames with an address that's
3683 * multicast.
3684 *
3685 * Accepting it also opens a security problem because stations
3686 * could encrypt it with the GTK and inject traffic that way.
3687 */
3688 if (ieee80211_is_data(hdr->frame_control) && multicast)
3689 return false;
3690
a58fbe1a 3691 return true;
05c914fe 3692 case NL80211_IFTYPE_WDS:
a7767f95 3693 if (bssid || !ieee80211_is_data(hdr->frame_control))
3c2723f5 3694 return false;
a58fbe1a 3695 return ether_addr_equal(sdata->u.wds.remote_addr, hdr->addr2);
f142c6b9 3696 case NL80211_IFTYPE_P2P_DEVICE:
a58fbe1a
JB
3697 return ieee80211_is_public_action(hdr, skb->len) ||
3698 ieee80211_is_probe_req(hdr->frame_control) ||
3699 ieee80211_is_probe_resp(hdr->frame_control) ||
3700 ieee80211_is_beacon(hdr->frame_control);
cb3b7d87
AB
3701 case NL80211_IFTYPE_NAN:
3702 /* Currently no frames on NAN interface are allowed */
3703 return false;
2ca27bcf 3704 default:
fb1c1cd6 3705 break;
23a24def
JB
3706 }
3707
a58fbe1a
JB
3708 WARN_ON_ONCE(1);
3709 return false;
23a24def
JB
3710}
3711
49ddf8e6
JB
3712void ieee80211_check_fast_rx(struct sta_info *sta)
3713{
3714 struct ieee80211_sub_if_data *sdata = sta->sdata;
3715 struct ieee80211_local *local = sdata->local;
3716 struct ieee80211_key *key;
3717 struct ieee80211_fast_rx fastrx = {
3718 .dev = sdata->dev,
3719 .vif_type = sdata->vif.type,
3720 .control_port_protocol = sdata->control_port_protocol,
3721 }, *old, *new = NULL;
3722 bool assign = false;
3723
3724 /* use sparse to check that we don't return without updating */
3725 __acquire(check_fast_rx);
3726
3727 BUILD_BUG_ON(sizeof(fastrx.rfc1042_hdr) != sizeof(rfc1042_header));
3728 BUILD_BUG_ON(sizeof(fastrx.rfc1042_hdr) != ETH_ALEN);
3729 ether_addr_copy(fastrx.rfc1042_hdr, rfc1042_header);
3730 ether_addr_copy(fastrx.vif_addr, sdata->vif.addr);
3731
c9c5962b
JB
3732 fastrx.uses_rss = ieee80211_hw_check(&local->hw, USES_RSS);
3733
49ddf8e6
JB
3734 /* fast-rx doesn't do reordering */
3735 if (ieee80211_hw_check(&local->hw, AMPDU_AGGREGATION) &&
3736 !ieee80211_hw_check(&local->hw, SUPPORTS_REORDERING_BUFFER))
3737 goto clear;
3738
3739 switch (sdata->vif.type) {
3740 case NL80211_IFTYPE_STATION:
3741 /* 4-addr is harder to deal with, later maybe */
3742 if (sdata->u.mgd.use_4addr)
3743 goto clear;
3744 /* software powersave is a huge mess, avoid all of it */
3745 if (ieee80211_hw_check(&local->hw, PS_NULLFUNC_STACK))
3746 goto clear;
3747 if (ieee80211_hw_check(&local->hw, SUPPORTS_PS) &&
3748 !ieee80211_hw_check(&local->hw, SUPPORTS_DYNAMIC_PS))
3749 goto clear;
3750 if (sta->sta.tdls) {
3751 fastrx.da_offs = offsetof(struct ieee80211_hdr, addr1);
3752 fastrx.sa_offs = offsetof(struct ieee80211_hdr, addr2);
3753 fastrx.expected_ds_bits = 0;
3754 } else {
3755 fastrx.sta_notify = sdata->u.mgd.probe_send_count > 0;
3756 fastrx.da_offs = offsetof(struct ieee80211_hdr, addr1);
3757 fastrx.sa_offs = offsetof(struct ieee80211_hdr, addr3);
3758 fastrx.expected_ds_bits =
3759 cpu_to_le16(IEEE80211_FCTL_FROMDS);
3760 }
3761 break;
3762 case NL80211_IFTYPE_AP_VLAN:
3763 case NL80211_IFTYPE_AP:
3764 /* parallel-rx requires this, at least with calls to
3765 * ieee80211_sta_ps_transition()
3766 */
3767 if (!ieee80211_hw_check(&local->hw, AP_LINK_PS))
3768 goto clear;
3769 fastrx.da_offs = offsetof(struct ieee80211_hdr, addr3);
3770 fastrx.sa_offs = offsetof(struct ieee80211_hdr, addr2);
3771 fastrx.expected_ds_bits = cpu_to_le16(IEEE80211_FCTL_TODS);
3772
3773 fastrx.internal_forward =
3774 !(sdata->flags & IEEE80211_SDATA_DONT_BRIDGE_PACKETS) &&
3775 (sdata->vif.type != NL80211_IFTYPE_AP_VLAN ||
3776 !sdata->u.vlan.sta);
3777 break;
3778 default:
3779 goto clear;
3780 }
3781
3782 if (!test_sta_flag(sta, WLAN_STA_AUTHORIZED))
3783 goto clear;
3784
3785 rcu_read_lock();
3786 key = rcu_dereference(sta->ptk[sta->ptk_idx]);
3787 if (key) {
3788 switch (key->conf.cipher) {
3789 case WLAN_CIPHER_SUITE_TKIP:
3790 /* we don't want to deal with MMIC in fast-rx */
3791 goto clear_rcu;
3792 case WLAN_CIPHER_SUITE_CCMP:
3793 case WLAN_CIPHER_SUITE_CCMP_256:
3794 case WLAN_CIPHER_SUITE_GCMP:
3795 case WLAN_CIPHER_SUITE_GCMP_256:
3796 break;
3797 default:
3798 /* we also don't want to deal with WEP or cipher scheme
3799 * since those require looking up the key idx in the
3800 * frame, rather than assuming the PTK is used
3801 * (we need to revisit this once we implement the real
3802 * PTK index, which is now valid in the spec, but we
3803 * haven't implemented that part yet)
3804 */
3805 goto clear_rcu;
3806 }
3807
3808 fastrx.key = true;
3809 fastrx.icv_len = key->conf.icv_len;
3810 }
3811
3812 assign = true;
3813 clear_rcu:
3814 rcu_read_unlock();
3815 clear:
3816 __release(check_fast_rx);
3817
3818 if (assign)
3819 new = kmemdup(&fastrx, sizeof(fastrx), GFP_KERNEL);
3820
3821 spin_lock_bh(&sta->lock);
3822 old = rcu_dereference_protected(sta->fast_rx, true);
3823 rcu_assign_pointer(sta->fast_rx, new);
3824 spin_unlock_bh(&sta->lock);
3825
3826 if (old)
3827 kfree_rcu(old, rcu_head);
3828}
3829
3830void ieee80211_clear_fast_rx(struct sta_info *sta)
3831{
3832 struct ieee80211_fast_rx *old;
3833
3834 spin_lock_bh(&sta->lock);
3835 old = rcu_dereference_protected(sta->fast_rx, true);
3836 RCU_INIT_POINTER(sta->fast_rx, NULL);
3837 spin_unlock_bh(&sta->lock);
3838
3839 if (old)
3840 kfree_rcu(old, rcu_head);
3841}
3842
3843void __ieee80211_check_fast_rx_iface(struct ieee80211_sub_if_data *sdata)
3844{
3845 struct ieee80211_local *local = sdata->local;
3846 struct sta_info *sta;
3847
3848 lockdep_assert_held(&local->sta_mtx);
3849
3850 list_for_each_entry_rcu(sta, &local->sta_list, list) {
3851 if (sdata != sta->sdata &&
3852 (!sta->sdata->bss || sta->sdata->bss != sdata->bss))
3853 continue;
3854 ieee80211_check_fast_rx(sta);
3855 }
3856}
3857
3858void ieee80211_check_fast_rx_iface(struct ieee80211_sub_if_data *sdata)
3859{
3860 struct ieee80211_local *local = sdata->local;
3861
3862 mutex_lock(&local->sta_mtx);
3863 __ieee80211_check_fast_rx_iface(sdata);
3864 mutex_unlock(&local->sta_mtx);
3865}
3866
3867static bool ieee80211_invoke_fast_rx(struct ieee80211_rx_data *rx,
3868 struct ieee80211_fast_rx *fast_rx)
3869{
3870 struct sk_buff *skb = rx->skb;
3871 struct ieee80211_hdr *hdr = (void *)skb->data;
3872 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
3873 struct sta_info *sta = rx->sta;
3874 int orig_len = skb->len;
3875 int snap_offs = ieee80211_hdrlen(hdr->frame_control);
3876 struct {
3877 u8 snap[sizeof(rfc1042_header)];
3878 __be16 proto;
3879 } *payload __aligned(2);
3880 struct {
3881 u8 da[ETH_ALEN];
3882 u8 sa[ETH_ALEN];
3883 } addrs __aligned(2);
c9c5962b
JB
3884 struct ieee80211_sta_rx_stats *stats = &sta->rx_stats;
3885
3886 if (fast_rx->uses_rss)
3887 stats = this_cpu_ptr(sta->pcpu_rx_stats);
49ddf8e6
JB
3888
3889 /* for parallel-rx, we need to have DUP_VALIDATED, otherwise we write
3890 * to a common data structure; drivers can implement that per queue
3891 * but we don't have that information in mac80211
3892 */
3893 if (!(status->flag & RX_FLAG_DUP_VALIDATED))
3894 return false;
3895
3896#define FAST_RX_CRYPT_FLAGS (RX_FLAG_PN_VALIDATED | RX_FLAG_DECRYPTED)
3897
3898 /* If using encryption, we also need to have:
3899 * - PN_VALIDATED: similar, but the implementation is tricky
3900 * - DECRYPTED: necessary for PN_VALIDATED
3901 */
3902 if (fast_rx->key &&
3903 (status->flag & FAST_RX_CRYPT_FLAGS) != FAST_RX_CRYPT_FLAGS)
3904 return false;
3905
3906 /* we don't deal with A-MSDU deaggregation here */
3907 if (status->rx_flags & IEEE80211_RX_AMSDU)
3908 return false;
3909
3910 if (unlikely(!ieee80211_is_data_present(hdr->frame_control)))
3911 return false;
3912
3913 if (unlikely(ieee80211_is_frag(hdr)))
3914 return false;
3915
3916 /* Since our interface address cannot be multicast, this
3917 * implicitly also rejects multicast frames without the
3918 * explicit check.
3919 *
3920 * We shouldn't get any *data* frames not addressed to us
3921 * (AP mode will accept multicast *management* frames), but
3922 * punting here will make it go through the full checks in
3923 * ieee80211_accept_frame().
3924 */
3925 if (!ether_addr_equal(fast_rx->vif_addr, hdr->addr1))
3926 return false;
3927
3928 if ((hdr->frame_control & cpu_to_le16(IEEE80211_FCTL_FROMDS |
3929 IEEE80211_FCTL_TODS)) !=
3930 fast_rx->expected_ds_bits)
3931 goto drop;
3932
3933 /* assign the key to drop unencrypted frames (later)
3934 * and strip the IV/MIC if necessary
3935 */
3936 if (fast_rx->key && !(status->flag & RX_FLAG_IV_STRIPPED)) {
3937 /* GCMP header length is the same */
3938 snap_offs += IEEE80211_CCMP_HDR_LEN;
3939 }
3940
3941 if (!pskb_may_pull(skb, snap_offs + sizeof(*payload)))
3942 goto drop;
3943 payload = (void *)(skb->data + snap_offs);
3944
3945 if (!ether_addr_equal(payload->snap, fast_rx->rfc1042_hdr))
3946 return false;
3947
3948 /* Don't handle these here since they require special code.
3949 * Accept AARP and IPX even though they should come with a
3950 * bridge-tunnel header - but if we get them this way then
3951 * there's little point in discarding them.
3952 */
3953 if (unlikely(payload->proto == cpu_to_be16(ETH_P_TDLS) ||
3954 payload->proto == fast_rx->control_port_protocol))
3955 return false;
3956
3957 /* after this point, don't punt to the slowpath! */
3958
3959 if (rx->key && !(status->flag & RX_FLAG_MIC_STRIPPED) &&
3960 pskb_trim(skb, skb->len - fast_rx->icv_len))
3961 goto drop;
3962
3963 if (unlikely(fast_rx->sta_notify)) {
3964 ieee80211_sta_rx_notify(rx->sdata, hdr);
3965 fast_rx->sta_notify = false;
3966 }
3967
3968 /* statistics part of ieee80211_rx_h_sta_process() */
c9c5962b
JB
3969 stats->last_rx = jiffies;
3970 stats->last_rate = sta_stats_encode_rate(status);
49ddf8e6 3971
c9c5962b 3972 stats->fragments++;
0328edc7 3973 stats->packets++;
49ddf8e6
JB
3974
3975 if (!(status->flag & RX_FLAG_NO_SIGNAL_VAL)) {
c9c5962b
JB
3976 stats->last_signal = status->signal;
3977 if (!fast_rx->uses_rss)
3978 ewma_signal_add(&sta->rx_stats_avg.signal,
3979 -status->signal);
49ddf8e6
JB
3980 }
3981
3982 if (status->chains) {
3983 int i;
3984
c9c5962b 3985 stats->chains = status->chains;
49ddf8e6
JB
3986 for (i = 0; i < ARRAY_SIZE(status->chain_signal); i++) {
3987 int signal = status->chain_signal[i];
3988
3989 if (!(status->chains & BIT(i)))
3990 continue;
3991
c9c5962b
JB
3992 stats->chain_signal_last[i] = signal;
3993 if (!fast_rx->uses_rss)
3994 ewma_signal_add(&sta->rx_stats_avg.chain_signal[i],
3995 -signal);
49ddf8e6
JB
3996 }
3997 }
3998 /* end of statistics */
3999
4000 if (rx->key && !ieee80211_has_protected(hdr->frame_control))
4001 goto drop;
4002
4003 /* do the header conversion - first grab the addresses */
4004 ether_addr_copy(addrs.da, skb->data + fast_rx->da_offs);
4005 ether_addr_copy(addrs.sa, skb->data + fast_rx->sa_offs);
4006 /* remove the SNAP but leave the ethertype */
4007 skb_pull(skb, snap_offs + sizeof(rfc1042_header));
4008 /* push the addresses in front */
4009 memcpy(skb_push(skb, sizeof(addrs)), &addrs, sizeof(addrs));
4010
4011 skb->dev = fast_rx->dev;
4012
4013 ieee80211_rx_stats(fast_rx->dev, skb->len);
4014
4015 /* The seqno index has the same property as needed
4016 * for the rx_msdu field, i.e. it is IEEE80211_NUM_TIDS
4017 * for non-QoS-data frames. Here we know it's a data
4018 * frame, so count MSDUs.
4019 */
c9c5962b
JB
4020 u64_stats_update_begin(&stats->syncp);
4021 stats->msdu[rx->seqno_idx]++;
4022 stats->bytes += orig_len;
4023 u64_stats_update_end(&stats->syncp);
49ddf8e6
JB
4024
4025 if (fast_rx->internal_forward) {
eeb0d56f
JB
4026 struct sk_buff *xmit_skb = NULL;
4027 bool multicast = is_multicast_ether_addr(skb->data);
49ddf8e6 4028
eeb0d56f
JB
4029 if (multicast) {
4030 xmit_skb = skb_copy(skb, GFP_ATOMIC);
4031 } else if (sta_info_get(rx->sdata, skb->data)) {
4032 xmit_skb = skb;
4033 skb = NULL;
4034 }
49ddf8e6 4035
eeb0d56f 4036 if (xmit_skb) {
49ddf8e6
JB
4037 /*
4038 * Send to wireless media and increase priority by 256
4039 * to keep the received priority instead of
4040 * reclassifying the frame (see cfg80211_classify8021d).
4041 */
eeb0d56f
JB
4042 xmit_skb->priority += 256;
4043 xmit_skb->protocol = htons(ETH_P_802_3);
4044 skb_reset_network_header(xmit_skb);
4045 skb_reset_mac_header(xmit_skb);
4046 dev_queue_xmit(xmit_skb);
49ddf8e6 4047 }
eeb0d56f
JB
4048
4049 if (!skb)
4050 return true;
49ddf8e6
JB
4051 }
4052
4053 /* deliver to local stack */
4054 skb->protocol = eth_type_trans(skb, fast_rx->dev);
4055 memset(skb->cb, 0, sizeof(skb->cb));
4056 if (rx->napi)
4057 napi_gro_receive(rx->napi, skb);
4058 else
4059 netif_receive_skb(skb);
4060
4061 return true;
4062 drop:
4063 dev_kfree_skb(skb);
c9c5962b 4064 stats->dropped++;
49ddf8e6
JB
4065 return true;
4066}
4067
4406c376
JB
4068/*
4069 * This function returns whether or not the SKB
4070 * was destined for RX processing or not, which,
4071 * if consume is true, is equivalent to whether
4072 * or not the skb was consumed.
4073 */
4074static bool ieee80211_prepare_and_rx_handle(struct ieee80211_rx_data *rx,
4075 struct sk_buff *skb, bool consume)
4076{
4077 struct ieee80211_local *local = rx->local;
4078 struct ieee80211_sub_if_data *sdata = rx->sdata;
4406c376
JB
4079
4080 rx->skb = skb;
4406c376 4081
49ddf8e6
JB
4082 /* See if we can do fast-rx; if we have to copy we already lost,
4083 * so punt in that case. We should never have to deliver a data
4084 * frame to multiple interfaces anyway.
4085 *
4086 * We skip the ieee80211_accept_frame() call and do the necessary
4087 * checking inside ieee80211_invoke_fast_rx().
4088 */
4089 if (consume && rx->sta) {
4090 struct ieee80211_fast_rx *fast_rx;
4091
4092 fast_rx = rcu_dereference(rx->sta->fast_rx);
4093 if (fast_rx && ieee80211_invoke_fast_rx(rx, fast_rx))
4094 return true;
4095 }
4096
a58fbe1a 4097 if (!ieee80211_accept_frame(rx))
4406c376
JB
4098 return false;
4099
4406c376
JB
4100 if (!consume) {
4101 skb = skb_copy(skb, GFP_ATOMIC);
4102 if (!skb) {
4103 if (net_ratelimit())
4104 wiphy_debug(local->hw.wiphy,
b305dae4 4105 "failed to copy skb for %s\n",
4406c376
JB
4106 sdata->name);
4107 return true;
4108 }
4109
4110 rx->skb = skb;
4111 }
4112
4113 ieee80211_invoke_rx_handlers(rx);
4114 return true;
4115}
4116
571ecf67 4117/*
6b59db7d 4118 * This is the actual Rx frames handler. as it belongs to Rx path it must
6368e4b1 4119 * be called with rcu_read_lock protection.
571ecf67 4120 */
71ebb4aa 4121static void __ieee80211_rx_handle_packet(struct ieee80211_hw *hw,
d63b548f 4122 struct ieee80211_sta *pubsta,
af9f9b22
JB
4123 struct sk_buff *skb,
4124 struct napi_struct *napi)
571ecf67
JB
4125{
4126 struct ieee80211_local *local = hw_to_local(hw);
4127 struct ieee80211_sub_if_data *sdata;
571ecf67 4128 struct ieee80211_hdr *hdr;
e3cf8b3f 4129 __le16 fc;
5cf121c3 4130 struct ieee80211_rx_data rx;
4406c376 4131 struct ieee80211_sub_if_data *prev;
83e7e4ce 4132 struct rhlist_head *tmp;
e3cf8b3f 4133 int err = 0;
571ecf67 4134
e3cf8b3f 4135 fc = ((struct ieee80211_hdr *)skb->data)->frame_control;
571ecf67
JB
4136 memset(&rx, 0, sizeof(rx));
4137 rx.skb = skb;
4138 rx.local = local;
af9f9b22 4139 rx.napi = napi;
72abd81b 4140
e3cf8b3f 4141 if (ieee80211_is_data(fc) || ieee80211_is_mgmt(fc))
c206ca67 4142 I802_DEBUG_INC(local->dot11ReceivedFragmentCount);
571ecf67 4143
4a4f1a58
JB
4144 if (ieee80211_is_mgmt(fc)) {
4145 /* drop frame if too short for header */
4146 if (skb->len < ieee80211_hdrlen(fc))
4147 err = -ENOBUFS;
4148 else
4149 err = skb_linearize(skb);
4150 } else {
e3cf8b3f 4151 err = !pskb_may_pull(skb, ieee80211_hdrlen(fc));
4a4f1a58 4152 }
e3cf8b3f
ZY
4153
4154 if (err) {
4155 dev_kfree_skb(skb);
4156 return;
4157 }
4158
4159 hdr = (struct ieee80211_hdr *)skb->data;
38f3714d 4160 ieee80211_parse_qos(&rx);
d1c3a37c 4161 ieee80211_verify_alignment(&rx);
38f3714d 4162
d48b2968
JB
4163 if (unlikely(ieee80211_is_probe_resp(hdr->frame_control) ||
4164 ieee80211_is_beacon(hdr->frame_control)))
4165 ieee80211_scan_rx(local, skb);
4166
19d19e96 4167 if (ieee80211_is_data(fc)) {
d63b548f 4168 struct sta_info *sta, *prev_sta;
7bedd0cf 4169
19d19e96
JB
4170 if (pubsta) {
4171 rx.sta = container_of(pubsta, struct sta_info, sta);
4172 rx.sdata = rx.sta->sdata;
4173 if (ieee80211_prepare_and_rx_handle(&rx, skb, true))
4174 return;
4175 goto out;
4176 }
4177
56af3268 4178 prev_sta = NULL;
4406c376 4179
83e7e4ce 4180 for_each_sta_info(local, hdr->addr2, sta, tmp) {
56af3268
BG
4181 if (!prev_sta) {
4182 prev_sta = sta;
4183 continue;
4184 }
4185
4186 rx.sta = prev_sta;
4187 rx.sdata = prev_sta->sdata;
4406c376 4188 ieee80211_prepare_and_rx_handle(&rx, skb, false);
abe60632 4189
56af3268 4190 prev_sta = sta;
4406c376 4191 }
56af3268
BG
4192
4193 if (prev_sta) {
4194 rx.sta = prev_sta;
4195 rx.sdata = prev_sta->sdata;
4196
4406c376 4197 if (ieee80211_prepare_and_rx_handle(&rx, skb, true))
56af3268 4198 return;
8e26d5ad 4199 goto out;
56af3268 4200 }
4406c376
JB
4201 }
4202
4b0dd98e 4203 prev = NULL;
b2e7771e 4204
4b0dd98e
JB
4205 list_for_each_entry_rcu(sdata, &local->interfaces, list) {
4206 if (!ieee80211_sdata_running(sdata))
4207 continue;
340e11f3 4208
4b0dd98e
JB
4209 if (sdata->vif.type == NL80211_IFTYPE_MONITOR ||
4210 sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
4211 continue;
340e11f3 4212
4b0dd98e
JB
4213 /*
4214 * frame is destined for this interface, but if it's
4215 * not also for the previous one we handle that after
4216 * the loop to avoid copying the SKB once too much
4217 */
4bb29f8c 4218
4b0dd98e 4219 if (!prev) {
abe60632 4220 prev = sdata;
4b0dd98e 4221 continue;
340e11f3 4222 }
4bb29f8c 4223
7852e361 4224 rx.sta = sta_info_get_bss(prev, hdr->addr2);
4b0dd98e
JB
4225 rx.sdata = prev;
4226 ieee80211_prepare_and_rx_handle(&rx, skb, false);
4bb29f8c 4227
4b0dd98e
JB
4228 prev = sdata;
4229 }
4230
4231 if (prev) {
7852e361 4232 rx.sta = sta_info_get_bss(prev, hdr->addr2);
4b0dd98e 4233 rx.sdata = prev;
4406c376 4234
4b0dd98e
JB
4235 if (ieee80211_prepare_and_rx_handle(&rx, skb, true))
4236 return;
571ecf67 4237 }
4406c376 4238
8e26d5ad 4239 out:
4406c376 4240 dev_kfree_skb(skb);
571ecf67 4241}
6368e4b1
RR
4242
4243/*
4244 * This is the receive path handler. It is called by a low level driver when an
4245 * 802.11 MPDU is received from the hardware.
4246 */
d63b548f
JB
4247void ieee80211_rx_napi(struct ieee80211_hw *hw, struct ieee80211_sta *pubsta,
4248 struct sk_buff *skb, struct napi_struct *napi)
6368e4b1
RR
4249{
4250 struct ieee80211_local *local = hw_to_local(hw);
8318d78a
JB
4251 struct ieee80211_rate *rate = NULL;
4252 struct ieee80211_supported_band *sband;
f1d58c25 4253 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
8318d78a 4254
d20ef63d
JB
4255 WARN_ON_ONCE(softirq_count() == 0);
4256
57fbcce3 4257 if (WARN_ON(status->band >= NUM_NL80211_BANDS))
77a980dc 4258 goto drop;
8318d78a
JB
4259
4260 sband = local->hw.wiphy->bands[status->band];
77a980dc
JB
4261 if (WARN_ON(!sband))
4262 goto drop;
8318d78a 4263
89c3a8ac
JB
4264 /*
4265 * If we're suspending, it is possible although not too likely
4266 * that we'd be receiving frames after having already partially
4267 * quiesced the stack. We can't process such frames then since
4268 * that might, for example, cause stations to be added or other
4269 * driver callbacks be invoked.
4270 */
77a980dc
JB
4271 if (unlikely(local->quiescing || local->suspended))
4272 goto drop;
89c3a8ac 4273
04800ada
AN
4274 /* We might be during a HW reconfig, prevent Rx for the same reason */
4275 if (unlikely(local->in_reconfig))
4276 goto drop;
4277
ea77f12f
JB
4278 /*
4279 * The same happens when we're not even started,
4280 * but that's worth a warning.
4281 */
77a980dc
JB
4282 if (WARN_ON(!local->started))
4283 goto drop;
ea77f12f 4284
fc885189 4285 if (likely(!(status->flag & RX_FLAG_FAILED_PLCP_CRC))) {
e5d6eb83 4286 /*
fc885189
JB
4287 * Validate the rate, unless a PLCP error means that
4288 * we probably can't have a valid rate here anyway.
e5d6eb83 4289 */
fc885189 4290
da6a4352
JB
4291 switch (status->encoding) {
4292 case RX_ENC_HT:
fc885189
JB
4293 /*
4294 * rate_idx is MCS index, which can be [0-76]
4295 * as documented on:
4296 *
4297 * http://wireless.kernel.org/en/developers/Documentation/ieee80211/802.11n
4298 *
4299 * Anything else would be some sort of driver or
4300 * hardware error. The driver should catch hardware
4301 * errors.
4302 */
444e3803 4303 if (WARN(status->rate_idx > 76,
fc885189
JB
4304 "Rate marked as an HT rate but passed "
4305 "status->rate_idx is not "
4306 "an MCS index [0-76]: %d (0x%02x)\n",
4307 status->rate_idx,
4308 status->rate_idx))
4309 goto drop;
da6a4352
JB
4310 break;
4311 case RX_ENC_VHT:
5614618e 4312 if (WARN_ONCE(status->rate_idx > 9 ||
8613c948
JB
4313 !status->nss ||
4314 status->nss > 8,
5614618e 4315 "Rate marked as a VHT rate but data is invalid: MCS: %d, NSS: %d\n",
8613c948 4316 status->rate_idx, status->nss))
5614618e 4317 goto drop;
da6a4352
JB
4318 break;
4319 default:
4320 WARN_ON_ONCE(1);
4321 /* fall through */
4322 case RX_ENC_LEGACY:
444e3803 4323 if (WARN_ON(status->rate_idx >= sband->n_bitrates))
fc885189
JB
4324 goto drop;
4325 rate = &sband->bitrates[status->rate_idx];
4326 }
0fb8ca45 4327 }
6368e4b1 4328
554891e6
JB
4329 status->rx_flags = 0;
4330
6368e4b1
RR
4331 /*
4332 * key references and virtual interfaces are protected using RCU
4333 * and this requires that we are in a read-side RCU section during
4334 * receive processing
4335 */
4336 rcu_read_lock();
4337
4338 /*
4339 * Frames with failed FCS/PLCP checksum are not returned,
4340 * all other frames are returned without radiotap header
4341 * if it was previously present.
4342 * Also, frames with less than 16 bytes are dropped.
4343 */
f1d58c25 4344 skb = ieee80211_rx_monitor(local, skb, rate);
6368e4b1
RR
4345 if (!skb) {
4346 rcu_read_unlock();
4347 return;
4348 }
4349
e1e54068
JB
4350 ieee80211_tpt_led_trig_rx(local,
4351 ((struct ieee80211_hdr *)skb->data)->frame_control,
4352 skb->len);
d63b548f
JB
4353
4354 __ieee80211_rx_handle_packet(hw, pubsta, skb, napi);
6368e4b1
RR
4355
4356 rcu_read_unlock();
77a980dc
JB
4357
4358 return;
4359 drop:
4360 kfree_skb(skb);
6368e4b1 4361}
af9f9b22 4362EXPORT_SYMBOL(ieee80211_rx_napi);
571ecf67
JB
4363
4364/* This is a version of the rx handler that can be called from hard irq
4365 * context. Post the skb on the queue and schedule the tasklet */
f1d58c25 4366void ieee80211_rx_irqsafe(struct ieee80211_hw *hw, struct sk_buff *skb)
571ecf67
JB
4367{
4368 struct ieee80211_local *local = hw_to_local(hw);
4369
4370 BUILD_BUG_ON(sizeof(struct ieee80211_rx_status) > sizeof(skb->cb));
4371
571ecf67
JB
4372 skb->pkt_type = IEEE80211_RX_MSG;
4373 skb_queue_tail(&local->skb_queue, skb);
4374 tasklet_schedule(&local->tasklet);
4375}
4376EXPORT_SYMBOL(ieee80211_rx_irqsafe);