1
2
3
4
5
6
7
8
9
10
11
12
13#include <linux/kernel.h>
14#include <linux/slab.h>
15#include <linux/skbuff.h>
16#include <linux/if_vlan.h>
17#include <linux/etherdevice.h>
18#include <linux/bitmap.h>
19#include <linux/rcupdate.h>
20#include <linux/export.h>
21#include <net/net_namespace.h>
22#include <net/ieee80211_radiotap.h>
23#include <net/cfg80211.h>
24#include <net/mac80211.h>
25#include <net/codel.h>
26#include <net/codel_impl.h>
27#include <asm/unaligned.h>
28#include <net/fq_impl.h>
29
30#include "ieee80211_i.h"
31#include "driver-ops.h"
32#include "led.h"
33#include "mesh.h"
34#include "wep.h"
35#include "wpa.h"
36#include "wme.h"
37#include "rate.h"
38
39
40
41static inline void ieee80211_tx_stats(struct net_device *dev, u32 len)
42{
43 struct pcpu_sw_netstats *tstats = this_cpu_ptr(dev->tstats);
44
45 u64_stats_update_begin(&tstats->syncp);
46 tstats->tx_packets++;
47 tstats->tx_bytes += len;
48 u64_stats_update_end(&tstats->syncp);
49}
50
51static __le16 ieee80211_duration(struct ieee80211_tx_data *tx,
52 struct sk_buff *skb, int group_addr,
53 int next_frag_len)
54{
55 int rate, mrate, erp, dur, i, shift = 0;
56 struct ieee80211_rate *txrate;
57 struct ieee80211_local *local = tx->local;
58 struct ieee80211_supported_band *sband;
59 struct ieee80211_hdr *hdr;
60 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
61 struct ieee80211_chanctx_conf *chanctx_conf;
62 u32 rate_flags = 0;
63
64
65 if (tx->rate.flags & (IEEE80211_TX_RC_MCS | IEEE80211_TX_RC_VHT_MCS))
66 return 0;
67
68 rcu_read_lock();
69 chanctx_conf = rcu_dereference(tx->sdata->vif.chanctx_conf);
70 if (chanctx_conf) {
71 shift = ieee80211_chandef_get_shift(&chanctx_conf->def);
72 rate_flags = ieee80211_chandef_rate_flags(&chanctx_conf->def);
73 }
74 rcu_read_unlock();
75
76
77 if (WARN_ON_ONCE(tx->rate.idx < 0))
78 return 0;
79
80 sband = local->hw.wiphy->bands[info->band];
81 txrate = &sband->bitrates[tx->rate.idx];
82
83 erp = txrate->flags & IEEE80211_RATE_ERP_G;
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102 hdr = (struct ieee80211_hdr *)skb->data;
103 if (ieee80211_is_ctl(hdr->frame_control)) {
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118 return 0;
119 }
120
121
122 if (0 )
123 return cpu_to_le16(32768);
124
125 if (group_addr)
126 return 0;
127
128
129
130
131
132
133
134
135
136
137
138 rate = -1;
139
140 mrate = sband->bitrates[0].bitrate;
141 for (i = 0; i < sband->n_bitrates; i++) {
142 struct ieee80211_rate *r = &sband->bitrates[i];
143
144 if (r->bitrate > txrate->bitrate)
145 break;
146
147 if ((rate_flags & r->flags) != rate_flags)
148 continue;
149
150 if (tx->sdata->vif.bss_conf.basic_rates & BIT(i))
151 rate = DIV_ROUND_UP(r->bitrate, 1 << shift);
152
153 switch (sband->band) {
154 case NL80211_BAND_2GHZ: {
155 u32 flag;
156 if (tx->sdata->flags & IEEE80211_SDATA_OPERATING_GMODE)
157 flag = IEEE80211_RATE_MANDATORY_G;
158 else
159 flag = IEEE80211_RATE_MANDATORY_B;
160 if (r->flags & flag)
161 mrate = r->bitrate;
162 break;
163 }
164 case NL80211_BAND_5GHZ:
165 case NL80211_BAND_6GHZ:
166 if (r->flags & IEEE80211_RATE_MANDATORY_A)
167 mrate = r->bitrate;
168 break;
169 case NL80211_BAND_60GHZ:
170
171 case NUM_NL80211_BANDS:
172 WARN_ON(1);
173 break;
174 }
175 }
176 if (rate == -1) {
177
178
179 rate = DIV_ROUND_UP(mrate, 1 << shift);
180 }
181
182
183 if (ieee80211_is_data_qos(hdr->frame_control) &&
184 *(ieee80211_get_qos_ctl(hdr)) & IEEE80211_QOS_CTL_ACK_POLICY_NOACK)
185 dur = 0;
186 else
187
188
189
190 dur = ieee80211_frame_duration(sband->band, 10, rate, erp,
191 tx->sdata->vif.bss_conf.use_short_preamble,
192 shift);
193
194 if (next_frag_len) {
195
196
197 dur *= 2;
198
199 dur += ieee80211_frame_duration(sband->band, next_frag_len,
200 txrate->bitrate, erp,
201 tx->sdata->vif.bss_conf.use_short_preamble,
202 shift);
203 }
204
205 return cpu_to_le16(dur);
206}
207
208
209static ieee80211_tx_result debug_noinline
210ieee80211_tx_h_dynamic_ps(struct ieee80211_tx_data *tx)
211{
212 struct ieee80211_local *local = tx->local;
213 struct ieee80211_if_managed *ifmgd;
214 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
215
216
217 if (!ieee80211_hw_check(&local->hw, SUPPORTS_PS))
218 return TX_CONTINUE;
219
220
221 if (ieee80211_hw_check(&local->hw, SUPPORTS_DYNAMIC_PS))
222 return TX_CONTINUE;
223
224
225 if (local->hw.conf.dynamic_ps_timeout <= 0)
226 return TX_CONTINUE;
227
228
229 if (local->scanning)
230 return TX_CONTINUE;
231
232 if (!local->ps_sdata)
233 return TX_CONTINUE;
234
235
236 if (local->quiescing)
237 return TX_CONTINUE;
238
239
240 if (tx->sdata->vif.type != NL80211_IFTYPE_STATION)
241 return TX_CONTINUE;
242
243 if (unlikely(info->flags & IEEE80211_TX_INTFL_OFFCHAN_TX_OK))
244 return TX_CONTINUE;
245
246 ifmgd = &tx->sdata->u.mgd;
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261 if ((ifmgd->flags & IEEE80211_STA_UAPSD_ENABLED) &&
262 (ifmgd->uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_VO) &&
263 skb_get_queue_mapping(tx->skb) == IEEE80211_AC_VO)
264 return TX_CONTINUE;
265
266 if (local->hw.conf.flags & IEEE80211_CONF_PS) {
267 ieee80211_stop_queues_by_reason(&local->hw,
268 IEEE80211_MAX_QUEUE_MAP,
269 IEEE80211_QUEUE_STOP_REASON_PS,
270 false);
271 ifmgd->flags &= ~IEEE80211_STA_NULLFUNC_ACKED;
272 ieee80211_queue_work(&local->hw,
273 &local->dynamic_ps_disable_work);
274 }
275
276
277 if (!ifmgd->associated)
278 return TX_CONTINUE;
279
280 mod_timer(&local->dynamic_ps_timer, jiffies +
281 msecs_to_jiffies(local->hw.conf.dynamic_ps_timeout));
282
283 return TX_CONTINUE;
284}
285
286static ieee80211_tx_result debug_noinline
287ieee80211_tx_h_check_assoc(struct ieee80211_tx_data *tx)
288{
289
290 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data;
291 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
292 bool assoc = false;
293
294 if (unlikely(info->flags & IEEE80211_TX_CTL_INJECTED))
295 return TX_CONTINUE;
296
297 if (unlikely(test_bit(SCAN_SW_SCANNING, &tx->local->scanning)) &&
298 test_bit(SDATA_STATE_OFFCHANNEL, &tx->sdata->state) &&
299 !ieee80211_is_probe_req(hdr->frame_control) &&
300 !ieee80211_is_nullfunc(hdr->frame_control))
301
302
303
304
305
306
307
308
309
310
311
312 return TX_DROP;
313
314 if (tx->sdata->vif.type == NL80211_IFTYPE_OCB)
315 return TX_CONTINUE;
316
317 if (tx->sdata->vif.type == NL80211_IFTYPE_WDS)
318 return TX_CONTINUE;
319
320 if (tx->flags & IEEE80211_TX_PS_BUFFERED)
321 return TX_CONTINUE;
322
323 if (tx->sta)
324 assoc = test_sta_flag(tx->sta, WLAN_STA_ASSOC);
325
326 if (likely(tx->flags & IEEE80211_TX_UNICAST)) {
327 if (unlikely(!assoc &&
328 ieee80211_is_data(hdr->frame_control))) {
329#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
330 sdata_info(tx->sdata,
331 "dropped data frame to not associated station %pM\n",
332 hdr->addr1);
333#endif
334 I802_DEBUG_INC(tx->local->tx_handlers_drop_not_assoc);
335 return TX_DROP;
336 }
337 } else if (unlikely(ieee80211_is_data(hdr->frame_control) &&
338 ieee80211_vif_get_num_mcast_if(tx->sdata) == 0)) {
339
340
341
342
343 return TX_DROP;
344 }
345
346 return TX_CONTINUE;
347}
348
349
350
351
352
353static void purge_old_ps_buffers(struct ieee80211_local *local)
354{
355 int total = 0, purged = 0;
356 struct sk_buff *skb;
357 struct ieee80211_sub_if_data *sdata;
358 struct sta_info *sta;
359
360 list_for_each_entry_rcu(sdata, &local->interfaces, list) {
361 struct ps_data *ps;
362
363 if (sdata->vif.type == NL80211_IFTYPE_AP)
364 ps = &sdata->u.ap.ps;
365 else if (ieee80211_vif_is_mesh(&sdata->vif))
366 ps = &sdata->u.mesh.ps;
367 else
368 continue;
369
370 skb = skb_dequeue(&ps->bc_buf);
371 if (skb) {
372 purged++;
373 ieee80211_free_txskb(&local->hw, skb);
374 }
375 total += skb_queue_len(&ps->bc_buf);
376 }
377
378
379
380
381
382 list_for_each_entry_rcu(sta, &local->sta_list, list) {
383 int ac;
384
385 for (ac = IEEE80211_AC_BK; ac >= IEEE80211_AC_VO; ac--) {
386 skb = skb_dequeue(&sta->ps_tx_buf[ac]);
387 total += skb_queue_len(&sta->ps_tx_buf[ac]);
388 if (skb) {
389 purged++;
390 ieee80211_free_txskb(&local->hw, skb);
391 break;
392 }
393 }
394 }
395
396 local->total_ps_buffered = total;
397 ps_dbg_hw(&local->hw, "PS buffers full - purged %d frames\n", purged);
398}
399
400static ieee80211_tx_result
401ieee80211_tx_h_multicast_ps_buf(struct ieee80211_tx_data *tx)
402{
403 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
404 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data;
405 struct ps_data *ps;
406
407
408
409
410
411
412
413
414
415
416 if (tx->sdata->vif.type == NL80211_IFTYPE_AP ||
417 tx->sdata->vif.type == NL80211_IFTYPE_AP_VLAN) {
418 if (!tx->sdata->bss)
419 return TX_CONTINUE;
420
421 ps = &tx->sdata->bss->ps;
422 } else if (ieee80211_vif_is_mesh(&tx->sdata->vif)) {
423 ps = &tx->sdata->u.mesh.ps;
424 } else {
425 return TX_CONTINUE;
426 }
427
428
429
430 if (ieee80211_has_order(hdr->frame_control))
431 return TX_CONTINUE;
432
433 if (ieee80211_is_probe_req(hdr->frame_control))
434 return TX_CONTINUE;
435
436 if (ieee80211_hw_check(&tx->local->hw, QUEUE_CONTROL))
437 info->hw_queue = tx->sdata->vif.cab_queue;
438
439
440 if (!atomic_read(&ps->num_sta_ps) && skb_queue_empty(&ps->bc_buf))
441 return TX_CONTINUE;
442
443 info->flags |= IEEE80211_TX_CTL_SEND_AFTER_DTIM;
444
445
446 if (!ieee80211_hw_check(&tx->local->hw, HOST_BROADCAST_PS_BUFFERING))
447 return TX_CONTINUE;
448
449
450 if (tx->local->total_ps_buffered >= TOTAL_MAX_TX_BUFFER)
451 purge_old_ps_buffers(tx->local);
452
453 if (skb_queue_len(&ps->bc_buf) >= AP_MAX_BC_BUFFER) {
454 ps_dbg(tx->sdata,
455 "BC TX buffer full - dropping the oldest frame\n");
456 ieee80211_free_txskb(&tx->local->hw, skb_dequeue(&ps->bc_buf));
457 } else
458 tx->local->total_ps_buffered++;
459
460 skb_queue_tail(&ps->bc_buf, tx->skb);
461
462 return TX_QUEUED;
463}
464
465static int ieee80211_use_mfp(__le16 fc, struct sta_info *sta,
466 struct sk_buff *skb)
467{
468 if (!ieee80211_is_mgmt(fc))
469 return 0;
470
471 if (sta == NULL || !test_sta_flag(sta, WLAN_STA_MFP))
472 return 0;
473
474 if (!ieee80211_is_robust_mgmt_frame(skb))
475 return 0;
476
477 return 1;
478}
479
480static ieee80211_tx_result
481ieee80211_tx_h_unicast_ps_buf(struct ieee80211_tx_data *tx)
482{
483 struct sta_info *sta = tx->sta;
484 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
485 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data;
486 struct ieee80211_local *local = tx->local;
487
488 if (unlikely(!sta))
489 return TX_CONTINUE;
490
491 if (unlikely((test_sta_flag(sta, WLAN_STA_PS_STA) ||
492 test_sta_flag(sta, WLAN_STA_PS_DRIVER) ||
493 test_sta_flag(sta, WLAN_STA_PS_DELIVER)) &&
494 !(info->flags & IEEE80211_TX_CTL_NO_PS_BUFFER))) {
495 int ac = skb_get_queue_mapping(tx->skb);
496
497 if (ieee80211_is_mgmt(hdr->frame_control) &&
498 !ieee80211_is_bufferable_mmpdu(hdr->frame_control)) {
499 info->flags |= IEEE80211_TX_CTL_NO_PS_BUFFER;
500 return TX_CONTINUE;
501 }
502
503 ps_dbg(sta->sdata, "STA %pM aid %d: PS buffer for AC %d\n",
504 sta->sta.addr, sta->sta.aid, ac);
505 if (tx->local->total_ps_buffered >= TOTAL_MAX_TX_BUFFER)
506 purge_old_ps_buffers(tx->local);
507
508
509 spin_lock(&sta->ps_lock);
510
511
512
513
514
515 if (!test_sta_flag(sta, WLAN_STA_PS_STA) &&
516 !test_sta_flag(sta, WLAN_STA_PS_DRIVER) &&
517 !test_sta_flag(sta, WLAN_STA_PS_DELIVER)) {
518 spin_unlock(&sta->ps_lock);
519 return TX_CONTINUE;
520 }
521
522 if (skb_queue_len(&sta->ps_tx_buf[ac]) >= STA_MAX_TX_BUFFER) {
523 struct sk_buff *old = skb_dequeue(&sta->ps_tx_buf[ac]);
524 ps_dbg(tx->sdata,
525 "STA %pM TX buffer for AC %d full - dropping oldest frame\n",
526 sta->sta.addr, ac);
527 ieee80211_free_txskb(&local->hw, old);
528 } else
529 tx->local->total_ps_buffered++;
530
531 info->control.jiffies = jiffies;
532 info->control.vif = &tx->sdata->vif;
533 info->flags |= IEEE80211_TX_INTFL_NEED_TXPROCESSING;
534 info->flags &= ~IEEE80211_TX_TEMPORARY_FLAGS;
535 skb_queue_tail(&sta->ps_tx_buf[ac], tx->skb);
536 spin_unlock(&sta->ps_lock);
537
538 if (!timer_pending(&local->sta_cleanup))
539 mod_timer(&local->sta_cleanup,
540 round_jiffies(jiffies +
541 STA_INFO_CLEANUP_INTERVAL));
542
543
544
545
546
547 sta_info_recalc_tim(sta);
548
549 return TX_QUEUED;
550 } else if (unlikely(test_sta_flag(sta, WLAN_STA_PS_STA))) {
551 ps_dbg(tx->sdata,
552 "STA %pM in PS mode, but polling/in SP -> send frame\n",
553 sta->sta.addr);
554 }
555
556 return TX_CONTINUE;
557}
558
559static ieee80211_tx_result debug_noinline
560ieee80211_tx_h_ps_buf(struct ieee80211_tx_data *tx)
561{
562 if (unlikely(tx->flags & IEEE80211_TX_PS_BUFFERED))
563 return TX_CONTINUE;
564
565 if (tx->flags & IEEE80211_TX_UNICAST)
566 return ieee80211_tx_h_unicast_ps_buf(tx);
567 else
568 return ieee80211_tx_h_multicast_ps_buf(tx);
569}
570
571static ieee80211_tx_result debug_noinline
572ieee80211_tx_h_check_control_port_protocol(struct ieee80211_tx_data *tx)
573{
574 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
575
576 if (unlikely(tx->sdata->control_port_protocol == tx->skb->protocol)) {
577 if (tx->sdata->control_port_no_encrypt)
578 info->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
579 info->control.flags |= IEEE80211_TX_CTRL_PORT_CTRL_PROTO;
580 info->flags |= IEEE80211_TX_CTL_USE_MINRATE;
581 }
582
583 return TX_CONTINUE;
584}
585
586static ieee80211_tx_result debug_noinline
587ieee80211_tx_h_select_key(struct ieee80211_tx_data *tx)
588{
589 struct ieee80211_key *key;
590 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
591 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data;
592
593 if (unlikely(info->flags & IEEE80211_TX_INTFL_DONT_ENCRYPT))
594 tx->key = NULL;
595 else if (tx->sta &&
596 (key = rcu_dereference(tx->sta->ptk[tx->sta->ptk_idx])))
597 tx->key = key;
598 else if (ieee80211_is_group_privacy_action(tx->skb) &&
599 (key = rcu_dereference(tx->sdata->default_multicast_key)))
600 tx->key = key;
601 else if (ieee80211_is_mgmt(hdr->frame_control) &&
602 is_multicast_ether_addr(hdr->addr1) &&
603 ieee80211_is_robust_mgmt_frame(tx->skb) &&
604 (key = rcu_dereference(tx->sdata->default_mgmt_key)))
605 tx->key = key;
606 else if (is_multicast_ether_addr(hdr->addr1) &&
607 (key = rcu_dereference(tx->sdata->default_multicast_key)))
608 tx->key = key;
609 else if (!is_multicast_ether_addr(hdr->addr1) &&
610 (key = rcu_dereference(tx->sdata->default_unicast_key)))
611 tx->key = key;
612 else
613 tx->key = NULL;
614
615 if (tx->key) {
616 bool skip_hw = false;
617
618
619
620 switch (tx->key->conf.cipher) {
621 case WLAN_CIPHER_SUITE_WEP40:
622 case WLAN_CIPHER_SUITE_WEP104:
623 case WLAN_CIPHER_SUITE_TKIP:
624 if (!ieee80211_is_data_present(hdr->frame_control))
625 tx->key = NULL;
626 break;
627 case WLAN_CIPHER_SUITE_CCMP:
628 case WLAN_CIPHER_SUITE_CCMP_256:
629 case WLAN_CIPHER_SUITE_GCMP:
630 case WLAN_CIPHER_SUITE_GCMP_256:
631 if (!ieee80211_is_data_present(hdr->frame_control) &&
632 !ieee80211_use_mfp(hdr->frame_control, tx->sta,
633 tx->skb) &&
634 !ieee80211_is_group_privacy_action(tx->skb))
635 tx->key = NULL;
636 else
637 skip_hw = (tx->key->conf.flags &
638 IEEE80211_KEY_FLAG_SW_MGMT_TX) &&
639 ieee80211_is_mgmt(hdr->frame_control);
640 break;
641 case WLAN_CIPHER_SUITE_AES_CMAC:
642 case WLAN_CIPHER_SUITE_BIP_CMAC_256:
643 case WLAN_CIPHER_SUITE_BIP_GMAC_128:
644 case WLAN_CIPHER_SUITE_BIP_GMAC_256:
645 if (!ieee80211_is_mgmt(hdr->frame_control))
646 tx->key = NULL;
647 break;
648 }
649
650 if (unlikely(tx->key && tx->key->flags & KEY_FLAG_TAINTED &&
651 !ieee80211_is_deauth(hdr->frame_control)))
652 return TX_DROP;
653
654 if (!skip_hw && tx->key &&
655 tx->key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE)
656 info->control.hw_key = &tx->key->conf;
657 }
658
659 return TX_CONTINUE;
660}
661
662static ieee80211_tx_result debug_noinline
663ieee80211_tx_h_rate_ctrl(struct ieee80211_tx_data *tx)
664{
665 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
666 struct ieee80211_hdr *hdr = (void *)tx->skb->data;
667 struct ieee80211_supported_band *sband;
668 u32 len;
669 struct ieee80211_tx_rate_control txrc;
670 struct ieee80211_sta_rates *ratetbl = NULL;
671 bool assoc = false;
672
673 memset(&txrc, 0, sizeof(txrc));
674
675 sband = tx->local->hw.wiphy->bands[info->band];
676
677 len = min_t(u32, tx->skb->len + FCS_LEN,
678 tx->local->hw.wiphy->frag_threshold);
679
680
681 txrc.hw = &tx->local->hw;
682 txrc.sband = sband;
683 txrc.bss_conf = &tx->sdata->vif.bss_conf;
684 txrc.skb = tx->skb;
685 txrc.reported_rate.idx = -1;
686 txrc.rate_idx_mask = tx->sdata->rc_rateidx_mask[info->band];
687
688 if (tx->sdata->rc_has_mcs_mask[info->band])
689 txrc.rate_idx_mcs_mask =
690 tx->sdata->rc_rateidx_mcs_mask[info->band];
691
692 txrc.bss = (tx->sdata->vif.type == NL80211_IFTYPE_AP ||
693 tx->sdata->vif.type == NL80211_IFTYPE_MESH_POINT ||
694 tx->sdata->vif.type == NL80211_IFTYPE_ADHOC ||
695 tx->sdata->vif.type == NL80211_IFTYPE_OCB);
696
697
698 if (len > tx->local->hw.wiphy->rts_threshold) {
699 txrc.rts = true;
700 }
701
702 info->control.use_rts = txrc.rts;
703 info->control.use_cts_prot = tx->sdata->vif.bss_conf.use_cts_prot;
704
705
706
707
708
709
710
711 if (tx->sdata->vif.bss_conf.use_short_preamble &&
712 (ieee80211_is_data(hdr->frame_control) ||
713 (tx->sta && test_sta_flag(tx->sta, WLAN_STA_SHORT_PREAMBLE))))
714 txrc.short_preamble = true;
715
716 info->control.short_preamble = txrc.short_preamble;
717
718
719 if (info->control.flags & IEEE80211_TX_CTRL_RATE_INJECT)
720 return TX_CONTINUE;
721
722 if (tx->sta)
723 assoc = test_sta_flag(tx->sta, WLAN_STA_ASSOC);
724
725
726
727
728
729 if (WARN(test_bit(SCAN_SW_SCANNING, &tx->local->scanning) && assoc &&
730 !rate_usable_index_exists(sband, &tx->sta->sta),
731 "%s: Dropped data frame as no usable bitrate found while "
732 "scanning and associated. Target station: "
733 "%pM on %d GHz band\n",
734 tx->sdata->name, hdr->addr1,
735 info->band ? 5 : 2))
736 return TX_DROP;
737
738
739
740
741
742 rate_control_get_rate(tx->sdata, tx->sta, &txrc);
743
744 if (tx->sta && !info->control.skip_table)
745 ratetbl = rcu_dereference(tx->sta->sta.rates);
746
747 if (unlikely(info->control.rates[0].idx < 0)) {
748 if (ratetbl) {
749 struct ieee80211_tx_rate rate = {
750 .idx = ratetbl->rate[0].idx,
751 .flags = ratetbl->rate[0].flags,
752 .count = ratetbl->rate[0].count
753 };
754
755 if (ratetbl->rate[0].idx < 0)
756 return TX_DROP;
757
758 tx->rate = rate;
759 } else {
760 return TX_DROP;
761 }
762 } else {
763 tx->rate = info->control.rates[0];
764 }
765
766 if (txrc.reported_rate.idx < 0) {
767 txrc.reported_rate = tx->rate;
768 if (tx->sta && ieee80211_is_data(hdr->frame_control))
769 tx->sta->tx_stats.last_rate = txrc.reported_rate;
770 } else if (tx->sta)
771 tx->sta->tx_stats.last_rate = txrc.reported_rate;
772
773 if (ratetbl)
774 return TX_CONTINUE;
775
776 if (unlikely(!info->control.rates[0].count))
777 info->control.rates[0].count = 1;
778
779 if (WARN_ON_ONCE((info->control.rates[0].count > 1) &&
780 (info->flags & IEEE80211_TX_CTL_NO_ACK)))
781 info->control.rates[0].count = 1;
782
783 return TX_CONTINUE;
784}
785
786static __le16 ieee80211_tx_next_seq(struct sta_info *sta, int tid)
787{
788 u16 *seq = &sta->tid_seq[tid];
789 __le16 ret = cpu_to_le16(*seq);
790
791
792 *seq = (*seq + 0x10) & IEEE80211_SCTL_SEQ;
793
794 return ret;
795}
796
797static ieee80211_tx_result debug_noinline
798ieee80211_tx_h_sequence(struct ieee80211_tx_data *tx)
799{
800 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
801 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data;
802 int tid;
803
804
805
806
807
808
809 if (unlikely(info->control.vif->type == NL80211_IFTYPE_MONITOR))
810 return TX_CONTINUE;
811
812 if (unlikely(ieee80211_is_ctl(hdr->frame_control)))
813 return TX_CONTINUE;
814
815 if (ieee80211_hdrlen(hdr->frame_control) < 24)
816 return TX_CONTINUE;
817
818 if (ieee80211_is_qos_nullfunc(hdr->frame_control))
819 return TX_CONTINUE;
820
821
822
823
824
825
826
827 if (!ieee80211_is_data_qos(hdr->frame_control) ||
828 is_multicast_ether_addr(hdr->addr1)) {
829 if (tx->flags & IEEE80211_TX_NO_SEQNO)
830 return TX_CONTINUE;
831
832 info->flags |= IEEE80211_TX_CTL_ASSIGN_SEQ;
833
834 hdr->seq_ctrl = cpu_to_le16(tx->sdata->sequence_number);
835 tx->sdata->sequence_number += 0x10;
836 if (tx->sta)
837 tx->sta->tx_stats.msdu[IEEE80211_NUM_TIDS]++;
838 return TX_CONTINUE;
839 }
840
841
842
843
844
845
846 if (!tx->sta)
847 return TX_CONTINUE;
848
849
850 tid = ieee80211_get_tid(hdr);
851 tx->sta->tx_stats.msdu[tid]++;
852
853 hdr->seq_ctrl = ieee80211_tx_next_seq(tx->sta, tid);
854
855 return TX_CONTINUE;
856}
857
858static int ieee80211_fragment(struct ieee80211_tx_data *tx,
859 struct sk_buff *skb, int hdrlen,
860 int frag_threshold)
861{
862 struct ieee80211_local *local = tx->local;
863 struct ieee80211_tx_info *info;
864 struct sk_buff *tmp;
865 int per_fragm = frag_threshold - hdrlen - FCS_LEN;
866 int pos = hdrlen + per_fragm;
867 int rem = skb->len - hdrlen - per_fragm;
868
869 if (WARN_ON(rem < 0))
870 return -EINVAL;
871
872
873
874 while (rem) {
875 int fraglen = per_fragm;
876
877 if (fraglen > rem)
878 fraglen = rem;
879 rem -= fraglen;
880 tmp = dev_alloc_skb(local->tx_headroom +
881 frag_threshold +
882 tx->sdata->encrypt_headroom +
883 IEEE80211_ENCRYPT_TAILROOM);
884 if (!tmp)
885 return -ENOMEM;
886
887 __skb_queue_tail(&tx->skbs, tmp);
888
889 skb_reserve(tmp,
890 local->tx_headroom + tx->sdata->encrypt_headroom);
891
892
893 memcpy(tmp->cb, skb->cb, sizeof(tmp->cb));
894
895 info = IEEE80211_SKB_CB(tmp);
896 info->flags &= ~(IEEE80211_TX_CTL_CLEAR_PS_FILT |
897 IEEE80211_TX_CTL_FIRST_FRAGMENT);
898
899 if (rem)
900 info->flags |= IEEE80211_TX_CTL_MORE_FRAMES;
901
902 skb_copy_queue_mapping(tmp, skb);
903 tmp->priority = skb->priority;
904 tmp->dev = skb->dev;
905
906
907 skb_put_data(tmp, skb->data, hdrlen);
908 skb_put_data(tmp, skb->data + pos, fraglen);
909
910 pos += fraglen;
911 }
912
913
914 skb_trim(skb, hdrlen + per_fragm);
915 return 0;
916}
917
918static ieee80211_tx_result debug_noinline
919ieee80211_tx_h_fragment(struct ieee80211_tx_data *tx)
920{
921 struct sk_buff *skb = tx->skb;
922 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
923 struct ieee80211_hdr *hdr = (void *)skb->data;
924 int frag_threshold = tx->local->hw.wiphy->frag_threshold;
925 int hdrlen;
926 int fragnum;
927
928
929 __skb_queue_tail(&tx->skbs, skb);
930 tx->skb = NULL;
931
932 if (info->flags & IEEE80211_TX_CTL_DONTFRAG)
933 return TX_CONTINUE;
934
935 if (ieee80211_hw_check(&tx->local->hw, SUPPORTS_TX_FRAG))
936 return TX_CONTINUE;
937
938
939
940
941
942
943 if (WARN_ON(info->flags & IEEE80211_TX_CTL_AMPDU))
944 return TX_DROP;
945
946 hdrlen = ieee80211_hdrlen(hdr->frame_control);
947
948
949 if (WARN_ON(skb->len + FCS_LEN <= frag_threshold))
950 return TX_DROP;
951
952
953
954
955
956
957
958
959
960 if (ieee80211_fragment(tx, skb, hdrlen, frag_threshold))
961 return TX_DROP;
962
963
964 fragnum = 0;
965
966 skb_queue_walk(&tx->skbs, skb) {
967 const __le16 morefrags = cpu_to_le16(IEEE80211_FCTL_MOREFRAGS);
968
969 hdr = (void *)skb->data;
970 info = IEEE80211_SKB_CB(skb);
971
972 if (!skb_queue_is_last(&tx->skbs, skb)) {
973 hdr->frame_control |= morefrags;
974
975
976
977
978 info->control.rates[1].idx = -1;
979 info->control.rates[2].idx = -1;
980 info->control.rates[3].idx = -1;
981 BUILD_BUG_ON(IEEE80211_TX_MAX_RATES != 4);
982 info->flags &= ~IEEE80211_TX_CTL_RATE_CTRL_PROBE;
983 } else {
984 hdr->frame_control &= ~morefrags;
985 }
986 hdr->seq_ctrl |= cpu_to_le16(fragnum & IEEE80211_SCTL_FRAG);
987 fragnum++;
988 }
989
990 return TX_CONTINUE;
991}
992
993static ieee80211_tx_result debug_noinline
994ieee80211_tx_h_stats(struct ieee80211_tx_data *tx)
995{
996 struct sk_buff *skb;
997 int ac = -1;
998
999 if (!tx->sta)
1000 return TX_CONTINUE;
1001
1002 skb_queue_walk(&tx->skbs, skb) {
1003 ac = skb_get_queue_mapping(skb);
1004 tx->sta->tx_stats.bytes[ac] += skb->len;
1005 }
1006 if (ac >= 0)
1007 tx->sta->tx_stats.packets[ac]++;
1008
1009 return TX_CONTINUE;
1010}
1011
1012static ieee80211_tx_result debug_noinline
1013ieee80211_tx_h_encrypt(struct ieee80211_tx_data *tx)
1014{
1015 if (!tx->key)
1016 return TX_CONTINUE;
1017
1018 switch (tx->key->conf.cipher) {
1019 case WLAN_CIPHER_SUITE_WEP40:
1020 case WLAN_CIPHER_SUITE_WEP104:
1021 return ieee80211_crypto_wep_encrypt(tx);
1022 case WLAN_CIPHER_SUITE_TKIP:
1023 return ieee80211_crypto_tkip_encrypt(tx);
1024 case WLAN_CIPHER_SUITE_CCMP:
1025 return ieee80211_crypto_ccmp_encrypt(
1026 tx, IEEE80211_CCMP_MIC_LEN);
1027 case WLAN_CIPHER_SUITE_CCMP_256:
1028 return ieee80211_crypto_ccmp_encrypt(
1029 tx, IEEE80211_CCMP_256_MIC_LEN);
1030 case WLAN_CIPHER_SUITE_AES_CMAC:
1031 return ieee80211_crypto_aes_cmac_encrypt(tx);
1032 case WLAN_CIPHER_SUITE_BIP_CMAC_256:
1033 return ieee80211_crypto_aes_cmac_256_encrypt(tx);
1034 case WLAN_CIPHER_SUITE_BIP_GMAC_128:
1035 case WLAN_CIPHER_SUITE_BIP_GMAC_256:
1036 return ieee80211_crypto_aes_gmac_encrypt(tx);
1037 case WLAN_CIPHER_SUITE_GCMP:
1038 case WLAN_CIPHER_SUITE_GCMP_256:
1039 return ieee80211_crypto_gcmp_encrypt(tx);
1040 default:
1041 return ieee80211_crypto_hw_encrypt(tx);
1042 }
1043
1044 return TX_DROP;
1045}
1046
1047static ieee80211_tx_result debug_noinline
1048ieee80211_tx_h_calculate_duration(struct ieee80211_tx_data *tx)
1049{
1050 struct sk_buff *skb;
1051 struct ieee80211_hdr *hdr;
1052 int next_len;
1053 bool group_addr;
1054
1055 skb_queue_walk(&tx->skbs, skb) {
1056 hdr = (void *) skb->data;
1057 if (unlikely(ieee80211_is_pspoll(hdr->frame_control)))
1058 break;
1059 if (!skb_queue_is_last(&tx->skbs, skb)) {
1060 struct sk_buff *next = skb_queue_next(&tx->skbs, skb);
1061 next_len = next->len;
1062 } else
1063 next_len = 0;
1064 group_addr = is_multicast_ether_addr(hdr->addr1);
1065
1066 hdr->duration_id =
1067 ieee80211_duration(tx, skb, group_addr, next_len);
1068 }
1069
1070 return TX_CONTINUE;
1071}
1072
1073
1074
1075static bool ieee80211_tx_prep_agg(struct ieee80211_tx_data *tx,
1076 struct sk_buff *skb,
1077 struct ieee80211_tx_info *info,
1078 struct tid_ampdu_tx *tid_tx,
1079 int tid)
1080{
1081 bool queued = false;
1082 bool reset_agg_timer = false;
1083 struct sk_buff *purge_skb = NULL;
1084
1085 if (test_bit(HT_AGG_STATE_OPERATIONAL, &tid_tx->state)) {
1086 info->flags |= IEEE80211_TX_CTL_AMPDU;
1087 reset_agg_timer = true;
1088 } else if (test_bit(HT_AGG_STATE_WANT_START, &tid_tx->state)) {
1089
1090
1091
1092
1093 } else if (!tx->sta->sta.txq[tid]) {
1094 spin_lock(&tx->sta->lock);
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113 tid_tx = rcu_dereference_protected_tid_tx(tx->sta, tid);
1114
1115 if (!tid_tx) {
1116
1117 } else if (test_bit(HT_AGG_STATE_OPERATIONAL, &tid_tx->state)) {
1118 info->flags |= IEEE80211_TX_CTL_AMPDU;
1119 reset_agg_timer = true;
1120 } else {
1121 queued = true;
1122 if (info->flags & IEEE80211_TX_CTL_NO_PS_BUFFER) {
1123 clear_sta_flag(tx->sta, WLAN_STA_SP);
1124 ps_dbg(tx->sta->sdata,
1125 "STA %pM aid %d: SP frame queued, close the SP w/o telling the peer\n",
1126 tx->sta->sta.addr, tx->sta->sta.aid);
1127 }
1128 info->control.vif = &tx->sdata->vif;
1129 info->flags |= IEEE80211_TX_INTFL_NEED_TXPROCESSING;
1130 info->flags &= ~IEEE80211_TX_TEMPORARY_FLAGS;
1131 __skb_queue_tail(&tid_tx->pending, skb);
1132 if (skb_queue_len(&tid_tx->pending) > STA_MAX_TX_BUFFER)
1133 purge_skb = __skb_dequeue(&tid_tx->pending);
1134 }
1135 spin_unlock(&tx->sta->lock);
1136
1137 if (purge_skb)
1138 ieee80211_free_txskb(&tx->local->hw, purge_skb);
1139 }
1140
1141
1142 if (reset_agg_timer)
1143 tid_tx->last_tx = jiffies;
1144
1145 return queued;
1146}
1147
1148
1149
1150
1151
1152
1153static ieee80211_tx_result
1154ieee80211_tx_prepare(struct ieee80211_sub_if_data *sdata,
1155 struct ieee80211_tx_data *tx,
1156 struct sta_info *sta, struct sk_buff *skb)
1157{
1158 struct ieee80211_local *local = sdata->local;
1159 struct ieee80211_hdr *hdr;
1160 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1161 int tid;
1162
1163 memset(tx, 0, sizeof(*tx));
1164 tx->skb = skb;
1165 tx->local = local;
1166 tx->sdata = sdata;
1167 __skb_queue_head_init(&tx->skbs);
1168
1169
1170
1171
1172
1173
1174 info->flags &= ~IEEE80211_TX_INTFL_NEED_TXPROCESSING;
1175
1176 hdr = (struct ieee80211_hdr *) skb->data;
1177
1178 if (likely(sta)) {
1179 if (!IS_ERR(sta))
1180 tx->sta = sta;
1181 } else {
1182 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN) {
1183 tx->sta = rcu_dereference(sdata->u.vlan.sta);
1184 if (!tx->sta && sdata->wdev.use_4addr)
1185 return TX_DROP;
1186 } else if (info->flags & (IEEE80211_TX_INTFL_NL80211_FRAME_TX |
1187 IEEE80211_TX_CTL_INJECTED) ||
1188 tx->sdata->control_port_protocol == tx->skb->protocol) {
1189 tx->sta = sta_info_get_bss(sdata, hdr->addr1);
1190 }
1191 if (!tx->sta && !is_multicast_ether_addr(hdr->addr1))
1192 tx->sta = sta_info_get(sdata, hdr->addr1);
1193 }
1194
1195 if (tx->sta && ieee80211_is_data_qos(hdr->frame_control) &&
1196 !ieee80211_is_qos_nullfunc(hdr->frame_control) &&
1197 ieee80211_hw_check(&local->hw, AMPDU_AGGREGATION) &&
1198 !ieee80211_hw_check(&local->hw, TX_AMPDU_SETUP_IN_HW)) {
1199 struct tid_ampdu_tx *tid_tx;
1200
1201 tid = ieee80211_get_tid(hdr);
1202
1203 tid_tx = rcu_dereference(tx->sta->ampdu_mlme.tid_tx[tid]);
1204 if (tid_tx) {
1205 bool queued;
1206
1207 queued = ieee80211_tx_prep_agg(tx, skb, info,
1208 tid_tx, tid);
1209
1210 if (unlikely(queued))
1211 return TX_QUEUED;
1212 }
1213 }
1214
1215 if (is_multicast_ether_addr(hdr->addr1)) {
1216 tx->flags &= ~IEEE80211_TX_UNICAST;
1217 info->flags |= IEEE80211_TX_CTL_NO_ACK;
1218 } else
1219 tx->flags |= IEEE80211_TX_UNICAST;
1220
1221 if (!(info->flags & IEEE80211_TX_CTL_DONTFRAG)) {
1222 if (!(tx->flags & IEEE80211_TX_UNICAST) ||
1223 skb->len + FCS_LEN <= local->hw.wiphy->frag_threshold ||
1224 info->flags & IEEE80211_TX_CTL_AMPDU)
1225 info->flags |= IEEE80211_TX_CTL_DONTFRAG;
1226 }
1227
1228 if (!tx->sta)
1229 info->flags |= IEEE80211_TX_CTL_CLEAR_PS_FILT;
1230 else if (test_and_clear_sta_flag(tx->sta, WLAN_STA_CLEAR_PS_FILT)) {
1231 info->flags |= IEEE80211_TX_CTL_CLEAR_PS_FILT;
1232 ieee80211_check_fast_xmit(tx->sta);
1233 }
1234
1235 info->flags |= IEEE80211_TX_CTL_FIRST_FRAGMENT;
1236
1237 return TX_CONTINUE;
1238}
1239
1240static struct txq_info *ieee80211_get_txq(struct ieee80211_local *local,
1241 struct ieee80211_vif *vif,
1242 struct sta_info *sta,
1243 struct sk_buff *skb)
1244{
1245 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
1246 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1247 struct ieee80211_txq *txq = NULL;
1248
1249 if ((info->flags & IEEE80211_TX_CTL_SEND_AFTER_DTIM) ||
1250 (info->control.flags & IEEE80211_TX_CTRL_PS_RESPONSE))
1251 return NULL;
1252
1253 if (unlikely(!ieee80211_is_data_present(hdr->frame_control))) {
1254 if ((!ieee80211_is_mgmt(hdr->frame_control) ||
1255 ieee80211_is_bufferable_mmpdu(hdr->frame_control) ||
1256 vif->type == NL80211_IFTYPE_STATION) &&
1257 sta && sta->uploaded) {
1258
1259
1260
1261
1262 txq = sta->sta.txq[IEEE80211_NUM_TIDS];
1263 }
1264 } else if (sta) {
1265 u8 tid = skb->priority & IEEE80211_QOS_CTL_TID_MASK;
1266
1267 if (!sta->uploaded)
1268 return NULL;
1269
1270 txq = sta->sta.txq[tid];
1271 } else if (vif) {
1272 txq = vif->txq;
1273 }
1274
1275 if (!txq)
1276 return NULL;
1277
1278 return to_txq_info(txq);
1279}
1280
1281static void ieee80211_set_skb_enqueue_time(struct sk_buff *skb)
1282{
1283 IEEE80211_SKB_CB(skb)->control.enqueue_time = codel_get_time();
1284}
1285
1286static u32 codel_skb_len_func(const struct sk_buff *skb)
1287{
1288 return skb->len;
1289}
1290
1291static codel_time_t codel_skb_time_func(const struct sk_buff *skb)
1292{
1293 const struct ieee80211_tx_info *info;
1294
1295 info = (const struct ieee80211_tx_info *)skb->cb;
1296 return info->control.enqueue_time;
1297}
1298
1299static struct sk_buff *codel_dequeue_func(struct codel_vars *cvars,
1300 void *ctx)
1301{
1302 struct ieee80211_local *local;
1303 struct txq_info *txqi;
1304 struct fq *fq;
1305 struct fq_flow *flow;
1306
1307 txqi = ctx;
1308 local = vif_to_sdata(txqi->txq.vif)->local;
1309 fq = &local->fq;
1310
1311 if (cvars == &txqi->def_cvars)
1312 flow = &txqi->def_flow;
1313 else
1314 flow = &fq->flows[cvars - local->cvars];
1315
1316 return fq_flow_dequeue(fq, flow);
1317}
1318
1319static void codel_drop_func(struct sk_buff *skb,
1320 void *ctx)
1321{
1322 struct ieee80211_local *local;
1323 struct ieee80211_hw *hw;
1324 struct txq_info *txqi;
1325
1326 txqi = ctx;
1327 local = vif_to_sdata(txqi->txq.vif)->local;
1328 hw = &local->hw;
1329
1330 ieee80211_free_txskb(hw, skb);
1331}
1332
1333static struct sk_buff *fq_tin_dequeue_func(struct fq *fq,
1334 struct fq_tin *tin,
1335 struct fq_flow *flow)
1336{
1337 struct ieee80211_local *local;
1338 struct txq_info *txqi;
1339 struct codel_vars *cvars;
1340 struct codel_params *cparams;
1341 struct codel_stats *cstats;
1342
1343 local = container_of(fq, struct ieee80211_local, fq);
1344 txqi = container_of(tin, struct txq_info, tin);
1345 cstats = &txqi->cstats;
1346
1347 if (txqi->txq.sta) {
1348 struct sta_info *sta = container_of(txqi->txq.sta,
1349 struct sta_info, sta);
1350 cparams = &sta->cparams;
1351 } else {
1352 cparams = &local->cparams;
1353 }
1354
1355 if (flow == &txqi->def_flow)
1356 cvars = &txqi->def_cvars;
1357 else
1358 cvars = &local->cvars[flow - fq->flows];
1359
1360 return codel_dequeue(txqi,
1361 &flow->backlog,
1362 cparams,
1363 cvars,
1364 cstats,
1365 codel_skb_len_func,
1366 codel_skb_time_func,
1367 codel_drop_func,
1368 codel_dequeue_func);
1369}
1370
1371static void fq_skb_free_func(struct fq *fq,
1372 struct fq_tin *tin,
1373 struct fq_flow *flow,
1374 struct sk_buff *skb)
1375{
1376 struct ieee80211_local *local;
1377
1378 local = container_of(fq, struct ieee80211_local, fq);
1379 ieee80211_free_txskb(&local->hw, skb);
1380}
1381
1382static struct fq_flow *fq_flow_get_default_func(struct fq *fq,
1383 struct fq_tin *tin,
1384 int idx,
1385 struct sk_buff *skb)
1386{
1387 struct txq_info *txqi;
1388
1389 txqi = container_of(tin, struct txq_info, tin);
1390 return &txqi->def_flow;
1391}
1392
1393static void ieee80211_txq_enqueue(struct ieee80211_local *local,
1394 struct txq_info *txqi,
1395 struct sk_buff *skb)
1396{
1397 struct fq *fq = &local->fq;
1398 struct fq_tin *tin = &txqi->tin;
1399 u32 flow_idx = fq_flow_idx(fq, skb);
1400
1401 ieee80211_set_skb_enqueue_time(skb);
1402
1403 spin_lock_bh(&fq->lock);
1404 fq_tin_enqueue(fq, tin, flow_idx, skb,
1405 fq_skb_free_func,
1406 fq_flow_get_default_func);
1407 spin_unlock_bh(&fq->lock);
1408}
1409
1410static bool fq_vlan_filter_func(struct fq *fq, struct fq_tin *tin,
1411 struct fq_flow *flow, struct sk_buff *skb,
1412 void *data)
1413{
1414 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1415
1416 return info->control.vif == data;
1417}
1418
1419void ieee80211_txq_remove_vlan(struct ieee80211_local *local,
1420 struct ieee80211_sub_if_data *sdata)
1421{
1422 struct fq *fq = &local->fq;
1423 struct txq_info *txqi;
1424 struct fq_tin *tin;
1425 struct ieee80211_sub_if_data *ap;
1426
1427 if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_AP_VLAN))
1428 return;
1429
1430 ap = container_of(sdata->bss, struct ieee80211_sub_if_data, u.ap);
1431
1432 if (!ap->vif.txq)
1433 return;
1434
1435 txqi = to_txq_info(ap->vif.txq);
1436 tin = &txqi->tin;
1437
1438 spin_lock_bh(&fq->lock);
1439 fq_tin_filter(fq, tin, fq_vlan_filter_func, &sdata->vif,
1440 fq_skb_free_func);
1441 spin_unlock_bh(&fq->lock);
1442}
1443
1444void ieee80211_txq_init(struct ieee80211_sub_if_data *sdata,
1445 struct sta_info *sta,
1446 struct txq_info *txqi, int tid)
1447{
1448 fq_tin_init(&txqi->tin);
1449 fq_flow_init(&txqi->def_flow);
1450 codel_vars_init(&txqi->def_cvars);
1451 codel_stats_init(&txqi->cstats);
1452 __skb_queue_head_init(&txqi->frags);
1453 INIT_LIST_HEAD(&txqi->schedule_order);
1454
1455 txqi->txq.vif = &sdata->vif;
1456
1457 if (!sta) {
1458 sdata->vif.txq = &txqi->txq;
1459 txqi->txq.tid = 0;
1460 txqi->txq.ac = IEEE80211_AC_BE;
1461
1462 return;
1463 }
1464
1465 if (tid == IEEE80211_NUM_TIDS) {
1466 if (sdata->vif.type == NL80211_IFTYPE_STATION) {
1467
1468 if (!ieee80211_hw_check(&sdata->local->hw,
1469 STA_MMPDU_TXQ))
1470 return;
1471 } else if (!ieee80211_hw_check(&sdata->local->hw,
1472 BUFF_MMPDU_TXQ)) {
1473
1474 return;
1475 }
1476 txqi->txq.ac = IEEE80211_AC_VO;
1477 } else {
1478 txqi->txq.ac = ieee80211_ac_from_tid(tid);
1479 }
1480
1481 txqi->txq.sta = &sta->sta;
1482 txqi->txq.tid = tid;
1483 sta->sta.txq[tid] = &txqi->txq;
1484}
1485
1486void ieee80211_txq_purge(struct ieee80211_local *local,
1487 struct txq_info *txqi)
1488{
1489 struct fq *fq = &local->fq;
1490 struct fq_tin *tin = &txqi->tin;
1491
1492 spin_lock_bh(&fq->lock);
1493 fq_tin_reset(fq, tin, fq_skb_free_func);
1494 ieee80211_purge_tx_queue(&local->hw, &txqi->frags);
1495 spin_unlock_bh(&fq->lock);
1496
1497 spin_lock_bh(&local->active_txq_lock[txqi->txq.ac]);
1498 list_del_init(&txqi->schedule_order);
1499 spin_unlock_bh(&local->active_txq_lock[txqi->txq.ac]);
1500}
1501
1502void ieee80211_txq_set_params(struct ieee80211_local *local)
1503{
1504 if (local->hw.wiphy->txq_limit)
1505 local->fq.limit = local->hw.wiphy->txq_limit;
1506 else
1507 local->hw.wiphy->txq_limit = local->fq.limit;
1508
1509 if (local->hw.wiphy->txq_memory_limit)
1510 local->fq.memory_limit = local->hw.wiphy->txq_memory_limit;
1511 else
1512 local->hw.wiphy->txq_memory_limit = local->fq.memory_limit;
1513
1514 if (local->hw.wiphy->txq_quantum)
1515 local->fq.quantum = local->hw.wiphy->txq_quantum;
1516 else
1517 local->hw.wiphy->txq_quantum = local->fq.quantum;
1518}
1519
1520int ieee80211_txq_setup_flows(struct ieee80211_local *local)
1521{
1522 struct fq *fq = &local->fq;
1523 int ret;
1524 int i;
1525 bool supp_vht = false;
1526 enum nl80211_band band;
1527
1528 if (!local->ops->wake_tx_queue)
1529 return 0;
1530
1531 ret = fq_init(fq, 4096);
1532 if (ret)
1533 return ret;
1534
1535
1536
1537
1538
1539 for (band = 0; band < NUM_NL80211_BANDS; band++) {
1540 struct ieee80211_supported_band *sband;
1541
1542 sband = local->hw.wiphy->bands[band];
1543 if (!sband)
1544 continue;
1545
1546 supp_vht = supp_vht || sband->vht_cap.vht_supported;
1547 }
1548
1549 if (!supp_vht)
1550 fq->memory_limit = 4 << 20;
1551
1552 codel_params_init(&local->cparams);
1553 local->cparams.interval = MS2TIME(100);
1554 local->cparams.target = MS2TIME(20);
1555 local->cparams.ecn = true;
1556
1557 local->cvars = kcalloc(fq->flows_cnt, sizeof(local->cvars[0]),
1558 GFP_KERNEL);
1559 if (!local->cvars) {
1560 spin_lock_bh(&fq->lock);
1561 fq_reset(fq, fq_skb_free_func);
1562 spin_unlock_bh(&fq->lock);
1563 return -ENOMEM;
1564 }
1565
1566 for (i = 0; i < fq->flows_cnt; i++)
1567 codel_vars_init(&local->cvars[i]);
1568
1569 ieee80211_txq_set_params(local);
1570
1571 return 0;
1572}
1573
1574void ieee80211_txq_teardown_flows(struct ieee80211_local *local)
1575{
1576 struct fq *fq = &local->fq;
1577
1578 if (!local->ops->wake_tx_queue)
1579 return;
1580
1581 kfree(local->cvars);
1582 local->cvars = NULL;
1583
1584 spin_lock_bh(&fq->lock);
1585 fq_reset(fq, fq_skb_free_func);
1586 spin_unlock_bh(&fq->lock);
1587}
1588
1589static bool ieee80211_queue_skb(struct ieee80211_local *local,
1590 struct ieee80211_sub_if_data *sdata,
1591 struct sta_info *sta,
1592 struct sk_buff *skb)
1593{
1594 struct ieee80211_vif *vif;
1595 struct txq_info *txqi;
1596
1597 if (!local->ops->wake_tx_queue ||
1598 sdata->vif.type == NL80211_IFTYPE_MONITOR)
1599 return false;
1600
1601 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
1602 sdata = container_of(sdata->bss,
1603 struct ieee80211_sub_if_data, u.ap);
1604
1605 vif = &sdata->vif;
1606 txqi = ieee80211_get_txq(local, vif, sta, skb);
1607
1608 if (!txqi)
1609 return false;
1610
1611 ieee80211_txq_enqueue(local, txqi, skb);
1612
1613 schedule_and_wake_txq(local, txqi);
1614
1615 return true;
1616}
1617
1618static bool ieee80211_tx_frags(struct ieee80211_local *local,
1619 struct ieee80211_vif *vif,
1620 struct sta_info *sta,
1621 struct sk_buff_head *skbs,
1622 bool txpending)
1623{
1624 struct ieee80211_tx_control control = {};
1625 struct sk_buff *skb, *tmp;
1626 unsigned long flags;
1627
1628 skb_queue_walk_safe(skbs, skb, tmp) {
1629 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1630 int q = info->hw_queue;
1631
1632#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
1633 if (WARN_ON_ONCE(q >= local->hw.queues)) {
1634 __skb_unlink(skb, skbs);
1635 ieee80211_free_txskb(&local->hw, skb);
1636 continue;
1637 }
1638#endif
1639
1640 spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
1641 if (local->queue_stop_reasons[q] ||
1642 (!txpending && !skb_queue_empty(&local->pending[q]))) {
1643 if (unlikely(info->flags &
1644 IEEE80211_TX_INTFL_OFFCHAN_TX_OK)) {
1645 if (local->queue_stop_reasons[q] &
1646 ~BIT(IEEE80211_QUEUE_STOP_REASON_OFFCHANNEL)) {
1647
1648
1649
1650
1651
1652
1653 spin_unlock_irqrestore(
1654 &local->queue_stop_reason_lock,
1655 flags);
1656 ieee80211_purge_tx_queue(&local->hw,
1657 skbs);
1658 return true;
1659 }
1660 } else {
1661
1662
1663
1664
1665
1666
1667 if (txpending)
1668 skb_queue_splice_init(skbs,
1669 &local->pending[q]);
1670 else
1671 skb_queue_splice_tail_init(skbs,
1672 &local->pending[q]);
1673
1674 spin_unlock_irqrestore(&local->queue_stop_reason_lock,
1675 flags);
1676 return false;
1677 }
1678 }
1679 spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
1680
1681 info->control.vif = vif;
1682 control.sta = sta ? &sta->sta : NULL;
1683
1684 __skb_unlink(skb, skbs);
1685 drv_tx(local, &control, skb);
1686 }
1687
1688 return true;
1689}
1690
1691
1692
1693
1694static bool __ieee80211_tx(struct ieee80211_local *local,
1695 struct sk_buff_head *skbs, int led_len,
1696 struct sta_info *sta, bool txpending)
1697{
1698 struct ieee80211_tx_info *info;
1699 struct ieee80211_sub_if_data *sdata;
1700 struct ieee80211_vif *vif;
1701 struct sk_buff *skb;
1702 bool result = true;
1703 __le16 fc;
1704
1705 if (WARN_ON(skb_queue_empty(skbs)))
1706 return true;
1707
1708 skb = skb_peek(skbs);
1709 fc = ((struct ieee80211_hdr *)skb->data)->frame_control;
1710 info = IEEE80211_SKB_CB(skb);
1711 sdata = vif_to_sdata(info->control.vif);
1712 if (sta && !sta->uploaded)
1713 sta = NULL;
1714
1715 switch (sdata->vif.type) {
1716 case NL80211_IFTYPE_MONITOR:
1717 if (sdata->u.mntr.flags & MONITOR_FLAG_ACTIVE) {
1718 vif = &sdata->vif;
1719 break;
1720 }
1721 sdata = rcu_dereference(local->monitor_sdata);
1722 if (sdata) {
1723 vif = &sdata->vif;
1724 info->hw_queue =
1725 vif->hw_queue[skb_get_queue_mapping(skb)];
1726 } else if (ieee80211_hw_check(&local->hw, QUEUE_CONTROL)) {
1727 ieee80211_purge_tx_queue(&local->hw, skbs);
1728 return true;
1729 } else
1730 vif = NULL;
1731 break;
1732 case NL80211_IFTYPE_AP_VLAN:
1733 sdata = container_of(sdata->bss,
1734 struct ieee80211_sub_if_data, u.ap);
1735
1736 default:
1737 vif = &sdata->vif;
1738 break;
1739 }
1740
1741 result = ieee80211_tx_frags(local, vif, sta, skbs, txpending);
1742
1743 ieee80211_tpt_led_trig_tx(local, fc, led_len);
1744
1745 WARN_ON_ONCE(!skb_queue_empty(skbs));
1746
1747 return result;
1748}
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758static int invoke_tx_handlers_early(struct ieee80211_tx_data *tx)
1759{
1760 ieee80211_tx_result res = TX_DROP;
1761
1762#define CALL_TXH(txh) \
1763 do { \
1764 res = txh(tx); \
1765 if (res != TX_CONTINUE) \
1766 goto txh_done; \
1767 } while (0)
1768
1769 CALL_TXH(ieee80211_tx_h_dynamic_ps);
1770 CALL_TXH(ieee80211_tx_h_check_assoc);
1771 CALL_TXH(ieee80211_tx_h_ps_buf);
1772 CALL_TXH(ieee80211_tx_h_check_control_port_protocol);
1773 CALL_TXH(ieee80211_tx_h_select_key);
1774 if (!ieee80211_hw_check(&tx->local->hw, HAS_RATE_CONTROL))
1775 CALL_TXH(ieee80211_tx_h_rate_ctrl);
1776
1777 txh_done:
1778 if (unlikely(res == TX_DROP)) {
1779 I802_DEBUG_INC(tx->local->tx_handlers_drop);
1780 if (tx->skb)
1781 ieee80211_free_txskb(&tx->local->hw, tx->skb);
1782 else
1783 ieee80211_purge_tx_queue(&tx->local->hw, &tx->skbs);
1784 return -1;
1785 } else if (unlikely(res == TX_QUEUED)) {
1786 I802_DEBUG_INC(tx->local->tx_handlers_queued);
1787 return -1;
1788 }
1789
1790 return 0;
1791}
1792
1793
1794
1795
1796
1797static int invoke_tx_handlers_late(struct ieee80211_tx_data *tx)
1798{
1799 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
1800 ieee80211_tx_result res = TX_CONTINUE;
1801
1802 if (unlikely(info->flags & IEEE80211_TX_INTFL_RETRANSMISSION)) {
1803 __skb_queue_tail(&tx->skbs, tx->skb);
1804 tx->skb = NULL;
1805 goto txh_done;
1806 }
1807
1808 CALL_TXH(ieee80211_tx_h_michael_mic_add);
1809 CALL_TXH(ieee80211_tx_h_sequence);
1810 CALL_TXH(ieee80211_tx_h_fragment);
1811
1812 CALL_TXH(ieee80211_tx_h_stats);
1813 CALL_TXH(ieee80211_tx_h_encrypt);
1814 if (!ieee80211_hw_check(&tx->local->hw, HAS_RATE_CONTROL))
1815 CALL_TXH(ieee80211_tx_h_calculate_duration);
1816#undef CALL_TXH
1817
1818 txh_done:
1819 if (unlikely(res == TX_DROP)) {
1820 I802_DEBUG_INC(tx->local->tx_handlers_drop);
1821 if (tx->skb)
1822 ieee80211_free_txskb(&tx->local->hw, tx->skb);
1823 else
1824 ieee80211_purge_tx_queue(&tx->local->hw, &tx->skbs);
1825 return -1;
1826 } else if (unlikely(res == TX_QUEUED)) {
1827 I802_DEBUG_INC(tx->local->tx_handlers_queued);
1828 return -1;
1829 }
1830
1831 return 0;
1832}
1833
1834static int invoke_tx_handlers(struct ieee80211_tx_data *tx)
1835{
1836 int r = invoke_tx_handlers_early(tx);
1837
1838 if (r)
1839 return r;
1840 return invoke_tx_handlers_late(tx);
1841}
1842
1843bool ieee80211_tx_prepare_skb(struct ieee80211_hw *hw,
1844 struct ieee80211_vif *vif, struct sk_buff *skb,
1845 int band, struct ieee80211_sta **sta)
1846{
1847 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
1848 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1849 struct ieee80211_tx_data tx;
1850 struct sk_buff *skb2;
1851
1852 if (ieee80211_tx_prepare(sdata, &tx, NULL, skb) == TX_DROP)
1853 return false;
1854
1855 info->band = band;
1856 info->control.vif = vif;
1857 info->hw_queue = vif->hw_queue[skb_get_queue_mapping(skb)];
1858
1859 if (invoke_tx_handlers(&tx))
1860 return false;
1861
1862 if (sta) {
1863 if (tx.sta)
1864 *sta = &tx.sta->sta;
1865 else
1866 *sta = NULL;
1867 }
1868
1869
1870 skb2 = __skb_dequeue(&tx.skbs);
1871 if (WARN_ON(skb2 != skb || !skb_queue_empty(&tx.skbs))) {
1872 ieee80211_free_txskb(hw, skb2);
1873 ieee80211_purge_tx_queue(hw, &tx.skbs);
1874 return false;
1875 }
1876
1877 return true;
1878}
1879EXPORT_SYMBOL(ieee80211_tx_prepare_skb);
1880
1881
1882
1883
1884static bool ieee80211_tx(struct ieee80211_sub_if_data *sdata,
1885 struct sta_info *sta, struct sk_buff *skb,
1886 bool txpending, u32 txdata_flags)
1887{
1888 struct ieee80211_local *local = sdata->local;
1889 struct ieee80211_tx_data tx;
1890 ieee80211_tx_result res_prepare;
1891 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1892 bool result = true;
1893 int led_len;
1894
1895 if (unlikely(skb->len < 10)) {
1896 dev_kfree_skb(skb);
1897 return true;
1898 }
1899
1900
1901 led_len = skb->len;
1902 res_prepare = ieee80211_tx_prepare(sdata, &tx, sta, skb);
1903
1904 tx.flags |= txdata_flags;
1905
1906 if (unlikely(res_prepare == TX_DROP)) {
1907 ieee80211_free_txskb(&local->hw, skb);
1908 return true;
1909 } else if (unlikely(res_prepare == TX_QUEUED)) {
1910 return true;
1911 }
1912
1913
1914 if (!(info->flags & IEEE80211_TX_CTL_TX_OFFCHAN) ||
1915 !ieee80211_hw_check(&local->hw, QUEUE_CONTROL))
1916 info->hw_queue =
1917 sdata->vif.hw_queue[skb_get_queue_mapping(skb)];
1918
1919 if (invoke_tx_handlers_early(&tx))
1920 return true;
1921
1922 if (ieee80211_queue_skb(local, sdata, tx.sta, tx.skb))
1923 return true;
1924
1925 if (!invoke_tx_handlers_late(&tx))
1926 result = __ieee80211_tx(local, &tx.skbs, led_len,
1927 tx.sta, txpending);
1928
1929 return result;
1930}
1931
1932
1933
1934static int ieee80211_skb_resize(struct ieee80211_sub_if_data *sdata,
1935 struct sk_buff *skb,
1936 int head_need, bool may_encrypt)
1937{
1938 struct ieee80211_local *local = sdata->local;
1939 struct ieee80211_hdr *hdr;
1940 bool enc_tailroom;
1941 int tail_need = 0;
1942
1943 hdr = (struct ieee80211_hdr *) skb->data;
1944 enc_tailroom = may_encrypt &&
1945 (sdata->crypto_tx_tailroom_needed_cnt ||
1946 ieee80211_is_mgmt(hdr->frame_control));
1947
1948 if (enc_tailroom) {
1949 tail_need = IEEE80211_ENCRYPT_TAILROOM;
1950 tail_need -= skb_tailroom(skb);
1951 tail_need = max_t(int, tail_need, 0);
1952 }
1953
1954 if (skb_cloned(skb) &&
1955 (!ieee80211_hw_check(&local->hw, SUPPORTS_CLONED_SKBS) ||
1956 !skb_clone_writable(skb, ETH_HLEN) || enc_tailroom))
1957 I802_DEBUG_INC(local->tx_expand_skb_head_cloned);
1958 else if (head_need || tail_need)
1959 I802_DEBUG_INC(local->tx_expand_skb_head);
1960 else
1961 return 0;
1962
1963 if (pskb_expand_head(skb, head_need, tail_need, GFP_ATOMIC)) {
1964 wiphy_debug(local->hw.wiphy,
1965 "failed to reallocate TX buffer\n");
1966 return -ENOMEM;
1967 }
1968
1969 return 0;
1970}
1971
1972void ieee80211_xmit(struct ieee80211_sub_if_data *sdata,
1973 struct sta_info *sta, struct sk_buff *skb,
1974 u32 txdata_flags)
1975{
1976 struct ieee80211_local *local = sdata->local;
1977 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1978 struct ieee80211_hdr *hdr;
1979 int headroom;
1980 bool may_encrypt;
1981
1982 may_encrypt = !(info->flags & IEEE80211_TX_INTFL_DONT_ENCRYPT);
1983
1984 headroom = local->tx_headroom;
1985 if (may_encrypt)
1986 headroom += sdata->encrypt_headroom;
1987 headroom -= skb_headroom(skb);
1988 headroom = max_t(int, 0, headroom);
1989
1990 if (ieee80211_skb_resize(sdata, skb, headroom, may_encrypt)) {
1991 ieee80211_free_txskb(&local->hw, skb);
1992 return;
1993 }
1994
1995 hdr = (struct ieee80211_hdr *) skb->data;
1996 info->control.vif = &sdata->vif;
1997
1998 if (ieee80211_vif_is_mesh(&sdata->vif)) {
1999 if (ieee80211_is_data(hdr->frame_control) &&
2000 is_unicast_ether_addr(hdr->addr1)) {
2001 if (mesh_nexthop_resolve(sdata, skb))
2002 return;
2003 } else {
2004 ieee80211_mps_set_frame_flags(sdata, NULL, hdr);
2005 }
2006 }
2007
2008 ieee80211_set_qos_hdr(sdata, skb);
2009 ieee80211_tx(sdata, sta, skb, false, txdata_flags);
2010}
2011
2012static bool ieee80211_parse_tx_radiotap(struct ieee80211_local *local,
2013 struct sk_buff *skb)
2014{
2015 struct ieee80211_radiotap_iterator iterator;
2016 struct ieee80211_radiotap_header *rthdr =
2017 (struct ieee80211_radiotap_header *) skb->data;
2018 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
2019 struct ieee80211_supported_band *sband =
2020 local->hw.wiphy->bands[info->band];
2021 int ret = ieee80211_radiotap_iterator_init(&iterator, rthdr, skb->len,
2022 NULL);
2023 u16 txflags;
2024 u16 rate = 0;
2025 bool rate_found = false;
2026 u8 rate_retries = 0;
2027 u16 rate_flags = 0;
2028 u8 mcs_known, mcs_flags, mcs_bw;
2029 u16 vht_known;
2030 u8 vht_mcs = 0, vht_nss = 0;
2031 int i;
2032
2033 info->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT |
2034 IEEE80211_TX_CTL_DONTFRAG;
2035
2036
2037
2038
2039
2040
2041
2042 while (!ret) {
2043 ret = ieee80211_radiotap_iterator_next(&iterator);
2044
2045 if (ret)
2046 continue;
2047
2048
2049 switch (iterator.this_arg_index) {
2050
2051
2052
2053
2054
2055
2056 case IEEE80211_RADIOTAP_FLAGS:
2057 if (*iterator.this_arg & IEEE80211_RADIOTAP_F_FCS) {
2058
2059
2060
2061
2062
2063
2064
2065 if (skb->len < (iterator._max_length + FCS_LEN))
2066 return false;
2067
2068 skb_trim(skb, skb->len - FCS_LEN);
2069 }
2070 if (*iterator.this_arg & IEEE80211_RADIOTAP_F_WEP)
2071 info->flags &= ~IEEE80211_TX_INTFL_DONT_ENCRYPT;
2072 if (*iterator.this_arg & IEEE80211_RADIOTAP_F_FRAG)
2073 info->flags &= ~IEEE80211_TX_CTL_DONTFRAG;
2074 break;
2075
2076 case IEEE80211_RADIOTAP_TX_FLAGS:
2077 txflags = get_unaligned_le16(iterator.this_arg);
2078 if (txflags & IEEE80211_RADIOTAP_F_TX_NOACK)
2079 info->flags |= IEEE80211_TX_CTL_NO_ACK;
2080 break;
2081
2082 case IEEE80211_RADIOTAP_RATE:
2083 rate = *iterator.this_arg;
2084 rate_flags = 0;
2085 rate_found = true;
2086 break;
2087
2088 case IEEE80211_RADIOTAP_DATA_RETRIES:
2089 rate_retries = *iterator.this_arg;
2090 break;
2091
2092 case IEEE80211_RADIOTAP_MCS:
2093 mcs_known = iterator.this_arg[0];
2094 mcs_flags = iterator.this_arg[1];
2095 if (!(mcs_known & IEEE80211_RADIOTAP_MCS_HAVE_MCS))
2096 break;
2097
2098 rate_found = true;
2099 rate = iterator.this_arg[2];
2100 rate_flags = IEEE80211_TX_RC_MCS;
2101
2102 if (mcs_known & IEEE80211_RADIOTAP_MCS_HAVE_GI &&
2103 mcs_flags & IEEE80211_RADIOTAP_MCS_SGI)
2104 rate_flags |= IEEE80211_TX_RC_SHORT_GI;
2105
2106 mcs_bw = mcs_flags & IEEE80211_RADIOTAP_MCS_BW_MASK;
2107 if (mcs_known & IEEE80211_RADIOTAP_MCS_HAVE_BW &&
2108 mcs_bw == IEEE80211_RADIOTAP_MCS_BW_40)
2109 rate_flags |= IEEE80211_TX_RC_40_MHZ_WIDTH;
2110 break;
2111
2112 case IEEE80211_RADIOTAP_VHT:
2113 vht_known = get_unaligned_le16(iterator.this_arg);
2114 rate_found = true;
2115
2116 rate_flags = IEEE80211_TX_RC_VHT_MCS;
2117 if ((vht_known & IEEE80211_RADIOTAP_VHT_KNOWN_GI) &&
2118 (iterator.this_arg[2] &
2119 IEEE80211_RADIOTAP_VHT_FLAG_SGI))
2120 rate_flags |= IEEE80211_TX_RC_SHORT_GI;
2121 if (vht_known &
2122 IEEE80211_RADIOTAP_VHT_KNOWN_BANDWIDTH) {
2123 if (iterator.this_arg[3] == 1)
2124 rate_flags |=
2125 IEEE80211_TX_RC_40_MHZ_WIDTH;
2126 else if (iterator.this_arg[3] == 4)
2127 rate_flags |=
2128 IEEE80211_TX_RC_80_MHZ_WIDTH;
2129 else if (iterator.this_arg[3] == 11)
2130 rate_flags |=
2131 IEEE80211_TX_RC_160_MHZ_WIDTH;
2132 }
2133
2134 vht_mcs = iterator.this_arg[4] >> 4;
2135 vht_nss = iterator.this_arg[4] & 0xF;
2136 break;
2137
2138
2139
2140
2141
2142
2143
2144 default:
2145 break;
2146 }
2147 }
2148
2149 if (ret != -ENOENT)
2150 return false;
2151
2152 if (rate_found) {
2153 info->control.flags |= IEEE80211_TX_CTRL_RATE_INJECT;
2154
2155 for (i = 0; i < IEEE80211_TX_MAX_RATES; i++) {
2156 info->control.rates[i].idx = -1;
2157 info->control.rates[i].flags = 0;
2158 info->control.rates[i].count = 0;
2159 }
2160
2161 if (rate_flags & IEEE80211_TX_RC_MCS) {
2162 info->control.rates[0].idx = rate;
2163 } else if (rate_flags & IEEE80211_TX_RC_VHT_MCS) {
2164 ieee80211_rate_set_vht(info->control.rates, vht_mcs,
2165 vht_nss);
2166 } else {
2167 for (i = 0; i < sband->n_bitrates; i++) {
2168 if (rate * 5 != sband->bitrates[i].bitrate)
2169 continue;
2170
2171 info->control.rates[0].idx = i;
2172 break;
2173 }
2174 }
2175
2176 if (info->control.rates[0].idx < 0)
2177 info->control.flags &= ~IEEE80211_TX_CTRL_RATE_INJECT;
2178
2179 info->control.rates[0].flags = rate_flags;
2180 info->control.rates[0].count = min_t(u8, rate_retries + 1,
2181 local->hw.max_rate_tries);
2182 }
2183
2184
2185
2186
2187
2188
2189 skb_pull(skb, iterator._max_length);
2190
2191 return true;
2192}
2193
2194netdev_tx_t ieee80211_monitor_start_xmit(struct sk_buff *skb,
2195 struct net_device *dev)
2196{
2197 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
2198 struct ieee80211_chanctx_conf *chanctx_conf;
2199 struct ieee80211_radiotap_header *prthdr =
2200 (struct ieee80211_radiotap_header *)skb->data;
2201 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
2202 struct ieee80211_hdr *hdr;
2203 struct ieee80211_sub_if_data *tmp_sdata, *sdata;
2204 struct cfg80211_chan_def *chandef;
2205 u16 len_rthdr;
2206 int hdrlen;
2207
2208
2209 if (unlikely(skb->len < sizeof(struct ieee80211_radiotap_header)))
2210 goto fail;
2211
2212
2213 if (unlikely(prthdr->it_version))
2214 goto fail;
2215
2216
2217 len_rthdr = ieee80211_get_radiotap_len(skb->data);
2218
2219
2220 if (unlikely(skb->len < len_rthdr))
2221 goto fail;
2222
2223
2224
2225
2226
2227
2228
2229 skb_set_mac_header(skb, len_rthdr);
2230
2231
2232
2233
2234 skb_set_network_header(skb, len_rthdr);
2235 skb_set_transport_header(skb, len_rthdr);
2236
2237 if (skb->len < len_rthdr + 2)
2238 goto fail;
2239
2240 hdr = (struct ieee80211_hdr *)(skb->data + len_rthdr);
2241 hdrlen = ieee80211_hdrlen(hdr->frame_control);
2242
2243 if (skb->len < len_rthdr + hdrlen)
2244 goto fail;
2245
2246
2247
2248
2249
2250 if (ieee80211_is_data(hdr->frame_control) &&
2251 skb->len >= len_rthdr + hdrlen + sizeof(rfc1042_header) + 2) {
2252 u8 *payload = (u8 *)hdr + hdrlen;
2253
2254 if (ether_addr_equal(payload, rfc1042_header))
2255 skb->protocol = cpu_to_be16((payload[6] << 8) |
2256 payload[7]);
2257 }
2258
2259
2260
2261
2262
2263 if (ieee80211_is_data_qos(hdr->frame_control)) {
2264 u8 *p = ieee80211_get_qos_ctl(hdr);
2265 skb->priority = *p & IEEE80211_QOS_CTL_TAG1D_MASK;
2266 }
2267
2268 memset(info, 0, sizeof(*info));
2269
2270 info->flags = IEEE80211_TX_CTL_REQ_TX_STATUS |
2271 IEEE80211_TX_CTL_INJECTED;
2272
2273 rcu_read_lock();
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2287
2288 list_for_each_entry_rcu(tmp_sdata, &local->interfaces, list) {
2289 if (!ieee80211_sdata_running(tmp_sdata))
2290 continue;
2291 if (tmp_sdata->vif.type == NL80211_IFTYPE_MONITOR ||
2292 tmp_sdata->vif.type == NL80211_IFTYPE_AP_VLAN ||
2293 tmp_sdata->vif.type == NL80211_IFTYPE_WDS)
2294 continue;
2295 if (ether_addr_equal(tmp_sdata->vif.addr, hdr->addr2)) {
2296 sdata = tmp_sdata;
2297 break;
2298 }
2299 }
2300
2301 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
2302 if (!chanctx_conf) {
2303 tmp_sdata = rcu_dereference(local->monitor_sdata);
2304 if (tmp_sdata)
2305 chanctx_conf =
2306 rcu_dereference(tmp_sdata->vif.chanctx_conf);
2307 }
2308
2309 if (chanctx_conf)
2310 chandef = &chanctx_conf->def;
2311 else if (!local->use_chanctx)
2312 chandef = &local->_oper_chandef;
2313 else
2314 goto fail_rcu;
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332 if (!cfg80211_reg_can_beacon(local->hw.wiphy, chandef,
2333 sdata->vif.type))
2334 goto fail_rcu;
2335
2336 info->band = chandef->chan->band;
2337
2338
2339 if (!ieee80211_parse_tx_radiotap(local, skb))
2340 goto fail_rcu;
2341
2342 ieee80211_xmit(sdata, NULL, skb, 0);
2343 rcu_read_unlock();
2344
2345 return NETDEV_TX_OK;
2346
2347fail_rcu:
2348 rcu_read_unlock();
2349fail:
2350 dev_kfree_skb(skb);
2351 return NETDEV_TX_OK;
2352}
2353
2354static inline bool ieee80211_is_tdls_setup(struct sk_buff *skb)
2355{
2356 u16 ethertype = (skb->data[12] << 8) | skb->data[13];
2357
2358 return ethertype == ETH_P_TDLS &&
2359 skb->len > 14 &&
2360 skb->data[14] == WLAN_TDLS_SNAP_RFTYPE;
2361}
2362
2363static int ieee80211_lookup_ra_sta(struct ieee80211_sub_if_data *sdata,
2364 struct sk_buff *skb,
2365 struct sta_info **sta_out)
2366{
2367 struct sta_info *sta;
2368
2369 switch (sdata->vif.type) {
2370 case NL80211_IFTYPE_AP_VLAN:
2371 sta = rcu_dereference(sdata->u.vlan.sta);
2372 if (sta) {
2373 *sta_out = sta;
2374 return 0;
2375 } else if (sdata->wdev.use_4addr) {
2376 return -ENOLINK;
2377 }
2378
2379 case NL80211_IFTYPE_AP:
2380 case NL80211_IFTYPE_OCB:
2381 case NL80211_IFTYPE_ADHOC:
2382 if (is_multicast_ether_addr(skb->data)) {
2383 *sta_out = ERR_PTR(-ENOENT);
2384 return 0;
2385 }
2386 sta = sta_info_get_bss(sdata, skb->data);
2387 break;
2388 case NL80211_IFTYPE_WDS:
2389 sta = sta_info_get(sdata, sdata->u.wds.remote_addr);
2390 break;
2391#ifdef CONFIG_MAC80211_MESH
2392 case NL80211_IFTYPE_MESH_POINT:
2393
2394 *sta_out = NULL;
2395 return 0;
2396#endif
2397 case NL80211_IFTYPE_STATION:
2398 if (sdata->wdev.wiphy->flags & WIPHY_FLAG_SUPPORTS_TDLS) {
2399 sta = sta_info_get(sdata, skb->data);
2400 if (sta && test_sta_flag(sta, WLAN_STA_TDLS_PEER)) {
2401 if (test_sta_flag(sta,
2402 WLAN_STA_TDLS_PEER_AUTH)) {
2403 *sta_out = sta;
2404 return 0;
2405 }
2406
2407
2408
2409
2410
2411
2412
2413
2414 if (!ieee80211_is_tdls_setup(skb))
2415 return -EINVAL;
2416 }
2417
2418 }
2419
2420 sta = sta_info_get(sdata, sdata->u.mgd.bssid);
2421 if (!sta)
2422 return -ENOLINK;
2423 break;
2424 default:
2425 return -EINVAL;
2426 }
2427
2428 *sta_out = sta ?: ERR_PTR(-ENOENT);
2429 return 0;
2430}
2431
2432static int ieee80211_store_ack_skb(struct ieee80211_local *local,
2433 struct sk_buff *skb,
2434 u32 *info_flags)
2435{
2436 struct sk_buff *ack_skb = skb_clone_sk(skb);
2437 u16 info_id = 0;
2438
2439 if (ack_skb) {
2440 unsigned long flags;
2441 int id;
2442
2443 spin_lock_irqsave(&local->ack_status_lock, flags);
2444 id = idr_alloc(&local->ack_status_frames, ack_skb,
2445 1, 0x40, GFP_ATOMIC);
2446 spin_unlock_irqrestore(&local->ack_status_lock, flags);
2447
2448 if (id >= 0) {
2449 info_id = id;
2450 *info_flags |= IEEE80211_TX_CTL_REQ_TX_STATUS;
2451 } else {
2452 kfree_skb(ack_skb);
2453 }
2454 }
2455
2456 return info_id;
2457}
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478static struct sk_buff *ieee80211_build_hdr(struct ieee80211_sub_if_data *sdata,
2479 struct sk_buff *skb, u32 info_flags,
2480 struct sta_info *sta, u32 ctrl_flags)
2481{
2482 struct ieee80211_local *local = sdata->local;
2483 struct ieee80211_tx_info *info;
2484 int head_need;
2485 u16 ethertype, hdrlen, meshhdrlen = 0;
2486 __le16 fc;
2487 struct ieee80211_hdr hdr;
2488 struct ieee80211s_hdr mesh_hdr __maybe_unused;
2489 struct mesh_path __maybe_unused *mppath = NULL, *mpath = NULL;
2490 const u8 *encaps_data;
2491 int encaps_len, skip_header_bytes;
2492 bool wme_sta = false, authorized = false;
2493 bool tdls_peer;
2494 bool multicast;
2495 u16 info_id = 0;
2496 struct ieee80211_chanctx_conf *chanctx_conf;
2497 struct ieee80211_sub_if_data *ap_sdata;
2498 enum nl80211_band band;
2499 int ret;
2500
2501 if (IS_ERR(sta))
2502 sta = NULL;
2503
2504#ifdef CONFIG_MAC80211_DEBUGFS
2505 if (local->force_tx_status)
2506 info_flags |= IEEE80211_TX_CTL_REQ_TX_STATUS;
2507#endif
2508
2509
2510
2511 ethertype = (skb->data[12] << 8) | skb->data[13];
2512 fc = cpu_to_le16(IEEE80211_FTYPE_DATA | IEEE80211_STYPE_DATA);
2513
2514 switch (sdata->vif.type) {
2515 case NL80211_IFTYPE_AP_VLAN:
2516 if (sdata->wdev.use_4addr) {
2517 fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS);
2518
2519 memcpy(hdr.addr1, sta->sta.addr, ETH_ALEN);
2520 memcpy(hdr.addr2, sdata->vif.addr, ETH_ALEN);
2521 memcpy(hdr.addr3, skb->data, ETH_ALEN);
2522 memcpy(hdr.addr4, skb->data + ETH_ALEN, ETH_ALEN);
2523 hdrlen = 30;
2524 authorized = test_sta_flag(sta, WLAN_STA_AUTHORIZED);
2525 wme_sta = sta->sta.wme;
2526 }
2527 ap_sdata = container_of(sdata->bss, struct ieee80211_sub_if_data,
2528 u.ap);
2529 chanctx_conf = rcu_dereference(ap_sdata->vif.chanctx_conf);
2530 if (!chanctx_conf) {
2531 ret = -ENOTCONN;
2532 goto free;
2533 }
2534 band = chanctx_conf->def.chan->band;
2535 if (sdata->wdev.use_4addr)
2536 break;
2537
2538 case NL80211_IFTYPE_AP:
2539 if (sdata->vif.type == NL80211_IFTYPE_AP)
2540 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
2541 if (!chanctx_conf) {
2542 ret = -ENOTCONN;
2543 goto free;
2544 }
2545 fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS);
2546
2547 memcpy(hdr.addr1, skb->data, ETH_ALEN);
2548 memcpy(hdr.addr2, sdata->vif.addr, ETH_ALEN);
2549 memcpy(hdr.addr3, skb->data + ETH_ALEN, ETH_ALEN);
2550 hdrlen = 24;
2551 band = chanctx_conf->def.chan->band;
2552 break;
2553 case NL80211_IFTYPE_WDS:
2554 fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS);
2555
2556 memcpy(hdr.addr1, sdata->u.wds.remote_addr, ETH_ALEN);
2557 memcpy(hdr.addr2, sdata->vif.addr, ETH_ALEN);
2558 memcpy(hdr.addr3, skb->data, ETH_ALEN);
2559 memcpy(hdr.addr4, skb->data + ETH_ALEN, ETH_ALEN);
2560 hdrlen = 30;
2561
2562
2563
2564
2565 band = local->hw.conf.chandef.chan->band;
2566 break;
2567#ifdef CONFIG_MAC80211_MESH
2568 case NL80211_IFTYPE_MESH_POINT:
2569 if (!is_multicast_ether_addr(skb->data)) {
2570 struct sta_info *next_hop;
2571 bool mpp_lookup = true;
2572
2573 mpath = mesh_path_lookup(sdata, skb->data);
2574 if (mpath) {
2575 mpp_lookup = false;
2576 next_hop = rcu_dereference(mpath->next_hop);
2577 if (!next_hop ||
2578 !(mpath->flags & (MESH_PATH_ACTIVE |
2579 MESH_PATH_RESOLVING)))
2580 mpp_lookup = true;
2581 }
2582
2583 if (mpp_lookup) {
2584 mppath = mpp_path_lookup(sdata, skb->data);
2585 if (mppath)
2586 mppath->exp_time = jiffies;
2587 }
2588
2589 if (mppath && mpath)
2590 mesh_path_del(sdata, mpath->dst);
2591 }
2592
2593
2594
2595
2596
2597
2598
2599 if (ether_addr_equal(sdata->vif.addr, skb->data + ETH_ALEN) &&
2600 !(mppath && !ether_addr_equal(mppath->mpp, skb->data))) {
2601 hdrlen = ieee80211_fill_mesh_addresses(&hdr, &fc,
2602 skb->data, skb->data + ETH_ALEN);
2603 meshhdrlen = ieee80211_new_mesh_header(sdata, &mesh_hdr,
2604 NULL, NULL);
2605 } else {
2606
2607
2608
2609
2610
2611
2612 const u8 *mesh_da = skb->data;
2613
2614 if (mppath)
2615 mesh_da = mppath->mpp;
2616 else if (mpath)
2617 mesh_da = mpath->dst;
2618
2619 hdrlen = ieee80211_fill_mesh_addresses(&hdr, &fc,
2620 mesh_da, sdata->vif.addr);
2621 if (is_multicast_ether_addr(mesh_da))
2622
2623 meshhdrlen = ieee80211_new_mesh_header(
2624 sdata, &mesh_hdr,
2625 skb->data + ETH_ALEN, NULL);
2626 else
2627
2628 meshhdrlen = ieee80211_new_mesh_header(
2629 sdata, &mesh_hdr, skb->data,
2630 skb->data + ETH_ALEN);
2631
2632 }
2633 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
2634 if (!chanctx_conf) {
2635 ret = -ENOTCONN;
2636 goto free;
2637 }
2638 band = chanctx_conf->def.chan->band;
2639
2640
2641
2642
2643 if ((ctrl_flags & IEEE80211_TX_CTRL_SKIP_MPATH_LOOKUP) &&
2644 is_zero_ether_addr(hdr.addr1))
2645 memcpy(hdr.addr1, skb->data, ETH_ALEN);
2646 break;
2647#endif
2648 case NL80211_IFTYPE_STATION:
2649
2650 tdls_peer = test_sta_flag(sta, WLAN_STA_TDLS_PEER);
2651
2652 if (tdls_peer) {
2653
2654 memcpy(hdr.addr1, skb->data, ETH_ALEN);
2655 memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN);
2656 memcpy(hdr.addr3, sdata->u.mgd.bssid, ETH_ALEN);
2657 hdrlen = 24;
2658 } else if (sdata->u.mgd.use_4addr &&
2659 cpu_to_be16(ethertype) != sdata->control_port_protocol) {
2660 fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS |
2661 IEEE80211_FCTL_TODS);
2662
2663 memcpy(hdr.addr1, sdata->u.mgd.bssid, ETH_ALEN);
2664 memcpy(hdr.addr2, sdata->vif.addr, ETH_ALEN);
2665 memcpy(hdr.addr3, skb->data, ETH_ALEN);
2666 memcpy(hdr.addr4, skb->data + ETH_ALEN, ETH_ALEN);
2667 hdrlen = 30;
2668 } else {
2669 fc |= cpu_to_le16(IEEE80211_FCTL_TODS);
2670
2671 memcpy(hdr.addr1, sdata->u.mgd.bssid, ETH_ALEN);
2672 memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN);
2673 memcpy(hdr.addr3, skb->data, ETH_ALEN);
2674 hdrlen = 24;
2675 }
2676 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
2677 if (!chanctx_conf) {
2678 ret = -ENOTCONN;
2679 goto free;
2680 }
2681 band = chanctx_conf->def.chan->band;
2682 break;
2683 case NL80211_IFTYPE_OCB:
2684
2685 memcpy(hdr.addr1, skb->data, ETH_ALEN);
2686 memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN);
2687 eth_broadcast_addr(hdr.addr3);
2688 hdrlen = 24;
2689 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
2690 if (!chanctx_conf) {
2691 ret = -ENOTCONN;
2692 goto free;
2693 }
2694 band = chanctx_conf->def.chan->band;
2695 break;
2696 case NL80211_IFTYPE_ADHOC:
2697
2698 memcpy(hdr.addr1, skb->data, ETH_ALEN);
2699 memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN);
2700 memcpy(hdr.addr3, sdata->u.ibss.bssid, ETH_ALEN);
2701 hdrlen = 24;
2702 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
2703 if (!chanctx_conf) {
2704 ret = -ENOTCONN;
2705 goto free;
2706 }
2707 band = chanctx_conf->def.chan->band;
2708 break;
2709 default:
2710 ret = -EINVAL;
2711 goto free;
2712 }
2713
2714 multicast = is_multicast_ether_addr(hdr.addr1);
2715
2716
2717 if (sta) {
2718 authorized = test_sta_flag(sta, WLAN_STA_AUTHORIZED);
2719 wme_sta = sta->sta.wme;
2720 } else if (ieee80211_vif_is_mesh(&sdata->vif)) {
2721
2722 wme_sta = true;
2723 }
2724
2725
2726 if (wme_sta) {
2727 fc |= cpu_to_le16(IEEE80211_STYPE_QOS_DATA);
2728 hdrlen += 2;
2729 }
2730
2731
2732
2733
2734
2735 if (unlikely(!ieee80211_vif_is_mesh(&sdata->vif) &&
2736 (sdata->vif.type != NL80211_IFTYPE_OCB) &&
2737 !multicast && !authorized &&
2738 (cpu_to_be16(ethertype) != sdata->control_port_protocol ||
2739 !ether_addr_equal(sdata->vif.addr, skb->data + ETH_ALEN)))) {
2740#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
2741 net_info_ratelimited("%s: dropped frame to %pM (unauthorized port)\n",
2742 sdata->name, hdr.addr1);
2743#endif
2744
2745 I802_DEBUG_INC(local->tx_handlers_drop_unauth_port);
2746
2747 ret = -EPERM;
2748 goto free;
2749 }
2750
2751 if (unlikely(!multicast && skb->sk &&
2752 skb_shinfo(skb)->tx_flags & SKBTX_WIFI_STATUS))
2753 info_id = ieee80211_store_ack_skb(local, skb, &info_flags);
2754
2755
2756
2757
2758 if (skb_shared(skb)) {
2759 struct sk_buff *tmp_skb = skb;
2760
2761
2762 WARN_ON(info_id);
2763
2764 skb = skb_clone(skb, GFP_ATOMIC);
2765 kfree_skb(tmp_skb);
2766
2767 if (!skb) {
2768 ret = -ENOMEM;
2769 goto free;
2770 }
2771 }
2772
2773 hdr.frame_control = fc;
2774 hdr.duration_id = 0;
2775 hdr.seq_ctrl = 0;
2776
2777 skip_header_bytes = ETH_HLEN;
2778 if (ethertype == ETH_P_AARP || ethertype == ETH_P_IPX) {
2779 encaps_data = bridge_tunnel_header;
2780 encaps_len = sizeof(bridge_tunnel_header);
2781 skip_header_bytes -= 2;
2782 } else if (ethertype >= ETH_P_802_3_MIN) {
2783 encaps_data = rfc1042_header;
2784 encaps_len = sizeof(rfc1042_header);
2785 skip_header_bytes -= 2;
2786 } else {
2787 encaps_data = NULL;
2788 encaps_len = 0;
2789 }
2790
2791 skb_pull(skb, skip_header_bytes);
2792 head_need = hdrlen + encaps_len + meshhdrlen - skb_headroom(skb);
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806 if (head_need > 0 || skb_cloned(skb)) {
2807 head_need += sdata->encrypt_headroom;
2808 head_need += local->tx_headroom;
2809 head_need = max_t(int, 0, head_need);
2810 if (ieee80211_skb_resize(sdata, skb, head_need, true)) {
2811 ieee80211_free_txskb(&local->hw, skb);
2812 skb = NULL;
2813 return ERR_PTR(-ENOMEM);
2814 }
2815 }
2816
2817 if (encaps_data)
2818 memcpy(skb_push(skb, encaps_len), encaps_data, encaps_len);
2819
2820#ifdef CONFIG_MAC80211_MESH
2821 if (meshhdrlen > 0)
2822 memcpy(skb_push(skb, meshhdrlen), &mesh_hdr, meshhdrlen);
2823#endif
2824
2825 if (ieee80211_is_data_qos(fc)) {
2826 __le16 *qos_control;
2827
2828 qos_control = skb_push(skb, 2);
2829 memcpy(skb_push(skb, hdrlen - 2), &hdr, hdrlen - 2);
2830
2831
2832
2833
2834 *qos_control = 0;
2835 } else
2836 memcpy(skb_push(skb, hdrlen), &hdr, hdrlen);
2837
2838 skb_reset_mac_header(skb);
2839
2840 info = IEEE80211_SKB_CB(skb);
2841 memset(info, 0, sizeof(*info));
2842
2843 info->flags = info_flags;
2844 info->ack_frame_id = info_id;
2845 info->band = band;
2846 info->control.flags = ctrl_flags;
2847
2848 return skb;
2849 free:
2850 kfree_skb(skb);
2851 return ERR_PTR(ret);
2852}
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875void ieee80211_check_fast_xmit(struct sta_info *sta)
2876{
2877 struct ieee80211_fast_tx build = {}, *fast_tx = NULL, *old;
2878 struct ieee80211_local *local = sta->local;
2879 struct ieee80211_sub_if_data *sdata = sta->sdata;
2880 struct ieee80211_hdr *hdr = (void *)build.hdr;
2881 struct ieee80211_chanctx_conf *chanctx_conf;
2882 __le16 fc;
2883
2884 if (!ieee80211_hw_check(&local->hw, SUPPORT_FAST_XMIT))
2885 return;
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899 spin_lock_bh(&sta->lock);
2900 if (ieee80211_hw_check(&local->hw, SUPPORTS_PS) &&
2901 !ieee80211_hw_check(&local->hw, SUPPORTS_DYNAMIC_PS) &&
2902 sdata->vif.type == NL80211_IFTYPE_STATION)
2903 goto out;
2904
2905 if (!test_sta_flag(sta, WLAN_STA_AUTHORIZED))
2906 goto out;
2907
2908 if (test_sta_flag(sta, WLAN_STA_PS_STA) ||
2909 test_sta_flag(sta, WLAN_STA_PS_DRIVER) ||
2910 test_sta_flag(sta, WLAN_STA_PS_DELIVER) ||
2911 test_sta_flag(sta, WLAN_STA_CLEAR_PS_FILT))
2912 goto out;
2913
2914 if (sdata->noack_map)
2915 goto out;
2916
2917
2918 if (local->hw.wiphy->frag_threshold != (u32)-1 &&
2919 !ieee80211_hw_check(&local->hw, SUPPORTS_TX_FRAG))
2920 goto out;
2921
2922 rcu_read_lock();
2923 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
2924 if (!chanctx_conf) {
2925 rcu_read_unlock();
2926 goto out;
2927 }
2928 build.band = chanctx_conf->def.chan->band;
2929 rcu_read_unlock();
2930
2931 fc = cpu_to_le16(IEEE80211_FTYPE_DATA | IEEE80211_STYPE_DATA);
2932
2933 switch (sdata->vif.type) {
2934 case NL80211_IFTYPE_ADHOC:
2935
2936 build.da_offs = offsetof(struct ieee80211_hdr, addr1);
2937 build.sa_offs = offsetof(struct ieee80211_hdr, addr2);
2938 memcpy(hdr->addr3, sdata->u.ibss.bssid, ETH_ALEN);
2939 build.hdr_len = 24;
2940 break;
2941 case NL80211_IFTYPE_STATION:
2942 if (test_sta_flag(sta, WLAN_STA_TDLS_PEER)) {
2943
2944 build.da_offs = offsetof(struct ieee80211_hdr, addr1);
2945 build.sa_offs = offsetof(struct ieee80211_hdr, addr2);
2946 memcpy(hdr->addr3, sdata->u.mgd.bssid, ETH_ALEN);
2947 build.hdr_len = 24;
2948 break;
2949 }
2950
2951 if (sdata->u.mgd.use_4addr) {
2952
2953 fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS |
2954 IEEE80211_FCTL_TODS);
2955
2956 memcpy(hdr->addr1, sdata->u.mgd.bssid, ETH_ALEN);
2957 memcpy(hdr->addr2, sdata->vif.addr, ETH_ALEN);
2958 build.da_offs = offsetof(struct ieee80211_hdr, addr3);
2959 build.sa_offs = offsetof(struct ieee80211_hdr, addr4);
2960 build.hdr_len = 30;
2961 break;
2962 }
2963 fc |= cpu_to_le16(IEEE80211_FCTL_TODS);
2964
2965 memcpy(hdr->addr1, sdata->u.mgd.bssid, ETH_ALEN);
2966 build.da_offs = offsetof(struct ieee80211_hdr, addr3);
2967 build.sa_offs = offsetof(struct ieee80211_hdr, addr2);
2968 build.hdr_len = 24;
2969 break;
2970 case NL80211_IFTYPE_AP_VLAN:
2971 if (sdata->wdev.use_4addr) {
2972 fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS |
2973 IEEE80211_FCTL_TODS);
2974
2975 memcpy(hdr->addr1, sta->sta.addr, ETH_ALEN);
2976 memcpy(hdr->addr2, sdata->vif.addr, ETH_ALEN);
2977 build.da_offs = offsetof(struct ieee80211_hdr, addr3);
2978 build.sa_offs = offsetof(struct ieee80211_hdr, addr4);
2979 build.hdr_len = 30;
2980 break;
2981 }
2982
2983 case NL80211_IFTYPE_AP:
2984 fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS);
2985
2986 build.da_offs = offsetof(struct ieee80211_hdr, addr1);
2987 memcpy(hdr->addr2, sdata->vif.addr, ETH_ALEN);
2988 build.sa_offs = offsetof(struct ieee80211_hdr, addr3);
2989 build.hdr_len = 24;
2990 break;
2991 default:
2992
2993 goto out;
2994 }
2995
2996 if (sta->sta.wme) {
2997 build.hdr_len += 2;
2998 fc |= cpu_to_le16(IEEE80211_STYPE_QOS_DATA);
2999 }
3000
3001
3002
3003
3004
3005
3006 build.key = rcu_access_pointer(sta->ptk[sta->ptk_idx]);
3007 if (!build.key)
3008 build.key = rcu_access_pointer(sdata->default_unicast_key);
3009 if (build.key) {
3010 bool gen_iv, iv_spc, mmic;
3011
3012 gen_iv = build.key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_IV;
3013 iv_spc = build.key->conf.flags & IEEE80211_KEY_FLAG_PUT_IV_SPACE;
3014 mmic = build.key->conf.flags &
3015 (IEEE80211_KEY_FLAG_GENERATE_MMIC |
3016 IEEE80211_KEY_FLAG_PUT_MIC_SPACE);
3017
3018
3019 if (!(build.key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE))
3020 goto out;
3021
3022
3023 if (build.key->flags & KEY_FLAG_TAINTED)
3024 goto out;
3025
3026 switch (build.key->conf.cipher) {
3027 case WLAN_CIPHER_SUITE_CCMP:
3028 case WLAN_CIPHER_SUITE_CCMP_256:
3029 if (gen_iv)
3030 build.pn_offs = build.hdr_len;
3031 if (gen_iv || iv_spc)
3032 build.hdr_len += IEEE80211_CCMP_HDR_LEN;
3033 break;
3034 case WLAN_CIPHER_SUITE_GCMP:
3035 case WLAN_CIPHER_SUITE_GCMP_256:
3036 if (gen_iv)
3037 build.pn_offs = build.hdr_len;
3038 if (gen_iv || iv_spc)
3039 build.hdr_len += IEEE80211_GCMP_HDR_LEN;
3040 break;
3041 case WLAN_CIPHER_SUITE_TKIP:
3042
3043 if (mmic || gen_iv)
3044 goto out;
3045 if (iv_spc)
3046 build.hdr_len += IEEE80211_TKIP_IV_LEN;
3047 break;
3048 case WLAN_CIPHER_SUITE_WEP40:
3049 case WLAN_CIPHER_SUITE_WEP104:
3050
3051 if (gen_iv)
3052 goto out;
3053 if (iv_spc)
3054 build.hdr_len += IEEE80211_WEP_IV_LEN;
3055 break;
3056 case WLAN_CIPHER_SUITE_AES_CMAC:
3057 case WLAN_CIPHER_SUITE_BIP_CMAC_256:
3058 case WLAN_CIPHER_SUITE_BIP_GMAC_128:
3059 case WLAN_CIPHER_SUITE_BIP_GMAC_256:
3060 WARN(1,
3061 "management cipher suite 0x%x enabled for data\n",
3062 build.key->conf.cipher);
3063 goto out;
3064 default:
3065
3066 if (WARN_ON(gen_iv))
3067 goto out;
3068
3069 if (!(build.key->flags & KEY_FLAG_CIPHER_SCHEME))
3070 break;
3071
3072 if (iv_spc &&
3073 build.key->conf.iv_len > IEEE80211_FAST_XMIT_MAX_IV)
3074 goto out;
3075 if (iv_spc)
3076 build.hdr_len += build.key->conf.iv_len;
3077 }
3078
3079 fc |= cpu_to_le16(IEEE80211_FCTL_PROTECTED);
3080 }
3081
3082 hdr->frame_control = fc;
3083
3084 memcpy(build.hdr + build.hdr_len,
3085 rfc1042_header, sizeof(rfc1042_header));
3086 build.hdr_len += sizeof(rfc1042_header);
3087
3088 fast_tx = kmemdup(&build, sizeof(build), GFP_ATOMIC);
3089
3090 if (!fast_tx)
3091 goto out;
3092
3093 out:
3094
3095 old = rcu_dereference_protected(sta->fast_tx,
3096 lockdep_is_held(&sta->lock));
3097 rcu_assign_pointer(sta->fast_tx, fast_tx);
3098 if (old)
3099 kfree_rcu(old, rcu_head);
3100 spin_unlock_bh(&sta->lock);
3101}
3102
3103void ieee80211_check_fast_xmit_all(struct ieee80211_local *local)
3104{
3105 struct sta_info *sta;
3106
3107 rcu_read_lock();
3108 list_for_each_entry_rcu(sta, &local->sta_list, list)
3109 ieee80211_check_fast_xmit(sta);
3110 rcu_read_unlock();
3111}
3112
3113void ieee80211_check_fast_xmit_iface(struct ieee80211_sub_if_data *sdata)
3114{
3115 struct ieee80211_local *local = sdata->local;
3116 struct sta_info *sta;
3117
3118 rcu_read_lock();
3119
3120 list_for_each_entry_rcu(sta, &local->sta_list, list) {
3121 if (sdata != sta->sdata &&
3122 (!sta->sdata->bss || sta->sdata->bss != sdata->bss))
3123 continue;
3124 ieee80211_check_fast_xmit(sta);
3125 }
3126
3127 rcu_read_unlock();
3128}
3129
3130void ieee80211_clear_fast_xmit(struct sta_info *sta)
3131{
3132 struct ieee80211_fast_tx *fast_tx;
3133
3134 spin_lock_bh(&sta->lock);
3135 fast_tx = rcu_dereference_protected(sta->fast_tx,
3136 lockdep_is_held(&sta->lock));
3137 RCU_INIT_POINTER(sta->fast_tx, NULL);
3138 spin_unlock_bh(&sta->lock);
3139
3140 if (fast_tx)
3141 kfree_rcu(fast_tx, rcu_head);
3142}
3143
3144static bool ieee80211_amsdu_realloc_pad(struct ieee80211_local *local,
3145 struct sk_buff *skb, int headroom)
3146{
3147 if (skb_headroom(skb) < headroom) {
3148 I802_DEBUG_INC(local->tx_expand_skb_head);
3149
3150 if (pskb_expand_head(skb, headroom, 0, GFP_ATOMIC)) {
3151 wiphy_debug(local->hw.wiphy,
3152 "failed to reallocate TX buffer\n");
3153 return false;
3154 }
3155 }
3156
3157 return true;
3158}
3159
3160static bool ieee80211_amsdu_prepare_head(struct ieee80211_sub_if_data *sdata,
3161 struct ieee80211_fast_tx *fast_tx,
3162 struct sk_buff *skb)
3163{
3164 struct ieee80211_local *local = sdata->local;
3165 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
3166 struct ieee80211_hdr *hdr;
3167 struct ethhdr *amsdu_hdr;
3168 int hdr_len = fast_tx->hdr_len - sizeof(rfc1042_header);
3169 int subframe_len = skb->len - hdr_len;
3170 void *data;
3171 u8 *qc, *h_80211_src, *h_80211_dst;
3172 const u8 *bssid;
3173
3174 if (info->flags & IEEE80211_TX_CTL_RATE_CTRL_PROBE)
3175 return false;
3176
3177 if (info->control.flags & IEEE80211_TX_CTRL_AMSDU)
3178 return true;
3179
3180 if (!ieee80211_amsdu_realloc_pad(local, skb, sizeof(*amsdu_hdr)))
3181 return false;
3182
3183 data = skb_push(skb, sizeof(*amsdu_hdr));
3184 memmove(data, data + sizeof(*amsdu_hdr), hdr_len);
3185 hdr = data;
3186 amsdu_hdr = data + hdr_len;
3187
3188 h_80211_src = data + fast_tx->sa_offs;
3189 h_80211_dst = data + fast_tx->da_offs;
3190
3191 amsdu_hdr->h_proto = cpu_to_be16(subframe_len);
3192 ether_addr_copy(amsdu_hdr->h_source, h_80211_src);
3193 ether_addr_copy(amsdu_hdr->h_dest, h_80211_dst);
3194
3195
3196
3197
3198
3199 switch (sdata->vif.type) {
3200 case NL80211_IFTYPE_STATION:
3201 bssid = sdata->u.mgd.bssid;
3202 break;
3203 case NL80211_IFTYPE_AP:
3204 case NL80211_IFTYPE_AP_VLAN:
3205 bssid = sdata->vif.addr;
3206 break;
3207 default:
3208 bssid = NULL;
3209 }
3210
3211 if (bssid && ieee80211_has_fromds(hdr->frame_control))
3212 ether_addr_copy(h_80211_src, bssid);
3213
3214 if (bssid && ieee80211_has_tods(hdr->frame_control))
3215 ether_addr_copy(h_80211_dst, bssid);
3216
3217 qc = ieee80211_get_qos_ctl(hdr);
3218 *qc |= IEEE80211_QOS_CTL_A_MSDU_PRESENT;
3219
3220 info->control.flags |= IEEE80211_TX_CTRL_AMSDU;
3221
3222 return true;
3223}
3224
3225static bool ieee80211_amsdu_aggregate(struct ieee80211_sub_if_data *sdata,
3226 struct sta_info *sta,
3227 struct ieee80211_fast_tx *fast_tx,
3228 struct sk_buff *skb)
3229{
3230 struct ieee80211_local *local = sdata->local;
3231 struct fq *fq = &local->fq;
3232 struct fq_tin *tin;
3233 struct fq_flow *flow;
3234 u8 tid = skb->priority & IEEE80211_QOS_CTL_TAG1D_MASK;
3235 struct ieee80211_txq *txq = sta->sta.txq[tid];
3236 struct txq_info *txqi;
3237 struct sk_buff **frag_tail, *head;
3238 int subframe_len = skb->len - ETH_ALEN;
3239 u8 max_subframes = sta->sta.max_amsdu_subframes;
3240 int max_frags = local->hw.max_tx_fragments;
3241 int max_amsdu_len = sta->sta.max_amsdu_len;
3242 int orig_truesize;
3243 u32 flow_idx;
3244 __be16 len;
3245 void *data;
3246 bool ret = false;
3247 unsigned int orig_len;
3248 int n = 2, nfrags, pad = 0;
3249 u16 hdrlen;
3250
3251 if (!ieee80211_hw_check(&local->hw, TX_AMSDU))
3252 return false;
3253
3254 if (skb_is_gso(skb))
3255 return false;
3256
3257 if (!txq)
3258 return false;
3259
3260 txqi = to_txq_info(txq);
3261 if (test_bit(IEEE80211_TXQ_NO_AMSDU, &txqi->flags))
3262 return false;
3263
3264 if (sta->sta.max_rc_amsdu_len)
3265 max_amsdu_len = min_t(int, max_amsdu_len,
3266 sta->sta.max_rc_amsdu_len);
3267
3268 if (sta->sta.max_tid_amsdu_len[tid])
3269 max_amsdu_len = min_t(int, max_amsdu_len,
3270 sta->sta.max_tid_amsdu_len[tid]);
3271
3272 flow_idx = fq_flow_idx(fq, skb);
3273
3274 spin_lock_bh(&fq->lock);
3275
3276
3277
3278
3279
3280 tin = &txqi->tin;
3281 flow = fq_flow_classify(fq, tin, flow_idx, skb,
3282 fq_flow_get_default_func);
3283 head = skb_peek_tail(&flow->queue);
3284 if (!head || skb_is_gso(head))
3285 goto out;
3286
3287 orig_truesize = head->truesize;
3288 orig_len = head->len;
3289
3290 if (skb->len + head->len > max_amsdu_len)
3291 goto out;
3292
3293 nfrags = 1 + skb_shinfo(skb)->nr_frags;
3294 nfrags += 1 + skb_shinfo(head)->nr_frags;
3295 frag_tail = &skb_shinfo(head)->frag_list;
3296 while (*frag_tail) {
3297 nfrags += 1 + skb_shinfo(*frag_tail)->nr_frags;
3298 frag_tail = &(*frag_tail)->next;
3299 n++;
3300 }
3301
3302 if (max_subframes && n > max_subframes)
3303 goto out;
3304
3305 if (max_frags && nfrags > max_frags)
3306 goto out;
3307
3308 if (!drv_can_aggregate_in_amsdu(local, head, skb))
3309 goto out;
3310
3311 if (!ieee80211_amsdu_prepare_head(sdata, fast_tx, head))
3312 goto out;
3313
3314
3315
3316
3317
3318
3319
3320
3321 hdrlen = fast_tx->hdr_len - sizeof(rfc1042_header);
3322 if ((head->len - hdrlen) & 3)
3323 pad = 4 - ((head->len - hdrlen) & 3);
3324
3325 if (!ieee80211_amsdu_realloc_pad(local, skb, sizeof(rfc1042_header) +
3326 2 + pad))
3327 goto out_recalc;
3328
3329 ret = true;
3330 data = skb_push(skb, ETH_ALEN + 2);
3331 memmove(data, data + ETH_ALEN + 2, 2 * ETH_ALEN);
3332
3333 data += 2 * ETH_ALEN;
3334 len = cpu_to_be16(subframe_len);
3335 memcpy(data, &len, 2);
3336 memcpy(data + 2, rfc1042_header, sizeof(rfc1042_header));
3337
3338 memset(skb_push(skb, pad), 0, pad);
3339
3340 head->len += skb->len;
3341 head->data_len += skb->len;
3342 *frag_tail = skb;
3343
3344out_recalc:
3345 fq->memory_usage += head->truesize - orig_truesize;
3346 if (head->len != orig_len) {
3347 flow->backlog += head->len - orig_len;
3348 tin->backlog_bytes += head->len - orig_len;
3349
3350 fq_recalc_backlog(fq, tin, flow);
3351 }
3352out:
3353 spin_unlock_bh(&fq->lock);
3354
3355 return ret;
3356}
3357
3358
3359
3360
3361
3362static void ieee80211_xmit_fast_finish(struct ieee80211_sub_if_data *sdata,
3363 struct sta_info *sta, u8 pn_offs,
3364 struct ieee80211_key *key,
3365 struct sk_buff *skb)
3366{
3367 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
3368 struct ieee80211_hdr *hdr = (void *)skb->data;
3369 u8 tid = IEEE80211_NUM_TIDS;
3370
3371 if (key)
3372 info->control.hw_key = &key->conf;
3373
3374 ieee80211_tx_stats(skb->dev, skb->len);
3375
3376 if (hdr->frame_control & cpu_to_le16(IEEE80211_STYPE_QOS_DATA)) {
3377 tid = skb->priority & IEEE80211_QOS_CTL_TAG1D_MASK;
3378 hdr->seq_ctrl = ieee80211_tx_next_seq(sta, tid);
3379 } else {
3380 info->flags |= IEEE80211_TX_CTL_ASSIGN_SEQ;
3381 hdr->seq_ctrl = cpu_to_le16(sdata->sequence_number);
3382 sdata->sequence_number += 0x10;
3383 }
3384
3385 if (skb_shinfo(skb)->gso_size)
3386 sta->tx_stats.msdu[tid] +=
3387 DIV_ROUND_UP(skb->len, skb_shinfo(skb)->gso_size);
3388 else
3389 sta->tx_stats.msdu[tid]++;
3390
3391 info->hw_queue = sdata->vif.hw_queue[skb_get_queue_mapping(skb)];
3392
3393
3394
3395
3396 sta->tx_stats.bytes[skb_get_queue_mapping(skb)] += skb->len;
3397 sta->tx_stats.packets[skb_get_queue_mapping(skb)]++;
3398
3399 if (pn_offs) {
3400 u64 pn;
3401 u8 *crypto_hdr = skb->data + pn_offs;
3402
3403 switch (key->conf.cipher) {
3404 case WLAN_CIPHER_SUITE_CCMP:
3405 case WLAN_CIPHER_SUITE_CCMP_256:
3406 case WLAN_CIPHER_SUITE_GCMP:
3407 case WLAN_CIPHER_SUITE_GCMP_256:
3408 pn = atomic64_inc_return(&key->conf.tx_pn);
3409 crypto_hdr[0] = pn;
3410 crypto_hdr[1] = pn >> 8;
3411 crypto_hdr[3] = 0x20 | (key->conf.keyidx << 6);
3412 crypto_hdr[4] = pn >> 16;
3413 crypto_hdr[5] = pn >> 24;
3414 crypto_hdr[6] = pn >> 32;
3415 crypto_hdr[7] = pn >> 40;
3416 break;
3417 }
3418 }
3419}
3420
3421static bool ieee80211_xmit_fast(struct ieee80211_sub_if_data *sdata,
3422 struct sta_info *sta,
3423 struct ieee80211_fast_tx *fast_tx,
3424 struct sk_buff *skb)
3425{
3426 struct ieee80211_local *local = sdata->local;
3427 u16 ethertype = (skb->data[12] << 8) | skb->data[13];
3428 int extra_head = fast_tx->hdr_len - (ETH_HLEN - 2);
3429 int hw_headroom = sdata->local->hw.extra_tx_headroom;
3430 struct ethhdr eth;
3431 struct ieee80211_tx_info *info;
3432 struct ieee80211_hdr *hdr = (void *)fast_tx->hdr;
3433 struct ieee80211_tx_data tx;
3434 ieee80211_tx_result r;
3435 struct tid_ampdu_tx *tid_tx = NULL;
3436 u8 tid = IEEE80211_NUM_TIDS;
3437
3438
3439 if (cpu_to_be16(ethertype) == sdata->control_port_protocol)
3440 return false;
3441
3442
3443 if (ethertype < ETH_P_802_3_MIN)
3444 return false;
3445
3446
3447 if (skb->sk && skb_shinfo(skb)->tx_flags & SKBTX_WIFI_STATUS)
3448 return false;
3449
3450 if (hdr->frame_control & cpu_to_le16(IEEE80211_STYPE_QOS_DATA)) {
3451 tid = skb->priority & IEEE80211_QOS_CTL_TAG1D_MASK;
3452 tid_tx = rcu_dereference(sta->ampdu_mlme.tid_tx[tid]);
3453 if (tid_tx) {
3454 if (!test_bit(HT_AGG_STATE_OPERATIONAL, &tid_tx->state))
3455 return false;
3456 if (tid_tx->timeout)
3457 tid_tx->last_tx = jiffies;
3458 }
3459 }
3460
3461
3462
3463 if (skb_shared(skb)) {
3464 struct sk_buff *tmp_skb = skb;
3465
3466 skb = skb_clone(skb, GFP_ATOMIC);
3467 kfree_skb(tmp_skb);
3468
3469 if (!skb)
3470 return true;
3471 }
3472
3473 if ((hdr->frame_control & cpu_to_le16(IEEE80211_STYPE_QOS_DATA)) &&
3474 ieee80211_amsdu_aggregate(sdata, sta, fast_tx, skb))
3475 return true;
3476
3477
3478
3479
3480
3481 if (unlikely(ieee80211_skb_resize(sdata, skb,
3482 max_t(int, extra_head + hw_headroom -
3483 skb_headroom(skb), 0),
3484 false))) {
3485 kfree_skb(skb);
3486 return true;
3487 }
3488
3489 memcpy(ð, skb->data, ETH_HLEN - 2);
3490 hdr = skb_push(skb, extra_head);
3491 memcpy(skb->data, fast_tx->hdr, fast_tx->hdr_len);
3492 memcpy(skb->data + fast_tx->da_offs, eth.h_dest, ETH_ALEN);
3493 memcpy(skb->data + fast_tx->sa_offs, eth.h_source, ETH_ALEN);
3494
3495 info = IEEE80211_SKB_CB(skb);
3496 memset(info, 0, sizeof(*info));
3497 info->band = fast_tx->band;
3498 info->control.vif = &sdata->vif;
3499 info->flags = IEEE80211_TX_CTL_FIRST_FRAGMENT |
3500 IEEE80211_TX_CTL_DONTFRAG |
3501 (tid_tx ? IEEE80211_TX_CTL_AMPDU : 0);
3502 info->control.flags = IEEE80211_TX_CTRL_FAST_XMIT;
3503
3504#ifdef CONFIG_MAC80211_DEBUGFS
3505 if (local->force_tx_status)
3506 info->flags |= IEEE80211_TX_CTL_REQ_TX_STATUS;
3507#endif
3508
3509 if (hdr->frame_control & cpu_to_le16(IEEE80211_STYPE_QOS_DATA)) {
3510 tid = skb->priority & IEEE80211_QOS_CTL_TAG1D_MASK;
3511 *ieee80211_get_qos_ctl(hdr) = tid;
3512 }
3513
3514 __skb_queue_head_init(&tx.skbs);
3515
3516 tx.flags = IEEE80211_TX_UNICAST;
3517 tx.local = local;
3518 tx.sdata = sdata;
3519 tx.sta = sta;
3520 tx.key = fast_tx->key;
3521
3522 if (!ieee80211_hw_check(&local->hw, HAS_RATE_CONTROL)) {
3523 tx.skb = skb;
3524 r = ieee80211_tx_h_rate_ctrl(&tx);
3525 skb = tx.skb;
3526 tx.skb = NULL;
3527
3528 if (r != TX_CONTINUE) {
3529 if (r != TX_QUEUED)
3530 kfree_skb(skb);
3531 return true;
3532 }
3533 }
3534
3535 if (ieee80211_queue_skb(local, sdata, sta, skb))
3536 return true;
3537
3538 ieee80211_xmit_fast_finish(sdata, sta, fast_tx->pn_offs,
3539 fast_tx->key, skb);
3540
3541 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
3542 sdata = container_of(sdata->bss,
3543 struct ieee80211_sub_if_data, u.ap);
3544
3545 __skb_queue_tail(&tx.skbs, skb);
3546 ieee80211_tx_frags(local, &sdata->vif, sta, &tx.skbs, false);
3547 return true;
3548}
3549
3550struct sk_buff *ieee80211_tx_dequeue(struct ieee80211_hw *hw,
3551 struct ieee80211_txq *txq)
3552{
3553 struct ieee80211_local *local = hw_to_local(hw);
3554 struct txq_info *txqi = container_of(txq, struct txq_info, txq);
3555 struct ieee80211_hdr *hdr;
3556 struct sk_buff *skb = NULL;
3557 struct fq *fq = &local->fq;
3558 struct fq_tin *tin = &txqi->tin;
3559 struct ieee80211_tx_info *info;
3560 struct ieee80211_tx_data tx;
3561 ieee80211_tx_result r;
3562 struct ieee80211_vif *vif = txq->vif;
3563
3564 WARN_ON_ONCE(softirq_count() == 0);
3565
3566 if (!ieee80211_txq_airtime_check(hw, txq))
3567 return NULL;
3568
3569begin:
3570 spin_lock_bh(&fq->lock);
3571
3572 if (test_bit(IEEE80211_TXQ_STOP, &txqi->flags) ||
3573 test_bit(IEEE80211_TXQ_STOP_NETIF_TX, &txqi->flags))
3574 goto out;
3575
3576 if (vif->txqs_stopped[ieee80211_ac_from_tid(txq->tid)]) {
3577 set_bit(IEEE80211_TXQ_STOP_NETIF_TX, &txqi->flags);
3578 goto out;
3579 }
3580
3581
3582 skb = __skb_dequeue(&txqi->frags);
3583 if (skb)
3584 goto out;
3585
3586 skb = fq_tin_dequeue(fq, tin, fq_tin_dequeue_func);
3587 if (!skb)
3588 goto out;
3589
3590 spin_unlock_bh(&fq->lock);
3591
3592 hdr = (struct ieee80211_hdr *)skb->data;
3593 info = IEEE80211_SKB_CB(skb);
3594
3595 memset(&tx, 0, sizeof(tx));
3596 __skb_queue_head_init(&tx.skbs);
3597 tx.local = local;
3598 tx.skb = skb;
3599 tx.sdata = vif_to_sdata(info->control.vif);
3600
3601 if (txq->sta)
3602 tx.sta = container_of(txq->sta, struct sta_info, sta);
3603
3604
3605
3606
3607
3608 r = ieee80211_tx_h_select_key(&tx);
3609 if (r != TX_CONTINUE) {
3610 ieee80211_free_txskb(&local->hw, skb);
3611 goto begin;
3612 }
3613
3614 if (test_bit(IEEE80211_TXQ_AMPDU, &txqi->flags))
3615 info->flags |= IEEE80211_TX_CTL_AMPDU;
3616 else
3617 info->flags &= ~IEEE80211_TX_CTL_AMPDU;
3618
3619 if (info->control.flags & IEEE80211_TX_CTRL_FAST_XMIT) {
3620 struct sta_info *sta = container_of(txq->sta, struct sta_info,
3621 sta);
3622 u8 pn_offs = 0;
3623
3624 if (tx.key &&
3625 (tx.key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_IV))
3626 pn_offs = ieee80211_hdrlen(hdr->frame_control);
3627
3628 ieee80211_xmit_fast_finish(sta->sdata, sta, pn_offs,
3629 tx.key, skb);
3630 } else {
3631 if (invoke_tx_handlers_late(&tx))
3632 goto begin;
3633
3634 skb = __skb_dequeue(&tx.skbs);
3635
3636 if (!skb_queue_empty(&tx.skbs)) {
3637 spin_lock_bh(&fq->lock);
3638 skb_queue_splice_tail(&tx.skbs, &txqi->frags);
3639 spin_unlock_bh(&fq->lock);
3640 }
3641 }
3642
3643 if (skb_has_frag_list(skb) &&
3644 !ieee80211_hw_check(&local->hw, TX_FRAG_LIST)) {
3645 if (skb_linearize(skb)) {
3646 ieee80211_free_txskb(&local->hw, skb);
3647 goto begin;
3648 }
3649 }
3650
3651 switch (tx.sdata->vif.type) {
3652 case NL80211_IFTYPE_MONITOR:
3653 if (tx.sdata->u.mntr.flags & MONITOR_FLAG_ACTIVE) {
3654 vif = &tx.sdata->vif;
3655 break;
3656 }
3657 tx.sdata = rcu_dereference(local->monitor_sdata);
3658 if (tx.sdata) {
3659 vif = &tx.sdata->vif;
3660 info->hw_queue =
3661 vif->hw_queue[skb_get_queue_mapping(skb)];
3662 } else if (ieee80211_hw_check(&local->hw, QUEUE_CONTROL)) {
3663 ieee80211_free_txskb(&local->hw, skb);
3664 goto begin;
3665 } else {
3666 vif = NULL;
3667 }
3668 break;
3669 case NL80211_IFTYPE_AP_VLAN:
3670 tx.sdata = container_of(tx.sdata->bss,
3671 struct ieee80211_sub_if_data, u.ap);
3672
3673 default:
3674 vif = &tx.sdata->vif;
3675 break;
3676 }
3677
3678 IEEE80211_SKB_CB(skb)->control.vif = vif;
3679
3680 if (wiphy_ext_feature_isset(local->hw.wiphy, NL80211_EXT_FEATURE_AQL)) {
3681 u32 airtime;
3682
3683 airtime = ieee80211_calc_expected_tx_airtime(hw, vif, txq->sta,
3684 skb->len);
3685 if (airtime) {
3686 airtime = ieee80211_info_set_tx_time_est(info, airtime);
3687 ieee80211_sta_update_pending_airtime(local, tx.sta,
3688 txq->ac,
3689 airtime,
3690 false);
3691 }
3692 }
3693
3694 return skb;
3695
3696out:
3697 spin_unlock_bh(&fq->lock);
3698
3699 return skb;
3700}
3701EXPORT_SYMBOL(ieee80211_tx_dequeue);
3702
3703struct ieee80211_txq *ieee80211_next_txq(struct ieee80211_hw *hw, u8 ac)
3704{
3705 struct ieee80211_local *local = hw_to_local(hw);
3706 struct ieee80211_txq *ret = NULL;
3707 struct txq_info *txqi = NULL, *head = NULL;
3708 bool found_eligible_txq = false;
3709
3710 spin_lock_bh(&local->active_txq_lock[ac]);
3711
3712 begin:
3713 txqi = list_first_entry_or_null(&local->active_txqs[ac],
3714 struct txq_info,
3715 schedule_order);
3716 if (!txqi)
3717 goto out;
3718
3719 if (txqi == head) {
3720 if (!found_eligible_txq)
3721 goto out;
3722 else
3723 found_eligible_txq = false;
3724 }
3725
3726 if (!head)
3727 head = txqi;
3728
3729 if (txqi->txq.sta) {
3730 struct sta_info *sta = container_of(txqi->txq.sta,
3731 struct sta_info, sta);
3732 bool aql_check = ieee80211_txq_airtime_check(hw, &txqi->txq);
3733 s64 deficit = sta->airtime[txqi->txq.ac].deficit;
3734
3735 if (aql_check)
3736 found_eligible_txq = true;
3737
3738 if (deficit < 0)
3739 sta->airtime[txqi->txq.ac].deficit +=
3740 sta->airtime_weight;
3741
3742 if (deficit < 0 || !aql_check) {
3743 list_move_tail(&txqi->schedule_order,
3744 &local->active_txqs[txqi->txq.ac]);
3745 goto begin;
3746 }
3747 }
3748
3749
3750 if (txqi->schedule_round == local->schedule_round[ac])
3751 goto out;
3752
3753 list_del_init(&txqi->schedule_order);
3754 txqi->schedule_round = local->schedule_round[ac];
3755 ret = &txqi->txq;
3756
3757out:
3758 spin_unlock_bh(&local->active_txq_lock[ac]);
3759 return ret;
3760}
3761EXPORT_SYMBOL(ieee80211_next_txq);
3762
3763void __ieee80211_schedule_txq(struct ieee80211_hw *hw,
3764 struct ieee80211_txq *txq,
3765 bool force)
3766{
3767 struct ieee80211_local *local = hw_to_local(hw);
3768 struct txq_info *txqi = to_txq_info(txq);
3769
3770 spin_lock_bh(&local->active_txq_lock[txq->ac]);
3771
3772 if (list_empty(&txqi->schedule_order) &&
3773 (force || !skb_queue_empty(&txqi->frags) ||
3774 txqi->tin.backlog_packets)) {
3775
3776
3777
3778
3779
3780
3781
3782 if (txqi->txq.sta &&
3783 wiphy_ext_feature_isset(local->hw.wiphy,
3784 NL80211_EXT_FEATURE_AIRTIME_FAIRNESS))
3785 list_add(&txqi->schedule_order,
3786 &local->active_txqs[txq->ac]);
3787 else
3788 list_add_tail(&txqi->schedule_order,
3789 &local->active_txqs[txq->ac]);
3790 }
3791
3792 spin_unlock_bh(&local->active_txq_lock[txq->ac]);
3793}
3794EXPORT_SYMBOL(__ieee80211_schedule_txq);
3795
3796bool ieee80211_txq_airtime_check(struct ieee80211_hw *hw,
3797 struct ieee80211_txq *txq)
3798{
3799 struct sta_info *sta;
3800 struct ieee80211_local *local = hw_to_local(hw);
3801
3802 if (!wiphy_ext_feature_isset(local->hw.wiphy, NL80211_EXT_FEATURE_AQL))
3803 return true;
3804
3805 if (!txq->sta)
3806 return true;
3807
3808 sta = container_of(txq->sta, struct sta_info, sta);
3809 if (atomic_read(&sta->airtime[txq->ac].aql_tx_pending) <
3810 sta->airtime[txq->ac].aql_limit_low)
3811 return true;
3812
3813 if (atomic_read(&local->aql_total_pending_airtime) <
3814 local->aql_threshold &&
3815 atomic_read(&sta->airtime[txq->ac].aql_tx_pending) <
3816 sta->airtime[txq->ac].aql_limit_high)
3817 return true;
3818
3819 return false;
3820}
3821EXPORT_SYMBOL(ieee80211_txq_airtime_check);
3822
3823bool ieee80211_txq_may_transmit(struct ieee80211_hw *hw,
3824 struct ieee80211_txq *txq)
3825{
3826 struct ieee80211_local *local = hw_to_local(hw);
3827 struct txq_info *iter, *tmp, *txqi = to_txq_info(txq);
3828 struct sta_info *sta;
3829 u8 ac = txq->ac;
3830
3831 spin_lock_bh(&local->active_txq_lock[ac]);
3832
3833 if (!txqi->txq.sta)
3834 goto out;
3835
3836 if (list_empty(&txqi->schedule_order))
3837 goto out;
3838
3839 list_for_each_entry_safe(iter, tmp, &local->active_txqs[ac],
3840 schedule_order) {
3841 if (iter == txqi)
3842 break;
3843
3844 if (!iter->txq.sta) {
3845 list_move_tail(&iter->schedule_order,
3846 &local->active_txqs[ac]);
3847 continue;
3848 }
3849 sta = container_of(iter->txq.sta, struct sta_info, sta);
3850 if (sta->airtime[ac].deficit < 0)
3851 sta->airtime[ac].deficit += sta->airtime_weight;
3852 list_move_tail(&iter->schedule_order, &local->active_txqs[ac]);
3853 }
3854
3855 sta = container_of(txqi->txq.sta, struct sta_info, sta);
3856 if (sta->airtime[ac].deficit >= 0)
3857 goto out;
3858
3859 sta->airtime[ac].deficit += sta->airtime_weight;
3860 list_move_tail(&txqi->schedule_order, &local->active_txqs[ac]);
3861 spin_unlock_bh(&local->active_txq_lock[ac]);
3862
3863 return false;
3864out:
3865 if (!list_empty(&txqi->schedule_order))
3866 list_del_init(&txqi->schedule_order);
3867 spin_unlock_bh(&local->active_txq_lock[ac]);
3868
3869 return true;
3870}
3871EXPORT_SYMBOL(ieee80211_txq_may_transmit);
3872
3873void ieee80211_txq_schedule_start(struct ieee80211_hw *hw, u8 ac)
3874{
3875 struct ieee80211_local *local = hw_to_local(hw);
3876
3877 spin_lock_bh(&local->active_txq_lock[ac]);
3878 local->schedule_round[ac]++;
3879 spin_unlock_bh(&local->active_txq_lock[ac]);
3880}
3881EXPORT_SYMBOL(ieee80211_txq_schedule_start);
3882
3883void __ieee80211_subif_start_xmit(struct sk_buff *skb,
3884 struct net_device *dev,
3885 u32 info_flags,
3886 u32 ctrl_flags)
3887{
3888 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3889 struct ieee80211_local *local = sdata->local;
3890 struct sta_info *sta;
3891 struct sk_buff *next;
3892
3893 if (unlikely(skb->len < ETH_HLEN)) {
3894 kfree_skb(skb);
3895 return;
3896 }
3897
3898 rcu_read_lock();
3899
3900 if (ieee80211_lookup_ra_sta(sdata, skb, &sta))
3901 goto out_free;
3902
3903 if (IS_ERR(sta))
3904 sta = NULL;
3905
3906 if (local->ops->wake_tx_queue) {
3907 u16 queue = __ieee80211_select_queue(sdata, sta, skb);
3908 skb_set_queue_mapping(skb, queue);
3909 }
3910
3911 if (sta) {
3912 struct ieee80211_fast_tx *fast_tx;
3913
3914 sk_pacing_shift_update(skb->sk, sdata->local->hw.tx_sk_pacing_shift);
3915
3916 fast_tx = rcu_dereference(sta->fast_tx);
3917
3918 if (fast_tx &&
3919 ieee80211_xmit_fast(sdata, sta, fast_tx, skb))
3920 goto out;
3921 }
3922
3923 if (skb_is_gso(skb)) {
3924 struct sk_buff *segs;
3925
3926 segs = skb_gso_segment(skb, 0);
3927 if (IS_ERR(segs)) {
3928 goto out_free;
3929 } else if (segs) {
3930 consume_skb(skb);
3931 skb = segs;
3932 }
3933 } else {
3934
3935 if (skb_linearize(skb)) {
3936 kfree_skb(skb);
3937 goto out;
3938 }
3939
3940
3941
3942
3943
3944 if (skb->ip_summed == CHECKSUM_PARTIAL) {
3945 skb_set_transport_header(skb,
3946 skb_checksum_start_offset(skb));
3947 if (skb_checksum_help(skb))
3948 goto out_free;
3949 }
3950 }
3951
3952 next = skb;
3953 while (next) {
3954 skb = next;
3955 next = skb->next;
3956
3957 skb->prev = NULL;
3958 skb->next = NULL;
3959
3960 skb = ieee80211_build_hdr(sdata, skb, info_flags,
3961 sta, ctrl_flags);
3962 if (IS_ERR(skb))
3963 goto out;
3964
3965 ieee80211_tx_stats(dev, skb->len);
3966
3967 ieee80211_xmit(sdata, sta, skb, 0);
3968 }
3969 goto out;
3970 out_free:
3971 kfree_skb(skb);
3972 out:
3973 rcu_read_unlock();
3974}
3975
3976static int ieee80211_change_da(struct sk_buff *skb, struct sta_info *sta)
3977{
3978 struct ethhdr *eth;
3979 int err;
3980
3981 err = skb_ensure_writable(skb, ETH_HLEN);
3982 if (unlikely(err))
3983 return err;
3984
3985 eth = (void *)skb->data;
3986 ether_addr_copy(eth->h_dest, sta->sta.addr);
3987
3988 return 0;
3989}
3990
3991static bool ieee80211_multicast_to_unicast(struct sk_buff *skb,
3992 struct net_device *dev)
3993{
3994 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3995 const struct ethhdr *eth = (void *)skb->data;
3996 const struct vlan_ethhdr *ethvlan = (void *)skb->data;
3997 __be16 ethertype;
3998
3999 if (likely(!is_multicast_ether_addr(eth->h_dest)))
4000 return false;
4001
4002 switch (sdata->vif.type) {
4003 case NL80211_IFTYPE_AP_VLAN:
4004 if (sdata->u.vlan.sta)
4005 return false;
4006 if (sdata->wdev.use_4addr)
4007 return false;
4008
4009 case NL80211_IFTYPE_AP:
4010
4011 if (!sdata->bss->multicast_to_unicast)
4012 return false;
4013 break;
4014 default:
4015 return false;
4016 }
4017
4018
4019 ethertype = eth->h_proto;
4020 if (ethertype == htons(ETH_P_8021Q) && skb->len >= VLAN_ETH_HLEN)
4021 ethertype = ethvlan->h_vlan_encapsulated_proto;
4022 switch (ethertype) {
4023 case htons(ETH_P_ARP):
4024 case htons(ETH_P_IP):
4025 case htons(ETH_P_IPV6):
4026 break;
4027 default:
4028 return false;
4029 }
4030
4031 return true;
4032}
4033
4034static void
4035ieee80211_convert_to_unicast(struct sk_buff *skb, struct net_device *dev,
4036 struct sk_buff_head *queue)
4037{
4038 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
4039 struct ieee80211_local *local = sdata->local;
4040 const struct ethhdr *eth = (struct ethhdr *)skb->data;
4041 struct sta_info *sta, *first = NULL;
4042 struct sk_buff *cloned_skb;
4043
4044 rcu_read_lock();
4045
4046 list_for_each_entry_rcu(sta, &local->sta_list, list) {
4047 if (sdata != sta->sdata)
4048
4049 continue;
4050 if (unlikely(ether_addr_equal(eth->h_source, sta->sta.addr)))
4051
4052 continue;
4053 if (!first) {
4054 first = sta;
4055 continue;
4056 }
4057 cloned_skb = skb_clone(skb, GFP_ATOMIC);
4058 if (!cloned_skb)
4059 goto multicast;
4060 if (unlikely(ieee80211_change_da(cloned_skb, sta))) {
4061 dev_kfree_skb(cloned_skb);
4062 goto multicast;
4063 }
4064 __skb_queue_tail(queue, cloned_skb);
4065 }
4066
4067 if (likely(first)) {
4068 if (unlikely(ieee80211_change_da(skb, first)))
4069 goto multicast;
4070 __skb_queue_tail(queue, skb);
4071 } else {
4072
4073 kfree_skb(skb);
4074 skb = NULL;
4075 }
4076
4077 goto out;
4078multicast:
4079 __skb_queue_purge(queue);
4080 __skb_queue_tail(queue, skb);
4081out:
4082 rcu_read_unlock();
4083}
4084
4085
4086
4087
4088
4089
4090
4091
4092netdev_tx_t ieee80211_subif_start_xmit(struct sk_buff *skb,
4093 struct net_device *dev)
4094{
4095 if (unlikely(ieee80211_multicast_to_unicast(skb, dev))) {
4096 struct sk_buff_head queue;
4097
4098 __skb_queue_head_init(&queue);
4099 ieee80211_convert_to_unicast(skb, dev, &queue);
4100 while ((skb = __skb_dequeue(&queue)))
4101 __ieee80211_subif_start_xmit(skb, dev, 0, 0);
4102 } else {
4103 __ieee80211_subif_start_xmit(skb, dev, 0, 0);
4104 }
4105
4106 return NETDEV_TX_OK;
4107}
4108
4109struct sk_buff *
4110ieee80211_build_data_template(struct ieee80211_sub_if_data *sdata,
4111 struct sk_buff *skb, u32 info_flags)
4112{
4113 struct ieee80211_hdr *hdr;
4114 struct ieee80211_tx_data tx = {
4115 .local = sdata->local,
4116 .sdata = sdata,
4117 };
4118 struct sta_info *sta;
4119
4120 rcu_read_lock();
4121
4122 if (ieee80211_lookup_ra_sta(sdata, skb, &sta)) {
4123 kfree_skb(skb);
4124 skb = ERR_PTR(-EINVAL);
4125 goto out;
4126 }
4127
4128 skb = ieee80211_build_hdr(sdata, skb, info_flags, sta, 0);
4129 if (IS_ERR(skb))
4130 goto out;
4131
4132 hdr = (void *)skb->data;
4133 tx.sta = sta_info_get(sdata, hdr->addr1);
4134 tx.skb = skb;
4135
4136 if (ieee80211_tx_h_select_key(&tx) != TX_CONTINUE) {
4137 rcu_read_unlock();
4138 kfree_skb(skb);
4139 return ERR_PTR(-EINVAL);
4140 }
4141
4142out:
4143 rcu_read_unlock();
4144 return skb;
4145}
4146
4147
4148
4149
4150
4151void ieee80211_clear_tx_pending(struct ieee80211_local *local)
4152{
4153 struct sk_buff *skb;
4154 int i;
4155
4156 for (i = 0; i < local->hw.queues; i++) {
4157 while ((skb = skb_dequeue(&local->pending[i])) != NULL)
4158 ieee80211_free_txskb(&local->hw, skb);
4159 }
4160}
4161
4162
4163
4164
4165
4166
4167static bool ieee80211_tx_pending_skb(struct ieee80211_local *local,
4168 struct sk_buff *skb)
4169{
4170 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
4171 struct ieee80211_sub_if_data *sdata;
4172 struct sta_info *sta;
4173 struct ieee80211_hdr *hdr;
4174 bool result;
4175 struct ieee80211_chanctx_conf *chanctx_conf;
4176
4177 sdata = vif_to_sdata(info->control.vif);
4178
4179 if (info->flags & IEEE80211_TX_INTFL_NEED_TXPROCESSING) {
4180 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
4181 if (unlikely(!chanctx_conf)) {
4182 dev_kfree_skb(skb);
4183 return true;
4184 }
4185 info->band = chanctx_conf->def.chan->band;
4186 result = ieee80211_tx(sdata, NULL, skb, true, 0);
4187 } else {
4188 struct sk_buff_head skbs;
4189
4190 __skb_queue_head_init(&skbs);
4191 __skb_queue_tail(&skbs, skb);
4192
4193 hdr = (struct ieee80211_hdr *)skb->data;
4194 sta = sta_info_get(sdata, hdr->addr1);
4195
4196 result = __ieee80211_tx(local, &skbs, skb->len, sta, true);
4197 }
4198
4199 return result;
4200}
4201
4202
4203
4204
4205void ieee80211_tx_pending(unsigned long data)
4206{
4207 struct ieee80211_local *local = (struct ieee80211_local *)data;
4208 unsigned long flags;
4209 int i;
4210 bool txok;
4211
4212 rcu_read_lock();
4213
4214 spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
4215 for (i = 0; i < local->hw.queues; i++) {
4216
4217
4218
4219
4220 if (local->queue_stop_reasons[i] ||
4221 skb_queue_empty(&local->pending[i]))
4222 continue;
4223
4224 while (!skb_queue_empty(&local->pending[i])) {
4225 struct sk_buff *skb = __skb_dequeue(&local->pending[i]);
4226 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
4227
4228 if (WARN_ON(!info->control.vif)) {
4229 ieee80211_free_txskb(&local->hw, skb);
4230 continue;
4231 }
4232
4233 spin_unlock_irqrestore(&local->queue_stop_reason_lock,
4234 flags);
4235
4236 txok = ieee80211_tx_pending_skb(local, skb);
4237 spin_lock_irqsave(&local->queue_stop_reason_lock,
4238 flags);
4239 if (!txok)
4240 break;
4241 }
4242
4243 if (skb_queue_empty(&local->pending[i]))
4244 ieee80211_propagate_queue_wake(local, i);
4245 }
4246 spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
4247
4248 rcu_read_unlock();
4249}
4250
4251
4252
4253static void __ieee80211_beacon_add_tim(struct ieee80211_sub_if_data *sdata,
4254 struct ps_data *ps, struct sk_buff *skb,
4255 bool is_template)
4256{
4257 u8 *pos, *tim;
4258 int aid0 = 0;
4259 int i, have_bits = 0, n1, n2;
4260
4261
4262
4263 if (atomic_read(&ps->num_sta_ps) > 0)
4264
4265
4266 have_bits = !bitmap_empty((unsigned long *)ps->tim,
4267 IEEE80211_MAX_AID+1);
4268 if (!is_template) {
4269 if (ps->dtim_count == 0)
4270 ps->dtim_count = sdata->vif.bss_conf.dtim_period - 1;
4271 else
4272 ps->dtim_count--;
4273 }
4274
4275 tim = pos = skb_put(skb, 6);
4276 *pos++ = WLAN_EID_TIM;
4277 *pos++ = 4;
4278 *pos++ = ps->dtim_count;
4279 *pos++ = sdata->vif.bss_conf.dtim_period;
4280
4281 if (ps->dtim_count == 0 && !skb_queue_empty(&ps->bc_buf))
4282 aid0 = 1;
4283
4284 ps->dtim_bc_mc = aid0 == 1;
4285
4286 if (have_bits) {
4287
4288
4289
4290 n1 = 0;
4291 for (i = 0; i < IEEE80211_MAX_TIM_LEN; i++) {
4292 if (ps->tim[i]) {
4293 n1 = i & 0xfe;
4294 break;
4295 }
4296 }
4297 n2 = n1;
4298 for (i = IEEE80211_MAX_TIM_LEN - 1; i >= n1; i--) {
4299 if (ps->tim[i]) {
4300 n2 = i;
4301 break;
4302 }
4303 }
4304
4305
4306 *pos++ = n1 | aid0;
4307
4308 skb_put(skb, n2 - n1);
4309 memcpy(pos, ps->tim + n1, n2 - n1 + 1);
4310
4311 tim[1] = n2 - n1 + 4;
4312 } else {
4313 *pos++ = aid0;
4314 *pos++ = 0;
4315 }
4316}
4317
4318static int ieee80211_beacon_add_tim(struct ieee80211_sub_if_data *sdata,
4319 struct ps_data *ps, struct sk_buff *skb,
4320 bool is_template)
4321{
4322 struct ieee80211_local *local = sdata->local;
4323
4324
4325
4326
4327
4328
4329
4330
4331 if (local->tim_in_locked_section) {
4332 __ieee80211_beacon_add_tim(sdata, ps, skb, is_template);
4333 } else {
4334 spin_lock_bh(&local->tim_lock);
4335 __ieee80211_beacon_add_tim(sdata, ps, skb, is_template);
4336 spin_unlock_bh(&local->tim_lock);
4337 }
4338
4339 return 0;
4340}
4341
4342static void ieee80211_set_csa(struct ieee80211_sub_if_data *sdata,
4343 struct beacon_data *beacon)
4344{
4345 struct probe_resp *resp;
4346 u8 *beacon_data;
4347 size_t beacon_data_len;
4348 int i;
4349 u8 count = beacon->csa_current_counter;
4350
4351 switch (sdata->vif.type) {
4352 case NL80211_IFTYPE_AP:
4353 beacon_data = beacon->tail;
4354 beacon_data_len = beacon->tail_len;
4355 break;
4356 case NL80211_IFTYPE_ADHOC:
4357 beacon_data = beacon->head;
4358 beacon_data_len = beacon->head_len;
4359 break;
4360 case NL80211_IFTYPE_MESH_POINT:
4361 beacon_data = beacon->head;
4362 beacon_data_len = beacon->head_len;
4363 break;
4364 default:
4365 return;
4366 }
4367
4368 rcu_read_lock();
4369 for (i = 0; i < IEEE80211_MAX_CSA_COUNTERS_NUM; ++i) {
4370 resp = rcu_dereference(sdata->u.ap.probe_resp);
4371
4372 if (beacon->csa_counter_offsets[i]) {
4373 if (WARN_ON_ONCE(beacon->csa_counter_offsets[i] >=
4374 beacon_data_len)) {
4375 rcu_read_unlock();
4376 return;
4377 }
4378
4379 beacon_data[beacon->csa_counter_offsets[i]] = count;
4380 }
4381
4382 if (sdata->vif.type == NL80211_IFTYPE_AP && resp)
4383 resp->data[resp->csa_counter_offsets[i]] = count;
4384 }
4385 rcu_read_unlock();
4386}
4387
4388static u8 __ieee80211_csa_update_counter(struct beacon_data *beacon)
4389{
4390 beacon->csa_current_counter--;
4391
4392
4393 WARN_ON_ONCE(!beacon->csa_current_counter);
4394
4395 return beacon->csa_current_counter;
4396}
4397
4398u8 ieee80211_csa_update_counter(struct ieee80211_vif *vif)
4399{
4400 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
4401 struct beacon_data *beacon = NULL;
4402 u8 count = 0;
4403
4404 rcu_read_lock();
4405
4406 if (sdata->vif.type == NL80211_IFTYPE_AP)
4407 beacon = rcu_dereference(sdata->u.ap.beacon);
4408 else if (sdata->vif.type == NL80211_IFTYPE_ADHOC)
4409 beacon = rcu_dereference(sdata->u.ibss.presp);
4410 else if (ieee80211_vif_is_mesh(&sdata->vif))
4411 beacon = rcu_dereference(sdata->u.mesh.beacon);
4412
4413 if (!beacon)
4414 goto unlock;
4415
4416 count = __ieee80211_csa_update_counter(beacon);
4417
4418unlock:
4419 rcu_read_unlock();
4420 return count;
4421}
4422EXPORT_SYMBOL(ieee80211_csa_update_counter);
4423
4424void ieee80211_csa_set_counter(struct ieee80211_vif *vif, u8 counter)
4425{
4426 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
4427 struct beacon_data *beacon = NULL;
4428
4429 rcu_read_lock();
4430
4431 if (sdata->vif.type == NL80211_IFTYPE_AP)
4432 beacon = rcu_dereference(sdata->u.ap.beacon);
4433 else if (sdata->vif.type == NL80211_IFTYPE_ADHOC)
4434 beacon = rcu_dereference(sdata->u.ibss.presp);
4435 else if (ieee80211_vif_is_mesh(&sdata->vif))
4436 beacon = rcu_dereference(sdata->u.mesh.beacon);
4437
4438 if (!beacon)
4439 goto unlock;
4440
4441 if (counter < beacon->csa_current_counter)
4442 beacon->csa_current_counter = counter;
4443
4444unlock:
4445 rcu_read_unlock();
4446}
4447EXPORT_SYMBOL(ieee80211_csa_set_counter);
4448
4449bool ieee80211_csa_is_complete(struct ieee80211_vif *vif)
4450{
4451 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
4452 struct beacon_data *beacon = NULL;
4453 u8 *beacon_data;
4454 size_t beacon_data_len;
4455 int ret = false;
4456
4457 if (!ieee80211_sdata_running(sdata))
4458 return false;
4459
4460 rcu_read_lock();
4461 if (vif->type == NL80211_IFTYPE_AP) {
4462 struct ieee80211_if_ap *ap = &sdata->u.ap;
4463
4464 beacon = rcu_dereference(ap->beacon);
4465 if (WARN_ON(!beacon || !beacon->tail))
4466 goto out;
4467 beacon_data = beacon->tail;
4468 beacon_data_len = beacon->tail_len;
4469 } else if (vif->type == NL80211_IFTYPE_ADHOC) {
4470 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
4471
4472 beacon = rcu_dereference(ifibss->presp);
4473 if (!beacon)
4474 goto out;
4475
4476 beacon_data = beacon->head;
4477 beacon_data_len = beacon->head_len;
4478 } else if (vif->type == NL80211_IFTYPE_MESH_POINT) {
4479 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
4480
4481 beacon = rcu_dereference(ifmsh->beacon);
4482 if (!beacon)
4483 goto out;
4484
4485 beacon_data = beacon->head;
4486 beacon_data_len = beacon->head_len;
4487 } else {
4488 WARN_ON(1);
4489 goto out;
4490 }
4491
4492 if (!beacon->csa_counter_offsets[0])
4493 goto out;
4494
4495 if (WARN_ON_ONCE(beacon->csa_counter_offsets[0] > beacon_data_len))
4496 goto out;
4497
4498 if (beacon_data[beacon->csa_counter_offsets[0]] == 1)
4499 ret = true;
4500 out:
4501 rcu_read_unlock();
4502
4503 return ret;
4504}
4505EXPORT_SYMBOL(ieee80211_csa_is_complete);
4506
4507static struct sk_buff *
4508__ieee80211_beacon_get(struct ieee80211_hw *hw,
4509 struct ieee80211_vif *vif,
4510 struct ieee80211_mutable_offsets *offs,
4511 bool is_template)
4512{
4513 struct ieee80211_local *local = hw_to_local(hw);
4514 struct beacon_data *beacon = NULL;
4515 struct sk_buff *skb = NULL;
4516 struct ieee80211_tx_info *info;
4517 struct ieee80211_sub_if_data *sdata = NULL;
4518 enum nl80211_band band;
4519 struct ieee80211_tx_rate_control txrc;
4520 struct ieee80211_chanctx_conf *chanctx_conf;
4521 int csa_off_base = 0;
4522
4523 rcu_read_lock();
4524
4525 sdata = vif_to_sdata(vif);
4526 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
4527
4528 if (!ieee80211_sdata_running(sdata) || !chanctx_conf)
4529 goto out;
4530
4531 if (offs)
4532 memset(offs, 0, sizeof(*offs));
4533
4534 if (sdata->vif.type == NL80211_IFTYPE_AP) {
4535 struct ieee80211_if_ap *ap = &sdata->u.ap;
4536
4537 beacon = rcu_dereference(ap->beacon);
4538 if (beacon) {
4539 if (beacon->csa_counter_offsets[0]) {
4540 if (!is_template)
4541 __ieee80211_csa_update_counter(beacon);
4542
4543 ieee80211_set_csa(sdata, beacon);
4544 }
4545
4546
4547
4548
4549
4550 skb = dev_alloc_skb(local->tx_headroom +
4551 beacon->head_len +
4552 beacon->tail_len + 256 +
4553 local->hw.extra_beacon_tailroom);
4554 if (!skb)
4555 goto out;
4556
4557 skb_reserve(skb, local->tx_headroom);
4558 skb_put_data(skb, beacon->head, beacon->head_len);
4559
4560 ieee80211_beacon_add_tim(sdata, &ap->ps, skb,
4561 is_template);
4562
4563 if (offs) {
4564 offs->tim_offset = beacon->head_len;
4565 offs->tim_length = skb->len - beacon->head_len;
4566
4567
4568 csa_off_base = skb->len;
4569 }
4570
4571 if (beacon->tail)
4572 skb_put_data(skb, beacon->tail,
4573 beacon->tail_len);
4574 } else
4575 goto out;
4576 } else if (sdata->vif.type == NL80211_IFTYPE_ADHOC) {
4577 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
4578 struct ieee80211_hdr *hdr;
4579
4580 beacon = rcu_dereference(ifibss->presp);
4581 if (!beacon)
4582 goto out;
4583
4584 if (beacon->csa_counter_offsets[0]) {
4585 if (!is_template)
4586 __ieee80211_csa_update_counter(beacon);
4587
4588 ieee80211_set_csa(sdata, beacon);
4589 }
4590
4591 skb = dev_alloc_skb(local->tx_headroom + beacon->head_len +
4592 local->hw.extra_beacon_tailroom);
4593 if (!skb)
4594 goto out;
4595 skb_reserve(skb, local->tx_headroom);
4596 skb_put_data(skb, beacon->head, beacon->head_len);
4597
4598 hdr = (struct ieee80211_hdr *) skb->data;
4599 hdr->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
4600 IEEE80211_STYPE_BEACON);
4601 } else if (ieee80211_vif_is_mesh(&sdata->vif)) {
4602 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
4603
4604 beacon = rcu_dereference(ifmsh->beacon);
4605 if (!beacon)
4606 goto out;
4607
4608 if (beacon->csa_counter_offsets[0]) {
4609 if (!is_template)
4610
4611
4612
4613
4614
4615 __ieee80211_csa_update_counter(beacon);
4616
4617 ieee80211_set_csa(sdata, beacon);
4618 }
4619
4620 if (ifmsh->sync_ops)
4621 ifmsh->sync_ops->adjust_tsf(sdata, beacon);
4622
4623 skb = dev_alloc_skb(local->tx_headroom +
4624 beacon->head_len +
4625 256 +
4626 beacon->tail_len +
4627 local->hw.extra_beacon_tailroom);
4628 if (!skb)
4629 goto out;
4630 skb_reserve(skb, local->tx_headroom);
4631 skb_put_data(skb, beacon->head, beacon->head_len);
4632 ieee80211_beacon_add_tim(sdata, &ifmsh->ps, skb, is_template);
4633
4634 if (offs) {
4635 offs->tim_offset = beacon->head_len;
4636 offs->tim_length = skb->len - beacon->head_len;
4637 }
4638
4639 skb_put_data(skb, beacon->tail, beacon->tail_len);
4640 } else {
4641 WARN_ON(1);
4642 goto out;
4643 }
4644
4645
4646 if (offs && beacon) {
4647 int i;
4648
4649 for (i = 0; i < IEEE80211_MAX_CSA_COUNTERS_NUM; i++) {
4650 u16 csa_off = beacon->csa_counter_offsets[i];
4651
4652 if (!csa_off)
4653 continue;
4654
4655 offs->csa_counter_offs[i] = csa_off_base + csa_off;
4656 }
4657 }
4658
4659 band = chanctx_conf->def.chan->band;
4660
4661 info = IEEE80211_SKB_CB(skb);
4662
4663 info->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
4664 info->flags |= IEEE80211_TX_CTL_NO_ACK;
4665 info->band = band;
4666
4667 memset(&txrc, 0, sizeof(txrc));
4668 txrc.hw = hw;
4669 txrc.sband = local->hw.wiphy->bands[band];
4670 txrc.bss_conf = &sdata->vif.bss_conf;
4671 txrc.skb = skb;
4672 txrc.reported_rate.idx = -1;
4673 txrc.rate_idx_mask = sdata->rc_rateidx_mask[band];
4674 txrc.bss = true;
4675 rate_control_get_rate(sdata, NULL, &txrc);
4676
4677 info->control.vif = vif;
4678
4679 info->flags |= IEEE80211_TX_CTL_CLEAR_PS_FILT |
4680 IEEE80211_TX_CTL_ASSIGN_SEQ |
4681 IEEE80211_TX_CTL_FIRST_FRAGMENT;
4682 out:
4683 rcu_read_unlock();
4684 return skb;
4685
4686}
4687
4688struct sk_buff *
4689ieee80211_beacon_get_template(struct ieee80211_hw *hw,
4690 struct ieee80211_vif *vif,
4691 struct ieee80211_mutable_offsets *offs)
4692{
4693 return __ieee80211_beacon_get(hw, vif, offs, true);
4694}
4695EXPORT_SYMBOL(ieee80211_beacon_get_template);
4696
4697struct sk_buff *ieee80211_beacon_get_tim(struct ieee80211_hw *hw,
4698 struct ieee80211_vif *vif,
4699 u16 *tim_offset, u16 *tim_length)
4700{
4701 struct ieee80211_mutable_offsets offs = {};
4702 struct sk_buff *bcn = __ieee80211_beacon_get(hw, vif, &offs, false);
4703 struct sk_buff *copy;
4704 struct ieee80211_supported_band *sband;
4705 int shift;
4706
4707 if (!bcn)
4708 return bcn;
4709
4710 if (tim_offset)
4711 *tim_offset = offs.tim_offset;
4712
4713 if (tim_length)
4714 *tim_length = offs.tim_length;
4715
4716 if (ieee80211_hw_check(hw, BEACON_TX_STATUS) ||
4717 !hw_to_local(hw)->monitors)
4718 return bcn;
4719
4720
4721 copy = skb_copy(bcn, GFP_ATOMIC);
4722 if (!copy)
4723 return bcn;
4724
4725 shift = ieee80211_vif_get_shift(vif);
4726 sband = ieee80211_get_sband(vif_to_sdata(vif));
4727 if (!sband)
4728 return bcn;
4729
4730 ieee80211_tx_monitor(hw_to_local(hw), copy, sband, 1, shift, false,
4731 NULL);
4732
4733 return bcn;
4734}
4735EXPORT_SYMBOL(ieee80211_beacon_get_tim);
4736
4737struct sk_buff *ieee80211_proberesp_get(struct ieee80211_hw *hw,
4738 struct ieee80211_vif *vif)
4739{
4740 struct ieee80211_if_ap *ap = NULL;
4741 struct sk_buff *skb = NULL;
4742 struct probe_resp *presp = NULL;
4743 struct ieee80211_hdr *hdr;
4744 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
4745
4746 if (sdata->vif.type != NL80211_IFTYPE_AP)
4747 return NULL;
4748
4749 rcu_read_lock();
4750
4751 ap = &sdata->u.ap;
4752 presp = rcu_dereference(ap->probe_resp);
4753 if (!presp)
4754 goto out;
4755
4756 skb = dev_alloc_skb(presp->len);
4757 if (!skb)
4758 goto out;
4759
4760 skb_put_data(skb, presp->data, presp->len);
4761
4762 hdr = (struct ieee80211_hdr *) skb->data;
4763 memset(hdr->addr1, 0, sizeof(hdr->addr1));
4764
4765out:
4766 rcu_read_unlock();
4767 return skb;
4768}
4769EXPORT_SYMBOL(ieee80211_proberesp_get);
4770
4771struct sk_buff *ieee80211_pspoll_get(struct ieee80211_hw *hw,
4772 struct ieee80211_vif *vif)
4773{
4774 struct ieee80211_sub_if_data *sdata;
4775 struct ieee80211_if_managed *ifmgd;
4776 struct ieee80211_pspoll *pspoll;
4777 struct ieee80211_local *local;
4778 struct sk_buff *skb;
4779
4780 if (WARN_ON(vif->type != NL80211_IFTYPE_STATION))
4781 return NULL;
4782
4783 sdata = vif_to_sdata(vif);
4784 ifmgd = &sdata->u.mgd;
4785 local = sdata->local;
4786
4787 skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*pspoll));
4788 if (!skb)
4789 return NULL;
4790
4791 skb_reserve(skb, local->hw.extra_tx_headroom);
4792
4793 pspoll = skb_put_zero(skb, sizeof(*pspoll));
4794 pspoll->frame_control = cpu_to_le16(IEEE80211_FTYPE_CTL |
4795 IEEE80211_STYPE_PSPOLL);
4796 pspoll->aid = cpu_to_le16(ifmgd->aid);
4797
4798
4799 pspoll->aid |= cpu_to_le16(1 << 15 | 1 << 14);
4800
4801 memcpy(pspoll->bssid, ifmgd->bssid, ETH_ALEN);
4802 memcpy(pspoll->ta, vif->addr, ETH_ALEN);
4803
4804 return skb;
4805}
4806EXPORT_SYMBOL(ieee80211_pspoll_get);
4807
4808struct sk_buff *ieee80211_nullfunc_get(struct ieee80211_hw *hw,
4809 struct ieee80211_vif *vif,
4810 bool qos_ok)
4811{
4812 struct ieee80211_hdr_3addr *nullfunc;
4813 struct ieee80211_sub_if_data *sdata;
4814 struct ieee80211_if_managed *ifmgd;
4815 struct ieee80211_local *local;
4816 struct sk_buff *skb;
4817 bool qos = false;
4818
4819 if (WARN_ON(vif->type != NL80211_IFTYPE_STATION))
4820 return NULL;
4821
4822 sdata = vif_to_sdata(vif);
4823 ifmgd = &sdata->u.mgd;
4824 local = sdata->local;
4825
4826 if (qos_ok) {
4827 struct sta_info *sta;
4828
4829 rcu_read_lock();
4830 sta = sta_info_get(sdata, ifmgd->bssid);
4831 qos = sta && sta->sta.wme;
4832 rcu_read_unlock();
4833 }
4834
4835 skb = dev_alloc_skb(local->hw.extra_tx_headroom +
4836 sizeof(*nullfunc) + 2);
4837 if (!skb)
4838 return NULL;
4839
4840 skb_reserve(skb, local->hw.extra_tx_headroom);
4841
4842 nullfunc = skb_put_zero(skb, sizeof(*nullfunc));
4843 nullfunc->frame_control = cpu_to_le16(IEEE80211_FTYPE_DATA |
4844 IEEE80211_STYPE_NULLFUNC |
4845 IEEE80211_FCTL_TODS);
4846 if (qos) {
4847 __le16 qoshdr = cpu_to_le16(7);
4848
4849 BUILD_BUG_ON((IEEE80211_STYPE_QOS_NULLFUNC |
4850 IEEE80211_STYPE_NULLFUNC) !=
4851 IEEE80211_STYPE_QOS_NULLFUNC);
4852 nullfunc->frame_control |=
4853 cpu_to_le16(IEEE80211_STYPE_QOS_NULLFUNC);
4854 skb->priority = 7;
4855 skb_set_queue_mapping(skb, IEEE80211_AC_VO);
4856 skb_put_data(skb, &qoshdr, sizeof(qoshdr));
4857 }
4858
4859 memcpy(nullfunc->addr1, ifmgd->bssid, ETH_ALEN);
4860 memcpy(nullfunc->addr2, vif->addr, ETH_ALEN);
4861 memcpy(nullfunc->addr3, ifmgd->bssid, ETH_ALEN);
4862
4863 return skb;
4864}
4865EXPORT_SYMBOL(ieee80211_nullfunc_get);
4866
4867struct sk_buff *ieee80211_probereq_get(struct ieee80211_hw *hw,
4868 const u8 *src_addr,
4869 const u8 *ssid, size_t ssid_len,
4870 size_t tailroom)
4871{
4872 struct ieee80211_local *local = hw_to_local(hw);
4873 struct ieee80211_hdr_3addr *hdr;
4874 struct sk_buff *skb;
4875 size_t ie_ssid_len;
4876 u8 *pos;
4877
4878 ie_ssid_len = 2 + ssid_len;
4879
4880 skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*hdr) +
4881 ie_ssid_len + tailroom);
4882 if (!skb)
4883 return NULL;
4884
4885 skb_reserve(skb, local->hw.extra_tx_headroom);
4886
4887 hdr = skb_put_zero(skb, sizeof(*hdr));
4888 hdr->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
4889 IEEE80211_STYPE_PROBE_REQ);
4890 eth_broadcast_addr(hdr->addr1);
4891 memcpy(hdr->addr2, src_addr, ETH_ALEN);
4892 eth_broadcast_addr(hdr->addr3);
4893
4894 pos = skb_put(skb, ie_ssid_len);
4895 *pos++ = WLAN_EID_SSID;
4896 *pos++ = ssid_len;
4897 if (ssid_len)
4898 memcpy(pos, ssid, ssid_len);
4899 pos += ssid_len;
4900
4901 return skb;
4902}
4903EXPORT_SYMBOL(ieee80211_probereq_get);
4904
4905void ieee80211_rts_get(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
4906 const void *frame, size_t frame_len,
4907 const struct ieee80211_tx_info *frame_txctl,
4908 struct ieee80211_rts *rts)
4909{
4910 const struct ieee80211_hdr *hdr = frame;
4911
4912 rts->frame_control =
4913 cpu_to_le16(IEEE80211_FTYPE_CTL | IEEE80211_STYPE_RTS);
4914 rts->duration = ieee80211_rts_duration(hw, vif, frame_len,
4915 frame_txctl);
4916 memcpy(rts->ra, hdr->addr1, sizeof(rts->ra));
4917 memcpy(rts->ta, hdr->addr2, sizeof(rts->ta));
4918}
4919EXPORT_SYMBOL(ieee80211_rts_get);
4920
4921void ieee80211_ctstoself_get(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
4922 const void *frame, size_t frame_len,
4923 const struct ieee80211_tx_info *frame_txctl,
4924 struct ieee80211_cts *cts)
4925{
4926 const struct ieee80211_hdr *hdr = frame;
4927
4928 cts->frame_control =
4929 cpu_to_le16(IEEE80211_FTYPE_CTL | IEEE80211_STYPE_CTS);
4930 cts->duration = ieee80211_ctstoself_duration(hw, vif,
4931 frame_len, frame_txctl);
4932 memcpy(cts->ra, hdr->addr1, sizeof(cts->ra));
4933}
4934EXPORT_SYMBOL(ieee80211_ctstoself_get);
4935
4936struct sk_buff *
4937ieee80211_get_buffered_bc(struct ieee80211_hw *hw,
4938 struct ieee80211_vif *vif)
4939{
4940 struct ieee80211_local *local = hw_to_local(hw);
4941 struct sk_buff *skb = NULL;
4942 struct ieee80211_tx_data tx;
4943 struct ieee80211_sub_if_data *sdata;
4944 struct ps_data *ps;
4945 struct ieee80211_tx_info *info;
4946 struct ieee80211_chanctx_conf *chanctx_conf;
4947
4948 sdata = vif_to_sdata(vif);
4949
4950 rcu_read_lock();
4951 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
4952
4953 if (!chanctx_conf)
4954 goto out;
4955
4956 if (sdata->vif.type == NL80211_IFTYPE_AP) {
4957 struct beacon_data *beacon =
4958 rcu_dereference(sdata->u.ap.beacon);
4959
4960 if (!beacon || !beacon->head)
4961 goto out;
4962
4963 ps = &sdata->u.ap.ps;
4964 } else if (ieee80211_vif_is_mesh(&sdata->vif)) {
4965 ps = &sdata->u.mesh.ps;
4966 } else {
4967 goto out;
4968 }
4969
4970 if (ps->dtim_count != 0 || !ps->dtim_bc_mc)
4971 goto out;
4972
4973 while (1) {
4974 skb = skb_dequeue(&ps->bc_buf);
4975 if (!skb)
4976 goto out;
4977 local->total_ps_buffered--;
4978
4979 if (!skb_queue_empty(&ps->bc_buf) && skb->len >= 2) {
4980 struct ieee80211_hdr *hdr =
4981 (struct ieee80211_hdr *) skb->data;
4982
4983
4984
4985 hdr->frame_control |=
4986 cpu_to_le16(IEEE80211_FCTL_MOREDATA);
4987 }
4988
4989 if (sdata->vif.type == NL80211_IFTYPE_AP)
4990 sdata = IEEE80211_DEV_TO_SUB_IF(skb->dev);
4991 if (!ieee80211_tx_prepare(sdata, &tx, NULL, skb))
4992 break;
4993 ieee80211_free_txskb(hw, skb);
4994 }
4995
4996 info = IEEE80211_SKB_CB(skb);
4997
4998 tx.flags |= IEEE80211_TX_PS_BUFFERED;
4999 info->band = chanctx_conf->def.chan->band;
5000
5001 if (invoke_tx_handlers(&tx))
5002 skb = NULL;
5003 out:
5004 rcu_read_unlock();
5005
5006 return skb;
5007}
5008EXPORT_SYMBOL(ieee80211_get_buffered_bc);
5009
5010int ieee80211_reserve_tid(struct ieee80211_sta *pubsta, u8 tid)
5011{
5012 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
5013 struct ieee80211_sub_if_data *sdata = sta->sdata;
5014 struct ieee80211_local *local = sdata->local;
5015 int ret;
5016 u32 queues;
5017
5018 lockdep_assert_held(&local->sta_mtx);
5019
5020
5021 switch (sdata->vif.type) {
5022 case NL80211_IFTYPE_STATION:
5023 case NL80211_IFTYPE_AP:
5024 case NL80211_IFTYPE_AP_VLAN:
5025 break;
5026 default:
5027 WARN_ON(1);
5028 return -EINVAL;
5029 }
5030
5031 if (WARN_ON(tid >= IEEE80211_NUM_UPS))
5032 return -EINVAL;
5033
5034 if (sta->reserved_tid == tid) {
5035 ret = 0;
5036 goto out;
5037 }
5038
5039 if (sta->reserved_tid != IEEE80211_TID_UNRESERVED) {
5040 sdata_err(sdata, "TID reservation already active\n");
5041 ret = -EALREADY;
5042 goto out;
5043 }
5044
5045 ieee80211_stop_vif_queues(sdata->local, sdata,
5046 IEEE80211_QUEUE_STOP_REASON_RESERVE_TID);
5047
5048 synchronize_net();
5049
5050
5051 if (ieee80211_hw_check(&local->hw, AMPDU_AGGREGATION)) {
5052 set_sta_flag(sta, WLAN_STA_BLOCK_BA);
5053 __ieee80211_stop_tx_ba_session(sta, tid,
5054 AGG_STOP_LOCAL_REQUEST);
5055 }
5056
5057 queues = BIT(sdata->vif.hw_queue[ieee802_1d_to_ac[tid]]);
5058 __ieee80211_flush_queues(local, sdata, queues, false);
5059
5060 sta->reserved_tid = tid;
5061
5062 ieee80211_wake_vif_queues(local, sdata,
5063 IEEE80211_QUEUE_STOP_REASON_RESERVE_TID);
5064
5065 if (ieee80211_hw_check(&local->hw, AMPDU_AGGREGATION))
5066 clear_sta_flag(sta, WLAN_STA_BLOCK_BA);
5067
5068 ret = 0;
5069 out:
5070 return ret;
5071}
5072EXPORT_SYMBOL(ieee80211_reserve_tid);
5073
5074void ieee80211_unreserve_tid(struct ieee80211_sta *pubsta, u8 tid)
5075{
5076 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
5077 struct ieee80211_sub_if_data *sdata = sta->sdata;
5078
5079 lockdep_assert_held(&sdata->local->sta_mtx);
5080
5081
5082 switch (sdata->vif.type) {
5083 case NL80211_IFTYPE_STATION:
5084 case NL80211_IFTYPE_AP:
5085 case NL80211_IFTYPE_AP_VLAN:
5086 break;
5087 default:
5088 WARN_ON(1);
5089 return;
5090 }
5091
5092 if (tid != sta->reserved_tid) {
5093 sdata_err(sdata, "TID to unreserve (%d) isn't reserved\n", tid);
5094 return;
5095 }
5096
5097 sta->reserved_tid = IEEE80211_TID_UNRESERVED;
5098}
5099EXPORT_SYMBOL(ieee80211_unreserve_tid);
5100
5101void __ieee80211_tx_skb_tid_band(struct ieee80211_sub_if_data *sdata,
5102 struct sk_buff *skb, int tid,
5103 enum nl80211_band band, u32 txdata_flags)
5104{
5105 int ac = ieee80211_ac_from_tid(tid);
5106
5107 skb_reset_mac_header(skb);
5108 skb_set_queue_mapping(skb, ac);
5109 skb->priority = tid;
5110
5111 skb->dev = sdata->dev;
5112
5113
5114
5115
5116
5117
5118 local_bh_disable();
5119 IEEE80211_SKB_CB(skb)->band = band;
5120 ieee80211_xmit(sdata, NULL, skb, txdata_flags);
5121 local_bh_enable();
5122}
5123
5124int ieee80211_tx_control_port(struct wiphy *wiphy, struct net_device *dev,
5125 const u8 *buf, size_t len,
5126 const u8 *dest, __be16 proto, bool unencrypted)
5127{
5128 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
5129 struct ieee80211_local *local = sdata->local;
5130 struct sk_buff *skb;
5131 struct ethhdr *ehdr;
5132 u32 flags;
5133
5134
5135
5136
5137 if (proto != sdata->control_port_protocol &&
5138 proto != cpu_to_be16(ETH_P_PREAUTH))
5139 return -EINVAL;
5140
5141 if (unencrypted)
5142 flags = IEEE80211_TX_INTFL_DONT_ENCRYPT;
5143 else
5144 flags = 0;
5145
5146 skb = dev_alloc_skb(local->hw.extra_tx_headroom +
5147 sizeof(struct ethhdr) + len);
5148 if (!skb)
5149 return -ENOMEM;
5150
5151 skb_reserve(skb, local->hw.extra_tx_headroom + sizeof(struct ethhdr));
5152
5153 skb_put_data(skb, buf, len);
5154
5155 ehdr = skb_push(skb, sizeof(struct ethhdr));
5156 memcpy(ehdr->h_dest, dest, ETH_ALEN);
5157 memcpy(ehdr->h_source, sdata->vif.addr, ETH_ALEN);
5158 ehdr->h_proto = proto;
5159
5160 skb->dev = dev;
5161 skb->protocol = htons(ETH_P_802_3);
5162 skb_reset_network_header(skb);
5163 skb_reset_mac_header(skb);
5164
5165 local_bh_disable();
5166 __ieee80211_subif_start_xmit(skb, skb->dev, flags, 0);
5167 local_bh_enable();
5168
5169 return 0;
5170}
5171
5172int ieee80211_probe_mesh_link(struct wiphy *wiphy, struct net_device *dev,
5173 const u8 *buf, size_t len)
5174{
5175 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
5176 struct ieee80211_local *local = sdata->local;
5177 struct sk_buff *skb;
5178
5179 skb = dev_alloc_skb(local->hw.extra_tx_headroom + len +
5180 30 +
5181 18);
5182 if (!skb)
5183 return -ENOMEM;
5184
5185 skb_reserve(skb, local->hw.extra_tx_headroom);
5186 skb_put_data(skb, buf, len);
5187
5188 skb->dev = dev;
5189 skb->protocol = htons(ETH_P_802_3);
5190 skb_reset_network_header(skb);
5191 skb_reset_mac_header(skb);
5192
5193 local_bh_disable();
5194 __ieee80211_subif_start_xmit(skb, skb->dev, 0,
5195 IEEE80211_TX_CTRL_SKIP_MPATH_LOOKUP);
5196 local_bh_enable();
5197
5198 return 0;
5199}
5200