blob: 4230b56bd52c279c79614acbf6628720c1221360 [file] [log] [blame]
Johannes Berg780e87c2015-09-03 14:56:10 +02001/******************************************************************************
2 *
3 * This file is provided under a dual BSD/GPLv2 license. When using or
4 * redistributing this file, you may do so under either license.
5 *
6 * GPL LICENSE SUMMARY
7 *
8 * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
9 * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH
Sara Sharon9c36fd72017-01-04 10:49:42 +020010 * Copyright(c) 2015 - 2017 Intel Deutschland GmbH
Johannes Berg780e87c2015-09-03 14:56:10 +020011 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of version 2 of the GNU General Public License as
14 * published by the Free Software Foundation.
15 *
16 * This program is distributed in the hope that it will be useful, but
17 * WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * General Public License for more details.
20 *
21 * The full GNU General Public License is included in this distribution
22 * in the file called COPYING.
23 *
24 * Contact Information:
25 * Intel Linux Wireless <ilw@linux.intel.com>
26 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
27 *
28 * BSD LICENSE
29 *
30 * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
31 * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH
Sara Sharon9c36fd72017-01-04 10:49:42 +020032 * Copyright(c) 2015 - 2017 Intel Deutschland GmbH
Johannes Berg780e87c2015-09-03 14:56:10 +020033 * All rights reserved.
34 *
35 * Redistribution and use in source and binary forms, with or without
36 * modification, are permitted provided that the following conditions
37 * are met:
38 *
39 * * Redistributions of source code must retain the above copyright
40 * notice, this list of conditions and the following disclaimer.
41 * * Redistributions in binary form must reproduce the above copyright
42 * notice, this list of conditions and the following disclaimer in
43 * the documentation and/or other materials provided with the
44 * distribution.
45 * * Neither the name Intel Corporation nor the names of its
46 * contributors may be used to endorse or promote products derived
47 * from this software without specific prior written permission.
48 *
49 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
50 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
51 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
52 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
53 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
54 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
55 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
56 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
57 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
58 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
59 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
60 *****************************************************************************/
61#include <linux/etherdevice.h>
62#include <linux/skbuff.h>
63#include "iwl-trans.h"
64#include "mvm.h"
65#include "fw-api.h"
Johannes Berg780e87c2015-09-03 14:56:10 +020066
Johannes Bergf5e28ea2015-12-06 14:58:08 +020067static inline int iwl_mvm_check_pn(struct iwl_mvm *mvm, struct sk_buff *skb,
68 int queue, struct ieee80211_sta *sta)
69{
70 struct iwl_mvm_sta *mvmsta;
71 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
72 struct ieee80211_rx_status *stats = IEEE80211_SKB_RXCB(skb);
73 struct iwl_mvm_key_pn *ptk_pn;
74 u8 tid, keyidx;
75 u8 pn[IEEE80211_CCMP_PN_LEN];
76 u8 *extiv;
77
78 /* do PN checking */
79
80 /* multicast and non-data only arrives on default queue */
81 if (!ieee80211_is_data(hdr->frame_control) ||
82 is_multicast_ether_addr(hdr->addr1))
83 return 0;
84
85 /* do not check PN for open AP */
86 if (!(stats->flag & RX_FLAG_DECRYPTED))
87 return 0;
88
89 /*
90 * avoid checking for default queue - we don't want to replicate
91 * all the logic that's necessary for checking the PN on fragmented
92 * frames, leave that to mac80211
93 */
94 if (queue == 0)
95 return 0;
96
97 /* if we are here - this for sure is either CCMP or GCMP */
98 if (IS_ERR_OR_NULL(sta)) {
99 IWL_ERR(mvm,
100 "expected hw-decrypted unicast frame for station\n");
101 return -1;
102 }
103
104 mvmsta = iwl_mvm_sta_from_mac80211(sta);
105
106 extiv = (u8 *)hdr + ieee80211_hdrlen(hdr->frame_control);
107 keyidx = extiv[3] >> 6;
108
109 ptk_pn = rcu_dereference(mvmsta->ptk_pn[keyidx]);
110 if (!ptk_pn)
111 return -1;
112
113 if (ieee80211_is_data_qos(hdr->frame_control))
114 tid = *ieee80211_get_qos_ctl(hdr) & IEEE80211_QOS_CTL_TID_MASK;
115 else
116 tid = 0;
117
118 /* we don't use HCCA/802.11 QoS TSPECs, so drop such frames */
119 if (tid >= IWL_MAX_TID_COUNT)
120 return -1;
121
122 /* load pn */
123 pn[0] = extiv[7];
124 pn[1] = extiv[6];
125 pn[2] = extiv[5];
126 pn[3] = extiv[4];
127 pn[4] = extiv[1];
128 pn[5] = extiv[0];
129
130 if (memcmp(pn, ptk_pn->q[queue].pn[tid],
131 IEEE80211_CCMP_PN_LEN) <= 0)
132 return -1;
133
Sara Sharonf1ae02b2016-03-06 15:08:55 +0200134 if (!(stats->flag & RX_FLAG_AMSDU_MORE))
135 memcpy(ptk_pn->q[queue].pn[tid], pn, IEEE80211_CCMP_PN_LEN);
Johannes Bergf5e28ea2015-12-06 14:58:08 +0200136 stats->flag |= RX_FLAG_PN_VALIDATED;
137
138 return 0;
139}
140
141/* iwl_mvm_create_skb Adds the rxb to a new skb */
142static void iwl_mvm_create_skb(struct sk_buff *skb, struct ieee80211_hdr *hdr,
143 u16 len, u8 crypt_len,
144 struct iwl_rx_cmd_buffer *rxb)
Johannes Berg780e87c2015-09-03 14:56:10 +0200145{
Sara Sharone29cc6b2016-01-28 14:25:33 +0200146 struct iwl_rx_packet *pkt = rxb_addr(rxb);
147 struct iwl_rx_mpdu_desc *desc = (void *)pkt->data;
148 unsigned int headlen, fraglen, pad_len = 0;
149 unsigned int hdrlen = ieee80211_hdrlen(hdr->frame_control);
150
Johannes Berg4b405712016-12-08 10:38:08 +0100151 if (desc->mac_flags2 & IWL_RX_MPDU_MFLG2_PAD) {
Sara Sharone29cc6b2016-01-28 14:25:33 +0200152 pad_len = 2;
Johannes Berg4b405712016-12-08 10:38:08 +0100153
154 /*
155 * If the device inserted padding it means that (it thought)
156 * the 802.11 header wasn't a multiple of 4 bytes long. In
157 * this case, reserve two bytes at the start of the SKB to
158 * align the payload properly in case we end up copying it.
159 */
160 skb_reserve(skb, pad_len);
161 }
Sara Sharone29cc6b2016-01-28 14:25:33 +0200162 len -= pad_len;
Johannes Berg780e87c2015-09-03 14:56:10 +0200163
164 /* If frame is small enough to fit in skb->head, pull it completely.
165 * If not, only pull ieee80211_hdr (including crypto if present, and
166 * an additional 8 bytes for SNAP/ethertype, see below) so that
167 * splice() or TCP coalesce are more efficient.
168 *
169 * Since, in addition, ieee80211_data_to_8023() always pull in at
170 * least 8 bytes (possibly more for mesh) we can do the same here
171 * to save the cost of doing it later. That still doesn't pull in
172 * the actual IP header since the typical case has a SNAP header.
173 * If the latter changes (there are efforts in the standards group
174 * to do so) we should revisit this and ieee80211_data_to_8023().
175 */
Sara Sharone29cc6b2016-01-28 14:25:33 +0200176 headlen = (len <= skb_tailroom(skb)) ? len :
177 hdrlen + crypt_len + 8;
Johannes Berg780e87c2015-09-03 14:56:10 +0200178
Sara Sharone29cc6b2016-01-28 14:25:33 +0200179 /* The firmware may align the packet to DWORD.
180 * The padding is inserted after the IV.
181 * After copying the header + IV skip the padding if
182 * present before copying packet data.
183 */
184 hdrlen += crypt_len;
Johannes Berg59ae1d12017-06-16 14:29:20 +0200185 skb_put_data(skb, hdr, hdrlen);
186 skb_put_data(skb, (u8 *)hdr + hdrlen + pad_len, headlen - hdrlen);
Sara Sharone29cc6b2016-01-28 14:25:33 +0200187
188 fraglen = len - headlen;
Johannes Berg780e87c2015-09-03 14:56:10 +0200189
190 if (fraglen) {
Sara Sharone29cc6b2016-01-28 14:25:33 +0200191 int offset = (void *)hdr + headlen + pad_len -
Johannes Berg780e87c2015-09-03 14:56:10 +0200192 rxb_addr(rxb) + rxb_offset(rxb);
193
194 skb_add_rx_frag(skb, 0, rxb_steal_page(rxb), offset,
195 fraglen, rxb->truesize);
196 }
Johannes Bergf5e28ea2015-12-06 14:58:08 +0200197}
Johannes Berg780e87c2015-09-03 14:56:10 +0200198
Johannes Bergf5e28ea2015-12-06 14:58:08 +0200199/* iwl_mvm_pass_packet_to_mac80211 - passes the packet for mac80211 */
200static void iwl_mvm_pass_packet_to_mac80211(struct iwl_mvm *mvm,
201 struct napi_struct *napi,
202 struct sk_buff *skb, int queue,
203 struct ieee80211_sta *sta)
204{
205 if (iwl_mvm_check_pn(mvm, skb, queue, sta))
206 kfree_skb(skb);
207 else
Johannes Berg43ec72b2016-03-10 11:55:44 +0100208 ieee80211_rx_napi(mvm->hw, sta, skb, napi);
Johannes Berg780e87c2015-09-03 14:56:10 +0200209}
210
211static void iwl_mvm_get_signal_strength(struct iwl_mvm *mvm,
212 struct iwl_rx_mpdu_desc *desc,
213 struct ieee80211_rx_status *rx_status)
214{
Sara Sharond56a7802016-01-26 12:35:13 +0200215 int energy_a, energy_b, max_energy;
Johannes Berg780e87c2015-09-03 14:56:10 +0200216
217 energy_a = desc->energy_a;
218 energy_a = energy_a ? -energy_a : S8_MIN;
219 energy_b = desc->energy_b;
220 energy_b = energy_b ? -energy_b : S8_MIN;
Johannes Berg780e87c2015-09-03 14:56:10 +0200221 max_energy = max(energy_a, energy_b);
Johannes Berg780e87c2015-09-03 14:56:10 +0200222
Sara Sharond56a7802016-01-26 12:35:13 +0200223 IWL_DEBUG_STATS(mvm, "energy In A %d B %d, and max %d\n",
224 energy_a, energy_b, max_energy);
Johannes Berg780e87c2015-09-03 14:56:10 +0200225
226 rx_status->signal = max_energy;
227 rx_status->chains = 0; /* TODO: phy info */
228 rx_status->chain_signal[0] = energy_a;
229 rx_status->chain_signal[1] = energy_b;
Sara Sharond56a7802016-01-26 12:35:13 +0200230 rx_status->chain_signal[2] = S8_MIN;
Johannes Berg780e87c2015-09-03 14:56:10 +0200231}
232
Johannes Bergf5e28ea2015-12-06 14:58:08 +0200233static int iwl_mvm_rx_crypto(struct iwl_mvm *mvm, struct ieee80211_hdr *hdr,
Johannes Berg780e87c2015-09-03 14:56:10 +0200234 struct ieee80211_rx_status *stats,
235 struct iwl_rx_mpdu_desc *desc, int queue,
236 u8 *crypt_len)
237{
238 u16 status = le16_to_cpu(desc->status);
239
240 if (!ieee80211_has_protected(hdr->frame_control) ||
241 (status & IWL_RX_MPDU_STATUS_SEC_MASK) ==
242 IWL_RX_MPDU_STATUS_SEC_NONE)
243 return 0;
244
245 /* TODO: handle packets encrypted with unknown alg */
246
247 switch (status & IWL_RX_MPDU_STATUS_SEC_MASK) {
248 case IWL_RX_MPDU_STATUS_SEC_CCM:
249 case IWL_RX_MPDU_STATUS_SEC_GCM:
Johannes Bergf5e28ea2015-12-06 14:58:08 +0200250 BUILD_BUG_ON(IEEE80211_CCMP_PN_LEN != IEEE80211_GCMP_PN_LEN);
Johannes Berg780e87c2015-09-03 14:56:10 +0200251 /* alg is CCM: check MIC only */
252 if (!(status & IWL_RX_MPDU_STATUS_MIC_OK))
253 return -1;
254
255 stats->flag |= RX_FLAG_DECRYPTED;
256 *crypt_len = IEEE80211_CCMP_HDR_LEN;
257 return 0;
258 case IWL_RX_MPDU_STATUS_SEC_TKIP:
259 /* Don't drop the frame and decrypt it in SW */
260 if (!(status & IWL_RX_MPDU_RES_STATUS_TTAK_OK))
261 return 0;
262
263 *crypt_len = IEEE80211_TKIP_IV_LEN;
264 /* fall through if TTAK OK */
265 case IWL_RX_MPDU_STATUS_SEC_WEP:
266 if (!(status & IWL_RX_MPDU_STATUS_ICV_OK))
267 return -1;
268
269 stats->flag |= RX_FLAG_DECRYPTED;
270 if ((status & IWL_RX_MPDU_STATUS_SEC_MASK) ==
271 IWL_RX_MPDU_STATUS_SEC_WEP)
272 *crypt_len = IEEE80211_WEP_IV_LEN;
273 return 0;
274 case IWL_RX_MPDU_STATUS_SEC_EXT_ENC:
275 if (!(status & IWL_RX_MPDU_STATUS_MIC_OK))
276 return -1;
277 stats->flag |= RX_FLAG_DECRYPTED;
278 return 0;
279 default:
Shaul Triebitzbaf41bc2017-09-13 16:46:14 +0300280 /* Expected in monitor (not having the keys) */
281 if (!mvm->monitor_on)
282 IWL_ERR(mvm, "Unhandled alg: 0x%x\n", status);
Johannes Berg780e87c2015-09-03 14:56:10 +0200283 }
284
285 return 0;
286}
287
288static void iwl_mvm_rx_csum(struct ieee80211_sta *sta,
289 struct sk_buff *skb,
290 struct iwl_rx_mpdu_desc *desc)
291{
292 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
293 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(mvmsta->vif);
Sara Sharonb238be02016-03-16 13:57:50 +0200294 u16 flags = le16_to_cpu(desc->l3l4_flags);
295 u8 l3_prot = (u8)((flags & IWL_RX_L3L4_L3_PROTO_MASK) >>
296 IWL_RX_L3_PROTO_POS);
Johannes Berg780e87c2015-09-03 14:56:10 +0200297
298 if (mvmvif->features & NETIF_F_RXCSUM &&
Sara Sharonb238be02016-03-16 13:57:50 +0200299 flags & IWL_RX_L3L4_TCP_UDP_CSUM_OK &&
300 (flags & IWL_RX_L3L4_IP_HDR_CSUM_OK ||
301 l3_prot == IWL_RX_L3_TYPE_IPV6 ||
302 l3_prot == IWL_RX_L3_TYPE_IPV6_FRAG))
Johannes Berg780e87c2015-09-03 14:56:10 +0200303 skb->ip_summed = CHECKSUM_UNNECESSARY;
304}
305
Sara Sharona571f5f2015-12-07 12:50:58 +0200306/*
307 * returns true if a packet outside BA session is a duplicate and
308 * should be dropped
309 */
310static bool iwl_mvm_is_nonagg_dup(struct ieee80211_sta *sta, int queue,
311 struct ieee80211_rx_status *rx_status,
312 struct ieee80211_hdr *hdr,
313 struct iwl_rx_mpdu_desc *desc)
314{
315 struct iwl_mvm_sta *mvm_sta;
316 struct iwl_mvm_rxq_dup_data *dup_data;
317 u8 baid, tid, sub_frame_idx;
318
319 if (WARN_ON(IS_ERR_OR_NULL(sta)))
320 return false;
321
322 baid = (le32_to_cpu(desc->reorder_data) &
323 IWL_RX_MPDU_REORDER_BAID_MASK) >>
324 IWL_RX_MPDU_REORDER_BAID_SHIFT;
325
326 if (baid != IWL_RX_REORDER_DATA_INVALID_BAID)
327 return false;
328
329 mvm_sta = iwl_mvm_sta_from_mac80211(sta);
330 dup_data = &mvm_sta->dup_data[queue];
331
332 /*
333 * Drop duplicate 802.11 retransmissions
334 * (IEEE 802.11-2012: 9.3.2.10 "Duplicate detection and recovery")
335 */
336 if (ieee80211_is_ctl(hdr->frame_control) ||
337 ieee80211_is_qos_nullfunc(hdr->frame_control) ||
338 is_multicast_ether_addr(hdr->addr1)) {
339 rx_status->flag |= RX_FLAG_DUP_VALIDATED;
340 return false;
341 }
342
343 if (ieee80211_is_data_qos(hdr->frame_control))
344 /* frame has qos control */
345 tid = *ieee80211_get_qos_ctl(hdr) &
346 IEEE80211_QOS_CTL_TID_MASK;
347 else
348 tid = IWL_MAX_TID_COUNT;
349
350 /* If this wasn't a part of an A-MSDU the sub-frame index will be 0 */
351 sub_frame_idx = desc->amsdu_info & IWL_RX_MPDU_AMSDU_SUBFRAME_IDX_MASK;
352
353 if (unlikely(ieee80211_has_retry(hdr->frame_control) &&
354 dup_data->last_seq[tid] == hdr->seq_ctrl &&
355 dup_data->last_sub_frame[tid] >= sub_frame_idx))
356 return true;
357
358 dup_data->last_seq[tid] = hdr->seq_ctrl;
359 dup_data->last_sub_frame[tid] = sub_frame_idx;
360
361 rx_status->flag |= RX_FLAG_DUP_VALIDATED;
362
363 return false;
364}
365
Sara Sharon94bb4482015-12-16 18:48:28 +0200366int iwl_mvm_notify_rx_queue(struct iwl_mvm *mvm, u32 rxq_mask,
367 const u8 *data, u32 count)
368{
369 struct iwl_rxq_sync_cmd *cmd;
370 u32 data_size = sizeof(*cmd) + count;
371 int ret;
372
373 /* should be DWORD aligned */
374 if (WARN_ON(count & 3 || count > IWL_MULTI_QUEUE_SYNC_MSG_MAX_SIZE))
375 return -EINVAL;
376
377 cmd = kzalloc(data_size, GFP_KERNEL);
378 if (!cmd)
379 return -ENOMEM;
380
381 cmd->rxq_mask = cpu_to_le32(rxq_mask);
382 cmd->count = cpu_to_le32(count);
383 cmd->flags = 0;
384 memcpy(cmd->payload, data, count);
385
386 ret = iwl_mvm_send_cmd_pdu(mvm,
387 WIDE_ID(DATA_PATH_GROUP,
388 TRIGGER_RX_QUEUES_NOTIF_CMD),
389 0, data_size, cmd);
390
391 kfree(cmd);
392 return ret;
393}
394
Sara Sharon74dd1762016-03-30 20:04:48 +0300395/*
396 * Returns true if sn2 - buffer_size < sn1 < sn2.
397 * To be used only in order to compare reorder buffer head with NSSN.
398 * We fully trust NSSN unless it is behind us due to reorder timeout.
399 * Reorder timeout can only bring us up to buffer_size SNs ahead of NSSN.
400 */
401static bool iwl_mvm_is_sn_less(u16 sn1, u16 sn2, u16 buffer_size)
402{
403 return ieee80211_sn_less(sn1, sn2) &&
404 !ieee80211_sn_less(sn1, sn2 - buffer_size);
405}
406
Sara Sharon06904052016-02-28 20:28:17 +0200407#define RX_REORDER_BUF_TIMEOUT_MQ (HZ / 10)
408
Sara Sharonb915c102016-03-23 16:32:02 +0200409static void iwl_mvm_release_frames(struct iwl_mvm *mvm,
410 struct ieee80211_sta *sta,
411 struct napi_struct *napi,
412 struct iwl_mvm_reorder_buffer *reorder_buf,
413 u16 nssn)
414{
Johannes Bergdfdddd92017-09-26 12:24:51 +0200415 struct iwl_mvm_baid_data *baid_data =
416 iwl_mvm_baid_data_from_reorder_buf(reorder_buf);
417 struct iwl_mvm_reorder_buf_entry *entries =
418 &baid_data->entries[reorder_buf->queue *
419 baid_data->entries_per_queue];
Sara Sharonb915c102016-03-23 16:32:02 +0200420 u16 ssn = reorder_buf->head_sn;
421
Sara Sharon06904052016-02-28 20:28:17 +0200422 lockdep_assert_held(&reorder_buf->lock);
423
424 /* ignore nssn smaller than head sn - this can happen due to timeout */
Sara Sharon74dd1762016-03-30 20:04:48 +0300425 if (iwl_mvm_is_sn_less(nssn, ssn, reorder_buf->buf_size))
Sara Sharon5351f9a2017-01-03 21:03:35 +0200426 goto set_timer;
Sara Sharon06904052016-02-28 20:28:17 +0200427
Sara Sharon74dd1762016-03-30 20:04:48 +0300428 while (iwl_mvm_is_sn_less(ssn, nssn, reorder_buf->buf_size)) {
Sara Sharonb915c102016-03-23 16:32:02 +0200429 int index = ssn % reorder_buf->buf_size;
Johannes Bergdfdddd92017-09-26 12:24:51 +0200430 struct sk_buff_head *skb_list = &entries[index].e.frames;
Sara Sharonb915c102016-03-23 16:32:02 +0200431 struct sk_buff *skb;
432
433 ssn = ieee80211_sn_inc(ssn);
434
Sara Sharon5a710b82016-08-03 14:08:00 +0300435 /*
436 * Empty the list. Will have more than one frame for A-MSDU.
437 * Empty list is valid as well since nssn indicates frames were
438 * received.
439 */
Sara Sharonb915c102016-03-23 16:32:02 +0200440 while ((skb = __skb_dequeue(skb_list))) {
441 iwl_mvm_pass_packet_to_mac80211(mvm, napi, skb,
442 reorder_buf->queue,
443 sta);
444 reorder_buf->num_stored--;
445 }
446 }
447 reorder_buf->head_sn = nssn;
Sara Sharon06904052016-02-28 20:28:17 +0200448
Sara Sharon5351f9a2017-01-03 21:03:35 +0200449set_timer:
Sara Sharon06904052016-02-28 20:28:17 +0200450 if (reorder_buf->num_stored && !reorder_buf->removed) {
451 u16 index = reorder_buf->head_sn % reorder_buf->buf_size;
452
Johannes Bergdfdddd92017-09-26 12:24:51 +0200453 while (skb_queue_empty(&entries[index].e.frames))
Sara Sharon06904052016-02-28 20:28:17 +0200454 index = (index + 1) % reorder_buf->buf_size;
455 /* modify timer to match next frame's expiration time */
456 mod_timer(&reorder_buf->reorder_timer,
Johannes Bergdfdddd92017-09-26 12:24:51 +0200457 entries[index].e.reorder_time + 1 +
Sara Sharon06904052016-02-28 20:28:17 +0200458 RX_REORDER_BUF_TIMEOUT_MQ);
459 } else {
460 del_timer(&reorder_buf->reorder_timer);
461 }
462}
463
464void iwl_mvm_reorder_timer_expired(unsigned long data)
465{
466 struct iwl_mvm_reorder_buffer *buf = (void *)data;
Johannes Bergdfdddd92017-09-26 12:24:51 +0200467 struct iwl_mvm_baid_data *baid_data =
468 iwl_mvm_baid_data_from_reorder_buf(buf);
469 struct iwl_mvm_reorder_buf_entry *entries =
470 &baid_data->entries[buf->queue * baid_data->entries_per_queue];
Sara Sharon06904052016-02-28 20:28:17 +0200471 int i;
472 u16 sn = 0, index = 0;
473 bool expired = false;
Sara Sharon9c36fd72017-01-04 10:49:42 +0200474 bool cont = false;
Sara Sharon06904052016-02-28 20:28:17 +0200475
Johannes Berg9b856832016-08-03 13:38:59 +0200476 spin_lock(&buf->lock);
Sara Sharon06904052016-02-28 20:28:17 +0200477
478 if (!buf->num_stored || buf->removed) {
Johannes Berg9b856832016-08-03 13:38:59 +0200479 spin_unlock(&buf->lock);
Sara Sharon06904052016-02-28 20:28:17 +0200480 return;
481 }
482
483 for (i = 0; i < buf->buf_size ; i++) {
484 index = (buf->head_sn + i) % buf->buf_size;
485
Johannes Bergdfdddd92017-09-26 12:24:51 +0200486 if (skb_queue_empty(&entries[index].e.frames)) {
Sara Sharon9c36fd72017-01-04 10:49:42 +0200487 /*
488 * If there is a hole and the next frame didn't expire
489 * we want to break and not advance SN
490 */
491 cont = false;
Sara Sharon06904052016-02-28 20:28:17 +0200492 continue;
Sara Sharon9c36fd72017-01-04 10:49:42 +0200493 }
Johannes Bergdfdddd92017-09-26 12:24:51 +0200494 if (!cont &&
495 !time_after(jiffies, entries[index].e.reorder_time +
Sara Sharon9c36fd72017-01-04 10:49:42 +0200496 RX_REORDER_BUF_TIMEOUT_MQ))
Sara Sharon06904052016-02-28 20:28:17 +0200497 break;
Sara Sharon9c36fd72017-01-04 10:49:42 +0200498
Sara Sharon06904052016-02-28 20:28:17 +0200499 expired = true;
Sara Sharon9c36fd72017-01-04 10:49:42 +0200500 /* continue until next hole after this expired frames */
501 cont = true;
Sara Sharon06904052016-02-28 20:28:17 +0200502 sn = ieee80211_sn_add(buf->head_sn, i + 1);
503 }
504
505 if (expired) {
506 struct ieee80211_sta *sta;
Emmanuel Grumbach528a5422017-08-31 11:52:30 +0300507 struct iwl_mvm_sta *mvmsta;
Sara Sharon3f1c4c52017-10-02 12:07:59 +0300508 u8 sta_id = baid_data->sta_id;
Sara Sharon06904052016-02-28 20:28:17 +0200509
510 rcu_read_lock();
Sara Sharon3f1c4c52017-10-02 12:07:59 +0300511 sta = rcu_dereference(buf->mvm->fw_id_to_mac_id[sta_id]);
Emmanuel Grumbach528a5422017-08-31 11:52:30 +0300512 mvmsta = iwl_mvm_sta_from_mac80211(sta);
513
Sara Sharon06904052016-02-28 20:28:17 +0200514 /* SN is set to the last expired frame + 1 */
Sara Sharon35263a02016-06-21 12:12:10 +0300515 IWL_DEBUG_HT(buf->mvm,
516 "Releasing expired frames for sta %u, sn %d\n",
Sara Sharon3f1c4c52017-10-02 12:07:59 +0300517 sta_id, sn);
Emmanuel Grumbach528a5422017-08-31 11:52:30 +0300518 iwl_mvm_event_frame_timeout_callback(buf->mvm, mvmsta->vif,
Sara Sharon3f1c4c52017-10-02 12:07:59 +0300519 sta, baid_data->tid);
Sara Sharon06904052016-02-28 20:28:17 +0200520 iwl_mvm_release_frames(buf->mvm, sta, NULL, buf, sn);
521 rcu_read_unlock();
Johannes Bergaeb80122017-04-19 09:45:18 +0200522 } else {
Sara Sharon06904052016-02-28 20:28:17 +0200523 /*
524 * If no frame expired and there are stored frames, index is now
525 * pointing to the first unexpired frame - modify timer
526 * accordingly to this frame.
527 */
528 mod_timer(&buf->reorder_timer,
Johannes Bergdfdddd92017-09-26 12:24:51 +0200529 entries[index].e.reorder_time +
Sara Sharon06904052016-02-28 20:28:17 +0200530 1 + RX_REORDER_BUF_TIMEOUT_MQ);
531 }
Johannes Berg9b856832016-08-03 13:38:59 +0200532 spin_unlock(&buf->lock);
Sara Sharonb915c102016-03-23 16:32:02 +0200533}
534
535static void iwl_mvm_del_ba(struct iwl_mvm *mvm, int queue,
536 struct iwl_mvm_delba_data *data)
537{
538 struct iwl_mvm_baid_data *ba_data;
539 struct ieee80211_sta *sta;
540 struct iwl_mvm_reorder_buffer *reorder_buf;
541 u8 baid = data->baid;
542
Johannes Bergfd659f82016-08-03 13:52:56 +0200543 if (WARN_ONCE(baid >= IWL_MAX_BAID, "invalid BAID: %x\n", baid))
Sara Sharonb915c102016-03-23 16:32:02 +0200544 return;
545
546 rcu_read_lock();
547
548 ba_data = rcu_dereference(mvm->baid_map[baid]);
549 if (WARN_ON_ONCE(!ba_data))
550 goto out;
551
552 sta = rcu_dereference(mvm->fw_id_to_mac_id[ba_data->sta_id]);
553 if (WARN_ON_ONCE(IS_ERR_OR_NULL(sta)))
554 goto out;
555
556 reorder_buf = &ba_data->reorder_buf[queue];
557
558 /* release all frames that are in the reorder buffer to the stack */
Sara Sharon06904052016-02-28 20:28:17 +0200559 spin_lock_bh(&reorder_buf->lock);
Sara Sharonb915c102016-03-23 16:32:02 +0200560 iwl_mvm_release_frames(mvm, sta, NULL, reorder_buf,
561 ieee80211_sn_add(reorder_buf->head_sn,
562 reorder_buf->buf_size));
Sara Sharon06904052016-02-28 20:28:17 +0200563 spin_unlock_bh(&reorder_buf->lock);
564 del_timer_sync(&reorder_buf->reorder_timer);
Sara Sharonb915c102016-03-23 16:32:02 +0200565
566out:
567 rcu_read_unlock();
568}
569
Sara Sharon94bb4482015-12-16 18:48:28 +0200570void iwl_mvm_rx_queue_notif(struct iwl_mvm *mvm, struct iwl_rx_cmd_buffer *rxb,
571 int queue)
572{
573 struct iwl_rx_packet *pkt = rxb_addr(rxb);
574 struct iwl_rxq_sync_notification *notif;
575 struct iwl_mvm_internal_rxq_notif *internal_notif;
576
577 notif = (void *)pkt->data;
578 internal_notif = (void *)notif->payload;
579
Sara Sharond0ff5d22016-03-23 16:31:43 +0200580 if (internal_notif->sync) {
581 if (mvm->queue_sync_cookie != internal_notif->cookie) {
Sara Sharon0636b932016-02-18 14:21:12 +0200582 WARN_ONCE(1,
583 "Received expired RX queue sync message\n");
Sara Sharond0ff5d22016-03-23 16:31:43 +0200584 return;
585 }
Sara Sharon3a732c62016-10-09 17:34:24 +0300586 if (!atomic_dec_return(&mvm->queue_sync_counter))
587 wake_up(&mvm->rx_sync_waitq);
Sara Sharond0ff5d22016-03-23 16:31:43 +0200588 }
589
590 switch (internal_notif->type) {
591 case IWL_MVM_RXQ_EMPTY:
Sara Sharon0636b932016-02-18 14:21:12 +0200592 break;
Sara Sharon94bb4482015-12-16 18:48:28 +0200593 case IWL_MVM_RXQ_NOTIF_DEL_BA:
Sara Sharonb915c102016-03-23 16:32:02 +0200594 iwl_mvm_del_ba(mvm, queue, (void *)internal_notif->data);
Sara Sharon94bb4482015-12-16 18:48:28 +0200595 break;
596 default:
597 WARN_ONCE(1, "Invalid identifier %d", internal_notif->type);
598 }
599}
600
Sara Sharonb915c102016-03-23 16:32:02 +0200601/*
602 * Returns true if the MPDU was buffered\dropped, false if it should be passed
603 * to upper layer.
604 */
605static bool iwl_mvm_reorder(struct iwl_mvm *mvm,
606 struct napi_struct *napi,
607 int queue,
608 struct ieee80211_sta *sta,
609 struct sk_buff *skb,
610 struct iwl_rx_mpdu_desc *desc)
611{
612 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Luca Coelho1f9788f2016-05-16 14:34:20 +0300613 struct iwl_mvm_sta *mvm_sta;
Sara Sharonb915c102016-03-23 16:32:02 +0200614 struct iwl_mvm_baid_data *baid_data;
615 struct iwl_mvm_reorder_buffer *buffer;
616 struct sk_buff *tail;
617 u32 reorder = le32_to_cpu(desc->reorder_data);
618 bool amsdu = desc->mac_flags2 & IWL_RX_MPDU_MFLG2_AMSDU;
Sara Sharone7e14082016-04-17 14:15:17 +0300619 bool last_subframe =
620 desc->amsdu_info & IWL_RX_MPDU_AMSDU_LAST_SUBFRAME;
Sara Sharonb915c102016-03-23 16:32:02 +0200621 u8 tid = *ieee80211_get_qos_ctl(hdr) & IEEE80211_QOS_CTL_TID_MASK;
622 u8 sub_frame_idx = desc->amsdu_info &
623 IWL_RX_MPDU_AMSDU_SUBFRAME_IDX_MASK;
Johannes Bergdfdddd92017-09-26 12:24:51 +0200624 struct iwl_mvm_reorder_buf_entry *entries;
Sara Sharonb915c102016-03-23 16:32:02 +0200625 int index;
626 u16 nssn, sn;
627 u8 baid;
628
629 baid = (reorder & IWL_RX_MPDU_REORDER_BAID_MASK) >>
630 IWL_RX_MPDU_REORDER_BAID_SHIFT;
631
Johannes Berg8ec8ed42016-08-18 14:18:40 +0200632 /*
633 * This also covers the case of receiving a Block Ack Request
634 * outside a BA session; we'll pass it to mac80211 and that
635 * then sends a delBA action frame.
636 */
Sara Sharonb915c102016-03-23 16:32:02 +0200637 if (baid == IWL_RX_REORDER_DATA_INVALID_BAID)
638 return false;
639
640 /* no sta yet */
Sara Sharon417795a2017-09-28 11:11:51 +0300641 if (WARN_ONCE(IS_ERR_OR_NULL(sta),
642 "Got valid BAID without a valid station assigned\n"))
Sara Sharonb915c102016-03-23 16:32:02 +0200643 return false;
644
Luca Coelho1f9788f2016-05-16 14:34:20 +0300645 mvm_sta = iwl_mvm_sta_from_mac80211(sta);
646
Sara Sharon9a73a7d2016-08-08 13:07:01 +0300647 /* not a data packet or a bar */
648 if (!ieee80211_is_back_req(hdr->frame_control) &&
649 (!ieee80211_is_data_qos(hdr->frame_control) ||
650 is_multicast_ether_addr(hdr->addr1)))
Sara Sharonb915c102016-03-23 16:32:02 +0200651 return false;
652
653 if (unlikely(!ieee80211_is_data_present(hdr->frame_control)))
654 return false;
655
656 baid_data = rcu_dereference(mvm->baid_map[baid]);
Sara Sharon5d43eab2017-02-02 12:51:39 +0200657 if (!baid_data) {
Emmanuel Grumbacha6008522017-07-27 15:34:12 +0300658 IWL_DEBUG_RX(mvm,
659 "Got valid BAID but no baid allocated, bypass the re-ordering buffer. Baid %d reorder 0x%x\n",
660 baid, reorder);
Sara Sharonb915c102016-03-23 16:32:02 +0200661 return false;
Sara Sharon5d43eab2017-02-02 12:51:39 +0200662 }
663
Sara Sharonb915c102016-03-23 16:32:02 +0200664 if (WARN(tid != baid_data->tid || mvm_sta->sta_id != baid_data->sta_id,
665 "baid 0x%x is mapped to sta:%d tid:%d, but was received for sta:%d tid:%d\n",
666 baid, baid_data->sta_id, baid_data->tid, mvm_sta->sta_id,
667 tid))
668 return false;
669
670 nssn = reorder & IWL_RX_MPDU_REORDER_NSSN_MASK;
671 sn = (reorder & IWL_RX_MPDU_REORDER_SN_MASK) >>
672 IWL_RX_MPDU_REORDER_SN_SHIFT;
673
674 buffer = &baid_data->reorder_buf[queue];
Johannes Bergdfdddd92017-09-26 12:24:51 +0200675 entries = &baid_data->entries[queue * baid_data->entries_per_queue];
Sara Sharonb915c102016-03-23 16:32:02 +0200676
Sara Sharon06904052016-02-28 20:28:17 +0200677 spin_lock_bh(&buffer->lock);
678
Sara Sharon5d43eab2017-02-02 12:51:39 +0200679 if (!buffer->valid) {
680 if (reorder & IWL_RX_MPDU_REORDER_BA_OLD_SN) {
681 spin_unlock_bh(&buffer->lock);
682 return false;
683 }
684 buffer->valid = true;
685 }
686
Sara Sharon9a73a7d2016-08-08 13:07:01 +0300687 if (ieee80211_is_back_req(hdr->frame_control)) {
688 iwl_mvm_release_frames(mvm, sta, napi, buffer, nssn);
689 goto drop;
690 }
691
Sara Sharonb915c102016-03-23 16:32:02 +0200692 /*
693 * If there was a significant jump in the nssn - adjust.
694 * If the SN is smaller than the NSSN it might need to first go into
695 * the reorder buffer, in which case we just release up to it and the
Sara Sharon5f904722017-09-04 20:27:04 +0300696 * rest of the function will take care of storing it and releasing up to
697 * the nssn
Sara Sharonb915c102016-03-23 16:32:02 +0200698 */
Sara Sharon74dd1762016-03-30 20:04:48 +0300699 if (!iwl_mvm_is_sn_less(nssn, buffer->head_sn + buffer->buf_size,
Sara Sharon5f904722017-09-04 20:27:04 +0300700 buffer->buf_size) ||
701 !ieee80211_sn_less(sn, buffer->head_sn + buffer->buf_size)) {
Sara Sharonb915c102016-03-23 16:32:02 +0200702 u16 min_sn = ieee80211_sn_less(sn, nssn) ? sn : nssn;
703
704 iwl_mvm_release_frames(mvm, sta, napi, buffer, min_sn);
705 }
706
707 /* drop any oudated packets */
708 if (ieee80211_sn_less(sn, buffer->head_sn))
709 goto drop;
710
711 /* release immediately if allowed by nssn and no stored frames */
712 if (!buffer->num_stored && ieee80211_sn_less(sn, nssn)) {
Sara Sharon74dd1762016-03-30 20:04:48 +0300713 if (iwl_mvm_is_sn_less(buffer->head_sn, nssn,
Sara Sharone7e14082016-04-17 14:15:17 +0300714 buffer->buf_size) &&
715 (!amsdu || last_subframe))
Sara Sharon06904052016-02-28 20:28:17 +0200716 buffer->head_sn = nssn;
Sara Sharonb915c102016-03-23 16:32:02 +0200717 /* No need to update AMSDU last SN - we are moving the head */
Sara Sharon06904052016-02-28 20:28:17 +0200718 spin_unlock_bh(&buffer->lock);
Sara Sharonb915c102016-03-23 16:32:02 +0200719 return false;
720 }
721
722 index = sn % buffer->buf_size;
723
724 /*
725 * Check if we already stored this frame
726 * As AMSDU is either received or not as whole, logic is simple:
727 * If we have frames in that position in the buffer and the last frame
728 * originated from AMSDU had a different SN then it is a retransmission.
729 * If it is the same SN then if the subframe index is incrementing it
730 * is the same AMSDU - otherwise it is a retransmission.
731 */
Johannes Bergdfdddd92017-09-26 12:24:51 +0200732 tail = skb_peek_tail(&entries[index].e.frames);
Sara Sharonb915c102016-03-23 16:32:02 +0200733 if (tail && !amsdu)
734 goto drop;
735 else if (tail && (sn != buffer->last_amsdu ||
736 buffer->last_sub_index >= sub_frame_idx))
737 goto drop;
738
739 /* put in reorder buffer */
Johannes Bergdfdddd92017-09-26 12:24:51 +0200740 __skb_queue_tail(&entries[index].e.frames, skb);
Sara Sharonb915c102016-03-23 16:32:02 +0200741 buffer->num_stored++;
Johannes Bergdfdddd92017-09-26 12:24:51 +0200742 entries[index].e.reorder_time = jiffies;
Sara Sharon06904052016-02-28 20:28:17 +0200743
Sara Sharonb915c102016-03-23 16:32:02 +0200744 if (amsdu) {
745 buffer->last_amsdu = sn;
746 buffer->last_sub_index = sub_frame_idx;
747 }
748
Sara Sharone7e14082016-04-17 14:15:17 +0300749 /*
750 * We cannot trust NSSN for AMSDU sub-frames that are not the last.
751 * The reason is that NSSN advances on the first sub-frame, and may
752 * cause the reorder buffer to advance before all the sub-frames arrive.
753 * Example: reorder buffer contains SN 0 & 2, and we receive AMSDU with
754 * SN 1. NSSN for first sub frame will be 3 with the result of driver
755 * releasing SN 0,1, 2. When sub-frame 1 arrives - reorder buffer is
756 * already ahead and it will be dropped.
757 * If the last sub-frame is not on this queue - we will get frame
758 * release notification with up to date NSSN.
759 */
760 if (!amsdu || last_subframe)
761 iwl_mvm_release_frames(mvm, sta, napi, buffer, nssn);
762
Sara Sharon06904052016-02-28 20:28:17 +0200763 spin_unlock_bh(&buffer->lock);
Sara Sharonb915c102016-03-23 16:32:02 +0200764 return true;
765
766drop:
767 kfree_skb(skb);
Sara Sharon06904052016-02-28 20:28:17 +0200768 spin_unlock_bh(&buffer->lock);
Sara Sharonb915c102016-03-23 16:32:02 +0200769 return true;
770}
771
Sara Sharon5d43eab2017-02-02 12:51:39 +0200772static void iwl_mvm_agg_rx_received(struct iwl_mvm *mvm,
773 u32 reorder_data, u8 baid)
Sara Sharon10b2b202016-03-20 16:23:41 +0200774{
775 unsigned long now = jiffies;
776 unsigned long timeout;
777 struct iwl_mvm_baid_data *data;
778
779 rcu_read_lock();
780
781 data = rcu_dereference(mvm->baid_map[baid]);
Sara Sharon5d43eab2017-02-02 12:51:39 +0200782 if (!data) {
Emmanuel Grumbacha6008522017-07-27 15:34:12 +0300783 IWL_DEBUG_RX(mvm,
784 "Got valid BAID but no baid allocated, bypass the re-ordering buffer. Baid %d reorder 0x%x\n",
785 baid, reorder_data);
Sara Sharon10b2b202016-03-20 16:23:41 +0200786 goto out;
Sara Sharon5d43eab2017-02-02 12:51:39 +0200787 }
Sara Sharon10b2b202016-03-20 16:23:41 +0200788
789 if (!data->timeout)
790 goto out;
791
792 timeout = data->timeout;
793 /*
794 * Do not update last rx all the time to avoid cache bouncing
795 * between the rx queues.
796 * Update it every timeout. Worst case is the session will
797 * expire after ~ 2 * timeout, which doesn't matter that much.
798 */
799 if (time_before(data->last_rx + TU_TO_JIFFIES(timeout), now))
800 /* Update is atomic */
801 data->last_rx = now;
802
803out:
804 rcu_read_unlock();
805}
806
Johannes Berg780e87c2015-09-03 14:56:10 +0200807void iwl_mvm_rx_mpdu_mq(struct iwl_mvm *mvm, struct napi_struct *napi,
808 struct iwl_rx_cmd_buffer *rxb, int queue)
809{
810 struct ieee80211_rx_status *rx_status;
811 struct iwl_rx_packet *pkt = rxb_addr(rxb);
812 struct iwl_rx_mpdu_desc *desc = (void *)pkt->data;
Sara Sharon0c1c6e32015-12-16 21:17:06 +0200813 struct ieee80211_hdr *hdr = (void *)(pkt->data + sizeof(*desc));
Johannes Berg780e87c2015-09-03 14:56:10 +0200814 u32 len = le16_to_cpu(desc->mpdu_len);
815 u32 rate_n_flags = le32_to_cpu(desc->rate_n_flags);
Sara Sharonfbe41122016-04-04 19:28:45 +0300816 u16 phy_info = le16_to_cpu(desc->phy_info);
Johannes Berg780e87c2015-09-03 14:56:10 +0200817 struct ieee80211_sta *sta = NULL;
818 struct sk_buff *skb;
Johannes Berg780e87c2015-09-03 14:56:10 +0200819 u8 crypt_len = 0;
820
821 /* Dont use dev_alloc_skb(), we'll have enough headroom once
822 * ieee80211_hdr pulled.
823 */
824 skb = alloc_skb(128, GFP_ATOMIC);
825 if (!skb) {
826 IWL_ERR(mvm, "alloc_skb failed\n");
827 return;
828 }
829
830 rx_status = IEEE80211_SKB_RXCB(skb);
831
832 if (iwl_mvm_rx_crypto(mvm, hdr, rx_status, desc, queue, &crypt_len)) {
833 kfree_skb(skb);
834 return;
835 }
836
837 /*
838 * Keep packets with CRC errors (and with overrun) for monitor mode
839 * (otherwise the firmware discards them) but mark them as bad.
840 */
841 if (!(desc->status & cpu_to_le16(IWL_RX_MPDU_STATUS_CRC_OK)) ||
842 !(desc->status & cpu_to_le16(IWL_RX_MPDU_STATUS_OVERRUN_OK))) {
843 IWL_DEBUG_RX(mvm, "Bad CRC or FIFO: 0x%08X.\n",
844 le16_to_cpu(desc->status));
845 rx_status->flag |= RX_FLAG_FAILED_FCS_CRC;
846 }
Sara Sharonfbe41122016-04-04 19:28:45 +0300847 /* set the preamble flag if appropriate */
848 if (phy_info & IWL_RX_MPDU_PHY_SHORT_PREAMBLE)
Johannes Berg7fdd69c2017-04-26 11:13:00 +0200849 rx_status->enc_flags |= RX_ENC_FLAG_SHORTPRE;
Johannes Berg780e87c2015-09-03 14:56:10 +0200850
Sara Sharonfbe41122016-04-04 19:28:45 +0300851 if (likely(!(phy_info & IWL_RX_MPDU_PHY_TSF_OVERLOAD))) {
852 rx_status->mactime = le64_to_cpu(desc->tsf_on_air_rise);
853 /* TSF as indicated by the firmware is at INA time */
854 rx_status->flag |= RX_FLAG_MACTIME_PLCP_START;
855 }
Johannes Berg780e87c2015-09-03 14:56:10 +0200856 rx_status->device_timestamp = le32_to_cpu(desc->gp2_on_air_rise);
Johannes Berg57fbcce2016-04-12 15:56:15 +0200857 rx_status->band = desc->channel > 14 ? NL80211_BAND_5GHZ :
858 NL80211_BAND_2GHZ;
Johannes Berg780e87c2015-09-03 14:56:10 +0200859 rx_status->freq = ieee80211_channel_to_frequency(desc->channel,
860 rx_status->band);
861 iwl_mvm_get_signal_strength(mvm, desc, rx_status);
Sara Sharonfbe41122016-04-04 19:28:45 +0300862
863 /* update aggregation data for monitor sake on default queue */
864 if (!queue && (phy_info & IWL_RX_MPDU_PHY_AMPDU)) {
865 bool toggle_bit = phy_info & IWL_RX_MPDU_PHY_AMPDU_TOGGLE;
866
867 rx_status->flag |= RX_FLAG_AMPDU_DETAILS;
868 rx_status->ampdu_reference = mvm->ampdu_ref;
869 /* toggle is switched whenever new aggregation starts */
870 if (toggle_bit != mvm->ampdu_toggle) {
871 mvm->ampdu_ref++;
872 mvm->ampdu_toggle = toggle_bit;
873 }
874 }
Johannes Berg780e87c2015-09-03 14:56:10 +0200875
876 rcu_read_lock();
877
Johannes Bergc67a3d02017-06-07 09:31:13 +0200878 if (desc->status & cpu_to_le16(IWL_RX_MPDU_STATUS_SRC_STA_FOUND)) {
Johannes Berg780e87c2015-09-03 14:56:10 +0200879 u8 id = desc->sta_id_flags & IWL_RX_MPDU_SIF_STA_ID_MASK;
880
Sara Sharon0ae98812017-01-04 14:53:58 +0200881 if (!WARN_ON_ONCE(id >= ARRAY_SIZE(mvm->fw_id_to_mac_id))) {
Johannes Berg780e87c2015-09-03 14:56:10 +0200882 sta = rcu_dereference(mvm->fw_id_to_mac_id[id]);
883 if (IS_ERR(sta))
884 sta = NULL;
885 }
886 } else if (!is_multicast_ether_addr(hdr->addr2)) {
887 /*
888 * This is fine since we prevent two stations with the same
889 * address from being added.
890 */
891 sta = ieee80211_find_sta_by_ifaddr(mvm->hw, hdr->addr2, NULL);
892 }
893
894 if (sta) {
895 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
Andrei Otcheretianskid3a108a2016-02-28 17:12:21 +0200896 struct ieee80211_vif *tx_blocked_vif =
897 rcu_dereference(mvm->csa_tx_blocked_vif);
Sara Sharon10b2b202016-03-20 16:23:41 +0200898 u8 baid = (u8)((le32_to_cpu(desc->reorder_data) &
899 IWL_RX_MPDU_REORDER_BAID_MASK) >>
900 IWL_RX_MPDU_REORDER_BAID_SHIFT);
Johannes Berg780e87c2015-09-03 14:56:10 +0200901
902 /*
903 * We have tx blocked stations (with CS bit). If we heard
904 * frames from a blocked station on a new channel we can
905 * TX to it again.
906 */
Andrei Otcheretianskid3a108a2016-02-28 17:12:21 +0200907 if (unlikely(tx_blocked_vif) &&
908 tx_blocked_vif == mvmsta->vif) {
909 struct iwl_mvm_vif *mvmvif =
910 iwl_mvm_vif_from_mac80211(tx_blocked_vif);
911
912 if (mvmvif->csa_target_freq == rx_status->freq)
913 iwl_mvm_sta_modify_disable_tx_ap(mvm, sta,
914 false);
915 }
Johannes Berg780e87c2015-09-03 14:56:10 +0200916
917 rs_update_last_rssi(mvm, &mvmsta->lq_sta, rx_status);
918
919 if (iwl_fw_dbg_trigger_enabled(mvm->fw, FW_DBG_TRIGGER_RSSI) &&
920 ieee80211_is_beacon(hdr->frame_control)) {
921 struct iwl_fw_dbg_trigger_tlv *trig;
922 struct iwl_fw_dbg_trigger_low_rssi *rssi_trig;
923 bool trig_check;
924 s32 rssi;
925
926 trig = iwl_fw_dbg_get_trigger(mvm->fw,
927 FW_DBG_TRIGGER_RSSI);
928 rssi_trig = (void *)trig->data;
929 rssi = le32_to_cpu(rssi_trig->rssi);
930
931 trig_check =
Johannes Berg7174beb2017-06-01 16:03:19 +0200932 iwl_fw_dbg_trigger_check_stop(&mvm->fwrt,
933 ieee80211_vif_to_wdev(mvmsta->vif),
Johannes Berg780e87c2015-09-03 14:56:10 +0200934 trig);
935 if (trig_check && rx_status->signal < rssi)
Johannes Berg7174beb2017-06-01 16:03:19 +0200936 iwl_fw_dbg_collect_trig(&mvm->fwrt, trig,
937 NULL);
Johannes Berg780e87c2015-09-03 14:56:10 +0200938 }
939
Johannes Berg780e87c2015-09-03 14:56:10 +0200940 if (ieee80211_is_data(hdr->frame_control))
941 iwl_mvm_rx_csum(sta, skb, desc);
Sara Sharona571f5f2015-12-07 12:50:58 +0200942
943 if (iwl_mvm_is_nonagg_dup(sta, queue, rx_status, hdr, desc)) {
944 kfree_skb(skb);
Sara Sharoncb2de6b2017-02-13 13:36:31 +0200945 goto out;
Sara Sharona571f5f2015-12-07 12:50:58 +0200946 }
Sara Sharon62d23402016-03-06 09:51:29 +0200947
948 /*
949 * Our hardware de-aggregates AMSDUs but copies the mac header
950 * as it to the de-aggregated MPDUs. We need to turn off the
951 * AMSDU bit in the QoS control ourselves.
Sara Sharon9dfa2152017-02-14 14:58:21 +0200952 * In addition, HW reverses addr3 and addr4 - reverse it back.
Sara Sharon62d23402016-03-06 09:51:29 +0200953 */
954 if ((desc->mac_flags2 & IWL_RX_MPDU_MFLG2_AMSDU) &&
955 !WARN_ON(!ieee80211_is_data_qos(hdr->frame_control))) {
Sara Sharona56cb4f2017-01-31 14:36:10 +0200956 int i;
Sara Sharon62d23402016-03-06 09:51:29 +0200957 u8 *qc = ieee80211_get_qos_ctl(hdr);
Sara Sharona56cb4f2017-01-31 14:36:10 +0200958 u8 mac_addr[ETH_ALEN];
Sara Sharon62d23402016-03-06 09:51:29 +0200959
960 *qc &= ~IEEE80211_QOS_CTL_A_MSDU_PRESENT;
Sara Sharona56cb4f2017-01-31 14:36:10 +0200961
962 for (i = 0; i < ETH_ALEN; i++)
963 mac_addr[i] = hdr->addr3[ETH_ALEN - i - 1];
964 ether_addr_copy(hdr->addr3, mac_addr);
Sara Sharon9dfa2152017-02-14 14:58:21 +0200965
966 if (ieee80211_has_a4(hdr->frame_control)) {
967 for (i = 0; i < ETH_ALEN; i++)
968 mac_addr[i] =
969 hdr->addr4[ETH_ALEN - i - 1];
970 ether_addr_copy(hdr->addr4, mac_addr);
971 }
Sara Sharon62d23402016-03-06 09:51:29 +0200972 }
Sara Sharon5d43eab2017-02-02 12:51:39 +0200973 if (baid != IWL_RX_REORDER_DATA_INVALID_BAID) {
974 u32 reorder_data = le32_to_cpu(desc->reorder_data);
975
976 iwl_mvm_agg_rx_received(mvm, reorder_data, baid);
977 }
Johannes Berg780e87c2015-09-03 14:56:10 +0200978 }
979
Johannes Berg780e87c2015-09-03 14:56:10 +0200980 /* Set up the HT phy flags */
981 switch (rate_n_flags & RATE_MCS_CHAN_WIDTH_MSK) {
982 case RATE_MCS_CHAN_WIDTH_20:
983 break;
984 case RATE_MCS_CHAN_WIDTH_40:
Johannes Bergda6a4352017-04-26 12:14:59 +0200985 rx_status->bw = RATE_INFO_BW_40;
Johannes Berg780e87c2015-09-03 14:56:10 +0200986 break;
987 case RATE_MCS_CHAN_WIDTH_80:
Johannes Bergda6a4352017-04-26 12:14:59 +0200988 rx_status->bw = RATE_INFO_BW_80;
Johannes Berg780e87c2015-09-03 14:56:10 +0200989 break;
990 case RATE_MCS_CHAN_WIDTH_160:
Johannes Bergda6a4352017-04-26 12:14:59 +0200991 rx_status->bw = RATE_INFO_BW_160;
Johannes Berg780e87c2015-09-03 14:56:10 +0200992 break;
993 }
994 if (rate_n_flags & RATE_MCS_SGI_MSK)
Johannes Berg7fdd69c2017-04-26 11:13:00 +0200995 rx_status->enc_flags |= RX_ENC_FLAG_SHORT_GI;
Johannes Berg780e87c2015-09-03 14:56:10 +0200996 if (rate_n_flags & RATE_HT_MCS_GF_MSK)
Johannes Berg7fdd69c2017-04-26 11:13:00 +0200997 rx_status->enc_flags |= RX_ENC_FLAG_HT_GF;
Johannes Berg780e87c2015-09-03 14:56:10 +0200998 if (rate_n_flags & RATE_MCS_LDPC_MSK)
Johannes Berg7fdd69c2017-04-26 11:13:00 +0200999 rx_status->enc_flags |= RX_ENC_FLAG_LDPC;
Johannes Berg780e87c2015-09-03 14:56:10 +02001000 if (rate_n_flags & RATE_MCS_HT_MSK) {
Sara Sharon77e40942017-01-11 11:58:38 +02001001 u8 stbc = (rate_n_flags & RATE_MCS_STBC_MSK) >>
Johannes Berg780e87c2015-09-03 14:56:10 +02001002 RATE_MCS_STBC_POS;
Johannes Bergda6a4352017-04-26 12:14:59 +02001003 rx_status->encoding = RX_ENC_HT;
Johannes Berg780e87c2015-09-03 14:56:10 +02001004 rx_status->rate_idx = rate_n_flags & RATE_HT_MCS_INDEX_MSK;
Johannes Berg7fdd69c2017-04-26 11:13:00 +02001005 rx_status->enc_flags |= stbc << RX_ENC_FLAG_STBC_SHIFT;
Johannes Berg780e87c2015-09-03 14:56:10 +02001006 } else if (rate_n_flags & RATE_MCS_VHT_MSK) {
Sara Sharon77e40942017-01-11 11:58:38 +02001007 u8 stbc = (rate_n_flags & RATE_MCS_STBC_MSK) >>
Johannes Berg780e87c2015-09-03 14:56:10 +02001008 RATE_MCS_STBC_POS;
Johannes Berg8613c942017-04-26 13:51:41 +02001009 rx_status->nss =
Johannes Berg780e87c2015-09-03 14:56:10 +02001010 ((rate_n_flags & RATE_VHT_MCS_NSS_MSK) >>
1011 RATE_VHT_MCS_NSS_POS) + 1;
1012 rx_status->rate_idx = rate_n_flags & RATE_VHT_MCS_RATE_CODE_MSK;
Johannes Bergda6a4352017-04-26 12:14:59 +02001013 rx_status->encoding = RX_ENC_VHT;
Johannes Berg7fdd69c2017-04-26 11:13:00 +02001014 rx_status->enc_flags |= stbc << RX_ENC_FLAG_STBC_SHIFT;
Johannes Berg780e87c2015-09-03 14:56:10 +02001015 if (rate_n_flags & RATE_MCS_BF_MSK)
Johannes Berg7fdd69c2017-04-26 11:13:00 +02001016 rx_status->enc_flags |= RX_ENC_FLAG_BF;
Johannes Berg780e87c2015-09-03 14:56:10 +02001017 } else {
Sara Sharoncb2de6b2017-02-13 13:36:31 +02001018 int rate = iwl_mvm_legacy_rate_to_mac80211_idx(rate_n_flags,
1019 rx_status->band);
1020
1021 if (WARN(rate < 0 || rate > 0xFF,
1022 "Invalid rate flags 0x%x, band %d,\n",
1023 rate_n_flags, rx_status->band)) {
1024 kfree_skb(skb);
1025 goto out;
1026 }
1027 rx_status->rate_idx = rate;
1028
Johannes Berg780e87c2015-09-03 14:56:10 +02001029 }
1030
Sara Sharonfbe41122016-04-04 19:28:45 +03001031 /* management stuff on default queue */
1032 if (!queue) {
1033 if (unlikely((ieee80211_is_beacon(hdr->frame_control) ||
1034 ieee80211_is_probe_resp(hdr->frame_control)) &&
1035 mvm->sched_scan_pass_all ==
1036 SCHED_SCAN_PASS_ALL_ENABLED))
1037 mvm->sched_scan_pass_all = SCHED_SCAN_PASS_ALL_FOUND;
1038
1039 if (unlikely(ieee80211_is_beacon(hdr->frame_control) ||
1040 ieee80211_is_probe_resp(hdr->frame_control)))
1041 rx_status->boottime_ns = ktime_get_boot_ns();
1042 }
Johannes Berg780e87c2015-09-03 14:56:10 +02001043
Johannes Bergf5e28ea2015-12-06 14:58:08 +02001044 iwl_mvm_create_skb(skb, hdr, len, crypt_len, rxb);
Sara Sharonb915c102016-03-23 16:32:02 +02001045 if (!iwl_mvm_reorder(mvm, napi, queue, sta, skb, desc))
1046 iwl_mvm_pass_packet_to_mac80211(mvm, napi, skb, queue, sta);
Sara Sharoncb2de6b2017-02-13 13:36:31 +02001047out:
Johannes Bergf5e28ea2015-12-06 14:58:08 +02001048 rcu_read_unlock();
Johannes Berg780e87c2015-09-03 14:56:10 +02001049}
Sara Sharon585a6fc2015-12-01 13:48:18 +02001050
Sara Sharona3383842016-02-28 15:41:47 +02001051void iwl_mvm_rx_frame_release(struct iwl_mvm *mvm, struct napi_struct *napi,
Sara Sharon585a6fc2015-12-01 13:48:18 +02001052 struct iwl_rx_cmd_buffer *rxb, int queue)
1053{
Sara Sharona3383842016-02-28 15:41:47 +02001054 struct iwl_rx_packet *pkt = rxb_addr(rxb);
1055 struct iwl_frame_release *release = (void *)pkt->data;
1056 struct ieee80211_sta *sta;
1057 struct iwl_mvm_reorder_buffer *reorder_buf;
1058 struct iwl_mvm_baid_data *ba_data;
1059
1060 int baid = release->baid;
1061
Sara Sharon35263a02016-06-21 12:12:10 +03001062 IWL_DEBUG_HT(mvm, "Frame release notification for BAID %u, NSSN %d\n",
1063 release->baid, le16_to_cpu(release->nssn));
1064
Sara Sharona3383842016-02-28 15:41:47 +02001065 if (WARN_ON_ONCE(baid == IWL_RX_REORDER_DATA_INVALID_BAID))
1066 return;
1067
1068 rcu_read_lock();
1069
1070 ba_data = rcu_dereference(mvm->baid_map[baid]);
1071 if (WARN_ON_ONCE(!ba_data))
1072 goto out;
1073
1074 sta = rcu_dereference(mvm->fw_id_to_mac_id[ba_data->sta_id]);
1075 if (WARN_ON_ONCE(IS_ERR_OR_NULL(sta)))
1076 goto out;
1077
1078 reorder_buf = &ba_data->reorder_buf[queue];
1079
1080 spin_lock_bh(&reorder_buf->lock);
1081 iwl_mvm_release_frames(mvm, sta, napi, reorder_buf,
1082 le16_to_cpu(release->nssn));
1083 spin_unlock_bh(&reorder_buf->lock);
1084
1085out:
1086 rcu_read_unlock();
Sara Sharon585a6fc2015-12-01 13:48:18 +02001087}