blob: 96f8bbf216498f30eefdcd3ba5eb05bd3780ac91 [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
Johannes Berg2c61cf92016-03-17 15:02:55 +0200725static int ieee80211_get_cs_keyid(const struct ieee80211_cipher_scheme *cs,
726 struct sk_buff *skb)
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200727{
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) &&
Johannes Berg4f6b1b32016-03-31 20:02:08 +03001424 !is_multicast_ether_addr(hdr->addr1))
1425 sta->rx_stats.last_rate =
1426 sta_stats_encode_rate(status);
Felix Fietkau3af63342011-02-27 22:08:01 +01001427 }
Rostislav Lisovy239281f2014-11-03 10:33:19 +01001428 } else if (rx->sdata->vif.type == NL80211_IFTYPE_OCB) {
Johannes Berge5a9f8d2015-10-16 17:54:47 +02001429 sta->rx_stats.last_rx = jiffies;
Johannes Bergb291ba12009-07-10 15:29:03 +02001430 } else if (!is_multicast_ether_addr(hdr->addr1)) {
1431 /*
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001432 * Mesh beacons will update last_rx when if they are found to
1433 * match the current local configuration when processed.
Johannes Berg571ecf62007-07-27 15:43:22 +02001434 */
Johannes Berge5a9f8d2015-10-16 17:54:47 +02001435 sta->rx_stats.last_rx = jiffies;
Johannes Berg4f6b1b32016-03-31 20:02:08 +03001436 if (ieee80211_is_data(hdr->frame_control))
1437 sta->rx_stats.last_rate = sta_stats_encode_rate(status);
Johannes Berg571ecf62007-07-27 15:43:22 +02001438 }
1439
Kalle Valo3cf335d2009-03-22 21:57:06 +02001440 if (rx->sdata->vif.type == NL80211_IFTYPE_STATION)
1441 ieee80211_sta_rx_notify(rx->sdata, hdr);
1442
Johannes Berge5a9f8d2015-10-16 17:54:47 +02001443 sta->rx_stats.fragments++;
Johannes Berg0f9c5a62016-03-31 20:02:09 +03001444
1445 u64_stats_update_begin(&rx->sta->rx_stats.syncp);
Johannes Berge5a9f8d2015-10-16 17:54:47 +02001446 sta->rx_stats.bytes += rx->skb->len;
Johannes Berg0f9c5a62016-03-31 20:02:09 +03001447 u64_stats_update_end(&rx->sta->rx_stats.syncp);
1448
Felix Fietkaufe8431f2012-03-01 18:00:07 +01001449 if (!(status->flag & RX_FLAG_NO_SIGNAL_VAL)) {
Johannes Berge5a9f8d2015-10-16 17:54:47 +02001450 sta->rx_stats.last_signal = status->signal;
Johannes Berg0be6ed12016-03-31 20:02:05 +03001451 ewma_signal_add(&sta->rx_stats_avg.signal, -status->signal);
Felix Fietkaufe8431f2012-03-01 18:00:07 +01001452 }
Johannes Berg571ecf62007-07-27 15:43:22 +02001453
Felix Fietkauef0621e2013-04-22 16:29:31 +02001454 if (status->chains) {
Johannes Berge5a9f8d2015-10-16 17:54:47 +02001455 sta->rx_stats.chains = status->chains;
Felix Fietkauef0621e2013-04-22 16:29:31 +02001456 for (i = 0; i < ARRAY_SIZE(status->chain_signal); i++) {
1457 int signal = status->chain_signal[i];
1458
1459 if (!(status->chains & BIT(i)))
1460 continue;
1461
Johannes Berge5a9f8d2015-10-16 17:54:47 +02001462 sta->rx_stats.chain_signal_last[i] = signal;
Johannes Berg0be6ed12016-03-31 20:02:05 +03001463 ewma_signal_add(&sta->rx_stats_avg.chain_signal[i],
Johannes Berge5a9f8d2015-10-16 17:54:47 +02001464 -signal);
Felix Fietkauef0621e2013-04-22 16:29:31 +02001465 }
1466 }
1467
Johannes Berg72eaa432008-11-26 15:02:58 +01001468 /*
1469 * Change STA power saving mode only at the end of a frame
1470 * exchange sequence.
1471 */
Johannes Berg30686bf2015-06-02 21:39:54 +02001472 if (!ieee80211_hw_check(&sta->local->hw, AP_LINK_PS) &&
Arik Nemtsovd057e5a2011-01-31 22:29:13 +02001473 !ieee80211_has_morefrags(hdr->frame_control) &&
Christian Lamparter4cfda472010-12-27 23:21:26 +01001474 !(status->rx_flags & IEEE80211_RX_DEFERRED_RELEASE) &&
Johannes Berg05c914f2008-09-11 00:01:58 +02001475 (rx->sdata->vif.type == NL80211_IFTYPE_AP ||
Johannes Bergb4ba5442014-01-24 14:41:44 +01001476 rx->sdata->vif.type == NL80211_IFTYPE_AP_VLAN) &&
1477 /* PM bit is only checked in frames where it isn't reserved,
1478 * in AP mode it's reserved in non-bufferable management frames
1479 * (cf. IEEE 802.11-2012 8.2.4.1.7 Power Management field)
1480 */
1481 (!ieee80211_is_mgmt(hdr->frame_control) ||
1482 ieee80211_is_bufferable_mmpdu(hdr->frame_control))) {
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001483 if (test_sta_flag(sta, WLAN_STA_PS_STA)) {
Johannes Bergb4ba5442014-01-24 14:41:44 +01001484 if (!ieee80211_has_pm(hdr->frame_control))
Marco Porschd012a602012-10-10 12:39:50 -07001485 sta_ps_end(sta);
Johannes Berg72eaa432008-11-26 15:02:58 +01001486 } else {
1487 if (ieee80211_has_pm(hdr->frame_control))
Marco Porschd012a602012-10-10 12:39:50 -07001488 sta_ps_start(sta);
Johannes Berg72eaa432008-11-26 15:02:58 +01001489 }
Johannes Berg571ecf62007-07-27 15:43:22 +02001490 }
1491
Marco Porsch3f52b7e2013-01-30 18:14:08 +01001492 /* mesh power save support */
1493 if (ieee80211_vif_is_mesh(&rx->sdata->vif))
1494 ieee80211_mps_rx_h_sta_process(sta, hdr);
1495
Johannes Berg22403de2009-10-30 12:55:03 +01001496 /*
1497 * Drop (qos-)data::nullfunc frames silently, since they
1498 * are used only to control station power saving mode.
1499 */
1500 if (ieee80211_is_nullfunc(hdr->frame_control) ||
1501 ieee80211_is_qos_nullfunc(hdr->frame_control)) {
Johannes Berg571ecf62007-07-27 15:43:22 +02001502 I802_DEBUG_INC(rx->local->rx_handlers_drop_nullfunc);
Felix Fietkaud5242152010-01-08 18:06:26 +01001503
1504 /*
1505 * If we receive a 4-addr nullfunc frame from a STA
Johannes Berge7f4a942011-11-04 11:18:20 +01001506 * that was not moved to a 4-addr STA vlan yet send
1507 * the event to userspace and for older hostapd drop
1508 * the frame to the monitor interface.
Felix Fietkaud5242152010-01-08 18:06:26 +01001509 */
1510 if (ieee80211_has_a4(hdr->frame_control) &&
1511 (rx->sdata->vif.type == NL80211_IFTYPE_AP ||
1512 (rx->sdata->vif.type == NL80211_IFTYPE_AP_VLAN &&
Johannes Berge7f4a942011-11-04 11:18:20 +01001513 !rx->sdata->u.vlan.sta))) {
1514 if (!test_and_set_sta_flag(sta, WLAN_STA_4ADDR_EVENT))
1515 cfg80211_rx_unexpected_4addr_frame(
1516 rx->sdata->dev, sta->sta.addr,
1517 GFP_ATOMIC);
Felix Fietkaud5242152010-01-08 18:06:26 +01001518 return RX_DROP_MONITOR;
Johannes Berge7f4a942011-11-04 11:18:20 +01001519 }
Johannes Berg22403de2009-10-30 12:55:03 +01001520 /*
1521 * Update counter and free packet here to avoid
1522 * counting this as a dropped packed.
1523 */
Johannes Berge5a9f8d2015-10-16 17:54:47 +02001524 sta->rx_stats.packets++;
Johannes Berg571ecf62007-07-27 15:43:22 +02001525 dev_kfree_skb(rx->skb);
Johannes Berg9ae54c82008-01-31 19:48:20 +01001526 return RX_QUEUED;
Johannes Berg571ecf62007-07-27 15:43:22 +02001527 }
1528
Johannes Berg9ae54c82008-01-31 19:48:20 +01001529 return RX_CONTINUE;
Johannes Berg571ecf62007-07-27 15:43:22 +02001530} /* ieee80211_rx_h_sta_process */
1531
Johan Almbladh86c228a2013-08-14 15:29:46 +02001532static ieee80211_rx_result debug_noinline
1533ieee80211_rx_h_decrypt(struct ieee80211_rx_data *rx)
1534{
1535 struct sk_buff *skb = rx->skb;
1536 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
1537 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
1538 int keyidx;
1539 int hdrlen;
1540 ieee80211_rx_result result = RX_DROP_UNUSABLE;
1541 struct ieee80211_key *sta_ptk = NULL;
1542 int mmie_keyidx = -1;
1543 __le16 fc;
Max Stepanov2475b1cc2013-03-24 14:23:27 +02001544 const struct ieee80211_cipher_scheme *cs = NULL;
Johan Almbladh86c228a2013-08-14 15:29:46 +02001545
1546 /*
1547 * Key selection 101
1548 *
1549 * There are four types of keys:
1550 * - GTK (group keys)
1551 * - IGTK (group keys for management frames)
1552 * - PTK (pairwise keys)
1553 * - STK (station-to-station pairwise keys)
1554 *
1555 * When selecting a key, we have to distinguish between multicast
1556 * (including broadcast) and unicast frames, the latter can only
1557 * use PTKs and STKs while the former always use GTKs and IGTKs.
1558 * Unless, of course, actual WEP keys ("pre-RSNA") are used, then
1559 * unicast frames can also use key indices like GTKs. Hence, if we
1560 * don't have a PTK/STK we check the key index for a WEP key.
1561 *
1562 * Note that in a regular BSS, multicast frames are sent by the
1563 * AP only, associated stations unicast the frame to the AP first
1564 * which then multicasts it on their behalf.
1565 *
1566 * There is also a slight problem in IBSS mode: GTKs are negotiated
1567 * with each station, that is something we don't currently handle.
1568 * The spec seems to expect that one negotiates the same key with
1569 * every station but there's no such requirement; VLANs could be
1570 * possible.
1571 */
1572
Johan Almbladh86c228a2013-08-14 15:29:46 +02001573 /* start without a key */
1574 rx->key = NULL;
Johan Almbladh86c228a2013-08-14 15:29:46 +02001575 fc = hdr->frame_control;
1576
Max Stepanov2475b1cc2013-03-24 14:23:27 +02001577 if (rx->sta) {
1578 int keyid = rx->sta->ptk_idx;
1579
1580 if (ieee80211_has_protected(fc) && rx->sta->cipher_scheme) {
1581 cs = rx->sta->cipher_scheme;
Johannes Berg2c61cf92016-03-17 15:02:55 +02001582 keyid = ieee80211_get_cs_keyid(cs, rx->skb);
Max Stepanov2475b1cc2013-03-24 14:23:27 +02001583 if (unlikely(keyid < 0))
1584 return RX_DROP_UNUSABLE;
1585 }
1586 sta_ptk = rcu_dereference(rx->sta->ptk[keyid]);
1587 }
1588
Johan Almbladh86c228a2013-08-14 15:29:46 +02001589 if (!ieee80211_has_protected(fc))
1590 mmie_keyidx = ieee80211_get_mmie_keyidx(rx->skb);
1591
1592 if (!is_multicast_ether_addr(hdr->addr1) && sta_ptk) {
1593 rx->key = sta_ptk;
1594 if ((status->flag & RX_FLAG_DECRYPTED) &&
1595 (status->flag & RX_FLAG_IV_STRIPPED))
1596 return RX_CONTINUE;
1597 /* Skip decryption if the frame is not protected. */
1598 if (!ieee80211_has_protected(fc))
1599 return RX_CONTINUE;
1600 } else if (mmie_keyidx >= 0) {
1601 /* Broadcast/multicast robust management frame / BIP */
1602 if ((status->flag & RX_FLAG_DECRYPTED) &&
1603 (status->flag & RX_FLAG_IV_STRIPPED))
1604 return RX_CONTINUE;
1605
1606 if (mmie_keyidx < NUM_DEFAULT_KEYS ||
1607 mmie_keyidx >= NUM_DEFAULT_KEYS + NUM_DEFAULT_MGMT_KEYS)
1608 return RX_DROP_MONITOR; /* unexpected BIP keyidx */
1609 if (rx->sta)
1610 rx->key = rcu_dereference(rx->sta->gtk[mmie_keyidx]);
1611 if (!rx->key)
1612 rx->key = rcu_dereference(rx->sdata->keys[mmie_keyidx]);
1613 } else if (!ieee80211_has_protected(fc)) {
1614 /*
1615 * The frame was not protected, so skip decryption. However, we
1616 * need to set rx->key if there is a key that could have been
1617 * used so that the frame may be dropped if encryption would
1618 * have been expected.
1619 */
1620 struct ieee80211_key *key = NULL;
1621 struct ieee80211_sub_if_data *sdata = rx->sdata;
1622 int i;
1623
1624 if (ieee80211_is_mgmt(fc) &&
1625 is_multicast_ether_addr(hdr->addr1) &&
1626 (key = rcu_dereference(rx->sdata->default_mgmt_key)))
1627 rx->key = key;
1628 else {
1629 if (rx->sta) {
1630 for (i = 0; i < NUM_DEFAULT_KEYS; i++) {
1631 key = rcu_dereference(rx->sta->gtk[i]);
1632 if (key)
1633 break;
1634 }
1635 }
1636 if (!key) {
1637 for (i = 0; i < NUM_DEFAULT_KEYS; i++) {
1638 key = rcu_dereference(sdata->keys[i]);
1639 if (key)
1640 break;
1641 }
1642 }
1643 if (key)
1644 rx->key = key;
1645 }
1646 return RX_CONTINUE;
1647 } else {
1648 u8 keyid;
Max Stepanov2475b1cc2013-03-24 14:23:27 +02001649
Johan Almbladh86c228a2013-08-14 15:29:46 +02001650 /*
1651 * The device doesn't give us the IV so we won't be
1652 * able to look up the key. That's ok though, we
1653 * don't need to decrypt the frame, we just won't
1654 * be able to keep statistics accurate.
1655 * Except for key threshold notifications, should
1656 * we somehow allow the driver to tell us which key
1657 * the hardware used if this flag is set?
1658 */
1659 if ((status->flag & RX_FLAG_DECRYPTED) &&
1660 (status->flag & RX_FLAG_IV_STRIPPED))
1661 return RX_CONTINUE;
1662
1663 hdrlen = ieee80211_hdrlen(fc);
1664
Max Stepanov2475b1cc2013-03-24 14:23:27 +02001665 if (cs) {
Johannes Berg2c61cf92016-03-17 15:02:55 +02001666 keyidx = ieee80211_get_cs_keyid(cs, rx->skb);
Johan Almbladh86c228a2013-08-14 15:29:46 +02001667
Max Stepanov2475b1cc2013-03-24 14:23:27 +02001668 if (unlikely(keyidx < 0))
1669 return RX_DROP_UNUSABLE;
1670 } else {
1671 if (rx->skb->len < 8 + hdrlen)
1672 return RX_DROP_UNUSABLE; /* TODO: count this? */
1673 /*
1674 * no need to call ieee80211_wep_get_keyidx,
1675 * it verifies a bunch of things we've done already
1676 */
1677 skb_copy_bits(rx->skb, hdrlen + 3, &keyid, 1);
1678 keyidx = keyid >> 6;
1679 }
Johan Almbladh86c228a2013-08-14 15:29:46 +02001680
1681 /* check per-station GTK first, if multicast packet */
1682 if (is_multicast_ether_addr(hdr->addr1) && rx->sta)
1683 rx->key = rcu_dereference(rx->sta->gtk[keyidx]);
1684
1685 /* if not found, try default key */
1686 if (!rx->key) {
1687 rx->key = rcu_dereference(rx->sdata->keys[keyidx]);
1688
1689 /*
1690 * RSNA-protected unicast frames should always be
1691 * sent with pairwise or station-to-station keys,
1692 * but for WEP we allow using a key index as well.
1693 */
1694 if (rx->key &&
1695 rx->key->conf.cipher != WLAN_CIPHER_SUITE_WEP40 &&
1696 rx->key->conf.cipher != WLAN_CIPHER_SUITE_WEP104 &&
1697 !is_multicast_ether_addr(hdr->addr1))
1698 rx->key = NULL;
1699 }
1700 }
1701
1702 if (rx->key) {
1703 if (unlikely(rx->key->flags & KEY_FLAG_TAINTED))
1704 return RX_DROP_MONITOR;
1705
Johan Almbladh86c228a2013-08-14 15:29:46 +02001706 /* TODO: add threshold stuff again */
1707 } else {
1708 return RX_DROP_MONITOR;
1709 }
1710
1711 switch (rx->key->conf.cipher) {
1712 case WLAN_CIPHER_SUITE_WEP40:
1713 case WLAN_CIPHER_SUITE_WEP104:
1714 result = ieee80211_crypto_wep_decrypt(rx);
1715 break;
1716 case WLAN_CIPHER_SUITE_TKIP:
1717 result = ieee80211_crypto_tkip_decrypt(rx);
1718 break;
1719 case WLAN_CIPHER_SUITE_CCMP:
Jouni Malinen2b2ba0d2015-01-24 19:52:07 +02001720 result = ieee80211_crypto_ccmp_decrypt(
1721 rx, IEEE80211_CCMP_MIC_LEN);
1722 break;
1723 case WLAN_CIPHER_SUITE_CCMP_256:
1724 result = ieee80211_crypto_ccmp_decrypt(
1725 rx, IEEE80211_CCMP_256_MIC_LEN);
Johan Almbladh86c228a2013-08-14 15:29:46 +02001726 break;
1727 case WLAN_CIPHER_SUITE_AES_CMAC:
1728 result = ieee80211_crypto_aes_cmac_decrypt(rx);
1729 break;
Jouni Malinen56c52da2015-01-24 19:52:08 +02001730 case WLAN_CIPHER_SUITE_BIP_CMAC_256:
1731 result = ieee80211_crypto_aes_cmac_256_decrypt(rx);
1732 break;
Jouni Malinen8ade5382015-01-24 19:52:09 +02001733 case WLAN_CIPHER_SUITE_BIP_GMAC_128:
1734 case WLAN_CIPHER_SUITE_BIP_GMAC_256:
1735 result = ieee80211_crypto_aes_gmac_decrypt(rx);
1736 break;
Jouni Malinen00b9cfa2015-01-24 19:52:06 +02001737 case WLAN_CIPHER_SUITE_GCMP:
1738 case WLAN_CIPHER_SUITE_GCMP_256:
1739 result = ieee80211_crypto_gcmp_decrypt(rx);
1740 break;
Johan Almbladh86c228a2013-08-14 15:29:46 +02001741 default:
Max Stepanov2475b1cc2013-03-24 14:23:27 +02001742 result = ieee80211_crypto_hw_decrypt(rx);
Johan Almbladh86c228a2013-08-14 15:29:46 +02001743 }
1744
1745 /* the hdr variable is invalid after the decrypt handlers */
1746
1747 /* either the frame has been decrypted or will be dropped */
1748 status->flag |= RX_FLAG_DECRYPTED;
1749
1750 return result;
1751}
1752
Johannes Berg571ecf62007-07-27 15:43:22 +02001753static inline struct ieee80211_fragment_entry *
1754ieee80211_reassemble_add(struct ieee80211_sub_if_data *sdata,
1755 unsigned int frag, unsigned int seq, int rx_queue,
1756 struct sk_buff **skb)
1757{
1758 struct ieee80211_fragment_entry *entry;
Johannes Berg571ecf62007-07-27 15:43:22 +02001759
Johannes Berg571ecf62007-07-27 15:43:22 +02001760 entry = &sdata->fragments[sdata->fragment_next++];
1761 if (sdata->fragment_next >= IEEE80211_FRAGMENT_MAX)
1762 sdata->fragment_next = 0;
1763
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02001764 if (!skb_queue_empty(&entry->skb_list))
Johannes Berg571ecf62007-07-27 15:43:22 +02001765 __skb_queue_purge(&entry->skb_list);
Johannes Berg571ecf62007-07-27 15:43:22 +02001766
1767 __skb_queue_tail(&entry->skb_list, *skb); /* no need for locking */
1768 *skb = NULL;
1769 entry->first_frag_time = jiffies;
1770 entry->seq = seq;
1771 entry->rx_queue = rx_queue;
1772 entry->last_frag = frag;
Johannes Berg9acc54b2016-02-26 22:13:40 +01001773 entry->check_sequential_pn = false;
Johannes Berg571ecf62007-07-27 15:43:22 +02001774 entry->extra_len = 0;
1775
1776 return entry;
1777}
1778
1779static inline struct ieee80211_fragment_entry *
1780ieee80211_reassemble_find(struct ieee80211_sub_if_data *sdata,
Harvey Harrisonb73d70a2008-07-15 18:44:12 -07001781 unsigned int frag, unsigned int seq,
Johannes Berg571ecf62007-07-27 15:43:22 +02001782 int rx_queue, struct ieee80211_hdr *hdr)
1783{
1784 struct ieee80211_fragment_entry *entry;
1785 int i, idx;
1786
1787 idx = sdata->fragment_next;
1788 for (i = 0; i < IEEE80211_FRAGMENT_MAX; i++) {
1789 struct ieee80211_hdr *f_hdr;
Johannes Berg571ecf62007-07-27 15:43:22 +02001790
1791 idx--;
1792 if (idx < 0)
1793 idx = IEEE80211_FRAGMENT_MAX - 1;
1794
1795 entry = &sdata->fragments[idx];
1796 if (skb_queue_empty(&entry->skb_list) || entry->seq != seq ||
1797 entry->rx_queue != rx_queue ||
1798 entry->last_frag + 1 != frag)
1799 continue;
1800
Harvey Harrisonb73d70a2008-07-15 18:44:12 -07001801 f_hdr = (struct ieee80211_hdr *)entry->skb_list.next->data;
Johannes Berg571ecf62007-07-27 15:43:22 +02001802
Harvey Harrisonb73d70a2008-07-15 18:44:12 -07001803 /*
1804 * Check ftype and addresses are equal, else check next fragment
1805 */
1806 if (((hdr->frame_control ^ f_hdr->frame_control) &
1807 cpu_to_le16(IEEE80211_FCTL_FTYPE)) ||
Joe Perchesb203ca32012-05-08 18:56:52 +00001808 !ether_addr_equal(hdr->addr1, f_hdr->addr1) ||
1809 !ether_addr_equal(hdr->addr2, f_hdr->addr2))
Johannes Berg571ecf62007-07-27 15:43:22 +02001810 continue;
1811
S.Çağlar Onurab466232008-02-14 17:36:47 +02001812 if (time_after(jiffies, entry->first_frag_time + 2 * HZ)) {
Johannes Berg571ecf62007-07-27 15:43:22 +02001813 __skb_queue_purge(&entry->skb_list);
1814 continue;
1815 }
1816 return entry;
1817 }
1818
1819 return NULL;
1820}
1821
Johannes Berg49461622008-06-30 15:10:45 +02001822static ieee80211_rx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +01001823ieee80211_rx_h_defragment(struct ieee80211_rx_data *rx)
Johannes Berg571ecf62007-07-27 15:43:22 +02001824{
1825 struct ieee80211_hdr *hdr;
1826 u16 sc;
Harvey Harrison358c8d92008-07-15 18:44:13 -07001827 __le16 fc;
Johannes Berg571ecf62007-07-27 15:43:22 +02001828 unsigned int frag, seq;
1829 struct ieee80211_fragment_entry *entry;
1830 struct sk_buff *skb;
Johannes Berg554891e2010-09-24 12:38:25 +02001831 struct ieee80211_rx_status *status;
Johannes Berg571ecf62007-07-27 15:43:22 +02001832
Harvey Harrisonb73d70a2008-07-15 18:44:12 -07001833 hdr = (struct ieee80211_hdr *)rx->skb->data;
Harvey Harrison358c8d92008-07-15 18:44:13 -07001834 fc = hdr->frame_control;
Javier Cardonaf7fbf702012-10-25 11:10:18 -07001835
1836 if (ieee80211_is_ctl(fc))
1837 return RX_CONTINUE;
1838
Johannes Berg571ecf62007-07-27 15:43:22 +02001839 sc = le16_to_cpu(hdr->seq_ctrl);
1840 frag = sc & IEEE80211_SCTL_FRAG;
1841
Johannes Bergb8fff402014-11-03 13:57:46 +01001842 if (is_multicast_ether_addr(hdr->addr1)) {
Johannes Bergc206ca62015-04-22 20:47:28 +02001843 I802_DEBUG_INC(rx->local->dot11MulticastReceivedFrameCount);
Andreas Müllerd0259332014-12-12 12:11:11 +01001844 goto out_no_led;
Johannes Berg571ecf62007-07-27 15:43:22 +02001845 }
Johannes Bergb8fff402014-11-03 13:57:46 +01001846
Andreas Müllerd0259332014-12-12 12:11:11 +01001847 if (likely(!ieee80211_has_morefrags(fc) && frag == 0))
1848 goto out;
1849
Johannes Berg571ecf62007-07-27 15:43:22 +02001850 I802_DEBUG_INC(rx->local->rx_handlers_fragments);
1851
Zhu Yie3cf8b32010-03-29 17:35:07 +08001852 if (skb_linearize(rx->skb))
1853 return RX_DROP_UNUSABLE;
1854
Abhijeet Kolekar058897a2010-05-11 11:22:11 -07001855 /*
1856 * skb_linearize() might change the skb->data and
1857 * previously cached variables (in this case, hdr) need to
1858 * be refreshed with the new data.
1859 */
1860 hdr = (struct ieee80211_hdr *)rx->skb->data;
Johannes Berg571ecf62007-07-27 15:43:22 +02001861 seq = (sc & IEEE80211_SCTL_SEQ) >> 4;
1862
1863 if (frag == 0) {
1864 /* This is the first fragment of a new frame. */
1865 entry = ieee80211_reassemble_add(rx->sdata, frag, seq,
Johannes Berg9e262972011-07-07 18:45:03 +02001866 rx->seqno_idx, &(rx->skb));
Jouni Malinen2b2ba0d2015-01-24 19:52:07 +02001867 if (rx->key &&
1868 (rx->key->conf.cipher == WLAN_CIPHER_SUITE_CCMP ||
Johannes Berg9acc54b2016-02-26 22:13:40 +01001869 rx->key->conf.cipher == WLAN_CIPHER_SUITE_CCMP_256 ||
1870 rx->key->conf.cipher == WLAN_CIPHER_SUITE_GCMP ||
1871 rx->key->conf.cipher == WLAN_CIPHER_SUITE_GCMP_256) &&
Harvey Harrison358c8d92008-07-15 18:44:13 -07001872 ieee80211_has_protected(fc)) {
Johannes Berg9e262972011-07-07 18:45:03 +02001873 int queue = rx->security_idx;
Johannes Berg9acc54b2016-02-26 22:13:40 +01001874
1875 /* Store CCMP/GCMP PN so that we can verify that the
1876 * next fragment has a sequential PN value.
1877 */
1878 entry->check_sequential_pn = true;
Johannes Berg571ecf62007-07-27 15:43:22 +02001879 memcpy(entry->last_pn,
Jouni Malinen91902522010-06-11 10:27:33 -07001880 rx->key->u.ccmp.rx_pn[queue],
Johannes Berg4325f6c2013-05-08 13:09:08 +02001881 IEEE80211_CCMP_PN_LEN);
Johannes Berg9acc54b2016-02-26 22:13:40 +01001882 BUILD_BUG_ON(offsetof(struct ieee80211_key,
1883 u.ccmp.rx_pn) !=
1884 offsetof(struct ieee80211_key,
1885 u.gcmp.rx_pn));
1886 BUILD_BUG_ON(sizeof(rx->key->u.ccmp.rx_pn[queue]) !=
1887 sizeof(rx->key->u.gcmp.rx_pn[queue]));
1888 BUILD_BUG_ON(IEEE80211_CCMP_PN_LEN !=
1889 IEEE80211_GCMP_PN_LEN);
Johannes Berg571ecf62007-07-27 15:43:22 +02001890 }
Johannes Berg9ae54c82008-01-31 19:48:20 +01001891 return RX_QUEUED;
Johannes Berg571ecf62007-07-27 15:43:22 +02001892 }
1893
1894 /* This is a fragment for a frame that should already be pending in
1895 * fragment cache. Add this fragment to the end of the pending entry.
1896 */
Johannes Berg9e262972011-07-07 18:45:03 +02001897 entry = ieee80211_reassemble_find(rx->sdata, frag, seq,
1898 rx->seqno_idx, hdr);
Johannes Berg571ecf62007-07-27 15:43:22 +02001899 if (!entry) {
1900 I802_DEBUG_INC(rx->local->rx_handlers_drop_defrag);
Johannes Berge4c26ad2008-01-31 19:48:21 +01001901 return RX_DROP_MONITOR;
Johannes Berg571ecf62007-07-27 15:43:22 +02001902 }
1903
Johannes Berg9acc54b2016-02-26 22:13:40 +01001904 /* "The receiver shall discard MSDUs and MMPDUs whose constituent
1905 * MPDU PN values are not incrementing in steps of 1."
1906 * see IEEE P802.11-REVmc/D5.0, 12.5.3.4.4, item d (for CCMP)
1907 * and IEEE P802.11-REVmc/D5.0, 12.5.5.4.4, item d (for GCMP)
1908 */
1909 if (entry->check_sequential_pn) {
Johannes Berg571ecf62007-07-27 15:43:22 +02001910 int i;
Johannes Berg4325f6c2013-05-08 13:09:08 +02001911 u8 pn[IEEE80211_CCMP_PN_LEN], *rpn;
Jouni Malinen91902522010-06-11 10:27:33 -07001912 int queue;
Johannes Berg9acc54b2016-02-26 22:13:40 +01001913
Jouni Malinen2b2ba0d2015-01-24 19:52:07 +02001914 if (!rx->key ||
1915 (rx->key->conf.cipher != WLAN_CIPHER_SUITE_CCMP &&
Johannes Berg9acc54b2016-02-26 22:13:40 +01001916 rx->key->conf.cipher != WLAN_CIPHER_SUITE_CCMP_256 &&
1917 rx->key->conf.cipher != WLAN_CIPHER_SUITE_GCMP &&
1918 rx->key->conf.cipher != WLAN_CIPHER_SUITE_GCMP_256))
Johannes Berge4c26ad2008-01-31 19:48:21 +01001919 return RX_DROP_UNUSABLE;
Johannes Berg4325f6c2013-05-08 13:09:08 +02001920 memcpy(pn, entry->last_pn, IEEE80211_CCMP_PN_LEN);
1921 for (i = IEEE80211_CCMP_PN_LEN - 1; i >= 0; i--) {
Johannes Berg571ecf62007-07-27 15:43:22 +02001922 pn[i]++;
1923 if (pn[i])
1924 break;
1925 }
Johannes Berg9e262972011-07-07 18:45:03 +02001926 queue = rx->security_idx;
Jouni Malinen91902522010-06-11 10:27:33 -07001927 rpn = rx->key->u.ccmp.rx_pn[queue];
Johannes Berg4325f6c2013-05-08 13:09:08 +02001928 if (memcmp(pn, rpn, IEEE80211_CCMP_PN_LEN))
Johannes Berge4c26ad2008-01-31 19:48:21 +01001929 return RX_DROP_UNUSABLE;
Johannes Berg4325f6c2013-05-08 13:09:08 +02001930 memcpy(entry->last_pn, pn, IEEE80211_CCMP_PN_LEN);
Johannes Berg571ecf62007-07-27 15:43:22 +02001931 }
1932
Harvey Harrison358c8d92008-07-15 18:44:13 -07001933 skb_pull(rx->skb, ieee80211_hdrlen(fc));
Johannes Berg571ecf62007-07-27 15:43:22 +02001934 __skb_queue_tail(&entry->skb_list, rx->skb);
1935 entry->last_frag = frag;
1936 entry->extra_len += rx->skb->len;
Harvey Harrison358c8d92008-07-15 18:44:13 -07001937 if (ieee80211_has_morefrags(fc)) {
Johannes Berg571ecf62007-07-27 15:43:22 +02001938 rx->skb = NULL;
Johannes Berg9ae54c82008-01-31 19:48:20 +01001939 return RX_QUEUED;
Johannes Berg571ecf62007-07-27 15:43:22 +02001940 }
1941
1942 rx->skb = __skb_dequeue(&entry->skb_list);
1943 if (skb_tailroom(rx->skb) < entry->extra_len) {
Johannes Bergf1160432015-04-22 20:25:20 +02001944 I802_DEBUG_INC(rx->local->rx_expand_skb_head_defrag);
Johannes Berg571ecf62007-07-27 15:43:22 +02001945 if (unlikely(pskb_expand_head(rx->skb, 0, entry->extra_len,
1946 GFP_ATOMIC))) {
1947 I802_DEBUG_INC(rx->local->rx_handlers_drop_defrag);
1948 __skb_queue_purge(&entry->skb_list);
Johannes Berge4c26ad2008-01-31 19:48:21 +01001949 return RX_DROP_UNUSABLE;
Johannes Berg571ecf62007-07-27 15:43:22 +02001950 }
1951 }
1952 while ((skb = __skb_dequeue(&entry->skb_list))) {
1953 memcpy(skb_put(rx->skb, skb->len), skb->data, skb->len);
1954 dev_kfree_skb(skb);
1955 }
1956
1957 /* Complete frame has been reassembled - process it now */
Johannes Berg554891e2010-09-24 12:38:25 +02001958 status = IEEE80211_SKB_RXCB(rx->skb);
Johannes Berg571ecf62007-07-27 15:43:22 +02001959
1960 out:
Andreas Müllerd0259332014-12-12 12:11:11 +01001961 ieee80211_led_rx(rx->local);
1962 out_no_led:
Johannes Berg571ecf62007-07-27 15:43:22 +02001963 if (rx->sta)
Johannes Berge5a9f8d2015-10-16 17:54:47 +02001964 rx->sta->rx_stats.packets++;
Johannes Berg9ae54c82008-01-31 19:48:20 +01001965 return RX_CONTINUE;
Johannes Berg571ecf62007-07-27 15:43:22 +02001966}
1967
Johannes Berg1df332e2012-10-26 00:09:11 +02001968static int ieee80211_802_1x_port_control(struct ieee80211_rx_data *rx)
Johannes Berg571ecf62007-07-27 15:43:22 +02001969{
Johannes Berg1df332e2012-10-26 00:09:11 +02001970 if (unlikely(!rx->sta || !test_sta_flag(rx->sta, WLAN_STA_AUTHORIZED)))
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001971 return -EACCES;
Johannes Berg571ecf62007-07-27 15:43:22 +02001972
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001973 return 0;
Johannes Berg571ecf62007-07-27 15:43:22 +02001974}
1975
Johannes Berg1df332e2012-10-26 00:09:11 +02001976static int ieee80211_drop_unencrypted(struct ieee80211_rx_data *rx, __le16 fc)
Johannes Berg571ecf62007-07-27 15:43:22 +02001977{
Johannes Bergeb9fb5b2009-11-16 13:58:20 +01001978 struct sk_buff *skb = rx->skb;
1979 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
1980
Johannes Berg3017b802007-08-28 17:01:53 -04001981 /*
Johannes Berg7848ba72007-09-14 11:10:25 -04001982 * Pass through unencrypted frames if the hardware has
1983 * decrypted them already.
Johannes Berg3017b802007-08-28 17:01:53 -04001984 */
Johannes Bergeb9fb5b2009-11-16 13:58:20 +01001985 if (status->flag & RX_FLAG_DECRYPTED)
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001986 return 0;
Johannes Berg571ecf62007-07-27 15:43:22 +02001987
1988 /* Drop unencrypted frames if key is set. */
Harvey Harrison358c8d92008-07-15 18:44:13 -07001989 if (unlikely(!ieee80211_has_protected(fc) &&
1990 !ieee80211_is_nullfunc(fc) &&
Johannes Berge8f4fb72015-03-20 11:37:36 +01001991 ieee80211_is_data(fc) && rx->key))
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +02001992 return -EACCES;
Johannes Bergbef5d1c2010-02-16 11:05:00 +01001993
1994 return 0;
1995}
1996
Johannes Berg1df332e2012-10-26 00:09:11 +02001997static int ieee80211_drop_unencrypted_mgmt(struct ieee80211_rx_data *rx)
Johannes Bergbef5d1c2010-02-16 11:05:00 +01001998{
1999 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
Jouni Malinene3efca02010-03-28 22:31:15 -07002000 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(rx->skb);
Johannes Bergbef5d1c2010-02-16 11:05:00 +01002001 __le16 fc = hdr->frame_control;
Johannes Bergbef5d1c2010-02-16 11:05:00 +01002002
Jouni Malinene3efca02010-03-28 22:31:15 -07002003 /*
2004 * Pass through unencrypted frames if the hardware has
2005 * decrypted them already.
2006 */
2007 if (status->flag & RX_FLAG_DECRYPTED)
2008 return 0;
Johannes Bergbef5d1c2010-02-16 11:05:00 +01002009
Johannes Bergc2c98fd2011-09-29 16:04:36 +02002010 if (rx->sta && test_sta_flag(rx->sta, WLAN_STA_MFP)) {
Jouni Malinend211e902010-03-28 22:29:52 -07002011 if (unlikely(!ieee80211_has_protected(fc) &&
2012 ieee80211_is_unicast_robust_mgmt_frame(rx->skb) &&
Jouni Malinencf4e5942010-12-16 00:52:40 +02002013 rx->key)) {
Johannes Berg6ff57cf2013-05-16 00:55:00 +02002014 if (ieee80211_is_deauth(fc) ||
2015 ieee80211_is_disassoc(fc))
2016 cfg80211_rx_unprot_mlme_mgmt(rx->sdata->dev,
2017 rx->skb->data,
2018 rx->skb->len);
Jouni Malinenf2ca3ea2009-05-08 12:36:03 +03002019 return -EACCES;
Jouni Malinencf4e5942010-12-16 00:52:40 +02002020 }
Jouni Malinenf2ca3ea2009-05-08 12:36:03 +03002021 /* BIP does not use Protected field, so need to check MMIE */
Joe Perchesf64f9e72009-11-29 16:55:45 -08002022 if (unlikely(ieee80211_is_multicast_robust_mgmt_frame(rx->skb) &&
Jouni Malinencf4e5942010-12-16 00:52:40 +02002023 ieee80211_get_mmie_keyidx(rx->skb) < 0)) {
Johannes Berg6ff57cf2013-05-16 00:55:00 +02002024 if (ieee80211_is_deauth(fc) ||
2025 ieee80211_is_disassoc(fc))
2026 cfg80211_rx_unprot_mlme_mgmt(rx->sdata->dev,
2027 rx->skb->data,
2028 rx->skb->len);
Jouni Malinenf2ca3ea2009-05-08 12:36:03 +03002029 return -EACCES;
Jouni Malinencf4e5942010-12-16 00:52:40 +02002030 }
Jouni Malinenf2ca3ea2009-05-08 12:36:03 +03002031 /*
2032 * When using MFP, Action frames are not allowed prior to
2033 * having configured keys.
2034 */
2035 if (unlikely(ieee80211_is_action(fc) && !rx->key &&
Johannes Bergd8ca16d2014-01-23 16:20:29 +01002036 ieee80211_is_robust_mgmt_frame(rx->skb)))
Jouni Malinenf2ca3ea2009-05-08 12:36:03 +03002037 return -EACCES;
2038 }
Johannes Bergb3fc9c62008-04-13 10:12:47 +02002039
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002040 return 0;
Johannes Berg571ecf62007-07-27 15:43:22 +02002041}
2042
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002043static int
Felix Fietkau4114fa22011-04-12 19:15:22 +02002044__ieee80211_data_to_8023(struct ieee80211_rx_data *rx, bool *port_control)
Johannes Berg571ecf62007-07-27 15:43:22 +02002045{
Johannes Bergeb9fb5b2009-11-16 13:58:20 +01002046 struct ieee80211_sub_if_data *sdata = rx->sdata;
Felix Fietkauf14543ee2009-11-10 20:10:05 +01002047 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
Felix Fietkaufbb327c2011-01-18 15:48:48 +01002048 bool check_port_control = false;
2049 struct ethhdr *ehdr;
2050 int ret;
Felix Fietkauf14543ee2009-11-10 20:10:05 +01002051
Felix Fietkau4114fa22011-04-12 19:15:22 +02002052 *port_control = false;
Johannes Berg9bc383d2009-11-19 11:55:19 +01002053 if (ieee80211_has_a4(hdr->frame_control) &&
2054 sdata->vif.type == NL80211_IFTYPE_AP_VLAN && !sdata->u.vlan.sta)
Felix Fietkauf14543ee2009-11-10 20:10:05 +01002055 return -1;
Johannes Berg9bc383d2009-11-19 11:55:19 +01002056
Felix Fietkaufbb327c2011-01-18 15:48:48 +01002057 if (sdata->vif.type == NL80211_IFTYPE_STATION &&
2058 !!sdata->u.mgd.use_4addr != !!ieee80211_has_a4(hdr->frame_control)) {
2059
2060 if (!sdata->u.mgd.use_4addr)
2061 return -1;
2062 else
2063 check_port_control = true;
2064 }
2065
Johannes Berg9bc383d2009-11-19 11:55:19 +01002066 if (is_multicast_ether_addr(hdr->addr1) &&
Felix Fietkaufbb327c2011-01-18 15:48:48 +01002067 sdata->vif.type == NL80211_IFTYPE_AP_VLAN && sdata->u.vlan.sta)
Felix Fietkauf14543ee2009-11-10 20:10:05 +01002068 return -1;
Johannes Berg571ecf62007-07-27 15:43:22 +02002069
Felix Fietkaufbb327c2011-01-18 15:48:48 +01002070 ret = ieee80211_data_to_8023(rx->skb, sdata->vif.addr, sdata->vif.type);
Felix Fietkau4114fa22011-04-12 19:15:22 +02002071 if (ret < 0)
Felix Fietkaufbb327c2011-01-18 15:48:48 +01002072 return ret;
2073
2074 ehdr = (struct ethhdr *) rx->skb->data;
Felix Fietkau4114fa22011-04-12 19:15:22 +02002075 if (ehdr->h_proto == rx->sdata->control_port_protocol)
2076 *port_control = true;
2077 else if (check_port_control)
Felix Fietkaufbb327c2011-01-18 15:48:48 +01002078 return -1;
2079
2080 return 0;
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002081}
Johannes Berg571ecf62007-07-27 15:43:22 +02002082
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002083/*
2084 * requires that rx->skb is a frame with ethernet header
2085 */
Harvey Harrison358c8d92008-07-15 18:44:13 -07002086static bool ieee80211_frame_allowed(struct ieee80211_rx_data *rx, __le16 fc)
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002087{
Senthil Balasubramanianc97c23e2008-05-28 23:15:32 +05302088 static const u8 pae_group_addr[ETH_ALEN] __aligned(2)
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002089 = { 0x01, 0x80, 0xC2, 0x00, 0x00, 0x03 };
2090 struct ethhdr *ehdr = (struct ethhdr *) rx->skb->data;
2091
2092 /*
2093 * Allow EAPOL frames to us/the PAE group address regardless
2094 * of whether the frame was encrypted or not.
2095 */
Johannes Berga621fa42010-08-27 14:26:54 +03002096 if (ehdr->h_proto == rx->sdata->control_port_protocol &&
Joe Perches3bc79452012-05-08 18:56:53 +00002097 (ether_addr_equal(ehdr->h_dest, rx->sdata->vif.addr) ||
2098 ether_addr_equal(ehdr->h_dest, pae_group_addr)))
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002099 return true;
2100
2101 if (ieee80211_802_1x_port_control(rx) ||
Harvey Harrison358c8d92008-07-15 18:44:13 -07002102 ieee80211_drop_unencrypted(rx, fc))
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002103 return false;
2104
2105 return true;
2106}
2107
2108/*
2109 * requires that rx->skb is a frame with ethernet header
2110 */
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002111static void
Johannes Berg5cf121c2008-02-25 16:27:43 +01002112ieee80211_deliver_skb(struct ieee80211_rx_data *rx)
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002113{
Johannes Bergeb9fb5b2009-11-16 13:58:20 +01002114 struct ieee80211_sub_if_data *sdata = rx->sdata;
2115 struct net_device *dev = sdata->dev;
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002116 struct sk_buff *skb, *xmit_skb;
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002117 struct ethhdr *ehdr = (struct ethhdr *) rx->skb->data;
2118 struct sta_info *dsta;
Johannes Berg571ecf62007-07-27 15:43:22 +02002119
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002120 skb = rx->skb;
2121 xmit_skb = NULL;
Johannes Berg571ecf62007-07-27 15:43:22 +02002122
Johannes Berg5a490512015-04-22 17:10:38 +02002123 ieee80211_rx_stats(dev, skb->len);
2124
Johannes Bergde8f18d2016-03-31 20:02:03 +03002125 if (rx->sta) {
2126 /* The seqno index has the same property as needed
2127 * for the rx_msdu field, i.e. it is IEEE80211_NUM_TIDS
2128 * for non-QoS-data frames. Here we know it's a data
2129 * frame, so count MSDUs.
2130 */
Johannes Berg0f9c5a62016-03-31 20:02:09 +03002131 u64_stats_update_begin(&rx->sta->rx_stats.syncp);
Johannes Bergde8f18d2016-03-31 20:02:03 +03002132 rx->sta->rx_stats.msdu[rx->seqno_idx]++;
Johannes Berg0f9c5a62016-03-31 20:02:09 +03002133 u64_stats_update_end(&rx->sta->rx_stats.syncp);
Johannes Bergde8f18d2016-03-31 20:02:03 +03002134 }
2135
Johannes Berg05c914f2008-09-11 00:01:58 +02002136 if ((sdata->vif.type == NL80211_IFTYPE_AP ||
2137 sdata->vif.type == NL80211_IFTYPE_AP_VLAN) &&
Johannes Berg213cd112008-09-11 00:01:54 +02002138 !(sdata->flags & IEEE80211_SDATA_DONT_BRIDGE_PACKETS) &&
Johannes Berg9bc383d2009-11-19 11:55:19 +01002139 (sdata->vif.type != NL80211_IFTYPE_AP_VLAN || !sdata->u.vlan.sta)) {
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002140 if (is_multicast_ether_addr(ehdr->h_dest)) {
2141 /*
2142 * send multicast frames both to higher layers in
2143 * local net stack and back to the wireless medium
2144 */
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002145 xmit_skb = skb_copy(skb, GFP_ATOMIC);
Joe Perchese87cc472012-05-13 21:56:26 +00002146 if (!xmit_skb)
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002147 net_info_ratelimited("%s: failed to clone multicast frame\n",
Joe Perchese87cc472012-05-13 21:56:26 +00002148 dev->name);
Johannes Berg571ecf62007-07-27 15:43:22 +02002149 } else {
Johannes Bergabe60632009-11-25 17:46:18 +01002150 dsta = sta_info_get(sdata, skb->data);
2151 if (dsta) {
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002152 /*
2153 * The destination station is associated to
2154 * this AP (in this VLAN), so send the frame
2155 * directly to it and do not pass it to local
2156 * net stack.
Johannes Berg571ecf62007-07-27 15:43:22 +02002157 */
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002158 xmit_skb = skb;
Johannes Berg571ecf62007-07-27 15:43:22 +02002159 skb = NULL;
2160 }
Johannes Berg571ecf62007-07-27 15:43:22 +02002161 }
2162 }
2163
Kalle Valo59d9cb02009-12-17 13:54:57 +01002164#ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
Johannes Berg9e890a1f2013-12-04 09:16:31 +01002165 if (skb) {
2166 /* 'align' will only take the values 0 or 2 here since all
2167 * frames are required to be aligned to 2-byte boundaries
2168 * when being passed to mac80211; the code here works just
2169 * as well if that isn't true, but mac80211 assumes it can
2170 * access fields as 2-byte aligned (e.g. for ether_addr_equal)
Johannes Bergd1c3a372009-01-07 00:26:10 +01002171 */
Johannes Berg9e890a1f2013-12-04 09:16:31 +01002172 int align;
2173
2174 align = (unsigned long)(skb->data + sizeof(struct ethhdr)) & 3;
Johannes Bergd1c3a372009-01-07 00:26:10 +01002175 if (align) {
2176 if (WARN_ON(skb_headroom(skb) < 3)) {
2177 dev_kfree_skb(skb);
2178 skb = NULL;
2179 } else {
2180 u8 *data = skb->data;
Zhu Yi8ce0b582009-10-28 13:13:52 -07002181 size_t len = skb_headlen(skb);
2182 skb->data -= align;
2183 memmove(skb->data, data, len);
2184 skb_set_tail_pointer(skb, len);
Johannes Bergd1c3a372009-01-07 00:26:10 +01002185 }
2186 }
Johannes Berg9e890a1f2013-12-04 09:16:31 +01002187 }
Johannes Bergd1c3a372009-01-07 00:26:10 +01002188#endif
2189
Johannes Berg9e890a1f2013-12-04 09:16:31 +01002190 if (skb) {
2191 /* deliver to local stack */
2192 skb->protocol = eth_type_trans(skb, dev);
2193 memset(skb->cb, 0, sizeof(skb->cb));
Johannes Bergaf9f9b22015-06-11 16:02:32 +02002194 if (rx->napi)
2195 napi_gro_receive(rx->napi, skb);
Johannes Berg06d181a2014-02-04 20:51:09 +01002196 else
2197 netif_receive_skb(skb);
Johannes Berg571ecf62007-07-27 15:43:22 +02002198 }
2199
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002200 if (xmit_skb) {
Helmut Schaaaef6c922011-12-21 09:11:35 +01002201 /*
2202 * Send to wireless media and increase priority by 256 to
2203 * keep the received priority instead of reclassifying
2204 * the frame (see cfg80211_classify8021d).
2205 */
2206 xmit_skb->priority += 256;
YOSHIFUJI Hideakif831e902007-12-12 03:54:23 +09002207 xmit_skb->protocol = htons(ETH_P_802_3);
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002208 skb_reset_network_header(xmit_skb);
2209 skb_reset_mac_header(xmit_skb);
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002210 dev_queue_xmit(xmit_skb);
Johannes Berg571ecf62007-07-27 15:43:22 +02002211 }
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002212}
2213
Johannes Berg49461622008-06-30 15:10:45 +02002214static ieee80211_rx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +01002215ieee80211_rx_h_amsdu(struct ieee80211_rx_data *rx)
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02002216{
Johannes Bergeb9fb5b2009-11-16 13:58:20 +01002217 struct net_device *dev = rx->sdata->dev;
Zhu Yieaf85ca2009-12-01 10:18:37 +08002218 struct sk_buff *skb = rx->skb;
Harvey Harrison358c8d92008-07-15 18:44:13 -07002219 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
2220 __le16 fc = hdr->frame_control;
Zhu Yieaf85ca2009-12-01 10:18:37 +08002221 struct sk_buff_head frame_list;
Johannes Berg554891e2010-09-24 12:38:25 +02002222 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(rx->skb);
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02002223
Harvey Harrison358c8d92008-07-15 18:44:13 -07002224 if (unlikely(!ieee80211_is_data(fc)))
Johannes Berg9ae54c82008-01-31 19:48:20 +01002225 return RX_CONTINUE;
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02002226
Harvey Harrison358c8d92008-07-15 18:44:13 -07002227 if (unlikely(!ieee80211_is_data_present(fc)))
Johannes Berge4c26ad2008-01-31 19:48:21 +01002228 return RX_DROP_MONITOR;
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02002229
Johannes Berg554891e2010-09-24 12:38:25 +02002230 if (!(status->rx_flags & IEEE80211_RX_AMSDU))
Johannes Berg9ae54c82008-01-31 19:48:20 +01002231 return RX_CONTINUE;
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02002232
Zhu Yieaf85ca2009-12-01 10:18:37 +08002233 if (ieee80211_has_a4(hdr->frame_control) &&
2234 rx->sdata->vif.type == NL80211_IFTYPE_AP_VLAN &&
2235 !rx->sdata->u.vlan.sta)
2236 return RX_DROP_UNUSABLE;
2237
2238 if (is_multicast_ether_addr(hdr->addr1) &&
2239 ((rx->sdata->vif.type == NL80211_IFTYPE_AP_VLAN &&
2240 rx->sdata->u.vlan.sta) ||
2241 (rx->sdata->vif.type == NL80211_IFTYPE_STATION &&
2242 rx->sdata->u.mgd.use_4addr)))
Johannes Berge4c26ad2008-01-31 19:48:21 +01002243 return RX_DROP_UNUSABLE;
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02002244
2245 skb->dev = dev;
Zhu Yieaf85ca2009-12-01 10:18:37 +08002246 __skb_queue_head_init(&frame_list);
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02002247
Zhu Yieaf85ca2009-12-01 10:18:37 +08002248 ieee80211_amsdu_to_8023s(skb, &frame_list, dev->dev_addr,
2249 rx->sdata->vif.type,
Yogesh Ashok Powar8b3beca2011-05-13 11:22:31 -07002250 rx->local->hw.extra_tx_headroom, true);
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02002251
Zhu Yieaf85ca2009-12-01 10:18:37 +08002252 while (!skb_queue_empty(&frame_list)) {
2253 rx->skb = __skb_dequeue(&frame_list);
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02002254
Harvey Harrison358c8d92008-07-15 18:44:13 -07002255 if (!ieee80211_frame_allowed(rx, fc)) {
Zhu Yieaf85ca2009-12-01 10:18:37 +08002256 dev_kfree_skb(rx->skb);
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002257 continue;
2258 }
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02002259
2260 ieee80211_deliver_skb(rx);
2261 }
2262
Johannes Berg9ae54c82008-01-31 19:48:20 +01002263 return RX_QUEUED;
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02002264}
2265
Ingo Molnarbf94e172008-10-12 23:51:38 -07002266#ifdef CONFIG_MAC80211_MESH
Davide Pesaventob0dee572008-09-27 17:29:12 +02002267static ieee80211_rx_result
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02002268ieee80211_rx_h_mesh_fwding(struct ieee80211_rx_data *rx)
2269{
Thomas Pedersen30789eb2011-11-24 17:15:26 -08002270 struct ieee80211_hdr *fwd_hdr, *hdr;
2271 struct ieee80211_tx_info *info;
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02002272 struct ieee80211s_hdr *mesh_hdr;
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02002273 struct sk_buff *skb = rx->skb, *fwd_skb;
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002274 struct ieee80211_local *local = rx->local;
Johannes Bergeb9fb5b2009-11-16 13:58:20 +01002275 struct ieee80211_sub_if_data *sdata = rx->sdata;
Thomas Pedersen30789eb2011-11-24 17:15:26 -08002276 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Michal Kaziorcf440122016-01-25 14:43:24 +01002277 u16 ac, q, hdrlen;
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02002278
2279 hdr = (struct ieee80211_hdr *) skb->data;
2280 hdrlen = ieee80211_hdrlen(hdr->frame_control);
Johannes Berg9b395bc2012-10-26 00:36:40 +02002281
2282 /* make sure fixed part of mesh header is there, also checks skb len */
2283 if (!pskb_may_pull(rx->skb, hdrlen + 6))
2284 return RX_DROP_MONITOR;
2285
2286 mesh_hdr = (struct ieee80211s_hdr *) (skb->data + hdrlen);
2287
2288 /* make sure full mesh header is there, also checks skb len */
2289 if (!pskb_may_pull(rx->skb,
2290 hdrlen + ieee80211_get_mesh_hdrlen(mesh_hdr)))
2291 return RX_DROP_MONITOR;
2292
2293 /* reload pointers */
2294 hdr = (struct ieee80211_hdr *) skb->data;
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02002295 mesh_hdr = (struct ieee80211s_hdr *) (skb->data + hdrlen);
2296
Bob Copelandd0c22112015-03-02 14:28:52 -05002297 if (ieee80211_drop_unencrypted(rx, hdr->frame_control))
2298 return RX_DROP_MONITOR;
2299
Thomas Pedersen2157fdd2011-09-01 12:32:14 -07002300 /* frame is in RMC, don't forward */
2301 if (ieee80211_is_data(hdr->frame_control) &&
2302 is_multicast_ether_addr(hdr->addr1) &&
Johannes Bergbf7cd942013-02-15 14:40:31 +01002303 mesh_rmc_check(rx->sdata, hdr->addr3, mesh_hdr))
Thomas Pedersen2157fdd2011-09-01 12:32:14 -07002304 return RX_DROP_MONITOR;
2305
Johannes Berg5c900672015-04-22 14:48:34 +02002306 if (!ieee80211_is_data(hdr->frame_control))
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02002307 return RX_CONTINUE;
2308
2309 if (!mesh_hdr->ttl)
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02002310 return RX_DROP_MONITOR;
2311
Javier Cardona43b7b312009-10-15 18:10:51 -07002312 if (mesh_hdr->flags & MESH_FLAGS_AE) {
YanBo79617de2008-09-22 13:30:32 +08002313 struct mesh_path *mppath;
Javier Cardona43b7b312009-10-15 18:10:51 -07002314 char *proxied_addr;
2315 char *mpp_addr;
2316
2317 if (is_multicast_ether_addr(hdr->addr1)) {
2318 mpp_addr = hdr->addr3;
2319 proxied_addr = mesh_hdr->eaddr1;
Johannes Berg9b395bc2012-10-26 00:36:40 +02002320 } else if (mesh_hdr->flags & MESH_FLAGS_AE_A5_A6) {
2321 /* has_a4 already checked in ieee80211_rx_mesh_check */
Javier Cardona43b7b312009-10-15 18:10:51 -07002322 mpp_addr = hdr->addr4;
2323 proxied_addr = mesh_hdr->eaddr2;
Johannes Berg9b395bc2012-10-26 00:36:40 +02002324 } else {
2325 return RX_DROP_MONITOR;
Javier Cardona43b7b312009-10-15 18:10:51 -07002326 }
YanBo79617de2008-09-22 13:30:32 +08002327
YanBo79617de2008-09-22 13:30:32 +08002328 rcu_read_lock();
Johannes Bergbf7cd942013-02-15 14:40:31 +01002329 mppath = mpp_path_lookup(sdata, proxied_addr);
YanBo79617de2008-09-22 13:30:32 +08002330 if (!mppath) {
Johannes Bergbf7cd942013-02-15 14:40:31 +01002331 mpp_path_add(sdata, proxied_addr, mpp_addr);
YanBo79617de2008-09-22 13:30:32 +08002332 } else {
2333 spin_lock_bh(&mppath->state_lock);
Joe Perchesb203ca32012-05-08 18:56:52 +00002334 if (!ether_addr_equal(mppath->mpp, mpp_addr))
Javier Cardona43b7b312009-10-15 18:10:51 -07002335 memcpy(mppath->mpp, mpp_addr, ETH_ALEN);
Henning Roggeab1c7902016-02-03 13:58:37 +01002336 mppath->exp_time = jiffies;
YanBo79617de2008-09-22 13:30:32 +08002337 spin_unlock_bh(&mppath->state_lock);
2338 }
2339 rcu_read_unlock();
2340 }
2341
Javier Cardona3c5772a2009-08-10 12:15:48 -07002342 /* Frame has reached destination. Don't forward */
2343 if (!is_multicast_ether_addr(hdr->addr1) &&
Joe Perchesb203ca32012-05-08 18:56:52 +00002344 ether_addr_equal(sdata->vif.addr, hdr->addr3))
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02002345 return RX_CONTINUE;
2346
Michal Kaziorcf440122016-01-25 14:43:24 +01002347 ac = ieee80211_select_queue_80211(sdata, skb, hdr);
2348 q = sdata->vif.hw_queue[ac];
Thomas Pedersend3c15972011-11-24 17:15:23 -08002349 if (ieee80211_queue_stopped(&local->hw, q)) {
Thomas Pedersen30789eb2011-11-24 17:15:26 -08002350 IEEE80211_IFSTA_MESH_CTR_INC(ifmsh, dropped_frames_congestion);
Thomas Pedersend3c15972011-11-24 17:15:23 -08002351 return RX_DROP_MONITOR;
2352 }
2353 skb_set_queue_mapping(skb, q);
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02002354
Thomas Pedersen30789eb2011-11-24 17:15:26 -08002355 if (!--mesh_hdr->ttl) {
2356 IEEE80211_IFSTA_MESH_CTR_INC(ifmsh, dropped_frames_ttl);
Javier Cardona2ac64cd2012-10-24 12:43:31 -07002357 goto out;
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02002358 }
2359
Chun-Yeow Yeohd6655082012-03-02 02:03:19 +08002360 if (!ifmsh->mshcfg.dot11MeshForwarding)
2361 goto out;
2362
Thomas Pedersen30789eb2011-11-24 17:15:26 -08002363 fwd_skb = skb_copy(skb, GFP_ATOMIC);
2364 if (!fwd_skb) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002365 net_info_ratelimited("%s: failed to clone mesh frame\n",
Joe Perchese87cc472012-05-13 21:56:26 +00002366 sdata->name);
Thomas Pedersen30789eb2011-11-24 17:15:26 -08002367 goto out;
2368 }
2369
2370 fwd_hdr = (struct ieee80211_hdr *) fwd_skb->data;
Thomas Pedersen9d6d6f42013-04-08 11:06:12 -07002371 fwd_hdr->frame_control &= ~cpu_to_le16(IEEE80211_FCTL_RETRY);
Thomas Pedersen30789eb2011-11-24 17:15:26 -08002372 info = IEEE80211_SKB_CB(fwd_skb);
2373 memset(info, 0, sizeof(*info));
2374 info->flags |= IEEE80211_TX_INTFL_NEED_TXPROCESSING;
2375 info->control.vif = &rx->sdata->vif;
2376 info->control.jiffies = jiffies;
2377 if (is_multicast_ether_addr(fwd_hdr->addr1)) {
2378 IEEE80211_IFSTA_MESH_CTR_INC(ifmsh, fwded_mcast);
2379 memcpy(fwd_hdr->addr2, sdata->vif.addr, ETH_ALEN);
Marco Porsch3f52b7e2013-01-30 18:14:08 +01002380 /* update power mode indication when forwarding */
2381 ieee80211_mps_set_frame_flags(sdata, NULL, fwd_hdr);
Johannes Bergbf7cd942013-02-15 14:40:31 +01002382 } else if (!mesh_nexthop_lookup(sdata, fwd_skb)) {
Marco Porsch3f52b7e2013-01-30 18:14:08 +01002383 /* mesh power mode flags updated in mesh_nexthop_lookup */
Thomas Pedersen30789eb2011-11-24 17:15:26 -08002384 IEEE80211_IFSTA_MESH_CTR_INC(ifmsh, fwded_unicast);
2385 } else {
2386 /* unable to resolve next hop */
Johannes Bergbf7cd942013-02-15 14:40:31 +01002387 mesh_path_error_tx(sdata, ifmsh->mshcfg.element_ttl,
Chun-Yeow Yeohf63f8422013-11-13 15:39:12 +08002388 fwd_hdr->addr3, 0,
2389 WLAN_REASON_MESH_PATH_NOFORWARD,
2390 fwd_hdr->addr2);
Thomas Pedersen30789eb2011-11-24 17:15:26 -08002391 IEEE80211_IFSTA_MESH_CTR_INC(ifmsh, dropped_frames_no_route);
Jesper Juhl74b8cc32012-01-14 21:52:17 +01002392 kfree_skb(fwd_skb);
Thomas Pedersen30789eb2011-11-24 17:15:26 -08002393 return RX_DROP_MONITOR;
2394 }
2395
2396 IEEE80211_IFSTA_MESH_CTR_INC(ifmsh, fwded_frames);
2397 ieee80211_add_pending_skb(local, fwd_skb);
Johannes Bergb51aff02010-12-22 10:15:07 +01002398 out:
Johannes Bergdf140462015-04-22 14:40:58 +02002399 if (is_multicast_ether_addr(hdr->addr1))
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02002400 return RX_CONTINUE;
Johannes Bergdf140462015-04-22 14:40:58 +02002401 return RX_DROP_MONITOR;
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02002402}
Ingo Molnarbf94e172008-10-12 23:51:38 -07002403#endif
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02002404
2405static ieee80211_rx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +01002406ieee80211_rx_h_data(struct ieee80211_rx_data *rx)
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002407{
Johannes Bergeb9fb5b2009-11-16 13:58:20 +01002408 struct ieee80211_sub_if_data *sdata = rx->sdata;
Vivek Natarajane15276a2010-02-08 17:47:01 +05302409 struct ieee80211_local *local = rx->local;
Johannes Bergeb9fb5b2009-11-16 13:58:20 +01002410 struct net_device *dev = sdata->dev;
Harvey Harrison358c8d92008-07-15 18:44:13 -07002411 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
2412 __le16 fc = hdr->frame_control;
Felix Fietkau4114fa22011-04-12 19:15:22 +02002413 bool port_control;
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002414 int err;
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002415
Harvey Harrison358c8d92008-07-15 18:44:13 -07002416 if (unlikely(!ieee80211_is_data(hdr->frame_control)))
Johannes Berg9ae54c82008-01-31 19:48:20 +01002417 return RX_CONTINUE;
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002418
Harvey Harrison358c8d92008-07-15 18:44:13 -07002419 if (unlikely(!ieee80211_is_data_present(hdr->frame_control)))
Johannes Berge4c26ad2008-01-31 19:48:21 +01002420 return RX_DROP_MONITOR;
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002421
Felix Fietkauf14543ee2009-11-10 20:10:05 +01002422 /*
Johannes Berge7f4a942011-11-04 11:18:20 +01002423 * Send unexpected-4addr-frame event to hostapd. For older versions,
2424 * also drop the frame to cooked monitor interfaces.
Felix Fietkauf14543ee2009-11-10 20:10:05 +01002425 */
2426 if (ieee80211_has_a4(hdr->frame_control) &&
Johannes Berge7f4a942011-11-04 11:18:20 +01002427 sdata->vif.type == NL80211_IFTYPE_AP) {
2428 if (rx->sta &&
2429 !test_and_set_sta_flag(rx->sta, WLAN_STA_4ADDR_EVENT))
2430 cfg80211_rx_unexpected_4addr_frame(
2431 rx->sdata->dev, rx->sta->sta.addr, GFP_ATOMIC);
Felix Fietkauf14543ee2009-11-10 20:10:05 +01002432 return RX_DROP_MONITOR;
Johannes Berge7f4a942011-11-04 11:18:20 +01002433 }
Felix Fietkauf14543ee2009-11-10 20:10:05 +01002434
Felix Fietkau4114fa22011-04-12 19:15:22 +02002435 err = __ieee80211_data_to_8023(rx, &port_control);
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002436 if (unlikely(err))
Johannes Berge4c26ad2008-01-31 19:48:21 +01002437 return RX_DROP_UNUSABLE;
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002438
Harvey Harrison358c8d92008-07-15 18:44:13 -07002439 if (!ieee80211_frame_allowed(rx, fc))
Johannes Berge4c26ad2008-01-31 19:48:21 +01002440 return RX_DROP_MONITOR;
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002441
Arik Nemtsov8a4d32f2014-11-09 18:50:20 +02002442 /* directly handle TDLS channel switch requests/responses */
2443 if (unlikely(((struct ethhdr *)rx->skb->data)->h_proto ==
2444 cpu_to_be16(ETH_P_TDLS))) {
2445 struct ieee80211_tdls_data *tf = (void *)rx->skb->data;
2446
2447 if (pskb_may_pull(rx->skb,
2448 offsetof(struct ieee80211_tdls_data, u)) &&
2449 tf->payload_type == WLAN_TDLS_SNAP_RFTYPE &&
2450 tf->category == WLAN_CATEGORY_TDLS &&
2451 (tf->action_code == WLAN_TDLS_CHANNEL_SWITCH_REQUEST ||
2452 tf->action_code == WLAN_TDLS_CHANNEL_SWITCH_RESPONSE)) {
Arik Nemtsovc8ff71e2015-07-08 15:41:45 +03002453 skb_queue_tail(&local->skb_queue_tdls_chsw, rx->skb);
2454 schedule_work(&local->tdls_chsw_work);
Arik Nemtsov8a4d32f2014-11-09 18:50:20 +02002455 if (rx->sta)
Johannes Berge5a9f8d2015-10-16 17:54:47 +02002456 rx->sta->rx_stats.packets++;
Arik Nemtsov8a4d32f2014-11-09 18:50:20 +02002457
2458 return RX_QUEUED;
2459 }
2460 }
2461
Felix Fietkau4114fa22011-04-12 19:15:22 +02002462 if (rx->sdata->vif.type == NL80211_IFTYPE_AP_VLAN &&
2463 unlikely(port_control) && sdata->bss) {
2464 sdata = container_of(sdata->bss, struct ieee80211_sub_if_data,
2465 u.ap);
2466 dev = sdata->dev;
2467 rx->sdata = sdata;
2468 }
2469
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002470 rx->skb->dev = dev;
2471
Johannes Berg602fae42016-03-17 15:02:52 +02002472 if (!ieee80211_hw_check(&local->hw, SUPPORTS_DYNAMIC_PS) &&
2473 local->ps_sdata && local->hw.conf.dynamic_ps_timeout > 0 &&
Rajkumar Manoharan8c99f692011-02-02 22:57:53 +05302474 !is_multicast_ether_addr(
2475 ((struct ethhdr *)rx->skb->data)->h_dest) &&
2476 (!local->scanning &&
Johannes Berg602fae42016-03-17 15:02:52 +02002477 !test_bit(SDATA_STATE_OFFCHANNEL, &sdata->state)))
2478 mod_timer(&local->dynamic_ps_timer, jiffies +
2479 msecs_to_jiffies(local->hw.conf.dynamic_ps_timeout));
Vivek Natarajane15276a2010-02-08 17:47:01 +05302480
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002481 ieee80211_deliver_skb(rx);
Johannes Berg571ecf62007-07-27 15:43:22 +02002482
Johannes Berg9ae54c82008-01-31 19:48:20 +01002483 return RX_QUEUED;
Johannes Berg571ecf62007-07-27 15:43:22 +02002484}
2485
Johannes Berg49461622008-06-30 15:10:45 +02002486static ieee80211_rx_result debug_noinline
Christian Lamparterf9e124f2013-02-04 17:44:44 +00002487ieee80211_rx_h_ctrl(struct ieee80211_rx_data *rx, struct sk_buff_head *frames)
Ron Rindjunsky71364712007-12-25 17:00:36 +02002488{
Ron Rindjunsky71364712007-12-25 17:00:36 +02002489 struct sk_buff *skb = rx->skb;
Harvey Harrisona7767f92008-07-02 16:30:51 -07002490 struct ieee80211_bar *bar = (struct ieee80211_bar *)skb->data;
Ron Rindjunsky71364712007-12-25 17:00:36 +02002491 struct tid_ampdu_rx *tid_agg_rx;
2492 u16 start_seq_num;
2493 u16 tid;
2494
Harvey Harrisona7767f92008-07-02 16:30:51 -07002495 if (likely(!ieee80211_is_ctl(bar->frame_control)))
Johannes Berg9ae54c82008-01-31 19:48:20 +01002496 return RX_CONTINUE;
Ron Rindjunsky71364712007-12-25 17:00:36 +02002497
Harvey Harrisona7767f92008-07-02 16:30:51 -07002498 if (ieee80211_is_back_req(bar->frame_control)) {
Johannes Berg8ae59772010-05-30 14:52:58 +02002499 struct {
2500 __le16 control, start_seq_num;
2501 } __packed bar_data;
Emmanuel Grumbach63822462015-04-20 22:53:37 +03002502 struct ieee80211_event event = {
2503 .type = BAR_RX_EVENT,
2504 };
Johannes Berg8ae59772010-05-30 14:52:58 +02002505
Ron Rindjunsky71364712007-12-25 17:00:36 +02002506 if (!rx->sta)
Johannes Berga02ae752009-11-16 12:00:40 +01002507 return RX_DROP_MONITOR;
Johannes Berg8ae59772010-05-30 14:52:58 +02002508
2509 if (skb_copy_bits(skb, offsetof(struct ieee80211_bar, control),
2510 &bar_data, sizeof(bar_data)))
2511 return RX_DROP_MONITOR;
2512
Johannes Berg8ae59772010-05-30 14:52:58 +02002513 tid = le16_to_cpu(bar_data.control) >> 12;
Johannes Berga87f7362010-06-10 10:21:38 +02002514
2515 tid_agg_rx = rcu_dereference(rx->sta->ampdu_mlme.tid_rx[tid]);
2516 if (!tid_agg_rx)
Johannes Berga02ae752009-11-16 12:00:40 +01002517 return RX_DROP_MONITOR;
Ron Rindjunsky71364712007-12-25 17:00:36 +02002518
Johannes Berg8ae59772010-05-30 14:52:58 +02002519 start_seq_num = le16_to_cpu(bar_data.start_seq_num) >> 4;
Emmanuel Grumbach63822462015-04-20 22:53:37 +03002520 event.u.ba.tid = tid;
2521 event.u.ba.ssn = start_seq_num;
2522 event.u.ba.sta = &rx->sta->sta;
Ron Rindjunsky71364712007-12-25 17:00:36 +02002523
2524 /* reset session timer */
Johannes Berg20ad19d2009-02-10 21:25:45 +01002525 if (tid_agg_rx->timeout)
2526 mod_timer(&tid_agg_rx->session_timer,
2527 TU_TO_EXP_TIME(tid_agg_rx->timeout));
Ron Rindjunsky71364712007-12-25 17:00:36 +02002528
Johannes Bergdd318572010-11-29 11:09:16 +01002529 spin_lock(&tid_agg_rx->reorder_lock);
Johannes Berga02ae752009-11-16 12:00:40 +01002530 /* release stored frames up to start of BAR */
Johannes Bergd3b2fb52012-06-22 12:48:38 +02002531 ieee80211_release_reorder_frames(rx->sdata, tid_agg_rx,
Christian Lamparterf9e124f2013-02-04 17:44:44 +00002532 start_seq_num, frames);
Johannes Bergdd318572010-11-29 11:09:16 +01002533 spin_unlock(&tid_agg_rx->reorder_lock);
2534
Emmanuel Grumbach63822462015-04-20 22:53:37 +03002535 drv_event_callback(rx->local, rx->sdata, &event);
2536
Johannes Berga02ae752009-11-16 12:00:40 +01002537 kfree_skb(skb);
2538 return RX_QUEUED;
Ron Rindjunsky71364712007-12-25 17:00:36 +02002539 }
2540
Johannes Berg08daeca2010-05-30 14:53:43 +02002541 /*
2542 * After this point, we only want management frames,
2543 * so we can drop all remaining control frames to
2544 * cooked monitor interfaces.
2545 */
2546 return RX_DROP_MONITOR;
Ron Rindjunsky71364712007-12-25 17:00:36 +02002547}
2548
Jouni Malinenf4f727a2009-01-10 11:46:53 +02002549static void ieee80211_process_sa_query_req(struct ieee80211_sub_if_data *sdata,
2550 struct ieee80211_mgmt *mgmt,
2551 size_t len)
Jouni Malinenfea14732009-01-08 13:32:06 +02002552{
2553 struct ieee80211_local *local = sdata->local;
2554 struct sk_buff *skb;
2555 struct ieee80211_mgmt *resp;
2556
Joe Perchesb203ca32012-05-08 18:56:52 +00002557 if (!ether_addr_equal(mgmt->da, sdata->vif.addr)) {
Jouni Malinenfea14732009-01-08 13:32:06 +02002558 /* Not to own unicast address */
2559 return;
2560 }
2561
Joe Perchesb203ca32012-05-08 18:56:52 +00002562 if (!ether_addr_equal(mgmt->sa, sdata->u.mgd.bssid) ||
2563 !ether_addr_equal(mgmt->bssid, sdata->u.mgd.bssid)) {
Johannes Berg77fdaa12009-07-07 03:45:17 +02002564 /* Not from the current AP or not associated yet. */
Jouni Malinenfea14732009-01-08 13:32:06 +02002565 return;
2566 }
2567
2568 if (len < 24 + 1 + sizeof(resp->u.action.u.sa_query)) {
2569 /* Too short SA Query request frame */
2570 return;
2571 }
2572
2573 skb = dev_alloc_skb(sizeof(*resp) + local->hw.extra_tx_headroom);
2574 if (skb == NULL)
2575 return;
2576
2577 skb_reserve(skb, local->hw.extra_tx_headroom);
2578 resp = (struct ieee80211_mgmt *) skb_put(skb, 24);
2579 memset(resp, 0, 24);
2580 memcpy(resp->da, mgmt->sa, ETH_ALEN);
Johannes Berg47846c92009-11-25 17:46:19 +01002581 memcpy(resp->sa, sdata->vif.addr, ETH_ALEN);
Johannes Berg46900292009-02-15 12:44:28 +01002582 memcpy(resp->bssid, sdata->u.mgd.bssid, ETH_ALEN);
Jouni Malinenfea14732009-01-08 13:32:06 +02002583 resp->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
2584 IEEE80211_STYPE_ACTION);
2585 skb_put(skb, 1 + sizeof(resp->u.action.u.sa_query));
2586 resp->u.action.category = WLAN_CATEGORY_SA_QUERY;
2587 resp->u.action.u.sa_query.action = WLAN_ACTION_SA_QUERY_RESPONSE;
2588 memcpy(resp->u.action.u.sa_query.trans_id,
2589 mgmt->u.action.u.sa_query.trans_id,
2590 WLAN_SA_QUERY_TR_ID_LEN);
2591
Johannes Berg62ae67b2009-11-18 18:42:05 +01002592 ieee80211_tx_skb(sdata, skb);
Jouni Malinenfea14732009-01-08 13:32:06 +02002593}
2594
Johannes Berg49461622008-06-30 15:10:45 +02002595static ieee80211_rx_result debug_noinline
Johannes Berg2e161f72010-08-12 15:38:38 +02002596ieee80211_rx_h_mgmt_check(struct ieee80211_rx_data *rx)
2597{
2598 struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *) rx->skb->data;
Johannes Berg554891e2010-09-24 12:38:25 +02002599 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(rx->skb);
Johannes Berg2e161f72010-08-12 15:38:38 +02002600
2601 /*
2602 * From here on, look only at management frames.
2603 * Data and control frames are already handled,
2604 * and unknown (reserved) frames are useless.
2605 */
2606 if (rx->skb->len < 24)
2607 return RX_DROP_MONITOR;
2608
2609 if (!ieee80211_is_mgmt(mgmt->frame_control))
2610 return RX_DROP_MONITOR;
2611
Johannes Bergee971922011-11-04 11:18:18 +01002612 if (rx->sdata->vif.type == NL80211_IFTYPE_AP &&
2613 ieee80211_is_beacon(mgmt->frame_control) &&
2614 !(rx->flags & IEEE80211_RX_BEACON_REPORTED)) {
Johannes Berg804483e2012-03-05 22:18:41 +01002615 int sig = 0;
2616
Johannes Berg30686bf2015-06-02 21:39:54 +02002617 if (ieee80211_hw_check(&rx->local->hw, SIGNAL_DBM))
Johannes Berg804483e2012-03-05 22:18:41 +01002618 sig = status->signal;
2619
Johannes Bergee971922011-11-04 11:18:18 +01002620 cfg80211_report_obss_beacon(rx->local->hw.wiphy,
2621 rx->skb->data, rx->skb->len,
Ben Greear37c73b52012-10-26 14:49:25 -07002622 status->freq, sig);
Johannes Bergee971922011-11-04 11:18:18 +01002623 rx->flags |= IEEE80211_RX_BEACON_REPORTED;
2624 }
2625
Johannes Berg2e161f72010-08-12 15:38:38 +02002626 if (ieee80211_drop_unencrypted_mgmt(rx))
2627 return RX_DROP_UNUSABLE;
2628
2629 return RX_CONTINUE;
2630}
2631
2632static ieee80211_rx_result debug_noinline
Johannes Bergde1ede72008-09-09 14:42:50 +02002633ieee80211_rx_h_action(struct ieee80211_rx_data *rx)
2634{
2635 struct ieee80211_local *local = rx->local;
Johannes Bergeb9fb5b2009-11-16 13:58:20 +01002636 struct ieee80211_sub_if_data *sdata = rx->sdata;
Johannes Bergde1ede72008-09-09 14:42:50 +02002637 struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *) rx->skb->data;
Johannes Berg554891e2010-09-24 12:38:25 +02002638 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(rx->skb);
Johannes Bergde1ede72008-09-09 14:42:50 +02002639 int len = rx->skb->len;
2640
2641 if (!ieee80211_is_action(mgmt->frame_control))
2642 return RX_CONTINUE;
2643
Jouni Malinen026331c2010-02-15 12:53:10 +02002644 /* drop too small frames */
2645 if (len < IEEE80211_MIN_ACTION_SIZE)
2646 return RX_DROP_UNUSABLE;
2647
Marco Porsch815b8092012-12-05 15:04:26 -08002648 if (!rx->sta && mgmt->u.action.category != WLAN_CATEGORY_PUBLIC &&
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02002649 mgmt->u.action.category != WLAN_CATEGORY_SELF_PROTECTED &&
2650 mgmt->u.action.category != WLAN_CATEGORY_SPECTRUM_MGMT)
Johannes Berg84040802010-02-15 12:46:39 +02002651 return RX_DROP_UNUSABLE;
Johannes Bergde1ede72008-09-09 14:42:50 +02002652
Johannes Bergde1ede72008-09-09 14:42:50 +02002653 switch (mgmt->u.action.category) {
Johannes Berg1d8d3de2011-12-16 15:28:57 +01002654 case WLAN_CATEGORY_HT:
2655 /* reject HT action frames from stations not supporting HT */
2656 if (!rx->sta->sta.ht_cap.ht_supported)
2657 goto invalid;
2658
2659 if (sdata->vif.type != NL80211_IFTYPE_STATION &&
2660 sdata->vif.type != NL80211_IFTYPE_MESH_POINT &&
2661 sdata->vif.type != NL80211_IFTYPE_AP_VLAN &&
2662 sdata->vif.type != NL80211_IFTYPE_AP &&
2663 sdata->vif.type != NL80211_IFTYPE_ADHOC)
2664 break;
2665
Johannes Bergec61cd62012-12-28 12:12:10 +01002666 /* verify action & smps_control/chanwidth are present */
Johannes Berg1d8d3de2011-12-16 15:28:57 +01002667 if (len < IEEE80211_MIN_ACTION_SIZE + 2)
2668 goto invalid;
2669
2670 switch (mgmt->u.action.u.ht_smps.action) {
2671 case WLAN_HT_ACTION_SMPS: {
2672 struct ieee80211_supported_band *sband;
Johannes Bergaf0ed692013-02-12 14:21:00 +01002673 enum ieee80211_smps_mode smps_mode;
Johannes Berg1d8d3de2011-12-16 15:28:57 +01002674
2675 /* convert to HT capability */
2676 switch (mgmt->u.action.u.ht_smps.smps_control) {
2677 case WLAN_HT_SMPS_CONTROL_DISABLED:
Johannes Bergaf0ed692013-02-12 14:21:00 +01002678 smps_mode = IEEE80211_SMPS_OFF;
Johannes Berg1d8d3de2011-12-16 15:28:57 +01002679 break;
2680 case WLAN_HT_SMPS_CONTROL_STATIC:
Johannes Bergaf0ed692013-02-12 14:21:00 +01002681 smps_mode = IEEE80211_SMPS_STATIC;
Johannes Berg1d8d3de2011-12-16 15:28:57 +01002682 break;
2683 case WLAN_HT_SMPS_CONTROL_DYNAMIC:
Johannes Bergaf0ed692013-02-12 14:21:00 +01002684 smps_mode = IEEE80211_SMPS_DYNAMIC;
Johannes Berg1d8d3de2011-12-16 15:28:57 +01002685 break;
2686 default:
2687 goto invalid;
2688 }
Johannes Berg1d8d3de2011-12-16 15:28:57 +01002689
2690 /* if no change do nothing */
Johannes Bergaf0ed692013-02-12 14:21:00 +01002691 if (rx->sta->sta.smps_mode == smps_mode)
Johannes Berg1d8d3de2011-12-16 15:28:57 +01002692 goto handled;
Johannes Bergaf0ed692013-02-12 14:21:00 +01002693 rx->sta->sta.smps_mode = smps_mode;
Johannes Berg1d8d3de2011-12-16 15:28:57 +01002694
2695 sband = rx->local->hw.wiphy->bands[status->band];
2696
Johannes Berg64f68e52012-03-28 10:58:37 +02002697 rate_control_rate_update(local, sband, rx->sta,
2698 IEEE80211_RC_SMPS_CHANGED);
Johannes Berg1d8d3de2011-12-16 15:28:57 +01002699 goto handled;
2700 }
Johannes Bergec61cd62012-12-28 12:12:10 +01002701 case WLAN_HT_ACTION_NOTIFY_CHANWIDTH: {
2702 struct ieee80211_supported_band *sband;
2703 u8 chanwidth = mgmt->u.action.u.ht_notify_cw.chanwidth;
Eliad Peller1c45c5c2014-12-14 11:05:51 +02002704 enum ieee80211_sta_rx_bandwidth max_bw, new_bw;
Johannes Bergec61cd62012-12-28 12:12:10 +01002705
2706 /* If it doesn't support 40 MHz it can't change ... */
Johannes Berge1a0c6b2013-02-07 11:47:44 +01002707 if (!(rx->sta->sta.ht_cap.cap &
2708 IEEE80211_HT_CAP_SUP_WIDTH_20_40))
Johannes Bergec61cd62012-12-28 12:12:10 +01002709 goto handled;
2710
Johannes Berge1a0c6b2013-02-07 11:47:44 +01002711 if (chanwidth == IEEE80211_HT_CHANWIDTH_20MHZ)
Eliad Peller1c45c5c2014-12-14 11:05:51 +02002712 max_bw = IEEE80211_STA_RX_BW_20;
Johannes Bergec61cd62012-12-28 12:12:10 +01002713 else
Eliad Peller1c45c5c2014-12-14 11:05:51 +02002714 max_bw = ieee80211_sta_cap_rx_bw(rx->sta);
2715
2716 /* set cur_max_bandwidth and recalc sta bw */
2717 rx->sta->cur_max_bandwidth = max_bw;
2718 new_bw = ieee80211_sta_cur_vht_bw(rx->sta);
Johannes Berge1a0c6b2013-02-07 11:47:44 +01002719
2720 if (rx->sta->sta.bandwidth == new_bw)
2721 goto handled;
Johannes Bergec61cd62012-12-28 12:12:10 +01002722
Eliad Peller1c45c5c2014-12-14 11:05:51 +02002723 rx->sta->sta.bandwidth = new_bw;
Johannes Bergec61cd62012-12-28 12:12:10 +01002724 sband = rx->local->hw.wiphy->bands[status->band];
2725
2726 rate_control_rate_update(local, sband, rx->sta,
2727 IEEE80211_RC_BW_CHANGED);
2728 goto handled;
2729 }
Johannes Berg1d8d3de2011-12-16 15:28:57 +01002730 default:
2731 goto invalid;
2732 }
2733
2734 break;
Johannes Berg1b3a2e42013-03-26 15:17:18 +01002735 case WLAN_CATEGORY_PUBLIC:
2736 if (len < IEEE80211_MIN_ACTION_SIZE + 1)
2737 goto invalid;
2738 if (sdata->vif.type != NL80211_IFTYPE_STATION)
2739 break;
2740 if (!rx->sta)
2741 break;
2742 if (!ether_addr_equal(mgmt->bssid, sdata->u.mgd.bssid))
2743 break;
2744 if (mgmt->u.action.u.ext_chan_switch.action_code !=
2745 WLAN_PUB_ACTION_EXT_CHANSW_ANN)
2746 break;
2747 if (len < offsetof(struct ieee80211_mgmt,
2748 u.action.u.ext_chan_switch.variable))
2749 goto invalid;
2750 goto queue;
Johannes Berg0af83d32012-12-27 18:55:36 +01002751 case WLAN_CATEGORY_VHT:
2752 if (sdata->vif.type != NL80211_IFTYPE_STATION &&
2753 sdata->vif.type != NL80211_IFTYPE_MESH_POINT &&
2754 sdata->vif.type != NL80211_IFTYPE_AP_VLAN &&
2755 sdata->vif.type != NL80211_IFTYPE_AP &&
2756 sdata->vif.type != NL80211_IFTYPE_ADHOC)
2757 break;
2758
2759 /* verify action code is present */
2760 if (len < IEEE80211_MIN_ACTION_SIZE + 1)
2761 goto invalid;
2762
2763 switch (mgmt->u.action.u.vht_opmode_notif.action_code) {
2764 case WLAN_VHT_ACTION_OPMODE_NOTIF: {
2765 u8 opmode;
2766
2767 /* verify opmode is present */
2768 if (len < IEEE80211_MIN_ACTION_SIZE + 2)
2769 goto invalid;
2770
2771 opmode = mgmt->u.action.u.vht_opmode_notif.operating_mode;
2772
2773 ieee80211_vht_handle_opmode(rx->sdata, rx->sta,
Eyal Shapiracf1e05c2015-12-08 16:04:36 +02002774 opmode, status->band);
Johannes Berg0af83d32012-12-27 18:55:36 +01002775 goto handled;
2776 }
Sara Sharon23a1f8d2015-12-08 16:04:31 +02002777 case WLAN_VHT_ACTION_GROUPID_MGMT: {
2778 if (len < IEEE80211_MIN_ACTION_SIZE + 25)
2779 goto invalid;
2780 goto queue;
2781 }
Johannes Berg0af83d32012-12-27 18:55:36 +01002782 default:
2783 break;
2784 }
2785 break;
Johannes Bergde1ede72008-09-09 14:42:50 +02002786 case WLAN_CATEGORY_BACK:
Johannes Berg8abd3f92009-02-10 21:25:47 +01002787 if (sdata->vif.type != NL80211_IFTYPE_STATION &&
Thomas Pedersenae2772b2011-10-26 14:47:29 -07002788 sdata->vif.type != NL80211_IFTYPE_MESH_POINT &&
Johannes Berg8abd3f92009-02-10 21:25:47 +01002789 sdata->vif.type != NL80211_IFTYPE_AP_VLAN &&
Alexander Simon13c40c52011-11-30 16:56:34 +01002790 sdata->vif.type != NL80211_IFTYPE_AP &&
2791 sdata->vif.type != NL80211_IFTYPE_ADHOC)
Johannes Berg84040802010-02-15 12:46:39 +02002792 break;
Johannes Berg8abd3f92009-02-10 21:25:47 +01002793
Jouni Malinen026331c2010-02-15 12:53:10 +02002794 /* verify action_code is present */
2795 if (len < IEEE80211_MIN_ACTION_SIZE + 1)
2796 break;
2797
Johannes Bergde1ede72008-09-09 14:42:50 +02002798 switch (mgmt->u.action.u.addba_req.action_code) {
2799 case WLAN_ACTION_ADDBA_REQ:
2800 if (len < (IEEE80211_MIN_ACTION_SIZE +
2801 sizeof(mgmt->u.action.u.addba_req)))
Johannes Bergbed7ee6e2010-06-10 10:21:35 +02002802 goto invalid;
2803 break;
Johannes Bergde1ede72008-09-09 14:42:50 +02002804 case WLAN_ACTION_ADDBA_RESP:
2805 if (len < (IEEE80211_MIN_ACTION_SIZE +
2806 sizeof(mgmt->u.action.u.addba_resp)))
Johannes Bergbed7ee6e2010-06-10 10:21:35 +02002807 goto invalid;
2808 break;
Johannes Bergde1ede72008-09-09 14:42:50 +02002809 case WLAN_ACTION_DELBA:
2810 if (len < (IEEE80211_MIN_ACTION_SIZE +
2811 sizeof(mgmt->u.action.u.delba)))
Johannes Bergbed7ee6e2010-06-10 10:21:35 +02002812 goto invalid;
2813 break;
2814 default:
2815 goto invalid;
Johannes Bergde1ede72008-09-09 14:42:50 +02002816 }
Johannes Bergbed7ee6e2010-06-10 10:21:35 +02002817
Johannes Berg8b58ff82010-06-10 10:21:51 +02002818 goto queue;
Johannes Berg39192c02008-09-09 14:49:03 +02002819 case WLAN_CATEGORY_SPECTRUM_MGMT:
Jouni Malinen026331c2010-02-15 12:53:10 +02002820 /* verify action_code is present */
2821 if (len < IEEE80211_MIN_ACTION_SIZE + 1)
2822 break;
2823
Johannes Berg39192c02008-09-09 14:49:03 +02002824 switch (mgmt->u.action.u.measurement.action_code) {
2825 case WLAN_ACTION_SPCT_MSR_REQ:
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02002826 if (status->band != IEEE80211_BAND_5GHZ)
2827 break;
2828
Johannes Berg39192c02008-09-09 14:49:03 +02002829 if (len < (IEEE80211_MIN_ACTION_SIZE +
2830 sizeof(mgmt->u.action.u.measurement)))
Johannes Berg84040802010-02-15 12:46:39 +02002831 break;
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02002832
Johannes Bergcc32abd2009-05-15 11:52:31 +02002833 if (sdata->vif.type != NL80211_IFTYPE_STATION)
Johannes Berg84040802010-02-15 12:46:39 +02002834 break;
Johannes Bergcc32abd2009-05-15 11:52:31 +02002835
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02002836 ieee80211_process_measurement_req(sdata, mgmt, len);
2837 goto handled;
2838 case WLAN_ACTION_SPCT_CHL_SWITCH: {
2839 u8 *bssid;
2840 if (len < (IEEE80211_MIN_ACTION_SIZE +
2841 sizeof(mgmt->u.action.u.chan_switch)))
2842 break;
2843
2844 if (sdata->vif.type != NL80211_IFTYPE_STATION &&
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07002845 sdata->vif.type != NL80211_IFTYPE_ADHOC &&
2846 sdata->vif.type != NL80211_IFTYPE_MESH_POINT)
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02002847 break;
2848
2849 if (sdata->vif.type == NL80211_IFTYPE_STATION)
2850 bssid = sdata->u.mgd.bssid;
2851 else if (sdata->vif.type == NL80211_IFTYPE_ADHOC)
2852 bssid = sdata->u.ibss.bssid;
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07002853 else if (sdata->vif.type == NL80211_IFTYPE_MESH_POINT)
2854 bssid = mgmt->sa;
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02002855 else
2856 break;
2857
2858 if (!ether_addr_equal(mgmt->bssid, bssid))
Johannes Berg84040802010-02-15 12:46:39 +02002859 break;
Sujithc481ec92009-01-06 09:28:37 +05302860
Johannes Berg8b58ff82010-06-10 10:21:51 +02002861 goto queue;
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02002862 }
Johannes Berg39192c02008-09-09 14:49:03 +02002863 }
2864 break;
Jouni Malinenfea14732009-01-08 13:32:06 +02002865 case WLAN_CATEGORY_SA_QUERY:
2866 if (len < (IEEE80211_MIN_ACTION_SIZE +
2867 sizeof(mgmt->u.action.u.sa_query)))
Johannes Berg84040802010-02-15 12:46:39 +02002868 break;
2869
Jouni Malinenfea14732009-01-08 13:32:06 +02002870 switch (mgmt->u.action.u.sa_query.action) {
2871 case WLAN_ACTION_SA_QUERY_REQUEST:
2872 if (sdata->vif.type != NL80211_IFTYPE_STATION)
Johannes Berg84040802010-02-15 12:46:39 +02002873 break;
Jouni Malinenfea14732009-01-08 13:32:06 +02002874 ieee80211_process_sa_query_req(sdata, mgmt, len);
Johannes Berg84040802010-02-15 12:46:39 +02002875 goto handled;
Jouni Malinenfea14732009-01-08 13:32:06 +02002876 }
2877 break;
Thomas Pedersen8db09852011-08-12 20:01:00 -07002878 case WLAN_CATEGORY_SELF_PROTECTED:
Johannes Berg9b395bc2012-10-26 00:36:40 +02002879 if (len < (IEEE80211_MIN_ACTION_SIZE +
2880 sizeof(mgmt->u.action.u.self_prot.action_code)))
2881 break;
2882
Thomas Pedersen8db09852011-08-12 20:01:00 -07002883 switch (mgmt->u.action.u.self_prot.action_code) {
2884 case WLAN_SP_MESH_PEERING_OPEN:
2885 case WLAN_SP_MESH_PEERING_CLOSE:
2886 case WLAN_SP_MESH_PEERING_CONFIRM:
2887 if (!ieee80211_vif_is_mesh(&sdata->vif))
2888 goto invalid;
Thomas Pedersena6dad6a2013-03-04 13:06:12 -08002889 if (sdata->u.mesh.user_mpm)
Thomas Pedersen8db09852011-08-12 20:01:00 -07002890 /* userspace handles this frame */
2891 break;
2892 goto queue;
2893 case WLAN_SP_MGK_INFORM:
2894 case WLAN_SP_MGK_ACK:
2895 if (!ieee80211_vif_is_mesh(&sdata->vif))
2896 goto invalid;
2897 break;
2898 }
2899 break;
Javier Cardonad3aaec8a2011-05-03 16:57:09 -07002900 case WLAN_CATEGORY_MESH_ACTION:
Johannes Berg9b395bc2012-10-26 00:36:40 +02002901 if (len < (IEEE80211_MIN_ACTION_SIZE +
2902 sizeof(mgmt->u.action.u.mesh_action.action_code)))
2903 break;
2904
Johannes Berg77a121c2010-06-10 10:21:34 +02002905 if (!ieee80211_vif_is_mesh(&sdata->vif))
2906 break;
Thomas Pedersen25d49e42011-08-11 19:35:15 -07002907 if (mesh_action_is_path_sel(mgmt) &&
Johannes Berg1df332e2012-10-26 00:09:11 +02002908 !mesh_path_sel_is_hwmp(sdata))
Javier Cardonac7108a72010-12-16 17:37:50 -08002909 break;
2910 goto queue;
Johannes Berg84040802010-02-15 12:46:39 +02002911 }
Jouni Malinen026331c2010-02-15 12:53:10 +02002912
Johannes Berg2e161f72010-08-12 15:38:38 +02002913 return RX_CONTINUE;
2914
Johannes Bergbed7ee6e2010-06-10 10:21:35 +02002915 invalid:
Johannes Berg554891e2010-09-24 12:38:25 +02002916 status->rx_flags |= IEEE80211_RX_MALFORMED_ACTION_FRM;
Johannes Berg2e161f72010-08-12 15:38:38 +02002917 /* will return in the next handlers */
2918 return RX_CONTINUE;
2919
2920 handled:
2921 if (rx->sta)
Johannes Berge5a9f8d2015-10-16 17:54:47 +02002922 rx->sta->rx_stats.packets++;
Johannes Berg2e161f72010-08-12 15:38:38 +02002923 dev_kfree_skb(rx->skb);
2924 return RX_QUEUED;
2925
2926 queue:
2927 rx->skb->pkt_type = IEEE80211_SDATA_QUEUE_TYPE_FRAME;
2928 skb_queue_tail(&sdata->skb_queue, rx->skb);
2929 ieee80211_queue_work(&local->hw, &sdata->work);
2930 if (rx->sta)
Johannes Berge5a9f8d2015-10-16 17:54:47 +02002931 rx->sta->rx_stats.packets++;
Johannes Berg2e161f72010-08-12 15:38:38 +02002932 return RX_QUEUED;
2933}
2934
2935static ieee80211_rx_result debug_noinline
2936ieee80211_rx_h_userspace_mgmt(struct ieee80211_rx_data *rx)
2937{
Johannes Berg554891e2010-09-24 12:38:25 +02002938 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(rx->skb);
Johannes Berg804483e2012-03-05 22:18:41 +01002939 int sig = 0;
Johannes Berg2e161f72010-08-12 15:38:38 +02002940
2941 /* skip known-bad action frames and return them in the next handler */
Johannes Berg554891e2010-09-24 12:38:25 +02002942 if (status->rx_flags & IEEE80211_RX_MALFORMED_ACTION_FRM)
Johannes Berg2e161f72010-08-12 15:38:38 +02002943 return RX_CONTINUE;
Felix Fietkaud7907442010-01-07 20:23:53 +01002944
Jouni Malinen026331c2010-02-15 12:53:10 +02002945 /*
2946 * Getting here means the kernel doesn't know how to handle
2947 * it, but maybe userspace does ... include returned frames
2948 * so userspace can register for those to know whether ones
2949 * it transmitted were processed or returned.
2950 */
Jouni Malinen026331c2010-02-15 12:53:10 +02002951
Johannes Berg30686bf2015-06-02 21:39:54 +02002952 if (ieee80211_hw_check(&rx->local->hw, SIGNAL_DBM))
Johannes Berg804483e2012-03-05 22:18:41 +01002953 sig = status->signal;
2954
Johannes Berg71bbc992012-06-15 15:30:18 +02002955 if (cfg80211_rx_mgmt(&rx->sdata->wdev, status->freq, sig,
Vladimir Kondratiev970fdfa2014-08-11 03:29:57 -07002956 rx->skb->data, rx->skb->len, 0)) {
Johannes Berg2e161f72010-08-12 15:38:38 +02002957 if (rx->sta)
Johannes Berge5a9f8d2015-10-16 17:54:47 +02002958 rx->sta->rx_stats.packets++;
Johannes Berg2e161f72010-08-12 15:38:38 +02002959 dev_kfree_skb(rx->skb);
2960 return RX_QUEUED;
2961 }
2962
Johannes Berg2e161f72010-08-12 15:38:38 +02002963 return RX_CONTINUE;
2964}
2965
2966static ieee80211_rx_result debug_noinline
2967ieee80211_rx_h_action_return(struct ieee80211_rx_data *rx)
2968{
2969 struct ieee80211_local *local = rx->local;
2970 struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *) rx->skb->data;
2971 struct sk_buff *nskb;
2972 struct ieee80211_sub_if_data *sdata = rx->sdata;
Johannes Berg554891e2010-09-24 12:38:25 +02002973 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(rx->skb);
Johannes Berg2e161f72010-08-12 15:38:38 +02002974
2975 if (!ieee80211_is_action(mgmt->frame_control))
2976 return RX_CONTINUE;
2977
2978 /*
2979 * For AP mode, hostapd is responsible for handling any action
2980 * frames that we didn't handle, including returning unknown
2981 * ones. For all other modes we will return them to the sender,
2982 * setting the 0x80 bit in the action category, as required by
Johannes Berg4b5ebcc2012-06-27 15:38:56 +02002983 * 802.11-2012 9.24.4.
Johannes Berg2e161f72010-08-12 15:38:38 +02002984 * Newer versions of hostapd shall also use the management frame
2985 * registration mechanisms, but older ones still use cooked
2986 * monitor interfaces so push all frames there.
2987 */
Johannes Berg554891e2010-09-24 12:38:25 +02002988 if (!(status->rx_flags & IEEE80211_RX_MALFORMED_ACTION_FRM) &&
Johannes Berg2e161f72010-08-12 15:38:38 +02002989 (sdata->vif.type == NL80211_IFTYPE_AP ||
2990 sdata->vif.type == NL80211_IFTYPE_AP_VLAN))
2991 return RX_DROP_MONITOR;
Jouni Malinen026331c2010-02-15 12:53:10 +02002992
Johannes Berg4b5ebcc2012-06-27 15:38:56 +02002993 if (is_multicast_ether_addr(mgmt->da))
2994 return RX_DROP_MONITOR;
2995
Johannes Berg84040802010-02-15 12:46:39 +02002996 /* do not return rejected action frames */
2997 if (mgmt->u.action.category & 0x80)
2998 return RX_DROP_UNUSABLE;
2999
3000 nskb = skb_copy_expand(rx->skb, local->hw.extra_tx_headroom, 0,
3001 GFP_ATOMIC);
3002 if (nskb) {
John W. Linville292b4df2010-06-24 11:13:56 -04003003 struct ieee80211_mgmt *nmgmt = (void *)nskb->data;
Johannes Berg84040802010-02-15 12:46:39 +02003004
John W. Linville292b4df2010-06-24 11:13:56 -04003005 nmgmt->u.action.category |= 0x80;
3006 memcpy(nmgmt->da, nmgmt->sa, ETH_ALEN);
3007 memcpy(nmgmt->sa, rx->sdata->vif.addr, ETH_ALEN);
Johannes Berg84040802010-02-15 12:46:39 +02003008
3009 memset(nskb->cb, 0, sizeof(nskb->cb));
3010
Johannes Berg07e5a5f2013-03-07 13:22:05 +01003011 if (rx->sdata->vif.type == NL80211_IFTYPE_P2P_DEVICE) {
3012 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(nskb);
3013
3014 info->flags = IEEE80211_TX_CTL_TX_OFFCHAN |
3015 IEEE80211_TX_INTFL_OFFCHAN_TX_OK |
3016 IEEE80211_TX_CTL_NO_CCK_RATE;
Johannes Berg30686bf2015-06-02 21:39:54 +02003017 if (ieee80211_hw_check(&local->hw, QUEUE_CONTROL))
Johannes Berg07e5a5f2013-03-07 13:22:05 +01003018 info->hw_queue =
3019 local->hw.offchannel_tx_hw_queue;
3020 }
3021
3022 __ieee80211_tx_skb_tid_band(rx->sdata, nskb, 7,
3023 status->band);
Johannes Bergde1ede72008-09-09 14:42:50 +02003024 }
Johannes Berg39192c02008-09-09 14:49:03 +02003025 dev_kfree_skb(rx->skb);
3026 return RX_QUEUED;
Johannes Bergde1ede72008-09-09 14:42:50 +02003027}
3028
3029static ieee80211_rx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +01003030ieee80211_rx_h_mgmt(struct ieee80211_rx_data *rx)
Johannes Berg571ecf62007-07-27 15:43:22 +02003031{
Johannes Bergeb9fb5b2009-11-16 13:58:20 +01003032 struct ieee80211_sub_if_data *sdata = rx->sdata;
Johannes Berg77a121c2010-06-10 10:21:34 +02003033 struct ieee80211_mgmt *mgmt = (void *)rx->skb->data;
3034 __le16 stype;
Johannes Berg571ecf62007-07-27 15:43:22 +02003035
Johannes Berg77a121c2010-06-10 10:21:34 +02003036 stype = mgmt->frame_control & cpu_to_le16(IEEE80211_FCTL_STYPE);
Johannes Berg472dbc42008-09-11 00:01:49 +02003037
Johannes Berg77a121c2010-06-10 10:21:34 +02003038 if (!ieee80211_vif_is_mesh(&sdata->vif) &&
3039 sdata->vif.type != NL80211_IFTYPE_ADHOC &&
Rostislav Lisovy239281f2014-11-03 10:33:19 +01003040 sdata->vif.type != NL80211_IFTYPE_OCB &&
Johannes Berg77a121c2010-06-10 10:21:34 +02003041 sdata->vif.type != NL80211_IFTYPE_STATION)
3042 return RX_DROP_MONITOR;
Johannes Bergf9d540e2007-09-28 14:02:09 +02003043
Johannes Berg77a121c2010-06-10 10:21:34 +02003044 switch (stype) {
Johannes Berg66e67e42012-01-20 13:55:27 +01003045 case cpu_to_le16(IEEE80211_STYPE_AUTH):
Johannes Berg77a121c2010-06-10 10:21:34 +02003046 case cpu_to_le16(IEEE80211_STYPE_BEACON):
3047 case cpu_to_le16(IEEE80211_STYPE_PROBE_RESP):
3048 /* process for all: mesh, mlme, ibss */
3049 break;
Johannes Berg66e67e42012-01-20 13:55:27 +01003050 case cpu_to_le16(IEEE80211_STYPE_ASSOC_RESP):
3051 case cpu_to_le16(IEEE80211_STYPE_REASSOC_RESP):
Johannes Berg77a121c2010-06-10 10:21:34 +02003052 case cpu_to_le16(IEEE80211_STYPE_DEAUTH):
3053 case cpu_to_le16(IEEE80211_STYPE_DISASSOC):
Christian Lamparter2c313332010-11-29 20:53:23 +01003054 if (is_multicast_ether_addr(mgmt->da) &&
3055 !is_broadcast_ether_addr(mgmt->da))
3056 return RX_DROP_MONITOR;
3057
Johannes Berg77a121c2010-06-10 10:21:34 +02003058 /* process only for station */
3059 if (sdata->vif.type != NL80211_IFTYPE_STATION)
3060 return RX_DROP_MONITOR;
3061 break;
3062 case cpu_to_le16(IEEE80211_STYPE_PROBE_REQ):
Thomas Pedersen9fb04b52013-02-14 11:20:14 -08003063 /* process only for ibss and mesh */
3064 if (sdata->vif.type != NL80211_IFTYPE_ADHOC &&
3065 sdata->vif.type != NL80211_IFTYPE_MESH_POINT)
Johannes Berg77a121c2010-06-10 10:21:34 +02003066 return RX_DROP_MONITOR;
3067 break;
3068 default:
3069 return RX_DROP_MONITOR;
3070 }
Johannes Berg46900292009-02-15 12:44:28 +01003071
Johannes Berg77a121c2010-06-10 10:21:34 +02003072 /* queue up frame and kick off work to process it */
Johannes Bergc1475ca2010-06-10 10:21:37 +02003073 rx->skb->pkt_type = IEEE80211_SDATA_QUEUE_TYPE_FRAME;
Johannes Berg77a121c2010-06-10 10:21:34 +02003074 skb_queue_tail(&sdata->skb_queue, rx->skb);
3075 ieee80211_queue_work(&rx->local->hw, &sdata->work);
Johannes Berg8b58ff82010-06-10 10:21:51 +02003076 if (rx->sta)
Johannes Berge5a9f8d2015-10-16 17:54:47 +02003077 rx->sta->rx_stats.packets++;
Johannes Berg77a121c2010-06-10 10:21:34 +02003078
3079 return RX_QUEUED;
Johannes Berg571ecf62007-07-27 15:43:22 +02003080}
3081
Johannes Berg5f0b7de2009-11-16 13:58:21 +01003082static void ieee80211_rx_cooked_monitor(struct ieee80211_rx_data *rx,
3083 struct ieee80211_rate *rate)
Michael Wu3d30d942008-01-31 19:48:27 +01003084{
3085 struct ieee80211_sub_if_data *sdata;
3086 struct ieee80211_local *local = rx->local;
Michael Wu3d30d942008-01-31 19:48:27 +01003087 struct sk_buff *skb = rx->skb, *skb2;
3088 struct net_device *prev_dev = NULL;
Johannes Bergeb9fb5b2009-11-16 13:58:20 +01003089 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
Johannes Berg293702a2012-03-02 13:18:19 +01003090 int needed_headroom;
Michael Wu3d30d942008-01-31 19:48:27 +01003091
Johannes Berg554891e2010-09-24 12:38:25 +02003092 /*
3093 * If cooked monitor has been processed already, then
3094 * don't do it again. If not, set the flag.
3095 */
3096 if (rx->flags & IEEE80211_RX_CMNTR)
John W. Linville7c1e1832010-09-24 15:52:49 -04003097 goto out_free_skb;
Johannes Berg554891e2010-09-24 12:38:25 +02003098 rx->flags |= IEEE80211_RX_CMNTR;
John W. Linville7c1e1832010-09-24 15:52:49 -04003099
Johannes Berg152c4772011-10-21 10:22:22 +02003100 /* If there are no cooked monitor interfaces, just free the SKB */
3101 if (!local->cooked_mntrs)
3102 goto out_free_skb;
3103
Johannes Berg1f7bba72014-11-06 22:56:36 +01003104 /* vendor data is long removed here */
3105 status->flag &= ~RX_FLAG_RADIOTAP_VENDOR_DATA;
Johannes Berg293702a2012-03-02 13:18:19 +01003106 /* room for the radiotap header based on driver features */
Johannes Berg1f7bba72014-11-06 22:56:36 +01003107 needed_headroom = ieee80211_rx_radiotap_hdrlen(local, status, skb);
Johannes Berg293702a2012-03-02 13:18:19 +01003108
3109 if (skb_headroom(skb) < needed_headroom &&
3110 pskb_expand_head(skb, needed_headroom, 0, GFP_ATOMIC))
Michael Wu3d30d942008-01-31 19:48:27 +01003111 goto out_free_skb;
3112
Johannes Berg293702a2012-03-02 13:18:19 +01003113 /* prepend radiotap information */
Felix Fietkau973ef212012-04-16 14:56:48 +02003114 ieee80211_add_rx_radiotap_header(local, skb, rate, needed_headroom,
3115 false);
Michael Wu3d30d942008-01-31 19:48:27 +01003116
Zhang Shengjud57a5442016-03-03 01:16:56 +00003117 skb_reset_mac_header(skb);
Michael Wu3d30d942008-01-31 19:48:27 +01003118 skb->ip_summed = CHECKSUM_UNNECESSARY;
3119 skb->pkt_type = PACKET_OTHERHOST;
3120 skb->protocol = htons(ETH_P_802_2);
3121
3122 list_for_each_entry_rcu(sdata, &local->interfaces, list) {
Johannes Berg9607e6b2009-12-23 13:15:31 +01003123 if (!ieee80211_sdata_running(sdata))
Michael Wu3d30d942008-01-31 19:48:27 +01003124 continue;
3125
Johannes Berg05c914f2008-09-11 00:01:58 +02003126 if (sdata->vif.type != NL80211_IFTYPE_MONITOR ||
Michael Wu3d30d942008-01-31 19:48:27 +01003127 !(sdata->u.mntr_flags & MONITOR_FLAG_COOK_FRAMES))
3128 continue;
3129
3130 if (prev_dev) {
3131 skb2 = skb_clone(skb, GFP_ATOMIC);
3132 if (skb2) {
3133 skb2->dev = prev_dev;
John W. Linville5548a8a2010-06-24 14:25:56 -04003134 netif_receive_skb(skb2);
Michael Wu3d30d942008-01-31 19:48:27 +01003135 }
3136 }
3137
3138 prev_dev = sdata->dev;
Johannes Berg5a490512015-04-22 17:10:38 +02003139 ieee80211_rx_stats(sdata->dev, skb->len);
Michael Wu3d30d942008-01-31 19:48:27 +01003140 }
3141
3142 if (prev_dev) {
3143 skb->dev = prev_dev;
John W. Linville5548a8a2010-06-24 14:25:56 -04003144 netif_receive_skb(skb);
Johannes Berg554891e2010-09-24 12:38:25 +02003145 return;
3146 }
Michael Wu3d30d942008-01-31 19:48:27 +01003147
3148 out_free_skb:
3149 dev_kfree_skb(skb);
3150}
3151
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003152static void ieee80211_rx_handlers_result(struct ieee80211_rx_data *rx,
3153 ieee80211_rx_result res)
3154{
3155 switch (res) {
3156 case RX_DROP_MONITOR:
3157 I802_DEBUG_INC(rx->sdata->local->rx_handlers_drop);
3158 if (rx->sta)
Johannes Berge5a9f8d2015-10-16 17:54:47 +02003159 rx->sta->rx_stats.dropped++;
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003160 /* fall through */
3161 case RX_CONTINUE: {
3162 struct ieee80211_rate *rate = NULL;
3163 struct ieee80211_supported_band *sband;
3164 struct ieee80211_rx_status *status;
3165
3166 status = IEEE80211_SKB_RXCB((rx->skb));
3167
3168 sband = rx->local->hw.wiphy->bands[status->band];
Johannes Berg56146182012-11-09 15:07:02 +01003169 if (!(status->flag & RX_FLAG_HT) &&
3170 !(status->flag & RX_FLAG_VHT))
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003171 rate = &sband->bitrates[status->rate_idx];
3172
3173 ieee80211_rx_cooked_monitor(rx, rate);
3174 break;
3175 }
3176 case RX_DROP_UNUSABLE:
3177 I802_DEBUG_INC(rx->sdata->local->rx_handlers_drop);
3178 if (rx->sta)
Johannes Berge5a9f8d2015-10-16 17:54:47 +02003179 rx->sta->rx_stats.dropped++;
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003180 dev_kfree_skb(rx->skb);
3181 break;
3182 case RX_QUEUED:
3183 I802_DEBUG_INC(rx->sdata->local->rx_handlers_queued);
3184 break;
3185 }
3186}
3187
Christian Lamparterf9e124f2013-02-04 17:44:44 +00003188static void ieee80211_rx_handlers(struct ieee80211_rx_data *rx,
3189 struct sk_buff_head *frames)
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003190{
3191 ieee80211_rx_result res = RX_DROP_MONITOR;
3192 struct sk_buff *skb;
3193
3194#define CALL_RXH(rxh) \
3195 do { \
3196 res = rxh(rx); \
3197 if (res != RX_CONTINUE) \
3198 goto rxh_next; \
Johannes Berg8ebaa5b2016-03-31 20:02:04 +03003199 } while (0)
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003200
Johannes Berg45ceeee2015-03-16 09:08:20 +01003201 /* Lock here to avoid hitting all of the data used in the RX
3202 * path (e.g. key data, station data, ...) concurrently when
3203 * a frame is released from the reorder buffer due to timeout
3204 * from the timer, potentially concurrently with RX from the
3205 * driver.
3206 */
Christian Lamparterf9e124f2013-02-04 17:44:44 +00003207 spin_lock_bh(&rx->local->rx_path_lock);
Christian Lamparter24a8fda2010-12-30 17:25:29 +01003208
Christian Lamparterf9e124f2013-02-04 17:44:44 +00003209 while ((skb = __skb_dequeue(frames))) {
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003210 /*
3211 * all the other fields are valid across frames
3212 * that belong to an aMPDU since they are on the
3213 * same TID from the same station
3214 */
3215 rx->skb = skb;
3216
Johannes Berg8ebaa5b2016-03-31 20:02:04 +03003217 CALL_RXH(ieee80211_rx_h_check_more_data);
3218 CALL_RXH(ieee80211_rx_h_uapsd_and_pspoll);
3219 CALL_RXH(ieee80211_rx_h_sta_process);
3220 CALL_RXH(ieee80211_rx_h_decrypt);
3221 CALL_RXH(ieee80211_rx_h_defragment);
3222 CALL_RXH(ieee80211_rx_h_michael_mic_verify);
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003223 /* must be after MMIC verify so header is counted in MPDU mic */
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003224#ifdef CONFIG_MAC80211_MESH
3225 if (ieee80211_vif_is_mesh(&rx->sdata->vif))
3226 CALL_RXH(ieee80211_rx_h_mesh_fwding);
3227#endif
Johannes Berg8ebaa5b2016-03-31 20:02:04 +03003228 CALL_RXH(ieee80211_rx_h_amsdu);
3229 CALL_RXH(ieee80211_rx_h_data);
Christian Lamparterf9e124f2013-02-04 17:44:44 +00003230
3231 /* special treatment -- needs the queue */
3232 res = ieee80211_rx_h_ctrl(rx, frames);
3233 if (res != RX_CONTINUE)
3234 goto rxh_next;
3235
Johannes Berg8ebaa5b2016-03-31 20:02:04 +03003236 CALL_RXH(ieee80211_rx_h_mgmt_check);
3237 CALL_RXH(ieee80211_rx_h_action);
3238 CALL_RXH(ieee80211_rx_h_userspace_mgmt);
3239 CALL_RXH(ieee80211_rx_h_action_return);
3240 CALL_RXH(ieee80211_rx_h_mgmt);
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003241
3242 rxh_next:
3243 ieee80211_rx_handlers_result(rx, res);
Christian Lamparterf9e124f2013-02-04 17:44:44 +00003244
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003245#undef CALL_RXH
3246 }
Christian Lamparter24a8fda2010-12-30 17:25:29 +01003247
Christian Lamparterf9e124f2013-02-04 17:44:44 +00003248 spin_unlock_bh(&rx->local->rx_path_lock);
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003249}
Johannes Berg571ecf62007-07-27 15:43:22 +02003250
Johannes Berg4406c372010-09-24 11:21:06 +02003251static void ieee80211_invoke_rx_handlers(struct ieee80211_rx_data *rx)
Johannes Berg58905292008-01-31 19:48:25 +01003252{
Christian Lamparterf9e124f2013-02-04 17:44:44 +00003253 struct sk_buff_head reorder_release;
Johannes Berg58905292008-01-31 19:48:25 +01003254 ieee80211_rx_result res = RX_DROP_MONITOR;
3255
Christian Lamparterf9e124f2013-02-04 17:44:44 +00003256 __skb_queue_head_init(&reorder_release);
3257
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02003258#define CALL_RXH(rxh) \
3259 do { \
3260 res = rxh(rx); \
3261 if (res != RX_CONTINUE) \
Johannes Berg2569a822009-11-25 17:46:17 +01003262 goto rxh_next; \
Johannes Berg8ebaa5b2016-03-31 20:02:04 +03003263 } while (0)
Johannes Berg58905292008-01-31 19:48:25 +01003264
Johannes Berg8ebaa5b2016-03-31 20:02:04 +03003265 CALL_RXH(ieee80211_rx_h_check_dup);
3266 CALL_RXH(ieee80211_rx_h_check);
Johannes Berg2569a822009-11-25 17:46:17 +01003267
Christian Lamparterf9e124f2013-02-04 17:44:44 +00003268 ieee80211_rx_reorder_ampdu(rx, &reorder_release);
Johannes Berg2569a822009-11-25 17:46:17 +01003269
Christian Lamparterf9e124f2013-02-04 17:44:44 +00003270 ieee80211_rx_handlers(rx, &reorder_release);
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003271 return;
Johannes Berg49461622008-06-30 15:10:45 +02003272
Johannes Berg2569a822009-11-25 17:46:17 +01003273 rxh_next:
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003274 ieee80211_rx_handlers_result(rx, res);
3275
3276#undef CALL_RXH
Johannes Berg58905292008-01-31 19:48:25 +01003277}
3278
Christian Lamparter2bff8eb2010-08-05 01:36:41 +02003279/*
Johannes Bergdd318572010-11-29 11:09:16 +01003280 * This function makes calls into the RX path, therefore
3281 * it has to be invoked under RCU read lock.
Christian Lamparter2bff8eb2010-08-05 01:36:41 +02003282 */
3283void ieee80211_release_reorder_timeout(struct sta_info *sta, int tid)
3284{
Christian Lamparterf9e124f2013-02-04 17:44:44 +00003285 struct sk_buff_head frames;
Johannes Berg554891e2010-09-24 12:38:25 +02003286 struct ieee80211_rx_data rx = {
3287 .sta = sta,
3288 .sdata = sta->sdata,
3289 .local = sta->local,
Johannes Berg9e262972011-07-07 18:45:03 +02003290 /* This is OK -- must be QoS data frame */
3291 .security_idx = tid,
3292 .seqno_idx = tid,
Johannes Bergaf9f9b22015-06-11 16:02:32 +02003293 .napi = NULL, /* must be NULL to not have races */
Johannes Berg554891e2010-09-24 12:38:25 +02003294 };
Christian Lamparter2c15a0c2010-08-24 19:22:42 +02003295 struct tid_ampdu_rx *tid_agg_rx;
3296
3297 tid_agg_rx = rcu_dereference(sta->ampdu_mlme.tid_rx[tid]);
3298 if (!tid_agg_rx)
3299 return;
Christian Lamparter2bff8eb2010-08-05 01:36:41 +02003300
Christian Lamparterf9e124f2013-02-04 17:44:44 +00003301 __skb_queue_head_init(&frames);
3302
Christian Lamparter2c15a0c2010-08-24 19:22:42 +02003303 spin_lock(&tid_agg_rx->reorder_lock);
Christian Lamparterf9e124f2013-02-04 17:44:44 +00003304 ieee80211_sta_reorder_release(sta->sdata, tid_agg_rx, &frames);
Christian Lamparter2c15a0c2010-08-24 19:22:42 +02003305 spin_unlock(&tid_agg_rx->reorder_lock);
Christian Lamparter2bff8eb2010-08-05 01:36:41 +02003306
Emmanuel Grumbachb497de62015-04-20 22:53:38 +03003307 if (!skb_queue_empty(&frames)) {
3308 struct ieee80211_event event = {
3309 .type = BA_FRAME_TIMEOUT,
3310 .u.ba.tid = tid,
3311 .u.ba.sta = &sta->sta,
3312 };
3313 drv_event_callback(rx.local, rx.sdata, &event);
3314 }
3315
Christian Lamparterf9e124f2013-02-04 17:44:44 +00003316 ieee80211_rx_handlers(&rx, &frames);
Christian Lamparter2bff8eb2010-08-05 01:36:41 +02003317}
3318
Sara Sharon06470f72016-01-28 16:19:25 +02003319void ieee80211_mark_rx_ba_filtered_frames(struct ieee80211_sta *pubsta, u8 tid,
3320 u16 ssn, u64 filtered,
3321 u16 received_mpdus)
3322{
3323 struct sta_info *sta;
3324 struct tid_ampdu_rx *tid_agg_rx;
3325 struct sk_buff_head frames;
3326 struct ieee80211_rx_data rx = {
3327 /* This is OK -- must be QoS data frame */
3328 .security_idx = tid,
3329 .seqno_idx = tid,
3330 };
3331 int i, diff;
3332
3333 if (WARN_ON(!pubsta || tid >= IEEE80211_NUM_TIDS))
3334 return;
3335
3336 __skb_queue_head_init(&frames);
3337
3338 sta = container_of(pubsta, struct sta_info, sta);
3339
3340 rx.sta = sta;
3341 rx.sdata = sta->sdata;
3342 rx.local = sta->local;
3343
3344 rcu_read_lock();
3345 tid_agg_rx = rcu_dereference(sta->ampdu_mlme.tid_rx[tid]);
3346 if (!tid_agg_rx)
3347 goto out;
3348
3349 spin_lock_bh(&tid_agg_rx->reorder_lock);
3350
3351 if (received_mpdus >= IEEE80211_SN_MODULO >> 1) {
3352 int release;
3353
3354 /* release all frames in the reorder buffer */
3355 release = (tid_agg_rx->head_seq_num + tid_agg_rx->buf_size) %
3356 IEEE80211_SN_MODULO;
3357 ieee80211_release_reorder_frames(sta->sdata, tid_agg_rx,
3358 release, &frames);
3359 /* update ssn to match received ssn */
3360 tid_agg_rx->head_seq_num = ssn;
3361 } else {
3362 ieee80211_release_reorder_frames(sta->sdata, tid_agg_rx, ssn,
3363 &frames);
3364 }
3365
3366 /* handle the case that received ssn is behind the mac ssn.
3367 * it can be tid_agg_rx->buf_size behind and still be valid */
3368 diff = (tid_agg_rx->head_seq_num - ssn) & IEEE80211_SN_MASK;
3369 if (diff >= tid_agg_rx->buf_size) {
3370 tid_agg_rx->reorder_buf_filtered = 0;
3371 goto release;
3372 }
3373 filtered = filtered >> diff;
3374 ssn += diff;
3375
3376 /* update bitmap */
3377 for (i = 0; i < tid_agg_rx->buf_size; i++) {
3378 int index = (ssn + i) % tid_agg_rx->buf_size;
3379
3380 tid_agg_rx->reorder_buf_filtered &= ~BIT_ULL(index);
3381 if (filtered & BIT_ULL(i))
3382 tid_agg_rx->reorder_buf_filtered |= BIT_ULL(index);
3383 }
3384
3385 /* now process also frames that the filter marking released */
3386 ieee80211_sta_reorder_release(sta->sdata, tid_agg_rx, &frames);
3387
3388release:
3389 spin_unlock_bh(&tid_agg_rx->reorder_lock);
3390
3391 ieee80211_rx_handlers(&rx, &frames);
3392
3393 out:
3394 rcu_read_unlock();
3395}
3396EXPORT_SYMBOL(ieee80211_mark_rx_ba_filtered_frames);
3397
Johannes Berg571ecf62007-07-27 15:43:22 +02003398/* main receive path */
3399
Johannes Berga58fbe12015-04-22 15:08:39 +02003400static bool ieee80211_accept_frame(struct ieee80211_rx_data *rx)
Johannes Berg23a24de2007-07-27 15:43:22 +02003401{
Johannes Berg20b01f82010-09-24 11:21:05 +02003402 struct ieee80211_sub_if_data *sdata = rx->sdata;
Johannes Bergeb9fb5b2009-11-16 13:58:20 +01003403 struct sk_buff *skb = rx->skb;
Johannes Berga58fbe12015-04-22 15:08:39 +02003404 struct ieee80211_hdr *hdr = (void *)skb->data;
Johannes Bergeb9fb5b2009-11-16 13:58:20 +01003405 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
3406 u8 *bssid = ieee80211_get_bssid(hdr, skb->len, sdata->vif.type);
Johannes Berg23a24de2007-07-27 15:43:22 +02003407 int multicast = is_multicast_ether_addr(hdr->addr1);
3408
Johannes Berg51fb61e2007-12-19 01:31:27 +01003409 switch (sdata->vif.type) {
Johannes Berg05c914f2008-09-11 00:01:58 +02003410 case NL80211_IFTYPE_STATION:
Johannes Berg9bc383d2009-11-19 11:55:19 +01003411 if (!bssid && !sdata->u.mgd.use_4addr)
Johannes Berg3c2723f52014-01-07 16:23:24 +01003412 return false;
Johannes Berga58fbe12015-04-22 15:08:39 +02003413 if (multicast)
3414 return true;
3415 return ether_addr_equal(sdata->vif.addr, hdr->addr1);
Johannes Berg05c914f2008-09-11 00:01:58 +02003416 case NL80211_IFTYPE_ADHOC:
Johannes Berg23a24de2007-07-27 15:43:22 +02003417 if (!bssid)
Johannes Berg3c2723f52014-01-07 16:23:24 +01003418 return false;
Felix Fietkau6329b8d2013-09-17 11:15:43 +02003419 if (ether_addr_equal(sdata->vif.addr, hdr->addr2) ||
3420 ether_addr_equal(sdata->u.ibss.bssid, hdr->addr2))
Johannes Berg3c2723f52014-01-07 16:23:24 +01003421 return false;
Johannes Berga58fbe12015-04-22 15:08:39 +02003422 if (ieee80211_is_beacon(hdr->frame_control))
Johannes Berg3c2723f52014-01-07 16:23:24 +01003423 return true;
Johannes Berga58fbe12015-04-22 15:08:39 +02003424 if (!ieee80211_bssid_match(bssid, sdata->u.ibss.bssid))
Johannes Berg3c2723f52014-01-07 16:23:24 +01003425 return false;
Johannes Berga58fbe12015-04-22 15:08:39 +02003426 if (!multicast &&
3427 !ether_addr_equal(sdata->vif.addr, hdr->addr1))
Johannes Bergdf140462015-04-22 14:40:58 +02003428 return false;
Johannes Berga58fbe12015-04-22 15:08:39 +02003429 if (!rx->sta) {
Jouni Malinen0fb8ca42008-12-12 14:38:33 +02003430 int rate_idx;
Johannes Berg56146182012-11-09 15:07:02 +01003431 if (status->flag & (RX_FLAG_HT | RX_FLAG_VHT))
3432 rate_idx = 0; /* TODO: HT/VHT rates */
Jouni Malinen0fb8ca42008-12-12 14:38:33 +02003433 else
Johannes Bergeb9fb5b2009-11-16 13:58:20 +01003434 rate_idx = status->rate_idx;
Johannes Berg8bf11d82011-12-15 11:17:37 +01003435 ieee80211_ibss_rx_no_sta(sdata, bssid, hdr->addr2,
3436 BIT(rate_idx));
Jouni Malinen0fb8ca42008-12-12 14:38:33 +02003437 }
Johannes Berga58fbe12015-04-22 15:08:39 +02003438 return true;
Rostislav Lisovy239281f2014-11-03 10:33:19 +01003439 case NL80211_IFTYPE_OCB:
3440 if (!bssid)
3441 return false;
Bertold Van den Berghcc117292015-08-05 16:02:42 +02003442 if (!ieee80211_is_data_present(hdr->frame_control))
Rostislav Lisovy239281f2014-11-03 10:33:19 +01003443 return false;
Johannes Berga58fbe12015-04-22 15:08:39 +02003444 if (!is_broadcast_ether_addr(bssid))
Rostislav Lisovy239281f2014-11-03 10:33:19 +01003445 return false;
Johannes Berga58fbe12015-04-22 15:08:39 +02003446 if (!multicast &&
3447 !ether_addr_equal(sdata->dev->dev_addr, hdr->addr1))
Johannes Bergdf140462015-04-22 14:40:58 +02003448 return false;
Johannes Berga58fbe12015-04-22 15:08:39 +02003449 if (!rx->sta) {
Rostislav Lisovy239281f2014-11-03 10:33:19 +01003450 int rate_idx;
3451 if (status->flag & RX_FLAG_HT)
3452 rate_idx = 0; /* TODO: HT rates */
3453 else
3454 rate_idx = status->rate_idx;
3455 ieee80211_ocb_rx_no_sta(sdata, bssid, hdr->addr2,
3456 BIT(rate_idx));
3457 }
Johannes Berga58fbe12015-04-22 15:08:39 +02003458 return true;
Johannes Berg05c914f2008-09-11 00:01:58 +02003459 case NL80211_IFTYPE_MESH_POINT:
Johannes Berga58fbe12015-04-22 15:08:39 +02003460 if (multicast)
3461 return true;
3462 return ether_addr_equal(sdata->vif.addr, hdr->addr1);
Johannes Berg05c914f2008-09-11 00:01:58 +02003463 case NL80211_IFTYPE_AP_VLAN:
3464 case NL80211_IFTYPE_AP:
Johannes Berga58fbe12015-04-22 15:08:39 +02003465 if (!bssid)
3466 return ether_addr_equal(sdata->vif.addr, hdr->addr1);
3467
3468 if (!ieee80211_bssid_match(bssid, sdata->vif.addr)) {
Johannes Berg3df6eae2011-12-06 10:39:40 +01003469 /*
3470 * Accept public action frames even when the
3471 * BSSID doesn't match, this is used for P2P
3472 * and location updates. Note that mac80211
3473 * itself never looks at these frames.
3474 */
Johannes Berg2b9ccd42013-05-13 16:42:40 +02003475 if (!multicast &&
3476 !ether_addr_equal(sdata->vif.addr, hdr->addr1))
Johannes Berg3c2723f52014-01-07 16:23:24 +01003477 return false;
Johannes Bergd48b2962012-07-06 22:19:27 +02003478 if (ieee80211_is_public_action(hdr, skb->len))
Johannes Berg3c2723f52014-01-07 16:23:24 +01003479 return true;
Johannes Berg5c900672015-04-22 14:48:34 +02003480 return ieee80211_is_beacon(hdr->frame_control);
Johannes Berga58fbe12015-04-22 15:08:39 +02003481 }
3482
3483 if (!ieee80211_has_tods(hdr->frame_control)) {
Arik Nemtsovdb8e1732014-07-17 17:14:30 +03003484 /* ignore data frames to TDLS-peers */
3485 if (ieee80211_is_data(hdr->frame_control))
3486 return false;
3487 /* ignore action frames to TDLS-peers */
3488 if (ieee80211_is_action(hdr->frame_control) &&
Jouni Malinen1ec7bae2016-03-01 00:29:00 +02003489 !is_broadcast_ether_addr(bssid) &&
Arik Nemtsovdb8e1732014-07-17 17:14:30 +03003490 !ether_addr_equal(bssid, hdr->addr1))
3491 return false;
Johannes Berg23a24de2007-07-27 15:43:22 +02003492 }
Johannes Berga58fbe12015-04-22 15:08:39 +02003493 return true;
Johannes Berg05c914f2008-09-11 00:01:58 +02003494 case NL80211_IFTYPE_WDS:
Harvey Harrisona7767f92008-07-02 16:30:51 -07003495 if (bssid || !ieee80211_is_data(hdr->frame_control))
Johannes Berg3c2723f52014-01-07 16:23:24 +01003496 return false;
Johannes Berga58fbe12015-04-22 15:08:39 +02003497 return ether_addr_equal(sdata->u.wds.remote_addr, hdr->addr2);
Johannes Bergf142c6b2012-06-18 20:07:15 +02003498 case NL80211_IFTYPE_P2P_DEVICE:
Johannes Berga58fbe12015-04-22 15:08:39 +02003499 return ieee80211_is_public_action(hdr, skb->len) ||
3500 ieee80211_is_probe_req(hdr->frame_control) ||
3501 ieee80211_is_probe_resp(hdr->frame_control) ||
3502 ieee80211_is_beacon(hdr->frame_control);
Johannes Berg2ca27bc2010-09-16 14:58:23 +02003503 default:
Johannes Bergfb1c1cd2007-09-26 15:19:43 +02003504 break;
Johannes Berg23a24de2007-07-27 15:43:22 +02003505 }
3506
Johannes Berga58fbe12015-04-22 15:08:39 +02003507 WARN_ON_ONCE(1);
3508 return false;
Johannes Berg23a24de2007-07-27 15:43:22 +02003509}
3510
Johannes Berg49ddf8e2016-03-31 20:02:10 +03003511void ieee80211_check_fast_rx(struct sta_info *sta)
3512{
3513 struct ieee80211_sub_if_data *sdata = sta->sdata;
3514 struct ieee80211_local *local = sdata->local;
3515 struct ieee80211_key *key;
3516 struct ieee80211_fast_rx fastrx = {
3517 .dev = sdata->dev,
3518 .vif_type = sdata->vif.type,
3519 .control_port_protocol = sdata->control_port_protocol,
3520 }, *old, *new = NULL;
3521 bool assign = false;
3522
3523 /* use sparse to check that we don't return without updating */
3524 __acquire(check_fast_rx);
3525
3526 BUILD_BUG_ON(sizeof(fastrx.rfc1042_hdr) != sizeof(rfc1042_header));
3527 BUILD_BUG_ON(sizeof(fastrx.rfc1042_hdr) != ETH_ALEN);
3528 ether_addr_copy(fastrx.rfc1042_hdr, rfc1042_header);
3529 ether_addr_copy(fastrx.vif_addr, sdata->vif.addr);
3530
3531 /* fast-rx doesn't do reordering */
3532 if (ieee80211_hw_check(&local->hw, AMPDU_AGGREGATION) &&
3533 !ieee80211_hw_check(&local->hw, SUPPORTS_REORDERING_BUFFER))
3534 goto clear;
3535
3536 switch (sdata->vif.type) {
3537 case NL80211_IFTYPE_STATION:
3538 /* 4-addr is harder to deal with, later maybe */
3539 if (sdata->u.mgd.use_4addr)
3540 goto clear;
3541 /* software powersave is a huge mess, avoid all of it */
3542 if (ieee80211_hw_check(&local->hw, PS_NULLFUNC_STACK))
3543 goto clear;
3544 if (ieee80211_hw_check(&local->hw, SUPPORTS_PS) &&
3545 !ieee80211_hw_check(&local->hw, SUPPORTS_DYNAMIC_PS))
3546 goto clear;
3547 if (sta->sta.tdls) {
3548 fastrx.da_offs = offsetof(struct ieee80211_hdr, addr1);
3549 fastrx.sa_offs = offsetof(struct ieee80211_hdr, addr2);
3550 fastrx.expected_ds_bits = 0;
3551 } else {
3552 fastrx.sta_notify = sdata->u.mgd.probe_send_count > 0;
3553 fastrx.da_offs = offsetof(struct ieee80211_hdr, addr1);
3554 fastrx.sa_offs = offsetof(struct ieee80211_hdr, addr3);
3555 fastrx.expected_ds_bits =
3556 cpu_to_le16(IEEE80211_FCTL_FROMDS);
3557 }
3558 break;
3559 case NL80211_IFTYPE_AP_VLAN:
3560 case NL80211_IFTYPE_AP:
3561 /* parallel-rx requires this, at least with calls to
3562 * ieee80211_sta_ps_transition()
3563 */
3564 if (!ieee80211_hw_check(&local->hw, AP_LINK_PS))
3565 goto clear;
3566 fastrx.da_offs = offsetof(struct ieee80211_hdr, addr3);
3567 fastrx.sa_offs = offsetof(struct ieee80211_hdr, addr2);
3568 fastrx.expected_ds_bits = cpu_to_le16(IEEE80211_FCTL_TODS);
3569
3570 fastrx.internal_forward =
3571 !(sdata->flags & IEEE80211_SDATA_DONT_BRIDGE_PACKETS) &&
3572 (sdata->vif.type != NL80211_IFTYPE_AP_VLAN ||
3573 !sdata->u.vlan.sta);
3574 break;
3575 default:
3576 goto clear;
3577 }
3578
3579 if (!test_sta_flag(sta, WLAN_STA_AUTHORIZED))
3580 goto clear;
3581
3582 rcu_read_lock();
3583 key = rcu_dereference(sta->ptk[sta->ptk_idx]);
3584 if (key) {
3585 switch (key->conf.cipher) {
3586 case WLAN_CIPHER_SUITE_TKIP:
3587 /* we don't want to deal with MMIC in fast-rx */
3588 goto clear_rcu;
3589 case WLAN_CIPHER_SUITE_CCMP:
3590 case WLAN_CIPHER_SUITE_CCMP_256:
3591 case WLAN_CIPHER_SUITE_GCMP:
3592 case WLAN_CIPHER_SUITE_GCMP_256:
3593 break;
3594 default:
3595 /* we also don't want to deal with WEP or cipher scheme
3596 * since those require looking up the key idx in the
3597 * frame, rather than assuming the PTK is used
3598 * (we need to revisit this once we implement the real
3599 * PTK index, which is now valid in the spec, but we
3600 * haven't implemented that part yet)
3601 */
3602 goto clear_rcu;
3603 }
3604
3605 fastrx.key = true;
3606 fastrx.icv_len = key->conf.icv_len;
3607 }
3608
3609 assign = true;
3610 clear_rcu:
3611 rcu_read_unlock();
3612 clear:
3613 __release(check_fast_rx);
3614
3615 if (assign)
3616 new = kmemdup(&fastrx, sizeof(fastrx), GFP_KERNEL);
3617
3618 spin_lock_bh(&sta->lock);
3619 old = rcu_dereference_protected(sta->fast_rx, true);
3620 rcu_assign_pointer(sta->fast_rx, new);
3621 spin_unlock_bh(&sta->lock);
3622
3623 if (old)
3624 kfree_rcu(old, rcu_head);
3625}
3626
3627void ieee80211_clear_fast_rx(struct sta_info *sta)
3628{
3629 struct ieee80211_fast_rx *old;
3630
3631 spin_lock_bh(&sta->lock);
3632 old = rcu_dereference_protected(sta->fast_rx, true);
3633 RCU_INIT_POINTER(sta->fast_rx, NULL);
3634 spin_unlock_bh(&sta->lock);
3635
3636 if (old)
3637 kfree_rcu(old, rcu_head);
3638}
3639
3640void __ieee80211_check_fast_rx_iface(struct ieee80211_sub_if_data *sdata)
3641{
3642 struct ieee80211_local *local = sdata->local;
3643 struct sta_info *sta;
3644
3645 lockdep_assert_held(&local->sta_mtx);
3646
3647 list_for_each_entry_rcu(sta, &local->sta_list, list) {
3648 if (sdata != sta->sdata &&
3649 (!sta->sdata->bss || sta->sdata->bss != sdata->bss))
3650 continue;
3651 ieee80211_check_fast_rx(sta);
3652 }
3653}
3654
3655void ieee80211_check_fast_rx_iface(struct ieee80211_sub_if_data *sdata)
3656{
3657 struct ieee80211_local *local = sdata->local;
3658
3659 mutex_lock(&local->sta_mtx);
3660 __ieee80211_check_fast_rx_iface(sdata);
3661 mutex_unlock(&local->sta_mtx);
3662}
3663
3664static bool ieee80211_invoke_fast_rx(struct ieee80211_rx_data *rx,
3665 struct ieee80211_fast_rx *fast_rx)
3666{
3667 struct sk_buff *skb = rx->skb;
3668 struct ieee80211_hdr *hdr = (void *)skb->data;
3669 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
3670 struct sta_info *sta = rx->sta;
3671 int orig_len = skb->len;
3672 int snap_offs = ieee80211_hdrlen(hdr->frame_control);
3673 struct {
3674 u8 snap[sizeof(rfc1042_header)];
3675 __be16 proto;
3676 } *payload __aligned(2);
3677 struct {
3678 u8 da[ETH_ALEN];
3679 u8 sa[ETH_ALEN];
3680 } addrs __aligned(2);
3681
3682 /* for parallel-rx, we need to have DUP_VALIDATED, otherwise we write
3683 * to a common data structure; drivers can implement that per queue
3684 * but we don't have that information in mac80211
3685 */
3686 if (!(status->flag & RX_FLAG_DUP_VALIDATED))
3687 return false;
3688
3689#define FAST_RX_CRYPT_FLAGS (RX_FLAG_PN_VALIDATED | RX_FLAG_DECRYPTED)
3690
3691 /* If using encryption, we also need to have:
3692 * - PN_VALIDATED: similar, but the implementation is tricky
3693 * - DECRYPTED: necessary for PN_VALIDATED
3694 */
3695 if (fast_rx->key &&
3696 (status->flag & FAST_RX_CRYPT_FLAGS) != FAST_RX_CRYPT_FLAGS)
3697 return false;
3698
3699 /* we don't deal with A-MSDU deaggregation here */
3700 if (status->rx_flags & IEEE80211_RX_AMSDU)
3701 return false;
3702
3703 if (unlikely(!ieee80211_is_data_present(hdr->frame_control)))
3704 return false;
3705
3706 if (unlikely(ieee80211_is_frag(hdr)))
3707 return false;
3708
3709 /* Since our interface address cannot be multicast, this
3710 * implicitly also rejects multicast frames without the
3711 * explicit check.
3712 *
3713 * We shouldn't get any *data* frames not addressed to us
3714 * (AP mode will accept multicast *management* frames), but
3715 * punting here will make it go through the full checks in
3716 * ieee80211_accept_frame().
3717 */
3718 if (!ether_addr_equal(fast_rx->vif_addr, hdr->addr1))
3719 return false;
3720
3721 if ((hdr->frame_control & cpu_to_le16(IEEE80211_FCTL_FROMDS |
3722 IEEE80211_FCTL_TODS)) !=
3723 fast_rx->expected_ds_bits)
3724 goto drop;
3725
3726 /* assign the key to drop unencrypted frames (later)
3727 * and strip the IV/MIC if necessary
3728 */
3729 if (fast_rx->key && !(status->flag & RX_FLAG_IV_STRIPPED)) {
3730 /* GCMP header length is the same */
3731 snap_offs += IEEE80211_CCMP_HDR_LEN;
3732 }
3733
3734 if (!pskb_may_pull(skb, snap_offs + sizeof(*payload)))
3735 goto drop;
3736 payload = (void *)(skb->data + snap_offs);
3737
3738 if (!ether_addr_equal(payload->snap, fast_rx->rfc1042_hdr))
3739 return false;
3740
3741 /* Don't handle these here since they require special code.
3742 * Accept AARP and IPX even though they should come with a
3743 * bridge-tunnel header - but if we get them this way then
3744 * there's little point in discarding them.
3745 */
3746 if (unlikely(payload->proto == cpu_to_be16(ETH_P_TDLS) ||
3747 payload->proto == fast_rx->control_port_protocol))
3748 return false;
3749
3750 /* after this point, don't punt to the slowpath! */
3751
3752 if (rx->key && !(status->flag & RX_FLAG_MIC_STRIPPED) &&
3753 pskb_trim(skb, skb->len - fast_rx->icv_len))
3754 goto drop;
3755
3756 if (unlikely(fast_rx->sta_notify)) {
3757 ieee80211_sta_rx_notify(rx->sdata, hdr);
3758 fast_rx->sta_notify = false;
3759 }
3760
3761 /* statistics part of ieee80211_rx_h_sta_process() */
3762 sta->rx_stats.last_rx = jiffies;
3763 sta->rx_stats.last_rate = sta_stats_encode_rate(status);
3764
3765 sta->rx_stats.fragments++;
3766
3767 if (!(status->flag & RX_FLAG_NO_SIGNAL_VAL)) {
3768 sta->rx_stats.last_signal = status->signal;
3769 ewma_signal_add(&sta->rx_stats_avg.signal, -status->signal);
3770 }
3771
3772 if (status->chains) {
3773 int i;
3774
3775 sta->rx_stats.chains = status->chains;
3776 for (i = 0; i < ARRAY_SIZE(status->chain_signal); i++) {
3777 int signal = status->chain_signal[i];
3778
3779 if (!(status->chains & BIT(i)))
3780 continue;
3781
3782 sta->rx_stats.chain_signal_last[i] = signal;
3783 ewma_signal_add(&sta->rx_stats_avg.chain_signal[i],
3784 -signal);
3785 }
3786 }
3787 /* end of statistics */
3788
3789 if (rx->key && !ieee80211_has_protected(hdr->frame_control))
3790 goto drop;
3791
3792 /* do the header conversion - first grab the addresses */
3793 ether_addr_copy(addrs.da, skb->data + fast_rx->da_offs);
3794 ether_addr_copy(addrs.sa, skb->data + fast_rx->sa_offs);
3795 /* remove the SNAP but leave the ethertype */
3796 skb_pull(skb, snap_offs + sizeof(rfc1042_header));
3797 /* push the addresses in front */
3798 memcpy(skb_push(skb, sizeof(addrs)), &addrs, sizeof(addrs));
3799
3800 skb->dev = fast_rx->dev;
3801
3802 ieee80211_rx_stats(fast_rx->dev, skb->len);
3803
3804 /* The seqno index has the same property as needed
3805 * for the rx_msdu field, i.e. it is IEEE80211_NUM_TIDS
3806 * for non-QoS-data frames. Here we know it's a data
3807 * frame, so count MSDUs.
3808 */
3809 u64_stats_update_begin(&sta->rx_stats.syncp);
3810 sta->rx_stats.msdu[rx->seqno_idx]++;
3811 sta->rx_stats.bytes += orig_len;
3812 u64_stats_update_end(&sta->rx_stats.syncp);
3813
3814 if (fast_rx->internal_forward) {
3815 struct sta_info *dsta = sta_info_get(rx->sdata, skb->data);
3816
3817 if (dsta) {
3818 /*
3819 * Send to wireless media and increase priority by 256
3820 * to keep the received priority instead of
3821 * reclassifying the frame (see cfg80211_classify8021d).
3822 */
3823 skb->priority += 256;
3824 skb->protocol = htons(ETH_P_802_3);
3825 skb_reset_network_header(skb);
3826 skb_reset_mac_header(skb);
3827 dev_queue_xmit(skb);
3828 return true;
3829 }
3830 }
3831
3832 /* deliver to local stack */
3833 skb->protocol = eth_type_trans(skb, fast_rx->dev);
3834 memset(skb->cb, 0, sizeof(skb->cb));
3835 if (rx->napi)
3836 napi_gro_receive(rx->napi, skb);
3837 else
3838 netif_receive_skb(skb);
3839
3840 return true;
3841 drop:
3842 dev_kfree_skb(skb);
3843 sta->rx_stats.dropped++;
3844 return true;
3845}
3846
Johannes Berg571ecf62007-07-27 15:43:22 +02003847/*
Johannes Berg4406c372010-09-24 11:21:06 +02003848 * This function returns whether or not the SKB
3849 * was destined for RX processing or not, which,
3850 * if consume is true, is equivalent to whether
3851 * or not the skb was consumed.
3852 */
3853static bool ieee80211_prepare_and_rx_handle(struct ieee80211_rx_data *rx,
3854 struct sk_buff *skb, bool consume)
3855{
3856 struct ieee80211_local *local = rx->local;
3857 struct ieee80211_sub_if_data *sdata = rx->sdata;
Johannes Berg4406c372010-09-24 11:21:06 +02003858
3859 rx->skb = skb;
Johannes Berg4406c372010-09-24 11:21:06 +02003860
Johannes Berg49ddf8e2016-03-31 20:02:10 +03003861 /* See if we can do fast-rx; if we have to copy we already lost,
3862 * so punt in that case. We should never have to deliver a data
3863 * frame to multiple interfaces anyway.
3864 *
3865 * We skip the ieee80211_accept_frame() call and do the necessary
3866 * checking inside ieee80211_invoke_fast_rx().
3867 */
3868 if (consume && rx->sta) {
3869 struct ieee80211_fast_rx *fast_rx;
3870
3871 fast_rx = rcu_dereference(rx->sta->fast_rx);
3872 if (fast_rx && ieee80211_invoke_fast_rx(rx, fast_rx))
3873 return true;
3874 }
3875
Johannes Berga58fbe12015-04-22 15:08:39 +02003876 if (!ieee80211_accept_frame(rx))
Johannes Berg4406c372010-09-24 11:21:06 +02003877 return false;
3878
Johannes Berg4406c372010-09-24 11:21:06 +02003879 if (!consume) {
3880 skb = skb_copy(skb, GFP_ATOMIC);
3881 if (!skb) {
3882 if (net_ratelimit())
3883 wiphy_debug(local->hw.wiphy,
Ben Greearb305dae2011-01-08 10:30:54 -08003884 "failed to copy skb for %s\n",
Johannes Berg4406c372010-09-24 11:21:06 +02003885 sdata->name);
3886 return true;
3887 }
3888
3889 rx->skb = skb;
3890 }
3891
3892 ieee80211_invoke_rx_handlers(rx);
3893 return true;
3894}
3895
3896/*
Zhao, Gang6b59db72014-04-21 12:52:59 +08003897 * This is the actual Rx frames handler. as it belongs to Rx path it must
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02003898 * be called with rcu_read_lock protection.
Johannes Berg571ecf62007-07-27 15:43:22 +02003899 */
Ron Rindjunsky71ebb4a2008-01-21 12:39:12 +02003900static void __ieee80211_rx_handle_packet(struct ieee80211_hw *hw,
Johannes Bergd63b5482016-03-31 20:02:02 +03003901 struct ieee80211_sta *pubsta,
Johannes Bergaf9f9b22015-06-11 16:02:32 +02003902 struct sk_buff *skb,
3903 struct napi_struct *napi)
Johannes Berg571ecf62007-07-27 15:43:22 +02003904{
3905 struct ieee80211_local *local = hw_to_local(hw);
3906 struct ieee80211_sub_if_data *sdata;
Johannes Berg571ecf62007-07-27 15:43:22 +02003907 struct ieee80211_hdr *hdr;
Zhu Yie3cf8b32010-03-29 17:35:07 +08003908 __le16 fc;
Johannes Berg5cf121c2008-02-25 16:27:43 +01003909 struct ieee80211_rx_data rx;
Johannes Berg4406c372010-09-24 11:21:06 +02003910 struct ieee80211_sub_if_data *prev;
Johannes Berg7bedd0c2015-02-13 21:55:15 +01003911 struct rhash_head *tmp;
Zhu Yie3cf8b32010-03-29 17:35:07 +08003912 int err = 0;
Johannes Berg571ecf62007-07-27 15:43:22 +02003913
Zhu Yie3cf8b32010-03-29 17:35:07 +08003914 fc = ((struct ieee80211_hdr *)skb->data)->frame_control;
Johannes Berg571ecf62007-07-27 15:43:22 +02003915 memset(&rx, 0, sizeof(rx));
3916 rx.skb = skb;
3917 rx.local = local;
Johannes Bergaf9f9b22015-06-11 16:02:32 +02003918 rx.napi = napi;
Johannes Berg72abd812007-09-17 01:29:22 -04003919
Zhu Yie3cf8b32010-03-29 17:35:07 +08003920 if (ieee80211_is_data(fc) || ieee80211_is_mgmt(fc))
Johannes Bergc206ca62015-04-22 20:47:28 +02003921 I802_DEBUG_INC(local->dot11ReceivedFragmentCount);
Johannes Berg571ecf62007-07-27 15:43:22 +02003922
Johannes Berg4a4f1a52012-10-26 00:33:36 +02003923 if (ieee80211_is_mgmt(fc)) {
3924 /* drop frame if too short for header */
3925 if (skb->len < ieee80211_hdrlen(fc))
3926 err = -ENOBUFS;
3927 else
3928 err = skb_linearize(skb);
3929 } else {
Zhu Yie3cf8b32010-03-29 17:35:07 +08003930 err = !pskb_may_pull(skb, ieee80211_hdrlen(fc));
Johannes Berg4a4f1a52012-10-26 00:33:36 +02003931 }
Zhu Yie3cf8b32010-03-29 17:35:07 +08003932
3933 if (err) {
3934 dev_kfree_skb(skb);
3935 return;
3936 }
3937
3938 hdr = (struct ieee80211_hdr *)skb->data;
Johannes Berg38f37142008-01-29 17:07:43 +01003939 ieee80211_parse_qos(&rx);
Johannes Bergd1c3a372009-01-07 00:26:10 +01003940 ieee80211_verify_alignment(&rx);
Johannes Berg38f37142008-01-29 17:07:43 +01003941
Johannes Bergd48b2962012-07-06 22:19:27 +02003942 if (unlikely(ieee80211_is_probe_resp(hdr->frame_control) ||
3943 ieee80211_is_beacon(hdr->frame_control)))
3944 ieee80211_scan_rx(local, skb);
3945
Johannes Bergd63b5482016-03-31 20:02:02 +03003946 if (pubsta) {
3947 rx.sta = container_of(pubsta, struct sta_info, sta);
3948 rx.sdata = rx.sta->sdata;
3949 if (ieee80211_prepare_and_rx_handle(&rx, skb, true))
3950 return;
3951 goto out;
3952 } else if (ieee80211_is_data(fc)) {
3953 struct sta_info *sta, *prev_sta;
Johannes Berg7bedd0c2015-02-13 21:55:15 +01003954 const struct bucket_table *tbl;
3955
Ben Greear56af3262010-09-23 10:22:24 -07003956 prev_sta = NULL;
Johannes Berg4406c372010-09-24 11:21:06 +02003957
Johannes Berg7bedd0c2015-02-13 21:55:15 +01003958 tbl = rht_dereference_rcu(local->sta_hash.tbl, &local->sta_hash);
3959
3960 for_each_sta_info(local, tbl, hdr->addr2, sta, tmp) {
Ben Greear56af3262010-09-23 10:22:24 -07003961 if (!prev_sta) {
3962 prev_sta = sta;
3963 continue;
3964 }
3965
3966 rx.sta = prev_sta;
3967 rx.sdata = prev_sta->sdata;
Johannes Berg4406c372010-09-24 11:21:06 +02003968 ieee80211_prepare_and_rx_handle(&rx, skb, false);
Johannes Berg571ecf62007-07-27 15:43:22 +02003969
Ben Greear56af3262010-09-23 10:22:24 -07003970 prev_sta = sta;
Johannes Berg4406c372010-09-24 11:21:06 +02003971 }
Ben Greear56af3262010-09-23 10:22:24 -07003972
3973 if (prev_sta) {
3974 rx.sta = prev_sta;
3975 rx.sdata = prev_sta->sdata;
3976
Johannes Berg4406c372010-09-24 11:21:06 +02003977 if (ieee80211_prepare_and_rx_handle(&rx, skb, true))
Ben Greear56af3262010-09-23 10:22:24 -07003978 return;
Senthil Balasubramanian8e26d5a2010-11-30 20:15:38 +05303979 goto out;
Ben Greear56af3262010-09-23 10:22:24 -07003980 }
Johannes Berg4406c372010-09-24 11:21:06 +02003981 }
3982
Johannes Berg4b0dd982010-09-24 11:21:07 +02003983 prev = NULL;
Johannes Berg4406c372010-09-24 11:21:06 +02003984
Johannes Berg4b0dd982010-09-24 11:21:07 +02003985 list_for_each_entry_rcu(sdata, &local->interfaces, list) {
3986 if (!ieee80211_sdata_running(sdata))
3987 continue;
Johannes Bergabe60632009-11-25 17:46:18 +01003988
Johannes Berg4b0dd982010-09-24 11:21:07 +02003989 if (sdata->vif.type == NL80211_IFTYPE_MONITOR ||
3990 sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
3991 continue;
Johannes Bergabe60632009-11-25 17:46:18 +01003992
Johannes Berg4b0dd982010-09-24 11:21:07 +02003993 /*
3994 * frame is destined for this interface, but if it's
3995 * not also for the previous one we handle that after
3996 * the loop to avoid copying the SKB once too much
3997 */
Johannes Bergb2e77712007-09-26 15:19:39 +02003998
Johannes Berg4b0dd982010-09-24 11:21:07 +02003999 if (!prev) {
Johannes Berg340e11f2007-07-27 15:43:22 +02004000 prev = sdata;
Johannes Berg4b0dd982010-09-24 11:21:07 +02004001 continue;
Johannes Berg8e6f00322007-07-27 15:43:22 +02004002 }
Felix Fietkau4bb29f82010-01-22 00:36:39 +01004003
Johannes Berg7852e362012-01-20 13:55:24 +01004004 rx.sta = sta_info_get_bss(prev, hdr->addr2);
Johannes Berg4b0dd982010-09-24 11:21:07 +02004005 rx.sdata = prev;
4006 ieee80211_prepare_and_rx_handle(&rx, skb, false);
Felix Fietkau4bb29f82010-01-22 00:36:39 +01004007
Johannes Berg4b0dd982010-09-24 11:21:07 +02004008 prev = sdata;
4009 }
Johannes Berg4406c372010-09-24 11:21:06 +02004010
Johannes Berg4b0dd982010-09-24 11:21:07 +02004011 if (prev) {
Johannes Berg7852e362012-01-20 13:55:24 +01004012 rx.sta = sta_info_get_bss(prev, hdr->addr2);
Johannes Berg4b0dd982010-09-24 11:21:07 +02004013 rx.sdata = prev;
4014
4015 if (ieee80211_prepare_and_rx_handle(&rx, skb, true))
4016 return;
Johannes Berg571ecf62007-07-27 15:43:22 +02004017 }
Johannes Berg4406c372010-09-24 11:21:06 +02004018
Senthil Balasubramanian8e26d5a2010-11-30 20:15:38 +05304019 out:
Johannes Berg4406c372010-09-24 11:21:06 +02004020 dev_kfree_skb(skb);
Johannes Berg571ecf62007-07-27 15:43:22 +02004021}
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02004022
4023/*
4024 * This is the receive path handler. It is called by a low level driver when an
4025 * 802.11 MPDU is received from the hardware.
4026 */
Johannes Bergd63b5482016-03-31 20:02:02 +03004027void ieee80211_rx_napi(struct ieee80211_hw *hw, struct ieee80211_sta *pubsta,
4028 struct sk_buff *skb, struct napi_struct *napi)
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02004029{
4030 struct ieee80211_local *local = hw_to_local(hw);
Johannes Berg8318d782008-01-24 19:38:38 +01004031 struct ieee80211_rate *rate = NULL;
4032 struct ieee80211_supported_band *sband;
Johannes Bergf1d58c22009-06-17 13:13:00 +02004033 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
Johannes Berg8318d782008-01-24 19:38:38 +01004034
Johannes Bergd20ef632009-10-11 15:10:40 +02004035 WARN_ON_ONCE(softirq_count() == 0);
4036
Johannes Berg444e38032012-09-30 17:08:35 +02004037 if (WARN_ON(status->band >= IEEE80211_NUM_BANDS))
Johannes Berg77a980d2009-08-24 11:46:30 +02004038 goto drop;
Johannes Berg8318d782008-01-24 19:38:38 +01004039
4040 sband = local->hw.wiphy->bands[status->band];
Johannes Berg77a980d2009-08-24 11:46:30 +02004041 if (WARN_ON(!sband))
4042 goto drop;
Johannes Berg8318d782008-01-24 19:38:38 +01004043
Johannes Berg89c3a8a2009-07-28 18:10:17 +02004044 /*
4045 * If we're suspending, it is possible although not too likely
4046 * that we'd be receiving frames after having already partially
4047 * quiesced the stack. We can't process such frames then since
4048 * that might, for example, cause stations to be added or other
4049 * driver callbacks be invoked.
4050 */
Johannes Berg77a980d2009-08-24 11:46:30 +02004051 if (unlikely(local->quiescing || local->suspended))
4052 goto drop;
Johannes Berg89c3a8a2009-07-28 18:10:17 +02004053
Arik Nemtsov04800ad2012-06-06 11:25:02 +03004054 /* We might be during a HW reconfig, prevent Rx for the same reason */
4055 if (unlikely(local->in_reconfig))
4056 goto drop;
4057
Johannes Bergea77f122009-08-21 14:44:45 +02004058 /*
4059 * The same happens when we're not even started,
4060 * but that's worth a warning.
4061 */
Johannes Berg77a980d2009-08-24 11:46:30 +02004062 if (WARN_ON(!local->started))
4063 goto drop;
Johannes Bergea77f122009-08-21 14:44:45 +02004064
Johannes Bergfc885182010-07-30 13:23:12 +02004065 if (likely(!(status->flag & RX_FLAG_FAILED_PLCP_CRC))) {
Luis R. Rodrigueze5d6eb82009-11-09 16:03:22 -05004066 /*
Johannes Bergfc885182010-07-30 13:23:12 +02004067 * Validate the rate, unless a PLCP error means that
4068 * we probably can't have a valid rate here anyway.
Luis R. Rodrigueze5d6eb82009-11-09 16:03:22 -05004069 */
Johannes Bergfc885182010-07-30 13:23:12 +02004070
4071 if (status->flag & RX_FLAG_HT) {
4072 /*
4073 * rate_idx is MCS index, which can be [0-76]
4074 * as documented on:
4075 *
4076 * http://wireless.kernel.org/en/developers/Documentation/ieee80211/802.11n
4077 *
4078 * Anything else would be some sort of driver or
4079 * hardware error. The driver should catch hardware
4080 * errors.
4081 */
Johannes Berg444e38032012-09-30 17:08:35 +02004082 if (WARN(status->rate_idx > 76,
Johannes Bergfc885182010-07-30 13:23:12 +02004083 "Rate marked as an HT rate but passed "
4084 "status->rate_idx is not "
4085 "an MCS index [0-76]: %d (0x%02x)\n",
4086 status->rate_idx,
4087 status->rate_idx))
4088 goto drop;
Johannes Berg56146182012-11-09 15:07:02 +01004089 } else if (status->flag & RX_FLAG_VHT) {
4090 if (WARN_ONCE(status->rate_idx > 9 ||
4091 !status->vht_nss ||
4092 status->vht_nss > 8,
4093 "Rate marked as a VHT rate but data is invalid: MCS: %d, NSS: %d\n",
4094 status->rate_idx, status->vht_nss))
4095 goto drop;
Johannes Bergfc885182010-07-30 13:23:12 +02004096 } else {
Johannes Berg444e38032012-09-30 17:08:35 +02004097 if (WARN_ON(status->rate_idx >= sband->n_bitrates))
Johannes Bergfc885182010-07-30 13:23:12 +02004098 goto drop;
4099 rate = &sband->bitrates[status->rate_idx];
4100 }
Jouni Malinen0fb8ca42008-12-12 14:38:33 +02004101 }
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02004102
Johannes Berg554891e2010-09-24 12:38:25 +02004103 status->rx_flags = 0;
4104
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02004105 /*
4106 * key references and virtual interfaces are protected using RCU
4107 * and this requires that we are in a read-side RCU section during
4108 * receive processing
4109 */
4110 rcu_read_lock();
4111
4112 /*
4113 * Frames with failed FCS/PLCP checksum are not returned,
4114 * all other frames are returned without radiotap header
4115 * if it was previously present.
4116 * Also, frames with less than 16 bytes are dropped.
4117 */
Johannes Bergf1d58c22009-06-17 13:13:00 +02004118 skb = ieee80211_rx_monitor(local, skb, rate);
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02004119 if (!skb) {
4120 rcu_read_unlock();
4121 return;
4122 }
4123
Johannes Berge1e54062010-11-30 08:58:45 +01004124 ieee80211_tpt_led_trig_rx(local,
4125 ((struct ieee80211_hdr *)skb->data)->frame_control,
4126 skb->len);
Johannes Bergd63b5482016-03-31 20:02:02 +03004127
4128 __ieee80211_rx_handle_packet(hw, pubsta, skb, napi);
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02004129
4130 rcu_read_unlock();
Johannes Berg77a980d2009-08-24 11:46:30 +02004131
4132 return;
4133 drop:
4134 kfree_skb(skb);
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02004135}
Johannes Bergaf9f9b22015-06-11 16:02:32 +02004136EXPORT_SYMBOL(ieee80211_rx_napi);
Johannes Berg571ecf62007-07-27 15:43:22 +02004137
4138/* This is a version of the rx handler that can be called from hard irq
4139 * context. Post the skb on the queue and schedule the tasklet */
Johannes Bergf1d58c22009-06-17 13:13:00 +02004140void ieee80211_rx_irqsafe(struct ieee80211_hw *hw, struct sk_buff *skb)
Johannes Berg571ecf62007-07-27 15:43:22 +02004141{
4142 struct ieee80211_local *local = hw_to_local(hw);
4143
4144 BUILD_BUG_ON(sizeof(struct ieee80211_rx_status) > sizeof(skb->cb));
4145
Johannes Berg571ecf62007-07-27 15:43:22 +02004146 skb->pkt_type = IEEE80211_RX_MSG;
4147 skb_queue_tail(&local->skb_queue, skb);
4148 tasklet_schedule(&local->tasklet);
4149}
4150EXPORT_SYMBOL(ieee80211_rx_irqsafe);