blob: bf2c3f281dcd3c7fea98e7f2c36f00bb0b009ccc [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 Berg571ecf62007-07-27 15:43:22 +02007 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 */
12
S.Çağlar Onurab466232008-02-14 17:36:47 +020013#include <linux/jiffies.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090014#include <linux/slab.h>
Johannes Berg571ecf62007-07-27 15:43:22 +020015#include <linux/kernel.h>
16#include <linux/skbuff.h>
17#include <linux/netdevice.h>
18#include <linux/etherdevice.h>
Johannes Bergd4e46a32007-09-14 11:10:24 -040019#include <linux/rcupdate.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040020#include <linux/export.h>
Johannes Berg571ecf62007-07-27 15:43:22 +020021#include <net/mac80211.h>
22#include <net/ieee80211_radiotap.h>
Johannes Bergd26ad372012-02-20 11:38:41 +010023#include <asm/unaligned.h>
Johannes Berg571ecf62007-07-27 15:43:22 +020024
25#include "ieee80211_i.h"
Johannes Berg24487982009-04-23 18:52:52 +020026#include "driver-ops.h"
Johannes Berg2c8dccc2008-04-08 15:14:40 -040027#include "led.h"
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +010028#include "mesh.h"
Johannes Berg571ecf62007-07-27 15:43:22 +020029#include "wep.h"
30#include "wpa.h"
31#include "tkip.h"
32#include "wme.h"
Johannes Berg1d8d3de2011-12-16 15:28:57 +010033#include "rate.h"
Johannes Berg571ecf62007-07-27 15:43:22 +020034
Johannes Berg5a490512015-04-22 17:10:38 +020035static inline void ieee80211_rx_stats(struct net_device *dev, u32 len)
36{
37 struct pcpu_sw_netstats *tstats = this_cpu_ptr(dev->tstats);
38
39 u64_stats_update_begin(&tstats->syncp);
40 tstats->rx_packets++;
41 tstats->rx_bytes += len;
42 u64_stats_update_end(&tstats->syncp);
43}
44
Johannes Berga6828492015-06-16 15:17:15 +020045static u8 *ieee80211_get_bssid(struct ieee80211_hdr *hdr, size_t len,
46 enum nl80211_iftype type)
47{
48 __le16 fc = hdr->frame_control;
49
50 if (ieee80211_is_data(fc)) {
51 if (len < 24) /* drop incorrect hdr len (data) */
52 return NULL;
53
54 if (ieee80211_has_a4(fc))
55 return NULL;
56 if (ieee80211_has_tods(fc))
57 return hdr->addr1;
58 if (ieee80211_has_fromds(fc))
59 return hdr->addr2;
60
61 return hdr->addr3;
62 }
63
64 if (ieee80211_is_mgmt(fc)) {
65 if (len < 24) /* drop incorrect hdr len (mgmt) */
66 return NULL;
67 return hdr->addr3;
68 }
69
70 if (ieee80211_is_ctl(fc)) {
71 if (ieee80211_is_pspoll(fc))
72 return hdr->addr1;
73
74 if (ieee80211_is_back_req(fc)) {
75 switch (type) {
76 case NL80211_IFTYPE_STATION:
77 return hdr->addr2;
78 case NL80211_IFTYPE_AP:
79 case NL80211_IFTYPE_AP_VLAN:
80 return hdr->addr1;
81 default:
82 break; /* fall through to the return */
83 }
84 }
85 }
86
87 return NULL;
88}
89
Johannes Bergb2e77712007-09-26 15:19:39 +020090/*
91 * monitor mode reception
92 *
93 * This function cleans up the SKB, i.e. it removes all the stuff
94 * only useful for monitoring.
95 */
96static struct sk_buff *remove_monitor_info(struct ieee80211_local *local,
Johannes Berg1f7bba72014-11-06 22:56:36 +010097 struct sk_buff *skb,
98 unsigned int rtap_vendor_space)
Johannes Bergb2e77712007-09-26 15:19:39 +020099{
Johannes Berg30686bf2015-06-02 21:39:54 +0200100 if (ieee80211_hw_check(&local->hw, RX_INCLUDES_FCS)) {
Johannes Bergb2e77712007-09-26 15:19:39 +0200101 if (likely(skb->len > FCS_LEN))
Zhu Yie3cf8b32010-03-29 17:35:07 +0800102 __pskb_trim(skb, skb->len - FCS_LEN);
Johannes Bergb2e77712007-09-26 15:19:39 +0200103 else {
104 /* driver bug */
105 WARN_ON(1);
106 dev_kfree_skb(skb);
Dan Carpenter06247602012-11-27 20:31:19 +0300107 return NULL;
Johannes Bergb2e77712007-09-26 15:19:39 +0200108 }
109 }
110
Johannes Berg1f7bba72014-11-06 22:56:36 +0100111 __pskb_pull(skb, rtap_vendor_space);
112
Johannes Bergb2e77712007-09-26 15:19:39 +0200113 return skb;
114}
115
Johannes Berg1f7bba72014-11-06 22:56:36 +0100116static inline bool should_drop_frame(struct sk_buff *skb, int present_fcs_len,
117 unsigned int rtap_vendor_space)
Johannes Bergb2e77712007-09-26 15:19:39 +0200118{
Johannes Bergf1d58c22009-06-17 13:13:00 +0200119 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
Johannes Berg1f7bba72014-11-06 22:56:36 +0100120 struct ieee80211_hdr *hdr;
121
122 hdr = (void *)(skb->data + rtap_vendor_space);
Johannes Bergb2e77712007-09-26 15:19:39 +0200123
Johannes Berg4c298672012-07-05 11:34:31 +0200124 if (status->flag & (RX_FLAG_FAILED_FCS_CRC |
Johannes Berg0c028b52015-06-12 14:33:54 +0200125 RX_FLAG_FAILED_PLCP_CRC))
Zhao, Gang6b59db72014-04-21 12:52:59 +0800126 return true;
127
Johannes Berg1f7bba72014-11-06 22:56:36 +0100128 if (unlikely(skb->len < 16 + present_fcs_len + rtap_vendor_space))
Zhao, Gang6b59db72014-04-21 12:52:59 +0800129 return true;
130
Harvey Harrison87228f52008-06-11 14:21:59 -0700131 if (ieee80211_is_ctl(hdr->frame_control) &&
132 !ieee80211_is_pspoll(hdr->frame_control) &&
133 !ieee80211_is_back_req(hdr->frame_control))
Zhao, Gang6b59db72014-04-21 12:52:59 +0800134 return true;
135
136 return false;
Johannes Bergb2e77712007-09-26 15:19:39 +0200137}
138
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200139static int
Johannes Berg1f7bba72014-11-06 22:56:36 +0100140ieee80211_rx_radiotap_hdrlen(struct ieee80211_local *local,
141 struct ieee80211_rx_status *status,
142 struct sk_buff *skb)
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200143{
144 int len;
145
146 /* always present fields */
Johannes Berga144f372013-07-03 13:34:02 +0200147 len = sizeof(struct ieee80211_radiotap_header) + 8;
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200148
Johannes Berga144f372013-07-03 13:34:02 +0200149 /* allocate extra bitmaps */
Johannes Berga144f372013-07-03 13:34:02 +0200150 if (status->chains)
151 len += 4 * hweight8(status->chains);
Johannes Berg90b9e4462012-11-16 10:09:08 +0100152
153 if (ieee80211_have_rx_timestamp(status)) {
154 len = ALIGN(len, 8);
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200155 len += 8;
Johannes Berg90b9e4462012-11-16 10:09:08 +0100156 }
Johannes Berg30686bf2015-06-02 21:39:54 +0200157 if (ieee80211_hw_check(&local->hw, SIGNAL_DBM))
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200158 len += 1;
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200159
Johannes Berga144f372013-07-03 13:34:02 +0200160 /* antenna field, if we don't have per-chain info */
161 if (!status->chains)
162 len += 1;
163
Johannes Berg90b9e4462012-11-16 10:09:08 +0100164 /* padding for RX_FLAGS if necessary */
165 len = ALIGN(len, 2);
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200166
Johannes Berg6d744ba2011-01-27 14:13:17 +0100167 if (status->flag & RX_FLAG_HT) /* HT info */
168 len += 3;
169
Johannes Berg4c298672012-07-05 11:34:31 +0200170 if (status->flag & RX_FLAG_AMPDU_DETAILS) {
Johannes Berg90b9e4462012-11-16 10:09:08 +0100171 len = ALIGN(len, 4);
Johannes Berg4c298672012-07-05 11:34:31 +0200172 len += 8;
173 }
174
Johannes Berg51648922012-11-22 23:00:18 +0100175 if (status->flag & RX_FLAG_VHT) {
176 len = ALIGN(len, 2);
177 len += 12;
178 }
179
Johannes Berga144f372013-07-03 13:34:02 +0200180 if (status->chains) {
181 /* antenna and antenna signal fields */
182 len += 2 * hweight8(status->chains);
183 }
184
Johannes Berg1f7bba72014-11-06 22:56:36 +0100185 if (status->flag & RX_FLAG_RADIOTAP_VENDOR_DATA) {
186 struct ieee80211_vendor_radiotap *rtap = (void *)skb->data;
187
188 /* vendor presence bitmap */
189 len += 4;
190 /* alignment for fixed 6-byte vendor data header */
191 len = ALIGN(len, 2);
192 /* vendor data header */
193 len += 6;
194 if (WARN_ON(rtap->align == 0))
195 rtap->align = 1;
196 len = ALIGN(len, rtap->align);
197 len += rtap->len + rtap->pad;
198 }
199
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200200 return len;
201}
202
Johannes Berg00ea6de2012-09-05 15:54:51 +0200203/*
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200204 * ieee80211_add_rx_radiotap_header - add radiotap header
205 *
206 * add a radiotap header containing all the fields which the hardware provided.
207 */
208static void
209ieee80211_add_rx_radiotap_header(struct ieee80211_local *local,
210 struct sk_buff *skb,
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200211 struct ieee80211_rate *rate,
Felix Fietkau973ef212012-04-16 14:56:48 +0200212 int rtap_len, bool has_fcs)
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200213{
Johannes Bergf1d58c22009-06-17 13:13:00 +0200214 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200215 struct ieee80211_radiotap_header *rthdr;
216 unsigned char *pos;
Johannes Berga144f372013-07-03 13:34:02 +0200217 __le32 *it_present;
218 u32 it_present_val;
Johannes Berg6a86b9c2009-10-28 09:58:52 +0100219 u16 rx_flags = 0;
Simon Wunderlicha5e70692013-07-08 16:55:52 +0200220 u16 channel_flags = 0;
Johannes Berga144f372013-07-03 13:34:02 +0200221 int mpdulen, chain;
222 unsigned long chains = status->chains;
Johannes Berg1f7bba72014-11-06 22:56:36 +0100223 struct ieee80211_vendor_radiotap rtap = {};
224
225 if (status->flag & RX_FLAG_RADIOTAP_VENDOR_DATA) {
226 rtap = *(struct ieee80211_vendor_radiotap *)skb->data;
227 /* rtap.len and rtap.pad are undone immediately */
228 skb_pull(skb, sizeof(rtap) + rtap.len + rtap.pad);
229 }
Thomas Pedersenf4bda332012-11-13 10:46:27 -0800230
231 mpdulen = skb->len;
Johannes Berg30686bf2015-06-02 21:39:54 +0200232 if (!(has_fcs && ieee80211_hw_check(&local->hw, RX_INCLUDES_FCS)))
Thomas Pedersenf4bda332012-11-13 10:46:27 -0800233 mpdulen += FCS_LEN;
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200234
235 rthdr = (struct ieee80211_radiotap_header *)skb_push(skb, rtap_len);
Johannes Berg1f7bba72014-11-06 22:56:36 +0100236 memset(rthdr, 0, rtap_len - rtap.len - rtap.pad);
Johannes Berga144f372013-07-03 13:34:02 +0200237 it_present = &rthdr->it_present;
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200238
239 /* radiotap header, set always present flags */
Emmanuel Grumbach0059b2b2014-02-05 16:36:01 +0200240 rthdr->it_len = cpu_to_le16(rtap_len);
Johannes Berga144f372013-07-03 13:34:02 +0200241 it_present_val = BIT(IEEE80211_RADIOTAP_FLAGS) |
242 BIT(IEEE80211_RADIOTAP_CHANNEL) |
243 BIT(IEEE80211_RADIOTAP_RX_FLAGS);
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200244
Johannes Berga144f372013-07-03 13:34:02 +0200245 if (!status->chains)
246 it_present_val |= BIT(IEEE80211_RADIOTAP_ANTENNA);
247
248 for_each_set_bit(chain, &chains, IEEE80211_MAX_CHAINS) {
249 it_present_val |=
250 BIT(IEEE80211_RADIOTAP_EXT) |
251 BIT(IEEE80211_RADIOTAP_RADIOTAP_NAMESPACE);
252 put_unaligned_le32(it_present_val, it_present);
253 it_present++;
254 it_present_val = BIT(IEEE80211_RADIOTAP_ANTENNA) |
255 BIT(IEEE80211_RADIOTAP_DBM_ANTSIGNAL);
256 }
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200257
Johannes Berg1f7bba72014-11-06 22:56:36 +0100258 if (status->flag & RX_FLAG_RADIOTAP_VENDOR_DATA) {
259 it_present_val |= BIT(IEEE80211_RADIOTAP_VENDOR_NAMESPACE) |
260 BIT(IEEE80211_RADIOTAP_EXT);
261 put_unaligned_le32(it_present_val, it_present);
262 it_present++;
263 it_present_val = rtap.present;
264 }
265
Johannes Berga144f372013-07-03 13:34:02 +0200266 put_unaligned_le32(it_present_val, it_present);
267
268 pos = (void *)(it_present + 1);
269
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200270 /* the order of the following fields is important */
271
272 /* IEEE80211_RADIOTAP_TSFT */
Thomas Pedersenf4bda332012-11-13 10:46:27 -0800273 if (ieee80211_have_rx_timestamp(status)) {
Johannes Berg90b9e4462012-11-16 10:09:08 +0100274 /* padding */
275 while ((pos - (u8 *)rthdr) & 7)
276 *pos++ = 0;
Thomas Pedersenf4bda332012-11-13 10:46:27 -0800277 put_unaligned_le64(
278 ieee80211_calculate_rx_timestamp(local, status,
279 mpdulen, 0),
280 pos);
Johannes Berg1df332e2012-10-26 00:09:11 +0200281 rthdr->it_present |= cpu_to_le32(1 << IEEE80211_RADIOTAP_TSFT);
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200282 pos += 8;
283 }
284
285 /* IEEE80211_RADIOTAP_FLAGS */
Johannes Berg30686bf2015-06-02 21:39:54 +0200286 if (has_fcs && ieee80211_hw_check(&local->hw, RX_INCLUDES_FCS))
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200287 *pos |= IEEE80211_RADIOTAP_F_FCS;
Johannes Bergaae89832009-03-13 12:52:10 +0100288 if (status->flag & (RX_FLAG_FAILED_FCS_CRC | RX_FLAG_FAILED_PLCP_CRC))
289 *pos |= IEEE80211_RADIOTAP_F_BADFCS;
Bruno Randolfb4f28bb2008-07-30 17:19:55 +0200290 if (status->flag & RX_FLAG_SHORTPRE)
291 *pos |= IEEE80211_RADIOTAP_F_SHORTPRE;
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200292 pos++;
293
294 /* IEEE80211_RADIOTAP_RATE */
Johannes Berg56146182012-11-09 15:07:02 +0100295 if (!rate || status->flag & (RX_FLAG_HT | RX_FLAG_VHT)) {
Jouni Malinen0fb8ca42008-12-12 14:38:33 +0200296 /*
Johannes Bergf8d1ccf2011-11-08 12:28:33 +0100297 * Without rate information don't add it. If we have,
Mohammed Shafi Shajakhan38f37be2011-02-07 10:10:04 +0530298 * MCS information is a separate field in radiotap,
Johannes Berg73b48092011-04-18 17:05:21 +0200299 * added below. The byte here is needed as padding
300 * for the channel though, so initialise it to 0.
Jouni Malinen0fb8ca42008-12-12 14:38:33 +0200301 */
302 *pos = 0;
Jouni Malinen8d6f6582008-12-15 10:37:50 +0200303 } else {
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200304 int shift = 0;
Jouni Malinenebe6c7b2009-01-10 11:47:33 +0200305 rthdr->it_present |= cpu_to_le32(1 << IEEE80211_RADIOTAP_RATE);
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200306 if (status->flag & RX_FLAG_10MHZ)
307 shift = 1;
308 else if (status->flag & RX_FLAG_5MHZ)
309 shift = 2;
310 *pos = DIV_ROUND_UP(rate->bitrate, 5 * (1 << shift));
Jouni Malinen8d6f6582008-12-15 10:37:50 +0200311 }
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200312 pos++;
313
314 /* IEEE80211_RADIOTAP_CHANNEL */
Johannes Berg6a86b9c2009-10-28 09:58:52 +0100315 put_unaligned_le16(status->freq, pos);
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200316 pos += 2;
Simon Wunderlicha5e70692013-07-08 16:55:52 +0200317 if (status->flag & RX_FLAG_10MHZ)
318 channel_flags |= IEEE80211_CHAN_HALF;
319 else if (status->flag & RX_FLAG_5MHZ)
320 channel_flags |= IEEE80211_CHAN_QUARTER;
321
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200322 if (status->band == IEEE80211_BAND_5GHZ)
Simon Wunderlicha5e70692013-07-08 16:55:52 +0200323 channel_flags |= IEEE80211_CHAN_OFDM | IEEE80211_CHAN_5GHZ;
Johannes Berg56146182012-11-09 15:07:02 +0100324 else if (status->flag & (RX_FLAG_HT | RX_FLAG_VHT))
Simon Wunderlicha5e70692013-07-08 16:55:52 +0200325 channel_flags |= IEEE80211_CHAN_DYN | IEEE80211_CHAN_2GHZ;
Johannes Bergf8d1ccf2011-11-08 12:28:33 +0100326 else if (rate && rate->flags & IEEE80211_RATE_ERP_G)
Simon Wunderlicha5e70692013-07-08 16:55:52 +0200327 channel_flags |= IEEE80211_CHAN_OFDM | IEEE80211_CHAN_2GHZ;
Johannes Bergf8d1ccf2011-11-08 12:28:33 +0100328 else if (rate)
Mathy Vanhoef3a5c5e82015-01-20 15:05:08 +0100329 channel_flags |= IEEE80211_CHAN_CCK | IEEE80211_CHAN_2GHZ;
Johannes Bergf8d1ccf2011-11-08 12:28:33 +0100330 else
Simon Wunderlicha5e70692013-07-08 16:55:52 +0200331 channel_flags |= IEEE80211_CHAN_2GHZ;
332 put_unaligned_le16(channel_flags, pos);
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200333 pos += 2;
334
335 /* IEEE80211_RADIOTAP_DBM_ANTSIGNAL */
Johannes Berg30686bf2015-06-02 21:39:54 +0200336 if (ieee80211_hw_check(&local->hw, SIGNAL_DBM) &&
Felix Fietkaufe8431f2012-03-01 18:00:07 +0100337 !(status->flag & RX_FLAG_NO_SIGNAL_VAL)) {
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200338 *pos = status->signal;
339 rthdr->it_present |=
340 cpu_to_le32(1 << IEEE80211_RADIOTAP_DBM_ANTSIGNAL);
341 pos++;
342 }
343
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200344 /* IEEE80211_RADIOTAP_LOCK_QUALITY is missing */
345
Johannes Berga144f372013-07-03 13:34:02 +0200346 if (!status->chains) {
347 /* IEEE80211_RADIOTAP_ANTENNA */
348 *pos = status->antenna;
349 pos++;
350 }
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200351
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200352 /* IEEE80211_RADIOTAP_DB_ANTNOISE is not used */
353
354 /* IEEE80211_RADIOTAP_RX_FLAGS */
355 /* ensure 2 byte alignment for the 2 byte field as required */
Johannes Berg6a86b9c2009-10-28 09:58:52 +0100356 if ((pos - (u8 *)rthdr) & 1)
Johannes Berg90b9e4462012-11-16 10:09:08 +0100357 *pos++ = 0;
Johannes Bergaae89832009-03-13 12:52:10 +0100358 if (status->flag & RX_FLAG_FAILED_PLCP_CRC)
Johannes Berg6a86b9c2009-10-28 09:58:52 +0100359 rx_flags |= IEEE80211_RADIOTAP_F_RX_BADPLCP;
360 put_unaligned_le16(rx_flags, pos);
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200361 pos += 2;
Johannes Berg6d744ba2011-01-27 14:13:17 +0100362
363 if (status->flag & RX_FLAG_HT) {
Oleksij Rempel786677d2013-05-24 12:05:45 +0200364 unsigned int stbc;
365
Johannes Berg6d744ba2011-01-27 14:13:17 +0100366 rthdr->it_present |= cpu_to_le32(1 << IEEE80211_RADIOTAP_MCS);
Johannes Bergac55d2f2012-05-10 09:09:10 +0200367 *pos++ = local->hw.radiotap_mcs_details;
Johannes Berg6d744ba2011-01-27 14:13:17 +0100368 *pos = 0;
369 if (status->flag & RX_FLAG_SHORT_GI)
370 *pos |= IEEE80211_RADIOTAP_MCS_SGI;
371 if (status->flag & RX_FLAG_40MHZ)
372 *pos |= IEEE80211_RADIOTAP_MCS_BW_40;
Johannes Bergac55d2f2012-05-10 09:09:10 +0200373 if (status->flag & RX_FLAG_HT_GF)
374 *pos |= IEEE80211_RADIOTAP_MCS_FMT_GF;
Emmanuel Grumbach63c361f2014-02-05 12:48:53 +0200375 if (status->flag & RX_FLAG_LDPC)
376 *pos |= IEEE80211_RADIOTAP_MCS_FEC_LDPC;
Oleksij Rempel786677d2013-05-24 12:05:45 +0200377 stbc = (status->flag & RX_FLAG_STBC_MASK) >> RX_FLAG_STBC_SHIFT;
378 *pos |= stbc << IEEE80211_RADIOTAP_MCS_STBC_SHIFT;
Johannes Berg6d744ba2011-01-27 14:13:17 +0100379 pos++;
380 *pos++ = status->rate_idx;
381 }
Johannes Berg4c298672012-07-05 11:34:31 +0200382
383 if (status->flag & RX_FLAG_AMPDU_DETAILS) {
384 u16 flags = 0;
385
386 /* ensure 4 byte alignment */
387 while ((pos - (u8 *)rthdr) & 3)
388 pos++;
389 rthdr->it_present |=
390 cpu_to_le32(1 << IEEE80211_RADIOTAP_AMPDU_STATUS);
391 put_unaligned_le32(status->ampdu_reference, pos);
392 pos += 4;
Johannes Berg4c298672012-07-05 11:34:31 +0200393 if (status->flag & RX_FLAG_AMPDU_LAST_KNOWN)
394 flags |= IEEE80211_RADIOTAP_AMPDU_LAST_KNOWN;
395 if (status->flag & RX_FLAG_AMPDU_IS_LAST)
396 flags |= IEEE80211_RADIOTAP_AMPDU_IS_LAST;
397 if (status->flag & RX_FLAG_AMPDU_DELIM_CRC_ERROR)
398 flags |= IEEE80211_RADIOTAP_AMPDU_DELIM_CRC_ERR;
399 if (status->flag & RX_FLAG_AMPDU_DELIM_CRC_KNOWN)
400 flags |= IEEE80211_RADIOTAP_AMPDU_DELIM_CRC_KNOWN;
401 put_unaligned_le16(flags, pos);
402 pos += 2;
403 if (status->flag & RX_FLAG_AMPDU_DELIM_CRC_KNOWN)
404 *pos++ = status->ampdu_delimiter_crc;
405 else
406 *pos++ = 0;
407 *pos++ = 0;
408 }
Johannes Berg90b9e4462012-11-16 10:09:08 +0100409
Johannes Berg51648922012-11-22 23:00:18 +0100410 if (status->flag & RX_FLAG_VHT) {
411 u16 known = local->hw.radiotap_vht_details;
412
413 rthdr->it_present |= cpu_to_le32(1 << IEEE80211_RADIOTAP_VHT);
Johannes Berg51648922012-11-22 23:00:18 +0100414 put_unaligned_le16(known, pos);
415 pos += 2;
416 /* flags */
417 if (status->flag & RX_FLAG_SHORT_GI)
418 *pos |= IEEE80211_RADIOTAP_VHT_FLAG_SGI;
Emmanuel Grumbach63c361f2014-02-05 12:48:53 +0200419 /* in VHT, STBC is binary */
420 if (status->flag & RX_FLAG_STBC_MASK)
421 *pos |= IEEE80211_RADIOTAP_VHT_FLAG_STBC;
Emmanuel Grumbachfb378c22014-03-04 10:35:25 +0200422 if (status->vht_flag & RX_VHT_FLAG_BF)
423 *pos |= IEEE80211_RADIOTAP_VHT_FLAG_BEAMFORMED;
Johannes Berg51648922012-11-22 23:00:18 +0100424 pos++;
425 /* bandwidth */
Emmanuel Grumbach1b8d2422014-02-05 16:37:11 +0200426 if (status->vht_flag & RX_VHT_FLAG_80MHZ)
Johannes Berg51648922012-11-22 23:00:18 +0100427 *pos++ = 4;
Emmanuel Grumbach1b8d2422014-02-05 16:37:11 +0200428 else if (status->vht_flag & RX_VHT_FLAG_160MHZ)
Johannes Berg51648922012-11-22 23:00:18 +0100429 *pos++ = 11;
430 else if (status->flag & RX_FLAG_40MHZ)
431 *pos++ = 1;
432 else /* 20 MHz */
433 *pos++ = 0;
434 /* MCS/NSS */
435 *pos = (status->rate_idx << 4) | status->vht_nss;
436 pos += 4;
437 /* coding field */
Emmanuel Grumbach63c361f2014-02-05 12:48:53 +0200438 if (status->flag & RX_FLAG_LDPC)
439 *pos |= IEEE80211_RADIOTAP_CODING_LDPC_USER0;
Johannes Berg51648922012-11-22 23:00:18 +0100440 pos++;
441 /* group ID */
442 pos++;
443 /* partial_aid */
444 pos += 2;
445 }
446
Johannes Berga144f372013-07-03 13:34:02 +0200447 for_each_set_bit(chain, &chains, IEEE80211_MAX_CHAINS) {
448 *pos++ = status->chain_signal[chain];
449 *pos++ = chain;
450 }
Johannes Berg1f7bba72014-11-06 22:56:36 +0100451
452 if (status->flag & RX_FLAG_RADIOTAP_VENDOR_DATA) {
453 /* ensure 2 byte alignment for the vendor field as required */
454 if ((pos - (u8 *)rthdr) & 1)
455 *pos++ = 0;
456 *pos++ = rtap.oui[0];
457 *pos++ = rtap.oui[1];
458 *pos++ = rtap.oui[2];
459 *pos++ = rtap.subns;
460 put_unaligned_le16(rtap.len, pos);
461 pos += 2;
462 /* align the actual payload as requested */
463 while ((pos - (u8 *)rthdr) & (rtap.align - 1))
464 *pos++ = 0;
465 /* data (and possible padding) already follows */
466 }
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200467}
468
Johannes Bergb2e77712007-09-26 15:19:39 +0200469/*
470 * This function copies a received frame to all monitor interfaces and
471 * returns a cleaned-up SKB that no longer includes the FCS nor the
472 * radiotap header the driver might have added.
473 */
474static struct sk_buff *
475ieee80211_rx_monitor(struct ieee80211_local *local, struct sk_buff *origskb,
Johannes Berg8318d782008-01-24 19:38:38 +0100476 struct ieee80211_rate *rate)
Johannes Bergb2e77712007-09-26 15:19:39 +0200477{
Johannes Bergf1d58c22009-06-17 13:13:00 +0200478 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(origskb);
Johannes Bergb2e77712007-09-26 15:19:39 +0200479 struct ieee80211_sub_if_data *sdata;
Johannes Berg1f7bba72014-11-06 22:56:36 +0100480 int rt_hdrlen, needed_headroom;
Johannes Bergb2e77712007-09-26 15:19:39 +0200481 struct sk_buff *skb, *skb2;
482 struct net_device *prev_dev = NULL;
483 int present_fcs_len = 0;
Johannes Berg1f7bba72014-11-06 22:56:36 +0100484 unsigned int rtap_vendor_space = 0;
485
486 if (unlikely(status->flag & RX_FLAG_RADIOTAP_VENDOR_DATA)) {
487 struct ieee80211_vendor_radiotap *rtap = (void *)origskb->data;
488
489 rtap_vendor_space = sizeof(*rtap) + rtap->len + rtap->pad;
490 }
Johannes Bergb2e77712007-09-26 15:19:39 +0200491
492 /*
493 * First, we may need to make a copy of the skb because
494 * (1) we need to modify it for radiotap (if not present), and
495 * (2) the other RX handlers will modify the skb we got.
496 *
497 * We don't need to, of course, if we aren't going to return
498 * the SKB because it has a bad FCS/PLCP checksum.
499 */
Johannes Berg0869aea2009-10-28 10:03:35 +0100500
Johannes Berg30686bf2015-06-02 21:39:54 +0200501 if (ieee80211_hw_check(&local->hw, RX_INCLUDES_FCS))
Johannes Bergb2e77712007-09-26 15:19:39 +0200502 present_fcs_len = FCS_LEN;
503
Johannes Berg1f7bba72014-11-06 22:56:36 +0100504 /* ensure hdr->frame_control and vendor radiotap data are in skb head */
505 if (!pskb_may_pull(origskb, 2 + rtap_vendor_space)) {
Zhu Yie3cf8b32010-03-29 17:35:07 +0800506 dev_kfree_skb(origskb);
507 return NULL;
508 }
509
Johannes Bergb2e77712007-09-26 15:19:39 +0200510 if (!local->monitors) {
Johannes Berg1f7bba72014-11-06 22:56:36 +0100511 if (should_drop_frame(origskb, present_fcs_len,
512 rtap_vendor_space)) {
Johannes Bergb2e77712007-09-26 15:19:39 +0200513 dev_kfree_skb(origskb);
514 return NULL;
515 }
516
Johannes Berg1f7bba72014-11-06 22:56:36 +0100517 return remove_monitor_info(local, origskb, rtap_vendor_space);
Johannes Bergb2e77712007-09-26 15:19:39 +0200518 }
519
Helmut Schaa751413e2012-12-05 14:36:12 +0100520 /* room for the radiotap header based on driver features */
Johannes Berg1f7bba72014-11-06 22:56:36 +0100521 rt_hdrlen = ieee80211_rx_radiotap_hdrlen(local, status, origskb);
522 needed_headroom = rt_hdrlen - rtap_vendor_space;
Helmut Schaa751413e2012-12-05 14:36:12 +0100523
Johannes Berg1f7bba72014-11-06 22:56:36 +0100524 if (should_drop_frame(origskb, present_fcs_len, rtap_vendor_space)) {
Johannes Bergb2e77712007-09-26 15:19:39 +0200525 /* only need to expand headroom if necessary */
526 skb = origskb;
527 origskb = NULL;
528
529 /*
530 * This shouldn't trigger often because most devices have an
531 * RX header they pull before we get here, and that should
532 * be big enough for our radiotap information. We should
533 * probably export the length to drivers so that we can have
534 * them allocate enough headroom to start with.
535 */
536 if (skb_headroom(skb) < needed_headroom &&
Johannes Bergc49e5ea2007-12-11 21:33:42 +0100537 pskb_expand_head(skb, needed_headroom, 0, GFP_ATOMIC)) {
Johannes Bergb2e77712007-09-26 15:19:39 +0200538 dev_kfree_skb(skb);
539 return NULL;
540 }
541 } else {
542 /*
543 * Need to make a copy and possibly remove radiotap header
544 * and FCS from the original.
545 */
546 skb = skb_copy_expand(origskb, needed_headroom, 0, GFP_ATOMIC);
547
Johannes Berg1f7bba72014-11-06 22:56:36 +0100548 origskb = remove_monitor_info(local, origskb,
549 rtap_vendor_space);
Johannes Bergb2e77712007-09-26 15:19:39 +0200550
551 if (!skb)
552 return origskb;
553 }
554
Johannes Berg0869aea2009-10-28 10:03:35 +0100555 /* prepend radiotap information */
Johannes Berg1f7bba72014-11-06 22:56:36 +0100556 ieee80211_add_rx_radiotap_header(local, skb, rate, rt_hdrlen, true);
Johannes Bergb2e77712007-09-26 15:19:39 +0200557
Johannes Bergce3edf6d02007-12-19 01:31:22 +0100558 skb_reset_mac_header(skb);
Johannes Bergb2e77712007-09-26 15:19:39 +0200559 skb->ip_summed = CHECKSUM_UNNECESSARY;
560 skb->pkt_type = PACKET_OTHERHOST;
561 skb->protocol = htons(ETH_P_802_2);
562
563 list_for_each_entry_rcu(sdata, &local->interfaces, list) {
Johannes Berg05c914f2008-09-11 00:01:58 +0200564 if (sdata->vif.type != NL80211_IFTYPE_MONITOR)
Johannes Bergb2e77712007-09-26 15:19:39 +0200565 continue;
566
Michael Wu3d30d942008-01-31 19:48:27 +0100567 if (sdata->u.mntr_flags & MONITOR_FLAG_COOK_FRAMES)
568 continue;
569
Johannes Berg9607e6b2009-12-23 13:15:31 +0100570 if (!ieee80211_sdata_running(sdata))
Johannes Berg47846c92009-11-25 17:46:19 +0100571 continue;
572
Johannes Bergb2e77712007-09-26 15:19:39 +0200573 if (prev_dev) {
574 skb2 = skb_clone(skb, GFP_ATOMIC);
575 if (skb2) {
576 skb2->dev = prev_dev;
John W. Linville5548a8a2010-06-24 14:25:56 -0400577 netif_receive_skb(skb2);
Johannes Bergb2e77712007-09-26 15:19:39 +0200578 }
579 }
580
581 prev_dev = sdata->dev;
Johannes Berg5a490512015-04-22 17:10:38 +0200582 ieee80211_rx_stats(sdata->dev, skb->len);
Johannes Bergb2e77712007-09-26 15:19:39 +0200583 }
584
585 if (prev_dev) {
586 skb->dev = prev_dev;
John W. Linville5548a8a2010-06-24 14:25:56 -0400587 netif_receive_skb(skb);
Johannes Bergb2e77712007-09-26 15:19:39 +0200588 } else
589 dev_kfree_skb(skb);
590
591 return origskb;
592}
593
Johannes Berg5cf121c2008-02-25 16:27:43 +0100594static void ieee80211_parse_qos(struct ieee80211_rx_data *rx)
Johannes Berg6e0d1142007-07-27 15:43:22 +0200595{
Harvey Harrison238f74a2008-07-02 11:05:34 -0700596 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
Johannes Berg554891e2010-09-24 12:38:25 +0200597 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(rx->skb);
Johannes Berg9e262972011-07-07 18:45:03 +0200598 int tid, seqno_idx, security_idx;
Johannes Berg6e0d1142007-07-27 15:43:22 +0200599
600 /* does the frame have a qos control field? */
Harvey Harrison238f74a2008-07-02 11:05:34 -0700601 if (ieee80211_is_data_qos(hdr->frame_control)) {
602 u8 *qc = ieee80211_get_qos_ctl(hdr);
Johannes Berg6e0d1142007-07-27 15:43:22 +0200603 /* frame has qos control */
Harvey Harrison238f74a2008-07-02 11:05:34 -0700604 tid = *qc & IEEE80211_QOS_CTL_TID_MASK;
Johannes Berg04b7dcf2011-06-22 10:06:59 +0200605 if (*qc & IEEE80211_QOS_CTL_A_MSDU_PRESENT)
Johannes Berg554891e2010-09-24 12:38:25 +0200606 status->rx_flags |= IEEE80211_RX_AMSDU;
Johannes Berg9e262972011-07-07 18:45:03 +0200607
608 seqno_idx = tid;
609 security_idx = tid;
Johannes Berg6e0d1142007-07-27 15:43:22 +0200610 } else {
Johannes Berg1411f9b2008-07-10 10:11:02 +0200611 /*
612 * IEEE 802.11-2007, 7.1.3.4.1 ("Sequence Number field"):
613 *
614 * Sequence numbers for management frames, QoS data
615 * frames with a broadcast/multicast address in the
616 * Address 1 field, and all non-QoS data frames sent
617 * by QoS STAs are assigned using an additional single
618 * modulo-4096 counter, [...]
619 *
620 * We also use that counter for non-QoS STAs.
621 */
Johannes Berg5a306f52012-11-14 23:22:21 +0100622 seqno_idx = IEEE80211_NUM_TIDS;
Johannes Berg9e262972011-07-07 18:45:03 +0200623 security_idx = 0;
624 if (ieee80211_is_mgmt(hdr->frame_control))
Johannes Berg5a306f52012-11-14 23:22:21 +0100625 security_idx = IEEE80211_NUM_TIDS;
Johannes Berg9e262972011-07-07 18:45:03 +0200626 tid = 0;
Johannes Berg6e0d1142007-07-27 15:43:22 +0200627 }
Johannes Berg52865dfd2007-07-27 15:43:22 +0200628
Johannes Berg9e262972011-07-07 18:45:03 +0200629 rx->seqno_idx = seqno_idx;
630 rx->security_idx = security_idx;
Johannes Berg6e0d1142007-07-27 15:43:22 +0200631 /* Set skb->priority to 1d tag if highest order bit of TID is not set.
632 * For now, set skb->priority to 0 for other cases. */
633 rx->skb->priority = (tid > 7) ? 0 : tid;
Johannes Berg38f37142008-01-29 17:07:43 +0100634}
Johannes Berg6e0d1142007-07-27 15:43:22 +0200635
Johannes Bergd1c3a372009-01-07 00:26:10 +0100636/**
637 * DOC: Packet alignment
638 *
639 * Drivers always need to pass packets that are aligned to two-byte boundaries
640 * to the stack.
641 *
642 * Additionally, should, if possible, align the payload data in a way that
643 * guarantees that the contained IP header is aligned to a four-byte
644 * boundary. In the case of regular frames, this simply means aligning the
645 * payload to a four-byte boundary (because either the IP header is directly
646 * contained, or IV/RFC1042 headers that have a length divisible by four are
Kalle Valo59d9cb02009-12-17 13:54:57 +0100647 * in front of it). If the payload data is not properly aligned and the
648 * architecture doesn't support efficient unaligned operations, mac80211
649 * will align the data.
Johannes Bergd1c3a372009-01-07 00:26:10 +0100650 *
651 * With A-MSDU frames, however, the payload data address must yield two modulo
652 * four because there are 14-byte 802.3 headers within the A-MSDU frames that
653 * push the IP header further back to a multiple of four again. Thankfully, the
654 * specs were sane enough this time around to require padding each A-MSDU
655 * subframe to a length that is a multiple of four.
656 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300657 * Padding like Atheros hardware adds which is between the 802.11 header and
Johannes Bergd1c3a372009-01-07 00:26:10 +0100658 * the payload is not supported, the driver is required to move the 802.11
659 * header to be directly in front of the payload in that case.
660 */
661static void ieee80211_verify_alignment(struct ieee80211_rx_data *rx)
Johannes Berg38f37142008-01-29 17:07:43 +0100662{
Kalle Valo59d9cb02009-12-17 13:54:57 +0100663#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Johannes Berg441275e2015-11-06 12:34:24 +0100664 WARN_ON_ONCE((unsigned long)rx->skb->data & 1);
Johannes Bergd1c3a372009-01-07 00:26:10 +0100665#endif
Johannes Berg6e0d1142007-07-27 15:43:22 +0200666}
667
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +0200668
Johannes Berg571ecf62007-07-27 15:43:22 +0200669/* rx handlers */
670
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200671static int ieee80211_is_unicast_robust_mgmt_frame(struct sk_buff *skb)
672{
673 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
674
Johannes Bergd8ca16d2014-01-23 16:20:29 +0100675 if (is_multicast_ether_addr(hdr->addr1))
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200676 return 0;
677
Johannes Bergd8ca16d2014-01-23 16:20:29 +0100678 return ieee80211_is_robust_mgmt_frame(skb);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200679}
680
681
682static int ieee80211_is_multicast_robust_mgmt_frame(struct sk_buff *skb)
683{
684 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
685
Johannes Bergd8ca16d2014-01-23 16:20:29 +0100686 if (!is_multicast_ether_addr(hdr->addr1))
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200687 return 0;
688
Johannes Bergd8ca16d2014-01-23 16:20:29 +0100689 return ieee80211_is_robust_mgmt_frame(skb);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200690}
691
692
693/* Get the BIP key index from MMIE; return -1 if this is not a BIP frame */
694static int ieee80211_get_mmie_keyidx(struct sk_buff *skb)
695{
696 struct ieee80211_mgmt *hdr = (struct ieee80211_mgmt *) skb->data;
697 struct ieee80211_mmie *mmie;
Jouni Malinen56c52da2015-01-24 19:52:08 +0200698 struct ieee80211_mmie_16 *mmie16;
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200699
Johannes Berg1df332e2012-10-26 00:09:11 +0200700 if (skb->len < 24 + sizeof(*mmie) || !is_multicast_ether_addr(hdr->da))
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200701 return -1;
702
Johannes Bergd8ca16d2014-01-23 16:20:29 +0100703 if (!ieee80211_is_robust_mgmt_frame(skb))
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200704 return -1; /* not a robust management frame */
705
706 mmie = (struct ieee80211_mmie *)
707 (skb->data + skb->len - sizeof(*mmie));
Jouni Malinen56c52da2015-01-24 19:52:08 +0200708 if (mmie->element_id == WLAN_EID_MMIE &&
709 mmie->length == sizeof(*mmie) - 2)
710 return le16_to_cpu(mmie->key_id);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200711
Jouni Malinen56c52da2015-01-24 19:52:08 +0200712 mmie16 = (struct ieee80211_mmie_16 *)
713 (skb->data + skb->len - sizeof(*mmie16));
714 if (skb->len >= 24 + sizeof(*mmie16) &&
715 mmie16->element_id == WLAN_EID_MMIE &&
716 mmie16->length == sizeof(*mmie16) - 2)
717 return le16_to_cpu(mmie16->key_id);
718
719 return -1;
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200720}
721
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200722static int iwl80211_get_cs_keyid(const struct ieee80211_cipher_scheme *cs,
723 struct sk_buff *skb)
724{
725 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
726 __le16 fc;
727 int hdrlen;
728 u8 keyid;
729
730 fc = hdr->frame_control;
731 hdrlen = ieee80211_hdrlen(fc);
732
733 if (skb->len < hdrlen + cs->hdr_len)
734 return -EINVAL;
735
736 skb_copy_bits(skb, hdrlen + cs->key_idx_off, &keyid, 1);
737 keyid &= cs->key_idx_mask;
738 keyid >>= cs->key_idx_shift;
739
740 return keyid;
741}
742
Johannes Berg1df332e2012-10-26 00:09:11 +0200743static ieee80211_rx_result ieee80211_rx_mesh_check(struct ieee80211_rx_data *rx)
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100744{
Harvey Harrisona7767f92008-07-02 16:30:51 -0700745 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
Johannes Berg47846c92009-11-25 17:46:19 +0100746 char *dev_addr = rx->sdata->vif.addr;
Johannes Bergd6d1a5a2008-02-25 16:24:38 +0100747
Harvey Harrisona7767f92008-07-02 16:30:51 -0700748 if (ieee80211_is_data(hdr->frame_control)) {
Javier Cardona3c5772a2009-08-10 12:15:48 -0700749 if (is_multicast_ether_addr(hdr->addr1)) {
750 if (ieee80211_has_tods(hdr->frame_control) ||
Johannes Berg1df332e2012-10-26 00:09:11 +0200751 !ieee80211_has_fromds(hdr->frame_control))
Javier Cardona3c5772a2009-08-10 12:15:48 -0700752 return RX_DROP_MONITOR;
Joe Perchesb203ca32012-05-08 18:56:52 +0000753 if (ether_addr_equal(hdr->addr3, dev_addr))
Javier Cardona3c5772a2009-08-10 12:15:48 -0700754 return RX_DROP_MONITOR;
755 } else {
756 if (!ieee80211_has_a4(hdr->frame_control))
757 return RX_DROP_MONITOR;
Joe Perchesb203ca32012-05-08 18:56:52 +0000758 if (ether_addr_equal(hdr->addr4, dev_addr))
Javier Cardona3c5772a2009-08-10 12:15:48 -0700759 return RX_DROP_MONITOR;
760 }
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100761 }
762
763 /* If there is not an established peer link and this is not a peer link
764 * establisment frame, beacon or probe, drop the frame.
765 */
766
Javier Cardona57cf8042011-05-13 10:45:43 -0700767 if (!rx->sta || sta_plink_state(rx->sta) != NL80211_PLINK_ESTAB) {
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100768 struct ieee80211_mgmt *mgmt;
Johannes Bergd6d1a5a2008-02-25 16:24:38 +0100769
Harvey Harrisona7767f92008-07-02 16:30:51 -0700770 if (!ieee80211_is_mgmt(hdr->frame_control))
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100771 return RX_DROP_MONITOR;
772
Harvey Harrisona7767f92008-07-02 16:30:51 -0700773 if (ieee80211_is_action(hdr->frame_control)) {
Javier Cardonad3aaec8a2011-05-03 16:57:09 -0700774 u8 category;
Johannes Berg9b395bc2012-10-26 00:36:40 +0200775
776 /* make sure category field is present */
777 if (rx->skb->len < IEEE80211_MIN_ACTION_SIZE)
778 return RX_DROP_MONITOR;
779
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100780 mgmt = (struct ieee80211_mgmt *)hdr;
Javier Cardonad3aaec8a2011-05-03 16:57:09 -0700781 category = mgmt->u.action.category;
782 if (category != WLAN_CATEGORY_MESH_ACTION &&
Johannes Berg1df332e2012-10-26 00:09:11 +0200783 category != WLAN_CATEGORY_SELF_PROTECTED)
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100784 return RX_DROP_MONITOR;
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100785 return RX_CONTINUE;
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100786 }
787
Harvey Harrisona7767f92008-07-02 16:30:51 -0700788 if (ieee80211_is_probe_req(hdr->frame_control) ||
789 ieee80211_is_probe_resp(hdr->frame_control) ||
Javier Cardona71839122011-04-07 15:08:31 -0700790 ieee80211_is_beacon(hdr->frame_control) ||
791 ieee80211_is_auth(hdr->frame_control))
Harvey Harrisona7767f92008-07-02 16:30:51 -0700792 return RX_CONTINUE;
793
794 return RX_DROP_MONITOR;
Harvey Harrisona7767f92008-07-02 16:30:51 -0700795 }
796
Johannes Berg902acc72008-02-23 15:17:19 +0100797 return RX_CONTINUE;
798}
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100799
Johannes Bergd3b2fb52012-06-22 12:48:38 +0200800static void ieee80211_release_reorder_frame(struct ieee80211_sub_if_data *sdata,
Johannes Berg1edfb1a2009-11-25 17:46:16 +0100801 struct tid_ampdu_rx *tid_agg_rx,
Christian Lamparterf9e124f2013-02-04 17:44:44 +0000802 int index,
803 struct sk_buff_head *frames)
Johannes Berg1edfb1a2009-11-25 17:46:16 +0100804{
Michal Kazior83eb9352014-07-16 12:09:31 +0200805 struct sk_buff_head *skb_list = &tid_agg_rx->reorder_buf[index];
806 struct sk_buff *skb;
Christian Lamparter4cfda472010-12-27 23:21:26 +0100807 struct ieee80211_rx_status *status;
Johannes Berg1edfb1a2009-11-25 17:46:16 +0100808
Johannes Bergdd318572010-11-29 11:09:16 +0100809 lockdep_assert_held(&tid_agg_rx->reorder_lock);
810
Michal Kazior83eb9352014-07-16 12:09:31 +0200811 if (skb_queue_empty(skb_list))
Johannes Berg1edfb1a2009-11-25 17:46:16 +0100812 goto no_frame;
813
Michal Kazior83eb9352014-07-16 12:09:31 +0200814 if (!ieee80211_rx_reorder_ready(skb_list)) {
815 __skb_queue_purge(skb_list);
816 goto no_frame;
817 }
818
819 /* release frames from the reorder ring buffer */
Johannes Berg1edfb1a2009-11-25 17:46:16 +0100820 tid_agg_rx->stored_mpdu_num--;
Michal Kazior83eb9352014-07-16 12:09:31 +0200821 while ((skb = __skb_dequeue(skb_list))) {
822 status = IEEE80211_SKB_RXCB(skb);
823 status->rx_flags |= IEEE80211_RX_DEFERRED_RELEASE;
824 __skb_queue_tail(frames, skb);
825 }
Johannes Berg1edfb1a2009-11-25 17:46:16 +0100826
827no_frame:
Johannes Berg9a886582013-02-15 19:25:00 +0100828 tid_agg_rx->head_seq_num = ieee80211_sn_inc(tid_agg_rx->head_seq_num);
Johannes Berg1edfb1a2009-11-25 17:46:16 +0100829}
830
Johannes Bergd3b2fb52012-06-22 12:48:38 +0200831static void ieee80211_release_reorder_frames(struct ieee80211_sub_if_data *sdata,
Johannes Berg1edfb1a2009-11-25 17:46:16 +0100832 struct tid_ampdu_rx *tid_agg_rx,
Christian Lamparterf9e124f2013-02-04 17:44:44 +0000833 u16 head_seq_num,
834 struct sk_buff_head *frames)
Johannes Berg1edfb1a2009-11-25 17:46:16 +0100835{
836 int index;
837
Johannes Bergdd318572010-11-29 11:09:16 +0100838 lockdep_assert_held(&tid_agg_rx->reorder_lock);
839
Johannes Berg9a886582013-02-15 19:25:00 +0100840 while (ieee80211_sn_less(tid_agg_rx->head_seq_num, head_seq_num)) {
Karl Beldan2e3049b2013-10-24 15:53:32 +0200841 index = tid_agg_rx->head_seq_num % tid_agg_rx->buf_size;
Christian Lamparterf9e124f2013-02-04 17:44:44 +0000842 ieee80211_release_reorder_frame(sdata, tid_agg_rx, index,
843 frames);
Johannes Berg1edfb1a2009-11-25 17:46:16 +0100844 }
845}
846
847/*
848 * Timeout (in jiffies) for skb's that are waiting in the RX reorder buffer. If
849 * the skb was added to the buffer longer than this time ago, the earlier
850 * frames that have not yet been received are assumed to be lost and the skb
851 * can be released for processing. This may also release other skb's from the
852 * reorder buffer if there are no additional gaps between the frames.
Christian Lamparter2bff8eb2010-08-05 01:36:41 +0200853 *
854 * Callers must hold tid_agg_rx->reorder_lock.
Johannes Berg1edfb1a2009-11-25 17:46:16 +0100855 */
856#define HT_RX_REORDER_BUF_TIMEOUT (HZ / 10)
857
Johannes Bergd3b2fb52012-06-22 12:48:38 +0200858static void ieee80211_sta_reorder_release(struct ieee80211_sub_if_data *sdata,
Christian Lamparterf9e124f2013-02-04 17:44:44 +0000859 struct tid_ampdu_rx *tid_agg_rx,
860 struct sk_buff_head *frames)
Christian Lamparteraa0c8632010-08-05 01:36:04 +0200861{
Michal Kazior83eb9352014-07-16 12:09:31 +0200862 int index, i, j;
Christian Lamparteraa0c8632010-08-05 01:36:04 +0200863
Johannes Bergdd318572010-11-29 11:09:16 +0100864 lockdep_assert_held(&tid_agg_rx->reorder_lock);
865
Christian Lamparteraa0c8632010-08-05 01:36:04 +0200866 /* release the buffer until next missing frame */
Karl Beldan2e3049b2013-10-24 15:53:32 +0200867 index = tid_agg_rx->head_seq_num % tid_agg_rx->buf_size;
Michal Kazior83eb9352014-07-16 12:09:31 +0200868 if (!ieee80211_rx_reorder_ready(&tid_agg_rx->reorder_buf[index]) &&
Eliad Peller07ae2df2012-02-01 18:48:09 +0200869 tid_agg_rx->stored_mpdu_num) {
Christian Lamparteraa0c8632010-08-05 01:36:04 +0200870 /*
871 * No buffers ready to be released, but check whether any
872 * frames in the reorder buffer have timed out.
873 */
Christian Lamparteraa0c8632010-08-05 01:36:04 +0200874 int skipped = 1;
875 for (j = (index + 1) % tid_agg_rx->buf_size; j != index;
876 j = (j + 1) % tid_agg_rx->buf_size) {
Michal Kazior83eb9352014-07-16 12:09:31 +0200877 if (!ieee80211_rx_reorder_ready(
878 &tid_agg_rx->reorder_buf[j])) {
Christian Lamparteraa0c8632010-08-05 01:36:04 +0200879 skipped++;
880 continue;
881 }
Daniel Halperin499fe9a2011-03-24 16:01:48 -0700882 if (skipped &&
883 !time_after(jiffies, tid_agg_rx->reorder_time[j] +
Christian Lamparteraa0c8632010-08-05 01:36:04 +0200884 HT_RX_REORDER_BUF_TIMEOUT))
Christian Lamparter2bff8eb2010-08-05 01:36:41 +0200885 goto set_release_timer;
Christian Lamparteraa0c8632010-08-05 01:36:04 +0200886
Michal Kazior83eb9352014-07-16 12:09:31 +0200887 /* don't leave incomplete A-MSDUs around */
888 for (i = (index + 1) % tid_agg_rx->buf_size; i != j;
889 i = (i + 1) % tid_agg_rx->buf_size)
890 __skb_queue_purge(&tid_agg_rx->reorder_buf[i]);
891
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200892 ht_dbg_ratelimited(sdata,
893 "release an RX reorder frame due to timeout on earlier frames\n");
Christian Lamparterf9e124f2013-02-04 17:44:44 +0000894 ieee80211_release_reorder_frame(sdata, tid_agg_rx, j,
895 frames);
Christian Lamparteraa0c8632010-08-05 01:36:04 +0200896
897 /*
898 * Increment the head seq# also for the skipped slots.
899 */
900 tid_agg_rx->head_seq_num =
Johannes Berg9a886582013-02-15 19:25:00 +0100901 (tid_agg_rx->head_seq_num +
902 skipped) & IEEE80211_SN_MASK;
Christian Lamparteraa0c8632010-08-05 01:36:04 +0200903 skipped = 0;
904 }
Michal Kazior83eb9352014-07-16 12:09:31 +0200905 } else while (ieee80211_rx_reorder_ready(
906 &tid_agg_rx->reorder_buf[index])) {
Christian Lamparterf9e124f2013-02-04 17:44:44 +0000907 ieee80211_release_reorder_frame(sdata, tid_agg_rx, index,
908 frames);
Karl Beldan2e3049b2013-10-24 15:53:32 +0200909 index = tid_agg_rx->head_seq_num % tid_agg_rx->buf_size;
Christian Lamparteraa0c8632010-08-05 01:36:04 +0200910 }
Christian Lamparter2bff8eb2010-08-05 01:36:41 +0200911
912 if (tid_agg_rx->stored_mpdu_num) {
Karl Beldan2e3049b2013-10-24 15:53:32 +0200913 j = index = tid_agg_rx->head_seq_num % tid_agg_rx->buf_size;
Christian Lamparter2bff8eb2010-08-05 01:36:41 +0200914
915 for (; j != (index - 1) % tid_agg_rx->buf_size;
916 j = (j + 1) % tid_agg_rx->buf_size) {
Michal Kazior83eb9352014-07-16 12:09:31 +0200917 if (ieee80211_rx_reorder_ready(
918 &tid_agg_rx->reorder_buf[j]))
Christian Lamparter2bff8eb2010-08-05 01:36:41 +0200919 break;
920 }
921
922 set_release_timer:
923
Johannes Berg788211d2015-04-01 14:20:42 +0200924 if (!tid_agg_rx->removed)
925 mod_timer(&tid_agg_rx->reorder_timer,
926 tid_agg_rx->reorder_time[j] + 1 +
927 HT_RX_REORDER_BUF_TIMEOUT);
Christian Lamparter2bff8eb2010-08-05 01:36:41 +0200928 } else {
929 del_timer(&tid_agg_rx->reorder_timer);
930 }
Christian Lamparteraa0c8632010-08-05 01:36:04 +0200931}
932
Johannes Berg1edfb1a2009-11-25 17:46:16 +0100933/*
934 * As this function belongs to the RX path it must be under
935 * rcu_read_lock protection. It returns false if the frame
936 * can be processed immediately, true if it was consumed.
937 */
Johannes Bergd3b2fb52012-06-22 12:48:38 +0200938static bool ieee80211_sta_manage_reorder_buf(struct ieee80211_sub_if_data *sdata,
Johannes Berg1edfb1a2009-11-25 17:46:16 +0100939 struct tid_ampdu_rx *tid_agg_rx,
Christian Lamparterf9e124f2013-02-04 17:44:44 +0000940 struct sk_buff *skb,
941 struct sk_buff_head *frames)
Johannes Berg1edfb1a2009-11-25 17:46:16 +0100942{
943 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
Michal Kazior83eb9352014-07-16 12:09:31 +0200944 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
Johannes Berg1edfb1a2009-11-25 17:46:16 +0100945 u16 sc = le16_to_cpu(hdr->seq_ctrl);
946 u16 mpdu_seq_num = (sc & IEEE80211_SCTL_SEQ) >> 4;
947 u16 head_seq_num, buf_size;
948 int index;
Christian Lamparter2bff8eb2010-08-05 01:36:41 +0200949 bool ret = true;
Johannes Berg1edfb1a2009-11-25 17:46:16 +0100950
Johannes Bergdd318572010-11-29 11:09:16 +0100951 spin_lock(&tid_agg_rx->reorder_lock);
952
Michal Kazior4549cf22014-09-02 14:05:10 +0200953 /*
954 * Offloaded BA sessions have no known starting sequence number so pick
955 * one from first Rxed frame for this tid after BA was started.
956 */
957 if (unlikely(tid_agg_rx->auto_seq)) {
958 tid_agg_rx->auto_seq = false;
959 tid_agg_rx->ssn = mpdu_seq_num;
960 tid_agg_rx->head_seq_num = mpdu_seq_num;
961 }
962
Johannes Berg1edfb1a2009-11-25 17:46:16 +0100963 buf_size = tid_agg_rx->buf_size;
964 head_seq_num = tid_agg_rx->head_seq_num;
965
966 /* frame with out of date sequence number */
Johannes Berg9a886582013-02-15 19:25:00 +0100967 if (ieee80211_sn_less(mpdu_seq_num, head_seq_num)) {
Johannes Berg1edfb1a2009-11-25 17:46:16 +0100968 dev_kfree_skb(skb);
Christian Lamparter2bff8eb2010-08-05 01:36:41 +0200969 goto out;
Johannes Berg1edfb1a2009-11-25 17:46:16 +0100970 }
971
972 /*
973 * If frame the sequence number exceeds our buffering window
974 * size release some previous frames to make room for this one.
975 */
Johannes Berg9a886582013-02-15 19:25:00 +0100976 if (!ieee80211_sn_less(mpdu_seq_num, head_seq_num + buf_size)) {
977 head_seq_num = ieee80211_sn_inc(
978 ieee80211_sn_sub(mpdu_seq_num, buf_size));
Johannes Berg1edfb1a2009-11-25 17:46:16 +0100979 /* release stored frames up to new head to stack */
Johannes Bergd3b2fb52012-06-22 12:48:38 +0200980 ieee80211_release_reorder_frames(sdata, tid_agg_rx,
Christian Lamparterf9e124f2013-02-04 17:44:44 +0000981 head_seq_num, frames);
Johannes Berg1edfb1a2009-11-25 17:46:16 +0100982 }
983
984 /* Now the new frame is always in the range of the reordering buffer */
985
Karl Beldan2e3049b2013-10-24 15:53:32 +0200986 index = mpdu_seq_num % tid_agg_rx->buf_size;
Johannes Berg1edfb1a2009-11-25 17:46:16 +0100987
988 /* check if we already stored this frame */
Michal Kazior83eb9352014-07-16 12:09:31 +0200989 if (ieee80211_rx_reorder_ready(&tid_agg_rx->reorder_buf[index])) {
Johannes Berg1edfb1a2009-11-25 17:46:16 +0100990 dev_kfree_skb(skb);
Christian Lamparter2bff8eb2010-08-05 01:36:41 +0200991 goto out;
Johannes Berg1edfb1a2009-11-25 17:46:16 +0100992 }
993
994 /*
995 * If the current MPDU is in the right order and nothing else
996 * is stored we can process it directly, no need to buffer it.
Johannes Bergc835b212011-03-15 23:17:01 +0100997 * If it is first but there's something stored, we may be able
998 * to release frames after this one.
Johannes Berg1edfb1a2009-11-25 17:46:16 +0100999 */
1000 if (mpdu_seq_num == tid_agg_rx->head_seq_num &&
1001 tid_agg_rx->stored_mpdu_num == 0) {
Michal Kazior83eb9352014-07-16 12:09:31 +02001002 if (!(status->flag & RX_FLAG_AMSDU_MORE))
1003 tid_agg_rx->head_seq_num =
1004 ieee80211_sn_inc(tid_agg_rx->head_seq_num);
Christian Lamparter2bff8eb2010-08-05 01:36:41 +02001005 ret = false;
1006 goto out;
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001007 }
1008
1009 /* put the frame in the reordering buffer */
Michal Kazior83eb9352014-07-16 12:09:31 +02001010 __skb_queue_tail(&tid_agg_rx->reorder_buf[index], skb);
1011 if (!(status->flag & RX_FLAG_AMSDU_MORE)) {
1012 tid_agg_rx->reorder_time[index] = jiffies;
1013 tid_agg_rx->stored_mpdu_num++;
1014 ieee80211_sta_reorder_release(sdata, tid_agg_rx, frames);
1015 }
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001016
Christian Lamparter2bff8eb2010-08-05 01:36:41 +02001017 out:
1018 spin_unlock(&tid_agg_rx->reorder_lock);
1019 return ret;
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001020}
1021
1022/*
1023 * Reorder MPDUs from A-MPDUs, keeping them on a buffer. Returns
1024 * true if the MPDU was buffered, false if it should be processed.
1025 */
Christian Lamparterf9e124f2013-02-04 17:44:44 +00001026static void ieee80211_rx_reorder_ampdu(struct ieee80211_rx_data *rx,
1027 struct sk_buff_head *frames)
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001028{
Johannes Berg2569a822009-11-25 17:46:17 +01001029 struct sk_buff *skb = rx->skb;
1030 struct ieee80211_local *local = rx->local;
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001031 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
Johannes Berg2569a822009-11-25 17:46:17 +01001032 struct sta_info *sta = rx->sta;
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001033 struct tid_ampdu_rx *tid_agg_rx;
1034 u16 sc;
Thomas Pedersen6cc00d52011-11-03 21:11:11 -07001035 u8 tid, ack_policy;
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001036
Johannes Berg051a41f2013-11-20 11:28:27 +01001037 if (!ieee80211_is_data_qos(hdr->frame_control) ||
1038 is_multicast_ether_addr(hdr->addr1))
Johannes Berg2569a822009-11-25 17:46:17 +01001039 goto dont_reorder;
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001040
1041 /*
1042 * filter the QoS data rx stream according to
1043 * STA/TID and check if this STA/TID is on aggregation
1044 */
1045
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001046 if (!sta)
Johannes Berg2569a822009-11-25 17:46:17 +01001047 goto dont_reorder;
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001048
Thomas Pedersen6cc00d52011-11-03 21:11:11 -07001049 ack_policy = *ieee80211_get_qos_ctl(hdr) &
1050 IEEE80211_QOS_CTL_ACK_POLICY_MASK;
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001051 tid = *ieee80211_get_qos_ctl(hdr) & IEEE80211_QOS_CTL_TID_MASK;
1052
Johannes Berga87f7362010-06-10 10:21:38 +02001053 tid_agg_rx = rcu_dereference(sta->ampdu_mlme.tid_rx[tid]);
1054 if (!tid_agg_rx)
1055 goto dont_reorder;
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001056
1057 /* qos null data frames are excluded */
1058 if (unlikely(hdr->frame_control & cpu_to_le16(IEEE80211_STYPE_NULLFUNC)))
Johannes Berga87f7362010-06-10 10:21:38 +02001059 goto dont_reorder;
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001060
Thomas Pedersen6cc00d52011-11-03 21:11:11 -07001061 /* not part of a BA session */
1062 if (ack_policy != IEEE80211_QOS_CTL_ACK_POLICY_BLOCKACK &&
1063 ack_policy != IEEE80211_QOS_CTL_ACK_POLICY_NORMAL)
1064 goto dont_reorder;
1065
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001066 /* new, potentially un-ordered, ampdu frame - process it */
1067
1068 /* reset session timer */
1069 if (tid_agg_rx->timeout)
Felix Fietkau12d3952f2012-03-18 22:58:06 +01001070 tid_agg_rx->last_rx = jiffies;
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001071
1072 /* if this mpdu is fragmented - terminate rx aggregation session */
1073 sc = le16_to_cpu(hdr->seq_ctrl);
1074 if (sc & IEEE80211_SCTL_FRAG) {
Johannes Bergc1475ca2010-06-10 10:21:37 +02001075 skb->pkt_type = IEEE80211_SDATA_QUEUE_TYPE_FRAME;
Johannes Berg344eec62010-06-10 10:21:36 +02001076 skb_queue_tail(&rx->sdata->skb_queue, skb);
1077 ieee80211_queue_work(&local->hw, &rx->sdata->work);
Johannes Berg2569a822009-11-25 17:46:17 +01001078 return;
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001079 }
1080
Johannes Berga87f7362010-06-10 10:21:38 +02001081 /*
1082 * No locking needed -- we will only ever process one
1083 * RX packet at a time, and thus own tid_agg_rx. All
1084 * other code manipulating it needs to (and does) make
1085 * sure that we cannot get to it any more before doing
1086 * anything with it.
1087 */
Christian Lamparterf9e124f2013-02-04 17:44:44 +00001088 if (ieee80211_sta_manage_reorder_buf(rx->sdata, tid_agg_rx, skb,
1089 frames))
Johannes Berg2569a822009-11-25 17:46:17 +01001090 return;
1091
1092 dont_reorder:
Christian Lamparterf9e124f2013-02-04 17:44:44 +00001093 __skb_queue_tail(frames, skb);
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001094}
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001095
Johannes Berg49461622008-06-30 15:10:45 +02001096static ieee80211_rx_result debug_noinline
Johannes Berg03954422014-11-11 16:49:25 +01001097ieee80211_rx_h_check_dup(struct ieee80211_rx_data *rx)
Johannes Berg571ecf62007-07-27 15:43:22 +02001098{
Harvey Harrisona7767f92008-07-02 16:30:51 -07001099 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
Johannes Berg554891e2010-09-24 12:38:25 +02001100 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(rx->skb);
Johannes Berg571ecf62007-07-27 15:43:22 +02001101
Johannes Berg6b0f3272013-07-11 22:33:26 +02001102 /*
1103 * Drop duplicate 802.11 retransmissions
1104 * (IEEE 802.11-2012: 9.3.2.10 "Duplicate detection and recovery")
1105 */
Johannes Berg03954422014-11-11 16:49:25 +01001106
1107 if (rx->skb->len < 24)
1108 return RX_CONTINUE;
1109
1110 if (ieee80211_is_ctl(hdr->frame_control) ||
1111 ieee80211_is_qos_nullfunc(hdr->frame_control) ||
1112 is_multicast_ether_addr(hdr->addr1))
1113 return RX_CONTINUE;
1114
Johannes Berga732fa72015-10-14 18:27:07 +02001115 if (!rx->sta)
1116 return RX_CONTINUE;
1117
1118 if (unlikely(ieee80211_has_retry(hdr->frame_control) &&
1119 rx->sta->last_seq_ctrl[rx->seqno_idx] == hdr->seq_ctrl)) {
1120 I802_DEBUG_INC(rx->local->dot11FrameDuplicateCount);
Johannes Berge5a9f8d2015-10-16 17:54:47 +02001121 rx->sta->rx_stats.num_duplicates++;
Johannes Berga732fa72015-10-14 18:27:07 +02001122 return RX_DROP_UNUSABLE;
1123 } else if (!(status->flag & RX_FLAG_AMSDU_MORE)) {
1124 rx->sta->last_seq_ctrl[rx->seqno_idx] = hdr->seq_ctrl;
Johannes Berg571ecf62007-07-27 15:43:22 +02001125 }
1126
Johannes Berg03954422014-11-11 16:49:25 +01001127 return RX_CONTINUE;
1128}
1129
1130static ieee80211_rx_result debug_noinline
1131ieee80211_rx_h_check(struct ieee80211_rx_data *rx)
1132{
1133 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
1134
Johannes Berg571ecf62007-07-27 15:43:22 +02001135 /* Drop disallowed frame classes based on STA auth/assoc state;
1136 * IEEE 802.11, Chap 5.5.
1137 *
Johannes Bergccd7b362008-09-11 00:01:56 +02001138 * mac80211 filters only based on association state, i.e. it drops
1139 * Class 3 frames from not associated stations. hostapd sends
Johannes Berg571ecf62007-07-27 15:43:22 +02001140 * deauth/disassoc frames when needed. In addition, hostapd is
1141 * responsible for filtering on both auth and assoc states.
1142 */
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001143
Johannes Berg902acc72008-02-23 15:17:19 +01001144 if (ieee80211_vif_is_mesh(&rx->sdata->vif))
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001145 return ieee80211_rx_mesh_check(rx);
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001146
Harvey Harrisona7767f92008-07-02 16:30:51 -07001147 if (unlikely((ieee80211_is_data(hdr->frame_control) ||
1148 ieee80211_is_pspoll(hdr->frame_control)) &&
Johannes Berg05c914f2008-09-11 00:01:58 +02001149 rx->sdata->vif.type != NL80211_IFTYPE_ADHOC &&
Bill Jordan1be7fe82010-10-01 11:20:41 -04001150 rx->sdata->vif.type != NL80211_IFTYPE_WDS &&
Rostislav Lisovy239281f2014-11-03 10:33:19 +01001151 rx->sdata->vif.type != NL80211_IFTYPE_OCB &&
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001152 (!rx->sta || !test_sta_flag(rx->sta, WLAN_STA_ASSOC)))) {
Johannes Berg7852e362012-01-20 13:55:24 +01001153 /*
1154 * accept port control frames from the AP even when it's not
1155 * yet marked ASSOC to prevent a race where we don't set the
1156 * assoc bit quickly enough before it sends the first frame
1157 */
1158 if (rx->sta && rx->sdata->vif.type == NL80211_IFTYPE_STATION &&
Guy Eilam2a33bee2011-08-17 15:18:15 +03001159 ieee80211_is_data_present(hdr->frame_control)) {
Johannes Berg6dbda2d2012-10-26 00:41:23 +02001160 unsigned int hdrlen;
1161 __be16 ethertype;
Guy Eilam2a33bee2011-08-17 15:18:15 +03001162
Johannes Berg6dbda2d2012-10-26 00:41:23 +02001163 hdrlen = ieee80211_hdrlen(hdr->frame_control);
1164
1165 if (rx->skb->len < hdrlen + 8)
1166 return RX_DROP_MONITOR;
1167
1168 skb_copy_bits(rx->skb, hdrlen + 6, &ethertype, 2);
1169 if (ethertype == rx->sdata->control_port_protocol)
Guy Eilam2a33bee2011-08-17 15:18:15 +03001170 return RX_CONTINUE;
1171 }
Johannes Berg21fc7562011-11-04 11:18:13 +01001172
1173 if (rx->sdata->vif.type == NL80211_IFTYPE_AP &&
1174 cfg80211_rx_spurious_frame(rx->sdata->dev,
1175 hdr->addr2,
1176 GFP_ATOMIC))
1177 return RX_DROP_UNUSABLE;
1178
Johannes Berge4c26ad2008-01-31 19:48:21 +01001179 return RX_DROP_MONITOR;
Guy Eilam2a33bee2011-08-17 15:18:15 +03001180 }
Johannes Berg571ecf62007-07-27 15:43:22 +02001181
Johannes Berg9ae54c82008-01-31 19:48:20 +01001182 return RX_CONTINUE;
Johannes Berg570bd532007-07-27 15:43:22 +02001183}
1184
1185
Johannes Berg49461622008-06-30 15:10:45 +02001186static ieee80211_rx_result debug_noinline
Kalle Valo572e0012009-02-10 17:09:31 +02001187ieee80211_rx_h_check_more_data(struct ieee80211_rx_data *rx)
1188{
1189 struct ieee80211_local *local;
1190 struct ieee80211_hdr *hdr;
1191 struct sk_buff *skb;
1192
1193 local = rx->local;
1194 skb = rx->skb;
1195 hdr = (struct ieee80211_hdr *) skb->data;
1196
1197 if (!local->pspolling)
1198 return RX_CONTINUE;
1199
1200 if (!ieee80211_has_fromds(hdr->frame_control))
1201 /* this is not from AP */
1202 return RX_CONTINUE;
1203
1204 if (!ieee80211_is_data(hdr->frame_control))
1205 return RX_CONTINUE;
1206
1207 if (!ieee80211_has_moredata(hdr->frame_control)) {
1208 /* AP has no more frames buffered for us */
1209 local->pspolling = false;
1210 return RX_CONTINUE;
1211 }
1212
1213 /* more data bit is set, let's request a new frame from the AP */
1214 ieee80211_send_pspoll(local, rx->sdata);
1215
1216 return RX_CONTINUE;
1217}
1218
Marco Porschd012a602012-10-10 12:39:50 -07001219static void sta_ps_start(struct sta_info *sta)
Johannes Berg571ecf62007-07-27 15:43:22 +02001220{
Johannes Berg133b8222008-09-16 14:18:59 +02001221 struct ieee80211_sub_if_data *sdata = sta->sdata;
Christian Lamparter4571d3b2008-11-30 00:48:41 +01001222 struct ieee80211_local *local = sdata->local;
Marco Porschd012a602012-10-10 12:39:50 -07001223 struct ps_data *ps;
Felix Fietkauba8c3d62015-03-27 21:30:37 +01001224 int tid;
Joe Perches0795af52007-10-03 17:59:30 -07001225
Marco Porschd012a602012-10-10 12:39:50 -07001226 if (sta->sdata->vif.type == NL80211_IFTYPE_AP ||
1227 sta->sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
1228 ps = &sdata->bss->ps;
1229 else
1230 return;
1231
1232 atomic_inc(&ps->num_sta_ps);
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001233 set_sta_flag(sta, WLAN_STA_PS_STA);
Johannes Berg30686bf2015-06-02 21:39:54 +02001234 if (!ieee80211_hw_check(&local->hw, AP_LINK_PS))
Arik Nemtsovd057e5a2011-01-31 22:29:13 +02001235 drv_sta_notify(local, sdata, STA_NOTIFY_SLEEP, &sta->sta);
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02001236 ps_dbg(sdata, "STA %pM aid %d enters power save mode\n",
1237 sta->sta.addr, sta->sta.aid);
Felix Fietkauba8c3d62015-03-27 21:30:37 +01001238
Johannes Berg17c18bf2015-03-21 15:25:43 +01001239 ieee80211_clear_fast_xmit(sta);
1240
Felix Fietkauba8c3d62015-03-27 21:30:37 +01001241 if (!sta->sta.txq[0])
1242 return;
1243
1244 for (tid = 0; tid < ARRAY_SIZE(sta->sta.txq); tid++) {
1245 struct txq_info *txqi = to_txq_info(sta->sta.txq[tid]);
1246
1247 if (!skb_queue_len(&txqi->queue))
1248 set_bit(tid, &sta->txq_buffered_tids);
1249 else
1250 clear_bit(tid, &sta->txq_buffered_tids);
1251 }
Johannes Berg571ecf62007-07-27 15:43:22 +02001252}
1253
Marco Porschd012a602012-10-10 12:39:50 -07001254static void sta_ps_end(struct sta_info *sta)
Johannes Berg571ecf62007-07-27 15:43:22 +02001255{
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02001256 ps_dbg(sta->sdata, "STA %pM aid %d exits power save mode\n",
1257 sta->sta.addr, sta->sta.aid);
Johannes Berg004c8722008-02-20 11:21:35 +01001258
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001259 if (test_sta_flag(sta, WLAN_STA_PS_DRIVER)) {
Johannes Berge3685e02014-02-20 11:19:58 +01001260 /*
1261 * Clear the flag only if the other one is still set
1262 * so that the TX path won't start TX'ing new frames
1263 * directly ... In the case that the driver flag isn't
1264 * set ieee80211_sta_ps_deliver_wakeup() will clear it.
1265 */
1266 clear_sta_flag(sta, WLAN_STA_PS_STA);
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02001267 ps_dbg(sta->sdata, "STA %pM aid %d driver-ps-blocked\n",
1268 sta->sta.addr, sta->sta.aid);
Johannes Bergaf818582009-11-06 11:35:50 +01001269 return;
1270 }
1271
Johannes Berg5ac2e352014-05-27 16:32:27 +02001272 set_sta_flag(sta, WLAN_STA_PS_DELIVER);
1273 clear_sta_flag(sta, WLAN_STA_PS_STA);
Johannes Bergaf818582009-11-06 11:35:50 +01001274 ieee80211_sta_ps_deliver_wakeup(sta);
Johannes Berg571ecf62007-07-27 15:43:22 +02001275}
1276
Johannes Bergcf471612015-06-16 16:16:38 +02001277int ieee80211_sta_ps_transition(struct ieee80211_sta *pubsta, bool start)
Arik Nemtsovd057e5a2011-01-31 22:29:13 +02001278{
Johannes Bergcf471612015-06-16 16:16:38 +02001279 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
Arik Nemtsovd057e5a2011-01-31 22:29:13 +02001280 bool in_ps;
1281
Johannes Bergcf471612015-06-16 16:16:38 +02001282 WARN_ON(!ieee80211_hw_check(&sta->local->hw, AP_LINK_PS));
Arik Nemtsovd057e5a2011-01-31 22:29:13 +02001283
1284 /* Don't let the same PS state be set twice */
Johannes Bergcf471612015-06-16 16:16:38 +02001285 in_ps = test_sta_flag(sta, WLAN_STA_PS_STA);
Arik Nemtsovd057e5a2011-01-31 22:29:13 +02001286 if ((start && in_ps) || (!start && !in_ps))
1287 return -EINVAL;
1288
1289 if (start)
Johannes Bergcf471612015-06-16 16:16:38 +02001290 sta_ps_start(sta);
Arik Nemtsovd057e5a2011-01-31 22:29:13 +02001291 else
Johannes Bergcf471612015-06-16 16:16:38 +02001292 sta_ps_end(sta);
Arik Nemtsovd057e5a2011-01-31 22:29:13 +02001293
1294 return 0;
1295}
1296EXPORT_SYMBOL(ieee80211_sta_ps_transition);
1297
Johannes Berg49461622008-06-30 15:10:45 +02001298static ieee80211_rx_result debug_noinline
Johannes Berg47086fc2011-09-29 16:04:33 +02001299ieee80211_rx_h_uapsd_and_pspoll(struct ieee80211_rx_data *rx)
1300{
1301 struct ieee80211_sub_if_data *sdata = rx->sdata;
1302 struct ieee80211_hdr *hdr = (void *)rx->skb->data;
1303 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(rx->skb);
1304 int tid, ac;
1305
Johannes Berg5c900672015-04-22 14:48:34 +02001306 if (!rx->sta)
Johannes Berg47086fc2011-09-29 16:04:33 +02001307 return RX_CONTINUE;
1308
1309 if (sdata->vif.type != NL80211_IFTYPE_AP &&
1310 sdata->vif.type != NL80211_IFTYPE_AP_VLAN)
1311 return RX_CONTINUE;
1312
1313 /*
1314 * The device handles station powersave, so don't do anything about
1315 * uAPSD and PS-Poll frames (the latter shouldn't even come up from
1316 * it to mac80211 since they're handled.)
1317 */
Johannes Berg30686bf2015-06-02 21:39:54 +02001318 if (ieee80211_hw_check(&sdata->local->hw, AP_LINK_PS))
Johannes Berg47086fc2011-09-29 16:04:33 +02001319 return RX_CONTINUE;
1320
1321 /*
1322 * Don't do anything if the station isn't already asleep. In
1323 * the uAPSD case, the station will probably be marked asleep,
1324 * in the PS-Poll case the station must be confused ...
1325 */
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001326 if (!test_sta_flag(rx->sta, WLAN_STA_PS_STA))
Johannes Berg47086fc2011-09-29 16:04:33 +02001327 return RX_CONTINUE;
1328
1329 if (unlikely(ieee80211_is_pspoll(hdr->frame_control))) {
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001330 if (!test_sta_flag(rx->sta, WLAN_STA_SP)) {
1331 if (!test_sta_flag(rx->sta, WLAN_STA_PS_DRIVER))
Johannes Bergdeeaee12011-09-29 16:04:35 +02001332 ieee80211_sta_ps_deliver_poll_response(rx->sta);
1333 else
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001334 set_sta_flag(rx->sta, WLAN_STA_PSPOLL);
Johannes Bergdeeaee12011-09-29 16:04:35 +02001335 }
Johannes Berg47086fc2011-09-29 16:04:33 +02001336
1337 /* Free PS Poll skb here instead of returning RX_DROP that would
1338 * count as an dropped frame. */
1339 dev_kfree_skb(rx->skb);
1340
1341 return RX_QUEUED;
1342 } else if (!ieee80211_has_morefrags(hdr->frame_control) &&
1343 !(status->rx_flags & IEEE80211_RX_DEFERRED_RELEASE) &&
1344 ieee80211_has_pm(hdr->frame_control) &&
1345 (ieee80211_is_data_qos(hdr->frame_control) ||
1346 ieee80211_is_qos_nullfunc(hdr->frame_control))) {
1347 tid = *ieee80211_get_qos_ctl(hdr) & IEEE80211_QOS_CTL_TID_MASK;
1348 ac = ieee802_1d_to_ac[tid & 7];
1349
1350 /*
1351 * If this AC is not trigger-enabled do nothing.
1352 *
1353 * NB: This could/should check a separate bitmap of trigger-
1354 * enabled queues, but for now we only implement uAPSD w/o
1355 * TSPEC changes to the ACs, so they're always the same.
1356 */
1357 if (!(rx->sta->sta.uapsd_queues & BIT(ac)))
1358 return RX_CONTINUE;
1359
1360 /* if we are in a service period, do nothing */
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001361 if (test_sta_flag(rx->sta, WLAN_STA_SP))
Johannes Berg47086fc2011-09-29 16:04:33 +02001362 return RX_CONTINUE;
1363
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001364 if (!test_sta_flag(rx->sta, WLAN_STA_PS_DRIVER))
Johannes Berg47086fc2011-09-29 16:04:33 +02001365 ieee80211_sta_ps_deliver_uapsd(rx->sta);
1366 else
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001367 set_sta_flag(rx->sta, WLAN_STA_UAPSD);
Johannes Berg47086fc2011-09-29 16:04:33 +02001368 }
1369
1370 return RX_CONTINUE;
1371}
1372
1373static ieee80211_rx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +01001374ieee80211_rx_h_sta_process(struct ieee80211_rx_data *rx)
Johannes Berg571ecf62007-07-27 15:43:22 +02001375{
1376 struct sta_info *sta = rx->sta;
Johannes Bergeb9fb5b2009-11-16 13:58:20 +01001377 struct sk_buff *skb = rx->skb;
1378 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
1379 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Felix Fietkauef0621e2013-04-22 16:29:31 +02001380 int i;
Johannes Berg571ecf62007-07-27 15:43:22 +02001381
1382 if (!sta)
Johannes Berg9ae54c82008-01-31 19:48:20 +01001383 return RX_CONTINUE;
Johannes Berg571ecf62007-07-27 15:43:22 +02001384
Johannes Bergb291ba12009-07-10 15:29:03 +02001385 /*
1386 * Update last_rx only for IBSS packets which are for the current
Antonio Quartullie584da5e2012-11-25 23:13:42 +01001387 * BSSID and for station already AUTHORIZED to avoid keeping the
1388 * current IBSS network alive in cases where other STAs start
1389 * using different BSSID. This will also give the station another
1390 * chance to restart the authentication/authorization in case
1391 * something went wrong the first time.
Johannes Bergb291ba12009-07-10 15:29:03 +02001392 */
Johannes Berg05c914f2008-09-11 00:01:58 +02001393 if (rx->sdata->vif.type == NL80211_IFTYPE_ADHOC) {
Ron Rindjunsky71364712007-12-25 17:00:36 +02001394 u8 *bssid = ieee80211_get_bssid(hdr, rx->skb->len,
Johannes Berg05c914f2008-09-11 00:01:58 +02001395 NL80211_IFTYPE_ADHOC);
Antonio Quartullie584da5e2012-11-25 23:13:42 +01001396 if (ether_addr_equal(bssid, rx->sdata->u.ibss.bssid) &&
1397 test_sta_flag(sta, WLAN_STA_AUTHORIZED)) {
Johannes Berge5a9f8d2015-10-16 17:54:47 +02001398 sta->rx_stats.last_rx = jiffies;
Henning Roggef4ebddf2014-05-01 10:03:46 +02001399 if (ieee80211_is_data(hdr->frame_control) &&
1400 !is_multicast_ether_addr(hdr->addr1)) {
Johannes Berge5a9f8d2015-10-16 17:54:47 +02001401 sta->rx_stats.last_rate_idx =
1402 status->rate_idx;
1403 sta->rx_stats.last_rate_flag =
1404 status->flag;
1405 sta->rx_stats.last_rate_vht_flag =
1406 status->vht_flag;
1407 sta->rx_stats.last_rate_vht_nss =
1408 status->vht_nss;
Felix Fietkau3af63342011-02-27 22:08:01 +01001409 }
1410 }
Rostislav Lisovy239281f2014-11-03 10:33:19 +01001411 } else if (rx->sdata->vif.type == NL80211_IFTYPE_OCB) {
Johannes Berge5a9f8d2015-10-16 17:54:47 +02001412 sta->rx_stats.last_rx = jiffies;
Johannes Bergb291ba12009-07-10 15:29:03 +02001413 } else if (!is_multicast_ether_addr(hdr->addr1)) {
1414 /*
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001415 * Mesh beacons will update last_rx when if they are found to
1416 * match the current local configuration when processed.
Johannes Berg571ecf62007-07-27 15:43:22 +02001417 */
Johannes Berge5a9f8d2015-10-16 17:54:47 +02001418 sta->rx_stats.last_rx = jiffies;
Felix Fietkau3af63342011-02-27 22:08:01 +01001419 if (ieee80211_is_data(hdr->frame_control)) {
Johannes Berge5a9f8d2015-10-16 17:54:47 +02001420 sta->rx_stats.last_rate_idx = status->rate_idx;
1421 sta->rx_stats.last_rate_flag = status->flag;
1422 sta->rx_stats.last_rate_vht_flag = status->vht_flag;
1423 sta->rx_stats.last_rate_vht_nss = status->vht_nss;
Felix Fietkau3af63342011-02-27 22:08:01 +01001424 }
Johannes Berg571ecf62007-07-27 15:43:22 +02001425 }
1426
Kalle Valo3cf335d2009-03-22 21:57:06 +02001427 if (rx->sdata->vif.type == NL80211_IFTYPE_STATION)
1428 ieee80211_sta_rx_notify(rx->sdata, hdr);
1429
Johannes Berge5a9f8d2015-10-16 17:54:47 +02001430 sta->rx_stats.fragments++;
1431 sta->rx_stats.bytes += rx->skb->len;
Felix Fietkaufe8431f2012-03-01 18:00:07 +01001432 if (!(status->flag & RX_FLAG_NO_SIGNAL_VAL)) {
Johannes Berge5a9f8d2015-10-16 17:54:47 +02001433 sta->rx_stats.last_signal = status->signal;
1434 ewma_signal_add(&sta->rx_stats.avg_signal, -status->signal);
Felix Fietkaufe8431f2012-03-01 18:00:07 +01001435 }
Johannes Berg571ecf62007-07-27 15:43:22 +02001436
Felix Fietkauef0621e2013-04-22 16:29:31 +02001437 if (status->chains) {
Johannes Berge5a9f8d2015-10-16 17:54:47 +02001438 sta->rx_stats.chains = status->chains;
Felix Fietkauef0621e2013-04-22 16:29:31 +02001439 for (i = 0; i < ARRAY_SIZE(status->chain_signal); i++) {
1440 int signal = status->chain_signal[i];
1441
1442 if (!(status->chains & BIT(i)))
1443 continue;
1444
Johannes Berge5a9f8d2015-10-16 17:54:47 +02001445 sta->rx_stats.chain_signal_last[i] = signal;
1446 ewma_signal_add(&sta->rx_stats.chain_signal_avg[i],
1447 -signal);
Felix Fietkauef0621e2013-04-22 16:29:31 +02001448 }
1449 }
1450
Johannes Berg72eaa432008-11-26 15:02:58 +01001451 /*
1452 * Change STA power saving mode only at the end of a frame
1453 * exchange sequence.
1454 */
Johannes Berg30686bf2015-06-02 21:39:54 +02001455 if (!ieee80211_hw_check(&sta->local->hw, AP_LINK_PS) &&
Arik Nemtsovd057e5a2011-01-31 22:29:13 +02001456 !ieee80211_has_morefrags(hdr->frame_control) &&
Christian Lamparter4cfda472010-12-27 23:21:26 +01001457 !(status->rx_flags & IEEE80211_RX_DEFERRED_RELEASE) &&
Johannes Berg05c914f2008-09-11 00:01:58 +02001458 (rx->sdata->vif.type == NL80211_IFTYPE_AP ||
Johannes Bergb4ba5442014-01-24 14:41:44 +01001459 rx->sdata->vif.type == NL80211_IFTYPE_AP_VLAN) &&
1460 /* PM bit is only checked in frames where it isn't reserved,
1461 * in AP mode it's reserved in non-bufferable management frames
1462 * (cf. IEEE 802.11-2012 8.2.4.1.7 Power Management field)
1463 */
1464 (!ieee80211_is_mgmt(hdr->frame_control) ||
1465 ieee80211_is_bufferable_mmpdu(hdr->frame_control))) {
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001466 if (test_sta_flag(sta, WLAN_STA_PS_STA)) {
Johannes Bergb4ba5442014-01-24 14:41:44 +01001467 if (!ieee80211_has_pm(hdr->frame_control))
Marco Porschd012a602012-10-10 12:39:50 -07001468 sta_ps_end(sta);
Johannes Berg72eaa432008-11-26 15:02:58 +01001469 } else {
1470 if (ieee80211_has_pm(hdr->frame_control))
Marco Porschd012a602012-10-10 12:39:50 -07001471 sta_ps_start(sta);
Johannes Berg72eaa432008-11-26 15:02:58 +01001472 }
Johannes Berg571ecf62007-07-27 15:43:22 +02001473 }
1474
Marco Porsch3f52b7e2013-01-30 18:14:08 +01001475 /* mesh power save support */
1476 if (ieee80211_vif_is_mesh(&rx->sdata->vif))
1477 ieee80211_mps_rx_h_sta_process(sta, hdr);
1478
Johannes Berg22403de2009-10-30 12:55:03 +01001479 /*
1480 * Drop (qos-)data::nullfunc frames silently, since they
1481 * are used only to control station power saving mode.
1482 */
1483 if (ieee80211_is_nullfunc(hdr->frame_control) ||
1484 ieee80211_is_qos_nullfunc(hdr->frame_control)) {
Johannes Berg571ecf62007-07-27 15:43:22 +02001485 I802_DEBUG_INC(rx->local->rx_handlers_drop_nullfunc);
Felix Fietkaud5242152010-01-08 18:06:26 +01001486
1487 /*
1488 * If we receive a 4-addr nullfunc frame from a STA
Johannes Berge7f4a942011-11-04 11:18:20 +01001489 * that was not moved to a 4-addr STA vlan yet send
1490 * the event to userspace and for older hostapd drop
1491 * the frame to the monitor interface.
Felix Fietkaud5242152010-01-08 18:06:26 +01001492 */
1493 if (ieee80211_has_a4(hdr->frame_control) &&
1494 (rx->sdata->vif.type == NL80211_IFTYPE_AP ||
1495 (rx->sdata->vif.type == NL80211_IFTYPE_AP_VLAN &&
Johannes Berge7f4a942011-11-04 11:18:20 +01001496 !rx->sdata->u.vlan.sta))) {
1497 if (!test_and_set_sta_flag(sta, WLAN_STA_4ADDR_EVENT))
1498 cfg80211_rx_unexpected_4addr_frame(
1499 rx->sdata->dev, sta->sta.addr,
1500 GFP_ATOMIC);
Felix Fietkaud5242152010-01-08 18:06:26 +01001501 return RX_DROP_MONITOR;
Johannes Berge7f4a942011-11-04 11:18:20 +01001502 }
Johannes Berg22403de2009-10-30 12:55:03 +01001503 /*
1504 * Update counter and free packet here to avoid
1505 * counting this as a dropped packed.
1506 */
Johannes Berge5a9f8d2015-10-16 17:54:47 +02001507 sta->rx_stats.packets++;
Johannes Berg571ecf62007-07-27 15:43:22 +02001508 dev_kfree_skb(rx->skb);
Johannes Berg9ae54c82008-01-31 19:48:20 +01001509 return RX_QUEUED;
Johannes Berg571ecf62007-07-27 15:43:22 +02001510 }
1511
Johannes Berg9ae54c82008-01-31 19:48:20 +01001512 return RX_CONTINUE;
Johannes Berg571ecf62007-07-27 15:43:22 +02001513} /* ieee80211_rx_h_sta_process */
1514
Johan Almbladh86c228a2013-08-14 15:29:46 +02001515static ieee80211_rx_result debug_noinline
1516ieee80211_rx_h_decrypt(struct ieee80211_rx_data *rx)
1517{
1518 struct sk_buff *skb = rx->skb;
1519 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
1520 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
1521 int keyidx;
1522 int hdrlen;
1523 ieee80211_rx_result result = RX_DROP_UNUSABLE;
1524 struct ieee80211_key *sta_ptk = NULL;
1525 int mmie_keyidx = -1;
1526 __le16 fc;
Max Stepanov2475b1cc2013-03-24 14:23:27 +02001527 const struct ieee80211_cipher_scheme *cs = NULL;
Johan Almbladh86c228a2013-08-14 15:29:46 +02001528
1529 /*
1530 * Key selection 101
1531 *
1532 * There are four types of keys:
1533 * - GTK (group keys)
1534 * - IGTK (group keys for management frames)
1535 * - PTK (pairwise keys)
1536 * - STK (station-to-station pairwise keys)
1537 *
1538 * When selecting a key, we have to distinguish between multicast
1539 * (including broadcast) and unicast frames, the latter can only
1540 * use PTKs and STKs while the former always use GTKs and IGTKs.
1541 * Unless, of course, actual WEP keys ("pre-RSNA") are used, then
1542 * unicast frames can also use key indices like GTKs. Hence, if we
1543 * don't have a PTK/STK we check the key index for a WEP key.
1544 *
1545 * Note that in a regular BSS, multicast frames are sent by the
1546 * AP only, associated stations unicast the frame to the AP first
1547 * which then multicasts it on their behalf.
1548 *
1549 * There is also a slight problem in IBSS mode: GTKs are negotiated
1550 * with each station, that is something we don't currently handle.
1551 * The spec seems to expect that one negotiates the same key with
1552 * every station but there's no such requirement; VLANs could be
1553 * possible.
1554 */
1555
Johan Almbladh86c228a2013-08-14 15:29:46 +02001556 /* start without a key */
1557 rx->key = NULL;
Johan Almbladh86c228a2013-08-14 15:29:46 +02001558 fc = hdr->frame_control;
1559
Max Stepanov2475b1cc2013-03-24 14:23:27 +02001560 if (rx->sta) {
1561 int keyid = rx->sta->ptk_idx;
1562
1563 if (ieee80211_has_protected(fc) && rx->sta->cipher_scheme) {
1564 cs = rx->sta->cipher_scheme;
1565 keyid = iwl80211_get_cs_keyid(cs, rx->skb);
1566 if (unlikely(keyid < 0))
1567 return RX_DROP_UNUSABLE;
1568 }
1569 sta_ptk = rcu_dereference(rx->sta->ptk[keyid]);
1570 }
1571
Johan Almbladh86c228a2013-08-14 15:29:46 +02001572 if (!ieee80211_has_protected(fc))
1573 mmie_keyidx = ieee80211_get_mmie_keyidx(rx->skb);
1574
1575 if (!is_multicast_ether_addr(hdr->addr1) && sta_ptk) {
1576 rx->key = sta_ptk;
1577 if ((status->flag & RX_FLAG_DECRYPTED) &&
1578 (status->flag & RX_FLAG_IV_STRIPPED))
1579 return RX_CONTINUE;
1580 /* Skip decryption if the frame is not protected. */
1581 if (!ieee80211_has_protected(fc))
1582 return RX_CONTINUE;
1583 } else if (mmie_keyidx >= 0) {
1584 /* Broadcast/multicast robust management frame / BIP */
1585 if ((status->flag & RX_FLAG_DECRYPTED) &&
1586 (status->flag & RX_FLAG_IV_STRIPPED))
1587 return RX_CONTINUE;
1588
1589 if (mmie_keyidx < NUM_DEFAULT_KEYS ||
1590 mmie_keyidx >= NUM_DEFAULT_KEYS + NUM_DEFAULT_MGMT_KEYS)
1591 return RX_DROP_MONITOR; /* unexpected BIP keyidx */
1592 if (rx->sta)
1593 rx->key = rcu_dereference(rx->sta->gtk[mmie_keyidx]);
1594 if (!rx->key)
1595 rx->key = rcu_dereference(rx->sdata->keys[mmie_keyidx]);
1596 } else if (!ieee80211_has_protected(fc)) {
1597 /*
1598 * The frame was not protected, so skip decryption. However, we
1599 * need to set rx->key if there is a key that could have been
1600 * used so that the frame may be dropped if encryption would
1601 * have been expected.
1602 */
1603 struct ieee80211_key *key = NULL;
1604 struct ieee80211_sub_if_data *sdata = rx->sdata;
1605 int i;
1606
1607 if (ieee80211_is_mgmt(fc) &&
1608 is_multicast_ether_addr(hdr->addr1) &&
1609 (key = rcu_dereference(rx->sdata->default_mgmt_key)))
1610 rx->key = key;
1611 else {
1612 if (rx->sta) {
1613 for (i = 0; i < NUM_DEFAULT_KEYS; i++) {
1614 key = rcu_dereference(rx->sta->gtk[i]);
1615 if (key)
1616 break;
1617 }
1618 }
1619 if (!key) {
1620 for (i = 0; i < NUM_DEFAULT_KEYS; i++) {
1621 key = rcu_dereference(sdata->keys[i]);
1622 if (key)
1623 break;
1624 }
1625 }
1626 if (key)
1627 rx->key = key;
1628 }
1629 return RX_CONTINUE;
1630 } else {
1631 u8 keyid;
Max Stepanov2475b1cc2013-03-24 14:23:27 +02001632
Johan Almbladh86c228a2013-08-14 15:29:46 +02001633 /*
1634 * The device doesn't give us the IV so we won't be
1635 * able to look up the key. That's ok though, we
1636 * don't need to decrypt the frame, we just won't
1637 * be able to keep statistics accurate.
1638 * Except for key threshold notifications, should
1639 * we somehow allow the driver to tell us which key
1640 * the hardware used if this flag is set?
1641 */
1642 if ((status->flag & RX_FLAG_DECRYPTED) &&
1643 (status->flag & RX_FLAG_IV_STRIPPED))
1644 return RX_CONTINUE;
1645
1646 hdrlen = ieee80211_hdrlen(fc);
1647
Max Stepanov2475b1cc2013-03-24 14:23:27 +02001648 if (cs) {
1649 keyidx = iwl80211_get_cs_keyid(cs, rx->skb);
Johan Almbladh86c228a2013-08-14 15:29:46 +02001650
Max Stepanov2475b1cc2013-03-24 14:23:27 +02001651 if (unlikely(keyidx < 0))
1652 return RX_DROP_UNUSABLE;
1653 } else {
1654 if (rx->skb->len < 8 + hdrlen)
1655 return RX_DROP_UNUSABLE; /* TODO: count this? */
1656 /*
1657 * no need to call ieee80211_wep_get_keyidx,
1658 * it verifies a bunch of things we've done already
1659 */
1660 skb_copy_bits(rx->skb, hdrlen + 3, &keyid, 1);
1661 keyidx = keyid >> 6;
1662 }
Johan Almbladh86c228a2013-08-14 15:29:46 +02001663
1664 /* check per-station GTK first, if multicast packet */
1665 if (is_multicast_ether_addr(hdr->addr1) && rx->sta)
1666 rx->key = rcu_dereference(rx->sta->gtk[keyidx]);
1667
1668 /* if not found, try default key */
1669 if (!rx->key) {
1670 rx->key = rcu_dereference(rx->sdata->keys[keyidx]);
1671
1672 /*
1673 * RSNA-protected unicast frames should always be
1674 * sent with pairwise or station-to-station keys,
1675 * but for WEP we allow using a key index as well.
1676 */
1677 if (rx->key &&
1678 rx->key->conf.cipher != WLAN_CIPHER_SUITE_WEP40 &&
1679 rx->key->conf.cipher != WLAN_CIPHER_SUITE_WEP104 &&
1680 !is_multicast_ether_addr(hdr->addr1))
1681 rx->key = NULL;
1682 }
1683 }
1684
1685 if (rx->key) {
1686 if (unlikely(rx->key->flags & KEY_FLAG_TAINTED))
1687 return RX_DROP_MONITOR;
1688
Johan Almbladh86c228a2013-08-14 15:29:46 +02001689 /* TODO: add threshold stuff again */
1690 } else {
1691 return RX_DROP_MONITOR;
1692 }
1693
1694 switch (rx->key->conf.cipher) {
1695 case WLAN_CIPHER_SUITE_WEP40:
1696 case WLAN_CIPHER_SUITE_WEP104:
1697 result = ieee80211_crypto_wep_decrypt(rx);
1698 break;
1699 case WLAN_CIPHER_SUITE_TKIP:
1700 result = ieee80211_crypto_tkip_decrypt(rx);
1701 break;
1702 case WLAN_CIPHER_SUITE_CCMP:
Jouni Malinen2b2ba0d2015-01-24 19:52:07 +02001703 result = ieee80211_crypto_ccmp_decrypt(
1704 rx, IEEE80211_CCMP_MIC_LEN);
1705 break;
1706 case WLAN_CIPHER_SUITE_CCMP_256:
1707 result = ieee80211_crypto_ccmp_decrypt(
1708 rx, IEEE80211_CCMP_256_MIC_LEN);
Johan Almbladh86c228a2013-08-14 15:29:46 +02001709 break;
1710 case WLAN_CIPHER_SUITE_AES_CMAC:
1711 result = ieee80211_crypto_aes_cmac_decrypt(rx);
1712 break;
Jouni Malinen56c52da2015-01-24 19:52:08 +02001713 case WLAN_CIPHER_SUITE_BIP_CMAC_256:
1714 result = ieee80211_crypto_aes_cmac_256_decrypt(rx);
1715 break;
Jouni Malinen8ade5382015-01-24 19:52:09 +02001716 case WLAN_CIPHER_SUITE_BIP_GMAC_128:
1717 case WLAN_CIPHER_SUITE_BIP_GMAC_256:
1718 result = ieee80211_crypto_aes_gmac_decrypt(rx);
1719 break;
Jouni Malinen00b9cfa2015-01-24 19:52:06 +02001720 case WLAN_CIPHER_SUITE_GCMP:
1721 case WLAN_CIPHER_SUITE_GCMP_256:
1722 result = ieee80211_crypto_gcmp_decrypt(rx);
1723 break;
Johan Almbladh86c228a2013-08-14 15:29:46 +02001724 default:
Max Stepanov2475b1cc2013-03-24 14:23:27 +02001725 result = ieee80211_crypto_hw_decrypt(rx);
Johan Almbladh86c228a2013-08-14 15:29:46 +02001726 }
1727
1728 /* the hdr variable is invalid after the decrypt handlers */
1729
1730 /* either the frame has been decrypted or will be dropped */
1731 status->flag |= RX_FLAG_DECRYPTED;
1732
1733 return result;
1734}
1735
Johannes Berg571ecf62007-07-27 15:43:22 +02001736static inline struct ieee80211_fragment_entry *
1737ieee80211_reassemble_add(struct ieee80211_sub_if_data *sdata,
1738 unsigned int frag, unsigned int seq, int rx_queue,
1739 struct sk_buff **skb)
1740{
1741 struct ieee80211_fragment_entry *entry;
Johannes Berg571ecf62007-07-27 15:43:22 +02001742
Johannes Berg571ecf62007-07-27 15:43:22 +02001743 entry = &sdata->fragments[sdata->fragment_next++];
1744 if (sdata->fragment_next >= IEEE80211_FRAGMENT_MAX)
1745 sdata->fragment_next = 0;
1746
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02001747 if (!skb_queue_empty(&entry->skb_list))
Johannes Berg571ecf62007-07-27 15:43:22 +02001748 __skb_queue_purge(&entry->skb_list);
Johannes Berg571ecf62007-07-27 15:43:22 +02001749
1750 __skb_queue_tail(&entry->skb_list, *skb); /* no need for locking */
1751 *skb = NULL;
1752 entry->first_frag_time = jiffies;
1753 entry->seq = seq;
1754 entry->rx_queue = rx_queue;
1755 entry->last_frag = frag;
Johannes Berg9acc54b2016-02-26 22:13:40 +01001756 entry->check_sequential_pn = false;
Johannes Berg571ecf62007-07-27 15:43:22 +02001757 entry->extra_len = 0;
1758
1759 return entry;
1760}
1761
1762static inline struct ieee80211_fragment_entry *
1763ieee80211_reassemble_find(struct ieee80211_sub_if_data *sdata,
Harvey Harrisonb73d70a2008-07-15 18:44:12 -07001764 unsigned int frag, unsigned int seq,
Johannes Berg571ecf62007-07-27 15:43:22 +02001765 int rx_queue, struct ieee80211_hdr *hdr)
1766{
1767 struct ieee80211_fragment_entry *entry;
1768 int i, idx;
1769
1770 idx = sdata->fragment_next;
1771 for (i = 0; i < IEEE80211_FRAGMENT_MAX; i++) {
1772 struct ieee80211_hdr *f_hdr;
Johannes Berg571ecf62007-07-27 15:43:22 +02001773
1774 idx--;
1775 if (idx < 0)
1776 idx = IEEE80211_FRAGMENT_MAX - 1;
1777
1778 entry = &sdata->fragments[idx];
1779 if (skb_queue_empty(&entry->skb_list) || entry->seq != seq ||
1780 entry->rx_queue != rx_queue ||
1781 entry->last_frag + 1 != frag)
1782 continue;
1783
Harvey Harrisonb73d70a2008-07-15 18:44:12 -07001784 f_hdr = (struct ieee80211_hdr *)entry->skb_list.next->data;
Johannes Berg571ecf62007-07-27 15:43:22 +02001785
Harvey Harrisonb73d70a2008-07-15 18:44:12 -07001786 /*
1787 * Check ftype and addresses are equal, else check next fragment
1788 */
1789 if (((hdr->frame_control ^ f_hdr->frame_control) &
1790 cpu_to_le16(IEEE80211_FCTL_FTYPE)) ||
Joe Perchesb203ca32012-05-08 18:56:52 +00001791 !ether_addr_equal(hdr->addr1, f_hdr->addr1) ||
1792 !ether_addr_equal(hdr->addr2, f_hdr->addr2))
Johannes Berg571ecf62007-07-27 15:43:22 +02001793 continue;
1794
S.Çağlar Onurab466232008-02-14 17:36:47 +02001795 if (time_after(jiffies, entry->first_frag_time + 2 * HZ)) {
Johannes Berg571ecf62007-07-27 15:43:22 +02001796 __skb_queue_purge(&entry->skb_list);
1797 continue;
1798 }
1799 return entry;
1800 }
1801
1802 return NULL;
1803}
1804
Johannes Berg49461622008-06-30 15:10:45 +02001805static ieee80211_rx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +01001806ieee80211_rx_h_defragment(struct ieee80211_rx_data *rx)
Johannes Berg571ecf62007-07-27 15:43:22 +02001807{
1808 struct ieee80211_hdr *hdr;
1809 u16 sc;
Harvey Harrison358c8d92008-07-15 18:44:13 -07001810 __le16 fc;
Johannes Berg571ecf62007-07-27 15:43:22 +02001811 unsigned int frag, seq;
1812 struct ieee80211_fragment_entry *entry;
1813 struct sk_buff *skb;
Johannes Berg554891e2010-09-24 12:38:25 +02001814 struct ieee80211_rx_status *status;
Johannes Berg571ecf62007-07-27 15:43:22 +02001815
Harvey Harrisonb73d70a2008-07-15 18:44:12 -07001816 hdr = (struct ieee80211_hdr *)rx->skb->data;
Harvey Harrison358c8d92008-07-15 18:44:13 -07001817 fc = hdr->frame_control;
Javier Cardonaf7fbf702012-10-25 11:10:18 -07001818
1819 if (ieee80211_is_ctl(fc))
1820 return RX_CONTINUE;
1821
Johannes Berg571ecf62007-07-27 15:43:22 +02001822 sc = le16_to_cpu(hdr->seq_ctrl);
1823 frag = sc & IEEE80211_SCTL_FRAG;
1824
Johannes Bergb8fff402014-11-03 13:57:46 +01001825 if (is_multicast_ether_addr(hdr->addr1)) {
Johannes Bergc206ca62015-04-22 20:47:28 +02001826 I802_DEBUG_INC(rx->local->dot11MulticastReceivedFrameCount);
Andreas Müllerd0259332014-12-12 12:11:11 +01001827 goto out_no_led;
Johannes Berg571ecf62007-07-27 15:43:22 +02001828 }
Johannes Bergb8fff402014-11-03 13:57:46 +01001829
Andreas Müllerd0259332014-12-12 12:11:11 +01001830 if (likely(!ieee80211_has_morefrags(fc) && frag == 0))
1831 goto out;
1832
Johannes Berg571ecf62007-07-27 15:43:22 +02001833 I802_DEBUG_INC(rx->local->rx_handlers_fragments);
1834
Zhu Yie3cf8b32010-03-29 17:35:07 +08001835 if (skb_linearize(rx->skb))
1836 return RX_DROP_UNUSABLE;
1837
Abhijeet Kolekar058897a2010-05-11 11:22:11 -07001838 /*
1839 * skb_linearize() might change the skb->data and
1840 * previously cached variables (in this case, hdr) need to
1841 * be refreshed with the new data.
1842 */
1843 hdr = (struct ieee80211_hdr *)rx->skb->data;
Johannes Berg571ecf62007-07-27 15:43:22 +02001844 seq = (sc & IEEE80211_SCTL_SEQ) >> 4;
1845
1846 if (frag == 0) {
1847 /* This is the first fragment of a new frame. */
1848 entry = ieee80211_reassemble_add(rx->sdata, frag, seq,
Johannes Berg9e262972011-07-07 18:45:03 +02001849 rx->seqno_idx, &(rx->skb));
Jouni Malinen2b2ba0d2015-01-24 19:52:07 +02001850 if (rx->key &&
1851 (rx->key->conf.cipher == WLAN_CIPHER_SUITE_CCMP ||
Johannes Berg9acc54b2016-02-26 22:13:40 +01001852 rx->key->conf.cipher == WLAN_CIPHER_SUITE_CCMP_256 ||
1853 rx->key->conf.cipher == WLAN_CIPHER_SUITE_GCMP ||
1854 rx->key->conf.cipher == WLAN_CIPHER_SUITE_GCMP_256) &&
Harvey Harrison358c8d92008-07-15 18:44:13 -07001855 ieee80211_has_protected(fc)) {
Johannes Berg9e262972011-07-07 18:45:03 +02001856 int queue = rx->security_idx;
Johannes Berg9acc54b2016-02-26 22:13:40 +01001857
1858 /* Store CCMP/GCMP PN so that we can verify that the
1859 * next fragment has a sequential PN value.
1860 */
1861 entry->check_sequential_pn = true;
Johannes Berg571ecf62007-07-27 15:43:22 +02001862 memcpy(entry->last_pn,
Jouni Malinen91902522010-06-11 10:27:33 -07001863 rx->key->u.ccmp.rx_pn[queue],
Johannes Berg4325f6c2013-05-08 13:09:08 +02001864 IEEE80211_CCMP_PN_LEN);
Johannes Berg9acc54b2016-02-26 22:13:40 +01001865 BUILD_BUG_ON(offsetof(struct ieee80211_key,
1866 u.ccmp.rx_pn) !=
1867 offsetof(struct ieee80211_key,
1868 u.gcmp.rx_pn));
1869 BUILD_BUG_ON(sizeof(rx->key->u.ccmp.rx_pn[queue]) !=
1870 sizeof(rx->key->u.gcmp.rx_pn[queue]));
1871 BUILD_BUG_ON(IEEE80211_CCMP_PN_LEN !=
1872 IEEE80211_GCMP_PN_LEN);
Johannes Berg571ecf62007-07-27 15:43:22 +02001873 }
Johannes Berg9ae54c82008-01-31 19:48:20 +01001874 return RX_QUEUED;
Johannes Berg571ecf62007-07-27 15:43:22 +02001875 }
1876
1877 /* This is a fragment for a frame that should already be pending in
1878 * fragment cache. Add this fragment to the end of the pending entry.
1879 */
Johannes Berg9e262972011-07-07 18:45:03 +02001880 entry = ieee80211_reassemble_find(rx->sdata, frag, seq,
1881 rx->seqno_idx, hdr);
Johannes Berg571ecf62007-07-27 15:43:22 +02001882 if (!entry) {
1883 I802_DEBUG_INC(rx->local->rx_handlers_drop_defrag);
Johannes Berge4c26ad2008-01-31 19:48:21 +01001884 return RX_DROP_MONITOR;
Johannes Berg571ecf62007-07-27 15:43:22 +02001885 }
1886
Johannes Berg9acc54b2016-02-26 22:13:40 +01001887 /* "The receiver shall discard MSDUs and MMPDUs whose constituent
1888 * MPDU PN values are not incrementing in steps of 1."
1889 * see IEEE P802.11-REVmc/D5.0, 12.5.3.4.4, item d (for CCMP)
1890 * and IEEE P802.11-REVmc/D5.0, 12.5.5.4.4, item d (for GCMP)
1891 */
1892 if (entry->check_sequential_pn) {
Johannes Berg571ecf62007-07-27 15:43:22 +02001893 int i;
Johannes Berg4325f6c2013-05-08 13:09:08 +02001894 u8 pn[IEEE80211_CCMP_PN_LEN], *rpn;
Jouni Malinen91902522010-06-11 10:27:33 -07001895 int queue;
Johannes Berg9acc54b2016-02-26 22:13:40 +01001896
Jouni Malinen2b2ba0d2015-01-24 19:52:07 +02001897 if (!rx->key ||
1898 (rx->key->conf.cipher != WLAN_CIPHER_SUITE_CCMP &&
Johannes Berg9acc54b2016-02-26 22:13:40 +01001899 rx->key->conf.cipher != WLAN_CIPHER_SUITE_CCMP_256 &&
1900 rx->key->conf.cipher != WLAN_CIPHER_SUITE_GCMP &&
1901 rx->key->conf.cipher != WLAN_CIPHER_SUITE_GCMP_256))
Johannes Berge4c26ad2008-01-31 19:48:21 +01001902 return RX_DROP_UNUSABLE;
Johannes Berg4325f6c2013-05-08 13:09:08 +02001903 memcpy(pn, entry->last_pn, IEEE80211_CCMP_PN_LEN);
1904 for (i = IEEE80211_CCMP_PN_LEN - 1; i >= 0; i--) {
Johannes Berg571ecf62007-07-27 15:43:22 +02001905 pn[i]++;
1906 if (pn[i])
1907 break;
1908 }
Johannes Berg9e262972011-07-07 18:45:03 +02001909 queue = rx->security_idx;
Jouni Malinen91902522010-06-11 10:27:33 -07001910 rpn = rx->key->u.ccmp.rx_pn[queue];
Johannes Berg4325f6c2013-05-08 13:09:08 +02001911 if (memcmp(pn, rpn, IEEE80211_CCMP_PN_LEN))
Johannes Berge4c26ad2008-01-31 19:48:21 +01001912 return RX_DROP_UNUSABLE;
Johannes Berg4325f6c2013-05-08 13:09:08 +02001913 memcpy(entry->last_pn, pn, IEEE80211_CCMP_PN_LEN);
Johannes Berg571ecf62007-07-27 15:43:22 +02001914 }
1915
Harvey Harrison358c8d92008-07-15 18:44:13 -07001916 skb_pull(rx->skb, ieee80211_hdrlen(fc));
Johannes Berg571ecf62007-07-27 15:43:22 +02001917 __skb_queue_tail(&entry->skb_list, rx->skb);
1918 entry->last_frag = frag;
1919 entry->extra_len += rx->skb->len;
Harvey Harrison358c8d92008-07-15 18:44:13 -07001920 if (ieee80211_has_morefrags(fc)) {
Johannes Berg571ecf62007-07-27 15:43:22 +02001921 rx->skb = NULL;
Johannes Berg9ae54c82008-01-31 19:48:20 +01001922 return RX_QUEUED;
Johannes Berg571ecf62007-07-27 15:43:22 +02001923 }
1924
1925 rx->skb = __skb_dequeue(&entry->skb_list);
1926 if (skb_tailroom(rx->skb) < entry->extra_len) {
Johannes Bergf1160432015-04-22 20:25:20 +02001927 I802_DEBUG_INC(rx->local->rx_expand_skb_head_defrag);
Johannes Berg571ecf62007-07-27 15:43:22 +02001928 if (unlikely(pskb_expand_head(rx->skb, 0, entry->extra_len,
1929 GFP_ATOMIC))) {
1930 I802_DEBUG_INC(rx->local->rx_handlers_drop_defrag);
1931 __skb_queue_purge(&entry->skb_list);
Johannes Berge4c26ad2008-01-31 19:48:21 +01001932 return RX_DROP_UNUSABLE;
Johannes Berg571ecf62007-07-27 15:43:22 +02001933 }
1934 }
1935 while ((skb = __skb_dequeue(&entry->skb_list))) {
1936 memcpy(skb_put(rx->skb, skb->len), skb->data, skb->len);
1937 dev_kfree_skb(skb);
1938 }
1939
1940 /* Complete frame has been reassembled - process it now */
Johannes Berg554891e2010-09-24 12:38:25 +02001941 status = IEEE80211_SKB_RXCB(rx->skb);
Johannes Berg571ecf62007-07-27 15:43:22 +02001942
1943 out:
Andreas Müllerd0259332014-12-12 12:11:11 +01001944 ieee80211_led_rx(rx->local);
1945 out_no_led:
Johannes Berg571ecf62007-07-27 15:43:22 +02001946 if (rx->sta)
Johannes Berge5a9f8d2015-10-16 17:54:47 +02001947 rx->sta->rx_stats.packets++;
Johannes Berg9ae54c82008-01-31 19:48:20 +01001948 return RX_CONTINUE;
Johannes Berg571ecf62007-07-27 15:43:22 +02001949}
1950
Johannes Berg1df332e2012-10-26 00:09:11 +02001951static int ieee80211_802_1x_port_control(struct ieee80211_rx_data *rx)
Johannes Berg571ecf62007-07-27 15:43:22 +02001952{
Johannes Berg1df332e2012-10-26 00:09:11 +02001953 if (unlikely(!rx->sta || !test_sta_flag(rx->sta, WLAN_STA_AUTHORIZED)))
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001954 return -EACCES;
Johannes Berg571ecf62007-07-27 15:43:22 +02001955
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001956 return 0;
Johannes Berg571ecf62007-07-27 15:43:22 +02001957}
1958
Johannes Berg1df332e2012-10-26 00:09:11 +02001959static int ieee80211_drop_unencrypted(struct ieee80211_rx_data *rx, __le16 fc)
Johannes Berg571ecf62007-07-27 15:43:22 +02001960{
Johannes Bergeb9fb5b2009-11-16 13:58:20 +01001961 struct sk_buff *skb = rx->skb;
1962 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
1963
Johannes Berg3017b802007-08-28 17:01:53 -04001964 /*
Johannes Berg7848ba72007-09-14 11:10:25 -04001965 * Pass through unencrypted frames if the hardware has
1966 * decrypted them already.
Johannes Berg3017b802007-08-28 17:01:53 -04001967 */
Johannes Bergeb9fb5b2009-11-16 13:58:20 +01001968 if (status->flag & RX_FLAG_DECRYPTED)
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001969 return 0;
Johannes Berg571ecf62007-07-27 15:43:22 +02001970
1971 /* Drop unencrypted frames if key is set. */
Harvey Harrison358c8d92008-07-15 18:44:13 -07001972 if (unlikely(!ieee80211_has_protected(fc) &&
1973 !ieee80211_is_nullfunc(fc) &&
Johannes Berge8f4fb72015-03-20 11:37:36 +01001974 ieee80211_is_data(fc) && rx->key))
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +02001975 return -EACCES;
Johannes Bergbef5d1c2010-02-16 11:05:00 +01001976
1977 return 0;
1978}
1979
Johannes Berg1df332e2012-10-26 00:09:11 +02001980static int ieee80211_drop_unencrypted_mgmt(struct ieee80211_rx_data *rx)
Johannes Bergbef5d1c2010-02-16 11:05:00 +01001981{
1982 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
Jouni Malinene3efca02010-03-28 22:31:15 -07001983 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(rx->skb);
Johannes Bergbef5d1c2010-02-16 11:05:00 +01001984 __le16 fc = hdr->frame_control;
Johannes Bergbef5d1c2010-02-16 11:05:00 +01001985
Jouni Malinene3efca02010-03-28 22:31:15 -07001986 /*
1987 * Pass through unencrypted frames if the hardware has
1988 * decrypted them already.
1989 */
1990 if (status->flag & RX_FLAG_DECRYPTED)
1991 return 0;
Johannes Bergbef5d1c2010-02-16 11:05:00 +01001992
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001993 if (rx->sta && test_sta_flag(rx->sta, WLAN_STA_MFP)) {
Jouni Malinend211e902010-03-28 22:29:52 -07001994 if (unlikely(!ieee80211_has_protected(fc) &&
1995 ieee80211_is_unicast_robust_mgmt_frame(rx->skb) &&
Jouni Malinencf4e5942010-12-16 00:52:40 +02001996 rx->key)) {
Johannes Berg6ff57cf2013-05-16 00:55:00 +02001997 if (ieee80211_is_deauth(fc) ||
1998 ieee80211_is_disassoc(fc))
1999 cfg80211_rx_unprot_mlme_mgmt(rx->sdata->dev,
2000 rx->skb->data,
2001 rx->skb->len);
Jouni Malinenf2ca3ea2009-05-08 12:36:03 +03002002 return -EACCES;
Jouni Malinencf4e5942010-12-16 00:52:40 +02002003 }
Jouni Malinenf2ca3ea2009-05-08 12:36:03 +03002004 /* BIP does not use Protected field, so need to check MMIE */
Joe Perchesf64f9e72009-11-29 16:55:45 -08002005 if (unlikely(ieee80211_is_multicast_robust_mgmt_frame(rx->skb) &&
Jouni Malinencf4e5942010-12-16 00:52:40 +02002006 ieee80211_get_mmie_keyidx(rx->skb) < 0)) {
Johannes Berg6ff57cf2013-05-16 00:55:00 +02002007 if (ieee80211_is_deauth(fc) ||
2008 ieee80211_is_disassoc(fc))
2009 cfg80211_rx_unprot_mlme_mgmt(rx->sdata->dev,
2010 rx->skb->data,
2011 rx->skb->len);
Jouni Malinenf2ca3ea2009-05-08 12:36:03 +03002012 return -EACCES;
Jouni Malinencf4e5942010-12-16 00:52:40 +02002013 }
Jouni Malinenf2ca3ea2009-05-08 12:36:03 +03002014 /*
2015 * When using MFP, Action frames are not allowed prior to
2016 * having configured keys.
2017 */
2018 if (unlikely(ieee80211_is_action(fc) && !rx->key &&
Johannes Bergd8ca16d2014-01-23 16:20:29 +01002019 ieee80211_is_robust_mgmt_frame(rx->skb)))
Jouni Malinenf2ca3ea2009-05-08 12:36:03 +03002020 return -EACCES;
2021 }
Johannes Bergb3fc9c62008-04-13 10:12:47 +02002022
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002023 return 0;
Johannes Berg571ecf62007-07-27 15:43:22 +02002024}
2025
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002026static int
Felix Fietkau4114fa22011-04-12 19:15:22 +02002027__ieee80211_data_to_8023(struct ieee80211_rx_data *rx, bool *port_control)
Johannes Berg571ecf62007-07-27 15:43:22 +02002028{
Johannes Bergeb9fb5b2009-11-16 13:58:20 +01002029 struct ieee80211_sub_if_data *sdata = rx->sdata;
Felix Fietkauf14543ee2009-11-10 20:10:05 +01002030 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
Felix Fietkaufbb327c2011-01-18 15:48:48 +01002031 bool check_port_control = false;
2032 struct ethhdr *ehdr;
2033 int ret;
Felix Fietkauf14543ee2009-11-10 20:10:05 +01002034
Felix Fietkau4114fa22011-04-12 19:15:22 +02002035 *port_control = false;
Johannes Berg9bc383d2009-11-19 11:55:19 +01002036 if (ieee80211_has_a4(hdr->frame_control) &&
2037 sdata->vif.type == NL80211_IFTYPE_AP_VLAN && !sdata->u.vlan.sta)
Felix Fietkauf14543ee2009-11-10 20:10:05 +01002038 return -1;
Johannes Berg9bc383d2009-11-19 11:55:19 +01002039
Felix Fietkaufbb327c2011-01-18 15:48:48 +01002040 if (sdata->vif.type == NL80211_IFTYPE_STATION &&
2041 !!sdata->u.mgd.use_4addr != !!ieee80211_has_a4(hdr->frame_control)) {
2042
2043 if (!sdata->u.mgd.use_4addr)
2044 return -1;
2045 else
2046 check_port_control = true;
2047 }
2048
Johannes Berg9bc383d2009-11-19 11:55:19 +01002049 if (is_multicast_ether_addr(hdr->addr1) &&
Felix Fietkaufbb327c2011-01-18 15:48:48 +01002050 sdata->vif.type == NL80211_IFTYPE_AP_VLAN && sdata->u.vlan.sta)
Felix Fietkauf14543ee2009-11-10 20:10:05 +01002051 return -1;
Johannes Berg571ecf62007-07-27 15:43:22 +02002052
Felix Fietkaufbb327c2011-01-18 15:48:48 +01002053 ret = ieee80211_data_to_8023(rx->skb, sdata->vif.addr, sdata->vif.type);
Felix Fietkau4114fa22011-04-12 19:15:22 +02002054 if (ret < 0)
Felix Fietkaufbb327c2011-01-18 15:48:48 +01002055 return ret;
2056
2057 ehdr = (struct ethhdr *) rx->skb->data;
Felix Fietkau4114fa22011-04-12 19:15:22 +02002058 if (ehdr->h_proto == rx->sdata->control_port_protocol)
2059 *port_control = true;
2060 else if (check_port_control)
Felix Fietkaufbb327c2011-01-18 15:48:48 +01002061 return -1;
2062
2063 return 0;
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002064}
Johannes Berg571ecf62007-07-27 15:43:22 +02002065
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002066/*
2067 * requires that rx->skb is a frame with ethernet header
2068 */
Harvey Harrison358c8d92008-07-15 18:44:13 -07002069static bool ieee80211_frame_allowed(struct ieee80211_rx_data *rx, __le16 fc)
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002070{
Senthil Balasubramanianc97c23e2008-05-28 23:15:32 +05302071 static const u8 pae_group_addr[ETH_ALEN] __aligned(2)
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002072 = { 0x01, 0x80, 0xC2, 0x00, 0x00, 0x03 };
2073 struct ethhdr *ehdr = (struct ethhdr *) rx->skb->data;
2074
2075 /*
2076 * Allow EAPOL frames to us/the PAE group address regardless
2077 * of whether the frame was encrypted or not.
2078 */
Johannes Berga621fa42010-08-27 14:26:54 +03002079 if (ehdr->h_proto == rx->sdata->control_port_protocol &&
Joe Perches3bc79452012-05-08 18:56:53 +00002080 (ether_addr_equal(ehdr->h_dest, rx->sdata->vif.addr) ||
2081 ether_addr_equal(ehdr->h_dest, pae_group_addr)))
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002082 return true;
2083
2084 if (ieee80211_802_1x_port_control(rx) ||
Harvey Harrison358c8d92008-07-15 18:44:13 -07002085 ieee80211_drop_unencrypted(rx, fc))
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002086 return false;
2087
2088 return true;
2089}
2090
2091/*
2092 * requires that rx->skb is a frame with ethernet header
2093 */
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002094static void
Johannes Berg5cf121c2008-02-25 16:27:43 +01002095ieee80211_deliver_skb(struct ieee80211_rx_data *rx)
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002096{
Johannes Bergeb9fb5b2009-11-16 13:58:20 +01002097 struct ieee80211_sub_if_data *sdata = rx->sdata;
2098 struct net_device *dev = sdata->dev;
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002099 struct sk_buff *skb, *xmit_skb;
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002100 struct ethhdr *ehdr = (struct ethhdr *) rx->skb->data;
2101 struct sta_info *dsta;
Johannes Berg571ecf62007-07-27 15:43:22 +02002102
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002103 skb = rx->skb;
2104 xmit_skb = NULL;
Johannes Berg571ecf62007-07-27 15:43:22 +02002105
Johannes Berg5a490512015-04-22 17:10:38 +02002106 ieee80211_rx_stats(dev, skb->len);
2107
Johannes Berg05c914f2008-09-11 00:01:58 +02002108 if ((sdata->vif.type == NL80211_IFTYPE_AP ||
2109 sdata->vif.type == NL80211_IFTYPE_AP_VLAN) &&
Johannes Berg213cd112008-09-11 00:01:54 +02002110 !(sdata->flags & IEEE80211_SDATA_DONT_BRIDGE_PACKETS) &&
Johannes Berg9bc383d2009-11-19 11:55:19 +01002111 (sdata->vif.type != NL80211_IFTYPE_AP_VLAN || !sdata->u.vlan.sta)) {
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002112 if (is_multicast_ether_addr(ehdr->h_dest)) {
2113 /*
2114 * send multicast frames both to higher layers in
2115 * local net stack and back to the wireless medium
2116 */
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002117 xmit_skb = skb_copy(skb, GFP_ATOMIC);
Joe Perchese87cc472012-05-13 21:56:26 +00002118 if (!xmit_skb)
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002119 net_info_ratelimited("%s: failed to clone multicast frame\n",
Joe Perchese87cc472012-05-13 21:56:26 +00002120 dev->name);
Johannes Berg571ecf62007-07-27 15:43:22 +02002121 } else {
Johannes Bergabe60632009-11-25 17:46:18 +01002122 dsta = sta_info_get(sdata, skb->data);
2123 if (dsta) {
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002124 /*
2125 * The destination station is associated to
2126 * this AP (in this VLAN), so send the frame
2127 * directly to it and do not pass it to local
2128 * net stack.
Johannes Berg571ecf62007-07-27 15:43:22 +02002129 */
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002130 xmit_skb = skb;
Johannes Berg571ecf62007-07-27 15:43:22 +02002131 skb = NULL;
2132 }
Johannes Berg571ecf62007-07-27 15:43:22 +02002133 }
2134 }
2135
Kalle Valo59d9cb02009-12-17 13:54:57 +01002136#ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
Johannes Berg9e890a1f2013-12-04 09:16:31 +01002137 if (skb) {
2138 /* 'align' will only take the values 0 or 2 here since all
2139 * frames are required to be aligned to 2-byte boundaries
2140 * when being passed to mac80211; the code here works just
2141 * as well if that isn't true, but mac80211 assumes it can
2142 * access fields as 2-byte aligned (e.g. for ether_addr_equal)
Johannes Bergd1c3a372009-01-07 00:26:10 +01002143 */
Johannes Berg9e890a1f2013-12-04 09:16:31 +01002144 int align;
2145
2146 align = (unsigned long)(skb->data + sizeof(struct ethhdr)) & 3;
Johannes Bergd1c3a372009-01-07 00:26:10 +01002147 if (align) {
2148 if (WARN_ON(skb_headroom(skb) < 3)) {
2149 dev_kfree_skb(skb);
2150 skb = NULL;
2151 } else {
2152 u8 *data = skb->data;
Zhu Yi8ce0b582009-10-28 13:13:52 -07002153 size_t len = skb_headlen(skb);
2154 skb->data -= align;
2155 memmove(skb->data, data, len);
2156 skb_set_tail_pointer(skb, len);
Johannes Bergd1c3a372009-01-07 00:26:10 +01002157 }
2158 }
Johannes Berg9e890a1f2013-12-04 09:16:31 +01002159 }
Johannes Bergd1c3a372009-01-07 00:26:10 +01002160#endif
2161
Johannes Berg9e890a1f2013-12-04 09:16:31 +01002162 if (skb) {
2163 /* deliver to local stack */
2164 skb->protocol = eth_type_trans(skb, dev);
2165 memset(skb->cb, 0, sizeof(skb->cb));
Johannes Bergaf9f9b22015-06-11 16:02:32 +02002166 if (rx->napi)
2167 napi_gro_receive(rx->napi, skb);
Johannes Berg06d181a2014-02-04 20:51:09 +01002168 else
2169 netif_receive_skb(skb);
Johannes Berg571ecf62007-07-27 15:43:22 +02002170 }
2171
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002172 if (xmit_skb) {
Helmut Schaaaef6c922011-12-21 09:11:35 +01002173 /*
2174 * Send to wireless media and increase priority by 256 to
2175 * keep the received priority instead of reclassifying
2176 * the frame (see cfg80211_classify8021d).
2177 */
2178 xmit_skb->priority += 256;
YOSHIFUJI Hideakif831e902007-12-12 03:54:23 +09002179 xmit_skb->protocol = htons(ETH_P_802_3);
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002180 skb_reset_network_header(xmit_skb);
2181 skb_reset_mac_header(xmit_skb);
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002182 dev_queue_xmit(xmit_skb);
Johannes Berg571ecf62007-07-27 15:43:22 +02002183 }
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002184}
2185
Johannes Berg49461622008-06-30 15:10:45 +02002186static ieee80211_rx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +01002187ieee80211_rx_h_amsdu(struct ieee80211_rx_data *rx)
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02002188{
Johannes Bergeb9fb5b2009-11-16 13:58:20 +01002189 struct net_device *dev = rx->sdata->dev;
Zhu Yieaf85ca2009-12-01 10:18:37 +08002190 struct sk_buff *skb = rx->skb;
Harvey Harrison358c8d92008-07-15 18:44:13 -07002191 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
2192 __le16 fc = hdr->frame_control;
Zhu Yieaf85ca2009-12-01 10:18:37 +08002193 struct sk_buff_head frame_list;
Johannes Berg554891e2010-09-24 12:38:25 +02002194 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(rx->skb);
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02002195
Harvey Harrison358c8d92008-07-15 18:44:13 -07002196 if (unlikely(!ieee80211_is_data(fc)))
Johannes Berg9ae54c82008-01-31 19:48:20 +01002197 return RX_CONTINUE;
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02002198
Harvey Harrison358c8d92008-07-15 18:44:13 -07002199 if (unlikely(!ieee80211_is_data_present(fc)))
Johannes Berge4c26ad2008-01-31 19:48:21 +01002200 return RX_DROP_MONITOR;
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02002201
Johannes Berg554891e2010-09-24 12:38:25 +02002202 if (!(status->rx_flags & IEEE80211_RX_AMSDU))
Johannes Berg9ae54c82008-01-31 19:48:20 +01002203 return RX_CONTINUE;
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02002204
Zhu Yieaf85ca2009-12-01 10:18:37 +08002205 if (ieee80211_has_a4(hdr->frame_control) &&
2206 rx->sdata->vif.type == NL80211_IFTYPE_AP_VLAN &&
2207 !rx->sdata->u.vlan.sta)
2208 return RX_DROP_UNUSABLE;
2209
2210 if (is_multicast_ether_addr(hdr->addr1) &&
2211 ((rx->sdata->vif.type == NL80211_IFTYPE_AP_VLAN &&
2212 rx->sdata->u.vlan.sta) ||
2213 (rx->sdata->vif.type == NL80211_IFTYPE_STATION &&
2214 rx->sdata->u.mgd.use_4addr)))
Johannes Berge4c26ad2008-01-31 19:48:21 +01002215 return RX_DROP_UNUSABLE;
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02002216
2217 skb->dev = dev;
Zhu Yieaf85ca2009-12-01 10:18:37 +08002218 __skb_queue_head_init(&frame_list);
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02002219
Zhu Yie3cf8b32010-03-29 17:35:07 +08002220 if (skb_linearize(skb))
2221 return RX_DROP_UNUSABLE;
2222
Zhu Yieaf85ca2009-12-01 10:18:37 +08002223 ieee80211_amsdu_to_8023s(skb, &frame_list, dev->dev_addr,
2224 rx->sdata->vif.type,
Yogesh Ashok Powar8b3beca2011-05-13 11:22:31 -07002225 rx->local->hw.extra_tx_headroom, true);
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02002226
Zhu Yieaf85ca2009-12-01 10:18:37 +08002227 while (!skb_queue_empty(&frame_list)) {
2228 rx->skb = __skb_dequeue(&frame_list);
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02002229
Harvey Harrison358c8d92008-07-15 18:44:13 -07002230 if (!ieee80211_frame_allowed(rx, fc)) {
Zhu Yieaf85ca2009-12-01 10:18:37 +08002231 dev_kfree_skb(rx->skb);
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002232 continue;
2233 }
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02002234
2235 ieee80211_deliver_skb(rx);
2236 }
2237
Johannes Berg9ae54c82008-01-31 19:48:20 +01002238 return RX_QUEUED;
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02002239}
2240
Ingo Molnarbf94e172008-10-12 23:51:38 -07002241#ifdef CONFIG_MAC80211_MESH
Davide Pesaventob0dee572008-09-27 17:29:12 +02002242static ieee80211_rx_result
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02002243ieee80211_rx_h_mesh_fwding(struct ieee80211_rx_data *rx)
2244{
Thomas Pedersen30789eb2011-11-24 17:15:26 -08002245 struct ieee80211_hdr *fwd_hdr, *hdr;
2246 struct ieee80211_tx_info *info;
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02002247 struct ieee80211s_hdr *mesh_hdr;
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02002248 struct sk_buff *skb = rx->skb, *fwd_skb;
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002249 struct ieee80211_local *local = rx->local;
Johannes Bergeb9fb5b2009-11-16 13:58:20 +01002250 struct ieee80211_sub_if_data *sdata = rx->sdata;
Thomas Pedersen30789eb2011-11-24 17:15:26 -08002251 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Thomas Pedersen30789eb2011-11-24 17:15:26 -08002252 u16 q, hdrlen;
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02002253
2254 hdr = (struct ieee80211_hdr *) skb->data;
2255 hdrlen = ieee80211_hdrlen(hdr->frame_control);
Johannes Berg9b395bc2012-10-26 00:36:40 +02002256
2257 /* make sure fixed part of mesh header is there, also checks skb len */
2258 if (!pskb_may_pull(rx->skb, hdrlen + 6))
2259 return RX_DROP_MONITOR;
2260
2261 mesh_hdr = (struct ieee80211s_hdr *) (skb->data + hdrlen);
2262
2263 /* make sure full mesh header is there, also checks skb len */
2264 if (!pskb_may_pull(rx->skb,
2265 hdrlen + ieee80211_get_mesh_hdrlen(mesh_hdr)))
2266 return RX_DROP_MONITOR;
2267
2268 /* reload pointers */
2269 hdr = (struct ieee80211_hdr *) skb->data;
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02002270 mesh_hdr = (struct ieee80211s_hdr *) (skb->data + hdrlen);
2271
Bob Copelandd0c22112015-03-02 14:28:52 -05002272 if (ieee80211_drop_unencrypted(rx, hdr->frame_control))
2273 return RX_DROP_MONITOR;
2274
Thomas Pedersen2157fdd2011-09-01 12:32:14 -07002275 /* frame is in RMC, don't forward */
2276 if (ieee80211_is_data(hdr->frame_control) &&
2277 is_multicast_ether_addr(hdr->addr1) &&
Johannes Bergbf7cd942013-02-15 14:40:31 +01002278 mesh_rmc_check(rx->sdata, hdr->addr3, mesh_hdr))
Thomas Pedersen2157fdd2011-09-01 12:32:14 -07002279 return RX_DROP_MONITOR;
2280
Johannes Berg5c900672015-04-22 14:48:34 +02002281 if (!ieee80211_is_data(hdr->frame_control))
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02002282 return RX_CONTINUE;
2283
2284 if (!mesh_hdr->ttl)
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02002285 return RX_DROP_MONITOR;
2286
Javier Cardona43b7b312009-10-15 18:10:51 -07002287 if (mesh_hdr->flags & MESH_FLAGS_AE) {
YanBo79617de2008-09-22 13:30:32 +08002288 struct mesh_path *mppath;
Javier Cardona43b7b312009-10-15 18:10:51 -07002289 char *proxied_addr;
2290 char *mpp_addr;
2291
2292 if (is_multicast_ether_addr(hdr->addr1)) {
2293 mpp_addr = hdr->addr3;
2294 proxied_addr = mesh_hdr->eaddr1;
Johannes Berg9b395bc2012-10-26 00:36:40 +02002295 } else if (mesh_hdr->flags & MESH_FLAGS_AE_A5_A6) {
2296 /* has_a4 already checked in ieee80211_rx_mesh_check */
Javier Cardona43b7b312009-10-15 18:10:51 -07002297 mpp_addr = hdr->addr4;
2298 proxied_addr = mesh_hdr->eaddr2;
Johannes Berg9b395bc2012-10-26 00:36:40 +02002299 } else {
2300 return RX_DROP_MONITOR;
Javier Cardona43b7b312009-10-15 18:10:51 -07002301 }
YanBo79617de2008-09-22 13:30:32 +08002302
YanBo79617de2008-09-22 13:30:32 +08002303 rcu_read_lock();
Johannes Bergbf7cd942013-02-15 14:40:31 +01002304 mppath = mpp_path_lookup(sdata, proxied_addr);
YanBo79617de2008-09-22 13:30:32 +08002305 if (!mppath) {
Johannes Bergbf7cd942013-02-15 14:40:31 +01002306 mpp_path_add(sdata, proxied_addr, mpp_addr);
YanBo79617de2008-09-22 13:30:32 +08002307 } else {
2308 spin_lock_bh(&mppath->state_lock);
Joe Perchesb203ca32012-05-08 18:56:52 +00002309 if (!ether_addr_equal(mppath->mpp, mpp_addr))
Javier Cardona43b7b312009-10-15 18:10:51 -07002310 memcpy(mppath->mpp, mpp_addr, ETH_ALEN);
YanBo79617de2008-09-22 13:30:32 +08002311 spin_unlock_bh(&mppath->state_lock);
2312 }
2313 rcu_read_unlock();
2314 }
2315
Javier Cardona3c5772a2009-08-10 12:15:48 -07002316 /* Frame has reached destination. Don't forward */
2317 if (!is_multicast_ether_addr(hdr->addr1) &&
Joe Perchesb203ca32012-05-08 18:56:52 +00002318 ether_addr_equal(sdata->vif.addr, hdr->addr3))
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02002319 return RX_CONTINUE;
2320
Yoni Divinsky00e96de2012-06-20 15:39:13 +03002321 q = ieee80211_select_queue_80211(sdata, skb, hdr);
Thomas Pedersend3c15972011-11-24 17:15:23 -08002322 if (ieee80211_queue_stopped(&local->hw, q)) {
Thomas Pedersen30789eb2011-11-24 17:15:26 -08002323 IEEE80211_IFSTA_MESH_CTR_INC(ifmsh, dropped_frames_congestion);
Thomas Pedersend3c15972011-11-24 17:15:23 -08002324 return RX_DROP_MONITOR;
2325 }
2326 skb_set_queue_mapping(skb, q);
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02002327
Thomas Pedersen30789eb2011-11-24 17:15:26 -08002328 if (!--mesh_hdr->ttl) {
2329 IEEE80211_IFSTA_MESH_CTR_INC(ifmsh, dropped_frames_ttl);
Javier Cardona2ac64cd2012-10-24 12:43:31 -07002330 goto out;
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02002331 }
2332
Chun-Yeow Yeohd6655082012-03-02 02:03:19 +08002333 if (!ifmsh->mshcfg.dot11MeshForwarding)
2334 goto out;
2335
Thomas Pedersen30789eb2011-11-24 17:15:26 -08002336 fwd_skb = skb_copy(skb, GFP_ATOMIC);
2337 if (!fwd_skb) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002338 net_info_ratelimited("%s: failed to clone mesh frame\n",
Joe Perchese87cc472012-05-13 21:56:26 +00002339 sdata->name);
Thomas Pedersen30789eb2011-11-24 17:15:26 -08002340 goto out;
2341 }
2342
2343 fwd_hdr = (struct ieee80211_hdr *) fwd_skb->data;
Thomas Pedersen9d6d6f42013-04-08 11:06:12 -07002344 fwd_hdr->frame_control &= ~cpu_to_le16(IEEE80211_FCTL_RETRY);
Thomas Pedersen30789eb2011-11-24 17:15:26 -08002345 info = IEEE80211_SKB_CB(fwd_skb);
2346 memset(info, 0, sizeof(*info));
2347 info->flags |= IEEE80211_TX_INTFL_NEED_TXPROCESSING;
2348 info->control.vif = &rx->sdata->vif;
2349 info->control.jiffies = jiffies;
2350 if (is_multicast_ether_addr(fwd_hdr->addr1)) {
2351 IEEE80211_IFSTA_MESH_CTR_INC(ifmsh, fwded_mcast);
2352 memcpy(fwd_hdr->addr2, sdata->vif.addr, ETH_ALEN);
Marco Porsch3f52b7e2013-01-30 18:14:08 +01002353 /* update power mode indication when forwarding */
2354 ieee80211_mps_set_frame_flags(sdata, NULL, fwd_hdr);
Johannes Bergbf7cd942013-02-15 14:40:31 +01002355 } else if (!mesh_nexthop_lookup(sdata, fwd_skb)) {
Marco Porsch3f52b7e2013-01-30 18:14:08 +01002356 /* mesh power mode flags updated in mesh_nexthop_lookup */
Thomas Pedersen30789eb2011-11-24 17:15:26 -08002357 IEEE80211_IFSTA_MESH_CTR_INC(ifmsh, fwded_unicast);
2358 } else {
2359 /* unable to resolve next hop */
Johannes Bergbf7cd942013-02-15 14:40:31 +01002360 mesh_path_error_tx(sdata, ifmsh->mshcfg.element_ttl,
Chun-Yeow Yeohf63f8422013-11-13 15:39:12 +08002361 fwd_hdr->addr3, 0,
2362 WLAN_REASON_MESH_PATH_NOFORWARD,
2363 fwd_hdr->addr2);
Thomas Pedersen30789eb2011-11-24 17:15:26 -08002364 IEEE80211_IFSTA_MESH_CTR_INC(ifmsh, dropped_frames_no_route);
Jesper Juhl74b8cc32012-01-14 21:52:17 +01002365 kfree_skb(fwd_skb);
Thomas Pedersen30789eb2011-11-24 17:15:26 -08002366 return RX_DROP_MONITOR;
2367 }
2368
2369 IEEE80211_IFSTA_MESH_CTR_INC(ifmsh, fwded_frames);
2370 ieee80211_add_pending_skb(local, fwd_skb);
Johannes Bergb51aff02010-12-22 10:15:07 +01002371 out:
Johannes Bergdf140462015-04-22 14:40:58 +02002372 if (is_multicast_ether_addr(hdr->addr1))
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02002373 return RX_CONTINUE;
Johannes Bergdf140462015-04-22 14:40:58 +02002374 return RX_DROP_MONITOR;
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02002375}
Ingo Molnarbf94e172008-10-12 23:51:38 -07002376#endif
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02002377
2378static ieee80211_rx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +01002379ieee80211_rx_h_data(struct ieee80211_rx_data *rx)
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002380{
Johannes Bergeb9fb5b2009-11-16 13:58:20 +01002381 struct ieee80211_sub_if_data *sdata = rx->sdata;
Vivek Natarajane15276a2010-02-08 17:47:01 +05302382 struct ieee80211_local *local = rx->local;
Johannes Bergeb9fb5b2009-11-16 13:58:20 +01002383 struct net_device *dev = sdata->dev;
Harvey Harrison358c8d92008-07-15 18:44:13 -07002384 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
2385 __le16 fc = hdr->frame_control;
Felix Fietkau4114fa22011-04-12 19:15:22 +02002386 bool port_control;
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002387 int err;
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002388
Harvey Harrison358c8d92008-07-15 18:44:13 -07002389 if (unlikely(!ieee80211_is_data(hdr->frame_control)))
Johannes Berg9ae54c82008-01-31 19:48:20 +01002390 return RX_CONTINUE;
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002391
Harvey Harrison358c8d92008-07-15 18:44:13 -07002392 if (unlikely(!ieee80211_is_data_present(hdr->frame_control)))
Johannes Berge4c26ad2008-01-31 19:48:21 +01002393 return RX_DROP_MONITOR;
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002394
Johannes Berg79c892b2014-11-21 14:26:31 +01002395 if (rx->sta) {
Johannes Berg3d6dc342015-01-23 13:23:48 +01002396 /* The seqno index has the same property as needed
Johannes Berg79c892b2014-11-21 14:26:31 +01002397 * for the rx_msdu field, i.e. it is IEEE80211_NUM_TIDS
2398 * for non-QoS-data frames. Here we know it's a data
2399 * frame, so count MSDUs.
2400 */
Johannes Berge5a9f8d2015-10-16 17:54:47 +02002401 rx->sta->rx_stats.msdu[rx->seqno_idx]++;
Johannes Berg79c892b2014-11-21 14:26:31 +01002402 }
2403
Felix Fietkauf14543ee2009-11-10 20:10:05 +01002404 /*
Johannes Berge7f4a942011-11-04 11:18:20 +01002405 * Send unexpected-4addr-frame event to hostapd. For older versions,
2406 * also drop the frame to cooked monitor interfaces.
Felix Fietkauf14543ee2009-11-10 20:10:05 +01002407 */
2408 if (ieee80211_has_a4(hdr->frame_control) &&
Johannes Berge7f4a942011-11-04 11:18:20 +01002409 sdata->vif.type == NL80211_IFTYPE_AP) {
2410 if (rx->sta &&
2411 !test_and_set_sta_flag(rx->sta, WLAN_STA_4ADDR_EVENT))
2412 cfg80211_rx_unexpected_4addr_frame(
2413 rx->sdata->dev, rx->sta->sta.addr, GFP_ATOMIC);
Felix Fietkauf14543ee2009-11-10 20:10:05 +01002414 return RX_DROP_MONITOR;
Johannes Berge7f4a942011-11-04 11:18:20 +01002415 }
Felix Fietkauf14543ee2009-11-10 20:10:05 +01002416
Felix Fietkau4114fa22011-04-12 19:15:22 +02002417 err = __ieee80211_data_to_8023(rx, &port_control);
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002418 if (unlikely(err))
Johannes Berge4c26ad2008-01-31 19:48:21 +01002419 return RX_DROP_UNUSABLE;
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002420
Harvey Harrison358c8d92008-07-15 18:44:13 -07002421 if (!ieee80211_frame_allowed(rx, fc))
Johannes Berge4c26ad2008-01-31 19:48:21 +01002422 return RX_DROP_MONITOR;
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002423
Arik Nemtsov8a4d32f2014-11-09 18:50:20 +02002424 /* directly handle TDLS channel switch requests/responses */
2425 if (unlikely(((struct ethhdr *)rx->skb->data)->h_proto ==
2426 cpu_to_be16(ETH_P_TDLS))) {
2427 struct ieee80211_tdls_data *tf = (void *)rx->skb->data;
2428
2429 if (pskb_may_pull(rx->skb,
2430 offsetof(struct ieee80211_tdls_data, u)) &&
2431 tf->payload_type == WLAN_TDLS_SNAP_RFTYPE &&
2432 tf->category == WLAN_CATEGORY_TDLS &&
2433 (tf->action_code == WLAN_TDLS_CHANNEL_SWITCH_REQUEST ||
2434 tf->action_code == WLAN_TDLS_CHANNEL_SWITCH_RESPONSE)) {
Arik Nemtsovc8ff71e2015-07-08 15:41:45 +03002435 skb_queue_tail(&local->skb_queue_tdls_chsw, rx->skb);
2436 schedule_work(&local->tdls_chsw_work);
Arik Nemtsov8a4d32f2014-11-09 18:50:20 +02002437 if (rx->sta)
Johannes Berge5a9f8d2015-10-16 17:54:47 +02002438 rx->sta->rx_stats.packets++;
Arik Nemtsov8a4d32f2014-11-09 18:50:20 +02002439
2440 return RX_QUEUED;
2441 }
2442 }
2443
Felix Fietkau4114fa22011-04-12 19:15:22 +02002444 if (rx->sdata->vif.type == NL80211_IFTYPE_AP_VLAN &&
2445 unlikely(port_control) && sdata->bss) {
2446 sdata = container_of(sdata->bss, struct ieee80211_sub_if_data,
2447 u.ap);
2448 dev = sdata->dev;
2449 rx->sdata = sdata;
2450 }
2451
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002452 rx->skb->dev = dev;
2453
Helmut Schaa08ca9442010-11-30 12:19:34 +01002454 if (local->ps_sdata && local->hw.conf.dynamic_ps_timeout > 0 &&
Rajkumar Manoharan8c99f692011-02-02 22:57:53 +05302455 !is_multicast_ether_addr(
2456 ((struct ethhdr *)rx->skb->data)->h_dest) &&
2457 (!local->scanning &&
2458 !test_bit(SDATA_STATE_OFFCHANNEL, &sdata->state))) {
Vivek Natarajane15276a2010-02-08 17:47:01 +05302459 mod_timer(&local->dynamic_ps_timer, jiffies +
2460 msecs_to_jiffies(local->hw.conf.dynamic_ps_timeout));
2461 }
2462
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002463 ieee80211_deliver_skb(rx);
Johannes Berg571ecf62007-07-27 15:43:22 +02002464
Johannes Berg9ae54c82008-01-31 19:48:20 +01002465 return RX_QUEUED;
Johannes Berg571ecf62007-07-27 15:43:22 +02002466}
2467
Johannes Berg49461622008-06-30 15:10:45 +02002468static ieee80211_rx_result debug_noinline
Christian Lamparterf9e124f2013-02-04 17:44:44 +00002469ieee80211_rx_h_ctrl(struct ieee80211_rx_data *rx, struct sk_buff_head *frames)
Ron Rindjunsky71364712007-12-25 17:00:36 +02002470{
Ron Rindjunsky71364712007-12-25 17:00:36 +02002471 struct sk_buff *skb = rx->skb;
Harvey Harrisona7767f92008-07-02 16:30:51 -07002472 struct ieee80211_bar *bar = (struct ieee80211_bar *)skb->data;
Ron Rindjunsky71364712007-12-25 17:00:36 +02002473 struct tid_ampdu_rx *tid_agg_rx;
2474 u16 start_seq_num;
2475 u16 tid;
2476
Harvey Harrisona7767f92008-07-02 16:30:51 -07002477 if (likely(!ieee80211_is_ctl(bar->frame_control)))
Johannes Berg9ae54c82008-01-31 19:48:20 +01002478 return RX_CONTINUE;
Ron Rindjunsky71364712007-12-25 17:00:36 +02002479
Harvey Harrisona7767f92008-07-02 16:30:51 -07002480 if (ieee80211_is_back_req(bar->frame_control)) {
Johannes Berg8ae59772010-05-30 14:52:58 +02002481 struct {
2482 __le16 control, start_seq_num;
2483 } __packed bar_data;
Emmanuel Grumbach63822462015-04-20 22:53:37 +03002484 struct ieee80211_event event = {
2485 .type = BAR_RX_EVENT,
2486 };
Johannes Berg8ae59772010-05-30 14:52:58 +02002487
Ron Rindjunsky71364712007-12-25 17:00:36 +02002488 if (!rx->sta)
Johannes Berga02ae752009-11-16 12:00:40 +01002489 return RX_DROP_MONITOR;
Johannes Berg8ae59772010-05-30 14:52:58 +02002490
2491 if (skb_copy_bits(skb, offsetof(struct ieee80211_bar, control),
2492 &bar_data, sizeof(bar_data)))
2493 return RX_DROP_MONITOR;
2494
Johannes Berg8ae59772010-05-30 14:52:58 +02002495 tid = le16_to_cpu(bar_data.control) >> 12;
Johannes Berga87f7362010-06-10 10:21:38 +02002496
2497 tid_agg_rx = rcu_dereference(rx->sta->ampdu_mlme.tid_rx[tid]);
2498 if (!tid_agg_rx)
Johannes Berga02ae752009-11-16 12:00:40 +01002499 return RX_DROP_MONITOR;
Ron Rindjunsky71364712007-12-25 17:00:36 +02002500
Johannes Berg8ae59772010-05-30 14:52:58 +02002501 start_seq_num = le16_to_cpu(bar_data.start_seq_num) >> 4;
Emmanuel Grumbach63822462015-04-20 22:53:37 +03002502 event.u.ba.tid = tid;
2503 event.u.ba.ssn = start_seq_num;
2504 event.u.ba.sta = &rx->sta->sta;
Ron Rindjunsky71364712007-12-25 17:00:36 +02002505
2506 /* reset session timer */
Johannes Berg20ad19d2009-02-10 21:25:45 +01002507 if (tid_agg_rx->timeout)
2508 mod_timer(&tid_agg_rx->session_timer,
2509 TU_TO_EXP_TIME(tid_agg_rx->timeout));
Ron Rindjunsky71364712007-12-25 17:00:36 +02002510
Johannes Bergdd318572010-11-29 11:09:16 +01002511 spin_lock(&tid_agg_rx->reorder_lock);
Johannes Berga02ae752009-11-16 12:00:40 +01002512 /* release stored frames up to start of BAR */
Johannes Bergd3b2fb52012-06-22 12:48:38 +02002513 ieee80211_release_reorder_frames(rx->sdata, tid_agg_rx,
Christian Lamparterf9e124f2013-02-04 17:44:44 +00002514 start_seq_num, frames);
Johannes Bergdd318572010-11-29 11:09:16 +01002515 spin_unlock(&tid_agg_rx->reorder_lock);
2516
Emmanuel Grumbach63822462015-04-20 22:53:37 +03002517 drv_event_callback(rx->local, rx->sdata, &event);
2518
Johannes Berga02ae752009-11-16 12:00:40 +01002519 kfree_skb(skb);
2520 return RX_QUEUED;
Ron Rindjunsky71364712007-12-25 17:00:36 +02002521 }
2522
Johannes Berg08daeca2010-05-30 14:53:43 +02002523 /*
2524 * After this point, we only want management frames,
2525 * so we can drop all remaining control frames to
2526 * cooked monitor interfaces.
2527 */
2528 return RX_DROP_MONITOR;
Ron Rindjunsky71364712007-12-25 17:00:36 +02002529}
2530
Jouni Malinenf4f727a2009-01-10 11:46:53 +02002531static void ieee80211_process_sa_query_req(struct ieee80211_sub_if_data *sdata,
2532 struct ieee80211_mgmt *mgmt,
2533 size_t len)
Jouni Malinenfea14732009-01-08 13:32:06 +02002534{
2535 struct ieee80211_local *local = sdata->local;
2536 struct sk_buff *skb;
2537 struct ieee80211_mgmt *resp;
2538
Joe Perchesb203ca32012-05-08 18:56:52 +00002539 if (!ether_addr_equal(mgmt->da, sdata->vif.addr)) {
Jouni Malinenfea14732009-01-08 13:32:06 +02002540 /* Not to own unicast address */
2541 return;
2542 }
2543
Joe Perchesb203ca32012-05-08 18:56:52 +00002544 if (!ether_addr_equal(mgmt->sa, sdata->u.mgd.bssid) ||
2545 !ether_addr_equal(mgmt->bssid, sdata->u.mgd.bssid)) {
Johannes Berg77fdaa12009-07-07 03:45:17 +02002546 /* Not from the current AP or not associated yet. */
Jouni Malinenfea14732009-01-08 13:32:06 +02002547 return;
2548 }
2549
2550 if (len < 24 + 1 + sizeof(resp->u.action.u.sa_query)) {
2551 /* Too short SA Query request frame */
2552 return;
2553 }
2554
2555 skb = dev_alloc_skb(sizeof(*resp) + local->hw.extra_tx_headroom);
2556 if (skb == NULL)
2557 return;
2558
2559 skb_reserve(skb, local->hw.extra_tx_headroom);
2560 resp = (struct ieee80211_mgmt *) skb_put(skb, 24);
2561 memset(resp, 0, 24);
2562 memcpy(resp->da, mgmt->sa, ETH_ALEN);
Johannes Berg47846c92009-11-25 17:46:19 +01002563 memcpy(resp->sa, sdata->vif.addr, ETH_ALEN);
Johannes Berg46900292009-02-15 12:44:28 +01002564 memcpy(resp->bssid, sdata->u.mgd.bssid, ETH_ALEN);
Jouni Malinenfea14732009-01-08 13:32:06 +02002565 resp->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
2566 IEEE80211_STYPE_ACTION);
2567 skb_put(skb, 1 + sizeof(resp->u.action.u.sa_query));
2568 resp->u.action.category = WLAN_CATEGORY_SA_QUERY;
2569 resp->u.action.u.sa_query.action = WLAN_ACTION_SA_QUERY_RESPONSE;
2570 memcpy(resp->u.action.u.sa_query.trans_id,
2571 mgmt->u.action.u.sa_query.trans_id,
2572 WLAN_SA_QUERY_TR_ID_LEN);
2573
Johannes Berg62ae67b2009-11-18 18:42:05 +01002574 ieee80211_tx_skb(sdata, skb);
Jouni Malinenfea14732009-01-08 13:32:06 +02002575}
2576
Johannes Berg49461622008-06-30 15:10:45 +02002577static ieee80211_rx_result debug_noinline
Johannes Berg2e161f72010-08-12 15:38:38 +02002578ieee80211_rx_h_mgmt_check(struct ieee80211_rx_data *rx)
2579{
2580 struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *) rx->skb->data;
Johannes Berg554891e2010-09-24 12:38:25 +02002581 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(rx->skb);
Johannes Berg2e161f72010-08-12 15:38:38 +02002582
2583 /*
2584 * From here on, look only at management frames.
2585 * Data and control frames are already handled,
2586 * and unknown (reserved) frames are useless.
2587 */
2588 if (rx->skb->len < 24)
2589 return RX_DROP_MONITOR;
2590
2591 if (!ieee80211_is_mgmt(mgmt->frame_control))
2592 return RX_DROP_MONITOR;
2593
Johannes Bergee971922011-11-04 11:18:18 +01002594 if (rx->sdata->vif.type == NL80211_IFTYPE_AP &&
2595 ieee80211_is_beacon(mgmt->frame_control) &&
2596 !(rx->flags & IEEE80211_RX_BEACON_REPORTED)) {
Johannes Berg804483e2012-03-05 22:18:41 +01002597 int sig = 0;
2598
Johannes Berg30686bf2015-06-02 21:39:54 +02002599 if (ieee80211_hw_check(&rx->local->hw, SIGNAL_DBM))
Johannes Berg804483e2012-03-05 22:18:41 +01002600 sig = status->signal;
2601
Johannes Bergee971922011-11-04 11:18:18 +01002602 cfg80211_report_obss_beacon(rx->local->hw.wiphy,
2603 rx->skb->data, rx->skb->len,
Ben Greear37c73b52012-10-26 14:49:25 -07002604 status->freq, sig);
Johannes Bergee971922011-11-04 11:18:18 +01002605 rx->flags |= IEEE80211_RX_BEACON_REPORTED;
2606 }
2607
Johannes Berg2e161f72010-08-12 15:38:38 +02002608 if (ieee80211_drop_unencrypted_mgmt(rx))
2609 return RX_DROP_UNUSABLE;
2610
2611 return RX_CONTINUE;
2612}
2613
2614static ieee80211_rx_result debug_noinline
Johannes Bergde1ede72008-09-09 14:42:50 +02002615ieee80211_rx_h_action(struct ieee80211_rx_data *rx)
2616{
2617 struct ieee80211_local *local = rx->local;
Johannes Bergeb9fb5b2009-11-16 13:58:20 +01002618 struct ieee80211_sub_if_data *sdata = rx->sdata;
Johannes Bergde1ede72008-09-09 14:42:50 +02002619 struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *) rx->skb->data;
Johannes Berg554891e2010-09-24 12:38:25 +02002620 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(rx->skb);
Johannes Bergde1ede72008-09-09 14:42:50 +02002621 int len = rx->skb->len;
2622
2623 if (!ieee80211_is_action(mgmt->frame_control))
2624 return RX_CONTINUE;
2625
Jouni Malinen026331c2010-02-15 12:53:10 +02002626 /* drop too small frames */
2627 if (len < IEEE80211_MIN_ACTION_SIZE)
2628 return RX_DROP_UNUSABLE;
2629
Marco Porsch815b8092012-12-05 15:04:26 -08002630 if (!rx->sta && mgmt->u.action.category != WLAN_CATEGORY_PUBLIC &&
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02002631 mgmt->u.action.category != WLAN_CATEGORY_SELF_PROTECTED &&
2632 mgmt->u.action.category != WLAN_CATEGORY_SPECTRUM_MGMT)
Johannes Berg84040802010-02-15 12:46:39 +02002633 return RX_DROP_UNUSABLE;
Johannes Bergde1ede72008-09-09 14:42:50 +02002634
Johannes Bergde1ede72008-09-09 14:42:50 +02002635 switch (mgmt->u.action.category) {
Johannes Berg1d8d3de2011-12-16 15:28:57 +01002636 case WLAN_CATEGORY_HT:
2637 /* reject HT action frames from stations not supporting HT */
2638 if (!rx->sta->sta.ht_cap.ht_supported)
2639 goto invalid;
2640
2641 if (sdata->vif.type != NL80211_IFTYPE_STATION &&
2642 sdata->vif.type != NL80211_IFTYPE_MESH_POINT &&
2643 sdata->vif.type != NL80211_IFTYPE_AP_VLAN &&
2644 sdata->vif.type != NL80211_IFTYPE_AP &&
2645 sdata->vif.type != NL80211_IFTYPE_ADHOC)
2646 break;
2647
Johannes Bergec61cd62012-12-28 12:12:10 +01002648 /* verify action & smps_control/chanwidth are present */
Johannes Berg1d8d3de2011-12-16 15:28:57 +01002649 if (len < IEEE80211_MIN_ACTION_SIZE + 2)
2650 goto invalid;
2651
2652 switch (mgmt->u.action.u.ht_smps.action) {
2653 case WLAN_HT_ACTION_SMPS: {
2654 struct ieee80211_supported_band *sband;
Johannes Bergaf0ed692013-02-12 14:21:00 +01002655 enum ieee80211_smps_mode smps_mode;
Johannes Berg1d8d3de2011-12-16 15:28:57 +01002656
2657 /* convert to HT capability */
2658 switch (mgmt->u.action.u.ht_smps.smps_control) {
2659 case WLAN_HT_SMPS_CONTROL_DISABLED:
Johannes Bergaf0ed692013-02-12 14:21:00 +01002660 smps_mode = IEEE80211_SMPS_OFF;
Johannes Berg1d8d3de2011-12-16 15:28:57 +01002661 break;
2662 case WLAN_HT_SMPS_CONTROL_STATIC:
Johannes Bergaf0ed692013-02-12 14:21:00 +01002663 smps_mode = IEEE80211_SMPS_STATIC;
Johannes Berg1d8d3de2011-12-16 15:28:57 +01002664 break;
2665 case WLAN_HT_SMPS_CONTROL_DYNAMIC:
Johannes Bergaf0ed692013-02-12 14:21:00 +01002666 smps_mode = IEEE80211_SMPS_DYNAMIC;
Johannes Berg1d8d3de2011-12-16 15:28:57 +01002667 break;
2668 default:
2669 goto invalid;
2670 }
Johannes Berg1d8d3de2011-12-16 15:28:57 +01002671
2672 /* if no change do nothing */
Johannes Bergaf0ed692013-02-12 14:21:00 +01002673 if (rx->sta->sta.smps_mode == smps_mode)
Johannes Berg1d8d3de2011-12-16 15:28:57 +01002674 goto handled;
Johannes Bergaf0ed692013-02-12 14:21:00 +01002675 rx->sta->sta.smps_mode = smps_mode;
Johannes Berg1d8d3de2011-12-16 15:28:57 +01002676
2677 sband = rx->local->hw.wiphy->bands[status->band];
2678
Johannes Berg64f68e52012-03-28 10:58:37 +02002679 rate_control_rate_update(local, sband, rx->sta,
2680 IEEE80211_RC_SMPS_CHANGED);
Johannes Berg1d8d3de2011-12-16 15:28:57 +01002681 goto handled;
2682 }
Johannes Bergec61cd62012-12-28 12:12:10 +01002683 case WLAN_HT_ACTION_NOTIFY_CHANWIDTH: {
2684 struct ieee80211_supported_band *sband;
2685 u8 chanwidth = mgmt->u.action.u.ht_notify_cw.chanwidth;
Eliad Peller1c45c5c2014-12-14 11:05:51 +02002686 enum ieee80211_sta_rx_bandwidth max_bw, new_bw;
Johannes Bergec61cd62012-12-28 12:12:10 +01002687
2688 /* If it doesn't support 40 MHz it can't change ... */
Johannes Berge1a0c6b2013-02-07 11:47:44 +01002689 if (!(rx->sta->sta.ht_cap.cap &
2690 IEEE80211_HT_CAP_SUP_WIDTH_20_40))
Johannes Bergec61cd62012-12-28 12:12:10 +01002691 goto handled;
2692
Johannes Berge1a0c6b2013-02-07 11:47:44 +01002693 if (chanwidth == IEEE80211_HT_CHANWIDTH_20MHZ)
Eliad Peller1c45c5c2014-12-14 11:05:51 +02002694 max_bw = IEEE80211_STA_RX_BW_20;
Johannes Bergec61cd62012-12-28 12:12:10 +01002695 else
Eliad Peller1c45c5c2014-12-14 11:05:51 +02002696 max_bw = ieee80211_sta_cap_rx_bw(rx->sta);
2697
2698 /* set cur_max_bandwidth and recalc sta bw */
2699 rx->sta->cur_max_bandwidth = max_bw;
2700 new_bw = ieee80211_sta_cur_vht_bw(rx->sta);
Johannes Berge1a0c6b2013-02-07 11:47:44 +01002701
2702 if (rx->sta->sta.bandwidth == new_bw)
2703 goto handled;
Johannes Bergec61cd62012-12-28 12:12:10 +01002704
Eliad Peller1c45c5c2014-12-14 11:05:51 +02002705 rx->sta->sta.bandwidth = new_bw;
Johannes Bergec61cd62012-12-28 12:12:10 +01002706 sband = rx->local->hw.wiphy->bands[status->band];
2707
2708 rate_control_rate_update(local, sband, rx->sta,
2709 IEEE80211_RC_BW_CHANGED);
2710 goto handled;
2711 }
Johannes Berg1d8d3de2011-12-16 15:28:57 +01002712 default:
2713 goto invalid;
2714 }
2715
2716 break;
Johannes Berg1b3a2e42013-03-26 15:17:18 +01002717 case WLAN_CATEGORY_PUBLIC:
2718 if (len < IEEE80211_MIN_ACTION_SIZE + 1)
2719 goto invalid;
2720 if (sdata->vif.type != NL80211_IFTYPE_STATION)
2721 break;
2722 if (!rx->sta)
2723 break;
2724 if (!ether_addr_equal(mgmt->bssid, sdata->u.mgd.bssid))
2725 break;
2726 if (mgmt->u.action.u.ext_chan_switch.action_code !=
2727 WLAN_PUB_ACTION_EXT_CHANSW_ANN)
2728 break;
2729 if (len < offsetof(struct ieee80211_mgmt,
2730 u.action.u.ext_chan_switch.variable))
2731 goto invalid;
2732 goto queue;
Johannes Berg0af83d32012-12-27 18:55:36 +01002733 case WLAN_CATEGORY_VHT:
2734 if (sdata->vif.type != NL80211_IFTYPE_STATION &&
2735 sdata->vif.type != NL80211_IFTYPE_MESH_POINT &&
2736 sdata->vif.type != NL80211_IFTYPE_AP_VLAN &&
2737 sdata->vif.type != NL80211_IFTYPE_AP &&
2738 sdata->vif.type != NL80211_IFTYPE_ADHOC)
2739 break;
2740
2741 /* verify action code is present */
2742 if (len < IEEE80211_MIN_ACTION_SIZE + 1)
2743 goto invalid;
2744
2745 switch (mgmt->u.action.u.vht_opmode_notif.action_code) {
2746 case WLAN_VHT_ACTION_OPMODE_NOTIF: {
2747 u8 opmode;
2748
2749 /* verify opmode is present */
2750 if (len < IEEE80211_MIN_ACTION_SIZE + 2)
2751 goto invalid;
2752
2753 opmode = mgmt->u.action.u.vht_opmode_notif.operating_mode;
2754
2755 ieee80211_vht_handle_opmode(rx->sdata, rx->sta,
Eyal Shapiracf1e05c2015-12-08 16:04:36 +02002756 opmode, status->band);
Johannes Berg0af83d32012-12-27 18:55:36 +01002757 goto handled;
2758 }
2759 default:
2760 break;
2761 }
2762 break;
Johannes Bergde1ede72008-09-09 14:42:50 +02002763 case WLAN_CATEGORY_BACK:
Johannes Berg8abd3f92009-02-10 21:25:47 +01002764 if (sdata->vif.type != NL80211_IFTYPE_STATION &&
Thomas Pedersenae2772b2011-10-26 14:47:29 -07002765 sdata->vif.type != NL80211_IFTYPE_MESH_POINT &&
Johannes Berg8abd3f92009-02-10 21:25:47 +01002766 sdata->vif.type != NL80211_IFTYPE_AP_VLAN &&
Alexander Simon13c40c52011-11-30 16:56:34 +01002767 sdata->vif.type != NL80211_IFTYPE_AP &&
2768 sdata->vif.type != NL80211_IFTYPE_ADHOC)
Johannes Berg84040802010-02-15 12:46:39 +02002769 break;
Johannes Berg8abd3f92009-02-10 21:25:47 +01002770
Jouni Malinen026331c2010-02-15 12:53:10 +02002771 /* verify action_code is present */
2772 if (len < IEEE80211_MIN_ACTION_SIZE + 1)
2773 break;
2774
Johannes Bergde1ede72008-09-09 14:42:50 +02002775 switch (mgmt->u.action.u.addba_req.action_code) {
2776 case WLAN_ACTION_ADDBA_REQ:
2777 if (len < (IEEE80211_MIN_ACTION_SIZE +
2778 sizeof(mgmt->u.action.u.addba_req)))
Johannes Bergbed7ee6e2010-06-10 10:21:35 +02002779 goto invalid;
2780 break;
Johannes Bergde1ede72008-09-09 14:42:50 +02002781 case WLAN_ACTION_ADDBA_RESP:
2782 if (len < (IEEE80211_MIN_ACTION_SIZE +
2783 sizeof(mgmt->u.action.u.addba_resp)))
Johannes Bergbed7ee6e2010-06-10 10:21:35 +02002784 goto invalid;
2785 break;
Johannes Bergde1ede72008-09-09 14:42:50 +02002786 case WLAN_ACTION_DELBA:
2787 if (len < (IEEE80211_MIN_ACTION_SIZE +
2788 sizeof(mgmt->u.action.u.delba)))
Johannes Bergbed7ee6e2010-06-10 10:21:35 +02002789 goto invalid;
2790 break;
2791 default:
2792 goto invalid;
Johannes Bergde1ede72008-09-09 14:42:50 +02002793 }
Johannes Bergbed7ee6e2010-06-10 10:21:35 +02002794
Johannes Berg8b58ff82010-06-10 10:21:51 +02002795 goto queue;
Johannes Berg39192c02008-09-09 14:49:03 +02002796 case WLAN_CATEGORY_SPECTRUM_MGMT:
Jouni Malinen026331c2010-02-15 12:53:10 +02002797 /* verify action_code is present */
2798 if (len < IEEE80211_MIN_ACTION_SIZE + 1)
2799 break;
2800
Johannes Berg39192c02008-09-09 14:49:03 +02002801 switch (mgmt->u.action.u.measurement.action_code) {
2802 case WLAN_ACTION_SPCT_MSR_REQ:
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02002803 if (status->band != IEEE80211_BAND_5GHZ)
2804 break;
2805
Johannes Berg39192c02008-09-09 14:49:03 +02002806 if (len < (IEEE80211_MIN_ACTION_SIZE +
2807 sizeof(mgmt->u.action.u.measurement)))
Johannes Berg84040802010-02-15 12:46:39 +02002808 break;
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02002809
Johannes Bergcc32abd2009-05-15 11:52:31 +02002810 if (sdata->vif.type != NL80211_IFTYPE_STATION)
Johannes Berg84040802010-02-15 12:46:39 +02002811 break;
Johannes Bergcc32abd2009-05-15 11:52:31 +02002812
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02002813 ieee80211_process_measurement_req(sdata, mgmt, len);
2814 goto handled;
2815 case WLAN_ACTION_SPCT_CHL_SWITCH: {
2816 u8 *bssid;
2817 if (len < (IEEE80211_MIN_ACTION_SIZE +
2818 sizeof(mgmt->u.action.u.chan_switch)))
2819 break;
2820
2821 if (sdata->vif.type != NL80211_IFTYPE_STATION &&
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07002822 sdata->vif.type != NL80211_IFTYPE_ADHOC &&
2823 sdata->vif.type != NL80211_IFTYPE_MESH_POINT)
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02002824 break;
2825
2826 if (sdata->vif.type == NL80211_IFTYPE_STATION)
2827 bssid = sdata->u.mgd.bssid;
2828 else if (sdata->vif.type == NL80211_IFTYPE_ADHOC)
2829 bssid = sdata->u.ibss.bssid;
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07002830 else if (sdata->vif.type == NL80211_IFTYPE_MESH_POINT)
2831 bssid = mgmt->sa;
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02002832 else
2833 break;
2834
2835 if (!ether_addr_equal(mgmt->bssid, bssid))
Johannes Berg84040802010-02-15 12:46:39 +02002836 break;
Sujithc481ec92009-01-06 09:28:37 +05302837
Johannes Berg8b58ff82010-06-10 10:21:51 +02002838 goto queue;
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02002839 }
Johannes Berg39192c02008-09-09 14:49:03 +02002840 }
2841 break;
Jouni Malinenfea14732009-01-08 13:32:06 +02002842 case WLAN_CATEGORY_SA_QUERY:
2843 if (len < (IEEE80211_MIN_ACTION_SIZE +
2844 sizeof(mgmt->u.action.u.sa_query)))
Johannes Berg84040802010-02-15 12:46:39 +02002845 break;
2846
Jouni Malinenfea14732009-01-08 13:32:06 +02002847 switch (mgmt->u.action.u.sa_query.action) {
2848 case WLAN_ACTION_SA_QUERY_REQUEST:
2849 if (sdata->vif.type != NL80211_IFTYPE_STATION)
Johannes Berg84040802010-02-15 12:46:39 +02002850 break;
Jouni Malinenfea14732009-01-08 13:32:06 +02002851 ieee80211_process_sa_query_req(sdata, mgmt, len);
Johannes Berg84040802010-02-15 12:46:39 +02002852 goto handled;
Jouni Malinenfea14732009-01-08 13:32:06 +02002853 }
2854 break;
Thomas Pedersen8db09852011-08-12 20:01:00 -07002855 case WLAN_CATEGORY_SELF_PROTECTED:
Johannes Berg9b395bc2012-10-26 00:36:40 +02002856 if (len < (IEEE80211_MIN_ACTION_SIZE +
2857 sizeof(mgmt->u.action.u.self_prot.action_code)))
2858 break;
2859
Thomas Pedersen8db09852011-08-12 20:01:00 -07002860 switch (mgmt->u.action.u.self_prot.action_code) {
2861 case WLAN_SP_MESH_PEERING_OPEN:
2862 case WLAN_SP_MESH_PEERING_CLOSE:
2863 case WLAN_SP_MESH_PEERING_CONFIRM:
2864 if (!ieee80211_vif_is_mesh(&sdata->vif))
2865 goto invalid;
Thomas Pedersena6dad6a2013-03-04 13:06:12 -08002866 if (sdata->u.mesh.user_mpm)
Thomas Pedersen8db09852011-08-12 20:01:00 -07002867 /* userspace handles this frame */
2868 break;
2869 goto queue;
2870 case WLAN_SP_MGK_INFORM:
2871 case WLAN_SP_MGK_ACK:
2872 if (!ieee80211_vif_is_mesh(&sdata->vif))
2873 goto invalid;
2874 break;
2875 }
2876 break;
Javier Cardonad3aaec8a2011-05-03 16:57:09 -07002877 case WLAN_CATEGORY_MESH_ACTION:
Johannes Berg9b395bc2012-10-26 00:36:40 +02002878 if (len < (IEEE80211_MIN_ACTION_SIZE +
2879 sizeof(mgmt->u.action.u.mesh_action.action_code)))
2880 break;
2881
Johannes Berg77a121c2010-06-10 10:21:34 +02002882 if (!ieee80211_vif_is_mesh(&sdata->vif))
2883 break;
Thomas Pedersen25d49e42011-08-11 19:35:15 -07002884 if (mesh_action_is_path_sel(mgmt) &&
Johannes Berg1df332e2012-10-26 00:09:11 +02002885 !mesh_path_sel_is_hwmp(sdata))
Javier Cardonac7108a72010-12-16 17:37:50 -08002886 break;
2887 goto queue;
Johannes Berg84040802010-02-15 12:46:39 +02002888 }
Jouni Malinen026331c2010-02-15 12:53:10 +02002889
Johannes Berg2e161f72010-08-12 15:38:38 +02002890 return RX_CONTINUE;
2891
Johannes Bergbed7ee6e2010-06-10 10:21:35 +02002892 invalid:
Johannes Berg554891e2010-09-24 12:38:25 +02002893 status->rx_flags |= IEEE80211_RX_MALFORMED_ACTION_FRM;
Johannes Berg2e161f72010-08-12 15:38:38 +02002894 /* will return in the next handlers */
2895 return RX_CONTINUE;
2896
2897 handled:
2898 if (rx->sta)
Johannes Berge5a9f8d2015-10-16 17:54:47 +02002899 rx->sta->rx_stats.packets++;
Johannes Berg2e161f72010-08-12 15:38:38 +02002900 dev_kfree_skb(rx->skb);
2901 return RX_QUEUED;
2902
2903 queue:
2904 rx->skb->pkt_type = IEEE80211_SDATA_QUEUE_TYPE_FRAME;
2905 skb_queue_tail(&sdata->skb_queue, rx->skb);
2906 ieee80211_queue_work(&local->hw, &sdata->work);
2907 if (rx->sta)
Johannes Berge5a9f8d2015-10-16 17:54:47 +02002908 rx->sta->rx_stats.packets++;
Johannes Berg2e161f72010-08-12 15:38:38 +02002909 return RX_QUEUED;
2910}
2911
2912static ieee80211_rx_result debug_noinline
2913ieee80211_rx_h_userspace_mgmt(struct ieee80211_rx_data *rx)
2914{
Johannes Berg554891e2010-09-24 12:38:25 +02002915 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(rx->skb);
Johannes Berg804483e2012-03-05 22:18:41 +01002916 int sig = 0;
Johannes Berg2e161f72010-08-12 15:38:38 +02002917
2918 /* skip known-bad action frames and return them in the next handler */
Johannes Berg554891e2010-09-24 12:38:25 +02002919 if (status->rx_flags & IEEE80211_RX_MALFORMED_ACTION_FRM)
Johannes Berg2e161f72010-08-12 15:38:38 +02002920 return RX_CONTINUE;
Felix Fietkaud7907442010-01-07 20:23:53 +01002921
Jouni Malinen026331c2010-02-15 12:53:10 +02002922 /*
2923 * Getting here means the kernel doesn't know how to handle
2924 * it, but maybe userspace does ... include returned frames
2925 * so userspace can register for those to know whether ones
2926 * it transmitted were processed or returned.
2927 */
Jouni Malinen026331c2010-02-15 12:53:10 +02002928
Johannes Berg30686bf2015-06-02 21:39:54 +02002929 if (ieee80211_hw_check(&rx->local->hw, SIGNAL_DBM))
Johannes Berg804483e2012-03-05 22:18:41 +01002930 sig = status->signal;
2931
Johannes Berg71bbc992012-06-15 15:30:18 +02002932 if (cfg80211_rx_mgmt(&rx->sdata->wdev, status->freq, sig,
Vladimir Kondratiev970fdfa2014-08-11 03:29:57 -07002933 rx->skb->data, rx->skb->len, 0)) {
Johannes Berg2e161f72010-08-12 15:38:38 +02002934 if (rx->sta)
Johannes Berge5a9f8d2015-10-16 17:54:47 +02002935 rx->sta->rx_stats.packets++;
Johannes Berg2e161f72010-08-12 15:38:38 +02002936 dev_kfree_skb(rx->skb);
2937 return RX_QUEUED;
2938 }
2939
Johannes Berg2e161f72010-08-12 15:38:38 +02002940 return RX_CONTINUE;
2941}
2942
2943static ieee80211_rx_result debug_noinline
2944ieee80211_rx_h_action_return(struct ieee80211_rx_data *rx)
2945{
2946 struct ieee80211_local *local = rx->local;
2947 struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *) rx->skb->data;
2948 struct sk_buff *nskb;
2949 struct ieee80211_sub_if_data *sdata = rx->sdata;
Johannes Berg554891e2010-09-24 12:38:25 +02002950 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(rx->skb);
Johannes Berg2e161f72010-08-12 15:38:38 +02002951
2952 if (!ieee80211_is_action(mgmt->frame_control))
2953 return RX_CONTINUE;
2954
2955 /*
2956 * For AP mode, hostapd is responsible for handling any action
2957 * frames that we didn't handle, including returning unknown
2958 * ones. For all other modes we will return them to the sender,
2959 * setting the 0x80 bit in the action category, as required by
Johannes Berg4b5ebcc2012-06-27 15:38:56 +02002960 * 802.11-2012 9.24.4.
Johannes Berg2e161f72010-08-12 15:38:38 +02002961 * Newer versions of hostapd shall also use the management frame
2962 * registration mechanisms, but older ones still use cooked
2963 * monitor interfaces so push all frames there.
2964 */
Johannes Berg554891e2010-09-24 12:38:25 +02002965 if (!(status->rx_flags & IEEE80211_RX_MALFORMED_ACTION_FRM) &&
Johannes Berg2e161f72010-08-12 15:38:38 +02002966 (sdata->vif.type == NL80211_IFTYPE_AP ||
2967 sdata->vif.type == NL80211_IFTYPE_AP_VLAN))
2968 return RX_DROP_MONITOR;
Jouni Malinen026331c2010-02-15 12:53:10 +02002969
Johannes Berg4b5ebcc2012-06-27 15:38:56 +02002970 if (is_multicast_ether_addr(mgmt->da))
2971 return RX_DROP_MONITOR;
2972
Johannes Berg84040802010-02-15 12:46:39 +02002973 /* do not return rejected action frames */
2974 if (mgmt->u.action.category & 0x80)
2975 return RX_DROP_UNUSABLE;
2976
2977 nskb = skb_copy_expand(rx->skb, local->hw.extra_tx_headroom, 0,
2978 GFP_ATOMIC);
2979 if (nskb) {
John W. Linville292b4df2010-06-24 11:13:56 -04002980 struct ieee80211_mgmt *nmgmt = (void *)nskb->data;
Johannes Berg84040802010-02-15 12:46:39 +02002981
John W. Linville292b4df2010-06-24 11:13:56 -04002982 nmgmt->u.action.category |= 0x80;
2983 memcpy(nmgmt->da, nmgmt->sa, ETH_ALEN);
2984 memcpy(nmgmt->sa, rx->sdata->vif.addr, ETH_ALEN);
Johannes Berg84040802010-02-15 12:46:39 +02002985
2986 memset(nskb->cb, 0, sizeof(nskb->cb));
2987
Johannes Berg07e5a5f2013-03-07 13:22:05 +01002988 if (rx->sdata->vif.type == NL80211_IFTYPE_P2P_DEVICE) {
2989 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(nskb);
2990
2991 info->flags = IEEE80211_TX_CTL_TX_OFFCHAN |
2992 IEEE80211_TX_INTFL_OFFCHAN_TX_OK |
2993 IEEE80211_TX_CTL_NO_CCK_RATE;
Johannes Berg30686bf2015-06-02 21:39:54 +02002994 if (ieee80211_hw_check(&local->hw, QUEUE_CONTROL))
Johannes Berg07e5a5f2013-03-07 13:22:05 +01002995 info->hw_queue =
2996 local->hw.offchannel_tx_hw_queue;
2997 }
2998
2999 __ieee80211_tx_skb_tid_band(rx->sdata, nskb, 7,
3000 status->band);
Johannes Bergde1ede72008-09-09 14:42:50 +02003001 }
Johannes Berg39192c02008-09-09 14:49:03 +02003002 dev_kfree_skb(rx->skb);
3003 return RX_QUEUED;
Johannes Bergde1ede72008-09-09 14:42:50 +02003004}
3005
3006static ieee80211_rx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +01003007ieee80211_rx_h_mgmt(struct ieee80211_rx_data *rx)
Johannes Berg571ecf62007-07-27 15:43:22 +02003008{
Johannes Bergeb9fb5b2009-11-16 13:58:20 +01003009 struct ieee80211_sub_if_data *sdata = rx->sdata;
Johannes Berg77a121c2010-06-10 10:21:34 +02003010 struct ieee80211_mgmt *mgmt = (void *)rx->skb->data;
3011 __le16 stype;
Johannes Berg571ecf62007-07-27 15:43:22 +02003012
Johannes Berg77a121c2010-06-10 10:21:34 +02003013 stype = mgmt->frame_control & cpu_to_le16(IEEE80211_FCTL_STYPE);
Johannes Berg472dbc42008-09-11 00:01:49 +02003014
Johannes Berg77a121c2010-06-10 10:21:34 +02003015 if (!ieee80211_vif_is_mesh(&sdata->vif) &&
3016 sdata->vif.type != NL80211_IFTYPE_ADHOC &&
Rostislav Lisovy239281f2014-11-03 10:33:19 +01003017 sdata->vif.type != NL80211_IFTYPE_OCB &&
Johannes Berg77a121c2010-06-10 10:21:34 +02003018 sdata->vif.type != NL80211_IFTYPE_STATION)
3019 return RX_DROP_MONITOR;
Johannes Bergf9d540e2007-09-28 14:02:09 +02003020
Johannes Berg77a121c2010-06-10 10:21:34 +02003021 switch (stype) {
Johannes Berg66e67e42012-01-20 13:55:27 +01003022 case cpu_to_le16(IEEE80211_STYPE_AUTH):
Johannes Berg77a121c2010-06-10 10:21:34 +02003023 case cpu_to_le16(IEEE80211_STYPE_BEACON):
3024 case cpu_to_le16(IEEE80211_STYPE_PROBE_RESP):
3025 /* process for all: mesh, mlme, ibss */
3026 break;
Johannes Berg66e67e42012-01-20 13:55:27 +01003027 case cpu_to_le16(IEEE80211_STYPE_ASSOC_RESP):
3028 case cpu_to_le16(IEEE80211_STYPE_REASSOC_RESP):
Johannes Berg77a121c2010-06-10 10:21:34 +02003029 case cpu_to_le16(IEEE80211_STYPE_DEAUTH):
3030 case cpu_to_le16(IEEE80211_STYPE_DISASSOC):
Christian Lamparter2c313332010-11-29 20:53:23 +01003031 if (is_multicast_ether_addr(mgmt->da) &&
3032 !is_broadcast_ether_addr(mgmt->da))
3033 return RX_DROP_MONITOR;
3034
Johannes Berg77a121c2010-06-10 10:21:34 +02003035 /* process only for station */
3036 if (sdata->vif.type != NL80211_IFTYPE_STATION)
3037 return RX_DROP_MONITOR;
3038 break;
3039 case cpu_to_le16(IEEE80211_STYPE_PROBE_REQ):
Thomas Pedersen9fb04b52013-02-14 11:20:14 -08003040 /* process only for ibss and mesh */
3041 if (sdata->vif.type != NL80211_IFTYPE_ADHOC &&
3042 sdata->vif.type != NL80211_IFTYPE_MESH_POINT)
Johannes Berg77a121c2010-06-10 10:21:34 +02003043 return RX_DROP_MONITOR;
3044 break;
3045 default:
3046 return RX_DROP_MONITOR;
3047 }
Johannes Berg46900292009-02-15 12:44:28 +01003048
Johannes Berg77a121c2010-06-10 10:21:34 +02003049 /* queue up frame and kick off work to process it */
Johannes Bergc1475ca2010-06-10 10:21:37 +02003050 rx->skb->pkt_type = IEEE80211_SDATA_QUEUE_TYPE_FRAME;
Johannes Berg77a121c2010-06-10 10:21:34 +02003051 skb_queue_tail(&sdata->skb_queue, rx->skb);
3052 ieee80211_queue_work(&rx->local->hw, &sdata->work);
Johannes Berg8b58ff82010-06-10 10:21:51 +02003053 if (rx->sta)
Johannes Berge5a9f8d2015-10-16 17:54:47 +02003054 rx->sta->rx_stats.packets++;
Johannes Berg77a121c2010-06-10 10:21:34 +02003055
3056 return RX_QUEUED;
Johannes Berg571ecf62007-07-27 15:43:22 +02003057}
3058
Johannes Berg5f0b7de2009-11-16 13:58:21 +01003059static void ieee80211_rx_cooked_monitor(struct ieee80211_rx_data *rx,
3060 struct ieee80211_rate *rate)
Michael Wu3d30d942008-01-31 19:48:27 +01003061{
3062 struct ieee80211_sub_if_data *sdata;
3063 struct ieee80211_local *local = rx->local;
Michael Wu3d30d942008-01-31 19:48:27 +01003064 struct sk_buff *skb = rx->skb, *skb2;
3065 struct net_device *prev_dev = NULL;
Johannes Bergeb9fb5b2009-11-16 13:58:20 +01003066 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
Johannes Berg293702a2012-03-02 13:18:19 +01003067 int needed_headroom;
Michael Wu3d30d942008-01-31 19:48:27 +01003068
Johannes Berg554891e2010-09-24 12:38:25 +02003069 /*
3070 * If cooked monitor has been processed already, then
3071 * don't do it again. If not, set the flag.
3072 */
3073 if (rx->flags & IEEE80211_RX_CMNTR)
John W. Linville7c1e1832010-09-24 15:52:49 -04003074 goto out_free_skb;
Johannes Berg554891e2010-09-24 12:38:25 +02003075 rx->flags |= IEEE80211_RX_CMNTR;
John W. Linville7c1e1832010-09-24 15:52:49 -04003076
Johannes Berg152c4772011-10-21 10:22:22 +02003077 /* If there are no cooked monitor interfaces, just free the SKB */
3078 if (!local->cooked_mntrs)
3079 goto out_free_skb;
3080
Johannes Berg1f7bba72014-11-06 22:56:36 +01003081 /* vendor data is long removed here */
3082 status->flag &= ~RX_FLAG_RADIOTAP_VENDOR_DATA;
Johannes Berg293702a2012-03-02 13:18:19 +01003083 /* room for the radiotap header based on driver features */
Johannes Berg1f7bba72014-11-06 22:56:36 +01003084 needed_headroom = ieee80211_rx_radiotap_hdrlen(local, status, skb);
Johannes Berg293702a2012-03-02 13:18:19 +01003085
3086 if (skb_headroom(skb) < needed_headroom &&
3087 pskb_expand_head(skb, needed_headroom, 0, GFP_ATOMIC))
Michael Wu3d30d942008-01-31 19:48:27 +01003088 goto out_free_skb;
3089
Johannes Berg293702a2012-03-02 13:18:19 +01003090 /* prepend radiotap information */
Felix Fietkau973ef212012-04-16 14:56:48 +02003091 ieee80211_add_rx_radiotap_header(local, skb, rate, needed_headroom,
3092 false);
Michael Wu3d30d942008-01-31 19:48:27 +01003093
3094 skb_set_mac_header(skb, 0);
3095 skb->ip_summed = CHECKSUM_UNNECESSARY;
3096 skb->pkt_type = PACKET_OTHERHOST;
3097 skb->protocol = htons(ETH_P_802_2);
3098
3099 list_for_each_entry_rcu(sdata, &local->interfaces, list) {
Johannes Berg9607e6b2009-12-23 13:15:31 +01003100 if (!ieee80211_sdata_running(sdata))
Michael Wu3d30d942008-01-31 19:48:27 +01003101 continue;
3102
Johannes Berg05c914f2008-09-11 00:01:58 +02003103 if (sdata->vif.type != NL80211_IFTYPE_MONITOR ||
Michael Wu3d30d942008-01-31 19:48:27 +01003104 !(sdata->u.mntr_flags & MONITOR_FLAG_COOK_FRAMES))
3105 continue;
3106
3107 if (prev_dev) {
3108 skb2 = skb_clone(skb, GFP_ATOMIC);
3109 if (skb2) {
3110 skb2->dev = prev_dev;
John W. Linville5548a8a2010-06-24 14:25:56 -04003111 netif_receive_skb(skb2);
Michael Wu3d30d942008-01-31 19:48:27 +01003112 }
3113 }
3114
3115 prev_dev = sdata->dev;
Johannes Berg5a490512015-04-22 17:10:38 +02003116 ieee80211_rx_stats(sdata->dev, skb->len);
Michael Wu3d30d942008-01-31 19:48:27 +01003117 }
3118
3119 if (prev_dev) {
3120 skb->dev = prev_dev;
John W. Linville5548a8a2010-06-24 14:25:56 -04003121 netif_receive_skb(skb);
Johannes Berg554891e2010-09-24 12:38:25 +02003122 return;
3123 }
Michael Wu3d30d942008-01-31 19:48:27 +01003124
3125 out_free_skb:
3126 dev_kfree_skb(skb);
3127}
3128
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003129static void ieee80211_rx_handlers_result(struct ieee80211_rx_data *rx,
3130 ieee80211_rx_result res)
3131{
3132 switch (res) {
3133 case RX_DROP_MONITOR:
3134 I802_DEBUG_INC(rx->sdata->local->rx_handlers_drop);
3135 if (rx->sta)
Johannes Berge5a9f8d2015-10-16 17:54:47 +02003136 rx->sta->rx_stats.dropped++;
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003137 /* fall through */
3138 case RX_CONTINUE: {
3139 struct ieee80211_rate *rate = NULL;
3140 struct ieee80211_supported_band *sband;
3141 struct ieee80211_rx_status *status;
3142
3143 status = IEEE80211_SKB_RXCB((rx->skb));
3144
3145 sband = rx->local->hw.wiphy->bands[status->band];
Johannes Berg56146182012-11-09 15:07:02 +01003146 if (!(status->flag & RX_FLAG_HT) &&
3147 !(status->flag & RX_FLAG_VHT))
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003148 rate = &sband->bitrates[status->rate_idx];
3149
3150 ieee80211_rx_cooked_monitor(rx, rate);
3151 break;
3152 }
3153 case RX_DROP_UNUSABLE:
3154 I802_DEBUG_INC(rx->sdata->local->rx_handlers_drop);
3155 if (rx->sta)
Johannes Berge5a9f8d2015-10-16 17:54:47 +02003156 rx->sta->rx_stats.dropped++;
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003157 dev_kfree_skb(rx->skb);
3158 break;
3159 case RX_QUEUED:
3160 I802_DEBUG_INC(rx->sdata->local->rx_handlers_queued);
3161 break;
3162 }
3163}
3164
Christian Lamparterf9e124f2013-02-04 17:44:44 +00003165static void ieee80211_rx_handlers(struct ieee80211_rx_data *rx,
3166 struct sk_buff_head *frames)
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003167{
3168 ieee80211_rx_result res = RX_DROP_MONITOR;
3169 struct sk_buff *skb;
3170
3171#define CALL_RXH(rxh) \
3172 do { \
3173 res = rxh(rx); \
3174 if (res != RX_CONTINUE) \
3175 goto rxh_next; \
3176 } while (0);
3177
Johannes Berg45ceeee2015-03-16 09:08:20 +01003178 /* Lock here to avoid hitting all of the data used in the RX
3179 * path (e.g. key data, station data, ...) concurrently when
3180 * a frame is released from the reorder buffer due to timeout
3181 * from the timer, potentially concurrently with RX from the
3182 * driver.
3183 */
Christian Lamparterf9e124f2013-02-04 17:44:44 +00003184 spin_lock_bh(&rx->local->rx_path_lock);
Christian Lamparter24a8fda2010-12-30 17:25:29 +01003185
Christian Lamparterf9e124f2013-02-04 17:44:44 +00003186 while ((skb = __skb_dequeue(frames))) {
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003187 /*
3188 * all the other fields are valid across frames
3189 * that belong to an aMPDU since they are on the
3190 * same TID from the same station
3191 */
3192 rx->skb = skb;
3193
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003194 CALL_RXH(ieee80211_rx_h_check_more_data)
Johannes Berg47086fc2011-09-29 16:04:33 +02003195 CALL_RXH(ieee80211_rx_h_uapsd_and_pspoll)
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003196 CALL_RXH(ieee80211_rx_h_sta_process)
Johan Almbladh86c228a2013-08-14 15:29:46 +02003197 CALL_RXH(ieee80211_rx_h_decrypt)
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003198 CALL_RXH(ieee80211_rx_h_defragment)
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003199 CALL_RXH(ieee80211_rx_h_michael_mic_verify)
3200 /* must be after MMIC verify so header is counted in MPDU mic */
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003201#ifdef CONFIG_MAC80211_MESH
3202 if (ieee80211_vif_is_mesh(&rx->sdata->vif))
3203 CALL_RXH(ieee80211_rx_h_mesh_fwding);
3204#endif
Javier Cardona2154c812011-09-07 17:49:53 -07003205 CALL_RXH(ieee80211_rx_h_amsdu)
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003206 CALL_RXH(ieee80211_rx_h_data)
Christian Lamparterf9e124f2013-02-04 17:44:44 +00003207
3208 /* special treatment -- needs the queue */
3209 res = ieee80211_rx_h_ctrl(rx, frames);
3210 if (res != RX_CONTINUE)
3211 goto rxh_next;
3212
Johannes Berg2e161f72010-08-12 15:38:38 +02003213 CALL_RXH(ieee80211_rx_h_mgmt_check)
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003214 CALL_RXH(ieee80211_rx_h_action)
Johannes Berg2e161f72010-08-12 15:38:38 +02003215 CALL_RXH(ieee80211_rx_h_userspace_mgmt)
3216 CALL_RXH(ieee80211_rx_h_action_return)
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003217 CALL_RXH(ieee80211_rx_h_mgmt)
3218
3219 rxh_next:
3220 ieee80211_rx_handlers_result(rx, res);
Christian Lamparterf9e124f2013-02-04 17:44:44 +00003221
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003222#undef CALL_RXH
3223 }
Christian Lamparter24a8fda2010-12-30 17:25:29 +01003224
Christian Lamparterf9e124f2013-02-04 17:44:44 +00003225 spin_unlock_bh(&rx->local->rx_path_lock);
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003226}
Johannes Berg571ecf62007-07-27 15:43:22 +02003227
Johannes Berg4406c372010-09-24 11:21:06 +02003228static void ieee80211_invoke_rx_handlers(struct ieee80211_rx_data *rx)
Johannes Berg58905292008-01-31 19:48:25 +01003229{
Christian Lamparterf9e124f2013-02-04 17:44:44 +00003230 struct sk_buff_head reorder_release;
Johannes Berg58905292008-01-31 19:48:25 +01003231 ieee80211_rx_result res = RX_DROP_MONITOR;
3232
Christian Lamparterf9e124f2013-02-04 17:44:44 +00003233 __skb_queue_head_init(&reorder_release);
3234
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02003235#define CALL_RXH(rxh) \
3236 do { \
3237 res = rxh(rx); \
3238 if (res != RX_CONTINUE) \
Johannes Berg2569a822009-11-25 17:46:17 +01003239 goto rxh_next; \
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02003240 } while (0);
Johannes Berg58905292008-01-31 19:48:25 +01003241
Johannes Berg03954422014-11-11 16:49:25 +01003242 CALL_RXH(ieee80211_rx_h_check_dup)
Johannes Berg49461622008-06-30 15:10:45 +02003243 CALL_RXH(ieee80211_rx_h_check)
Johannes Berg2569a822009-11-25 17:46:17 +01003244
Christian Lamparterf9e124f2013-02-04 17:44:44 +00003245 ieee80211_rx_reorder_ampdu(rx, &reorder_release);
Johannes Berg2569a822009-11-25 17:46:17 +01003246
Christian Lamparterf9e124f2013-02-04 17:44:44 +00003247 ieee80211_rx_handlers(rx, &reorder_release);
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003248 return;
Johannes Berg49461622008-06-30 15:10:45 +02003249
Johannes Berg2569a822009-11-25 17:46:17 +01003250 rxh_next:
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003251 ieee80211_rx_handlers_result(rx, res);
3252
3253#undef CALL_RXH
Johannes Berg58905292008-01-31 19:48:25 +01003254}
3255
Christian Lamparter2bff8eb2010-08-05 01:36:41 +02003256/*
Johannes Bergdd318572010-11-29 11:09:16 +01003257 * This function makes calls into the RX path, therefore
3258 * it has to be invoked under RCU read lock.
Christian Lamparter2bff8eb2010-08-05 01:36:41 +02003259 */
3260void ieee80211_release_reorder_timeout(struct sta_info *sta, int tid)
3261{
Christian Lamparterf9e124f2013-02-04 17:44:44 +00003262 struct sk_buff_head frames;
Johannes Berg554891e2010-09-24 12:38:25 +02003263 struct ieee80211_rx_data rx = {
3264 .sta = sta,
3265 .sdata = sta->sdata,
3266 .local = sta->local,
Johannes Berg9e262972011-07-07 18:45:03 +02003267 /* This is OK -- must be QoS data frame */
3268 .security_idx = tid,
3269 .seqno_idx = tid,
Johannes Bergaf9f9b22015-06-11 16:02:32 +02003270 .napi = NULL, /* must be NULL to not have races */
Johannes Berg554891e2010-09-24 12:38:25 +02003271 };
Christian Lamparter2c15a0c2010-08-24 19:22:42 +02003272 struct tid_ampdu_rx *tid_agg_rx;
3273
3274 tid_agg_rx = rcu_dereference(sta->ampdu_mlme.tid_rx[tid]);
3275 if (!tid_agg_rx)
3276 return;
Christian Lamparter2bff8eb2010-08-05 01:36:41 +02003277
Christian Lamparterf9e124f2013-02-04 17:44:44 +00003278 __skb_queue_head_init(&frames);
3279
Christian Lamparter2c15a0c2010-08-24 19:22:42 +02003280 spin_lock(&tid_agg_rx->reorder_lock);
Christian Lamparterf9e124f2013-02-04 17:44:44 +00003281 ieee80211_sta_reorder_release(sta->sdata, tid_agg_rx, &frames);
Christian Lamparter2c15a0c2010-08-24 19:22:42 +02003282 spin_unlock(&tid_agg_rx->reorder_lock);
Christian Lamparter2bff8eb2010-08-05 01:36:41 +02003283
Emmanuel Grumbachb497de62015-04-20 22:53:38 +03003284 if (!skb_queue_empty(&frames)) {
3285 struct ieee80211_event event = {
3286 .type = BA_FRAME_TIMEOUT,
3287 .u.ba.tid = tid,
3288 .u.ba.sta = &sta->sta,
3289 };
3290 drv_event_callback(rx.local, rx.sdata, &event);
3291 }
3292
Christian Lamparterf9e124f2013-02-04 17:44:44 +00003293 ieee80211_rx_handlers(&rx, &frames);
Christian Lamparter2bff8eb2010-08-05 01:36:41 +02003294}
3295
Johannes Berg571ecf62007-07-27 15:43:22 +02003296/* main receive path */
3297
Johannes Berga58fbe12015-04-22 15:08:39 +02003298static bool ieee80211_accept_frame(struct ieee80211_rx_data *rx)
Johannes Berg23a24de2007-07-27 15:43:22 +02003299{
Johannes Berg20b01f82010-09-24 11:21:05 +02003300 struct ieee80211_sub_if_data *sdata = rx->sdata;
Johannes Bergeb9fb5b2009-11-16 13:58:20 +01003301 struct sk_buff *skb = rx->skb;
Johannes Berga58fbe12015-04-22 15:08:39 +02003302 struct ieee80211_hdr *hdr = (void *)skb->data;
Johannes Bergeb9fb5b2009-11-16 13:58:20 +01003303 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
3304 u8 *bssid = ieee80211_get_bssid(hdr, skb->len, sdata->vif.type);
Johannes Berg23a24de2007-07-27 15:43:22 +02003305 int multicast = is_multicast_ether_addr(hdr->addr1);
3306
Johannes Berg51fb61e2007-12-19 01:31:27 +01003307 switch (sdata->vif.type) {
Johannes Berg05c914f2008-09-11 00:01:58 +02003308 case NL80211_IFTYPE_STATION:
Johannes Berg9bc383d2009-11-19 11:55:19 +01003309 if (!bssid && !sdata->u.mgd.use_4addr)
Johannes Berg3c2723f52014-01-07 16:23:24 +01003310 return false;
Johannes Berga58fbe12015-04-22 15:08:39 +02003311 if (multicast)
3312 return true;
3313 return ether_addr_equal(sdata->vif.addr, hdr->addr1);
Johannes Berg05c914f2008-09-11 00:01:58 +02003314 case NL80211_IFTYPE_ADHOC:
Johannes Berg23a24de2007-07-27 15:43:22 +02003315 if (!bssid)
Johannes Berg3c2723f52014-01-07 16:23:24 +01003316 return false;
Felix Fietkau6329b8d2013-09-17 11:15:43 +02003317 if (ether_addr_equal(sdata->vif.addr, hdr->addr2) ||
3318 ether_addr_equal(sdata->u.ibss.bssid, hdr->addr2))
Johannes Berg3c2723f52014-01-07 16:23:24 +01003319 return false;
Johannes Berga58fbe12015-04-22 15:08:39 +02003320 if (ieee80211_is_beacon(hdr->frame_control))
Johannes Berg3c2723f52014-01-07 16:23:24 +01003321 return true;
Johannes Berga58fbe12015-04-22 15:08:39 +02003322 if (!ieee80211_bssid_match(bssid, sdata->u.ibss.bssid))
Johannes Berg3c2723f52014-01-07 16:23:24 +01003323 return false;
Johannes Berga58fbe12015-04-22 15:08:39 +02003324 if (!multicast &&
3325 !ether_addr_equal(sdata->vif.addr, hdr->addr1))
Johannes Bergdf140462015-04-22 14:40:58 +02003326 return false;
Johannes Berga58fbe12015-04-22 15:08:39 +02003327 if (!rx->sta) {
Jouni Malinen0fb8ca42008-12-12 14:38:33 +02003328 int rate_idx;
Johannes Berg56146182012-11-09 15:07:02 +01003329 if (status->flag & (RX_FLAG_HT | RX_FLAG_VHT))
3330 rate_idx = 0; /* TODO: HT/VHT rates */
Jouni Malinen0fb8ca42008-12-12 14:38:33 +02003331 else
Johannes Bergeb9fb5b2009-11-16 13:58:20 +01003332 rate_idx = status->rate_idx;
Johannes Berg8bf11d82011-12-15 11:17:37 +01003333 ieee80211_ibss_rx_no_sta(sdata, bssid, hdr->addr2,
3334 BIT(rate_idx));
Jouni Malinen0fb8ca42008-12-12 14:38:33 +02003335 }
Johannes Berga58fbe12015-04-22 15:08:39 +02003336 return true;
Rostislav Lisovy239281f2014-11-03 10:33:19 +01003337 case NL80211_IFTYPE_OCB:
3338 if (!bssid)
3339 return false;
Bertold Van den Berghcc117292015-08-05 16:02:42 +02003340 if (!ieee80211_is_data_present(hdr->frame_control))
Rostislav Lisovy239281f2014-11-03 10:33:19 +01003341 return false;
Johannes Berga58fbe12015-04-22 15:08:39 +02003342 if (!is_broadcast_ether_addr(bssid))
Rostislav Lisovy239281f2014-11-03 10:33:19 +01003343 return false;
Johannes Berga58fbe12015-04-22 15:08:39 +02003344 if (!multicast &&
3345 !ether_addr_equal(sdata->dev->dev_addr, hdr->addr1))
Johannes Bergdf140462015-04-22 14:40:58 +02003346 return false;
Johannes Berga58fbe12015-04-22 15:08:39 +02003347 if (!rx->sta) {
Rostislav Lisovy239281f2014-11-03 10:33:19 +01003348 int rate_idx;
3349 if (status->flag & RX_FLAG_HT)
3350 rate_idx = 0; /* TODO: HT rates */
3351 else
3352 rate_idx = status->rate_idx;
3353 ieee80211_ocb_rx_no_sta(sdata, bssid, hdr->addr2,
3354 BIT(rate_idx));
3355 }
Johannes Berga58fbe12015-04-22 15:08:39 +02003356 return true;
Johannes Berg05c914f2008-09-11 00:01:58 +02003357 case NL80211_IFTYPE_MESH_POINT:
Johannes Berga58fbe12015-04-22 15:08:39 +02003358 if (multicast)
3359 return true;
3360 return ether_addr_equal(sdata->vif.addr, hdr->addr1);
Johannes Berg05c914f2008-09-11 00:01:58 +02003361 case NL80211_IFTYPE_AP_VLAN:
3362 case NL80211_IFTYPE_AP:
Johannes Berga58fbe12015-04-22 15:08:39 +02003363 if (!bssid)
3364 return ether_addr_equal(sdata->vif.addr, hdr->addr1);
3365
3366 if (!ieee80211_bssid_match(bssid, sdata->vif.addr)) {
Johannes Berg3df6eae2011-12-06 10:39:40 +01003367 /*
3368 * Accept public action frames even when the
3369 * BSSID doesn't match, this is used for P2P
3370 * and location updates. Note that mac80211
3371 * itself never looks at these frames.
3372 */
Johannes Berg2b9ccd42013-05-13 16:42:40 +02003373 if (!multicast &&
3374 !ether_addr_equal(sdata->vif.addr, hdr->addr1))
Johannes Berg3c2723f52014-01-07 16:23:24 +01003375 return false;
Johannes Bergd48b2962012-07-06 22:19:27 +02003376 if (ieee80211_is_public_action(hdr, skb->len))
Johannes Berg3c2723f52014-01-07 16:23:24 +01003377 return true;
Johannes Berg5c900672015-04-22 14:48:34 +02003378 return ieee80211_is_beacon(hdr->frame_control);
Johannes Berga58fbe12015-04-22 15:08:39 +02003379 }
3380
3381 if (!ieee80211_has_tods(hdr->frame_control)) {
Arik Nemtsovdb8e1732014-07-17 17:14:30 +03003382 /* ignore data frames to TDLS-peers */
3383 if (ieee80211_is_data(hdr->frame_control))
3384 return false;
3385 /* ignore action frames to TDLS-peers */
3386 if (ieee80211_is_action(hdr->frame_control) &&
3387 !ether_addr_equal(bssid, hdr->addr1))
3388 return false;
Johannes Berg23a24de2007-07-27 15:43:22 +02003389 }
Johannes Berga58fbe12015-04-22 15:08:39 +02003390 return true;
Johannes Berg05c914f2008-09-11 00:01:58 +02003391 case NL80211_IFTYPE_WDS:
Harvey Harrisona7767f92008-07-02 16:30:51 -07003392 if (bssid || !ieee80211_is_data(hdr->frame_control))
Johannes Berg3c2723f52014-01-07 16:23:24 +01003393 return false;
Johannes Berga58fbe12015-04-22 15:08:39 +02003394 return ether_addr_equal(sdata->u.wds.remote_addr, hdr->addr2);
Johannes Bergf142c6b2012-06-18 20:07:15 +02003395 case NL80211_IFTYPE_P2P_DEVICE:
Johannes Berga58fbe12015-04-22 15:08:39 +02003396 return ieee80211_is_public_action(hdr, skb->len) ||
3397 ieee80211_is_probe_req(hdr->frame_control) ||
3398 ieee80211_is_probe_resp(hdr->frame_control) ||
3399 ieee80211_is_beacon(hdr->frame_control);
Johannes Berg2ca27bc2010-09-16 14:58:23 +02003400 default:
Johannes Bergfb1c1cd2007-09-26 15:19:43 +02003401 break;
Johannes Berg23a24de2007-07-27 15:43:22 +02003402 }
3403
Johannes Berga58fbe12015-04-22 15:08:39 +02003404 WARN_ON_ONCE(1);
3405 return false;
Johannes Berg23a24de2007-07-27 15:43:22 +02003406}
3407
Johannes Berg571ecf62007-07-27 15:43:22 +02003408/*
Johannes Berg4406c372010-09-24 11:21:06 +02003409 * This function returns whether or not the SKB
3410 * was destined for RX processing or not, which,
3411 * if consume is true, is equivalent to whether
3412 * or not the skb was consumed.
3413 */
3414static bool ieee80211_prepare_and_rx_handle(struct ieee80211_rx_data *rx,
3415 struct sk_buff *skb, bool consume)
3416{
3417 struct ieee80211_local *local = rx->local;
3418 struct ieee80211_sub_if_data *sdata = rx->sdata;
Johannes Berg4406c372010-09-24 11:21:06 +02003419
3420 rx->skb = skb;
Johannes Berg4406c372010-09-24 11:21:06 +02003421
Johannes Berga58fbe12015-04-22 15:08:39 +02003422 if (!ieee80211_accept_frame(rx))
Johannes Berg4406c372010-09-24 11:21:06 +02003423 return false;
3424
Johannes Berg4406c372010-09-24 11:21:06 +02003425 if (!consume) {
3426 skb = skb_copy(skb, GFP_ATOMIC);
3427 if (!skb) {
3428 if (net_ratelimit())
3429 wiphy_debug(local->hw.wiphy,
Ben Greearb305dae2011-01-08 10:30:54 -08003430 "failed to copy skb for %s\n",
Johannes Berg4406c372010-09-24 11:21:06 +02003431 sdata->name);
3432 return true;
3433 }
3434
3435 rx->skb = skb;
3436 }
3437
3438 ieee80211_invoke_rx_handlers(rx);
3439 return true;
3440}
3441
3442/*
Zhao, Gang6b59db72014-04-21 12:52:59 +08003443 * This is the actual Rx frames handler. as it belongs to Rx path it must
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02003444 * be called with rcu_read_lock protection.
Johannes Berg571ecf62007-07-27 15:43:22 +02003445 */
Ron Rindjunsky71ebb4a2008-01-21 12:39:12 +02003446static void __ieee80211_rx_handle_packet(struct ieee80211_hw *hw,
Johannes Bergaf9f9b22015-06-11 16:02:32 +02003447 struct sk_buff *skb,
3448 struct napi_struct *napi)
Johannes Berg571ecf62007-07-27 15:43:22 +02003449{
3450 struct ieee80211_local *local = hw_to_local(hw);
3451 struct ieee80211_sub_if_data *sdata;
Johannes Berg571ecf62007-07-27 15:43:22 +02003452 struct ieee80211_hdr *hdr;
Zhu Yie3cf8b32010-03-29 17:35:07 +08003453 __le16 fc;
Johannes Berg5cf121c2008-02-25 16:27:43 +01003454 struct ieee80211_rx_data rx;
Johannes Berg4406c372010-09-24 11:21:06 +02003455 struct ieee80211_sub_if_data *prev;
Johannes Berg7bedd0c2015-02-13 21:55:15 +01003456 struct sta_info *sta, *prev_sta;
3457 struct rhash_head *tmp;
Zhu Yie3cf8b32010-03-29 17:35:07 +08003458 int err = 0;
Johannes Berg571ecf62007-07-27 15:43:22 +02003459
Zhu Yie3cf8b32010-03-29 17:35:07 +08003460 fc = ((struct ieee80211_hdr *)skb->data)->frame_control;
Johannes Berg571ecf62007-07-27 15:43:22 +02003461 memset(&rx, 0, sizeof(rx));
3462 rx.skb = skb;
3463 rx.local = local;
Johannes Bergaf9f9b22015-06-11 16:02:32 +02003464 rx.napi = napi;
Johannes Berg72abd812007-09-17 01:29:22 -04003465
Zhu Yie3cf8b32010-03-29 17:35:07 +08003466 if (ieee80211_is_data(fc) || ieee80211_is_mgmt(fc))
Johannes Bergc206ca62015-04-22 20:47:28 +02003467 I802_DEBUG_INC(local->dot11ReceivedFragmentCount);
Johannes Berg571ecf62007-07-27 15:43:22 +02003468
Johannes Berg4a4f1a52012-10-26 00:33:36 +02003469 if (ieee80211_is_mgmt(fc)) {
3470 /* drop frame if too short for header */
3471 if (skb->len < ieee80211_hdrlen(fc))
3472 err = -ENOBUFS;
3473 else
3474 err = skb_linearize(skb);
3475 } else {
Zhu Yie3cf8b32010-03-29 17:35:07 +08003476 err = !pskb_may_pull(skb, ieee80211_hdrlen(fc));
Johannes Berg4a4f1a52012-10-26 00:33:36 +02003477 }
Zhu Yie3cf8b32010-03-29 17:35:07 +08003478
3479 if (err) {
3480 dev_kfree_skb(skb);
3481 return;
3482 }
3483
3484 hdr = (struct ieee80211_hdr *)skb->data;
Johannes Berg38f37142008-01-29 17:07:43 +01003485 ieee80211_parse_qos(&rx);
Johannes Bergd1c3a372009-01-07 00:26:10 +01003486 ieee80211_verify_alignment(&rx);
Johannes Berg38f37142008-01-29 17:07:43 +01003487
Johannes Bergd48b2962012-07-06 22:19:27 +02003488 if (unlikely(ieee80211_is_probe_resp(hdr->frame_control) ||
3489 ieee80211_is_beacon(hdr->frame_control)))
3490 ieee80211_scan_rx(local, skb);
3491
Zhu Yie3cf8b32010-03-29 17:35:07 +08003492 if (ieee80211_is_data(fc)) {
Johannes Berg7bedd0c2015-02-13 21:55:15 +01003493 const struct bucket_table *tbl;
3494
Ben Greear56af3262010-09-23 10:22:24 -07003495 prev_sta = NULL;
Johannes Berg4406c372010-09-24 11:21:06 +02003496
Johannes Berg7bedd0c2015-02-13 21:55:15 +01003497 tbl = rht_dereference_rcu(local->sta_hash.tbl, &local->sta_hash);
3498
3499 for_each_sta_info(local, tbl, hdr->addr2, sta, tmp) {
Ben Greear56af3262010-09-23 10:22:24 -07003500 if (!prev_sta) {
3501 prev_sta = sta;
3502 continue;
3503 }
3504
3505 rx.sta = prev_sta;
3506 rx.sdata = prev_sta->sdata;
Johannes Berg4406c372010-09-24 11:21:06 +02003507 ieee80211_prepare_and_rx_handle(&rx, skb, false);
Johannes Berg571ecf62007-07-27 15:43:22 +02003508
Ben Greear56af3262010-09-23 10:22:24 -07003509 prev_sta = sta;
Johannes Berg4406c372010-09-24 11:21:06 +02003510 }
Ben Greear56af3262010-09-23 10:22:24 -07003511
3512 if (prev_sta) {
3513 rx.sta = prev_sta;
3514 rx.sdata = prev_sta->sdata;
3515
Johannes Berg4406c372010-09-24 11:21:06 +02003516 if (ieee80211_prepare_and_rx_handle(&rx, skb, true))
Ben Greear56af3262010-09-23 10:22:24 -07003517 return;
Senthil Balasubramanian8e26d5a2010-11-30 20:15:38 +05303518 goto out;
Ben Greear56af3262010-09-23 10:22:24 -07003519 }
Johannes Berg4406c372010-09-24 11:21:06 +02003520 }
3521
Johannes Berg4b0dd982010-09-24 11:21:07 +02003522 prev = NULL;
Johannes Berg4406c372010-09-24 11:21:06 +02003523
Johannes Berg4b0dd982010-09-24 11:21:07 +02003524 list_for_each_entry_rcu(sdata, &local->interfaces, list) {
3525 if (!ieee80211_sdata_running(sdata))
3526 continue;
Johannes Bergabe60632009-11-25 17:46:18 +01003527
Johannes Berg4b0dd982010-09-24 11:21:07 +02003528 if (sdata->vif.type == NL80211_IFTYPE_MONITOR ||
3529 sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
3530 continue;
Johannes Bergabe60632009-11-25 17:46:18 +01003531
Johannes Berg4b0dd982010-09-24 11:21:07 +02003532 /*
3533 * frame is destined for this interface, but if it's
3534 * not also for the previous one we handle that after
3535 * the loop to avoid copying the SKB once too much
3536 */
Johannes Bergb2e77712007-09-26 15:19:39 +02003537
Johannes Berg4b0dd982010-09-24 11:21:07 +02003538 if (!prev) {
Johannes Berg340e11f2007-07-27 15:43:22 +02003539 prev = sdata;
Johannes Berg4b0dd982010-09-24 11:21:07 +02003540 continue;
Johannes Berg8e6f00322007-07-27 15:43:22 +02003541 }
Felix Fietkau4bb29f82010-01-22 00:36:39 +01003542
Johannes Berg7852e362012-01-20 13:55:24 +01003543 rx.sta = sta_info_get_bss(prev, hdr->addr2);
Johannes Berg4b0dd982010-09-24 11:21:07 +02003544 rx.sdata = prev;
3545 ieee80211_prepare_and_rx_handle(&rx, skb, false);
Felix Fietkau4bb29f82010-01-22 00:36:39 +01003546
Johannes Berg4b0dd982010-09-24 11:21:07 +02003547 prev = sdata;
3548 }
Johannes Berg4406c372010-09-24 11:21:06 +02003549
Johannes Berg4b0dd982010-09-24 11:21:07 +02003550 if (prev) {
Johannes Berg7852e362012-01-20 13:55:24 +01003551 rx.sta = sta_info_get_bss(prev, hdr->addr2);
Johannes Berg4b0dd982010-09-24 11:21:07 +02003552 rx.sdata = prev;
3553
3554 if (ieee80211_prepare_and_rx_handle(&rx, skb, true))
3555 return;
Johannes Berg571ecf62007-07-27 15:43:22 +02003556 }
Johannes Berg4406c372010-09-24 11:21:06 +02003557
Senthil Balasubramanian8e26d5a2010-11-30 20:15:38 +05303558 out:
Johannes Berg4406c372010-09-24 11:21:06 +02003559 dev_kfree_skb(skb);
Johannes Berg571ecf62007-07-27 15:43:22 +02003560}
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02003561
3562/*
3563 * This is the receive path handler. It is called by a low level driver when an
3564 * 802.11 MPDU is received from the hardware.
3565 */
Johannes Bergaf9f9b22015-06-11 16:02:32 +02003566void ieee80211_rx_napi(struct ieee80211_hw *hw, struct sk_buff *skb,
3567 struct napi_struct *napi)
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02003568{
3569 struct ieee80211_local *local = hw_to_local(hw);
Johannes Berg8318d782008-01-24 19:38:38 +01003570 struct ieee80211_rate *rate = NULL;
3571 struct ieee80211_supported_band *sband;
Johannes Bergf1d58c22009-06-17 13:13:00 +02003572 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
Johannes Berg8318d782008-01-24 19:38:38 +01003573
Johannes Bergd20ef632009-10-11 15:10:40 +02003574 WARN_ON_ONCE(softirq_count() == 0);
3575
Johannes Berg444e38032012-09-30 17:08:35 +02003576 if (WARN_ON(status->band >= IEEE80211_NUM_BANDS))
Johannes Berg77a980d2009-08-24 11:46:30 +02003577 goto drop;
Johannes Berg8318d782008-01-24 19:38:38 +01003578
3579 sband = local->hw.wiphy->bands[status->band];
Johannes Berg77a980d2009-08-24 11:46:30 +02003580 if (WARN_ON(!sband))
3581 goto drop;
Johannes Berg8318d782008-01-24 19:38:38 +01003582
Johannes Berg89c3a8a2009-07-28 18:10:17 +02003583 /*
3584 * If we're suspending, it is possible although not too likely
3585 * that we'd be receiving frames after having already partially
3586 * quiesced the stack. We can't process such frames then since
3587 * that might, for example, cause stations to be added or other
3588 * driver callbacks be invoked.
3589 */
Johannes Berg77a980d2009-08-24 11:46:30 +02003590 if (unlikely(local->quiescing || local->suspended))
3591 goto drop;
Johannes Berg89c3a8a2009-07-28 18:10:17 +02003592
Arik Nemtsov04800ad2012-06-06 11:25:02 +03003593 /* We might be during a HW reconfig, prevent Rx for the same reason */
3594 if (unlikely(local->in_reconfig))
3595 goto drop;
3596
Johannes Bergea77f122009-08-21 14:44:45 +02003597 /*
3598 * The same happens when we're not even started,
3599 * but that's worth a warning.
3600 */
Johannes Berg77a980d2009-08-24 11:46:30 +02003601 if (WARN_ON(!local->started))
3602 goto drop;
Johannes Bergea77f122009-08-21 14:44:45 +02003603
Johannes Bergfc885182010-07-30 13:23:12 +02003604 if (likely(!(status->flag & RX_FLAG_FAILED_PLCP_CRC))) {
Luis R. Rodrigueze5d6eb82009-11-09 16:03:22 -05003605 /*
Johannes Bergfc885182010-07-30 13:23:12 +02003606 * Validate the rate, unless a PLCP error means that
3607 * we probably can't have a valid rate here anyway.
Luis R. Rodrigueze5d6eb82009-11-09 16:03:22 -05003608 */
Johannes Bergfc885182010-07-30 13:23:12 +02003609
3610 if (status->flag & RX_FLAG_HT) {
3611 /*
3612 * rate_idx is MCS index, which can be [0-76]
3613 * as documented on:
3614 *
3615 * http://wireless.kernel.org/en/developers/Documentation/ieee80211/802.11n
3616 *
3617 * Anything else would be some sort of driver or
3618 * hardware error. The driver should catch hardware
3619 * errors.
3620 */
Johannes Berg444e38032012-09-30 17:08:35 +02003621 if (WARN(status->rate_idx > 76,
Johannes Bergfc885182010-07-30 13:23:12 +02003622 "Rate marked as an HT rate but passed "
3623 "status->rate_idx is not "
3624 "an MCS index [0-76]: %d (0x%02x)\n",
3625 status->rate_idx,
3626 status->rate_idx))
3627 goto drop;
Johannes Berg56146182012-11-09 15:07:02 +01003628 } else if (status->flag & RX_FLAG_VHT) {
3629 if (WARN_ONCE(status->rate_idx > 9 ||
3630 !status->vht_nss ||
3631 status->vht_nss > 8,
3632 "Rate marked as a VHT rate but data is invalid: MCS: %d, NSS: %d\n",
3633 status->rate_idx, status->vht_nss))
3634 goto drop;
Johannes Bergfc885182010-07-30 13:23:12 +02003635 } else {
Johannes Berg444e38032012-09-30 17:08:35 +02003636 if (WARN_ON(status->rate_idx >= sband->n_bitrates))
Johannes Bergfc885182010-07-30 13:23:12 +02003637 goto drop;
3638 rate = &sband->bitrates[status->rate_idx];
3639 }
Jouni Malinen0fb8ca42008-12-12 14:38:33 +02003640 }
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02003641
Johannes Berg554891e2010-09-24 12:38:25 +02003642 status->rx_flags = 0;
3643
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02003644 /*
3645 * key references and virtual interfaces are protected using RCU
3646 * and this requires that we are in a read-side RCU section during
3647 * receive processing
3648 */
3649 rcu_read_lock();
3650
3651 /*
3652 * Frames with failed FCS/PLCP checksum are not returned,
3653 * all other frames are returned without radiotap header
3654 * if it was previously present.
3655 * Also, frames with less than 16 bytes are dropped.
3656 */
Johannes Bergf1d58c22009-06-17 13:13:00 +02003657 skb = ieee80211_rx_monitor(local, skb, rate);
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02003658 if (!skb) {
3659 rcu_read_unlock();
3660 return;
3661 }
3662
Johannes Berge1e54062010-11-30 08:58:45 +01003663 ieee80211_tpt_led_trig_rx(local,
3664 ((struct ieee80211_hdr *)skb->data)->frame_control,
3665 skb->len);
Johannes Bergaf9f9b22015-06-11 16:02:32 +02003666 __ieee80211_rx_handle_packet(hw, skb, napi);
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02003667
3668 rcu_read_unlock();
Johannes Berg77a980d2009-08-24 11:46:30 +02003669
3670 return;
3671 drop:
3672 kfree_skb(skb);
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02003673}
Johannes Bergaf9f9b22015-06-11 16:02:32 +02003674EXPORT_SYMBOL(ieee80211_rx_napi);
Johannes Berg571ecf62007-07-27 15:43:22 +02003675
3676/* This is a version of the rx handler that can be called from hard irq
3677 * context. Post the skb on the queue and schedule the tasklet */
Johannes Bergf1d58c22009-06-17 13:13:00 +02003678void ieee80211_rx_irqsafe(struct ieee80211_hw *hw, struct sk_buff *skb)
Johannes Berg571ecf62007-07-27 15:43:22 +02003679{
3680 struct ieee80211_local *local = hw_to_local(hw);
3681
3682 BUILD_BUG_ON(sizeof(struct ieee80211_rx_status) > sizeof(skb->cb));
3683
Johannes Berg571ecf62007-07-27 15:43:22 +02003684 skb->pkt_type = IEEE80211_RX_MSG;
3685 skb_queue_tail(&local->skb_queue, skb);
3686 tasklet_schedule(&local->tasklet);
3687}
3688EXPORT_SYMBOL(ieee80211_rx_irqsafe);