blob: 9fb7074f0280692639a0932e7ff42b52edb6bef4 [file] [log] [blame]
Johannes Berg571ecf62007-07-27 15:43:22 +02001/*
2 * Copyright 2002-2005, Instant802 Networks, Inc.
3 * Copyright 2005-2006, Devicescape Software, Inc.
4 * Copyright 2006-2007 Jiri Benc <jbenc@suse.cz>
Johannes Berg84040802010-02-15 12:46:39 +02005 * Copyright 2007-2010 Johannes Berg <johannes@sipsolutions.net>
Johannes Bergd98ad832014-09-03 15:24:57 +03006 * Copyright 2013-2014 Intel Mobile Communications GmbH
Johannes Bergfb4ea052016-01-28 16:19:24 +02007 * Copyright(c) 2015 - 2016 Intel Deutschland GmbH
Johannes Berg571ecf62007-07-27 15:43:22 +02008 *
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
S.Çağlar Onurab466232008-02-14 17:36:47 +020014#include <linux/jiffies.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090015#include <linux/slab.h>
Johannes Berg571ecf62007-07-27 15:43:22 +020016#include <linux/kernel.h>
17#include <linux/skbuff.h>
18#include <linux/netdevice.h>
19#include <linux/etherdevice.h>
Johannes Bergd4e46a32007-09-14 11:10:24 -040020#include <linux/rcupdate.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040021#include <linux/export.h>
Sara Sharon06470f72016-01-28 16:19:25 +020022#include <linux/bitops.h>
Johannes Berg571ecf62007-07-27 15:43:22 +020023#include <net/mac80211.h>
24#include <net/ieee80211_radiotap.h>
Johannes Bergd26ad372012-02-20 11:38:41 +010025#include <asm/unaligned.h>
Johannes Berg571ecf62007-07-27 15:43:22 +020026
27#include "ieee80211_i.h"
Johannes Berg24487982009-04-23 18:52:52 +020028#include "driver-ops.h"
Johannes Berg2c8dccc2008-04-08 15:14:40 -040029#include "led.h"
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +010030#include "mesh.h"
Johannes Berg571ecf62007-07-27 15:43:22 +020031#include "wep.h"
32#include "wpa.h"
33#include "tkip.h"
34#include "wme.h"
Johannes Berg1d8d3de2011-12-16 15:28:57 +010035#include "rate.h"
Johannes Berg571ecf62007-07-27 15:43:22 +020036
Johannes Berg5a490512015-04-22 17:10:38 +020037static 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
Johannes Berga6828492015-06-16 15:17:15 +020047static 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
Johannes Bergb2e77712007-09-26 15:19:39 +020092/*
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 */
98static struct sk_buff *remove_monitor_info(struct ieee80211_local *local,
Johannes Berg1f7bba72014-11-06 22:56:36 +010099 struct sk_buff *skb,
100 unsigned int rtap_vendor_space)
Johannes Bergb2e77712007-09-26 15:19:39 +0200101{
Johannes Berg30686bf2015-06-02 21:39:54 +0200102 if (ieee80211_hw_check(&local->hw, RX_INCLUDES_FCS)) {
Johannes Bergb2e77712007-09-26 15:19:39 +0200103 if (likely(skb->len > FCS_LEN))
Zhu Yie3cf8b32010-03-29 17:35:07 +0800104 __pskb_trim(skb, skb->len - FCS_LEN);
Johannes Bergb2e77712007-09-26 15:19:39 +0200105 else {
106 /* driver bug */
107 WARN_ON(1);
108 dev_kfree_skb(skb);
Dan Carpenter06247602012-11-27 20:31:19 +0300109 return NULL;
Johannes Bergb2e77712007-09-26 15:19:39 +0200110 }
111 }
112
Johannes Berg1f7bba72014-11-06 22:56:36 +0100113 __pskb_pull(skb, rtap_vendor_space);
114
Johannes Bergb2e77712007-09-26 15:19:39 +0200115 return skb;
116}
117
Johannes Berg1f7bba72014-11-06 22:56:36 +0100118static inline bool should_drop_frame(struct sk_buff *skb, int present_fcs_len,
119 unsigned int rtap_vendor_space)
Johannes Bergb2e77712007-09-26 15:19:39 +0200120{
Johannes Bergf1d58c22009-06-17 13:13:00 +0200121 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
Johannes Berg1f7bba72014-11-06 22:56:36 +0100122 struct ieee80211_hdr *hdr;
123
124 hdr = (void *)(skb->data + rtap_vendor_space);
Johannes Bergb2e77712007-09-26 15:19:39 +0200125
Johannes Berg4c298672012-07-05 11:34:31 +0200126 if (status->flag & (RX_FLAG_FAILED_FCS_CRC |
Grzegorz Bajorski17883042015-12-11 14:39:46 +0100127 RX_FLAG_FAILED_PLCP_CRC |
128 RX_FLAG_ONLY_MONITOR))
Zhao, Gang6b59db72014-04-21 12:52:59 +0800129 return true;
130
Johannes Berg1f7bba72014-11-06 22:56:36 +0100131 if (unlikely(skb->len < 16 + present_fcs_len + rtap_vendor_space))
Zhao, Gang6b59db72014-04-21 12:52:59 +0800132 return true;
133
Harvey Harrison87228f52008-06-11 14:21:59 -0700134 if (ieee80211_is_ctl(hdr->frame_control) &&
135 !ieee80211_is_pspoll(hdr->frame_control) &&
136 !ieee80211_is_back_req(hdr->frame_control))
Zhao, Gang6b59db72014-04-21 12:52:59 +0800137 return true;
138
139 return false;
Johannes Bergb2e77712007-09-26 15:19:39 +0200140}
141
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200142static int
Johannes Berg1f7bba72014-11-06 22:56:36 +0100143ieee80211_rx_radiotap_hdrlen(struct ieee80211_local *local,
144 struct ieee80211_rx_status *status,
145 struct sk_buff *skb)
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200146{
147 int len;
148
149 /* always present fields */
Johannes Berga144f372013-07-03 13:34:02 +0200150 len = sizeof(struct ieee80211_radiotap_header) + 8;
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200151
Johannes Berga144f372013-07-03 13:34:02 +0200152 /* allocate extra bitmaps */
Johannes Berga144f372013-07-03 13:34:02 +0200153 if (status->chains)
154 len += 4 * hweight8(status->chains);
Johannes Berg90b9e4462012-11-16 10:09:08 +0100155
156 if (ieee80211_have_rx_timestamp(status)) {
157 len = ALIGN(len, 8);
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200158 len += 8;
Johannes Berg90b9e4462012-11-16 10:09:08 +0100159 }
Johannes Berg30686bf2015-06-02 21:39:54 +0200160 if (ieee80211_hw_check(&local->hw, SIGNAL_DBM))
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200161 len += 1;
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200162
Johannes Berga144f372013-07-03 13:34:02 +0200163 /* antenna field, if we don't have per-chain info */
164 if (!status->chains)
165 len += 1;
166
Johannes Berg90b9e4462012-11-16 10:09:08 +0100167 /* padding for RX_FLAGS if necessary */
168 len = ALIGN(len, 2);
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200169
Johannes Berg6d744ba2011-01-27 14:13:17 +0100170 if (status->flag & RX_FLAG_HT) /* HT info */
171 len += 3;
172
Johannes Berg4c298672012-07-05 11:34:31 +0200173 if (status->flag & RX_FLAG_AMPDU_DETAILS) {
Johannes Berg90b9e4462012-11-16 10:09:08 +0100174 len = ALIGN(len, 4);
Johannes Berg4c298672012-07-05 11:34:31 +0200175 len += 8;
176 }
177
Johannes Berg51648922012-11-22 23:00:18 +0100178 if (status->flag & RX_FLAG_VHT) {
179 len = ALIGN(len, 2);
180 len += 12;
181 }
182
Johannes Berga144f372013-07-03 13:34:02 +0200183 if (status->chains) {
184 /* antenna and antenna signal fields */
185 len += 2 * hweight8(status->chains);
186 }
187
Johannes Berg1f7bba72014-11-06 22:56:36 +0100188 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
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200203 return len;
204}
205
Johannes Berg00ea6de2012-09-05 15:54:51 +0200206/*
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200207 * ieee80211_add_rx_radiotap_header - add radiotap header
208 *
209 * add a radiotap header containing all the fields which the hardware provided.
210 */
211static void
212ieee80211_add_rx_radiotap_header(struct ieee80211_local *local,
213 struct sk_buff *skb,
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200214 struct ieee80211_rate *rate,
Felix Fietkau973ef212012-04-16 14:56:48 +0200215 int rtap_len, bool has_fcs)
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200216{
Johannes Bergf1d58c22009-06-17 13:13:00 +0200217 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200218 struct ieee80211_radiotap_header *rthdr;
219 unsigned char *pos;
Johannes Berga144f372013-07-03 13:34:02 +0200220 __le32 *it_present;
221 u32 it_present_val;
Johannes Berg6a86b9c2009-10-28 09:58:52 +0100222 u16 rx_flags = 0;
Simon Wunderlicha5e70692013-07-08 16:55:52 +0200223 u16 channel_flags = 0;
Johannes Berga144f372013-07-03 13:34:02 +0200224 int mpdulen, chain;
225 unsigned long chains = status->chains;
Johannes Berg1f7bba72014-11-06 22:56:36 +0100226 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 }
Thomas Pedersenf4bda332012-11-13 10:46:27 -0800233
234 mpdulen = skb->len;
Johannes Berg30686bf2015-06-02 21:39:54 +0200235 if (!(has_fcs && ieee80211_hw_check(&local->hw, RX_INCLUDES_FCS)))
Thomas Pedersenf4bda332012-11-13 10:46:27 -0800236 mpdulen += FCS_LEN;
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200237
238 rthdr = (struct ieee80211_radiotap_header *)skb_push(skb, rtap_len);
Johannes Berg1f7bba72014-11-06 22:56:36 +0100239 memset(rthdr, 0, rtap_len - rtap.len - rtap.pad);
Johannes Berga144f372013-07-03 13:34:02 +0200240 it_present = &rthdr->it_present;
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200241
242 /* radiotap header, set always present flags */
Emmanuel Grumbach0059b2b2014-02-05 16:36:01 +0200243 rthdr->it_len = cpu_to_le16(rtap_len);
Johannes Berga144f372013-07-03 13:34:02 +0200244 it_present_val = BIT(IEEE80211_RADIOTAP_FLAGS) |
245 BIT(IEEE80211_RADIOTAP_CHANNEL) |
246 BIT(IEEE80211_RADIOTAP_RX_FLAGS);
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200247
Johannes Berga144f372013-07-03 13:34:02 +0200248 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 }
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200260
Johannes Berg1f7bba72014-11-06 22:56:36 +0100261 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
Johannes Berga144f372013-07-03 13:34:02 +0200269 put_unaligned_le32(it_present_val, it_present);
270
271 pos = (void *)(it_present + 1);
272
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200273 /* the order of the following fields is important */
274
275 /* IEEE80211_RADIOTAP_TSFT */
Thomas Pedersenf4bda332012-11-13 10:46:27 -0800276 if (ieee80211_have_rx_timestamp(status)) {
Johannes Berg90b9e4462012-11-16 10:09:08 +0100277 /* padding */
278 while ((pos - (u8 *)rthdr) & 7)
279 *pos++ = 0;
Thomas Pedersenf4bda332012-11-13 10:46:27 -0800280 put_unaligned_le64(
281 ieee80211_calculate_rx_timestamp(local, status,
282 mpdulen, 0),
283 pos);
Johannes Berg1df332e2012-10-26 00:09:11 +0200284 rthdr->it_present |= cpu_to_le32(1 << IEEE80211_RADIOTAP_TSFT);
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200285 pos += 8;
286 }
287
288 /* IEEE80211_RADIOTAP_FLAGS */
Johannes Berg30686bf2015-06-02 21:39:54 +0200289 if (has_fcs && ieee80211_hw_check(&local->hw, RX_INCLUDES_FCS))
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200290 *pos |= IEEE80211_RADIOTAP_F_FCS;
Johannes Bergaae89832009-03-13 12:52:10 +0100291 if (status->flag & (RX_FLAG_FAILED_FCS_CRC | RX_FLAG_FAILED_PLCP_CRC))
292 *pos |= IEEE80211_RADIOTAP_F_BADFCS;
Bruno Randolfb4f28bb2008-07-30 17:19:55 +0200293 if (status->flag & RX_FLAG_SHORTPRE)
294 *pos |= IEEE80211_RADIOTAP_F_SHORTPRE;
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200295 pos++;
296
297 /* IEEE80211_RADIOTAP_RATE */
Johannes Berg56146182012-11-09 15:07:02 +0100298 if (!rate || status->flag & (RX_FLAG_HT | RX_FLAG_VHT)) {
Jouni Malinen0fb8ca42008-12-12 14:38:33 +0200299 /*
Johannes Bergf8d1ccf2011-11-08 12:28:33 +0100300 * Without rate information don't add it. If we have,
Mohammed Shafi Shajakhan38f37be2011-02-07 10:10:04 +0530301 * MCS information is a separate field in radiotap,
Johannes Berg73b48092011-04-18 17:05:21 +0200302 * added below. The byte here is needed as padding
303 * for the channel though, so initialise it to 0.
Jouni Malinen0fb8ca42008-12-12 14:38:33 +0200304 */
305 *pos = 0;
Jouni Malinen8d6f6582008-12-15 10:37:50 +0200306 } else {
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200307 int shift = 0;
Jouni Malinenebe6c7b2009-01-10 11:47:33 +0200308 rthdr->it_present |= cpu_to_le32(1 << IEEE80211_RADIOTAP_RATE);
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200309 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));
Jouni Malinen8d6f6582008-12-15 10:37:50 +0200314 }
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200315 pos++;
316
317 /* IEEE80211_RADIOTAP_CHANNEL */
Johannes Berg6a86b9c2009-10-28 09:58:52 +0100318 put_unaligned_le16(status->freq, pos);
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200319 pos += 2;
Simon Wunderlicha5e70692013-07-08 16:55:52 +0200320 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
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200325 if (status->band == IEEE80211_BAND_5GHZ)
Simon Wunderlicha5e70692013-07-08 16:55:52 +0200326 channel_flags |= IEEE80211_CHAN_OFDM | IEEE80211_CHAN_5GHZ;
Johannes Berg56146182012-11-09 15:07:02 +0100327 else if (status->flag & (RX_FLAG_HT | RX_FLAG_VHT))
Simon Wunderlicha5e70692013-07-08 16:55:52 +0200328 channel_flags |= IEEE80211_CHAN_DYN | IEEE80211_CHAN_2GHZ;
Johannes Bergf8d1ccf2011-11-08 12:28:33 +0100329 else if (rate && rate->flags & IEEE80211_RATE_ERP_G)
Simon Wunderlicha5e70692013-07-08 16:55:52 +0200330 channel_flags |= IEEE80211_CHAN_OFDM | IEEE80211_CHAN_2GHZ;
Johannes Bergf8d1ccf2011-11-08 12:28:33 +0100331 else if (rate)
Mathy Vanhoef3a5c5e82015-01-20 15:05:08 +0100332 channel_flags |= IEEE80211_CHAN_CCK | IEEE80211_CHAN_2GHZ;
Johannes Bergf8d1ccf2011-11-08 12:28:33 +0100333 else
Simon Wunderlicha5e70692013-07-08 16:55:52 +0200334 channel_flags |= IEEE80211_CHAN_2GHZ;
335 put_unaligned_le16(channel_flags, pos);
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200336 pos += 2;
337
338 /* IEEE80211_RADIOTAP_DBM_ANTSIGNAL */
Johannes Berg30686bf2015-06-02 21:39:54 +0200339 if (ieee80211_hw_check(&local->hw, SIGNAL_DBM) &&
Felix Fietkaufe8431f2012-03-01 18:00:07 +0100340 !(status->flag & RX_FLAG_NO_SIGNAL_VAL)) {
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200341 *pos = status->signal;
342 rthdr->it_present |=
343 cpu_to_le32(1 << IEEE80211_RADIOTAP_DBM_ANTSIGNAL);
344 pos++;
345 }
346
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200347 /* IEEE80211_RADIOTAP_LOCK_QUALITY is missing */
348
Johannes Berga144f372013-07-03 13:34:02 +0200349 if (!status->chains) {
350 /* IEEE80211_RADIOTAP_ANTENNA */
351 *pos = status->antenna;
352 pos++;
353 }
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200354
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200355 /* 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 */
Johannes Berg6a86b9c2009-10-28 09:58:52 +0100359 if ((pos - (u8 *)rthdr) & 1)
Johannes Berg90b9e4462012-11-16 10:09:08 +0100360 *pos++ = 0;
Johannes Bergaae89832009-03-13 12:52:10 +0100361 if (status->flag & RX_FLAG_FAILED_PLCP_CRC)
Johannes Berg6a86b9c2009-10-28 09:58:52 +0100362 rx_flags |= IEEE80211_RADIOTAP_F_RX_BADPLCP;
363 put_unaligned_le16(rx_flags, pos);
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200364 pos += 2;
Johannes Berg6d744ba2011-01-27 14:13:17 +0100365
366 if (status->flag & RX_FLAG_HT) {
Oleksij Rempel786677d2013-05-24 12:05:45 +0200367 unsigned int stbc;
368
Johannes Berg6d744ba2011-01-27 14:13:17 +0100369 rthdr->it_present |= cpu_to_le32(1 << IEEE80211_RADIOTAP_MCS);
Johannes Bergac55d2f2012-05-10 09:09:10 +0200370 *pos++ = local->hw.radiotap_mcs_details;
Johannes Berg6d744ba2011-01-27 14:13:17 +0100371 *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;
Johannes Bergac55d2f2012-05-10 09:09:10 +0200376 if (status->flag & RX_FLAG_HT_GF)
377 *pos |= IEEE80211_RADIOTAP_MCS_FMT_GF;
Emmanuel Grumbach63c361f2014-02-05 12:48:53 +0200378 if (status->flag & RX_FLAG_LDPC)
379 *pos |= IEEE80211_RADIOTAP_MCS_FEC_LDPC;
Oleksij Rempel786677d2013-05-24 12:05:45 +0200380 stbc = (status->flag & RX_FLAG_STBC_MASK) >> RX_FLAG_STBC_SHIFT;
381 *pos |= stbc << IEEE80211_RADIOTAP_MCS_STBC_SHIFT;
Johannes Berg6d744ba2011-01-27 14:13:17 +0100382 pos++;
383 *pos++ = status->rate_idx;
384 }
Johannes Berg4c298672012-07-05 11:34:31 +0200385
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;
Johannes Berg4c298672012-07-05 11:34:31 +0200396 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 }
Johannes Berg90b9e4462012-11-16 10:09:08 +0100412
Johannes Berg51648922012-11-22 23:00:18 +0100413 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);
Johannes Berg51648922012-11-22 23:00:18 +0100417 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;
Emmanuel Grumbach63c361f2014-02-05 12:48:53 +0200422 /* in VHT, STBC is binary */
423 if (status->flag & RX_FLAG_STBC_MASK)
424 *pos |= IEEE80211_RADIOTAP_VHT_FLAG_STBC;
Emmanuel Grumbachfb378c22014-03-04 10:35:25 +0200425 if (status->vht_flag & RX_VHT_FLAG_BF)
426 *pos |= IEEE80211_RADIOTAP_VHT_FLAG_BEAMFORMED;
Johannes Berg51648922012-11-22 23:00:18 +0100427 pos++;
428 /* bandwidth */
Emmanuel Grumbach1b8d2422014-02-05 16:37:11 +0200429 if (status->vht_flag & RX_VHT_FLAG_80MHZ)
Johannes Berg51648922012-11-22 23:00:18 +0100430 *pos++ = 4;
Emmanuel Grumbach1b8d2422014-02-05 16:37:11 +0200431 else if (status->vht_flag & RX_VHT_FLAG_160MHZ)
Johannes Berg51648922012-11-22 23:00:18 +0100432 *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 */
Emmanuel Grumbach63c361f2014-02-05 12:48:53 +0200441 if (status->flag & RX_FLAG_LDPC)
442 *pos |= IEEE80211_RADIOTAP_CODING_LDPC_USER0;
Johannes Berg51648922012-11-22 23:00:18 +0100443 pos++;
444 /* group ID */
445 pos++;
446 /* partial_aid */
447 pos += 2;
448 }
449
Johannes Berga144f372013-07-03 13:34:02 +0200450 for_each_set_bit(chain, &chains, IEEE80211_MAX_CHAINS) {
451 *pos++ = status->chain_signal[chain];
452 *pos++ = chain;
453 }
Johannes Berg1f7bba72014-11-06 22:56:36 +0100454
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 }
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200470}
471
Johannes Bergb2e77712007-09-26 15:19:39 +0200472/*
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 */
477static struct sk_buff *
478ieee80211_rx_monitor(struct ieee80211_local *local, struct sk_buff *origskb,
Johannes Berg8318d782008-01-24 19:38:38 +0100479 struct ieee80211_rate *rate)
Johannes Bergb2e77712007-09-26 15:19:39 +0200480{
Johannes Bergf1d58c22009-06-17 13:13:00 +0200481 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(origskb);
Johannes Bergb2e77712007-09-26 15:19:39 +0200482 struct ieee80211_sub_if_data *sdata;
Johannes Berg1f7bba72014-11-06 22:56:36 +0100483 int rt_hdrlen, needed_headroom;
Johannes Bergb2e77712007-09-26 15:19:39 +0200484 struct sk_buff *skb, *skb2;
485 struct net_device *prev_dev = NULL;
486 int present_fcs_len = 0;
Johannes Berg1f7bba72014-11-06 22:56:36 +0100487 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 }
Johannes Bergb2e77712007-09-26 15:19:39 +0200494
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 */
Johannes Berg0869aea2009-10-28 10:03:35 +0100503
Johannes Berg30686bf2015-06-02 21:39:54 +0200504 if (ieee80211_hw_check(&local->hw, RX_INCLUDES_FCS))
Johannes Bergb2e77712007-09-26 15:19:39 +0200505 present_fcs_len = FCS_LEN;
506
Johannes Berg1f7bba72014-11-06 22:56:36 +0100507 /* ensure hdr->frame_control and vendor radiotap data are in skb head */
508 if (!pskb_may_pull(origskb, 2 + rtap_vendor_space)) {
Zhu Yie3cf8b32010-03-29 17:35:07 +0800509 dev_kfree_skb(origskb);
510 return NULL;
511 }
512
Grzegorz Bajorski17883042015-12-11 14:39:46 +0100513 if (!local->monitors || (status->flag & RX_FLAG_SKIP_MONITOR)) {
Johannes Berg1f7bba72014-11-06 22:56:36 +0100514 if (should_drop_frame(origskb, present_fcs_len,
515 rtap_vendor_space)) {
Johannes Bergb2e77712007-09-26 15:19:39 +0200516 dev_kfree_skb(origskb);
517 return NULL;
518 }
519
Johannes Berg1f7bba72014-11-06 22:56:36 +0100520 return remove_monitor_info(local, origskb, rtap_vendor_space);
Johannes Bergb2e77712007-09-26 15:19:39 +0200521 }
522
Helmut Schaa751413e2012-12-05 14:36:12 +0100523 /* room for the radiotap header based on driver features */
Johannes Berg1f7bba72014-11-06 22:56:36 +0100524 rt_hdrlen = ieee80211_rx_radiotap_hdrlen(local, status, origskb);
525 needed_headroom = rt_hdrlen - rtap_vendor_space;
Helmut Schaa751413e2012-12-05 14:36:12 +0100526
Johannes Berg1f7bba72014-11-06 22:56:36 +0100527 if (should_drop_frame(origskb, present_fcs_len, rtap_vendor_space)) {
Johannes Bergb2e77712007-09-26 15:19:39 +0200528 /* 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 &&
Johannes Bergc49e5ea2007-12-11 21:33:42 +0100540 pskb_expand_head(skb, needed_headroom, 0, GFP_ATOMIC)) {
Johannes Bergb2e77712007-09-26 15:19:39 +0200541 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
Johannes Berg1f7bba72014-11-06 22:56:36 +0100551 origskb = remove_monitor_info(local, origskb,
552 rtap_vendor_space);
Johannes Bergb2e77712007-09-26 15:19:39 +0200553
554 if (!skb)
555 return origskb;
556 }
557
Johannes Berg0869aea2009-10-28 10:03:35 +0100558 /* prepend radiotap information */
Johannes Berg1f7bba72014-11-06 22:56:36 +0100559 ieee80211_add_rx_radiotap_header(local, skb, rate, rt_hdrlen, true);
Johannes Bergb2e77712007-09-26 15:19:39 +0200560
Johannes Bergce3edf6d02007-12-19 01:31:22 +0100561 skb_reset_mac_header(skb);
Johannes Bergb2e77712007-09-26 15:19:39 +0200562 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) {
Johannes Berg05c914f2008-09-11 00:01:58 +0200567 if (sdata->vif.type != NL80211_IFTYPE_MONITOR)
Johannes Bergb2e77712007-09-26 15:19:39 +0200568 continue;
569
Michael Wu3d30d942008-01-31 19:48:27 +0100570 if (sdata->u.mntr_flags & MONITOR_FLAG_COOK_FRAMES)
571 continue;
572
Johannes Berg9607e6b2009-12-23 13:15:31 +0100573 if (!ieee80211_sdata_running(sdata))
Johannes Berg47846c92009-11-25 17:46:19 +0100574 continue;
575
Johannes Bergb2e77712007-09-26 15:19:39 +0200576 if (prev_dev) {
577 skb2 = skb_clone(skb, GFP_ATOMIC);
578 if (skb2) {
579 skb2->dev = prev_dev;
John W. Linville5548a8a2010-06-24 14:25:56 -0400580 netif_receive_skb(skb2);
Johannes Bergb2e77712007-09-26 15:19:39 +0200581 }
582 }
583
584 prev_dev = sdata->dev;
Johannes Berg5a490512015-04-22 17:10:38 +0200585 ieee80211_rx_stats(sdata->dev, skb->len);
Johannes Bergb2e77712007-09-26 15:19:39 +0200586 }
587
588 if (prev_dev) {
589 skb->dev = prev_dev;
John W. Linville5548a8a2010-06-24 14:25:56 -0400590 netif_receive_skb(skb);
Johannes Bergb2e77712007-09-26 15:19:39 +0200591 } else
592 dev_kfree_skb(skb);
593
594 return origskb;
595}
596
Johannes Berg5cf121c2008-02-25 16:27:43 +0100597static void ieee80211_parse_qos(struct ieee80211_rx_data *rx)
Johannes Berg6e0d1142007-07-27 15:43:22 +0200598{
Harvey Harrison238f74a2008-07-02 11:05:34 -0700599 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
Johannes Berg554891e2010-09-24 12:38:25 +0200600 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(rx->skb);
Johannes Berg9e262972011-07-07 18:45:03 +0200601 int tid, seqno_idx, security_idx;
Johannes Berg6e0d1142007-07-27 15:43:22 +0200602
603 /* does the frame have a qos control field? */
Harvey Harrison238f74a2008-07-02 11:05:34 -0700604 if (ieee80211_is_data_qos(hdr->frame_control)) {
605 u8 *qc = ieee80211_get_qos_ctl(hdr);
Johannes Berg6e0d1142007-07-27 15:43:22 +0200606 /* frame has qos control */
Harvey Harrison238f74a2008-07-02 11:05:34 -0700607 tid = *qc & IEEE80211_QOS_CTL_TID_MASK;
Johannes Berg04b7dcf2011-06-22 10:06:59 +0200608 if (*qc & IEEE80211_QOS_CTL_A_MSDU_PRESENT)
Johannes Berg554891e2010-09-24 12:38:25 +0200609 status->rx_flags |= IEEE80211_RX_AMSDU;
Johannes Berg9e262972011-07-07 18:45:03 +0200610
611 seqno_idx = tid;
612 security_idx = tid;
Johannes Berg6e0d1142007-07-27 15:43:22 +0200613 } else {
Johannes Berg1411f9b2008-07-10 10:11:02 +0200614 /*
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 */
Johannes Berg5a306f52012-11-14 23:22:21 +0100625 seqno_idx = IEEE80211_NUM_TIDS;
Johannes Berg9e262972011-07-07 18:45:03 +0200626 security_idx = 0;
627 if (ieee80211_is_mgmt(hdr->frame_control))
Johannes Berg5a306f52012-11-14 23:22:21 +0100628 security_idx = IEEE80211_NUM_TIDS;
Johannes Berg9e262972011-07-07 18:45:03 +0200629 tid = 0;
Johannes Berg6e0d1142007-07-27 15:43:22 +0200630 }
Johannes Berg52865dfd2007-07-27 15:43:22 +0200631
Johannes Berg9e262972011-07-07 18:45:03 +0200632 rx->seqno_idx = seqno_idx;
633 rx->security_idx = security_idx;
Johannes Berg6e0d1142007-07-27 15:43:22 +0200634 /* 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;
Johannes Berg38f37142008-01-29 17:07:43 +0100637}
Johannes Berg6e0d1142007-07-27 15:43:22 +0200638
Johannes Bergd1c3a372009-01-07 00:26:10 +0100639/**
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
Kalle Valo59d9cb02009-12-17 13:54:57 +0100650 * 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.
Johannes Bergd1c3a372009-01-07 00:26:10 +0100653 *
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 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300660 * Padding like Atheros hardware adds which is between the 802.11 header and
Johannes Bergd1c3a372009-01-07 00:26:10 +0100661 * 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 */
664static void ieee80211_verify_alignment(struct ieee80211_rx_data *rx)
Johannes Berg38f37142008-01-29 17:07:43 +0100665{
Kalle Valo59d9cb02009-12-17 13:54:57 +0100666#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Johannes Berg441275e2015-11-06 12:34:24 +0100667 WARN_ON_ONCE((unsigned long)rx->skb->data & 1);
Johannes Bergd1c3a372009-01-07 00:26:10 +0100668#endif
Johannes Berg6e0d1142007-07-27 15:43:22 +0200669}
670
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +0200671
Johannes Berg571ecf62007-07-27 15:43:22 +0200672/* rx handlers */
673
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200674static int ieee80211_is_unicast_robust_mgmt_frame(struct sk_buff *skb)
675{
676 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
677
Johannes Bergd8ca16d2014-01-23 16:20:29 +0100678 if (is_multicast_ether_addr(hdr->addr1))
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200679 return 0;
680
Johannes Bergd8ca16d2014-01-23 16:20:29 +0100681 return ieee80211_is_robust_mgmt_frame(skb);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200682}
683
684
685static int ieee80211_is_multicast_robust_mgmt_frame(struct sk_buff *skb)
686{
687 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
688
Johannes Bergd8ca16d2014-01-23 16:20:29 +0100689 if (!is_multicast_ether_addr(hdr->addr1))
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200690 return 0;
691
Johannes Bergd8ca16d2014-01-23 16:20:29 +0100692 return ieee80211_is_robust_mgmt_frame(skb);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200693}
694
695
696/* Get the BIP key index from MMIE; return -1 if this is not a BIP frame */
697static 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;
Jouni Malinen56c52da2015-01-24 19:52:08 +0200701 struct ieee80211_mmie_16 *mmie16;
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200702
Johannes Berg1df332e2012-10-26 00:09:11 +0200703 if (skb->len < 24 + sizeof(*mmie) || !is_multicast_ether_addr(hdr->da))
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200704 return -1;
705
Johannes Bergd8ca16d2014-01-23 16:20:29 +0100706 if (!ieee80211_is_robust_mgmt_frame(skb))
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200707 return -1; /* not a robust management frame */
708
709 mmie = (struct ieee80211_mmie *)
710 (skb->data + skb->len - sizeof(*mmie));
Jouni Malinen56c52da2015-01-24 19:52:08 +0200711 if (mmie->element_id == WLAN_EID_MMIE &&
712 mmie->length == sizeof(*mmie) - 2)
713 return le16_to_cpu(mmie->key_id);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200714
Jouni Malinen56c52da2015-01-24 19:52:08 +0200715 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;
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200723}
724
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200725static int iwl80211_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
Johannes Berg1df332e2012-10-26 00:09:11 +0200746static ieee80211_rx_result ieee80211_rx_mesh_check(struct ieee80211_rx_data *rx)
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100747{
Harvey Harrisona7767f92008-07-02 16:30:51 -0700748 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
Johannes Berg47846c92009-11-25 17:46:19 +0100749 char *dev_addr = rx->sdata->vif.addr;
Johannes Bergd6d1a5a2008-02-25 16:24:38 +0100750
Harvey Harrisona7767f92008-07-02 16:30:51 -0700751 if (ieee80211_is_data(hdr->frame_control)) {
Javier Cardona3c5772a2009-08-10 12:15:48 -0700752 if (is_multicast_ether_addr(hdr->addr1)) {
753 if (ieee80211_has_tods(hdr->frame_control) ||
Johannes Berg1df332e2012-10-26 00:09:11 +0200754 !ieee80211_has_fromds(hdr->frame_control))
Javier Cardona3c5772a2009-08-10 12:15:48 -0700755 return RX_DROP_MONITOR;
Joe Perchesb203ca32012-05-08 18:56:52 +0000756 if (ether_addr_equal(hdr->addr3, dev_addr))
Javier Cardona3c5772a2009-08-10 12:15:48 -0700757 return RX_DROP_MONITOR;
758 } else {
759 if (!ieee80211_has_a4(hdr->frame_control))
760 return RX_DROP_MONITOR;
Joe Perchesb203ca32012-05-08 18:56:52 +0000761 if (ether_addr_equal(hdr->addr4, dev_addr))
Javier Cardona3c5772a2009-08-10 12:15:48 -0700762 return RX_DROP_MONITOR;
763 }
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100764 }
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
Javier Cardona57cf8042011-05-13 10:45:43 -0700770 if (!rx->sta || sta_plink_state(rx->sta) != NL80211_PLINK_ESTAB) {
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100771 struct ieee80211_mgmt *mgmt;
Johannes Bergd6d1a5a2008-02-25 16:24:38 +0100772
Harvey Harrisona7767f92008-07-02 16:30:51 -0700773 if (!ieee80211_is_mgmt(hdr->frame_control))
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100774 return RX_DROP_MONITOR;
775
Harvey Harrisona7767f92008-07-02 16:30:51 -0700776 if (ieee80211_is_action(hdr->frame_control)) {
Javier Cardonad3aaec8a2011-05-03 16:57:09 -0700777 u8 category;
Johannes Berg9b395bc2012-10-26 00:36:40 +0200778
779 /* make sure category field is present */
780 if (rx->skb->len < IEEE80211_MIN_ACTION_SIZE)
781 return RX_DROP_MONITOR;
782
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100783 mgmt = (struct ieee80211_mgmt *)hdr;
Javier Cardonad3aaec8a2011-05-03 16:57:09 -0700784 category = mgmt->u.action.category;
785 if (category != WLAN_CATEGORY_MESH_ACTION &&
Johannes Berg1df332e2012-10-26 00:09:11 +0200786 category != WLAN_CATEGORY_SELF_PROTECTED)
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100787 return RX_DROP_MONITOR;
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100788 return RX_CONTINUE;
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100789 }
790
Harvey Harrisona7767f92008-07-02 16:30:51 -0700791 if (ieee80211_is_probe_req(hdr->frame_control) ||
792 ieee80211_is_probe_resp(hdr->frame_control) ||
Javier Cardona71839122011-04-07 15:08:31 -0700793 ieee80211_is_beacon(hdr->frame_control) ||
794 ieee80211_is_auth(hdr->frame_control))
Harvey Harrisona7767f92008-07-02 16:30:51 -0700795 return RX_CONTINUE;
796
797 return RX_DROP_MONITOR;
Harvey Harrisona7767f92008-07-02 16:30:51 -0700798 }
799
Johannes Berg902acc72008-02-23 15:17:19 +0100800 return RX_CONTINUE;
801}
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100802
Johannes Bergfb4ea052016-01-28 16:19:24 +0200803static 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
Sara Sharon06470f72016-01-28 16:19:25 +0200810 if (tid_agg_rx->reorder_buf_filtered & BIT_ULL(index))
811 return true;
812
Johannes Bergfb4ea052016-01-28 16:19:24 +0200813 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
Johannes Bergd3b2fb52012-06-22 12:48:38 +0200823static void ieee80211_release_reorder_frame(struct ieee80211_sub_if_data *sdata,
Johannes Berg1edfb1a2009-11-25 17:46:16 +0100824 struct tid_ampdu_rx *tid_agg_rx,
Christian Lamparterf9e124f2013-02-04 17:44:44 +0000825 int index,
826 struct sk_buff_head *frames)
Johannes Berg1edfb1a2009-11-25 17:46:16 +0100827{
Michal Kazior83eb9352014-07-16 12:09:31 +0200828 struct sk_buff_head *skb_list = &tid_agg_rx->reorder_buf[index];
829 struct sk_buff *skb;
Christian Lamparter4cfda472010-12-27 23:21:26 +0100830 struct ieee80211_rx_status *status;
Johannes Berg1edfb1a2009-11-25 17:46:16 +0100831
Johannes Bergdd318572010-11-29 11:09:16 +0100832 lockdep_assert_held(&tid_agg_rx->reorder_lock);
833
Michal Kazior83eb9352014-07-16 12:09:31 +0200834 if (skb_queue_empty(skb_list))
Johannes Berg1edfb1a2009-11-25 17:46:16 +0100835 goto no_frame;
836
Johannes Bergfb4ea052016-01-28 16:19:24 +0200837 if (!ieee80211_rx_reorder_ready(tid_agg_rx, index)) {
Michal Kazior83eb9352014-07-16 12:09:31 +0200838 __skb_queue_purge(skb_list);
839 goto no_frame;
840 }
841
842 /* release frames from the reorder ring buffer */
Johannes Berg1edfb1a2009-11-25 17:46:16 +0100843 tid_agg_rx->stored_mpdu_num--;
Michal Kazior83eb9352014-07-16 12:09:31 +0200844 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 }
Johannes Berg1edfb1a2009-11-25 17:46:16 +0100849
850no_frame:
Sara Sharon06470f72016-01-28 16:19:25 +0200851 tid_agg_rx->reorder_buf_filtered &= ~BIT_ULL(index);
Johannes Berg9a886582013-02-15 19:25:00 +0100852 tid_agg_rx->head_seq_num = ieee80211_sn_inc(tid_agg_rx->head_seq_num);
Johannes Berg1edfb1a2009-11-25 17:46:16 +0100853}
854
Johannes Bergd3b2fb52012-06-22 12:48:38 +0200855static void ieee80211_release_reorder_frames(struct ieee80211_sub_if_data *sdata,
Johannes Berg1edfb1a2009-11-25 17:46:16 +0100856 struct tid_ampdu_rx *tid_agg_rx,
Christian Lamparterf9e124f2013-02-04 17:44:44 +0000857 u16 head_seq_num,
858 struct sk_buff_head *frames)
Johannes Berg1edfb1a2009-11-25 17:46:16 +0100859{
860 int index;
861
Johannes Bergdd318572010-11-29 11:09:16 +0100862 lockdep_assert_held(&tid_agg_rx->reorder_lock);
863
Johannes Berg9a886582013-02-15 19:25:00 +0100864 while (ieee80211_sn_less(tid_agg_rx->head_seq_num, head_seq_num)) {
Karl Beldan2e3049b2013-10-24 15:53:32 +0200865 index = tid_agg_rx->head_seq_num % tid_agg_rx->buf_size;
Christian Lamparterf9e124f2013-02-04 17:44:44 +0000866 ieee80211_release_reorder_frame(sdata, tid_agg_rx, index,
867 frames);
Johannes Berg1edfb1a2009-11-25 17:46:16 +0100868 }
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.
Christian Lamparter2bff8eb2010-08-05 01:36:41 +0200877 *
878 * Callers must hold tid_agg_rx->reorder_lock.
Johannes Berg1edfb1a2009-11-25 17:46:16 +0100879 */
880#define HT_RX_REORDER_BUF_TIMEOUT (HZ / 10)
881
Johannes Bergd3b2fb52012-06-22 12:48:38 +0200882static void ieee80211_sta_reorder_release(struct ieee80211_sub_if_data *sdata,
Christian Lamparterf9e124f2013-02-04 17:44:44 +0000883 struct tid_ampdu_rx *tid_agg_rx,
884 struct sk_buff_head *frames)
Christian Lamparteraa0c8632010-08-05 01:36:04 +0200885{
Michal Kazior83eb9352014-07-16 12:09:31 +0200886 int index, i, j;
Christian Lamparteraa0c8632010-08-05 01:36:04 +0200887
Johannes Bergdd318572010-11-29 11:09:16 +0100888 lockdep_assert_held(&tid_agg_rx->reorder_lock);
889
Christian Lamparteraa0c8632010-08-05 01:36:04 +0200890 /* release the buffer until next missing frame */
Karl Beldan2e3049b2013-10-24 15:53:32 +0200891 index = tid_agg_rx->head_seq_num % tid_agg_rx->buf_size;
Johannes Bergfb4ea052016-01-28 16:19:24 +0200892 if (!ieee80211_rx_reorder_ready(tid_agg_rx, index) &&
Eliad Peller07ae2df2012-02-01 18:48:09 +0200893 tid_agg_rx->stored_mpdu_num) {
Christian Lamparteraa0c8632010-08-05 01:36:04 +0200894 /*
895 * No buffers ready to be released, but check whether any
896 * frames in the reorder buffer have timed out.
897 */
Christian Lamparteraa0c8632010-08-05 01:36:04 +0200898 int skipped = 1;
899 for (j = (index + 1) % tid_agg_rx->buf_size; j != index;
900 j = (j + 1) % tid_agg_rx->buf_size) {
Johannes Bergfb4ea052016-01-28 16:19:24 +0200901 if (!ieee80211_rx_reorder_ready(tid_agg_rx, j)) {
Christian Lamparteraa0c8632010-08-05 01:36:04 +0200902 skipped++;
903 continue;
904 }
Daniel Halperin499fe9a2011-03-24 16:01:48 -0700905 if (skipped &&
906 !time_after(jiffies, tid_agg_rx->reorder_time[j] +
Christian Lamparteraa0c8632010-08-05 01:36:04 +0200907 HT_RX_REORDER_BUF_TIMEOUT))
Christian Lamparter2bff8eb2010-08-05 01:36:41 +0200908 goto set_release_timer;
Christian Lamparteraa0c8632010-08-05 01:36:04 +0200909
Michal Kazior83eb9352014-07-16 12:09:31 +0200910 /* 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
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200915 ht_dbg_ratelimited(sdata,
916 "release an RX reorder frame due to timeout on earlier frames\n");
Christian Lamparterf9e124f2013-02-04 17:44:44 +0000917 ieee80211_release_reorder_frame(sdata, tid_agg_rx, j,
918 frames);
Christian Lamparteraa0c8632010-08-05 01:36:04 +0200919
920 /*
921 * Increment the head seq# also for the skipped slots.
922 */
923 tid_agg_rx->head_seq_num =
Johannes Berg9a886582013-02-15 19:25:00 +0100924 (tid_agg_rx->head_seq_num +
925 skipped) & IEEE80211_SN_MASK;
Christian Lamparteraa0c8632010-08-05 01:36:04 +0200926 skipped = 0;
927 }
Johannes Bergfb4ea052016-01-28 16:19:24 +0200928 } else while (ieee80211_rx_reorder_ready(tid_agg_rx, index)) {
Christian Lamparterf9e124f2013-02-04 17:44:44 +0000929 ieee80211_release_reorder_frame(sdata, tid_agg_rx, index,
930 frames);
Karl Beldan2e3049b2013-10-24 15:53:32 +0200931 index = tid_agg_rx->head_seq_num % tid_agg_rx->buf_size;
Christian Lamparteraa0c8632010-08-05 01:36:04 +0200932 }
Christian Lamparter2bff8eb2010-08-05 01:36:41 +0200933
934 if (tid_agg_rx->stored_mpdu_num) {
Karl Beldan2e3049b2013-10-24 15:53:32 +0200935 j = index = tid_agg_rx->head_seq_num % tid_agg_rx->buf_size;
Christian Lamparter2bff8eb2010-08-05 01:36:41 +0200936
937 for (; j != (index - 1) % tid_agg_rx->buf_size;
938 j = (j + 1) % tid_agg_rx->buf_size) {
Johannes Bergfb4ea052016-01-28 16:19:24 +0200939 if (ieee80211_rx_reorder_ready(tid_agg_rx, j))
Christian Lamparter2bff8eb2010-08-05 01:36:41 +0200940 break;
941 }
942
943 set_release_timer:
944
Johannes Berg788211d2015-04-01 14:20:42 +0200945 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);
Christian Lamparter2bff8eb2010-08-05 01:36:41 +0200949 } else {
950 del_timer(&tid_agg_rx->reorder_timer);
951 }
Christian Lamparteraa0c8632010-08-05 01:36:04 +0200952}
953
Johannes Berg1edfb1a2009-11-25 17:46:16 +0100954/*
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 */
Johannes Bergd3b2fb52012-06-22 12:48:38 +0200959static bool ieee80211_sta_manage_reorder_buf(struct ieee80211_sub_if_data *sdata,
Johannes Berg1edfb1a2009-11-25 17:46:16 +0100960 struct tid_ampdu_rx *tid_agg_rx,
Christian Lamparterf9e124f2013-02-04 17:44:44 +0000961 struct sk_buff *skb,
962 struct sk_buff_head *frames)
Johannes Berg1edfb1a2009-11-25 17:46:16 +0100963{
964 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
Michal Kazior83eb9352014-07-16 12:09:31 +0200965 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
Johannes Berg1edfb1a2009-11-25 17:46:16 +0100966 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;
Christian Lamparter2bff8eb2010-08-05 01:36:41 +0200970 bool ret = true;
Johannes Berg1edfb1a2009-11-25 17:46:16 +0100971
Johannes Bergdd318572010-11-29 11:09:16 +0100972 spin_lock(&tid_agg_rx->reorder_lock);
973
Michal Kazior4549cf22014-09-02 14:05:10 +0200974 /*
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
Johannes Berg1edfb1a2009-11-25 17:46:16 +0100984 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 */
Johannes Berg9a886582013-02-15 19:25:00 +0100988 if (ieee80211_sn_less(mpdu_seq_num, head_seq_num)) {
Johannes Berg1edfb1a2009-11-25 17:46:16 +0100989 dev_kfree_skb(skb);
Christian Lamparter2bff8eb2010-08-05 01:36:41 +0200990 goto out;
Johannes Berg1edfb1a2009-11-25 17:46:16 +0100991 }
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 */
Johannes Berg9a886582013-02-15 19:25:00 +0100997 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));
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001000 /* release stored frames up to new head to stack */
Johannes Bergd3b2fb52012-06-22 12:48:38 +02001001 ieee80211_release_reorder_frames(sdata, tid_agg_rx,
Christian Lamparterf9e124f2013-02-04 17:44:44 +00001002 head_seq_num, frames);
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001003 }
1004
1005 /* Now the new frame is always in the range of the reordering buffer */
1006
Karl Beldan2e3049b2013-10-24 15:53:32 +02001007 index = mpdu_seq_num % tid_agg_rx->buf_size;
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001008
1009 /* check if we already stored this frame */
Johannes Bergfb4ea052016-01-28 16:19:24 +02001010 if (ieee80211_rx_reorder_ready(tid_agg_rx, index)) {
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001011 dev_kfree_skb(skb);
Christian Lamparter2bff8eb2010-08-05 01:36:41 +02001012 goto out;
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001013 }
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.
Johannes Bergc835b212011-03-15 23:17:01 +01001018 * If it is first but there's something stored, we may be able
1019 * to release frames after this one.
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001020 */
1021 if (mpdu_seq_num == tid_agg_rx->head_seq_num &&
1022 tid_agg_rx->stored_mpdu_num == 0) {
Michal Kazior83eb9352014-07-16 12:09:31 +02001023 if (!(status->flag & RX_FLAG_AMSDU_MORE))
1024 tid_agg_rx->head_seq_num =
1025 ieee80211_sn_inc(tid_agg_rx->head_seq_num);
Christian Lamparter2bff8eb2010-08-05 01:36:41 +02001026 ret = false;
1027 goto out;
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001028 }
1029
1030 /* put the frame in the reordering buffer */
Michal Kazior83eb9352014-07-16 12:09:31 +02001031 __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 }
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001037
Christian Lamparter2bff8eb2010-08-05 01:36:41 +02001038 out:
1039 spin_unlock(&tid_agg_rx->reorder_lock);
1040 return ret;
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001041}
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 */
Christian Lamparterf9e124f2013-02-04 17:44:44 +00001047static void ieee80211_rx_reorder_ampdu(struct ieee80211_rx_data *rx,
1048 struct sk_buff_head *frames)
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001049{
Johannes Berg2569a822009-11-25 17:46:17 +01001050 struct sk_buff *skb = rx->skb;
1051 struct ieee80211_local *local = rx->local;
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001052 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
Johannes Berg2569a822009-11-25 17:46:17 +01001053 struct sta_info *sta = rx->sta;
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001054 struct tid_ampdu_rx *tid_agg_rx;
1055 u16 sc;
Thomas Pedersen6cc00d52011-11-03 21:11:11 -07001056 u8 tid, ack_policy;
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001057
Johannes Berg051a41f2013-11-20 11:28:27 +01001058 if (!ieee80211_is_data_qos(hdr->frame_control) ||
1059 is_multicast_ether_addr(hdr->addr1))
Johannes Berg2569a822009-11-25 17:46:17 +01001060 goto dont_reorder;
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001061
1062 /*
1063 * filter the QoS data rx stream according to
1064 * STA/TID and check if this STA/TID is on aggregation
1065 */
1066
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001067 if (!sta)
Johannes Berg2569a822009-11-25 17:46:17 +01001068 goto dont_reorder;
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001069
Thomas Pedersen6cc00d52011-11-03 21:11:11 -07001070 ack_policy = *ieee80211_get_qos_ctl(hdr) &
1071 IEEE80211_QOS_CTL_ACK_POLICY_MASK;
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001072 tid = *ieee80211_get_qos_ctl(hdr) & IEEE80211_QOS_CTL_TID_MASK;
1073
Johannes Berga87f7362010-06-10 10:21:38 +02001074 tid_agg_rx = rcu_dereference(sta->ampdu_mlme.tid_rx[tid]);
1075 if (!tid_agg_rx)
1076 goto dont_reorder;
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001077
1078 /* qos null data frames are excluded */
1079 if (unlikely(hdr->frame_control & cpu_to_le16(IEEE80211_STYPE_NULLFUNC)))
Johannes Berga87f7362010-06-10 10:21:38 +02001080 goto dont_reorder;
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001081
Thomas Pedersen6cc00d52011-11-03 21:11:11 -07001082 /* 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
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001087 /* new, potentially un-ordered, ampdu frame - process it */
1088
1089 /* reset session timer */
1090 if (tid_agg_rx->timeout)
Felix Fietkau12d3952f2012-03-18 22:58:06 +01001091 tid_agg_rx->last_rx = jiffies;
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001092
1093 /* if this mpdu is fragmented - terminate rx aggregation session */
1094 sc = le16_to_cpu(hdr->seq_ctrl);
1095 if (sc & IEEE80211_SCTL_FRAG) {
Johannes Bergc1475ca2010-06-10 10:21:37 +02001096 skb->pkt_type = IEEE80211_SDATA_QUEUE_TYPE_FRAME;
Johannes Berg344eec62010-06-10 10:21:36 +02001097 skb_queue_tail(&rx->sdata->skb_queue, skb);
1098 ieee80211_queue_work(&local->hw, &rx->sdata->work);
Johannes Berg2569a822009-11-25 17:46:17 +01001099 return;
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001100 }
1101
Johannes Berga87f7362010-06-10 10:21:38 +02001102 /*
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 */
Christian Lamparterf9e124f2013-02-04 17:44:44 +00001109 if (ieee80211_sta_manage_reorder_buf(rx->sdata, tid_agg_rx, skb,
1110 frames))
Johannes Berg2569a822009-11-25 17:46:17 +01001111 return;
1112
1113 dont_reorder:
Christian Lamparterf9e124f2013-02-04 17:44:44 +00001114 __skb_queue_tail(frames, skb);
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001115}
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001116
Johannes Berg49461622008-06-30 15:10:45 +02001117static ieee80211_rx_result debug_noinline
Johannes Berg03954422014-11-11 16:49:25 +01001118ieee80211_rx_h_check_dup(struct ieee80211_rx_data *rx)
Johannes Berg571ecf62007-07-27 15:43:22 +02001119{
Harvey Harrisona7767f92008-07-02 16:30:51 -07001120 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
Johannes Berg554891e2010-09-24 12:38:25 +02001121 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(rx->skb);
Johannes Berg571ecf62007-07-27 15:43:22 +02001122
Sara Sharonf9cfa5f2015-12-08 16:04:33 +02001123 if (status->flag & RX_FLAG_DUP_VALIDATED)
1124 return RX_CONTINUE;
1125
Johannes Berg6b0f3272013-07-11 22:33:26 +02001126 /*
1127 * Drop duplicate 802.11 retransmissions
1128 * (IEEE 802.11-2012: 9.3.2.10 "Duplicate detection and recovery")
1129 */
Johannes Berg03954422014-11-11 16:49:25 +01001130
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
Johannes Berga732fa72015-10-14 18:27:07 +02001139 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);
Johannes Berge5a9f8d2015-10-16 17:54:47 +02001145 rx->sta->rx_stats.num_duplicates++;
Johannes Berga732fa72015-10-14 18:27:07 +02001146 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;
Johannes Berg571ecf62007-07-27 15:43:22 +02001149 }
1150
Johannes Berg03954422014-11-11 16:49:25 +01001151 return RX_CONTINUE;
1152}
1153
1154static ieee80211_rx_result debug_noinline
1155ieee80211_rx_h_check(struct ieee80211_rx_data *rx)
1156{
1157 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
1158
Johannes Berg571ecf62007-07-27 15:43:22 +02001159 /* Drop disallowed frame classes based on STA auth/assoc state;
1160 * IEEE 802.11, Chap 5.5.
1161 *
Johannes Bergccd7b362008-09-11 00:01:56 +02001162 * mac80211 filters only based on association state, i.e. it drops
1163 * Class 3 frames from not associated stations. hostapd sends
Johannes Berg571ecf62007-07-27 15:43:22 +02001164 * deauth/disassoc frames when needed. In addition, hostapd is
1165 * responsible for filtering on both auth and assoc states.
1166 */
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001167
Johannes Berg902acc72008-02-23 15:17:19 +01001168 if (ieee80211_vif_is_mesh(&rx->sdata->vif))
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001169 return ieee80211_rx_mesh_check(rx);
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001170
Harvey Harrisona7767f92008-07-02 16:30:51 -07001171 if (unlikely((ieee80211_is_data(hdr->frame_control) ||
1172 ieee80211_is_pspoll(hdr->frame_control)) &&
Johannes Berg05c914f2008-09-11 00:01:58 +02001173 rx->sdata->vif.type != NL80211_IFTYPE_ADHOC &&
Bill Jordan1be7fe82010-10-01 11:20:41 -04001174 rx->sdata->vif.type != NL80211_IFTYPE_WDS &&
Rostislav Lisovy239281f2014-11-03 10:33:19 +01001175 rx->sdata->vif.type != NL80211_IFTYPE_OCB &&
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001176 (!rx->sta || !test_sta_flag(rx->sta, WLAN_STA_ASSOC)))) {
Johannes Berg7852e362012-01-20 13:55:24 +01001177 /*
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 &&
Guy Eilam2a33bee2011-08-17 15:18:15 +03001183 ieee80211_is_data_present(hdr->frame_control)) {
Johannes Berg6dbda2d2012-10-26 00:41:23 +02001184 unsigned int hdrlen;
1185 __be16 ethertype;
Guy Eilam2a33bee2011-08-17 15:18:15 +03001186
Johannes Berg6dbda2d2012-10-26 00:41:23 +02001187 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)
Guy Eilam2a33bee2011-08-17 15:18:15 +03001194 return RX_CONTINUE;
1195 }
Johannes Berg21fc7562011-11-04 11:18:13 +01001196
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
Johannes Berge4c26ad2008-01-31 19:48:21 +01001203 return RX_DROP_MONITOR;
Guy Eilam2a33bee2011-08-17 15:18:15 +03001204 }
Johannes Berg571ecf62007-07-27 15:43:22 +02001205
Johannes Berg9ae54c82008-01-31 19:48:20 +01001206 return RX_CONTINUE;
Johannes Berg570bd532007-07-27 15:43:22 +02001207}
1208
1209
Johannes Berg49461622008-06-30 15:10:45 +02001210static ieee80211_rx_result debug_noinline
Kalle Valo572e0012009-02-10 17:09:31 +02001211ieee80211_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
Marco Porschd012a602012-10-10 12:39:50 -07001243static void sta_ps_start(struct sta_info *sta)
Johannes Berg571ecf62007-07-27 15:43:22 +02001244{
Johannes Berg133b8222008-09-16 14:18:59 +02001245 struct ieee80211_sub_if_data *sdata = sta->sdata;
Christian Lamparter4571d3b2008-11-30 00:48:41 +01001246 struct ieee80211_local *local = sdata->local;
Marco Porschd012a602012-10-10 12:39:50 -07001247 struct ps_data *ps;
Felix Fietkauba8c3d62015-03-27 21:30:37 +01001248 int tid;
Joe Perches0795af52007-10-03 17:59:30 -07001249
Marco Porschd012a602012-10-10 12:39:50 -07001250 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);
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001257 set_sta_flag(sta, WLAN_STA_PS_STA);
Johannes Berg30686bf2015-06-02 21:39:54 +02001258 if (!ieee80211_hw_check(&local->hw, AP_LINK_PS))
Arik Nemtsovd057e5a2011-01-31 22:29:13 +02001259 drv_sta_notify(local, sdata, STA_NOTIFY_SLEEP, &sta->sta);
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02001260 ps_dbg(sdata, "STA %pM aid %d enters power save mode\n",
1261 sta->sta.addr, sta->sta.aid);
Felix Fietkauba8c3d62015-03-27 21:30:37 +01001262
Johannes Berg17c18bf2015-03-21 15:25:43 +01001263 ieee80211_clear_fast_xmit(sta);
1264
Felix Fietkauba8c3d62015-03-27 21:30:37 +01001265 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 }
Johannes Berg571ecf62007-07-27 15:43:22 +02001276}
1277
Marco Porschd012a602012-10-10 12:39:50 -07001278static void sta_ps_end(struct sta_info *sta)
Johannes Berg571ecf62007-07-27 15:43:22 +02001279{
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02001280 ps_dbg(sta->sdata, "STA %pM aid %d exits power save mode\n",
1281 sta->sta.addr, sta->sta.aid);
Johannes Berg004c8722008-02-20 11:21:35 +01001282
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001283 if (test_sta_flag(sta, WLAN_STA_PS_DRIVER)) {
Johannes Berge3685e02014-02-20 11:19:58 +01001284 /*
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);
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02001291 ps_dbg(sta->sdata, "STA %pM aid %d driver-ps-blocked\n",
1292 sta->sta.addr, sta->sta.aid);
Johannes Bergaf818582009-11-06 11:35:50 +01001293 return;
1294 }
1295
Johannes Berg5ac2e352014-05-27 16:32:27 +02001296 set_sta_flag(sta, WLAN_STA_PS_DELIVER);
1297 clear_sta_flag(sta, WLAN_STA_PS_STA);
Johannes Bergaf818582009-11-06 11:35:50 +01001298 ieee80211_sta_ps_deliver_wakeup(sta);
Johannes Berg571ecf62007-07-27 15:43:22 +02001299}
1300
Johannes Bergcf471612015-06-16 16:16:38 +02001301int ieee80211_sta_ps_transition(struct ieee80211_sta *pubsta, bool start)
Arik Nemtsovd057e5a2011-01-31 22:29:13 +02001302{
Johannes Bergcf471612015-06-16 16:16:38 +02001303 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
Arik Nemtsovd057e5a2011-01-31 22:29:13 +02001304 bool in_ps;
1305
Johannes Bergcf471612015-06-16 16:16:38 +02001306 WARN_ON(!ieee80211_hw_check(&sta->local->hw, AP_LINK_PS));
Arik Nemtsovd057e5a2011-01-31 22:29:13 +02001307
1308 /* Don't let the same PS state be set twice */
Johannes Bergcf471612015-06-16 16:16:38 +02001309 in_ps = test_sta_flag(sta, WLAN_STA_PS_STA);
Arik Nemtsovd057e5a2011-01-31 22:29:13 +02001310 if ((start && in_ps) || (!start && !in_ps))
1311 return -EINVAL;
1312
1313 if (start)
Johannes Bergcf471612015-06-16 16:16:38 +02001314 sta_ps_start(sta);
Arik Nemtsovd057e5a2011-01-31 22:29:13 +02001315 else
Johannes Bergcf471612015-06-16 16:16:38 +02001316 sta_ps_end(sta);
Arik Nemtsovd057e5a2011-01-31 22:29:13 +02001317
1318 return 0;
1319}
1320EXPORT_SYMBOL(ieee80211_sta_ps_transition);
1321
Johannes Berg49461622008-06-30 15:10:45 +02001322static ieee80211_rx_result debug_noinline
Johannes Berg47086fc2011-09-29 16:04:33 +02001323ieee80211_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
Johannes Berg5c900672015-04-22 14:48:34 +02001330 if (!rx->sta)
Johannes Berg47086fc2011-09-29 16:04:33 +02001331 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 */
Johannes Berg30686bf2015-06-02 21:39:54 +02001342 if (ieee80211_hw_check(&sdata->local->hw, AP_LINK_PS))
Johannes Berg47086fc2011-09-29 16:04:33 +02001343 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 */
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001350 if (!test_sta_flag(rx->sta, WLAN_STA_PS_STA))
Johannes Berg47086fc2011-09-29 16:04:33 +02001351 return RX_CONTINUE;
1352
1353 if (unlikely(ieee80211_is_pspoll(hdr->frame_control))) {
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001354 if (!test_sta_flag(rx->sta, WLAN_STA_SP)) {
1355 if (!test_sta_flag(rx->sta, WLAN_STA_PS_DRIVER))
Johannes Bergdeeaee12011-09-29 16:04:35 +02001356 ieee80211_sta_ps_deliver_poll_response(rx->sta);
1357 else
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001358 set_sta_flag(rx->sta, WLAN_STA_PSPOLL);
Johannes Bergdeeaee12011-09-29 16:04:35 +02001359 }
Johannes Berg47086fc2011-09-29 16:04:33 +02001360
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 */
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001385 if (test_sta_flag(rx->sta, WLAN_STA_SP))
Johannes Berg47086fc2011-09-29 16:04:33 +02001386 return RX_CONTINUE;
1387
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001388 if (!test_sta_flag(rx->sta, WLAN_STA_PS_DRIVER))
Johannes Berg47086fc2011-09-29 16:04:33 +02001389 ieee80211_sta_ps_deliver_uapsd(rx->sta);
1390 else
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001391 set_sta_flag(rx->sta, WLAN_STA_UAPSD);
Johannes Berg47086fc2011-09-29 16:04:33 +02001392 }
1393
1394 return RX_CONTINUE;
1395}
1396
1397static ieee80211_rx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +01001398ieee80211_rx_h_sta_process(struct ieee80211_rx_data *rx)
Johannes Berg571ecf62007-07-27 15:43:22 +02001399{
1400 struct sta_info *sta = rx->sta;
Johannes Bergeb9fb5b2009-11-16 13:58:20 +01001401 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;
Felix Fietkauef0621e2013-04-22 16:29:31 +02001404 int i;
Johannes Berg571ecf62007-07-27 15:43:22 +02001405
1406 if (!sta)
Johannes Berg9ae54c82008-01-31 19:48:20 +01001407 return RX_CONTINUE;
Johannes Berg571ecf62007-07-27 15:43:22 +02001408
Johannes Bergb291ba12009-07-10 15:29:03 +02001409 /*
1410 * Update last_rx only for IBSS packets which are for the current
Antonio Quartullie584da5e2012-11-25 23:13:42 +01001411 * 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.
Johannes Bergb291ba12009-07-10 15:29:03 +02001416 */
Johannes Berg05c914f2008-09-11 00:01:58 +02001417 if (rx->sdata->vif.type == NL80211_IFTYPE_ADHOC) {
Ron Rindjunsky71364712007-12-25 17:00:36 +02001418 u8 *bssid = ieee80211_get_bssid(hdr, rx->skb->len,
Johannes Berg05c914f2008-09-11 00:01:58 +02001419 NL80211_IFTYPE_ADHOC);
Antonio Quartullie584da5e2012-11-25 23:13:42 +01001420 if (ether_addr_equal(bssid, rx->sdata->u.ibss.bssid) &&
1421 test_sta_flag(sta, WLAN_STA_AUTHORIZED)) {
Johannes Berge5a9f8d2015-10-16 17:54:47 +02001422 sta->rx_stats.last_rx = jiffies;
Henning Roggef4ebddf2014-05-01 10:03:46 +02001423 if (ieee80211_is_data(hdr->frame_control) &&
1424 !is_multicast_ether_addr(hdr->addr1)) {
Johannes Berge5a9f8d2015-10-16 17:54:47 +02001425 sta->rx_stats.last_rate_idx =
1426 status->rate_idx;
1427 sta->rx_stats.last_rate_flag =
1428 status->flag;
1429 sta->rx_stats.last_rate_vht_flag =
1430 status->vht_flag;
1431 sta->rx_stats.last_rate_vht_nss =
1432 status->vht_nss;
Felix Fietkau3af63342011-02-27 22:08:01 +01001433 }
1434 }
Rostislav Lisovy239281f2014-11-03 10:33:19 +01001435 } else if (rx->sdata->vif.type == NL80211_IFTYPE_OCB) {
Johannes Berge5a9f8d2015-10-16 17:54:47 +02001436 sta->rx_stats.last_rx = jiffies;
Johannes Bergb291ba12009-07-10 15:29:03 +02001437 } else if (!is_multicast_ether_addr(hdr->addr1)) {
1438 /*
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001439 * Mesh beacons will update last_rx when if they are found to
1440 * match the current local configuration when processed.
Johannes Berg571ecf62007-07-27 15:43:22 +02001441 */
Johannes Berge5a9f8d2015-10-16 17:54:47 +02001442 sta->rx_stats.last_rx = jiffies;
Felix Fietkau3af63342011-02-27 22:08:01 +01001443 if (ieee80211_is_data(hdr->frame_control)) {
Johannes Berge5a9f8d2015-10-16 17:54:47 +02001444 sta->rx_stats.last_rate_idx = status->rate_idx;
1445 sta->rx_stats.last_rate_flag = status->flag;
1446 sta->rx_stats.last_rate_vht_flag = status->vht_flag;
1447 sta->rx_stats.last_rate_vht_nss = status->vht_nss;
Felix Fietkau3af63342011-02-27 22:08:01 +01001448 }
Johannes Berg571ecf62007-07-27 15:43:22 +02001449 }
1450
Kalle Valo3cf335d2009-03-22 21:57:06 +02001451 if (rx->sdata->vif.type == NL80211_IFTYPE_STATION)
1452 ieee80211_sta_rx_notify(rx->sdata, hdr);
1453
Johannes Berge5a9f8d2015-10-16 17:54:47 +02001454 sta->rx_stats.fragments++;
1455 sta->rx_stats.bytes += rx->skb->len;
Felix Fietkaufe8431f2012-03-01 18:00:07 +01001456 if (!(status->flag & RX_FLAG_NO_SIGNAL_VAL)) {
Johannes Berge5a9f8d2015-10-16 17:54:47 +02001457 sta->rx_stats.last_signal = status->signal;
1458 ewma_signal_add(&sta->rx_stats.avg_signal, -status->signal);
Felix Fietkaufe8431f2012-03-01 18:00:07 +01001459 }
Johannes Berg571ecf62007-07-27 15:43:22 +02001460
Felix Fietkauef0621e2013-04-22 16:29:31 +02001461 if (status->chains) {
Johannes Berge5a9f8d2015-10-16 17:54:47 +02001462 sta->rx_stats.chains = status->chains;
Felix Fietkauef0621e2013-04-22 16:29:31 +02001463 for (i = 0; i < ARRAY_SIZE(status->chain_signal); i++) {
1464 int signal = status->chain_signal[i];
1465
1466 if (!(status->chains & BIT(i)))
1467 continue;
1468
Johannes Berge5a9f8d2015-10-16 17:54:47 +02001469 sta->rx_stats.chain_signal_last[i] = signal;
1470 ewma_signal_add(&sta->rx_stats.chain_signal_avg[i],
1471 -signal);
Felix Fietkauef0621e2013-04-22 16:29:31 +02001472 }
1473 }
1474
Johannes Berg72eaa432008-11-26 15:02:58 +01001475 /*
1476 * Change STA power saving mode only at the end of a frame
1477 * exchange sequence.
1478 */
Johannes Berg30686bf2015-06-02 21:39:54 +02001479 if (!ieee80211_hw_check(&sta->local->hw, AP_LINK_PS) &&
Arik Nemtsovd057e5a2011-01-31 22:29:13 +02001480 !ieee80211_has_morefrags(hdr->frame_control) &&
Christian Lamparter4cfda472010-12-27 23:21:26 +01001481 !(status->rx_flags & IEEE80211_RX_DEFERRED_RELEASE) &&
Johannes Berg05c914f2008-09-11 00:01:58 +02001482 (rx->sdata->vif.type == NL80211_IFTYPE_AP ||
Johannes Bergb4ba5442014-01-24 14:41:44 +01001483 rx->sdata->vif.type == NL80211_IFTYPE_AP_VLAN) &&
1484 /* PM bit is only checked in frames where it isn't reserved,
1485 * in AP mode it's reserved in non-bufferable management frames
1486 * (cf. IEEE 802.11-2012 8.2.4.1.7 Power Management field)
1487 */
1488 (!ieee80211_is_mgmt(hdr->frame_control) ||
1489 ieee80211_is_bufferable_mmpdu(hdr->frame_control))) {
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001490 if (test_sta_flag(sta, WLAN_STA_PS_STA)) {
Johannes Bergb4ba5442014-01-24 14:41:44 +01001491 if (!ieee80211_has_pm(hdr->frame_control))
Marco Porschd012a602012-10-10 12:39:50 -07001492 sta_ps_end(sta);
Johannes Berg72eaa432008-11-26 15:02:58 +01001493 } else {
1494 if (ieee80211_has_pm(hdr->frame_control))
Marco Porschd012a602012-10-10 12:39:50 -07001495 sta_ps_start(sta);
Johannes Berg72eaa432008-11-26 15:02:58 +01001496 }
Johannes Berg571ecf62007-07-27 15:43:22 +02001497 }
1498
Marco Porsch3f52b7e2013-01-30 18:14:08 +01001499 /* mesh power save support */
1500 if (ieee80211_vif_is_mesh(&rx->sdata->vif))
1501 ieee80211_mps_rx_h_sta_process(sta, hdr);
1502
Johannes Berg22403de2009-10-30 12:55:03 +01001503 /*
1504 * Drop (qos-)data::nullfunc frames silently, since they
1505 * are used only to control station power saving mode.
1506 */
1507 if (ieee80211_is_nullfunc(hdr->frame_control) ||
1508 ieee80211_is_qos_nullfunc(hdr->frame_control)) {
Johannes Berg571ecf62007-07-27 15:43:22 +02001509 I802_DEBUG_INC(rx->local->rx_handlers_drop_nullfunc);
Felix Fietkaud5242152010-01-08 18:06:26 +01001510
1511 /*
1512 * If we receive a 4-addr nullfunc frame from a STA
Johannes Berge7f4a942011-11-04 11:18:20 +01001513 * that was not moved to a 4-addr STA vlan yet send
1514 * the event to userspace and for older hostapd drop
1515 * the frame to the monitor interface.
Felix Fietkaud5242152010-01-08 18:06:26 +01001516 */
1517 if (ieee80211_has_a4(hdr->frame_control) &&
1518 (rx->sdata->vif.type == NL80211_IFTYPE_AP ||
1519 (rx->sdata->vif.type == NL80211_IFTYPE_AP_VLAN &&
Johannes Berge7f4a942011-11-04 11:18:20 +01001520 !rx->sdata->u.vlan.sta))) {
1521 if (!test_and_set_sta_flag(sta, WLAN_STA_4ADDR_EVENT))
1522 cfg80211_rx_unexpected_4addr_frame(
1523 rx->sdata->dev, sta->sta.addr,
1524 GFP_ATOMIC);
Felix Fietkaud5242152010-01-08 18:06:26 +01001525 return RX_DROP_MONITOR;
Johannes Berge7f4a942011-11-04 11:18:20 +01001526 }
Johannes Berg22403de2009-10-30 12:55:03 +01001527 /*
1528 * Update counter and free packet here to avoid
1529 * counting this as a dropped packed.
1530 */
Johannes Berge5a9f8d2015-10-16 17:54:47 +02001531 sta->rx_stats.packets++;
Johannes Berg571ecf62007-07-27 15:43:22 +02001532 dev_kfree_skb(rx->skb);
Johannes Berg9ae54c82008-01-31 19:48:20 +01001533 return RX_QUEUED;
Johannes Berg571ecf62007-07-27 15:43:22 +02001534 }
1535
Johannes Berg9ae54c82008-01-31 19:48:20 +01001536 return RX_CONTINUE;
Johannes Berg571ecf62007-07-27 15:43:22 +02001537} /* ieee80211_rx_h_sta_process */
1538
Johan Almbladh86c228a2013-08-14 15:29:46 +02001539static ieee80211_rx_result debug_noinline
1540ieee80211_rx_h_decrypt(struct ieee80211_rx_data *rx)
1541{
1542 struct sk_buff *skb = rx->skb;
1543 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
1544 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
1545 int keyidx;
1546 int hdrlen;
1547 ieee80211_rx_result result = RX_DROP_UNUSABLE;
1548 struct ieee80211_key *sta_ptk = NULL;
1549 int mmie_keyidx = -1;
1550 __le16 fc;
Max Stepanov2475b1cc2013-03-24 14:23:27 +02001551 const struct ieee80211_cipher_scheme *cs = NULL;
Johan Almbladh86c228a2013-08-14 15:29:46 +02001552
1553 /*
1554 * Key selection 101
1555 *
1556 * There are four types of keys:
1557 * - GTK (group keys)
1558 * - IGTK (group keys for management frames)
1559 * - PTK (pairwise keys)
1560 * - STK (station-to-station pairwise keys)
1561 *
1562 * When selecting a key, we have to distinguish between multicast
1563 * (including broadcast) and unicast frames, the latter can only
1564 * use PTKs and STKs while the former always use GTKs and IGTKs.
1565 * Unless, of course, actual WEP keys ("pre-RSNA") are used, then
1566 * unicast frames can also use key indices like GTKs. Hence, if we
1567 * don't have a PTK/STK we check the key index for a WEP key.
1568 *
1569 * Note that in a regular BSS, multicast frames are sent by the
1570 * AP only, associated stations unicast the frame to the AP first
1571 * which then multicasts it on their behalf.
1572 *
1573 * There is also a slight problem in IBSS mode: GTKs are negotiated
1574 * with each station, that is something we don't currently handle.
1575 * The spec seems to expect that one negotiates the same key with
1576 * every station but there's no such requirement; VLANs could be
1577 * possible.
1578 */
1579
Johan Almbladh86c228a2013-08-14 15:29:46 +02001580 /* start without a key */
1581 rx->key = NULL;
Johan Almbladh86c228a2013-08-14 15:29:46 +02001582 fc = hdr->frame_control;
1583
Max Stepanov2475b1cc2013-03-24 14:23:27 +02001584 if (rx->sta) {
1585 int keyid = rx->sta->ptk_idx;
1586
1587 if (ieee80211_has_protected(fc) && rx->sta->cipher_scheme) {
1588 cs = rx->sta->cipher_scheme;
1589 keyid = iwl80211_get_cs_keyid(cs, rx->skb);
1590 if (unlikely(keyid < 0))
1591 return RX_DROP_UNUSABLE;
1592 }
1593 sta_ptk = rcu_dereference(rx->sta->ptk[keyid]);
1594 }
1595
Johan Almbladh86c228a2013-08-14 15:29:46 +02001596 if (!ieee80211_has_protected(fc))
1597 mmie_keyidx = ieee80211_get_mmie_keyidx(rx->skb);
1598
1599 if (!is_multicast_ether_addr(hdr->addr1) && sta_ptk) {
1600 rx->key = sta_ptk;
1601 if ((status->flag & RX_FLAG_DECRYPTED) &&
1602 (status->flag & RX_FLAG_IV_STRIPPED))
1603 return RX_CONTINUE;
1604 /* Skip decryption if the frame is not protected. */
1605 if (!ieee80211_has_protected(fc))
1606 return RX_CONTINUE;
1607 } else if (mmie_keyidx >= 0) {
1608 /* Broadcast/multicast robust management frame / BIP */
1609 if ((status->flag & RX_FLAG_DECRYPTED) &&
1610 (status->flag & RX_FLAG_IV_STRIPPED))
1611 return RX_CONTINUE;
1612
1613 if (mmie_keyidx < NUM_DEFAULT_KEYS ||
1614 mmie_keyidx >= NUM_DEFAULT_KEYS + NUM_DEFAULT_MGMT_KEYS)
1615 return RX_DROP_MONITOR; /* unexpected BIP keyidx */
1616 if (rx->sta)
1617 rx->key = rcu_dereference(rx->sta->gtk[mmie_keyidx]);
1618 if (!rx->key)
1619 rx->key = rcu_dereference(rx->sdata->keys[mmie_keyidx]);
1620 } else if (!ieee80211_has_protected(fc)) {
1621 /*
1622 * The frame was not protected, so skip decryption. However, we
1623 * need to set rx->key if there is a key that could have been
1624 * used so that the frame may be dropped if encryption would
1625 * have been expected.
1626 */
1627 struct ieee80211_key *key = NULL;
1628 struct ieee80211_sub_if_data *sdata = rx->sdata;
1629 int i;
1630
1631 if (ieee80211_is_mgmt(fc) &&
1632 is_multicast_ether_addr(hdr->addr1) &&
1633 (key = rcu_dereference(rx->sdata->default_mgmt_key)))
1634 rx->key = key;
1635 else {
1636 if (rx->sta) {
1637 for (i = 0; i < NUM_DEFAULT_KEYS; i++) {
1638 key = rcu_dereference(rx->sta->gtk[i]);
1639 if (key)
1640 break;
1641 }
1642 }
1643 if (!key) {
1644 for (i = 0; i < NUM_DEFAULT_KEYS; i++) {
1645 key = rcu_dereference(sdata->keys[i]);
1646 if (key)
1647 break;
1648 }
1649 }
1650 if (key)
1651 rx->key = key;
1652 }
1653 return RX_CONTINUE;
1654 } else {
1655 u8 keyid;
Max Stepanov2475b1cc2013-03-24 14:23:27 +02001656
Johan Almbladh86c228a2013-08-14 15:29:46 +02001657 /*
1658 * The device doesn't give us the IV so we won't be
1659 * able to look up the key. That's ok though, we
1660 * don't need to decrypt the frame, we just won't
1661 * be able to keep statistics accurate.
1662 * Except for key threshold notifications, should
1663 * we somehow allow the driver to tell us which key
1664 * the hardware used if this flag is set?
1665 */
1666 if ((status->flag & RX_FLAG_DECRYPTED) &&
1667 (status->flag & RX_FLAG_IV_STRIPPED))
1668 return RX_CONTINUE;
1669
1670 hdrlen = ieee80211_hdrlen(fc);
1671
Max Stepanov2475b1cc2013-03-24 14:23:27 +02001672 if (cs) {
1673 keyidx = iwl80211_get_cs_keyid(cs, rx->skb);
Johan Almbladh86c228a2013-08-14 15:29:46 +02001674
Max Stepanov2475b1cc2013-03-24 14:23:27 +02001675 if (unlikely(keyidx < 0))
1676 return RX_DROP_UNUSABLE;
1677 } else {
1678 if (rx->skb->len < 8 + hdrlen)
1679 return RX_DROP_UNUSABLE; /* TODO: count this? */
1680 /*
1681 * no need to call ieee80211_wep_get_keyidx,
1682 * it verifies a bunch of things we've done already
1683 */
1684 skb_copy_bits(rx->skb, hdrlen + 3, &keyid, 1);
1685 keyidx = keyid >> 6;
1686 }
Johan Almbladh86c228a2013-08-14 15:29:46 +02001687
1688 /* check per-station GTK first, if multicast packet */
1689 if (is_multicast_ether_addr(hdr->addr1) && rx->sta)
1690 rx->key = rcu_dereference(rx->sta->gtk[keyidx]);
1691
1692 /* if not found, try default key */
1693 if (!rx->key) {
1694 rx->key = rcu_dereference(rx->sdata->keys[keyidx]);
1695
1696 /*
1697 * RSNA-protected unicast frames should always be
1698 * sent with pairwise or station-to-station keys,
1699 * but for WEP we allow using a key index as well.
1700 */
1701 if (rx->key &&
1702 rx->key->conf.cipher != WLAN_CIPHER_SUITE_WEP40 &&
1703 rx->key->conf.cipher != WLAN_CIPHER_SUITE_WEP104 &&
1704 !is_multicast_ether_addr(hdr->addr1))
1705 rx->key = NULL;
1706 }
1707 }
1708
1709 if (rx->key) {
1710 if (unlikely(rx->key->flags & KEY_FLAG_TAINTED))
1711 return RX_DROP_MONITOR;
1712
Johan Almbladh86c228a2013-08-14 15:29:46 +02001713 /* TODO: add threshold stuff again */
1714 } else {
1715 return RX_DROP_MONITOR;
1716 }
1717
1718 switch (rx->key->conf.cipher) {
1719 case WLAN_CIPHER_SUITE_WEP40:
1720 case WLAN_CIPHER_SUITE_WEP104:
1721 result = ieee80211_crypto_wep_decrypt(rx);
1722 break;
1723 case WLAN_CIPHER_SUITE_TKIP:
1724 result = ieee80211_crypto_tkip_decrypt(rx);
1725 break;
1726 case WLAN_CIPHER_SUITE_CCMP:
Jouni Malinen2b2ba0d2015-01-24 19:52:07 +02001727 result = ieee80211_crypto_ccmp_decrypt(
1728 rx, IEEE80211_CCMP_MIC_LEN);
1729 break;
1730 case WLAN_CIPHER_SUITE_CCMP_256:
1731 result = ieee80211_crypto_ccmp_decrypt(
1732 rx, IEEE80211_CCMP_256_MIC_LEN);
Johan Almbladh86c228a2013-08-14 15:29:46 +02001733 break;
1734 case WLAN_CIPHER_SUITE_AES_CMAC:
1735 result = ieee80211_crypto_aes_cmac_decrypt(rx);
1736 break;
Jouni Malinen56c52da2015-01-24 19:52:08 +02001737 case WLAN_CIPHER_SUITE_BIP_CMAC_256:
1738 result = ieee80211_crypto_aes_cmac_256_decrypt(rx);
1739 break;
Jouni Malinen8ade5382015-01-24 19:52:09 +02001740 case WLAN_CIPHER_SUITE_BIP_GMAC_128:
1741 case WLAN_CIPHER_SUITE_BIP_GMAC_256:
1742 result = ieee80211_crypto_aes_gmac_decrypt(rx);
1743 break;
Jouni Malinen00b9cfa2015-01-24 19:52:06 +02001744 case WLAN_CIPHER_SUITE_GCMP:
1745 case WLAN_CIPHER_SUITE_GCMP_256:
1746 result = ieee80211_crypto_gcmp_decrypt(rx);
1747 break;
Johan Almbladh86c228a2013-08-14 15:29:46 +02001748 default:
Max Stepanov2475b1cc2013-03-24 14:23:27 +02001749 result = ieee80211_crypto_hw_decrypt(rx);
Johan Almbladh86c228a2013-08-14 15:29:46 +02001750 }
1751
1752 /* the hdr variable is invalid after the decrypt handlers */
1753
1754 /* either the frame has been decrypted or will be dropped */
1755 status->flag |= RX_FLAG_DECRYPTED;
1756
1757 return result;
1758}
1759
Johannes Berg571ecf62007-07-27 15:43:22 +02001760static inline struct ieee80211_fragment_entry *
1761ieee80211_reassemble_add(struct ieee80211_sub_if_data *sdata,
1762 unsigned int frag, unsigned int seq, int rx_queue,
1763 struct sk_buff **skb)
1764{
1765 struct ieee80211_fragment_entry *entry;
Johannes Berg571ecf62007-07-27 15:43:22 +02001766
Johannes Berg571ecf62007-07-27 15:43:22 +02001767 entry = &sdata->fragments[sdata->fragment_next++];
1768 if (sdata->fragment_next >= IEEE80211_FRAGMENT_MAX)
1769 sdata->fragment_next = 0;
1770
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02001771 if (!skb_queue_empty(&entry->skb_list))
Johannes Berg571ecf62007-07-27 15:43:22 +02001772 __skb_queue_purge(&entry->skb_list);
Johannes Berg571ecf62007-07-27 15:43:22 +02001773
1774 __skb_queue_tail(&entry->skb_list, *skb); /* no need for locking */
1775 *skb = NULL;
1776 entry->first_frag_time = jiffies;
1777 entry->seq = seq;
1778 entry->rx_queue = rx_queue;
1779 entry->last_frag = frag;
1780 entry->ccmp = 0;
1781 entry->extra_len = 0;
1782
1783 return entry;
1784}
1785
1786static inline struct ieee80211_fragment_entry *
1787ieee80211_reassemble_find(struct ieee80211_sub_if_data *sdata,
Harvey Harrisonb73d70a2008-07-15 18:44:12 -07001788 unsigned int frag, unsigned int seq,
Johannes Berg571ecf62007-07-27 15:43:22 +02001789 int rx_queue, struct ieee80211_hdr *hdr)
1790{
1791 struct ieee80211_fragment_entry *entry;
1792 int i, idx;
1793
1794 idx = sdata->fragment_next;
1795 for (i = 0; i < IEEE80211_FRAGMENT_MAX; i++) {
1796 struct ieee80211_hdr *f_hdr;
Johannes Berg571ecf62007-07-27 15:43:22 +02001797
1798 idx--;
1799 if (idx < 0)
1800 idx = IEEE80211_FRAGMENT_MAX - 1;
1801
1802 entry = &sdata->fragments[idx];
1803 if (skb_queue_empty(&entry->skb_list) || entry->seq != seq ||
1804 entry->rx_queue != rx_queue ||
1805 entry->last_frag + 1 != frag)
1806 continue;
1807
Harvey Harrisonb73d70a2008-07-15 18:44:12 -07001808 f_hdr = (struct ieee80211_hdr *)entry->skb_list.next->data;
Johannes Berg571ecf62007-07-27 15:43:22 +02001809
Harvey Harrisonb73d70a2008-07-15 18:44:12 -07001810 /*
1811 * Check ftype and addresses are equal, else check next fragment
1812 */
1813 if (((hdr->frame_control ^ f_hdr->frame_control) &
1814 cpu_to_le16(IEEE80211_FCTL_FTYPE)) ||
Joe Perchesb203ca32012-05-08 18:56:52 +00001815 !ether_addr_equal(hdr->addr1, f_hdr->addr1) ||
1816 !ether_addr_equal(hdr->addr2, f_hdr->addr2))
Johannes Berg571ecf62007-07-27 15:43:22 +02001817 continue;
1818
S.Çağlar Onurab466232008-02-14 17:36:47 +02001819 if (time_after(jiffies, entry->first_frag_time + 2 * HZ)) {
Johannes Berg571ecf62007-07-27 15:43:22 +02001820 __skb_queue_purge(&entry->skb_list);
1821 continue;
1822 }
1823 return entry;
1824 }
1825
1826 return NULL;
1827}
1828
Johannes Berg49461622008-06-30 15:10:45 +02001829static ieee80211_rx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +01001830ieee80211_rx_h_defragment(struct ieee80211_rx_data *rx)
Johannes Berg571ecf62007-07-27 15:43:22 +02001831{
1832 struct ieee80211_hdr *hdr;
1833 u16 sc;
Harvey Harrison358c8d92008-07-15 18:44:13 -07001834 __le16 fc;
Johannes Berg571ecf62007-07-27 15:43:22 +02001835 unsigned int frag, seq;
1836 struct ieee80211_fragment_entry *entry;
1837 struct sk_buff *skb;
Johannes Berg554891e2010-09-24 12:38:25 +02001838 struct ieee80211_rx_status *status;
Johannes Berg571ecf62007-07-27 15:43:22 +02001839
Harvey Harrisonb73d70a2008-07-15 18:44:12 -07001840 hdr = (struct ieee80211_hdr *)rx->skb->data;
Harvey Harrison358c8d92008-07-15 18:44:13 -07001841 fc = hdr->frame_control;
Javier Cardonaf7fbf702012-10-25 11:10:18 -07001842
1843 if (ieee80211_is_ctl(fc))
1844 return RX_CONTINUE;
1845
Johannes Berg571ecf62007-07-27 15:43:22 +02001846 sc = le16_to_cpu(hdr->seq_ctrl);
1847 frag = sc & IEEE80211_SCTL_FRAG;
1848
Johannes Bergb8fff402014-11-03 13:57:46 +01001849 if (is_multicast_ether_addr(hdr->addr1)) {
Johannes Bergc206ca62015-04-22 20:47:28 +02001850 I802_DEBUG_INC(rx->local->dot11MulticastReceivedFrameCount);
Andreas Müllerd0259332014-12-12 12:11:11 +01001851 goto out_no_led;
Johannes Berg571ecf62007-07-27 15:43:22 +02001852 }
Johannes Bergb8fff402014-11-03 13:57:46 +01001853
Andreas Müllerd0259332014-12-12 12:11:11 +01001854 if (likely(!ieee80211_has_morefrags(fc) && frag == 0))
1855 goto out;
1856
Johannes Berg571ecf62007-07-27 15:43:22 +02001857 I802_DEBUG_INC(rx->local->rx_handlers_fragments);
1858
Zhu Yie3cf8b32010-03-29 17:35:07 +08001859 if (skb_linearize(rx->skb))
1860 return RX_DROP_UNUSABLE;
1861
Abhijeet Kolekar058897a2010-05-11 11:22:11 -07001862 /*
1863 * skb_linearize() might change the skb->data and
1864 * previously cached variables (in this case, hdr) need to
1865 * be refreshed with the new data.
1866 */
1867 hdr = (struct ieee80211_hdr *)rx->skb->data;
Johannes Berg571ecf62007-07-27 15:43:22 +02001868 seq = (sc & IEEE80211_SCTL_SEQ) >> 4;
1869
1870 if (frag == 0) {
1871 /* This is the first fragment of a new frame. */
1872 entry = ieee80211_reassemble_add(rx->sdata, frag, seq,
Johannes Berg9e262972011-07-07 18:45:03 +02001873 rx->seqno_idx, &(rx->skb));
Jouni Malinen2b2ba0d2015-01-24 19:52:07 +02001874 if (rx->key &&
1875 (rx->key->conf.cipher == WLAN_CIPHER_SUITE_CCMP ||
1876 rx->key->conf.cipher == WLAN_CIPHER_SUITE_CCMP_256) &&
Harvey Harrison358c8d92008-07-15 18:44:13 -07001877 ieee80211_has_protected(fc)) {
Johannes Berg9e262972011-07-07 18:45:03 +02001878 int queue = rx->security_idx;
Johannes Berg571ecf62007-07-27 15:43:22 +02001879 /* Store CCMP PN so that we can verify that the next
1880 * fragment has a sequential PN value. */
1881 entry->ccmp = 1;
1882 memcpy(entry->last_pn,
Jouni Malinen91902522010-06-11 10:27:33 -07001883 rx->key->u.ccmp.rx_pn[queue],
Johannes Berg4325f6c2013-05-08 13:09:08 +02001884 IEEE80211_CCMP_PN_LEN);
Johannes Berg571ecf62007-07-27 15:43:22 +02001885 }
Johannes Berg9ae54c82008-01-31 19:48:20 +01001886 return RX_QUEUED;
Johannes Berg571ecf62007-07-27 15:43:22 +02001887 }
1888
1889 /* This is a fragment for a frame that should already be pending in
1890 * fragment cache. Add this fragment to the end of the pending entry.
1891 */
Johannes Berg9e262972011-07-07 18:45:03 +02001892 entry = ieee80211_reassemble_find(rx->sdata, frag, seq,
1893 rx->seqno_idx, hdr);
Johannes Berg571ecf62007-07-27 15:43:22 +02001894 if (!entry) {
1895 I802_DEBUG_INC(rx->local->rx_handlers_drop_defrag);
Johannes Berge4c26ad2008-01-31 19:48:21 +01001896 return RX_DROP_MONITOR;
Johannes Berg571ecf62007-07-27 15:43:22 +02001897 }
1898
1899 /* Verify that MPDUs within one MSDU have sequential PN values.
1900 * (IEEE 802.11i, 8.3.3.4.5) */
1901 if (entry->ccmp) {
1902 int i;
Johannes Berg4325f6c2013-05-08 13:09:08 +02001903 u8 pn[IEEE80211_CCMP_PN_LEN], *rpn;
Jouni Malinen91902522010-06-11 10:27:33 -07001904 int queue;
Jouni Malinen2b2ba0d2015-01-24 19:52:07 +02001905 if (!rx->key ||
1906 (rx->key->conf.cipher != WLAN_CIPHER_SUITE_CCMP &&
1907 rx->key->conf.cipher != WLAN_CIPHER_SUITE_CCMP_256))
Johannes Berge4c26ad2008-01-31 19:48:21 +01001908 return RX_DROP_UNUSABLE;
Johannes Berg4325f6c2013-05-08 13:09:08 +02001909 memcpy(pn, entry->last_pn, IEEE80211_CCMP_PN_LEN);
1910 for (i = IEEE80211_CCMP_PN_LEN - 1; i >= 0; i--) {
Johannes Berg571ecf62007-07-27 15:43:22 +02001911 pn[i]++;
1912 if (pn[i])
1913 break;
1914 }
Johannes Berg9e262972011-07-07 18:45:03 +02001915 queue = rx->security_idx;
Jouni Malinen91902522010-06-11 10:27:33 -07001916 rpn = rx->key->u.ccmp.rx_pn[queue];
Johannes Berg4325f6c2013-05-08 13:09:08 +02001917 if (memcmp(pn, rpn, IEEE80211_CCMP_PN_LEN))
Johannes Berge4c26ad2008-01-31 19:48:21 +01001918 return RX_DROP_UNUSABLE;
Johannes Berg4325f6c2013-05-08 13:09:08 +02001919 memcpy(entry->last_pn, pn, IEEE80211_CCMP_PN_LEN);
Johannes Berg571ecf62007-07-27 15:43:22 +02001920 }
1921
Harvey Harrison358c8d92008-07-15 18:44:13 -07001922 skb_pull(rx->skb, ieee80211_hdrlen(fc));
Johannes Berg571ecf62007-07-27 15:43:22 +02001923 __skb_queue_tail(&entry->skb_list, rx->skb);
1924 entry->last_frag = frag;
1925 entry->extra_len += rx->skb->len;
Harvey Harrison358c8d92008-07-15 18:44:13 -07001926 if (ieee80211_has_morefrags(fc)) {
Johannes Berg571ecf62007-07-27 15:43:22 +02001927 rx->skb = NULL;
Johannes Berg9ae54c82008-01-31 19:48:20 +01001928 return RX_QUEUED;
Johannes Berg571ecf62007-07-27 15:43:22 +02001929 }
1930
1931 rx->skb = __skb_dequeue(&entry->skb_list);
1932 if (skb_tailroom(rx->skb) < entry->extra_len) {
Johannes Bergf1160432015-04-22 20:25:20 +02001933 I802_DEBUG_INC(rx->local->rx_expand_skb_head_defrag);
Johannes Berg571ecf62007-07-27 15:43:22 +02001934 if (unlikely(pskb_expand_head(rx->skb, 0, entry->extra_len,
1935 GFP_ATOMIC))) {
1936 I802_DEBUG_INC(rx->local->rx_handlers_drop_defrag);
1937 __skb_queue_purge(&entry->skb_list);
Johannes Berge4c26ad2008-01-31 19:48:21 +01001938 return RX_DROP_UNUSABLE;
Johannes Berg571ecf62007-07-27 15:43:22 +02001939 }
1940 }
1941 while ((skb = __skb_dequeue(&entry->skb_list))) {
1942 memcpy(skb_put(rx->skb, skb->len), skb->data, skb->len);
1943 dev_kfree_skb(skb);
1944 }
1945
1946 /* Complete frame has been reassembled - process it now */
Johannes Berg554891e2010-09-24 12:38:25 +02001947 status = IEEE80211_SKB_RXCB(rx->skb);
Johannes Berg571ecf62007-07-27 15:43:22 +02001948
1949 out:
Andreas Müllerd0259332014-12-12 12:11:11 +01001950 ieee80211_led_rx(rx->local);
1951 out_no_led:
Johannes Berg571ecf62007-07-27 15:43:22 +02001952 if (rx->sta)
Johannes Berge5a9f8d2015-10-16 17:54:47 +02001953 rx->sta->rx_stats.packets++;
Johannes Berg9ae54c82008-01-31 19:48:20 +01001954 return RX_CONTINUE;
Johannes Berg571ecf62007-07-27 15:43:22 +02001955}
1956
Johannes Berg1df332e2012-10-26 00:09:11 +02001957static int ieee80211_802_1x_port_control(struct ieee80211_rx_data *rx)
Johannes Berg571ecf62007-07-27 15:43:22 +02001958{
Johannes Berg1df332e2012-10-26 00:09:11 +02001959 if (unlikely(!rx->sta || !test_sta_flag(rx->sta, WLAN_STA_AUTHORIZED)))
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001960 return -EACCES;
Johannes Berg571ecf62007-07-27 15:43:22 +02001961
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001962 return 0;
Johannes Berg571ecf62007-07-27 15:43:22 +02001963}
1964
Johannes Berg1df332e2012-10-26 00:09:11 +02001965static int ieee80211_drop_unencrypted(struct ieee80211_rx_data *rx, __le16 fc)
Johannes Berg571ecf62007-07-27 15:43:22 +02001966{
Johannes Bergeb9fb5b2009-11-16 13:58:20 +01001967 struct sk_buff *skb = rx->skb;
1968 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
1969
Johannes Berg3017b802007-08-28 17:01:53 -04001970 /*
Johannes Berg7848ba72007-09-14 11:10:25 -04001971 * Pass through unencrypted frames if the hardware has
1972 * decrypted them already.
Johannes Berg3017b802007-08-28 17:01:53 -04001973 */
Johannes Bergeb9fb5b2009-11-16 13:58:20 +01001974 if (status->flag & RX_FLAG_DECRYPTED)
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001975 return 0;
Johannes Berg571ecf62007-07-27 15:43:22 +02001976
1977 /* Drop unencrypted frames if key is set. */
Harvey Harrison358c8d92008-07-15 18:44:13 -07001978 if (unlikely(!ieee80211_has_protected(fc) &&
1979 !ieee80211_is_nullfunc(fc) &&
Johannes Berge8f4fb72015-03-20 11:37:36 +01001980 ieee80211_is_data(fc) && rx->key))
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +02001981 return -EACCES;
Johannes Bergbef5d1c2010-02-16 11:05:00 +01001982
1983 return 0;
1984}
1985
Johannes Berg1df332e2012-10-26 00:09:11 +02001986static int ieee80211_drop_unencrypted_mgmt(struct ieee80211_rx_data *rx)
Johannes Bergbef5d1c2010-02-16 11:05:00 +01001987{
1988 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
Jouni Malinene3efca02010-03-28 22:31:15 -07001989 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(rx->skb);
Johannes Bergbef5d1c2010-02-16 11:05:00 +01001990 __le16 fc = hdr->frame_control;
Johannes Bergbef5d1c2010-02-16 11:05:00 +01001991
Jouni Malinene3efca02010-03-28 22:31:15 -07001992 /*
1993 * Pass through unencrypted frames if the hardware has
1994 * decrypted them already.
1995 */
1996 if (status->flag & RX_FLAG_DECRYPTED)
1997 return 0;
Johannes Bergbef5d1c2010-02-16 11:05:00 +01001998
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001999 if (rx->sta && test_sta_flag(rx->sta, WLAN_STA_MFP)) {
Jouni Malinend211e902010-03-28 22:29:52 -07002000 if (unlikely(!ieee80211_has_protected(fc) &&
2001 ieee80211_is_unicast_robust_mgmt_frame(rx->skb) &&
Jouni Malinencf4e5942010-12-16 00:52:40 +02002002 rx->key)) {
Johannes Berg6ff57cf2013-05-16 00:55:00 +02002003 if (ieee80211_is_deauth(fc) ||
2004 ieee80211_is_disassoc(fc))
2005 cfg80211_rx_unprot_mlme_mgmt(rx->sdata->dev,
2006 rx->skb->data,
2007 rx->skb->len);
Jouni Malinenf2ca3ea2009-05-08 12:36:03 +03002008 return -EACCES;
Jouni Malinencf4e5942010-12-16 00:52:40 +02002009 }
Jouni Malinenf2ca3ea2009-05-08 12:36:03 +03002010 /* BIP does not use Protected field, so need to check MMIE */
Joe Perchesf64f9e72009-11-29 16:55:45 -08002011 if (unlikely(ieee80211_is_multicast_robust_mgmt_frame(rx->skb) &&
Jouni Malinencf4e5942010-12-16 00:52:40 +02002012 ieee80211_get_mmie_keyidx(rx->skb) < 0)) {
Johannes Berg6ff57cf2013-05-16 00:55:00 +02002013 if (ieee80211_is_deauth(fc) ||
2014 ieee80211_is_disassoc(fc))
2015 cfg80211_rx_unprot_mlme_mgmt(rx->sdata->dev,
2016 rx->skb->data,
2017 rx->skb->len);
Jouni Malinenf2ca3ea2009-05-08 12:36:03 +03002018 return -EACCES;
Jouni Malinencf4e5942010-12-16 00:52:40 +02002019 }
Jouni Malinenf2ca3ea2009-05-08 12:36:03 +03002020 /*
2021 * When using MFP, Action frames are not allowed prior to
2022 * having configured keys.
2023 */
2024 if (unlikely(ieee80211_is_action(fc) && !rx->key &&
Johannes Bergd8ca16d2014-01-23 16:20:29 +01002025 ieee80211_is_robust_mgmt_frame(rx->skb)))
Jouni Malinenf2ca3ea2009-05-08 12:36:03 +03002026 return -EACCES;
2027 }
Johannes Bergb3fc9c62008-04-13 10:12:47 +02002028
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002029 return 0;
Johannes Berg571ecf62007-07-27 15:43:22 +02002030}
2031
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002032static int
Felix Fietkau4114fa22011-04-12 19:15:22 +02002033__ieee80211_data_to_8023(struct ieee80211_rx_data *rx, bool *port_control)
Johannes Berg571ecf62007-07-27 15:43:22 +02002034{
Johannes Bergeb9fb5b2009-11-16 13:58:20 +01002035 struct ieee80211_sub_if_data *sdata = rx->sdata;
Felix Fietkauf14543ee2009-11-10 20:10:05 +01002036 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
Felix Fietkaufbb327c2011-01-18 15:48:48 +01002037 bool check_port_control = false;
2038 struct ethhdr *ehdr;
2039 int ret;
Felix Fietkauf14543ee2009-11-10 20:10:05 +01002040
Felix Fietkau4114fa22011-04-12 19:15:22 +02002041 *port_control = false;
Johannes Berg9bc383d2009-11-19 11:55:19 +01002042 if (ieee80211_has_a4(hdr->frame_control) &&
2043 sdata->vif.type == NL80211_IFTYPE_AP_VLAN && !sdata->u.vlan.sta)
Felix Fietkauf14543ee2009-11-10 20:10:05 +01002044 return -1;
Johannes Berg9bc383d2009-11-19 11:55:19 +01002045
Felix Fietkaufbb327c2011-01-18 15:48:48 +01002046 if (sdata->vif.type == NL80211_IFTYPE_STATION &&
2047 !!sdata->u.mgd.use_4addr != !!ieee80211_has_a4(hdr->frame_control)) {
2048
2049 if (!sdata->u.mgd.use_4addr)
2050 return -1;
2051 else
2052 check_port_control = true;
2053 }
2054
Johannes Berg9bc383d2009-11-19 11:55:19 +01002055 if (is_multicast_ether_addr(hdr->addr1) &&
Felix Fietkaufbb327c2011-01-18 15:48:48 +01002056 sdata->vif.type == NL80211_IFTYPE_AP_VLAN && sdata->u.vlan.sta)
Felix Fietkauf14543ee2009-11-10 20:10:05 +01002057 return -1;
Johannes Berg571ecf62007-07-27 15:43:22 +02002058
Felix Fietkaufbb327c2011-01-18 15:48:48 +01002059 ret = ieee80211_data_to_8023(rx->skb, sdata->vif.addr, sdata->vif.type);
Felix Fietkau4114fa22011-04-12 19:15:22 +02002060 if (ret < 0)
Felix Fietkaufbb327c2011-01-18 15:48:48 +01002061 return ret;
2062
2063 ehdr = (struct ethhdr *) rx->skb->data;
Felix Fietkau4114fa22011-04-12 19:15:22 +02002064 if (ehdr->h_proto == rx->sdata->control_port_protocol)
2065 *port_control = true;
2066 else if (check_port_control)
Felix Fietkaufbb327c2011-01-18 15:48:48 +01002067 return -1;
2068
2069 return 0;
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002070}
Johannes Berg571ecf62007-07-27 15:43:22 +02002071
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002072/*
2073 * requires that rx->skb is a frame with ethernet header
2074 */
Harvey Harrison358c8d92008-07-15 18:44:13 -07002075static bool ieee80211_frame_allowed(struct ieee80211_rx_data *rx, __le16 fc)
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002076{
Senthil Balasubramanianc97c23e2008-05-28 23:15:32 +05302077 static const u8 pae_group_addr[ETH_ALEN] __aligned(2)
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002078 = { 0x01, 0x80, 0xC2, 0x00, 0x00, 0x03 };
2079 struct ethhdr *ehdr = (struct ethhdr *) rx->skb->data;
2080
2081 /*
2082 * Allow EAPOL frames to us/the PAE group address regardless
2083 * of whether the frame was encrypted or not.
2084 */
Johannes Berga621fa42010-08-27 14:26:54 +03002085 if (ehdr->h_proto == rx->sdata->control_port_protocol &&
Joe Perches3bc79452012-05-08 18:56:53 +00002086 (ether_addr_equal(ehdr->h_dest, rx->sdata->vif.addr) ||
2087 ether_addr_equal(ehdr->h_dest, pae_group_addr)))
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002088 return true;
2089
2090 if (ieee80211_802_1x_port_control(rx) ||
Harvey Harrison358c8d92008-07-15 18:44:13 -07002091 ieee80211_drop_unencrypted(rx, fc))
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002092 return false;
2093
2094 return true;
2095}
2096
2097/*
2098 * requires that rx->skb is a frame with ethernet header
2099 */
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002100static void
Johannes Berg5cf121c2008-02-25 16:27:43 +01002101ieee80211_deliver_skb(struct ieee80211_rx_data *rx)
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002102{
Johannes Bergeb9fb5b2009-11-16 13:58:20 +01002103 struct ieee80211_sub_if_data *sdata = rx->sdata;
2104 struct net_device *dev = sdata->dev;
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002105 struct sk_buff *skb, *xmit_skb;
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002106 struct ethhdr *ehdr = (struct ethhdr *) rx->skb->data;
2107 struct sta_info *dsta;
Johannes Berg571ecf62007-07-27 15:43:22 +02002108
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002109 skb = rx->skb;
2110 xmit_skb = NULL;
Johannes Berg571ecf62007-07-27 15:43:22 +02002111
Johannes Berg5a490512015-04-22 17:10:38 +02002112 ieee80211_rx_stats(dev, skb->len);
2113
Johannes Berg05c914f2008-09-11 00:01:58 +02002114 if ((sdata->vif.type == NL80211_IFTYPE_AP ||
2115 sdata->vif.type == NL80211_IFTYPE_AP_VLAN) &&
Johannes Berg213cd112008-09-11 00:01:54 +02002116 !(sdata->flags & IEEE80211_SDATA_DONT_BRIDGE_PACKETS) &&
Johannes Berg9bc383d2009-11-19 11:55:19 +01002117 (sdata->vif.type != NL80211_IFTYPE_AP_VLAN || !sdata->u.vlan.sta)) {
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002118 if (is_multicast_ether_addr(ehdr->h_dest)) {
2119 /*
2120 * send multicast frames both to higher layers in
2121 * local net stack and back to the wireless medium
2122 */
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002123 xmit_skb = skb_copy(skb, GFP_ATOMIC);
Joe Perchese87cc472012-05-13 21:56:26 +00002124 if (!xmit_skb)
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002125 net_info_ratelimited("%s: failed to clone multicast frame\n",
Joe Perchese87cc472012-05-13 21:56:26 +00002126 dev->name);
Johannes Berg571ecf62007-07-27 15:43:22 +02002127 } else {
Johannes Bergabe60632009-11-25 17:46:18 +01002128 dsta = sta_info_get(sdata, skb->data);
2129 if (dsta) {
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002130 /*
2131 * The destination station is associated to
2132 * this AP (in this VLAN), so send the frame
2133 * directly to it and do not pass it to local
2134 * net stack.
Johannes Berg571ecf62007-07-27 15:43:22 +02002135 */
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002136 xmit_skb = skb;
Johannes Berg571ecf62007-07-27 15:43:22 +02002137 skb = NULL;
2138 }
Johannes Berg571ecf62007-07-27 15:43:22 +02002139 }
2140 }
2141
Kalle Valo59d9cb02009-12-17 13:54:57 +01002142#ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
Johannes Berg9e890a1f2013-12-04 09:16:31 +01002143 if (skb) {
2144 /* 'align' will only take the values 0 or 2 here since all
2145 * frames are required to be aligned to 2-byte boundaries
2146 * when being passed to mac80211; the code here works just
2147 * as well if that isn't true, but mac80211 assumes it can
2148 * access fields as 2-byte aligned (e.g. for ether_addr_equal)
Johannes Bergd1c3a372009-01-07 00:26:10 +01002149 */
Johannes Berg9e890a1f2013-12-04 09:16:31 +01002150 int align;
2151
2152 align = (unsigned long)(skb->data + sizeof(struct ethhdr)) & 3;
Johannes Bergd1c3a372009-01-07 00:26:10 +01002153 if (align) {
2154 if (WARN_ON(skb_headroom(skb) < 3)) {
2155 dev_kfree_skb(skb);
2156 skb = NULL;
2157 } else {
2158 u8 *data = skb->data;
Zhu Yi8ce0b582009-10-28 13:13:52 -07002159 size_t len = skb_headlen(skb);
2160 skb->data -= align;
2161 memmove(skb->data, data, len);
2162 skb_set_tail_pointer(skb, len);
Johannes Bergd1c3a372009-01-07 00:26:10 +01002163 }
2164 }
Johannes Berg9e890a1f2013-12-04 09:16:31 +01002165 }
Johannes Bergd1c3a372009-01-07 00:26:10 +01002166#endif
2167
Johannes Berg9e890a1f2013-12-04 09:16:31 +01002168 if (skb) {
2169 /* deliver to local stack */
2170 skb->protocol = eth_type_trans(skb, dev);
2171 memset(skb->cb, 0, sizeof(skb->cb));
Johannes Bergaf9f9b22015-06-11 16:02:32 +02002172 if (rx->napi)
2173 napi_gro_receive(rx->napi, skb);
Johannes Berg06d181a2014-02-04 20:51:09 +01002174 else
2175 netif_receive_skb(skb);
Johannes Berg571ecf62007-07-27 15:43:22 +02002176 }
2177
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002178 if (xmit_skb) {
Helmut Schaaaef6c922011-12-21 09:11:35 +01002179 /*
2180 * Send to wireless media and increase priority by 256 to
2181 * keep the received priority instead of reclassifying
2182 * the frame (see cfg80211_classify8021d).
2183 */
2184 xmit_skb->priority += 256;
YOSHIFUJI Hideakif831e902007-12-12 03:54:23 +09002185 xmit_skb->protocol = htons(ETH_P_802_3);
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002186 skb_reset_network_header(xmit_skb);
2187 skb_reset_mac_header(xmit_skb);
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002188 dev_queue_xmit(xmit_skb);
Johannes Berg571ecf62007-07-27 15:43:22 +02002189 }
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002190}
2191
Johannes Berg49461622008-06-30 15:10:45 +02002192static ieee80211_rx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +01002193ieee80211_rx_h_amsdu(struct ieee80211_rx_data *rx)
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02002194{
Johannes Bergeb9fb5b2009-11-16 13:58:20 +01002195 struct net_device *dev = rx->sdata->dev;
Zhu Yieaf85ca2009-12-01 10:18:37 +08002196 struct sk_buff *skb = rx->skb;
Harvey Harrison358c8d92008-07-15 18:44:13 -07002197 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
2198 __le16 fc = hdr->frame_control;
Zhu Yieaf85ca2009-12-01 10:18:37 +08002199 struct sk_buff_head frame_list;
Johannes Berg554891e2010-09-24 12:38:25 +02002200 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(rx->skb);
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02002201
Harvey Harrison358c8d92008-07-15 18:44:13 -07002202 if (unlikely(!ieee80211_is_data(fc)))
Johannes Berg9ae54c82008-01-31 19:48:20 +01002203 return RX_CONTINUE;
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02002204
Harvey Harrison358c8d92008-07-15 18:44:13 -07002205 if (unlikely(!ieee80211_is_data_present(fc)))
Johannes Berge4c26ad2008-01-31 19:48:21 +01002206 return RX_DROP_MONITOR;
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02002207
Johannes Berg554891e2010-09-24 12:38:25 +02002208 if (!(status->rx_flags & IEEE80211_RX_AMSDU))
Johannes Berg9ae54c82008-01-31 19:48:20 +01002209 return RX_CONTINUE;
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02002210
Zhu Yieaf85ca2009-12-01 10:18:37 +08002211 if (ieee80211_has_a4(hdr->frame_control) &&
2212 rx->sdata->vif.type == NL80211_IFTYPE_AP_VLAN &&
2213 !rx->sdata->u.vlan.sta)
2214 return RX_DROP_UNUSABLE;
2215
2216 if (is_multicast_ether_addr(hdr->addr1) &&
2217 ((rx->sdata->vif.type == NL80211_IFTYPE_AP_VLAN &&
2218 rx->sdata->u.vlan.sta) ||
2219 (rx->sdata->vif.type == NL80211_IFTYPE_STATION &&
2220 rx->sdata->u.mgd.use_4addr)))
Johannes Berge4c26ad2008-01-31 19:48:21 +01002221 return RX_DROP_UNUSABLE;
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02002222
2223 skb->dev = dev;
Zhu Yieaf85ca2009-12-01 10:18:37 +08002224 __skb_queue_head_init(&frame_list);
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02002225
Zhu Yie3cf8b32010-03-29 17:35:07 +08002226 if (skb_linearize(skb))
2227 return RX_DROP_UNUSABLE;
2228
Zhu Yieaf85ca2009-12-01 10:18:37 +08002229 ieee80211_amsdu_to_8023s(skb, &frame_list, dev->dev_addr,
2230 rx->sdata->vif.type,
Yogesh Ashok Powar8b3beca2011-05-13 11:22:31 -07002231 rx->local->hw.extra_tx_headroom, true);
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02002232
Zhu Yieaf85ca2009-12-01 10:18:37 +08002233 while (!skb_queue_empty(&frame_list)) {
2234 rx->skb = __skb_dequeue(&frame_list);
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02002235
Harvey Harrison358c8d92008-07-15 18:44:13 -07002236 if (!ieee80211_frame_allowed(rx, fc)) {
Zhu Yieaf85ca2009-12-01 10:18:37 +08002237 dev_kfree_skb(rx->skb);
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002238 continue;
2239 }
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02002240
2241 ieee80211_deliver_skb(rx);
2242 }
2243
Johannes Berg9ae54c82008-01-31 19:48:20 +01002244 return RX_QUEUED;
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02002245}
2246
Ingo Molnarbf94e172008-10-12 23:51:38 -07002247#ifdef CONFIG_MAC80211_MESH
Davide Pesaventob0dee572008-09-27 17:29:12 +02002248static ieee80211_rx_result
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02002249ieee80211_rx_h_mesh_fwding(struct ieee80211_rx_data *rx)
2250{
Thomas Pedersen30789eb2011-11-24 17:15:26 -08002251 struct ieee80211_hdr *fwd_hdr, *hdr;
2252 struct ieee80211_tx_info *info;
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02002253 struct ieee80211s_hdr *mesh_hdr;
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02002254 struct sk_buff *skb = rx->skb, *fwd_skb;
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002255 struct ieee80211_local *local = rx->local;
Johannes Bergeb9fb5b2009-11-16 13:58:20 +01002256 struct ieee80211_sub_if_data *sdata = rx->sdata;
Thomas Pedersen30789eb2011-11-24 17:15:26 -08002257 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Michal Kaziorcf440122016-01-25 14:43:24 +01002258 u16 ac, q, hdrlen;
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02002259
2260 hdr = (struct ieee80211_hdr *) skb->data;
2261 hdrlen = ieee80211_hdrlen(hdr->frame_control);
Johannes Berg9b395bc2012-10-26 00:36:40 +02002262
2263 /* make sure fixed part of mesh header is there, also checks skb len */
2264 if (!pskb_may_pull(rx->skb, hdrlen + 6))
2265 return RX_DROP_MONITOR;
2266
2267 mesh_hdr = (struct ieee80211s_hdr *) (skb->data + hdrlen);
2268
2269 /* make sure full mesh header is there, also checks skb len */
2270 if (!pskb_may_pull(rx->skb,
2271 hdrlen + ieee80211_get_mesh_hdrlen(mesh_hdr)))
2272 return RX_DROP_MONITOR;
2273
2274 /* reload pointers */
2275 hdr = (struct ieee80211_hdr *) skb->data;
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02002276 mesh_hdr = (struct ieee80211s_hdr *) (skb->data + hdrlen);
2277
Bob Copelandd0c22112015-03-02 14:28:52 -05002278 if (ieee80211_drop_unencrypted(rx, hdr->frame_control))
2279 return RX_DROP_MONITOR;
2280
Thomas Pedersen2157fdd2011-09-01 12:32:14 -07002281 /* frame is in RMC, don't forward */
2282 if (ieee80211_is_data(hdr->frame_control) &&
2283 is_multicast_ether_addr(hdr->addr1) &&
Johannes Bergbf7cd942013-02-15 14:40:31 +01002284 mesh_rmc_check(rx->sdata, hdr->addr3, mesh_hdr))
Thomas Pedersen2157fdd2011-09-01 12:32:14 -07002285 return RX_DROP_MONITOR;
2286
Johannes Berg5c900672015-04-22 14:48:34 +02002287 if (!ieee80211_is_data(hdr->frame_control))
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02002288 return RX_CONTINUE;
2289
2290 if (!mesh_hdr->ttl)
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02002291 return RX_DROP_MONITOR;
2292
Javier Cardona43b7b312009-10-15 18:10:51 -07002293 if (mesh_hdr->flags & MESH_FLAGS_AE) {
YanBo79617de2008-09-22 13:30:32 +08002294 struct mesh_path *mppath;
Javier Cardona43b7b312009-10-15 18:10:51 -07002295 char *proxied_addr;
2296 char *mpp_addr;
2297
2298 if (is_multicast_ether_addr(hdr->addr1)) {
2299 mpp_addr = hdr->addr3;
2300 proxied_addr = mesh_hdr->eaddr1;
Johannes Berg9b395bc2012-10-26 00:36:40 +02002301 } else if (mesh_hdr->flags & MESH_FLAGS_AE_A5_A6) {
2302 /* has_a4 already checked in ieee80211_rx_mesh_check */
Javier Cardona43b7b312009-10-15 18:10:51 -07002303 mpp_addr = hdr->addr4;
2304 proxied_addr = mesh_hdr->eaddr2;
Johannes Berg9b395bc2012-10-26 00:36:40 +02002305 } else {
2306 return RX_DROP_MONITOR;
Javier Cardona43b7b312009-10-15 18:10:51 -07002307 }
YanBo79617de2008-09-22 13:30:32 +08002308
YanBo79617de2008-09-22 13:30:32 +08002309 rcu_read_lock();
Johannes Bergbf7cd942013-02-15 14:40:31 +01002310 mppath = mpp_path_lookup(sdata, proxied_addr);
YanBo79617de2008-09-22 13:30:32 +08002311 if (!mppath) {
Johannes Bergbf7cd942013-02-15 14:40:31 +01002312 mpp_path_add(sdata, proxied_addr, mpp_addr);
YanBo79617de2008-09-22 13:30:32 +08002313 } else {
2314 spin_lock_bh(&mppath->state_lock);
Joe Perchesb203ca32012-05-08 18:56:52 +00002315 if (!ether_addr_equal(mppath->mpp, mpp_addr))
Javier Cardona43b7b312009-10-15 18:10:51 -07002316 memcpy(mppath->mpp, mpp_addr, ETH_ALEN);
YanBo79617de2008-09-22 13:30:32 +08002317 spin_unlock_bh(&mppath->state_lock);
2318 }
2319 rcu_read_unlock();
2320 }
2321
Javier Cardona3c5772a2009-08-10 12:15:48 -07002322 /* Frame has reached destination. Don't forward */
2323 if (!is_multicast_ether_addr(hdr->addr1) &&
Joe Perchesb203ca32012-05-08 18:56:52 +00002324 ether_addr_equal(sdata->vif.addr, hdr->addr3))
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02002325 return RX_CONTINUE;
2326
Michal Kaziorcf440122016-01-25 14:43:24 +01002327 ac = ieee80211_select_queue_80211(sdata, skb, hdr);
2328 q = sdata->vif.hw_queue[ac];
Thomas Pedersend3c15972011-11-24 17:15:23 -08002329 if (ieee80211_queue_stopped(&local->hw, q)) {
Thomas Pedersen30789eb2011-11-24 17:15:26 -08002330 IEEE80211_IFSTA_MESH_CTR_INC(ifmsh, dropped_frames_congestion);
Thomas Pedersend3c15972011-11-24 17:15:23 -08002331 return RX_DROP_MONITOR;
2332 }
2333 skb_set_queue_mapping(skb, q);
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02002334
Thomas Pedersen30789eb2011-11-24 17:15:26 -08002335 if (!--mesh_hdr->ttl) {
2336 IEEE80211_IFSTA_MESH_CTR_INC(ifmsh, dropped_frames_ttl);
Javier Cardona2ac64cd2012-10-24 12:43:31 -07002337 goto out;
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02002338 }
2339
Chun-Yeow Yeohd6655082012-03-02 02:03:19 +08002340 if (!ifmsh->mshcfg.dot11MeshForwarding)
2341 goto out;
2342
Thomas Pedersen30789eb2011-11-24 17:15:26 -08002343 fwd_skb = skb_copy(skb, GFP_ATOMIC);
2344 if (!fwd_skb) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002345 net_info_ratelimited("%s: failed to clone mesh frame\n",
Joe Perchese87cc472012-05-13 21:56:26 +00002346 sdata->name);
Thomas Pedersen30789eb2011-11-24 17:15:26 -08002347 goto out;
2348 }
2349
2350 fwd_hdr = (struct ieee80211_hdr *) fwd_skb->data;
Thomas Pedersen9d6d6f42013-04-08 11:06:12 -07002351 fwd_hdr->frame_control &= ~cpu_to_le16(IEEE80211_FCTL_RETRY);
Thomas Pedersen30789eb2011-11-24 17:15:26 -08002352 info = IEEE80211_SKB_CB(fwd_skb);
2353 memset(info, 0, sizeof(*info));
2354 info->flags |= IEEE80211_TX_INTFL_NEED_TXPROCESSING;
2355 info->control.vif = &rx->sdata->vif;
2356 info->control.jiffies = jiffies;
2357 if (is_multicast_ether_addr(fwd_hdr->addr1)) {
2358 IEEE80211_IFSTA_MESH_CTR_INC(ifmsh, fwded_mcast);
2359 memcpy(fwd_hdr->addr2, sdata->vif.addr, ETH_ALEN);
Marco Porsch3f52b7e2013-01-30 18:14:08 +01002360 /* update power mode indication when forwarding */
2361 ieee80211_mps_set_frame_flags(sdata, NULL, fwd_hdr);
Johannes Bergbf7cd942013-02-15 14:40:31 +01002362 } else if (!mesh_nexthop_lookup(sdata, fwd_skb)) {
Marco Porsch3f52b7e2013-01-30 18:14:08 +01002363 /* mesh power mode flags updated in mesh_nexthop_lookup */
Thomas Pedersen30789eb2011-11-24 17:15:26 -08002364 IEEE80211_IFSTA_MESH_CTR_INC(ifmsh, fwded_unicast);
2365 } else {
2366 /* unable to resolve next hop */
Johannes Bergbf7cd942013-02-15 14:40:31 +01002367 mesh_path_error_tx(sdata, ifmsh->mshcfg.element_ttl,
Chun-Yeow Yeohf63f8422013-11-13 15:39:12 +08002368 fwd_hdr->addr3, 0,
2369 WLAN_REASON_MESH_PATH_NOFORWARD,
2370 fwd_hdr->addr2);
Thomas Pedersen30789eb2011-11-24 17:15:26 -08002371 IEEE80211_IFSTA_MESH_CTR_INC(ifmsh, dropped_frames_no_route);
Jesper Juhl74b8cc32012-01-14 21:52:17 +01002372 kfree_skb(fwd_skb);
Thomas Pedersen30789eb2011-11-24 17:15:26 -08002373 return RX_DROP_MONITOR;
2374 }
2375
2376 IEEE80211_IFSTA_MESH_CTR_INC(ifmsh, fwded_frames);
2377 ieee80211_add_pending_skb(local, fwd_skb);
Johannes Bergb51aff02010-12-22 10:15:07 +01002378 out:
Johannes Bergdf140462015-04-22 14:40:58 +02002379 if (is_multicast_ether_addr(hdr->addr1))
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02002380 return RX_CONTINUE;
Johannes Bergdf140462015-04-22 14:40:58 +02002381 return RX_DROP_MONITOR;
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02002382}
Ingo Molnarbf94e172008-10-12 23:51:38 -07002383#endif
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02002384
2385static ieee80211_rx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +01002386ieee80211_rx_h_data(struct ieee80211_rx_data *rx)
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002387{
Johannes Bergeb9fb5b2009-11-16 13:58:20 +01002388 struct ieee80211_sub_if_data *sdata = rx->sdata;
Vivek Natarajane15276a2010-02-08 17:47:01 +05302389 struct ieee80211_local *local = rx->local;
Johannes Bergeb9fb5b2009-11-16 13:58:20 +01002390 struct net_device *dev = sdata->dev;
Harvey Harrison358c8d92008-07-15 18:44:13 -07002391 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
2392 __le16 fc = hdr->frame_control;
Felix Fietkau4114fa22011-04-12 19:15:22 +02002393 bool port_control;
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002394 int err;
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002395
Harvey Harrison358c8d92008-07-15 18:44:13 -07002396 if (unlikely(!ieee80211_is_data(hdr->frame_control)))
Johannes Berg9ae54c82008-01-31 19:48:20 +01002397 return RX_CONTINUE;
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002398
Harvey Harrison358c8d92008-07-15 18:44:13 -07002399 if (unlikely(!ieee80211_is_data_present(hdr->frame_control)))
Johannes Berge4c26ad2008-01-31 19:48:21 +01002400 return RX_DROP_MONITOR;
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002401
Johannes Berg79c892b2014-11-21 14:26:31 +01002402 if (rx->sta) {
Johannes Berg3d6dc342015-01-23 13:23:48 +01002403 /* The seqno index has the same property as needed
Johannes Berg79c892b2014-11-21 14:26:31 +01002404 * for the rx_msdu field, i.e. it is IEEE80211_NUM_TIDS
2405 * for non-QoS-data frames. Here we know it's a data
2406 * frame, so count MSDUs.
2407 */
Johannes Berge5a9f8d2015-10-16 17:54:47 +02002408 rx->sta->rx_stats.msdu[rx->seqno_idx]++;
Johannes Berg79c892b2014-11-21 14:26:31 +01002409 }
2410
Felix Fietkauf14543ee2009-11-10 20:10:05 +01002411 /*
Johannes Berge7f4a942011-11-04 11:18:20 +01002412 * Send unexpected-4addr-frame event to hostapd. For older versions,
2413 * also drop the frame to cooked monitor interfaces.
Felix Fietkauf14543ee2009-11-10 20:10:05 +01002414 */
2415 if (ieee80211_has_a4(hdr->frame_control) &&
Johannes Berge7f4a942011-11-04 11:18:20 +01002416 sdata->vif.type == NL80211_IFTYPE_AP) {
2417 if (rx->sta &&
2418 !test_and_set_sta_flag(rx->sta, WLAN_STA_4ADDR_EVENT))
2419 cfg80211_rx_unexpected_4addr_frame(
2420 rx->sdata->dev, rx->sta->sta.addr, GFP_ATOMIC);
Felix Fietkauf14543ee2009-11-10 20:10:05 +01002421 return RX_DROP_MONITOR;
Johannes Berge7f4a942011-11-04 11:18:20 +01002422 }
Felix Fietkauf14543ee2009-11-10 20:10:05 +01002423
Felix Fietkau4114fa22011-04-12 19:15:22 +02002424 err = __ieee80211_data_to_8023(rx, &port_control);
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002425 if (unlikely(err))
Johannes Berge4c26ad2008-01-31 19:48:21 +01002426 return RX_DROP_UNUSABLE;
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002427
Harvey Harrison358c8d92008-07-15 18:44:13 -07002428 if (!ieee80211_frame_allowed(rx, fc))
Johannes Berge4c26ad2008-01-31 19:48:21 +01002429 return RX_DROP_MONITOR;
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002430
Arik Nemtsov8a4d32f2014-11-09 18:50:20 +02002431 /* directly handle TDLS channel switch requests/responses */
2432 if (unlikely(((struct ethhdr *)rx->skb->data)->h_proto ==
2433 cpu_to_be16(ETH_P_TDLS))) {
2434 struct ieee80211_tdls_data *tf = (void *)rx->skb->data;
2435
2436 if (pskb_may_pull(rx->skb,
2437 offsetof(struct ieee80211_tdls_data, u)) &&
2438 tf->payload_type == WLAN_TDLS_SNAP_RFTYPE &&
2439 tf->category == WLAN_CATEGORY_TDLS &&
2440 (tf->action_code == WLAN_TDLS_CHANNEL_SWITCH_REQUEST ||
2441 tf->action_code == WLAN_TDLS_CHANNEL_SWITCH_RESPONSE)) {
Arik Nemtsovc8ff71e2015-07-08 15:41:45 +03002442 skb_queue_tail(&local->skb_queue_tdls_chsw, rx->skb);
2443 schedule_work(&local->tdls_chsw_work);
Arik Nemtsov8a4d32f2014-11-09 18:50:20 +02002444 if (rx->sta)
Johannes Berge5a9f8d2015-10-16 17:54:47 +02002445 rx->sta->rx_stats.packets++;
Arik Nemtsov8a4d32f2014-11-09 18:50:20 +02002446
2447 return RX_QUEUED;
2448 }
2449 }
2450
Felix Fietkau4114fa22011-04-12 19:15:22 +02002451 if (rx->sdata->vif.type == NL80211_IFTYPE_AP_VLAN &&
2452 unlikely(port_control) && sdata->bss) {
2453 sdata = container_of(sdata->bss, struct ieee80211_sub_if_data,
2454 u.ap);
2455 dev = sdata->dev;
2456 rx->sdata = sdata;
2457 }
2458
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002459 rx->skb->dev = dev;
2460
Helmut Schaa08ca9442010-11-30 12:19:34 +01002461 if (local->ps_sdata && local->hw.conf.dynamic_ps_timeout > 0 &&
Rajkumar Manoharan8c99f692011-02-02 22:57:53 +05302462 !is_multicast_ether_addr(
2463 ((struct ethhdr *)rx->skb->data)->h_dest) &&
2464 (!local->scanning &&
2465 !test_bit(SDATA_STATE_OFFCHANNEL, &sdata->state))) {
Vivek Natarajane15276a2010-02-08 17:47:01 +05302466 mod_timer(&local->dynamic_ps_timer, jiffies +
2467 msecs_to_jiffies(local->hw.conf.dynamic_ps_timeout));
2468 }
2469
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002470 ieee80211_deliver_skb(rx);
Johannes Berg571ecf62007-07-27 15:43:22 +02002471
Johannes Berg9ae54c82008-01-31 19:48:20 +01002472 return RX_QUEUED;
Johannes Berg571ecf62007-07-27 15:43:22 +02002473}
2474
Johannes Berg49461622008-06-30 15:10:45 +02002475static ieee80211_rx_result debug_noinline
Christian Lamparterf9e124f2013-02-04 17:44:44 +00002476ieee80211_rx_h_ctrl(struct ieee80211_rx_data *rx, struct sk_buff_head *frames)
Ron Rindjunsky71364712007-12-25 17:00:36 +02002477{
Ron Rindjunsky71364712007-12-25 17:00:36 +02002478 struct sk_buff *skb = rx->skb;
Harvey Harrisona7767f92008-07-02 16:30:51 -07002479 struct ieee80211_bar *bar = (struct ieee80211_bar *)skb->data;
Ron Rindjunsky71364712007-12-25 17:00:36 +02002480 struct tid_ampdu_rx *tid_agg_rx;
2481 u16 start_seq_num;
2482 u16 tid;
2483
Harvey Harrisona7767f92008-07-02 16:30:51 -07002484 if (likely(!ieee80211_is_ctl(bar->frame_control)))
Johannes Berg9ae54c82008-01-31 19:48:20 +01002485 return RX_CONTINUE;
Ron Rindjunsky71364712007-12-25 17:00:36 +02002486
Harvey Harrisona7767f92008-07-02 16:30:51 -07002487 if (ieee80211_is_back_req(bar->frame_control)) {
Johannes Berg8ae59772010-05-30 14:52:58 +02002488 struct {
2489 __le16 control, start_seq_num;
2490 } __packed bar_data;
Emmanuel Grumbach63822462015-04-20 22:53:37 +03002491 struct ieee80211_event event = {
2492 .type = BAR_RX_EVENT,
2493 };
Johannes Berg8ae59772010-05-30 14:52:58 +02002494
Ron Rindjunsky71364712007-12-25 17:00:36 +02002495 if (!rx->sta)
Johannes Berga02ae752009-11-16 12:00:40 +01002496 return RX_DROP_MONITOR;
Johannes Berg8ae59772010-05-30 14:52:58 +02002497
2498 if (skb_copy_bits(skb, offsetof(struct ieee80211_bar, control),
2499 &bar_data, sizeof(bar_data)))
2500 return RX_DROP_MONITOR;
2501
Johannes Berg8ae59772010-05-30 14:52:58 +02002502 tid = le16_to_cpu(bar_data.control) >> 12;
Johannes Berga87f7362010-06-10 10:21:38 +02002503
2504 tid_agg_rx = rcu_dereference(rx->sta->ampdu_mlme.tid_rx[tid]);
2505 if (!tid_agg_rx)
Johannes Berga02ae752009-11-16 12:00:40 +01002506 return RX_DROP_MONITOR;
Ron Rindjunsky71364712007-12-25 17:00:36 +02002507
Johannes Berg8ae59772010-05-30 14:52:58 +02002508 start_seq_num = le16_to_cpu(bar_data.start_seq_num) >> 4;
Emmanuel Grumbach63822462015-04-20 22:53:37 +03002509 event.u.ba.tid = tid;
2510 event.u.ba.ssn = start_seq_num;
2511 event.u.ba.sta = &rx->sta->sta;
Ron Rindjunsky71364712007-12-25 17:00:36 +02002512
2513 /* reset session timer */
Johannes Berg20ad19d2009-02-10 21:25:45 +01002514 if (tid_agg_rx->timeout)
2515 mod_timer(&tid_agg_rx->session_timer,
2516 TU_TO_EXP_TIME(tid_agg_rx->timeout));
Ron Rindjunsky71364712007-12-25 17:00:36 +02002517
Johannes Bergdd318572010-11-29 11:09:16 +01002518 spin_lock(&tid_agg_rx->reorder_lock);
Johannes Berga02ae752009-11-16 12:00:40 +01002519 /* release stored frames up to start of BAR */
Johannes Bergd3b2fb52012-06-22 12:48:38 +02002520 ieee80211_release_reorder_frames(rx->sdata, tid_agg_rx,
Christian Lamparterf9e124f2013-02-04 17:44:44 +00002521 start_seq_num, frames);
Johannes Bergdd318572010-11-29 11:09:16 +01002522 spin_unlock(&tid_agg_rx->reorder_lock);
2523
Emmanuel Grumbach63822462015-04-20 22:53:37 +03002524 drv_event_callback(rx->local, rx->sdata, &event);
2525
Johannes Berga02ae752009-11-16 12:00:40 +01002526 kfree_skb(skb);
2527 return RX_QUEUED;
Ron Rindjunsky71364712007-12-25 17:00:36 +02002528 }
2529
Johannes Berg08daeca2010-05-30 14:53:43 +02002530 /*
2531 * After this point, we only want management frames,
2532 * so we can drop all remaining control frames to
2533 * cooked monitor interfaces.
2534 */
2535 return RX_DROP_MONITOR;
Ron Rindjunsky71364712007-12-25 17:00:36 +02002536}
2537
Jouni Malinenf4f727a2009-01-10 11:46:53 +02002538static void ieee80211_process_sa_query_req(struct ieee80211_sub_if_data *sdata,
2539 struct ieee80211_mgmt *mgmt,
2540 size_t len)
Jouni Malinenfea14732009-01-08 13:32:06 +02002541{
2542 struct ieee80211_local *local = sdata->local;
2543 struct sk_buff *skb;
2544 struct ieee80211_mgmt *resp;
2545
Joe Perchesb203ca32012-05-08 18:56:52 +00002546 if (!ether_addr_equal(mgmt->da, sdata->vif.addr)) {
Jouni Malinenfea14732009-01-08 13:32:06 +02002547 /* Not to own unicast address */
2548 return;
2549 }
2550
Joe Perchesb203ca32012-05-08 18:56:52 +00002551 if (!ether_addr_equal(mgmt->sa, sdata->u.mgd.bssid) ||
2552 !ether_addr_equal(mgmt->bssid, sdata->u.mgd.bssid)) {
Johannes Berg77fdaa12009-07-07 03:45:17 +02002553 /* Not from the current AP or not associated yet. */
Jouni Malinenfea14732009-01-08 13:32:06 +02002554 return;
2555 }
2556
2557 if (len < 24 + 1 + sizeof(resp->u.action.u.sa_query)) {
2558 /* Too short SA Query request frame */
2559 return;
2560 }
2561
2562 skb = dev_alloc_skb(sizeof(*resp) + local->hw.extra_tx_headroom);
2563 if (skb == NULL)
2564 return;
2565
2566 skb_reserve(skb, local->hw.extra_tx_headroom);
2567 resp = (struct ieee80211_mgmt *) skb_put(skb, 24);
2568 memset(resp, 0, 24);
2569 memcpy(resp->da, mgmt->sa, ETH_ALEN);
Johannes Berg47846c92009-11-25 17:46:19 +01002570 memcpy(resp->sa, sdata->vif.addr, ETH_ALEN);
Johannes Berg46900292009-02-15 12:44:28 +01002571 memcpy(resp->bssid, sdata->u.mgd.bssid, ETH_ALEN);
Jouni Malinenfea14732009-01-08 13:32:06 +02002572 resp->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
2573 IEEE80211_STYPE_ACTION);
2574 skb_put(skb, 1 + sizeof(resp->u.action.u.sa_query));
2575 resp->u.action.category = WLAN_CATEGORY_SA_QUERY;
2576 resp->u.action.u.sa_query.action = WLAN_ACTION_SA_QUERY_RESPONSE;
2577 memcpy(resp->u.action.u.sa_query.trans_id,
2578 mgmt->u.action.u.sa_query.trans_id,
2579 WLAN_SA_QUERY_TR_ID_LEN);
2580
Johannes Berg62ae67b2009-11-18 18:42:05 +01002581 ieee80211_tx_skb(sdata, skb);
Jouni Malinenfea14732009-01-08 13:32:06 +02002582}
2583
Johannes Berg49461622008-06-30 15:10:45 +02002584static ieee80211_rx_result debug_noinline
Johannes Berg2e161f72010-08-12 15:38:38 +02002585ieee80211_rx_h_mgmt_check(struct ieee80211_rx_data *rx)
2586{
2587 struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *) rx->skb->data;
Johannes Berg554891e2010-09-24 12:38:25 +02002588 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(rx->skb);
Johannes Berg2e161f72010-08-12 15:38:38 +02002589
2590 /*
2591 * From here on, look only at management frames.
2592 * Data and control frames are already handled,
2593 * and unknown (reserved) frames are useless.
2594 */
2595 if (rx->skb->len < 24)
2596 return RX_DROP_MONITOR;
2597
2598 if (!ieee80211_is_mgmt(mgmt->frame_control))
2599 return RX_DROP_MONITOR;
2600
Johannes Bergee971922011-11-04 11:18:18 +01002601 if (rx->sdata->vif.type == NL80211_IFTYPE_AP &&
2602 ieee80211_is_beacon(mgmt->frame_control) &&
2603 !(rx->flags & IEEE80211_RX_BEACON_REPORTED)) {
Johannes Berg804483e2012-03-05 22:18:41 +01002604 int sig = 0;
2605
Johannes Berg30686bf2015-06-02 21:39:54 +02002606 if (ieee80211_hw_check(&rx->local->hw, SIGNAL_DBM))
Johannes Berg804483e2012-03-05 22:18:41 +01002607 sig = status->signal;
2608
Johannes Bergee971922011-11-04 11:18:18 +01002609 cfg80211_report_obss_beacon(rx->local->hw.wiphy,
2610 rx->skb->data, rx->skb->len,
Ben Greear37c73b52012-10-26 14:49:25 -07002611 status->freq, sig);
Johannes Bergee971922011-11-04 11:18:18 +01002612 rx->flags |= IEEE80211_RX_BEACON_REPORTED;
2613 }
2614
Johannes Berg2e161f72010-08-12 15:38:38 +02002615 if (ieee80211_drop_unencrypted_mgmt(rx))
2616 return RX_DROP_UNUSABLE;
2617
2618 return RX_CONTINUE;
2619}
2620
2621static ieee80211_rx_result debug_noinline
Johannes Bergde1ede72008-09-09 14:42:50 +02002622ieee80211_rx_h_action(struct ieee80211_rx_data *rx)
2623{
2624 struct ieee80211_local *local = rx->local;
Johannes Bergeb9fb5b2009-11-16 13:58:20 +01002625 struct ieee80211_sub_if_data *sdata = rx->sdata;
Johannes Bergde1ede72008-09-09 14:42:50 +02002626 struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *) rx->skb->data;
Johannes Berg554891e2010-09-24 12:38:25 +02002627 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(rx->skb);
Johannes Bergde1ede72008-09-09 14:42:50 +02002628 int len = rx->skb->len;
2629
2630 if (!ieee80211_is_action(mgmt->frame_control))
2631 return RX_CONTINUE;
2632
Jouni Malinen026331c2010-02-15 12:53:10 +02002633 /* drop too small frames */
2634 if (len < IEEE80211_MIN_ACTION_SIZE)
2635 return RX_DROP_UNUSABLE;
2636
Marco Porsch815b8092012-12-05 15:04:26 -08002637 if (!rx->sta && mgmt->u.action.category != WLAN_CATEGORY_PUBLIC &&
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02002638 mgmt->u.action.category != WLAN_CATEGORY_SELF_PROTECTED &&
2639 mgmt->u.action.category != WLAN_CATEGORY_SPECTRUM_MGMT)
Johannes Berg84040802010-02-15 12:46:39 +02002640 return RX_DROP_UNUSABLE;
Johannes Bergde1ede72008-09-09 14:42:50 +02002641
Johannes Bergde1ede72008-09-09 14:42:50 +02002642 switch (mgmt->u.action.category) {
Johannes Berg1d8d3de2011-12-16 15:28:57 +01002643 case WLAN_CATEGORY_HT:
2644 /* reject HT action frames from stations not supporting HT */
2645 if (!rx->sta->sta.ht_cap.ht_supported)
2646 goto invalid;
2647
2648 if (sdata->vif.type != NL80211_IFTYPE_STATION &&
2649 sdata->vif.type != NL80211_IFTYPE_MESH_POINT &&
2650 sdata->vif.type != NL80211_IFTYPE_AP_VLAN &&
2651 sdata->vif.type != NL80211_IFTYPE_AP &&
2652 sdata->vif.type != NL80211_IFTYPE_ADHOC)
2653 break;
2654
Johannes Bergec61cd62012-12-28 12:12:10 +01002655 /* verify action & smps_control/chanwidth are present */
Johannes Berg1d8d3de2011-12-16 15:28:57 +01002656 if (len < IEEE80211_MIN_ACTION_SIZE + 2)
2657 goto invalid;
2658
2659 switch (mgmt->u.action.u.ht_smps.action) {
2660 case WLAN_HT_ACTION_SMPS: {
2661 struct ieee80211_supported_band *sband;
Johannes Bergaf0ed692013-02-12 14:21:00 +01002662 enum ieee80211_smps_mode smps_mode;
Johannes Berg1d8d3de2011-12-16 15:28:57 +01002663
2664 /* convert to HT capability */
2665 switch (mgmt->u.action.u.ht_smps.smps_control) {
2666 case WLAN_HT_SMPS_CONTROL_DISABLED:
Johannes Bergaf0ed692013-02-12 14:21:00 +01002667 smps_mode = IEEE80211_SMPS_OFF;
Johannes Berg1d8d3de2011-12-16 15:28:57 +01002668 break;
2669 case WLAN_HT_SMPS_CONTROL_STATIC:
Johannes Bergaf0ed692013-02-12 14:21:00 +01002670 smps_mode = IEEE80211_SMPS_STATIC;
Johannes Berg1d8d3de2011-12-16 15:28:57 +01002671 break;
2672 case WLAN_HT_SMPS_CONTROL_DYNAMIC:
Johannes Bergaf0ed692013-02-12 14:21:00 +01002673 smps_mode = IEEE80211_SMPS_DYNAMIC;
Johannes Berg1d8d3de2011-12-16 15:28:57 +01002674 break;
2675 default:
2676 goto invalid;
2677 }
Johannes Berg1d8d3de2011-12-16 15:28:57 +01002678
2679 /* if no change do nothing */
Johannes Bergaf0ed692013-02-12 14:21:00 +01002680 if (rx->sta->sta.smps_mode == smps_mode)
Johannes Berg1d8d3de2011-12-16 15:28:57 +01002681 goto handled;
Johannes Bergaf0ed692013-02-12 14:21:00 +01002682 rx->sta->sta.smps_mode = smps_mode;
Johannes Berg1d8d3de2011-12-16 15:28:57 +01002683
2684 sband = rx->local->hw.wiphy->bands[status->band];
2685
Johannes Berg64f68e52012-03-28 10:58:37 +02002686 rate_control_rate_update(local, sband, rx->sta,
2687 IEEE80211_RC_SMPS_CHANGED);
Johannes Berg1d8d3de2011-12-16 15:28:57 +01002688 goto handled;
2689 }
Johannes Bergec61cd62012-12-28 12:12:10 +01002690 case WLAN_HT_ACTION_NOTIFY_CHANWIDTH: {
2691 struct ieee80211_supported_band *sband;
2692 u8 chanwidth = mgmt->u.action.u.ht_notify_cw.chanwidth;
Eliad Peller1c45c5c2014-12-14 11:05:51 +02002693 enum ieee80211_sta_rx_bandwidth max_bw, new_bw;
Johannes Bergec61cd62012-12-28 12:12:10 +01002694
2695 /* If it doesn't support 40 MHz it can't change ... */
Johannes Berge1a0c6b2013-02-07 11:47:44 +01002696 if (!(rx->sta->sta.ht_cap.cap &
2697 IEEE80211_HT_CAP_SUP_WIDTH_20_40))
Johannes Bergec61cd62012-12-28 12:12:10 +01002698 goto handled;
2699
Johannes Berge1a0c6b2013-02-07 11:47:44 +01002700 if (chanwidth == IEEE80211_HT_CHANWIDTH_20MHZ)
Eliad Peller1c45c5c2014-12-14 11:05:51 +02002701 max_bw = IEEE80211_STA_RX_BW_20;
Johannes Bergec61cd62012-12-28 12:12:10 +01002702 else
Eliad Peller1c45c5c2014-12-14 11:05:51 +02002703 max_bw = ieee80211_sta_cap_rx_bw(rx->sta);
2704
2705 /* set cur_max_bandwidth and recalc sta bw */
2706 rx->sta->cur_max_bandwidth = max_bw;
2707 new_bw = ieee80211_sta_cur_vht_bw(rx->sta);
Johannes Berge1a0c6b2013-02-07 11:47:44 +01002708
2709 if (rx->sta->sta.bandwidth == new_bw)
2710 goto handled;
Johannes Bergec61cd62012-12-28 12:12:10 +01002711
Eliad Peller1c45c5c2014-12-14 11:05:51 +02002712 rx->sta->sta.bandwidth = new_bw;
Johannes Bergec61cd62012-12-28 12:12:10 +01002713 sband = rx->local->hw.wiphy->bands[status->band];
2714
2715 rate_control_rate_update(local, sband, rx->sta,
2716 IEEE80211_RC_BW_CHANGED);
2717 goto handled;
2718 }
Johannes Berg1d8d3de2011-12-16 15:28:57 +01002719 default:
2720 goto invalid;
2721 }
2722
2723 break;
Johannes Berg1b3a2e42013-03-26 15:17:18 +01002724 case WLAN_CATEGORY_PUBLIC:
2725 if (len < IEEE80211_MIN_ACTION_SIZE + 1)
2726 goto invalid;
2727 if (sdata->vif.type != NL80211_IFTYPE_STATION)
2728 break;
2729 if (!rx->sta)
2730 break;
2731 if (!ether_addr_equal(mgmt->bssid, sdata->u.mgd.bssid))
2732 break;
2733 if (mgmt->u.action.u.ext_chan_switch.action_code !=
2734 WLAN_PUB_ACTION_EXT_CHANSW_ANN)
2735 break;
2736 if (len < offsetof(struct ieee80211_mgmt,
2737 u.action.u.ext_chan_switch.variable))
2738 goto invalid;
2739 goto queue;
Johannes Berg0af83d32012-12-27 18:55:36 +01002740 case WLAN_CATEGORY_VHT:
2741 if (sdata->vif.type != NL80211_IFTYPE_STATION &&
2742 sdata->vif.type != NL80211_IFTYPE_MESH_POINT &&
2743 sdata->vif.type != NL80211_IFTYPE_AP_VLAN &&
2744 sdata->vif.type != NL80211_IFTYPE_AP &&
2745 sdata->vif.type != NL80211_IFTYPE_ADHOC)
2746 break;
2747
2748 /* verify action code is present */
2749 if (len < IEEE80211_MIN_ACTION_SIZE + 1)
2750 goto invalid;
2751
2752 switch (mgmt->u.action.u.vht_opmode_notif.action_code) {
2753 case WLAN_VHT_ACTION_OPMODE_NOTIF: {
2754 u8 opmode;
2755
2756 /* verify opmode is present */
2757 if (len < IEEE80211_MIN_ACTION_SIZE + 2)
2758 goto invalid;
2759
2760 opmode = mgmt->u.action.u.vht_opmode_notif.operating_mode;
2761
2762 ieee80211_vht_handle_opmode(rx->sdata, rx->sta,
Eyal Shapiracf1e05c2015-12-08 16:04:36 +02002763 opmode, status->band);
Johannes Berg0af83d32012-12-27 18:55:36 +01002764 goto handled;
2765 }
Sara Sharon23a1f8d2015-12-08 16:04:31 +02002766 case WLAN_VHT_ACTION_GROUPID_MGMT: {
2767 if (len < IEEE80211_MIN_ACTION_SIZE + 25)
2768 goto invalid;
2769 goto queue;
2770 }
Johannes Berg0af83d32012-12-27 18:55:36 +01002771 default:
2772 break;
2773 }
2774 break;
Johannes Bergde1ede72008-09-09 14:42:50 +02002775 case WLAN_CATEGORY_BACK:
Johannes Berg8abd3f92009-02-10 21:25:47 +01002776 if (sdata->vif.type != NL80211_IFTYPE_STATION &&
Thomas Pedersenae2772b2011-10-26 14:47:29 -07002777 sdata->vif.type != NL80211_IFTYPE_MESH_POINT &&
Johannes Berg8abd3f92009-02-10 21:25:47 +01002778 sdata->vif.type != NL80211_IFTYPE_AP_VLAN &&
Alexander Simon13c40c52011-11-30 16:56:34 +01002779 sdata->vif.type != NL80211_IFTYPE_AP &&
2780 sdata->vif.type != NL80211_IFTYPE_ADHOC)
Johannes Berg84040802010-02-15 12:46:39 +02002781 break;
Johannes Berg8abd3f92009-02-10 21:25:47 +01002782
Jouni Malinen026331c2010-02-15 12:53:10 +02002783 /* verify action_code is present */
2784 if (len < IEEE80211_MIN_ACTION_SIZE + 1)
2785 break;
2786
Johannes Bergde1ede72008-09-09 14:42:50 +02002787 switch (mgmt->u.action.u.addba_req.action_code) {
2788 case WLAN_ACTION_ADDBA_REQ:
2789 if (len < (IEEE80211_MIN_ACTION_SIZE +
2790 sizeof(mgmt->u.action.u.addba_req)))
Johannes Bergbed7ee6e2010-06-10 10:21:35 +02002791 goto invalid;
2792 break;
Johannes Bergde1ede72008-09-09 14:42:50 +02002793 case WLAN_ACTION_ADDBA_RESP:
2794 if (len < (IEEE80211_MIN_ACTION_SIZE +
2795 sizeof(mgmt->u.action.u.addba_resp)))
Johannes Bergbed7ee6e2010-06-10 10:21:35 +02002796 goto invalid;
2797 break;
Johannes Bergde1ede72008-09-09 14:42:50 +02002798 case WLAN_ACTION_DELBA:
2799 if (len < (IEEE80211_MIN_ACTION_SIZE +
2800 sizeof(mgmt->u.action.u.delba)))
Johannes Bergbed7ee6e2010-06-10 10:21:35 +02002801 goto invalid;
2802 break;
2803 default:
2804 goto invalid;
Johannes Bergde1ede72008-09-09 14:42:50 +02002805 }
Johannes Bergbed7ee6e2010-06-10 10:21:35 +02002806
Johannes Berg8b58ff82010-06-10 10:21:51 +02002807 goto queue;
Johannes Berg39192c02008-09-09 14:49:03 +02002808 case WLAN_CATEGORY_SPECTRUM_MGMT:
Jouni Malinen026331c2010-02-15 12:53:10 +02002809 /* verify action_code is present */
2810 if (len < IEEE80211_MIN_ACTION_SIZE + 1)
2811 break;
2812
Johannes Berg39192c02008-09-09 14:49:03 +02002813 switch (mgmt->u.action.u.measurement.action_code) {
2814 case WLAN_ACTION_SPCT_MSR_REQ:
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02002815 if (status->band != IEEE80211_BAND_5GHZ)
2816 break;
2817
Johannes Berg39192c02008-09-09 14:49:03 +02002818 if (len < (IEEE80211_MIN_ACTION_SIZE +
2819 sizeof(mgmt->u.action.u.measurement)))
Johannes Berg84040802010-02-15 12:46:39 +02002820 break;
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02002821
Johannes Bergcc32abd2009-05-15 11:52:31 +02002822 if (sdata->vif.type != NL80211_IFTYPE_STATION)
Johannes Berg84040802010-02-15 12:46:39 +02002823 break;
Johannes Bergcc32abd2009-05-15 11:52:31 +02002824
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02002825 ieee80211_process_measurement_req(sdata, mgmt, len);
2826 goto handled;
2827 case WLAN_ACTION_SPCT_CHL_SWITCH: {
2828 u8 *bssid;
2829 if (len < (IEEE80211_MIN_ACTION_SIZE +
2830 sizeof(mgmt->u.action.u.chan_switch)))
2831 break;
2832
2833 if (sdata->vif.type != NL80211_IFTYPE_STATION &&
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07002834 sdata->vif.type != NL80211_IFTYPE_ADHOC &&
2835 sdata->vif.type != NL80211_IFTYPE_MESH_POINT)
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02002836 break;
2837
2838 if (sdata->vif.type == NL80211_IFTYPE_STATION)
2839 bssid = sdata->u.mgd.bssid;
2840 else if (sdata->vif.type == NL80211_IFTYPE_ADHOC)
2841 bssid = sdata->u.ibss.bssid;
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07002842 else if (sdata->vif.type == NL80211_IFTYPE_MESH_POINT)
2843 bssid = mgmt->sa;
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02002844 else
2845 break;
2846
2847 if (!ether_addr_equal(mgmt->bssid, bssid))
Johannes Berg84040802010-02-15 12:46:39 +02002848 break;
Sujithc481ec92009-01-06 09:28:37 +05302849
Johannes Berg8b58ff82010-06-10 10:21:51 +02002850 goto queue;
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02002851 }
Johannes Berg39192c02008-09-09 14:49:03 +02002852 }
2853 break;
Jouni Malinenfea14732009-01-08 13:32:06 +02002854 case WLAN_CATEGORY_SA_QUERY:
2855 if (len < (IEEE80211_MIN_ACTION_SIZE +
2856 sizeof(mgmt->u.action.u.sa_query)))
Johannes Berg84040802010-02-15 12:46:39 +02002857 break;
2858
Jouni Malinenfea14732009-01-08 13:32:06 +02002859 switch (mgmt->u.action.u.sa_query.action) {
2860 case WLAN_ACTION_SA_QUERY_REQUEST:
2861 if (sdata->vif.type != NL80211_IFTYPE_STATION)
Johannes Berg84040802010-02-15 12:46:39 +02002862 break;
Jouni Malinenfea14732009-01-08 13:32:06 +02002863 ieee80211_process_sa_query_req(sdata, mgmt, len);
Johannes Berg84040802010-02-15 12:46:39 +02002864 goto handled;
Jouni Malinenfea14732009-01-08 13:32:06 +02002865 }
2866 break;
Thomas Pedersen8db09852011-08-12 20:01:00 -07002867 case WLAN_CATEGORY_SELF_PROTECTED:
Johannes Berg9b395bc2012-10-26 00:36:40 +02002868 if (len < (IEEE80211_MIN_ACTION_SIZE +
2869 sizeof(mgmt->u.action.u.self_prot.action_code)))
2870 break;
2871
Thomas Pedersen8db09852011-08-12 20:01:00 -07002872 switch (mgmt->u.action.u.self_prot.action_code) {
2873 case WLAN_SP_MESH_PEERING_OPEN:
2874 case WLAN_SP_MESH_PEERING_CLOSE:
2875 case WLAN_SP_MESH_PEERING_CONFIRM:
2876 if (!ieee80211_vif_is_mesh(&sdata->vif))
2877 goto invalid;
Thomas Pedersena6dad6a2013-03-04 13:06:12 -08002878 if (sdata->u.mesh.user_mpm)
Thomas Pedersen8db09852011-08-12 20:01:00 -07002879 /* userspace handles this frame */
2880 break;
2881 goto queue;
2882 case WLAN_SP_MGK_INFORM:
2883 case WLAN_SP_MGK_ACK:
2884 if (!ieee80211_vif_is_mesh(&sdata->vif))
2885 goto invalid;
2886 break;
2887 }
2888 break;
Javier Cardonad3aaec8a2011-05-03 16:57:09 -07002889 case WLAN_CATEGORY_MESH_ACTION:
Johannes Berg9b395bc2012-10-26 00:36:40 +02002890 if (len < (IEEE80211_MIN_ACTION_SIZE +
2891 sizeof(mgmt->u.action.u.mesh_action.action_code)))
2892 break;
2893
Johannes Berg77a121c2010-06-10 10:21:34 +02002894 if (!ieee80211_vif_is_mesh(&sdata->vif))
2895 break;
Thomas Pedersen25d49e42011-08-11 19:35:15 -07002896 if (mesh_action_is_path_sel(mgmt) &&
Johannes Berg1df332e2012-10-26 00:09:11 +02002897 !mesh_path_sel_is_hwmp(sdata))
Javier Cardonac7108a72010-12-16 17:37:50 -08002898 break;
2899 goto queue;
Johannes Berg84040802010-02-15 12:46:39 +02002900 }
Jouni Malinen026331c2010-02-15 12:53:10 +02002901
Johannes Berg2e161f72010-08-12 15:38:38 +02002902 return RX_CONTINUE;
2903
Johannes Bergbed7ee6e2010-06-10 10:21:35 +02002904 invalid:
Johannes Berg554891e2010-09-24 12:38:25 +02002905 status->rx_flags |= IEEE80211_RX_MALFORMED_ACTION_FRM;
Johannes Berg2e161f72010-08-12 15:38:38 +02002906 /* will return in the next handlers */
2907 return RX_CONTINUE;
2908
2909 handled:
2910 if (rx->sta)
Johannes Berge5a9f8d2015-10-16 17:54:47 +02002911 rx->sta->rx_stats.packets++;
Johannes Berg2e161f72010-08-12 15:38:38 +02002912 dev_kfree_skb(rx->skb);
2913 return RX_QUEUED;
2914
2915 queue:
2916 rx->skb->pkt_type = IEEE80211_SDATA_QUEUE_TYPE_FRAME;
2917 skb_queue_tail(&sdata->skb_queue, rx->skb);
2918 ieee80211_queue_work(&local->hw, &sdata->work);
2919 if (rx->sta)
Johannes Berge5a9f8d2015-10-16 17:54:47 +02002920 rx->sta->rx_stats.packets++;
Johannes Berg2e161f72010-08-12 15:38:38 +02002921 return RX_QUEUED;
2922}
2923
2924static ieee80211_rx_result debug_noinline
2925ieee80211_rx_h_userspace_mgmt(struct ieee80211_rx_data *rx)
2926{
Johannes Berg554891e2010-09-24 12:38:25 +02002927 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(rx->skb);
Johannes Berg804483e2012-03-05 22:18:41 +01002928 int sig = 0;
Johannes Berg2e161f72010-08-12 15:38:38 +02002929
2930 /* skip known-bad action frames and return them in the next handler */
Johannes Berg554891e2010-09-24 12:38:25 +02002931 if (status->rx_flags & IEEE80211_RX_MALFORMED_ACTION_FRM)
Johannes Berg2e161f72010-08-12 15:38:38 +02002932 return RX_CONTINUE;
Felix Fietkaud7907442010-01-07 20:23:53 +01002933
Jouni Malinen026331c2010-02-15 12:53:10 +02002934 /*
2935 * Getting here means the kernel doesn't know how to handle
2936 * it, but maybe userspace does ... include returned frames
2937 * so userspace can register for those to know whether ones
2938 * it transmitted were processed or returned.
2939 */
Jouni Malinen026331c2010-02-15 12:53:10 +02002940
Johannes Berg30686bf2015-06-02 21:39:54 +02002941 if (ieee80211_hw_check(&rx->local->hw, SIGNAL_DBM))
Johannes Berg804483e2012-03-05 22:18:41 +01002942 sig = status->signal;
2943
Johannes Berg71bbc992012-06-15 15:30:18 +02002944 if (cfg80211_rx_mgmt(&rx->sdata->wdev, status->freq, sig,
Vladimir Kondratiev970fdfa2014-08-11 03:29:57 -07002945 rx->skb->data, rx->skb->len, 0)) {
Johannes Berg2e161f72010-08-12 15:38:38 +02002946 if (rx->sta)
Johannes Berge5a9f8d2015-10-16 17:54:47 +02002947 rx->sta->rx_stats.packets++;
Johannes Berg2e161f72010-08-12 15:38:38 +02002948 dev_kfree_skb(rx->skb);
2949 return RX_QUEUED;
2950 }
2951
Johannes Berg2e161f72010-08-12 15:38:38 +02002952 return RX_CONTINUE;
2953}
2954
2955static ieee80211_rx_result debug_noinline
2956ieee80211_rx_h_action_return(struct ieee80211_rx_data *rx)
2957{
2958 struct ieee80211_local *local = rx->local;
2959 struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *) rx->skb->data;
2960 struct sk_buff *nskb;
2961 struct ieee80211_sub_if_data *sdata = rx->sdata;
Johannes Berg554891e2010-09-24 12:38:25 +02002962 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(rx->skb);
Johannes Berg2e161f72010-08-12 15:38:38 +02002963
2964 if (!ieee80211_is_action(mgmt->frame_control))
2965 return RX_CONTINUE;
2966
2967 /*
2968 * For AP mode, hostapd is responsible for handling any action
2969 * frames that we didn't handle, including returning unknown
2970 * ones. For all other modes we will return them to the sender,
2971 * setting the 0x80 bit in the action category, as required by
Johannes Berg4b5ebcc2012-06-27 15:38:56 +02002972 * 802.11-2012 9.24.4.
Johannes Berg2e161f72010-08-12 15:38:38 +02002973 * Newer versions of hostapd shall also use the management frame
2974 * registration mechanisms, but older ones still use cooked
2975 * monitor interfaces so push all frames there.
2976 */
Johannes Berg554891e2010-09-24 12:38:25 +02002977 if (!(status->rx_flags & IEEE80211_RX_MALFORMED_ACTION_FRM) &&
Johannes Berg2e161f72010-08-12 15:38:38 +02002978 (sdata->vif.type == NL80211_IFTYPE_AP ||
2979 sdata->vif.type == NL80211_IFTYPE_AP_VLAN))
2980 return RX_DROP_MONITOR;
Jouni Malinen026331c2010-02-15 12:53:10 +02002981
Johannes Berg4b5ebcc2012-06-27 15:38:56 +02002982 if (is_multicast_ether_addr(mgmt->da))
2983 return RX_DROP_MONITOR;
2984
Johannes Berg84040802010-02-15 12:46:39 +02002985 /* do not return rejected action frames */
2986 if (mgmt->u.action.category & 0x80)
2987 return RX_DROP_UNUSABLE;
2988
2989 nskb = skb_copy_expand(rx->skb, local->hw.extra_tx_headroom, 0,
2990 GFP_ATOMIC);
2991 if (nskb) {
John W. Linville292b4df2010-06-24 11:13:56 -04002992 struct ieee80211_mgmt *nmgmt = (void *)nskb->data;
Johannes Berg84040802010-02-15 12:46:39 +02002993
John W. Linville292b4df2010-06-24 11:13:56 -04002994 nmgmt->u.action.category |= 0x80;
2995 memcpy(nmgmt->da, nmgmt->sa, ETH_ALEN);
2996 memcpy(nmgmt->sa, rx->sdata->vif.addr, ETH_ALEN);
Johannes Berg84040802010-02-15 12:46:39 +02002997
2998 memset(nskb->cb, 0, sizeof(nskb->cb));
2999
Johannes Berg07e5a5f2013-03-07 13:22:05 +01003000 if (rx->sdata->vif.type == NL80211_IFTYPE_P2P_DEVICE) {
3001 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(nskb);
3002
3003 info->flags = IEEE80211_TX_CTL_TX_OFFCHAN |
3004 IEEE80211_TX_INTFL_OFFCHAN_TX_OK |
3005 IEEE80211_TX_CTL_NO_CCK_RATE;
Johannes Berg30686bf2015-06-02 21:39:54 +02003006 if (ieee80211_hw_check(&local->hw, QUEUE_CONTROL))
Johannes Berg07e5a5f2013-03-07 13:22:05 +01003007 info->hw_queue =
3008 local->hw.offchannel_tx_hw_queue;
3009 }
3010
3011 __ieee80211_tx_skb_tid_band(rx->sdata, nskb, 7,
3012 status->band);
Johannes Bergde1ede72008-09-09 14:42:50 +02003013 }
Johannes Berg39192c02008-09-09 14:49:03 +02003014 dev_kfree_skb(rx->skb);
3015 return RX_QUEUED;
Johannes Bergde1ede72008-09-09 14:42:50 +02003016}
3017
3018static ieee80211_rx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +01003019ieee80211_rx_h_mgmt(struct ieee80211_rx_data *rx)
Johannes Berg571ecf62007-07-27 15:43:22 +02003020{
Johannes Bergeb9fb5b2009-11-16 13:58:20 +01003021 struct ieee80211_sub_if_data *sdata = rx->sdata;
Johannes Berg77a121c2010-06-10 10:21:34 +02003022 struct ieee80211_mgmt *mgmt = (void *)rx->skb->data;
3023 __le16 stype;
Johannes Berg571ecf62007-07-27 15:43:22 +02003024
Johannes Berg77a121c2010-06-10 10:21:34 +02003025 stype = mgmt->frame_control & cpu_to_le16(IEEE80211_FCTL_STYPE);
Johannes Berg472dbc42008-09-11 00:01:49 +02003026
Johannes Berg77a121c2010-06-10 10:21:34 +02003027 if (!ieee80211_vif_is_mesh(&sdata->vif) &&
3028 sdata->vif.type != NL80211_IFTYPE_ADHOC &&
Rostislav Lisovy239281f2014-11-03 10:33:19 +01003029 sdata->vif.type != NL80211_IFTYPE_OCB &&
Johannes Berg77a121c2010-06-10 10:21:34 +02003030 sdata->vif.type != NL80211_IFTYPE_STATION)
3031 return RX_DROP_MONITOR;
Johannes Bergf9d540e2007-09-28 14:02:09 +02003032
Johannes Berg77a121c2010-06-10 10:21:34 +02003033 switch (stype) {
Johannes Berg66e67e42012-01-20 13:55:27 +01003034 case cpu_to_le16(IEEE80211_STYPE_AUTH):
Johannes Berg77a121c2010-06-10 10:21:34 +02003035 case cpu_to_le16(IEEE80211_STYPE_BEACON):
3036 case cpu_to_le16(IEEE80211_STYPE_PROBE_RESP):
3037 /* process for all: mesh, mlme, ibss */
3038 break;
Johannes Berg66e67e42012-01-20 13:55:27 +01003039 case cpu_to_le16(IEEE80211_STYPE_ASSOC_RESP):
3040 case cpu_to_le16(IEEE80211_STYPE_REASSOC_RESP):
Johannes Berg77a121c2010-06-10 10:21:34 +02003041 case cpu_to_le16(IEEE80211_STYPE_DEAUTH):
3042 case cpu_to_le16(IEEE80211_STYPE_DISASSOC):
Christian Lamparter2c313332010-11-29 20:53:23 +01003043 if (is_multicast_ether_addr(mgmt->da) &&
3044 !is_broadcast_ether_addr(mgmt->da))
3045 return RX_DROP_MONITOR;
3046
Johannes Berg77a121c2010-06-10 10:21:34 +02003047 /* process only for station */
3048 if (sdata->vif.type != NL80211_IFTYPE_STATION)
3049 return RX_DROP_MONITOR;
3050 break;
3051 case cpu_to_le16(IEEE80211_STYPE_PROBE_REQ):
Thomas Pedersen9fb04b52013-02-14 11:20:14 -08003052 /* process only for ibss and mesh */
3053 if (sdata->vif.type != NL80211_IFTYPE_ADHOC &&
3054 sdata->vif.type != NL80211_IFTYPE_MESH_POINT)
Johannes Berg77a121c2010-06-10 10:21:34 +02003055 return RX_DROP_MONITOR;
3056 break;
3057 default:
3058 return RX_DROP_MONITOR;
3059 }
Johannes Berg46900292009-02-15 12:44:28 +01003060
Johannes Berg77a121c2010-06-10 10:21:34 +02003061 /* queue up frame and kick off work to process it */
Johannes Bergc1475ca2010-06-10 10:21:37 +02003062 rx->skb->pkt_type = IEEE80211_SDATA_QUEUE_TYPE_FRAME;
Johannes Berg77a121c2010-06-10 10:21:34 +02003063 skb_queue_tail(&sdata->skb_queue, rx->skb);
3064 ieee80211_queue_work(&rx->local->hw, &sdata->work);
Johannes Berg8b58ff82010-06-10 10:21:51 +02003065 if (rx->sta)
Johannes Berge5a9f8d2015-10-16 17:54:47 +02003066 rx->sta->rx_stats.packets++;
Johannes Berg77a121c2010-06-10 10:21:34 +02003067
3068 return RX_QUEUED;
Johannes Berg571ecf62007-07-27 15:43:22 +02003069}
3070
Johannes Berg5f0b7de2009-11-16 13:58:21 +01003071static void ieee80211_rx_cooked_monitor(struct ieee80211_rx_data *rx,
3072 struct ieee80211_rate *rate)
Michael Wu3d30d942008-01-31 19:48:27 +01003073{
3074 struct ieee80211_sub_if_data *sdata;
3075 struct ieee80211_local *local = rx->local;
Michael Wu3d30d942008-01-31 19:48:27 +01003076 struct sk_buff *skb = rx->skb, *skb2;
3077 struct net_device *prev_dev = NULL;
Johannes Bergeb9fb5b2009-11-16 13:58:20 +01003078 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
Johannes Berg293702a2012-03-02 13:18:19 +01003079 int needed_headroom;
Michael Wu3d30d942008-01-31 19:48:27 +01003080
Johannes Berg554891e2010-09-24 12:38:25 +02003081 /*
3082 * If cooked monitor has been processed already, then
3083 * don't do it again. If not, set the flag.
3084 */
3085 if (rx->flags & IEEE80211_RX_CMNTR)
John W. Linville7c1e1832010-09-24 15:52:49 -04003086 goto out_free_skb;
Johannes Berg554891e2010-09-24 12:38:25 +02003087 rx->flags |= IEEE80211_RX_CMNTR;
John W. Linville7c1e1832010-09-24 15:52:49 -04003088
Johannes Berg152c4772011-10-21 10:22:22 +02003089 /* If there are no cooked monitor interfaces, just free the SKB */
3090 if (!local->cooked_mntrs)
3091 goto out_free_skb;
3092
Johannes Berg1f7bba72014-11-06 22:56:36 +01003093 /* vendor data is long removed here */
3094 status->flag &= ~RX_FLAG_RADIOTAP_VENDOR_DATA;
Johannes Berg293702a2012-03-02 13:18:19 +01003095 /* room for the radiotap header based on driver features */
Johannes Berg1f7bba72014-11-06 22:56:36 +01003096 needed_headroom = ieee80211_rx_radiotap_hdrlen(local, status, skb);
Johannes Berg293702a2012-03-02 13:18:19 +01003097
3098 if (skb_headroom(skb) < needed_headroom &&
3099 pskb_expand_head(skb, needed_headroom, 0, GFP_ATOMIC))
Michael Wu3d30d942008-01-31 19:48:27 +01003100 goto out_free_skb;
3101
Johannes Berg293702a2012-03-02 13:18:19 +01003102 /* prepend radiotap information */
Felix Fietkau973ef212012-04-16 14:56:48 +02003103 ieee80211_add_rx_radiotap_header(local, skb, rate, needed_headroom,
3104 false);
Michael Wu3d30d942008-01-31 19:48:27 +01003105
3106 skb_set_mac_header(skb, 0);
3107 skb->ip_summed = CHECKSUM_UNNECESSARY;
3108 skb->pkt_type = PACKET_OTHERHOST;
3109 skb->protocol = htons(ETH_P_802_2);
3110
3111 list_for_each_entry_rcu(sdata, &local->interfaces, list) {
Johannes Berg9607e6b2009-12-23 13:15:31 +01003112 if (!ieee80211_sdata_running(sdata))
Michael Wu3d30d942008-01-31 19:48:27 +01003113 continue;
3114
Johannes Berg05c914f2008-09-11 00:01:58 +02003115 if (sdata->vif.type != NL80211_IFTYPE_MONITOR ||
Michael Wu3d30d942008-01-31 19:48:27 +01003116 !(sdata->u.mntr_flags & MONITOR_FLAG_COOK_FRAMES))
3117 continue;
3118
3119 if (prev_dev) {
3120 skb2 = skb_clone(skb, GFP_ATOMIC);
3121 if (skb2) {
3122 skb2->dev = prev_dev;
John W. Linville5548a8a2010-06-24 14:25:56 -04003123 netif_receive_skb(skb2);
Michael Wu3d30d942008-01-31 19:48:27 +01003124 }
3125 }
3126
3127 prev_dev = sdata->dev;
Johannes Berg5a490512015-04-22 17:10:38 +02003128 ieee80211_rx_stats(sdata->dev, skb->len);
Michael Wu3d30d942008-01-31 19:48:27 +01003129 }
3130
3131 if (prev_dev) {
3132 skb->dev = prev_dev;
John W. Linville5548a8a2010-06-24 14:25:56 -04003133 netif_receive_skb(skb);
Johannes Berg554891e2010-09-24 12:38:25 +02003134 return;
3135 }
Michael Wu3d30d942008-01-31 19:48:27 +01003136
3137 out_free_skb:
3138 dev_kfree_skb(skb);
3139}
3140
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003141static void ieee80211_rx_handlers_result(struct ieee80211_rx_data *rx,
3142 ieee80211_rx_result res)
3143{
3144 switch (res) {
3145 case RX_DROP_MONITOR:
3146 I802_DEBUG_INC(rx->sdata->local->rx_handlers_drop);
3147 if (rx->sta)
Johannes Berge5a9f8d2015-10-16 17:54:47 +02003148 rx->sta->rx_stats.dropped++;
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003149 /* fall through */
3150 case RX_CONTINUE: {
3151 struct ieee80211_rate *rate = NULL;
3152 struct ieee80211_supported_band *sband;
3153 struct ieee80211_rx_status *status;
3154
3155 status = IEEE80211_SKB_RXCB((rx->skb));
3156
3157 sband = rx->local->hw.wiphy->bands[status->band];
Johannes Berg56146182012-11-09 15:07:02 +01003158 if (!(status->flag & RX_FLAG_HT) &&
3159 !(status->flag & RX_FLAG_VHT))
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003160 rate = &sband->bitrates[status->rate_idx];
3161
3162 ieee80211_rx_cooked_monitor(rx, rate);
3163 break;
3164 }
3165 case RX_DROP_UNUSABLE:
3166 I802_DEBUG_INC(rx->sdata->local->rx_handlers_drop);
3167 if (rx->sta)
Johannes Berge5a9f8d2015-10-16 17:54:47 +02003168 rx->sta->rx_stats.dropped++;
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003169 dev_kfree_skb(rx->skb);
3170 break;
3171 case RX_QUEUED:
3172 I802_DEBUG_INC(rx->sdata->local->rx_handlers_queued);
3173 break;
3174 }
3175}
3176
Christian Lamparterf9e124f2013-02-04 17:44:44 +00003177static void ieee80211_rx_handlers(struct ieee80211_rx_data *rx,
3178 struct sk_buff_head *frames)
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003179{
3180 ieee80211_rx_result res = RX_DROP_MONITOR;
3181 struct sk_buff *skb;
3182
3183#define CALL_RXH(rxh) \
3184 do { \
3185 res = rxh(rx); \
3186 if (res != RX_CONTINUE) \
3187 goto rxh_next; \
3188 } while (0);
3189
Johannes Berg45ceeee2015-03-16 09:08:20 +01003190 /* Lock here to avoid hitting all of the data used in the RX
3191 * path (e.g. key data, station data, ...) concurrently when
3192 * a frame is released from the reorder buffer due to timeout
3193 * from the timer, potentially concurrently with RX from the
3194 * driver.
3195 */
Christian Lamparterf9e124f2013-02-04 17:44:44 +00003196 spin_lock_bh(&rx->local->rx_path_lock);
Christian Lamparter24a8fda2010-12-30 17:25:29 +01003197
Christian Lamparterf9e124f2013-02-04 17:44:44 +00003198 while ((skb = __skb_dequeue(frames))) {
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003199 /*
3200 * all the other fields are valid across frames
3201 * that belong to an aMPDU since they are on the
3202 * same TID from the same station
3203 */
3204 rx->skb = skb;
3205
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003206 CALL_RXH(ieee80211_rx_h_check_more_data)
Johannes Berg47086fc2011-09-29 16:04:33 +02003207 CALL_RXH(ieee80211_rx_h_uapsd_and_pspoll)
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003208 CALL_RXH(ieee80211_rx_h_sta_process)
Johan Almbladh86c228a2013-08-14 15:29:46 +02003209 CALL_RXH(ieee80211_rx_h_decrypt)
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003210 CALL_RXH(ieee80211_rx_h_defragment)
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003211 CALL_RXH(ieee80211_rx_h_michael_mic_verify)
3212 /* must be after MMIC verify so header is counted in MPDU mic */
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003213#ifdef CONFIG_MAC80211_MESH
3214 if (ieee80211_vif_is_mesh(&rx->sdata->vif))
3215 CALL_RXH(ieee80211_rx_h_mesh_fwding);
3216#endif
Javier Cardona2154c812011-09-07 17:49:53 -07003217 CALL_RXH(ieee80211_rx_h_amsdu)
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003218 CALL_RXH(ieee80211_rx_h_data)
Christian Lamparterf9e124f2013-02-04 17:44:44 +00003219
3220 /* special treatment -- needs the queue */
3221 res = ieee80211_rx_h_ctrl(rx, frames);
3222 if (res != RX_CONTINUE)
3223 goto rxh_next;
3224
Johannes Berg2e161f72010-08-12 15:38:38 +02003225 CALL_RXH(ieee80211_rx_h_mgmt_check)
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003226 CALL_RXH(ieee80211_rx_h_action)
Johannes Berg2e161f72010-08-12 15:38:38 +02003227 CALL_RXH(ieee80211_rx_h_userspace_mgmt)
3228 CALL_RXH(ieee80211_rx_h_action_return)
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003229 CALL_RXH(ieee80211_rx_h_mgmt)
3230
3231 rxh_next:
3232 ieee80211_rx_handlers_result(rx, res);
Christian Lamparterf9e124f2013-02-04 17:44:44 +00003233
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003234#undef CALL_RXH
3235 }
Christian Lamparter24a8fda2010-12-30 17:25:29 +01003236
Christian Lamparterf9e124f2013-02-04 17:44:44 +00003237 spin_unlock_bh(&rx->local->rx_path_lock);
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003238}
Johannes Berg571ecf62007-07-27 15:43:22 +02003239
Johannes Berg4406c372010-09-24 11:21:06 +02003240static void ieee80211_invoke_rx_handlers(struct ieee80211_rx_data *rx)
Johannes Berg58905292008-01-31 19:48:25 +01003241{
Christian Lamparterf9e124f2013-02-04 17:44:44 +00003242 struct sk_buff_head reorder_release;
Johannes Berg58905292008-01-31 19:48:25 +01003243 ieee80211_rx_result res = RX_DROP_MONITOR;
3244
Christian Lamparterf9e124f2013-02-04 17:44:44 +00003245 __skb_queue_head_init(&reorder_release);
3246
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02003247#define CALL_RXH(rxh) \
3248 do { \
3249 res = rxh(rx); \
3250 if (res != RX_CONTINUE) \
Johannes Berg2569a822009-11-25 17:46:17 +01003251 goto rxh_next; \
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02003252 } while (0);
Johannes Berg58905292008-01-31 19:48:25 +01003253
Johannes Berg03954422014-11-11 16:49:25 +01003254 CALL_RXH(ieee80211_rx_h_check_dup)
Johannes Berg49461622008-06-30 15:10:45 +02003255 CALL_RXH(ieee80211_rx_h_check)
Johannes Berg2569a822009-11-25 17:46:17 +01003256
Christian Lamparterf9e124f2013-02-04 17:44:44 +00003257 ieee80211_rx_reorder_ampdu(rx, &reorder_release);
Johannes Berg2569a822009-11-25 17:46:17 +01003258
Christian Lamparterf9e124f2013-02-04 17:44:44 +00003259 ieee80211_rx_handlers(rx, &reorder_release);
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003260 return;
Johannes Berg49461622008-06-30 15:10:45 +02003261
Johannes Berg2569a822009-11-25 17:46:17 +01003262 rxh_next:
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003263 ieee80211_rx_handlers_result(rx, res);
3264
3265#undef CALL_RXH
Johannes Berg58905292008-01-31 19:48:25 +01003266}
3267
Christian Lamparter2bff8eb2010-08-05 01:36:41 +02003268/*
Johannes Bergdd318572010-11-29 11:09:16 +01003269 * This function makes calls into the RX path, therefore
3270 * it has to be invoked under RCU read lock.
Christian Lamparter2bff8eb2010-08-05 01:36:41 +02003271 */
3272void ieee80211_release_reorder_timeout(struct sta_info *sta, int tid)
3273{
Christian Lamparterf9e124f2013-02-04 17:44:44 +00003274 struct sk_buff_head frames;
Johannes Berg554891e2010-09-24 12:38:25 +02003275 struct ieee80211_rx_data rx = {
3276 .sta = sta,
3277 .sdata = sta->sdata,
3278 .local = sta->local,
Johannes Berg9e262972011-07-07 18:45:03 +02003279 /* This is OK -- must be QoS data frame */
3280 .security_idx = tid,
3281 .seqno_idx = tid,
Johannes Bergaf9f9b22015-06-11 16:02:32 +02003282 .napi = NULL, /* must be NULL to not have races */
Johannes Berg554891e2010-09-24 12:38:25 +02003283 };
Christian Lamparter2c15a0c2010-08-24 19:22:42 +02003284 struct tid_ampdu_rx *tid_agg_rx;
3285
3286 tid_agg_rx = rcu_dereference(sta->ampdu_mlme.tid_rx[tid]);
3287 if (!tid_agg_rx)
3288 return;
Christian Lamparter2bff8eb2010-08-05 01:36:41 +02003289
Christian Lamparterf9e124f2013-02-04 17:44:44 +00003290 __skb_queue_head_init(&frames);
3291
Christian Lamparter2c15a0c2010-08-24 19:22:42 +02003292 spin_lock(&tid_agg_rx->reorder_lock);
Christian Lamparterf9e124f2013-02-04 17:44:44 +00003293 ieee80211_sta_reorder_release(sta->sdata, tid_agg_rx, &frames);
Christian Lamparter2c15a0c2010-08-24 19:22:42 +02003294 spin_unlock(&tid_agg_rx->reorder_lock);
Christian Lamparter2bff8eb2010-08-05 01:36:41 +02003295
Emmanuel Grumbachb497de62015-04-20 22:53:38 +03003296 if (!skb_queue_empty(&frames)) {
3297 struct ieee80211_event event = {
3298 .type = BA_FRAME_TIMEOUT,
3299 .u.ba.tid = tid,
3300 .u.ba.sta = &sta->sta,
3301 };
3302 drv_event_callback(rx.local, rx.sdata, &event);
3303 }
3304
Christian Lamparterf9e124f2013-02-04 17:44:44 +00003305 ieee80211_rx_handlers(&rx, &frames);
Christian Lamparter2bff8eb2010-08-05 01:36:41 +02003306}
3307
Sara Sharon06470f72016-01-28 16:19:25 +02003308void ieee80211_mark_rx_ba_filtered_frames(struct ieee80211_sta *pubsta, u8 tid,
3309 u16 ssn, u64 filtered,
3310 u16 received_mpdus)
3311{
3312 struct sta_info *sta;
3313 struct tid_ampdu_rx *tid_agg_rx;
3314 struct sk_buff_head frames;
3315 struct ieee80211_rx_data rx = {
3316 /* This is OK -- must be QoS data frame */
3317 .security_idx = tid,
3318 .seqno_idx = tid,
3319 };
3320 int i, diff;
3321
3322 if (WARN_ON(!pubsta || tid >= IEEE80211_NUM_TIDS))
3323 return;
3324
3325 __skb_queue_head_init(&frames);
3326
3327 sta = container_of(pubsta, struct sta_info, sta);
3328
3329 rx.sta = sta;
3330 rx.sdata = sta->sdata;
3331 rx.local = sta->local;
3332
3333 rcu_read_lock();
3334 tid_agg_rx = rcu_dereference(sta->ampdu_mlme.tid_rx[tid]);
3335 if (!tid_agg_rx)
3336 goto out;
3337
3338 spin_lock_bh(&tid_agg_rx->reorder_lock);
3339
3340 if (received_mpdus >= IEEE80211_SN_MODULO >> 1) {
3341 int release;
3342
3343 /* release all frames in the reorder buffer */
3344 release = (tid_agg_rx->head_seq_num + tid_agg_rx->buf_size) %
3345 IEEE80211_SN_MODULO;
3346 ieee80211_release_reorder_frames(sta->sdata, tid_agg_rx,
3347 release, &frames);
3348 /* update ssn to match received ssn */
3349 tid_agg_rx->head_seq_num = ssn;
3350 } else {
3351 ieee80211_release_reorder_frames(sta->sdata, tid_agg_rx, ssn,
3352 &frames);
3353 }
3354
3355 /* handle the case that received ssn is behind the mac ssn.
3356 * it can be tid_agg_rx->buf_size behind and still be valid */
3357 diff = (tid_agg_rx->head_seq_num - ssn) & IEEE80211_SN_MASK;
3358 if (diff >= tid_agg_rx->buf_size) {
3359 tid_agg_rx->reorder_buf_filtered = 0;
3360 goto release;
3361 }
3362 filtered = filtered >> diff;
3363 ssn += diff;
3364
3365 /* update bitmap */
3366 for (i = 0; i < tid_agg_rx->buf_size; i++) {
3367 int index = (ssn + i) % tid_agg_rx->buf_size;
3368
3369 tid_agg_rx->reorder_buf_filtered &= ~BIT_ULL(index);
3370 if (filtered & BIT_ULL(i))
3371 tid_agg_rx->reorder_buf_filtered |= BIT_ULL(index);
3372 }
3373
3374 /* now process also frames that the filter marking released */
3375 ieee80211_sta_reorder_release(sta->sdata, tid_agg_rx, &frames);
3376
3377release:
3378 spin_unlock_bh(&tid_agg_rx->reorder_lock);
3379
3380 ieee80211_rx_handlers(&rx, &frames);
3381
3382 out:
3383 rcu_read_unlock();
3384}
3385EXPORT_SYMBOL(ieee80211_mark_rx_ba_filtered_frames);
3386
Johannes Berg571ecf62007-07-27 15:43:22 +02003387/* main receive path */
3388
Johannes Berga58fbe12015-04-22 15:08:39 +02003389static bool ieee80211_accept_frame(struct ieee80211_rx_data *rx)
Johannes Berg23a24de2007-07-27 15:43:22 +02003390{
Johannes Berg20b01f82010-09-24 11:21:05 +02003391 struct ieee80211_sub_if_data *sdata = rx->sdata;
Johannes Bergeb9fb5b2009-11-16 13:58:20 +01003392 struct sk_buff *skb = rx->skb;
Johannes Berga58fbe12015-04-22 15:08:39 +02003393 struct ieee80211_hdr *hdr = (void *)skb->data;
Johannes Bergeb9fb5b2009-11-16 13:58:20 +01003394 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
3395 u8 *bssid = ieee80211_get_bssid(hdr, skb->len, sdata->vif.type);
Johannes Berg23a24de2007-07-27 15:43:22 +02003396 int multicast = is_multicast_ether_addr(hdr->addr1);
3397
Johannes Berg51fb61e2007-12-19 01:31:27 +01003398 switch (sdata->vif.type) {
Johannes Berg05c914f2008-09-11 00:01:58 +02003399 case NL80211_IFTYPE_STATION:
Johannes Berg9bc383d2009-11-19 11:55:19 +01003400 if (!bssid && !sdata->u.mgd.use_4addr)
Johannes Berg3c2723f52014-01-07 16:23:24 +01003401 return false;
Johannes Berga58fbe12015-04-22 15:08:39 +02003402 if (multicast)
3403 return true;
3404 return ether_addr_equal(sdata->vif.addr, hdr->addr1);
Johannes Berg05c914f2008-09-11 00:01:58 +02003405 case NL80211_IFTYPE_ADHOC:
Johannes Berg23a24de2007-07-27 15:43:22 +02003406 if (!bssid)
Johannes Berg3c2723f52014-01-07 16:23:24 +01003407 return false;
Felix Fietkau6329b8d2013-09-17 11:15:43 +02003408 if (ether_addr_equal(sdata->vif.addr, hdr->addr2) ||
3409 ether_addr_equal(sdata->u.ibss.bssid, hdr->addr2))
Johannes Berg3c2723f52014-01-07 16:23:24 +01003410 return false;
Johannes Berga58fbe12015-04-22 15:08:39 +02003411 if (ieee80211_is_beacon(hdr->frame_control))
Johannes Berg3c2723f52014-01-07 16:23:24 +01003412 return true;
Johannes Berga58fbe12015-04-22 15:08:39 +02003413 if (!ieee80211_bssid_match(bssid, sdata->u.ibss.bssid))
Johannes Berg3c2723f52014-01-07 16:23:24 +01003414 return false;
Johannes Berga58fbe12015-04-22 15:08:39 +02003415 if (!multicast &&
3416 !ether_addr_equal(sdata->vif.addr, hdr->addr1))
Johannes Bergdf140462015-04-22 14:40:58 +02003417 return false;
Johannes Berga58fbe12015-04-22 15:08:39 +02003418 if (!rx->sta) {
Jouni Malinen0fb8ca42008-12-12 14:38:33 +02003419 int rate_idx;
Johannes Berg56146182012-11-09 15:07:02 +01003420 if (status->flag & (RX_FLAG_HT | RX_FLAG_VHT))
3421 rate_idx = 0; /* TODO: HT/VHT rates */
Jouni Malinen0fb8ca42008-12-12 14:38:33 +02003422 else
Johannes Bergeb9fb5b2009-11-16 13:58:20 +01003423 rate_idx = status->rate_idx;
Johannes Berg8bf11d82011-12-15 11:17:37 +01003424 ieee80211_ibss_rx_no_sta(sdata, bssid, hdr->addr2,
3425 BIT(rate_idx));
Jouni Malinen0fb8ca42008-12-12 14:38:33 +02003426 }
Johannes Berga58fbe12015-04-22 15:08:39 +02003427 return true;
Rostislav Lisovy239281f2014-11-03 10:33:19 +01003428 case NL80211_IFTYPE_OCB:
3429 if (!bssid)
3430 return false;
Bertold Van den Berghcc117292015-08-05 16:02:42 +02003431 if (!ieee80211_is_data_present(hdr->frame_control))
Rostislav Lisovy239281f2014-11-03 10:33:19 +01003432 return false;
Johannes Berga58fbe12015-04-22 15:08:39 +02003433 if (!is_broadcast_ether_addr(bssid))
Rostislav Lisovy239281f2014-11-03 10:33:19 +01003434 return false;
Johannes Berga58fbe12015-04-22 15:08:39 +02003435 if (!multicast &&
3436 !ether_addr_equal(sdata->dev->dev_addr, hdr->addr1))
Johannes Bergdf140462015-04-22 14:40:58 +02003437 return false;
Johannes Berga58fbe12015-04-22 15:08:39 +02003438 if (!rx->sta) {
Rostislav Lisovy239281f2014-11-03 10:33:19 +01003439 int rate_idx;
3440 if (status->flag & RX_FLAG_HT)
3441 rate_idx = 0; /* TODO: HT rates */
3442 else
3443 rate_idx = status->rate_idx;
3444 ieee80211_ocb_rx_no_sta(sdata, bssid, hdr->addr2,
3445 BIT(rate_idx));
3446 }
Johannes Berga58fbe12015-04-22 15:08:39 +02003447 return true;
Johannes Berg05c914f2008-09-11 00:01:58 +02003448 case NL80211_IFTYPE_MESH_POINT:
Johannes Berga58fbe12015-04-22 15:08:39 +02003449 if (multicast)
3450 return true;
3451 return ether_addr_equal(sdata->vif.addr, hdr->addr1);
Johannes Berg05c914f2008-09-11 00:01:58 +02003452 case NL80211_IFTYPE_AP_VLAN:
3453 case NL80211_IFTYPE_AP:
Johannes Berga58fbe12015-04-22 15:08:39 +02003454 if (!bssid)
3455 return ether_addr_equal(sdata->vif.addr, hdr->addr1);
3456
3457 if (!ieee80211_bssid_match(bssid, sdata->vif.addr)) {
Johannes Berg3df6eae2011-12-06 10:39:40 +01003458 /*
3459 * Accept public action frames even when the
3460 * BSSID doesn't match, this is used for P2P
3461 * and location updates. Note that mac80211
3462 * itself never looks at these frames.
3463 */
Johannes Berg2b9ccd42013-05-13 16:42:40 +02003464 if (!multicast &&
3465 !ether_addr_equal(sdata->vif.addr, hdr->addr1))
Johannes Berg3c2723f52014-01-07 16:23:24 +01003466 return false;
Johannes Bergd48b2962012-07-06 22:19:27 +02003467 if (ieee80211_is_public_action(hdr, skb->len))
Johannes Berg3c2723f52014-01-07 16:23:24 +01003468 return true;
Johannes Berg5c900672015-04-22 14:48:34 +02003469 return ieee80211_is_beacon(hdr->frame_control);
Johannes Berga58fbe12015-04-22 15:08:39 +02003470 }
3471
3472 if (!ieee80211_has_tods(hdr->frame_control)) {
Arik Nemtsovdb8e1732014-07-17 17:14:30 +03003473 /* ignore data frames to TDLS-peers */
3474 if (ieee80211_is_data(hdr->frame_control))
3475 return false;
3476 /* ignore action frames to TDLS-peers */
3477 if (ieee80211_is_action(hdr->frame_control) &&
3478 !ether_addr_equal(bssid, hdr->addr1))
3479 return false;
Johannes Berg23a24de2007-07-27 15:43:22 +02003480 }
Johannes Berga58fbe12015-04-22 15:08:39 +02003481 return true;
Johannes Berg05c914f2008-09-11 00:01:58 +02003482 case NL80211_IFTYPE_WDS:
Harvey Harrisona7767f92008-07-02 16:30:51 -07003483 if (bssid || !ieee80211_is_data(hdr->frame_control))
Johannes Berg3c2723f52014-01-07 16:23:24 +01003484 return false;
Johannes Berga58fbe12015-04-22 15:08:39 +02003485 return ether_addr_equal(sdata->u.wds.remote_addr, hdr->addr2);
Johannes Bergf142c6b2012-06-18 20:07:15 +02003486 case NL80211_IFTYPE_P2P_DEVICE:
Johannes Berga58fbe12015-04-22 15:08:39 +02003487 return ieee80211_is_public_action(hdr, skb->len) ||
3488 ieee80211_is_probe_req(hdr->frame_control) ||
3489 ieee80211_is_probe_resp(hdr->frame_control) ||
3490 ieee80211_is_beacon(hdr->frame_control);
Johannes Berg2ca27bc2010-09-16 14:58:23 +02003491 default:
Johannes Bergfb1c1cd2007-09-26 15:19:43 +02003492 break;
Johannes Berg23a24de2007-07-27 15:43:22 +02003493 }
3494
Johannes Berga58fbe12015-04-22 15:08:39 +02003495 WARN_ON_ONCE(1);
3496 return false;
Johannes Berg23a24de2007-07-27 15:43:22 +02003497}
3498
Johannes Berg571ecf62007-07-27 15:43:22 +02003499/*
Johannes Berg4406c372010-09-24 11:21:06 +02003500 * This function returns whether or not the SKB
3501 * was destined for RX processing or not, which,
3502 * if consume is true, is equivalent to whether
3503 * or not the skb was consumed.
3504 */
3505static bool ieee80211_prepare_and_rx_handle(struct ieee80211_rx_data *rx,
3506 struct sk_buff *skb, bool consume)
3507{
3508 struct ieee80211_local *local = rx->local;
3509 struct ieee80211_sub_if_data *sdata = rx->sdata;
Johannes Berg4406c372010-09-24 11:21:06 +02003510
3511 rx->skb = skb;
Johannes Berg4406c372010-09-24 11:21:06 +02003512
Johannes Berga58fbe12015-04-22 15:08:39 +02003513 if (!ieee80211_accept_frame(rx))
Johannes Berg4406c372010-09-24 11:21:06 +02003514 return false;
3515
Johannes Berg4406c372010-09-24 11:21:06 +02003516 if (!consume) {
3517 skb = skb_copy(skb, GFP_ATOMIC);
3518 if (!skb) {
3519 if (net_ratelimit())
3520 wiphy_debug(local->hw.wiphy,
Ben Greearb305dae2011-01-08 10:30:54 -08003521 "failed to copy skb for %s\n",
Johannes Berg4406c372010-09-24 11:21:06 +02003522 sdata->name);
3523 return true;
3524 }
3525
3526 rx->skb = skb;
3527 }
3528
3529 ieee80211_invoke_rx_handlers(rx);
3530 return true;
3531}
3532
3533/*
Zhao, Gang6b59db72014-04-21 12:52:59 +08003534 * This is the actual Rx frames handler. as it belongs to Rx path it must
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02003535 * be called with rcu_read_lock protection.
Johannes Berg571ecf62007-07-27 15:43:22 +02003536 */
Ron Rindjunsky71ebb4a2008-01-21 12:39:12 +02003537static void __ieee80211_rx_handle_packet(struct ieee80211_hw *hw,
Johannes Bergaf9f9b22015-06-11 16:02:32 +02003538 struct sk_buff *skb,
3539 struct napi_struct *napi)
Johannes Berg571ecf62007-07-27 15:43:22 +02003540{
3541 struct ieee80211_local *local = hw_to_local(hw);
3542 struct ieee80211_sub_if_data *sdata;
Johannes Berg571ecf62007-07-27 15:43:22 +02003543 struct ieee80211_hdr *hdr;
Zhu Yie3cf8b32010-03-29 17:35:07 +08003544 __le16 fc;
Johannes Berg5cf121c2008-02-25 16:27:43 +01003545 struct ieee80211_rx_data rx;
Johannes Berg4406c372010-09-24 11:21:06 +02003546 struct ieee80211_sub_if_data *prev;
Johannes Berg7bedd0c2015-02-13 21:55:15 +01003547 struct sta_info *sta, *prev_sta;
3548 struct rhash_head *tmp;
Zhu Yie3cf8b32010-03-29 17:35:07 +08003549 int err = 0;
Johannes Berg571ecf62007-07-27 15:43:22 +02003550
Zhu Yie3cf8b32010-03-29 17:35:07 +08003551 fc = ((struct ieee80211_hdr *)skb->data)->frame_control;
Johannes Berg571ecf62007-07-27 15:43:22 +02003552 memset(&rx, 0, sizeof(rx));
3553 rx.skb = skb;
3554 rx.local = local;
Johannes Bergaf9f9b22015-06-11 16:02:32 +02003555 rx.napi = napi;
Johannes Berg72abd812007-09-17 01:29:22 -04003556
Zhu Yie3cf8b32010-03-29 17:35:07 +08003557 if (ieee80211_is_data(fc) || ieee80211_is_mgmt(fc))
Johannes Bergc206ca62015-04-22 20:47:28 +02003558 I802_DEBUG_INC(local->dot11ReceivedFragmentCount);
Johannes Berg571ecf62007-07-27 15:43:22 +02003559
Johannes Berg4a4f1a52012-10-26 00:33:36 +02003560 if (ieee80211_is_mgmt(fc)) {
3561 /* drop frame if too short for header */
3562 if (skb->len < ieee80211_hdrlen(fc))
3563 err = -ENOBUFS;
3564 else
3565 err = skb_linearize(skb);
3566 } else {
Zhu Yie3cf8b32010-03-29 17:35:07 +08003567 err = !pskb_may_pull(skb, ieee80211_hdrlen(fc));
Johannes Berg4a4f1a52012-10-26 00:33:36 +02003568 }
Zhu Yie3cf8b32010-03-29 17:35:07 +08003569
3570 if (err) {
3571 dev_kfree_skb(skb);
3572 return;
3573 }
3574
3575 hdr = (struct ieee80211_hdr *)skb->data;
Johannes Berg38f37142008-01-29 17:07:43 +01003576 ieee80211_parse_qos(&rx);
Johannes Bergd1c3a372009-01-07 00:26:10 +01003577 ieee80211_verify_alignment(&rx);
Johannes Berg38f37142008-01-29 17:07:43 +01003578
Johannes Bergd48b2962012-07-06 22:19:27 +02003579 if (unlikely(ieee80211_is_probe_resp(hdr->frame_control) ||
3580 ieee80211_is_beacon(hdr->frame_control)))
3581 ieee80211_scan_rx(local, skb);
3582
Zhu Yie3cf8b32010-03-29 17:35:07 +08003583 if (ieee80211_is_data(fc)) {
Johannes Berg7bedd0c2015-02-13 21:55:15 +01003584 const struct bucket_table *tbl;
3585
Ben Greear56af3262010-09-23 10:22:24 -07003586 prev_sta = NULL;
Johannes Berg4406c372010-09-24 11:21:06 +02003587
Johannes Berg7bedd0c2015-02-13 21:55:15 +01003588 tbl = rht_dereference_rcu(local->sta_hash.tbl, &local->sta_hash);
3589
3590 for_each_sta_info(local, tbl, hdr->addr2, sta, tmp) {
Ben Greear56af3262010-09-23 10:22:24 -07003591 if (!prev_sta) {
3592 prev_sta = sta;
3593 continue;
3594 }
3595
3596 rx.sta = prev_sta;
3597 rx.sdata = prev_sta->sdata;
Johannes Berg4406c372010-09-24 11:21:06 +02003598 ieee80211_prepare_and_rx_handle(&rx, skb, false);
Johannes Berg571ecf62007-07-27 15:43:22 +02003599
Ben Greear56af3262010-09-23 10:22:24 -07003600 prev_sta = sta;
Johannes Berg4406c372010-09-24 11:21:06 +02003601 }
Ben Greear56af3262010-09-23 10:22:24 -07003602
3603 if (prev_sta) {
3604 rx.sta = prev_sta;
3605 rx.sdata = prev_sta->sdata;
3606
Johannes Berg4406c372010-09-24 11:21:06 +02003607 if (ieee80211_prepare_and_rx_handle(&rx, skb, true))
Ben Greear56af3262010-09-23 10:22:24 -07003608 return;
Senthil Balasubramanian8e26d5a2010-11-30 20:15:38 +05303609 goto out;
Ben Greear56af3262010-09-23 10:22:24 -07003610 }
Johannes Berg4406c372010-09-24 11:21:06 +02003611 }
3612
Johannes Berg4b0dd982010-09-24 11:21:07 +02003613 prev = NULL;
Johannes Berg4406c372010-09-24 11:21:06 +02003614
Johannes Berg4b0dd982010-09-24 11:21:07 +02003615 list_for_each_entry_rcu(sdata, &local->interfaces, list) {
3616 if (!ieee80211_sdata_running(sdata))
3617 continue;
Johannes Bergabe60632009-11-25 17:46:18 +01003618
Johannes Berg4b0dd982010-09-24 11:21:07 +02003619 if (sdata->vif.type == NL80211_IFTYPE_MONITOR ||
3620 sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
3621 continue;
Johannes Bergabe60632009-11-25 17:46:18 +01003622
Johannes Berg4b0dd982010-09-24 11:21:07 +02003623 /*
3624 * frame is destined for this interface, but if it's
3625 * not also for the previous one we handle that after
3626 * the loop to avoid copying the SKB once too much
3627 */
Johannes Bergb2e77712007-09-26 15:19:39 +02003628
Johannes Berg4b0dd982010-09-24 11:21:07 +02003629 if (!prev) {
Johannes Berg340e11f2007-07-27 15:43:22 +02003630 prev = sdata;
Johannes Berg4b0dd982010-09-24 11:21:07 +02003631 continue;
Johannes Berg8e6f00322007-07-27 15:43:22 +02003632 }
Felix Fietkau4bb29f82010-01-22 00:36:39 +01003633
Johannes Berg7852e362012-01-20 13:55:24 +01003634 rx.sta = sta_info_get_bss(prev, hdr->addr2);
Johannes Berg4b0dd982010-09-24 11:21:07 +02003635 rx.sdata = prev;
3636 ieee80211_prepare_and_rx_handle(&rx, skb, false);
Felix Fietkau4bb29f82010-01-22 00:36:39 +01003637
Johannes Berg4b0dd982010-09-24 11:21:07 +02003638 prev = sdata;
3639 }
Johannes Berg4406c372010-09-24 11:21:06 +02003640
Johannes Berg4b0dd982010-09-24 11:21:07 +02003641 if (prev) {
Johannes Berg7852e362012-01-20 13:55:24 +01003642 rx.sta = sta_info_get_bss(prev, hdr->addr2);
Johannes Berg4b0dd982010-09-24 11:21:07 +02003643 rx.sdata = prev;
3644
3645 if (ieee80211_prepare_and_rx_handle(&rx, skb, true))
3646 return;
Johannes Berg571ecf62007-07-27 15:43:22 +02003647 }
Johannes Berg4406c372010-09-24 11:21:06 +02003648
Senthil Balasubramanian8e26d5a2010-11-30 20:15:38 +05303649 out:
Johannes Berg4406c372010-09-24 11:21:06 +02003650 dev_kfree_skb(skb);
Johannes Berg571ecf62007-07-27 15:43:22 +02003651}
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02003652
3653/*
3654 * This is the receive path handler. It is called by a low level driver when an
3655 * 802.11 MPDU is received from the hardware.
3656 */
Johannes Bergaf9f9b22015-06-11 16:02:32 +02003657void ieee80211_rx_napi(struct ieee80211_hw *hw, struct sk_buff *skb,
3658 struct napi_struct *napi)
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02003659{
3660 struct ieee80211_local *local = hw_to_local(hw);
Johannes Berg8318d782008-01-24 19:38:38 +01003661 struct ieee80211_rate *rate = NULL;
3662 struct ieee80211_supported_band *sband;
Johannes Bergf1d58c22009-06-17 13:13:00 +02003663 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
Johannes Berg8318d782008-01-24 19:38:38 +01003664
Johannes Bergd20ef632009-10-11 15:10:40 +02003665 WARN_ON_ONCE(softirq_count() == 0);
3666
Johannes Berg444e38032012-09-30 17:08:35 +02003667 if (WARN_ON(status->band >= IEEE80211_NUM_BANDS))
Johannes Berg77a980d2009-08-24 11:46:30 +02003668 goto drop;
Johannes Berg8318d782008-01-24 19:38:38 +01003669
3670 sband = local->hw.wiphy->bands[status->band];
Johannes Berg77a980d2009-08-24 11:46:30 +02003671 if (WARN_ON(!sband))
3672 goto drop;
Johannes Berg8318d782008-01-24 19:38:38 +01003673
Johannes Berg89c3a8a2009-07-28 18:10:17 +02003674 /*
3675 * If we're suspending, it is possible although not too likely
3676 * that we'd be receiving frames after having already partially
3677 * quiesced the stack. We can't process such frames then since
3678 * that might, for example, cause stations to be added or other
3679 * driver callbacks be invoked.
3680 */
Johannes Berg77a980d2009-08-24 11:46:30 +02003681 if (unlikely(local->quiescing || local->suspended))
3682 goto drop;
Johannes Berg89c3a8a2009-07-28 18:10:17 +02003683
Arik Nemtsov04800ad2012-06-06 11:25:02 +03003684 /* We might be during a HW reconfig, prevent Rx for the same reason */
3685 if (unlikely(local->in_reconfig))
3686 goto drop;
3687
Johannes Bergea77f122009-08-21 14:44:45 +02003688 /*
3689 * The same happens when we're not even started,
3690 * but that's worth a warning.
3691 */
Johannes Berg77a980d2009-08-24 11:46:30 +02003692 if (WARN_ON(!local->started))
3693 goto drop;
Johannes Bergea77f122009-08-21 14:44:45 +02003694
Johannes Bergfc885182010-07-30 13:23:12 +02003695 if (likely(!(status->flag & RX_FLAG_FAILED_PLCP_CRC))) {
Luis R. Rodrigueze5d6eb82009-11-09 16:03:22 -05003696 /*
Johannes Bergfc885182010-07-30 13:23:12 +02003697 * Validate the rate, unless a PLCP error means that
3698 * we probably can't have a valid rate here anyway.
Luis R. Rodrigueze5d6eb82009-11-09 16:03:22 -05003699 */
Johannes Bergfc885182010-07-30 13:23:12 +02003700
3701 if (status->flag & RX_FLAG_HT) {
3702 /*
3703 * rate_idx is MCS index, which can be [0-76]
3704 * as documented on:
3705 *
3706 * http://wireless.kernel.org/en/developers/Documentation/ieee80211/802.11n
3707 *
3708 * Anything else would be some sort of driver or
3709 * hardware error. The driver should catch hardware
3710 * errors.
3711 */
Johannes Berg444e38032012-09-30 17:08:35 +02003712 if (WARN(status->rate_idx > 76,
Johannes Bergfc885182010-07-30 13:23:12 +02003713 "Rate marked as an HT rate but passed "
3714 "status->rate_idx is not "
3715 "an MCS index [0-76]: %d (0x%02x)\n",
3716 status->rate_idx,
3717 status->rate_idx))
3718 goto drop;
Johannes Berg56146182012-11-09 15:07:02 +01003719 } else if (status->flag & RX_FLAG_VHT) {
3720 if (WARN_ONCE(status->rate_idx > 9 ||
3721 !status->vht_nss ||
3722 status->vht_nss > 8,
3723 "Rate marked as a VHT rate but data is invalid: MCS: %d, NSS: %d\n",
3724 status->rate_idx, status->vht_nss))
3725 goto drop;
Johannes Bergfc885182010-07-30 13:23:12 +02003726 } else {
Johannes Berg444e38032012-09-30 17:08:35 +02003727 if (WARN_ON(status->rate_idx >= sband->n_bitrates))
Johannes Bergfc885182010-07-30 13:23:12 +02003728 goto drop;
3729 rate = &sband->bitrates[status->rate_idx];
3730 }
Jouni Malinen0fb8ca42008-12-12 14:38:33 +02003731 }
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02003732
Johannes Berg554891e2010-09-24 12:38:25 +02003733 status->rx_flags = 0;
3734
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02003735 /*
3736 * key references and virtual interfaces are protected using RCU
3737 * and this requires that we are in a read-side RCU section during
3738 * receive processing
3739 */
3740 rcu_read_lock();
3741
3742 /*
3743 * Frames with failed FCS/PLCP checksum are not returned,
3744 * all other frames are returned without radiotap header
3745 * if it was previously present.
3746 * Also, frames with less than 16 bytes are dropped.
3747 */
Johannes Bergf1d58c22009-06-17 13:13:00 +02003748 skb = ieee80211_rx_monitor(local, skb, rate);
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02003749 if (!skb) {
3750 rcu_read_unlock();
3751 return;
3752 }
3753
Johannes Berge1e54062010-11-30 08:58:45 +01003754 ieee80211_tpt_led_trig_rx(local,
3755 ((struct ieee80211_hdr *)skb->data)->frame_control,
3756 skb->len);
Johannes Bergaf9f9b22015-06-11 16:02:32 +02003757 __ieee80211_rx_handle_packet(hw, skb, napi);
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02003758
3759 rcu_read_unlock();
Johannes Berg77a980d2009-08-24 11:46:30 +02003760
3761 return;
3762 drop:
3763 kfree_skb(skb);
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02003764}
Johannes Bergaf9f9b22015-06-11 16:02:32 +02003765EXPORT_SYMBOL(ieee80211_rx_napi);
Johannes Berg571ecf62007-07-27 15:43:22 +02003766
3767/* This is a version of the rx handler that can be called from hard irq
3768 * context. Post the skb on the queue and schedule the tasklet */
Johannes Bergf1d58c22009-06-17 13:13:00 +02003769void ieee80211_rx_irqsafe(struct ieee80211_hw *hw, struct sk_buff *skb)
Johannes Berg571ecf62007-07-27 15:43:22 +02003770{
3771 struct ieee80211_local *local = hw_to_local(hw);
3772
3773 BUILD_BUG_ON(sizeof(struct ieee80211_rx_status) > sizeof(skb->cb));
3774
Johannes Berg571ecf62007-07-27 15:43:22 +02003775 skb->pkt_type = IEEE80211_RX_MSG;
3776 skb_queue_tail(&local->skb_queue, skb);
3777 tasklet_schedule(&local->tasklet);
3778}
3779EXPORT_SYMBOL(ieee80211_rx_irqsafe);