blob: eaf8931e46275866be5eaf99759d442110b4985a [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001// SPDX-License-Identifier: GPL-2.0-only
Johannes Berg571ecf62007-07-27 15:43:22 +02002/*
3 * Copyright 2002-2005, Instant802 Networks, Inc.
4 * Copyright 2005-2006, Devicescape Software, Inc.
5 * Copyright 2006-2007 Jiri Benc <jbenc@suse.cz>
Johannes Berg84040802010-02-15 12:46:39 +02006 * Copyright 2007-2010 Johannes Berg <johannes@sipsolutions.net>
Johannes Bergd98ad832014-09-03 15:24:57 +03007 * Copyright 2013-2014 Intel Mobile Communications GmbH
Sara Sharonb7540d82017-02-06 15:28:42 +02008 * Copyright(c) 2015 - 2017 Intel Deutschland GmbH
Ilan Peerc4d800d2020-01-31 13:12:53 +02009 * Copyright (C) 2018-2020 Intel Corporation
Johannes Berg571ecf62007-07-27 15:43:22 +020010 */
11
S.Çağlar Onurab466232008-02-14 17:36:47 +020012#include <linux/jiffies.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090013#include <linux/slab.h>
Johannes Berg571ecf62007-07-27 15:43:22 +020014#include <linux/kernel.h>
15#include <linux/skbuff.h>
16#include <linux/netdevice.h>
17#include <linux/etherdevice.h>
Johannes Bergd4e46a32007-09-14 11:10:24 -040018#include <linux/rcupdate.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040019#include <linux/export.h>
Sara Sharon06470f72016-01-28 16:19:25 +020020#include <linux/bitops.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 */
Johannes Berg30841f52017-04-11 15:38:56 +020096static void remove_monitor_info(struct sk_buff *skb,
97 unsigned int present_fcs_len,
Johannes Bergc096b922018-04-20 13:49:18 +030098 unsigned int rtap_space)
Johannes Bergb2e77712007-09-26 15:19:39 +020099{
Johannes Berg30841f52017-04-11 15:38:56 +0200100 if (present_fcs_len)
101 __pskb_trim(skb, skb->len - present_fcs_len);
Johannes Bergc096b922018-04-20 13:49:18 +0300102 __pskb_pull(skb, rtap_space);
Johannes Bergb2e77712007-09-26 15:19:39 +0200103}
104
Johannes Berg1f7bba72014-11-06 22:56:36 +0100105static inline bool should_drop_frame(struct sk_buff *skb, int present_fcs_len,
Johannes Bergc096b922018-04-20 13:49:18 +0300106 unsigned int rtap_space)
Johannes Bergb2e77712007-09-26 15:19:39 +0200107{
Johannes Bergf1d58c22009-06-17 13:13:00 +0200108 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
Johannes Berg1f7bba72014-11-06 22:56:36 +0100109 struct ieee80211_hdr *hdr;
110
Johannes Bergc096b922018-04-20 13:49:18 +0300111 hdr = (void *)(skb->data + rtap_space);
Johannes Bergb2e77712007-09-26 15:19:39 +0200112
Johannes Berg4c298672012-07-05 11:34:31 +0200113 if (status->flag & (RX_FLAG_FAILED_FCS_CRC |
Grzegorz Bajorski17883042015-12-11 14:39:46 +0100114 RX_FLAG_FAILED_PLCP_CRC |
Shaul Triebitzc3d1f872018-09-05 08:06:06 +0300115 RX_FLAG_ONLY_MONITOR |
116 RX_FLAG_NO_PSDU))
Zhao, Gang6b59db72014-04-21 12:52:59 +0800117 return true;
118
Johannes Bergc096b922018-04-20 13:49:18 +0300119 if (unlikely(skb->len < 16 + present_fcs_len + rtap_space))
Zhao, Gang6b59db72014-04-21 12:52:59 +0800120 return true;
121
Harvey Harrison87228f52008-06-11 14:21:59 -0700122 if (ieee80211_is_ctl(hdr->frame_control) &&
123 !ieee80211_is_pspoll(hdr->frame_control) &&
124 !ieee80211_is_back_req(hdr->frame_control))
Zhao, Gang6b59db72014-04-21 12:52:59 +0800125 return true;
126
127 return false;
Johannes Bergb2e77712007-09-26 15:19:39 +0200128}
129
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200130static int
Johannes Berg1f7bba72014-11-06 22:56:36 +0100131ieee80211_rx_radiotap_hdrlen(struct ieee80211_local *local,
132 struct ieee80211_rx_status *status,
133 struct sk_buff *skb)
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200134{
135 int len;
136
137 /* always present fields */
Johannes Berga144f372013-07-03 13:34:02 +0200138 len = sizeof(struct ieee80211_radiotap_header) + 8;
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200139
Johannes Berga144f372013-07-03 13:34:02 +0200140 /* allocate extra bitmaps */
Johannes Berga144f372013-07-03 13:34:02 +0200141 if (status->chains)
142 len += 4 * hweight8(status->chains);
Johannes Bergefc38dd2018-12-15 11:03:12 +0200143 /* vendor presence bitmap */
144 if (status->flag & RX_FLAG_RADIOTAP_VENDOR_DATA)
145 len += 4;
Johannes Berg90b9e4462012-11-16 10:09:08 +0100146
147 if (ieee80211_have_rx_timestamp(status)) {
148 len = ALIGN(len, 8);
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200149 len += 8;
Johannes Berg90b9e4462012-11-16 10:09:08 +0100150 }
Johannes Berg30686bf2015-06-02 21:39:54 +0200151 if (ieee80211_hw_check(&local->hw, SIGNAL_DBM))
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200152 len += 1;
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200153
Johannes Berga144f372013-07-03 13:34:02 +0200154 /* antenna field, if we don't have per-chain info */
155 if (!status->chains)
156 len += 1;
157
Johannes Berg90b9e4462012-11-16 10:09:08 +0100158 /* padding for RX_FLAGS if necessary */
159 len = ALIGN(len, 2);
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200160
Johannes Bergda6a4352017-04-26 12:14:59 +0200161 if (status->encoding == RX_ENC_HT) /* HT info */
Johannes Berg6d744ba2011-01-27 14:13:17 +0100162 len += 3;
163
Johannes Berg4c298672012-07-05 11:34:31 +0200164 if (status->flag & RX_FLAG_AMPDU_DETAILS) {
Johannes Berg90b9e4462012-11-16 10:09:08 +0100165 len = ALIGN(len, 4);
Johannes Berg4c298672012-07-05 11:34:31 +0200166 len += 8;
167 }
168
Johannes Bergda6a4352017-04-26 12:14:59 +0200169 if (status->encoding == RX_ENC_VHT) {
Johannes Berg51648922012-11-22 23:00:18 +0100170 len = ALIGN(len, 2);
171 len += 12;
172 }
173
Johannes Berg99ee7ca2016-08-29 23:25:17 +0300174 if (local->hw.radiotap_timestamp.units_pos >= 0) {
175 len = ALIGN(len, 8);
176 len += 12;
177 }
178
Luca Coelho41cbb0f2018-06-09 09:14:44 +0300179 if (status->encoding == RX_ENC_HE &&
180 status->flag & RX_FLAG_RADIOTAP_HE) {
181 len = ALIGN(len, 2);
182 len += 12;
183 BUILD_BUG_ON(sizeof(struct ieee80211_radiotap_he) != 12);
184 }
185
186 if (status->encoding == RX_ENC_HE &&
187 status->flag & RX_FLAG_RADIOTAP_HE_MU) {
188 len = ALIGN(len, 2);
189 len += 12;
190 BUILD_BUG_ON(sizeof(struct ieee80211_radiotap_he_mu) != 12);
191 }
192
Shaul Triebitzc3d1f872018-09-05 08:06:06 +0300193 if (status->flag & RX_FLAG_NO_PSDU)
194 len += 1;
195
Shaul Triebitzd1332e72018-08-31 11:31:20 +0300196 if (status->flag & RX_FLAG_RADIOTAP_LSIG) {
197 len = ALIGN(len, 2);
198 len += 4;
199 BUILD_BUG_ON(sizeof(struct ieee80211_radiotap_lsig) != 4);
200 }
201
Johannes Berga144f372013-07-03 13:34:02 +0200202 if (status->chains) {
203 /* antenna and antenna signal fields */
204 len += 2 * hweight8(status->chains);
205 }
206
Johannes Berg1f7bba72014-11-06 22:56:36 +0100207 if (status->flag & RX_FLAG_RADIOTAP_VENDOR_DATA) {
Liad Kaufmanc15353b2019-02-06 13:17:13 +0200208 struct ieee80211_vendor_radiotap *rtap;
209 int vendor_data_offset = 0;
210
211 /*
212 * The position to look at depends on the existence (or non-
213 * existence) of other elements, so take that into account...
214 */
215 if (status->flag & RX_FLAG_RADIOTAP_HE)
216 vendor_data_offset +=
217 sizeof(struct ieee80211_radiotap_he);
218 if (status->flag & RX_FLAG_RADIOTAP_HE_MU)
219 vendor_data_offset +=
220 sizeof(struct ieee80211_radiotap_he_mu);
221 if (status->flag & RX_FLAG_RADIOTAP_LSIG)
222 vendor_data_offset +=
223 sizeof(struct ieee80211_radiotap_lsig);
224
225 rtap = (void *)&skb->data[vendor_data_offset];
Johannes Berg1f7bba72014-11-06 22:56:36 +0100226
Johannes Berg1f7bba72014-11-06 22:56:36 +0100227 /* alignment for fixed 6-byte vendor data header */
228 len = ALIGN(len, 2);
229 /* vendor data header */
230 len += 6;
231 if (WARN_ON(rtap->align == 0))
232 rtap->align = 1;
233 len = ALIGN(len, rtap->align);
234 len += rtap->len + rtap->pad;
235 }
236
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200237 return len;
238}
239
Johannes Berg9e478062017-04-13 14:23:49 +0200240static void ieee80211_handle_mu_mimo_mon(struct ieee80211_sub_if_data *sdata,
241 struct sk_buff *skb,
Johannes Bergc096b922018-04-20 13:49:18 +0300242 int rtap_space)
Johannes Berg9e478062017-04-13 14:23:49 +0200243{
244 struct {
245 struct ieee80211_hdr_3addr hdr;
246 u8 category;
247 u8 action_code;
Mathieu Malaterre7c53eb52019-01-24 19:19:57 +0100248 } __packed __aligned(2) action;
Johannes Berg9e478062017-04-13 14:23:49 +0200249
250 if (!sdata)
251 return;
252
253 BUILD_BUG_ON(sizeof(action) != IEEE80211_MIN_ACTION_SIZE + 1);
254
Johannes Bergc096b922018-04-20 13:49:18 +0300255 if (skb->len < rtap_space + sizeof(action) +
Johannes Berg9e478062017-04-13 14:23:49 +0200256 VHT_MUMIMO_GROUPS_DATA_LEN)
257 return;
258
259 if (!is_valid_ether_addr(sdata->u.mntr.mu_follow_addr))
260 return;
261
Johannes Bergc096b922018-04-20 13:49:18 +0300262 skb_copy_bits(skb, rtap_space, &action, sizeof(action));
Johannes Berg9e478062017-04-13 14:23:49 +0200263
264 if (!ieee80211_is_action(action.hdr.frame_control))
265 return;
266
267 if (action.category != WLAN_CATEGORY_VHT)
268 return;
269
270 if (action.action_code != WLAN_VHT_ACTION_GROUPID_MGMT)
271 return;
272
273 if (!ether_addr_equal(action.hdr.addr1, sdata->u.mntr.mu_follow_addr))
274 return;
275
276 skb = skb_copy(skb, GFP_ATOMIC);
277 if (!skb)
278 return;
279
Johannes Berg9e478062017-04-13 14:23:49 +0200280 skb_queue_tail(&sdata->skb_queue, skb);
281 ieee80211_queue_work(&sdata->local->hw, &sdata->work);
282}
283
Johannes Berg00ea6de2012-09-05 15:54:51 +0200284/*
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200285 * ieee80211_add_rx_radiotap_header - add radiotap header
286 *
287 * add a radiotap header containing all the fields which the hardware provided.
288 */
289static void
290ieee80211_add_rx_radiotap_header(struct ieee80211_local *local,
291 struct sk_buff *skb,
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200292 struct ieee80211_rate *rate,
Felix Fietkau973ef212012-04-16 14:56:48 +0200293 int rtap_len, bool has_fcs)
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200294{
Johannes Bergf1d58c22009-06-17 13:13:00 +0200295 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200296 struct ieee80211_radiotap_header *rthdr;
297 unsigned char *pos;
Johannes Berga144f372013-07-03 13:34:02 +0200298 __le32 *it_present;
299 u32 it_present_val;
Johannes Berg6a86b9c2009-10-28 09:58:52 +0100300 u16 rx_flags = 0;
Simon Wunderlicha5e70692013-07-08 16:55:52 +0200301 u16 channel_flags = 0;
Johannes Berga144f372013-07-03 13:34:02 +0200302 int mpdulen, chain;
303 unsigned long chains = status->chains;
Johannes Berg1f7bba72014-11-06 22:56:36 +0100304 struct ieee80211_vendor_radiotap rtap = {};
Luca Coelho41cbb0f2018-06-09 09:14:44 +0300305 struct ieee80211_radiotap_he he = {};
306 struct ieee80211_radiotap_he_mu he_mu = {};
Shaul Triebitzd1332e72018-08-31 11:31:20 +0300307 struct ieee80211_radiotap_lsig lsig = {};
Luca Coelho41cbb0f2018-06-09 09:14:44 +0300308
309 if (status->flag & RX_FLAG_RADIOTAP_HE) {
310 he = *(struct ieee80211_radiotap_he *)skb->data;
311 skb_pull(skb, sizeof(he));
312 WARN_ON_ONCE(status->encoding != RX_ENC_HE);
313 }
314
315 if (status->flag & RX_FLAG_RADIOTAP_HE_MU) {
316 he_mu = *(struct ieee80211_radiotap_he_mu *)skb->data;
317 skb_pull(skb, sizeof(he_mu));
318 }
Johannes Berg1f7bba72014-11-06 22:56:36 +0100319
Shaul Triebitzd1332e72018-08-31 11:31:20 +0300320 if (status->flag & RX_FLAG_RADIOTAP_LSIG) {
321 lsig = *(struct ieee80211_radiotap_lsig *)skb->data;
322 skb_pull(skb, sizeof(lsig));
323 }
324
Johannes Berg1f7bba72014-11-06 22:56:36 +0100325 if (status->flag & RX_FLAG_RADIOTAP_VENDOR_DATA) {
326 rtap = *(struct ieee80211_vendor_radiotap *)skb->data;
327 /* rtap.len and rtap.pad are undone immediately */
328 skb_pull(skb, sizeof(rtap) + rtap.len + rtap.pad);
329 }
Thomas Pedersenf4bda332012-11-13 10:46:27 -0800330
331 mpdulen = skb->len;
Johannes Berg30686bf2015-06-02 21:39:54 +0200332 if (!(has_fcs && ieee80211_hw_check(&local->hw, RX_INCLUDES_FCS)))
Thomas Pedersenf4bda332012-11-13 10:46:27 -0800333 mpdulen += FCS_LEN;
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200334
Johannes Bergd58ff352017-06-16 14:29:23 +0200335 rthdr = skb_push(skb, rtap_len);
Johannes Berg1f7bba72014-11-06 22:56:36 +0100336 memset(rthdr, 0, rtap_len - rtap.len - rtap.pad);
Johannes Berga144f372013-07-03 13:34:02 +0200337 it_present = &rthdr->it_present;
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200338
339 /* radiotap header, set always present flags */
Emmanuel Grumbach0059b2b2014-02-05 16:36:01 +0200340 rthdr->it_len = cpu_to_le16(rtap_len);
Johannes Berga144f372013-07-03 13:34:02 +0200341 it_present_val = BIT(IEEE80211_RADIOTAP_FLAGS) |
342 BIT(IEEE80211_RADIOTAP_CHANNEL) |
343 BIT(IEEE80211_RADIOTAP_RX_FLAGS);
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200344
Johannes Berga144f372013-07-03 13:34:02 +0200345 if (!status->chains)
346 it_present_val |= BIT(IEEE80211_RADIOTAP_ANTENNA);
347
348 for_each_set_bit(chain, &chains, IEEE80211_MAX_CHAINS) {
349 it_present_val |=
350 BIT(IEEE80211_RADIOTAP_EXT) |
351 BIT(IEEE80211_RADIOTAP_RADIOTAP_NAMESPACE);
352 put_unaligned_le32(it_present_val, it_present);
353 it_present++;
354 it_present_val = BIT(IEEE80211_RADIOTAP_ANTENNA) |
355 BIT(IEEE80211_RADIOTAP_DBM_ANTSIGNAL);
356 }
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200357
Johannes Berg1f7bba72014-11-06 22:56:36 +0100358 if (status->flag & RX_FLAG_RADIOTAP_VENDOR_DATA) {
359 it_present_val |= BIT(IEEE80211_RADIOTAP_VENDOR_NAMESPACE) |
360 BIT(IEEE80211_RADIOTAP_EXT);
361 put_unaligned_le32(it_present_val, it_present);
362 it_present++;
363 it_present_val = rtap.present;
364 }
365
Johannes Berga144f372013-07-03 13:34:02 +0200366 put_unaligned_le32(it_present_val, it_present);
367
368 pos = (void *)(it_present + 1);
369
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200370 /* the order of the following fields is important */
371
372 /* IEEE80211_RADIOTAP_TSFT */
Thomas Pedersenf4bda332012-11-13 10:46:27 -0800373 if (ieee80211_have_rx_timestamp(status)) {
Johannes Berg90b9e4462012-11-16 10:09:08 +0100374 /* padding */
375 while ((pos - (u8 *)rthdr) & 7)
376 *pos++ = 0;
Thomas Pedersenf4bda332012-11-13 10:46:27 -0800377 put_unaligned_le64(
378 ieee80211_calculate_rx_timestamp(local, status,
379 mpdulen, 0),
380 pos);
Johannes Berg1df332e2012-10-26 00:09:11 +0200381 rthdr->it_present |= cpu_to_le32(1 << IEEE80211_RADIOTAP_TSFT);
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200382 pos += 8;
383 }
384
385 /* IEEE80211_RADIOTAP_FLAGS */
Johannes Berg30686bf2015-06-02 21:39:54 +0200386 if (has_fcs && ieee80211_hw_check(&local->hw, RX_INCLUDES_FCS))
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200387 *pos |= IEEE80211_RADIOTAP_F_FCS;
Johannes Bergaae89832009-03-13 12:52:10 +0100388 if (status->flag & (RX_FLAG_FAILED_FCS_CRC | RX_FLAG_FAILED_PLCP_CRC))
389 *pos |= IEEE80211_RADIOTAP_F_BADFCS;
Johannes Berg7fdd69c2017-04-26 11:13:00 +0200390 if (status->enc_flags & RX_ENC_FLAG_SHORTPRE)
Bruno Randolfb4f28bb2008-07-30 17:19:55 +0200391 *pos |= IEEE80211_RADIOTAP_F_SHORTPRE;
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200392 pos++;
393
394 /* IEEE80211_RADIOTAP_RATE */
Johannes Bergda6a4352017-04-26 12:14:59 +0200395 if (!rate || status->encoding != RX_ENC_LEGACY) {
Jouni Malinen0fb8ca42008-12-12 14:38:33 +0200396 /*
Johannes Bergf8d1ccf2011-11-08 12:28:33 +0100397 * Without rate information don't add it. If we have,
Mohammed Shafi Shajakhan38f37be2011-02-07 10:10:04 +0530398 * MCS information is a separate field in radiotap,
Johannes Berg73b48092011-04-18 17:05:21 +0200399 * added below. The byte here is needed as padding
400 * for the channel though, so initialise it to 0.
Jouni Malinen0fb8ca42008-12-12 14:38:33 +0200401 */
402 *pos = 0;
Jouni Malinen8d6f6582008-12-15 10:37:50 +0200403 } else {
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200404 int shift = 0;
Jouni Malinenebe6c7b2009-01-10 11:47:33 +0200405 rthdr->it_present |= cpu_to_le32(1 << IEEE80211_RADIOTAP_RATE);
Johannes Bergda6a4352017-04-26 12:14:59 +0200406 if (status->bw == RATE_INFO_BW_10)
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200407 shift = 1;
Johannes Bergda6a4352017-04-26 12:14:59 +0200408 else if (status->bw == RATE_INFO_BW_5)
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200409 shift = 2;
410 *pos = DIV_ROUND_UP(rate->bitrate, 5 * (1 << shift));
Jouni Malinen8d6f6582008-12-15 10:37:50 +0200411 }
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200412 pos++;
413
414 /* IEEE80211_RADIOTAP_CHANNEL */
Thomas Pedersen3b23c1842020-04-01 18:18:05 -0700415 /* TODO: frequency offset in KHz */
Johannes Berg6a86b9c2009-10-28 09:58:52 +0100416 put_unaligned_le16(status->freq, pos);
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200417 pos += 2;
Johannes Bergda6a4352017-04-26 12:14:59 +0200418 if (status->bw == RATE_INFO_BW_10)
Simon Wunderlicha5e70692013-07-08 16:55:52 +0200419 channel_flags |= IEEE80211_CHAN_HALF;
Johannes Bergda6a4352017-04-26 12:14:59 +0200420 else if (status->bw == RATE_INFO_BW_5)
Simon Wunderlicha5e70692013-07-08 16:55:52 +0200421 channel_flags |= IEEE80211_CHAN_QUARTER;
422
Johannes Berg57fbcce2016-04-12 15:56:15 +0200423 if (status->band == NL80211_BAND_5GHZ)
Simon Wunderlicha5e70692013-07-08 16:55:52 +0200424 channel_flags |= IEEE80211_CHAN_OFDM | IEEE80211_CHAN_5GHZ;
Johannes Bergda6a4352017-04-26 12:14:59 +0200425 else if (status->encoding != RX_ENC_LEGACY)
Simon Wunderlicha5e70692013-07-08 16:55:52 +0200426 channel_flags |= IEEE80211_CHAN_DYN | IEEE80211_CHAN_2GHZ;
Johannes Bergf8d1ccf2011-11-08 12:28:33 +0100427 else if (rate && rate->flags & IEEE80211_RATE_ERP_G)
Simon Wunderlicha5e70692013-07-08 16:55:52 +0200428 channel_flags |= IEEE80211_CHAN_OFDM | IEEE80211_CHAN_2GHZ;
Johannes Bergf8d1ccf2011-11-08 12:28:33 +0100429 else if (rate)
Mathy Vanhoef3a5c5e82015-01-20 15:05:08 +0100430 channel_flags |= IEEE80211_CHAN_CCK | IEEE80211_CHAN_2GHZ;
Johannes Bergf8d1ccf2011-11-08 12:28:33 +0100431 else
Simon Wunderlicha5e70692013-07-08 16:55:52 +0200432 channel_flags |= IEEE80211_CHAN_2GHZ;
433 put_unaligned_le16(channel_flags, pos);
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200434 pos += 2;
435
436 /* IEEE80211_RADIOTAP_DBM_ANTSIGNAL */
Johannes Berg30686bf2015-06-02 21:39:54 +0200437 if (ieee80211_hw_check(&local->hw, SIGNAL_DBM) &&
Felix Fietkaufe8431f2012-03-01 18:00:07 +0100438 !(status->flag & RX_FLAG_NO_SIGNAL_VAL)) {
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200439 *pos = status->signal;
440 rthdr->it_present |=
441 cpu_to_le32(1 << IEEE80211_RADIOTAP_DBM_ANTSIGNAL);
442 pos++;
443 }
444
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200445 /* IEEE80211_RADIOTAP_LOCK_QUALITY is missing */
446
Johannes Berga144f372013-07-03 13:34:02 +0200447 if (!status->chains) {
448 /* IEEE80211_RADIOTAP_ANTENNA */
449 *pos = status->antenna;
450 pos++;
451 }
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200452
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200453 /* IEEE80211_RADIOTAP_DB_ANTNOISE is not used */
454
455 /* IEEE80211_RADIOTAP_RX_FLAGS */
456 /* ensure 2 byte alignment for the 2 byte field as required */
Johannes Berg6a86b9c2009-10-28 09:58:52 +0100457 if ((pos - (u8 *)rthdr) & 1)
Johannes Berg90b9e4462012-11-16 10:09:08 +0100458 *pos++ = 0;
Johannes Bergaae89832009-03-13 12:52:10 +0100459 if (status->flag & RX_FLAG_FAILED_PLCP_CRC)
Johannes Berg6a86b9c2009-10-28 09:58:52 +0100460 rx_flags |= IEEE80211_RADIOTAP_F_RX_BADPLCP;
461 put_unaligned_le16(rx_flags, pos);
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200462 pos += 2;
Johannes Berg6d744ba2011-01-27 14:13:17 +0100463
Johannes Bergda6a4352017-04-26 12:14:59 +0200464 if (status->encoding == RX_ENC_HT) {
Oleksij Rempel786677d2013-05-24 12:05:45 +0200465 unsigned int stbc;
466
Johannes Berg6d744ba2011-01-27 14:13:17 +0100467 rthdr->it_present |= cpu_to_le32(1 << IEEE80211_RADIOTAP_MCS);
Johannes Bergac55d2f2012-05-10 09:09:10 +0200468 *pos++ = local->hw.radiotap_mcs_details;
Johannes Berg6d744ba2011-01-27 14:13:17 +0100469 *pos = 0;
Johannes Berg7fdd69c2017-04-26 11:13:00 +0200470 if (status->enc_flags & RX_ENC_FLAG_SHORT_GI)
Johannes Berg6d744ba2011-01-27 14:13:17 +0100471 *pos |= IEEE80211_RADIOTAP_MCS_SGI;
Johannes Bergda6a4352017-04-26 12:14:59 +0200472 if (status->bw == RATE_INFO_BW_40)
Johannes Berg6d744ba2011-01-27 14:13:17 +0100473 *pos |= IEEE80211_RADIOTAP_MCS_BW_40;
Johannes Berg7fdd69c2017-04-26 11:13:00 +0200474 if (status->enc_flags & RX_ENC_FLAG_HT_GF)
Johannes Bergac55d2f2012-05-10 09:09:10 +0200475 *pos |= IEEE80211_RADIOTAP_MCS_FMT_GF;
Johannes Berg7fdd69c2017-04-26 11:13:00 +0200476 if (status->enc_flags & RX_ENC_FLAG_LDPC)
Emmanuel Grumbach63c361f2014-02-05 12:48:53 +0200477 *pos |= IEEE80211_RADIOTAP_MCS_FEC_LDPC;
Johannes Berg7fdd69c2017-04-26 11:13:00 +0200478 stbc = (status->enc_flags & RX_ENC_FLAG_STBC_MASK) >> RX_ENC_FLAG_STBC_SHIFT;
Oleksij Rempel786677d2013-05-24 12:05:45 +0200479 *pos |= stbc << IEEE80211_RADIOTAP_MCS_STBC_SHIFT;
Johannes Berg6d744ba2011-01-27 14:13:17 +0100480 pos++;
481 *pos++ = status->rate_idx;
482 }
Johannes Berg4c298672012-07-05 11:34:31 +0200483
484 if (status->flag & RX_FLAG_AMPDU_DETAILS) {
485 u16 flags = 0;
486
487 /* ensure 4 byte alignment */
488 while ((pos - (u8 *)rthdr) & 3)
489 pos++;
490 rthdr->it_present |=
491 cpu_to_le32(1 << IEEE80211_RADIOTAP_AMPDU_STATUS);
492 put_unaligned_le32(status->ampdu_reference, pos);
493 pos += 4;
Johannes Berg4c298672012-07-05 11:34:31 +0200494 if (status->flag & RX_FLAG_AMPDU_LAST_KNOWN)
495 flags |= IEEE80211_RADIOTAP_AMPDU_LAST_KNOWN;
496 if (status->flag & RX_FLAG_AMPDU_IS_LAST)
497 flags |= IEEE80211_RADIOTAP_AMPDU_IS_LAST;
498 if (status->flag & RX_FLAG_AMPDU_DELIM_CRC_ERROR)
499 flags |= IEEE80211_RADIOTAP_AMPDU_DELIM_CRC_ERR;
500 if (status->flag & RX_FLAG_AMPDU_DELIM_CRC_KNOWN)
501 flags |= IEEE80211_RADIOTAP_AMPDU_DELIM_CRC_KNOWN;
Johannes Berg7299d6f2018-02-19 14:48:39 +0200502 if (status->flag & RX_FLAG_AMPDU_EOF_BIT_KNOWN)
503 flags |= IEEE80211_RADIOTAP_AMPDU_EOF_KNOWN;
504 if (status->flag & RX_FLAG_AMPDU_EOF_BIT)
505 flags |= IEEE80211_RADIOTAP_AMPDU_EOF;
Johannes Berg4c298672012-07-05 11:34:31 +0200506 put_unaligned_le16(flags, pos);
507 pos += 2;
508 if (status->flag & RX_FLAG_AMPDU_DELIM_CRC_KNOWN)
509 *pos++ = status->ampdu_delimiter_crc;
510 else
511 *pos++ = 0;
512 *pos++ = 0;
513 }
Johannes Berg90b9e4462012-11-16 10:09:08 +0100514
Johannes Bergda6a4352017-04-26 12:14:59 +0200515 if (status->encoding == RX_ENC_VHT) {
Johannes Berg51648922012-11-22 23:00:18 +0100516 u16 known = local->hw.radiotap_vht_details;
517
518 rthdr->it_present |= cpu_to_le32(1 << IEEE80211_RADIOTAP_VHT);
Johannes Berg51648922012-11-22 23:00:18 +0100519 put_unaligned_le16(known, pos);
520 pos += 2;
521 /* flags */
Johannes Berg7fdd69c2017-04-26 11:13:00 +0200522 if (status->enc_flags & RX_ENC_FLAG_SHORT_GI)
Johannes Berg51648922012-11-22 23:00:18 +0100523 *pos |= IEEE80211_RADIOTAP_VHT_FLAG_SGI;
Emmanuel Grumbach63c361f2014-02-05 12:48:53 +0200524 /* in VHT, STBC is binary */
Johannes Berg7fdd69c2017-04-26 11:13:00 +0200525 if (status->enc_flags & RX_ENC_FLAG_STBC_MASK)
Emmanuel Grumbach63c361f2014-02-05 12:48:53 +0200526 *pos |= IEEE80211_RADIOTAP_VHT_FLAG_STBC;
Johannes Berg7fdd69c2017-04-26 11:13:00 +0200527 if (status->enc_flags & RX_ENC_FLAG_BF)
Emmanuel Grumbachfb378c22014-03-04 10:35:25 +0200528 *pos |= IEEE80211_RADIOTAP_VHT_FLAG_BEAMFORMED;
Johannes Berg51648922012-11-22 23:00:18 +0100529 pos++;
530 /* bandwidth */
Johannes Bergda6a4352017-04-26 12:14:59 +0200531 switch (status->bw) {
532 case RATE_INFO_BW_80:
Johannes Berg51648922012-11-22 23:00:18 +0100533 *pos++ = 4;
Johannes Bergda6a4352017-04-26 12:14:59 +0200534 break;
535 case RATE_INFO_BW_160:
Johannes Berg51648922012-11-22 23:00:18 +0100536 *pos++ = 11;
Johannes Bergda6a4352017-04-26 12:14:59 +0200537 break;
538 case RATE_INFO_BW_40:
Johannes Berg51648922012-11-22 23:00:18 +0100539 *pos++ = 1;
Johannes Bergda6a4352017-04-26 12:14:59 +0200540 break;
541 default:
Johannes Berg51648922012-11-22 23:00:18 +0100542 *pos++ = 0;
Johannes Bergda6a4352017-04-26 12:14:59 +0200543 }
Johannes Berg51648922012-11-22 23:00:18 +0100544 /* MCS/NSS */
Johannes Berg8613c942017-04-26 13:51:41 +0200545 *pos = (status->rate_idx << 4) | status->nss;
Johannes Berg51648922012-11-22 23:00:18 +0100546 pos += 4;
547 /* coding field */
Johannes Berg7fdd69c2017-04-26 11:13:00 +0200548 if (status->enc_flags & RX_ENC_FLAG_LDPC)
Emmanuel Grumbach63c361f2014-02-05 12:48:53 +0200549 *pos |= IEEE80211_RADIOTAP_CODING_LDPC_USER0;
Johannes Berg51648922012-11-22 23:00:18 +0100550 pos++;
551 /* group ID */
552 pos++;
553 /* partial_aid */
554 pos += 2;
555 }
556
Johannes Berg99ee7ca2016-08-29 23:25:17 +0300557 if (local->hw.radiotap_timestamp.units_pos >= 0) {
558 u16 accuracy = 0;
559 u8 flags = IEEE80211_RADIOTAP_TIMESTAMP_FLAG_32BIT;
560
561 rthdr->it_present |=
562 cpu_to_le32(1 << IEEE80211_RADIOTAP_TIMESTAMP);
563
564 /* ensure 8 byte alignment */
565 while ((pos - (u8 *)rthdr) & 7)
566 pos++;
567
568 put_unaligned_le64(status->device_timestamp, pos);
569 pos += sizeof(u64);
570
571 if (local->hw.radiotap_timestamp.accuracy >= 0) {
572 accuracy = local->hw.radiotap_timestamp.accuracy;
573 flags |= IEEE80211_RADIOTAP_TIMESTAMP_FLAG_ACCURACY;
574 }
575 put_unaligned_le16(accuracy, pos);
576 pos += sizeof(u16);
577
578 *pos++ = local->hw.radiotap_timestamp.units_pos;
579 *pos++ = flags;
580 }
581
Luca Coelho41cbb0f2018-06-09 09:14:44 +0300582 if (status->encoding == RX_ENC_HE &&
583 status->flag & RX_FLAG_RADIOTAP_HE) {
Johannes Berg331aead2018-08-31 11:31:07 +0300584#define HE_PREP(f, val) le16_encode_bits(val, IEEE80211_RADIOTAP_HE_##f)
Luca Coelho41cbb0f2018-06-09 09:14:44 +0300585
586 if (status->enc_flags & RX_ENC_FLAG_STBC_MASK) {
587 he.data6 |= HE_PREP(DATA6_NSTS,
588 FIELD_GET(RX_ENC_FLAG_STBC_MASK,
589 status->enc_flags));
590 he.data3 |= HE_PREP(DATA3_STBC, 1);
591 } else {
592 he.data6 |= HE_PREP(DATA6_NSTS, status->nss);
593 }
594
595#define CHECK_GI(s) \
596 BUILD_BUG_ON(IEEE80211_RADIOTAP_HE_DATA5_GI_##s != \
597 (int)NL80211_RATE_INFO_HE_GI_##s)
598
599 CHECK_GI(0_8);
600 CHECK_GI(1_6);
601 CHECK_GI(3_2);
602
603 he.data3 |= HE_PREP(DATA3_DATA_MCS, status->rate_idx);
604 he.data3 |= HE_PREP(DATA3_DATA_DCM, status->he_dcm);
605 he.data3 |= HE_PREP(DATA3_CODING,
606 !!(status->enc_flags & RX_ENC_FLAG_LDPC));
607
608 he.data5 |= HE_PREP(DATA5_GI, status->he_gi);
609
610 switch (status->bw) {
611 case RATE_INFO_BW_20:
612 he.data5 |= HE_PREP(DATA5_DATA_BW_RU_ALLOC,
613 IEEE80211_RADIOTAP_HE_DATA5_DATA_BW_RU_ALLOC_20MHZ);
614 break;
615 case RATE_INFO_BW_40:
616 he.data5 |= HE_PREP(DATA5_DATA_BW_RU_ALLOC,
617 IEEE80211_RADIOTAP_HE_DATA5_DATA_BW_RU_ALLOC_40MHZ);
618 break;
619 case RATE_INFO_BW_80:
620 he.data5 |= HE_PREP(DATA5_DATA_BW_RU_ALLOC,
621 IEEE80211_RADIOTAP_HE_DATA5_DATA_BW_RU_ALLOC_80MHZ);
622 break;
623 case RATE_INFO_BW_160:
624 he.data5 |= HE_PREP(DATA5_DATA_BW_RU_ALLOC,
625 IEEE80211_RADIOTAP_HE_DATA5_DATA_BW_RU_ALLOC_160MHZ);
626 break;
627 case RATE_INFO_BW_HE_RU:
628#define CHECK_RU_ALLOC(s) \
629 BUILD_BUG_ON(IEEE80211_RADIOTAP_HE_DATA5_DATA_BW_RU_ALLOC_##s##T != \
630 NL80211_RATE_INFO_HE_RU_ALLOC_##s + 4)
631
632 CHECK_RU_ALLOC(26);
633 CHECK_RU_ALLOC(52);
634 CHECK_RU_ALLOC(106);
635 CHECK_RU_ALLOC(242);
636 CHECK_RU_ALLOC(484);
637 CHECK_RU_ALLOC(996);
638 CHECK_RU_ALLOC(2x996);
639
640 he.data5 |= HE_PREP(DATA5_DATA_BW_RU_ALLOC,
641 status->he_ru + 4);
642 break;
643 default:
644 WARN_ONCE(1, "Invalid SU BW %d\n", status->bw);
645 }
646
647 /* ensure 2 byte alignment */
648 while ((pos - (u8 *)rthdr) & 1)
649 pos++;
650 rthdr->it_present |= cpu_to_le32(1 << IEEE80211_RADIOTAP_HE);
651 memcpy(pos, &he, sizeof(he));
652 pos += sizeof(he);
653 }
654
655 if (status->encoding == RX_ENC_HE &&
656 status->flag & RX_FLAG_RADIOTAP_HE_MU) {
657 /* ensure 2 byte alignment */
658 while ((pos - (u8 *)rthdr) & 1)
659 pos++;
660 rthdr->it_present |= cpu_to_le32(1 << IEEE80211_RADIOTAP_HE_MU);
661 memcpy(pos, &he_mu, sizeof(he_mu));
662 pos += sizeof(he_mu);
663 }
664
Shaul Triebitzc3d1f872018-09-05 08:06:06 +0300665 if (status->flag & RX_FLAG_NO_PSDU) {
666 rthdr->it_present |=
667 cpu_to_le32(1 << IEEE80211_RADIOTAP_ZERO_LEN_PSDU);
668 *pos++ = status->zero_length_psdu_type;
669 }
670
Shaul Triebitzd1332e72018-08-31 11:31:20 +0300671 if (status->flag & RX_FLAG_RADIOTAP_LSIG) {
672 /* ensure 2 byte alignment */
673 while ((pos - (u8 *)rthdr) & 1)
674 pos++;
675 rthdr->it_present |= cpu_to_le32(1 << IEEE80211_RADIOTAP_LSIG);
676 memcpy(pos, &lsig, sizeof(lsig));
677 pos += sizeof(lsig);
678 }
679
Johannes Berga144f372013-07-03 13:34:02 +0200680 for_each_set_bit(chain, &chains, IEEE80211_MAX_CHAINS) {
681 *pos++ = status->chain_signal[chain];
682 *pos++ = chain;
683 }
Johannes Berg1f7bba72014-11-06 22:56:36 +0100684
685 if (status->flag & RX_FLAG_RADIOTAP_VENDOR_DATA) {
686 /* ensure 2 byte alignment for the vendor field as required */
687 if ((pos - (u8 *)rthdr) & 1)
688 *pos++ = 0;
689 *pos++ = rtap.oui[0];
690 *pos++ = rtap.oui[1];
691 *pos++ = rtap.oui[2];
692 *pos++ = rtap.subns;
693 put_unaligned_le16(rtap.len, pos);
694 pos += 2;
695 /* align the actual payload as requested */
696 while ((pos - (u8 *)rthdr) & (rtap.align - 1))
697 *pos++ = 0;
698 /* data (and possible padding) already follows */
699 }
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200700}
701
Johannes Berg127f60b2017-04-13 15:50:27 +0200702static struct sk_buff *
703ieee80211_make_monitor_skb(struct ieee80211_local *local,
704 struct sk_buff **origskb,
705 struct ieee80211_rate *rate,
Johannes Bergc096b922018-04-20 13:49:18 +0300706 int rtap_space, bool use_origskb)
Johannes Berg127f60b2017-04-13 15:50:27 +0200707{
708 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(*origskb);
709 int rt_hdrlen, needed_headroom;
710 struct sk_buff *skb;
711
712 /* room for the radiotap header based on driver features */
713 rt_hdrlen = ieee80211_rx_radiotap_hdrlen(local, status, *origskb);
Johannes Bergc096b922018-04-20 13:49:18 +0300714 needed_headroom = rt_hdrlen - rtap_space;
Johannes Berg127f60b2017-04-13 15:50:27 +0200715
716 if (use_origskb) {
717 /* only need to expand headroom if necessary */
718 skb = *origskb;
719 *origskb = NULL;
720
721 /*
722 * This shouldn't trigger often because most devices have an
723 * RX header they pull before we get here, and that should
724 * be big enough for our radiotap information. We should
725 * probably export the length to drivers so that we can have
726 * them allocate enough headroom to start with.
727 */
728 if (skb_headroom(skb) < needed_headroom &&
729 pskb_expand_head(skb, needed_headroom, 0, GFP_ATOMIC)) {
730 dev_kfree_skb(skb);
731 return NULL;
732 }
733 } else {
734 /*
735 * Need to make a copy and possibly remove radiotap header
736 * and FCS from the original.
737 */
738 skb = skb_copy_expand(*origskb, needed_headroom, 0, GFP_ATOMIC);
739
740 if (!skb)
741 return NULL;
742 }
743
744 /* prepend radiotap information */
745 ieee80211_add_rx_radiotap_header(local, skb, rate, rt_hdrlen, true);
746
747 skb_reset_mac_header(skb);
748 skb->ip_summed = CHECKSUM_UNNECESSARY;
749 skb->pkt_type = PACKET_OTHERHOST;
750 skb->protocol = htons(ETH_P_802_2);
751
752 return skb;
753}
754
Johannes Bergb2e77712007-09-26 15:19:39 +0200755/*
756 * This function copies a received frame to all monitor interfaces and
757 * returns a cleaned-up SKB that no longer includes the FCS nor the
758 * radiotap header the driver might have added.
759 */
760static struct sk_buff *
761ieee80211_rx_monitor(struct ieee80211_local *local, struct sk_buff *origskb,
Johannes Berg8318d782008-01-24 19:38:38 +0100762 struct ieee80211_rate *rate)
Johannes Bergb2e77712007-09-26 15:19:39 +0200763{
Johannes Bergf1d58c22009-06-17 13:13:00 +0200764 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(origskb);
Johannes Bergb2e77712007-09-26 15:19:39 +0200765 struct ieee80211_sub_if_data *sdata;
Johannes Berg127f60b2017-04-13 15:50:27 +0200766 struct sk_buff *monskb = NULL;
Johannes Bergb2e77712007-09-26 15:19:39 +0200767 int present_fcs_len = 0;
Johannes Bergc096b922018-04-20 13:49:18 +0300768 unsigned int rtap_space = 0;
Aviya Erenfeld42bd20d2016-08-29 23:25:16 +0300769 struct ieee80211_sub_if_data *monitor_sdata =
770 rcu_dereference(local->monitor_sdata);
Johannes Berg127f60b2017-04-13 15:50:27 +0200771 bool only_monitor = false;
Ilan Peer80209192018-12-15 11:03:17 +0200772 unsigned int min_head_len;
Johannes Berg1f7bba72014-11-06 22:56:36 +0100773
Luca Coelho41cbb0f2018-06-09 09:14:44 +0300774 if (status->flag & RX_FLAG_RADIOTAP_HE)
775 rtap_space += sizeof(struct ieee80211_radiotap_he);
776
777 if (status->flag & RX_FLAG_RADIOTAP_HE_MU)
778 rtap_space += sizeof(struct ieee80211_radiotap_he_mu);
779
Ilan Peerd359bbc2018-12-15 11:03:25 +0200780 if (status->flag & RX_FLAG_RADIOTAP_LSIG)
781 rtap_space += sizeof(struct ieee80211_radiotap_lsig);
782
Johannes Berg1f7bba72014-11-06 22:56:36 +0100783 if (unlikely(status->flag & RX_FLAG_RADIOTAP_VENDOR_DATA)) {
Ilan Peerd359bbc2018-12-15 11:03:25 +0200784 struct ieee80211_vendor_radiotap *rtap =
785 (void *)(origskb->data + rtap_space);
Johannes Berg1f7bba72014-11-06 22:56:36 +0100786
Johannes Bergc096b922018-04-20 13:49:18 +0300787 rtap_space += sizeof(*rtap) + rtap->len + rtap->pad;
Johannes Berg1f7bba72014-11-06 22:56:36 +0100788 }
Johannes Bergb2e77712007-09-26 15:19:39 +0200789
Ilan Peer80209192018-12-15 11:03:17 +0200790 min_head_len = rtap_space;
791
Johannes Bergb2e77712007-09-26 15:19:39 +0200792 /*
793 * First, we may need to make a copy of the skb because
794 * (1) we need to modify it for radiotap (if not present), and
795 * (2) the other RX handlers will modify the skb we got.
796 *
797 * We don't need to, of course, if we aren't going to return
798 * the SKB because it has a bad FCS/PLCP checksum.
799 */
Johannes Berg0869aea02009-10-28 10:03:35 +0100800
Ilan Peer80209192018-12-15 11:03:17 +0200801 if (!(status->flag & RX_FLAG_NO_PSDU)) {
802 if (ieee80211_hw_check(&local->hw, RX_INCLUDES_FCS)) {
803 if (unlikely(origskb->len <= FCS_LEN + rtap_space)) {
804 /* driver bug */
805 WARN_ON(1);
806 dev_kfree_skb(origskb);
807 return NULL;
808 }
809 present_fcs_len = FCS_LEN;
Johannes Berg30841f52017-04-11 15:38:56 +0200810 }
Ilan Peer80209192018-12-15 11:03:17 +0200811
812 /* also consider the hdr->frame_control */
813 min_head_len += 2;
Johannes Berg30841f52017-04-11 15:38:56 +0200814 }
Johannes Bergb2e77712007-09-26 15:19:39 +0200815
Ilan Peer80209192018-12-15 11:03:17 +0200816 /* ensure that the expected data elements are in skb head */
817 if (!pskb_may_pull(origskb, min_head_len)) {
Zhu Yie3cf8b3f2010-03-29 17:35:07 +0800818 dev_kfree_skb(origskb);
819 return NULL;
820 }
821
Johannes Bergc096b922018-04-20 13:49:18 +0300822 only_monitor = should_drop_frame(origskb, present_fcs_len, rtap_space);
Johannes Berg127f60b2017-04-13 15:50:27 +0200823
Grzegorz Bajorski17883042015-12-11 14:39:46 +0100824 if (!local->monitors || (status->flag & RX_FLAG_SKIP_MONITOR)) {
Johannes Berg127f60b2017-04-13 15:50:27 +0200825 if (only_monitor) {
Johannes Bergb2e77712007-09-26 15:19:39 +0200826 dev_kfree_skb(origskb);
827 return NULL;
828 }
829
Johannes Bergc096b922018-04-20 13:49:18 +0300830 remove_monitor_info(origskb, present_fcs_len, rtap_space);
Johannes Berg30841f52017-04-11 15:38:56 +0200831 return origskb;
Johannes Bergb2e77712007-09-26 15:19:39 +0200832 }
833
Johannes Bergc096b922018-04-20 13:49:18 +0300834 ieee80211_handle_mu_mimo_mon(monitor_sdata, origskb, rtap_space);
Johannes Berg9e478062017-04-13 14:23:49 +0200835
Johannes Bergf64331d2017-04-13 13:28:18 +0200836 list_for_each_entry_rcu(sdata, &local->mon_list, u.mntr.list) {
Johannes Berg127f60b2017-04-13 15:50:27 +0200837 bool last_monitor = list_is_last(&sdata->u.mntr.list,
838 &local->mon_list);
839
840 if (!monskb)
841 monskb = ieee80211_make_monitor_skb(local, &origskb,
Johannes Bergc096b922018-04-20 13:49:18 +0300842 rate, rtap_space,
Johannes Berg127f60b2017-04-13 15:50:27 +0200843 only_monitor &&
844 last_monitor);
845
846 if (monskb) {
847 struct sk_buff *skb;
848
849 if (last_monitor) {
850 skb = monskb;
851 monskb = NULL;
852 } else {
853 skb = skb_clone(monskb, GFP_ATOMIC);
854 }
855
856 if (skb) {
857 skb->dev = sdata->dev;
858 ieee80211_rx_stats(skb->dev, skb->len);
859 netif_receive_skb(skb);
Johannes Bergb2e77712007-09-26 15:19:39 +0200860 }
861 }
862
Johannes Berg127f60b2017-04-13 15:50:27 +0200863 if (last_monitor)
864 break;
Johannes Bergb2e77712007-09-26 15:19:39 +0200865 }
866
Johannes Berg127f60b2017-04-13 15:50:27 +0200867 /* this happens if last_monitor was erroneously false */
868 dev_kfree_skb(monskb);
Johannes Bergb2e77712007-09-26 15:19:39 +0200869
Johannes Berg127f60b2017-04-13 15:50:27 +0200870 /* ditto */
871 if (!origskb)
872 return NULL;
873
Johannes Bergc096b922018-04-20 13:49:18 +0300874 remove_monitor_info(origskb, present_fcs_len, rtap_space);
Johannes Bergb2e77712007-09-26 15:19:39 +0200875 return origskb;
876}
877
Johannes Berg5cf121c2008-02-25 16:27:43 +0100878static void ieee80211_parse_qos(struct ieee80211_rx_data *rx)
Johannes Berg6e0d1142007-07-27 15:43:22 +0200879{
Harvey Harrison238f74a2008-07-02 11:05:34 -0700880 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
Johannes Berg554891e2010-09-24 12:38:25 +0200881 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(rx->skb);
Johannes Berg9e262972011-07-07 18:45:03 +0200882 int tid, seqno_idx, security_idx;
Johannes Berg6e0d1142007-07-27 15:43:22 +0200883
884 /* does the frame have a qos control field? */
Harvey Harrison238f74a2008-07-02 11:05:34 -0700885 if (ieee80211_is_data_qos(hdr->frame_control)) {
886 u8 *qc = ieee80211_get_qos_ctl(hdr);
Johannes Berg6e0d1142007-07-27 15:43:22 +0200887 /* frame has qos control */
Harvey Harrison238f74a2008-07-02 11:05:34 -0700888 tid = *qc & IEEE80211_QOS_CTL_TID_MASK;
Johannes Berg04b7dcf2011-06-22 10:06:59 +0200889 if (*qc & IEEE80211_QOS_CTL_A_MSDU_PRESENT)
Johannes Berg554891e2010-09-24 12:38:25 +0200890 status->rx_flags |= IEEE80211_RX_AMSDU;
Johannes Berg9e262972011-07-07 18:45:03 +0200891
892 seqno_idx = tid;
893 security_idx = tid;
Johannes Berg6e0d1142007-07-27 15:43:22 +0200894 } else {
Johannes Berg1411f9b2008-07-10 10:11:02 +0200895 /*
896 * IEEE 802.11-2007, 7.1.3.4.1 ("Sequence Number field"):
897 *
898 * Sequence numbers for management frames, QoS data
899 * frames with a broadcast/multicast address in the
900 * Address 1 field, and all non-QoS data frames sent
901 * by QoS STAs are assigned using an additional single
902 * modulo-4096 counter, [...]
903 *
904 * We also use that counter for non-QoS STAs.
905 */
Johannes Berg5a306f52012-11-14 23:22:21 +0100906 seqno_idx = IEEE80211_NUM_TIDS;
Johannes Berg9e262972011-07-07 18:45:03 +0200907 security_idx = 0;
908 if (ieee80211_is_mgmt(hdr->frame_control))
Johannes Berg5a306f52012-11-14 23:22:21 +0100909 security_idx = IEEE80211_NUM_TIDS;
Johannes Berg9e262972011-07-07 18:45:03 +0200910 tid = 0;
Johannes Berg6e0d1142007-07-27 15:43:22 +0200911 }
Johannes Berg52865dfd2007-07-27 15:43:22 +0200912
Johannes Berg9e262972011-07-07 18:45:03 +0200913 rx->seqno_idx = seqno_idx;
914 rx->security_idx = security_idx;
Johannes Berg6e0d1142007-07-27 15:43:22 +0200915 /* Set skb->priority to 1d tag if highest order bit of TID is not set.
916 * For now, set skb->priority to 0 for other cases. */
917 rx->skb->priority = (tid > 7) ? 0 : tid;
Johannes Berg38f37142008-01-29 17:07:43 +0100918}
Johannes Berg6e0d1142007-07-27 15:43:22 +0200919
Johannes Bergd1c3a372009-01-07 00:26:10 +0100920/**
921 * DOC: Packet alignment
922 *
923 * Drivers always need to pass packets that are aligned to two-byte boundaries
924 * to the stack.
925 *
926 * Additionally, should, if possible, align the payload data in a way that
927 * guarantees that the contained IP header is aligned to a four-byte
928 * boundary. In the case of regular frames, this simply means aligning the
929 * payload to a four-byte boundary (because either the IP header is directly
930 * contained, or IV/RFC1042 headers that have a length divisible by four are
Kalle Valo59d9cb02009-12-17 13:54:57 +0100931 * in front of it). If the payload data is not properly aligned and the
932 * architecture doesn't support efficient unaligned operations, mac80211
933 * will align the data.
Johannes Bergd1c3a372009-01-07 00:26:10 +0100934 *
935 * With A-MSDU frames, however, the payload data address must yield two modulo
936 * four because there are 14-byte 802.3 headers within the A-MSDU frames that
937 * push the IP header further back to a multiple of four again. Thankfully, the
938 * specs were sane enough this time around to require padding each A-MSDU
939 * subframe to a length that is a multiple of four.
940 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300941 * Padding like Atheros hardware adds which is between the 802.11 header and
Johannes Bergd1c3a372009-01-07 00:26:10 +0100942 * the payload is not supported, the driver is required to move the 802.11
943 * header to be directly in front of the payload in that case.
944 */
945static void ieee80211_verify_alignment(struct ieee80211_rx_data *rx)
Johannes Berg38f37142008-01-29 17:07:43 +0100946{
Kalle Valo59d9cb02009-12-17 13:54:57 +0100947#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Johannes Berg441275e2015-11-06 12:34:24 +0100948 WARN_ON_ONCE((unsigned long)rx->skb->data & 1);
Johannes Bergd1c3a372009-01-07 00:26:10 +0100949#endif
Johannes Berg6e0d1142007-07-27 15:43:22 +0200950}
951
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +0200952
Johannes Berg571ecf62007-07-27 15:43:22 +0200953/* rx handlers */
954
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200955static int ieee80211_is_unicast_robust_mgmt_frame(struct sk_buff *skb)
956{
957 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
958
Johannes Bergd8ca16d2014-01-23 16:20:29 +0100959 if (is_multicast_ether_addr(hdr->addr1))
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200960 return 0;
961
Johannes Bergd8ca16d2014-01-23 16:20:29 +0100962 return ieee80211_is_robust_mgmt_frame(skb);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200963}
964
965
966static int ieee80211_is_multicast_robust_mgmt_frame(struct sk_buff *skb)
967{
968 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
969
Johannes Bergd8ca16d2014-01-23 16:20:29 +0100970 if (!is_multicast_ether_addr(hdr->addr1))
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200971 return 0;
972
Johannes Bergd8ca16d2014-01-23 16:20:29 +0100973 return ieee80211_is_robust_mgmt_frame(skb);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200974}
975
976
977/* Get the BIP key index from MMIE; return -1 if this is not a BIP frame */
978static int ieee80211_get_mmie_keyidx(struct sk_buff *skb)
979{
980 struct ieee80211_mgmt *hdr = (struct ieee80211_mgmt *) skb->data;
981 struct ieee80211_mmie *mmie;
Jouni Malinen56c52da2015-01-24 19:52:08 +0200982 struct ieee80211_mmie_16 *mmie16;
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200983
Johannes Berg1df332e2012-10-26 00:09:11 +0200984 if (skb->len < 24 + sizeof(*mmie) || !is_multicast_ether_addr(hdr->da))
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200985 return -1;
986
Jouni Malinenaf2d14b2020-02-22 15:25:47 +0200987 if (!ieee80211_is_robust_mgmt_frame(skb) &&
988 !ieee80211_is_beacon(hdr->frame_control))
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200989 return -1; /* not a robust management frame */
990
991 mmie = (struct ieee80211_mmie *)
992 (skb->data + skb->len - sizeof(*mmie));
Jouni Malinen56c52da2015-01-24 19:52:08 +0200993 if (mmie->element_id == WLAN_EID_MMIE &&
994 mmie->length == sizeof(*mmie) - 2)
995 return le16_to_cpu(mmie->key_id);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200996
Jouni Malinen56c52da2015-01-24 19:52:08 +0200997 mmie16 = (struct ieee80211_mmie_16 *)
998 (skb->data + skb->len - sizeof(*mmie16));
999 if (skb->len >= 24 + sizeof(*mmie16) &&
1000 mmie16->element_id == WLAN_EID_MMIE &&
1001 mmie16->length == sizeof(*mmie16) - 2)
1002 return le16_to_cpu(mmie16->key_id);
1003
1004 return -1;
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +02001005}
1006
Alexander Wetzel96fc6ef2019-03-19 21:34:08 +01001007static int ieee80211_get_keyid(struct sk_buff *skb,
1008 const struct ieee80211_cipher_scheme *cs)
Max Stepanov2475b1cc2013-03-24 14:23:27 +02001009{
1010 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
1011 __le16 fc;
1012 int hdrlen;
Alexander Wetzel96fc6ef2019-03-19 21:34:08 +01001013 int minlen;
1014 u8 key_idx_off;
1015 u8 key_idx_shift;
Max Stepanov2475b1cc2013-03-24 14:23:27 +02001016 u8 keyid;
1017
1018 fc = hdr->frame_control;
1019 hdrlen = ieee80211_hdrlen(fc);
1020
Alexander Wetzel96fc6ef2019-03-19 21:34:08 +01001021 if (cs) {
1022 minlen = hdrlen + cs->hdr_len;
1023 key_idx_off = hdrlen + cs->key_idx_off;
1024 key_idx_shift = cs->key_idx_shift;
1025 } else {
1026 /* WEP, TKIP, CCMP and GCMP */
1027 minlen = hdrlen + IEEE80211_WEP_IV_LEN;
1028 key_idx_off = hdrlen + 3;
1029 key_idx_shift = 6;
1030 }
1031
1032 if (unlikely(skb->len < minlen))
Max Stepanov2475b1cc2013-03-24 14:23:27 +02001033 return -EINVAL;
1034
Alexander Wetzel96fc6ef2019-03-19 21:34:08 +01001035 skb_copy_bits(skb, key_idx_off, &keyid, 1);
1036
1037 if (cs)
1038 keyid &= cs->key_idx_mask;
1039 keyid >>= key_idx_shift;
1040
1041 /* cs could use more than the usual two bits for the keyid */
1042 if (unlikely(keyid >= NUM_DEFAULT_KEYS))
1043 return -EINVAL;
Max Stepanov2475b1cc2013-03-24 14:23:27 +02001044
1045 return keyid;
1046}
1047
Johannes Berg1df332e2012-10-26 00:09:11 +02001048static ieee80211_rx_result ieee80211_rx_mesh_check(struct ieee80211_rx_data *rx)
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001049{
Harvey Harrisona7767f92008-07-02 16:30:51 -07001050 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
Johannes Berg47846c92009-11-25 17:46:19 +01001051 char *dev_addr = rx->sdata->vif.addr;
Johannes Bergd6d1a5a2008-02-25 16:24:38 +01001052
Harvey Harrisona7767f92008-07-02 16:30:51 -07001053 if (ieee80211_is_data(hdr->frame_control)) {
Javier Cardona3c5772a2009-08-10 12:15:48 -07001054 if (is_multicast_ether_addr(hdr->addr1)) {
1055 if (ieee80211_has_tods(hdr->frame_control) ||
Johannes Berg1df332e2012-10-26 00:09:11 +02001056 !ieee80211_has_fromds(hdr->frame_control))
Javier Cardona3c5772a2009-08-10 12:15:48 -07001057 return RX_DROP_MONITOR;
Joe Perchesb203ca32012-05-08 18:56:52 +00001058 if (ether_addr_equal(hdr->addr3, dev_addr))
Javier Cardona3c5772a2009-08-10 12:15:48 -07001059 return RX_DROP_MONITOR;
1060 } else {
1061 if (!ieee80211_has_a4(hdr->frame_control))
1062 return RX_DROP_MONITOR;
Joe Perchesb203ca32012-05-08 18:56:52 +00001063 if (ether_addr_equal(hdr->addr4, dev_addr))
Javier Cardona3c5772a2009-08-10 12:15:48 -07001064 return RX_DROP_MONITOR;
1065 }
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001066 }
1067
1068 /* If there is not an established peer link and this is not a peer link
1069 * establisment frame, beacon or probe, drop the frame.
1070 */
1071
Javier Cardona57cf8042011-05-13 10:45:43 -07001072 if (!rx->sta || sta_plink_state(rx->sta) != NL80211_PLINK_ESTAB) {
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001073 struct ieee80211_mgmt *mgmt;
Johannes Bergd6d1a5a2008-02-25 16:24:38 +01001074
Harvey Harrisona7767f92008-07-02 16:30:51 -07001075 if (!ieee80211_is_mgmt(hdr->frame_control))
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001076 return RX_DROP_MONITOR;
1077
Harvey Harrisona7767f92008-07-02 16:30:51 -07001078 if (ieee80211_is_action(hdr->frame_control)) {
Javier Cardonad3aaec8a2011-05-03 16:57:09 -07001079 u8 category;
Johannes Berg9b395bc2012-10-26 00:36:40 +02001080
1081 /* make sure category field is present */
1082 if (rx->skb->len < IEEE80211_MIN_ACTION_SIZE)
1083 return RX_DROP_MONITOR;
1084
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001085 mgmt = (struct ieee80211_mgmt *)hdr;
Javier Cardonad3aaec8a2011-05-03 16:57:09 -07001086 category = mgmt->u.action.category;
1087 if (category != WLAN_CATEGORY_MESH_ACTION &&
Johannes Berg1df332e2012-10-26 00:09:11 +02001088 category != WLAN_CATEGORY_SELF_PROTECTED)
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001089 return RX_DROP_MONITOR;
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001090 return RX_CONTINUE;
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001091 }
1092
Harvey Harrisona7767f92008-07-02 16:30:51 -07001093 if (ieee80211_is_probe_req(hdr->frame_control) ||
1094 ieee80211_is_probe_resp(hdr->frame_control) ||
Javier Cardona71839122011-04-07 15:08:31 -07001095 ieee80211_is_beacon(hdr->frame_control) ||
1096 ieee80211_is_auth(hdr->frame_control))
Harvey Harrisona7767f92008-07-02 16:30:51 -07001097 return RX_CONTINUE;
1098
1099 return RX_DROP_MONITOR;
Harvey Harrisona7767f92008-07-02 16:30:51 -07001100 }
1101
Johannes Berg902acc72008-02-23 15:17:19 +01001102 return RX_CONTINUE;
1103}
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001104
Johannes Bergfb4ea052016-01-28 16:19:24 +02001105static inline bool ieee80211_rx_reorder_ready(struct tid_ampdu_rx *tid_agg_rx,
1106 int index)
1107{
1108 struct sk_buff_head *frames = &tid_agg_rx->reorder_buf[index];
1109 struct sk_buff *tail = skb_peek_tail(frames);
1110 struct ieee80211_rx_status *status;
1111
Sara Sharon06470f72016-01-28 16:19:25 +02001112 if (tid_agg_rx->reorder_buf_filtered & BIT_ULL(index))
1113 return true;
1114
Johannes Bergfb4ea052016-01-28 16:19:24 +02001115 if (!tail)
1116 return false;
1117
1118 status = IEEE80211_SKB_RXCB(tail);
1119 if (status->flag & RX_FLAG_AMSDU_MORE)
1120 return false;
1121
1122 return true;
1123}
1124
Johannes Bergd3b2fb52012-06-22 12:48:38 +02001125static void ieee80211_release_reorder_frame(struct ieee80211_sub_if_data *sdata,
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001126 struct tid_ampdu_rx *tid_agg_rx,
Christian Lamparterf9e124f2013-02-04 17:44:44 +00001127 int index,
1128 struct sk_buff_head *frames)
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001129{
Michal Kazior83eb9352014-07-16 12:09:31 +02001130 struct sk_buff_head *skb_list = &tid_agg_rx->reorder_buf[index];
1131 struct sk_buff *skb;
Christian Lamparter4cfda472010-12-27 23:21:26 +01001132 struct ieee80211_rx_status *status;
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001133
Johannes Bergdd318572010-11-29 11:09:16 +01001134 lockdep_assert_held(&tid_agg_rx->reorder_lock);
1135
Michal Kazior83eb9352014-07-16 12:09:31 +02001136 if (skb_queue_empty(skb_list))
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001137 goto no_frame;
1138
Johannes Bergfb4ea052016-01-28 16:19:24 +02001139 if (!ieee80211_rx_reorder_ready(tid_agg_rx, index)) {
Michal Kazior83eb9352014-07-16 12:09:31 +02001140 __skb_queue_purge(skb_list);
1141 goto no_frame;
1142 }
1143
1144 /* release frames from the reorder ring buffer */
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001145 tid_agg_rx->stored_mpdu_num--;
Michal Kazior83eb9352014-07-16 12:09:31 +02001146 while ((skb = __skb_dequeue(skb_list))) {
1147 status = IEEE80211_SKB_RXCB(skb);
1148 status->rx_flags |= IEEE80211_RX_DEFERRED_RELEASE;
1149 __skb_queue_tail(frames, skb);
1150 }
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001151
1152no_frame:
Sara Sharon06470f72016-01-28 16:19:25 +02001153 tid_agg_rx->reorder_buf_filtered &= ~BIT_ULL(index);
Johannes Berg9a886582013-02-15 19:25:00 +01001154 tid_agg_rx->head_seq_num = ieee80211_sn_inc(tid_agg_rx->head_seq_num);
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001155}
1156
Johannes Bergd3b2fb52012-06-22 12:48:38 +02001157static void ieee80211_release_reorder_frames(struct ieee80211_sub_if_data *sdata,
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001158 struct tid_ampdu_rx *tid_agg_rx,
Christian Lamparterf9e124f2013-02-04 17:44:44 +00001159 u16 head_seq_num,
1160 struct sk_buff_head *frames)
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001161{
1162 int index;
1163
Johannes Bergdd318572010-11-29 11:09:16 +01001164 lockdep_assert_held(&tid_agg_rx->reorder_lock);
1165
Johannes Berg9a886582013-02-15 19:25:00 +01001166 while (ieee80211_sn_less(tid_agg_rx->head_seq_num, head_seq_num)) {
Karl Beldan2e3049b2013-10-24 15:53:32 +02001167 index = tid_agg_rx->head_seq_num % tid_agg_rx->buf_size;
Christian Lamparterf9e124f2013-02-04 17:44:44 +00001168 ieee80211_release_reorder_frame(sdata, tid_agg_rx, index,
1169 frames);
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001170 }
1171}
1172
1173/*
1174 * Timeout (in jiffies) for skb's that are waiting in the RX reorder buffer. If
1175 * the skb was added to the buffer longer than this time ago, the earlier
1176 * frames that have not yet been received are assumed to be lost and the skb
1177 * can be released for processing. This may also release other skb's from the
1178 * reorder buffer if there are no additional gaps between the frames.
Christian Lamparter2bff8ebf2010-08-05 01:36:41 +02001179 *
1180 * Callers must hold tid_agg_rx->reorder_lock.
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001181 */
1182#define HT_RX_REORDER_BUF_TIMEOUT (HZ / 10)
1183
Johannes Bergd3b2fb52012-06-22 12:48:38 +02001184static void ieee80211_sta_reorder_release(struct ieee80211_sub_if_data *sdata,
Christian Lamparterf9e124f2013-02-04 17:44:44 +00001185 struct tid_ampdu_rx *tid_agg_rx,
1186 struct sk_buff_head *frames)
Christian Lamparteraa0c8632010-08-05 01:36:04 +02001187{
Michal Kazior83eb9352014-07-16 12:09:31 +02001188 int index, i, j;
Christian Lamparteraa0c8632010-08-05 01:36:04 +02001189
Johannes Bergdd318572010-11-29 11:09:16 +01001190 lockdep_assert_held(&tid_agg_rx->reorder_lock);
1191
Christian Lamparteraa0c8632010-08-05 01:36:04 +02001192 /* release the buffer until next missing frame */
Karl Beldan2e3049b2013-10-24 15:53:32 +02001193 index = tid_agg_rx->head_seq_num % tid_agg_rx->buf_size;
Johannes Bergfb4ea052016-01-28 16:19:24 +02001194 if (!ieee80211_rx_reorder_ready(tid_agg_rx, index) &&
Eliad Peller07ae2df2012-02-01 18:48:09 +02001195 tid_agg_rx->stored_mpdu_num) {
Christian Lamparteraa0c8632010-08-05 01:36:04 +02001196 /*
1197 * No buffers ready to be released, but check whether any
1198 * frames in the reorder buffer have timed out.
1199 */
Christian Lamparteraa0c8632010-08-05 01:36:04 +02001200 int skipped = 1;
1201 for (j = (index + 1) % tid_agg_rx->buf_size; j != index;
1202 j = (j + 1) % tid_agg_rx->buf_size) {
Johannes Bergfb4ea052016-01-28 16:19:24 +02001203 if (!ieee80211_rx_reorder_ready(tid_agg_rx, j)) {
Christian Lamparteraa0c8632010-08-05 01:36:04 +02001204 skipped++;
1205 continue;
1206 }
Daniel Halperin499fe9a2011-03-24 16:01:48 -07001207 if (skipped &&
1208 !time_after(jiffies, tid_agg_rx->reorder_time[j] +
Christian Lamparteraa0c8632010-08-05 01:36:04 +02001209 HT_RX_REORDER_BUF_TIMEOUT))
Christian Lamparter2bff8ebf2010-08-05 01:36:41 +02001210 goto set_release_timer;
Christian Lamparteraa0c8632010-08-05 01:36:04 +02001211
Michal Kazior83eb9352014-07-16 12:09:31 +02001212 /* don't leave incomplete A-MSDUs around */
1213 for (i = (index + 1) % tid_agg_rx->buf_size; i != j;
1214 i = (i + 1) % tid_agg_rx->buf_size)
1215 __skb_queue_purge(&tid_agg_rx->reorder_buf[i]);
1216
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02001217 ht_dbg_ratelimited(sdata,
1218 "release an RX reorder frame due to timeout on earlier frames\n");
Christian Lamparterf9e124f2013-02-04 17:44:44 +00001219 ieee80211_release_reorder_frame(sdata, tid_agg_rx, j,
1220 frames);
Christian Lamparteraa0c8632010-08-05 01:36:04 +02001221
1222 /*
1223 * Increment the head seq# also for the skipped slots.
1224 */
1225 tid_agg_rx->head_seq_num =
Johannes Berg9a886582013-02-15 19:25:00 +01001226 (tid_agg_rx->head_seq_num +
1227 skipped) & IEEE80211_SN_MASK;
Christian Lamparteraa0c8632010-08-05 01:36:04 +02001228 skipped = 0;
1229 }
Johannes Bergfb4ea052016-01-28 16:19:24 +02001230 } else while (ieee80211_rx_reorder_ready(tid_agg_rx, index)) {
Christian Lamparterf9e124f2013-02-04 17:44:44 +00001231 ieee80211_release_reorder_frame(sdata, tid_agg_rx, index,
1232 frames);
Karl Beldan2e3049b2013-10-24 15:53:32 +02001233 index = tid_agg_rx->head_seq_num % tid_agg_rx->buf_size;
Christian Lamparteraa0c8632010-08-05 01:36:04 +02001234 }
Christian Lamparter2bff8ebf2010-08-05 01:36:41 +02001235
1236 if (tid_agg_rx->stored_mpdu_num) {
Karl Beldan2e3049b2013-10-24 15:53:32 +02001237 j = index = tid_agg_rx->head_seq_num % tid_agg_rx->buf_size;
Christian Lamparter2bff8ebf2010-08-05 01:36:41 +02001238
1239 for (; j != (index - 1) % tid_agg_rx->buf_size;
1240 j = (j + 1) % tid_agg_rx->buf_size) {
Johannes Bergfb4ea052016-01-28 16:19:24 +02001241 if (ieee80211_rx_reorder_ready(tid_agg_rx, j))
Christian Lamparter2bff8ebf2010-08-05 01:36:41 +02001242 break;
1243 }
1244
1245 set_release_timer:
1246
Johannes Berg788211d2015-04-01 14:20:42 +02001247 if (!tid_agg_rx->removed)
1248 mod_timer(&tid_agg_rx->reorder_timer,
1249 tid_agg_rx->reorder_time[j] + 1 +
1250 HT_RX_REORDER_BUF_TIMEOUT);
Christian Lamparter2bff8ebf2010-08-05 01:36:41 +02001251 } else {
1252 del_timer(&tid_agg_rx->reorder_timer);
1253 }
Christian Lamparteraa0c8632010-08-05 01:36:04 +02001254}
1255
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001256/*
1257 * As this function belongs to the RX path it must be under
1258 * rcu_read_lock protection. It returns false if the frame
1259 * can be processed immediately, true if it was consumed.
1260 */
Johannes Bergd3b2fb52012-06-22 12:48:38 +02001261static bool ieee80211_sta_manage_reorder_buf(struct ieee80211_sub_if_data *sdata,
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001262 struct tid_ampdu_rx *tid_agg_rx,
Christian Lamparterf9e124f2013-02-04 17:44:44 +00001263 struct sk_buff *skb,
1264 struct sk_buff_head *frames)
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001265{
1266 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
Michal Kazior83eb9352014-07-16 12:09:31 +02001267 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001268 u16 sc = le16_to_cpu(hdr->seq_ctrl);
1269 u16 mpdu_seq_num = (sc & IEEE80211_SCTL_SEQ) >> 4;
1270 u16 head_seq_num, buf_size;
1271 int index;
Christian Lamparter2bff8ebf2010-08-05 01:36:41 +02001272 bool ret = true;
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001273
Johannes Bergdd318572010-11-29 11:09:16 +01001274 spin_lock(&tid_agg_rx->reorder_lock);
1275
Michal Kazior4549cf22014-09-02 14:05:10 +02001276 /*
1277 * Offloaded BA sessions have no known starting sequence number so pick
1278 * one from first Rxed frame for this tid after BA was started.
1279 */
1280 if (unlikely(tid_agg_rx->auto_seq)) {
1281 tid_agg_rx->auto_seq = false;
1282 tid_agg_rx->ssn = mpdu_seq_num;
1283 tid_agg_rx->head_seq_num = mpdu_seq_num;
1284 }
1285
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001286 buf_size = tid_agg_rx->buf_size;
1287 head_seq_num = tid_agg_rx->head_seq_num;
1288
Sara Sharonb7540d82017-02-06 15:28:42 +02001289 /*
1290 * If the current MPDU's SN is smaller than the SSN, it shouldn't
1291 * be reordered.
1292 */
1293 if (unlikely(!tid_agg_rx->started)) {
1294 if (ieee80211_sn_less(mpdu_seq_num, head_seq_num)) {
1295 ret = false;
1296 goto out;
1297 }
1298 tid_agg_rx->started = true;
1299 }
1300
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001301 /* frame with out of date sequence number */
Johannes Berg9a886582013-02-15 19:25:00 +01001302 if (ieee80211_sn_less(mpdu_seq_num, head_seq_num)) {
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001303 dev_kfree_skb(skb);
Christian Lamparter2bff8ebf2010-08-05 01:36:41 +02001304 goto out;
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001305 }
1306
1307 /*
1308 * If frame the sequence number exceeds our buffering window
1309 * size release some previous frames to make room for this one.
1310 */
Johannes Berg9a886582013-02-15 19:25:00 +01001311 if (!ieee80211_sn_less(mpdu_seq_num, head_seq_num + buf_size)) {
1312 head_seq_num = ieee80211_sn_inc(
1313 ieee80211_sn_sub(mpdu_seq_num, buf_size));
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001314 /* release stored frames up to new head to stack */
Johannes Bergd3b2fb52012-06-22 12:48:38 +02001315 ieee80211_release_reorder_frames(sdata, tid_agg_rx,
Christian Lamparterf9e124f2013-02-04 17:44:44 +00001316 head_seq_num, frames);
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001317 }
1318
1319 /* Now the new frame is always in the range of the reordering buffer */
1320
Karl Beldan2e3049b2013-10-24 15:53:32 +02001321 index = mpdu_seq_num % tid_agg_rx->buf_size;
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001322
1323 /* check if we already stored this frame */
Johannes Bergfb4ea052016-01-28 16:19:24 +02001324 if (ieee80211_rx_reorder_ready(tid_agg_rx, index)) {
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001325 dev_kfree_skb(skb);
Christian Lamparter2bff8ebf2010-08-05 01:36:41 +02001326 goto out;
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001327 }
1328
1329 /*
1330 * If the current MPDU is in the right order and nothing else
1331 * is stored we can process it directly, no need to buffer it.
Johannes Bergc835b212011-03-15 23:17:01 +01001332 * If it is first but there's something stored, we may be able
1333 * to release frames after this one.
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001334 */
1335 if (mpdu_seq_num == tid_agg_rx->head_seq_num &&
1336 tid_agg_rx->stored_mpdu_num == 0) {
Michal Kazior83eb9352014-07-16 12:09:31 +02001337 if (!(status->flag & RX_FLAG_AMSDU_MORE))
1338 tid_agg_rx->head_seq_num =
1339 ieee80211_sn_inc(tid_agg_rx->head_seq_num);
Christian Lamparter2bff8ebf2010-08-05 01:36:41 +02001340 ret = false;
1341 goto out;
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001342 }
1343
1344 /* put the frame in the reordering buffer */
Michal Kazior83eb9352014-07-16 12:09:31 +02001345 __skb_queue_tail(&tid_agg_rx->reorder_buf[index], skb);
1346 if (!(status->flag & RX_FLAG_AMSDU_MORE)) {
1347 tid_agg_rx->reorder_time[index] = jiffies;
1348 tid_agg_rx->stored_mpdu_num++;
1349 ieee80211_sta_reorder_release(sdata, tid_agg_rx, frames);
1350 }
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001351
Christian Lamparter2bff8ebf2010-08-05 01:36:41 +02001352 out:
1353 spin_unlock(&tid_agg_rx->reorder_lock);
1354 return ret;
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001355}
1356
1357/*
1358 * Reorder MPDUs from A-MPDUs, keeping them on a buffer. Returns
1359 * true if the MPDU was buffered, false if it should be processed.
1360 */
Christian Lamparterf9e124f2013-02-04 17:44:44 +00001361static void ieee80211_rx_reorder_ampdu(struct ieee80211_rx_data *rx,
1362 struct sk_buff_head *frames)
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001363{
Johannes Berg2569a822009-11-25 17:46:17 +01001364 struct sk_buff *skb = rx->skb;
1365 struct ieee80211_local *local = rx->local;
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001366 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
Johannes Berg2569a822009-11-25 17:46:17 +01001367 struct sta_info *sta = rx->sta;
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001368 struct tid_ampdu_rx *tid_agg_rx;
1369 u16 sc;
Thomas Pedersen6cc00d52011-11-03 21:11:11 -07001370 u8 tid, ack_policy;
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001371
Johannes Berg051a41fa2013-11-20 11:28:27 +01001372 if (!ieee80211_is_data_qos(hdr->frame_control) ||
1373 is_multicast_ether_addr(hdr->addr1))
Johannes Berg2569a822009-11-25 17:46:17 +01001374 goto dont_reorder;
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001375
1376 /*
1377 * filter the QoS data rx stream according to
1378 * STA/TID and check if this STA/TID is on aggregation
1379 */
1380
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001381 if (!sta)
Johannes Berg2569a822009-11-25 17:46:17 +01001382 goto dont_reorder;
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001383
Thomas Pedersen6cc00d52011-11-03 21:11:11 -07001384 ack_policy = *ieee80211_get_qos_ctl(hdr) &
1385 IEEE80211_QOS_CTL_ACK_POLICY_MASK;
Sara Sharona1f2ba04c2018-02-19 14:48:40 +02001386 tid = ieee80211_get_tid(hdr);
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001387
Johannes Berga87f7362010-06-10 10:21:38 +02001388 tid_agg_rx = rcu_dereference(sta->ampdu_mlme.tid_rx[tid]);
Johannes Bergbfe40fa2016-08-29 23:25:18 +03001389 if (!tid_agg_rx) {
1390 if (ack_policy == IEEE80211_QOS_CTL_ACK_POLICY_BLOCKACK &&
1391 !test_bit(tid, rx->sta->ampdu_mlme.agg_session_valid) &&
1392 !test_and_set_bit(tid, rx->sta->ampdu_mlme.unexpected_agg))
1393 ieee80211_send_delba(rx->sdata, rx->sta->sta.addr, tid,
1394 WLAN_BACK_RECIPIENT,
1395 WLAN_REASON_QSTA_REQUIRE_SETUP);
Johannes Berga87f7362010-06-10 10:21:38 +02001396 goto dont_reorder;
Johannes Bergbfe40fa2016-08-29 23:25:18 +03001397 }
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001398
1399 /* qos null data frames are excluded */
1400 if (unlikely(hdr->frame_control & cpu_to_le16(IEEE80211_STYPE_NULLFUNC)))
Johannes Berga87f7362010-06-10 10:21:38 +02001401 goto dont_reorder;
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001402
Thomas Pedersen6cc00d52011-11-03 21:11:11 -07001403 /* not part of a BA session */
1404 if (ack_policy != IEEE80211_QOS_CTL_ACK_POLICY_BLOCKACK &&
1405 ack_policy != IEEE80211_QOS_CTL_ACK_POLICY_NORMAL)
1406 goto dont_reorder;
1407
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001408 /* new, potentially un-ordered, ampdu frame - process it */
1409
1410 /* reset session timer */
1411 if (tid_agg_rx->timeout)
Felix Fietkau12d3952f2012-03-18 22:58:06 +01001412 tid_agg_rx->last_rx = jiffies;
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001413
1414 /* if this mpdu is fragmented - terminate rx aggregation session */
1415 sc = le16_to_cpu(hdr->seq_ctrl);
1416 if (sc & IEEE80211_SCTL_FRAG) {
Johannes Berg344eec62010-06-10 10:21:36 +02001417 skb_queue_tail(&rx->sdata->skb_queue, skb);
1418 ieee80211_queue_work(&local->hw, &rx->sdata->work);
Johannes Berg2569a822009-11-25 17:46:17 +01001419 return;
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001420 }
1421
Johannes Berga87f7362010-06-10 10:21:38 +02001422 /*
1423 * No locking needed -- we will only ever process one
1424 * RX packet at a time, and thus own tid_agg_rx. All
1425 * other code manipulating it needs to (and does) make
1426 * sure that we cannot get to it any more before doing
1427 * anything with it.
1428 */
Christian Lamparterf9e124f2013-02-04 17:44:44 +00001429 if (ieee80211_sta_manage_reorder_buf(rx->sdata, tid_agg_rx, skb,
1430 frames))
Johannes Berg2569a822009-11-25 17:46:17 +01001431 return;
1432
1433 dont_reorder:
Christian Lamparterf9e124f2013-02-04 17:44:44 +00001434 __skb_queue_tail(frames, skb);
Johannes Berg1edfb1a2009-11-25 17:46:16 +01001435}
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001436
Johannes Berg49461622008-06-30 15:10:45 +02001437static ieee80211_rx_result debug_noinline
Johannes Berg03954422014-11-11 16:49:25 +01001438ieee80211_rx_h_check_dup(struct ieee80211_rx_data *rx)
Johannes Berg571ecf62007-07-27 15:43:22 +02001439{
Harvey Harrisona7767f92008-07-02 16:30:51 -07001440 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
Johannes Berg554891e2010-09-24 12:38:25 +02001441 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(rx->skb);
Johannes Berg571ecf62007-07-27 15:43:22 +02001442
Sara Sharonf9cfa5f2015-12-08 16:04:33 +02001443 if (status->flag & RX_FLAG_DUP_VALIDATED)
1444 return RX_CONTINUE;
1445
Johannes Berg6b0f3272013-07-11 22:33:26 +02001446 /*
1447 * Drop duplicate 802.11 retransmissions
1448 * (IEEE 802.11-2012: 9.3.2.10 "Duplicate detection and recovery")
1449 */
Johannes Berg03954422014-11-11 16:49:25 +01001450
1451 if (rx->skb->len < 24)
1452 return RX_CONTINUE;
1453
1454 if (ieee80211_is_ctl(hdr->frame_control) ||
Thomas Pedersen30b2f0b2020-01-13 21:59:40 -08001455 ieee80211_is_any_nullfunc(hdr->frame_control) ||
Johannes Berg03954422014-11-11 16:49:25 +01001456 is_multicast_ether_addr(hdr->addr1))
1457 return RX_CONTINUE;
1458
Johannes Berga732fa72015-10-14 18:27:07 +02001459 if (!rx->sta)
1460 return RX_CONTINUE;
1461
1462 if (unlikely(ieee80211_has_retry(hdr->frame_control) &&
1463 rx->sta->last_seq_ctrl[rx->seqno_idx] == hdr->seq_ctrl)) {
1464 I802_DEBUG_INC(rx->local->dot11FrameDuplicateCount);
Johannes Berge5a9f8d2015-10-16 17:54:47 +02001465 rx->sta->rx_stats.num_duplicates++;
Johannes Berga732fa72015-10-14 18:27:07 +02001466 return RX_DROP_UNUSABLE;
1467 } else if (!(status->flag & RX_FLAG_AMSDU_MORE)) {
1468 rx->sta->last_seq_ctrl[rx->seqno_idx] = hdr->seq_ctrl;
Johannes Berg571ecf62007-07-27 15:43:22 +02001469 }
1470
Johannes Berg03954422014-11-11 16:49:25 +01001471 return RX_CONTINUE;
1472}
1473
1474static ieee80211_rx_result debug_noinline
1475ieee80211_rx_h_check(struct ieee80211_rx_data *rx)
1476{
1477 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
1478
Johannes Berg571ecf62007-07-27 15:43:22 +02001479 /* Drop disallowed frame classes based on STA auth/assoc state;
1480 * IEEE 802.11, Chap 5.5.
1481 *
Johannes Bergccd7b362008-09-11 00:01:56 +02001482 * mac80211 filters only based on association state, i.e. it drops
1483 * Class 3 frames from not associated stations. hostapd sends
Johannes Berg571ecf62007-07-27 15:43:22 +02001484 * deauth/disassoc frames when needed. In addition, hostapd is
1485 * responsible for filtering on both auth and assoc states.
1486 */
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001487
Johannes Berg902acc72008-02-23 15:17:19 +01001488 if (ieee80211_vif_is_mesh(&rx->sdata->vif))
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001489 return ieee80211_rx_mesh_check(rx);
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001490
Harvey Harrisona7767f92008-07-02 16:30:51 -07001491 if (unlikely((ieee80211_is_data(hdr->frame_control) ||
1492 ieee80211_is_pspoll(hdr->frame_control)) &&
Johannes Berg05c914f2008-09-11 00:01:58 +02001493 rx->sdata->vif.type != NL80211_IFTYPE_ADHOC &&
Bill Jordan1be7fe82010-10-01 11:20:41 -04001494 rx->sdata->vif.type != NL80211_IFTYPE_WDS &&
Rostislav Lisovy239281f2014-11-03 10:33:19 +01001495 rx->sdata->vif.type != NL80211_IFTYPE_OCB &&
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001496 (!rx->sta || !test_sta_flag(rx->sta, WLAN_STA_ASSOC)))) {
Johannes Berg7852e362012-01-20 13:55:24 +01001497 /*
1498 * accept port control frames from the AP even when it's not
1499 * yet marked ASSOC to prevent a race where we don't set the
1500 * assoc bit quickly enough before it sends the first frame
1501 */
1502 if (rx->sta && rx->sdata->vif.type == NL80211_IFTYPE_STATION &&
Guy Eilam2a33bee2011-08-17 15:18:15 +03001503 ieee80211_is_data_present(hdr->frame_control)) {
Johannes Berg6dbda2d2012-10-26 00:41:23 +02001504 unsigned int hdrlen;
1505 __be16 ethertype;
Guy Eilam2a33bee2011-08-17 15:18:15 +03001506
Johannes Berg6dbda2d2012-10-26 00:41:23 +02001507 hdrlen = ieee80211_hdrlen(hdr->frame_control);
1508
1509 if (rx->skb->len < hdrlen + 8)
1510 return RX_DROP_MONITOR;
1511
1512 skb_copy_bits(rx->skb, hdrlen + 6, &ethertype, 2);
1513 if (ethertype == rx->sdata->control_port_protocol)
Guy Eilam2a33bee2011-08-17 15:18:15 +03001514 return RX_CONTINUE;
1515 }
Johannes Berg21fc7562011-11-04 11:18:13 +01001516
1517 if (rx->sdata->vif.type == NL80211_IFTYPE_AP &&
1518 cfg80211_rx_spurious_frame(rx->sdata->dev,
1519 hdr->addr2,
1520 GFP_ATOMIC))
1521 return RX_DROP_UNUSABLE;
1522
Johannes Berge4c26ad2008-01-31 19:48:21 +01001523 return RX_DROP_MONITOR;
Guy Eilam2a33bee2011-08-17 15:18:15 +03001524 }
Johannes Berg571ecf62007-07-27 15:43:22 +02001525
Johannes Berg9ae54c82008-01-31 19:48:20 +01001526 return RX_CONTINUE;
Johannes Berg570bd532007-07-27 15:43:22 +02001527}
1528
1529
Johannes Berg49461622008-06-30 15:10:45 +02001530static ieee80211_rx_result debug_noinline
Kalle Valo572e0012009-02-10 17:09:31 +02001531ieee80211_rx_h_check_more_data(struct ieee80211_rx_data *rx)
1532{
1533 struct ieee80211_local *local;
1534 struct ieee80211_hdr *hdr;
1535 struct sk_buff *skb;
1536
1537 local = rx->local;
1538 skb = rx->skb;
1539 hdr = (struct ieee80211_hdr *) skb->data;
1540
1541 if (!local->pspolling)
1542 return RX_CONTINUE;
1543
1544 if (!ieee80211_has_fromds(hdr->frame_control))
1545 /* this is not from AP */
1546 return RX_CONTINUE;
1547
1548 if (!ieee80211_is_data(hdr->frame_control))
1549 return RX_CONTINUE;
1550
1551 if (!ieee80211_has_moredata(hdr->frame_control)) {
1552 /* AP has no more frames buffered for us */
1553 local->pspolling = false;
1554 return RX_CONTINUE;
1555 }
1556
1557 /* more data bit is set, let's request a new frame from the AP */
1558 ieee80211_send_pspoll(local, rx->sdata);
1559
1560 return RX_CONTINUE;
1561}
1562
Marco Porschd012a602012-10-10 12:39:50 -07001563static void sta_ps_start(struct sta_info *sta)
Johannes Berg571ecf62007-07-27 15:43:22 +02001564{
Johannes Berg133b8222008-09-16 14:18:59 +02001565 struct ieee80211_sub_if_data *sdata = sta->sdata;
Christian Lamparter4571d3b2008-11-30 00:48:41 +01001566 struct ieee80211_local *local = sdata->local;
Marco Porschd012a602012-10-10 12:39:50 -07001567 struct ps_data *ps;
Felix Fietkauba8c3d62015-03-27 21:30:37 +01001568 int tid;
Joe Perches0795af52007-10-03 17:59:30 -07001569
Marco Porschd012a602012-10-10 12:39:50 -07001570 if (sta->sdata->vif.type == NL80211_IFTYPE_AP ||
1571 sta->sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
1572 ps = &sdata->bss->ps;
1573 else
1574 return;
1575
1576 atomic_inc(&ps->num_sta_ps);
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001577 set_sta_flag(sta, WLAN_STA_PS_STA);
Johannes Berg30686bf2015-06-02 21:39:54 +02001578 if (!ieee80211_hw_check(&local->hw, AP_LINK_PS))
Arik Nemtsovd057e5a2011-01-31 22:29:13 +02001579 drv_sta_notify(local, sdata, STA_NOTIFY_SLEEP, &sta->sta);
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02001580 ps_dbg(sdata, "STA %pM aid %d enters power save mode\n",
1581 sta->sta.addr, sta->sta.aid);
Felix Fietkauba8c3d62015-03-27 21:30:37 +01001582
Johannes Berg17c18bf2015-03-21 15:25:43 +01001583 ieee80211_clear_fast_xmit(sta);
1584
Felix Fietkauba8c3d62015-03-27 21:30:37 +01001585 if (!sta->sta.txq[0])
1586 return;
1587
Johannes Bergadf8ed02018-08-31 11:31:08 +03001588 for (tid = 0; tid < IEEE80211_NUM_TIDS; tid++) {
Felix Fietkaub49c15e2019-03-19 12:00:13 +01001589 struct ieee80211_txq *txq = sta->sta.txq[tid];
1590 struct txq_info *txqi = to_txq_info(txq);
1591
1592 spin_lock(&local->active_txq_lock[txq->ac]);
1593 if (!list_empty(&txqi->schedule_order))
1594 list_del_init(&txqi->schedule_order);
1595 spin_unlock(&local->active_txq_lock[txq->ac]);
1596
1597 if (txq_has_queue(txq))
Felix Fietkauba8c3d62015-03-27 21:30:37 +01001598 set_bit(tid, &sta->txq_buffered_tids);
1599 else
1600 clear_bit(tid, &sta->txq_buffered_tids);
1601 }
Johannes Berg571ecf62007-07-27 15:43:22 +02001602}
1603
Marco Porschd012a602012-10-10 12:39:50 -07001604static void sta_ps_end(struct sta_info *sta)
Johannes Berg571ecf62007-07-27 15:43:22 +02001605{
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02001606 ps_dbg(sta->sdata, "STA %pM aid %d exits power save mode\n",
1607 sta->sta.addr, sta->sta.aid);
Johannes Berg004c8722008-02-20 11:21:35 +01001608
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001609 if (test_sta_flag(sta, WLAN_STA_PS_DRIVER)) {
Johannes Berge3685e02014-02-20 11:19:58 +01001610 /*
1611 * Clear the flag only if the other one is still set
1612 * so that the TX path won't start TX'ing new frames
1613 * directly ... In the case that the driver flag isn't
1614 * set ieee80211_sta_ps_deliver_wakeup() will clear it.
1615 */
1616 clear_sta_flag(sta, WLAN_STA_PS_STA);
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02001617 ps_dbg(sta->sdata, "STA %pM aid %d driver-ps-blocked\n",
1618 sta->sta.addr, sta->sta.aid);
Johannes Bergaf818582009-11-06 11:35:50 +01001619 return;
1620 }
1621
Johannes Berg5ac2e352014-05-27 16:32:27 +02001622 set_sta_flag(sta, WLAN_STA_PS_DELIVER);
1623 clear_sta_flag(sta, WLAN_STA_PS_STA);
Johannes Bergaf818582009-11-06 11:35:50 +01001624 ieee80211_sta_ps_deliver_wakeup(sta);
Johannes Berg571ecf62007-07-27 15:43:22 +02001625}
1626
Johannes Bergcf471612015-06-16 16:16:38 +02001627int ieee80211_sta_ps_transition(struct ieee80211_sta *pubsta, bool start)
Arik Nemtsovd057e5a2011-01-31 22:29:13 +02001628{
Johannes Bergcf471612015-06-16 16:16:38 +02001629 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
Arik Nemtsovd057e5a2011-01-31 22:29:13 +02001630 bool in_ps;
1631
Johannes Bergcf471612015-06-16 16:16:38 +02001632 WARN_ON(!ieee80211_hw_check(&sta->local->hw, AP_LINK_PS));
Arik Nemtsovd057e5a2011-01-31 22:29:13 +02001633
1634 /* Don't let the same PS state be set twice */
Johannes Bergcf471612015-06-16 16:16:38 +02001635 in_ps = test_sta_flag(sta, WLAN_STA_PS_STA);
Arik Nemtsovd057e5a2011-01-31 22:29:13 +02001636 if ((start && in_ps) || (!start && !in_ps))
1637 return -EINVAL;
1638
1639 if (start)
Johannes Bergcf471612015-06-16 16:16:38 +02001640 sta_ps_start(sta);
Arik Nemtsovd057e5a2011-01-31 22:29:13 +02001641 else
Johannes Bergcf471612015-06-16 16:16:38 +02001642 sta_ps_end(sta);
Arik Nemtsovd057e5a2011-01-31 22:29:13 +02001643
1644 return 0;
1645}
1646EXPORT_SYMBOL(ieee80211_sta_ps_transition);
1647
Johannes Berg46fa38e2016-05-03 16:58:00 +03001648void ieee80211_sta_pspoll(struct ieee80211_sta *pubsta)
1649{
1650 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
1651
1652 if (test_sta_flag(sta, WLAN_STA_SP))
1653 return;
1654
1655 if (!test_sta_flag(sta, WLAN_STA_PS_DRIVER))
1656 ieee80211_sta_ps_deliver_poll_response(sta);
1657 else
1658 set_sta_flag(sta, WLAN_STA_PSPOLL);
1659}
1660EXPORT_SYMBOL(ieee80211_sta_pspoll);
1661
1662void ieee80211_sta_uapsd_trigger(struct ieee80211_sta *pubsta, u8 tid)
1663{
1664 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
Amadeusz Sławiński731977e2017-01-24 16:42:10 +01001665 int ac = ieee80211_ac_from_tid(tid);
Johannes Berg46fa38e2016-05-03 16:58:00 +03001666
1667 /*
Emmanuel Grumbach0aa419e2016-10-18 23:12:10 +03001668 * If this AC is not trigger-enabled do nothing unless the
1669 * driver is calling us after it already checked.
Johannes Berg46fa38e2016-05-03 16:58:00 +03001670 *
1671 * NB: This could/should check a separate bitmap of trigger-
1672 * enabled queues, but for now we only implement uAPSD w/o
1673 * TSPEC changes to the ACs, so they're always the same.
1674 */
Emmanuel Grumbachf438ceb2016-10-18 23:12:12 +03001675 if (!(sta->sta.uapsd_queues & ieee80211_ac_to_qos_mask[ac]) &&
1676 tid != IEEE80211_NUM_TIDS)
Johannes Berg46fa38e2016-05-03 16:58:00 +03001677 return;
1678
1679 /* if we are in a service period, do nothing */
1680 if (test_sta_flag(sta, WLAN_STA_SP))
1681 return;
1682
1683 if (!test_sta_flag(sta, WLAN_STA_PS_DRIVER))
1684 ieee80211_sta_ps_deliver_uapsd(sta);
1685 else
1686 set_sta_flag(sta, WLAN_STA_UAPSD);
1687}
1688EXPORT_SYMBOL(ieee80211_sta_uapsd_trigger);
1689
Johannes Berg49461622008-06-30 15:10:45 +02001690static ieee80211_rx_result debug_noinline
Johannes Berg47086fc2011-09-29 16:04:33 +02001691ieee80211_rx_h_uapsd_and_pspoll(struct ieee80211_rx_data *rx)
1692{
1693 struct ieee80211_sub_if_data *sdata = rx->sdata;
1694 struct ieee80211_hdr *hdr = (void *)rx->skb->data;
1695 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(rx->skb);
Johannes Berg47086fc2011-09-29 16:04:33 +02001696
Johannes Berg5c900672015-04-22 14:48:34 +02001697 if (!rx->sta)
Johannes Berg47086fc2011-09-29 16:04:33 +02001698 return RX_CONTINUE;
1699
1700 if (sdata->vif.type != NL80211_IFTYPE_AP &&
1701 sdata->vif.type != NL80211_IFTYPE_AP_VLAN)
1702 return RX_CONTINUE;
1703
1704 /*
1705 * The device handles station powersave, so don't do anything about
1706 * uAPSD and PS-Poll frames (the latter shouldn't even come up from
1707 * it to mac80211 since they're handled.)
1708 */
Johannes Berg30686bf2015-06-02 21:39:54 +02001709 if (ieee80211_hw_check(&sdata->local->hw, AP_LINK_PS))
Johannes Berg47086fc2011-09-29 16:04:33 +02001710 return RX_CONTINUE;
1711
1712 /*
1713 * Don't do anything if the station isn't already asleep. In
1714 * the uAPSD case, the station will probably be marked asleep,
1715 * in the PS-Poll case the station must be confused ...
1716 */
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001717 if (!test_sta_flag(rx->sta, WLAN_STA_PS_STA))
Johannes Berg47086fc2011-09-29 16:04:33 +02001718 return RX_CONTINUE;
1719
1720 if (unlikely(ieee80211_is_pspoll(hdr->frame_control))) {
Johannes Berg46fa38e2016-05-03 16:58:00 +03001721 ieee80211_sta_pspoll(&rx->sta->sta);
Johannes Berg47086fc2011-09-29 16:04:33 +02001722
1723 /* Free PS Poll skb here instead of returning RX_DROP that would
1724 * count as an dropped frame. */
1725 dev_kfree_skb(rx->skb);
1726
1727 return RX_QUEUED;
1728 } else if (!ieee80211_has_morefrags(hdr->frame_control) &&
1729 !(status->rx_flags & IEEE80211_RX_DEFERRED_RELEASE) &&
1730 ieee80211_has_pm(hdr->frame_control) &&
1731 (ieee80211_is_data_qos(hdr->frame_control) ||
1732 ieee80211_is_qos_nullfunc(hdr->frame_control))) {
Sara Sharona1f2ba04c2018-02-19 14:48:40 +02001733 u8 tid = ieee80211_get_tid(hdr);
Johannes Berg47086fc2011-09-29 16:04:33 +02001734
Johannes Berg46fa38e2016-05-03 16:58:00 +03001735 ieee80211_sta_uapsd_trigger(&rx->sta->sta, tid);
Johannes Berg47086fc2011-09-29 16:04:33 +02001736 }
1737
1738 return RX_CONTINUE;
1739}
1740
1741static ieee80211_rx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +01001742ieee80211_rx_h_sta_process(struct ieee80211_rx_data *rx)
Johannes Berg571ecf62007-07-27 15:43:22 +02001743{
1744 struct sta_info *sta = rx->sta;
Johannes Bergeb9fb5b82009-11-16 13:58:20 +01001745 struct sk_buff *skb = rx->skb;
1746 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
1747 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Felix Fietkauef0621e2013-04-22 16:29:31 +02001748 int i;
Johannes Berg571ecf62007-07-27 15:43:22 +02001749
1750 if (!sta)
Johannes Berg9ae54c82008-01-31 19:48:20 +01001751 return RX_CONTINUE;
Johannes Berg571ecf62007-07-27 15:43:22 +02001752
Johannes Bergb291ba12009-07-10 15:29:03 +02001753 /*
1754 * Update last_rx only for IBSS packets which are for the current
Antonio Quartullie584da5e2012-11-25 23:13:42 +01001755 * BSSID and for station already AUTHORIZED to avoid keeping the
1756 * current IBSS network alive in cases where other STAs start
1757 * using different BSSID. This will also give the station another
1758 * chance to restart the authentication/authorization in case
1759 * something went wrong the first time.
Johannes Bergb291ba12009-07-10 15:29:03 +02001760 */
Johannes Berg05c914f2008-09-11 00:01:58 +02001761 if (rx->sdata->vif.type == NL80211_IFTYPE_ADHOC) {
Ron Rindjunsky71364712007-12-25 17:00:36 +02001762 u8 *bssid = ieee80211_get_bssid(hdr, rx->skb->len,
Johannes Berg05c914f2008-09-11 00:01:58 +02001763 NL80211_IFTYPE_ADHOC);
Antonio Quartullie584da5e2012-11-25 23:13:42 +01001764 if (ether_addr_equal(bssid, rx->sdata->u.ibss.bssid) &&
1765 test_sta_flag(sta, WLAN_STA_AUTHORIZED)) {
Johannes Berge5a9f8d2015-10-16 17:54:47 +02001766 sta->rx_stats.last_rx = jiffies;
Henning Roggef4ebddf2014-05-01 10:03:46 +02001767 if (ieee80211_is_data(hdr->frame_control) &&
Johannes Berg4f6b1b32016-03-31 20:02:08 +03001768 !is_multicast_ether_addr(hdr->addr1))
1769 sta->rx_stats.last_rate =
1770 sta_stats_encode_rate(status);
Felix Fietkau3af63342011-02-27 22:08:01 +01001771 }
Rostislav Lisovy239281f2014-11-03 10:33:19 +01001772 } else if (rx->sdata->vif.type == NL80211_IFTYPE_OCB) {
Johannes Berge5a9f8d2015-10-16 17:54:47 +02001773 sta->rx_stats.last_rx = jiffies;
Johannes Bergb291ba12009-07-10 15:29:03 +02001774 } else if (!is_multicast_ether_addr(hdr->addr1)) {
1775 /*
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001776 * Mesh beacons will update last_rx when if they are found to
1777 * match the current local configuration when processed.
Johannes Berg571ecf62007-07-27 15:43:22 +02001778 */
Johannes Berge5a9f8d2015-10-16 17:54:47 +02001779 sta->rx_stats.last_rx = jiffies;
Johannes Berg4f6b1b32016-03-31 20:02:08 +03001780 if (ieee80211_is_data(hdr->frame_control))
1781 sta->rx_stats.last_rate = sta_stats_encode_rate(status);
Johannes Berg571ecf62007-07-27 15:43:22 +02001782 }
1783
Kalle Valo3cf335d52009-03-22 21:57:06 +02001784 if (rx->sdata->vif.type == NL80211_IFTYPE_STATION)
1785 ieee80211_sta_rx_notify(rx->sdata, hdr);
1786
Johannes Berge5a9f8d2015-10-16 17:54:47 +02001787 sta->rx_stats.fragments++;
Johannes Berg0f9c5a62016-03-31 20:02:09 +03001788
1789 u64_stats_update_begin(&rx->sta->rx_stats.syncp);
Johannes Berge5a9f8d2015-10-16 17:54:47 +02001790 sta->rx_stats.bytes += rx->skb->len;
Johannes Berg0f9c5a62016-03-31 20:02:09 +03001791 u64_stats_update_end(&rx->sta->rx_stats.syncp);
1792
Felix Fietkaufe8431f2012-03-01 18:00:07 +01001793 if (!(status->flag & RX_FLAG_NO_SIGNAL_VAL)) {
Johannes Berge5a9f8d2015-10-16 17:54:47 +02001794 sta->rx_stats.last_signal = status->signal;
Johannes Berg0be6ed12016-03-31 20:02:05 +03001795 ewma_signal_add(&sta->rx_stats_avg.signal, -status->signal);
Felix Fietkaufe8431f2012-03-01 18:00:07 +01001796 }
Johannes Berg571ecf62007-07-27 15:43:22 +02001797
Felix Fietkauef0621e2013-04-22 16:29:31 +02001798 if (status->chains) {
Johannes Berge5a9f8d2015-10-16 17:54:47 +02001799 sta->rx_stats.chains = status->chains;
Felix Fietkauef0621e2013-04-22 16:29:31 +02001800 for (i = 0; i < ARRAY_SIZE(status->chain_signal); i++) {
1801 int signal = status->chain_signal[i];
1802
1803 if (!(status->chains & BIT(i)))
1804 continue;
1805
Johannes Berge5a9f8d2015-10-16 17:54:47 +02001806 sta->rx_stats.chain_signal_last[i] = signal;
Johannes Berg0be6ed12016-03-31 20:02:05 +03001807 ewma_signal_add(&sta->rx_stats_avg.chain_signal[i],
Johannes Berge5a9f8d2015-10-16 17:54:47 +02001808 -signal);
Felix Fietkauef0621e2013-04-22 16:29:31 +02001809 }
1810 }
1811
Johannes Berg72eaa432008-11-26 15:02:58 +01001812 /*
1813 * Change STA power saving mode only at the end of a frame
Emmanuel Grumbach9fef6542017-10-29 11:51:07 +02001814 * exchange sequence, and only for a data or management
1815 * frame as specified in IEEE 802.11-2016 11.2.3.2
Johannes Berg72eaa432008-11-26 15:02:58 +01001816 */
Johannes Berg30686bf2015-06-02 21:39:54 +02001817 if (!ieee80211_hw_check(&sta->local->hw, AP_LINK_PS) &&
Arik Nemtsovd057e5a2011-01-31 22:29:13 +02001818 !ieee80211_has_morefrags(hdr->frame_control) &&
Emmanuel Grumbach20932752018-08-20 13:56:07 +03001819 !is_multicast_ether_addr(hdr->addr1) &&
Emmanuel Grumbach9fef6542017-10-29 11:51:07 +02001820 (ieee80211_is_mgmt(hdr->frame_control) ||
1821 ieee80211_is_data(hdr->frame_control)) &&
Christian Lamparter4cfda472010-12-27 23:21:26 +01001822 !(status->rx_flags & IEEE80211_RX_DEFERRED_RELEASE) &&
Johannes Berg05c914f2008-09-11 00:01:58 +02001823 (rx->sdata->vif.type == NL80211_IFTYPE_AP ||
Emmanuel Grumbach9fef6542017-10-29 11:51:07 +02001824 rx->sdata->vif.type == NL80211_IFTYPE_AP_VLAN)) {
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001825 if (test_sta_flag(sta, WLAN_STA_PS_STA)) {
Johannes Bergb4ba5442014-01-24 14:41:44 +01001826 if (!ieee80211_has_pm(hdr->frame_control))
Marco Porschd012a602012-10-10 12:39:50 -07001827 sta_ps_end(sta);
Johannes Berg72eaa432008-11-26 15:02:58 +01001828 } else {
1829 if (ieee80211_has_pm(hdr->frame_control))
Marco Porschd012a602012-10-10 12:39:50 -07001830 sta_ps_start(sta);
Johannes Berg72eaa432008-11-26 15:02:58 +01001831 }
Johannes Berg571ecf62007-07-27 15:43:22 +02001832 }
1833
Marco Porsch3f52b7e2013-01-30 18:14:08 +01001834 /* mesh power save support */
1835 if (ieee80211_vif_is_mesh(&rx->sdata->vif))
1836 ieee80211_mps_rx_h_sta_process(sta, hdr);
1837
Johannes Berg22403de2009-10-30 12:55:03 +01001838 /*
1839 * Drop (qos-)data::nullfunc frames silently, since they
1840 * are used only to control station power saving mode.
1841 */
Thomas Pedersen30b2f0b2020-01-13 21:59:40 -08001842 if (ieee80211_is_any_nullfunc(hdr->frame_control)) {
Johannes Berg571ecf62007-07-27 15:43:22 +02001843 I802_DEBUG_INC(rx->local->rx_handlers_drop_nullfunc);
Felix Fietkaud5242152010-01-08 18:06:26 +01001844
1845 /*
1846 * If we receive a 4-addr nullfunc frame from a STA
Johannes Berge7f4a942011-11-04 11:18:20 +01001847 * that was not moved to a 4-addr STA vlan yet send
1848 * the event to userspace and for older hostapd drop
1849 * the frame to the monitor interface.
Felix Fietkaud5242152010-01-08 18:06:26 +01001850 */
1851 if (ieee80211_has_a4(hdr->frame_control) &&
1852 (rx->sdata->vif.type == NL80211_IFTYPE_AP ||
1853 (rx->sdata->vif.type == NL80211_IFTYPE_AP_VLAN &&
Johannes Berge7f4a942011-11-04 11:18:20 +01001854 !rx->sdata->u.vlan.sta))) {
1855 if (!test_and_set_sta_flag(sta, WLAN_STA_4ADDR_EVENT))
1856 cfg80211_rx_unexpected_4addr_frame(
1857 rx->sdata->dev, sta->sta.addr,
1858 GFP_ATOMIC);
Felix Fietkaud5242152010-01-08 18:06:26 +01001859 return RX_DROP_MONITOR;
Johannes Berge7f4a942011-11-04 11:18:20 +01001860 }
Johannes Berg22403de2009-10-30 12:55:03 +01001861 /*
1862 * Update counter and free packet here to avoid
1863 * counting this as a dropped packed.
1864 */
Johannes Berge5a9f8d2015-10-16 17:54:47 +02001865 sta->rx_stats.packets++;
Johannes Berg571ecf62007-07-27 15:43:22 +02001866 dev_kfree_skb(rx->skb);
Johannes Berg9ae54c82008-01-31 19:48:20 +01001867 return RX_QUEUED;
Johannes Berg571ecf62007-07-27 15:43:22 +02001868 }
1869
Johannes Berg9ae54c82008-01-31 19:48:20 +01001870 return RX_CONTINUE;
Johannes Berg571ecf62007-07-27 15:43:22 +02001871} /* ieee80211_rx_h_sta_process */
1872
Jouni Malinenaf2d14b2020-02-22 15:25:47 +02001873static struct ieee80211_key *
1874ieee80211_rx_get_bigtk(struct ieee80211_rx_data *rx, int idx)
1875{
1876 struct ieee80211_key *key = NULL;
1877 struct ieee80211_sub_if_data *sdata = rx->sdata;
1878 int idx2;
1879
1880 /* Make sure key gets set if either BIGTK key index is set so that
1881 * ieee80211_drop_unencrypted_mgmt() can properly drop both unprotected
1882 * Beacon frames and Beacon frames that claim to use another BIGTK key
1883 * index (i.e., a key that we do not have).
1884 */
1885
1886 if (idx < 0) {
1887 idx = NUM_DEFAULT_KEYS + NUM_DEFAULT_MGMT_KEYS;
1888 idx2 = idx + 1;
1889 } else {
1890 if (idx == NUM_DEFAULT_KEYS + NUM_DEFAULT_MGMT_KEYS)
1891 idx2 = idx + 1;
1892 else
1893 idx2 = idx - 1;
1894 }
1895
1896 if (rx->sta)
1897 key = rcu_dereference(rx->sta->gtk[idx]);
1898 if (!key)
1899 key = rcu_dereference(sdata->keys[idx]);
1900 if (!key && rx->sta)
1901 key = rcu_dereference(rx->sta->gtk[idx2]);
1902 if (!key)
1903 key = rcu_dereference(sdata->keys[idx2]);
1904
1905 return key;
1906}
1907
Johan Almbladh86c228a2013-08-14 15:29:46 +02001908static ieee80211_rx_result debug_noinline
1909ieee80211_rx_h_decrypt(struct ieee80211_rx_data *rx)
1910{
1911 struct sk_buff *skb = rx->skb;
1912 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
1913 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
1914 int keyidx;
Johan Almbladh86c228a2013-08-14 15:29:46 +02001915 ieee80211_rx_result result = RX_DROP_UNUSABLE;
1916 struct ieee80211_key *sta_ptk = NULL;
Alexander Wetzel96fc6ef2019-03-19 21:34:08 +01001917 struct ieee80211_key *ptk_idx = NULL;
Johan Almbladh86c228a2013-08-14 15:29:46 +02001918 int mmie_keyidx = -1;
1919 __le16 fc;
Max Stepanov2475b1cc2013-03-24 14:23:27 +02001920 const struct ieee80211_cipher_scheme *cs = NULL;
Johan Almbladh86c228a2013-08-14 15:29:46 +02001921
1922 /*
1923 * Key selection 101
1924 *
Jouni Malinenaf2d14b2020-02-22 15:25:47 +02001925 * There are five types of keys:
Johan Almbladh86c228a2013-08-14 15:29:46 +02001926 * - GTK (group keys)
1927 * - IGTK (group keys for management frames)
Jouni Malinenaf2d14b2020-02-22 15:25:47 +02001928 * - BIGTK (group keys for Beacon frames)
Johan Almbladh86c228a2013-08-14 15:29:46 +02001929 * - PTK (pairwise keys)
1930 * - STK (station-to-station pairwise keys)
1931 *
1932 * When selecting a key, we have to distinguish between multicast
1933 * (including broadcast) and unicast frames, the latter can only
Jouni Malinenaf2d14b2020-02-22 15:25:47 +02001934 * use PTKs and STKs while the former always use GTKs, IGTKs, and
1935 * BIGTKs. Unless, of course, actual WEP keys ("pre-RSNA") are used,
1936 * then unicast frames can also use key indices like GTKs. Hence, if we
Johan Almbladh86c228a2013-08-14 15:29:46 +02001937 * don't have a PTK/STK we check the key index for a WEP key.
1938 *
1939 * Note that in a regular BSS, multicast frames are sent by the
1940 * AP only, associated stations unicast the frame to the AP first
1941 * which then multicasts it on their behalf.
1942 *
1943 * There is also a slight problem in IBSS mode: GTKs are negotiated
1944 * with each station, that is something we don't currently handle.
1945 * The spec seems to expect that one negotiates the same key with
1946 * every station but there's no such requirement; VLANs could be
1947 * possible.
1948 */
1949
Johan Almbladh86c228a2013-08-14 15:29:46 +02001950 /* start without a key */
1951 rx->key = NULL;
Johan Almbladh86c228a2013-08-14 15:29:46 +02001952 fc = hdr->frame_control;
1953
Max Stepanov2475b1cc2013-03-24 14:23:27 +02001954 if (rx->sta) {
1955 int keyid = rx->sta->ptk_idx;
Alexander Wetzel96fc6ef2019-03-19 21:34:08 +01001956 sta_ptk = rcu_dereference(rx->sta->ptk[keyid]);
Max Stepanov2475b1cc2013-03-24 14:23:27 +02001957
Alexander Wetzel96fc6ef2019-03-19 21:34:08 +01001958 if (ieee80211_has_protected(fc)) {
Max Stepanov2475b1cc2013-03-24 14:23:27 +02001959 cs = rx->sta->cipher_scheme;
Alexander Wetzel96fc6ef2019-03-19 21:34:08 +01001960 keyid = ieee80211_get_keyid(rx->skb, cs);
1961
Max Stepanov2475b1cc2013-03-24 14:23:27 +02001962 if (unlikely(keyid < 0))
1963 return RX_DROP_UNUSABLE;
Alexander Wetzel96fc6ef2019-03-19 21:34:08 +01001964
1965 ptk_idx = rcu_dereference(rx->sta->ptk[keyid]);
Max Stepanov2475b1cc2013-03-24 14:23:27 +02001966 }
Max Stepanov2475b1cc2013-03-24 14:23:27 +02001967 }
1968
Johan Almbladh86c228a2013-08-14 15:29:46 +02001969 if (!ieee80211_has_protected(fc))
1970 mmie_keyidx = ieee80211_get_mmie_keyidx(rx->skb);
1971
1972 if (!is_multicast_ether_addr(hdr->addr1) && sta_ptk) {
Alexander Wetzel96fc6ef2019-03-19 21:34:08 +01001973 rx->key = ptk_idx ? ptk_idx : sta_ptk;
Johan Almbladh86c228a2013-08-14 15:29:46 +02001974 if ((status->flag & RX_FLAG_DECRYPTED) &&
1975 (status->flag & RX_FLAG_IV_STRIPPED))
1976 return RX_CONTINUE;
1977 /* Skip decryption if the frame is not protected. */
1978 if (!ieee80211_has_protected(fc))
1979 return RX_CONTINUE;
Jouni Malinenaf2d14b2020-02-22 15:25:47 +02001980 } else if (mmie_keyidx >= 0 && ieee80211_is_beacon(fc)) {
1981 /* Broadcast/multicast robust management frame / BIP */
1982 if ((status->flag & RX_FLAG_DECRYPTED) &&
1983 (status->flag & RX_FLAG_IV_STRIPPED))
1984 return RX_CONTINUE;
1985
1986 if (mmie_keyidx < NUM_DEFAULT_KEYS + NUM_DEFAULT_MGMT_KEYS ||
1987 mmie_keyidx >= NUM_DEFAULT_KEYS + NUM_DEFAULT_MGMT_KEYS +
Jouni Malinen9eaf1832020-04-01 17:25:48 +03001988 NUM_DEFAULT_BEACON_KEYS) {
1989 cfg80211_rx_unprot_mlme_mgmt(rx->sdata->dev,
1990 skb->data,
1991 skb->len);
Jouni Malinenaf2d14b2020-02-22 15:25:47 +02001992 return RX_DROP_MONITOR; /* unexpected BIP keyidx */
Jouni Malinen9eaf1832020-04-01 17:25:48 +03001993 }
Jouni Malinenaf2d14b2020-02-22 15:25:47 +02001994
1995 rx->key = ieee80211_rx_get_bigtk(rx, mmie_keyidx);
1996 if (!rx->key)
1997 return RX_CONTINUE; /* Beacon protection not in use */
Johan Almbladh86c228a2013-08-14 15:29:46 +02001998 } else if (mmie_keyidx >= 0) {
1999 /* Broadcast/multicast robust management frame / BIP */
2000 if ((status->flag & RX_FLAG_DECRYPTED) &&
2001 (status->flag & RX_FLAG_IV_STRIPPED))
2002 return RX_CONTINUE;
2003
2004 if (mmie_keyidx < NUM_DEFAULT_KEYS ||
2005 mmie_keyidx >= NUM_DEFAULT_KEYS + NUM_DEFAULT_MGMT_KEYS)
2006 return RX_DROP_MONITOR; /* unexpected BIP keyidx */
Masashi Honma46f6b062016-06-22 19:55:20 +09002007 if (rx->sta) {
2008 if (ieee80211_is_group_privacy_action(skb) &&
2009 test_sta_flag(rx->sta, WLAN_STA_MFP))
2010 return RX_DROP_MONITOR;
2011
Johan Almbladh86c228a2013-08-14 15:29:46 +02002012 rx->key = rcu_dereference(rx->sta->gtk[mmie_keyidx]);
Masashi Honma46f6b062016-06-22 19:55:20 +09002013 }
Johan Almbladh86c228a2013-08-14 15:29:46 +02002014 if (!rx->key)
2015 rx->key = rcu_dereference(rx->sdata->keys[mmie_keyidx]);
2016 } else if (!ieee80211_has_protected(fc)) {
2017 /*
2018 * The frame was not protected, so skip decryption. However, we
2019 * need to set rx->key if there is a key that could have been
2020 * used so that the frame may be dropped if encryption would
2021 * have been expected.
2022 */
2023 struct ieee80211_key *key = NULL;
2024 struct ieee80211_sub_if_data *sdata = rx->sdata;
2025 int i;
2026
Jouni Malinenaf2d14b2020-02-22 15:25:47 +02002027 if (ieee80211_is_beacon(fc)) {
2028 key = ieee80211_rx_get_bigtk(rx, -1);
2029 } else if (ieee80211_is_mgmt(fc) &&
2030 is_multicast_ether_addr(hdr->addr1)) {
2031 key = rcu_dereference(rx->sdata->default_mgmt_key);
2032 } else {
Johan Almbladh86c228a2013-08-14 15:29:46 +02002033 if (rx->sta) {
2034 for (i = 0; i < NUM_DEFAULT_KEYS; i++) {
2035 key = rcu_dereference(rx->sta->gtk[i]);
2036 if (key)
2037 break;
2038 }
2039 }
2040 if (!key) {
2041 for (i = 0; i < NUM_DEFAULT_KEYS; i++) {
2042 key = rcu_dereference(sdata->keys[i]);
2043 if (key)
2044 break;
2045 }
2046 }
Johan Almbladh86c228a2013-08-14 15:29:46 +02002047 }
Jouni Malinenaf2d14b2020-02-22 15:25:47 +02002048 if (key)
2049 rx->key = key;
Johan Almbladh86c228a2013-08-14 15:29:46 +02002050 return RX_CONTINUE;
2051 } else {
Johan Almbladh86c228a2013-08-14 15:29:46 +02002052 /*
2053 * The device doesn't give us the IV so we won't be
2054 * able to look up the key. That's ok though, we
2055 * don't need to decrypt the frame, we just won't
2056 * be able to keep statistics accurate.
2057 * Except for key threshold notifications, should
2058 * we somehow allow the driver to tell us which key
2059 * the hardware used if this flag is set?
2060 */
2061 if ((status->flag & RX_FLAG_DECRYPTED) &&
2062 (status->flag & RX_FLAG_IV_STRIPPED))
2063 return RX_CONTINUE;
2064
Alexander Wetzel96fc6ef2019-03-19 21:34:08 +01002065 keyidx = ieee80211_get_keyid(rx->skb, cs);
Johan Almbladh86c228a2013-08-14 15:29:46 +02002066
Alexander Wetzel96fc6ef2019-03-19 21:34:08 +01002067 if (unlikely(keyidx < 0))
2068 return RX_DROP_UNUSABLE;
Johan Almbladh86c228a2013-08-14 15:29:46 +02002069
2070 /* check per-station GTK first, if multicast packet */
2071 if (is_multicast_ether_addr(hdr->addr1) && rx->sta)
2072 rx->key = rcu_dereference(rx->sta->gtk[keyidx]);
2073
2074 /* if not found, try default key */
2075 if (!rx->key) {
2076 rx->key = rcu_dereference(rx->sdata->keys[keyidx]);
2077
2078 /*
2079 * RSNA-protected unicast frames should always be
2080 * sent with pairwise or station-to-station keys,
2081 * but for WEP we allow using a key index as well.
2082 */
2083 if (rx->key &&
2084 rx->key->conf.cipher != WLAN_CIPHER_SUITE_WEP40 &&
2085 rx->key->conf.cipher != WLAN_CIPHER_SUITE_WEP104 &&
2086 !is_multicast_ether_addr(hdr->addr1))
2087 rx->key = NULL;
2088 }
2089 }
2090
2091 if (rx->key) {
2092 if (unlikely(rx->key->flags & KEY_FLAG_TAINTED))
2093 return RX_DROP_MONITOR;
2094
Johan Almbladh86c228a2013-08-14 15:29:46 +02002095 /* TODO: add threshold stuff again */
2096 } else {
2097 return RX_DROP_MONITOR;
2098 }
2099
2100 switch (rx->key->conf.cipher) {
2101 case WLAN_CIPHER_SUITE_WEP40:
2102 case WLAN_CIPHER_SUITE_WEP104:
2103 result = ieee80211_crypto_wep_decrypt(rx);
2104 break;
2105 case WLAN_CIPHER_SUITE_TKIP:
2106 result = ieee80211_crypto_tkip_decrypt(rx);
2107 break;
2108 case WLAN_CIPHER_SUITE_CCMP:
Jouni Malinen2b2ba0d2015-01-24 19:52:07 +02002109 result = ieee80211_crypto_ccmp_decrypt(
2110 rx, IEEE80211_CCMP_MIC_LEN);
2111 break;
2112 case WLAN_CIPHER_SUITE_CCMP_256:
2113 result = ieee80211_crypto_ccmp_decrypt(
2114 rx, IEEE80211_CCMP_256_MIC_LEN);
Johan Almbladh86c228a2013-08-14 15:29:46 +02002115 break;
2116 case WLAN_CIPHER_SUITE_AES_CMAC:
2117 result = ieee80211_crypto_aes_cmac_decrypt(rx);
2118 break;
Jouni Malinen56c52da2015-01-24 19:52:08 +02002119 case WLAN_CIPHER_SUITE_BIP_CMAC_256:
2120 result = ieee80211_crypto_aes_cmac_256_decrypt(rx);
2121 break;
Jouni Malinen8ade5382015-01-24 19:52:09 +02002122 case WLAN_CIPHER_SUITE_BIP_GMAC_128:
2123 case WLAN_CIPHER_SUITE_BIP_GMAC_256:
2124 result = ieee80211_crypto_aes_gmac_decrypt(rx);
2125 break;
Jouni Malinen00b9cfa2015-01-24 19:52:06 +02002126 case WLAN_CIPHER_SUITE_GCMP:
2127 case WLAN_CIPHER_SUITE_GCMP_256:
2128 result = ieee80211_crypto_gcmp_decrypt(rx);
2129 break;
Johan Almbladh86c228a2013-08-14 15:29:46 +02002130 default:
Max Stepanov2475b1cc2013-03-24 14:23:27 +02002131 result = ieee80211_crypto_hw_decrypt(rx);
Johan Almbladh86c228a2013-08-14 15:29:46 +02002132 }
2133
2134 /* the hdr variable is invalid after the decrypt handlers */
2135
2136 /* either the frame has been decrypted or will be dropped */
2137 status->flag |= RX_FLAG_DECRYPTED;
2138
Jouni Malinen9eaf1832020-04-01 17:25:48 +03002139 if (unlikely(ieee80211_is_beacon(fc) && result == RX_DROP_UNUSABLE))
2140 cfg80211_rx_unprot_mlme_mgmt(rx->sdata->dev,
2141 skb->data, skb->len);
2142
Johan Almbladh86c228a2013-08-14 15:29:46 +02002143 return result;
2144}
2145
Johannes Berg571ecf62007-07-27 15:43:22 +02002146static inline struct ieee80211_fragment_entry *
2147ieee80211_reassemble_add(struct ieee80211_sub_if_data *sdata,
2148 unsigned int frag, unsigned int seq, int rx_queue,
2149 struct sk_buff **skb)
2150{
2151 struct ieee80211_fragment_entry *entry;
Johannes Berg571ecf62007-07-27 15:43:22 +02002152
Johannes Berg571ecf62007-07-27 15:43:22 +02002153 entry = &sdata->fragments[sdata->fragment_next++];
2154 if (sdata->fragment_next >= IEEE80211_FRAGMENT_MAX)
2155 sdata->fragment_next = 0;
2156
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002157 if (!skb_queue_empty(&entry->skb_list))
Johannes Berg571ecf62007-07-27 15:43:22 +02002158 __skb_queue_purge(&entry->skb_list);
Johannes Berg571ecf62007-07-27 15:43:22 +02002159
2160 __skb_queue_tail(&entry->skb_list, *skb); /* no need for locking */
2161 *skb = NULL;
2162 entry->first_frag_time = jiffies;
2163 entry->seq = seq;
2164 entry->rx_queue = rx_queue;
2165 entry->last_frag = frag;
Johannes Berg9acc54b2016-02-26 22:13:40 +01002166 entry->check_sequential_pn = false;
Johannes Berg571ecf62007-07-27 15:43:22 +02002167 entry->extra_len = 0;
2168
2169 return entry;
2170}
2171
2172static inline struct ieee80211_fragment_entry *
2173ieee80211_reassemble_find(struct ieee80211_sub_if_data *sdata,
Harvey Harrisonb73d70a2008-07-15 18:44:12 -07002174 unsigned int frag, unsigned int seq,
Johannes Berg571ecf62007-07-27 15:43:22 +02002175 int rx_queue, struct ieee80211_hdr *hdr)
2176{
2177 struct ieee80211_fragment_entry *entry;
2178 int i, idx;
2179
2180 idx = sdata->fragment_next;
2181 for (i = 0; i < IEEE80211_FRAGMENT_MAX; i++) {
2182 struct ieee80211_hdr *f_hdr;
David S. Miller7957a9d2018-08-06 22:49:13 -07002183 struct sk_buff *f_skb;
Johannes Berg571ecf62007-07-27 15:43:22 +02002184
2185 idx--;
2186 if (idx < 0)
2187 idx = IEEE80211_FRAGMENT_MAX - 1;
2188
2189 entry = &sdata->fragments[idx];
2190 if (skb_queue_empty(&entry->skb_list) || entry->seq != seq ||
2191 entry->rx_queue != rx_queue ||
2192 entry->last_frag + 1 != frag)
2193 continue;
2194
David S. Miller7957a9d2018-08-06 22:49:13 -07002195 f_skb = __skb_peek(&entry->skb_list);
2196 f_hdr = (struct ieee80211_hdr *) f_skb->data;
Johannes Berg571ecf62007-07-27 15:43:22 +02002197
Harvey Harrisonb73d70a2008-07-15 18:44:12 -07002198 /*
2199 * Check ftype and addresses are equal, else check next fragment
2200 */
2201 if (((hdr->frame_control ^ f_hdr->frame_control) &
2202 cpu_to_le16(IEEE80211_FCTL_FTYPE)) ||
Joe Perchesb203ca32012-05-08 18:56:52 +00002203 !ether_addr_equal(hdr->addr1, f_hdr->addr1) ||
2204 !ether_addr_equal(hdr->addr2, f_hdr->addr2))
Johannes Berg571ecf62007-07-27 15:43:22 +02002205 continue;
2206
S.Çağlar Onurab466232008-02-14 17:36:47 +02002207 if (time_after(jiffies, entry->first_frag_time + 2 * HZ)) {
Johannes Berg571ecf62007-07-27 15:43:22 +02002208 __skb_queue_purge(&entry->skb_list);
2209 continue;
2210 }
2211 return entry;
2212 }
2213
2214 return NULL;
2215}
2216
Johannes Berg49461622008-06-30 15:10:45 +02002217static ieee80211_rx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +01002218ieee80211_rx_h_defragment(struct ieee80211_rx_data *rx)
Johannes Berg571ecf62007-07-27 15:43:22 +02002219{
2220 struct ieee80211_hdr *hdr;
2221 u16 sc;
Harvey Harrison358c8d92008-07-15 18:44:13 -07002222 __le16 fc;
Johannes Berg571ecf62007-07-27 15:43:22 +02002223 unsigned int frag, seq;
2224 struct ieee80211_fragment_entry *entry;
2225 struct sk_buff *skb;
2226
Harvey Harrisonb73d70a2008-07-15 18:44:12 -07002227 hdr = (struct ieee80211_hdr *)rx->skb->data;
Harvey Harrison358c8d92008-07-15 18:44:13 -07002228 fc = hdr->frame_control;
Javier Cardonaf7fbf702012-10-25 11:10:18 -07002229
2230 if (ieee80211_is_ctl(fc))
2231 return RX_CONTINUE;
2232
Johannes Berg571ecf62007-07-27 15:43:22 +02002233 sc = le16_to_cpu(hdr->seq_ctrl);
2234 frag = sc & IEEE80211_SCTL_FRAG;
2235
Johannes Bergb8fff402014-11-03 13:57:46 +01002236 if (is_multicast_ether_addr(hdr->addr1)) {
Johannes Bergc206ca62015-04-22 20:47:28 +02002237 I802_DEBUG_INC(rx->local->dot11MulticastReceivedFrameCount);
Andreas Müllerd0259332014-12-12 12:11:11 +01002238 goto out_no_led;
Johannes Berg571ecf62007-07-27 15:43:22 +02002239 }
Johannes Bergb8fff402014-11-03 13:57:46 +01002240
Andreas Müllerd0259332014-12-12 12:11:11 +01002241 if (likely(!ieee80211_has_morefrags(fc) && frag == 0))
2242 goto out;
2243
Johannes Berg571ecf62007-07-27 15:43:22 +02002244 I802_DEBUG_INC(rx->local->rx_handlers_fragments);
2245
Zhu Yie3cf8b3f2010-03-29 17:35:07 +08002246 if (skb_linearize(rx->skb))
2247 return RX_DROP_UNUSABLE;
2248
Abhijeet Kolekar058897a2010-05-11 11:22:11 -07002249 /*
2250 * skb_linearize() might change the skb->data and
2251 * previously cached variables (in this case, hdr) need to
2252 * be refreshed with the new data.
2253 */
2254 hdr = (struct ieee80211_hdr *)rx->skb->data;
Johannes Berg571ecf62007-07-27 15:43:22 +02002255 seq = (sc & IEEE80211_SCTL_SEQ) >> 4;
2256
2257 if (frag == 0) {
2258 /* This is the first fragment of a new frame. */
2259 entry = ieee80211_reassemble_add(rx->sdata, frag, seq,
Johannes Berg9e262972011-07-07 18:45:03 +02002260 rx->seqno_idx, &(rx->skb));
Jouni Malinen2b2ba0d2015-01-24 19:52:07 +02002261 if (rx->key &&
2262 (rx->key->conf.cipher == WLAN_CIPHER_SUITE_CCMP ||
Johannes Berg9acc54b2016-02-26 22:13:40 +01002263 rx->key->conf.cipher == WLAN_CIPHER_SUITE_CCMP_256 ||
2264 rx->key->conf.cipher == WLAN_CIPHER_SUITE_GCMP ||
2265 rx->key->conf.cipher == WLAN_CIPHER_SUITE_GCMP_256) &&
Harvey Harrison358c8d92008-07-15 18:44:13 -07002266 ieee80211_has_protected(fc)) {
Johannes Berg9e262972011-07-07 18:45:03 +02002267 int queue = rx->security_idx;
Johannes Berg9acc54b2016-02-26 22:13:40 +01002268
2269 /* Store CCMP/GCMP PN so that we can verify that the
2270 * next fragment has a sequential PN value.
2271 */
2272 entry->check_sequential_pn = true;
Johannes Berg571ecf62007-07-27 15:43:22 +02002273 memcpy(entry->last_pn,
Jouni Malinen91902522010-06-11 10:27:33 -07002274 rx->key->u.ccmp.rx_pn[queue],
Johannes Berg4325f6c2013-05-08 13:09:08 +02002275 IEEE80211_CCMP_PN_LEN);
Johannes Berg9acc54b2016-02-26 22:13:40 +01002276 BUILD_BUG_ON(offsetof(struct ieee80211_key,
2277 u.ccmp.rx_pn) !=
2278 offsetof(struct ieee80211_key,
2279 u.gcmp.rx_pn));
2280 BUILD_BUG_ON(sizeof(rx->key->u.ccmp.rx_pn[queue]) !=
2281 sizeof(rx->key->u.gcmp.rx_pn[queue]));
2282 BUILD_BUG_ON(IEEE80211_CCMP_PN_LEN !=
2283 IEEE80211_GCMP_PN_LEN);
Johannes Berg571ecf62007-07-27 15:43:22 +02002284 }
Johannes Berg9ae54c82008-01-31 19:48:20 +01002285 return RX_QUEUED;
Johannes Berg571ecf62007-07-27 15:43:22 +02002286 }
2287
2288 /* This is a fragment for a frame that should already be pending in
2289 * fragment cache. Add this fragment to the end of the pending entry.
2290 */
Johannes Berg9e262972011-07-07 18:45:03 +02002291 entry = ieee80211_reassemble_find(rx->sdata, frag, seq,
2292 rx->seqno_idx, hdr);
Johannes Berg571ecf62007-07-27 15:43:22 +02002293 if (!entry) {
2294 I802_DEBUG_INC(rx->local->rx_handlers_drop_defrag);
Johannes Berge4c26ad2008-01-31 19:48:21 +01002295 return RX_DROP_MONITOR;
Johannes Berg571ecf62007-07-27 15:43:22 +02002296 }
2297
Johannes Berg9acc54b2016-02-26 22:13:40 +01002298 /* "The receiver shall discard MSDUs and MMPDUs whose constituent
2299 * MPDU PN values are not incrementing in steps of 1."
2300 * see IEEE P802.11-REVmc/D5.0, 12.5.3.4.4, item d (for CCMP)
2301 * and IEEE P802.11-REVmc/D5.0, 12.5.5.4.4, item d (for GCMP)
2302 */
2303 if (entry->check_sequential_pn) {
Johannes Berg571ecf62007-07-27 15:43:22 +02002304 int i;
Johannes Berg4325f6c2013-05-08 13:09:08 +02002305 u8 pn[IEEE80211_CCMP_PN_LEN], *rpn;
Jouni Malinen91902522010-06-11 10:27:33 -07002306 int queue;
Johannes Berg9acc54b2016-02-26 22:13:40 +01002307
Jouni Malinen2b2ba0d2015-01-24 19:52:07 +02002308 if (!rx->key ||
2309 (rx->key->conf.cipher != WLAN_CIPHER_SUITE_CCMP &&
Johannes Berg9acc54b2016-02-26 22:13:40 +01002310 rx->key->conf.cipher != WLAN_CIPHER_SUITE_CCMP_256 &&
2311 rx->key->conf.cipher != WLAN_CIPHER_SUITE_GCMP &&
2312 rx->key->conf.cipher != WLAN_CIPHER_SUITE_GCMP_256))
Johannes Berge4c26ad2008-01-31 19:48:21 +01002313 return RX_DROP_UNUSABLE;
Johannes Berg4325f6c2013-05-08 13:09:08 +02002314 memcpy(pn, entry->last_pn, IEEE80211_CCMP_PN_LEN);
2315 for (i = IEEE80211_CCMP_PN_LEN - 1; i >= 0; i--) {
Johannes Berg571ecf62007-07-27 15:43:22 +02002316 pn[i]++;
2317 if (pn[i])
2318 break;
2319 }
Johannes Berg9e262972011-07-07 18:45:03 +02002320 queue = rx->security_idx;
Jouni Malinen91902522010-06-11 10:27:33 -07002321 rpn = rx->key->u.ccmp.rx_pn[queue];
Johannes Berg4325f6c2013-05-08 13:09:08 +02002322 if (memcmp(pn, rpn, IEEE80211_CCMP_PN_LEN))
Johannes Berge4c26ad2008-01-31 19:48:21 +01002323 return RX_DROP_UNUSABLE;
Johannes Berg4325f6c2013-05-08 13:09:08 +02002324 memcpy(entry->last_pn, pn, IEEE80211_CCMP_PN_LEN);
Johannes Berg571ecf62007-07-27 15:43:22 +02002325 }
2326
Harvey Harrison358c8d92008-07-15 18:44:13 -07002327 skb_pull(rx->skb, ieee80211_hdrlen(fc));
Johannes Berg571ecf62007-07-27 15:43:22 +02002328 __skb_queue_tail(&entry->skb_list, rx->skb);
2329 entry->last_frag = frag;
2330 entry->extra_len += rx->skb->len;
Harvey Harrison358c8d92008-07-15 18:44:13 -07002331 if (ieee80211_has_morefrags(fc)) {
Johannes Berg571ecf62007-07-27 15:43:22 +02002332 rx->skb = NULL;
Johannes Berg9ae54c82008-01-31 19:48:20 +01002333 return RX_QUEUED;
Johannes Berg571ecf62007-07-27 15:43:22 +02002334 }
2335
2336 rx->skb = __skb_dequeue(&entry->skb_list);
2337 if (skb_tailroom(rx->skb) < entry->extra_len) {
Johannes Bergf1160432015-04-22 20:25:20 +02002338 I802_DEBUG_INC(rx->local->rx_expand_skb_head_defrag);
Johannes Berg571ecf62007-07-27 15:43:22 +02002339 if (unlikely(pskb_expand_head(rx->skb, 0, entry->extra_len,
2340 GFP_ATOMIC))) {
2341 I802_DEBUG_INC(rx->local->rx_handlers_drop_defrag);
2342 __skb_queue_purge(&entry->skb_list);
Johannes Berge4c26ad2008-01-31 19:48:21 +01002343 return RX_DROP_UNUSABLE;
Johannes Berg571ecf62007-07-27 15:43:22 +02002344 }
2345 }
2346 while ((skb = __skb_dequeue(&entry->skb_list))) {
Johannes Berg59ae1d12017-06-16 14:29:20 +02002347 skb_put_data(rx->skb, skb->data, skb->len);
Johannes Berg571ecf62007-07-27 15:43:22 +02002348 dev_kfree_skb(skb);
2349 }
2350
Johannes Berg571ecf62007-07-27 15:43:22 +02002351 out:
Andreas Müllerd0259332014-12-12 12:11:11 +01002352 ieee80211_led_rx(rx->local);
2353 out_no_led:
Johannes Berg571ecf62007-07-27 15:43:22 +02002354 if (rx->sta)
Johannes Berge5a9f8d2015-10-16 17:54:47 +02002355 rx->sta->rx_stats.packets++;
Johannes Berg9ae54c82008-01-31 19:48:20 +01002356 return RX_CONTINUE;
Johannes Berg571ecf62007-07-27 15:43:22 +02002357}
2358
Johannes Berg1df332e2012-10-26 00:09:11 +02002359static int ieee80211_802_1x_port_control(struct ieee80211_rx_data *rx)
Johannes Berg571ecf62007-07-27 15:43:22 +02002360{
Johannes Berg1df332e2012-10-26 00:09:11 +02002361 if (unlikely(!rx->sta || !test_sta_flag(rx->sta, WLAN_STA_AUTHORIZED)))
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002362 return -EACCES;
Johannes Berg571ecf62007-07-27 15:43:22 +02002363
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002364 return 0;
Johannes Berg571ecf62007-07-27 15:43:22 +02002365}
2366
Johannes Berg1df332e2012-10-26 00:09:11 +02002367static int ieee80211_drop_unencrypted(struct ieee80211_rx_data *rx, __le16 fc)
Johannes Berg571ecf62007-07-27 15:43:22 +02002368{
Johannes Bergeb9fb5b82009-11-16 13:58:20 +01002369 struct sk_buff *skb = rx->skb;
2370 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
2371
Johannes Berg3017b802007-08-28 17:01:53 -04002372 /*
Johannes Berg7848ba72007-09-14 11:10:25 -04002373 * Pass through unencrypted frames if the hardware has
2374 * decrypted them already.
Johannes Berg3017b802007-08-28 17:01:53 -04002375 */
Johannes Bergeb9fb5b82009-11-16 13:58:20 +01002376 if (status->flag & RX_FLAG_DECRYPTED)
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002377 return 0;
Johannes Berg571ecf62007-07-27 15:43:22 +02002378
2379 /* Drop unencrypted frames if key is set. */
Harvey Harrison358c8d92008-07-15 18:44:13 -07002380 if (unlikely(!ieee80211_has_protected(fc) &&
Thomas Pedersen30b2f0b2020-01-13 21:59:40 -08002381 !ieee80211_is_any_nullfunc(fc) &&
Johannes Berge8f4fb72015-03-20 11:37:36 +01002382 ieee80211_is_data(fc) && rx->key))
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +02002383 return -EACCES;
Johannes Bergbef5d1c2010-02-16 11:05:00 +01002384
2385 return 0;
2386}
2387
Johannes Berg1df332e2012-10-26 00:09:11 +02002388static int ieee80211_drop_unencrypted_mgmt(struct ieee80211_rx_data *rx)
Johannes Bergbef5d1c2010-02-16 11:05:00 +01002389{
2390 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
Jouni Malinene3efca02010-03-28 22:31:15 -07002391 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(rx->skb);
Johannes Bergbef5d1c2010-02-16 11:05:00 +01002392 __le16 fc = hdr->frame_control;
Johannes Bergbef5d1c2010-02-16 11:05:00 +01002393
Jouni Malinene3efca02010-03-28 22:31:15 -07002394 /*
2395 * Pass through unencrypted frames if the hardware has
2396 * decrypted them already.
2397 */
2398 if (status->flag & RX_FLAG_DECRYPTED)
2399 return 0;
Johannes Bergbef5d1c2010-02-16 11:05:00 +01002400
Johannes Bergc2c98fd2011-09-29 16:04:36 +02002401 if (rx->sta && test_sta_flag(rx->sta, WLAN_STA_MFP)) {
Jouni Malinend211e902010-03-28 22:29:52 -07002402 if (unlikely(!ieee80211_has_protected(fc) &&
2403 ieee80211_is_unicast_robust_mgmt_frame(rx->skb) &&
Jouni Malinencf4e5942010-12-16 00:52:40 +02002404 rx->key)) {
Johannes Berg6ff57cf2013-05-16 00:55:00 +02002405 if (ieee80211_is_deauth(fc) ||
2406 ieee80211_is_disassoc(fc))
2407 cfg80211_rx_unprot_mlme_mgmt(rx->sdata->dev,
2408 rx->skb->data,
2409 rx->skb->len);
Jouni Malinenf2ca3ea2009-05-08 12:36:03 +03002410 return -EACCES;
Jouni Malinencf4e5942010-12-16 00:52:40 +02002411 }
Jouni Malinenf2ca3ea2009-05-08 12:36:03 +03002412 /* BIP does not use Protected field, so need to check MMIE */
Joe Perchesf64f9e72009-11-29 16:55:45 -08002413 if (unlikely(ieee80211_is_multicast_robust_mgmt_frame(rx->skb) &&
Jouni Malinencf4e5942010-12-16 00:52:40 +02002414 ieee80211_get_mmie_keyidx(rx->skb) < 0)) {
Johannes Berg6ff57cf2013-05-16 00:55:00 +02002415 if (ieee80211_is_deauth(fc) ||
2416 ieee80211_is_disassoc(fc))
2417 cfg80211_rx_unprot_mlme_mgmt(rx->sdata->dev,
2418 rx->skb->data,
2419 rx->skb->len);
Jouni Malinenf2ca3ea2009-05-08 12:36:03 +03002420 return -EACCES;
Jouni Malinencf4e5942010-12-16 00:52:40 +02002421 }
Jouni Malinenaf2d14b2020-02-22 15:25:47 +02002422 if (unlikely(ieee80211_is_beacon(fc) && rx->key &&
Jouni Malinen9eaf1832020-04-01 17:25:48 +03002423 ieee80211_get_mmie_keyidx(rx->skb) < 0)) {
2424 cfg80211_rx_unprot_mlme_mgmt(rx->sdata->dev,
2425 rx->skb->data,
2426 rx->skb->len);
Jouni Malinenaf2d14b2020-02-22 15:25:47 +02002427 return -EACCES;
Jouni Malinen9eaf1832020-04-01 17:25:48 +03002428 }
Jouni Malinenf2ca3ea2009-05-08 12:36:03 +03002429 /*
2430 * When using MFP, Action frames are not allowed prior to
2431 * having configured keys.
2432 */
2433 if (unlikely(ieee80211_is_action(fc) && !rx->key &&
Johannes Bergd8ca16d2014-01-23 16:20:29 +01002434 ieee80211_is_robust_mgmt_frame(rx->skb)))
Jouni Malinenf2ca3ea2009-05-08 12:36:03 +03002435 return -EACCES;
2436 }
Johannes Bergb3fc9c62008-04-13 10:12:47 +02002437
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002438 return 0;
Johannes Berg571ecf62007-07-27 15:43:22 +02002439}
2440
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002441static int
Felix Fietkau4114fa22011-04-12 19:15:22 +02002442__ieee80211_data_to_8023(struct ieee80211_rx_data *rx, bool *port_control)
Johannes Berg571ecf62007-07-27 15:43:22 +02002443{
Johannes Bergeb9fb5b82009-11-16 13:58:20 +01002444 struct ieee80211_sub_if_data *sdata = rx->sdata;
Felix Fietkauf14543ee2009-11-10 20:10:05 +01002445 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
Felix Fietkaufbb327c2011-01-18 15:48:48 +01002446 bool check_port_control = false;
2447 struct ethhdr *ehdr;
2448 int ret;
Felix Fietkauf14543ee2009-11-10 20:10:05 +01002449
Felix Fietkau4114fa22011-04-12 19:15:22 +02002450 *port_control = false;
Johannes Berg9bc383d2009-11-19 11:55:19 +01002451 if (ieee80211_has_a4(hdr->frame_control) &&
2452 sdata->vif.type == NL80211_IFTYPE_AP_VLAN && !sdata->u.vlan.sta)
Felix Fietkauf14543ee2009-11-10 20:10:05 +01002453 return -1;
Johannes Berg9bc383d2009-11-19 11:55:19 +01002454
Felix Fietkaufbb327c2011-01-18 15:48:48 +01002455 if (sdata->vif.type == NL80211_IFTYPE_STATION &&
2456 !!sdata->u.mgd.use_4addr != !!ieee80211_has_a4(hdr->frame_control)) {
2457
2458 if (!sdata->u.mgd.use_4addr)
2459 return -1;
Sathishkumar Muruganandam1ecef202018-08-28 17:51:38 +05302460 else if (!ether_addr_equal(hdr->addr1, sdata->vif.addr))
Felix Fietkaufbb327c2011-01-18 15:48:48 +01002461 check_port_control = true;
2462 }
2463
Johannes Berg9bc383d2009-11-19 11:55:19 +01002464 if (is_multicast_ether_addr(hdr->addr1) &&
Felix Fietkaufbb327c2011-01-18 15:48:48 +01002465 sdata->vif.type == NL80211_IFTYPE_AP_VLAN && sdata->u.vlan.sta)
Felix Fietkauf14543ee2009-11-10 20:10:05 +01002466 return -1;
Johannes Berg571ecf62007-07-27 15:43:22 +02002467
Felix Fietkaufbb327c2011-01-18 15:48:48 +01002468 ret = ieee80211_data_to_8023(rx->skb, sdata->vif.addr, sdata->vif.type);
Felix Fietkau4114fa22011-04-12 19:15:22 +02002469 if (ret < 0)
Felix Fietkaufbb327c2011-01-18 15:48:48 +01002470 return ret;
2471
2472 ehdr = (struct ethhdr *) rx->skb->data;
Felix Fietkau4114fa22011-04-12 19:15:22 +02002473 if (ehdr->h_proto == rx->sdata->control_port_protocol)
2474 *port_control = true;
2475 else if (check_port_control)
Felix Fietkaufbb327c2011-01-18 15:48:48 +01002476 return -1;
2477
2478 return 0;
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002479}
Johannes Berg571ecf62007-07-27 15:43:22 +02002480
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002481/*
2482 * requires that rx->skb is a frame with ethernet header
2483 */
Harvey Harrison358c8d92008-07-15 18:44:13 -07002484static bool ieee80211_frame_allowed(struct ieee80211_rx_data *rx, __le16 fc)
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002485{
Senthil Balasubramanianc97c23e2008-05-28 23:15:32 +05302486 static const u8 pae_group_addr[ETH_ALEN] __aligned(2)
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002487 = { 0x01, 0x80, 0xC2, 0x00, 0x00, 0x03 };
2488 struct ethhdr *ehdr = (struct ethhdr *) rx->skb->data;
2489
2490 /*
2491 * Allow EAPOL frames to us/the PAE group address regardless
2492 * of whether the frame was encrypted or not.
2493 */
Johannes Berga621fa42010-08-27 14:26:54 +03002494 if (ehdr->h_proto == rx->sdata->control_port_protocol &&
Joe Perches3bc79452012-05-08 18:56:53 +00002495 (ether_addr_equal(ehdr->h_dest, rx->sdata->vif.addr) ||
2496 ether_addr_equal(ehdr->h_dest, pae_group_addr)))
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002497 return true;
2498
2499 if (ieee80211_802_1x_port_control(rx) ||
Harvey Harrison358c8d92008-07-15 18:44:13 -07002500 ieee80211_drop_unencrypted(rx, fc))
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002501 return false;
2502
2503 return true;
2504}
2505
Denis Kenzior018f6fb2018-03-26 12:52:51 -05002506static void ieee80211_deliver_skb_to_local_stack(struct sk_buff *skb,
2507 struct ieee80211_rx_data *rx)
2508{
2509 struct ieee80211_sub_if_data *sdata = rx->sdata;
2510 struct net_device *dev = sdata->dev;
2511
2512 if (unlikely((skb->protocol == sdata->control_port_protocol ||
Markus Theil7f3f96c2020-03-12 10:10:54 +01002513 (skb->protocol == cpu_to_be16(ETH_P_PREAUTH) &&
2514 !sdata->control_port_no_preauth)) &&
Denis Kenzior018f6fb2018-03-26 12:52:51 -05002515 sdata->control_port_over_nl80211)) {
2516 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
Denis Kenziorf8b43c52019-08-27 17:41:20 -05002517 bool noencrypt = !(status->flag & RX_FLAG_DECRYPTED);
Denis Kenzior018f6fb2018-03-26 12:52:51 -05002518
Denis Kenziora948f712018-07-03 15:05:48 -05002519 cfg80211_rx_control_port(dev, skb, noencrypt);
Denis Kenzior018f6fb2018-03-26 12:52:51 -05002520 dev_kfree_skb(skb);
2521 } else {
Denis Kenziorc8a41c62019-08-27 17:41:19 -05002522 memset(skb->cb, 0, sizeof(skb->cb));
2523
Denis Kenzior018f6fb2018-03-26 12:52:51 -05002524 /* deliver to local stack */
2525 if (rx->napi)
2526 napi_gro_receive(rx->napi, skb);
2527 else
2528 netif_receive_skb(skb);
2529 }
2530}
2531
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002532/*
2533 * requires that rx->skb is a frame with ethernet header
2534 */
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002535static void
Johannes Berg5cf121c2008-02-25 16:27:43 +01002536ieee80211_deliver_skb(struct ieee80211_rx_data *rx)
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002537{
Johannes Bergeb9fb5b82009-11-16 13:58:20 +01002538 struct ieee80211_sub_if_data *sdata = rx->sdata;
2539 struct net_device *dev = sdata->dev;
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002540 struct sk_buff *skb, *xmit_skb;
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002541 struct ethhdr *ehdr = (struct ethhdr *) rx->skb->data;
2542 struct sta_info *dsta;
Johannes Berg571ecf62007-07-27 15:43:22 +02002543
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002544 skb = rx->skb;
2545 xmit_skb = NULL;
Johannes Berg571ecf62007-07-27 15:43:22 +02002546
Johannes Berg5a490512015-04-22 17:10:38 +02002547 ieee80211_rx_stats(dev, skb->len);
2548
Johannes Bergde8f18d2016-03-31 20:02:03 +03002549 if (rx->sta) {
2550 /* The seqno index has the same property as needed
2551 * for the rx_msdu field, i.e. it is IEEE80211_NUM_TIDS
2552 * for non-QoS-data frames. Here we know it's a data
2553 * frame, so count MSDUs.
2554 */
Johannes Berg0f9c5a62016-03-31 20:02:09 +03002555 u64_stats_update_begin(&rx->sta->rx_stats.syncp);
Johannes Bergde8f18d2016-03-31 20:02:03 +03002556 rx->sta->rx_stats.msdu[rx->seqno_idx]++;
Johannes Berg0f9c5a62016-03-31 20:02:09 +03002557 u64_stats_update_end(&rx->sta->rx_stats.syncp);
Johannes Bergde8f18d2016-03-31 20:02:03 +03002558 }
2559
Johannes Berg05c914f2008-09-11 00:01:58 +02002560 if ((sdata->vif.type == NL80211_IFTYPE_AP ||
2561 sdata->vif.type == NL80211_IFTYPE_AP_VLAN) &&
Johannes Berg213cd112008-09-11 00:01:54 +02002562 !(sdata->flags & IEEE80211_SDATA_DONT_BRIDGE_PACKETS) &&
Johannes Berg9bc383d2009-11-19 11:55:19 +01002563 (sdata->vif.type != NL80211_IFTYPE_AP_VLAN || !sdata->u.vlan.sta)) {
Michael Braun72f15d52016-10-10 19:12:21 +02002564 if (is_multicast_ether_addr(ehdr->h_dest) &&
2565 ieee80211_vif_get_num_mcast_if(sdata) != 0) {
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002566 /*
2567 * send multicast frames both to higher layers in
2568 * local net stack and back to the wireless medium
2569 */
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002570 xmit_skb = skb_copy(skb, GFP_ATOMIC);
Joe Perchese87cc472012-05-13 21:56:26 +00002571 if (!xmit_skb)
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002572 net_info_ratelimited("%s: failed to clone multicast frame\n",
Joe Perchese87cc472012-05-13 21:56:26 +00002573 dev->name);
Johannes Berg42dca5e2018-10-09 10:00:21 +02002574 } else if (!is_multicast_ether_addr(ehdr->h_dest) &&
2575 !ether_addr_equal(ehdr->h_dest, ehdr->h_source)) {
2576 dsta = sta_info_get(sdata, ehdr->h_dest);
Johannes Bergabe60632009-11-25 17:46:18 +01002577 if (dsta) {
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002578 /*
2579 * The destination station is associated to
2580 * this AP (in this VLAN), so send the frame
2581 * directly to it and do not pass it to local
2582 * net stack.
Johannes Berg571ecf62007-07-27 15:43:22 +02002583 */
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002584 xmit_skb = skb;
Johannes Berg571ecf62007-07-27 15:43:22 +02002585 skb = NULL;
2586 }
Johannes Berg571ecf62007-07-27 15:43:22 +02002587 }
2588 }
2589
Kalle Valo59d9cb02009-12-17 13:54:57 +01002590#ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
Johannes Berg9e890a1f2013-12-04 09:16:31 +01002591 if (skb) {
2592 /* 'align' will only take the values 0 or 2 here since all
2593 * frames are required to be aligned to 2-byte boundaries
2594 * when being passed to mac80211; the code here works just
2595 * as well if that isn't true, but mac80211 assumes it can
2596 * access fields as 2-byte aligned (e.g. for ether_addr_equal)
Johannes Bergd1c3a372009-01-07 00:26:10 +01002597 */
Johannes Berg9e890a1f2013-12-04 09:16:31 +01002598 int align;
2599
2600 align = (unsigned long)(skb->data + sizeof(struct ethhdr)) & 3;
Johannes Bergd1c3a372009-01-07 00:26:10 +01002601 if (align) {
2602 if (WARN_ON(skb_headroom(skb) < 3)) {
2603 dev_kfree_skb(skb);
2604 skb = NULL;
2605 } else {
2606 u8 *data = skb->data;
Zhu Yi8ce0b582009-10-28 13:13:52 -07002607 size_t len = skb_headlen(skb);
2608 skb->data -= align;
2609 memmove(skb->data, data, len);
2610 skb_set_tail_pointer(skb, len);
Johannes Bergd1c3a372009-01-07 00:26:10 +01002611 }
2612 }
Johannes Berg9e890a1f2013-12-04 09:16:31 +01002613 }
Johannes Bergd1c3a372009-01-07 00:26:10 +01002614#endif
2615
Johannes Berg9e890a1f2013-12-04 09:16:31 +01002616 if (skb) {
Johannes Berg9e890a1f2013-12-04 09:16:31 +01002617 skb->protocol = eth_type_trans(skb, dev);
Denis Kenzior018f6fb2018-03-26 12:52:51 -05002618 ieee80211_deliver_skb_to_local_stack(skb, rx);
Johannes Berg571ecf62007-07-27 15:43:22 +02002619 }
2620
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002621 if (xmit_skb) {
Helmut Schaaaef6c922011-12-21 09:11:35 +01002622 /*
2623 * Send to wireless media and increase priority by 256 to
2624 * keep the received priority instead of reclassifying
2625 * the frame (see cfg80211_classify8021d).
2626 */
2627 xmit_skb->priority += 256;
YOSHIFUJI Hideakif831e902007-12-12 03:54:23 +09002628 xmit_skb->protocol = htons(ETH_P_802_3);
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002629 skb_reset_network_header(xmit_skb);
2630 skb_reset_mac_header(xmit_skb);
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002631 dev_queue_xmit(xmit_skb);
Johannes Berg571ecf62007-07-27 15:43:22 +02002632 }
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002633}
2634
Johannes Berg49461622008-06-30 15:10:45 +02002635static ieee80211_rx_result debug_noinline
Felix Fietkau24bba072018-02-27 13:03:07 +01002636__ieee80211_rx_h_amsdu(struct ieee80211_rx_data *rx, u8 data_offset)
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02002637{
Johannes Bergeb9fb5b82009-11-16 13:58:20 +01002638 struct net_device *dev = rx->sdata->dev;
Zhu Yieaf85ca2009-12-01 10:18:37 +08002639 struct sk_buff *skb = rx->skb;
Harvey Harrison358c8d92008-07-15 18:44:13 -07002640 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
2641 __le16 fc = hdr->frame_control;
Zhu Yieaf85ca2009-12-01 10:18:37 +08002642 struct sk_buff_head frame_list;
Johannes Berg7f6990c2016-10-05 15:29:49 +02002643 struct ethhdr ethhdr;
Johannes Berge2b52272016-10-05 16:42:06 +02002644 const u8 *check_da = ethhdr.h_dest, *check_sa = ethhdr.h_source;
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02002645
Johannes Bergea720932016-10-05 10:14:42 +02002646 if (unlikely(ieee80211_has_a4(hdr->frame_control))) {
Johannes Berge2b52272016-10-05 16:42:06 +02002647 check_da = NULL;
2648 check_sa = NULL;
2649 } else switch (rx->sdata->vif.type) {
2650 case NL80211_IFTYPE_AP:
2651 case NL80211_IFTYPE_AP_VLAN:
2652 check_da = NULL;
2653 break;
2654 case NL80211_IFTYPE_STATION:
2655 if (!rx->sta ||
2656 !test_sta_flag(rx->sta, WLAN_STA_TDLS_PEER))
2657 check_sa = NULL;
2658 break;
2659 case NL80211_IFTYPE_MESH_POINT:
2660 check_sa = NULL;
2661 break;
2662 default:
2663 break;
Johannes Bergea720932016-10-05 10:14:42 +02002664 }
Zhu Yieaf85ca2009-12-01 10:18:37 +08002665
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02002666 skb->dev = dev;
Zhu Yieaf85ca2009-12-01 10:18:37 +08002667 __skb_queue_head_init(&frame_list);
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02002668
Johannes Berg7f6990c2016-10-05 15:29:49 +02002669 if (ieee80211_data_to_8023_exthdr(skb, &ethhdr,
2670 rx->sdata->vif.addr,
Felix Fietkau24bba072018-02-27 13:03:07 +01002671 rx->sdata->vif.type,
2672 data_offset))
Johannes Berg7f6990c2016-10-05 15:29:49 +02002673 return RX_DROP_UNUSABLE;
2674
Zhu Yieaf85ca2009-12-01 10:18:37 +08002675 ieee80211_amsdu_to_8023s(skb, &frame_list, dev->dev_addr,
2676 rx->sdata->vif.type,
Johannes Berg8b935ee2016-10-05 16:17:01 +02002677 rx->local->hw.extra_tx_headroom,
Johannes Berge2b52272016-10-05 16:42:06 +02002678 check_da, check_sa);
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02002679
Zhu Yieaf85ca2009-12-01 10:18:37 +08002680 while (!skb_queue_empty(&frame_list)) {
2681 rx->skb = __skb_dequeue(&frame_list);
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02002682
Harvey Harrison358c8d92008-07-15 18:44:13 -07002683 if (!ieee80211_frame_allowed(rx, fc)) {
Zhu Yieaf85ca2009-12-01 10:18:37 +08002684 dev_kfree_skb(rx->skb);
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002685 continue;
2686 }
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02002687
2688 ieee80211_deliver_skb(rx);
2689 }
2690
Johannes Berg9ae54c82008-01-31 19:48:20 +01002691 return RX_QUEUED;
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02002692}
2693
Felix Fietkau24bba072018-02-27 13:03:07 +01002694static ieee80211_rx_result debug_noinline
2695ieee80211_rx_h_amsdu(struct ieee80211_rx_data *rx)
2696{
2697 struct sk_buff *skb = rx->skb;
2698 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
2699 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
2700 __le16 fc = hdr->frame_control;
2701
2702 if (!(status->rx_flags & IEEE80211_RX_AMSDU))
2703 return RX_CONTINUE;
2704
2705 if (unlikely(!ieee80211_is_data(fc)))
2706 return RX_CONTINUE;
2707
2708 if (unlikely(!ieee80211_is_data_present(fc)))
2709 return RX_DROP_MONITOR;
2710
2711 if (unlikely(ieee80211_has_a4(hdr->frame_control))) {
2712 switch (rx->sdata->vif.type) {
2713 case NL80211_IFTYPE_AP_VLAN:
2714 if (!rx->sdata->u.vlan.sta)
2715 return RX_DROP_UNUSABLE;
2716 break;
2717 case NL80211_IFTYPE_STATION:
2718 if (!rx->sdata->u.mgd.use_4addr)
2719 return RX_DROP_UNUSABLE;
2720 break;
2721 default:
2722 return RX_DROP_UNUSABLE;
2723 }
2724 }
2725
2726 if (is_multicast_ether_addr(hdr->addr1))
2727 return RX_DROP_UNUSABLE;
2728
2729 return __ieee80211_rx_h_amsdu(rx, 0);
2730}
2731
Ingo Molnarbf94e172008-10-12 23:51:38 -07002732#ifdef CONFIG_MAC80211_MESH
Davide Pesaventob0dee572008-09-27 17:29:12 +02002733static ieee80211_rx_result
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02002734ieee80211_rx_h_mesh_fwding(struct ieee80211_rx_data *rx)
2735{
Thomas Pedersen30789eb2011-11-24 17:15:26 -08002736 struct ieee80211_hdr *fwd_hdr, *hdr;
2737 struct ieee80211_tx_info *info;
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02002738 struct ieee80211s_hdr *mesh_hdr;
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02002739 struct sk_buff *skb = rx->skb, *fwd_skb;
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002740 struct ieee80211_local *local = rx->local;
Johannes Bergeb9fb5b82009-11-16 13:58:20 +01002741 struct ieee80211_sub_if_data *sdata = rx->sdata;
Thomas Pedersen30789eb2011-11-24 17:15:26 -08002742 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Michal Kaziorcf440122016-01-25 14:43:24 +01002743 u16 ac, q, hdrlen;
Felix Fietkau51d0af22019-02-22 13:21:15 +01002744 int tailroom = 0;
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02002745
2746 hdr = (struct ieee80211_hdr *) skb->data;
2747 hdrlen = ieee80211_hdrlen(hdr->frame_control);
Johannes Berg9b395bc2012-10-26 00:36:40 +02002748
2749 /* make sure fixed part of mesh header is there, also checks skb len */
2750 if (!pskb_may_pull(rx->skb, hdrlen + 6))
2751 return RX_DROP_MONITOR;
2752
2753 mesh_hdr = (struct ieee80211s_hdr *) (skb->data + hdrlen);
2754
2755 /* make sure full mesh header is there, also checks skb len */
2756 if (!pskb_may_pull(rx->skb,
2757 hdrlen + ieee80211_get_mesh_hdrlen(mesh_hdr)))
2758 return RX_DROP_MONITOR;
2759
2760 /* reload pointers */
2761 hdr = (struct ieee80211_hdr *) skb->data;
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02002762 mesh_hdr = (struct ieee80211s_hdr *) (skb->data + hdrlen);
2763
Bob Copelandd0c22112015-03-02 14:28:52 -05002764 if (ieee80211_drop_unencrypted(rx, hdr->frame_control))
2765 return RX_DROP_MONITOR;
2766
Thomas Pedersen2157fdd2011-09-01 12:32:14 -07002767 /* frame is in RMC, don't forward */
2768 if (ieee80211_is_data(hdr->frame_control) &&
2769 is_multicast_ether_addr(hdr->addr1) &&
Johannes Bergbf7cd942013-02-15 14:40:31 +01002770 mesh_rmc_check(rx->sdata, hdr->addr3, mesh_hdr))
Thomas Pedersen2157fdd2011-09-01 12:32:14 -07002771 return RX_DROP_MONITOR;
2772
Johannes Berg5c900672015-04-22 14:48:34 +02002773 if (!ieee80211_is_data(hdr->frame_control))
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02002774 return RX_CONTINUE;
2775
2776 if (!mesh_hdr->ttl)
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02002777 return RX_DROP_MONITOR;
2778
Javier Cardona43b7b312009-10-15 18:10:51 -07002779 if (mesh_hdr->flags & MESH_FLAGS_AE) {
YanBo79617de2008-09-22 13:30:32 +08002780 struct mesh_path *mppath;
Javier Cardona43b7b312009-10-15 18:10:51 -07002781 char *proxied_addr;
2782 char *mpp_addr;
2783
2784 if (is_multicast_ether_addr(hdr->addr1)) {
2785 mpp_addr = hdr->addr3;
2786 proxied_addr = mesh_hdr->eaddr1;
Rajkumar Manoharan5667c862017-05-14 21:41:55 -07002787 } else if ((mesh_hdr->flags & MESH_FLAGS_AE) ==
2788 MESH_FLAGS_AE_A5_A6) {
Johannes Berg9b395bc2012-10-26 00:36:40 +02002789 /* has_a4 already checked in ieee80211_rx_mesh_check */
Javier Cardona43b7b312009-10-15 18:10:51 -07002790 mpp_addr = hdr->addr4;
2791 proxied_addr = mesh_hdr->eaddr2;
Johannes Berg9b395bc2012-10-26 00:36:40 +02002792 } else {
2793 return RX_DROP_MONITOR;
Javier Cardona43b7b312009-10-15 18:10:51 -07002794 }
YanBo79617de2008-09-22 13:30:32 +08002795
YanBo79617de2008-09-22 13:30:32 +08002796 rcu_read_lock();
Johannes Bergbf7cd942013-02-15 14:40:31 +01002797 mppath = mpp_path_lookup(sdata, proxied_addr);
YanBo79617de2008-09-22 13:30:32 +08002798 if (!mppath) {
Johannes Bergbf7cd942013-02-15 14:40:31 +01002799 mpp_path_add(sdata, proxied_addr, mpp_addr);
YanBo79617de2008-09-22 13:30:32 +08002800 } else {
2801 spin_lock_bh(&mppath->state_lock);
Joe Perchesb203ca32012-05-08 18:56:52 +00002802 if (!ether_addr_equal(mppath->mpp, mpp_addr))
Javier Cardona43b7b312009-10-15 18:10:51 -07002803 memcpy(mppath->mpp, mpp_addr, ETH_ALEN);
Henning Roggeab1c7902016-02-03 13:58:37 +01002804 mppath->exp_time = jiffies;
YanBo79617de2008-09-22 13:30:32 +08002805 spin_unlock_bh(&mppath->state_lock);
2806 }
2807 rcu_read_unlock();
2808 }
2809
Javier Cardona3c5772a2009-08-10 12:15:48 -07002810 /* Frame has reached destination. Don't forward */
2811 if (!is_multicast_ether_addr(hdr->addr1) &&
Joe Perchesb203ca32012-05-08 18:56:52 +00002812 ether_addr_equal(sdata->vif.addr, hdr->addr3))
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02002813 return RX_CONTINUE;
2814
Michal Kaziorcf440122016-01-25 14:43:24 +01002815 ac = ieee80211_select_queue_80211(sdata, skb, hdr);
2816 q = sdata->vif.hw_queue[ac];
Thomas Pedersend3c15972011-11-24 17:15:23 -08002817 if (ieee80211_queue_stopped(&local->hw, q)) {
Thomas Pedersen30789eb2011-11-24 17:15:26 -08002818 IEEE80211_IFSTA_MESH_CTR_INC(ifmsh, dropped_frames_congestion);
Thomas Pedersend3c15972011-11-24 17:15:23 -08002819 return RX_DROP_MONITOR;
2820 }
2821 skb_set_queue_mapping(skb, q);
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02002822
Thomas Pedersen30789eb2011-11-24 17:15:26 -08002823 if (!--mesh_hdr->ttl) {
Bob Copelanda0dc0202019-01-17 16:32:42 -05002824 if (!is_multicast_ether_addr(hdr->addr1))
2825 IEEE80211_IFSTA_MESH_CTR_INC(ifmsh,
2826 dropped_frames_ttl);
Javier Cardona2ac64cd2012-10-24 12:43:31 -07002827 goto out;
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02002828 }
2829
Chun-Yeow Yeohd6655082012-03-02 02:03:19 +08002830 if (!ifmsh->mshcfg.dot11MeshForwarding)
2831 goto out;
2832
Felix Fietkau51d0af22019-02-22 13:21:15 +01002833 if (sdata->crypto_tx_tailroom_needed_cnt)
2834 tailroom = IEEE80211_ENCRYPT_TAILROOM;
2835
Cedric Izoardc38c39b2017-01-11 14:39:07 +00002836 fwd_skb = skb_copy_expand(skb, local->tx_headroom +
Felix Fietkau51d0af22019-02-22 13:21:15 +01002837 sdata->encrypt_headroom,
2838 tailroom, GFP_ATOMIC);
Joe Perches0c3d5a92018-03-12 08:07:12 -07002839 if (!fwd_skb)
Thomas Pedersen30789eb2011-11-24 17:15:26 -08002840 goto out;
Thomas Pedersen30789eb2011-11-24 17:15:26 -08002841
2842 fwd_hdr = (struct ieee80211_hdr *) fwd_skb->data;
Thomas Pedersen9d6d6f42013-04-08 11:06:12 -07002843 fwd_hdr->frame_control &= ~cpu_to_le16(IEEE80211_FCTL_RETRY);
Thomas Pedersen30789eb2011-11-24 17:15:26 -08002844 info = IEEE80211_SKB_CB(fwd_skb);
2845 memset(info, 0, sizeof(*info));
2846 info->flags |= IEEE80211_TX_INTFL_NEED_TXPROCESSING;
2847 info->control.vif = &rx->sdata->vif;
2848 info->control.jiffies = jiffies;
2849 if (is_multicast_ether_addr(fwd_hdr->addr1)) {
2850 IEEE80211_IFSTA_MESH_CTR_INC(ifmsh, fwded_mcast);
2851 memcpy(fwd_hdr->addr2, sdata->vif.addr, ETH_ALEN);
Marco Porsch3f52b7e2013-01-30 18:14:08 +01002852 /* update power mode indication when forwarding */
2853 ieee80211_mps_set_frame_flags(sdata, NULL, fwd_hdr);
Johannes Bergbf7cd942013-02-15 14:40:31 +01002854 } else if (!mesh_nexthop_lookup(sdata, fwd_skb)) {
Marco Porsch3f52b7e2013-01-30 18:14:08 +01002855 /* mesh power mode flags updated in mesh_nexthop_lookup */
Thomas Pedersen30789eb2011-11-24 17:15:26 -08002856 IEEE80211_IFSTA_MESH_CTR_INC(ifmsh, fwded_unicast);
2857 } else {
2858 /* unable to resolve next hop */
Johannes Bergbf7cd942013-02-15 14:40:31 +01002859 mesh_path_error_tx(sdata, ifmsh->mshcfg.element_ttl,
Chun-Yeow Yeohf63f8422013-11-13 15:39:12 +08002860 fwd_hdr->addr3, 0,
2861 WLAN_REASON_MESH_PATH_NOFORWARD,
2862 fwd_hdr->addr2);
Thomas Pedersen30789eb2011-11-24 17:15:26 -08002863 IEEE80211_IFSTA_MESH_CTR_INC(ifmsh, dropped_frames_no_route);
Jesper Juhl74b8cc32012-01-14 21:52:17 +01002864 kfree_skb(fwd_skb);
Thomas Pedersen30789eb2011-11-24 17:15:26 -08002865 return RX_DROP_MONITOR;
2866 }
2867
2868 IEEE80211_IFSTA_MESH_CTR_INC(ifmsh, fwded_frames);
2869 ieee80211_add_pending_skb(local, fwd_skb);
Johannes Bergb51aff02010-12-22 10:15:07 +01002870 out:
Johannes Bergdf140462015-04-22 14:40:58 +02002871 if (is_multicast_ether_addr(hdr->addr1))
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02002872 return RX_CONTINUE;
Johannes Bergdf140462015-04-22 14:40:58 +02002873 return RX_DROP_MONITOR;
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02002874}
Ingo Molnarbf94e172008-10-12 23:51:38 -07002875#endif
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02002876
2877static ieee80211_rx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +01002878ieee80211_rx_h_data(struct ieee80211_rx_data *rx)
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002879{
Johannes Bergeb9fb5b82009-11-16 13:58:20 +01002880 struct ieee80211_sub_if_data *sdata = rx->sdata;
Vivek Natarajane15276a2010-02-08 17:47:01 +05302881 struct ieee80211_local *local = rx->local;
Johannes Bergeb9fb5b82009-11-16 13:58:20 +01002882 struct net_device *dev = sdata->dev;
Harvey Harrison358c8d92008-07-15 18:44:13 -07002883 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
2884 __le16 fc = hdr->frame_control;
Felix Fietkau4114fa22011-04-12 19:15:22 +02002885 bool port_control;
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002886 int err;
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002887
Harvey Harrison358c8d92008-07-15 18:44:13 -07002888 if (unlikely(!ieee80211_is_data(hdr->frame_control)))
Johannes Berg9ae54c82008-01-31 19:48:20 +01002889 return RX_CONTINUE;
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002890
Harvey Harrison358c8d92008-07-15 18:44:13 -07002891 if (unlikely(!ieee80211_is_data_present(hdr->frame_control)))
Johannes Berge4c26ad2008-01-31 19:48:21 +01002892 return RX_DROP_MONITOR;
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002893
Felix Fietkauf14543ee2009-11-10 20:10:05 +01002894 /*
Johannes Berge7f4a942011-11-04 11:18:20 +01002895 * Send unexpected-4addr-frame event to hostapd. For older versions,
2896 * also drop the frame to cooked monitor interfaces.
Felix Fietkauf14543ee2009-11-10 20:10:05 +01002897 */
2898 if (ieee80211_has_a4(hdr->frame_control) &&
Johannes Berge7f4a942011-11-04 11:18:20 +01002899 sdata->vif.type == NL80211_IFTYPE_AP) {
2900 if (rx->sta &&
2901 !test_and_set_sta_flag(rx->sta, WLAN_STA_4ADDR_EVENT))
2902 cfg80211_rx_unexpected_4addr_frame(
2903 rx->sdata->dev, rx->sta->sta.addr, GFP_ATOMIC);
Felix Fietkauf14543ee2009-11-10 20:10:05 +01002904 return RX_DROP_MONITOR;
Johannes Berge7f4a942011-11-04 11:18:20 +01002905 }
Felix Fietkauf14543ee2009-11-10 20:10:05 +01002906
Felix Fietkau4114fa22011-04-12 19:15:22 +02002907 err = __ieee80211_data_to_8023(rx, &port_control);
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002908 if (unlikely(err))
Johannes Berge4c26ad2008-01-31 19:48:21 +01002909 return RX_DROP_UNUSABLE;
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002910
Harvey Harrison358c8d92008-07-15 18:44:13 -07002911 if (!ieee80211_frame_allowed(rx, fc))
Johannes Berge4c26ad2008-01-31 19:48:21 +01002912 return RX_DROP_MONITOR;
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002913
Arik Nemtsov8a4d32f2014-11-09 18:50:20 +02002914 /* directly handle TDLS channel switch requests/responses */
2915 if (unlikely(((struct ethhdr *)rx->skb->data)->h_proto ==
2916 cpu_to_be16(ETH_P_TDLS))) {
2917 struct ieee80211_tdls_data *tf = (void *)rx->skb->data;
2918
2919 if (pskb_may_pull(rx->skb,
2920 offsetof(struct ieee80211_tdls_data, u)) &&
2921 tf->payload_type == WLAN_TDLS_SNAP_RFTYPE &&
2922 tf->category == WLAN_CATEGORY_TDLS &&
2923 (tf->action_code == WLAN_TDLS_CHANNEL_SWITCH_REQUEST ||
2924 tf->action_code == WLAN_TDLS_CHANNEL_SWITCH_RESPONSE)) {
Arik Nemtsovc8ff71e2015-07-08 15:41:45 +03002925 skb_queue_tail(&local->skb_queue_tdls_chsw, rx->skb);
2926 schedule_work(&local->tdls_chsw_work);
Arik Nemtsov8a4d32f2014-11-09 18:50:20 +02002927 if (rx->sta)
Johannes Berge5a9f8d2015-10-16 17:54:47 +02002928 rx->sta->rx_stats.packets++;
Arik Nemtsov8a4d32f2014-11-09 18:50:20 +02002929
2930 return RX_QUEUED;
2931 }
2932 }
2933
Felix Fietkau4114fa22011-04-12 19:15:22 +02002934 if (rx->sdata->vif.type == NL80211_IFTYPE_AP_VLAN &&
2935 unlikely(port_control) && sdata->bss) {
2936 sdata = container_of(sdata->bss, struct ieee80211_sub_if_data,
2937 u.ap);
2938 dev = sdata->dev;
2939 rx->sdata = sdata;
2940 }
2941
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002942 rx->skb->dev = dev;
2943
Johannes Berg602fae42016-03-17 15:02:52 +02002944 if (!ieee80211_hw_check(&local->hw, SUPPORTS_DYNAMIC_PS) &&
2945 local->ps_sdata && local->hw.conf.dynamic_ps_timeout > 0 &&
Rajkumar Manoharan8c99f692011-02-02 22:57:53 +05302946 !is_multicast_ether_addr(
2947 ((struct ethhdr *)rx->skb->data)->h_dest) &&
2948 (!local->scanning &&
Johannes Berg602fae42016-03-17 15:02:52 +02002949 !test_bit(SDATA_STATE_OFFCHANNEL, &sdata->state)))
2950 mod_timer(&local->dynamic_ps_timer, jiffies +
2951 msecs_to_jiffies(local->hw.conf.dynamic_ps_timeout));
Vivek Natarajane15276a2010-02-08 17:47:01 +05302952
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02002953 ieee80211_deliver_skb(rx);
Johannes Berg571ecf62007-07-27 15:43:22 +02002954
Johannes Berg9ae54c82008-01-31 19:48:20 +01002955 return RX_QUEUED;
Johannes Berg571ecf62007-07-27 15:43:22 +02002956}
2957
Johannes Berg49461622008-06-30 15:10:45 +02002958static ieee80211_rx_result debug_noinline
Christian Lamparterf9e124f2013-02-04 17:44:44 +00002959ieee80211_rx_h_ctrl(struct ieee80211_rx_data *rx, struct sk_buff_head *frames)
Ron Rindjunsky71364712007-12-25 17:00:36 +02002960{
Ron Rindjunsky71364712007-12-25 17:00:36 +02002961 struct sk_buff *skb = rx->skb;
Harvey Harrisona7767f92008-07-02 16:30:51 -07002962 struct ieee80211_bar *bar = (struct ieee80211_bar *)skb->data;
Ron Rindjunsky71364712007-12-25 17:00:36 +02002963 struct tid_ampdu_rx *tid_agg_rx;
2964 u16 start_seq_num;
2965 u16 tid;
2966
Harvey Harrisona7767f92008-07-02 16:30:51 -07002967 if (likely(!ieee80211_is_ctl(bar->frame_control)))
Johannes Berg9ae54c82008-01-31 19:48:20 +01002968 return RX_CONTINUE;
Ron Rindjunsky71364712007-12-25 17:00:36 +02002969
Harvey Harrisona7767f92008-07-02 16:30:51 -07002970 if (ieee80211_is_back_req(bar->frame_control)) {
Johannes Berg8ae59772010-05-30 14:52:58 +02002971 struct {
2972 __le16 control, start_seq_num;
2973 } __packed bar_data;
Emmanuel Grumbach63822462015-04-20 22:53:37 +03002974 struct ieee80211_event event = {
2975 .type = BAR_RX_EVENT,
2976 };
Johannes Berg8ae59772010-05-30 14:52:58 +02002977
Ron Rindjunsky71364712007-12-25 17:00:36 +02002978 if (!rx->sta)
Johannes Berga02ae752009-11-16 12:00:40 +01002979 return RX_DROP_MONITOR;
Johannes Berg8ae59772010-05-30 14:52:58 +02002980
2981 if (skb_copy_bits(skb, offsetof(struct ieee80211_bar, control),
2982 &bar_data, sizeof(bar_data)))
2983 return RX_DROP_MONITOR;
2984
Johannes Berg8ae59772010-05-30 14:52:58 +02002985 tid = le16_to_cpu(bar_data.control) >> 12;
Johannes Berga87f7362010-06-10 10:21:38 +02002986
Johannes Berg53f24972016-08-29 23:25:19 +03002987 if (!test_bit(tid, rx->sta->ampdu_mlme.agg_session_valid) &&
2988 !test_and_set_bit(tid, rx->sta->ampdu_mlme.unexpected_agg))
2989 ieee80211_send_delba(rx->sdata, rx->sta->sta.addr, tid,
2990 WLAN_BACK_RECIPIENT,
2991 WLAN_REASON_QSTA_REQUIRE_SETUP);
2992
Johannes Berga87f7362010-06-10 10:21:38 +02002993 tid_agg_rx = rcu_dereference(rx->sta->ampdu_mlme.tid_rx[tid]);
2994 if (!tid_agg_rx)
Johannes Berga02ae752009-11-16 12:00:40 +01002995 return RX_DROP_MONITOR;
Ron Rindjunsky71364712007-12-25 17:00:36 +02002996
Johannes Berg8ae59772010-05-30 14:52:58 +02002997 start_seq_num = le16_to_cpu(bar_data.start_seq_num) >> 4;
Emmanuel Grumbach63822462015-04-20 22:53:37 +03002998 event.u.ba.tid = tid;
2999 event.u.ba.ssn = start_seq_num;
3000 event.u.ba.sta = &rx->sta->sta;
Ron Rindjunsky71364712007-12-25 17:00:36 +02003001
3002 /* reset session timer */
Johannes Berg20ad19d2009-02-10 21:25:45 +01003003 if (tid_agg_rx->timeout)
3004 mod_timer(&tid_agg_rx->session_timer,
3005 TU_TO_EXP_TIME(tid_agg_rx->timeout));
Ron Rindjunsky71364712007-12-25 17:00:36 +02003006
Johannes Bergdd318572010-11-29 11:09:16 +01003007 spin_lock(&tid_agg_rx->reorder_lock);
Johannes Berga02ae752009-11-16 12:00:40 +01003008 /* release stored frames up to start of BAR */
Johannes Bergd3b2fb52012-06-22 12:48:38 +02003009 ieee80211_release_reorder_frames(rx->sdata, tid_agg_rx,
Christian Lamparterf9e124f2013-02-04 17:44:44 +00003010 start_seq_num, frames);
Johannes Bergdd318572010-11-29 11:09:16 +01003011 spin_unlock(&tid_agg_rx->reorder_lock);
3012
Emmanuel Grumbach63822462015-04-20 22:53:37 +03003013 drv_event_callback(rx->local, rx->sdata, &event);
3014
Johannes Berga02ae752009-11-16 12:00:40 +01003015 kfree_skb(skb);
3016 return RX_QUEUED;
Ron Rindjunsky71364712007-12-25 17:00:36 +02003017 }
3018
Johannes Berg08daeca2010-05-30 14:53:43 +02003019 /*
3020 * After this point, we only want management frames,
3021 * so we can drop all remaining control frames to
3022 * cooked monitor interfaces.
3023 */
3024 return RX_DROP_MONITOR;
Ron Rindjunsky71364712007-12-25 17:00:36 +02003025}
3026
Jouni Malinenf4f727a2009-01-10 11:46:53 +02003027static void ieee80211_process_sa_query_req(struct ieee80211_sub_if_data *sdata,
3028 struct ieee80211_mgmt *mgmt,
3029 size_t len)
Jouni Malinenfea14732009-01-08 13:32:06 +02003030{
3031 struct ieee80211_local *local = sdata->local;
3032 struct sk_buff *skb;
3033 struct ieee80211_mgmt *resp;
3034
Joe Perchesb203ca32012-05-08 18:56:52 +00003035 if (!ether_addr_equal(mgmt->da, sdata->vif.addr)) {
Jouni Malinenfea14732009-01-08 13:32:06 +02003036 /* Not to own unicast address */
3037 return;
3038 }
3039
Joe Perchesb203ca32012-05-08 18:56:52 +00003040 if (!ether_addr_equal(mgmt->sa, sdata->u.mgd.bssid) ||
3041 !ether_addr_equal(mgmt->bssid, sdata->u.mgd.bssid)) {
Johannes Berg77fdaa12009-07-07 03:45:17 +02003042 /* Not from the current AP or not associated yet. */
Jouni Malinenfea14732009-01-08 13:32:06 +02003043 return;
3044 }
3045
3046 if (len < 24 + 1 + sizeof(resp->u.action.u.sa_query)) {
3047 /* Too short SA Query request frame */
3048 return;
3049 }
3050
3051 skb = dev_alloc_skb(sizeof(*resp) + local->hw.extra_tx_headroom);
3052 if (skb == NULL)
3053 return;
3054
3055 skb_reserve(skb, local->hw.extra_tx_headroom);
Johannes Bergb080db52017-06-16 14:29:19 +02003056 resp = skb_put_zero(skb, 24);
Jouni Malinenfea14732009-01-08 13:32:06 +02003057 memcpy(resp->da, mgmt->sa, ETH_ALEN);
Johannes Berg47846c92009-11-25 17:46:19 +01003058 memcpy(resp->sa, sdata->vif.addr, ETH_ALEN);
Johannes Berg46900292009-02-15 12:44:28 +01003059 memcpy(resp->bssid, sdata->u.mgd.bssid, ETH_ALEN);
Jouni Malinenfea14732009-01-08 13:32:06 +02003060 resp->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
3061 IEEE80211_STYPE_ACTION);
3062 skb_put(skb, 1 + sizeof(resp->u.action.u.sa_query));
3063 resp->u.action.category = WLAN_CATEGORY_SA_QUERY;
3064 resp->u.action.u.sa_query.action = WLAN_ACTION_SA_QUERY_RESPONSE;
3065 memcpy(resp->u.action.u.sa_query.trans_id,
3066 mgmt->u.action.u.sa_query.trans_id,
3067 WLAN_SA_QUERY_TR_ID_LEN);
3068
Johannes Berg62ae67b2009-11-18 18:42:05 +01003069 ieee80211_tx_skb(sdata, skb);
Jouni Malinenfea14732009-01-08 13:32:06 +02003070}
3071
Johannes Berg49461622008-06-30 15:10:45 +02003072static ieee80211_rx_result debug_noinline
Johannes Berg2e161f72010-08-12 15:38:38 +02003073ieee80211_rx_h_mgmt_check(struct ieee80211_rx_data *rx)
3074{
3075 struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *) rx->skb->data;
Johannes Berg554891e2010-09-24 12:38:25 +02003076 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(rx->skb);
Johannes Berg2e161f72010-08-12 15:38:38 +02003077
3078 /*
3079 * From here on, look only at management frames.
3080 * Data and control frames are already handled,
3081 * and unknown (reserved) frames are useless.
3082 */
3083 if (rx->skb->len < 24)
3084 return RX_DROP_MONITOR;
3085
3086 if (!ieee80211_is_mgmt(mgmt->frame_control))
3087 return RX_DROP_MONITOR;
3088
Johannes Bergee971922011-11-04 11:18:18 +01003089 if (rx->sdata->vif.type == NL80211_IFTYPE_AP &&
3090 ieee80211_is_beacon(mgmt->frame_control) &&
3091 !(rx->flags & IEEE80211_RX_BEACON_REPORTED)) {
Johannes Berg804483e2012-03-05 22:18:41 +01003092 int sig = 0;
3093
Tosoni1ad22fb2018-03-14 16:58:34 +00003094 if (ieee80211_hw_check(&rx->local->hw, SIGNAL_DBM) &&
3095 !(status->flag & RX_FLAG_NO_SIGNAL_VAL))
Johannes Berg804483e2012-03-05 22:18:41 +01003096 sig = status->signal;
3097
Johannes Bergee971922011-11-04 11:18:18 +01003098 cfg80211_report_obss_beacon(rx->local->hw.wiphy,
3099 rx->skb->data, rx->skb->len,
Ben Greear37c73b52012-10-26 14:49:25 -07003100 status->freq, sig);
Johannes Bergee971922011-11-04 11:18:18 +01003101 rx->flags |= IEEE80211_RX_BEACON_REPORTED;
3102 }
3103
Johannes Berg2e161f72010-08-12 15:38:38 +02003104 if (ieee80211_drop_unencrypted_mgmt(rx))
3105 return RX_DROP_UNUSABLE;
3106
3107 return RX_CONTINUE;
3108}
3109
3110static ieee80211_rx_result debug_noinline
Johannes Bergde1ede72008-09-09 14:42:50 +02003111ieee80211_rx_h_action(struct ieee80211_rx_data *rx)
3112{
3113 struct ieee80211_local *local = rx->local;
Johannes Bergeb9fb5b82009-11-16 13:58:20 +01003114 struct ieee80211_sub_if_data *sdata = rx->sdata;
Johannes Bergde1ede72008-09-09 14:42:50 +02003115 struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *) rx->skb->data;
Johannes Berg554891e2010-09-24 12:38:25 +02003116 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(rx->skb);
Johannes Bergde1ede72008-09-09 14:42:50 +02003117 int len = rx->skb->len;
3118
3119 if (!ieee80211_is_action(mgmt->frame_control))
3120 return RX_CONTINUE;
3121
Jouni Malinen026331c2010-02-15 12:53:10 +02003122 /* drop too small frames */
3123 if (len < IEEE80211_MIN_ACTION_SIZE)
3124 return RX_DROP_UNUSABLE;
3125
Marco Porsch815b8092012-12-05 15:04:26 -08003126 if (!rx->sta && mgmt->u.action.category != WLAN_CATEGORY_PUBLIC &&
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02003127 mgmt->u.action.category != WLAN_CATEGORY_SELF_PROTECTED &&
3128 mgmt->u.action.category != WLAN_CATEGORY_SPECTRUM_MGMT)
Johannes Berg84040802010-02-15 12:46:39 +02003129 return RX_DROP_UNUSABLE;
Johannes Bergde1ede72008-09-09 14:42:50 +02003130
Johannes Bergde1ede72008-09-09 14:42:50 +02003131 switch (mgmt->u.action.category) {
Johannes Berg1d8d3de2011-12-16 15:28:57 +01003132 case WLAN_CATEGORY_HT:
3133 /* reject HT action frames from stations not supporting HT */
3134 if (!rx->sta->sta.ht_cap.ht_supported)
3135 goto invalid;
3136
3137 if (sdata->vif.type != NL80211_IFTYPE_STATION &&
3138 sdata->vif.type != NL80211_IFTYPE_MESH_POINT &&
3139 sdata->vif.type != NL80211_IFTYPE_AP_VLAN &&
3140 sdata->vif.type != NL80211_IFTYPE_AP &&
3141 sdata->vif.type != NL80211_IFTYPE_ADHOC)
3142 break;
3143
Johannes Bergec61cd62012-12-28 12:12:10 +01003144 /* verify action & smps_control/chanwidth are present */
Johannes Berg1d8d3de2011-12-16 15:28:57 +01003145 if (len < IEEE80211_MIN_ACTION_SIZE + 2)
3146 goto invalid;
3147
3148 switch (mgmt->u.action.u.ht_smps.action) {
3149 case WLAN_HT_ACTION_SMPS: {
3150 struct ieee80211_supported_band *sband;
Johannes Bergaf0ed692013-02-12 14:21:00 +01003151 enum ieee80211_smps_mode smps_mode;
tamizhr@codeaurora.orgff84e7b2018-01-31 16:24:50 +05303152 struct sta_opmode_info sta_opmode = {};
Johannes Berg1d8d3de2011-12-16 15:28:57 +01003153
Ilan Peerc4d800d2020-01-31 13:12:53 +02003154 if (sdata->vif.type != NL80211_IFTYPE_AP &&
3155 sdata->vif.type != NL80211_IFTYPE_AP_VLAN)
3156 goto handled;
3157
Johannes Berg1d8d3de2011-12-16 15:28:57 +01003158 /* convert to HT capability */
3159 switch (mgmt->u.action.u.ht_smps.smps_control) {
3160 case WLAN_HT_SMPS_CONTROL_DISABLED:
Johannes Bergaf0ed692013-02-12 14:21:00 +01003161 smps_mode = IEEE80211_SMPS_OFF;
Johannes Berg1d8d3de2011-12-16 15:28:57 +01003162 break;
3163 case WLAN_HT_SMPS_CONTROL_STATIC:
Johannes Bergaf0ed692013-02-12 14:21:00 +01003164 smps_mode = IEEE80211_SMPS_STATIC;
Johannes Berg1d8d3de2011-12-16 15:28:57 +01003165 break;
3166 case WLAN_HT_SMPS_CONTROL_DYNAMIC:
Johannes Bergaf0ed692013-02-12 14:21:00 +01003167 smps_mode = IEEE80211_SMPS_DYNAMIC;
Johannes Berg1d8d3de2011-12-16 15:28:57 +01003168 break;
3169 default:
3170 goto invalid;
3171 }
Johannes Berg1d8d3de2011-12-16 15:28:57 +01003172
3173 /* if no change do nothing */
Johannes Bergaf0ed692013-02-12 14:21:00 +01003174 if (rx->sta->sta.smps_mode == smps_mode)
Johannes Berg1d8d3de2011-12-16 15:28:57 +01003175 goto handled;
Johannes Bergaf0ed692013-02-12 14:21:00 +01003176 rx->sta->sta.smps_mode = smps_mode;
tamizhr@codeaurora.org57566b22018-03-27 19:16:16 +05303177 sta_opmode.smps_mode =
3178 ieee80211_smps_mode_to_smps_mode(smps_mode);
tamizhr@codeaurora.orgff84e7b2018-01-31 16:24:50 +05303179 sta_opmode.changed = STA_OPMODE_SMPS_MODE_CHANGED;
Johannes Berg1d8d3de2011-12-16 15:28:57 +01003180
3181 sband = rx->local->hw.wiphy->bands[status->band];
3182
Johannes Berg64f68e52012-03-28 10:58:37 +02003183 rate_control_rate_update(local, sband, rx->sta,
3184 IEEE80211_RC_SMPS_CHANGED);
tamizhr@codeaurora.orgff84e7b2018-01-31 16:24:50 +05303185 cfg80211_sta_opmode_change_notify(sdata->dev,
3186 rx->sta->addr,
3187 &sta_opmode,
Yan-Hsuan Chuangc752cac2018-10-23 11:24:44 +08003188 GFP_ATOMIC);
Johannes Berg1d8d3de2011-12-16 15:28:57 +01003189 goto handled;
3190 }
Johannes Bergec61cd62012-12-28 12:12:10 +01003191 case WLAN_HT_ACTION_NOTIFY_CHANWIDTH: {
3192 struct ieee80211_supported_band *sband;
3193 u8 chanwidth = mgmt->u.action.u.ht_notify_cw.chanwidth;
Eliad Peller1c45c5c2014-12-14 11:05:51 +02003194 enum ieee80211_sta_rx_bandwidth max_bw, new_bw;
tamizhr@codeaurora.orgff84e7b2018-01-31 16:24:50 +05303195 struct sta_opmode_info sta_opmode = {};
Johannes Bergec61cd62012-12-28 12:12:10 +01003196
3197 /* If it doesn't support 40 MHz it can't change ... */
Johannes Berge1a0c6b2013-02-07 11:47:44 +01003198 if (!(rx->sta->sta.ht_cap.cap &
3199 IEEE80211_HT_CAP_SUP_WIDTH_20_40))
Johannes Bergec61cd62012-12-28 12:12:10 +01003200 goto handled;
3201
Johannes Berge1a0c6b2013-02-07 11:47:44 +01003202 if (chanwidth == IEEE80211_HT_CHANWIDTH_20MHZ)
Eliad Peller1c45c5c2014-12-14 11:05:51 +02003203 max_bw = IEEE80211_STA_RX_BW_20;
Johannes Bergec61cd62012-12-28 12:12:10 +01003204 else
Eliad Peller1c45c5c2014-12-14 11:05:51 +02003205 max_bw = ieee80211_sta_cap_rx_bw(rx->sta);
3206
3207 /* set cur_max_bandwidth and recalc sta bw */
3208 rx->sta->cur_max_bandwidth = max_bw;
3209 new_bw = ieee80211_sta_cur_vht_bw(rx->sta);
Johannes Berge1a0c6b2013-02-07 11:47:44 +01003210
3211 if (rx->sta->sta.bandwidth == new_bw)
3212 goto handled;
Johannes Bergec61cd62012-12-28 12:12:10 +01003213
Eliad Peller1c45c5c2014-12-14 11:05:51 +02003214 rx->sta->sta.bandwidth = new_bw;
Johannes Bergec61cd62012-12-28 12:12:10 +01003215 sband = rx->local->hw.wiphy->bands[status->band];
tamizhr@codeaurora.org97f5f422018-03-27 19:16:17 +05303216 sta_opmode.bw =
3217 ieee80211_sta_rx_bw_to_chan_width(rx->sta);
tamizhr@codeaurora.orgff84e7b2018-01-31 16:24:50 +05303218 sta_opmode.changed = STA_OPMODE_MAX_BW_CHANGED;
Johannes Bergec61cd62012-12-28 12:12:10 +01003219
3220 rate_control_rate_update(local, sband, rx->sta,
3221 IEEE80211_RC_BW_CHANGED);
tamizhr@codeaurora.orgff84e7b2018-01-31 16:24:50 +05303222 cfg80211_sta_opmode_change_notify(sdata->dev,
3223 rx->sta->addr,
3224 &sta_opmode,
Yan-Hsuan Chuangc752cac2018-10-23 11:24:44 +08003225 GFP_ATOMIC);
Johannes Bergec61cd62012-12-28 12:12:10 +01003226 goto handled;
3227 }
Johannes Berg1d8d3de2011-12-16 15:28:57 +01003228 default:
3229 goto invalid;
3230 }
3231
3232 break;
Johannes Berg1b3a2e42013-03-26 15:17:18 +01003233 case WLAN_CATEGORY_PUBLIC:
3234 if (len < IEEE80211_MIN_ACTION_SIZE + 1)
3235 goto invalid;
3236 if (sdata->vif.type != NL80211_IFTYPE_STATION)
3237 break;
3238 if (!rx->sta)
3239 break;
3240 if (!ether_addr_equal(mgmt->bssid, sdata->u.mgd.bssid))
3241 break;
3242 if (mgmt->u.action.u.ext_chan_switch.action_code !=
3243 WLAN_PUB_ACTION_EXT_CHANSW_ANN)
3244 break;
3245 if (len < offsetof(struct ieee80211_mgmt,
3246 u.action.u.ext_chan_switch.variable))
3247 goto invalid;
3248 goto queue;
Johannes Berg0af83d32012-12-27 18:55:36 +01003249 case WLAN_CATEGORY_VHT:
3250 if (sdata->vif.type != NL80211_IFTYPE_STATION &&
3251 sdata->vif.type != NL80211_IFTYPE_MESH_POINT &&
3252 sdata->vif.type != NL80211_IFTYPE_AP_VLAN &&
3253 sdata->vif.type != NL80211_IFTYPE_AP &&
3254 sdata->vif.type != NL80211_IFTYPE_ADHOC)
3255 break;
3256
3257 /* verify action code is present */
3258 if (len < IEEE80211_MIN_ACTION_SIZE + 1)
3259 goto invalid;
3260
3261 switch (mgmt->u.action.u.vht_opmode_notif.action_code) {
3262 case WLAN_VHT_ACTION_OPMODE_NOTIF: {
Johannes Berg0af83d32012-12-27 18:55:36 +01003263 /* verify opmode is present */
3264 if (len < IEEE80211_MIN_ACTION_SIZE + 2)
3265 goto invalid;
Johannes Bergd2941df2016-10-20 08:52:50 +02003266 goto queue;
Johannes Berg0af83d32012-12-27 18:55:36 +01003267 }
Sara Sharon23a1f8d2015-12-08 16:04:31 +02003268 case WLAN_VHT_ACTION_GROUPID_MGMT: {
3269 if (len < IEEE80211_MIN_ACTION_SIZE + 25)
3270 goto invalid;
3271 goto queue;
3272 }
Johannes Berg0af83d32012-12-27 18:55:36 +01003273 default:
3274 break;
3275 }
3276 break;
Johannes Bergde1ede72008-09-09 14:42:50 +02003277 case WLAN_CATEGORY_BACK:
Johannes Berg8abd3f92009-02-10 21:25:47 +01003278 if (sdata->vif.type != NL80211_IFTYPE_STATION &&
Thomas Pedersenae2772b2011-10-26 14:47:29 -07003279 sdata->vif.type != NL80211_IFTYPE_MESH_POINT &&
Johannes Berg8abd3f92009-02-10 21:25:47 +01003280 sdata->vif.type != NL80211_IFTYPE_AP_VLAN &&
Alexander Simon13c40c52011-11-30 16:56:34 +01003281 sdata->vif.type != NL80211_IFTYPE_AP &&
3282 sdata->vif.type != NL80211_IFTYPE_ADHOC)
Johannes Berg84040802010-02-15 12:46:39 +02003283 break;
Johannes Berg8abd3f92009-02-10 21:25:47 +01003284
Jouni Malinen026331c2010-02-15 12:53:10 +02003285 /* verify action_code is present */
3286 if (len < IEEE80211_MIN_ACTION_SIZE + 1)
3287 break;
3288
Johannes Bergde1ede72008-09-09 14:42:50 +02003289 switch (mgmt->u.action.u.addba_req.action_code) {
3290 case WLAN_ACTION_ADDBA_REQ:
3291 if (len < (IEEE80211_MIN_ACTION_SIZE +
3292 sizeof(mgmt->u.action.u.addba_req)))
Johannes Bergbed7ee6e2010-06-10 10:21:35 +02003293 goto invalid;
3294 break;
Johannes Bergde1ede72008-09-09 14:42:50 +02003295 case WLAN_ACTION_ADDBA_RESP:
3296 if (len < (IEEE80211_MIN_ACTION_SIZE +
3297 sizeof(mgmt->u.action.u.addba_resp)))
Johannes Bergbed7ee6e2010-06-10 10:21:35 +02003298 goto invalid;
3299 break;
Johannes Bergde1ede72008-09-09 14:42:50 +02003300 case WLAN_ACTION_DELBA:
3301 if (len < (IEEE80211_MIN_ACTION_SIZE +
3302 sizeof(mgmt->u.action.u.delba)))
Johannes Bergbed7ee6e2010-06-10 10:21:35 +02003303 goto invalid;
3304 break;
3305 default:
3306 goto invalid;
Johannes Bergde1ede72008-09-09 14:42:50 +02003307 }
Johannes Bergbed7ee6e2010-06-10 10:21:35 +02003308
Johannes Berg8b58ff82010-06-10 10:21:51 +02003309 goto queue;
Johannes Berg39192c02008-09-09 14:49:03 +02003310 case WLAN_CATEGORY_SPECTRUM_MGMT:
Jouni Malinen026331c2010-02-15 12:53:10 +02003311 /* verify action_code is present */
3312 if (len < IEEE80211_MIN_ACTION_SIZE + 1)
3313 break;
3314
Johannes Berg39192c02008-09-09 14:49:03 +02003315 switch (mgmt->u.action.u.measurement.action_code) {
3316 case WLAN_ACTION_SPCT_MSR_REQ:
Johannes Berg57fbcce2016-04-12 15:56:15 +02003317 if (status->band != NL80211_BAND_5GHZ)
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02003318 break;
3319
Johannes Berg39192c02008-09-09 14:49:03 +02003320 if (len < (IEEE80211_MIN_ACTION_SIZE +
3321 sizeof(mgmt->u.action.u.measurement)))
Johannes Berg84040802010-02-15 12:46:39 +02003322 break;
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02003323
Johannes Bergcc32abd2009-05-15 11:52:31 +02003324 if (sdata->vif.type != NL80211_IFTYPE_STATION)
Johannes Berg84040802010-02-15 12:46:39 +02003325 break;
Johannes Bergcc32abd2009-05-15 11:52:31 +02003326
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02003327 ieee80211_process_measurement_req(sdata, mgmt, len);
3328 goto handled;
3329 case WLAN_ACTION_SPCT_CHL_SWITCH: {
3330 u8 *bssid;
3331 if (len < (IEEE80211_MIN_ACTION_SIZE +
3332 sizeof(mgmt->u.action.u.chan_switch)))
3333 break;
3334
3335 if (sdata->vif.type != NL80211_IFTYPE_STATION &&
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07003336 sdata->vif.type != NL80211_IFTYPE_ADHOC &&
3337 sdata->vif.type != NL80211_IFTYPE_MESH_POINT)
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02003338 break;
3339
3340 if (sdata->vif.type == NL80211_IFTYPE_STATION)
3341 bssid = sdata->u.mgd.bssid;
3342 else if (sdata->vif.type == NL80211_IFTYPE_ADHOC)
3343 bssid = sdata->u.ibss.bssid;
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07003344 else if (sdata->vif.type == NL80211_IFTYPE_MESH_POINT)
3345 bssid = mgmt->sa;
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02003346 else
3347 break;
3348
3349 if (!ether_addr_equal(mgmt->bssid, bssid))
Johannes Berg84040802010-02-15 12:46:39 +02003350 break;
Sujithc481ec92009-01-06 09:28:37 +05303351
Johannes Berg8b58ff82010-06-10 10:21:51 +02003352 goto queue;
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02003353 }
Johannes Berg39192c02008-09-09 14:49:03 +02003354 }
3355 break;
Jouni Malinenfea14732009-01-08 13:32:06 +02003356 case WLAN_CATEGORY_SA_QUERY:
3357 if (len < (IEEE80211_MIN_ACTION_SIZE +
3358 sizeof(mgmt->u.action.u.sa_query)))
Johannes Berg84040802010-02-15 12:46:39 +02003359 break;
3360
Jouni Malinenfea14732009-01-08 13:32:06 +02003361 switch (mgmt->u.action.u.sa_query.action) {
3362 case WLAN_ACTION_SA_QUERY_REQUEST:
3363 if (sdata->vif.type != NL80211_IFTYPE_STATION)
Johannes Berg84040802010-02-15 12:46:39 +02003364 break;
Jouni Malinenfea14732009-01-08 13:32:06 +02003365 ieee80211_process_sa_query_req(sdata, mgmt, len);
Johannes Berg84040802010-02-15 12:46:39 +02003366 goto handled;
Jouni Malinenfea14732009-01-08 13:32:06 +02003367 }
3368 break;
Thomas Pedersen8db09852011-08-12 20:01:00 -07003369 case WLAN_CATEGORY_SELF_PROTECTED:
Johannes Berg9b395bc2012-10-26 00:36:40 +02003370 if (len < (IEEE80211_MIN_ACTION_SIZE +
3371 sizeof(mgmt->u.action.u.self_prot.action_code)))
3372 break;
3373
Thomas Pedersen8db09852011-08-12 20:01:00 -07003374 switch (mgmt->u.action.u.self_prot.action_code) {
3375 case WLAN_SP_MESH_PEERING_OPEN:
3376 case WLAN_SP_MESH_PEERING_CLOSE:
3377 case WLAN_SP_MESH_PEERING_CONFIRM:
3378 if (!ieee80211_vif_is_mesh(&sdata->vif))
3379 goto invalid;
Thomas Pedersena6dad6a2013-03-04 13:06:12 -08003380 if (sdata->u.mesh.user_mpm)
Thomas Pedersen8db09852011-08-12 20:01:00 -07003381 /* userspace handles this frame */
3382 break;
3383 goto queue;
3384 case WLAN_SP_MGK_INFORM:
3385 case WLAN_SP_MGK_ACK:
3386 if (!ieee80211_vif_is_mesh(&sdata->vif))
3387 goto invalid;
3388 break;
3389 }
3390 break;
Javier Cardonad3aaec8a2011-05-03 16:57:09 -07003391 case WLAN_CATEGORY_MESH_ACTION:
Johannes Berg9b395bc2012-10-26 00:36:40 +02003392 if (len < (IEEE80211_MIN_ACTION_SIZE +
3393 sizeof(mgmt->u.action.u.mesh_action.action_code)))
3394 break;
3395
Johannes Berg77a121c2010-06-10 10:21:34 +02003396 if (!ieee80211_vif_is_mesh(&sdata->vif))
3397 break;
Thomas Pedersen25d49e42011-08-11 19:35:15 -07003398 if (mesh_action_is_path_sel(mgmt) &&
Johannes Berg1df332e2012-10-26 00:09:11 +02003399 !mesh_path_sel_is_hwmp(sdata))
Javier Cardonac7108a72010-12-16 17:37:50 -08003400 break;
3401 goto queue;
Johannes Berg84040802010-02-15 12:46:39 +02003402 }
Jouni Malinen026331c2010-02-15 12:53:10 +02003403
Johannes Berg2e161f72010-08-12 15:38:38 +02003404 return RX_CONTINUE;
3405
Johannes Bergbed7ee6e2010-06-10 10:21:35 +02003406 invalid:
Johannes Berg554891e2010-09-24 12:38:25 +02003407 status->rx_flags |= IEEE80211_RX_MALFORMED_ACTION_FRM;
Johannes Berg2e161f72010-08-12 15:38:38 +02003408 /* will return in the next handlers */
3409 return RX_CONTINUE;
3410
3411 handled:
3412 if (rx->sta)
Johannes Berge5a9f8d2015-10-16 17:54:47 +02003413 rx->sta->rx_stats.packets++;
Johannes Berg2e161f72010-08-12 15:38:38 +02003414 dev_kfree_skb(rx->skb);
3415 return RX_QUEUED;
3416
3417 queue:
Johannes Berg2e161f72010-08-12 15:38:38 +02003418 skb_queue_tail(&sdata->skb_queue, rx->skb);
3419 ieee80211_queue_work(&local->hw, &sdata->work);
3420 if (rx->sta)
Johannes Berge5a9f8d2015-10-16 17:54:47 +02003421 rx->sta->rx_stats.packets++;
Johannes Berg2e161f72010-08-12 15:38:38 +02003422 return RX_QUEUED;
3423}
3424
3425static ieee80211_rx_result debug_noinline
3426ieee80211_rx_h_userspace_mgmt(struct ieee80211_rx_data *rx)
3427{
Johannes Berg554891e2010-09-24 12:38:25 +02003428 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(rx->skb);
Johannes Berg804483e2012-03-05 22:18:41 +01003429 int sig = 0;
Johannes Berg2e161f72010-08-12 15:38:38 +02003430
3431 /* skip known-bad action frames and return them in the next handler */
Johannes Berg554891e2010-09-24 12:38:25 +02003432 if (status->rx_flags & IEEE80211_RX_MALFORMED_ACTION_FRM)
Johannes Berg2e161f72010-08-12 15:38:38 +02003433 return RX_CONTINUE;
Felix Fietkaud7907442010-01-07 20:23:53 +01003434
Jouni Malinen026331c2010-02-15 12:53:10 +02003435 /*
3436 * Getting here means the kernel doesn't know how to handle
3437 * it, but maybe userspace does ... include returned frames
3438 * so userspace can register for those to know whether ones
3439 * it transmitted were processed or returned.
3440 */
Jouni Malinen026331c2010-02-15 12:53:10 +02003441
Tosoni1ad22fb2018-03-14 16:58:34 +00003442 if (ieee80211_hw_check(&rx->local->hw, SIGNAL_DBM) &&
3443 !(status->flag & RX_FLAG_NO_SIGNAL_VAL))
Johannes Berg804483e2012-03-05 22:18:41 +01003444 sig = status->signal;
3445
Johannes Berg71bbc992012-06-15 15:30:18 +02003446 if (cfg80211_rx_mgmt(&rx->sdata->wdev, status->freq, sig,
Vladimir Kondratiev970fdfa2014-08-11 03:29:57 -07003447 rx->skb->data, rx->skb->len, 0)) {
Johannes Berg2e161f72010-08-12 15:38:38 +02003448 if (rx->sta)
Johannes Berge5a9f8d2015-10-16 17:54:47 +02003449 rx->sta->rx_stats.packets++;
Johannes Berg2e161f72010-08-12 15:38:38 +02003450 dev_kfree_skb(rx->skb);
3451 return RX_QUEUED;
3452 }
3453
Johannes Berg2e161f72010-08-12 15:38:38 +02003454 return RX_CONTINUE;
3455}
3456
3457static ieee80211_rx_result debug_noinline
3458ieee80211_rx_h_action_return(struct ieee80211_rx_data *rx)
3459{
3460 struct ieee80211_local *local = rx->local;
3461 struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *) rx->skb->data;
3462 struct sk_buff *nskb;
3463 struct ieee80211_sub_if_data *sdata = rx->sdata;
Johannes Berg554891e2010-09-24 12:38:25 +02003464 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(rx->skb);
Johannes Berg2e161f72010-08-12 15:38:38 +02003465
3466 if (!ieee80211_is_action(mgmt->frame_control))
3467 return RX_CONTINUE;
3468
3469 /*
3470 * For AP mode, hostapd is responsible for handling any action
3471 * frames that we didn't handle, including returning unknown
3472 * ones. For all other modes we will return them to the sender,
3473 * setting the 0x80 bit in the action category, as required by
Johannes Berg4b5ebcc2012-06-27 15:38:56 +02003474 * 802.11-2012 9.24.4.
Johannes Berg2e161f72010-08-12 15:38:38 +02003475 * Newer versions of hostapd shall also use the management frame
3476 * registration mechanisms, but older ones still use cooked
3477 * monitor interfaces so push all frames there.
3478 */
Johannes Berg554891e2010-09-24 12:38:25 +02003479 if (!(status->rx_flags & IEEE80211_RX_MALFORMED_ACTION_FRM) &&
Johannes Berg2e161f72010-08-12 15:38:38 +02003480 (sdata->vif.type == NL80211_IFTYPE_AP ||
3481 sdata->vif.type == NL80211_IFTYPE_AP_VLAN))
3482 return RX_DROP_MONITOR;
Jouni Malinen026331c2010-02-15 12:53:10 +02003483
Johannes Berg4b5ebcc2012-06-27 15:38:56 +02003484 if (is_multicast_ether_addr(mgmt->da))
3485 return RX_DROP_MONITOR;
3486
Johannes Berg84040802010-02-15 12:46:39 +02003487 /* do not return rejected action frames */
3488 if (mgmt->u.action.category & 0x80)
3489 return RX_DROP_UNUSABLE;
3490
3491 nskb = skb_copy_expand(rx->skb, local->hw.extra_tx_headroom, 0,
3492 GFP_ATOMIC);
3493 if (nskb) {
John W. Linville292b4df2010-06-24 11:13:56 -04003494 struct ieee80211_mgmt *nmgmt = (void *)nskb->data;
Johannes Berg84040802010-02-15 12:46:39 +02003495
John W. Linville292b4df2010-06-24 11:13:56 -04003496 nmgmt->u.action.category |= 0x80;
3497 memcpy(nmgmt->da, nmgmt->sa, ETH_ALEN);
3498 memcpy(nmgmt->sa, rx->sdata->vif.addr, ETH_ALEN);
Johannes Berg84040802010-02-15 12:46:39 +02003499
3500 memset(nskb->cb, 0, sizeof(nskb->cb));
3501
Johannes Berg07e5a5f2013-03-07 13:22:05 +01003502 if (rx->sdata->vif.type == NL80211_IFTYPE_P2P_DEVICE) {
3503 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(nskb);
3504
3505 info->flags = IEEE80211_TX_CTL_TX_OFFCHAN |
3506 IEEE80211_TX_INTFL_OFFCHAN_TX_OK |
3507 IEEE80211_TX_CTL_NO_CCK_RATE;
Johannes Berg30686bf2015-06-02 21:39:54 +02003508 if (ieee80211_hw_check(&local->hw, QUEUE_CONTROL))
Johannes Berg07e5a5f2013-03-07 13:22:05 +01003509 info->hw_queue =
3510 local->hw.offchannel_tx_hw_queue;
3511 }
3512
3513 __ieee80211_tx_skb_tid_band(rx->sdata, nskb, 7,
Johannes Bergb9771d42018-05-28 15:47:41 +02003514 status->band, 0);
Johannes Bergde1ede72008-09-09 14:42:50 +02003515 }
Johannes Berg39192c02008-09-09 14:49:03 +02003516 dev_kfree_skb(rx->skb);
3517 return RX_QUEUED;
Johannes Bergde1ede72008-09-09 14:42:50 +02003518}
3519
3520static ieee80211_rx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +01003521ieee80211_rx_h_mgmt(struct ieee80211_rx_data *rx)
Johannes Berg571ecf62007-07-27 15:43:22 +02003522{
Johannes Bergeb9fb5b82009-11-16 13:58:20 +01003523 struct ieee80211_sub_if_data *sdata = rx->sdata;
Johannes Berg77a121c2010-06-10 10:21:34 +02003524 struct ieee80211_mgmt *mgmt = (void *)rx->skb->data;
3525 __le16 stype;
Johannes Berg571ecf62007-07-27 15:43:22 +02003526
Johannes Berg77a121c2010-06-10 10:21:34 +02003527 stype = mgmt->frame_control & cpu_to_le16(IEEE80211_FCTL_STYPE);
Johannes Berg472dbc42008-09-11 00:01:49 +02003528
Johannes Berg77a121c2010-06-10 10:21:34 +02003529 if (!ieee80211_vif_is_mesh(&sdata->vif) &&
3530 sdata->vif.type != NL80211_IFTYPE_ADHOC &&
Rostislav Lisovy239281f2014-11-03 10:33:19 +01003531 sdata->vif.type != NL80211_IFTYPE_OCB &&
Johannes Berg77a121c2010-06-10 10:21:34 +02003532 sdata->vif.type != NL80211_IFTYPE_STATION)
3533 return RX_DROP_MONITOR;
Johannes Bergf9d540e2007-09-28 14:02:09 +02003534
Johannes Berg77a121c2010-06-10 10:21:34 +02003535 switch (stype) {
Johannes Berg66e67e42012-01-20 13:55:27 +01003536 case cpu_to_le16(IEEE80211_STYPE_AUTH):
Johannes Berg77a121c2010-06-10 10:21:34 +02003537 case cpu_to_le16(IEEE80211_STYPE_BEACON):
3538 case cpu_to_le16(IEEE80211_STYPE_PROBE_RESP):
3539 /* process for all: mesh, mlme, ibss */
3540 break;
Johannes Berg95697f92019-10-04 15:37:05 +03003541 case cpu_to_le16(IEEE80211_STYPE_DEAUTH):
3542 if (is_multicast_ether_addr(mgmt->da) &&
3543 !is_broadcast_ether_addr(mgmt->da))
3544 return RX_DROP_MONITOR;
3545
3546 /* process only for station/IBSS */
3547 if (sdata->vif.type != NL80211_IFTYPE_STATION &&
3548 sdata->vif.type != NL80211_IFTYPE_ADHOC)
3549 return RX_DROP_MONITOR;
3550 break;
Johannes Berg66e67e42012-01-20 13:55:27 +01003551 case cpu_to_le16(IEEE80211_STYPE_ASSOC_RESP):
3552 case cpu_to_le16(IEEE80211_STYPE_REASSOC_RESP):
Johannes Berg77a121c2010-06-10 10:21:34 +02003553 case cpu_to_le16(IEEE80211_STYPE_DISASSOC):
Christian Lamparter2c31333a2010-11-29 20:53:23 +01003554 if (is_multicast_ether_addr(mgmt->da) &&
3555 !is_broadcast_ether_addr(mgmt->da))
3556 return RX_DROP_MONITOR;
3557
Johannes Berg77a121c2010-06-10 10:21:34 +02003558 /* process only for station */
3559 if (sdata->vif.type != NL80211_IFTYPE_STATION)
3560 return RX_DROP_MONITOR;
3561 break;
3562 case cpu_to_le16(IEEE80211_STYPE_PROBE_REQ):
Thomas Pedersen9fb04b52013-02-14 11:20:14 -08003563 /* process only for ibss and mesh */
3564 if (sdata->vif.type != NL80211_IFTYPE_ADHOC &&
3565 sdata->vif.type != NL80211_IFTYPE_MESH_POINT)
Johannes Berg77a121c2010-06-10 10:21:34 +02003566 return RX_DROP_MONITOR;
3567 break;
3568 default:
3569 return RX_DROP_MONITOR;
3570 }
Johannes Berg46900292009-02-15 12:44:28 +01003571
Johannes Berg77a121c2010-06-10 10:21:34 +02003572 /* queue up frame and kick off work to process it */
3573 skb_queue_tail(&sdata->skb_queue, rx->skb);
3574 ieee80211_queue_work(&rx->local->hw, &sdata->work);
Johannes Berg8b58ff82010-06-10 10:21:51 +02003575 if (rx->sta)
Johannes Berge5a9f8d2015-10-16 17:54:47 +02003576 rx->sta->rx_stats.packets++;
Johannes Berg77a121c2010-06-10 10:21:34 +02003577
3578 return RX_QUEUED;
Johannes Berg571ecf62007-07-27 15:43:22 +02003579}
3580
Johannes Berg5f0b7de2009-11-16 13:58:21 +01003581static void ieee80211_rx_cooked_monitor(struct ieee80211_rx_data *rx,
3582 struct ieee80211_rate *rate)
Michael Wu3d30d942008-01-31 19:48:27 +01003583{
3584 struct ieee80211_sub_if_data *sdata;
3585 struct ieee80211_local *local = rx->local;
Michael Wu3d30d942008-01-31 19:48:27 +01003586 struct sk_buff *skb = rx->skb, *skb2;
3587 struct net_device *prev_dev = NULL;
Johannes Bergeb9fb5b82009-11-16 13:58:20 +01003588 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
Johannes Berg293702a2012-03-02 13:18:19 +01003589 int needed_headroom;
Michael Wu3d30d942008-01-31 19:48:27 +01003590
Johannes Berg554891e2010-09-24 12:38:25 +02003591 /*
3592 * If cooked monitor has been processed already, then
3593 * don't do it again. If not, set the flag.
3594 */
3595 if (rx->flags & IEEE80211_RX_CMNTR)
John W. Linville7c1e1832010-09-24 15:52:49 -04003596 goto out_free_skb;
Johannes Berg554891e2010-09-24 12:38:25 +02003597 rx->flags |= IEEE80211_RX_CMNTR;
John W. Linville7c1e1832010-09-24 15:52:49 -04003598
Johannes Berg152c4772011-10-21 10:22:22 +02003599 /* If there are no cooked monitor interfaces, just free the SKB */
3600 if (!local->cooked_mntrs)
3601 goto out_free_skb;
3602
Johannes Berg1f7bba72014-11-06 22:56:36 +01003603 /* vendor data is long removed here */
3604 status->flag &= ~RX_FLAG_RADIOTAP_VENDOR_DATA;
Johannes Berg293702a2012-03-02 13:18:19 +01003605 /* room for the radiotap header based on driver features */
Johannes Berg1f7bba72014-11-06 22:56:36 +01003606 needed_headroom = ieee80211_rx_radiotap_hdrlen(local, status, skb);
Johannes Berg293702a2012-03-02 13:18:19 +01003607
3608 if (skb_headroom(skb) < needed_headroom &&
3609 pskb_expand_head(skb, needed_headroom, 0, GFP_ATOMIC))
Michael Wu3d30d942008-01-31 19:48:27 +01003610 goto out_free_skb;
3611
Johannes Berg293702a2012-03-02 13:18:19 +01003612 /* prepend radiotap information */
Felix Fietkau973ef212012-04-16 14:56:48 +02003613 ieee80211_add_rx_radiotap_header(local, skb, rate, needed_headroom,
3614 false);
Michael Wu3d30d942008-01-31 19:48:27 +01003615
Zhang Shengjud57a5442016-03-03 01:16:56 +00003616 skb_reset_mac_header(skb);
Michael Wu3d30d942008-01-31 19:48:27 +01003617 skb->ip_summed = CHECKSUM_UNNECESSARY;
3618 skb->pkt_type = PACKET_OTHERHOST;
3619 skb->protocol = htons(ETH_P_802_2);
3620
3621 list_for_each_entry_rcu(sdata, &local->interfaces, list) {
Johannes Berg9607e6b662009-12-23 13:15:31 +01003622 if (!ieee80211_sdata_running(sdata))
Michael Wu3d30d942008-01-31 19:48:27 +01003623 continue;
3624
Johannes Berg05c914f2008-09-11 00:01:58 +02003625 if (sdata->vif.type != NL80211_IFTYPE_MONITOR ||
Aviya Erenfeldd8212182016-08-29 23:25:15 +03003626 !(sdata->u.mntr.flags & MONITOR_FLAG_COOK_FRAMES))
Michael Wu3d30d942008-01-31 19:48:27 +01003627 continue;
3628
3629 if (prev_dev) {
3630 skb2 = skb_clone(skb, GFP_ATOMIC);
3631 if (skb2) {
3632 skb2->dev = prev_dev;
John W. Linville5548a8a2010-06-24 14:25:56 -04003633 netif_receive_skb(skb2);
Michael Wu3d30d942008-01-31 19:48:27 +01003634 }
3635 }
3636
3637 prev_dev = sdata->dev;
Johannes Berg5a490512015-04-22 17:10:38 +02003638 ieee80211_rx_stats(sdata->dev, skb->len);
Michael Wu3d30d942008-01-31 19:48:27 +01003639 }
3640
3641 if (prev_dev) {
3642 skb->dev = prev_dev;
John W. Linville5548a8a2010-06-24 14:25:56 -04003643 netif_receive_skb(skb);
Johannes Berg554891e2010-09-24 12:38:25 +02003644 return;
3645 }
Michael Wu3d30d942008-01-31 19:48:27 +01003646
3647 out_free_skb:
3648 dev_kfree_skb(skb);
3649}
3650
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003651static void ieee80211_rx_handlers_result(struct ieee80211_rx_data *rx,
3652 ieee80211_rx_result res)
3653{
3654 switch (res) {
3655 case RX_DROP_MONITOR:
3656 I802_DEBUG_INC(rx->sdata->local->rx_handlers_drop);
3657 if (rx->sta)
Johannes Berge5a9f8d2015-10-16 17:54:47 +02003658 rx->sta->rx_stats.dropped++;
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003659 /* fall through */
3660 case RX_CONTINUE: {
3661 struct ieee80211_rate *rate = NULL;
3662 struct ieee80211_supported_band *sband;
3663 struct ieee80211_rx_status *status;
3664
3665 status = IEEE80211_SKB_RXCB((rx->skb));
3666
3667 sband = rx->local->hw.wiphy->bands[status->band];
Luca Coelho41cbb0f2018-06-09 09:14:44 +03003668 if (status->encoding == RX_ENC_LEGACY)
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003669 rate = &sband->bitrates[status->rate_idx];
3670
3671 ieee80211_rx_cooked_monitor(rx, rate);
3672 break;
3673 }
3674 case RX_DROP_UNUSABLE:
3675 I802_DEBUG_INC(rx->sdata->local->rx_handlers_drop);
3676 if (rx->sta)
Johannes Berge5a9f8d2015-10-16 17:54:47 +02003677 rx->sta->rx_stats.dropped++;
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003678 dev_kfree_skb(rx->skb);
3679 break;
3680 case RX_QUEUED:
3681 I802_DEBUG_INC(rx->sdata->local->rx_handlers_queued);
3682 break;
3683 }
3684}
3685
Christian Lamparterf9e124f2013-02-04 17:44:44 +00003686static void ieee80211_rx_handlers(struct ieee80211_rx_data *rx,
3687 struct sk_buff_head *frames)
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003688{
3689 ieee80211_rx_result res = RX_DROP_MONITOR;
3690 struct sk_buff *skb;
3691
3692#define CALL_RXH(rxh) \
3693 do { \
3694 res = rxh(rx); \
3695 if (res != RX_CONTINUE) \
3696 goto rxh_next; \
Johannes Berg8ebaa5b2016-03-31 20:02:04 +03003697 } while (0)
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003698
Johannes Berg45ceeee2015-03-16 09:08:20 +01003699 /* Lock here to avoid hitting all of the data used in the RX
3700 * path (e.g. key data, station data, ...) concurrently when
3701 * a frame is released from the reorder buffer due to timeout
3702 * from the timer, potentially concurrently with RX from the
3703 * driver.
3704 */
Christian Lamparterf9e124f2013-02-04 17:44:44 +00003705 spin_lock_bh(&rx->local->rx_path_lock);
Christian Lamparter24a8fda2010-12-30 17:25:29 +01003706
Christian Lamparterf9e124f2013-02-04 17:44:44 +00003707 while ((skb = __skb_dequeue(frames))) {
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003708 /*
3709 * all the other fields are valid across frames
3710 * that belong to an aMPDU since they are on the
3711 * same TID from the same station
3712 */
3713 rx->skb = skb;
3714
Johannes Berg8ebaa5b2016-03-31 20:02:04 +03003715 CALL_RXH(ieee80211_rx_h_check_more_data);
3716 CALL_RXH(ieee80211_rx_h_uapsd_and_pspoll);
3717 CALL_RXH(ieee80211_rx_h_sta_process);
3718 CALL_RXH(ieee80211_rx_h_decrypt);
3719 CALL_RXH(ieee80211_rx_h_defragment);
3720 CALL_RXH(ieee80211_rx_h_michael_mic_verify);
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003721 /* must be after MMIC verify so header is counted in MPDU mic */
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003722#ifdef CONFIG_MAC80211_MESH
3723 if (ieee80211_vif_is_mesh(&rx->sdata->vif))
3724 CALL_RXH(ieee80211_rx_h_mesh_fwding);
3725#endif
Johannes Berg8ebaa5b2016-03-31 20:02:04 +03003726 CALL_RXH(ieee80211_rx_h_amsdu);
3727 CALL_RXH(ieee80211_rx_h_data);
Christian Lamparterf9e124f2013-02-04 17:44:44 +00003728
3729 /* special treatment -- needs the queue */
3730 res = ieee80211_rx_h_ctrl(rx, frames);
3731 if (res != RX_CONTINUE)
3732 goto rxh_next;
3733
Johannes Berg8ebaa5b2016-03-31 20:02:04 +03003734 CALL_RXH(ieee80211_rx_h_mgmt_check);
3735 CALL_RXH(ieee80211_rx_h_action);
3736 CALL_RXH(ieee80211_rx_h_userspace_mgmt);
3737 CALL_RXH(ieee80211_rx_h_action_return);
3738 CALL_RXH(ieee80211_rx_h_mgmt);
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003739
3740 rxh_next:
3741 ieee80211_rx_handlers_result(rx, res);
Christian Lamparterf9e124f2013-02-04 17:44:44 +00003742
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003743#undef CALL_RXH
3744 }
Christian Lamparter24a8fda2010-12-30 17:25:29 +01003745
Christian Lamparterf9e124f2013-02-04 17:44:44 +00003746 spin_unlock_bh(&rx->local->rx_path_lock);
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003747}
Johannes Berg571ecf62007-07-27 15:43:22 +02003748
Johannes Berg4406c372010-09-24 11:21:06 +02003749static void ieee80211_invoke_rx_handlers(struct ieee80211_rx_data *rx)
Johannes Berg58905292008-01-31 19:48:25 +01003750{
Christian Lamparterf9e124f2013-02-04 17:44:44 +00003751 struct sk_buff_head reorder_release;
Johannes Berg58905292008-01-31 19:48:25 +01003752 ieee80211_rx_result res = RX_DROP_MONITOR;
3753
Christian Lamparterf9e124f2013-02-04 17:44:44 +00003754 __skb_queue_head_init(&reorder_release);
3755
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02003756#define CALL_RXH(rxh) \
3757 do { \
3758 res = rxh(rx); \
3759 if (res != RX_CONTINUE) \
Johannes Berg2569a822009-11-25 17:46:17 +01003760 goto rxh_next; \
Johannes Berg8ebaa5b2016-03-31 20:02:04 +03003761 } while (0)
Johannes Berg58905292008-01-31 19:48:25 +01003762
Johannes Berg8ebaa5b2016-03-31 20:02:04 +03003763 CALL_RXH(ieee80211_rx_h_check_dup);
3764 CALL_RXH(ieee80211_rx_h_check);
Johannes Berg2569a822009-11-25 17:46:17 +01003765
Christian Lamparterf9e124f2013-02-04 17:44:44 +00003766 ieee80211_rx_reorder_ampdu(rx, &reorder_release);
Johannes Berg2569a822009-11-25 17:46:17 +01003767
Christian Lamparterf9e124f2013-02-04 17:44:44 +00003768 ieee80211_rx_handlers(rx, &reorder_release);
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003769 return;
Johannes Berg49461622008-06-30 15:10:45 +02003770
Johannes Berg2569a822009-11-25 17:46:17 +01003771 rxh_next:
Christian Lamparteraa0c8632010-08-05 01:36:04 +02003772 ieee80211_rx_handlers_result(rx, res);
3773
3774#undef CALL_RXH
Johannes Berg58905292008-01-31 19:48:25 +01003775}
3776
Christian Lamparter2bff8ebf2010-08-05 01:36:41 +02003777/*
Johannes Bergdd318572010-11-29 11:09:16 +01003778 * This function makes calls into the RX path, therefore
3779 * it has to be invoked under RCU read lock.
Christian Lamparter2bff8ebf2010-08-05 01:36:41 +02003780 */
3781void ieee80211_release_reorder_timeout(struct sta_info *sta, int tid)
3782{
Christian Lamparterf9e124f2013-02-04 17:44:44 +00003783 struct sk_buff_head frames;
Johannes Berg554891e2010-09-24 12:38:25 +02003784 struct ieee80211_rx_data rx = {
3785 .sta = sta,
3786 .sdata = sta->sdata,
3787 .local = sta->local,
Johannes Berg9e262972011-07-07 18:45:03 +02003788 /* This is OK -- must be QoS data frame */
3789 .security_idx = tid,
3790 .seqno_idx = tid,
Johannes Bergaf9f9b22015-06-11 16:02:32 +02003791 .napi = NULL, /* must be NULL to not have races */
Johannes Berg554891e2010-09-24 12:38:25 +02003792 };
Christian Lamparter2c15a0c2010-08-24 19:22:42 +02003793 struct tid_ampdu_rx *tid_agg_rx;
3794
3795 tid_agg_rx = rcu_dereference(sta->ampdu_mlme.tid_rx[tid]);
3796 if (!tid_agg_rx)
3797 return;
Christian Lamparter2bff8ebf2010-08-05 01:36:41 +02003798
Christian Lamparterf9e124f2013-02-04 17:44:44 +00003799 __skb_queue_head_init(&frames);
3800
Christian Lamparter2c15a0c2010-08-24 19:22:42 +02003801 spin_lock(&tid_agg_rx->reorder_lock);
Christian Lamparterf9e124f2013-02-04 17:44:44 +00003802 ieee80211_sta_reorder_release(sta->sdata, tid_agg_rx, &frames);
Christian Lamparter2c15a0c2010-08-24 19:22:42 +02003803 spin_unlock(&tid_agg_rx->reorder_lock);
Christian Lamparter2bff8ebf2010-08-05 01:36:41 +02003804
Emmanuel Grumbachb497de62015-04-20 22:53:38 +03003805 if (!skb_queue_empty(&frames)) {
3806 struct ieee80211_event event = {
3807 .type = BA_FRAME_TIMEOUT,
3808 .u.ba.tid = tid,
3809 .u.ba.sta = &sta->sta,
3810 };
3811 drv_event_callback(rx.local, rx.sdata, &event);
3812 }
3813
Christian Lamparterf9e124f2013-02-04 17:44:44 +00003814 ieee80211_rx_handlers(&rx, &frames);
Christian Lamparter2bff8ebf2010-08-05 01:36:41 +02003815}
3816
Sara Sharon06470f72016-01-28 16:19:25 +02003817void ieee80211_mark_rx_ba_filtered_frames(struct ieee80211_sta *pubsta, u8 tid,
3818 u16 ssn, u64 filtered,
3819 u16 received_mpdus)
3820{
3821 struct sta_info *sta;
3822 struct tid_ampdu_rx *tid_agg_rx;
3823 struct sk_buff_head frames;
3824 struct ieee80211_rx_data rx = {
3825 /* This is OK -- must be QoS data frame */
3826 .security_idx = tid,
3827 .seqno_idx = tid,
3828 };
3829 int i, diff;
3830
3831 if (WARN_ON(!pubsta || tid >= IEEE80211_NUM_TIDS))
3832 return;
3833
3834 __skb_queue_head_init(&frames);
3835
3836 sta = container_of(pubsta, struct sta_info, sta);
3837
3838 rx.sta = sta;
3839 rx.sdata = sta->sdata;
3840 rx.local = sta->local;
3841
3842 rcu_read_lock();
3843 tid_agg_rx = rcu_dereference(sta->ampdu_mlme.tid_rx[tid]);
3844 if (!tid_agg_rx)
3845 goto out;
3846
3847 spin_lock_bh(&tid_agg_rx->reorder_lock);
3848
3849 if (received_mpdus >= IEEE80211_SN_MODULO >> 1) {
3850 int release;
3851
3852 /* release all frames in the reorder buffer */
3853 release = (tid_agg_rx->head_seq_num + tid_agg_rx->buf_size) %
3854 IEEE80211_SN_MODULO;
3855 ieee80211_release_reorder_frames(sta->sdata, tid_agg_rx,
3856 release, &frames);
3857 /* update ssn to match received ssn */
3858 tid_agg_rx->head_seq_num = ssn;
3859 } else {
3860 ieee80211_release_reorder_frames(sta->sdata, tid_agg_rx, ssn,
3861 &frames);
3862 }
3863
3864 /* handle the case that received ssn is behind the mac ssn.
3865 * it can be tid_agg_rx->buf_size behind and still be valid */
3866 diff = (tid_agg_rx->head_seq_num - ssn) & IEEE80211_SN_MASK;
3867 if (diff >= tid_agg_rx->buf_size) {
3868 tid_agg_rx->reorder_buf_filtered = 0;
3869 goto release;
3870 }
3871 filtered = filtered >> diff;
3872 ssn += diff;
3873
3874 /* update bitmap */
3875 for (i = 0; i < tid_agg_rx->buf_size; i++) {
3876 int index = (ssn + i) % tid_agg_rx->buf_size;
3877
3878 tid_agg_rx->reorder_buf_filtered &= ~BIT_ULL(index);
3879 if (filtered & BIT_ULL(i))
3880 tid_agg_rx->reorder_buf_filtered |= BIT_ULL(index);
3881 }
3882
3883 /* now process also frames that the filter marking released */
3884 ieee80211_sta_reorder_release(sta->sdata, tid_agg_rx, &frames);
3885
3886release:
3887 spin_unlock_bh(&tid_agg_rx->reorder_lock);
3888
3889 ieee80211_rx_handlers(&rx, &frames);
3890
3891 out:
3892 rcu_read_unlock();
3893}
3894EXPORT_SYMBOL(ieee80211_mark_rx_ba_filtered_frames);
3895
Johannes Berg571ecf62007-07-27 15:43:22 +02003896/* main receive path */
3897
Johannes Berga58fbe12015-04-22 15:08:39 +02003898static bool ieee80211_accept_frame(struct ieee80211_rx_data *rx)
Johannes Berg23a24de2007-07-27 15:43:22 +02003899{
Johannes Berg20b01f82010-09-24 11:21:05 +02003900 struct ieee80211_sub_if_data *sdata = rx->sdata;
Johannes Bergeb9fb5b82009-11-16 13:58:20 +01003901 struct sk_buff *skb = rx->skb;
Johannes Berga58fbe12015-04-22 15:08:39 +02003902 struct ieee80211_hdr *hdr = (void *)skb->data;
Johannes Bergeb9fb5b82009-11-16 13:58:20 +01003903 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
3904 u8 *bssid = ieee80211_get_bssid(hdr, skb->len, sdata->vif.type);
Luca Coelhoe5f2e062017-04-26 10:58:54 +03003905 bool multicast = is_multicast_ether_addr(hdr->addr1);
Johannes Berg23a24de2007-07-27 15:43:22 +02003906
Johannes Berg51fb61e2007-12-19 01:31:27 +01003907 switch (sdata->vif.type) {
Johannes Berg05c914f2008-09-11 00:01:58 +02003908 case NL80211_IFTYPE_STATION:
Johannes Berg9bc383d2009-11-19 11:55:19 +01003909 if (!bssid && !sdata->u.mgd.use_4addr)
Johannes Berg3c2723f52014-01-07 16:23:24 +01003910 return false;
Johannes Berg588f7d32019-02-13 15:13:30 +01003911 if (ieee80211_is_robust_mgmt_frame(skb) && !rx->sta)
3912 return false;
Johannes Berga58fbe12015-04-22 15:08:39 +02003913 if (multicast)
3914 return true;
3915 return ether_addr_equal(sdata->vif.addr, hdr->addr1);
Johannes Berg05c914f2008-09-11 00:01:58 +02003916 case NL80211_IFTYPE_ADHOC:
Johannes Berg23a24de2007-07-27 15:43:22 +02003917 if (!bssid)
Johannes Berg3c2723f52014-01-07 16:23:24 +01003918 return false;
Felix Fietkau6329b8d2013-09-17 11:15:43 +02003919 if (ether_addr_equal(sdata->vif.addr, hdr->addr2) ||
3920 ether_addr_equal(sdata->u.ibss.bssid, hdr->addr2))
Johannes Berg3c2723f52014-01-07 16:23:24 +01003921 return false;
Johannes Berga58fbe12015-04-22 15:08:39 +02003922 if (ieee80211_is_beacon(hdr->frame_control))
Johannes Berg3c2723f52014-01-07 16:23:24 +01003923 return true;
Johannes Berga58fbe12015-04-22 15:08:39 +02003924 if (!ieee80211_bssid_match(bssid, sdata->u.ibss.bssid))
Johannes Berg3c2723f52014-01-07 16:23:24 +01003925 return false;
Johannes Berga58fbe12015-04-22 15:08:39 +02003926 if (!multicast &&
3927 !ether_addr_equal(sdata->vif.addr, hdr->addr1))
Johannes Bergdf140462015-04-22 14:40:58 +02003928 return false;
Johannes Berga58fbe12015-04-22 15:08:39 +02003929 if (!rx->sta) {
Jouni Malinen0fb8ca42008-12-12 14:38:33 +02003930 int rate_idx;
Johannes Bergda6a4352017-04-26 12:14:59 +02003931 if (status->encoding != RX_ENC_LEGACY)
Johannes Berg56146182012-11-09 15:07:02 +01003932 rate_idx = 0; /* TODO: HT/VHT rates */
Jouni Malinen0fb8ca42008-12-12 14:38:33 +02003933 else
Johannes Bergeb9fb5b82009-11-16 13:58:20 +01003934 rate_idx = status->rate_idx;
Johannes Berg8bf11d82011-12-15 11:17:37 +01003935 ieee80211_ibss_rx_no_sta(sdata, bssid, hdr->addr2,
3936 BIT(rate_idx));
Jouni Malinen0fb8ca42008-12-12 14:38:33 +02003937 }
Johannes Berga58fbe12015-04-22 15:08:39 +02003938 return true;
Rostislav Lisovy239281f2014-11-03 10:33:19 +01003939 case NL80211_IFTYPE_OCB:
3940 if (!bssid)
3941 return false;
Bertold Van den Berghcc117292015-08-05 16:02:42 +02003942 if (!ieee80211_is_data_present(hdr->frame_control))
Rostislav Lisovy239281f2014-11-03 10:33:19 +01003943 return false;
Johannes Berga58fbe12015-04-22 15:08:39 +02003944 if (!is_broadcast_ether_addr(bssid))
Rostislav Lisovy239281f2014-11-03 10:33:19 +01003945 return false;
Johannes Berga58fbe12015-04-22 15:08:39 +02003946 if (!multicast &&
3947 !ether_addr_equal(sdata->dev->dev_addr, hdr->addr1))
Johannes Bergdf140462015-04-22 14:40:58 +02003948 return false;
Johannes Berga58fbe12015-04-22 15:08:39 +02003949 if (!rx->sta) {
Rostislav Lisovy239281f2014-11-03 10:33:19 +01003950 int rate_idx;
Johannes Bergda6a4352017-04-26 12:14:59 +02003951 if (status->encoding != RX_ENC_LEGACY)
Rostislav Lisovy239281f2014-11-03 10:33:19 +01003952 rate_idx = 0; /* TODO: HT rates */
3953 else
3954 rate_idx = status->rate_idx;
3955 ieee80211_ocb_rx_no_sta(sdata, bssid, hdr->addr2,
3956 BIT(rate_idx));
3957 }
Johannes Berga58fbe12015-04-22 15:08:39 +02003958 return true;
Johannes Berg05c914f2008-09-11 00:01:58 +02003959 case NL80211_IFTYPE_MESH_POINT:
Johannes Berg736a80b2018-01-04 15:51:53 +01003960 if (ether_addr_equal(sdata->vif.addr, hdr->addr2))
3961 return false;
Johannes Berga58fbe12015-04-22 15:08:39 +02003962 if (multicast)
3963 return true;
3964 return ether_addr_equal(sdata->vif.addr, hdr->addr1);
Johannes Berg05c914f2008-09-11 00:01:58 +02003965 case NL80211_IFTYPE_AP_VLAN:
3966 case NL80211_IFTYPE_AP:
Johannes Berga58fbe12015-04-22 15:08:39 +02003967 if (!bssid)
3968 return ether_addr_equal(sdata->vif.addr, hdr->addr1);
3969
3970 if (!ieee80211_bssid_match(bssid, sdata->vif.addr)) {
Johannes Berg3df6eae2011-12-06 10:39:40 +01003971 /*
3972 * Accept public action frames even when the
3973 * BSSID doesn't match, this is used for P2P
3974 * and location updates. Note that mac80211
3975 * itself never looks at these frames.
3976 */
Johannes Berg2b9ccd42013-05-13 16:42:40 +02003977 if (!multicast &&
3978 !ether_addr_equal(sdata->vif.addr, hdr->addr1))
Johannes Berg3c2723f52014-01-07 16:23:24 +01003979 return false;
Johannes Bergd48b2962012-07-06 22:19:27 +02003980 if (ieee80211_is_public_action(hdr, skb->len))
Johannes Berg3c2723f52014-01-07 16:23:24 +01003981 return true;
Johannes Berg5c900672015-04-22 14:48:34 +02003982 return ieee80211_is_beacon(hdr->frame_control);
Johannes Berga58fbe12015-04-22 15:08:39 +02003983 }
3984
3985 if (!ieee80211_has_tods(hdr->frame_control)) {
Arik Nemtsovdb8e1732014-07-17 17:14:30 +03003986 /* ignore data frames to TDLS-peers */
3987 if (ieee80211_is_data(hdr->frame_control))
3988 return false;
3989 /* ignore action frames to TDLS-peers */
3990 if (ieee80211_is_action(hdr->frame_control) &&
Jouni Malinen1ec7bae2016-03-01 00:29:00 +02003991 !is_broadcast_ether_addr(bssid) &&
Arik Nemtsovdb8e1732014-07-17 17:14:30 +03003992 !ether_addr_equal(bssid, hdr->addr1))
3993 return false;
Johannes Berg23a24de2007-07-27 15:43:22 +02003994 }
Johannes Berg3018e942017-04-20 21:32:16 +02003995
3996 /*
3997 * 802.11-2016 Table 9-26 says that for data frames, A1 must be
3998 * the BSSID - we've checked that already but may have accepted
3999 * the wildcard (ff:ff:ff:ff:ff:ff).
4000 *
4001 * It also says:
4002 * The BSSID of the Data frame is determined as follows:
4003 * a) If the STA is contained within an AP or is associated
4004 * with an AP, the BSSID is the address currently in use
4005 * by the STA contained in the AP.
4006 *
4007 * So we should not accept data frames with an address that's
4008 * multicast.
4009 *
4010 * Accepting it also opens a security problem because stations
4011 * could encrypt it with the GTK and inject traffic that way.
4012 */
4013 if (ieee80211_is_data(hdr->frame_control) && multicast)
4014 return false;
4015
Johannes Berga58fbe12015-04-22 15:08:39 +02004016 return true;
Johannes Berg05c914f2008-09-11 00:01:58 +02004017 case NL80211_IFTYPE_WDS:
Harvey Harrisona7767f92008-07-02 16:30:51 -07004018 if (bssid || !ieee80211_is_data(hdr->frame_control))
Johannes Berg3c2723f52014-01-07 16:23:24 +01004019 return false;
Johannes Berga58fbe12015-04-22 15:08:39 +02004020 return ether_addr_equal(sdata->u.wds.remote_addr, hdr->addr2);
Johannes Bergf142c6b2012-06-18 20:07:15 +02004021 case NL80211_IFTYPE_P2P_DEVICE:
Johannes Berga58fbe12015-04-22 15:08:39 +02004022 return ieee80211_is_public_action(hdr, skb->len) ||
4023 ieee80211_is_probe_req(hdr->frame_control) ||
4024 ieee80211_is_probe_resp(hdr->frame_control) ||
4025 ieee80211_is_beacon(hdr->frame_control);
Ayala Bekercb3b7d82016-09-20 17:31:13 +03004026 case NL80211_IFTYPE_NAN:
4027 /* Currently no frames on NAN interface are allowed */
4028 return false;
Johannes Berg2ca27bc2010-09-16 14:58:23 +02004029 default:
Johannes Bergfb1c1cd2007-09-26 15:19:43 +02004030 break;
Johannes Berg23a24de2007-07-27 15:43:22 +02004031 }
4032
Johannes Berga58fbe12015-04-22 15:08:39 +02004033 WARN_ON_ONCE(1);
4034 return false;
Johannes Berg23a24de2007-07-27 15:43:22 +02004035}
4036
Johannes Berg49ddf8e2016-03-31 20:02:10 +03004037void ieee80211_check_fast_rx(struct sta_info *sta)
4038{
4039 struct ieee80211_sub_if_data *sdata = sta->sdata;
4040 struct ieee80211_local *local = sdata->local;
4041 struct ieee80211_key *key;
4042 struct ieee80211_fast_rx fastrx = {
4043 .dev = sdata->dev,
4044 .vif_type = sdata->vif.type,
4045 .control_port_protocol = sdata->control_port_protocol,
4046 }, *old, *new = NULL;
4047 bool assign = false;
4048
4049 /* use sparse to check that we don't return without updating */
4050 __acquire(check_fast_rx);
4051
4052 BUILD_BUG_ON(sizeof(fastrx.rfc1042_hdr) != sizeof(rfc1042_header));
4053 BUILD_BUG_ON(sizeof(fastrx.rfc1042_hdr) != ETH_ALEN);
4054 ether_addr_copy(fastrx.rfc1042_hdr, rfc1042_header);
4055 ether_addr_copy(fastrx.vif_addr, sdata->vif.addr);
4056
Johannes Bergc9c59622016-03-31 20:02:11 +03004057 fastrx.uses_rss = ieee80211_hw_check(&local->hw, USES_RSS);
4058
Johannes Berg49ddf8e2016-03-31 20:02:10 +03004059 /* fast-rx doesn't do reordering */
4060 if (ieee80211_hw_check(&local->hw, AMPDU_AGGREGATION) &&
4061 !ieee80211_hw_check(&local->hw, SUPPORTS_REORDERING_BUFFER))
4062 goto clear;
4063
4064 switch (sdata->vif.type) {
4065 case NL80211_IFTYPE_STATION:
Johannes Berg49ddf8e2016-03-31 20:02:10 +03004066 if (sta->sta.tdls) {
4067 fastrx.da_offs = offsetof(struct ieee80211_hdr, addr1);
4068 fastrx.sa_offs = offsetof(struct ieee80211_hdr, addr2);
4069 fastrx.expected_ds_bits = 0;
4070 } else {
4071 fastrx.sta_notify = sdata->u.mgd.probe_send_count > 0;
4072 fastrx.da_offs = offsetof(struct ieee80211_hdr, addr1);
4073 fastrx.sa_offs = offsetof(struct ieee80211_hdr, addr3);
4074 fastrx.expected_ds_bits =
4075 cpu_to_le16(IEEE80211_FCTL_FROMDS);
4076 }
Felix Fietkau1d870162018-02-23 10:06:05 +01004077
Felix Fietkau9251a472018-02-23 13:55:50 +01004078 if (sdata->u.mgd.use_4addr && !sta->sta.tdls) {
4079 fastrx.expected_ds_bits |=
4080 cpu_to_le16(IEEE80211_FCTL_TODS);
4081 fastrx.da_offs = offsetof(struct ieee80211_hdr, addr3);
4082 fastrx.sa_offs = offsetof(struct ieee80211_hdr, addr4);
4083 }
4084
Felix Fietkau1d870162018-02-23 10:06:05 +01004085 if (!sdata->u.mgd.powersave)
4086 break;
4087
4088 /* software powersave is a huge mess, avoid all of it */
4089 if (ieee80211_hw_check(&local->hw, PS_NULLFUNC_STACK))
4090 goto clear;
4091 if (ieee80211_hw_check(&local->hw, SUPPORTS_PS) &&
4092 !ieee80211_hw_check(&local->hw, SUPPORTS_DYNAMIC_PS))
4093 goto clear;
Johannes Berg49ddf8e2016-03-31 20:02:10 +03004094 break;
4095 case NL80211_IFTYPE_AP_VLAN:
4096 case NL80211_IFTYPE_AP:
4097 /* parallel-rx requires this, at least with calls to
4098 * ieee80211_sta_ps_transition()
4099 */
4100 if (!ieee80211_hw_check(&local->hw, AP_LINK_PS))
4101 goto clear;
4102 fastrx.da_offs = offsetof(struct ieee80211_hdr, addr3);
4103 fastrx.sa_offs = offsetof(struct ieee80211_hdr, addr2);
4104 fastrx.expected_ds_bits = cpu_to_le16(IEEE80211_FCTL_TODS);
4105
4106 fastrx.internal_forward =
4107 !(sdata->flags & IEEE80211_SDATA_DONT_BRIDGE_PACKETS) &&
4108 (sdata->vif.type != NL80211_IFTYPE_AP_VLAN ||
4109 !sdata->u.vlan.sta);
Felix Fietkau59cae5b2018-02-23 10:06:04 +01004110
4111 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN &&
4112 sdata->u.vlan.sta) {
4113 fastrx.expected_ds_bits |=
4114 cpu_to_le16(IEEE80211_FCTL_FROMDS);
4115 fastrx.sa_offs = offsetof(struct ieee80211_hdr, addr4);
4116 fastrx.internal_forward = 0;
4117 }
4118
Johannes Berg49ddf8e2016-03-31 20:02:10 +03004119 break;
4120 default:
4121 goto clear;
4122 }
4123
4124 if (!test_sta_flag(sta, WLAN_STA_AUTHORIZED))
4125 goto clear;
4126
4127 rcu_read_lock();
4128 key = rcu_dereference(sta->ptk[sta->ptk_idx]);
4129 if (key) {
4130 switch (key->conf.cipher) {
4131 case WLAN_CIPHER_SUITE_TKIP:
4132 /* we don't want to deal with MMIC in fast-rx */
4133 goto clear_rcu;
4134 case WLAN_CIPHER_SUITE_CCMP:
4135 case WLAN_CIPHER_SUITE_CCMP_256:
4136 case WLAN_CIPHER_SUITE_GCMP:
4137 case WLAN_CIPHER_SUITE_GCMP_256:
4138 break;
4139 default:
Alexander Wetzel96fc6ef2019-03-19 21:34:08 +01004140 /* We also don't want to deal with
4141 * WEP or cipher scheme.
Johannes Berg49ddf8e2016-03-31 20:02:10 +03004142 */
4143 goto clear_rcu;
4144 }
4145
4146 fastrx.key = true;
4147 fastrx.icv_len = key->conf.icv_len;
4148 }
4149
4150 assign = true;
4151 clear_rcu:
4152 rcu_read_unlock();
4153 clear:
4154 __release(check_fast_rx);
4155
4156 if (assign)
4157 new = kmemdup(&fastrx, sizeof(fastrx), GFP_KERNEL);
4158
4159 spin_lock_bh(&sta->lock);
4160 old = rcu_dereference_protected(sta->fast_rx, true);
4161 rcu_assign_pointer(sta->fast_rx, new);
4162 spin_unlock_bh(&sta->lock);
4163
4164 if (old)
4165 kfree_rcu(old, rcu_head);
4166}
4167
4168void ieee80211_clear_fast_rx(struct sta_info *sta)
4169{
4170 struct ieee80211_fast_rx *old;
4171
4172 spin_lock_bh(&sta->lock);
4173 old = rcu_dereference_protected(sta->fast_rx, true);
4174 RCU_INIT_POINTER(sta->fast_rx, NULL);
4175 spin_unlock_bh(&sta->lock);
4176
4177 if (old)
4178 kfree_rcu(old, rcu_head);
4179}
4180
4181void __ieee80211_check_fast_rx_iface(struct ieee80211_sub_if_data *sdata)
4182{
4183 struct ieee80211_local *local = sdata->local;
4184 struct sta_info *sta;
4185
4186 lockdep_assert_held(&local->sta_mtx);
4187
Madhuparna Bhowmik253216f2020-02-23 20:03:02 +05304188 list_for_each_entry(sta, &local->sta_list, list) {
Johannes Berg49ddf8e2016-03-31 20:02:10 +03004189 if (sdata != sta->sdata &&
4190 (!sta->sdata->bss || sta->sdata->bss != sdata->bss))
4191 continue;
4192 ieee80211_check_fast_rx(sta);
4193 }
4194}
4195
4196void ieee80211_check_fast_rx_iface(struct ieee80211_sub_if_data *sdata)
4197{
4198 struct ieee80211_local *local = sdata->local;
4199
4200 mutex_lock(&local->sta_mtx);
4201 __ieee80211_check_fast_rx_iface(sdata);
4202 mutex_unlock(&local->sta_mtx);
4203}
4204
4205static bool ieee80211_invoke_fast_rx(struct ieee80211_rx_data *rx,
4206 struct ieee80211_fast_rx *fast_rx)
4207{
4208 struct sk_buff *skb = rx->skb;
4209 struct ieee80211_hdr *hdr = (void *)skb->data;
4210 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
4211 struct sta_info *sta = rx->sta;
4212 int orig_len = skb->len;
Felix Fietkau24bba072018-02-27 13:03:07 +01004213 int hdrlen = ieee80211_hdrlen(hdr->frame_control);
4214 int snap_offs = hdrlen;
Johannes Berg49ddf8e2016-03-31 20:02:10 +03004215 struct {
4216 u8 snap[sizeof(rfc1042_header)];
4217 __be16 proto;
4218 } *payload __aligned(2);
4219 struct {
4220 u8 da[ETH_ALEN];
4221 u8 sa[ETH_ALEN];
4222 } addrs __aligned(2);
Johannes Bergc9c59622016-03-31 20:02:11 +03004223 struct ieee80211_sta_rx_stats *stats = &sta->rx_stats;
4224
4225 if (fast_rx->uses_rss)
4226 stats = this_cpu_ptr(sta->pcpu_rx_stats);
Johannes Berg49ddf8e2016-03-31 20:02:10 +03004227
4228 /* for parallel-rx, we need to have DUP_VALIDATED, otherwise we write
4229 * to a common data structure; drivers can implement that per queue
4230 * but we don't have that information in mac80211
4231 */
4232 if (!(status->flag & RX_FLAG_DUP_VALIDATED))
4233 return false;
4234
4235#define FAST_RX_CRYPT_FLAGS (RX_FLAG_PN_VALIDATED | RX_FLAG_DECRYPTED)
4236
4237 /* If using encryption, we also need to have:
4238 * - PN_VALIDATED: similar, but the implementation is tricky
4239 * - DECRYPTED: necessary for PN_VALIDATED
4240 */
4241 if (fast_rx->key &&
4242 (status->flag & FAST_RX_CRYPT_FLAGS) != FAST_RX_CRYPT_FLAGS)
4243 return false;
4244
Johannes Berg49ddf8e2016-03-31 20:02:10 +03004245 if (unlikely(!ieee80211_is_data_present(hdr->frame_control)))
4246 return false;
4247
4248 if (unlikely(ieee80211_is_frag(hdr)))
4249 return false;
4250
4251 /* Since our interface address cannot be multicast, this
4252 * implicitly also rejects multicast frames without the
4253 * explicit check.
4254 *
4255 * We shouldn't get any *data* frames not addressed to us
4256 * (AP mode will accept multicast *management* frames), but
4257 * punting here will make it go through the full checks in
4258 * ieee80211_accept_frame().
4259 */
4260 if (!ether_addr_equal(fast_rx->vif_addr, hdr->addr1))
4261 return false;
4262
4263 if ((hdr->frame_control & cpu_to_le16(IEEE80211_FCTL_FROMDS |
4264 IEEE80211_FCTL_TODS)) !=
4265 fast_rx->expected_ds_bits)
Felix Fietkaub323ac12018-02-23 10:06:03 +01004266 return false;
Johannes Berg49ddf8e2016-03-31 20:02:10 +03004267
4268 /* assign the key to drop unencrypted frames (later)
4269 * and strip the IV/MIC if necessary
4270 */
4271 if (fast_rx->key && !(status->flag & RX_FLAG_IV_STRIPPED)) {
4272 /* GCMP header length is the same */
4273 snap_offs += IEEE80211_CCMP_HDR_LEN;
4274 }
4275
Felix Fietkau24bba072018-02-27 13:03:07 +01004276 if (!(status->rx_flags & IEEE80211_RX_AMSDU)) {
4277 if (!pskb_may_pull(skb, snap_offs + sizeof(*payload)))
4278 goto drop;
Johannes Berg49ddf8e2016-03-31 20:02:10 +03004279
Felix Fietkau24bba072018-02-27 13:03:07 +01004280 payload = (void *)(skb->data + snap_offs);
Johannes Berg49ddf8e2016-03-31 20:02:10 +03004281
Felix Fietkau24bba072018-02-27 13:03:07 +01004282 if (!ether_addr_equal(payload->snap, fast_rx->rfc1042_hdr))
4283 return false;
4284
4285 /* Don't handle these here since they require special code.
4286 * Accept AARP and IPX even though they should come with a
4287 * bridge-tunnel header - but if we get them this way then
4288 * there's little point in discarding them.
4289 */
4290 if (unlikely(payload->proto == cpu_to_be16(ETH_P_TDLS) ||
4291 payload->proto == fast_rx->control_port_protocol))
4292 return false;
4293 }
Johannes Berg49ddf8e2016-03-31 20:02:10 +03004294
4295 /* after this point, don't punt to the slowpath! */
4296
4297 if (rx->key && !(status->flag & RX_FLAG_MIC_STRIPPED) &&
4298 pskb_trim(skb, skb->len - fast_rx->icv_len))
4299 goto drop;
4300
4301 if (unlikely(fast_rx->sta_notify)) {
4302 ieee80211_sta_rx_notify(rx->sdata, hdr);
4303 fast_rx->sta_notify = false;
4304 }
4305
4306 /* statistics part of ieee80211_rx_h_sta_process() */
Johannes Berg49ddf8e2016-03-31 20:02:10 +03004307 if (!(status->flag & RX_FLAG_NO_SIGNAL_VAL)) {
Johannes Bergc9c59622016-03-31 20:02:11 +03004308 stats->last_signal = status->signal;
4309 if (!fast_rx->uses_rss)
4310 ewma_signal_add(&sta->rx_stats_avg.signal,
4311 -status->signal);
Johannes Berg49ddf8e2016-03-31 20:02:10 +03004312 }
4313
4314 if (status->chains) {
4315 int i;
4316
Johannes Bergc9c59622016-03-31 20:02:11 +03004317 stats->chains = status->chains;
Johannes Berg49ddf8e2016-03-31 20:02:10 +03004318 for (i = 0; i < ARRAY_SIZE(status->chain_signal); i++) {
4319 int signal = status->chain_signal[i];
4320
4321 if (!(status->chains & BIT(i)))
4322 continue;
4323
Johannes Bergc9c59622016-03-31 20:02:11 +03004324 stats->chain_signal_last[i] = signal;
4325 if (!fast_rx->uses_rss)
4326 ewma_signal_add(&sta->rx_stats_avg.chain_signal[i],
4327 -signal);
Johannes Berg49ddf8e2016-03-31 20:02:10 +03004328 }
4329 }
4330 /* end of statistics */
4331
4332 if (rx->key && !ieee80211_has_protected(hdr->frame_control))
4333 goto drop;
4334
Felix Fietkau24bba072018-02-27 13:03:07 +01004335 if (status->rx_flags & IEEE80211_RX_AMSDU) {
4336 if (__ieee80211_rx_h_amsdu(rx, snap_offs - hdrlen) !=
4337 RX_QUEUED)
4338 goto drop;
4339
4340 return true;
4341 }
4342
4343 stats->last_rx = jiffies;
4344 stats->last_rate = sta_stats_encode_rate(status);
4345
4346 stats->fragments++;
4347 stats->packets++;
4348
Johannes Berg49ddf8e2016-03-31 20:02:10 +03004349 /* do the header conversion - first grab the addresses */
4350 ether_addr_copy(addrs.da, skb->data + fast_rx->da_offs);
4351 ether_addr_copy(addrs.sa, skb->data + fast_rx->sa_offs);
4352 /* remove the SNAP but leave the ethertype */
4353 skb_pull(skb, snap_offs + sizeof(rfc1042_header));
4354 /* push the addresses in front */
4355 memcpy(skb_push(skb, sizeof(addrs)), &addrs, sizeof(addrs));
4356
4357 skb->dev = fast_rx->dev;
4358
4359 ieee80211_rx_stats(fast_rx->dev, skb->len);
4360
4361 /* The seqno index has the same property as needed
4362 * for the rx_msdu field, i.e. it is IEEE80211_NUM_TIDS
4363 * for non-QoS-data frames. Here we know it's a data
4364 * frame, so count MSDUs.
4365 */
Johannes Bergc9c59622016-03-31 20:02:11 +03004366 u64_stats_update_begin(&stats->syncp);
4367 stats->msdu[rx->seqno_idx]++;
4368 stats->bytes += orig_len;
4369 u64_stats_update_end(&stats->syncp);
Johannes Berg49ddf8e2016-03-31 20:02:10 +03004370
4371 if (fast_rx->internal_forward) {
Johannes Bergeeb0d562016-12-14 16:47:43 +01004372 struct sk_buff *xmit_skb = NULL;
Johannes Berg42dca5e2018-10-09 10:00:21 +02004373 if (is_multicast_ether_addr(addrs.da)) {
Johannes Bergeeb0d562016-12-14 16:47:43 +01004374 xmit_skb = skb_copy(skb, GFP_ATOMIC);
Johannes Berg42dca5e2018-10-09 10:00:21 +02004375 } else if (!ether_addr_equal(addrs.da, addrs.sa) &&
4376 sta_info_get(rx->sdata, addrs.da)) {
Johannes Bergeeb0d562016-12-14 16:47:43 +01004377 xmit_skb = skb;
4378 skb = NULL;
4379 }
4380
4381 if (xmit_skb) {
Johannes Berg49ddf8e2016-03-31 20:02:10 +03004382 /*
4383 * Send to wireless media and increase priority by 256
4384 * to keep the received priority instead of
4385 * reclassifying the frame (see cfg80211_classify8021d).
4386 */
Johannes Bergeeb0d562016-12-14 16:47:43 +01004387 xmit_skb->priority += 256;
4388 xmit_skb->protocol = htons(ETH_P_802_3);
4389 skb_reset_network_header(xmit_skb);
4390 skb_reset_mac_header(xmit_skb);
4391 dev_queue_xmit(xmit_skb);
Johannes Berg49ddf8e2016-03-31 20:02:10 +03004392 }
Johannes Bergeeb0d562016-12-14 16:47:43 +01004393
4394 if (!skb)
4395 return true;
Johannes Berg49ddf8e2016-03-31 20:02:10 +03004396 }
4397
4398 /* deliver to local stack */
4399 skb->protocol = eth_type_trans(skb, fast_rx->dev);
4400 memset(skb->cb, 0, sizeof(skb->cb));
4401 if (rx->napi)
4402 napi_gro_receive(rx->napi, skb);
4403 else
4404 netif_receive_skb(skb);
4405
4406 return true;
4407 drop:
4408 dev_kfree_skb(skb);
Johannes Bergc9c59622016-03-31 20:02:11 +03004409 stats->dropped++;
Johannes Berg49ddf8e2016-03-31 20:02:10 +03004410 return true;
4411}
4412
Johannes Berg571ecf62007-07-27 15:43:22 +02004413/*
Johannes Berg4406c372010-09-24 11:21:06 +02004414 * This function returns whether or not the SKB
4415 * was destined for RX processing or not, which,
4416 * if consume is true, is equivalent to whether
4417 * or not the skb was consumed.
4418 */
4419static bool ieee80211_prepare_and_rx_handle(struct ieee80211_rx_data *rx,
4420 struct sk_buff *skb, bool consume)
4421{
4422 struct ieee80211_local *local = rx->local;
4423 struct ieee80211_sub_if_data *sdata = rx->sdata;
Johannes Berg4406c372010-09-24 11:21:06 +02004424
4425 rx->skb = skb;
Johannes Berg4406c372010-09-24 11:21:06 +02004426
Johannes Berg49ddf8e2016-03-31 20:02:10 +03004427 /* See if we can do fast-rx; if we have to copy we already lost,
4428 * so punt in that case. We should never have to deliver a data
4429 * frame to multiple interfaces anyway.
4430 *
4431 * We skip the ieee80211_accept_frame() call and do the necessary
4432 * checking inside ieee80211_invoke_fast_rx().
4433 */
4434 if (consume && rx->sta) {
4435 struct ieee80211_fast_rx *fast_rx;
4436
4437 fast_rx = rcu_dereference(rx->sta->fast_rx);
4438 if (fast_rx && ieee80211_invoke_fast_rx(rx, fast_rx))
4439 return true;
4440 }
4441
Johannes Berga58fbe12015-04-22 15:08:39 +02004442 if (!ieee80211_accept_frame(rx))
Johannes Berg4406c372010-09-24 11:21:06 +02004443 return false;
4444
Johannes Berg4406c372010-09-24 11:21:06 +02004445 if (!consume) {
4446 skb = skb_copy(skb, GFP_ATOMIC);
4447 if (!skb) {
4448 if (net_ratelimit())
4449 wiphy_debug(local->hw.wiphy,
Ben Greearb305dae2011-01-08 10:30:54 -08004450 "failed to copy skb for %s\n",
Johannes Berg4406c372010-09-24 11:21:06 +02004451 sdata->name);
4452 return true;
4453 }
4454
4455 rx->skb = skb;
4456 }
4457
4458 ieee80211_invoke_rx_handlers(rx);
4459 return true;
4460}
4461
4462/*
Zhao, Gang6b59db72014-04-21 12:52:59 +08004463 * This is the actual Rx frames handler. as it belongs to Rx path it must
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02004464 * be called with rcu_read_lock protection.
Johannes Berg571ecf62007-07-27 15:43:22 +02004465 */
Ron Rindjunsky71ebb4a2008-01-21 12:39:12 +02004466static void __ieee80211_rx_handle_packet(struct ieee80211_hw *hw,
Johannes Bergd63b5482016-03-31 20:02:02 +03004467 struct ieee80211_sta *pubsta,
Johannes Bergaf9f9b22015-06-11 16:02:32 +02004468 struct sk_buff *skb,
4469 struct napi_struct *napi)
Johannes Berg571ecf62007-07-27 15:43:22 +02004470{
4471 struct ieee80211_local *local = hw_to_local(hw);
4472 struct ieee80211_sub_if_data *sdata;
Johannes Berg571ecf62007-07-27 15:43:22 +02004473 struct ieee80211_hdr *hdr;
Zhu Yie3cf8b3f2010-03-29 17:35:07 +08004474 __le16 fc;
Johannes Berg5cf121c2008-02-25 16:27:43 +01004475 struct ieee80211_rx_data rx;
Johannes Berg4406c372010-09-24 11:21:06 +02004476 struct ieee80211_sub_if_data *prev;
Herbert Xu83e7e4c2016-09-19 19:00:10 +08004477 struct rhlist_head *tmp;
Zhu Yie3cf8b3f2010-03-29 17:35:07 +08004478 int err = 0;
Johannes Berg571ecf62007-07-27 15:43:22 +02004479
Zhu Yie3cf8b3f2010-03-29 17:35:07 +08004480 fc = ((struct ieee80211_hdr *)skb->data)->frame_control;
Johannes Berg571ecf62007-07-27 15:43:22 +02004481 memset(&rx, 0, sizeof(rx));
4482 rx.skb = skb;
4483 rx.local = local;
Johannes Bergaf9f9b22015-06-11 16:02:32 +02004484 rx.napi = napi;
Johannes Berg72abd812007-09-17 01:29:22 -04004485
Zhu Yie3cf8b3f2010-03-29 17:35:07 +08004486 if (ieee80211_is_data(fc) || ieee80211_is_mgmt(fc))
Johannes Bergc206ca62015-04-22 20:47:28 +02004487 I802_DEBUG_INC(local->dot11ReceivedFragmentCount);
Johannes Berg571ecf62007-07-27 15:43:22 +02004488
Johannes Berg4a4f1a52012-10-26 00:33:36 +02004489 if (ieee80211_is_mgmt(fc)) {
4490 /* drop frame if too short for header */
4491 if (skb->len < ieee80211_hdrlen(fc))
4492 err = -ENOBUFS;
4493 else
4494 err = skb_linearize(skb);
4495 } else {
Zhu Yie3cf8b3f2010-03-29 17:35:07 +08004496 err = !pskb_may_pull(skb, ieee80211_hdrlen(fc));
Johannes Berg4a4f1a52012-10-26 00:33:36 +02004497 }
Zhu Yie3cf8b3f2010-03-29 17:35:07 +08004498
4499 if (err) {
4500 dev_kfree_skb(skb);
4501 return;
4502 }
4503
4504 hdr = (struct ieee80211_hdr *)skb->data;
Johannes Berg38f37142008-01-29 17:07:43 +01004505 ieee80211_parse_qos(&rx);
Johannes Bergd1c3a372009-01-07 00:26:10 +01004506 ieee80211_verify_alignment(&rx);
Johannes Berg38f37142008-01-29 17:07:43 +01004507
Johannes Bergd48b2962012-07-06 22:19:27 +02004508 if (unlikely(ieee80211_is_probe_resp(hdr->frame_control) ||
4509 ieee80211_is_beacon(hdr->frame_control)))
4510 ieee80211_scan_rx(local, skb);
4511
Johannes Berg19d19e92017-02-27 09:38:11 +01004512 if (ieee80211_is_data(fc)) {
Johannes Bergd63b5482016-03-31 20:02:02 +03004513 struct sta_info *sta, *prev_sta;
Johannes Berg7bedd0c2015-02-13 21:55:15 +01004514
Johannes Berg19d19e92017-02-27 09:38:11 +01004515 if (pubsta) {
4516 rx.sta = container_of(pubsta, struct sta_info, sta);
4517 rx.sdata = rx.sta->sdata;
4518 if (ieee80211_prepare_and_rx_handle(&rx, skb, true))
4519 return;
4520 goto out;
4521 }
4522
Ben Greear56af3262010-09-23 10:22:24 -07004523 prev_sta = NULL;
Johannes Berg4406c372010-09-24 11:21:06 +02004524
Herbert Xu83e7e4c2016-09-19 19:00:10 +08004525 for_each_sta_info(local, hdr->addr2, sta, tmp) {
Ben Greear56af3262010-09-23 10:22:24 -07004526 if (!prev_sta) {
4527 prev_sta = sta;
4528 continue;
4529 }
4530
4531 rx.sta = prev_sta;
4532 rx.sdata = prev_sta->sdata;
Johannes Berg4406c372010-09-24 11:21:06 +02004533 ieee80211_prepare_and_rx_handle(&rx, skb, false);
Johannes Berg571ecf62007-07-27 15:43:22 +02004534
Ben Greear56af3262010-09-23 10:22:24 -07004535 prev_sta = sta;
Johannes Berg4406c372010-09-24 11:21:06 +02004536 }
Ben Greear56af3262010-09-23 10:22:24 -07004537
4538 if (prev_sta) {
4539 rx.sta = prev_sta;
4540 rx.sdata = prev_sta->sdata;
4541
Johannes Berg4406c372010-09-24 11:21:06 +02004542 if (ieee80211_prepare_and_rx_handle(&rx, skb, true))
Ben Greear56af3262010-09-23 10:22:24 -07004543 return;
Senthil Balasubramanian8e26d5a2010-11-30 20:15:38 +05304544 goto out;
Ben Greear56af3262010-09-23 10:22:24 -07004545 }
Johannes Berg4406c372010-09-24 11:21:06 +02004546 }
4547
Johannes Berg4b0dd982010-09-24 11:21:07 +02004548 prev = NULL;
Johannes Berg4406c372010-09-24 11:21:06 +02004549
Johannes Berg4b0dd982010-09-24 11:21:07 +02004550 list_for_each_entry_rcu(sdata, &local->interfaces, list) {
4551 if (!ieee80211_sdata_running(sdata))
4552 continue;
Johannes Bergabe60632009-11-25 17:46:18 +01004553
Johannes Berg4b0dd982010-09-24 11:21:07 +02004554 if (sdata->vif.type == NL80211_IFTYPE_MONITOR ||
4555 sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
4556 continue;
Johannes Bergabe60632009-11-25 17:46:18 +01004557
Johannes Berg4b0dd982010-09-24 11:21:07 +02004558 /*
4559 * frame is destined for this interface, but if it's
4560 * not also for the previous one we handle that after
4561 * the loop to avoid copying the SKB once too much
4562 */
Johannes Bergb2e77712007-09-26 15:19:39 +02004563
Johannes Berg4b0dd982010-09-24 11:21:07 +02004564 if (!prev) {
Johannes Berg340e11f2007-07-27 15:43:22 +02004565 prev = sdata;
Johannes Berg4b0dd982010-09-24 11:21:07 +02004566 continue;
Johannes Berg8e6f00322007-07-27 15:43:22 +02004567 }
Felix Fietkau4bb29f82010-01-22 00:36:39 +01004568
Johannes Berg7852e362012-01-20 13:55:24 +01004569 rx.sta = sta_info_get_bss(prev, hdr->addr2);
Johannes Berg4b0dd982010-09-24 11:21:07 +02004570 rx.sdata = prev;
4571 ieee80211_prepare_and_rx_handle(&rx, skb, false);
Felix Fietkau4bb29f82010-01-22 00:36:39 +01004572
Johannes Berg4b0dd982010-09-24 11:21:07 +02004573 prev = sdata;
4574 }
Johannes Berg4406c372010-09-24 11:21:06 +02004575
Johannes Berg4b0dd982010-09-24 11:21:07 +02004576 if (prev) {
Johannes Berg7852e362012-01-20 13:55:24 +01004577 rx.sta = sta_info_get_bss(prev, hdr->addr2);
Johannes Berg4b0dd982010-09-24 11:21:07 +02004578 rx.sdata = prev;
4579
4580 if (ieee80211_prepare_and_rx_handle(&rx, skb, true))
4581 return;
Johannes Berg571ecf62007-07-27 15:43:22 +02004582 }
Johannes Berg4406c372010-09-24 11:21:06 +02004583
Senthil Balasubramanian8e26d5a2010-11-30 20:15:38 +05304584 out:
Johannes Berg4406c372010-09-24 11:21:06 +02004585 dev_kfree_skb(skb);
Johannes Berg571ecf62007-07-27 15:43:22 +02004586}
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02004587
4588/*
4589 * This is the receive path handler. It is called by a low level driver when an
4590 * 802.11 MPDU is received from the hardware.
4591 */
Johannes Bergd63b5482016-03-31 20:02:02 +03004592void ieee80211_rx_napi(struct ieee80211_hw *hw, struct ieee80211_sta *pubsta,
4593 struct sk_buff *skb, struct napi_struct *napi)
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02004594{
4595 struct ieee80211_local *local = hw_to_local(hw);
Johannes Berg8318d782008-01-24 19:38:38 +01004596 struct ieee80211_rate *rate = NULL;
4597 struct ieee80211_supported_band *sband;
Johannes Bergf1d58c22009-06-17 13:13:00 +02004598 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
Johannes Berg8318d782008-01-24 19:38:38 +01004599
Johannes Bergd20ef632009-10-11 15:10:40 +02004600 WARN_ON_ONCE(softirq_count() == 0);
4601
Johannes Berg57fbcce2016-04-12 15:56:15 +02004602 if (WARN_ON(status->band >= NUM_NL80211_BANDS))
Johannes Berg77a980d2009-08-24 11:46:30 +02004603 goto drop;
Johannes Berg8318d782008-01-24 19:38:38 +01004604
4605 sband = local->hw.wiphy->bands[status->band];
Johannes Berg77a980d2009-08-24 11:46:30 +02004606 if (WARN_ON(!sband))
4607 goto drop;
Johannes Berg8318d782008-01-24 19:38:38 +01004608
Johannes Berg89c3a8a2009-07-28 18:10:17 +02004609 /*
4610 * If we're suspending, it is possible although not too likely
4611 * that we'd be receiving frames after having already partially
4612 * quiesced the stack. We can't process such frames then since
4613 * that might, for example, cause stations to be added or other
4614 * driver callbacks be invoked.
4615 */
Johannes Berg77a980d2009-08-24 11:46:30 +02004616 if (unlikely(local->quiescing || local->suspended))
4617 goto drop;
Johannes Berg89c3a8a2009-07-28 18:10:17 +02004618
Arik Nemtsov04800ad2012-06-06 11:25:02 +03004619 /* We might be during a HW reconfig, prevent Rx for the same reason */
4620 if (unlikely(local->in_reconfig))
4621 goto drop;
4622
Johannes Bergea77f122009-08-21 14:44:45 +02004623 /*
4624 * The same happens when we're not even started,
4625 * but that's worth a warning.
4626 */
Johannes Berg77a980d2009-08-24 11:46:30 +02004627 if (WARN_ON(!local->started))
4628 goto drop;
Johannes Bergea77f122009-08-21 14:44:45 +02004629
Johannes Bergfc885182010-07-30 13:23:12 +02004630 if (likely(!(status->flag & RX_FLAG_FAILED_PLCP_CRC))) {
Luis R. Rodrigueze5d6eb82009-11-09 16:03:22 -05004631 /*
Johannes Bergfc885182010-07-30 13:23:12 +02004632 * Validate the rate, unless a PLCP error means that
4633 * we probably can't have a valid rate here anyway.
Luis R. Rodrigueze5d6eb82009-11-09 16:03:22 -05004634 */
Johannes Bergfc885182010-07-30 13:23:12 +02004635
Johannes Bergda6a4352017-04-26 12:14:59 +02004636 switch (status->encoding) {
4637 case RX_ENC_HT:
Johannes Bergfc885182010-07-30 13:23:12 +02004638 /*
4639 * rate_idx is MCS index, which can be [0-76]
4640 * as documented on:
4641 *
4642 * http://wireless.kernel.org/en/developers/Documentation/ieee80211/802.11n
4643 *
4644 * Anything else would be some sort of driver or
4645 * hardware error. The driver should catch hardware
4646 * errors.
4647 */
Johannes Berg444e3802012-09-30 17:08:35 +02004648 if (WARN(status->rate_idx > 76,
Johannes Bergfc885182010-07-30 13:23:12 +02004649 "Rate marked as an HT rate but passed "
4650 "status->rate_idx is not "
4651 "an MCS index [0-76]: %d (0x%02x)\n",
4652 status->rate_idx,
4653 status->rate_idx))
4654 goto drop;
Johannes Bergda6a4352017-04-26 12:14:59 +02004655 break;
4656 case RX_ENC_VHT:
Johannes Berg56146182012-11-09 15:07:02 +01004657 if (WARN_ONCE(status->rate_idx > 9 ||
Johannes Berg8613c942017-04-26 13:51:41 +02004658 !status->nss ||
4659 status->nss > 8,
Johannes Berg56146182012-11-09 15:07:02 +01004660 "Rate marked as a VHT rate but data is invalid: MCS: %d, NSS: %d\n",
Johannes Berg8613c942017-04-26 13:51:41 +02004661 status->rate_idx, status->nss))
Johannes Berg56146182012-11-09 15:07:02 +01004662 goto drop;
Johannes Bergda6a4352017-04-26 12:14:59 +02004663 break;
Luca Coelho41cbb0f2018-06-09 09:14:44 +03004664 case RX_ENC_HE:
4665 if (WARN_ONCE(status->rate_idx > 11 ||
4666 !status->nss ||
4667 status->nss > 8,
4668 "Rate marked as an HE rate but data is invalid: MCS: %d, NSS: %d\n",
4669 status->rate_idx, status->nss))
4670 goto drop;
4671 break;
Johannes Bergda6a4352017-04-26 12:14:59 +02004672 default:
4673 WARN_ON_ONCE(1);
4674 /* fall through */
4675 case RX_ENC_LEGACY:
Johannes Berg444e3802012-09-30 17:08:35 +02004676 if (WARN_ON(status->rate_idx >= sband->n_bitrates))
Johannes Bergfc885182010-07-30 13:23:12 +02004677 goto drop;
4678 rate = &sband->bitrates[status->rate_idx];
4679 }
Jouni Malinen0fb8ca42008-12-12 14:38:33 +02004680 }
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02004681
Johannes Berg554891e2010-09-24 12:38:25 +02004682 status->rx_flags = 0;
4683
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02004684 /*
4685 * key references and virtual interfaces are protected using RCU
4686 * and this requires that we are in a read-side RCU section during
4687 * receive processing
4688 */
4689 rcu_read_lock();
4690
4691 /*
4692 * Frames with failed FCS/PLCP checksum are not returned,
4693 * all other frames are returned without radiotap header
4694 * if it was previously present.
4695 * Also, frames with less than 16 bytes are dropped.
4696 */
Johannes Bergf1d58c22009-06-17 13:13:00 +02004697 skb = ieee80211_rx_monitor(local, skb, rate);
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02004698 if (!skb) {
4699 rcu_read_unlock();
4700 return;
4701 }
4702
Johannes Berge1e54062010-11-30 08:58:45 +01004703 ieee80211_tpt_led_trig_rx(local,
4704 ((struct ieee80211_hdr *)skb->data)->frame_control,
4705 skb->len);
Johannes Bergd63b5482016-03-31 20:02:02 +03004706
4707 __ieee80211_rx_handle_packet(hw, pubsta, skb, napi);
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02004708
4709 rcu_read_unlock();
Johannes Berg77a980d2009-08-24 11:46:30 +02004710
4711 return;
4712 drop:
4713 kfree_skb(skb);
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02004714}
Johannes Bergaf9f9b22015-06-11 16:02:32 +02004715EXPORT_SYMBOL(ieee80211_rx_napi);
Johannes Berg571ecf62007-07-27 15:43:22 +02004716
4717/* This is a version of the rx handler that can be called from hard irq
4718 * context. Post the skb on the queue and schedule the tasklet */
Johannes Bergf1d58c22009-06-17 13:13:00 +02004719void ieee80211_rx_irqsafe(struct ieee80211_hw *hw, struct sk_buff *skb)
Johannes Berg571ecf62007-07-27 15:43:22 +02004720{
4721 struct ieee80211_local *local = hw_to_local(hw);
4722
4723 BUILD_BUG_ON(sizeof(struct ieee80211_rx_status) > sizeof(skb->cb));
4724
Johannes Berg571ecf62007-07-27 15:43:22 +02004725 skb->pkt_type = IEEE80211_RX_MSG;
4726 skb_queue_tail(&local->skb_queue, skb);
4727 tasklet_schedule(&local->tasklet);
4728}
4729EXPORT_SYMBOL(ieee80211_rx_irqsafe);