blob: 4f320dc478b6c07891e00ec890b7309e035768c1 [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 Sharone29cc6b2016-01-28 14:25:33 +020010 * Copyright(c) 2015 - 2016 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 Sharone29cc6b2016-01-28 14:25:33 +020032 * Copyright(c) 2015 - 2016 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"
66#include "fw-dbg.h"
67
68void iwl_mvm_rx_phy_cmd_mq(struct iwl_mvm *mvm, struct iwl_rx_cmd_buffer *rxb)
69{
70 mvm->ampdu_ref++;
71
72#ifdef CONFIG_IWLWIFI_DEBUGFS
73 if (mvm->last_phy_info.phy_flags & cpu_to_le16(RX_RES_PHY_FLAGS_AGG)) {
74 spin_lock(&mvm->drv_stats_lock);
75 mvm->drv_rx_stats.ampdu_count++;
76 spin_unlock(&mvm->drv_stats_lock);
77 }
78#endif
79}
80
Johannes Bergf5e28ea2015-12-06 14:58:08 +020081static inline int iwl_mvm_check_pn(struct iwl_mvm *mvm, struct sk_buff *skb,
82 int queue, struct ieee80211_sta *sta)
83{
84 struct iwl_mvm_sta *mvmsta;
85 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
86 struct ieee80211_rx_status *stats = IEEE80211_SKB_RXCB(skb);
87 struct iwl_mvm_key_pn *ptk_pn;
88 u8 tid, keyidx;
89 u8 pn[IEEE80211_CCMP_PN_LEN];
90 u8 *extiv;
91
92 /* do PN checking */
93
94 /* multicast and non-data only arrives on default queue */
95 if (!ieee80211_is_data(hdr->frame_control) ||
96 is_multicast_ether_addr(hdr->addr1))
97 return 0;
98
99 /* do not check PN for open AP */
100 if (!(stats->flag & RX_FLAG_DECRYPTED))
101 return 0;
102
103 /*
104 * avoid checking for default queue - we don't want to replicate
105 * all the logic that's necessary for checking the PN on fragmented
106 * frames, leave that to mac80211
107 */
108 if (queue == 0)
109 return 0;
110
111 /* if we are here - this for sure is either CCMP or GCMP */
112 if (IS_ERR_OR_NULL(sta)) {
113 IWL_ERR(mvm,
114 "expected hw-decrypted unicast frame for station\n");
115 return -1;
116 }
117
118 mvmsta = iwl_mvm_sta_from_mac80211(sta);
119
120 extiv = (u8 *)hdr + ieee80211_hdrlen(hdr->frame_control);
121 keyidx = extiv[3] >> 6;
122
123 ptk_pn = rcu_dereference(mvmsta->ptk_pn[keyidx]);
124 if (!ptk_pn)
125 return -1;
126
127 if (ieee80211_is_data_qos(hdr->frame_control))
128 tid = *ieee80211_get_qos_ctl(hdr) & IEEE80211_QOS_CTL_TID_MASK;
129 else
130 tid = 0;
131
132 /* we don't use HCCA/802.11 QoS TSPECs, so drop such frames */
133 if (tid >= IWL_MAX_TID_COUNT)
134 return -1;
135
136 /* load pn */
137 pn[0] = extiv[7];
138 pn[1] = extiv[6];
139 pn[2] = extiv[5];
140 pn[3] = extiv[4];
141 pn[4] = extiv[1];
142 pn[5] = extiv[0];
143
144 if (memcmp(pn, ptk_pn->q[queue].pn[tid],
145 IEEE80211_CCMP_PN_LEN) <= 0)
146 return -1;
147
148 memcpy(ptk_pn->q[queue].pn[tid], pn, IEEE80211_CCMP_PN_LEN);
149 stats->flag |= RX_FLAG_PN_VALIDATED;
150
151 return 0;
152}
153
154/* iwl_mvm_create_skb Adds the rxb to a new skb */
155static void iwl_mvm_create_skb(struct sk_buff *skb, struct ieee80211_hdr *hdr,
156 u16 len, u8 crypt_len,
157 struct iwl_rx_cmd_buffer *rxb)
Johannes Berg780e87c2015-09-03 14:56:10 +0200158{
Sara Sharone29cc6b2016-01-28 14:25:33 +0200159 struct iwl_rx_packet *pkt = rxb_addr(rxb);
160 struct iwl_rx_mpdu_desc *desc = (void *)pkt->data;
161 unsigned int headlen, fraglen, pad_len = 0;
162 unsigned int hdrlen = ieee80211_hdrlen(hdr->frame_control);
163
164 if (desc->mac_flags2 & IWL_RX_MPDU_MFLG2_PAD)
165 pad_len = 2;
166 len -= pad_len;
Johannes Berg780e87c2015-09-03 14:56:10 +0200167
168 /* If frame is small enough to fit in skb->head, pull it completely.
169 * If not, only pull ieee80211_hdr (including crypto if present, and
170 * an additional 8 bytes for SNAP/ethertype, see below) so that
171 * splice() or TCP coalesce are more efficient.
172 *
173 * Since, in addition, ieee80211_data_to_8023() always pull in at
174 * least 8 bytes (possibly more for mesh) we can do the same here
175 * to save the cost of doing it later. That still doesn't pull in
176 * the actual IP header since the typical case has a SNAP header.
177 * If the latter changes (there are efforts in the standards group
178 * to do so) we should revisit this and ieee80211_data_to_8023().
179 */
Sara Sharone29cc6b2016-01-28 14:25:33 +0200180 headlen = (len <= skb_tailroom(skb)) ? len :
181 hdrlen + crypt_len + 8;
Johannes Berg780e87c2015-09-03 14:56:10 +0200182
Sara Sharone29cc6b2016-01-28 14:25:33 +0200183 /* The firmware may align the packet to DWORD.
184 * The padding is inserted after the IV.
185 * After copying the header + IV skip the padding if
186 * present before copying packet data.
187 */
188 hdrlen += crypt_len;
Johannes Berg780e87c2015-09-03 14:56:10 +0200189 memcpy(skb_put(skb, hdrlen), hdr, hdrlen);
Sara Sharone29cc6b2016-01-28 14:25:33 +0200190 memcpy(skb_put(skb, headlen - hdrlen), (u8 *)hdr + hdrlen + pad_len,
191 headlen - hdrlen);
192
193 fraglen = len - headlen;
Johannes Berg780e87c2015-09-03 14:56:10 +0200194
195 if (fraglen) {
Sara Sharone29cc6b2016-01-28 14:25:33 +0200196 int offset = (void *)hdr + headlen + pad_len -
Johannes Berg780e87c2015-09-03 14:56:10 +0200197 rxb_addr(rxb) + rxb_offset(rxb);
198
199 skb_add_rx_frag(skb, 0, rxb_steal_page(rxb), offset,
200 fraglen, rxb->truesize);
201 }
Johannes Bergf5e28ea2015-12-06 14:58:08 +0200202}
Johannes Berg780e87c2015-09-03 14:56:10 +0200203
Johannes Bergf5e28ea2015-12-06 14:58:08 +0200204/* iwl_mvm_pass_packet_to_mac80211 - passes the packet for mac80211 */
205static void iwl_mvm_pass_packet_to_mac80211(struct iwl_mvm *mvm,
206 struct napi_struct *napi,
207 struct sk_buff *skb, int queue,
208 struct ieee80211_sta *sta)
209{
210 if (iwl_mvm_check_pn(mvm, skb, queue, sta))
211 kfree_skb(skb);
212 else
Johannes Bergd63b5482016-03-31 20:02:02 +0300213 ieee80211_rx_napi(mvm->hw, NULL, skb, napi);
Johannes Berg780e87c2015-09-03 14:56:10 +0200214}
215
216static void iwl_mvm_get_signal_strength(struct iwl_mvm *mvm,
217 struct iwl_rx_mpdu_desc *desc,
218 struct ieee80211_rx_status *rx_status)
219{
Sara Sharond56a7802016-01-26 12:35:13 +0200220 int energy_a, energy_b, max_energy;
Johannes Berg780e87c2015-09-03 14:56:10 +0200221
222 energy_a = desc->energy_a;
223 energy_a = energy_a ? -energy_a : S8_MIN;
224 energy_b = desc->energy_b;
225 energy_b = energy_b ? -energy_b : S8_MIN;
Johannes Berg780e87c2015-09-03 14:56:10 +0200226 max_energy = max(energy_a, energy_b);
Johannes Berg780e87c2015-09-03 14:56:10 +0200227
Sara Sharond56a7802016-01-26 12:35:13 +0200228 IWL_DEBUG_STATS(mvm, "energy In A %d B %d, and max %d\n",
229 energy_a, energy_b, max_energy);
Johannes Berg780e87c2015-09-03 14:56:10 +0200230
231 rx_status->signal = max_energy;
232 rx_status->chains = 0; /* TODO: phy info */
233 rx_status->chain_signal[0] = energy_a;
234 rx_status->chain_signal[1] = energy_b;
Sara Sharond56a7802016-01-26 12:35:13 +0200235 rx_status->chain_signal[2] = S8_MIN;
Johannes Berg780e87c2015-09-03 14:56:10 +0200236}
237
Johannes Bergf5e28ea2015-12-06 14:58:08 +0200238static int iwl_mvm_rx_crypto(struct iwl_mvm *mvm, struct ieee80211_hdr *hdr,
Johannes Berg780e87c2015-09-03 14:56:10 +0200239 struct ieee80211_rx_status *stats,
240 struct iwl_rx_mpdu_desc *desc, int queue,
241 u8 *crypt_len)
242{
243 u16 status = le16_to_cpu(desc->status);
244
245 if (!ieee80211_has_protected(hdr->frame_control) ||
246 (status & IWL_RX_MPDU_STATUS_SEC_MASK) ==
247 IWL_RX_MPDU_STATUS_SEC_NONE)
248 return 0;
249
250 /* TODO: handle packets encrypted with unknown alg */
251
252 switch (status & IWL_RX_MPDU_STATUS_SEC_MASK) {
253 case IWL_RX_MPDU_STATUS_SEC_CCM:
254 case IWL_RX_MPDU_STATUS_SEC_GCM:
Johannes Bergf5e28ea2015-12-06 14:58:08 +0200255 BUILD_BUG_ON(IEEE80211_CCMP_PN_LEN != IEEE80211_GCMP_PN_LEN);
Johannes Berg780e87c2015-09-03 14:56:10 +0200256 /* alg is CCM: check MIC only */
257 if (!(status & IWL_RX_MPDU_STATUS_MIC_OK))
258 return -1;
259
260 stats->flag |= RX_FLAG_DECRYPTED;
261 *crypt_len = IEEE80211_CCMP_HDR_LEN;
262 return 0;
263 case IWL_RX_MPDU_STATUS_SEC_TKIP:
264 /* Don't drop the frame and decrypt it in SW */
265 if (!(status & IWL_RX_MPDU_RES_STATUS_TTAK_OK))
266 return 0;
267
268 *crypt_len = IEEE80211_TKIP_IV_LEN;
269 /* fall through if TTAK OK */
270 case IWL_RX_MPDU_STATUS_SEC_WEP:
271 if (!(status & IWL_RX_MPDU_STATUS_ICV_OK))
272 return -1;
273
274 stats->flag |= RX_FLAG_DECRYPTED;
275 if ((status & IWL_RX_MPDU_STATUS_SEC_MASK) ==
276 IWL_RX_MPDU_STATUS_SEC_WEP)
277 *crypt_len = IEEE80211_WEP_IV_LEN;
278 return 0;
279 case IWL_RX_MPDU_STATUS_SEC_EXT_ENC:
280 if (!(status & IWL_RX_MPDU_STATUS_MIC_OK))
281 return -1;
282 stats->flag |= RX_FLAG_DECRYPTED;
283 return 0;
284 default:
285 IWL_ERR(mvm, "Unhandled alg: 0x%x\n", status);
286 }
287
288 return 0;
289}
290
291static void iwl_mvm_rx_csum(struct ieee80211_sta *sta,
292 struct sk_buff *skb,
293 struct iwl_rx_mpdu_desc *desc)
294{
295 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
296 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(mvmsta->vif);
Sara Sharonb238be02016-03-16 13:57:50 +0200297 u16 flags = le16_to_cpu(desc->l3l4_flags);
298 u8 l3_prot = (u8)((flags & IWL_RX_L3L4_L3_PROTO_MASK) >>
299 IWL_RX_L3_PROTO_POS);
Johannes Berg780e87c2015-09-03 14:56:10 +0200300
301 if (mvmvif->features & NETIF_F_RXCSUM &&
Sara Sharonb238be02016-03-16 13:57:50 +0200302 flags & IWL_RX_L3L4_TCP_UDP_CSUM_OK &&
303 (flags & IWL_RX_L3L4_IP_HDR_CSUM_OK ||
304 l3_prot == IWL_RX_L3_TYPE_IPV6 ||
305 l3_prot == IWL_RX_L3_TYPE_IPV6_FRAG))
Johannes Berg780e87c2015-09-03 14:56:10 +0200306 skb->ip_summed = CHECKSUM_UNNECESSARY;
307}
308
Sara Sharona571f5f2015-12-07 12:50:58 +0200309/*
310 * returns true if a packet outside BA session is a duplicate and
311 * should be dropped
312 */
313static bool iwl_mvm_is_nonagg_dup(struct ieee80211_sta *sta, int queue,
314 struct ieee80211_rx_status *rx_status,
315 struct ieee80211_hdr *hdr,
316 struct iwl_rx_mpdu_desc *desc)
317{
318 struct iwl_mvm_sta *mvm_sta;
319 struct iwl_mvm_rxq_dup_data *dup_data;
320 u8 baid, tid, sub_frame_idx;
321
322 if (WARN_ON(IS_ERR_OR_NULL(sta)))
323 return false;
324
325 baid = (le32_to_cpu(desc->reorder_data) &
326 IWL_RX_MPDU_REORDER_BAID_MASK) >>
327 IWL_RX_MPDU_REORDER_BAID_SHIFT;
328
329 if (baid != IWL_RX_REORDER_DATA_INVALID_BAID)
330 return false;
331
332 mvm_sta = iwl_mvm_sta_from_mac80211(sta);
333 dup_data = &mvm_sta->dup_data[queue];
334
335 /*
336 * Drop duplicate 802.11 retransmissions
337 * (IEEE 802.11-2012: 9.3.2.10 "Duplicate detection and recovery")
338 */
339 if (ieee80211_is_ctl(hdr->frame_control) ||
340 ieee80211_is_qos_nullfunc(hdr->frame_control) ||
341 is_multicast_ether_addr(hdr->addr1)) {
342 rx_status->flag |= RX_FLAG_DUP_VALIDATED;
343 return false;
344 }
345
346 if (ieee80211_is_data_qos(hdr->frame_control))
347 /* frame has qos control */
348 tid = *ieee80211_get_qos_ctl(hdr) &
349 IEEE80211_QOS_CTL_TID_MASK;
350 else
351 tid = IWL_MAX_TID_COUNT;
352
353 /* If this wasn't a part of an A-MSDU the sub-frame index will be 0 */
354 sub_frame_idx = desc->amsdu_info & IWL_RX_MPDU_AMSDU_SUBFRAME_IDX_MASK;
355
356 if (unlikely(ieee80211_has_retry(hdr->frame_control) &&
357 dup_data->last_seq[tid] == hdr->seq_ctrl &&
358 dup_data->last_sub_frame[tid] >= sub_frame_idx))
359 return true;
360
361 dup_data->last_seq[tid] = hdr->seq_ctrl;
362 dup_data->last_sub_frame[tid] = sub_frame_idx;
363
364 rx_status->flag |= RX_FLAG_DUP_VALIDATED;
365
366 return false;
367}
368
Sara Sharon94bb4482015-12-16 18:48:28 +0200369int iwl_mvm_notify_rx_queue(struct iwl_mvm *mvm, u32 rxq_mask,
370 const u8 *data, u32 count)
371{
372 struct iwl_rxq_sync_cmd *cmd;
373 u32 data_size = sizeof(*cmd) + count;
374 int ret;
375
376 /* should be DWORD aligned */
377 if (WARN_ON(count & 3 || count > IWL_MULTI_QUEUE_SYNC_MSG_MAX_SIZE))
378 return -EINVAL;
379
380 cmd = kzalloc(data_size, GFP_KERNEL);
381 if (!cmd)
382 return -ENOMEM;
383
384 cmd->rxq_mask = cpu_to_le32(rxq_mask);
385 cmd->count = cpu_to_le32(count);
386 cmd->flags = 0;
387 memcpy(cmd->payload, data, count);
388
389 ret = iwl_mvm_send_cmd_pdu(mvm,
390 WIDE_ID(DATA_PATH_GROUP,
391 TRIGGER_RX_QUEUES_NOTIF_CMD),
392 0, data_size, cmd);
393
394 kfree(cmd);
395 return ret;
396}
397
Sara Sharonb915c102016-03-23 16:32:02 +0200398static void iwl_mvm_release_frames(struct iwl_mvm *mvm,
399 struct ieee80211_sta *sta,
400 struct napi_struct *napi,
401 struct iwl_mvm_reorder_buffer *reorder_buf,
402 u16 nssn)
403{
404 u16 ssn = reorder_buf->head_sn;
405
406 while (ieee80211_sn_less(ssn, nssn)) {
407 int index = ssn % reorder_buf->buf_size;
408 struct sk_buff_head *skb_list = &reorder_buf->entries[index];
409 struct sk_buff *skb;
410
411 ssn = ieee80211_sn_inc(ssn);
412
413 /* holes are valid since nssn indicates frames were received. */
414 if (skb_queue_empty(skb_list) || !skb_peek_tail(skb_list))
415 continue;
416 /* Empty the list. Will have more than one frame for A-MSDU */
417 while ((skb = __skb_dequeue(skb_list))) {
418 iwl_mvm_pass_packet_to_mac80211(mvm, napi, skb,
419 reorder_buf->queue,
420 sta);
421 reorder_buf->num_stored--;
422 }
423 }
424 reorder_buf->head_sn = nssn;
425}
426
427static void iwl_mvm_del_ba(struct iwl_mvm *mvm, int queue,
428 struct iwl_mvm_delba_data *data)
429{
430 struct iwl_mvm_baid_data *ba_data;
431 struct ieee80211_sta *sta;
432 struct iwl_mvm_reorder_buffer *reorder_buf;
433 u8 baid = data->baid;
434
435 if (WARN_ON_ONCE(baid >= IWL_RX_REORDER_DATA_INVALID_BAID))
436 return;
437
438 rcu_read_lock();
439
440 ba_data = rcu_dereference(mvm->baid_map[baid]);
441 if (WARN_ON_ONCE(!ba_data))
442 goto out;
443
444 sta = rcu_dereference(mvm->fw_id_to_mac_id[ba_data->sta_id]);
445 if (WARN_ON_ONCE(IS_ERR_OR_NULL(sta)))
446 goto out;
447
448 reorder_buf = &ba_data->reorder_buf[queue];
449
450 /* release all frames that are in the reorder buffer to the stack */
451 iwl_mvm_release_frames(mvm, sta, NULL, reorder_buf,
452 ieee80211_sn_add(reorder_buf->head_sn,
453 reorder_buf->buf_size));
454
455out:
456 rcu_read_unlock();
457}
458
Sara Sharon94bb4482015-12-16 18:48:28 +0200459void iwl_mvm_rx_queue_notif(struct iwl_mvm *mvm, struct iwl_rx_cmd_buffer *rxb,
460 int queue)
461{
462 struct iwl_rx_packet *pkt = rxb_addr(rxb);
463 struct iwl_rxq_sync_notification *notif;
464 struct iwl_mvm_internal_rxq_notif *internal_notif;
465
466 notif = (void *)pkt->data;
467 internal_notif = (void *)notif->payload;
468
Sara Sharond0ff5d22016-03-23 16:31:43 +0200469 if (internal_notif->sync) {
470 if (mvm->queue_sync_cookie != internal_notif->cookie) {
Sara Sharon0636b932016-02-18 14:21:12 +0200471 WARN_ONCE(1,
472 "Received expired RX queue sync message\n");
Sara Sharond0ff5d22016-03-23 16:31:43 +0200473 return;
474 }
475 atomic_dec(&mvm->queue_sync_counter);
476 }
477
478 switch (internal_notif->type) {
479 case IWL_MVM_RXQ_EMPTY:
Sara Sharon0636b932016-02-18 14:21:12 +0200480 break;
Sara Sharon94bb4482015-12-16 18:48:28 +0200481 case IWL_MVM_RXQ_NOTIF_DEL_BA:
Sara Sharonb915c102016-03-23 16:32:02 +0200482 iwl_mvm_del_ba(mvm, queue, (void *)internal_notif->data);
Sara Sharon94bb4482015-12-16 18:48:28 +0200483 break;
484 default:
485 WARN_ONCE(1, "Invalid identifier %d", internal_notif->type);
486 }
487}
488
Sara Sharonb915c102016-03-23 16:32:02 +0200489/*
490 * Returns true if the MPDU was buffered\dropped, false if it should be passed
491 * to upper layer.
492 */
493static bool iwl_mvm_reorder(struct iwl_mvm *mvm,
494 struct napi_struct *napi,
495 int queue,
496 struct ieee80211_sta *sta,
497 struct sk_buff *skb,
498 struct iwl_rx_mpdu_desc *desc)
499{
500 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
501 struct iwl_mvm_sta *mvm_sta = iwl_mvm_sta_from_mac80211(sta);
502 struct iwl_mvm_baid_data *baid_data;
503 struct iwl_mvm_reorder_buffer *buffer;
504 struct sk_buff *tail;
505 u32 reorder = le32_to_cpu(desc->reorder_data);
506 bool amsdu = desc->mac_flags2 & IWL_RX_MPDU_MFLG2_AMSDU;
507 u8 tid = *ieee80211_get_qos_ctl(hdr) & IEEE80211_QOS_CTL_TID_MASK;
508 u8 sub_frame_idx = desc->amsdu_info &
509 IWL_RX_MPDU_AMSDU_SUBFRAME_IDX_MASK;
510 int index;
511 u16 nssn, sn;
512 u8 baid;
513
514 baid = (reorder & IWL_RX_MPDU_REORDER_BAID_MASK) >>
515 IWL_RX_MPDU_REORDER_BAID_SHIFT;
516
517 if (baid == IWL_RX_REORDER_DATA_INVALID_BAID)
518 return false;
519
520 /* no sta yet */
521 if (WARN_ON(IS_ERR_OR_NULL(sta)))
522 return false;
523
524 /* not a data packet */
525 if (!ieee80211_is_data_qos(hdr->frame_control) ||
526 is_multicast_ether_addr(hdr->addr1))
527 return false;
528
529 if (unlikely(!ieee80211_is_data_present(hdr->frame_control)))
530 return false;
531
532 baid_data = rcu_dereference(mvm->baid_map[baid]);
533 if (WARN(!baid_data,
534 "Received baid %d, but no data exists for this BAID\n", baid))
535 return false;
536 if (WARN(tid != baid_data->tid || mvm_sta->sta_id != baid_data->sta_id,
537 "baid 0x%x is mapped to sta:%d tid:%d, but was received for sta:%d tid:%d\n",
538 baid, baid_data->sta_id, baid_data->tid, mvm_sta->sta_id,
539 tid))
540 return false;
541
542 nssn = reorder & IWL_RX_MPDU_REORDER_NSSN_MASK;
543 sn = (reorder & IWL_RX_MPDU_REORDER_SN_MASK) >>
544 IWL_RX_MPDU_REORDER_SN_SHIFT;
545
546 buffer = &baid_data->reorder_buf[queue];
547
548 /*
549 * If there was a significant jump in the nssn - adjust.
550 * If the SN is smaller than the NSSN it might need to first go into
551 * the reorder buffer, in which case we just release up to it and the
552 * rest of the function will take of storing it and releasing up to the
553 * nssn
554 */
555 if (!ieee80211_sn_less(nssn, buffer->head_sn + buffer->buf_size)) {
556 u16 min_sn = ieee80211_sn_less(sn, nssn) ? sn : nssn;
557
558 iwl_mvm_release_frames(mvm, sta, napi, buffer, min_sn);
559 }
560
561 /* drop any oudated packets */
562 if (ieee80211_sn_less(sn, buffer->head_sn))
563 goto drop;
564
565 /* release immediately if allowed by nssn and no stored frames */
566 if (!buffer->num_stored && ieee80211_sn_less(sn, nssn)) {
567 buffer->head_sn = nssn;
568 /* No need to update AMSDU last SN - we are moving the head */
569 return false;
570 }
571
572 index = sn % buffer->buf_size;
573
574 /*
575 * Check if we already stored this frame
576 * As AMSDU is either received or not as whole, logic is simple:
577 * If we have frames in that position in the buffer and the last frame
578 * originated from AMSDU had a different SN then it is a retransmission.
579 * If it is the same SN then if the subframe index is incrementing it
580 * is the same AMSDU - otherwise it is a retransmission.
581 */
582 tail = skb_peek_tail(&buffer->entries[index]);
583 if (tail && !amsdu)
584 goto drop;
585 else if (tail && (sn != buffer->last_amsdu ||
586 buffer->last_sub_index >= sub_frame_idx))
587 goto drop;
588
589 /* put in reorder buffer */
590 __skb_queue_tail(&buffer->entries[index], skb);
591 buffer->num_stored++;
592 if (amsdu) {
593 buffer->last_amsdu = sn;
594 buffer->last_sub_index = sub_frame_idx;
595 }
596
597 iwl_mvm_release_frames(mvm, sta, napi, buffer, nssn);
598 return true;
599
600drop:
601 kfree_skb(skb);
602 return true;
603}
604
Sara Sharon10b2b202016-03-20 16:23:41 +0200605static void iwl_mvm_agg_rx_received(struct iwl_mvm *mvm, u8 baid)
606{
607 unsigned long now = jiffies;
608 unsigned long timeout;
609 struct iwl_mvm_baid_data *data;
610
611 rcu_read_lock();
612
613 data = rcu_dereference(mvm->baid_map[baid]);
614 if (WARN_ON(!data))
615 goto out;
616
617 if (!data->timeout)
618 goto out;
619
620 timeout = data->timeout;
621 /*
622 * Do not update last rx all the time to avoid cache bouncing
623 * between the rx queues.
624 * Update it every timeout. Worst case is the session will
625 * expire after ~ 2 * timeout, which doesn't matter that much.
626 */
627 if (time_before(data->last_rx + TU_TO_JIFFIES(timeout), now))
628 /* Update is atomic */
629 data->last_rx = now;
630
631out:
632 rcu_read_unlock();
633}
634
Johannes Berg780e87c2015-09-03 14:56:10 +0200635void iwl_mvm_rx_mpdu_mq(struct iwl_mvm *mvm, struct napi_struct *napi,
636 struct iwl_rx_cmd_buffer *rxb, int queue)
637{
638 struct ieee80211_rx_status *rx_status;
639 struct iwl_rx_packet *pkt = rxb_addr(rxb);
640 struct iwl_rx_mpdu_desc *desc = (void *)pkt->data;
Sara Sharon0c1c6e32015-12-16 21:17:06 +0200641 struct ieee80211_hdr *hdr = (void *)(pkt->data + sizeof(*desc));
Johannes Berg780e87c2015-09-03 14:56:10 +0200642 u32 len = le16_to_cpu(desc->mpdu_len);
643 u32 rate_n_flags = le32_to_cpu(desc->rate_n_flags);
644 struct ieee80211_sta *sta = NULL;
645 struct sk_buff *skb;
Johannes Berg780e87c2015-09-03 14:56:10 +0200646 u8 crypt_len = 0;
647
648 /* Dont use dev_alloc_skb(), we'll have enough headroom once
649 * ieee80211_hdr pulled.
650 */
651 skb = alloc_skb(128, GFP_ATOMIC);
652 if (!skb) {
653 IWL_ERR(mvm, "alloc_skb failed\n");
654 return;
655 }
656
657 rx_status = IEEE80211_SKB_RXCB(skb);
658
659 if (iwl_mvm_rx_crypto(mvm, hdr, rx_status, desc, queue, &crypt_len)) {
660 kfree_skb(skb);
661 return;
662 }
663
664 /*
665 * Keep packets with CRC errors (and with overrun) for monitor mode
666 * (otherwise the firmware discards them) but mark them as bad.
667 */
668 if (!(desc->status & cpu_to_le16(IWL_RX_MPDU_STATUS_CRC_OK)) ||
669 !(desc->status & cpu_to_le16(IWL_RX_MPDU_STATUS_OVERRUN_OK))) {
670 IWL_DEBUG_RX(mvm, "Bad CRC or FIFO: 0x%08X.\n",
671 le16_to_cpu(desc->status));
672 rx_status->flag |= RX_FLAG_FAILED_FCS_CRC;
673 }
674
675 rx_status->mactime = le64_to_cpu(desc->tsf_on_air_rise);
676 rx_status->device_timestamp = le32_to_cpu(desc->gp2_on_air_rise);
Johannes Berg57fbcce2016-04-12 15:56:15 +0200677 rx_status->band = desc->channel > 14 ? NL80211_BAND_5GHZ :
678 NL80211_BAND_2GHZ;
Johannes Berg780e87c2015-09-03 14:56:10 +0200679 rx_status->freq = ieee80211_channel_to_frequency(desc->channel,
680 rx_status->band);
681 iwl_mvm_get_signal_strength(mvm, desc, rx_status);
Sara Sharon77fe7392016-01-10 14:23:25 +0200682 /* TSF as indicated by the firmware is at INA time */
683 rx_status->flag |= RX_FLAG_MACTIME_PLCP_START;
Johannes Berg780e87c2015-09-03 14:56:10 +0200684
685 rcu_read_lock();
686
687 if (le16_to_cpu(desc->status) & IWL_RX_MPDU_STATUS_SRC_STA_FOUND) {
688 u8 id = desc->sta_id_flags & IWL_RX_MPDU_SIF_STA_ID_MASK;
689
690 if (!WARN_ON_ONCE(id >= IWL_MVM_STATION_COUNT)) {
691 sta = rcu_dereference(mvm->fw_id_to_mac_id[id]);
692 if (IS_ERR(sta))
693 sta = NULL;
694 }
695 } else if (!is_multicast_ether_addr(hdr->addr2)) {
696 /*
697 * This is fine since we prevent two stations with the same
698 * address from being added.
699 */
700 sta = ieee80211_find_sta_by_ifaddr(mvm->hw, hdr->addr2, NULL);
701 }
702
703 if (sta) {
704 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta);
Sara Sharon10b2b202016-03-20 16:23:41 +0200705 u8 baid = (u8)((le32_to_cpu(desc->reorder_data) &
706 IWL_RX_MPDU_REORDER_BAID_MASK) >>
707 IWL_RX_MPDU_REORDER_BAID_SHIFT);
Johannes Berg780e87c2015-09-03 14:56:10 +0200708
709 /*
710 * We have tx blocked stations (with CS bit). If we heard
711 * frames from a blocked station on a new channel we can
712 * TX to it again.
713 */
714 if (unlikely(mvm->csa_tx_block_bcn_timeout))
715 iwl_mvm_sta_modify_disable_tx_ap(mvm, sta, false);
716
717 rs_update_last_rssi(mvm, &mvmsta->lq_sta, rx_status);
718
719 if (iwl_fw_dbg_trigger_enabled(mvm->fw, FW_DBG_TRIGGER_RSSI) &&
720 ieee80211_is_beacon(hdr->frame_control)) {
721 struct iwl_fw_dbg_trigger_tlv *trig;
722 struct iwl_fw_dbg_trigger_low_rssi *rssi_trig;
723 bool trig_check;
724 s32 rssi;
725
726 trig = iwl_fw_dbg_get_trigger(mvm->fw,
727 FW_DBG_TRIGGER_RSSI);
728 rssi_trig = (void *)trig->data;
729 rssi = le32_to_cpu(rssi_trig->rssi);
730
731 trig_check =
732 iwl_fw_dbg_trigger_check_stop(mvm, mvmsta->vif,
733 trig);
734 if (trig_check && rx_status->signal < rssi)
735 iwl_mvm_fw_dbg_collect_trig(mvm, trig, NULL);
736 }
737
738 /* TODO: multi queue TCM */
739
740 if (ieee80211_is_data(hdr->frame_control))
741 iwl_mvm_rx_csum(sta, skb, desc);
Sara Sharona571f5f2015-12-07 12:50:58 +0200742
743 if (iwl_mvm_is_nonagg_dup(sta, queue, rx_status, hdr, desc)) {
744 kfree_skb(skb);
745 rcu_read_unlock();
746 return;
747 }
Sara Sharon62d23402016-03-06 09:51:29 +0200748
749 /*
750 * Our hardware de-aggregates AMSDUs but copies the mac header
751 * as it to the de-aggregated MPDUs. We need to turn off the
752 * AMSDU bit in the QoS control ourselves.
753 */
754 if ((desc->mac_flags2 & IWL_RX_MPDU_MFLG2_AMSDU) &&
755 !WARN_ON(!ieee80211_is_data_qos(hdr->frame_control))) {
756 u8 *qc = ieee80211_get_qos_ctl(hdr);
757
758 *qc &= ~IEEE80211_QOS_CTL_A_MSDU_PRESENT;
759 }
Sara Sharon10b2b202016-03-20 16:23:41 +0200760 if (baid != IWL_RX_REORDER_DATA_INVALID_BAID)
761 iwl_mvm_agg_rx_received(mvm, baid);
Johannes Berg780e87c2015-09-03 14:56:10 +0200762 }
763
Johannes Berg780e87c2015-09-03 14:56:10 +0200764 /*
765 * TODO: PHY info.
766 * Verify we don't have the information in the MPDU descriptor and
767 * that it is not needed.
768 * Make sure for monitor mode that we are on default queue, update
769 * ampdu_ref and the rest of phy info then
770 */
771
772 /* Set up the HT phy flags */
773 switch (rate_n_flags & RATE_MCS_CHAN_WIDTH_MSK) {
774 case RATE_MCS_CHAN_WIDTH_20:
775 break;
776 case RATE_MCS_CHAN_WIDTH_40:
777 rx_status->flag |= RX_FLAG_40MHZ;
778 break;
779 case RATE_MCS_CHAN_WIDTH_80:
780 rx_status->vht_flag |= RX_VHT_FLAG_80MHZ;
781 break;
782 case RATE_MCS_CHAN_WIDTH_160:
783 rx_status->vht_flag |= RX_VHT_FLAG_160MHZ;
784 break;
785 }
786 if (rate_n_flags & RATE_MCS_SGI_MSK)
787 rx_status->flag |= RX_FLAG_SHORT_GI;
788 if (rate_n_flags & RATE_HT_MCS_GF_MSK)
789 rx_status->flag |= RX_FLAG_HT_GF;
790 if (rate_n_flags & RATE_MCS_LDPC_MSK)
791 rx_status->flag |= RX_FLAG_LDPC;
792 if (rate_n_flags & RATE_MCS_HT_MSK) {
793 u8 stbc = (rate_n_flags & RATE_MCS_HT_STBC_MSK) >>
794 RATE_MCS_STBC_POS;
795 rx_status->flag |= RX_FLAG_HT;
796 rx_status->rate_idx = rate_n_flags & RATE_HT_MCS_INDEX_MSK;
797 rx_status->flag |= stbc << RX_FLAG_STBC_SHIFT;
798 } else if (rate_n_flags & RATE_MCS_VHT_MSK) {
799 u8 stbc = (rate_n_flags & RATE_MCS_VHT_STBC_MSK) >>
800 RATE_MCS_STBC_POS;
801 rx_status->vht_nss =
802 ((rate_n_flags & RATE_VHT_MCS_NSS_MSK) >>
803 RATE_VHT_MCS_NSS_POS) + 1;
804 rx_status->rate_idx = rate_n_flags & RATE_VHT_MCS_RATE_CODE_MSK;
805 rx_status->flag |= RX_FLAG_VHT;
806 rx_status->flag |= stbc << RX_FLAG_STBC_SHIFT;
807 if (rate_n_flags & RATE_MCS_BF_MSK)
808 rx_status->vht_flag |= RX_VHT_FLAG_BF;
809 } else {
810 rx_status->rate_idx =
811 iwl_mvm_legacy_rate_to_mac80211_idx(rate_n_flags,
812 rx_status->band);
813 }
814
815 /* TODO: PHY info - update ampdu queue statistics (for debugfs) */
816 /* TODO: PHY info - gscan */
817
Johannes Bergf5e28ea2015-12-06 14:58:08 +0200818 iwl_mvm_create_skb(skb, hdr, len, crypt_len, rxb);
Sara Sharonb915c102016-03-23 16:32:02 +0200819 if (!iwl_mvm_reorder(mvm, napi, queue, sta, skb, desc))
820 iwl_mvm_pass_packet_to_mac80211(mvm, napi, skb, queue, sta);
Johannes Bergf5e28ea2015-12-06 14:58:08 +0200821 rcu_read_unlock();
Johannes Berg780e87c2015-09-03 14:56:10 +0200822}
Sara Sharon585a6fc2015-12-01 13:48:18 +0200823
824void iwl_mvm_rx_frame_release(struct iwl_mvm *mvm,
825 struct iwl_rx_cmd_buffer *rxb, int queue)
826{
827 /* TODO */
828}