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