1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright 2002-2005, Instant802 Networks, Inc.
4 * Copyright 2005-2006, Devicescape Software, Inc.
5 * Copyright 2006-2007 Jiri Benc <jbenc@suse.cz>
6 * Copyright 2007 Johannes Berg <johannes@sipsolutions.net>
7 * Copyright 2013-2014 Intel Mobile Communications GmbH
8 * Copyright (C) 2018-2021 Intel Corporation
10 * Transmit and frame generation functions.
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 <linux/timekeeping.h>
22 #include <net/net_namespace.h>
23 #include <net/ieee80211_radiotap.h>
24 #include <net/cfg80211.h>
25 #include <net/mac80211.h>
26 #include <net/codel.h>
27 #include <net/codel_impl.h>
28 #include <asm/unaligned.h>
29 #include <net/fq_impl.h>
31 #include "ieee80211_i.h"
32 #include "driver-ops.h"
42 static __le16 ieee80211_duration(struct ieee80211_tx_data *tx,
43 struct sk_buff *skb, int group_addr,
46 int rate, mrate, erp, dur, i, shift = 0;
47 struct ieee80211_rate *txrate;
48 struct ieee80211_local *local = tx->local;
49 struct ieee80211_supported_band *sband;
50 struct ieee80211_hdr *hdr;
51 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
52 struct ieee80211_chanctx_conf *chanctx_conf;
55 /* assume HW handles this */
56 if (tx->rate.flags & (IEEE80211_TX_RC_MCS | IEEE80211_TX_RC_VHT_MCS))
60 chanctx_conf = rcu_dereference(tx->sdata->vif.chanctx_conf);
62 shift = ieee80211_chandef_get_shift(&chanctx_conf->def);
63 rate_flags = ieee80211_chandef_rate_flags(&chanctx_conf->def);
68 if (WARN_ON_ONCE(tx->rate.idx < 0))
71 sband = local->hw.wiphy->bands[info->band];
72 txrate = &sband->bitrates[tx->rate.idx];
74 erp = txrate->flags & IEEE80211_RATE_ERP_G;
76 /* device is expected to do this */
77 if (sband->band == NL80211_BAND_S1GHZ)
81 * data and mgmt (except PS Poll):
83 * - during contention period:
84 * if addr1 is group address: 0
85 * if more fragments = 0 and addr1 is individual address: time to
86 * transmit one ACK plus SIFS
87 * if more fragments = 1 and addr1 is individual address: time to
88 * transmit next fragment plus 2 x ACK plus 3 x SIFS
91 * - control response frame (CTS or ACK) shall be transmitted using the
92 * same rate as the immediately previous frame in the frame exchange
93 * sequence, if this rate belongs to the PHY mandatory rates, or else
94 * at the highest possible rate belonging to the PHY rates in the
97 hdr = (struct ieee80211_hdr *)skb->data;
98 if (ieee80211_is_ctl(hdr->frame_control)) {
99 /* TODO: These control frames are not currently sent by
100 * mac80211, but should they be implemented, this function
101 * needs to be updated to support duration field calculation.
103 * RTS: time needed to transmit pending data/mgmt frame plus
104 * one CTS frame plus one ACK frame plus 3 x SIFS
105 * CTS: duration of immediately previous RTS minus time
106 * required to transmit CTS and its SIFS
107 * ACK: 0 if immediately previous directed data/mgmt had
108 * more=0, with more=1 duration in ACK frame is duration
109 * from previous frame minus time needed to transmit ACK
111 * PS Poll: BIT(15) | BIT(14) | aid
117 if (0 /* FIX: data/mgmt during CFP */)
118 return cpu_to_le16(32768);
120 if (group_addr) /* Group address as the destination - no ACK */
123 /* Individual destination address:
124 * IEEE 802.11, Ch. 9.6 (after IEEE 802.11g changes)
125 * CTS and ACK frames shall be transmitted using the highest rate in
126 * basic rate set that is less than or equal to the rate of the
127 * immediately previous frame and that is using the same modulation
128 * (CCK or OFDM). If no basic rate set matches with these requirements,
129 * the highest mandatory rate of the PHY that is less than or equal to
130 * the rate of the previous frame is used.
131 * Mandatory rates for IEEE 802.11g PHY: 1, 2, 5.5, 11, 6, 12, 24 Mbps
134 /* use lowest available if everything fails */
135 mrate = sband->bitrates[0].bitrate;
136 for (i = 0; i < sband->n_bitrates; i++) {
137 struct ieee80211_rate *r = &sband->bitrates[i];
139 if (r->bitrate > txrate->bitrate)
142 if ((rate_flags & r->flags) != rate_flags)
145 if (tx->sdata->vif.bss_conf.basic_rates & BIT(i))
146 rate = DIV_ROUND_UP(r->bitrate, 1 << shift);
148 switch (sband->band) {
149 case NL80211_BAND_2GHZ: {
151 if (tx->sdata->flags & IEEE80211_SDATA_OPERATING_GMODE)
152 flag = IEEE80211_RATE_MANDATORY_G;
154 flag = IEEE80211_RATE_MANDATORY_B;
159 case NL80211_BAND_5GHZ:
160 case NL80211_BAND_6GHZ:
161 if (r->flags & IEEE80211_RATE_MANDATORY_A)
164 case NL80211_BAND_S1GHZ:
165 case NL80211_BAND_60GHZ:
166 /* TODO, for now fall through */
167 case NUM_NL80211_BANDS:
173 /* No matching basic rate found; use highest suitable mandatory
175 rate = DIV_ROUND_UP(mrate, 1 << shift);
178 /* Don't calculate ACKs for QoS Frames with NoAck Policy set */
179 if (ieee80211_is_data_qos(hdr->frame_control) &&
180 *(ieee80211_get_qos_ctl(hdr)) & IEEE80211_QOS_CTL_ACK_POLICY_NOACK)
183 /* Time needed to transmit ACK
184 * (10 bytes + 4-byte FCS = 112 bits) plus SIFS; rounded up
185 * to closest integer */
186 dur = ieee80211_frame_duration(sband->band, 10, rate, erp,
187 tx->sdata->vif.bss_conf.use_short_preamble,
191 /* Frame is fragmented: duration increases with time needed to
192 * transmit next fragment plus ACK and 2 x SIFS. */
193 dur *= 2; /* ACK + SIFS */
195 dur += ieee80211_frame_duration(sband->band, next_frag_len,
196 txrate->bitrate, erp,
197 tx->sdata->vif.bss_conf.use_short_preamble,
201 return cpu_to_le16(dur);
205 static ieee80211_tx_result debug_noinline
206 ieee80211_tx_h_dynamic_ps(struct ieee80211_tx_data *tx)
208 struct ieee80211_local *local = tx->local;
209 struct ieee80211_if_managed *ifmgd;
210 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
212 /* driver doesn't support power save */
213 if (!ieee80211_hw_check(&local->hw, SUPPORTS_PS))
216 /* hardware does dynamic power save */
217 if (ieee80211_hw_check(&local->hw, SUPPORTS_DYNAMIC_PS))
220 /* dynamic power save disabled */
221 if (local->hw.conf.dynamic_ps_timeout <= 0)
224 /* we are scanning, don't enable power save */
228 if (!local->ps_sdata)
231 /* No point if we're going to suspend */
232 if (local->quiescing)
235 /* dynamic ps is supported only in managed mode */
236 if (tx->sdata->vif.type != NL80211_IFTYPE_STATION)
239 if (unlikely(info->flags & IEEE80211_TX_INTFL_OFFCHAN_TX_OK))
242 ifmgd = &tx->sdata->u.mgd;
245 * Don't wakeup from power save if u-apsd is enabled, voip ac has
246 * u-apsd enabled and the frame is in voip class. This effectively
247 * means that even if all access categories have u-apsd enabled, in
248 * practise u-apsd is only used with the voip ac. This is a
249 * workaround for the case when received voip class packets do not
250 * have correct qos tag for some reason, due the network or the
253 * Note: ifmgd->uapsd_queues access is racy here. If the value is
254 * changed via debugfs, user needs to reassociate manually to have
255 * everything in sync.
257 if ((ifmgd->flags & IEEE80211_STA_UAPSD_ENABLED) &&
258 (ifmgd->uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_VO) &&
259 skb_get_queue_mapping(tx->skb) == IEEE80211_AC_VO)
262 if (local->hw.conf.flags & IEEE80211_CONF_PS) {
263 ieee80211_stop_queues_by_reason(&local->hw,
264 IEEE80211_MAX_QUEUE_MAP,
265 IEEE80211_QUEUE_STOP_REASON_PS,
267 ifmgd->flags &= ~IEEE80211_STA_NULLFUNC_ACKED;
268 ieee80211_queue_work(&local->hw,
269 &local->dynamic_ps_disable_work);
272 /* Don't restart the timer if we're not disassociated */
273 if (!ifmgd->associated)
276 mod_timer(&local->dynamic_ps_timer, jiffies +
277 msecs_to_jiffies(local->hw.conf.dynamic_ps_timeout));
282 static ieee80211_tx_result debug_noinline
283 ieee80211_tx_h_check_assoc(struct ieee80211_tx_data *tx)
286 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data;
287 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
290 if (unlikely(info->flags & IEEE80211_TX_CTL_INJECTED))
293 if (unlikely(test_bit(SCAN_SW_SCANNING, &tx->local->scanning)) &&
294 test_bit(SDATA_STATE_OFFCHANNEL, &tx->sdata->state) &&
295 !ieee80211_is_probe_req(hdr->frame_control) &&
296 !ieee80211_is_any_nullfunc(hdr->frame_control))
298 * When software scanning only nullfunc frames (to notify
299 * the sleep state to the AP) and probe requests (for the
300 * active scan) are allowed, all other frames should not be
301 * sent and we should not get here, but if we do
302 * nonetheless, drop them to avoid sending them
303 * off-channel. See the link below and
304 * ieee80211_start_scan() for more.
306 * http://article.gmane.org/gmane.linux.kernel.wireless.general/30089
310 if (tx->sdata->vif.type == NL80211_IFTYPE_OCB)
313 if (tx->flags & IEEE80211_TX_PS_BUFFERED)
317 assoc = test_sta_flag(tx->sta, WLAN_STA_ASSOC);
319 if (likely(tx->flags & IEEE80211_TX_UNICAST)) {
320 if (unlikely(!assoc &&
321 ieee80211_is_data(hdr->frame_control))) {
322 #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
323 sdata_info(tx->sdata,
324 "dropped data frame to not associated station %pM\n",
327 I802_DEBUG_INC(tx->local->tx_handlers_drop_not_assoc);
330 } else if (unlikely(ieee80211_is_data(hdr->frame_control) &&
331 ieee80211_vif_get_num_mcast_if(tx->sdata) == 0)) {
333 * No associated STAs - no need to send multicast
342 /* This function is called whenever the AP is about to exceed the maximum limit
343 * of buffered frames for power saving STAs. This situation should not really
344 * happen often during normal operation, so dropping the oldest buffered packet
345 * from each queue should be OK to make some room for new frames. */
346 static void purge_old_ps_buffers(struct ieee80211_local *local)
348 int total = 0, purged = 0;
350 struct ieee80211_sub_if_data *sdata;
351 struct sta_info *sta;
353 list_for_each_entry_rcu(sdata, &local->interfaces, list) {
356 if (sdata->vif.type == NL80211_IFTYPE_AP)
357 ps = &sdata->u.ap.ps;
358 else if (ieee80211_vif_is_mesh(&sdata->vif))
359 ps = &sdata->u.mesh.ps;
363 skb = skb_dequeue(&ps->bc_buf);
366 ieee80211_free_txskb(&local->hw, skb);
368 total += skb_queue_len(&ps->bc_buf);
372 * Drop one frame from each station from the lowest-priority
373 * AC that has frames at all.
375 list_for_each_entry_rcu(sta, &local->sta_list, list) {
378 for (ac = IEEE80211_AC_BK; ac >= IEEE80211_AC_VO; ac--) {
379 skb = skb_dequeue(&sta->ps_tx_buf[ac]);
380 total += skb_queue_len(&sta->ps_tx_buf[ac]);
383 ieee80211_free_txskb(&local->hw, skb);
389 local->total_ps_buffered = total;
390 ps_dbg_hw(&local->hw, "PS buffers full - purged %d frames\n", purged);
393 static ieee80211_tx_result
394 ieee80211_tx_h_multicast_ps_buf(struct ieee80211_tx_data *tx)
396 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
397 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data;
401 * broadcast/multicast frame
403 * If any of the associated/peer stations is in power save mode,
404 * the frame is buffered to be sent after DTIM beacon frame.
405 * This is done either by the hardware or us.
408 /* powersaving STAs currently only in AP/VLAN/mesh mode */
409 if (tx->sdata->vif.type == NL80211_IFTYPE_AP ||
410 tx->sdata->vif.type == NL80211_IFTYPE_AP_VLAN) {
414 ps = &tx->sdata->bss->ps;
415 } else if (ieee80211_vif_is_mesh(&tx->sdata->vif)) {
416 ps = &tx->sdata->u.mesh.ps;
422 /* no buffering for ordered frames */
423 if (ieee80211_has_order(hdr->frame_control))
426 if (ieee80211_is_probe_req(hdr->frame_control))
429 if (ieee80211_hw_check(&tx->local->hw, QUEUE_CONTROL))
430 info->hw_queue = tx->sdata->vif.cab_queue;
432 /* no stations in PS mode and no buffered packets */
433 if (!atomic_read(&ps->num_sta_ps) && skb_queue_empty(&ps->bc_buf))
436 info->flags |= IEEE80211_TX_CTL_SEND_AFTER_DTIM;
438 /* device releases frame after DTIM beacon */
439 if (!ieee80211_hw_check(&tx->local->hw, HOST_BROADCAST_PS_BUFFERING))
442 /* buffered in mac80211 */
443 if (tx->local->total_ps_buffered >= TOTAL_MAX_TX_BUFFER)
444 purge_old_ps_buffers(tx->local);
446 if (skb_queue_len(&ps->bc_buf) >= AP_MAX_BC_BUFFER) {
448 "BC TX buffer full - dropping the oldest frame\n");
449 ieee80211_free_txskb(&tx->local->hw, skb_dequeue(&ps->bc_buf));
451 tx->local->total_ps_buffered++;
453 skb_queue_tail(&ps->bc_buf, tx->skb);
458 static int ieee80211_use_mfp(__le16 fc, struct sta_info *sta,
461 if (!ieee80211_is_mgmt(fc))
464 if (sta == NULL || !test_sta_flag(sta, WLAN_STA_MFP))
467 if (!ieee80211_is_robust_mgmt_frame(skb))
473 static ieee80211_tx_result
474 ieee80211_tx_h_unicast_ps_buf(struct ieee80211_tx_data *tx)
476 struct sta_info *sta = tx->sta;
477 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
478 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data;
479 struct ieee80211_local *local = tx->local;
484 if (unlikely((test_sta_flag(sta, WLAN_STA_PS_STA) ||
485 test_sta_flag(sta, WLAN_STA_PS_DRIVER) ||
486 test_sta_flag(sta, WLAN_STA_PS_DELIVER)) &&
487 !(info->flags & IEEE80211_TX_CTL_NO_PS_BUFFER))) {
488 int ac = skb_get_queue_mapping(tx->skb);
490 if (ieee80211_is_mgmt(hdr->frame_control) &&
491 !ieee80211_is_bufferable_mmpdu(hdr->frame_control)) {
492 info->flags |= IEEE80211_TX_CTL_NO_PS_BUFFER;
496 ps_dbg(sta->sdata, "STA %pM aid %d: PS buffer for AC %d\n",
497 sta->sta.addr, sta->sta.aid, ac);
498 if (tx->local->total_ps_buffered >= TOTAL_MAX_TX_BUFFER)
499 purge_old_ps_buffers(tx->local);
501 /* sync with ieee80211_sta_ps_deliver_wakeup */
502 spin_lock(&sta->ps_lock);
504 * STA woke up the meantime and all the frames on ps_tx_buf have
505 * been queued to pending queue. No reordering can happen, go
506 * ahead and Tx the packet.
508 if (!test_sta_flag(sta, WLAN_STA_PS_STA) &&
509 !test_sta_flag(sta, WLAN_STA_PS_DRIVER) &&
510 !test_sta_flag(sta, WLAN_STA_PS_DELIVER)) {
511 spin_unlock(&sta->ps_lock);
515 if (skb_queue_len(&sta->ps_tx_buf[ac]) >= STA_MAX_TX_BUFFER) {
516 struct sk_buff *old = skb_dequeue(&sta->ps_tx_buf[ac]);
518 "STA %pM TX buffer for AC %d full - dropping oldest frame\n",
520 ieee80211_free_txskb(&local->hw, old);
522 tx->local->total_ps_buffered++;
524 info->control.jiffies = jiffies;
525 info->control.vif = &tx->sdata->vif;
526 info->control.flags |= IEEE80211_TX_INTCFL_NEED_TXPROCESSING;
527 info->flags &= ~IEEE80211_TX_TEMPORARY_FLAGS;
528 skb_queue_tail(&sta->ps_tx_buf[ac], tx->skb);
529 spin_unlock(&sta->ps_lock);
531 if (!timer_pending(&local->sta_cleanup))
532 mod_timer(&local->sta_cleanup,
533 round_jiffies(jiffies +
534 STA_INFO_CLEANUP_INTERVAL));
537 * We queued up some frames, so the TIM bit might
538 * need to be set, recalculate it.
540 sta_info_recalc_tim(sta);
543 } else if (unlikely(test_sta_flag(sta, WLAN_STA_PS_STA))) {
545 "STA %pM in PS mode, but polling/in SP -> send frame\n",
552 static ieee80211_tx_result debug_noinline
553 ieee80211_tx_h_ps_buf(struct ieee80211_tx_data *tx)
555 if (unlikely(tx->flags & IEEE80211_TX_PS_BUFFERED))
558 if (tx->flags & IEEE80211_TX_UNICAST)
559 return ieee80211_tx_h_unicast_ps_buf(tx);
561 return ieee80211_tx_h_multicast_ps_buf(tx);
564 static ieee80211_tx_result debug_noinline
565 ieee80211_tx_h_check_control_port_protocol(struct ieee80211_tx_data *tx)
567 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
569 if (unlikely(tx->sdata->control_port_protocol == tx->skb->protocol)) {
570 if (tx->sdata->control_port_no_encrypt)
571 info->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
572 info->control.flags |= IEEE80211_TX_CTRL_PORT_CTRL_PROTO;
573 info->flags |= IEEE80211_TX_CTL_USE_MINRATE;
579 static ieee80211_tx_result debug_noinline
580 ieee80211_tx_h_select_key(struct ieee80211_tx_data *tx)
582 struct ieee80211_key *key;
583 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
584 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data;
586 if (unlikely(info->flags & IEEE80211_TX_INTFL_DONT_ENCRYPT)) {
592 (key = rcu_dereference(tx->sta->ptk[tx->sta->ptk_idx])))
594 else if (ieee80211_is_group_privacy_action(tx->skb) &&
595 (key = rcu_dereference(tx->sdata->default_multicast_key)))
597 else if (ieee80211_is_mgmt(hdr->frame_control) &&
598 is_multicast_ether_addr(hdr->addr1) &&
599 ieee80211_is_robust_mgmt_frame(tx->skb) &&
600 (key = rcu_dereference(tx->sdata->default_mgmt_key)))
602 else if (is_multicast_ether_addr(hdr->addr1) &&
603 (key = rcu_dereference(tx->sdata->default_multicast_key)))
605 else if (!is_multicast_ether_addr(hdr->addr1) &&
606 (key = rcu_dereference(tx->sdata->default_unicast_key)))
612 bool skip_hw = false;
614 /* TODO: add threshold stuff again */
616 switch (tx->key->conf.cipher) {
617 case WLAN_CIPHER_SUITE_WEP40:
618 case WLAN_CIPHER_SUITE_WEP104:
619 case WLAN_CIPHER_SUITE_TKIP:
620 if (!ieee80211_is_data_present(hdr->frame_control))
623 case WLAN_CIPHER_SUITE_CCMP:
624 case WLAN_CIPHER_SUITE_CCMP_256:
625 case WLAN_CIPHER_SUITE_GCMP:
626 case WLAN_CIPHER_SUITE_GCMP_256:
627 if (!ieee80211_is_data_present(hdr->frame_control) &&
628 !ieee80211_use_mfp(hdr->frame_control, tx->sta,
630 !ieee80211_is_group_privacy_action(tx->skb))
633 skip_hw = (tx->key->conf.flags &
634 IEEE80211_KEY_FLAG_SW_MGMT_TX) &&
635 ieee80211_is_mgmt(hdr->frame_control);
637 case WLAN_CIPHER_SUITE_AES_CMAC:
638 case WLAN_CIPHER_SUITE_BIP_CMAC_256:
639 case WLAN_CIPHER_SUITE_BIP_GMAC_128:
640 case WLAN_CIPHER_SUITE_BIP_GMAC_256:
641 if (!ieee80211_is_mgmt(hdr->frame_control))
646 if (unlikely(tx->key && tx->key->flags & KEY_FLAG_TAINTED &&
647 !ieee80211_is_deauth(hdr->frame_control)))
650 if (!skip_hw && tx->key &&
651 tx->key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE)
652 info->control.hw_key = &tx->key->conf;
653 } else if (ieee80211_is_data_present(hdr->frame_control) && tx->sta &&
654 test_sta_flag(tx->sta, WLAN_STA_USES_ENCRYPTION)) {
661 static ieee80211_tx_result debug_noinline
662 ieee80211_tx_h_rate_ctrl(struct ieee80211_tx_data *tx)
664 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
665 struct ieee80211_hdr *hdr = (void *)tx->skb->data;
666 struct ieee80211_supported_band *sband;
668 struct ieee80211_tx_rate_control txrc;
669 struct ieee80211_sta_rates *ratetbl = NULL;
670 bool encap = info->flags & IEEE80211_TX_CTL_HW_80211_ENCAP;
673 memset(&txrc, 0, sizeof(txrc));
675 sband = tx->local->hw.wiphy->bands[info->band];
677 len = min_t(u32, tx->skb->len + FCS_LEN,
678 tx->local->hw.wiphy->frag_threshold);
680 /* set up the tx rate control struct we give the RC algo */
681 txrc.hw = &tx->local->hw;
683 txrc.bss_conf = &tx->sdata->vif.bss_conf;
685 txrc.reported_rate.idx = -1;
686 txrc.rate_idx_mask = tx->sdata->rc_rateidx_mask[info->band];
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];
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);
697 /* set up RTS protection if desired */
698 if (len > tx->local->hw.wiphy->rts_threshold) {
702 info->control.use_rts = txrc.rts;
703 info->control.use_cts_prot = tx->sdata->vif.bss_conf.use_cts_prot;
706 * Use short preamble if the BSS can handle it, but not for
707 * management frames unless we know the receiver can handle
708 * that -- the management frame might be to a station that
709 * just wants a probe response.
711 if (tx->sdata->vif.bss_conf.use_short_preamble &&
712 (ieee80211_is_tx_data(tx->skb) ||
713 (tx->sta && test_sta_flag(tx->sta, WLAN_STA_SHORT_PREAMBLE))))
714 txrc.short_preamble = true;
716 info->control.short_preamble = txrc.short_preamble;
718 /* don't ask rate control when rate already injected via radiotap */
719 if (info->control.flags & IEEE80211_TX_CTRL_RATE_INJECT)
723 assoc = test_sta_flag(tx->sta, WLAN_STA_ASSOC);
726 * Lets not bother rate control if we're associated and cannot
727 * talk to the sta. This should not happen.
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",
735 encap ? ((struct ethhdr *)hdr)->h_dest : hdr->addr1,
740 * If we're associated with the sta at this point we know we can at
741 * least send the frame at the lowest bit rate.
743 rate_control_get_rate(tx->sdata, tx->sta, &txrc);
745 if (tx->sta && !info->control.skip_table)
746 ratetbl = rcu_dereference(tx->sta->sta.rates);
748 if (unlikely(info->control.rates[0].idx < 0)) {
750 struct ieee80211_tx_rate rate = {
751 .idx = ratetbl->rate[0].idx,
752 .flags = ratetbl->rate[0].flags,
753 .count = ratetbl->rate[0].count
756 if (ratetbl->rate[0].idx < 0)
764 tx->rate = info->control.rates[0];
767 if (txrc.reported_rate.idx < 0) {
768 txrc.reported_rate = tx->rate;
769 if (tx->sta && ieee80211_is_tx_data(tx->skb))
770 tx->sta->tx_stats.last_rate = txrc.reported_rate;
772 tx->sta->tx_stats.last_rate = txrc.reported_rate;
777 if (unlikely(!info->control.rates[0].count))
778 info->control.rates[0].count = 1;
780 if (WARN_ON_ONCE((info->control.rates[0].count > 1) &&
781 (info->flags & IEEE80211_TX_CTL_NO_ACK)))
782 info->control.rates[0].count = 1;
787 static __le16 ieee80211_tx_next_seq(struct sta_info *sta, int tid)
789 u16 *seq = &sta->tid_seq[tid];
790 __le16 ret = cpu_to_le16(*seq);
792 /* Increase the sequence number. */
793 *seq = (*seq + 0x10) & IEEE80211_SCTL_SEQ;
798 static ieee80211_tx_result debug_noinline
799 ieee80211_tx_h_sequence(struct ieee80211_tx_data *tx)
801 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
802 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data;
806 * Packet injection may want to control the sequence
807 * number, if we have no matching interface then we
808 * neither assign one ourselves nor ask the driver to.
810 if (unlikely(info->control.vif->type == NL80211_IFTYPE_MONITOR))
813 if (unlikely(ieee80211_is_ctl(hdr->frame_control)))
816 if (ieee80211_hdrlen(hdr->frame_control) < 24)
819 if (ieee80211_is_qos_nullfunc(hdr->frame_control))
822 if (info->control.flags & IEEE80211_TX_CTRL_NO_SEQNO)
826 * Anything but QoS data that has a sequence number field
827 * (is long enough) gets a sequence number from the global
828 * counter. QoS data frames with a multicast destination
829 * also use the global counter (802.11-2012 9.3.2.10).
831 if (!ieee80211_is_data_qos(hdr->frame_control) ||
832 is_multicast_ether_addr(hdr->addr1)) {
833 /* driver should assign sequence number */
834 info->flags |= IEEE80211_TX_CTL_ASSIGN_SEQ;
835 /* for pure STA mode without beacons, we can do it */
836 hdr->seq_ctrl = cpu_to_le16(tx->sdata->sequence_number);
837 tx->sdata->sequence_number += 0x10;
839 tx->sta->tx_stats.msdu[IEEE80211_NUM_TIDS]++;
844 * This should be true for injected/management frames only, for
845 * management frames we have set the IEEE80211_TX_CTL_ASSIGN_SEQ
846 * above since they are not QoS-data frames.
851 /* include per-STA, per-TID sequence counter */
852 tid = ieee80211_get_tid(hdr);
853 tx->sta->tx_stats.msdu[tid]++;
855 hdr->seq_ctrl = ieee80211_tx_next_seq(tx->sta, tid);
860 static int ieee80211_fragment(struct ieee80211_tx_data *tx,
861 struct sk_buff *skb, int hdrlen,
864 struct ieee80211_local *local = tx->local;
865 struct ieee80211_tx_info *info;
867 int per_fragm = frag_threshold - hdrlen - FCS_LEN;
868 int pos = hdrlen + per_fragm;
869 int rem = skb->len - hdrlen - per_fragm;
871 if (WARN_ON(rem < 0))
874 /* first fragment was already added to queue by caller */
877 int fraglen = per_fragm;
882 tmp = dev_alloc_skb(local->tx_headroom +
884 tx->sdata->encrypt_headroom +
885 IEEE80211_ENCRYPT_TAILROOM);
889 __skb_queue_tail(&tx->skbs, tmp);
892 local->tx_headroom + tx->sdata->encrypt_headroom);
894 /* copy control information */
895 memcpy(tmp->cb, skb->cb, sizeof(tmp->cb));
897 info = IEEE80211_SKB_CB(tmp);
898 info->flags &= ~(IEEE80211_TX_CTL_CLEAR_PS_FILT |
899 IEEE80211_TX_CTL_FIRST_FRAGMENT);
902 info->flags |= IEEE80211_TX_CTL_MORE_FRAMES;
904 skb_copy_queue_mapping(tmp, skb);
905 tmp->priority = skb->priority;
908 /* copy header and data */
909 skb_put_data(tmp, skb->data, hdrlen);
910 skb_put_data(tmp, skb->data + pos, fraglen);
915 /* adjust first fragment's length */
916 skb_trim(skb, hdrlen + per_fragm);
920 static ieee80211_tx_result debug_noinline
921 ieee80211_tx_h_fragment(struct ieee80211_tx_data *tx)
923 struct sk_buff *skb = tx->skb;
924 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
925 struct ieee80211_hdr *hdr = (void *)skb->data;
926 int frag_threshold = tx->local->hw.wiphy->frag_threshold;
930 /* no matter what happens, tx->skb moves to tx->skbs */
931 __skb_queue_tail(&tx->skbs, skb);
934 if (info->flags & IEEE80211_TX_CTL_DONTFRAG)
937 if (ieee80211_hw_check(&tx->local->hw, SUPPORTS_TX_FRAG))
941 * Warn when submitting a fragmented A-MPDU frame and drop it.
942 * This scenario is handled in ieee80211_tx_prepare but extra
943 * caution taken here as fragmented ampdu may cause Tx stop.
945 if (WARN_ON(info->flags & IEEE80211_TX_CTL_AMPDU))
948 hdrlen = ieee80211_hdrlen(hdr->frame_control);
950 /* internal error, why isn't DONTFRAG set? */
951 if (WARN_ON(skb->len + FCS_LEN <= frag_threshold))
955 * Now fragment the frame. This will allocate all the fragments and
956 * chain them (using skb as the first fragment) to skb->next.
957 * During transmission, we will remove the successfully transmitted
958 * fragments from this list. When the low-level driver rejects one
959 * of the fragments then we will simply pretend to accept the skb
960 * but store it away as pending.
962 if (ieee80211_fragment(tx, skb, hdrlen, frag_threshold))
965 /* update duration/seq/flags of fragments */
968 skb_queue_walk(&tx->skbs, skb) {
969 const __le16 morefrags = cpu_to_le16(IEEE80211_FCTL_MOREFRAGS);
971 hdr = (void *)skb->data;
972 info = IEEE80211_SKB_CB(skb);
974 if (!skb_queue_is_last(&tx->skbs, skb)) {
975 hdr->frame_control |= morefrags;
977 * No multi-rate retries for fragmented frames, that
978 * would completely throw off the NAV at other STAs.
980 info->control.rates[1].idx = -1;
981 info->control.rates[2].idx = -1;
982 info->control.rates[3].idx = -1;
983 BUILD_BUG_ON(IEEE80211_TX_MAX_RATES != 4);
984 info->flags &= ~IEEE80211_TX_CTL_RATE_CTRL_PROBE;
986 hdr->frame_control &= ~morefrags;
988 hdr->seq_ctrl |= cpu_to_le16(fragnum & IEEE80211_SCTL_FRAG);
995 static ieee80211_tx_result debug_noinline
996 ieee80211_tx_h_stats(struct ieee80211_tx_data *tx)
1004 skb_queue_walk(&tx->skbs, skb) {
1005 ac = skb_get_queue_mapping(skb);
1006 tx->sta->tx_stats.bytes[ac] += skb->len;
1009 tx->sta->tx_stats.packets[ac]++;
1014 static ieee80211_tx_result debug_noinline
1015 ieee80211_tx_h_encrypt(struct ieee80211_tx_data *tx)
1020 switch (tx->key->conf.cipher) {
1021 case WLAN_CIPHER_SUITE_WEP40:
1022 case WLAN_CIPHER_SUITE_WEP104:
1023 return ieee80211_crypto_wep_encrypt(tx);
1024 case WLAN_CIPHER_SUITE_TKIP:
1025 return ieee80211_crypto_tkip_encrypt(tx);
1026 case WLAN_CIPHER_SUITE_CCMP:
1027 return ieee80211_crypto_ccmp_encrypt(
1028 tx, IEEE80211_CCMP_MIC_LEN);
1029 case WLAN_CIPHER_SUITE_CCMP_256:
1030 return ieee80211_crypto_ccmp_encrypt(
1031 tx, IEEE80211_CCMP_256_MIC_LEN);
1032 case WLAN_CIPHER_SUITE_AES_CMAC:
1033 return ieee80211_crypto_aes_cmac_encrypt(tx);
1034 case WLAN_CIPHER_SUITE_BIP_CMAC_256:
1035 return ieee80211_crypto_aes_cmac_256_encrypt(tx);
1036 case WLAN_CIPHER_SUITE_BIP_GMAC_128:
1037 case WLAN_CIPHER_SUITE_BIP_GMAC_256:
1038 return ieee80211_crypto_aes_gmac_encrypt(tx);
1039 case WLAN_CIPHER_SUITE_GCMP:
1040 case WLAN_CIPHER_SUITE_GCMP_256:
1041 return ieee80211_crypto_gcmp_encrypt(tx);
1043 return ieee80211_crypto_hw_encrypt(tx);
1049 static ieee80211_tx_result debug_noinline
1050 ieee80211_tx_h_calculate_duration(struct ieee80211_tx_data *tx)
1052 struct sk_buff *skb;
1053 struct ieee80211_hdr *hdr;
1057 skb_queue_walk(&tx->skbs, skb) {
1058 hdr = (void *) skb->data;
1059 if (unlikely(ieee80211_is_pspoll(hdr->frame_control)))
1060 break; /* must not overwrite AID */
1061 if (!skb_queue_is_last(&tx->skbs, skb)) {
1062 struct sk_buff *next = skb_queue_next(&tx->skbs, skb);
1063 next_len = next->len;
1066 group_addr = is_multicast_ether_addr(hdr->addr1);
1069 ieee80211_duration(tx, skb, group_addr, next_len);
1075 /* actual transmit path */
1077 static bool ieee80211_tx_prep_agg(struct ieee80211_tx_data *tx,
1078 struct sk_buff *skb,
1079 struct ieee80211_tx_info *info,
1080 struct tid_ampdu_tx *tid_tx,
1083 bool queued = false;
1084 bool reset_agg_timer = false;
1085 struct sk_buff *purge_skb = NULL;
1087 if (test_bit(HT_AGG_STATE_OPERATIONAL, &tid_tx->state)) {
1088 info->flags |= IEEE80211_TX_CTL_AMPDU;
1089 reset_agg_timer = true;
1090 } else if (test_bit(HT_AGG_STATE_WANT_START, &tid_tx->state)) {
1092 * nothing -- this aggregation session is being started
1093 * but that might still fail with the driver
1095 } else if (!tx->sta->sta.txq[tid]) {
1096 spin_lock(&tx->sta->lock);
1098 * Need to re-check now, because we may get here
1100 * 1) in the window during which the setup is actually
1101 * already done, but not marked yet because not all
1102 * packets are spliced over to the driver pending
1103 * queue yet -- if this happened we acquire the lock
1104 * either before or after the splice happens, but
1105 * need to recheck which of these cases happened.
1107 * 2) during session teardown, if the OPERATIONAL bit
1108 * was cleared due to the teardown but the pointer
1109 * hasn't been assigned NULL yet (or we loaded it
1110 * before it was assigned) -- in this case it may
1111 * now be NULL which means we should just let the
1112 * packet pass through because splicing the frames
1113 * back is already done.
1115 tid_tx = rcu_dereference_protected_tid_tx(tx->sta, tid);
1118 /* do nothing, let packet pass through */
1119 } else if (test_bit(HT_AGG_STATE_OPERATIONAL, &tid_tx->state)) {
1120 info->flags |= IEEE80211_TX_CTL_AMPDU;
1121 reset_agg_timer = true;
1124 if (info->flags & IEEE80211_TX_CTL_NO_PS_BUFFER) {
1125 clear_sta_flag(tx->sta, WLAN_STA_SP);
1126 ps_dbg(tx->sta->sdata,
1127 "STA %pM aid %d: SP frame queued, close the SP w/o telling the peer\n",
1128 tx->sta->sta.addr, tx->sta->sta.aid);
1130 info->control.vif = &tx->sdata->vif;
1131 info->control.flags |= IEEE80211_TX_INTCFL_NEED_TXPROCESSING;
1132 info->flags &= ~IEEE80211_TX_TEMPORARY_FLAGS;
1133 __skb_queue_tail(&tid_tx->pending, skb);
1134 if (skb_queue_len(&tid_tx->pending) > STA_MAX_TX_BUFFER)
1135 purge_skb = __skb_dequeue(&tid_tx->pending);
1137 spin_unlock(&tx->sta->lock);
1140 ieee80211_free_txskb(&tx->local->hw, purge_skb);
1143 /* reset session timer */
1144 if (reset_agg_timer)
1145 tid_tx->last_tx = jiffies;
1151 ieee80211_aggr_check(struct ieee80211_sub_if_data *sdata,
1152 struct sta_info *sta,
1153 struct sk_buff *skb)
1155 struct rate_control_ref *ref = sdata->local->rate_ctrl;
1158 if (!ref || !(ref->ops->capa & RATE_CTRL_CAPA_AMPDU_TRIGGER))
1161 if (!sta || !sta->sta.ht_cap.ht_supported ||
1162 !sta->sta.wme || skb_get_queue_mapping(skb) == IEEE80211_AC_VO ||
1163 skb->protocol == sdata->control_port_protocol)
1166 tid = skb->priority & IEEE80211_QOS_CTL_TID_MASK;
1167 if (likely(sta->ampdu_mlme.tid_tx[tid]))
1170 ieee80211_start_tx_ba_session(&sta->sta, tid, 0);
1175 * pass %NULL for the station if unknown, a valid pointer if known
1176 * or an ERR_PTR() if the station is known not to exist
1178 static ieee80211_tx_result
1179 ieee80211_tx_prepare(struct ieee80211_sub_if_data *sdata,
1180 struct ieee80211_tx_data *tx,
1181 struct sta_info *sta, struct sk_buff *skb)
1183 struct ieee80211_local *local = sdata->local;
1184 struct ieee80211_hdr *hdr;
1185 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1186 bool aggr_check = false;
1189 memset(tx, 0, sizeof(*tx));
1193 __skb_queue_head_init(&tx->skbs);
1196 * If this flag is set to true anywhere, and we get here,
1197 * we are doing the needed processing, so remove the flag
1200 info->control.flags &= ~IEEE80211_TX_INTCFL_NEED_TXPROCESSING;
1202 hdr = (struct ieee80211_hdr *) skb->data;
1208 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN) {
1209 tx->sta = rcu_dereference(sdata->u.vlan.sta);
1210 if (!tx->sta && sdata->wdev.use_4addr)
1212 } else if (tx->sdata->control_port_protocol == tx->skb->protocol) {
1213 tx->sta = sta_info_get_bss(sdata, hdr->addr1);
1215 if (!tx->sta && !is_multicast_ether_addr(hdr->addr1)) {
1216 tx->sta = sta_info_get(sdata, hdr->addr1);
1221 if (tx->sta && ieee80211_is_data_qos(hdr->frame_control) &&
1222 !ieee80211_is_qos_nullfunc(hdr->frame_control) &&
1223 ieee80211_hw_check(&local->hw, AMPDU_AGGREGATION) &&
1224 !ieee80211_hw_check(&local->hw, TX_AMPDU_SETUP_IN_HW)) {
1225 struct tid_ampdu_tx *tid_tx;
1227 tid = ieee80211_get_tid(hdr);
1228 tid_tx = rcu_dereference(tx->sta->ampdu_mlme.tid_tx[tid]);
1229 if (!tid_tx && aggr_check) {
1230 ieee80211_aggr_check(sdata, tx->sta, skb);
1231 tid_tx = rcu_dereference(tx->sta->ampdu_mlme.tid_tx[tid]);
1237 queued = ieee80211_tx_prep_agg(tx, skb, info,
1240 if (unlikely(queued))
1245 if (is_multicast_ether_addr(hdr->addr1)) {
1246 tx->flags &= ~IEEE80211_TX_UNICAST;
1247 info->flags |= IEEE80211_TX_CTL_NO_ACK;
1249 tx->flags |= IEEE80211_TX_UNICAST;
1251 if (!(info->flags & IEEE80211_TX_CTL_DONTFRAG)) {
1252 if (!(tx->flags & IEEE80211_TX_UNICAST) ||
1253 skb->len + FCS_LEN <= local->hw.wiphy->frag_threshold ||
1254 info->flags & IEEE80211_TX_CTL_AMPDU)
1255 info->flags |= IEEE80211_TX_CTL_DONTFRAG;
1259 info->flags |= IEEE80211_TX_CTL_CLEAR_PS_FILT;
1260 else if (test_and_clear_sta_flag(tx->sta, WLAN_STA_CLEAR_PS_FILT)) {
1261 info->flags |= IEEE80211_TX_CTL_CLEAR_PS_FILT;
1262 ieee80211_check_fast_xmit(tx->sta);
1265 info->flags |= IEEE80211_TX_CTL_FIRST_FRAGMENT;
1270 static struct txq_info *ieee80211_get_txq(struct ieee80211_local *local,
1271 struct ieee80211_vif *vif,
1272 struct sta_info *sta,
1273 struct sk_buff *skb)
1275 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
1276 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1277 struct ieee80211_txq *txq = NULL;
1279 if ((info->flags & IEEE80211_TX_CTL_SEND_AFTER_DTIM) ||
1280 (info->control.flags & IEEE80211_TX_CTRL_PS_RESPONSE))
1283 if (!(info->flags & IEEE80211_TX_CTL_HW_80211_ENCAP) &&
1284 unlikely(!ieee80211_is_data_present(hdr->frame_control))) {
1285 if ((!ieee80211_is_mgmt(hdr->frame_control) ||
1286 ieee80211_is_bufferable_mmpdu(hdr->frame_control) ||
1287 vif->type == NL80211_IFTYPE_STATION) &&
1288 sta && sta->uploaded) {
1290 * This will be NULL if the driver didn't set the
1291 * opt-in hardware flag.
1293 txq = sta->sta.txq[IEEE80211_NUM_TIDS];
1296 u8 tid = skb->priority & IEEE80211_QOS_CTL_TID_MASK;
1301 txq = sta->sta.txq[tid];
1309 return to_txq_info(txq);
1312 static void ieee80211_set_skb_enqueue_time(struct sk_buff *skb)
1314 IEEE80211_SKB_CB(skb)->control.enqueue_time = codel_get_time();
1317 static u32 codel_skb_len_func(const struct sk_buff *skb)
1322 static codel_time_t codel_skb_time_func(const struct sk_buff *skb)
1324 const struct ieee80211_tx_info *info;
1326 info = (const struct ieee80211_tx_info *)skb->cb;
1327 return info->control.enqueue_time;
1330 static struct sk_buff *codel_dequeue_func(struct codel_vars *cvars,
1333 struct ieee80211_local *local;
1334 struct txq_info *txqi;
1336 struct fq_flow *flow;
1339 local = vif_to_sdata(txqi->txq.vif)->local;
1342 if (cvars == &txqi->def_cvars)
1343 flow = &txqi->tin.default_flow;
1345 flow = &fq->flows[cvars - local->cvars];
1347 return fq_flow_dequeue(fq, flow);
1350 static void codel_drop_func(struct sk_buff *skb,
1353 struct ieee80211_local *local;
1354 struct ieee80211_hw *hw;
1355 struct txq_info *txqi;
1358 local = vif_to_sdata(txqi->txq.vif)->local;
1361 ieee80211_free_txskb(hw, skb);
1364 static struct sk_buff *fq_tin_dequeue_func(struct fq *fq,
1366 struct fq_flow *flow)
1368 struct ieee80211_local *local;
1369 struct txq_info *txqi;
1370 struct codel_vars *cvars;
1371 struct codel_params *cparams;
1372 struct codel_stats *cstats;
1374 local = container_of(fq, struct ieee80211_local, fq);
1375 txqi = container_of(tin, struct txq_info, tin);
1376 cstats = &txqi->cstats;
1378 if (txqi->txq.sta) {
1379 struct sta_info *sta = container_of(txqi->txq.sta,
1380 struct sta_info, sta);
1381 cparams = &sta->cparams;
1383 cparams = &local->cparams;
1386 if (flow == &tin->default_flow)
1387 cvars = &txqi->def_cvars;
1389 cvars = &local->cvars[flow - fq->flows];
1391 return codel_dequeue(txqi,
1397 codel_skb_time_func,
1399 codel_dequeue_func);
1402 static void fq_skb_free_func(struct fq *fq,
1404 struct fq_flow *flow,
1405 struct sk_buff *skb)
1407 struct ieee80211_local *local;
1409 local = container_of(fq, struct ieee80211_local, fq);
1410 ieee80211_free_txskb(&local->hw, skb);
1413 static void ieee80211_txq_enqueue(struct ieee80211_local *local,
1414 struct txq_info *txqi,
1415 struct sk_buff *skb)
1417 struct fq *fq = &local->fq;
1418 struct fq_tin *tin = &txqi->tin;
1419 u32 flow_idx = fq_flow_idx(fq, skb);
1421 ieee80211_set_skb_enqueue_time(skb);
1423 spin_lock_bh(&fq->lock);
1425 * For management frames, don't really apply codel etc.,
1426 * we don't want to apply any shaping or anything we just
1427 * want to simplify the driver API by having them on the
1430 if (unlikely(txqi->txq.tid == IEEE80211_NUM_TIDS)) {
1431 IEEE80211_SKB_CB(skb)->control.flags |=
1432 IEEE80211_TX_INTCFL_NEED_TXPROCESSING;
1433 __skb_queue_tail(&txqi->frags, skb);
1435 fq_tin_enqueue(fq, tin, flow_idx, skb,
1438 spin_unlock_bh(&fq->lock);
1441 static bool fq_vlan_filter_func(struct fq *fq, struct fq_tin *tin,
1442 struct fq_flow *flow, struct sk_buff *skb,
1445 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1447 return info->control.vif == data;
1450 void ieee80211_txq_remove_vlan(struct ieee80211_local *local,
1451 struct ieee80211_sub_if_data *sdata)
1453 struct fq *fq = &local->fq;
1454 struct txq_info *txqi;
1456 struct ieee80211_sub_if_data *ap;
1458 if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_AP_VLAN))
1461 ap = container_of(sdata->bss, struct ieee80211_sub_if_data, u.ap);
1466 txqi = to_txq_info(ap->vif.txq);
1469 spin_lock_bh(&fq->lock);
1470 fq_tin_filter(fq, tin, fq_vlan_filter_func, &sdata->vif,
1472 spin_unlock_bh(&fq->lock);
1475 void ieee80211_txq_init(struct ieee80211_sub_if_data *sdata,
1476 struct sta_info *sta,
1477 struct txq_info *txqi, int tid)
1479 fq_tin_init(&txqi->tin);
1480 codel_vars_init(&txqi->def_cvars);
1481 codel_stats_init(&txqi->cstats);
1482 __skb_queue_head_init(&txqi->frags);
1483 RB_CLEAR_NODE(&txqi->schedule_order);
1485 txqi->txq.vif = &sdata->vif;
1488 sdata->vif.txq = &txqi->txq;
1490 txqi->txq.ac = IEEE80211_AC_BE;
1495 if (tid == IEEE80211_NUM_TIDS) {
1496 if (sdata->vif.type == NL80211_IFTYPE_STATION) {
1497 /* Drivers need to opt in to the management MPDU TXQ */
1498 if (!ieee80211_hw_check(&sdata->local->hw,
1501 } else if (!ieee80211_hw_check(&sdata->local->hw,
1503 /* Drivers need to opt in to the bufferable MMPDU TXQ */
1506 txqi->txq.ac = IEEE80211_AC_VO;
1508 txqi->txq.ac = ieee80211_ac_from_tid(tid);
1511 txqi->txq.sta = &sta->sta;
1512 txqi->txq.tid = tid;
1513 sta->sta.txq[tid] = &txqi->txq;
1516 void ieee80211_txq_purge(struct ieee80211_local *local,
1517 struct txq_info *txqi)
1519 struct fq *fq = &local->fq;
1520 struct fq_tin *tin = &txqi->tin;
1522 spin_lock_bh(&fq->lock);
1523 fq_tin_reset(fq, tin, fq_skb_free_func);
1524 ieee80211_purge_tx_queue(&local->hw, &txqi->frags);
1525 spin_unlock_bh(&fq->lock);
1527 ieee80211_unschedule_txq(&local->hw, &txqi->txq, true);
1530 void ieee80211_txq_set_params(struct ieee80211_local *local)
1532 if (local->hw.wiphy->txq_limit)
1533 local->fq.limit = local->hw.wiphy->txq_limit;
1535 local->hw.wiphy->txq_limit = local->fq.limit;
1537 if (local->hw.wiphy->txq_memory_limit)
1538 local->fq.memory_limit = local->hw.wiphy->txq_memory_limit;
1540 local->hw.wiphy->txq_memory_limit = local->fq.memory_limit;
1542 if (local->hw.wiphy->txq_quantum)
1543 local->fq.quantum = local->hw.wiphy->txq_quantum;
1545 local->hw.wiphy->txq_quantum = local->fq.quantum;
1548 int ieee80211_txq_setup_flows(struct ieee80211_local *local)
1550 struct fq *fq = &local->fq;
1553 bool supp_vht = false;
1554 enum nl80211_band band;
1556 if (!local->ops->wake_tx_queue)
1559 ret = fq_init(fq, 4096);
1564 * If the hardware doesn't support VHT, it is safe to limit the maximum
1565 * queue size. 4 Mbytes is 64 max-size aggregates in 802.11n.
1567 for (band = 0; band < NUM_NL80211_BANDS; band++) {
1568 struct ieee80211_supported_band *sband;
1570 sband = local->hw.wiphy->bands[band];
1574 supp_vht = supp_vht || sband->vht_cap.vht_supported;
1578 fq->memory_limit = 4 << 20; /* 4 Mbytes */
1580 codel_params_init(&local->cparams);
1581 local->cparams.interval = MS2TIME(100);
1582 local->cparams.target = MS2TIME(20);
1583 local->cparams.ecn = true;
1585 local->cvars = kcalloc(fq->flows_cnt, sizeof(local->cvars[0]),
1587 if (!local->cvars) {
1588 spin_lock_bh(&fq->lock);
1589 fq_reset(fq, fq_skb_free_func);
1590 spin_unlock_bh(&fq->lock);
1594 for (i = 0; i < fq->flows_cnt; i++)
1595 codel_vars_init(&local->cvars[i]);
1597 ieee80211_txq_set_params(local);
1602 void ieee80211_txq_teardown_flows(struct ieee80211_local *local)
1604 struct fq *fq = &local->fq;
1606 if (!local->ops->wake_tx_queue)
1609 kfree(local->cvars);
1610 local->cvars = NULL;
1612 spin_lock_bh(&fq->lock);
1613 fq_reset(fq, fq_skb_free_func);
1614 spin_unlock_bh(&fq->lock);
1617 static bool ieee80211_queue_skb(struct ieee80211_local *local,
1618 struct ieee80211_sub_if_data *sdata,
1619 struct sta_info *sta,
1620 struct sk_buff *skb)
1622 struct ieee80211_vif *vif;
1623 struct txq_info *txqi;
1625 if (!local->ops->wake_tx_queue ||
1626 sdata->vif.type == NL80211_IFTYPE_MONITOR)
1629 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
1630 sdata = container_of(sdata->bss,
1631 struct ieee80211_sub_if_data, u.ap);
1634 txqi = ieee80211_get_txq(local, vif, sta, skb);
1639 ieee80211_txq_enqueue(local, txqi, skb);
1641 schedule_and_wake_txq(local, txqi);
1646 static bool ieee80211_tx_frags(struct ieee80211_local *local,
1647 struct ieee80211_vif *vif,
1648 struct sta_info *sta,
1649 struct sk_buff_head *skbs,
1652 struct ieee80211_tx_control control = {};
1653 struct sk_buff *skb, *tmp;
1654 unsigned long flags;
1656 skb_queue_walk_safe(skbs, skb, tmp) {
1657 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1658 int q = info->hw_queue;
1660 #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
1661 if (WARN_ON_ONCE(q >= local->hw.queues)) {
1662 __skb_unlink(skb, skbs);
1663 ieee80211_free_txskb(&local->hw, skb);
1668 spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
1669 if (local->queue_stop_reasons[q] ||
1670 (!txpending && !skb_queue_empty(&local->pending[q]))) {
1671 if (unlikely(info->flags &
1672 IEEE80211_TX_INTFL_OFFCHAN_TX_OK)) {
1673 if (local->queue_stop_reasons[q] &
1674 ~BIT(IEEE80211_QUEUE_STOP_REASON_OFFCHANNEL)) {
1676 * Drop off-channel frames if queues
1677 * are stopped for any reason other
1678 * than off-channel operation. Never
1681 spin_unlock_irqrestore(
1682 &local->queue_stop_reason_lock,
1684 ieee80211_purge_tx_queue(&local->hw,
1691 * Since queue is stopped, queue up frames for
1692 * later transmission from the tx-pending
1693 * tasklet when the queue is woken again.
1696 skb_queue_splice_init(skbs,
1697 &local->pending[q]);
1699 skb_queue_splice_tail_init(skbs,
1700 &local->pending[q]);
1702 spin_unlock_irqrestore(&local->queue_stop_reason_lock,
1707 spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
1709 info->control.vif = vif;
1710 control.sta = sta ? &sta->sta : NULL;
1712 __skb_unlink(skb, skbs);
1713 drv_tx(local, &control, skb);
1720 * Returns false if the frame couldn't be transmitted but was queued instead.
1722 static bool __ieee80211_tx(struct ieee80211_local *local,
1723 struct sk_buff_head *skbs, struct sta_info *sta,
1726 struct ieee80211_tx_info *info;
1727 struct ieee80211_sub_if_data *sdata;
1728 struct ieee80211_vif *vif;
1729 struct sk_buff *skb;
1732 if (WARN_ON(skb_queue_empty(skbs)))
1735 skb = skb_peek(skbs);
1736 info = IEEE80211_SKB_CB(skb);
1737 sdata = vif_to_sdata(info->control.vif);
1738 if (sta && !sta->uploaded)
1741 switch (sdata->vif.type) {
1742 case NL80211_IFTYPE_MONITOR:
1743 if (sdata->u.mntr.flags & MONITOR_FLAG_ACTIVE) {
1747 sdata = rcu_dereference(local->monitor_sdata);
1751 vif->hw_queue[skb_get_queue_mapping(skb)];
1752 } else if (ieee80211_hw_check(&local->hw, QUEUE_CONTROL)) {
1753 ieee80211_purge_tx_queue(&local->hw, skbs);
1758 case NL80211_IFTYPE_AP_VLAN:
1759 sdata = container_of(sdata->bss,
1760 struct ieee80211_sub_if_data, u.ap);
1767 result = ieee80211_tx_frags(local, vif, sta, skbs, txpending);
1769 WARN_ON_ONCE(!skb_queue_empty(skbs));
1775 * Invoke TX handlers, return 0 on success and non-zero if the
1776 * frame was dropped or queued.
1778 * The handlers are split into an early and late part. The latter is everything
1779 * that can be sensitive to reordering, and will be deferred to after packets
1780 * are dequeued from the intermediate queues (when they are enabled).
1782 static int invoke_tx_handlers_early(struct ieee80211_tx_data *tx)
1784 ieee80211_tx_result res = TX_DROP;
1786 #define CALL_TXH(txh) \
1789 if (res != TX_CONTINUE) \
1793 CALL_TXH(ieee80211_tx_h_dynamic_ps);
1794 CALL_TXH(ieee80211_tx_h_check_assoc);
1795 CALL_TXH(ieee80211_tx_h_ps_buf);
1796 CALL_TXH(ieee80211_tx_h_check_control_port_protocol);
1797 CALL_TXH(ieee80211_tx_h_select_key);
1800 if (unlikely(res == TX_DROP)) {
1801 I802_DEBUG_INC(tx->local->tx_handlers_drop);
1803 ieee80211_free_txskb(&tx->local->hw, tx->skb);
1805 ieee80211_purge_tx_queue(&tx->local->hw, &tx->skbs);
1807 } else if (unlikely(res == TX_QUEUED)) {
1808 I802_DEBUG_INC(tx->local->tx_handlers_queued);
1816 * Late handlers can be called while the sta lock is held. Handlers that can
1817 * cause packets to be generated will cause deadlock!
1819 static int invoke_tx_handlers_late(struct ieee80211_tx_data *tx)
1821 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
1822 ieee80211_tx_result res = TX_CONTINUE;
1824 if (!ieee80211_hw_check(&tx->local->hw, HAS_RATE_CONTROL))
1825 CALL_TXH(ieee80211_tx_h_rate_ctrl);
1827 if (unlikely(info->flags & IEEE80211_TX_INTFL_RETRANSMISSION)) {
1828 __skb_queue_tail(&tx->skbs, tx->skb);
1833 CALL_TXH(ieee80211_tx_h_michael_mic_add);
1834 CALL_TXH(ieee80211_tx_h_sequence);
1835 CALL_TXH(ieee80211_tx_h_fragment);
1836 /* handlers after fragment must be aware of tx info fragmentation! */
1837 CALL_TXH(ieee80211_tx_h_stats);
1838 CALL_TXH(ieee80211_tx_h_encrypt);
1839 if (!ieee80211_hw_check(&tx->local->hw, HAS_RATE_CONTROL))
1840 CALL_TXH(ieee80211_tx_h_calculate_duration);
1844 if (unlikely(res == TX_DROP)) {
1845 I802_DEBUG_INC(tx->local->tx_handlers_drop);
1847 ieee80211_free_txskb(&tx->local->hw, tx->skb);
1849 ieee80211_purge_tx_queue(&tx->local->hw, &tx->skbs);
1851 } else if (unlikely(res == TX_QUEUED)) {
1852 I802_DEBUG_INC(tx->local->tx_handlers_queued);
1859 static int invoke_tx_handlers(struct ieee80211_tx_data *tx)
1861 int r = invoke_tx_handlers_early(tx);
1865 return invoke_tx_handlers_late(tx);
1868 bool ieee80211_tx_prepare_skb(struct ieee80211_hw *hw,
1869 struct ieee80211_vif *vif, struct sk_buff *skb,
1870 int band, struct ieee80211_sta **sta)
1872 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
1873 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1874 struct ieee80211_tx_data tx;
1875 struct sk_buff *skb2;
1877 if (ieee80211_tx_prepare(sdata, &tx, NULL, skb) == TX_DROP)
1881 info->control.vif = vif;
1882 info->hw_queue = vif->hw_queue[skb_get_queue_mapping(skb)];
1884 if (invoke_tx_handlers(&tx))
1889 *sta = &tx.sta->sta;
1894 /* this function isn't suitable for fragmented data frames */
1895 skb2 = __skb_dequeue(&tx.skbs);
1896 if (WARN_ON(skb2 != skb || !skb_queue_empty(&tx.skbs))) {
1897 ieee80211_free_txskb(hw, skb2);
1898 ieee80211_purge_tx_queue(hw, &tx.skbs);
1904 EXPORT_SYMBOL(ieee80211_tx_prepare_skb);
1907 * Returns false if the frame couldn't be transmitted but was queued instead.
1909 static bool ieee80211_tx(struct ieee80211_sub_if_data *sdata,
1910 struct sta_info *sta, struct sk_buff *skb,
1913 struct ieee80211_local *local = sdata->local;
1914 struct ieee80211_tx_data tx;
1915 ieee80211_tx_result res_prepare;
1916 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1919 if (unlikely(skb->len < 10)) {
1924 /* initialises tx */
1925 res_prepare = ieee80211_tx_prepare(sdata, &tx, sta, skb);
1927 if (unlikely(res_prepare == TX_DROP)) {
1928 ieee80211_free_txskb(&local->hw, skb);
1930 } else if (unlikely(res_prepare == TX_QUEUED)) {
1934 /* set up hw_queue value early */
1935 if (!(info->flags & IEEE80211_TX_CTL_TX_OFFCHAN) ||
1936 !ieee80211_hw_check(&local->hw, QUEUE_CONTROL))
1938 sdata->vif.hw_queue[skb_get_queue_mapping(skb)];
1940 if (invoke_tx_handlers_early(&tx))
1943 if (ieee80211_queue_skb(local, sdata, tx.sta, tx.skb))
1946 if (!invoke_tx_handlers_late(&tx))
1947 result = __ieee80211_tx(local, &tx.skbs, tx.sta, txpending);
1952 /* device xmit handlers */
1954 enum ieee80211_encrypt {
1960 static int ieee80211_skb_resize(struct ieee80211_sub_if_data *sdata,
1961 struct sk_buff *skb,
1963 enum ieee80211_encrypt encrypt)
1965 struct ieee80211_local *local = sdata->local;
1969 enc_tailroom = encrypt == ENCRYPT_MGMT ||
1970 (encrypt == ENCRYPT_DATA &&
1971 sdata->crypto_tx_tailroom_needed_cnt);
1974 tail_need = IEEE80211_ENCRYPT_TAILROOM;
1975 tail_need -= skb_tailroom(skb);
1976 tail_need = max_t(int, tail_need, 0);
1979 if (skb_cloned(skb) &&
1980 (!ieee80211_hw_check(&local->hw, SUPPORTS_CLONED_SKBS) ||
1981 !skb_clone_writable(skb, ETH_HLEN) || enc_tailroom))
1982 I802_DEBUG_INC(local->tx_expand_skb_head_cloned);
1983 else if (head_need || tail_need)
1984 I802_DEBUG_INC(local->tx_expand_skb_head);
1988 if (pskb_expand_head(skb, head_need, tail_need, GFP_ATOMIC)) {
1989 wiphy_debug(local->hw.wiphy,
1990 "failed to reallocate TX buffer\n");
1997 void ieee80211_xmit(struct ieee80211_sub_if_data *sdata,
1998 struct sta_info *sta, struct sk_buff *skb)
2000 struct ieee80211_local *local = sdata->local;
2001 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
2002 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
2004 enum ieee80211_encrypt encrypt;
2006 if (info->flags & IEEE80211_TX_INTFL_DONT_ENCRYPT)
2007 encrypt = ENCRYPT_NO;
2008 else if (ieee80211_is_mgmt(hdr->frame_control))
2009 encrypt = ENCRYPT_MGMT;
2011 encrypt = ENCRYPT_DATA;
2013 headroom = local->tx_headroom;
2014 if (encrypt != ENCRYPT_NO)
2015 headroom += sdata->encrypt_headroom;
2016 headroom -= skb_headroom(skb);
2017 headroom = max_t(int, 0, headroom);
2019 if (ieee80211_skb_resize(sdata, skb, headroom, encrypt)) {
2020 ieee80211_free_txskb(&local->hw, skb);
2024 /* reload after potential resize */
2025 hdr = (struct ieee80211_hdr *) skb->data;
2026 info->control.vif = &sdata->vif;
2028 if (ieee80211_vif_is_mesh(&sdata->vif)) {
2029 if (ieee80211_is_data(hdr->frame_control) &&
2030 is_unicast_ether_addr(hdr->addr1)) {
2031 if (mesh_nexthop_resolve(sdata, skb))
2032 return; /* skb queued: don't free */
2034 ieee80211_mps_set_frame_flags(sdata, NULL, hdr);
2038 ieee80211_set_qos_hdr(sdata, skb);
2039 ieee80211_tx(sdata, sta, skb, false);
2042 static bool ieee80211_validate_radiotap_len(struct sk_buff *skb)
2044 struct ieee80211_radiotap_header *rthdr =
2045 (struct ieee80211_radiotap_header *)skb->data;
2047 /* check for not even having the fixed radiotap header part */
2048 if (unlikely(skb->len < sizeof(struct ieee80211_radiotap_header)))
2049 return false; /* too short to be possibly valid */
2051 /* is it a header version we can trust to find length from? */
2052 if (unlikely(rthdr->it_version))
2053 return false; /* only version 0 is supported */
2055 /* does the skb contain enough to deliver on the alleged length? */
2056 if (unlikely(skb->len < ieee80211_get_radiotap_len(skb->data)))
2057 return false; /* skb too short for claimed rt header extent */
2062 bool ieee80211_parse_tx_radiotap(struct sk_buff *skb,
2063 struct net_device *dev)
2065 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
2066 struct ieee80211_radiotap_iterator iterator;
2067 struct ieee80211_radiotap_header *rthdr =
2068 (struct ieee80211_radiotap_header *) skb->data;
2069 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
2070 int ret = ieee80211_radiotap_iterator_init(&iterator, rthdr, skb->len,
2074 bool rate_found = false;
2075 u8 rate_retries = 0;
2077 u8 mcs_known, mcs_flags, mcs_bw;
2079 u8 vht_mcs = 0, vht_nss = 0;
2082 if (!ieee80211_validate_radiotap_len(skb))
2085 info->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT |
2086 IEEE80211_TX_CTL_DONTFRAG;
2089 * for every radiotap entry that is present
2090 * (ieee80211_radiotap_iterator_next returns -ENOENT when no more
2091 * entries present, or -EINVAL on error)
2095 ret = ieee80211_radiotap_iterator_next(&iterator);
2100 /* see if this argument is something we can use */
2101 switch (iterator.this_arg_index) {
2103 * You must take care when dereferencing iterator.this_arg
2104 * for multibyte types... the pointer is not aligned. Use
2105 * get_unaligned((type *)iterator.this_arg) to dereference
2106 * iterator.this_arg for type "type" safely on all arches.
2108 case IEEE80211_RADIOTAP_FLAGS:
2109 if (*iterator.this_arg & IEEE80211_RADIOTAP_F_FCS) {
2111 * this indicates that the skb we have been
2112 * handed has the 32-bit FCS CRC at the end...
2113 * we should react to that by snipping it off
2114 * because it will be recomputed and added
2117 if (skb->len < (iterator._max_length + FCS_LEN))
2120 skb_trim(skb, skb->len - FCS_LEN);
2122 if (*iterator.this_arg & IEEE80211_RADIOTAP_F_WEP)
2123 info->flags &= ~IEEE80211_TX_INTFL_DONT_ENCRYPT;
2124 if (*iterator.this_arg & IEEE80211_RADIOTAP_F_FRAG)
2125 info->flags &= ~IEEE80211_TX_CTL_DONTFRAG;
2128 case IEEE80211_RADIOTAP_TX_FLAGS:
2129 txflags = get_unaligned_le16(iterator.this_arg);
2130 if (txflags & IEEE80211_RADIOTAP_F_TX_NOACK)
2131 info->flags |= IEEE80211_TX_CTL_NO_ACK;
2132 if (txflags & IEEE80211_RADIOTAP_F_TX_NOSEQNO)
2133 info->control.flags |= IEEE80211_TX_CTRL_NO_SEQNO;
2134 if (txflags & IEEE80211_RADIOTAP_F_TX_ORDER)
2135 info->control.flags |=
2136 IEEE80211_TX_CTRL_DONT_REORDER;
2139 case IEEE80211_RADIOTAP_RATE:
2140 rate = *iterator.this_arg;
2145 case IEEE80211_RADIOTAP_DATA_RETRIES:
2146 rate_retries = *iterator.this_arg;
2149 case IEEE80211_RADIOTAP_MCS:
2150 mcs_known = iterator.this_arg[0];
2151 mcs_flags = iterator.this_arg[1];
2152 if (!(mcs_known & IEEE80211_RADIOTAP_MCS_HAVE_MCS))
2156 rate = iterator.this_arg[2];
2157 rate_flags = IEEE80211_TX_RC_MCS;
2159 if (mcs_known & IEEE80211_RADIOTAP_MCS_HAVE_GI &&
2160 mcs_flags & IEEE80211_RADIOTAP_MCS_SGI)
2161 rate_flags |= IEEE80211_TX_RC_SHORT_GI;
2163 mcs_bw = mcs_flags & IEEE80211_RADIOTAP_MCS_BW_MASK;
2164 if (mcs_known & IEEE80211_RADIOTAP_MCS_HAVE_BW &&
2165 mcs_bw == IEEE80211_RADIOTAP_MCS_BW_40)
2166 rate_flags |= IEEE80211_TX_RC_40_MHZ_WIDTH;
2168 if (mcs_known & IEEE80211_RADIOTAP_MCS_HAVE_FEC &&
2169 mcs_flags & IEEE80211_RADIOTAP_MCS_FEC_LDPC)
2170 info->flags |= IEEE80211_TX_CTL_LDPC;
2172 if (mcs_known & IEEE80211_RADIOTAP_MCS_HAVE_STBC) {
2173 u8 stbc = u8_get_bits(mcs_flags,
2174 IEEE80211_RADIOTAP_MCS_STBC_MASK);
2177 u32_encode_bits(stbc,
2178 IEEE80211_TX_CTL_STBC);
2182 case IEEE80211_RADIOTAP_VHT:
2183 vht_known = get_unaligned_le16(iterator.this_arg);
2186 rate_flags = IEEE80211_TX_RC_VHT_MCS;
2187 if ((vht_known & IEEE80211_RADIOTAP_VHT_KNOWN_GI) &&
2188 (iterator.this_arg[2] &
2189 IEEE80211_RADIOTAP_VHT_FLAG_SGI))
2190 rate_flags |= IEEE80211_TX_RC_SHORT_GI;
2192 IEEE80211_RADIOTAP_VHT_KNOWN_BANDWIDTH) {
2193 if (iterator.this_arg[3] == 1)
2195 IEEE80211_TX_RC_40_MHZ_WIDTH;
2196 else if (iterator.this_arg[3] == 4)
2198 IEEE80211_TX_RC_80_MHZ_WIDTH;
2199 else if (iterator.this_arg[3] == 11)
2201 IEEE80211_TX_RC_160_MHZ_WIDTH;
2204 vht_mcs = iterator.this_arg[4] >> 4;
2207 vht_nss = iterator.this_arg[4] & 0xF;
2208 if (!vht_nss || vht_nss > 8)
2213 * Please update the file
2214 * Documentation/networking/mac80211-injection.rst
2215 * when parsing new fields here.
2223 if (ret != -ENOENT) /* ie, if we didn't simply run out of fields */
2227 struct ieee80211_supported_band *sband =
2228 local->hw.wiphy->bands[info->band];
2230 info->control.flags |= IEEE80211_TX_CTRL_RATE_INJECT;
2232 for (i = 0; i < IEEE80211_TX_MAX_RATES; i++) {
2233 info->control.rates[i].idx = -1;
2234 info->control.rates[i].flags = 0;
2235 info->control.rates[i].count = 0;
2238 if (rate_flags & IEEE80211_TX_RC_MCS) {
2239 info->control.rates[0].idx = rate;
2240 } else if (rate_flags & IEEE80211_TX_RC_VHT_MCS) {
2241 ieee80211_rate_set_vht(info->control.rates, vht_mcs,
2244 for (i = 0; i < sband->n_bitrates; i++) {
2245 if (rate * 5 != sband->bitrates[i].bitrate)
2248 info->control.rates[0].idx = i;
2253 if (info->control.rates[0].idx < 0)
2254 info->control.flags &= ~IEEE80211_TX_CTRL_RATE_INJECT;
2256 info->control.rates[0].flags = rate_flags;
2257 info->control.rates[0].count = min_t(u8, rate_retries + 1,
2258 local->hw.max_rate_tries);
2264 netdev_tx_t ieee80211_monitor_start_xmit(struct sk_buff *skb,
2265 struct net_device *dev)
2267 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
2268 struct ieee80211_chanctx_conf *chanctx_conf;
2269 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
2270 struct ieee80211_hdr *hdr;
2271 struct ieee80211_sub_if_data *tmp_sdata, *sdata;
2272 struct cfg80211_chan_def *chandef;
2276 memset(info, 0, sizeof(*info));
2277 info->flags = IEEE80211_TX_CTL_REQ_TX_STATUS |
2278 IEEE80211_TX_CTL_INJECTED;
2280 /* Sanity-check the length of the radiotap header */
2281 if (!ieee80211_validate_radiotap_len(skb))
2284 /* we now know there is a radiotap header with a length we can use */
2285 len_rthdr = ieee80211_get_radiotap_len(skb->data);
2288 * fix up the pointers accounting for the radiotap
2289 * header still being in there. We are being given
2290 * a precooked IEEE80211 header so no need for
2293 skb_set_mac_header(skb, len_rthdr);
2295 * these are just fixed to the end of the rt area since we
2296 * don't have any better information and at this point, nobody cares
2298 skb_set_network_header(skb, len_rthdr);
2299 skb_set_transport_header(skb, len_rthdr);
2301 if (skb->len < len_rthdr + 2)
2304 hdr = (struct ieee80211_hdr *)(skb->data + len_rthdr);
2305 hdrlen = ieee80211_hdrlen(hdr->frame_control);
2307 if (skb->len < len_rthdr + hdrlen)
2311 * Initialize skb->protocol if the injected frame is a data frame
2312 * carrying a rfc1042 header
2314 if (ieee80211_is_data(hdr->frame_control) &&
2315 skb->len >= len_rthdr + hdrlen + sizeof(rfc1042_header) + 2) {
2316 u8 *payload = (u8 *)hdr + hdrlen;
2318 if (ether_addr_equal(payload, rfc1042_header))
2319 skb->protocol = cpu_to_be16((payload[6] << 8) |
2326 * We process outgoing injected frames that have a local address
2327 * we handle as though they are non-injected frames.
2328 * This code here isn't entirely correct, the local MAC address
2329 * isn't always enough to find the interface to use; for proper
2330 * VLAN support we have an nl80211-based mechanism.
2332 * This is necessary, for example, for old hostapd versions that
2333 * don't use nl80211-based management TX/RX.
2335 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2337 list_for_each_entry_rcu(tmp_sdata, &local->interfaces, list) {
2338 if (!ieee80211_sdata_running(tmp_sdata))
2340 if (tmp_sdata->vif.type == NL80211_IFTYPE_MONITOR ||
2341 tmp_sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
2343 if (ether_addr_equal(tmp_sdata->vif.addr, hdr->addr2)) {
2349 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
2350 if (!chanctx_conf) {
2351 tmp_sdata = rcu_dereference(local->monitor_sdata);
2354 rcu_dereference(tmp_sdata->vif.chanctx_conf);
2358 chandef = &chanctx_conf->def;
2359 else if (!local->use_chanctx)
2360 chandef = &local->_oper_chandef;
2365 * Frame injection is not allowed if beaconing is not allowed
2366 * or if we need radar detection. Beaconing is usually not allowed when
2367 * the mode or operation (Adhoc, AP, Mesh) does not support DFS.
2368 * Passive scan is also used in world regulatory domains where
2369 * your country is not known and as such it should be treated as
2370 * NO TX unless the channel is explicitly allowed in which case
2371 * your current regulatory domain would not have the passive scan
2374 * Since AP mode uses monitor interfaces to inject/TX management
2375 * frames we can make AP mode the exception to this rule once it
2376 * supports radar detection as its implementation can deal with
2377 * radar detection by itself. We can do that later by adding a
2378 * monitor flag interfaces used for AP support.
2380 if (!cfg80211_reg_can_beacon(local->hw.wiphy, chandef,
2384 info->band = chandef->chan->band;
2386 /* Initialize skb->priority according to frame type and TID class,
2387 * with respect to the sub interface that the frame will actually
2388 * be transmitted on. If the DONT_REORDER flag is set, the original
2389 * skb-priority is preserved to assure frames injected with this
2390 * flag are not reordered relative to each other.
2392 ieee80211_select_queue_80211(sdata, skb, hdr);
2393 skb_set_queue_mapping(skb, ieee80211_ac_from_tid(skb->priority));
2396 * Process the radiotap header. This will now take into account the
2397 * selected chandef above to accurately set injection rates and
2400 if (!ieee80211_parse_tx_radiotap(skb, dev))
2403 /* remove the injection radiotap header */
2404 skb_pull(skb, len_rthdr);
2406 ieee80211_xmit(sdata, NULL, skb);
2409 return NETDEV_TX_OK;
2415 return NETDEV_TX_OK; /* meaning, we dealt with the skb */
2418 static inline bool ieee80211_is_tdls_setup(struct sk_buff *skb)
2420 u16 ethertype = (skb->data[12] << 8) | skb->data[13];
2422 return ethertype == ETH_P_TDLS &&
2424 skb->data[14] == WLAN_TDLS_SNAP_RFTYPE;
2427 int ieee80211_lookup_ra_sta(struct ieee80211_sub_if_data *sdata,
2428 struct sk_buff *skb,
2429 struct sta_info **sta_out)
2431 struct sta_info *sta;
2433 switch (sdata->vif.type) {
2434 case NL80211_IFTYPE_AP_VLAN:
2435 sta = rcu_dereference(sdata->u.vlan.sta);
2439 } else if (sdata->wdev.use_4addr) {
2443 case NL80211_IFTYPE_AP:
2444 case NL80211_IFTYPE_OCB:
2445 case NL80211_IFTYPE_ADHOC:
2446 if (is_multicast_ether_addr(skb->data)) {
2447 *sta_out = ERR_PTR(-ENOENT);
2450 sta = sta_info_get_bss(sdata, skb->data);
2452 #ifdef CONFIG_MAC80211_MESH
2453 case NL80211_IFTYPE_MESH_POINT:
2454 /* determined much later */
2458 case NL80211_IFTYPE_STATION:
2459 if (sdata->wdev.wiphy->flags & WIPHY_FLAG_SUPPORTS_TDLS) {
2460 sta = sta_info_get(sdata, skb->data);
2461 if (sta && test_sta_flag(sta, WLAN_STA_TDLS_PEER)) {
2462 if (test_sta_flag(sta,
2463 WLAN_STA_TDLS_PEER_AUTH)) {
2469 * TDLS link during setup - throw out frames to
2470 * peer. Allow TDLS-setup frames to unauthorized
2471 * peers for the special case of a link teardown
2472 * after a TDLS sta is removed due to being
2475 if (!ieee80211_is_tdls_setup(skb))
2481 sta = sta_info_get(sdata, sdata->u.mgd.bssid);
2489 *sta_out = sta ?: ERR_PTR(-ENOENT);
2493 static u16 ieee80211_store_ack_skb(struct ieee80211_local *local,
2494 struct sk_buff *skb,
2498 struct sk_buff *ack_skb;
2502 ack_skb = skb_clone_sk(skb);
2504 ack_skb = skb_clone(skb, GFP_ATOMIC);
2507 unsigned long flags;
2510 spin_lock_irqsave(&local->ack_status_lock, flags);
2511 id = idr_alloc(&local->ack_status_frames, ack_skb,
2512 1, 0x2000, GFP_ATOMIC);
2513 spin_unlock_irqrestore(&local->ack_status_lock, flags);
2517 *info_flags |= IEEE80211_TX_CTL_REQ_TX_STATUS;
2519 *cookie = ieee80211_mgmt_tx_cookie(local);
2520 IEEE80211_SKB_CB(ack_skb)->ack.cookie = *cookie;
2531 * ieee80211_build_hdr - build 802.11 header in the given frame
2532 * @sdata: virtual interface to build the header for
2533 * @skb: the skb to build the header in
2534 * @info_flags: skb flags to set
2535 * @sta: the station pointer
2536 * @ctrl_flags: info control flags to set
2537 * @cookie: cookie pointer to fill (if not %NULL)
2539 * This function takes the skb with 802.3 header and reformats the header to
2540 * the appropriate IEEE 802.11 header based on which interface the packet is
2541 * being transmitted on.
2543 * Note that this function also takes care of the TX status request and
2544 * potential unsharing of the SKB - this needs to be interleaved with the
2547 * The function requires the read-side RCU lock held
2549 * Returns: the (possibly reallocated) skb or an ERR_PTR() code
2551 static struct sk_buff *ieee80211_build_hdr(struct ieee80211_sub_if_data *sdata,
2552 struct sk_buff *skb, u32 info_flags,
2553 struct sta_info *sta, u32 ctrl_flags,
2556 struct ieee80211_local *local = sdata->local;
2557 struct ieee80211_tx_info *info;
2559 u16 ethertype, hdrlen, meshhdrlen = 0;
2561 struct ieee80211_hdr hdr;
2562 struct ieee80211s_hdr mesh_hdr __maybe_unused;
2563 struct mesh_path __maybe_unused *mppath = NULL, *mpath = NULL;
2564 const u8 *encaps_data;
2565 int encaps_len, skip_header_bytes;
2566 bool wme_sta = false, authorized = false;
2570 struct ieee80211_chanctx_conf *chanctx_conf;
2571 struct ieee80211_sub_if_data *ap_sdata;
2572 enum nl80211_band band;
2578 #ifdef CONFIG_MAC80211_DEBUGFS
2579 if (local->force_tx_status)
2580 info_flags |= IEEE80211_TX_CTL_REQ_TX_STATUS;
2583 /* convert Ethernet header to proper 802.11 header (based on
2584 * operation mode) */
2585 ethertype = (skb->data[12] << 8) | skb->data[13];
2586 fc = cpu_to_le16(IEEE80211_FTYPE_DATA | IEEE80211_STYPE_DATA);
2588 switch (sdata->vif.type) {
2589 case NL80211_IFTYPE_AP_VLAN:
2590 if (sdata->wdev.use_4addr) {
2591 fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS);
2593 memcpy(hdr.addr1, sta->sta.addr, ETH_ALEN);
2594 memcpy(hdr.addr2, sdata->vif.addr, ETH_ALEN);
2595 memcpy(hdr.addr3, skb->data, ETH_ALEN);
2596 memcpy(hdr.addr4, skb->data + ETH_ALEN, ETH_ALEN);
2598 authorized = test_sta_flag(sta, WLAN_STA_AUTHORIZED);
2599 wme_sta = sta->sta.wme;
2601 ap_sdata = container_of(sdata->bss, struct ieee80211_sub_if_data,
2603 chanctx_conf = rcu_dereference(ap_sdata->vif.chanctx_conf);
2604 if (!chanctx_conf) {
2608 band = chanctx_conf->def.chan->band;
2609 if (sdata->wdev.use_4addr)
2612 case NL80211_IFTYPE_AP:
2613 if (sdata->vif.type == NL80211_IFTYPE_AP)
2614 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
2615 if (!chanctx_conf) {
2619 fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS);
2621 memcpy(hdr.addr1, skb->data, ETH_ALEN);
2622 memcpy(hdr.addr2, sdata->vif.addr, ETH_ALEN);
2623 memcpy(hdr.addr3, skb->data + ETH_ALEN, ETH_ALEN);
2625 band = chanctx_conf->def.chan->band;
2627 #ifdef CONFIG_MAC80211_MESH
2628 case NL80211_IFTYPE_MESH_POINT:
2629 if (!is_multicast_ether_addr(skb->data)) {
2630 struct sta_info *next_hop;
2631 bool mpp_lookup = true;
2633 mpath = mesh_path_lookup(sdata, skb->data);
2636 next_hop = rcu_dereference(mpath->next_hop);
2638 !(mpath->flags & (MESH_PATH_ACTIVE |
2639 MESH_PATH_RESOLVING)))
2644 mppath = mpp_path_lookup(sdata, skb->data);
2646 mppath->exp_time = jiffies;
2649 if (mppath && mpath)
2650 mesh_path_del(sdata, mpath->dst);
2654 * Use address extension if it is a packet from
2655 * another interface or if we know the destination
2656 * is being proxied by a portal (i.e. portal address
2657 * differs from proxied address)
2659 if (ether_addr_equal(sdata->vif.addr, skb->data + ETH_ALEN) &&
2660 !(mppath && !ether_addr_equal(mppath->mpp, skb->data))) {
2661 hdrlen = ieee80211_fill_mesh_addresses(&hdr, &fc,
2662 skb->data, skb->data + ETH_ALEN);
2663 meshhdrlen = ieee80211_new_mesh_header(sdata, &mesh_hdr,
2666 /* DS -> MBSS (802.11-2012 13.11.3.3).
2667 * For unicast with unknown forwarding information,
2668 * destination might be in the MBSS or if that fails
2669 * forwarded to another mesh gate. In either case
2670 * resolution will be handled in ieee80211_xmit(), so
2671 * leave the original DA. This also works for mcast */
2672 const u8 *mesh_da = skb->data;
2675 mesh_da = mppath->mpp;
2677 mesh_da = mpath->dst;
2679 hdrlen = ieee80211_fill_mesh_addresses(&hdr, &fc,
2680 mesh_da, sdata->vif.addr);
2681 if (is_multicast_ether_addr(mesh_da))
2682 /* DA TA mSA AE:SA */
2683 meshhdrlen = ieee80211_new_mesh_header(
2685 skb->data + ETH_ALEN, NULL);
2687 /* RA TA mDA mSA AE:DA SA */
2688 meshhdrlen = ieee80211_new_mesh_header(
2689 sdata, &mesh_hdr, skb->data,
2690 skb->data + ETH_ALEN);
2693 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
2694 if (!chanctx_conf) {
2698 band = chanctx_conf->def.chan->band;
2700 /* For injected frames, fill RA right away as nexthop lookup
2703 if ((ctrl_flags & IEEE80211_TX_CTRL_SKIP_MPATH_LOOKUP) &&
2704 is_zero_ether_addr(hdr.addr1))
2705 memcpy(hdr.addr1, skb->data, ETH_ALEN);
2708 case NL80211_IFTYPE_STATION:
2709 /* we already did checks when looking up the RA STA */
2710 tdls_peer = test_sta_flag(sta, WLAN_STA_TDLS_PEER);
2714 memcpy(hdr.addr1, skb->data, ETH_ALEN);
2715 memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN);
2716 memcpy(hdr.addr3, sdata->u.mgd.bssid, ETH_ALEN);
2718 } else if (sdata->u.mgd.use_4addr &&
2719 cpu_to_be16(ethertype) != sdata->control_port_protocol) {
2720 fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS |
2721 IEEE80211_FCTL_TODS);
2723 memcpy(hdr.addr1, sdata->u.mgd.bssid, ETH_ALEN);
2724 memcpy(hdr.addr2, sdata->vif.addr, ETH_ALEN);
2725 memcpy(hdr.addr3, skb->data, ETH_ALEN);
2726 memcpy(hdr.addr4, skb->data + ETH_ALEN, ETH_ALEN);
2729 fc |= cpu_to_le16(IEEE80211_FCTL_TODS);
2731 memcpy(hdr.addr1, sdata->u.mgd.bssid, ETH_ALEN);
2732 memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN);
2733 memcpy(hdr.addr3, skb->data, ETH_ALEN);
2736 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
2737 if (!chanctx_conf) {
2741 band = chanctx_conf->def.chan->band;
2743 case NL80211_IFTYPE_OCB:
2745 memcpy(hdr.addr1, skb->data, ETH_ALEN);
2746 memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN);
2747 eth_broadcast_addr(hdr.addr3);
2749 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
2750 if (!chanctx_conf) {
2754 band = chanctx_conf->def.chan->band;
2756 case NL80211_IFTYPE_ADHOC:
2758 memcpy(hdr.addr1, skb->data, ETH_ALEN);
2759 memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN);
2760 memcpy(hdr.addr3, sdata->u.ibss.bssid, ETH_ALEN);
2762 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
2763 if (!chanctx_conf) {
2767 band = chanctx_conf->def.chan->band;
2774 multicast = is_multicast_ether_addr(hdr.addr1);
2776 /* sta is always NULL for mesh */
2778 authorized = test_sta_flag(sta, WLAN_STA_AUTHORIZED);
2779 wme_sta = sta->sta.wme;
2780 } else if (ieee80211_vif_is_mesh(&sdata->vif)) {
2781 /* For mesh, the use of the QoS header is mandatory */
2785 /* receiver does QoS (which also means we do) use it */
2787 fc |= cpu_to_le16(IEEE80211_STYPE_QOS_DATA);
2792 * Drop unicast frames to unauthorised stations unless they are
2793 * EAPOL frames from the local station.
2795 if (unlikely(!ieee80211_vif_is_mesh(&sdata->vif) &&
2796 (sdata->vif.type != NL80211_IFTYPE_OCB) &&
2797 !multicast && !authorized &&
2798 (cpu_to_be16(ethertype) != sdata->control_port_protocol ||
2799 !ether_addr_equal(sdata->vif.addr, skb->data + ETH_ALEN)))) {
2800 #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
2801 net_info_ratelimited("%s: dropped frame to %pM (unauthorized port)\n",
2802 sdata->name, hdr.addr1);
2805 I802_DEBUG_INC(local->tx_handlers_drop_unauth_port);
2811 if (unlikely(!multicast && ((skb->sk &&
2812 skb_shinfo(skb)->tx_flags & SKBTX_WIFI_STATUS) ||
2813 ctrl_flags & IEEE80211_TX_CTL_REQ_TX_STATUS)))
2814 info_id = ieee80211_store_ack_skb(local, skb, &info_flags,
2818 * If the skb is shared we need to obtain our own copy.
2820 if (skb_shared(skb)) {
2821 struct sk_buff *tmp_skb = skb;
2823 /* can't happen -- skb is a clone if info_id != 0 */
2826 skb = skb_clone(skb, GFP_ATOMIC);
2835 hdr.frame_control = fc;
2836 hdr.duration_id = 0;
2839 skip_header_bytes = ETH_HLEN;
2840 if (ethertype == ETH_P_AARP || ethertype == ETH_P_IPX) {
2841 encaps_data = bridge_tunnel_header;
2842 encaps_len = sizeof(bridge_tunnel_header);
2843 skip_header_bytes -= 2;
2844 } else if (ethertype >= ETH_P_802_3_MIN) {
2845 encaps_data = rfc1042_header;
2846 encaps_len = sizeof(rfc1042_header);
2847 skip_header_bytes -= 2;
2853 skb_pull(skb, skip_header_bytes);
2854 head_need = hdrlen + encaps_len + meshhdrlen - skb_headroom(skb);
2857 * So we need to modify the skb header and hence need a copy of
2858 * that. The head_need variable above doesn't, so far, include
2859 * the needed header space that we don't need right away. If we
2860 * can, then we don't reallocate right now but only after the
2861 * frame arrives at the master device (if it does...)
2863 * If we cannot, however, then we will reallocate to include all
2864 * the ever needed space. Also, if we need to reallocate it anyway,
2865 * make it big enough for everything we may ever need.
2868 if (head_need > 0 || skb_cloned(skb)) {
2869 head_need += sdata->encrypt_headroom;
2870 head_need += local->tx_headroom;
2871 head_need = max_t(int, 0, head_need);
2872 if (ieee80211_skb_resize(sdata, skb, head_need, ENCRYPT_DATA)) {
2873 ieee80211_free_txskb(&local->hw, skb);
2875 return ERR_PTR(-ENOMEM);
2880 memcpy(skb_push(skb, encaps_len), encaps_data, encaps_len);
2882 #ifdef CONFIG_MAC80211_MESH
2884 memcpy(skb_push(skb, meshhdrlen), &mesh_hdr, meshhdrlen);
2887 if (ieee80211_is_data_qos(fc)) {
2888 __le16 *qos_control;
2890 qos_control = skb_push(skb, 2);
2891 memcpy(skb_push(skb, hdrlen - 2), &hdr, hdrlen - 2);
2893 * Maybe we could actually set some fields here, for now just
2894 * initialise to zero to indicate no special operation.
2898 memcpy(skb_push(skb, hdrlen), &hdr, hdrlen);
2900 skb_reset_mac_header(skb);
2902 info = IEEE80211_SKB_CB(skb);
2903 memset(info, 0, sizeof(*info));
2905 info->flags = info_flags;
2906 info->ack_frame_id = info_id;
2908 info->control.flags = ctrl_flags;
2913 return ERR_PTR(ret);
2917 * fast-xmit overview
2919 * The core idea of this fast-xmit is to remove per-packet checks by checking
2920 * them out of band. ieee80211_check_fast_xmit() implements the out-of-band
2921 * checks that are needed to get the sta->fast_tx pointer assigned, after which
2922 * much less work can be done per packet. For example, fragmentation must be
2923 * disabled or the fast_tx pointer will not be set. All the conditions are seen
2926 * Once assigned, the fast_tx data structure also caches the per-packet 802.11
2927 * header and other data to aid packet processing in ieee80211_xmit_fast().
2929 * The most difficult part of this is that when any of these assumptions
2930 * change, an external trigger (i.e. a call to ieee80211_clear_fast_xmit(),
2931 * ieee80211_check_fast_xmit() or friends) is required to reset the data,
2932 * since the per-packet code no longer checks the conditions. This is reflected
2933 * by the calls to these functions throughout the rest of the code, and must be
2934 * maintained if any of the TX path checks change.
2937 void ieee80211_check_fast_xmit(struct sta_info *sta)
2939 struct ieee80211_fast_tx build = {}, *fast_tx = NULL, *old;
2940 struct ieee80211_local *local = sta->local;
2941 struct ieee80211_sub_if_data *sdata = sta->sdata;
2942 struct ieee80211_hdr *hdr = (void *)build.hdr;
2943 struct ieee80211_chanctx_conf *chanctx_conf;
2946 if (!ieee80211_hw_check(&local->hw, SUPPORT_FAST_XMIT))
2949 /* Locking here protects both the pointer itself, and against concurrent
2950 * invocations winning data access races to, e.g., the key pointer that
2952 * Without it, the invocation of this function right after the key
2953 * pointer changes wouldn't be sufficient, as another CPU could access
2954 * the pointer, then stall, and then do the cache update after the CPU
2955 * that invalidated the key.
2956 * With the locking, such scenarios cannot happen as the check for the
2957 * key and the fast-tx assignment are done atomically, so the CPU that
2958 * modifies the key will either wait or other one will see the key
2959 * cleared/changed already.
2961 spin_lock_bh(&sta->lock);
2962 if (ieee80211_hw_check(&local->hw, SUPPORTS_PS) &&
2963 !ieee80211_hw_check(&local->hw, SUPPORTS_DYNAMIC_PS) &&
2964 sdata->vif.type == NL80211_IFTYPE_STATION)
2967 if (!test_sta_flag(sta, WLAN_STA_AUTHORIZED))
2970 if (test_sta_flag(sta, WLAN_STA_PS_STA) ||
2971 test_sta_flag(sta, WLAN_STA_PS_DRIVER) ||
2972 test_sta_flag(sta, WLAN_STA_PS_DELIVER) ||
2973 test_sta_flag(sta, WLAN_STA_CLEAR_PS_FILT))
2976 if (sdata->noack_map)
2979 /* fast-xmit doesn't handle fragmentation at all */
2980 if (local->hw.wiphy->frag_threshold != (u32)-1 &&
2981 !ieee80211_hw_check(&local->hw, SUPPORTS_TX_FRAG))
2985 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
2986 if (!chanctx_conf) {
2990 build.band = chanctx_conf->def.chan->band;
2993 fc = cpu_to_le16(IEEE80211_FTYPE_DATA | IEEE80211_STYPE_DATA);
2995 switch (sdata->vif.type) {
2996 case NL80211_IFTYPE_ADHOC:
2998 build.da_offs = offsetof(struct ieee80211_hdr, addr1);
2999 build.sa_offs = offsetof(struct ieee80211_hdr, addr2);
3000 memcpy(hdr->addr3, sdata->u.ibss.bssid, ETH_ALEN);
3003 case NL80211_IFTYPE_STATION:
3004 if (test_sta_flag(sta, WLAN_STA_TDLS_PEER)) {
3006 build.da_offs = offsetof(struct ieee80211_hdr, addr1);
3007 build.sa_offs = offsetof(struct ieee80211_hdr, addr2);
3008 memcpy(hdr->addr3, sdata->u.mgd.bssid, ETH_ALEN);
3013 if (sdata->u.mgd.use_4addr) {
3014 /* non-regular ethertype cannot use the fastpath */
3015 fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS |
3016 IEEE80211_FCTL_TODS);
3018 memcpy(hdr->addr1, sdata->u.mgd.bssid, ETH_ALEN);
3019 memcpy(hdr->addr2, sdata->vif.addr, ETH_ALEN);
3020 build.da_offs = offsetof(struct ieee80211_hdr, addr3);
3021 build.sa_offs = offsetof(struct ieee80211_hdr, addr4);
3025 fc |= cpu_to_le16(IEEE80211_FCTL_TODS);
3027 memcpy(hdr->addr1, sdata->u.mgd.bssid, ETH_ALEN);
3028 build.da_offs = offsetof(struct ieee80211_hdr, addr3);
3029 build.sa_offs = offsetof(struct ieee80211_hdr, addr2);
3032 case NL80211_IFTYPE_AP_VLAN:
3033 if (sdata->wdev.use_4addr) {
3034 fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS |
3035 IEEE80211_FCTL_TODS);
3037 memcpy(hdr->addr1, sta->sta.addr, ETH_ALEN);
3038 memcpy(hdr->addr2, sdata->vif.addr, ETH_ALEN);
3039 build.da_offs = offsetof(struct ieee80211_hdr, addr3);
3040 build.sa_offs = offsetof(struct ieee80211_hdr, addr4);
3045 case NL80211_IFTYPE_AP:
3046 fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS);
3048 build.da_offs = offsetof(struct ieee80211_hdr, addr1);
3049 memcpy(hdr->addr2, sdata->vif.addr, ETH_ALEN);
3050 build.sa_offs = offsetof(struct ieee80211_hdr, addr3);
3054 /* not handled on fast-xmit */
3060 fc |= cpu_to_le16(IEEE80211_STYPE_QOS_DATA);
3063 /* We store the key here so there's no point in using rcu_dereference()
3064 * but that's fine because the code that changes the pointers will call
3065 * this function after doing so. For a single CPU that would be enough,
3066 * for multiple see the comment above.
3068 build.key = rcu_access_pointer(sta->ptk[sta->ptk_idx]);
3070 build.key = rcu_access_pointer(sdata->default_unicast_key);
3072 bool gen_iv, iv_spc, mmic;
3074 gen_iv = build.key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_IV;
3075 iv_spc = build.key->conf.flags & IEEE80211_KEY_FLAG_PUT_IV_SPACE;
3076 mmic = build.key->conf.flags &
3077 (IEEE80211_KEY_FLAG_GENERATE_MMIC |
3078 IEEE80211_KEY_FLAG_PUT_MIC_SPACE);
3080 /* don't handle software crypto */
3081 if (!(build.key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE))
3084 /* Key is being removed */
3085 if (build.key->flags & KEY_FLAG_TAINTED)
3088 switch (build.key->conf.cipher) {
3089 case WLAN_CIPHER_SUITE_CCMP:
3090 case WLAN_CIPHER_SUITE_CCMP_256:
3092 build.pn_offs = build.hdr_len;
3093 if (gen_iv || iv_spc)
3094 build.hdr_len += IEEE80211_CCMP_HDR_LEN;
3096 case WLAN_CIPHER_SUITE_GCMP:
3097 case WLAN_CIPHER_SUITE_GCMP_256:
3099 build.pn_offs = build.hdr_len;
3100 if (gen_iv || iv_spc)
3101 build.hdr_len += IEEE80211_GCMP_HDR_LEN;
3103 case WLAN_CIPHER_SUITE_TKIP:
3104 /* cannot handle MMIC or IV generation in xmit-fast */
3108 build.hdr_len += IEEE80211_TKIP_IV_LEN;
3110 case WLAN_CIPHER_SUITE_WEP40:
3111 case WLAN_CIPHER_SUITE_WEP104:
3112 /* cannot handle IV generation in fast-xmit */
3116 build.hdr_len += IEEE80211_WEP_IV_LEN;
3118 case WLAN_CIPHER_SUITE_AES_CMAC:
3119 case WLAN_CIPHER_SUITE_BIP_CMAC_256:
3120 case WLAN_CIPHER_SUITE_BIP_GMAC_128:
3121 case WLAN_CIPHER_SUITE_BIP_GMAC_256:
3123 "management cipher suite 0x%x enabled for data\n",
3124 build.key->conf.cipher);
3127 /* we don't know how to generate IVs for this at all */
3128 if (WARN_ON(gen_iv))
3130 /* pure hardware keys are OK, of course */
3131 if (!(build.key->flags & KEY_FLAG_CIPHER_SCHEME))
3133 /* cipher scheme might require space allocation */
3135 build.key->conf.iv_len > IEEE80211_FAST_XMIT_MAX_IV)
3138 build.hdr_len += build.key->conf.iv_len;
3141 fc |= cpu_to_le16(IEEE80211_FCTL_PROTECTED);
3144 hdr->frame_control = fc;
3146 memcpy(build.hdr + build.hdr_len,
3147 rfc1042_header, sizeof(rfc1042_header));
3148 build.hdr_len += sizeof(rfc1042_header);
3150 fast_tx = kmemdup(&build, sizeof(build), GFP_ATOMIC);
3151 /* if the kmemdup fails, continue w/o fast_tx */
3156 /* we might have raced against another call to this function */
3157 old = rcu_dereference_protected(sta->fast_tx,
3158 lockdep_is_held(&sta->lock));
3159 rcu_assign_pointer(sta->fast_tx, fast_tx);
3161 kfree_rcu(old, rcu_head);
3162 spin_unlock_bh(&sta->lock);
3165 void ieee80211_check_fast_xmit_all(struct ieee80211_local *local)
3167 struct sta_info *sta;
3170 list_for_each_entry_rcu(sta, &local->sta_list, list)
3171 ieee80211_check_fast_xmit(sta);
3175 void ieee80211_check_fast_xmit_iface(struct ieee80211_sub_if_data *sdata)
3177 struct ieee80211_local *local = sdata->local;
3178 struct sta_info *sta;
3182 list_for_each_entry_rcu(sta, &local->sta_list, list) {
3183 if (sdata != sta->sdata &&
3184 (!sta->sdata->bss || sta->sdata->bss != sdata->bss))
3186 ieee80211_check_fast_xmit(sta);
3192 void ieee80211_clear_fast_xmit(struct sta_info *sta)
3194 struct ieee80211_fast_tx *fast_tx;
3196 spin_lock_bh(&sta->lock);
3197 fast_tx = rcu_dereference_protected(sta->fast_tx,
3198 lockdep_is_held(&sta->lock));
3199 RCU_INIT_POINTER(sta->fast_tx, NULL);
3200 spin_unlock_bh(&sta->lock);
3203 kfree_rcu(fast_tx, rcu_head);
3206 static bool ieee80211_amsdu_realloc_pad(struct ieee80211_local *local,
3207 struct sk_buff *skb, int headroom)
3209 if (skb_headroom(skb) < headroom) {
3210 I802_DEBUG_INC(local->tx_expand_skb_head);
3212 if (pskb_expand_head(skb, headroom, 0, GFP_ATOMIC)) {
3213 wiphy_debug(local->hw.wiphy,
3214 "failed to reallocate TX buffer\n");
3222 static bool ieee80211_amsdu_prepare_head(struct ieee80211_sub_if_data *sdata,
3223 struct ieee80211_fast_tx *fast_tx,
3224 struct sk_buff *skb)
3226 struct ieee80211_local *local = sdata->local;
3227 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
3228 struct ieee80211_hdr *hdr;
3229 struct ethhdr *amsdu_hdr;
3230 int hdr_len = fast_tx->hdr_len - sizeof(rfc1042_header);
3231 int subframe_len = skb->len - hdr_len;
3233 u8 *qc, *h_80211_src, *h_80211_dst;
3236 if (info->flags & IEEE80211_TX_CTL_RATE_CTRL_PROBE)
3239 if (info->control.flags & IEEE80211_TX_CTRL_AMSDU)
3242 if (!ieee80211_amsdu_realloc_pad(local, skb,
3243 sizeof(*amsdu_hdr) +
3244 local->hw.extra_tx_headroom))
3247 data = skb_push(skb, sizeof(*amsdu_hdr));
3248 memmove(data, data + sizeof(*amsdu_hdr), hdr_len);
3250 amsdu_hdr = data + hdr_len;
3251 /* h_80211_src/dst is addr* field within hdr */
3252 h_80211_src = data + fast_tx->sa_offs;
3253 h_80211_dst = data + fast_tx->da_offs;
3255 amsdu_hdr->h_proto = cpu_to_be16(subframe_len);
3256 ether_addr_copy(amsdu_hdr->h_source, h_80211_src);
3257 ether_addr_copy(amsdu_hdr->h_dest, h_80211_dst);
3259 /* according to IEEE 802.11-2012 8.3.2 table 8-19, the outer SA/DA
3260 * fields needs to be changed to BSSID for A-MSDU frames depending
3261 * on FromDS/ToDS values.
3263 switch (sdata->vif.type) {
3264 case NL80211_IFTYPE_STATION:
3265 bssid = sdata->u.mgd.bssid;
3267 case NL80211_IFTYPE_AP:
3268 case NL80211_IFTYPE_AP_VLAN:
3269 bssid = sdata->vif.addr;
3275 if (bssid && ieee80211_has_fromds(hdr->frame_control))
3276 ether_addr_copy(h_80211_src, bssid);
3278 if (bssid && ieee80211_has_tods(hdr->frame_control))
3279 ether_addr_copy(h_80211_dst, bssid);
3281 qc = ieee80211_get_qos_ctl(hdr);
3282 *qc |= IEEE80211_QOS_CTL_A_MSDU_PRESENT;
3284 info->control.flags |= IEEE80211_TX_CTRL_AMSDU;
3289 static bool ieee80211_amsdu_aggregate(struct ieee80211_sub_if_data *sdata,
3290 struct sta_info *sta,
3291 struct ieee80211_fast_tx *fast_tx,
3292 struct sk_buff *skb)
3294 struct ieee80211_local *local = sdata->local;
3295 struct fq *fq = &local->fq;
3297 struct fq_flow *flow;
3298 u8 tid = skb->priority & IEEE80211_QOS_CTL_TAG1D_MASK;
3299 struct ieee80211_txq *txq = sta->sta.txq[tid];
3300 struct txq_info *txqi;
3301 struct sk_buff **frag_tail, *head;
3302 int subframe_len = skb->len - ETH_ALEN;
3303 u8 max_subframes = sta->sta.max_amsdu_subframes;
3304 int max_frags = local->hw.max_tx_fragments;
3305 int max_amsdu_len = sta->sta.max_amsdu_len;
3311 unsigned int orig_len;
3312 int n = 2, nfrags, pad = 0;
3315 if (!ieee80211_hw_check(&local->hw, TX_AMSDU))
3318 if (sdata->vif.offload_flags & IEEE80211_OFFLOAD_ENCAP_ENABLED)
3321 if (skb_is_gso(skb))
3327 txqi = to_txq_info(txq);
3328 if (test_bit(IEEE80211_TXQ_NO_AMSDU, &txqi->flags))
3331 if (sta->sta.max_rc_amsdu_len)
3332 max_amsdu_len = min_t(int, max_amsdu_len,
3333 sta->sta.max_rc_amsdu_len);
3335 if (sta->sta.max_tid_amsdu_len[tid])
3336 max_amsdu_len = min_t(int, max_amsdu_len,
3337 sta->sta.max_tid_amsdu_len[tid]);
3339 flow_idx = fq_flow_idx(fq, skb);
3341 spin_lock_bh(&fq->lock);
3343 /* TODO: Ideally aggregation should be done on dequeue to remain
3344 * responsive to environment changes.
3348 flow = fq_flow_classify(fq, tin, flow_idx, skb);
3349 head = skb_peek_tail(&flow->queue);
3350 if (!head || skb_is_gso(head))
3353 orig_truesize = head->truesize;
3354 orig_len = head->len;
3356 if (skb->len + head->len > max_amsdu_len)
3359 nfrags = 1 + skb_shinfo(skb)->nr_frags;
3360 nfrags += 1 + skb_shinfo(head)->nr_frags;
3361 frag_tail = &skb_shinfo(head)->frag_list;
3362 while (*frag_tail) {
3363 nfrags += 1 + skb_shinfo(*frag_tail)->nr_frags;
3364 frag_tail = &(*frag_tail)->next;
3368 if (max_subframes && n > max_subframes)
3371 if (max_frags && nfrags > max_frags)
3374 if (!drv_can_aggregate_in_amsdu(local, head, skb))
3377 if (!ieee80211_amsdu_prepare_head(sdata, fast_tx, head))
3380 /* If n == 2, the "while (*frag_tail)" loop above didn't execute
3381 * and frag_tail should be &skb_shinfo(head)->frag_list.
3382 * However, ieee80211_amsdu_prepare_head() can reallocate it.
3383 * Reload frag_tail to have it pointing to the correct place.
3386 frag_tail = &skb_shinfo(head)->frag_list;
3389 * Pad out the previous subframe to a multiple of 4 by adding the
3390 * padding to the next one, that's being added. Note that head->len
3391 * is the length of the full A-MSDU, but that works since each time
3392 * we add a new subframe we pad out the previous one to a multiple
3393 * of 4 and thus it no longer matters in the next round.
3395 hdrlen = fast_tx->hdr_len - sizeof(rfc1042_header);
3396 if ((head->len - hdrlen) & 3)
3397 pad = 4 - ((head->len - hdrlen) & 3);
3399 if (!ieee80211_amsdu_realloc_pad(local, skb, sizeof(rfc1042_header) +
3404 data = skb_push(skb, ETH_ALEN + 2);
3405 memmove(data, data + ETH_ALEN + 2, 2 * ETH_ALEN);
3407 data += 2 * ETH_ALEN;
3408 len = cpu_to_be16(subframe_len);
3409 memcpy(data, &len, 2);
3410 memcpy(data + 2, rfc1042_header, sizeof(rfc1042_header));
3412 memset(skb_push(skb, pad), 0, pad);
3414 head->len += skb->len;
3415 head->data_len += skb->len;
3419 fq->memory_usage += head->truesize - orig_truesize;
3420 if (head->len != orig_len) {
3421 flow->backlog += head->len - orig_len;
3422 tin->backlog_bytes += head->len - orig_len;
3425 spin_unlock_bh(&fq->lock);
3431 * Can be called while the sta lock is held. Anything that can cause packets to
3432 * be generated will cause deadlock!
3434 static ieee80211_tx_result
3435 ieee80211_xmit_fast_finish(struct ieee80211_sub_if_data *sdata,
3436 struct sta_info *sta, u8 pn_offs,
3437 struct ieee80211_key *key,
3438 struct ieee80211_tx_data *tx)
3440 struct sk_buff *skb = tx->skb;
3441 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
3442 struct ieee80211_hdr *hdr = (void *)skb->data;
3443 u8 tid = IEEE80211_NUM_TIDS;
3445 if (!ieee80211_hw_check(&tx->local->hw, HAS_RATE_CONTROL) &&
3446 ieee80211_tx_h_rate_ctrl(tx) != TX_CONTINUE)
3450 info->control.hw_key = &key->conf;
3452 dev_sw_netstats_tx_add(skb->dev, 1, skb->len);
3454 if (hdr->frame_control & cpu_to_le16(IEEE80211_STYPE_QOS_DATA)) {
3455 tid = skb->priority & IEEE80211_QOS_CTL_TAG1D_MASK;
3456 hdr->seq_ctrl = ieee80211_tx_next_seq(sta, tid);
3458 info->flags |= IEEE80211_TX_CTL_ASSIGN_SEQ;
3459 hdr->seq_ctrl = cpu_to_le16(sdata->sequence_number);
3460 sdata->sequence_number += 0x10;
3463 if (skb_shinfo(skb)->gso_size)
3464 sta->tx_stats.msdu[tid] +=
3465 DIV_ROUND_UP(skb->len, skb_shinfo(skb)->gso_size);
3467 sta->tx_stats.msdu[tid]++;
3469 info->hw_queue = sdata->vif.hw_queue[skb_get_queue_mapping(skb)];
3471 /* statistics normally done by ieee80211_tx_h_stats (but that
3472 * has to consider fragmentation, so is more complex)
3474 sta->tx_stats.bytes[skb_get_queue_mapping(skb)] += skb->len;
3475 sta->tx_stats.packets[skb_get_queue_mapping(skb)]++;
3479 u8 *crypto_hdr = skb->data + pn_offs;
3481 switch (key->conf.cipher) {
3482 case WLAN_CIPHER_SUITE_CCMP:
3483 case WLAN_CIPHER_SUITE_CCMP_256:
3484 case WLAN_CIPHER_SUITE_GCMP:
3485 case WLAN_CIPHER_SUITE_GCMP_256:
3486 pn = atomic64_inc_return(&key->conf.tx_pn);
3488 crypto_hdr[1] = pn >> 8;
3489 crypto_hdr[3] = 0x20 | (key->conf.keyidx << 6);
3490 crypto_hdr[4] = pn >> 16;
3491 crypto_hdr[5] = pn >> 24;
3492 crypto_hdr[6] = pn >> 32;
3493 crypto_hdr[7] = pn >> 40;
3501 static bool ieee80211_xmit_fast(struct ieee80211_sub_if_data *sdata,
3502 struct sta_info *sta,
3503 struct ieee80211_fast_tx *fast_tx,
3504 struct sk_buff *skb)
3506 struct ieee80211_local *local = sdata->local;
3507 u16 ethertype = (skb->data[12] << 8) | skb->data[13];
3508 int extra_head = fast_tx->hdr_len - (ETH_HLEN - 2);
3509 int hw_headroom = sdata->local->hw.extra_tx_headroom;
3511 struct ieee80211_tx_info *info;
3512 struct ieee80211_hdr *hdr = (void *)fast_tx->hdr;
3513 struct ieee80211_tx_data tx;
3514 ieee80211_tx_result r;
3515 struct tid_ampdu_tx *tid_tx = NULL;
3516 u8 tid = IEEE80211_NUM_TIDS;
3518 /* control port protocol needs a lot of special handling */
3519 if (cpu_to_be16(ethertype) == sdata->control_port_protocol)
3522 /* only RFC 1042 SNAP */
3523 if (ethertype < ETH_P_802_3_MIN)
3526 /* don't handle TX status request here either */
3527 if (skb->sk && skb_shinfo(skb)->tx_flags & SKBTX_WIFI_STATUS)
3530 if (hdr->frame_control & cpu_to_le16(IEEE80211_STYPE_QOS_DATA)) {
3531 tid = skb->priority & IEEE80211_QOS_CTL_TAG1D_MASK;
3532 tid_tx = rcu_dereference(sta->ampdu_mlme.tid_tx[tid]);
3534 if (!test_bit(HT_AGG_STATE_OPERATIONAL, &tid_tx->state))
3536 if (tid_tx->timeout)
3537 tid_tx->last_tx = jiffies;
3541 /* after this point (skb is modified) we cannot return false */
3543 if (skb_shared(skb)) {
3544 struct sk_buff *tmp_skb = skb;
3546 skb = skb_clone(skb, GFP_ATOMIC);
3553 if ((hdr->frame_control & cpu_to_le16(IEEE80211_STYPE_QOS_DATA)) &&
3554 ieee80211_amsdu_aggregate(sdata, sta, fast_tx, skb))
3557 /* will not be crypto-handled beyond what we do here, so use false
3558 * as the may-encrypt argument for the resize to not account for
3559 * more room than we already have in 'extra_head'
3561 if (unlikely(ieee80211_skb_resize(sdata, skb,
3562 max_t(int, extra_head + hw_headroom -
3563 skb_headroom(skb), 0),
3569 memcpy(ð, skb->data, ETH_HLEN - 2);
3570 hdr = skb_push(skb, extra_head);
3571 memcpy(skb->data, fast_tx->hdr, fast_tx->hdr_len);
3572 memcpy(skb->data + fast_tx->da_offs, eth.h_dest, ETH_ALEN);
3573 memcpy(skb->data + fast_tx->sa_offs, eth.h_source, ETH_ALEN);
3575 info = IEEE80211_SKB_CB(skb);
3576 memset(info, 0, sizeof(*info));
3577 info->band = fast_tx->band;
3578 info->control.vif = &sdata->vif;
3579 info->flags = IEEE80211_TX_CTL_FIRST_FRAGMENT |
3580 IEEE80211_TX_CTL_DONTFRAG |
3581 (tid_tx ? IEEE80211_TX_CTL_AMPDU : 0);
3582 info->control.flags = IEEE80211_TX_CTRL_FAST_XMIT;
3584 #ifdef CONFIG_MAC80211_DEBUGFS
3585 if (local->force_tx_status)
3586 info->flags |= IEEE80211_TX_CTL_REQ_TX_STATUS;
3589 if (hdr->frame_control & cpu_to_le16(IEEE80211_STYPE_QOS_DATA)) {
3590 tid = skb->priority & IEEE80211_QOS_CTL_TAG1D_MASK;
3591 *ieee80211_get_qos_ctl(hdr) = tid;
3594 __skb_queue_head_init(&tx.skbs);
3596 tx.flags = IEEE80211_TX_UNICAST;
3600 tx.key = fast_tx->key;
3602 if (ieee80211_queue_skb(local, sdata, sta, skb))
3606 r = ieee80211_xmit_fast_finish(sdata, sta, fast_tx->pn_offs,
3614 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
3615 sdata = container_of(sdata->bss,
3616 struct ieee80211_sub_if_data, u.ap);
3618 __skb_queue_tail(&tx.skbs, skb);
3619 ieee80211_tx_frags(local, &sdata->vif, sta, &tx.skbs, false);
3623 struct sk_buff *ieee80211_tx_dequeue(struct ieee80211_hw *hw,
3624 struct ieee80211_txq *txq)
3626 struct ieee80211_local *local = hw_to_local(hw);
3627 struct txq_info *txqi = container_of(txq, struct txq_info, txq);
3628 struct ieee80211_hdr *hdr;
3629 struct sk_buff *skb = NULL;
3630 struct fq *fq = &local->fq;
3631 struct fq_tin *tin = &txqi->tin;
3632 struct ieee80211_tx_info *info;
3633 struct ieee80211_tx_data tx;
3634 ieee80211_tx_result r;
3635 struct ieee80211_vif *vif = txq->vif;
3637 WARN_ON_ONCE(softirq_count() == 0);
3639 if (!ieee80211_txq_airtime_check(hw, txq))
3643 spin_lock_bh(&fq->lock);
3645 if (test_bit(IEEE80211_TXQ_STOP, &txqi->flags) ||
3646 test_bit(IEEE80211_TXQ_STOP_NETIF_TX, &txqi->flags))
3649 if (vif->txqs_stopped[txq->ac]) {
3650 set_bit(IEEE80211_TXQ_STOP_NETIF_TX, &txqi->flags);
3654 /* Make sure fragments stay together. */
3655 skb = __skb_dequeue(&txqi->frags);
3656 if (unlikely(skb)) {
3657 if (!(IEEE80211_SKB_CB(skb)->control.flags &
3658 IEEE80211_TX_INTCFL_NEED_TXPROCESSING))
3660 IEEE80211_SKB_CB(skb)->control.flags &=
3661 ~IEEE80211_TX_INTCFL_NEED_TXPROCESSING;
3663 skb = fq_tin_dequeue(fq, tin, fq_tin_dequeue_func);
3669 spin_unlock_bh(&fq->lock);
3671 hdr = (struct ieee80211_hdr *)skb->data;
3672 info = IEEE80211_SKB_CB(skb);
3674 memset(&tx, 0, sizeof(tx));
3675 __skb_queue_head_init(&tx.skbs);
3678 tx.sdata = vif_to_sdata(info->control.vif);
3681 tx.sta = container_of(txq->sta, struct sta_info, sta);
3683 * Drop unicast frames to unauthorised stations unless they are
3684 * injected frames or EAPOL frames from the local station.
3686 if (unlikely(!(info->flags & IEEE80211_TX_CTL_INJECTED) &&
3687 ieee80211_is_data(hdr->frame_control) &&
3688 !ieee80211_vif_is_mesh(&tx.sdata->vif) &&
3689 tx.sdata->vif.type != NL80211_IFTYPE_OCB &&
3690 !is_multicast_ether_addr(hdr->addr1) &&
3691 !test_sta_flag(tx.sta, WLAN_STA_AUTHORIZED) &&
3692 (!(info->control.flags &
3693 IEEE80211_TX_CTRL_PORT_CTRL_PROTO) ||
3694 !ether_addr_equal(tx.sdata->vif.addr,
3696 I802_DEBUG_INC(local->tx_handlers_drop_unauth_port);
3697 ieee80211_free_txskb(&local->hw, skb);
3703 * The key can be removed while the packet was queued, so need to call
3704 * this here to get the current key.
3706 r = ieee80211_tx_h_select_key(&tx);
3707 if (r != TX_CONTINUE) {
3708 ieee80211_free_txskb(&local->hw, skb);
3712 if (test_bit(IEEE80211_TXQ_AMPDU, &txqi->flags))
3713 info->flags |= IEEE80211_TX_CTL_AMPDU;
3715 info->flags &= ~IEEE80211_TX_CTL_AMPDU;
3717 if (info->flags & IEEE80211_TX_CTL_HW_80211_ENCAP) {
3718 if (!ieee80211_hw_check(&local->hw, HAS_RATE_CONTROL)) {
3719 r = ieee80211_tx_h_rate_ctrl(&tx);
3720 if (r != TX_CONTINUE) {
3721 ieee80211_free_txskb(&local->hw, skb);
3728 if (info->control.flags & IEEE80211_TX_CTRL_FAST_XMIT) {
3729 struct sta_info *sta = container_of(txq->sta, struct sta_info,
3734 (tx.key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_IV))
3735 pn_offs = ieee80211_hdrlen(hdr->frame_control);
3737 r = ieee80211_xmit_fast_finish(sta->sdata, sta, pn_offs,
3739 if (r != TX_CONTINUE) {
3740 ieee80211_free_txskb(&local->hw, skb);
3744 if (invoke_tx_handlers_late(&tx))
3747 skb = __skb_dequeue(&tx.skbs);
3749 if (!skb_queue_empty(&tx.skbs)) {
3750 spin_lock_bh(&fq->lock);
3751 skb_queue_splice_tail(&tx.skbs, &txqi->frags);
3752 spin_unlock_bh(&fq->lock);
3756 if (skb_has_frag_list(skb) &&
3757 !ieee80211_hw_check(&local->hw, TX_FRAG_LIST)) {
3758 if (skb_linearize(skb)) {
3759 ieee80211_free_txskb(&local->hw, skb);
3764 switch (tx.sdata->vif.type) {
3765 case NL80211_IFTYPE_MONITOR:
3766 if (tx.sdata->u.mntr.flags & MONITOR_FLAG_ACTIVE) {
3767 vif = &tx.sdata->vif;
3770 tx.sdata = rcu_dereference(local->monitor_sdata);
3772 vif = &tx.sdata->vif;
3774 vif->hw_queue[skb_get_queue_mapping(skb)];
3775 } else if (ieee80211_hw_check(&local->hw, QUEUE_CONTROL)) {
3776 ieee80211_free_txskb(&local->hw, skb);
3782 case NL80211_IFTYPE_AP_VLAN:
3783 tx.sdata = container_of(tx.sdata->bss,
3784 struct ieee80211_sub_if_data, u.ap);
3787 vif = &tx.sdata->vif;
3792 IEEE80211_SKB_CB(skb)->control.vif = vif;
3795 wiphy_ext_feature_isset(local->hw.wiphy, NL80211_EXT_FEATURE_AQL)) {
3796 bool ampdu = txq->ac != IEEE80211_AC_VO;
3799 airtime = ieee80211_calc_expected_tx_airtime(hw, vif, txq->sta,
3802 airtime = ieee80211_info_set_tx_time_est(info, airtime);
3803 ieee80211_sta_update_pending_airtime(local, tx.sta,
3813 spin_unlock_bh(&fq->lock);
3817 EXPORT_SYMBOL(ieee80211_tx_dequeue);
3819 struct ieee80211_txq *ieee80211_next_txq(struct ieee80211_hw *hw, u8 ac)
3821 struct ieee80211_local *local = hw_to_local(hw);
3822 struct airtime_sched_info *air_sched;
3823 u64 now = ktime_get_boottime_ns();
3824 struct ieee80211_txq *ret = NULL;
3825 struct airtime_info *air_info;
3826 struct txq_info *txqi = NULL;
3827 struct rb_node *node;
3830 air_sched = &local->airtime[ac];
3831 spin_lock_bh(&air_sched->lock);
3833 node = air_sched->schedule_pos;
3837 node = rb_first_cached(&air_sched->active_txqs);
3840 node = rb_next(node);
3846 txqi = container_of(node, struct txq_info, schedule_order);
3847 air_info = to_airtime_info(&txqi->txq);
3849 if (air_info->v_t > air_sched->v_t &&
3850 (!first || !airtime_catchup_v_t(air_sched, air_info->v_t, now)))
3853 if (!ieee80211_txq_airtime_check(hw, &txqi->txq)) {
3858 air_sched->schedule_pos = node;
3859 air_sched->last_schedule_activity = now;
3862 spin_unlock_bh(&air_sched->lock);
3865 EXPORT_SYMBOL(ieee80211_next_txq);
3867 static void __ieee80211_insert_txq(struct rb_root_cached *root,
3868 struct txq_info *txqi)
3870 struct rb_node **new = &root->rb_root.rb_node;
3871 struct airtime_info *old_air, *new_air;
3872 struct rb_node *parent = NULL;
3873 struct txq_info *__txqi;
3874 bool leftmost = true;
3878 __txqi = rb_entry(parent, struct txq_info, schedule_order);
3879 old_air = to_airtime_info(&__txqi->txq);
3880 new_air = to_airtime_info(&txqi->txq);
3882 if (new_air->v_t <= old_air->v_t) {
3883 new = &parent->rb_left;
3885 new = &parent->rb_right;
3890 rb_link_node(&txqi->schedule_order, parent, new);
3891 rb_insert_color_cached(&txqi->schedule_order, root, leftmost);
3894 void ieee80211_resort_txq(struct ieee80211_hw *hw,
3895 struct ieee80211_txq *txq)
3897 struct airtime_info *air_info = to_airtime_info(txq);
3898 struct ieee80211_local *local = hw_to_local(hw);
3899 struct txq_info *txqi = to_txq_info(txq);
3900 struct airtime_sched_info *air_sched;
3902 air_sched = &local->airtime[txq->ac];
3904 lockdep_assert_held(&air_sched->lock);
3906 if (!RB_EMPTY_NODE(&txqi->schedule_order)) {
3907 struct airtime_info *a_prev = NULL, *a_next = NULL;
3908 struct txq_info *t_prev, *t_next;
3909 struct rb_node *n_prev, *n_next;
3911 /* Erasing a node can cause an expensive rebalancing operation,
3912 * so we check the previous and next nodes first and only remove
3913 * and re-insert if the current node is not already in the
3916 if ((n_prev = rb_prev(&txqi->schedule_order)) != NULL) {
3917 t_prev = container_of(n_prev, struct txq_info,
3919 a_prev = to_airtime_info(&t_prev->txq);
3922 if ((n_next = rb_next(&txqi->schedule_order)) != NULL) {
3923 t_next = container_of(n_next, struct txq_info,
3925 a_next = to_airtime_info(&t_next->txq);
3928 if ((!a_prev || a_prev->v_t <= air_info->v_t) &&
3929 (!a_next || a_next->v_t > air_info->v_t))
3932 if (air_sched->schedule_pos == &txqi->schedule_order)
3933 air_sched->schedule_pos = n_prev;
3935 rb_erase_cached(&txqi->schedule_order,
3936 &air_sched->active_txqs);
3937 RB_CLEAR_NODE(&txqi->schedule_order);
3938 __ieee80211_insert_txq(&air_sched->active_txqs, txqi);
3942 void ieee80211_update_airtime_weight(struct ieee80211_local *local,
3943 struct airtime_sched_info *air_sched,
3944 u64 now, bool force)
3946 struct airtime_info *air_info, *tmp;
3950 now = ktime_get_boottime_ns();
3952 lockdep_assert_held(&air_sched->lock);
3954 if (!force && (air_sched->last_weight_update <
3955 now - AIRTIME_ACTIVE_DURATION))
3958 list_for_each_entry_safe(air_info, tmp,
3959 &air_sched->active_list, list) {
3960 if (airtime_is_active(air_info, now))
3961 weight_sum += air_info->weight;
3963 list_del_init(&air_info->list);
3965 airtime_weight_sum_set(air_sched, weight_sum);
3966 air_sched->last_weight_update = now;
3969 void ieee80211_schedule_txq(struct ieee80211_hw *hw,
3970 struct ieee80211_txq *txq)
3971 __acquires(txq_lock) __releases(txq_lock)
3973 struct ieee80211_local *local = hw_to_local(hw);
3974 struct txq_info *txqi = to_txq_info(txq);
3975 struct airtime_sched_info *air_sched;
3976 u64 now = ktime_get_boottime_ns();
3977 struct airtime_info *air_info;
3981 air_sched = &local->airtime[ac];
3982 air_info = to_airtime_info(txq);
3984 spin_lock_bh(&air_sched->lock);
3985 was_active = airtime_is_active(air_info, now);
3986 airtime_set_active(air_sched, air_info, now);
3988 if (!RB_EMPTY_NODE(&txqi->schedule_order))
3991 /* If the station has been inactive for a while, catch up its v_t so it
3992 * doesn't get indefinite priority; see comment above the definition of
3993 * AIRTIME_MAX_BEHIND.
3995 if ((!was_active && air_info->v_t < air_sched->v_t) ||
3996 air_info->v_t < air_sched->v_t - AIRTIME_MAX_BEHIND)
3997 air_info->v_t = air_sched->v_t;
3999 ieee80211_update_airtime_weight(local, air_sched, now, !was_active);
4000 __ieee80211_insert_txq(&air_sched->active_txqs, txqi);
4003 spin_unlock_bh(&air_sched->lock);
4005 EXPORT_SYMBOL(ieee80211_schedule_txq);
4007 static void __ieee80211_unschedule_txq(struct ieee80211_hw *hw,
4008 struct ieee80211_txq *txq,
4011 struct ieee80211_local *local = hw_to_local(hw);
4012 struct txq_info *txqi = to_txq_info(txq);
4013 struct airtime_sched_info *air_sched;
4014 struct airtime_info *air_info;
4016 air_sched = &local->airtime[txq->ac];
4017 air_info = to_airtime_info(&txqi->txq);
4019 lockdep_assert_held(&air_sched->lock);
4022 list_del_init(&air_info->list);
4023 ieee80211_update_airtime_weight(local, air_sched, 0, true);
4026 if (RB_EMPTY_NODE(&txqi->schedule_order))
4029 if (air_sched->schedule_pos == &txqi->schedule_order)
4030 air_sched->schedule_pos = rb_prev(&txqi->schedule_order);
4033 airtime_set_active(air_sched, air_info,
4034 ktime_get_boottime_ns());
4036 rb_erase_cached(&txqi->schedule_order,
4037 &air_sched->active_txqs);
4038 RB_CLEAR_NODE(&txqi->schedule_order);
4041 void ieee80211_unschedule_txq(struct ieee80211_hw *hw,
4042 struct ieee80211_txq *txq,
4044 __acquires(txq_lock) __releases(txq_lock)
4046 struct ieee80211_local *local = hw_to_local(hw);
4048 spin_lock_bh(&local->airtime[txq->ac].lock);
4049 __ieee80211_unschedule_txq(hw, txq, purge);
4050 spin_unlock_bh(&local->airtime[txq->ac].lock);
4053 void ieee80211_return_txq(struct ieee80211_hw *hw,
4054 struct ieee80211_txq *txq, bool force)
4056 struct ieee80211_local *local = hw_to_local(hw);
4057 struct txq_info *txqi = to_txq_info(txq);
4059 spin_lock_bh(&local->airtime[txq->ac].lock);
4061 if (!RB_EMPTY_NODE(&txqi->schedule_order) && !force &&
4062 !txq_has_queue(txq))
4063 __ieee80211_unschedule_txq(hw, txq, false);
4065 spin_unlock_bh(&local->airtime[txq->ac].lock);
4067 EXPORT_SYMBOL(ieee80211_return_txq);
4069 DEFINE_STATIC_KEY_FALSE(aql_disable);
4071 bool ieee80211_txq_airtime_check(struct ieee80211_hw *hw,
4072 struct ieee80211_txq *txq)
4074 struct airtime_info *air_info = to_airtime_info(txq);
4075 struct ieee80211_local *local = hw_to_local(hw);
4077 if (!wiphy_ext_feature_isset(local->hw.wiphy, NL80211_EXT_FEATURE_AQL))
4080 if (static_branch_unlikely(&aql_disable))
4086 if (unlikely(txq->tid == IEEE80211_NUM_TIDS))
4089 if (atomic_read(&air_info->aql_tx_pending) < air_info->aql_limit_low)
4092 if (atomic_read(&local->aql_total_pending_airtime) <
4093 local->aql_threshold &&
4094 atomic_read(&air_info->aql_tx_pending) < air_info->aql_limit_high)
4099 EXPORT_SYMBOL(ieee80211_txq_airtime_check);
4101 bool ieee80211_txq_may_transmit(struct ieee80211_hw *hw,
4102 struct ieee80211_txq *txq)
4104 struct txq_info *first_txqi = NULL, *txqi = to_txq_info(txq);
4105 struct ieee80211_local *local = hw_to_local(hw);
4106 struct airtime_sched_info *air_sched;
4107 struct airtime_info *air_info;
4108 struct rb_node *node = NULL;
4113 if (!ieee80211_txq_airtime_check(hw, txq))
4116 air_sched = &local->airtime[txq->ac];
4117 spin_lock_bh(&air_sched->lock);
4119 if (RB_EMPTY_NODE(&txqi->schedule_order))
4122 now = ktime_get_boottime_ns();
4124 /* Like in ieee80211_next_txq(), make sure the first station in the
4125 * scheduling order is eligible for transmission to avoid starvation.
4127 node = rb_first_cached(&air_sched->active_txqs);
4129 first_txqi = container_of(node, struct txq_info,
4131 air_info = to_airtime_info(&first_txqi->txq);
4133 if (air_sched->v_t < air_info->v_t)
4134 airtime_catchup_v_t(air_sched, air_info->v_t, now);
4137 air_info = to_airtime_info(&txqi->txq);
4138 if (air_info->v_t <= air_sched->v_t) {
4139 air_sched->last_schedule_activity = now;
4144 spin_unlock_bh(&air_sched->lock);
4147 EXPORT_SYMBOL(ieee80211_txq_may_transmit);
4149 void ieee80211_txq_schedule_start(struct ieee80211_hw *hw, u8 ac)
4151 struct ieee80211_local *local = hw_to_local(hw);
4152 struct airtime_sched_info *air_sched = &local->airtime[ac];
4154 spin_lock_bh(&air_sched->lock);
4155 air_sched->schedule_pos = NULL;
4156 spin_unlock_bh(&air_sched->lock);
4158 EXPORT_SYMBOL(ieee80211_txq_schedule_start);
4160 void __ieee80211_subif_start_xmit(struct sk_buff *skb,
4161 struct net_device *dev,
4166 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
4167 struct ieee80211_local *local = sdata->local;
4168 struct sta_info *sta;
4169 struct sk_buff *next;
4172 if (unlikely(skb->len < ETH_HLEN)) {
4179 if (ieee80211_lookup_ra_sta(sdata, skb, &sta))
4185 if (local->ops->wake_tx_queue) {
4186 u16 queue = __ieee80211_select_queue(sdata, sta, skb);
4187 skb_set_queue_mapping(skb, queue);
4191 ieee80211_aggr_check(sdata, sta, skb);
4194 struct ieee80211_fast_tx *fast_tx;
4196 sk_pacing_shift_update(skb->sk, sdata->local->hw.tx_sk_pacing_shift);
4198 fast_tx = rcu_dereference(sta->fast_tx);
4201 ieee80211_xmit_fast(sdata, sta, fast_tx, skb))
4205 if (skb_is_gso(skb)) {
4206 struct sk_buff *segs;
4208 segs = skb_gso_segment(skb, 0);
4216 /* we cannot process non-linear frames on this path */
4217 if (skb_linearize(skb))
4220 /* the frame could be fragmented, software-encrypted, and other
4221 * things so we cannot really handle checksum offload with it -
4222 * fix it up in software before we handle anything else.
4224 if (skb->ip_summed == CHECKSUM_PARTIAL) {
4225 skb_set_transport_header(skb,
4226 skb_checksum_start_offset(skb));
4227 if (skb_checksum_help(skb))
4232 skb_list_walk_safe(skb, skb, next) {
4233 skb_mark_not_on_list(skb);
4235 if (skb->protocol == sdata->control_port_protocol)
4236 ctrl_flags |= IEEE80211_TX_CTRL_SKIP_MPATH_LOOKUP;
4238 skb = ieee80211_build_hdr(sdata, skb, info_flags,
4239 sta, ctrl_flags, cookie);
4241 kfree_skb_list(next);
4245 dev_sw_netstats_tx_add(dev, 1, skb->len);
4247 ieee80211_xmit(sdata, sta, skb);
4255 ieee80211_tpt_led_trig_tx(local, len);
4259 static int ieee80211_change_da(struct sk_buff *skb, struct sta_info *sta)
4264 err = skb_ensure_writable(skb, ETH_HLEN);
4268 eth = (void *)skb->data;
4269 ether_addr_copy(eth->h_dest, sta->sta.addr);
4274 static bool ieee80211_multicast_to_unicast(struct sk_buff *skb,
4275 struct net_device *dev)
4277 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
4278 const struct ethhdr *eth = (void *)skb->data;
4279 const struct vlan_ethhdr *ethvlan = (void *)skb->data;
4282 if (likely(!is_multicast_ether_addr(eth->h_dest)))
4285 switch (sdata->vif.type) {
4286 case NL80211_IFTYPE_AP_VLAN:
4287 if (sdata->u.vlan.sta)
4289 if (sdata->wdev.use_4addr)
4292 case NL80211_IFTYPE_AP:
4293 /* check runtime toggle for this bss */
4294 if (!sdata->bss->multicast_to_unicast)
4301 /* multicast to unicast conversion only for some payload */
4302 ethertype = eth->h_proto;
4303 if (ethertype == htons(ETH_P_8021Q) && skb->len >= VLAN_ETH_HLEN)
4304 ethertype = ethvlan->h_vlan_encapsulated_proto;
4305 switch (ethertype) {
4306 case htons(ETH_P_ARP):
4307 case htons(ETH_P_IP):
4308 case htons(ETH_P_IPV6):
4318 ieee80211_convert_to_unicast(struct sk_buff *skb, struct net_device *dev,
4319 struct sk_buff_head *queue)
4321 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
4322 struct ieee80211_local *local = sdata->local;
4323 const struct ethhdr *eth = (struct ethhdr *)skb->data;
4324 struct sta_info *sta, *first = NULL;
4325 struct sk_buff *cloned_skb;
4329 list_for_each_entry_rcu(sta, &local->sta_list, list) {
4330 if (sdata != sta->sdata)
4331 /* AP-VLAN mismatch */
4333 if (unlikely(ether_addr_equal(eth->h_source, sta->sta.addr)))
4334 /* do not send back to source */
4340 cloned_skb = skb_clone(skb, GFP_ATOMIC);
4343 if (unlikely(ieee80211_change_da(cloned_skb, sta))) {
4344 dev_kfree_skb(cloned_skb);
4347 __skb_queue_tail(queue, cloned_skb);
4350 if (likely(first)) {
4351 if (unlikely(ieee80211_change_da(skb, first)))
4353 __skb_queue_tail(queue, skb);
4355 /* no STA connected, drop */
4362 __skb_queue_purge(queue);
4363 __skb_queue_tail(queue, skb);
4369 * ieee80211_subif_start_xmit - netif start_xmit function for 802.3 vifs
4370 * @skb: packet to be sent
4371 * @dev: incoming interface
4373 * On failure skb will be freed.
4375 netdev_tx_t ieee80211_subif_start_xmit(struct sk_buff *skb,
4376 struct net_device *dev)
4378 if (unlikely(ieee80211_multicast_to_unicast(skb, dev))) {
4379 struct sk_buff_head queue;
4381 __skb_queue_head_init(&queue);
4382 ieee80211_convert_to_unicast(skb, dev, &queue);
4383 while ((skb = __skb_dequeue(&queue)))
4384 __ieee80211_subif_start_xmit(skb, dev, 0, 0, NULL);
4386 __ieee80211_subif_start_xmit(skb, dev, 0, 0, NULL);
4389 return NETDEV_TX_OK;
4392 static bool ieee80211_tx_8023(struct ieee80211_sub_if_data *sdata,
4393 struct sk_buff *skb, struct sta_info *sta,
4396 struct ieee80211_local *local = sdata->local;
4397 struct ieee80211_tx_control control = {};
4398 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
4399 struct ieee80211_sta *pubsta = NULL;
4400 unsigned long flags;
4401 int q = info->hw_queue;
4404 sk_pacing_shift_update(skb->sk, local->hw.tx_sk_pacing_shift);
4406 ieee80211_tpt_led_trig_tx(local, skb->len);
4408 if (ieee80211_queue_skb(local, sdata, sta, skb))
4411 spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
4413 if (local->queue_stop_reasons[q] ||
4414 (!txpending && !skb_queue_empty(&local->pending[q]))) {
4416 skb_queue_head(&local->pending[q], skb);
4418 skb_queue_tail(&local->pending[q], skb);
4420 spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
4425 spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
4427 if (sta && sta->uploaded)
4430 control.sta = pubsta;
4432 drv_tx(local, &control, skb);
4437 static void ieee80211_8023_xmit(struct ieee80211_sub_if_data *sdata,
4438 struct net_device *dev, struct sta_info *sta,
4439 struct ieee80211_key *key, struct sk_buff *skb)
4441 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
4442 struct ieee80211_local *local = sdata->local;
4443 struct tid_ampdu_tx *tid_tx;
4446 if (local->ops->wake_tx_queue) {
4447 u16 queue = __ieee80211_select_queue(sdata, sta, skb);
4448 skb_set_queue_mapping(skb, queue);
4452 if (unlikely(test_bit(SCAN_SW_SCANNING, &local->scanning)) &&
4453 test_bit(SDATA_STATE_OFFCHANNEL, &sdata->state))
4456 memset(info, 0, sizeof(*info));
4458 ieee80211_aggr_check(sdata, sta, skb);
4460 tid = skb->priority & IEEE80211_QOS_CTL_TAG1D_MASK;
4461 tid_tx = rcu_dereference(sta->ampdu_mlme.tid_tx[tid]);
4463 if (!test_bit(HT_AGG_STATE_OPERATIONAL, &tid_tx->state)) {
4464 /* fall back to non-offload slow path */
4465 __ieee80211_subif_start_xmit(skb, dev, 0, 0, NULL);
4469 info->flags |= IEEE80211_TX_CTL_AMPDU;
4470 if (tid_tx->timeout)
4471 tid_tx->last_tx = jiffies;
4474 if (unlikely(skb->sk &&
4475 skb_shinfo(skb)->tx_flags & SKBTX_WIFI_STATUS))
4476 info->ack_frame_id = ieee80211_store_ack_skb(local, skb,
4477 &info->flags, NULL);
4479 info->hw_queue = sdata->vif.hw_queue[skb_get_queue_mapping(skb)];
4481 dev_sw_netstats_tx_add(dev, 1, skb->len);
4483 sta->tx_stats.bytes[skb_get_queue_mapping(skb)] += skb->len;
4484 sta->tx_stats.packets[skb_get_queue_mapping(skb)]++;
4486 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
4487 sdata = container_of(sdata->bss,
4488 struct ieee80211_sub_if_data, u.ap);
4490 info->flags |= IEEE80211_TX_CTL_HW_80211_ENCAP;
4491 info->control.vif = &sdata->vif;
4494 info->control.hw_key = &key->conf;
4496 ieee80211_tx_8023(sdata, skb, sta, false);
4504 netdev_tx_t ieee80211_subif_start_xmit_8023(struct sk_buff *skb,
4505 struct net_device *dev)
4507 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
4508 struct ethhdr *ehdr = (struct ethhdr *)skb->data;
4509 struct ieee80211_key *key;
4510 struct sta_info *sta;
4512 if (unlikely(skb->len < ETH_HLEN)) {
4514 return NETDEV_TX_OK;
4519 if (ieee80211_lookup_ra_sta(sdata, skb, &sta)) {
4524 if (unlikely(IS_ERR_OR_NULL(sta) || !sta->uploaded ||
4525 !test_sta_flag(sta, WLAN_STA_AUTHORIZED) ||
4526 sdata->control_port_protocol == ehdr->h_proto))
4529 key = rcu_dereference(sta->ptk[sta->ptk_idx]);
4531 key = rcu_dereference(sdata->default_unicast_key);
4533 if (key && (!(key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE) ||
4534 key->conf.cipher == WLAN_CIPHER_SUITE_TKIP))
4537 ieee80211_8023_xmit(sdata, dev, sta, key, skb);
4541 ieee80211_subif_start_xmit(skb, dev);
4545 return NETDEV_TX_OK;
4549 ieee80211_build_data_template(struct ieee80211_sub_if_data *sdata,
4550 struct sk_buff *skb, u32 info_flags)
4552 struct ieee80211_hdr *hdr;
4553 struct ieee80211_tx_data tx = {
4554 .local = sdata->local,
4557 struct sta_info *sta;
4561 if (ieee80211_lookup_ra_sta(sdata, skb, &sta)) {
4563 skb = ERR_PTR(-EINVAL);
4567 skb = ieee80211_build_hdr(sdata, skb, info_flags, sta, 0, NULL);
4571 hdr = (void *)skb->data;
4572 tx.sta = sta_info_get(sdata, hdr->addr1);
4575 if (ieee80211_tx_h_select_key(&tx) != TX_CONTINUE) {
4578 return ERR_PTR(-EINVAL);
4587 * ieee80211_clear_tx_pending may not be called in a context where
4588 * it is possible that it packets could come in again.
4590 void ieee80211_clear_tx_pending(struct ieee80211_local *local)
4592 struct sk_buff *skb;
4595 for (i = 0; i < local->hw.queues; i++) {
4596 while ((skb = skb_dequeue(&local->pending[i])) != NULL)
4597 ieee80211_free_txskb(&local->hw, skb);
4602 * Returns false if the frame couldn't be transmitted but was queued instead,
4603 * which in this case means re-queued -- take as an indication to stop sending
4604 * more pending frames.
4606 static bool ieee80211_tx_pending_skb(struct ieee80211_local *local,
4607 struct sk_buff *skb)
4609 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
4610 struct ieee80211_sub_if_data *sdata;
4611 struct sta_info *sta;
4612 struct ieee80211_hdr *hdr;
4614 struct ieee80211_chanctx_conf *chanctx_conf;
4616 sdata = vif_to_sdata(info->control.vif);
4618 if (info->control.flags & IEEE80211_TX_INTCFL_NEED_TXPROCESSING) {
4619 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
4620 if (unlikely(!chanctx_conf)) {
4624 info->band = chanctx_conf->def.chan->band;
4625 result = ieee80211_tx(sdata, NULL, skb, true);
4626 } else if (info->flags & IEEE80211_TX_CTL_HW_80211_ENCAP) {
4627 if (ieee80211_lookup_ra_sta(sdata, skb, &sta)) {
4632 if (IS_ERR(sta) || (sta && !sta->uploaded))
4635 result = ieee80211_tx_8023(sdata, skb, sta, true);
4637 struct sk_buff_head skbs;
4639 __skb_queue_head_init(&skbs);
4640 __skb_queue_tail(&skbs, skb);
4642 hdr = (struct ieee80211_hdr *)skb->data;
4643 sta = sta_info_get(sdata, hdr->addr1);
4645 result = __ieee80211_tx(local, &skbs, sta, true);
4652 * Transmit all pending packets. Called from tasklet.
4654 void ieee80211_tx_pending(struct tasklet_struct *t)
4656 struct ieee80211_local *local = from_tasklet(local, t,
4657 tx_pending_tasklet);
4658 unsigned long flags;
4664 spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
4665 for (i = 0; i < local->hw.queues; i++) {
4667 * If queue is stopped by something other than due to pending
4668 * frames, or we have no pending frames, proceed to next queue.
4670 if (local->queue_stop_reasons[i] ||
4671 skb_queue_empty(&local->pending[i]))
4674 while (!skb_queue_empty(&local->pending[i])) {
4675 struct sk_buff *skb = __skb_dequeue(&local->pending[i]);
4676 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
4678 if (WARN_ON(!info->control.vif)) {
4679 ieee80211_free_txskb(&local->hw, skb);
4683 spin_unlock_irqrestore(&local->queue_stop_reason_lock,
4686 txok = ieee80211_tx_pending_skb(local, skb);
4687 spin_lock_irqsave(&local->queue_stop_reason_lock,
4693 if (skb_queue_empty(&local->pending[i]))
4694 ieee80211_propagate_queue_wake(local, i);
4696 spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
4701 /* functions for drivers to get certain frames */
4703 static void __ieee80211_beacon_add_tim(struct ieee80211_sub_if_data *sdata,
4704 struct ps_data *ps, struct sk_buff *skb,
4709 int i, have_bits = 0, n1, n2;
4711 /* Generate bitmap for TIM only if there are any STAs in power save
4713 if (atomic_read(&ps->num_sta_ps) > 0)
4714 /* in the hope that this is faster than
4715 * checking byte-for-byte */
4716 have_bits = !bitmap_empty((unsigned long *)ps->tim,
4717 IEEE80211_MAX_AID+1);
4719 if (ps->dtim_count == 0)
4720 ps->dtim_count = sdata->vif.bss_conf.dtim_period - 1;
4725 tim = pos = skb_put(skb, 6);
4726 *pos++ = WLAN_EID_TIM;
4728 *pos++ = ps->dtim_count;
4729 *pos++ = sdata->vif.bss_conf.dtim_period;
4731 if (ps->dtim_count == 0 && !skb_queue_empty(&ps->bc_buf))
4734 ps->dtim_bc_mc = aid0 == 1;
4737 /* Find largest even number N1 so that bits numbered 1 through
4738 * (N1 x 8) - 1 in the bitmap are 0 and number N2 so that bits
4739 * (N2 + 1) x 8 through 2007 are 0. */
4741 for (i = 0; i < IEEE80211_MAX_TIM_LEN; i++) {
4748 for (i = IEEE80211_MAX_TIM_LEN - 1; i >= n1; i--) {
4755 /* Bitmap control */
4757 /* Part Virt Bitmap */
4758 skb_put(skb, n2 - n1);
4759 memcpy(pos, ps->tim + n1, n2 - n1 + 1);
4761 tim[1] = n2 - n1 + 4;
4763 *pos++ = aid0; /* Bitmap control */
4764 *pos++ = 0; /* Part Virt Bitmap */
4768 static int ieee80211_beacon_add_tim(struct ieee80211_sub_if_data *sdata,
4769 struct ps_data *ps, struct sk_buff *skb,
4772 struct ieee80211_local *local = sdata->local;
4775 * Not very nice, but we want to allow the driver to call
4776 * ieee80211_beacon_get() as a response to the set_tim()
4777 * callback. That, however, is already invoked under the
4778 * sta_lock to guarantee consistent and race-free update
4779 * of the tim bitmap in mac80211 and the driver.
4781 if (local->tim_in_locked_section) {
4782 __ieee80211_beacon_add_tim(sdata, ps, skb, is_template);
4784 spin_lock_bh(&local->tim_lock);
4785 __ieee80211_beacon_add_tim(sdata, ps, skb, is_template);
4786 spin_unlock_bh(&local->tim_lock);
4792 static void ieee80211_set_beacon_cntdwn(struct ieee80211_sub_if_data *sdata,
4793 struct beacon_data *beacon)
4795 u8 *beacon_data, count, max_count = 1;
4796 struct probe_resp *resp;
4797 size_t beacon_data_len;
4801 switch (sdata->vif.type) {
4802 case NL80211_IFTYPE_AP:
4803 beacon_data = beacon->tail;
4804 beacon_data_len = beacon->tail_len;
4806 case NL80211_IFTYPE_ADHOC:
4807 beacon_data = beacon->head;
4808 beacon_data_len = beacon->head_len;
4810 case NL80211_IFTYPE_MESH_POINT:
4811 beacon_data = beacon->head;
4812 beacon_data_len = beacon->head_len;
4819 resp = rcu_dereference(sdata->u.ap.probe_resp);
4821 bcn_offsets = beacon->cntdwn_counter_offsets;
4822 count = beacon->cntdwn_current_counter;
4823 if (sdata->vif.csa_active)
4824 max_count = IEEE80211_MAX_CNTDWN_COUNTERS_NUM;
4826 for (i = 0; i < max_count; ++i) {
4827 if (bcn_offsets[i]) {
4828 if (WARN_ON_ONCE(bcn_offsets[i] >= beacon_data_len)) {
4832 beacon_data[bcn_offsets[i]] = count;
4835 if (sdata->vif.type == NL80211_IFTYPE_AP && resp) {
4836 u16 *resp_offsets = resp->cntdwn_counter_offsets;
4838 resp->data[resp_offsets[i]] = count;
4844 static u8 __ieee80211_beacon_update_cntdwn(struct beacon_data *beacon)
4846 beacon->cntdwn_current_counter--;
4848 /* the counter should never reach 0 */
4849 WARN_ON_ONCE(!beacon->cntdwn_current_counter);
4851 return beacon->cntdwn_current_counter;
4854 u8 ieee80211_beacon_update_cntdwn(struct ieee80211_vif *vif)
4856 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
4857 struct beacon_data *beacon = NULL;
4862 if (sdata->vif.type == NL80211_IFTYPE_AP)
4863 beacon = rcu_dereference(sdata->u.ap.beacon);
4864 else if (sdata->vif.type == NL80211_IFTYPE_ADHOC)
4865 beacon = rcu_dereference(sdata->u.ibss.presp);
4866 else if (ieee80211_vif_is_mesh(&sdata->vif))
4867 beacon = rcu_dereference(sdata->u.mesh.beacon);
4872 count = __ieee80211_beacon_update_cntdwn(beacon);
4878 EXPORT_SYMBOL(ieee80211_beacon_update_cntdwn);
4880 void ieee80211_beacon_set_cntdwn(struct ieee80211_vif *vif, u8 counter)
4882 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
4883 struct beacon_data *beacon = NULL;
4887 if (sdata->vif.type == NL80211_IFTYPE_AP)
4888 beacon = rcu_dereference(sdata->u.ap.beacon);
4889 else if (sdata->vif.type == NL80211_IFTYPE_ADHOC)
4890 beacon = rcu_dereference(sdata->u.ibss.presp);
4891 else if (ieee80211_vif_is_mesh(&sdata->vif))
4892 beacon = rcu_dereference(sdata->u.mesh.beacon);
4897 if (counter < beacon->cntdwn_current_counter)
4898 beacon->cntdwn_current_counter = counter;
4903 EXPORT_SYMBOL(ieee80211_beacon_set_cntdwn);
4905 bool ieee80211_beacon_cntdwn_is_complete(struct ieee80211_vif *vif)
4907 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
4908 struct beacon_data *beacon = NULL;
4910 size_t beacon_data_len;
4913 if (!ieee80211_sdata_running(sdata))
4917 if (vif->type == NL80211_IFTYPE_AP) {
4918 struct ieee80211_if_ap *ap = &sdata->u.ap;
4920 beacon = rcu_dereference(ap->beacon);
4921 if (WARN_ON(!beacon || !beacon->tail))
4923 beacon_data = beacon->tail;
4924 beacon_data_len = beacon->tail_len;
4925 } else if (vif->type == NL80211_IFTYPE_ADHOC) {
4926 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
4928 beacon = rcu_dereference(ifibss->presp);
4932 beacon_data = beacon->head;
4933 beacon_data_len = beacon->head_len;
4934 } else if (vif->type == NL80211_IFTYPE_MESH_POINT) {
4935 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
4937 beacon = rcu_dereference(ifmsh->beacon);
4941 beacon_data = beacon->head;
4942 beacon_data_len = beacon->head_len;
4948 if (!beacon->cntdwn_counter_offsets[0])
4951 if (WARN_ON_ONCE(beacon->cntdwn_counter_offsets[0] > beacon_data_len))
4954 if (beacon_data[beacon->cntdwn_counter_offsets[0]] == 1)
4962 EXPORT_SYMBOL(ieee80211_beacon_cntdwn_is_complete);
4964 static int ieee80211_beacon_protect(struct sk_buff *skb,
4965 struct ieee80211_local *local,
4966 struct ieee80211_sub_if_data *sdata)
4968 ieee80211_tx_result res;
4969 struct ieee80211_tx_data tx;
4970 struct sk_buff *check_skb;
4972 memset(&tx, 0, sizeof(tx));
4973 tx.key = rcu_dereference(sdata->default_beacon_key);
4978 __skb_queue_head_init(&tx.skbs);
4979 __skb_queue_tail(&tx.skbs, skb);
4980 res = ieee80211_tx_h_encrypt(&tx);
4981 check_skb = __skb_dequeue(&tx.skbs);
4982 /* we may crash after this, but it'd be a bug in crypto */
4983 WARN_ON(check_skb != skb);
4984 if (WARN_ON_ONCE(res != TX_CONTINUE))
4990 static struct sk_buff *
4991 __ieee80211_beacon_get(struct ieee80211_hw *hw,
4992 struct ieee80211_vif *vif,
4993 struct ieee80211_mutable_offsets *offs,
4996 struct ieee80211_local *local = hw_to_local(hw);
4997 struct beacon_data *beacon = NULL;
4998 struct sk_buff *skb = NULL;
4999 struct ieee80211_tx_info *info;
5000 struct ieee80211_sub_if_data *sdata = NULL;
5001 enum nl80211_band band;
5002 struct ieee80211_tx_rate_control txrc;
5003 struct ieee80211_chanctx_conf *chanctx_conf;
5004 int csa_off_base = 0;
5008 sdata = vif_to_sdata(vif);
5009 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
5011 if (!ieee80211_sdata_running(sdata) || !chanctx_conf)
5015 memset(offs, 0, sizeof(*offs));
5017 if (sdata->vif.type == NL80211_IFTYPE_AP) {
5018 struct ieee80211_if_ap *ap = &sdata->u.ap;
5020 beacon = rcu_dereference(ap->beacon);
5022 if (beacon->cntdwn_counter_offsets[0]) {
5024 ieee80211_beacon_update_cntdwn(vif);
5026 ieee80211_set_beacon_cntdwn(sdata, beacon);
5030 * headroom, head length,
5031 * tail length and maximum TIM length
5033 skb = dev_alloc_skb(local->tx_headroom +
5035 beacon->tail_len + 256 +
5036 local->hw.extra_beacon_tailroom);
5040 skb_reserve(skb, local->tx_headroom);
5041 skb_put_data(skb, beacon->head, beacon->head_len);
5043 ieee80211_beacon_add_tim(sdata, &ap->ps, skb,
5047 offs->tim_offset = beacon->head_len;
5048 offs->tim_length = skb->len - beacon->head_len;
5049 offs->cntdwn_counter_offs[0] = beacon->cntdwn_counter_offsets[0];
5051 /* for AP the csa offsets are from tail */
5052 csa_off_base = skb->len;
5056 skb_put_data(skb, beacon->tail,
5059 if (ieee80211_beacon_protect(skb, local, sdata) < 0)
5063 } else if (sdata->vif.type == NL80211_IFTYPE_ADHOC) {
5064 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
5065 struct ieee80211_hdr *hdr;
5067 beacon = rcu_dereference(ifibss->presp);
5071 if (beacon->cntdwn_counter_offsets[0]) {
5073 __ieee80211_beacon_update_cntdwn(beacon);
5075 ieee80211_set_beacon_cntdwn(sdata, beacon);
5078 skb = dev_alloc_skb(local->tx_headroom + beacon->head_len +
5079 local->hw.extra_beacon_tailroom);
5082 skb_reserve(skb, local->tx_headroom);
5083 skb_put_data(skb, beacon->head, beacon->head_len);
5085 hdr = (struct ieee80211_hdr *) skb->data;
5086 hdr->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
5087 IEEE80211_STYPE_BEACON);
5088 } else if (ieee80211_vif_is_mesh(&sdata->vif)) {
5089 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
5091 beacon = rcu_dereference(ifmsh->beacon);
5095 if (beacon->cntdwn_counter_offsets[0]) {
5097 /* TODO: For mesh csa_counter is in TU, so
5098 * decrementing it by one isn't correct, but
5099 * for now we leave it consistent with overall
5100 * mac80211's behavior.
5102 __ieee80211_beacon_update_cntdwn(beacon);
5104 ieee80211_set_beacon_cntdwn(sdata, beacon);
5107 if (ifmsh->sync_ops)
5108 ifmsh->sync_ops->adjust_tsf(sdata, beacon);
5110 skb = dev_alloc_skb(local->tx_headroom +
5114 local->hw.extra_beacon_tailroom);
5117 skb_reserve(skb, local->tx_headroom);
5118 skb_put_data(skb, beacon->head, beacon->head_len);
5119 ieee80211_beacon_add_tim(sdata, &ifmsh->ps, skb, is_template);
5122 offs->tim_offset = beacon->head_len;
5123 offs->tim_length = skb->len - beacon->head_len;
5126 skb_put_data(skb, beacon->tail, beacon->tail_len);
5133 if (offs && beacon) {
5136 for (i = 0; i < IEEE80211_MAX_CNTDWN_COUNTERS_NUM; i++) {
5137 u16 csa_off = beacon->cntdwn_counter_offsets[i];
5142 offs->cntdwn_counter_offs[i] = csa_off_base + csa_off;
5146 band = chanctx_conf->def.chan->band;
5148 info = IEEE80211_SKB_CB(skb);
5150 info->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
5151 info->flags |= IEEE80211_TX_CTL_NO_ACK;
5154 memset(&txrc, 0, sizeof(txrc));
5156 txrc.sband = local->hw.wiphy->bands[band];
5157 txrc.bss_conf = &sdata->vif.bss_conf;
5159 txrc.reported_rate.idx = -1;
5160 if (sdata->beacon_rate_set && sdata->beacon_rateidx_mask[band])
5161 txrc.rate_idx_mask = sdata->beacon_rateidx_mask[band];
5163 txrc.rate_idx_mask = sdata->rc_rateidx_mask[band];
5165 rate_control_get_rate(sdata, NULL, &txrc);
5167 info->control.vif = vif;
5169 info->flags |= IEEE80211_TX_CTL_CLEAR_PS_FILT |
5170 IEEE80211_TX_CTL_ASSIGN_SEQ |
5171 IEEE80211_TX_CTL_FIRST_FRAGMENT;
5179 ieee80211_beacon_get_template(struct ieee80211_hw *hw,
5180 struct ieee80211_vif *vif,
5181 struct ieee80211_mutable_offsets *offs)
5183 return __ieee80211_beacon_get(hw, vif, offs, true);
5185 EXPORT_SYMBOL(ieee80211_beacon_get_template);
5187 struct sk_buff *ieee80211_beacon_get_tim(struct ieee80211_hw *hw,
5188 struct ieee80211_vif *vif,
5189 u16 *tim_offset, u16 *tim_length)
5191 struct ieee80211_mutable_offsets offs = {};
5192 struct sk_buff *bcn = __ieee80211_beacon_get(hw, vif, &offs, false);
5193 struct sk_buff *copy;
5194 struct ieee80211_supported_band *sband;
5201 *tim_offset = offs.tim_offset;
5204 *tim_length = offs.tim_length;
5206 if (ieee80211_hw_check(hw, BEACON_TX_STATUS) ||
5207 !hw_to_local(hw)->monitors)
5210 /* send a copy to monitor interfaces */
5211 copy = skb_copy(bcn, GFP_ATOMIC);
5215 shift = ieee80211_vif_get_shift(vif);
5216 sband = ieee80211_get_sband(vif_to_sdata(vif));
5220 ieee80211_tx_monitor(hw_to_local(hw), copy, sband, 1, shift, false,
5225 EXPORT_SYMBOL(ieee80211_beacon_get_tim);
5227 struct sk_buff *ieee80211_proberesp_get(struct ieee80211_hw *hw,
5228 struct ieee80211_vif *vif)
5230 struct ieee80211_if_ap *ap = NULL;
5231 struct sk_buff *skb = NULL;
5232 struct probe_resp *presp = NULL;
5233 struct ieee80211_hdr *hdr;
5234 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
5236 if (sdata->vif.type != NL80211_IFTYPE_AP)
5242 presp = rcu_dereference(ap->probe_resp);
5246 skb = dev_alloc_skb(presp->len);
5250 skb_put_data(skb, presp->data, presp->len);
5252 hdr = (struct ieee80211_hdr *) skb->data;
5253 memset(hdr->addr1, 0, sizeof(hdr->addr1));
5259 EXPORT_SYMBOL(ieee80211_proberesp_get);
5261 struct sk_buff *ieee80211_get_fils_discovery_tmpl(struct ieee80211_hw *hw,
5262 struct ieee80211_vif *vif)
5264 struct sk_buff *skb = NULL;
5265 struct fils_discovery_data *tmpl = NULL;
5266 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
5268 if (sdata->vif.type != NL80211_IFTYPE_AP)
5272 tmpl = rcu_dereference(sdata->u.ap.fils_discovery);
5278 skb = dev_alloc_skb(sdata->local->hw.extra_tx_headroom + tmpl->len);
5280 skb_reserve(skb, sdata->local->hw.extra_tx_headroom);
5281 skb_put_data(skb, tmpl->data, tmpl->len);
5287 EXPORT_SYMBOL(ieee80211_get_fils_discovery_tmpl);
5290 ieee80211_get_unsol_bcast_probe_resp_tmpl(struct ieee80211_hw *hw,
5291 struct ieee80211_vif *vif)
5293 struct sk_buff *skb = NULL;
5294 struct unsol_bcast_probe_resp_data *tmpl = NULL;
5295 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
5297 if (sdata->vif.type != NL80211_IFTYPE_AP)
5301 tmpl = rcu_dereference(sdata->u.ap.unsol_bcast_probe_resp);
5307 skb = dev_alloc_skb(sdata->local->hw.extra_tx_headroom + tmpl->len);
5309 skb_reserve(skb, sdata->local->hw.extra_tx_headroom);
5310 skb_put_data(skb, tmpl->data, tmpl->len);
5316 EXPORT_SYMBOL(ieee80211_get_unsol_bcast_probe_resp_tmpl);
5318 struct sk_buff *ieee80211_pspoll_get(struct ieee80211_hw *hw,
5319 struct ieee80211_vif *vif)
5321 struct ieee80211_sub_if_data *sdata;
5322 struct ieee80211_if_managed *ifmgd;
5323 struct ieee80211_pspoll *pspoll;
5324 struct ieee80211_local *local;
5325 struct sk_buff *skb;
5327 if (WARN_ON(vif->type != NL80211_IFTYPE_STATION))
5330 sdata = vif_to_sdata(vif);
5331 ifmgd = &sdata->u.mgd;
5332 local = sdata->local;
5334 skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*pspoll));
5338 skb_reserve(skb, local->hw.extra_tx_headroom);
5340 pspoll = skb_put_zero(skb, sizeof(*pspoll));
5341 pspoll->frame_control = cpu_to_le16(IEEE80211_FTYPE_CTL |
5342 IEEE80211_STYPE_PSPOLL);
5343 pspoll->aid = cpu_to_le16(sdata->vif.bss_conf.aid);
5345 /* aid in PS-Poll has its two MSBs each set to 1 */
5346 pspoll->aid |= cpu_to_le16(1 << 15 | 1 << 14);
5348 memcpy(pspoll->bssid, ifmgd->bssid, ETH_ALEN);
5349 memcpy(pspoll->ta, vif->addr, ETH_ALEN);
5353 EXPORT_SYMBOL(ieee80211_pspoll_get);
5355 struct sk_buff *ieee80211_nullfunc_get(struct ieee80211_hw *hw,
5356 struct ieee80211_vif *vif,
5359 struct ieee80211_hdr_3addr *nullfunc;
5360 struct ieee80211_sub_if_data *sdata;
5361 struct ieee80211_if_managed *ifmgd;
5362 struct ieee80211_local *local;
5363 struct sk_buff *skb;
5366 if (WARN_ON(vif->type != NL80211_IFTYPE_STATION))
5369 sdata = vif_to_sdata(vif);
5370 ifmgd = &sdata->u.mgd;
5371 local = sdata->local;
5374 struct sta_info *sta;
5377 sta = sta_info_get(sdata, ifmgd->bssid);
5378 qos = sta && sta->sta.wme;
5382 skb = dev_alloc_skb(local->hw.extra_tx_headroom +
5383 sizeof(*nullfunc) + 2);
5387 skb_reserve(skb, local->hw.extra_tx_headroom);
5389 nullfunc = skb_put_zero(skb, sizeof(*nullfunc));
5390 nullfunc->frame_control = cpu_to_le16(IEEE80211_FTYPE_DATA |
5391 IEEE80211_STYPE_NULLFUNC |
5392 IEEE80211_FCTL_TODS);
5394 __le16 qoshdr = cpu_to_le16(7);
5396 BUILD_BUG_ON((IEEE80211_STYPE_QOS_NULLFUNC |
5397 IEEE80211_STYPE_NULLFUNC) !=
5398 IEEE80211_STYPE_QOS_NULLFUNC);
5399 nullfunc->frame_control |=
5400 cpu_to_le16(IEEE80211_STYPE_QOS_NULLFUNC);
5402 skb_set_queue_mapping(skb, IEEE80211_AC_VO);
5403 skb_put_data(skb, &qoshdr, sizeof(qoshdr));
5406 memcpy(nullfunc->addr1, ifmgd->bssid, ETH_ALEN);
5407 memcpy(nullfunc->addr2, vif->addr, ETH_ALEN);
5408 memcpy(nullfunc->addr3, ifmgd->bssid, ETH_ALEN);
5412 EXPORT_SYMBOL(ieee80211_nullfunc_get);
5414 struct sk_buff *ieee80211_probereq_get(struct ieee80211_hw *hw,
5416 const u8 *ssid, size_t ssid_len,
5419 struct ieee80211_local *local = hw_to_local(hw);
5420 struct ieee80211_hdr_3addr *hdr;
5421 struct sk_buff *skb;
5425 ie_ssid_len = 2 + ssid_len;
5427 skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*hdr) +
5428 ie_ssid_len + tailroom);
5432 skb_reserve(skb, local->hw.extra_tx_headroom);
5434 hdr = skb_put_zero(skb, sizeof(*hdr));
5435 hdr->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
5436 IEEE80211_STYPE_PROBE_REQ);
5437 eth_broadcast_addr(hdr->addr1);
5438 memcpy(hdr->addr2, src_addr, ETH_ALEN);
5439 eth_broadcast_addr(hdr->addr3);
5441 pos = skb_put(skb, ie_ssid_len);
5442 *pos++ = WLAN_EID_SSID;
5445 memcpy(pos, ssid, ssid_len);
5450 EXPORT_SYMBOL(ieee80211_probereq_get);
5452 void ieee80211_rts_get(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
5453 const void *frame, size_t frame_len,
5454 const struct ieee80211_tx_info *frame_txctl,
5455 struct ieee80211_rts *rts)
5457 const struct ieee80211_hdr *hdr = frame;
5459 rts->frame_control =
5460 cpu_to_le16(IEEE80211_FTYPE_CTL | IEEE80211_STYPE_RTS);
5461 rts->duration = ieee80211_rts_duration(hw, vif, frame_len,
5463 memcpy(rts->ra, hdr->addr1, sizeof(rts->ra));
5464 memcpy(rts->ta, hdr->addr2, sizeof(rts->ta));
5466 EXPORT_SYMBOL(ieee80211_rts_get);
5468 void ieee80211_ctstoself_get(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
5469 const void *frame, size_t frame_len,
5470 const struct ieee80211_tx_info *frame_txctl,
5471 struct ieee80211_cts *cts)
5473 const struct ieee80211_hdr *hdr = frame;
5475 cts->frame_control =
5476 cpu_to_le16(IEEE80211_FTYPE_CTL | IEEE80211_STYPE_CTS);
5477 cts->duration = ieee80211_ctstoself_duration(hw, vif,
5478 frame_len, frame_txctl);
5479 memcpy(cts->ra, hdr->addr1, sizeof(cts->ra));
5481 EXPORT_SYMBOL(ieee80211_ctstoself_get);
5484 ieee80211_get_buffered_bc(struct ieee80211_hw *hw,
5485 struct ieee80211_vif *vif)
5487 struct ieee80211_local *local = hw_to_local(hw);
5488 struct sk_buff *skb = NULL;
5489 struct ieee80211_tx_data tx;
5490 struct ieee80211_sub_if_data *sdata;
5492 struct ieee80211_tx_info *info;
5493 struct ieee80211_chanctx_conf *chanctx_conf;
5495 sdata = vif_to_sdata(vif);
5498 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
5503 if (sdata->vif.type == NL80211_IFTYPE_AP) {
5504 struct beacon_data *beacon =
5505 rcu_dereference(sdata->u.ap.beacon);
5507 if (!beacon || !beacon->head)
5510 ps = &sdata->u.ap.ps;
5511 } else if (ieee80211_vif_is_mesh(&sdata->vif)) {
5512 ps = &sdata->u.mesh.ps;
5517 if (ps->dtim_count != 0 || !ps->dtim_bc_mc)
5518 goto out; /* send buffered bc/mc only after DTIM beacon */
5521 skb = skb_dequeue(&ps->bc_buf);
5524 local->total_ps_buffered--;
5526 if (!skb_queue_empty(&ps->bc_buf) && skb->len >= 2) {
5527 struct ieee80211_hdr *hdr =
5528 (struct ieee80211_hdr *) skb->data;
5529 /* more buffered multicast/broadcast frames ==> set
5530 * MoreData flag in IEEE 802.11 header to inform PS
5532 hdr->frame_control |=
5533 cpu_to_le16(IEEE80211_FCTL_MOREDATA);
5536 if (sdata->vif.type == NL80211_IFTYPE_AP)
5537 sdata = IEEE80211_DEV_TO_SUB_IF(skb->dev);
5538 if (!ieee80211_tx_prepare(sdata, &tx, NULL, skb))
5540 ieee80211_free_txskb(hw, skb);
5543 info = IEEE80211_SKB_CB(skb);
5545 tx.flags |= IEEE80211_TX_PS_BUFFERED;
5546 info->band = chanctx_conf->def.chan->band;
5548 if (invoke_tx_handlers(&tx))
5555 EXPORT_SYMBOL(ieee80211_get_buffered_bc);
5557 int ieee80211_reserve_tid(struct ieee80211_sta *pubsta, u8 tid)
5559 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
5560 struct ieee80211_sub_if_data *sdata = sta->sdata;
5561 struct ieee80211_local *local = sdata->local;
5565 lockdep_assert_held(&local->sta_mtx);
5567 /* only some cases are supported right now */
5568 switch (sdata->vif.type) {
5569 case NL80211_IFTYPE_STATION:
5570 case NL80211_IFTYPE_AP:
5571 case NL80211_IFTYPE_AP_VLAN:
5578 if (WARN_ON(tid >= IEEE80211_NUM_UPS))
5581 if (sta->reserved_tid == tid) {
5586 if (sta->reserved_tid != IEEE80211_TID_UNRESERVED) {
5587 sdata_err(sdata, "TID reservation already active\n");
5592 ieee80211_stop_vif_queues(sdata->local, sdata,
5593 IEEE80211_QUEUE_STOP_REASON_RESERVE_TID);
5597 /* Tear down BA sessions so we stop aggregating on this TID */
5598 if (ieee80211_hw_check(&local->hw, AMPDU_AGGREGATION)) {
5599 set_sta_flag(sta, WLAN_STA_BLOCK_BA);
5600 __ieee80211_stop_tx_ba_session(sta, tid,
5601 AGG_STOP_LOCAL_REQUEST);
5604 queues = BIT(sdata->vif.hw_queue[ieee802_1d_to_ac[tid]]);
5605 __ieee80211_flush_queues(local, sdata, queues, false);
5607 sta->reserved_tid = tid;
5609 ieee80211_wake_vif_queues(local, sdata,
5610 IEEE80211_QUEUE_STOP_REASON_RESERVE_TID);
5612 if (ieee80211_hw_check(&local->hw, AMPDU_AGGREGATION))
5613 clear_sta_flag(sta, WLAN_STA_BLOCK_BA);
5619 EXPORT_SYMBOL(ieee80211_reserve_tid);
5621 void ieee80211_unreserve_tid(struct ieee80211_sta *pubsta, u8 tid)
5623 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
5624 struct ieee80211_sub_if_data *sdata = sta->sdata;
5626 lockdep_assert_held(&sdata->local->sta_mtx);
5628 /* only some cases are supported right now */
5629 switch (sdata->vif.type) {
5630 case NL80211_IFTYPE_STATION:
5631 case NL80211_IFTYPE_AP:
5632 case NL80211_IFTYPE_AP_VLAN:
5639 if (tid != sta->reserved_tid) {
5640 sdata_err(sdata, "TID to unreserve (%d) isn't reserved\n", tid);
5644 sta->reserved_tid = IEEE80211_TID_UNRESERVED;
5646 EXPORT_SYMBOL(ieee80211_unreserve_tid);
5648 void __ieee80211_tx_skb_tid_band(struct ieee80211_sub_if_data *sdata,
5649 struct sk_buff *skb, int tid,
5650 enum nl80211_band band)
5652 int ac = ieee80211_ac_from_tid(tid);
5654 skb_reset_mac_header(skb);
5655 skb_set_queue_mapping(skb, ac);
5656 skb->priority = tid;
5658 skb->dev = sdata->dev;
5661 * The other path calling ieee80211_xmit is from the tasklet,
5662 * and while we can handle concurrent transmissions locking
5663 * requirements are that we do not come into tx with bhs on.
5666 IEEE80211_SKB_CB(skb)->band = band;
5667 ieee80211_xmit(sdata, NULL, skb);
5671 int ieee80211_tx_control_port(struct wiphy *wiphy, struct net_device *dev,
5672 const u8 *buf, size_t len,
5673 const u8 *dest, __be16 proto, bool unencrypted,
5676 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
5677 struct ieee80211_local *local = sdata->local;
5678 struct sta_info *sta;
5679 struct sk_buff *skb;
5680 struct ethhdr *ehdr;
5684 /* Only accept CONTROL_PORT_PROTOCOL configured in CONNECT/ASSOCIATE
5685 * or Pre-Authentication
5687 if (proto != sdata->control_port_protocol &&
5688 proto != cpu_to_be16(ETH_P_PREAUTH))
5691 if (proto == sdata->control_port_protocol)
5692 ctrl_flags |= IEEE80211_TX_CTRL_PORT_CTRL_PROTO |
5693 IEEE80211_TX_CTRL_SKIP_MPATH_LOOKUP;
5696 flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
5699 ctrl_flags |= IEEE80211_TX_CTL_REQ_TX_STATUS;
5701 flags |= IEEE80211_TX_INTFL_NL80211_FRAME_TX;
5703 skb = dev_alloc_skb(local->hw.extra_tx_headroom +
5704 sizeof(struct ethhdr) + len);
5708 skb_reserve(skb, local->hw.extra_tx_headroom + sizeof(struct ethhdr));
5710 skb_put_data(skb, buf, len);
5712 ehdr = skb_push(skb, sizeof(struct ethhdr));
5713 memcpy(ehdr->h_dest, dest, ETH_ALEN);
5714 memcpy(ehdr->h_source, sdata->vif.addr, ETH_ALEN);
5715 ehdr->h_proto = proto;
5718 skb->protocol = proto;
5719 skb_reset_network_header(skb);
5720 skb_reset_mac_header(skb);
5722 /* update QoS header to prioritize control port frames if possible,
5723 * priorization also happens for control port frames send over
5728 if (ieee80211_lookup_ra_sta(sdata, skb, &sta) == 0 && !IS_ERR(sta)) {
5729 u16 queue = __ieee80211_select_queue(sdata, sta, skb);
5731 skb_set_queue_mapping(skb, queue);
5737 /* mutex lock is only needed for incrementing the cookie counter */
5738 mutex_lock(&local->mtx);
5741 __ieee80211_subif_start_xmit(skb, skb->dev, flags, ctrl_flags, cookie);
5744 mutex_unlock(&local->mtx);
5749 int ieee80211_probe_mesh_link(struct wiphy *wiphy, struct net_device *dev,
5750 const u8 *buf, size_t len)
5752 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
5753 struct ieee80211_local *local = sdata->local;
5754 struct sk_buff *skb;
5756 skb = dev_alloc_skb(local->hw.extra_tx_headroom + len +
5757 30 + /* header size */
5758 18); /* 11s header size */
5762 skb_reserve(skb, local->hw.extra_tx_headroom);
5763 skb_put_data(skb, buf, len);
5766 skb->protocol = htons(ETH_P_802_3);
5767 skb_reset_network_header(skb);
5768 skb_reset_mac_header(skb);
5771 __ieee80211_subif_start_xmit(skb, skb->dev, 0,
5772 IEEE80211_TX_CTRL_SKIP_MPATH_LOOKUP,