net/mlx4: Adapt code for N-Port VF
[firefly-linux-kernel-4.4.55.git] / net / mac80211 / rx.c
1 /*
2  * Copyright 2002-2005, Instant802 Networks, Inc.
3  * Copyright 2005-2006, Devicescape Software, Inc.
4  * Copyright 2006-2007  Jiri Benc <jbenc@suse.cz>
5  * Copyright 2007-2010  Johannes Berg <johannes@sipsolutions.net>
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License version 2 as
9  * published by the Free Software Foundation.
10  */
11
12 #include <linux/jiffies.h>
13 #include <linux/slab.h>
14 #include <linux/kernel.h>
15 #include <linux/skbuff.h>
16 #include <linux/netdevice.h>
17 #include <linux/etherdevice.h>
18 #include <linux/rcupdate.h>
19 #include <linux/export.h>
20 #include <net/mac80211.h>
21 #include <net/ieee80211_radiotap.h>
22 #include <asm/unaligned.h>
23
24 #include "ieee80211_i.h"
25 #include "driver-ops.h"
26 #include "led.h"
27 #include "mesh.h"
28 #include "wep.h"
29 #include "wpa.h"
30 #include "tkip.h"
31 #include "wme.h"
32 #include "rate.h"
33
34 /*
35  * monitor mode reception
36  *
37  * This function cleans up the SKB, i.e. it removes all the stuff
38  * only useful for monitoring.
39  */
40 static struct sk_buff *remove_monitor_info(struct ieee80211_local *local,
41                                            struct sk_buff *skb)
42 {
43         if (local->hw.flags & IEEE80211_HW_RX_INCLUDES_FCS) {
44                 if (likely(skb->len > FCS_LEN))
45                         __pskb_trim(skb, skb->len - FCS_LEN);
46                 else {
47                         /* driver bug */
48                         WARN_ON(1);
49                         dev_kfree_skb(skb);
50                         return NULL;
51                 }
52         }
53
54         return skb;
55 }
56
57 static inline int should_drop_frame(struct sk_buff *skb, int present_fcs_len)
58 {
59         struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
60         struct ieee80211_hdr *hdr;
61
62         hdr = (void *)(skb->data);
63
64         if (status->flag & (RX_FLAG_FAILED_FCS_CRC |
65                             RX_FLAG_FAILED_PLCP_CRC |
66                             RX_FLAG_AMPDU_IS_ZEROLEN))
67                 return 1;
68         if (unlikely(skb->len < 16 + present_fcs_len))
69                 return 1;
70         if (ieee80211_is_ctl(hdr->frame_control) &&
71             !ieee80211_is_pspoll(hdr->frame_control) &&
72             !ieee80211_is_back_req(hdr->frame_control))
73                 return 1;
74         return 0;
75 }
76
77 static int
78 ieee80211_rx_radiotap_space(struct ieee80211_local *local,
79                             struct ieee80211_rx_status *status)
80 {
81         int len;
82
83         /* always present fields */
84         len = sizeof(struct ieee80211_radiotap_header) + 8;
85
86         /* allocate extra bitmaps */
87         if (status->chains)
88                 len += 4 * hweight8(status->chains);
89
90         if (ieee80211_have_rx_timestamp(status)) {
91                 len = ALIGN(len, 8);
92                 len += 8;
93         }
94         if (local->hw.flags & IEEE80211_HW_SIGNAL_DBM)
95                 len += 1;
96
97         /* antenna field, if we don't have per-chain info */
98         if (!status->chains)
99                 len += 1;
100
101         /* padding for RX_FLAGS if necessary */
102         len = ALIGN(len, 2);
103
104         if (status->flag & RX_FLAG_HT) /* HT info */
105                 len += 3;
106
107         if (status->flag & RX_FLAG_AMPDU_DETAILS) {
108                 len = ALIGN(len, 4);
109                 len += 8;
110         }
111
112         if (status->flag & RX_FLAG_VHT) {
113                 len = ALIGN(len, 2);
114                 len += 12;
115         }
116
117         if (status->chains) {
118                 /* antenna and antenna signal fields */
119                 len += 2 * hweight8(status->chains);
120         }
121
122         return len;
123 }
124
125 /*
126  * ieee80211_add_rx_radiotap_header - add radiotap header
127  *
128  * add a radiotap header containing all the fields which the hardware provided.
129  */
130 static void
131 ieee80211_add_rx_radiotap_header(struct ieee80211_local *local,
132                                  struct sk_buff *skb,
133                                  struct ieee80211_rate *rate,
134                                  int rtap_len, bool has_fcs)
135 {
136         struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
137         struct ieee80211_radiotap_header *rthdr;
138         unsigned char *pos;
139         __le32 *it_present;
140         u32 it_present_val;
141         u16 rx_flags = 0;
142         u16 channel_flags = 0;
143         int mpdulen, chain;
144         unsigned long chains = status->chains;
145
146         mpdulen = skb->len;
147         if (!(has_fcs && (local->hw.flags & IEEE80211_HW_RX_INCLUDES_FCS)))
148                 mpdulen += FCS_LEN;
149
150         rthdr = (struct ieee80211_radiotap_header *)skb_push(skb, rtap_len);
151         memset(rthdr, 0, rtap_len);
152         it_present = &rthdr->it_present;
153
154         /* radiotap header, set always present flags */
155         rthdr->it_len = cpu_to_le16(rtap_len);
156         it_present_val = BIT(IEEE80211_RADIOTAP_FLAGS) |
157                          BIT(IEEE80211_RADIOTAP_CHANNEL) |
158                          BIT(IEEE80211_RADIOTAP_RX_FLAGS);
159
160         if (!status->chains)
161                 it_present_val |= BIT(IEEE80211_RADIOTAP_ANTENNA);
162
163         for_each_set_bit(chain, &chains, IEEE80211_MAX_CHAINS) {
164                 it_present_val |=
165                         BIT(IEEE80211_RADIOTAP_EXT) |
166                         BIT(IEEE80211_RADIOTAP_RADIOTAP_NAMESPACE);
167                 put_unaligned_le32(it_present_val, it_present);
168                 it_present++;
169                 it_present_val = BIT(IEEE80211_RADIOTAP_ANTENNA) |
170                                  BIT(IEEE80211_RADIOTAP_DBM_ANTSIGNAL);
171         }
172
173         put_unaligned_le32(it_present_val, it_present);
174
175         pos = (void *)(it_present + 1);
176
177         /* the order of the following fields is important */
178
179         /* IEEE80211_RADIOTAP_TSFT */
180         if (ieee80211_have_rx_timestamp(status)) {
181                 /* padding */
182                 while ((pos - (u8 *)rthdr) & 7)
183                         *pos++ = 0;
184                 put_unaligned_le64(
185                         ieee80211_calculate_rx_timestamp(local, status,
186                                                          mpdulen, 0),
187                         pos);
188                 rthdr->it_present |= cpu_to_le32(1 << IEEE80211_RADIOTAP_TSFT);
189                 pos += 8;
190         }
191
192         /* IEEE80211_RADIOTAP_FLAGS */
193         if (has_fcs && (local->hw.flags & IEEE80211_HW_RX_INCLUDES_FCS))
194                 *pos |= IEEE80211_RADIOTAP_F_FCS;
195         if (status->flag & (RX_FLAG_FAILED_FCS_CRC | RX_FLAG_FAILED_PLCP_CRC))
196                 *pos |= IEEE80211_RADIOTAP_F_BADFCS;
197         if (status->flag & RX_FLAG_SHORTPRE)
198                 *pos |= IEEE80211_RADIOTAP_F_SHORTPRE;
199         pos++;
200
201         /* IEEE80211_RADIOTAP_RATE */
202         if (!rate || status->flag & (RX_FLAG_HT | RX_FLAG_VHT)) {
203                 /*
204                  * Without rate information don't add it. If we have,
205                  * MCS information is a separate field in radiotap,
206                  * added below. The byte here is needed as padding
207                  * for the channel though, so initialise it to 0.
208                  */
209                 *pos = 0;
210         } else {
211                 int shift = 0;
212                 rthdr->it_present |= cpu_to_le32(1 << IEEE80211_RADIOTAP_RATE);
213                 if (status->flag & RX_FLAG_10MHZ)
214                         shift = 1;
215                 else if (status->flag & RX_FLAG_5MHZ)
216                         shift = 2;
217                 *pos = DIV_ROUND_UP(rate->bitrate, 5 * (1 << shift));
218         }
219         pos++;
220
221         /* IEEE80211_RADIOTAP_CHANNEL */
222         put_unaligned_le16(status->freq, pos);
223         pos += 2;
224         if (status->flag & RX_FLAG_10MHZ)
225                 channel_flags |= IEEE80211_CHAN_HALF;
226         else if (status->flag & RX_FLAG_5MHZ)
227                 channel_flags |= IEEE80211_CHAN_QUARTER;
228
229         if (status->band == IEEE80211_BAND_5GHZ)
230                 channel_flags |= IEEE80211_CHAN_OFDM | IEEE80211_CHAN_5GHZ;
231         else if (status->flag & (RX_FLAG_HT | RX_FLAG_VHT))
232                 channel_flags |= IEEE80211_CHAN_DYN | IEEE80211_CHAN_2GHZ;
233         else if (rate && rate->flags & IEEE80211_RATE_ERP_G)
234                 channel_flags |= IEEE80211_CHAN_OFDM | IEEE80211_CHAN_2GHZ;
235         else if (rate)
236                 channel_flags |= IEEE80211_CHAN_OFDM | IEEE80211_CHAN_2GHZ;
237         else
238                 channel_flags |= IEEE80211_CHAN_2GHZ;
239         put_unaligned_le16(channel_flags, pos);
240         pos += 2;
241
242         /* IEEE80211_RADIOTAP_DBM_ANTSIGNAL */
243         if (local->hw.flags & IEEE80211_HW_SIGNAL_DBM &&
244             !(status->flag & RX_FLAG_NO_SIGNAL_VAL)) {
245                 *pos = status->signal;
246                 rthdr->it_present |=
247                         cpu_to_le32(1 << IEEE80211_RADIOTAP_DBM_ANTSIGNAL);
248                 pos++;
249         }
250
251         /* IEEE80211_RADIOTAP_LOCK_QUALITY is missing */
252
253         if (!status->chains) {
254                 /* IEEE80211_RADIOTAP_ANTENNA */
255                 *pos = status->antenna;
256                 pos++;
257         }
258
259         /* IEEE80211_RADIOTAP_DB_ANTNOISE is not used */
260
261         /* IEEE80211_RADIOTAP_RX_FLAGS */
262         /* ensure 2 byte alignment for the 2 byte field as required */
263         if ((pos - (u8 *)rthdr) & 1)
264                 *pos++ = 0;
265         if (status->flag & RX_FLAG_FAILED_PLCP_CRC)
266                 rx_flags |= IEEE80211_RADIOTAP_F_RX_BADPLCP;
267         put_unaligned_le16(rx_flags, pos);
268         pos += 2;
269
270         if (status->flag & RX_FLAG_HT) {
271                 unsigned int stbc;
272
273                 rthdr->it_present |= cpu_to_le32(1 << IEEE80211_RADIOTAP_MCS);
274                 *pos++ = local->hw.radiotap_mcs_details;
275                 *pos = 0;
276                 if (status->flag & RX_FLAG_SHORT_GI)
277                         *pos |= IEEE80211_RADIOTAP_MCS_SGI;
278                 if (status->flag & RX_FLAG_40MHZ)
279                         *pos |= IEEE80211_RADIOTAP_MCS_BW_40;
280                 if (status->flag & RX_FLAG_HT_GF)
281                         *pos |= IEEE80211_RADIOTAP_MCS_FMT_GF;
282                 if (status->flag & RX_FLAG_LDPC)
283                         *pos |= IEEE80211_RADIOTAP_MCS_FEC_LDPC;
284                 stbc = (status->flag & RX_FLAG_STBC_MASK) >> RX_FLAG_STBC_SHIFT;
285                 *pos |= stbc << IEEE80211_RADIOTAP_MCS_STBC_SHIFT;
286                 pos++;
287                 *pos++ = status->rate_idx;
288         }
289
290         if (status->flag & RX_FLAG_AMPDU_DETAILS) {
291                 u16 flags = 0;
292
293                 /* ensure 4 byte alignment */
294                 while ((pos - (u8 *)rthdr) & 3)
295                         pos++;
296                 rthdr->it_present |=
297                         cpu_to_le32(1 << IEEE80211_RADIOTAP_AMPDU_STATUS);
298                 put_unaligned_le32(status->ampdu_reference, pos);
299                 pos += 4;
300                 if (status->flag & RX_FLAG_AMPDU_REPORT_ZEROLEN)
301                         flags |= IEEE80211_RADIOTAP_AMPDU_REPORT_ZEROLEN;
302                 if (status->flag & RX_FLAG_AMPDU_IS_ZEROLEN)
303                         flags |= IEEE80211_RADIOTAP_AMPDU_IS_ZEROLEN;
304                 if (status->flag & RX_FLAG_AMPDU_LAST_KNOWN)
305                         flags |= IEEE80211_RADIOTAP_AMPDU_LAST_KNOWN;
306                 if (status->flag & RX_FLAG_AMPDU_IS_LAST)
307                         flags |= IEEE80211_RADIOTAP_AMPDU_IS_LAST;
308                 if (status->flag & RX_FLAG_AMPDU_DELIM_CRC_ERROR)
309                         flags |= IEEE80211_RADIOTAP_AMPDU_DELIM_CRC_ERR;
310                 if (status->flag & RX_FLAG_AMPDU_DELIM_CRC_KNOWN)
311                         flags |= IEEE80211_RADIOTAP_AMPDU_DELIM_CRC_KNOWN;
312                 put_unaligned_le16(flags, pos);
313                 pos += 2;
314                 if (status->flag & RX_FLAG_AMPDU_DELIM_CRC_KNOWN)
315                         *pos++ = status->ampdu_delimiter_crc;
316                 else
317                         *pos++ = 0;
318                 *pos++ = 0;
319         }
320
321         if (status->flag & RX_FLAG_VHT) {
322                 u16 known = local->hw.radiotap_vht_details;
323
324                 rthdr->it_present |= cpu_to_le32(1 << IEEE80211_RADIOTAP_VHT);
325                 /* known field - how to handle 80+80? */
326                 if (status->vht_flag & RX_VHT_FLAG_80P80MHZ)
327                         known &= ~IEEE80211_RADIOTAP_VHT_KNOWN_BANDWIDTH;
328                 put_unaligned_le16(known, pos);
329                 pos += 2;
330                 /* flags */
331                 if (status->flag & RX_FLAG_SHORT_GI)
332                         *pos |= IEEE80211_RADIOTAP_VHT_FLAG_SGI;
333                 /* in VHT, STBC is binary */
334                 if (status->flag & RX_FLAG_STBC_MASK)
335                         *pos |= IEEE80211_RADIOTAP_VHT_FLAG_STBC;
336                 pos++;
337                 /* bandwidth */
338                 if (status->vht_flag & RX_VHT_FLAG_80MHZ)
339                         *pos++ = 4;
340                 else if (status->vht_flag & RX_VHT_FLAG_80P80MHZ)
341                         *pos++ = 0; /* marked not known above */
342                 else if (status->vht_flag & RX_VHT_FLAG_160MHZ)
343                         *pos++ = 11;
344                 else if (status->flag & RX_FLAG_40MHZ)
345                         *pos++ = 1;
346                 else /* 20 MHz */
347                         *pos++ = 0;
348                 /* MCS/NSS */
349                 *pos = (status->rate_idx << 4) | status->vht_nss;
350                 pos += 4;
351                 /* coding field */
352                 if (status->flag & RX_FLAG_LDPC)
353                         *pos |= IEEE80211_RADIOTAP_CODING_LDPC_USER0;
354                 pos++;
355                 /* group ID */
356                 pos++;
357                 /* partial_aid */
358                 pos += 2;
359         }
360
361         for_each_set_bit(chain, &chains, IEEE80211_MAX_CHAINS) {
362                 *pos++ = status->chain_signal[chain];
363                 *pos++ = chain;
364         }
365 }
366
367 /*
368  * This function copies a received frame to all monitor interfaces and
369  * returns a cleaned-up SKB that no longer includes the FCS nor the
370  * radiotap header the driver might have added.
371  */
372 static struct sk_buff *
373 ieee80211_rx_monitor(struct ieee80211_local *local, struct sk_buff *origskb,
374                      struct ieee80211_rate *rate)
375 {
376         struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(origskb);
377         struct ieee80211_sub_if_data *sdata;
378         int needed_headroom;
379         struct sk_buff *skb, *skb2;
380         struct net_device *prev_dev = NULL;
381         int present_fcs_len = 0;
382
383         /*
384          * First, we may need to make a copy of the skb because
385          *  (1) we need to modify it for radiotap (if not present), and
386          *  (2) the other RX handlers will modify the skb we got.
387          *
388          * We don't need to, of course, if we aren't going to return
389          * the SKB because it has a bad FCS/PLCP checksum.
390          */
391
392         if (local->hw.flags & IEEE80211_HW_RX_INCLUDES_FCS)
393                 present_fcs_len = FCS_LEN;
394
395         /* ensure hdr->frame_control is in skb head */
396         if (!pskb_may_pull(origskb, 2)) {
397                 dev_kfree_skb(origskb);
398                 return NULL;
399         }
400
401         if (!local->monitors) {
402                 if (should_drop_frame(origskb, present_fcs_len)) {
403                         dev_kfree_skb(origskb);
404                         return NULL;
405                 }
406
407                 return remove_monitor_info(local, origskb);
408         }
409
410         /* room for the radiotap header based on driver features */
411         needed_headroom = ieee80211_rx_radiotap_space(local, status);
412
413         if (should_drop_frame(origskb, present_fcs_len)) {
414                 /* only need to expand headroom if necessary */
415                 skb = origskb;
416                 origskb = NULL;
417
418                 /*
419                  * This shouldn't trigger often because most devices have an
420                  * RX header they pull before we get here, and that should
421                  * be big enough for our radiotap information. We should
422                  * probably export the length to drivers so that we can have
423                  * them allocate enough headroom to start with.
424                  */
425                 if (skb_headroom(skb) < needed_headroom &&
426                     pskb_expand_head(skb, needed_headroom, 0, GFP_ATOMIC)) {
427                         dev_kfree_skb(skb);
428                         return NULL;
429                 }
430         } else {
431                 /*
432                  * Need to make a copy and possibly remove radiotap header
433                  * and FCS from the original.
434                  */
435                 skb = skb_copy_expand(origskb, needed_headroom, 0, GFP_ATOMIC);
436
437                 origskb = remove_monitor_info(local, origskb);
438
439                 if (!skb)
440                         return origskb;
441         }
442
443         /* prepend radiotap information */
444         ieee80211_add_rx_radiotap_header(local, skb, rate, needed_headroom,
445                                          true);
446
447         skb_reset_mac_header(skb);
448         skb->ip_summed = CHECKSUM_UNNECESSARY;
449         skb->pkt_type = PACKET_OTHERHOST;
450         skb->protocol = htons(ETH_P_802_2);
451
452         list_for_each_entry_rcu(sdata, &local->interfaces, list) {
453                 if (sdata->vif.type != NL80211_IFTYPE_MONITOR)
454                         continue;
455
456                 if (sdata->u.mntr_flags & MONITOR_FLAG_COOK_FRAMES)
457                         continue;
458
459                 if (!ieee80211_sdata_running(sdata))
460                         continue;
461
462                 if (prev_dev) {
463                         skb2 = skb_clone(skb, GFP_ATOMIC);
464                         if (skb2) {
465                                 skb2->dev = prev_dev;
466                                 netif_receive_skb(skb2);
467                         }
468                 }
469
470                 prev_dev = sdata->dev;
471                 sdata->dev->stats.rx_packets++;
472                 sdata->dev->stats.rx_bytes += skb->len;
473         }
474
475         if (prev_dev) {
476                 skb->dev = prev_dev;
477                 netif_receive_skb(skb);
478         } else
479                 dev_kfree_skb(skb);
480
481         return origskb;
482 }
483
484 static void ieee80211_parse_qos(struct ieee80211_rx_data *rx)
485 {
486         struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
487         struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(rx->skb);
488         int tid, seqno_idx, security_idx;
489
490         /* does the frame have a qos control field? */
491         if (ieee80211_is_data_qos(hdr->frame_control)) {
492                 u8 *qc = ieee80211_get_qos_ctl(hdr);
493                 /* frame has qos control */
494                 tid = *qc & IEEE80211_QOS_CTL_TID_MASK;
495                 if (*qc & IEEE80211_QOS_CTL_A_MSDU_PRESENT)
496                         status->rx_flags |= IEEE80211_RX_AMSDU;
497
498                 seqno_idx = tid;
499                 security_idx = tid;
500         } else {
501                 /*
502                  * IEEE 802.11-2007, 7.1.3.4.1 ("Sequence Number field"):
503                  *
504                  *      Sequence numbers for management frames, QoS data
505                  *      frames with a broadcast/multicast address in the
506                  *      Address 1 field, and all non-QoS data frames sent
507                  *      by QoS STAs are assigned using an additional single
508                  *      modulo-4096 counter, [...]
509                  *
510                  * We also use that counter for non-QoS STAs.
511                  */
512                 seqno_idx = IEEE80211_NUM_TIDS;
513                 security_idx = 0;
514                 if (ieee80211_is_mgmt(hdr->frame_control))
515                         security_idx = IEEE80211_NUM_TIDS;
516                 tid = 0;
517         }
518
519         rx->seqno_idx = seqno_idx;
520         rx->security_idx = security_idx;
521         /* Set skb->priority to 1d tag if highest order bit of TID is not set.
522          * For now, set skb->priority to 0 for other cases. */
523         rx->skb->priority = (tid > 7) ? 0 : tid;
524 }
525
526 /**
527  * DOC: Packet alignment
528  *
529  * Drivers always need to pass packets that are aligned to two-byte boundaries
530  * to the stack.
531  *
532  * Additionally, should, if possible, align the payload data in a way that
533  * guarantees that the contained IP header is aligned to a four-byte
534  * boundary. In the case of regular frames, this simply means aligning the
535  * payload to a four-byte boundary (because either the IP header is directly
536  * contained, or IV/RFC1042 headers that have a length divisible by four are
537  * in front of it).  If the payload data is not properly aligned and the
538  * architecture doesn't support efficient unaligned operations, mac80211
539  * will align the data.
540  *
541  * With A-MSDU frames, however, the payload data address must yield two modulo
542  * four because there are 14-byte 802.3 headers within the A-MSDU frames that
543  * push the IP header further back to a multiple of four again. Thankfully, the
544  * specs were sane enough this time around to require padding each A-MSDU
545  * subframe to a length that is a multiple of four.
546  *
547  * Padding like Atheros hardware adds which is between the 802.11 header and
548  * the payload is not supported, the driver is required to move the 802.11
549  * header to be directly in front of the payload in that case.
550  */
551 static void ieee80211_verify_alignment(struct ieee80211_rx_data *rx)
552 {
553 #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
554         WARN_ONCE((unsigned long)rx->skb->data & 1,
555                   "unaligned packet at 0x%p\n", rx->skb->data);
556 #endif
557 }
558
559
560 /* rx handlers */
561
562 static int ieee80211_is_unicast_robust_mgmt_frame(struct sk_buff *skb)
563 {
564         struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
565
566         if (is_multicast_ether_addr(hdr->addr1))
567                 return 0;
568
569         return ieee80211_is_robust_mgmt_frame(skb);
570 }
571
572
573 static int ieee80211_is_multicast_robust_mgmt_frame(struct sk_buff *skb)
574 {
575         struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
576
577         if (!is_multicast_ether_addr(hdr->addr1))
578                 return 0;
579
580         return ieee80211_is_robust_mgmt_frame(skb);
581 }
582
583
584 /* Get the BIP key index from MMIE; return -1 if this is not a BIP frame */
585 static int ieee80211_get_mmie_keyidx(struct sk_buff *skb)
586 {
587         struct ieee80211_mgmt *hdr = (struct ieee80211_mgmt *) skb->data;
588         struct ieee80211_mmie *mmie;
589
590         if (skb->len < 24 + sizeof(*mmie) || !is_multicast_ether_addr(hdr->da))
591                 return -1;
592
593         if (!ieee80211_is_robust_mgmt_frame(skb))
594                 return -1; /* not a robust management frame */
595
596         mmie = (struct ieee80211_mmie *)
597                 (skb->data + skb->len - sizeof(*mmie));
598         if (mmie->element_id != WLAN_EID_MMIE ||
599             mmie->length != sizeof(*mmie) - 2)
600                 return -1;
601
602         return le16_to_cpu(mmie->key_id);
603 }
604
605 static int iwl80211_get_cs_keyid(const struct ieee80211_cipher_scheme *cs,
606                                  struct sk_buff *skb)
607 {
608         struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
609         __le16 fc;
610         int hdrlen;
611         u8 keyid;
612
613         fc = hdr->frame_control;
614         hdrlen = ieee80211_hdrlen(fc);
615
616         if (skb->len < hdrlen + cs->hdr_len)
617                 return -EINVAL;
618
619         skb_copy_bits(skb, hdrlen + cs->key_idx_off, &keyid, 1);
620         keyid &= cs->key_idx_mask;
621         keyid >>= cs->key_idx_shift;
622
623         return keyid;
624 }
625
626 static ieee80211_rx_result ieee80211_rx_mesh_check(struct ieee80211_rx_data *rx)
627 {
628         struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
629         char *dev_addr = rx->sdata->vif.addr;
630
631         if (ieee80211_is_data(hdr->frame_control)) {
632                 if (is_multicast_ether_addr(hdr->addr1)) {
633                         if (ieee80211_has_tods(hdr->frame_control) ||
634                             !ieee80211_has_fromds(hdr->frame_control))
635                                 return RX_DROP_MONITOR;
636                         if (ether_addr_equal(hdr->addr3, dev_addr))
637                                 return RX_DROP_MONITOR;
638                 } else {
639                         if (!ieee80211_has_a4(hdr->frame_control))
640                                 return RX_DROP_MONITOR;
641                         if (ether_addr_equal(hdr->addr4, dev_addr))
642                                 return RX_DROP_MONITOR;
643                 }
644         }
645
646         /* If there is not an established peer link and this is not a peer link
647          * establisment frame, beacon or probe, drop the frame.
648          */
649
650         if (!rx->sta || sta_plink_state(rx->sta) != NL80211_PLINK_ESTAB) {
651                 struct ieee80211_mgmt *mgmt;
652
653                 if (!ieee80211_is_mgmt(hdr->frame_control))
654                         return RX_DROP_MONITOR;
655
656                 if (ieee80211_is_action(hdr->frame_control)) {
657                         u8 category;
658
659                         /* make sure category field is present */
660                         if (rx->skb->len < IEEE80211_MIN_ACTION_SIZE)
661                                 return RX_DROP_MONITOR;
662
663                         mgmt = (struct ieee80211_mgmt *)hdr;
664                         category = mgmt->u.action.category;
665                         if (category != WLAN_CATEGORY_MESH_ACTION &&
666                             category != WLAN_CATEGORY_SELF_PROTECTED)
667                                 return RX_DROP_MONITOR;
668                         return RX_CONTINUE;
669                 }
670
671                 if (ieee80211_is_probe_req(hdr->frame_control) ||
672                     ieee80211_is_probe_resp(hdr->frame_control) ||
673                     ieee80211_is_beacon(hdr->frame_control) ||
674                     ieee80211_is_auth(hdr->frame_control))
675                         return RX_CONTINUE;
676
677                 return RX_DROP_MONITOR;
678         }
679
680         return RX_CONTINUE;
681 }
682
683 static void ieee80211_release_reorder_frame(struct ieee80211_sub_if_data *sdata,
684                                             struct tid_ampdu_rx *tid_agg_rx,
685                                             int index,
686                                             struct sk_buff_head *frames)
687 {
688         struct sk_buff *skb = tid_agg_rx->reorder_buf[index];
689         struct ieee80211_rx_status *status;
690
691         lockdep_assert_held(&tid_agg_rx->reorder_lock);
692
693         if (!skb)
694                 goto no_frame;
695
696         /* release the frame from the reorder ring buffer */
697         tid_agg_rx->stored_mpdu_num--;
698         tid_agg_rx->reorder_buf[index] = NULL;
699         status = IEEE80211_SKB_RXCB(skb);
700         status->rx_flags |= IEEE80211_RX_DEFERRED_RELEASE;
701         __skb_queue_tail(frames, skb);
702
703 no_frame:
704         tid_agg_rx->head_seq_num = ieee80211_sn_inc(tid_agg_rx->head_seq_num);
705 }
706
707 static void ieee80211_release_reorder_frames(struct ieee80211_sub_if_data *sdata,
708                                              struct tid_ampdu_rx *tid_agg_rx,
709                                              u16 head_seq_num,
710                                              struct sk_buff_head *frames)
711 {
712         int index;
713
714         lockdep_assert_held(&tid_agg_rx->reorder_lock);
715
716         while (ieee80211_sn_less(tid_agg_rx->head_seq_num, head_seq_num)) {
717                 index = tid_agg_rx->head_seq_num % tid_agg_rx->buf_size;
718                 ieee80211_release_reorder_frame(sdata, tid_agg_rx, index,
719                                                 frames);
720         }
721 }
722
723 /*
724  * Timeout (in jiffies) for skb's that are waiting in the RX reorder buffer. If
725  * the skb was added to the buffer longer than this time ago, the earlier
726  * frames that have not yet been received are assumed to be lost and the skb
727  * can be released for processing. This may also release other skb's from the
728  * reorder buffer if there are no additional gaps between the frames.
729  *
730  * Callers must hold tid_agg_rx->reorder_lock.
731  */
732 #define HT_RX_REORDER_BUF_TIMEOUT (HZ / 10)
733
734 static void ieee80211_sta_reorder_release(struct ieee80211_sub_if_data *sdata,
735                                           struct tid_ampdu_rx *tid_agg_rx,
736                                           struct sk_buff_head *frames)
737 {
738         int index, j;
739
740         lockdep_assert_held(&tid_agg_rx->reorder_lock);
741
742         /* release the buffer until next missing frame */
743         index = tid_agg_rx->head_seq_num % tid_agg_rx->buf_size;
744         if (!tid_agg_rx->reorder_buf[index] &&
745             tid_agg_rx->stored_mpdu_num) {
746                 /*
747                  * No buffers ready to be released, but check whether any
748                  * frames in the reorder buffer have timed out.
749                  */
750                 int skipped = 1;
751                 for (j = (index + 1) % tid_agg_rx->buf_size; j != index;
752                      j = (j + 1) % tid_agg_rx->buf_size) {
753                         if (!tid_agg_rx->reorder_buf[j]) {
754                                 skipped++;
755                                 continue;
756                         }
757                         if (skipped &&
758                             !time_after(jiffies, tid_agg_rx->reorder_time[j] +
759                                         HT_RX_REORDER_BUF_TIMEOUT))
760                                 goto set_release_timer;
761
762                         ht_dbg_ratelimited(sdata,
763                                            "release an RX reorder frame due to timeout on earlier frames\n");
764                         ieee80211_release_reorder_frame(sdata, tid_agg_rx, j,
765                                                         frames);
766
767                         /*
768                          * Increment the head seq# also for the skipped slots.
769                          */
770                         tid_agg_rx->head_seq_num =
771                                 (tid_agg_rx->head_seq_num +
772                                  skipped) & IEEE80211_SN_MASK;
773                         skipped = 0;
774                 }
775         } else while (tid_agg_rx->reorder_buf[index]) {
776                 ieee80211_release_reorder_frame(sdata, tid_agg_rx, index,
777                                                 frames);
778                 index = tid_agg_rx->head_seq_num % tid_agg_rx->buf_size;
779         }
780
781         if (tid_agg_rx->stored_mpdu_num) {
782                 j = index = tid_agg_rx->head_seq_num % tid_agg_rx->buf_size;
783
784                 for (; j != (index - 1) % tid_agg_rx->buf_size;
785                      j = (j + 1) % tid_agg_rx->buf_size) {
786                         if (tid_agg_rx->reorder_buf[j])
787                                 break;
788                 }
789
790  set_release_timer:
791
792                 mod_timer(&tid_agg_rx->reorder_timer,
793                           tid_agg_rx->reorder_time[j] + 1 +
794                           HT_RX_REORDER_BUF_TIMEOUT);
795         } else {
796                 del_timer(&tid_agg_rx->reorder_timer);
797         }
798 }
799
800 /*
801  * As this function belongs to the RX path it must be under
802  * rcu_read_lock protection. It returns false if the frame
803  * can be processed immediately, true if it was consumed.
804  */
805 static bool ieee80211_sta_manage_reorder_buf(struct ieee80211_sub_if_data *sdata,
806                                              struct tid_ampdu_rx *tid_agg_rx,
807                                              struct sk_buff *skb,
808                                              struct sk_buff_head *frames)
809 {
810         struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
811         u16 sc = le16_to_cpu(hdr->seq_ctrl);
812         u16 mpdu_seq_num = (sc & IEEE80211_SCTL_SEQ) >> 4;
813         u16 head_seq_num, buf_size;
814         int index;
815         bool ret = true;
816
817         spin_lock(&tid_agg_rx->reorder_lock);
818
819         buf_size = tid_agg_rx->buf_size;
820         head_seq_num = tid_agg_rx->head_seq_num;
821
822         /* frame with out of date sequence number */
823         if (ieee80211_sn_less(mpdu_seq_num, head_seq_num)) {
824                 dev_kfree_skb(skb);
825                 goto out;
826         }
827
828         /*
829          * If frame the sequence number exceeds our buffering window
830          * size release some previous frames to make room for this one.
831          */
832         if (!ieee80211_sn_less(mpdu_seq_num, head_seq_num + buf_size)) {
833                 head_seq_num = ieee80211_sn_inc(
834                                 ieee80211_sn_sub(mpdu_seq_num, buf_size));
835                 /* release stored frames up to new head to stack */
836                 ieee80211_release_reorder_frames(sdata, tid_agg_rx,
837                                                  head_seq_num, frames);
838         }
839
840         /* Now the new frame is always in the range of the reordering buffer */
841
842         index = mpdu_seq_num % tid_agg_rx->buf_size;
843
844         /* check if we already stored this frame */
845         if (tid_agg_rx->reorder_buf[index]) {
846                 dev_kfree_skb(skb);
847                 goto out;
848         }
849
850         /*
851          * If the current MPDU is in the right order and nothing else
852          * is stored we can process it directly, no need to buffer it.
853          * If it is first but there's something stored, we may be able
854          * to release frames after this one.
855          */
856         if (mpdu_seq_num == tid_agg_rx->head_seq_num &&
857             tid_agg_rx->stored_mpdu_num == 0) {
858                 tid_agg_rx->head_seq_num =
859                         ieee80211_sn_inc(tid_agg_rx->head_seq_num);
860                 ret = false;
861                 goto out;
862         }
863
864         /* put the frame in the reordering buffer */
865         tid_agg_rx->reorder_buf[index] = skb;
866         tid_agg_rx->reorder_time[index] = jiffies;
867         tid_agg_rx->stored_mpdu_num++;
868         ieee80211_sta_reorder_release(sdata, tid_agg_rx, frames);
869
870  out:
871         spin_unlock(&tid_agg_rx->reorder_lock);
872         return ret;
873 }
874
875 /*
876  * Reorder MPDUs from A-MPDUs, keeping them on a buffer. Returns
877  * true if the MPDU was buffered, false if it should be processed.
878  */
879 static void ieee80211_rx_reorder_ampdu(struct ieee80211_rx_data *rx,
880                                        struct sk_buff_head *frames)
881 {
882         struct sk_buff *skb = rx->skb;
883         struct ieee80211_local *local = rx->local;
884         struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
885         struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
886         struct sta_info *sta = rx->sta;
887         struct tid_ampdu_rx *tid_agg_rx;
888         u16 sc;
889         u8 tid, ack_policy;
890
891         if (!ieee80211_is_data_qos(hdr->frame_control) ||
892             is_multicast_ether_addr(hdr->addr1))
893                 goto dont_reorder;
894
895         /*
896          * filter the QoS data rx stream according to
897          * STA/TID and check if this STA/TID is on aggregation
898          */
899
900         if (!sta)
901                 goto dont_reorder;
902
903         ack_policy = *ieee80211_get_qos_ctl(hdr) &
904                      IEEE80211_QOS_CTL_ACK_POLICY_MASK;
905         tid = *ieee80211_get_qos_ctl(hdr) & IEEE80211_QOS_CTL_TID_MASK;
906
907         tid_agg_rx = rcu_dereference(sta->ampdu_mlme.tid_rx[tid]);
908         if (!tid_agg_rx)
909                 goto dont_reorder;
910
911         /* qos null data frames are excluded */
912         if (unlikely(hdr->frame_control & cpu_to_le16(IEEE80211_STYPE_NULLFUNC)))
913                 goto dont_reorder;
914
915         /* not part of a BA session */
916         if (ack_policy != IEEE80211_QOS_CTL_ACK_POLICY_BLOCKACK &&
917             ack_policy != IEEE80211_QOS_CTL_ACK_POLICY_NORMAL)
918                 goto dont_reorder;
919
920         /* not actually part of this BA session */
921         if (!(status->rx_flags & IEEE80211_RX_RA_MATCH))
922                 goto dont_reorder;
923
924         /* new, potentially un-ordered, ampdu frame - process it */
925
926         /* reset session timer */
927         if (tid_agg_rx->timeout)
928                 tid_agg_rx->last_rx = jiffies;
929
930         /* if this mpdu is fragmented - terminate rx aggregation session */
931         sc = le16_to_cpu(hdr->seq_ctrl);
932         if (sc & IEEE80211_SCTL_FRAG) {
933                 skb->pkt_type = IEEE80211_SDATA_QUEUE_TYPE_FRAME;
934                 skb_queue_tail(&rx->sdata->skb_queue, skb);
935                 ieee80211_queue_work(&local->hw, &rx->sdata->work);
936                 return;
937         }
938
939         /*
940          * No locking needed -- we will only ever process one
941          * RX packet at a time, and thus own tid_agg_rx. All
942          * other code manipulating it needs to (and does) make
943          * sure that we cannot get to it any more before doing
944          * anything with it.
945          */
946         if (ieee80211_sta_manage_reorder_buf(rx->sdata, tid_agg_rx, skb,
947                                              frames))
948                 return;
949
950  dont_reorder:
951         __skb_queue_tail(frames, skb);
952 }
953
954 static ieee80211_rx_result debug_noinline
955 ieee80211_rx_h_check(struct ieee80211_rx_data *rx)
956 {
957         struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
958         struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(rx->skb);
959
960         /*
961          * Drop duplicate 802.11 retransmissions
962          * (IEEE 802.11-2012: 9.3.2.10 "Duplicate detection and recovery")
963          */
964         if (rx->skb->len >= 24 && rx->sta &&
965             !ieee80211_is_ctl(hdr->frame_control) &&
966             !ieee80211_is_qos_nullfunc(hdr->frame_control) &&
967             !is_multicast_ether_addr(hdr->addr1)) {
968                 if (unlikely(ieee80211_has_retry(hdr->frame_control) &&
969                              rx->sta->last_seq_ctrl[rx->seqno_idx] ==
970                              hdr->seq_ctrl)) {
971                         if (status->rx_flags & IEEE80211_RX_RA_MATCH) {
972                                 rx->local->dot11FrameDuplicateCount++;
973                                 rx->sta->num_duplicates++;
974                         }
975                         return RX_DROP_UNUSABLE;
976                 } else if (!(status->flag & RX_FLAG_AMSDU_MORE)) {
977                         rx->sta->last_seq_ctrl[rx->seqno_idx] = hdr->seq_ctrl;
978                 }
979         }
980
981         if (unlikely(rx->skb->len < 16)) {
982                 I802_DEBUG_INC(rx->local->rx_handlers_drop_short);
983                 return RX_DROP_MONITOR;
984         }
985
986         /* Drop disallowed frame classes based on STA auth/assoc state;
987          * IEEE 802.11, Chap 5.5.
988          *
989          * mac80211 filters only based on association state, i.e. it drops
990          * Class 3 frames from not associated stations. hostapd sends
991          * deauth/disassoc frames when needed. In addition, hostapd is
992          * responsible for filtering on both auth and assoc states.
993          */
994
995         if (ieee80211_vif_is_mesh(&rx->sdata->vif))
996                 return ieee80211_rx_mesh_check(rx);
997
998         if (unlikely((ieee80211_is_data(hdr->frame_control) ||
999                       ieee80211_is_pspoll(hdr->frame_control)) &&
1000                      rx->sdata->vif.type != NL80211_IFTYPE_ADHOC &&
1001                      rx->sdata->vif.type != NL80211_IFTYPE_WDS &&
1002                      (!rx->sta || !test_sta_flag(rx->sta, WLAN_STA_ASSOC)))) {
1003                 /*
1004                  * accept port control frames from the AP even when it's not
1005                  * yet marked ASSOC to prevent a race where we don't set the
1006                  * assoc bit quickly enough before it sends the first frame
1007                  */
1008                 if (rx->sta && rx->sdata->vif.type == NL80211_IFTYPE_STATION &&
1009                     ieee80211_is_data_present(hdr->frame_control)) {
1010                         unsigned int hdrlen;
1011                         __be16 ethertype;
1012
1013                         hdrlen = ieee80211_hdrlen(hdr->frame_control);
1014
1015                         if (rx->skb->len < hdrlen + 8)
1016                                 return RX_DROP_MONITOR;
1017
1018                         skb_copy_bits(rx->skb, hdrlen + 6, &ethertype, 2);
1019                         if (ethertype == rx->sdata->control_port_protocol)
1020                                 return RX_CONTINUE;
1021                 }
1022
1023                 if (rx->sdata->vif.type == NL80211_IFTYPE_AP &&
1024                     cfg80211_rx_spurious_frame(rx->sdata->dev,
1025                                                hdr->addr2,
1026                                                GFP_ATOMIC))
1027                         return RX_DROP_UNUSABLE;
1028
1029                 return RX_DROP_MONITOR;
1030         }
1031
1032         return RX_CONTINUE;
1033 }
1034
1035
1036 static ieee80211_rx_result debug_noinline
1037 ieee80211_rx_h_check_more_data(struct ieee80211_rx_data *rx)
1038 {
1039         struct ieee80211_local *local;
1040         struct ieee80211_hdr *hdr;
1041         struct sk_buff *skb;
1042
1043         local = rx->local;
1044         skb = rx->skb;
1045         hdr = (struct ieee80211_hdr *) skb->data;
1046
1047         if (!local->pspolling)
1048                 return RX_CONTINUE;
1049
1050         if (!ieee80211_has_fromds(hdr->frame_control))
1051                 /* this is not from AP */
1052                 return RX_CONTINUE;
1053
1054         if (!ieee80211_is_data(hdr->frame_control))
1055                 return RX_CONTINUE;
1056
1057         if (!ieee80211_has_moredata(hdr->frame_control)) {
1058                 /* AP has no more frames buffered for us */
1059                 local->pspolling = false;
1060                 return RX_CONTINUE;
1061         }
1062
1063         /* more data bit is set, let's request a new frame from the AP */
1064         ieee80211_send_pspoll(local, rx->sdata);
1065
1066         return RX_CONTINUE;
1067 }
1068
1069 static void sta_ps_start(struct sta_info *sta)
1070 {
1071         struct ieee80211_sub_if_data *sdata = sta->sdata;
1072         struct ieee80211_local *local = sdata->local;
1073         struct ps_data *ps;
1074
1075         if (sta->sdata->vif.type == NL80211_IFTYPE_AP ||
1076             sta->sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
1077                 ps = &sdata->bss->ps;
1078         else
1079                 return;
1080
1081         atomic_inc(&ps->num_sta_ps);
1082         set_sta_flag(sta, WLAN_STA_PS_STA);
1083         if (!(local->hw.flags & IEEE80211_HW_AP_LINK_PS))
1084                 drv_sta_notify(local, sdata, STA_NOTIFY_SLEEP, &sta->sta);
1085         ps_dbg(sdata, "STA %pM aid %d enters power save mode\n",
1086                sta->sta.addr, sta->sta.aid);
1087 }
1088
1089 static void sta_ps_end(struct sta_info *sta)
1090 {
1091         ps_dbg(sta->sdata, "STA %pM aid %d exits power save mode\n",
1092                sta->sta.addr, sta->sta.aid);
1093
1094         if (test_sta_flag(sta, WLAN_STA_PS_DRIVER)) {
1095                 /*
1096                  * Clear the flag only if the other one is still set
1097                  * so that the TX path won't start TX'ing new frames
1098                  * directly ... In the case that the driver flag isn't
1099                  * set ieee80211_sta_ps_deliver_wakeup() will clear it.
1100                  */
1101                 clear_sta_flag(sta, WLAN_STA_PS_STA);
1102                 ps_dbg(sta->sdata, "STA %pM aid %d driver-ps-blocked\n",
1103                        sta->sta.addr, sta->sta.aid);
1104                 return;
1105         }
1106
1107         ieee80211_sta_ps_deliver_wakeup(sta);
1108 }
1109
1110 int ieee80211_sta_ps_transition(struct ieee80211_sta *sta, bool start)
1111 {
1112         struct sta_info *sta_inf = container_of(sta, struct sta_info, sta);
1113         bool in_ps;
1114
1115         WARN_ON(!(sta_inf->local->hw.flags & IEEE80211_HW_AP_LINK_PS));
1116
1117         /* Don't let the same PS state be set twice */
1118         in_ps = test_sta_flag(sta_inf, WLAN_STA_PS_STA);
1119         if ((start && in_ps) || (!start && !in_ps))
1120                 return -EINVAL;
1121
1122         if (start)
1123                 sta_ps_start(sta_inf);
1124         else
1125                 sta_ps_end(sta_inf);
1126
1127         return 0;
1128 }
1129 EXPORT_SYMBOL(ieee80211_sta_ps_transition);
1130
1131 static ieee80211_rx_result debug_noinline
1132 ieee80211_rx_h_uapsd_and_pspoll(struct ieee80211_rx_data *rx)
1133 {
1134         struct ieee80211_sub_if_data *sdata = rx->sdata;
1135         struct ieee80211_hdr *hdr = (void *)rx->skb->data;
1136         struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(rx->skb);
1137         int tid, ac;
1138
1139         if (!rx->sta || !(status->rx_flags & IEEE80211_RX_RA_MATCH))
1140                 return RX_CONTINUE;
1141
1142         if (sdata->vif.type != NL80211_IFTYPE_AP &&
1143             sdata->vif.type != NL80211_IFTYPE_AP_VLAN)
1144                 return RX_CONTINUE;
1145
1146         /*
1147          * The device handles station powersave, so don't do anything about
1148          * uAPSD and PS-Poll frames (the latter shouldn't even come up from
1149          * it to mac80211 since they're handled.)
1150          */
1151         if (sdata->local->hw.flags & IEEE80211_HW_AP_LINK_PS)
1152                 return RX_CONTINUE;
1153
1154         /*
1155          * Don't do anything if the station isn't already asleep. In
1156          * the uAPSD case, the station will probably be marked asleep,
1157          * in the PS-Poll case the station must be confused ...
1158          */
1159         if (!test_sta_flag(rx->sta, WLAN_STA_PS_STA))
1160                 return RX_CONTINUE;
1161
1162         if (unlikely(ieee80211_is_pspoll(hdr->frame_control))) {
1163                 if (!test_sta_flag(rx->sta, WLAN_STA_SP)) {
1164                         if (!test_sta_flag(rx->sta, WLAN_STA_PS_DRIVER))
1165                                 ieee80211_sta_ps_deliver_poll_response(rx->sta);
1166                         else
1167                                 set_sta_flag(rx->sta, WLAN_STA_PSPOLL);
1168                 }
1169
1170                 /* Free PS Poll skb here instead of returning RX_DROP that would
1171                  * count as an dropped frame. */
1172                 dev_kfree_skb(rx->skb);
1173
1174                 return RX_QUEUED;
1175         } else if (!ieee80211_has_morefrags(hdr->frame_control) &&
1176                    !(status->rx_flags & IEEE80211_RX_DEFERRED_RELEASE) &&
1177                    ieee80211_has_pm(hdr->frame_control) &&
1178                    (ieee80211_is_data_qos(hdr->frame_control) ||
1179                     ieee80211_is_qos_nullfunc(hdr->frame_control))) {
1180                 tid = *ieee80211_get_qos_ctl(hdr) & IEEE80211_QOS_CTL_TID_MASK;
1181                 ac = ieee802_1d_to_ac[tid & 7];
1182
1183                 /*
1184                  * If this AC is not trigger-enabled do nothing.
1185                  *
1186                  * NB: This could/should check a separate bitmap of trigger-
1187                  * enabled queues, but for now we only implement uAPSD w/o
1188                  * TSPEC changes to the ACs, so they're always the same.
1189                  */
1190                 if (!(rx->sta->sta.uapsd_queues & BIT(ac)))
1191                         return RX_CONTINUE;
1192
1193                 /* if we are in a service period, do nothing */
1194                 if (test_sta_flag(rx->sta, WLAN_STA_SP))
1195                         return RX_CONTINUE;
1196
1197                 if (!test_sta_flag(rx->sta, WLAN_STA_PS_DRIVER))
1198                         ieee80211_sta_ps_deliver_uapsd(rx->sta);
1199                 else
1200                         set_sta_flag(rx->sta, WLAN_STA_UAPSD);
1201         }
1202
1203         return RX_CONTINUE;
1204 }
1205
1206 static ieee80211_rx_result debug_noinline
1207 ieee80211_rx_h_sta_process(struct ieee80211_rx_data *rx)
1208 {
1209         struct sta_info *sta = rx->sta;
1210         struct sk_buff *skb = rx->skb;
1211         struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
1212         struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
1213         int i;
1214
1215         if (!sta)
1216                 return RX_CONTINUE;
1217
1218         /*
1219          * Update last_rx only for IBSS packets which are for the current
1220          * BSSID and for station already AUTHORIZED to avoid keeping the
1221          * current IBSS network alive in cases where other STAs start
1222          * using different BSSID. This will also give the station another
1223          * chance to restart the authentication/authorization in case
1224          * something went wrong the first time.
1225          */
1226         if (rx->sdata->vif.type == NL80211_IFTYPE_ADHOC) {
1227                 u8 *bssid = ieee80211_get_bssid(hdr, rx->skb->len,
1228                                                 NL80211_IFTYPE_ADHOC);
1229                 if (ether_addr_equal(bssid, rx->sdata->u.ibss.bssid) &&
1230                     test_sta_flag(sta, WLAN_STA_AUTHORIZED)) {
1231                         sta->last_rx = jiffies;
1232                         if (ieee80211_is_data(hdr->frame_control)) {
1233                                 sta->last_rx_rate_idx = status->rate_idx;
1234                                 sta->last_rx_rate_flag = status->flag;
1235                                 sta->last_rx_rate_vht_flag = status->vht_flag;
1236                                 sta->last_rx_rate_vht_nss = status->vht_nss;
1237                         }
1238                 }
1239         } else if (!is_multicast_ether_addr(hdr->addr1)) {
1240                 /*
1241                  * Mesh beacons will update last_rx when if they are found to
1242                  * match the current local configuration when processed.
1243                  */
1244                 sta->last_rx = jiffies;
1245                 if (ieee80211_is_data(hdr->frame_control)) {
1246                         sta->last_rx_rate_idx = status->rate_idx;
1247                         sta->last_rx_rate_flag = status->flag;
1248                         sta->last_rx_rate_vht_nss = status->vht_nss;
1249                 }
1250         }
1251
1252         if (!(status->rx_flags & IEEE80211_RX_RA_MATCH))
1253                 return RX_CONTINUE;
1254
1255         if (rx->sdata->vif.type == NL80211_IFTYPE_STATION)
1256                 ieee80211_sta_rx_notify(rx->sdata, hdr);
1257
1258         sta->rx_fragments++;
1259         sta->rx_bytes += rx->skb->len;
1260         if (!(status->flag & RX_FLAG_NO_SIGNAL_VAL)) {
1261                 sta->last_signal = status->signal;
1262                 ewma_add(&sta->avg_signal, -status->signal);
1263         }
1264
1265         if (status->chains) {
1266                 sta->chains = status->chains;
1267                 for (i = 0; i < ARRAY_SIZE(status->chain_signal); i++) {
1268                         int signal = status->chain_signal[i];
1269
1270                         if (!(status->chains & BIT(i)))
1271                                 continue;
1272
1273                         sta->chain_signal_last[i] = signal;
1274                         ewma_add(&sta->chain_signal_avg[i], -signal);
1275                 }
1276         }
1277
1278         /*
1279          * Change STA power saving mode only at the end of a frame
1280          * exchange sequence.
1281          */
1282         if (!(sta->local->hw.flags & IEEE80211_HW_AP_LINK_PS) &&
1283             !ieee80211_has_morefrags(hdr->frame_control) &&
1284             !(status->rx_flags & IEEE80211_RX_DEFERRED_RELEASE) &&
1285             (rx->sdata->vif.type == NL80211_IFTYPE_AP ||
1286              rx->sdata->vif.type == NL80211_IFTYPE_AP_VLAN) &&
1287             /* PM bit is only checked in frames where it isn't reserved,
1288              * in AP mode it's reserved in non-bufferable management frames
1289              * (cf. IEEE 802.11-2012 8.2.4.1.7 Power Management field)
1290              */
1291             (!ieee80211_is_mgmt(hdr->frame_control) ||
1292              ieee80211_is_bufferable_mmpdu(hdr->frame_control))) {
1293                 if (test_sta_flag(sta, WLAN_STA_PS_STA)) {
1294                         if (!ieee80211_has_pm(hdr->frame_control))
1295                                 sta_ps_end(sta);
1296                 } else {
1297                         if (ieee80211_has_pm(hdr->frame_control))
1298                                 sta_ps_start(sta);
1299                 }
1300         }
1301
1302         /* mesh power save support */
1303         if (ieee80211_vif_is_mesh(&rx->sdata->vif))
1304                 ieee80211_mps_rx_h_sta_process(sta, hdr);
1305
1306         /*
1307          * Drop (qos-)data::nullfunc frames silently, since they
1308          * are used only to control station power saving mode.
1309          */
1310         if (ieee80211_is_nullfunc(hdr->frame_control) ||
1311             ieee80211_is_qos_nullfunc(hdr->frame_control)) {
1312                 I802_DEBUG_INC(rx->local->rx_handlers_drop_nullfunc);
1313
1314                 /*
1315                  * If we receive a 4-addr nullfunc frame from a STA
1316                  * that was not moved to a 4-addr STA vlan yet send
1317                  * the event to userspace and for older hostapd drop
1318                  * the frame to the monitor interface.
1319                  */
1320                 if (ieee80211_has_a4(hdr->frame_control) &&
1321                     (rx->sdata->vif.type == NL80211_IFTYPE_AP ||
1322                      (rx->sdata->vif.type == NL80211_IFTYPE_AP_VLAN &&
1323                       !rx->sdata->u.vlan.sta))) {
1324                         if (!test_and_set_sta_flag(sta, WLAN_STA_4ADDR_EVENT))
1325                                 cfg80211_rx_unexpected_4addr_frame(
1326                                         rx->sdata->dev, sta->sta.addr,
1327                                         GFP_ATOMIC);
1328                         return RX_DROP_MONITOR;
1329                 }
1330                 /*
1331                  * Update counter and free packet here to avoid
1332                  * counting this as a dropped packed.
1333                  */
1334                 sta->rx_packets++;
1335                 dev_kfree_skb(rx->skb);
1336                 return RX_QUEUED;
1337         }
1338
1339         return RX_CONTINUE;
1340 } /* ieee80211_rx_h_sta_process */
1341
1342 static ieee80211_rx_result debug_noinline
1343 ieee80211_rx_h_decrypt(struct ieee80211_rx_data *rx)
1344 {
1345         struct sk_buff *skb = rx->skb;
1346         struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
1347         struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
1348         int keyidx;
1349         int hdrlen;
1350         ieee80211_rx_result result = RX_DROP_UNUSABLE;
1351         struct ieee80211_key *sta_ptk = NULL;
1352         int mmie_keyidx = -1;
1353         __le16 fc;
1354         const struct ieee80211_cipher_scheme *cs = NULL;
1355
1356         /*
1357          * Key selection 101
1358          *
1359          * There are four types of keys:
1360          *  - GTK (group keys)
1361          *  - IGTK (group keys for management frames)
1362          *  - PTK (pairwise keys)
1363          *  - STK (station-to-station pairwise keys)
1364          *
1365          * When selecting a key, we have to distinguish between multicast
1366          * (including broadcast) and unicast frames, the latter can only
1367          * use PTKs and STKs while the former always use GTKs and IGTKs.
1368          * Unless, of course, actual WEP keys ("pre-RSNA") are used, then
1369          * unicast frames can also use key indices like GTKs. Hence, if we
1370          * don't have a PTK/STK we check the key index for a WEP key.
1371          *
1372          * Note that in a regular BSS, multicast frames are sent by the
1373          * AP only, associated stations unicast the frame to the AP first
1374          * which then multicasts it on their behalf.
1375          *
1376          * There is also a slight problem in IBSS mode: GTKs are negotiated
1377          * with each station, that is something we don't currently handle.
1378          * The spec seems to expect that one negotiates the same key with
1379          * every station but there's no such requirement; VLANs could be
1380          * possible.
1381          */
1382
1383         /*
1384          * No point in finding a key and decrypting if the frame is neither
1385          * addressed to us nor a multicast frame.
1386          */
1387         if (!(status->rx_flags & IEEE80211_RX_RA_MATCH))
1388                 return RX_CONTINUE;
1389
1390         /* start without a key */
1391         rx->key = NULL;
1392         fc = hdr->frame_control;
1393
1394         if (rx->sta) {
1395                 int keyid = rx->sta->ptk_idx;
1396
1397                 if (ieee80211_has_protected(fc) && rx->sta->cipher_scheme) {
1398                         cs = rx->sta->cipher_scheme;
1399                         keyid = iwl80211_get_cs_keyid(cs, rx->skb);
1400                         if (unlikely(keyid < 0))
1401                                 return RX_DROP_UNUSABLE;
1402                 }
1403                 sta_ptk = rcu_dereference(rx->sta->ptk[keyid]);
1404         }
1405
1406         if (!ieee80211_has_protected(fc))
1407                 mmie_keyidx = ieee80211_get_mmie_keyidx(rx->skb);
1408
1409         if (!is_multicast_ether_addr(hdr->addr1) && sta_ptk) {
1410                 rx->key = sta_ptk;
1411                 if ((status->flag & RX_FLAG_DECRYPTED) &&
1412                     (status->flag & RX_FLAG_IV_STRIPPED))
1413                         return RX_CONTINUE;
1414                 /* Skip decryption if the frame is not protected. */
1415                 if (!ieee80211_has_protected(fc))
1416                         return RX_CONTINUE;
1417         } else if (mmie_keyidx >= 0) {
1418                 /* Broadcast/multicast robust management frame / BIP */
1419                 if ((status->flag & RX_FLAG_DECRYPTED) &&
1420                     (status->flag & RX_FLAG_IV_STRIPPED))
1421                         return RX_CONTINUE;
1422
1423                 if (mmie_keyidx < NUM_DEFAULT_KEYS ||
1424                     mmie_keyidx >= NUM_DEFAULT_KEYS + NUM_DEFAULT_MGMT_KEYS)
1425                         return RX_DROP_MONITOR; /* unexpected BIP keyidx */
1426                 if (rx->sta)
1427                         rx->key = rcu_dereference(rx->sta->gtk[mmie_keyidx]);
1428                 if (!rx->key)
1429                         rx->key = rcu_dereference(rx->sdata->keys[mmie_keyidx]);
1430         } else if (!ieee80211_has_protected(fc)) {
1431                 /*
1432                  * The frame was not protected, so skip decryption. However, we
1433                  * need to set rx->key if there is a key that could have been
1434                  * used so that the frame may be dropped if encryption would
1435                  * have been expected.
1436                  */
1437                 struct ieee80211_key *key = NULL;
1438                 struct ieee80211_sub_if_data *sdata = rx->sdata;
1439                 int i;
1440
1441                 if (ieee80211_is_mgmt(fc) &&
1442                     is_multicast_ether_addr(hdr->addr1) &&
1443                     (key = rcu_dereference(rx->sdata->default_mgmt_key)))
1444                         rx->key = key;
1445                 else {
1446                         if (rx->sta) {
1447                                 for (i = 0; i < NUM_DEFAULT_KEYS; i++) {
1448                                         key = rcu_dereference(rx->sta->gtk[i]);
1449                                         if (key)
1450                                                 break;
1451                                 }
1452                         }
1453                         if (!key) {
1454                                 for (i = 0; i < NUM_DEFAULT_KEYS; i++) {
1455                                         key = rcu_dereference(sdata->keys[i]);
1456                                         if (key)
1457                                                 break;
1458                                 }
1459                         }
1460                         if (key)
1461                                 rx->key = key;
1462                 }
1463                 return RX_CONTINUE;
1464         } else {
1465                 u8 keyid;
1466
1467                 /*
1468                  * The device doesn't give us the IV so we won't be
1469                  * able to look up the key. That's ok though, we
1470                  * don't need to decrypt the frame, we just won't
1471                  * be able to keep statistics accurate.
1472                  * Except for key threshold notifications, should
1473                  * we somehow allow the driver to tell us which key
1474                  * the hardware used if this flag is set?
1475                  */
1476                 if ((status->flag & RX_FLAG_DECRYPTED) &&
1477                     (status->flag & RX_FLAG_IV_STRIPPED))
1478                         return RX_CONTINUE;
1479
1480                 hdrlen = ieee80211_hdrlen(fc);
1481
1482                 if (cs) {
1483                         keyidx = iwl80211_get_cs_keyid(cs, rx->skb);
1484
1485                         if (unlikely(keyidx < 0))
1486                                 return RX_DROP_UNUSABLE;
1487                 } else {
1488                         if (rx->skb->len < 8 + hdrlen)
1489                                 return RX_DROP_UNUSABLE; /* TODO: count this? */
1490                         /*
1491                          * no need to call ieee80211_wep_get_keyidx,
1492                          * it verifies a bunch of things we've done already
1493                          */
1494                         skb_copy_bits(rx->skb, hdrlen + 3, &keyid, 1);
1495                         keyidx = keyid >> 6;
1496                 }
1497
1498                 /* check per-station GTK first, if multicast packet */
1499                 if (is_multicast_ether_addr(hdr->addr1) && rx->sta)
1500                         rx->key = rcu_dereference(rx->sta->gtk[keyidx]);
1501
1502                 /* if not found, try default key */
1503                 if (!rx->key) {
1504                         rx->key = rcu_dereference(rx->sdata->keys[keyidx]);
1505
1506                         /*
1507                          * RSNA-protected unicast frames should always be
1508                          * sent with pairwise or station-to-station keys,
1509                          * but for WEP we allow using a key index as well.
1510                          */
1511                         if (rx->key &&
1512                             rx->key->conf.cipher != WLAN_CIPHER_SUITE_WEP40 &&
1513                             rx->key->conf.cipher != WLAN_CIPHER_SUITE_WEP104 &&
1514                             !is_multicast_ether_addr(hdr->addr1))
1515                                 rx->key = NULL;
1516                 }
1517         }
1518
1519         if (rx->key) {
1520                 if (unlikely(rx->key->flags & KEY_FLAG_TAINTED))
1521                         return RX_DROP_MONITOR;
1522
1523                 rx->key->tx_rx_count++;
1524                 /* TODO: add threshold stuff again */
1525         } else {
1526                 return RX_DROP_MONITOR;
1527         }
1528
1529         switch (rx->key->conf.cipher) {
1530         case WLAN_CIPHER_SUITE_WEP40:
1531         case WLAN_CIPHER_SUITE_WEP104:
1532                 result = ieee80211_crypto_wep_decrypt(rx);
1533                 break;
1534         case WLAN_CIPHER_SUITE_TKIP:
1535                 result = ieee80211_crypto_tkip_decrypt(rx);
1536                 break;
1537         case WLAN_CIPHER_SUITE_CCMP:
1538                 result = ieee80211_crypto_ccmp_decrypt(rx);
1539                 break;
1540         case WLAN_CIPHER_SUITE_AES_CMAC:
1541                 result = ieee80211_crypto_aes_cmac_decrypt(rx);
1542                 break;
1543         default:
1544                 result = ieee80211_crypto_hw_decrypt(rx);
1545         }
1546
1547         /* the hdr variable is invalid after the decrypt handlers */
1548
1549         /* either the frame has been decrypted or will be dropped */
1550         status->flag |= RX_FLAG_DECRYPTED;
1551
1552         return result;
1553 }
1554
1555 static inline struct ieee80211_fragment_entry *
1556 ieee80211_reassemble_add(struct ieee80211_sub_if_data *sdata,
1557                          unsigned int frag, unsigned int seq, int rx_queue,
1558                          struct sk_buff **skb)
1559 {
1560         struct ieee80211_fragment_entry *entry;
1561
1562         entry = &sdata->fragments[sdata->fragment_next++];
1563         if (sdata->fragment_next >= IEEE80211_FRAGMENT_MAX)
1564                 sdata->fragment_next = 0;
1565
1566         if (!skb_queue_empty(&entry->skb_list))
1567                 __skb_queue_purge(&entry->skb_list);
1568
1569         __skb_queue_tail(&entry->skb_list, *skb); /* no need for locking */
1570         *skb = NULL;
1571         entry->first_frag_time = jiffies;
1572         entry->seq = seq;
1573         entry->rx_queue = rx_queue;
1574         entry->last_frag = frag;
1575         entry->ccmp = 0;
1576         entry->extra_len = 0;
1577
1578         return entry;
1579 }
1580
1581 static inline struct ieee80211_fragment_entry *
1582 ieee80211_reassemble_find(struct ieee80211_sub_if_data *sdata,
1583                           unsigned int frag, unsigned int seq,
1584                           int rx_queue, struct ieee80211_hdr *hdr)
1585 {
1586         struct ieee80211_fragment_entry *entry;
1587         int i, idx;
1588
1589         idx = sdata->fragment_next;
1590         for (i = 0; i < IEEE80211_FRAGMENT_MAX; i++) {
1591                 struct ieee80211_hdr *f_hdr;
1592
1593                 idx--;
1594                 if (idx < 0)
1595                         idx = IEEE80211_FRAGMENT_MAX - 1;
1596
1597                 entry = &sdata->fragments[idx];
1598                 if (skb_queue_empty(&entry->skb_list) || entry->seq != seq ||
1599                     entry->rx_queue != rx_queue ||
1600                     entry->last_frag + 1 != frag)
1601                         continue;
1602
1603                 f_hdr = (struct ieee80211_hdr *)entry->skb_list.next->data;
1604
1605                 /*
1606                  * Check ftype and addresses are equal, else check next fragment
1607                  */
1608                 if (((hdr->frame_control ^ f_hdr->frame_control) &
1609                      cpu_to_le16(IEEE80211_FCTL_FTYPE)) ||
1610                     !ether_addr_equal(hdr->addr1, f_hdr->addr1) ||
1611                     !ether_addr_equal(hdr->addr2, f_hdr->addr2))
1612                         continue;
1613
1614                 if (time_after(jiffies, entry->first_frag_time + 2 * HZ)) {
1615                         __skb_queue_purge(&entry->skb_list);
1616                         continue;
1617                 }
1618                 return entry;
1619         }
1620
1621         return NULL;
1622 }
1623
1624 static ieee80211_rx_result debug_noinline
1625 ieee80211_rx_h_defragment(struct ieee80211_rx_data *rx)
1626 {
1627         struct ieee80211_hdr *hdr;
1628         u16 sc;
1629         __le16 fc;
1630         unsigned int frag, seq;
1631         struct ieee80211_fragment_entry *entry;
1632         struct sk_buff *skb;
1633         struct ieee80211_rx_status *status;
1634
1635         hdr = (struct ieee80211_hdr *)rx->skb->data;
1636         fc = hdr->frame_control;
1637
1638         if (ieee80211_is_ctl(fc))
1639                 return RX_CONTINUE;
1640
1641         sc = le16_to_cpu(hdr->seq_ctrl);
1642         frag = sc & IEEE80211_SCTL_FRAG;
1643
1644         if (likely((!ieee80211_has_morefrags(fc) && frag == 0) ||
1645                    is_multicast_ether_addr(hdr->addr1))) {
1646                 /* not fragmented */
1647                 goto out;
1648         }
1649         I802_DEBUG_INC(rx->local->rx_handlers_fragments);
1650
1651         if (skb_linearize(rx->skb))
1652                 return RX_DROP_UNUSABLE;
1653
1654         /*
1655          *  skb_linearize() might change the skb->data and
1656          *  previously cached variables (in this case, hdr) need to
1657          *  be refreshed with the new data.
1658          */
1659         hdr = (struct ieee80211_hdr *)rx->skb->data;
1660         seq = (sc & IEEE80211_SCTL_SEQ) >> 4;
1661
1662         if (frag == 0) {
1663                 /* This is the first fragment of a new frame. */
1664                 entry = ieee80211_reassemble_add(rx->sdata, frag, seq,
1665                                                  rx->seqno_idx, &(rx->skb));
1666                 if (rx->key && rx->key->conf.cipher == WLAN_CIPHER_SUITE_CCMP &&
1667                     ieee80211_has_protected(fc)) {
1668                         int queue = rx->security_idx;
1669                         /* Store CCMP PN so that we can verify that the next
1670                          * fragment has a sequential PN value. */
1671                         entry->ccmp = 1;
1672                         memcpy(entry->last_pn,
1673                                rx->key->u.ccmp.rx_pn[queue],
1674                                IEEE80211_CCMP_PN_LEN);
1675                 }
1676                 return RX_QUEUED;
1677         }
1678
1679         /* This is a fragment for a frame that should already be pending in
1680          * fragment cache. Add this fragment to the end of the pending entry.
1681          */
1682         entry = ieee80211_reassemble_find(rx->sdata, frag, seq,
1683                                           rx->seqno_idx, hdr);
1684         if (!entry) {
1685                 I802_DEBUG_INC(rx->local->rx_handlers_drop_defrag);
1686                 return RX_DROP_MONITOR;
1687         }
1688
1689         /* Verify that MPDUs within one MSDU have sequential PN values.
1690          * (IEEE 802.11i, 8.3.3.4.5) */
1691         if (entry->ccmp) {
1692                 int i;
1693                 u8 pn[IEEE80211_CCMP_PN_LEN], *rpn;
1694                 int queue;
1695                 if (!rx->key || rx->key->conf.cipher != WLAN_CIPHER_SUITE_CCMP)
1696                         return RX_DROP_UNUSABLE;
1697                 memcpy(pn, entry->last_pn, IEEE80211_CCMP_PN_LEN);
1698                 for (i = IEEE80211_CCMP_PN_LEN - 1; i >= 0; i--) {
1699                         pn[i]++;
1700                         if (pn[i])
1701                                 break;
1702                 }
1703                 queue = rx->security_idx;
1704                 rpn = rx->key->u.ccmp.rx_pn[queue];
1705                 if (memcmp(pn, rpn, IEEE80211_CCMP_PN_LEN))
1706                         return RX_DROP_UNUSABLE;
1707                 memcpy(entry->last_pn, pn, IEEE80211_CCMP_PN_LEN);
1708         }
1709
1710         skb_pull(rx->skb, ieee80211_hdrlen(fc));
1711         __skb_queue_tail(&entry->skb_list, rx->skb);
1712         entry->last_frag = frag;
1713         entry->extra_len += rx->skb->len;
1714         if (ieee80211_has_morefrags(fc)) {
1715                 rx->skb = NULL;
1716                 return RX_QUEUED;
1717         }
1718
1719         rx->skb = __skb_dequeue(&entry->skb_list);
1720         if (skb_tailroom(rx->skb) < entry->extra_len) {
1721                 I802_DEBUG_INC(rx->local->rx_expand_skb_head2);
1722                 if (unlikely(pskb_expand_head(rx->skb, 0, entry->extra_len,
1723                                               GFP_ATOMIC))) {
1724                         I802_DEBUG_INC(rx->local->rx_handlers_drop_defrag);
1725                         __skb_queue_purge(&entry->skb_list);
1726                         return RX_DROP_UNUSABLE;
1727                 }
1728         }
1729         while ((skb = __skb_dequeue(&entry->skb_list))) {
1730                 memcpy(skb_put(rx->skb, skb->len), skb->data, skb->len);
1731                 dev_kfree_skb(skb);
1732         }
1733
1734         /* Complete frame has been reassembled - process it now */
1735         status = IEEE80211_SKB_RXCB(rx->skb);
1736         status->rx_flags |= IEEE80211_RX_FRAGMENTED;
1737
1738  out:
1739         if (rx->sta)
1740                 rx->sta->rx_packets++;
1741         if (is_multicast_ether_addr(hdr->addr1))
1742                 rx->local->dot11MulticastReceivedFrameCount++;
1743         else
1744                 ieee80211_led_rx(rx->local);
1745         return RX_CONTINUE;
1746 }
1747
1748 static int ieee80211_802_1x_port_control(struct ieee80211_rx_data *rx)
1749 {
1750         if (unlikely(!rx->sta || !test_sta_flag(rx->sta, WLAN_STA_AUTHORIZED)))
1751                 return -EACCES;
1752
1753         return 0;
1754 }
1755
1756 static int ieee80211_drop_unencrypted(struct ieee80211_rx_data *rx, __le16 fc)
1757 {
1758         struct sk_buff *skb = rx->skb;
1759         struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
1760
1761         /*
1762          * Pass through unencrypted frames if the hardware has
1763          * decrypted them already.
1764          */
1765         if (status->flag & RX_FLAG_DECRYPTED)
1766                 return 0;
1767
1768         /* Drop unencrypted frames if key is set. */
1769         if (unlikely(!ieee80211_has_protected(fc) &&
1770                      !ieee80211_is_nullfunc(fc) &&
1771                      ieee80211_is_data(fc) &&
1772                      (rx->key || rx->sdata->drop_unencrypted)))
1773                 return -EACCES;
1774
1775         return 0;
1776 }
1777
1778 static int ieee80211_drop_unencrypted_mgmt(struct ieee80211_rx_data *rx)
1779 {
1780         struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
1781         struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(rx->skb);
1782         __le16 fc = hdr->frame_control;
1783
1784         /*
1785          * Pass through unencrypted frames if the hardware has
1786          * decrypted them already.
1787          */
1788         if (status->flag & RX_FLAG_DECRYPTED)
1789                 return 0;
1790
1791         if (rx->sta && test_sta_flag(rx->sta, WLAN_STA_MFP)) {
1792                 if (unlikely(!ieee80211_has_protected(fc) &&
1793                              ieee80211_is_unicast_robust_mgmt_frame(rx->skb) &&
1794                              rx->key)) {
1795                         if (ieee80211_is_deauth(fc) ||
1796                             ieee80211_is_disassoc(fc))
1797                                 cfg80211_rx_unprot_mlme_mgmt(rx->sdata->dev,
1798                                                              rx->skb->data,
1799                                                              rx->skb->len);
1800                         return -EACCES;
1801                 }
1802                 /* BIP does not use Protected field, so need to check MMIE */
1803                 if (unlikely(ieee80211_is_multicast_robust_mgmt_frame(rx->skb) &&
1804                              ieee80211_get_mmie_keyidx(rx->skb) < 0)) {
1805                         if (ieee80211_is_deauth(fc) ||
1806                             ieee80211_is_disassoc(fc))
1807                                 cfg80211_rx_unprot_mlme_mgmt(rx->sdata->dev,
1808                                                              rx->skb->data,
1809                                                              rx->skb->len);
1810                         return -EACCES;
1811                 }
1812                 /*
1813                  * When using MFP, Action frames are not allowed prior to
1814                  * having configured keys.
1815                  */
1816                 if (unlikely(ieee80211_is_action(fc) && !rx->key &&
1817                              ieee80211_is_robust_mgmt_frame(rx->skb)))
1818                         return -EACCES;
1819         }
1820
1821         return 0;
1822 }
1823
1824 static int
1825 __ieee80211_data_to_8023(struct ieee80211_rx_data *rx, bool *port_control)
1826 {
1827         struct ieee80211_sub_if_data *sdata = rx->sdata;
1828         struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
1829         bool check_port_control = false;
1830         struct ethhdr *ehdr;
1831         int ret;
1832
1833         *port_control = false;
1834         if (ieee80211_has_a4(hdr->frame_control) &&
1835             sdata->vif.type == NL80211_IFTYPE_AP_VLAN && !sdata->u.vlan.sta)
1836                 return -1;
1837
1838         if (sdata->vif.type == NL80211_IFTYPE_STATION &&
1839             !!sdata->u.mgd.use_4addr != !!ieee80211_has_a4(hdr->frame_control)) {
1840
1841                 if (!sdata->u.mgd.use_4addr)
1842                         return -1;
1843                 else
1844                         check_port_control = true;
1845         }
1846
1847         if (is_multicast_ether_addr(hdr->addr1) &&
1848             sdata->vif.type == NL80211_IFTYPE_AP_VLAN && sdata->u.vlan.sta)
1849                 return -1;
1850
1851         ret = ieee80211_data_to_8023(rx->skb, sdata->vif.addr, sdata->vif.type);
1852         if (ret < 0)
1853                 return ret;
1854
1855         ehdr = (struct ethhdr *) rx->skb->data;
1856         if (ehdr->h_proto == rx->sdata->control_port_protocol)
1857                 *port_control = true;
1858         else if (check_port_control)
1859                 return -1;
1860
1861         return 0;
1862 }
1863
1864 /*
1865  * requires that rx->skb is a frame with ethernet header
1866  */
1867 static bool ieee80211_frame_allowed(struct ieee80211_rx_data *rx, __le16 fc)
1868 {
1869         static const u8 pae_group_addr[ETH_ALEN] __aligned(2)
1870                 = { 0x01, 0x80, 0xC2, 0x00, 0x00, 0x03 };
1871         struct ethhdr *ehdr = (struct ethhdr *) rx->skb->data;
1872
1873         /*
1874          * Allow EAPOL frames to us/the PAE group address regardless
1875          * of whether the frame was encrypted or not.
1876          */
1877         if (ehdr->h_proto == rx->sdata->control_port_protocol &&
1878             (ether_addr_equal(ehdr->h_dest, rx->sdata->vif.addr) ||
1879              ether_addr_equal(ehdr->h_dest, pae_group_addr)))
1880                 return true;
1881
1882         if (ieee80211_802_1x_port_control(rx) ||
1883             ieee80211_drop_unencrypted(rx, fc))
1884                 return false;
1885
1886         return true;
1887 }
1888
1889 /*
1890  * requires that rx->skb is a frame with ethernet header
1891  */
1892 static void
1893 ieee80211_deliver_skb(struct ieee80211_rx_data *rx)
1894 {
1895         struct ieee80211_sub_if_data *sdata = rx->sdata;
1896         struct net_device *dev = sdata->dev;
1897         struct sk_buff *skb, *xmit_skb;
1898         struct ethhdr *ehdr = (struct ethhdr *) rx->skb->data;
1899         struct sta_info *dsta;
1900         struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(rx->skb);
1901
1902         skb = rx->skb;
1903         xmit_skb = NULL;
1904
1905         if ((sdata->vif.type == NL80211_IFTYPE_AP ||
1906              sdata->vif.type == NL80211_IFTYPE_AP_VLAN) &&
1907             !(sdata->flags & IEEE80211_SDATA_DONT_BRIDGE_PACKETS) &&
1908             (status->rx_flags & IEEE80211_RX_RA_MATCH) &&
1909             (sdata->vif.type != NL80211_IFTYPE_AP_VLAN || !sdata->u.vlan.sta)) {
1910                 if (is_multicast_ether_addr(ehdr->h_dest)) {
1911                         /*
1912                          * send multicast frames both to higher layers in
1913                          * local net stack and back to the wireless medium
1914                          */
1915                         xmit_skb = skb_copy(skb, GFP_ATOMIC);
1916                         if (!xmit_skb)
1917                                 net_info_ratelimited("%s: failed to clone multicast frame\n",
1918                                                     dev->name);
1919                 } else {
1920                         dsta = sta_info_get(sdata, skb->data);
1921                         if (dsta) {
1922                                 /*
1923                                  * The destination station is associated to
1924                                  * this AP (in this VLAN), so send the frame
1925                                  * directly to it and do not pass it to local
1926                                  * net stack.
1927                                  */
1928                                 xmit_skb = skb;
1929                                 skb = NULL;
1930                         }
1931                 }
1932         }
1933
1934 #ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
1935         if (skb) {
1936                 /* 'align' will only take the values 0 or 2 here since all
1937                  * frames are required to be aligned to 2-byte boundaries
1938                  * when being passed to mac80211; the code here works just
1939                  * as well if that isn't true, but mac80211 assumes it can
1940                  * access fields as 2-byte aligned (e.g. for ether_addr_equal)
1941                  */
1942                 int align;
1943
1944                 align = (unsigned long)(skb->data + sizeof(struct ethhdr)) & 3;
1945                 if (align) {
1946                         if (WARN_ON(skb_headroom(skb) < 3)) {
1947                                 dev_kfree_skb(skb);
1948                                 skb = NULL;
1949                         } else {
1950                                 u8 *data = skb->data;
1951                                 size_t len = skb_headlen(skb);
1952                                 skb->data -= align;
1953                                 memmove(skb->data, data, len);
1954                                 skb_set_tail_pointer(skb, len);
1955                         }
1956                 }
1957         }
1958 #endif
1959
1960         if (skb) {
1961                 /* deliver to local stack */
1962                 skb->protocol = eth_type_trans(skb, dev);
1963                 memset(skb->cb, 0, sizeof(skb->cb));
1964                 if (rx->local->napi)
1965                         napi_gro_receive(rx->local->napi, skb);
1966                 else
1967                         netif_receive_skb(skb);
1968         }
1969
1970         if (xmit_skb) {
1971                 /*
1972                  * Send to wireless media and increase priority by 256 to
1973                  * keep the received priority instead of reclassifying
1974                  * the frame (see cfg80211_classify8021d).
1975                  */
1976                 xmit_skb->priority += 256;
1977                 xmit_skb->protocol = htons(ETH_P_802_3);
1978                 skb_reset_network_header(xmit_skb);
1979                 skb_reset_mac_header(xmit_skb);
1980                 dev_queue_xmit(xmit_skb);
1981         }
1982 }
1983
1984 static ieee80211_rx_result debug_noinline
1985 ieee80211_rx_h_amsdu(struct ieee80211_rx_data *rx)
1986 {
1987         struct net_device *dev = rx->sdata->dev;
1988         struct sk_buff *skb = rx->skb;
1989         struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
1990         __le16 fc = hdr->frame_control;
1991         struct sk_buff_head frame_list;
1992         struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(rx->skb);
1993
1994         if (unlikely(!ieee80211_is_data(fc)))
1995                 return RX_CONTINUE;
1996
1997         if (unlikely(!ieee80211_is_data_present(fc)))
1998                 return RX_DROP_MONITOR;
1999
2000         if (!(status->rx_flags & IEEE80211_RX_AMSDU))
2001                 return RX_CONTINUE;
2002
2003         if (ieee80211_has_a4(hdr->frame_control) &&
2004             rx->sdata->vif.type == NL80211_IFTYPE_AP_VLAN &&
2005             !rx->sdata->u.vlan.sta)
2006                 return RX_DROP_UNUSABLE;
2007
2008         if (is_multicast_ether_addr(hdr->addr1) &&
2009             ((rx->sdata->vif.type == NL80211_IFTYPE_AP_VLAN &&
2010               rx->sdata->u.vlan.sta) ||
2011              (rx->sdata->vif.type == NL80211_IFTYPE_STATION &&
2012               rx->sdata->u.mgd.use_4addr)))
2013                 return RX_DROP_UNUSABLE;
2014
2015         skb->dev = dev;
2016         __skb_queue_head_init(&frame_list);
2017
2018         if (skb_linearize(skb))
2019                 return RX_DROP_UNUSABLE;
2020
2021         ieee80211_amsdu_to_8023s(skb, &frame_list, dev->dev_addr,
2022                                  rx->sdata->vif.type,
2023                                  rx->local->hw.extra_tx_headroom, true);
2024
2025         while (!skb_queue_empty(&frame_list)) {
2026                 rx->skb = __skb_dequeue(&frame_list);
2027
2028                 if (!ieee80211_frame_allowed(rx, fc)) {
2029                         dev_kfree_skb(rx->skb);
2030                         continue;
2031                 }
2032                 dev->stats.rx_packets++;
2033                 dev->stats.rx_bytes += rx->skb->len;
2034
2035                 ieee80211_deliver_skb(rx);
2036         }
2037
2038         return RX_QUEUED;
2039 }
2040
2041 #ifdef CONFIG_MAC80211_MESH
2042 static ieee80211_rx_result
2043 ieee80211_rx_h_mesh_fwding(struct ieee80211_rx_data *rx)
2044 {
2045         struct ieee80211_hdr *fwd_hdr, *hdr;
2046         struct ieee80211_tx_info *info;
2047         struct ieee80211s_hdr *mesh_hdr;
2048         struct sk_buff *skb = rx->skb, *fwd_skb;
2049         struct ieee80211_local *local = rx->local;
2050         struct ieee80211_sub_if_data *sdata = rx->sdata;
2051         struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
2052         struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
2053         u16 q, hdrlen;
2054
2055         hdr = (struct ieee80211_hdr *) skb->data;
2056         hdrlen = ieee80211_hdrlen(hdr->frame_control);
2057
2058         /* make sure fixed part of mesh header is there, also checks skb len */
2059         if (!pskb_may_pull(rx->skb, hdrlen + 6))
2060                 return RX_DROP_MONITOR;
2061
2062         mesh_hdr = (struct ieee80211s_hdr *) (skb->data + hdrlen);
2063
2064         /* make sure full mesh header is there, also checks skb len */
2065         if (!pskb_may_pull(rx->skb,
2066                            hdrlen + ieee80211_get_mesh_hdrlen(mesh_hdr)))
2067                 return RX_DROP_MONITOR;
2068
2069         /* reload pointers */
2070         hdr = (struct ieee80211_hdr *) skb->data;
2071         mesh_hdr = (struct ieee80211s_hdr *) (skb->data + hdrlen);
2072
2073         /* frame is in RMC, don't forward */
2074         if (ieee80211_is_data(hdr->frame_control) &&
2075             is_multicast_ether_addr(hdr->addr1) &&
2076             mesh_rmc_check(rx->sdata, hdr->addr3, mesh_hdr))
2077                 return RX_DROP_MONITOR;
2078
2079         if (!ieee80211_is_data(hdr->frame_control) ||
2080             !(status->rx_flags & IEEE80211_RX_RA_MATCH))
2081                 return RX_CONTINUE;
2082
2083         if (!mesh_hdr->ttl)
2084                 return RX_DROP_MONITOR;
2085
2086         if (mesh_hdr->flags & MESH_FLAGS_AE) {
2087                 struct mesh_path *mppath;
2088                 char *proxied_addr;
2089                 char *mpp_addr;
2090
2091                 if (is_multicast_ether_addr(hdr->addr1)) {
2092                         mpp_addr = hdr->addr3;
2093                         proxied_addr = mesh_hdr->eaddr1;
2094                 } else if (mesh_hdr->flags & MESH_FLAGS_AE_A5_A6) {
2095                         /* has_a4 already checked in ieee80211_rx_mesh_check */
2096                         mpp_addr = hdr->addr4;
2097                         proxied_addr = mesh_hdr->eaddr2;
2098                 } else {
2099                         return RX_DROP_MONITOR;
2100                 }
2101
2102                 rcu_read_lock();
2103                 mppath = mpp_path_lookup(sdata, proxied_addr);
2104                 if (!mppath) {
2105                         mpp_path_add(sdata, proxied_addr, mpp_addr);
2106                 } else {
2107                         spin_lock_bh(&mppath->state_lock);
2108                         if (!ether_addr_equal(mppath->mpp, mpp_addr))
2109                                 memcpy(mppath->mpp, mpp_addr, ETH_ALEN);
2110                         spin_unlock_bh(&mppath->state_lock);
2111                 }
2112                 rcu_read_unlock();
2113         }
2114
2115         /* Frame has reached destination.  Don't forward */
2116         if (!is_multicast_ether_addr(hdr->addr1) &&
2117             ether_addr_equal(sdata->vif.addr, hdr->addr3))
2118                 return RX_CONTINUE;
2119
2120         q = ieee80211_select_queue_80211(sdata, skb, hdr);
2121         if (ieee80211_queue_stopped(&local->hw, q)) {
2122                 IEEE80211_IFSTA_MESH_CTR_INC(ifmsh, dropped_frames_congestion);
2123                 return RX_DROP_MONITOR;
2124         }
2125         skb_set_queue_mapping(skb, q);
2126
2127         if (!--mesh_hdr->ttl) {
2128                 IEEE80211_IFSTA_MESH_CTR_INC(ifmsh, dropped_frames_ttl);
2129                 goto out;
2130         }
2131
2132         if (!ifmsh->mshcfg.dot11MeshForwarding)
2133                 goto out;
2134
2135         fwd_skb = skb_copy(skb, GFP_ATOMIC);
2136         if (!fwd_skb) {
2137                 net_info_ratelimited("%s: failed to clone mesh frame\n",
2138                                     sdata->name);
2139                 goto out;
2140         }
2141
2142         fwd_hdr =  (struct ieee80211_hdr *) fwd_skb->data;
2143         fwd_hdr->frame_control &= ~cpu_to_le16(IEEE80211_FCTL_RETRY);
2144         info = IEEE80211_SKB_CB(fwd_skb);
2145         memset(info, 0, sizeof(*info));
2146         info->flags |= IEEE80211_TX_INTFL_NEED_TXPROCESSING;
2147         info->control.vif = &rx->sdata->vif;
2148         info->control.jiffies = jiffies;
2149         if (is_multicast_ether_addr(fwd_hdr->addr1)) {
2150                 IEEE80211_IFSTA_MESH_CTR_INC(ifmsh, fwded_mcast);
2151                 memcpy(fwd_hdr->addr2, sdata->vif.addr, ETH_ALEN);
2152                 /* update power mode indication when forwarding */
2153                 ieee80211_mps_set_frame_flags(sdata, NULL, fwd_hdr);
2154         } else if (!mesh_nexthop_lookup(sdata, fwd_skb)) {
2155                 /* mesh power mode flags updated in mesh_nexthop_lookup */
2156                 IEEE80211_IFSTA_MESH_CTR_INC(ifmsh, fwded_unicast);
2157         } else {
2158                 /* unable to resolve next hop */
2159                 mesh_path_error_tx(sdata, ifmsh->mshcfg.element_ttl,
2160                                    fwd_hdr->addr3, 0,
2161                                    WLAN_REASON_MESH_PATH_NOFORWARD,
2162                                    fwd_hdr->addr2);
2163                 IEEE80211_IFSTA_MESH_CTR_INC(ifmsh, dropped_frames_no_route);
2164                 kfree_skb(fwd_skb);
2165                 return RX_DROP_MONITOR;
2166         }
2167
2168         IEEE80211_IFSTA_MESH_CTR_INC(ifmsh, fwded_frames);
2169         ieee80211_add_pending_skb(local, fwd_skb);
2170  out:
2171         if (is_multicast_ether_addr(hdr->addr1) ||
2172             sdata->dev->flags & IFF_PROMISC)
2173                 return RX_CONTINUE;
2174         else
2175                 return RX_DROP_MONITOR;
2176 }
2177 #endif
2178
2179 static ieee80211_rx_result debug_noinline
2180 ieee80211_rx_h_data(struct ieee80211_rx_data *rx)
2181 {
2182         struct ieee80211_sub_if_data *sdata = rx->sdata;
2183         struct ieee80211_local *local = rx->local;
2184         struct net_device *dev = sdata->dev;
2185         struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
2186         __le16 fc = hdr->frame_control;
2187         bool port_control;
2188         int err;
2189
2190         if (unlikely(!ieee80211_is_data(hdr->frame_control)))
2191                 return RX_CONTINUE;
2192
2193         if (unlikely(!ieee80211_is_data_present(hdr->frame_control)))
2194                 return RX_DROP_MONITOR;
2195
2196         /*
2197          * Send unexpected-4addr-frame event to hostapd. For older versions,
2198          * also drop the frame to cooked monitor interfaces.
2199          */
2200         if (ieee80211_has_a4(hdr->frame_control) &&
2201             sdata->vif.type == NL80211_IFTYPE_AP) {
2202                 if (rx->sta &&
2203                     !test_and_set_sta_flag(rx->sta, WLAN_STA_4ADDR_EVENT))
2204                         cfg80211_rx_unexpected_4addr_frame(
2205                                 rx->sdata->dev, rx->sta->sta.addr, GFP_ATOMIC);
2206                 return RX_DROP_MONITOR;
2207         }
2208
2209         err = __ieee80211_data_to_8023(rx, &port_control);
2210         if (unlikely(err))
2211                 return RX_DROP_UNUSABLE;
2212
2213         if (!ieee80211_frame_allowed(rx, fc))
2214                 return RX_DROP_MONITOR;
2215
2216         if (rx->sdata->vif.type == NL80211_IFTYPE_AP_VLAN &&
2217             unlikely(port_control) && sdata->bss) {
2218                 sdata = container_of(sdata->bss, struct ieee80211_sub_if_data,
2219                                      u.ap);
2220                 dev = sdata->dev;
2221                 rx->sdata = sdata;
2222         }
2223
2224         rx->skb->dev = dev;
2225
2226         dev->stats.rx_packets++;
2227         dev->stats.rx_bytes += rx->skb->len;
2228
2229         if (local->ps_sdata && local->hw.conf.dynamic_ps_timeout > 0 &&
2230             !is_multicast_ether_addr(
2231                     ((struct ethhdr *)rx->skb->data)->h_dest) &&
2232             (!local->scanning &&
2233              !test_bit(SDATA_STATE_OFFCHANNEL, &sdata->state))) {
2234                         mod_timer(&local->dynamic_ps_timer, jiffies +
2235                          msecs_to_jiffies(local->hw.conf.dynamic_ps_timeout));
2236         }
2237
2238         ieee80211_deliver_skb(rx);
2239
2240         return RX_QUEUED;
2241 }
2242
2243 static ieee80211_rx_result debug_noinline
2244 ieee80211_rx_h_ctrl(struct ieee80211_rx_data *rx, struct sk_buff_head *frames)
2245 {
2246         struct sk_buff *skb = rx->skb;
2247         struct ieee80211_bar *bar = (struct ieee80211_bar *)skb->data;
2248         struct tid_ampdu_rx *tid_agg_rx;
2249         u16 start_seq_num;
2250         u16 tid;
2251
2252         if (likely(!ieee80211_is_ctl(bar->frame_control)))
2253                 return RX_CONTINUE;
2254
2255         if (ieee80211_is_back_req(bar->frame_control)) {
2256                 struct {
2257                         __le16 control, start_seq_num;
2258                 } __packed bar_data;
2259
2260                 if (!rx->sta)
2261                         return RX_DROP_MONITOR;
2262
2263                 if (skb_copy_bits(skb, offsetof(struct ieee80211_bar, control),
2264                                   &bar_data, sizeof(bar_data)))
2265                         return RX_DROP_MONITOR;
2266
2267                 tid = le16_to_cpu(bar_data.control) >> 12;
2268
2269                 tid_agg_rx = rcu_dereference(rx->sta->ampdu_mlme.tid_rx[tid]);
2270                 if (!tid_agg_rx)
2271                         return RX_DROP_MONITOR;
2272
2273                 start_seq_num = le16_to_cpu(bar_data.start_seq_num) >> 4;
2274
2275                 /* reset session timer */
2276                 if (tid_agg_rx->timeout)
2277                         mod_timer(&tid_agg_rx->session_timer,
2278                                   TU_TO_EXP_TIME(tid_agg_rx->timeout));
2279
2280                 spin_lock(&tid_agg_rx->reorder_lock);
2281                 /* release stored frames up to start of BAR */
2282                 ieee80211_release_reorder_frames(rx->sdata, tid_agg_rx,
2283                                                  start_seq_num, frames);
2284                 spin_unlock(&tid_agg_rx->reorder_lock);
2285
2286                 kfree_skb(skb);
2287                 return RX_QUEUED;
2288         }
2289
2290         /*
2291          * After this point, we only want management frames,
2292          * so we can drop all remaining control frames to
2293          * cooked monitor interfaces.
2294          */
2295         return RX_DROP_MONITOR;
2296 }
2297
2298 static void ieee80211_process_sa_query_req(struct ieee80211_sub_if_data *sdata,
2299                                            struct ieee80211_mgmt *mgmt,
2300                                            size_t len)
2301 {
2302         struct ieee80211_local *local = sdata->local;
2303         struct sk_buff *skb;
2304         struct ieee80211_mgmt *resp;
2305
2306         if (!ether_addr_equal(mgmt->da, sdata->vif.addr)) {
2307                 /* Not to own unicast address */
2308                 return;
2309         }
2310
2311         if (!ether_addr_equal(mgmt->sa, sdata->u.mgd.bssid) ||
2312             !ether_addr_equal(mgmt->bssid, sdata->u.mgd.bssid)) {
2313                 /* Not from the current AP or not associated yet. */
2314                 return;
2315         }
2316
2317         if (len < 24 + 1 + sizeof(resp->u.action.u.sa_query)) {
2318                 /* Too short SA Query request frame */
2319                 return;
2320         }
2321
2322         skb = dev_alloc_skb(sizeof(*resp) + local->hw.extra_tx_headroom);
2323         if (skb == NULL)
2324                 return;
2325
2326         skb_reserve(skb, local->hw.extra_tx_headroom);
2327         resp = (struct ieee80211_mgmt *) skb_put(skb, 24);
2328         memset(resp, 0, 24);
2329         memcpy(resp->da, mgmt->sa, ETH_ALEN);
2330         memcpy(resp->sa, sdata->vif.addr, ETH_ALEN);
2331         memcpy(resp->bssid, sdata->u.mgd.bssid, ETH_ALEN);
2332         resp->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
2333                                           IEEE80211_STYPE_ACTION);
2334         skb_put(skb, 1 + sizeof(resp->u.action.u.sa_query));
2335         resp->u.action.category = WLAN_CATEGORY_SA_QUERY;
2336         resp->u.action.u.sa_query.action = WLAN_ACTION_SA_QUERY_RESPONSE;
2337         memcpy(resp->u.action.u.sa_query.trans_id,
2338                mgmt->u.action.u.sa_query.trans_id,
2339                WLAN_SA_QUERY_TR_ID_LEN);
2340
2341         ieee80211_tx_skb(sdata, skb);
2342 }
2343
2344 static ieee80211_rx_result debug_noinline
2345 ieee80211_rx_h_mgmt_check(struct ieee80211_rx_data *rx)
2346 {
2347         struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *) rx->skb->data;
2348         struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(rx->skb);
2349
2350         /*
2351          * From here on, look only at management frames.
2352          * Data and control frames are already handled,
2353          * and unknown (reserved) frames are useless.
2354          */
2355         if (rx->skb->len < 24)
2356                 return RX_DROP_MONITOR;
2357
2358         if (!ieee80211_is_mgmt(mgmt->frame_control))
2359                 return RX_DROP_MONITOR;
2360
2361         if (rx->sdata->vif.type == NL80211_IFTYPE_AP &&
2362             ieee80211_is_beacon(mgmt->frame_control) &&
2363             !(rx->flags & IEEE80211_RX_BEACON_REPORTED)) {
2364                 int sig = 0;
2365
2366                 if (rx->local->hw.flags & IEEE80211_HW_SIGNAL_DBM)
2367                         sig = status->signal;
2368
2369                 cfg80211_report_obss_beacon(rx->local->hw.wiphy,
2370                                             rx->skb->data, rx->skb->len,
2371                                             status->freq, sig);
2372                 rx->flags |= IEEE80211_RX_BEACON_REPORTED;
2373         }
2374
2375         if (!(status->rx_flags & IEEE80211_RX_RA_MATCH))
2376                 return RX_DROP_MONITOR;
2377
2378         if (ieee80211_drop_unencrypted_mgmt(rx))
2379                 return RX_DROP_UNUSABLE;
2380
2381         return RX_CONTINUE;
2382 }
2383
2384 static ieee80211_rx_result debug_noinline
2385 ieee80211_rx_h_action(struct ieee80211_rx_data *rx)
2386 {
2387         struct ieee80211_local *local = rx->local;
2388         struct ieee80211_sub_if_data *sdata = rx->sdata;
2389         struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *) rx->skb->data;
2390         struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(rx->skb);
2391         int len = rx->skb->len;
2392
2393         if (!ieee80211_is_action(mgmt->frame_control))
2394                 return RX_CONTINUE;
2395
2396         /* drop too small frames */
2397         if (len < IEEE80211_MIN_ACTION_SIZE)
2398                 return RX_DROP_UNUSABLE;
2399
2400         if (!rx->sta && mgmt->u.action.category != WLAN_CATEGORY_PUBLIC &&
2401             mgmt->u.action.category != WLAN_CATEGORY_SELF_PROTECTED &&
2402             mgmt->u.action.category != WLAN_CATEGORY_SPECTRUM_MGMT)
2403                 return RX_DROP_UNUSABLE;
2404
2405         if (!(status->rx_flags & IEEE80211_RX_RA_MATCH))
2406                 return RX_DROP_UNUSABLE;
2407
2408         switch (mgmt->u.action.category) {
2409         case WLAN_CATEGORY_HT:
2410                 /* reject HT action frames from stations not supporting HT */
2411                 if (!rx->sta->sta.ht_cap.ht_supported)
2412                         goto invalid;
2413
2414                 if (sdata->vif.type != NL80211_IFTYPE_STATION &&
2415                     sdata->vif.type != NL80211_IFTYPE_MESH_POINT &&
2416                     sdata->vif.type != NL80211_IFTYPE_AP_VLAN &&
2417                     sdata->vif.type != NL80211_IFTYPE_AP &&
2418                     sdata->vif.type != NL80211_IFTYPE_ADHOC)
2419                         break;
2420
2421                 /* verify action & smps_control/chanwidth are present */
2422                 if (len < IEEE80211_MIN_ACTION_SIZE + 2)
2423                         goto invalid;
2424
2425                 switch (mgmt->u.action.u.ht_smps.action) {
2426                 case WLAN_HT_ACTION_SMPS: {
2427                         struct ieee80211_supported_band *sband;
2428                         enum ieee80211_smps_mode smps_mode;
2429
2430                         /* convert to HT capability */
2431                         switch (mgmt->u.action.u.ht_smps.smps_control) {
2432                         case WLAN_HT_SMPS_CONTROL_DISABLED:
2433                                 smps_mode = IEEE80211_SMPS_OFF;
2434                                 break;
2435                         case WLAN_HT_SMPS_CONTROL_STATIC:
2436                                 smps_mode = IEEE80211_SMPS_STATIC;
2437                                 break;
2438                         case WLAN_HT_SMPS_CONTROL_DYNAMIC:
2439                                 smps_mode = IEEE80211_SMPS_DYNAMIC;
2440                                 break;
2441                         default:
2442                                 goto invalid;
2443                         }
2444
2445                         /* if no change do nothing */
2446                         if (rx->sta->sta.smps_mode == smps_mode)
2447                                 goto handled;
2448                         rx->sta->sta.smps_mode = smps_mode;
2449
2450                         sband = rx->local->hw.wiphy->bands[status->band];
2451
2452                         rate_control_rate_update(local, sband, rx->sta,
2453                                                  IEEE80211_RC_SMPS_CHANGED);
2454                         goto handled;
2455                 }
2456                 case WLAN_HT_ACTION_NOTIFY_CHANWIDTH: {
2457                         struct ieee80211_supported_band *sband;
2458                         u8 chanwidth = mgmt->u.action.u.ht_notify_cw.chanwidth;
2459                         enum ieee80211_sta_rx_bandwidth new_bw;
2460
2461                         /* If it doesn't support 40 MHz it can't change ... */
2462                         if (!(rx->sta->sta.ht_cap.cap &
2463                                         IEEE80211_HT_CAP_SUP_WIDTH_20_40))
2464                                 goto handled;
2465
2466                         if (chanwidth == IEEE80211_HT_CHANWIDTH_20MHZ)
2467                                 new_bw = IEEE80211_STA_RX_BW_20;
2468                         else
2469                                 new_bw = ieee80211_sta_cur_vht_bw(rx->sta);
2470
2471                         if (rx->sta->sta.bandwidth == new_bw)
2472                                 goto handled;
2473
2474                         sband = rx->local->hw.wiphy->bands[status->band];
2475
2476                         rate_control_rate_update(local, sband, rx->sta,
2477                                                  IEEE80211_RC_BW_CHANGED);
2478                         goto handled;
2479                 }
2480                 default:
2481                         goto invalid;
2482                 }
2483
2484                 break;
2485         case WLAN_CATEGORY_PUBLIC:
2486                 if (len < IEEE80211_MIN_ACTION_SIZE + 1)
2487                         goto invalid;
2488                 if (sdata->vif.type != NL80211_IFTYPE_STATION)
2489                         break;
2490                 if (!rx->sta)
2491                         break;
2492                 if (!ether_addr_equal(mgmt->bssid, sdata->u.mgd.bssid))
2493                         break;
2494                 if (mgmt->u.action.u.ext_chan_switch.action_code !=
2495                                 WLAN_PUB_ACTION_EXT_CHANSW_ANN)
2496                         break;
2497                 if (len < offsetof(struct ieee80211_mgmt,
2498                                    u.action.u.ext_chan_switch.variable))
2499                         goto invalid;
2500                 goto queue;
2501         case WLAN_CATEGORY_VHT:
2502                 if (sdata->vif.type != NL80211_IFTYPE_STATION &&
2503                     sdata->vif.type != NL80211_IFTYPE_MESH_POINT &&
2504                     sdata->vif.type != NL80211_IFTYPE_AP_VLAN &&
2505                     sdata->vif.type != NL80211_IFTYPE_AP &&
2506                     sdata->vif.type != NL80211_IFTYPE_ADHOC)
2507                         break;
2508
2509                 /* verify action code is present */
2510                 if (len < IEEE80211_MIN_ACTION_SIZE + 1)
2511                         goto invalid;
2512
2513                 switch (mgmt->u.action.u.vht_opmode_notif.action_code) {
2514                 case WLAN_VHT_ACTION_OPMODE_NOTIF: {
2515                         u8 opmode;
2516
2517                         /* verify opmode is present */
2518                         if (len < IEEE80211_MIN_ACTION_SIZE + 2)
2519                                 goto invalid;
2520
2521                         opmode = mgmt->u.action.u.vht_opmode_notif.operating_mode;
2522
2523                         ieee80211_vht_handle_opmode(rx->sdata, rx->sta,
2524                                                     opmode, status->band,
2525                                                     false);
2526                         goto handled;
2527                 }
2528                 default:
2529                         break;
2530                 }
2531                 break;
2532         case WLAN_CATEGORY_BACK:
2533                 if (sdata->vif.type != NL80211_IFTYPE_STATION &&
2534                     sdata->vif.type != NL80211_IFTYPE_MESH_POINT &&
2535                     sdata->vif.type != NL80211_IFTYPE_AP_VLAN &&
2536                     sdata->vif.type != NL80211_IFTYPE_AP &&
2537                     sdata->vif.type != NL80211_IFTYPE_ADHOC)
2538                         break;
2539
2540                 /* verify action_code is present */
2541                 if (len < IEEE80211_MIN_ACTION_SIZE + 1)
2542                         break;
2543
2544                 switch (mgmt->u.action.u.addba_req.action_code) {
2545                 case WLAN_ACTION_ADDBA_REQ:
2546                         if (len < (IEEE80211_MIN_ACTION_SIZE +
2547                                    sizeof(mgmt->u.action.u.addba_req)))
2548                                 goto invalid;
2549                         break;
2550                 case WLAN_ACTION_ADDBA_RESP:
2551                         if (len < (IEEE80211_MIN_ACTION_SIZE +
2552                                    sizeof(mgmt->u.action.u.addba_resp)))
2553                                 goto invalid;
2554                         break;
2555                 case WLAN_ACTION_DELBA:
2556                         if (len < (IEEE80211_MIN_ACTION_SIZE +
2557                                    sizeof(mgmt->u.action.u.delba)))
2558                                 goto invalid;
2559                         break;
2560                 default:
2561                         goto invalid;
2562                 }
2563
2564                 goto queue;
2565         case WLAN_CATEGORY_SPECTRUM_MGMT:
2566                 /* verify action_code is present */
2567                 if (len < IEEE80211_MIN_ACTION_SIZE + 1)
2568                         break;
2569
2570                 switch (mgmt->u.action.u.measurement.action_code) {
2571                 case WLAN_ACTION_SPCT_MSR_REQ:
2572                         if (status->band != IEEE80211_BAND_5GHZ)
2573                                 break;
2574
2575                         if (len < (IEEE80211_MIN_ACTION_SIZE +
2576                                    sizeof(mgmt->u.action.u.measurement)))
2577                                 break;
2578
2579                         if (sdata->vif.type != NL80211_IFTYPE_STATION)
2580                                 break;
2581
2582                         ieee80211_process_measurement_req(sdata, mgmt, len);
2583                         goto handled;
2584                 case WLAN_ACTION_SPCT_CHL_SWITCH: {
2585                         u8 *bssid;
2586                         if (len < (IEEE80211_MIN_ACTION_SIZE +
2587                                    sizeof(mgmt->u.action.u.chan_switch)))
2588                                 break;
2589
2590                         if (sdata->vif.type != NL80211_IFTYPE_STATION &&
2591                             sdata->vif.type != NL80211_IFTYPE_ADHOC &&
2592                             sdata->vif.type != NL80211_IFTYPE_MESH_POINT)
2593                                 break;
2594
2595                         if (sdata->vif.type == NL80211_IFTYPE_STATION)
2596                                 bssid = sdata->u.mgd.bssid;
2597                         else if (sdata->vif.type == NL80211_IFTYPE_ADHOC)
2598                                 bssid = sdata->u.ibss.bssid;
2599                         else if (sdata->vif.type == NL80211_IFTYPE_MESH_POINT)
2600                                 bssid = mgmt->sa;
2601                         else
2602                                 break;
2603
2604                         if (!ether_addr_equal(mgmt->bssid, bssid))
2605                                 break;
2606
2607                         goto queue;
2608                         }
2609                 }
2610                 break;
2611         case WLAN_CATEGORY_SA_QUERY:
2612                 if (len < (IEEE80211_MIN_ACTION_SIZE +
2613                            sizeof(mgmt->u.action.u.sa_query)))
2614                         break;
2615
2616                 switch (mgmt->u.action.u.sa_query.action) {
2617                 case WLAN_ACTION_SA_QUERY_REQUEST:
2618                         if (sdata->vif.type != NL80211_IFTYPE_STATION)
2619                                 break;
2620                         ieee80211_process_sa_query_req(sdata, mgmt, len);
2621                         goto handled;
2622                 }
2623                 break;
2624         case WLAN_CATEGORY_SELF_PROTECTED:
2625                 if (len < (IEEE80211_MIN_ACTION_SIZE +
2626                            sizeof(mgmt->u.action.u.self_prot.action_code)))
2627                         break;
2628
2629                 switch (mgmt->u.action.u.self_prot.action_code) {
2630                 case WLAN_SP_MESH_PEERING_OPEN:
2631                 case WLAN_SP_MESH_PEERING_CLOSE:
2632                 case WLAN_SP_MESH_PEERING_CONFIRM:
2633                         if (!ieee80211_vif_is_mesh(&sdata->vif))
2634                                 goto invalid;
2635                         if (sdata->u.mesh.user_mpm)
2636                                 /* userspace handles this frame */
2637                                 break;
2638                         goto queue;
2639                 case WLAN_SP_MGK_INFORM:
2640                 case WLAN_SP_MGK_ACK:
2641                         if (!ieee80211_vif_is_mesh(&sdata->vif))
2642                                 goto invalid;
2643                         break;
2644                 }
2645                 break;
2646         case WLAN_CATEGORY_MESH_ACTION:
2647                 if (len < (IEEE80211_MIN_ACTION_SIZE +
2648                            sizeof(mgmt->u.action.u.mesh_action.action_code)))
2649                         break;
2650
2651                 if (!ieee80211_vif_is_mesh(&sdata->vif))
2652                         break;
2653                 if (mesh_action_is_path_sel(mgmt) &&
2654                     !mesh_path_sel_is_hwmp(sdata))
2655                         break;
2656                 goto queue;
2657         }
2658
2659         return RX_CONTINUE;
2660
2661  invalid:
2662         status->rx_flags |= IEEE80211_RX_MALFORMED_ACTION_FRM;
2663         /* will return in the next handlers */
2664         return RX_CONTINUE;
2665
2666  handled:
2667         if (rx->sta)
2668                 rx->sta->rx_packets++;
2669         dev_kfree_skb(rx->skb);
2670         return RX_QUEUED;
2671
2672  queue:
2673         rx->skb->pkt_type = IEEE80211_SDATA_QUEUE_TYPE_FRAME;
2674         skb_queue_tail(&sdata->skb_queue, rx->skb);
2675         ieee80211_queue_work(&local->hw, &sdata->work);
2676         if (rx->sta)
2677                 rx->sta->rx_packets++;
2678         return RX_QUEUED;
2679 }
2680
2681 static ieee80211_rx_result debug_noinline
2682 ieee80211_rx_h_userspace_mgmt(struct ieee80211_rx_data *rx)
2683 {
2684         struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(rx->skb);
2685         int sig = 0;
2686
2687         /* skip known-bad action frames and return them in the next handler */
2688         if (status->rx_flags & IEEE80211_RX_MALFORMED_ACTION_FRM)
2689                 return RX_CONTINUE;
2690
2691         /*
2692          * Getting here means the kernel doesn't know how to handle
2693          * it, but maybe userspace does ... include returned frames
2694          * so userspace can register for those to know whether ones
2695          * it transmitted were processed or returned.
2696          */
2697
2698         if (rx->local->hw.flags & IEEE80211_HW_SIGNAL_DBM)
2699                 sig = status->signal;
2700
2701         if (cfg80211_rx_mgmt(&rx->sdata->wdev, status->freq, sig,
2702                              rx->skb->data, rx->skb->len, 0, GFP_ATOMIC)) {
2703                 if (rx->sta)
2704                         rx->sta->rx_packets++;
2705                 dev_kfree_skb(rx->skb);
2706                 return RX_QUEUED;
2707         }
2708
2709         return RX_CONTINUE;
2710 }
2711
2712 static ieee80211_rx_result debug_noinline
2713 ieee80211_rx_h_action_return(struct ieee80211_rx_data *rx)
2714 {
2715         struct ieee80211_local *local = rx->local;
2716         struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *) rx->skb->data;
2717         struct sk_buff *nskb;
2718         struct ieee80211_sub_if_data *sdata = rx->sdata;
2719         struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(rx->skb);
2720
2721         if (!ieee80211_is_action(mgmt->frame_control))
2722                 return RX_CONTINUE;
2723
2724         /*
2725          * For AP mode, hostapd is responsible for handling any action
2726          * frames that we didn't handle, including returning unknown
2727          * ones. For all other modes we will return them to the sender,
2728          * setting the 0x80 bit in the action category, as required by
2729          * 802.11-2012 9.24.4.
2730          * Newer versions of hostapd shall also use the management frame
2731          * registration mechanisms, but older ones still use cooked
2732          * monitor interfaces so push all frames there.
2733          */
2734         if (!(status->rx_flags & IEEE80211_RX_MALFORMED_ACTION_FRM) &&
2735             (sdata->vif.type == NL80211_IFTYPE_AP ||
2736              sdata->vif.type == NL80211_IFTYPE_AP_VLAN))
2737                 return RX_DROP_MONITOR;
2738
2739         if (is_multicast_ether_addr(mgmt->da))
2740                 return RX_DROP_MONITOR;
2741
2742         /* do not return rejected action frames */
2743         if (mgmt->u.action.category & 0x80)
2744                 return RX_DROP_UNUSABLE;
2745
2746         nskb = skb_copy_expand(rx->skb, local->hw.extra_tx_headroom, 0,
2747                                GFP_ATOMIC);
2748         if (nskb) {
2749                 struct ieee80211_mgmt *nmgmt = (void *)nskb->data;
2750
2751                 nmgmt->u.action.category |= 0x80;
2752                 memcpy(nmgmt->da, nmgmt->sa, ETH_ALEN);
2753                 memcpy(nmgmt->sa, rx->sdata->vif.addr, ETH_ALEN);
2754
2755                 memset(nskb->cb, 0, sizeof(nskb->cb));
2756
2757                 if (rx->sdata->vif.type == NL80211_IFTYPE_P2P_DEVICE) {
2758                         struct ieee80211_tx_info *info = IEEE80211_SKB_CB(nskb);
2759
2760                         info->flags = IEEE80211_TX_CTL_TX_OFFCHAN |
2761                                       IEEE80211_TX_INTFL_OFFCHAN_TX_OK |
2762                                       IEEE80211_TX_CTL_NO_CCK_RATE;
2763                         if (local->hw.flags & IEEE80211_HW_QUEUE_CONTROL)
2764                                 info->hw_queue =
2765                                         local->hw.offchannel_tx_hw_queue;
2766                 }
2767
2768                 __ieee80211_tx_skb_tid_band(rx->sdata, nskb, 7,
2769                                             status->band);
2770         }
2771         dev_kfree_skb(rx->skb);
2772         return RX_QUEUED;
2773 }
2774
2775 static ieee80211_rx_result debug_noinline
2776 ieee80211_rx_h_mgmt(struct ieee80211_rx_data *rx)
2777 {
2778         struct ieee80211_sub_if_data *sdata = rx->sdata;
2779         struct ieee80211_mgmt *mgmt = (void *)rx->skb->data;
2780         __le16 stype;
2781
2782         stype = mgmt->frame_control & cpu_to_le16(IEEE80211_FCTL_STYPE);
2783
2784         if (!ieee80211_vif_is_mesh(&sdata->vif) &&
2785             sdata->vif.type != NL80211_IFTYPE_ADHOC &&
2786             sdata->vif.type != NL80211_IFTYPE_STATION)
2787                 return RX_DROP_MONITOR;
2788
2789         switch (stype) {
2790         case cpu_to_le16(IEEE80211_STYPE_AUTH):
2791         case cpu_to_le16(IEEE80211_STYPE_BEACON):
2792         case cpu_to_le16(IEEE80211_STYPE_PROBE_RESP):
2793                 /* process for all: mesh, mlme, ibss */
2794                 break;
2795         case cpu_to_le16(IEEE80211_STYPE_ASSOC_RESP):
2796         case cpu_to_le16(IEEE80211_STYPE_REASSOC_RESP):
2797         case cpu_to_le16(IEEE80211_STYPE_DEAUTH):
2798         case cpu_to_le16(IEEE80211_STYPE_DISASSOC):
2799                 if (is_multicast_ether_addr(mgmt->da) &&
2800                     !is_broadcast_ether_addr(mgmt->da))
2801                         return RX_DROP_MONITOR;
2802
2803                 /* process only for station */
2804                 if (sdata->vif.type != NL80211_IFTYPE_STATION)
2805                         return RX_DROP_MONITOR;
2806                 break;
2807         case cpu_to_le16(IEEE80211_STYPE_PROBE_REQ):
2808                 /* process only for ibss and mesh */
2809                 if (sdata->vif.type != NL80211_IFTYPE_ADHOC &&
2810                     sdata->vif.type != NL80211_IFTYPE_MESH_POINT)
2811                         return RX_DROP_MONITOR;
2812                 break;
2813         default:
2814                 return RX_DROP_MONITOR;
2815         }
2816
2817         /* queue up frame and kick off work to process it */
2818         rx->skb->pkt_type = IEEE80211_SDATA_QUEUE_TYPE_FRAME;
2819         skb_queue_tail(&sdata->skb_queue, rx->skb);
2820         ieee80211_queue_work(&rx->local->hw, &sdata->work);
2821         if (rx->sta)
2822                 rx->sta->rx_packets++;
2823
2824         return RX_QUEUED;
2825 }
2826
2827 /* TODO: use IEEE80211_RX_FRAGMENTED */
2828 static void ieee80211_rx_cooked_monitor(struct ieee80211_rx_data *rx,
2829                                         struct ieee80211_rate *rate)
2830 {
2831         struct ieee80211_sub_if_data *sdata;
2832         struct ieee80211_local *local = rx->local;
2833         struct sk_buff *skb = rx->skb, *skb2;
2834         struct net_device *prev_dev = NULL;
2835         struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
2836         int needed_headroom;
2837
2838         /*
2839          * If cooked monitor has been processed already, then
2840          * don't do it again. If not, set the flag.
2841          */
2842         if (rx->flags & IEEE80211_RX_CMNTR)
2843                 goto out_free_skb;
2844         rx->flags |= IEEE80211_RX_CMNTR;
2845
2846         /* If there are no cooked monitor interfaces, just free the SKB */
2847         if (!local->cooked_mntrs)
2848                 goto out_free_skb;
2849
2850         /* room for the radiotap header based on driver features */
2851         needed_headroom = ieee80211_rx_radiotap_space(local, status);
2852
2853         if (skb_headroom(skb) < needed_headroom &&
2854             pskb_expand_head(skb, needed_headroom, 0, GFP_ATOMIC))
2855                 goto out_free_skb;
2856
2857         /* prepend radiotap information */
2858         ieee80211_add_rx_radiotap_header(local, skb, rate, needed_headroom,
2859                                          false);
2860
2861         skb_set_mac_header(skb, 0);
2862         skb->ip_summed = CHECKSUM_UNNECESSARY;
2863         skb->pkt_type = PACKET_OTHERHOST;
2864         skb->protocol = htons(ETH_P_802_2);
2865
2866         list_for_each_entry_rcu(sdata, &local->interfaces, list) {
2867                 if (!ieee80211_sdata_running(sdata))
2868                         continue;
2869
2870                 if (sdata->vif.type != NL80211_IFTYPE_MONITOR ||
2871                     !(sdata->u.mntr_flags & MONITOR_FLAG_COOK_FRAMES))
2872                         continue;
2873
2874                 if (prev_dev) {
2875                         skb2 = skb_clone(skb, GFP_ATOMIC);
2876                         if (skb2) {
2877                                 skb2->dev = prev_dev;
2878                                 netif_receive_skb(skb2);
2879                         }
2880                 }
2881
2882                 prev_dev = sdata->dev;
2883                 sdata->dev->stats.rx_packets++;
2884                 sdata->dev->stats.rx_bytes += skb->len;
2885         }
2886
2887         if (prev_dev) {
2888                 skb->dev = prev_dev;
2889                 netif_receive_skb(skb);
2890                 return;
2891         }
2892
2893  out_free_skb:
2894         dev_kfree_skb(skb);
2895 }
2896
2897 static void ieee80211_rx_handlers_result(struct ieee80211_rx_data *rx,
2898                                          ieee80211_rx_result res)
2899 {
2900         switch (res) {
2901         case RX_DROP_MONITOR:
2902                 I802_DEBUG_INC(rx->sdata->local->rx_handlers_drop);
2903                 if (rx->sta)
2904                         rx->sta->rx_dropped++;
2905                 /* fall through */
2906         case RX_CONTINUE: {
2907                 struct ieee80211_rate *rate = NULL;
2908                 struct ieee80211_supported_band *sband;
2909                 struct ieee80211_rx_status *status;
2910
2911                 status = IEEE80211_SKB_RXCB((rx->skb));
2912
2913                 sband = rx->local->hw.wiphy->bands[status->band];
2914                 if (!(status->flag & RX_FLAG_HT) &&
2915                     !(status->flag & RX_FLAG_VHT))
2916                         rate = &sband->bitrates[status->rate_idx];
2917
2918                 ieee80211_rx_cooked_monitor(rx, rate);
2919                 break;
2920                 }
2921         case RX_DROP_UNUSABLE:
2922                 I802_DEBUG_INC(rx->sdata->local->rx_handlers_drop);
2923                 if (rx->sta)
2924                         rx->sta->rx_dropped++;
2925                 dev_kfree_skb(rx->skb);
2926                 break;
2927         case RX_QUEUED:
2928                 I802_DEBUG_INC(rx->sdata->local->rx_handlers_queued);
2929                 break;
2930         }
2931 }
2932
2933 static void ieee80211_rx_handlers(struct ieee80211_rx_data *rx,
2934                                   struct sk_buff_head *frames)
2935 {
2936         ieee80211_rx_result res = RX_DROP_MONITOR;
2937         struct sk_buff *skb;
2938
2939 #define CALL_RXH(rxh)                   \
2940         do {                            \
2941                 res = rxh(rx);          \
2942                 if (res != RX_CONTINUE) \
2943                         goto rxh_next;  \
2944         } while (0);
2945
2946         spin_lock_bh(&rx->local->rx_path_lock);
2947
2948         while ((skb = __skb_dequeue(frames))) {
2949                 /*
2950                  * all the other fields are valid across frames
2951                  * that belong to an aMPDU since they are on the
2952                  * same TID from the same station
2953                  */
2954                 rx->skb = skb;
2955
2956                 CALL_RXH(ieee80211_rx_h_check_more_data)
2957                 CALL_RXH(ieee80211_rx_h_uapsd_and_pspoll)
2958                 CALL_RXH(ieee80211_rx_h_sta_process)
2959                 CALL_RXH(ieee80211_rx_h_decrypt)
2960                 CALL_RXH(ieee80211_rx_h_defragment)
2961                 CALL_RXH(ieee80211_rx_h_michael_mic_verify)
2962                 /* must be after MMIC verify so header is counted in MPDU mic */
2963 #ifdef CONFIG_MAC80211_MESH
2964                 if (ieee80211_vif_is_mesh(&rx->sdata->vif))
2965                         CALL_RXH(ieee80211_rx_h_mesh_fwding);
2966 #endif
2967                 CALL_RXH(ieee80211_rx_h_amsdu)
2968                 CALL_RXH(ieee80211_rx_h_data)
2969
2970                 /* special treatment -- needs the queue */
2971                 res = ieee80211_rx_h_ctrl(rx, frames);
2972                 if (res != RX_CONTINUE)
2973                         goto rxh_next;
2974
2975                 CALL_RXH(ieee80211_rx_h_mgmt_check)
2976                 CALL_RXH(ieee80211_rx_h_action)
2977                 CALL_RXH(ieee80211_rx_h_userspace_mgmt)
2978                 CALL_RXH(ieee80211_rx_h_action_return)
2979                 CALL_RXH(ieee80211_rx_h_mgmt)
2980
2981  rxh_next:
2982                 ieee80211_rx_handlers_result(rx, res);
2983
2984 #undef CALL_RXH
2985         }
2986
2987         spin_unlock_bh(&rx->local->rx_path_lock);
2988 }
2989
2990 static void ieee80211_invoke_rx_handlers(struct ieee80211_rx_data *rx)
2991 {
2992         struct sk_buff_head reorder_release;
2993         ieee80211_rx_result res = RX_DROP_MONITOR;
2994
2995         __skb_queue_head_init(&reorder_release);
2996
2997 #define CALL_RXH(rxh)                   \
2998         do {                            \
2999                 res = rxh(rx);          \
3000                 if (res != RX_CONTINUE) \
3001                         goto rxh_next;  \
3002         } while (0);
3003
3004         CALL_RXH(ieee80211_rx_h_check)
3005
3006         ieee80211_rx_reorder_ampdu(rx, &reorder_release);
3007
3008         ieee80211_rx_handlers(rx, &reorder_release);
3009         return;
3010
3011  rxh_next:
3012         ieee80211_rx_handlers_result(rx, res);
3013
3014 #undef CALL_RXH
3015 }
3016
3017 /*
3018  * This function makes calls into the RX path, therefore
3019  * it has to be invoked under RCU read lock.
3020  */
3021 void ieee80211_release_reorder_timeout(struct sta_info *sta, int tid)
3022 {
3023         struct sk_buff_head frames;
3024         struct ieee80211_rx_data rx = {
3025                 .sta = sta,
3026                 .sdata = sta->sdata,
3027                 .local = sta->local,
3028                 /* This is OK -- must be QoS data frame */
3029                 .security_idx = tid,
3030                 .seqno_idx = tid,
3031                 .flags = 0,
3032         };
3033         struct tid_ampdu_rx *tid_agg_rx;
3034
3035         tid_agg_rx = rcu_dereference(sta->ampdu_mlme.tid_rx[tid]);
3036         if (!tid_agg_rx)
3037                 return;
3038
3039         __skb_queue_head_init(&frames);
3040
3041         spin_lock(&tid_agg_rx->reorder_lock);
3042         ieee80211_sta_reorder_release(sta->sdata, tid_agg_rx, &frames);
3043         spin_unlock(&tid_agg_rx->reorder_lock);
3044
3045         ieee80211_rx_handlers(&rx, &frames);
3046 }
3047
3048 /* main receive path */
3049
3050 static bool prepare_for_handlers(struct ieee80211_rx_data *rx,
3051                                  struct ieee80211_hdr *hdr)
3052 {
3053         struct ieee80211_sub_if_data *sdata = rx->sdata;
3054         struct sk_buff *skb = rx->skb;
3055         struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
3056         u8 *bssid = ieee80211_get_bssid(hdr, skb->len, sdata->vif.type);
3057         int multicast = is_multicast_ether_addr(hdr->addr1);
3058
3059         switch (sdata->vif.type) {
3060         case NL80211_IFTYPE_STATION:
3061                 if (!bssid && !sdata->u.mgd.use_4addr)
3062                         return false;
3063                 if (!multicast &&
3064                     !ether_addr_equal(sdata->vif.addr, hdr->addr1)) {
3065                         if (!(sdata->dev->flags & IFF_PROMISC) ||
3066                             sdata->u.mgd.use_4addr)
3067                                 return false;
3068                         status->rx_flags &= ~IEEE80211_RX_RA_MATCH;
3069                 }
3070                 break;
3071         case NL80211_IFTYPE_ADHOC:
3072                 if (!bssid)
3073                         return false;
3074                 if (ether_addr_equal(sdata->vif.addr, hdr->addr2) ||
3075                     ether_addr_equal(sdata->u.ibss.bssid, hdr->addr2))
3076                         return false;
3077                 if (ieee80211_is_beacon(hdr->frame_control)) {
3078                         return true;
3079                 } else if (!ieee80211_bssid_match(bssid, sdata->u.ibss.bssid)) {
3080                         return false;
3081                 } else if (!multicast &&
3082                            !ether_addr_equal(sdata->vif.addr, hdr->addr1)) {
3083                         if (!(sdata->dev->flags & IFF_PROMISC))
3084                                 return false;
3085                         status->rx_flags &= ~IEEE80211_RX_RA_MATCH;
3086                 } else if (!rx->sta) {
3087                         int rate_idx;
3088                         if (status->flag & (RX_FLAG_HT | RX_FLAG_VHT))
3089                                 rate_idx = 0; /* TODO: HT/VHT rates */
3090                         else
3091                                 rate_idx = status->rate_idx;
3092                         ieee80211_ibss_rx_no_sta(sdata, bssid, hdr->addr2,
3093                                                  BIT(rate_idx));
3094                 }
3095                 break;
3096         case NL80211_IFTYPE_MESH_POINT:
3097                 if (!multicast &&
3098                     !ether_addr_equal(sdata->vif.addr, hdr->addr1)) {
3099                         if (!(sdata->dev->flags & IFF_PROMISC))
3100                                 return false;
3101
3102                         status->rx_flags &= ~IEEE80211_RX_RA_MATCH;
3103                 }
3104                 break;
3105         case NL80211_IFTYPE_AP_VLAN:
3106         case NL80211_IFTYPE_AP:
3107                 if (!bssid) {
3108                         if (!ether_addr_equal(sdata->vif.addr, hdr->addr1))
3109                                 return false;
3110                 } else if (!ieee80211_bssid_match(bssid, sdata->vif.addr)) {
3111                         /*
3112                          * Accept public action frames even when the
3113                          * BSSID doesn't match, this is used for P2P
3114                          * and location updates. Note that mac80211
3115                          * itself never looks at these frames.
3116                          */
3117                         if (!multicast &&
3118                             !ether_addr_equal(sdata->vif.addr, hdr->addr1))
3119                                 return false;
3120                         if (ieee80211_is_public_action(hdr, skb->len))
3121                                 return true;
3122                         if (!ieee80211_is_beacon(hdr->frame_control))
3123                                 return false;
3124                         status->rx_flags &= ~IEEE80211_RX_RA_MATCH;
3125                 }
3126                 break;
3127         case NL80211_IFTYPE_WDS:
3128                 if (bssid || !ieee80211_is_data(hdr->frame_control))
3129                         return false;
3130                 if (!ether_addr_equal(sdata->u.wds.remote_addr, hdr->addr2))
3131                         return false;
3132                 break;
3133         case NL80211_IFTYPE_P2P_DEVICE:
3134                 if (!ieee80211_is_public_action(hdr, skb->len) &&
3135                     !ieee80211_is_probe_req(hdr->frame_control) &&
3136                     !ieee80211_is_probe_resp(hdr->frame_control) &&
3137                     !ieee80211_is_beacon(hdr->frame_control))
3138                         return false;
3139                 if (!ether_addr_equal(sdata->vif.addr, hdr->addr1) &&
3140                     !multicast)
3141                         status->rx_flags &= ~IEEE80211_RX_RA_MATCH;
3142                 break;
3143         default:
3144                 /* should never get here */
3145                 WARN_ON_ONCE(1);
3146                 break;
3147         }
3148
3149         return true;
3150 }
3151
3152 /*
3153  * This function returns whether or not the SKB
3154  * was destined for RX processing or not, which,
3155  * if consume is true, is equivalent to whether
3156  * or not the skb was consumed.
3157  */
3158 static bool ieee80211_prepare_and_rx_handle(struct ieee80211_rx_data *rx,
3159                                             struct sk_buff *skb, bool consume)
3160 {
3161         struct ieee80211_local *local = rx->local;
3162         struct ieee80211_sub_if_data *sdata = rx->sdata;
3163         struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
3164         struct ieee80211_hdr *hdr = (void *)skb->data;
3165
3166         rx->skb = skb;
3167         status->rx_flags |= IEEE80211_RX_RA_MATCH;
3168
3169         if (!prepare_for_handlers(rx, hdr))
3170                 return false;
3171
3172         if (!consume) {
3173                 skb = skb_copy(skb, GFP_ATOMIC);
3174                 if (!skb) {
3175                         if (net_ratelimit())
3176                                 wiphy_debug(local->hw.wiphy,
3177                                         "failed to copy skb for %s\n",
3178                                         sdata->name);
3179                         return true;
3180                 }
3181
3182                 rx->skb = skb;
3183         }
3184
3185         ieee80211_invoke_rx_handlers(rx);
3186         return true;
3187 }
3188
3189 /*
3190  * This is the actual Rx frames handler. as it blongs to Rx path it must
3191  * be called with rcu_read_lock protection.
3192  */
3193 static void __ieee80211_rx_handle_packet(struct ieee80211_hw *hw,
3194                                          struct sk_buff *skb)
3195 {
3196         struct ieee80211_local *local = hw_to_local(hw);
3197         struct ieee80211_sub_if_data *sdata;
3198         struct ieee80211_hdr *hdr;
3199         __le16 fc;
3200         struct ieee80211_rx_data rx;
3201         struct ieee80211_sub_if_data *prev;
3202         struct sta_info *sta, *tmp, *prev_sta;
3203         int err = 0;
3204
3205         fc = ((struct ieee80211_hdr *)skb->data)->frame_control;
3206         memset(&rx, 0, sizeof(rx));
3207         rx.skb = skb;
3208         rx.local = local;
3209
3210         if (ieee80211_is_data(fc) || ieee80211_is_mgmt(fc))
3211                 local->dot11ReceivedFragmentCount++;
3212
3213         if (ieee80211_is_mgmt(fc)) {
3214                 /* drop frame if too short for header */
3215                 if (skb->len < ieee80211_hdrlen(fc))
3216                         err = -ENOBUFS;
3217                 else
3218                         err = skb_linearize(skb);
3219         } else {
3220                 err = !pskb_may_pull(skb, ieee80211_hdrlen(fc));
3221         }
3222
3223         if (err) {
3224                 dev_kfree_skb(skb);
3225                 return;
3226         }
3227
3228         hdr = (struct ieee80211_hdr *)skb->data;
3229         ieee80211_parse_qos(&rx);
3230         ieee80211_verify_alignment(&rx);
3231
3232         if (unlikely(ieee80211_is_probe_resp(hdr->frame_control) ||
3233                      ieee80211_is_beacon(hdr->frame_control)))
3234                 ieee80211_scan_rx(local, skb);
3235
3236         if (ieee80211_is_data(fc)) {
3237                 prev_sta = NULL;
3238
3239                 for_each_sta_info(local, hdr->addr2, sta, tmp) {
3240                         if (!prev_sta) {
3241                                 prev_sta = sta;
3242                                 continue;
3243                         }
3244
3245                         rx.sta = prev_sta;
3246                         rx.sdata = prev_sta->sdata;
3247                         ieee80211_prepare_and_rx_handle(&rx, skb, false);
3248
3249                         prev_sta = sta;
3250                 }
3251
3252                 if (prev_sta) {
3253                         rx.sta = prev_sta;
3254                         rx.sdata = prev_sta->sdata;
3255
3256                         if (ieee80211_prepare_and_rx_handle(&rx, skb, true))
3257                                 return;
3258                         goto out;
3259                 }
3260         }
3261
3262         prev = NULL;
3263
3264         list_for_each_entry_rcu(sdata, &local->interfaces, list) {
3265                 if (!ieee80211_sdata_running(sdata))
3266                         continue;
3267
3268                 if (sdata->vif.type == NL80211_IFTYPE_MONITOR ||
3269                     sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
3270                         continue;
3271
3272                 /*
3273                  * frame is destined for this interface, but if it's
3274                  * not also for the previous one we handle that after
3275                  * the loop to avoid copying the SKB once too much
3276                  */
3277
3278                 if (!prev) {
3279                         prev = sdata;
3280                         continue;
3281                 }
3282
3283                 rx.sta = sta_info_get_bss(prev, hdr->addr2);
3284                 rx.sdata = prev;
3285                 ieee80211_prepare_and_rx_handle(&rx, skb, false);
3286
3287                 prev = sdata;
3288         }
3289
3290         if (prev) {
3291                 rx.sta = sta_info_get_bss(prev, hdr->addr2);
3292                 rx.sdata = prev;
3293
3294                 if (ieee80211_prepare_and_rx_handle(&rx, skb, true))
3295                         return;
3296         }
3297
3298  out:
3299         dev_kfree_skb(skb);
3300 }
3301
3302 /*
3303  * This is the receive path handler. It is called by a low level driver when an
3304  * 802.11 MPDU is received from the hardware.
3305  */
3306 void ieee80211_rx(struct ieee80211_hw *hw, struct sk_buff *skb)
3307 {
3308         struct ieee80211_local *local = hw_to_local(hw);
3309         struct ieee80211_rate *rate = NULL;
3310         struct ieee80211_supported_band *sband;
3311         struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
3312
3313         WARN_ON_ONCE(softirq_count() == 0);
3314
3315         if (WARN_ON(status->band >= IEEE80211_NUM_BANDS))
3316                 goto drop;
3317
3318         sband = local->hw.wiphy->bands[status->band];
3319         if (WARN_ON(!sband))
3320                 goto drop;
3321
3322         /*
3323          * If we're suspending, it is possible although not too likely
3324          * that we'd be receiving frames after having already partially
3325          * quiesced the stack. We can't process such frames then since
3326          * that might, for example, cause stations to be added or other
3327          * driver callbacks be invoked.
3328          */
3329         if (unlikely(local->quiescing || local->suspended))
3330                 goto drop;
3331
3332         /* We might be during a HW reconfig, prevent Rx for the same reason */
3333         if (unlikely(local->in_reconfig))
3334                 goto drop;
3335
3336         /*
3337          * The same happens when we're not even started,
3338          * but that's worth a warning.
3339          */
3340         if (WARN_ON(!local->started))
3341                 goto drop;
3342
3343         if (likely(!(status->flag & RX_FLAG_FAILED_PLCP_CRC))) {
3344                 /*
3345                  * Validate the rate, unless a PLCP error means that
3346                  * we probably can't have a valid rate here anyway.
3347                  */
3348
3349                 if (status->flag & RX_FLAG_HT) {
3350                         /*
3351                          * rate_idx is MCS index, which can be [0-76]
3352                          * as documented on:
3353                          *
3354                          * http://wireless.kernel.org/en/developers/Documentation/ieee80211/802.11n
3355                          *
3356                          * Anything else would be some sort of driver or
3357                          * hardware error. The driver should catch hardware
3358                          * errors.
3359                          */
3360                         if (WARN(status->rate_idx > 76,
3361                                  "Rate marked as an HT rate but passed "
3362                                  "status->rate_idx is not "
3363                                  "an MCS index [0-76]: %d (0x%02x)\n",
3364                                  status->rate_idx,
3365                                  status->rate_idx))
3366                                 goto drop;
3367                 } else if (status->flag & RX_FLAG_VHT) {
3368                         if (WARN_ONCE(status->rate_idx > 9 ||
3369                                       !status->vht_nss ||
3370                                       status->vht_nss > 8,
3371                                       "Rate marked as a VHT rate but data is invalid: MCS: %d, NSS: %d\n",
3372                                       status->rate_idx, status->vht_nss))
3373                                 goto drop;
3374                 } else {
3375                         if (WARN_ON(status->rate_idx >= sband->n_bitrates))
3376                                 goto drop;
3377                         rate = &sband->bitrates[status->rate_idx];
3378                 }
3379         }
3380
3381         status->rx_flags = 0;
3382
3383         /*
3384          * key references and virtual interfaces are protected using RCU
3385          * and this requires that we are in a read-side RCU section during
3386          * receive processing
3387          */
3388         rcu_read_lock();
3389
3390         /*
3391          * Frames with failed FCS/PLCP checksum are not returned,
3392          * all other frames are returned without radiotap header
3393          * if it was previously present.
3394          * Also, frames with less than 16 bytes are dropped.
3395          */
3396         skb = ieee80211_rx_monitor(local, skb, rate);
3397         if (!skb) {
3398                 rcu_read_unlock();
3399                 return;
3400         }
3401
3402         ieee80211_tpt_led_trig_rx(local,
3403                         ((struct ieee80211_hdr *)skb->data)->frame_control,
3404                         skb->len);
3405         __ieee80211_rx_handle_packet(hw, skb);
3406
3407         rcu_read_unlock();
3408
3409         return;
3410  drop:
3411         kfree_skb(skb);
3412 }
3413 EXPORT_SYMBOL(ieee80211_rx);
3414
3415 /* This is a version of the rx handler that can be called from hard irq
3416  * context. Post the skb on the queue and schedule the tasklet */
3417 void ieee80211_rx_irqsafe(struct ieee80211_hw *hw, struct sk_buff *skb)
3418 {
3419         struct ieee80211_local *local = hw_to_local(hw);
3420
3421         BUILD_BUG_ON(sizeof(struct ieee80211_rx_status) > sizeof(skb->cb));
3422
3423         skb->pkt_type = IEEE80211_RX_MSG;
3424         skb_queue_tail(&local->skb_queue, skb);
3425         tasklet_schedule(&local->tasklet);
3426 }
3427 EXPORT_SYMBOL(ieee80211_rx_irqsafe);