1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright 2002-2005, Instant802 Networks, Inc.
4 * Copyright 2005-2006, Devicescape Software, Inc.
7 * Copyright 2013-2014 Intel Mobile Communications GmbH
8 * Copyright (C) 2018 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 <net/net_namespace.h>
22 #include <net/ieee80211_radiotap.h>
23 #include <net/cfg80211.h>
24 #include <net/mac80211.h>
25 #include <net/codel.h>
26 #include <net/codel_impl.h>
27 #include <asm/unaligned.h>
28 #include <net/fq_impl.h>
30 #include "ieee80211_i.h"
31 #include "driver-ops.h"
41 static inline void ieee80211_tx_stats(struct net_device *dev, u32 len)
43 struct pcpu_sw_netstats *tstats = this_cpu_ptr(dev->tstats);
45 u64_stats_update_begin(&tstats->syncp);
47 tstats->tx_bytes += len;
48 u64_stats_update_end(&tstats->syncp);
51 static __le16 ieee80211_duration(struct ieee80211_tx_data *tx,
52 struct sk_buff *skb, int group_addr,
55 int rate, mrate, erp, dur, i, shift = 0;
56 struct ieee80211_rate *txrate;
57 struct ieee80211_local *local = tx->local;
58 struct ieee80211_supported_band *sband;
59 struct ieee80211_hdr *hdr;
60 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
61 struct ieee80211_chanctx_conf *chanctx_conf;
64 /* assume HW handles this */
65 if (tx->rate.flags & (IEEE80211_TX_RC_MCS | IEEE80211_TX_RC_VHT_MCS))
69 chanctx_conf = rcu_dereference(tx->sdata->vif.chanctx_conf);
71 shift = ieee80211_chandef_get_shift(&chanctx_conf->def);
72 rate_flags = ieee80211_chandef_rate_flags(&chanctx_conf->def);
77 if (WARN_ON_ONCE(tx->rate.idx < 0))
80 sband = local->hw.wiphy->bands[info->band];
81 txrate = &sband->bitrates[tx->rate.idx];
83 erp = txrate->flags & IEEE80211_RATE_ERP_G;
86 * data and mgmt (except PS Poll):
88 * - during contention period:
89 * if addr1 is group address: 0
90 * if more fragments = 0 and addr1 is individual address: time to
91 * transmit one ACK plus SIFS
92 * if more fragments = 1 and addr1 is individual address: time to
93 * transmit next fragment plus 2 x ACK plus 3 x SIFS
96 * - control response frame (CTS or ACK) shall be transmitted using the
97 * same rate as the immediately previous frame in the frame exchange
98 * sequence, if this rate belongs to the PHY mandatory rates, or else
99 * at the highest possible rate belonging to the PHY rates in the
102 hdr = (struct ieee80211_hdr *)skb->data;
103 if (ieee80211_is_ctl(hdr->frame_control)) {
104 /* TODO: These control frames are not currently sent by
105 * mac80211, but should they be implemented, this function
106 * needs to be updated to support duration field calculation.
108 * RTS: time needed to transmit pending data/mgmt frame plus
109 * one CTS frame plus one ACK frame plus 3 x SIFS
110 * CTS: duration of immediately previous RTS minus time
111 * required to transmit CTS and its SIFS
112 * ACK: 0 if immediately previous directed data/mgmt had
113 * more=0, with more=1 duration in ACK frame is duration
114 * from previous frame minus time needed to transmit ACK
116 * PS Poll: BIT(15) | BIT(14) | aid
122 if (0 /* FIX: data/mgmt during CFP */)
123 return cpu_to_le16(32768);
125 if (group_addr) /* Group address as the destination - no ACK */
128 /* Individual destination address:
129 * IEEE 802.11, Ch. 9.6 (after IEEE 802.11g changes)
130 * CTS and ACK frames shall be transmitted using the highest rate in
131 * basic rate set that is less than or equal to the rate of the
132 * immediately previous frame and that is using the same modulation
133 * (CCK or OFDM). If no basic rate set matches with these requirements,
134 * the highest mandatory rate of the PHY that is less than or equal to
135 * the rate of the previous frame is used.
136 * Mandatory rates for IEEE 802.11g PHY: 1, 2, 5.5, 11, 6, 12, 24 Mbps
139 /* use lowest available if everything fails */
140 mrate = sband->bitrates[0].bitrate;
141 for (i = 0; i < sband->n_bitrates; i++) {
142 struct ieee80211_rate *r = &sband->bitrates[i];
144 if (r->bitrate > txrate->bitrate)
147 if ((rate_flags & r->flags) != rate_flags)
150 if (tx->sdata->vif.bss_conf.basic_rates & BIT(i))
151 rate = DIV_ROUND_UP(r->bitrate, 1 << shift);
153 switch (sband->band) {
154 case NL80211_BAND_2GHZ: {
156 if (tx->sdata->flags & IEEE80211_SDATA_OPERATING_GMODE)
157 flag = IEEE80211_RATE_MANDATORY_G;
159 flag = IEEE80211_RATE_MANDATORY_B;
164 case NL80211_BAND_5GHZ:
165 case NL80211_BAND_6GHZ:
166 if (r->flags & IEEE80211_RATE_MANDATORY_A)
169 case NL80211_BAND_60GHZ:
170 /* TODO, for now fall through */
171 case NUM_NL80211_BANDS:
177 /* No matching basic rate found; use highest suitable mandatory
179 rate = DIV_ROUND_UP(mrate, 1 << shift);
182 /* Don't calculate ACKs for QoS Frames with NoAck Policy set */
183 if (ieee80211_is_data_qos(hdr->frame_control) &&
184 *(ieee80211_get_qos_ctl(hdr)) & IEEE80211_QOS_CTL_ACK_POLICY_NOACK)
187 /* Time needed to transmit ACK
188 * (10 bytes + 4-byte FCS = 112 bits) plus SIFS; rounded up
189 * to closest integer */
190 dur = ieee80211_frame_duration(sband->band, 10, rate, erp,
191 tx->sdata->vif.bss_conf.use_short_preamble,
195 /* Frame is fragmented: duration increases with time needed to
196 * transmit next fragment plus ACK and 2 x SIFS. */
197 dur *= 2; /* ACK + SIFS */
199 dur += ieee80211_frame_duration(sband->band, next_frag_len,
200 txrate->bitrate, erp,
201 tx->sdata->vif.bss_conf.use_short_preamble,
205 return cpu_to_le16(dur);
209 static ieee80211_tx_result debug_noinline
210 ieee80211_tx_h_dynamic_ps(struct ieee80211_tx_data *tx)
212 struct ieee80211_local *local = tx->local;
213 struct ieee80211_if_managed *ifmgd;
214 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
216 /* driver doesn't support power save */
217 if (!ieee80211_hw_check(&local->hw, SUPPORTS_PS))
220 /* hardware does dynamic power save */
221 if (ieee80211_hw_check(&local->hw, SUPPORTS_DYNAMIC_PS))
224 /* dynamic power save disabled */
225 if (local->hw.conf.dynamic_ps_timeout <= 0)
228 /* we are scanning, don't enable power save */
232 if (!local->ps_sdata)
235 /* No point if we're going to suspend */
236 if (local->quiescing)
239 /* dynamic ps is supported only in managed mode */
240 if (tx->sdata->vif.type != NL80211_IFTYPE_STATION)
243 if (unlikely(info->flags & IEEE80211_TX_INTFL_OFFCHAN_TX_OK))
246 ifmgd = &tx->sdata->u.mgd;
249 * Don't wakeup from power save if u-apsd is enabled, voip ac has
250 * u-apsd enabled and the frame is in voip class. This effectively
251 * means that even if all access categories have u-apsd enabled, in
252 * practise u-apsd is only used with the voip ac. This is a
253 * workaround for the case when received voip class packets do not
254 * have correct qos tag for some reason, due the network or the
257 * Note: ifmgd->uapsd_queues access is racy here. If the value is
258 * changed via debugfs, user needs to reassociate manually to have
259 * everything in sync.
261 if ((ifmgd->flags & IEEE80211_STA_UAPSD_ENABLED) &&
262 (ifmgd->uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_VO) &&
263 skb_get_queue_mapping(tx->skb) == IEEE80211_AC_VO)
266 if (local->hw.conf.flags & IEEE80211_CONF_PS) {
267 ieee80211_stop_queues_by_reason(&local->hw,
268 IEEE80211_MAX_QUEUE_MAP,
269 IEEE80211_QUEUE_STOP_REASON_PS,
271 ifmgd->flags &= ~IEEE80211_STA_NULLFUNC_ACKED;
272 ieee80211_queue_work(&local->hw,
273 &local->dynamic_ps_disable_work);
276 /* Don't restart the timer if we're not disassociated */
277 if (!ifmgd->associated)
280 mod_timer(&local->dynamic_ps_timer, jiffies +
281 msecs_to_jiffies(local->hw.conf.dynamic_ps_timeout));
286 static ieee80211_tx_result debug_noinline
287 ieee80211_tx_h_check_assoc(struct ieee80211_tx_data *tx)
290 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data;
291 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
294 if (unlikely(info->flags & IEEE80211_TX_CTL_INJECTED))
297 if (unlikely(test_bit(SCAN_SW_SCANNING, &tx->local->scanning)) &&
298 test_bit(SDATA_STATE_OFFCHANNEL, &tx->sdata->state) &&
299 !ieee80211_is_probe_req(hdr->frame_control) &&
300 !ieee80211_is_nullfunc(hdr->frame_control))
302 * When software scanning only nullfunc frames (to notify
303 * the sleep state to the AP) and probe requests (for the
304 * active scan) are allowed, all other frames should not be
305 * sent and we should not get here, but if we do
306 * nonetheless, drop them to avoid sending them
307 * off-channel. See the link below and
308 * ieee80211_start_scan() for more.
310 * http://article.gmane.org/gmane.linux.kernel.wireless.general/30089
314 if (tx->sdata->vif.type == NL80211_IFTYPE_OCB)
317 if (tx->sdata->vif.type == NL80211_IFTYPE_WDS)
320 if (tx->flags & IEEE80211_TX_PS_BUFFERED)
324 assoc = test_sta_flag(tx->sta, WLAN_STA_ASSOC);
326 if (likely(tx->flags & IEEE80211_TX_UNICAST)) {
327 if (unlikely(!assoc &&
328 ieee80211_is_data(hdr->frame_control))) {
329 #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
330 sdata_info(tx->sdata,
331 "dropped data frame to not associated station %pM\n",
334 I802_DEBUG_INC(tx->local->tx_handlers_drop_not_assoc);
337 } else if (unlikely(ieee80211_is_data(hdr->frame_control) &&
338 ieee80211_vif_get_num_mcast_if(tx->sdata) == 0)) {
340 * No associated STAs - no need to send multicast
349 /* This function is called whenever the AP is about to exceed the maximum limit
350 * of buffered frames for power saving STAs. This situation should not really
351 * happen often during normal operation, so dropping the oldest buffered packet
352 * from each queue should be OK to make some room for new frames. */
353 static void purge_old_ps_buffers(struct ieee80211_local *local)
355 int total = 0, purged = 0;
357 struct ieee80211_sub_if_data *sdata;
358 struct sta_info *sta;
360 list_for_each_entry_rcu(sdata, &local->interfaces, list) {
363 if (sdata->vif.type == NL80211_IFTYPE_AP)
364 ps = &sdata->u.ap.ps;
365 else if (ieee80211_vif_is_mesh(&sdata->vif))
366 ps = &sdata->u.mesh.ps;
370 skb = skb_dequeue(&ps->bc_buf);
373 ieee80211_free_txskb(&local->hw, skb);
375 total += skb_queue_len(&ps->bc_buf);
379 * Drop one frame from each station from the lowest-priority
380 * AC that has frames at all.
382 list_for_each_entry_rcu(sta, &local->sta_list, list) {
385 for (ac = IEEE80211_AC_BK; ac >= IEEE80211_AC_VO; ac--) {
386 skb = skb_dequeue(&sta->ps_tx_buf[ac]);
387 total += skb_queue_len(&sta->ps_tx_buf[ac]);
390 ieee80211_free_txskb(&local->hw, skb);
396 local->total_ps_buffered = total;
397 ps_dbg_hw(&local->hw, "PS buffers full - purged %d frames\n", purged);
400 static ieee80211_tx_result
401 ieee80211_tx_h_multicast_ps_buf(struct ieee80211_tx_data *tx)
403 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
404 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data;
408 * broadcast/multicast frame
410 * If any of the associated/peer stations is in power save mode,
411 * the frame is buffered to be sent after DTIM beacon frame.
412 * This is done either by the hardware or us.
415 /* powersaving STAs currently only in AP/VLAN/mesh mode */
416 if (tx->sdata->vif.type == NL80211_IFTYPE_AP ||
417 tx->sdata->vif.type == NL80211_IFTYPE_AP_VLAN) {
421 ps = &tx->sdata->bss->ps;
422 } else if (ieee80211_vif_is_mesh(&tx->sdata->vif)) {
423 ps = &tx->sdata->u.mesh.ps;
429 /* no buffering for ordered frames */
430 if (ieee80211_has_order(hdr->frame_control))
433 if (ieee80211_is_probe_req(hdr->frame_control))
436 if (ieee80211_hw_check(&tx->local->hw, QUEUE_CONTROL))
437 info->hw_queue = tx->sdata->vif.cab_queue;
439 /* no stations in PS mode and no buffered packets */
440 if (!atomic_read(&ps->num_sta_ps) && skb_queue_empty(&ps->bc_buf))
443 info->flags |= IEEE80211_TX_CTL_SEND_AFTER_DTIM;
445 /* device releases frame after DTIM beacon */
446 if (!ieee80211_hw_check(&tx->local->hw, HOST_BROADCAST_PS_BUFFERING))
449 /* buffered in mac80211 */
450 if (tx->local->total_ps_buffered >= TOTAL_MAX_TX_BUFFER)
451 purge_old_ps_buffers(tx->local);
453 if (skb_queue_len(&ps->bc_buf) >= AP_MAX_BC_BUFFER) {
455 "BC TX buffer full - dropping the oldest frame\n");
456 ieee80211_free_txskb(&tx->local->hw, skb_dequeue(&ps->bc_buf));
458 tx->local->total_ps_buffered++;
460 skb_queue_tail(&ps->bc_buf, tx->skb);
465 static int ieee80211_use_mfp(__le16 fc, struct sta_info *sta,
468 if (!ieee80211_is_mgmt(fc))
471 if (sta == NULL || !test_sta_flag(sta, WLAN_STA_MFP))
474 if (!ieee80211_is_robust_mgmt_frame(skb))
480 static ieee80211_tx_result
481 ieee80211_tx_h_unicast_ps_buf(struct ieee80211_tx_data *tx)
483 struct sta_info *sta = tx->sta;
484 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
485 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data;
486 struct ieee80211_local *local = tx->local;
491 if (unlikely((test_sta_flag(sta, WLAN_STA_PS_STA) ||
492 test_sta_flag(sta, WLAN_STA_PS_DRIVER) ||
493 test_sta_flag(sta, WLAN_STA_PS_DELIVER)) &&
494 !(info->flags & IEEE80211_TX_CTL_NO_PS_BUFFER))) {
495 int ac = skb_get_queue_mapping(tx->skb);
497 if (ieee80211_is_mgmt(hdr->frame_control) &&
498 !ieee80211_is_bufferable_mmpdu(hdr->frame_control)) {
499 info->flags |= IEEE80211_TX_CTL_NO_PS_BUFFER;
503 ps_dbg(sta->sdata, "STA %pM aid %d: PS buffer for AC %d\n",
504 sta->sta.addr, sta->sta.aid, ac);
505 if (tx->local->total_ps_buffered >= TOTAL_MAX_TX_BUFFER)
506 purge_old_ps_buffers(tx->local);
508 /* sync with ieee80211_sta_ps_deliver_wakeup */
509 spin_lock(&sta->ps_lock);
511 * STA woke up the meantime and all the frames on ps_tx_buf have
512 * been queued to pending queue. No reordering can happen, go
513 * ahead and Tx the packet.
515 if (!test_sta_flag(sta, WLAN_STA_PS_STA) &&
516 !test_sta_flag(sta, WLAN_STA_PS_DRIVER) &&
517 !test_sta_flag(sta, WLAN_STA_PS_DELIVER)) {
518 spin_unlock(&sta->ps_lock);
522 if (skb_queue_len(&sta->ps_tx_buf[ac]) >= STA_MAX_TX_BUFFER) {
523 struct sk_buff *old = skb_dequeue(&sta->ps_tx_buf[ac]);
525 "STA %pM TX buffer for AC %d full - dropping oldest frame\n",
527 ieee80211_free_txskb(&local->hw, old);
529 tx->local->total_ps_buffered++;
531 info->control.jiffies = jiffies;
532 info->control.vif = &tx->sdata->vif;
533 info->flags |= IEEE80211_TX_INTFL_NEED_TXPROCESSING;
534 info->flags &= ~IEEE80211_TX_TEMPORARY_FLAGS;
535 skb_queue_tail(&sta->ps_tx_buf[ac], tx->skb);
536 spin_unlock(&sta->ps_lock);
538 if (!timer_pending(&local->sta_cleanup))
539 mod_timer(&local->sta_cleanup,
540 round_jiffies(jiffies +
541 STA_INFO_CLEANUP_INTERVAL));
544 * We queued up some frames, so the TIM bit might
545 * need to be set, recalculate it.
547 sta_info_recalc_tim(sta);
550 } else if (unlikely(test_sta_flag(sta, WLAN_STA_PS_STA))) {
552 "STA %pM in PS mode, but polling/in SP -> send frame\n",
559 static ieee80211_tx_result debug_noinline
560 ieee80211_tx_h_ps_buf(struct ieee80211_tx_data *tx)
562 if (unlikely(tx->flags & IEEE80211_TX_PS_BUFFERED))
565 if (tx->flags & IEEE80211_TX_UNICAST)
566 return ieee80211_tx_h_unicast_ps_buf(tx);
568 return ieee80211_tx_h_multicast_ps_buf(tx);
571 static ieee80211_tx_result debug_noinline
572 ieee80211_tx_h_check_control_port_protocol(struct ieee80211_tx_data *tx)
574 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
576 if (unlikely(tx->sdata->control_port_protocol == tx->skb->protocol)) {
577 if (tx->sdata->control_port_no_encrypt)
578 info->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
579 info->control.flags |= IEEE80211_TX_CTRL_PORT_CTRL_PROTO;
580 info->flags |= IEEE80211_TX_CTL_USE_MINRATE;
586 static ieee80211_tx_result debug_noinline
587 ieee80211_tx_h_select_key(struct ieee80211_tx_data *tx)
589 struct ieee80211_key *key;
590 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
591 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data;
593 if (unlikely(info->flags & IEEE80211_TX_INTFL_DONT_ENCRYPT))
596 (key = rcu_dereference(tx->sta->ptk[tx->sta->ptk_idx])))
598 else if (ieee80211_is_group_privacy_action(tx->skb) &&
599 (key = rcu_dereference(tx->sdata->default_multicast_key)))
601 else if (ieee80211_is_mgmt(hdr->frame_control) &&
602 is_multicast_ether_addr(hdr->addr1) &&
603 ieee80211_is_robust_mgmt_frame(tx->skb) &&
604 (key = rcu_dereference(tx->sdata->default_mgmt_key)))
606 else if (is_multicast_ether_addr(hdr->addr1) &&
607 (key = rcu_dereference(tx->sdata->default_multicast_key)))
609 else if (!is_multicast_ether_addr(hdr->addr1) &&
610 (key = rcu_dereference(tx->sdata->default_unicast_key)))
616 bool skip_hw = false;
618 /* TODO: add threshold stuff again */
620 switch (tx->key->conf.cipher) {
621 case WLAN_CIPHER_SUITE_WEP40:
622 case WLAN_CIPHER_SUITE_WEP104:
623 case WLAN_CIPHER_SUITE_TKIP:
624 if (!ieee80211_is_data_present(hdr->frame_control))
627 case WLAN_CIPHER_SUITE_CCMP:
628 case WLAN_CIPHER_SUITE_CCMP_256:
629 case WLAN_CIPHER_SUITE_GCMP:
630 case WLAN_CIPHER_SUITE_GCMP_256:
631 if (!ieee80211_is_data_present(hdr->frame_control) &&
632 !ieee80211_use_mfp(hdr->frame_control, tx->sta,
634 !ieee80211_is_group_privacy_action(tx->skb))
637 skip_hw = (tx->key->conf.flags &
638 IEEE80211_KEY_FLAG_SW_MGMT_TX) &&
639 ieee80211_is_mgmt(hdr->frame_control);
641 case WLAN_CIPHER_SUITE_AES_CMAC:
642 case WLAN_CIPHER_SUITE_BIP_CMAC_256:
643 case WLAN_CIPHER_SUITE_BIP_GMAC_128:
644 case WLAN_CIPHER_SUITE_BIP_GMAC_256:
645 if (!ieee80211_is_mgmt(hdr->frame_control))
650 if (unlikely(tx->key && tx->key->flags & KEY_FLAG_TAINTED &&
651 !ieee80211_is_deauth(hdr->frame_control)))
654 if (!skip_hw && tx->key &&
655 tx->key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE)
656 info->control.hw_key = &tx->key->conf;
662 static ieee80211_tx_result debug_noinline
663 ieee80211_tx_h_rate_ctrl(struct ieee80211_tx_data *tx)
665 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
666 struct ieee80211_hdr *hdr = (void *)tx->skb->data;
667 struct ieee80211_supported_band *sband;
669 struct ieee80211_tx_rate_control txrc;
670 struct ieee80211_sta_rates *ratetbl = NULL;
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_data(hdr->frame_control) ||
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",
734 tx->sdata->name, hdr->addr1,
739 * If we're associated with the sta at this point we know we can at
740 * least send the frame at the lowest bit rate.
742 rate_control_get_rate(tx->sdata, tx->sta, &txrc);
744 if (tx->sta && !info->control.skip_table)
745 ratetbl = rcu_dereference(tx->sta->sta.rates);
747 if (unlikely(info->control.rates[0].idx < 0)) {
749 struct ieee80211_tx_rate rate = {
750 .idx = ratetbl->rate[0].idx,
751 .flags = ratetbl->rate[0].flags,
752 .count = ratetbl->rate[0].count
755 if (ratetbl->rate[0].idx < 0)
763 tx->rate = info->control.rates[0];
766 if (txrc.reported_rate.idx < 0) {
767 txrc.reported_rate = tx->rate;
768 if (tx->sta && ieee80211_is_data(hdr->frame_control))
769 tx->sta->tx_stats.last_rate = txrc.reported_rate;
771 tx->sta->tx_stats.last_rate = txrc.reported_rate;
776 if (unlikely(!info->control.rates[0].count))
777 info->control.rates[0].count = 1;
779 if (WARN_ON_ONCE((info->control.rates[0].count > 1) &&
780 (info->flags & IEEE80211_TX_CTL_NO_ACK)))
781 info->control.rates[0].count = 1;
786 static __le16 ieee80211_tx_next_seq(struct sta_info *sta, int tid)
788 u16 *seq = &sta->tid_seq[tid];
789 __le16 ret = cpu_to_le16(*seq);
791 /* Increase the sequence number. */
792 *seq = (*seq + 0x10) & IEEE80211_SCTL_SEQ;
797 static ieee80211_tx_result debug_noinline
798 ieee80211_tx_h_sequence(struct ieee80211_tx_data *tx)
800 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
801 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data;
805 * Packet injection may want to control the sequence
806 * number, if we have no matching interface then we
807 * neither assign one ourselves nor ask the driver to.
809 if (unlikely(info->control.vif->type == NL80211_IFTYPE_MONITOR))
812 if (unlikely(ieee80211_is_ctl(hdr->frame_control)))
815 if (ieee80211_hdrlen(hdr->frame_control) < 24)
818 if (ieee80211_is_qos_nullfunc(hdr->frame_control))
822 * Anything but QoS data that has a sequence number field
823 * (is long enough) gets a sequence number from the global
824 * counter. QoS data frames with a multicast destination
825 * also use the global counter (802.11-2012 9.3.2.10).
827 if (!ieee80211_is_data_qos(hdr->frame_control) ||
828 is_multicast_ether_addr(hdr->addr1)) {
829 if (tx->flags & IEEE80211_TX_NO_SEQNO)
831 /* driver should assign sequence number */
832 info->flags |= IEEE80211_TX_CTL_ASSIGN_SEQ;
833 /* for pure STA mode without beacons, we can do it */
834 hdr->seq_ctrl = cpu_to_le16(tx->sdata->sequence_number);
835 tx->sdata->sequence_number += 0x10;
837 tx->sta->tx_stats.msdu[IEEE80211_NUM_TIDS]++;
842 * This should be true for injected/management frames only, for
843 * management frames we have set the IEEE80211_TX_CTL_ASSIGN_SEQ
844 * above since they are not QoS-data frames.
849 /* include per-STA, per-TID sequence counter */
850 tid = ieee80211_get_tid(hdr);
851 tx->sta->tx_stats.msdu[tid]++;
853 hdr->seq_ctrl = ieee80211_tx_next_seq(tx->sta, tid);
858 static int ieee80211_fragment(struct ieee80211_tx_data *tx,
859 struct sk_buff *skb, int hdrlen,
862 struct ieee80211_local *local = tx->local;
863 struct ieee80211_tx_info *info;
865 int per_fragm = frag_threshold - hdrlen - FCS_LEN;
866 int pos = hdrlen + per_fragm;
867 int rem = skb->len - hdrlen - per_fragm;
869 if (WARN_ON(rem < 0))
872 /* first fragment was already added to queue by caller */
875 int fraglen = per_fragm;
880 tmp = dev_alloc_skb(local->tx_headroom +
882 tx->sdata->encrypt_headroom +
883 IEEE80211_ENCRYPT_TAILROOM);
887 __skb_queue_tail(&tx->skbs, tmp);
890 local->tx_headroom + tx->sdata->encrypt_headroom);
892 /* copy control information */
893 memcpy(tmp->cb, skb->cb, sizeof(tmp->cb));
895 info = IEEE80211_SKB_CB(tmp);
896 info->flags &= ~(IEEE80211_TX_CTL_CLEAR_PS_FILT |
897 IEEE80211_TX_CTL_FIRST_FRAGMENT);
900 info->flags |= IEEE80211_TX_CTL_MORE_FRAMES;
902 skb_copy_queue_mapping(tmp, skb);
903 tmp->priority = skb->priority;
906 /* copy header and data */
907 skb_put_data(tmp, skb->data, hdrlen);
908 skb_put_data(tmp, skb->data + pos, fraglen);
913 /* adjust first fragment's length */
914 skb_trim(skb, hdrlen + per_fragm);
918 static ieee80211_tx_result debug_noinline
919 ieee80211_tx_h_fragment(struct ieee80211_tx_data *tx)
921 struct sk_buff *skb = tx->skb;
922 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
923 struct ieee80211_hdr *hdr = (void *)skb->data;
924 int frag_threshold = tx->local->hw.wiphy->frag_threshold;
928 /* no matter what happens, tx->skb moves to tx->skbs */
929 __skb_queue_tail(&tx->skbs, skb);
932 if (info->flags & IEEE80211_TX_CTL_DONTFRAG)
935 if (ieee80211_hw_check(&tx->local->hw, SUPPORTS_TX_FRAG))
939 * Warn when submitting a fragmented A-MPDU frame and drop it.
940 * This scenario is handled in ieee80211_tx_prepare but extra
941 * caution taken here as fragmented ampdu may cause Tx stop.
943 if (WARN_ON(info->flags & IEEE80211_TX_CTL_AMPDU))
946 hdrlen = ieee80211_hdrlen(hdr->frame_control);
948 /* internal error, why isn't DONTFRAG set? */
949 if (WARN_ON(skb->len + FCS_LEN <= frag_threshold))
953 * Now fragment the frame. This will allocate all the fragments and
954 * chain them (using skb as the first fragment) to skb->next.
955 * During transmission, we will remove the successfully transmitted
956 * fragments from this list. When the low-level driver rejects one
957 * of the fragments then we will simply pretend to accept the skb
958 * but store it away as pending.
960 if (ieee80211_fragment(tx, skb, hdrlen, frag_threshold))
963 /* update duration/seq/flags of fragments */
966 skb_queue_walk(&tx->skbs, skb) {
967 const __le16 morefrags = cpu_to_le16(IEEE80211_FCTL_MOREFRAGS);
969 hdr = (void *)skb->data;
970 info = IEEE80211_SKB_CB(skb);
972 if (!skb_queue_is_last(&tx->skbs, skb)) {
973 hdr->frame_control |= morefrags;
975 * No multi-rate retries for fragmented frames, that
976 * would completely throw off the NAV at other STAs.
978 info->control.rates[1].idx = -1;
979 info->control.rates[2].idx = -1;
980 info->control.rates[3].idx = -1;
981 BUILD_BUG_ON(IEEE80211_TX_MAX_RATES != 4);
982 info->flags &= ~IEEE80211_TX_CTL_RATE_CTRL_PROBE;
984 hdr->frame_control &= ~morefrags;
986 hdr->seq_ctrl |= cpu_to_le16(fragnum & IEEE80211_SCTL_FRAG);
993 static ieee80211_tx_result debug_noinline
994 ieee80211_tx_h_stats(struct ieee80211_tx_data *tx)
1002 skb_queue_walk(&tx->skbs, skb) {
1003 ac = skb_get_queue_mapping(skb);
1004 tx->sta->tx_stats.bytes[ac] += skb->len;
1007 tx->sta->tx_stats.packets[ac]++;
1012 static ieee80211_tx_result debug_noinline
1013 ieee80211_tx_h_encrypt(struct ieee80211_tx_data *tx)
1018 switch (tx->key->conf.cipher) {
1019 case WLAN_CIPHER_SUITE_WEP40:
1020 case WLAN_CIPHER_SUITE_WEP104:
1021 return ieee80211_crypto_wep_encrypt(tx);
1022 case WLAN_CIPHER_SUITE_TKIP:
1023 return ieee80211_crypto_tkip_encrypt(tx);
1024 case WLAN_CIPHER_SUITE_CCMP:
1025 return ieee80211_crypto_ccmp_encrypt(
1026 tx, IEEE80211_CCMP_MIC_LEN);
1027 case WLAN_CIPHER_SUITE_CCMP_256:
1028 return ieee80211_crypto_ccmp_encrypt(
1029 tx, IEEE80211_CCMP_256_MIC_LEN);
1030 case WLAN_CIPHER_SUITE_AES_CMAC:
1031 return ieee80211_crypto_aes_cmac_encrypt(tx);
1032 case WLAN_CIPHER_SUITE_BIP_CMAC_256:
1033 return ieee80211_crypto_aes_cmac_256_encrypt(tx);
1034 case WLAN_CIPHER_SUITE_BIP_GMAC_128:
1035 case WLAN_CIPHER_SUITE_BIP_GMAC_256:
1036 return ieee80211_crypto_aes_gmac_encrypt(tx);
1037 case WLAN_CIPHER_SUITE_GCMP:
1038 case WLAN_CIPHER_SUITE_GCMP_256:
1039 return ieee80211_crypto_gcmp_encrypt(tx);
1041 return ieee80211_crypto_hw_encrypt(tx);
1047 static ieee80211_tx_result debug_noinline
1048 ieee80211_tx_h_calculate_duration(struct ieee80211_tx_data *tx)
1050 struct sk_buff *skb;
1051 struct ieee80211_hdr *hdr;
1055 skb_queue_walk(&tx->skbs, skb) {
1056 hdr = (void *) skb->data;
1057 if (unlikely(ieee80211_is_pspoll(hdr->frame_control)))
1058 break; /* must not overwrite AID */
1059 if (!skb_queue_is_last(&tx->skbs, skb)) {
1060 struct sk_buff *next = skb_queue_next(&tx->skbs, skb);
1061 next_len = next->len;
1064 group_addr = is_multicast_ether_addr(hdr->addr1);
1067 ieee80211_duration(tx, skb, group_addr, next_len);
1073 /* actual transmit path */
1075 static bool ieee80211_tx_prep_agg(struct ieee80211_tx_data *tx,
1076 struct sk_buff *skb,
1077 struct ieee80211_tx_info *info,
1078 struct tid_ampdu_tx *tid_tx,
1081 bool queued = false;
1082 bool reset_agg_timer = false;
1083 struct sk_buff *purge_skb = NULL;
1085 if (test_bit(HT_AGG_STATE_OPERATIONAL, &tid_tx->state)) {
1086 info->flags |= IEEE80211_TX_CTL_AMPDU;
1087 reset_agg_timer = true;
1088 } else if (test_bit(HT_AGG_STATE_WANT_START, &tid_tx->state)) {
1090 * nothing -- this aggregation session is being started
1091 * but that might still fail with the driver
1093 } else if (!tx->sta->sta.txq[tid]) {
1094 spin_lock(&tx->sta->lock);
1096 * Need to re-check now, because we may get here
1098 * 1) in the window during which the setup is actually
1099 * already done, but not marked yet because not all
1100 * packets are spliced over to the driver pending
1101 * queue yet -- if this happened we acquire the lock
1102 * either before or after the splice happens, but
1103 * need to recheck which of these cases happened.
1105 * 2) during session teardown, if the OPERATIONAL bit
1106 * was cleared due to the teardown but the pointer
1107 * hasn't been assigned NULL yet (or we loaded it
1108 * before it was assigned) -- in this case it may
1109 * now be NULL which means we should just let the
1110 * packet pass through because splicing the frames
1111 * back is already done.
1113 tid_tx = rcu_dereference_protected_tid_tx(tx->sta, tid);
1116 /* do nothing, let packet pass through */
1117 } else if (test_bit(HT_AGG_STATE_OPERATIONAL, &tid_tx->state)) {
1118 info->flags |= IEEE80211_TX_CTL_AMPDU;
1119 reset_agg_timer = true;
1122 if (info->flags & IEEE80211_TX_CTL_NO_PS_BUFFER) {
1123 clear_sta_flag(tx->sta, WLAN_STA_SP);
1124 ps_dbg(tx->sta->sdata,
1125 "STA %pM aid %d: SP frame queued, close the SP w/o telling the peer\n",
1126 tx->sta->sta.addr, tx->sta->sta.aid);
1128 info->control.vif = &tx->sdata->vif;
1129 info->flags |= IEEE80211_TX_INTFL_NEED_TXPROCESSING;
1130 info->flags &= ~IEEE80211_TX_TEMPORARY_FLAGS;
1131 __skb_queue_tail(&tid_tx->pending, skb);
1132 if (skb_queue_len(&tid_tx->pending) > STA_MAX_TX_BUFFER)
1133 purge_skb = __skb_dequeue(&tid_tx->pending);
1135 spin_unlock(&tx->sta->lock);
1138 ieee80211_free_txskb(&tx->local->hw, purge_skb);
1141 /* reset session timer */
1142 if (reset_agg_timer)
1143 tid_tx->last_tx = jiffies;
1150 * pass %NULL for the station if unknown, a valid pointer if known
1151 * or an ERR_PTR() if the station is known not to exist
1153 static ieee80211_tx_result
1154 ieee80211_tx_prepare(struct ieee80211_sub_if_data *sdata,
1155 struct ieee80211_tx_data *tx,
1156 struct sta_info *sta, struct sk_buff *skb)
1158 struct ieee80211_local *local = sdata->local;
1159 struct ieee80211_hdr *hdr;
1160 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1163 memset(tx, 0, sizeof(*tx));
1167 __skb_queue_head_init(&tx->skbs);
1170 * If this flag is set to true anywhere, and we get here,
1171 * we are doing the needed processing, so remove the flag
1174 info->flags &= ~IEEE80211_TX_INTFL_NEED_TXPROCESSING;
1176 hdr = (struct ieee80211_hdr *) skb->data;
1182 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN) {
1183 tx->sta = rcu_dereference(sdata->u.vlan.sta);
1184 if (!tx->sta && sdata->wdev.use_4addr)
1186 } else if (info->flags & (IEEE80211_TX_INTFL_NL80211_FRAME_TX |
1187 IEEE80211_TX_CTL_INJECTED) ||
1188 tx->sdata->control_port_protocol == tx->skb->protocol) {
1189 tx->sta = sta_info_get_bss(sdata, hdr->addr1);
1191 if (!tx->sta && !is_multicast_ether_addr(hdr->addr1))
1192 tx->sta = sta_info_get(sdata, hdr->addr1);
1195 if (tx->sta && ieee80211_is_data_qos(hdr->frame_control) &&
1196 !ieee80211_is_qos_nullfunc(hdr->frame_control) &&
1197 ieee80211_hw_check(&local->hw, AMPDU_AGGREGATION) &&
1198 !ieee80211_hw_check(&local->hw, TX_AMPDU_SETUP_IN_HW)) {
1199 struct tid_ampdu_tx *tid_tx;
1201 tid = ieee80211_get_tid(hdr);
1203 tid_tx = rcu_dereference(tx->sta->ampdu_mlme.tid_tx[tid]);
1207 queued = ieee80211_tx_prep_agg(tx, skb, info,
1210 if (unlikely(queued))
1215 if (is_multicast_ether_addr(hdr->addr1)) {
1216 tx->flags &= ~IEEE80211_TX_UNICAST;
1217 info->flags |= IEEE80211_TX_CTL_NO_ACK;
1219 tx->flags |= IEEE80211_TX_UNICAST;
1221 if (!(info->flags & IEEE80211_TX_CTL_DONTFRAG)) {
1222 if (!(tx->flags & IEEE80211_TX_UNICAST) ||
1223 skb->len + FCS_LEN <= local->hw.wiphy->frag_threshold ||
1224 info->flags & IEEE80211_TX_CTL_AMPDU)
1225 info->flags |= IEEE80211_TX_CTL_DONTFRAG;
1229 info->flags |= IEEE80211_TX_CTL_CLEAR_PS_FILT;
1230 else if (test_and_clear_sta_flag(tx->sta, WLAN_STA_CLEAR_PS_FILT)) {
1231 info->flags |= IEEE80211_TX_CTL_CLEAR_PS_FILT;
1232 ieee80211_check_fast_xmit(tx->sta);
1235 info->flags |= IEEE80211_TX_CTL_FIRST_FRAGMENT;
1240 static struct txq_info *ieee80211_get_txq(struct ieee80211_local *local,
1241 struct ieee80211_vif *vif,
1242 struct sta_info *sta,
1243 struct sk_buff *skb)
1245 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
1246 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1247 struct ieee80211_txq *txq = NULL;
1249 if ((info->flags & IEEE80211_TX_CTL_SEND_AFTER_DTIM) ||
1250 (info->control.flags & IEEE80211_TX_CTRL_PS_RESPONSE))
1253 if (unlikely(!ieee80211_is_data_present(hdr->frame_control))) {
1254 if ((!ieee80211_is_mgmt(hdr->frame_control) ||
1255 ieee80211_is_bufferable_mmpdu(hdr->frame_control) ||
1256 vif->type == NL80211_IFTYPE_STATION) &&
1257 sta && sta->uploaded) {
1259 * This will be NULL if the driver didn't set the
1260 * opt-in hardware flag.
1262 txq = sta->sta.txq[IEEE80211_NUM_TIDS];
1265 u8 tid = skb->priority & IEEE80211_QOS_CTL_TID_MASK;
1270 txq = sta->sta.txq[tid];
1278 return to_txq_info(txq);
1281 static void ieee80211_set_skb_enqueue_time(struct sk_buff *skb)
1283 IEEE80211_SKB_CB(skb)->control.enqueue_time = codel_get_time();
1286 static u32 codel_skb_len_func(const struct sk_buff *skb)
1291 static codel_time_t codel_skb_time_func(const struct sk_buff *skb)
1293 const struct ieee80211_tx_info *info;
1295 info = (const struct ieee80211_tx_info *)skb->cb;
1296 return info->control.enqueue_time;
1299 static struct sk_buff *codel_dequeue_func(struct codel_vars *cvars,
1302 struct ieee80211_local *local;
1303 struct txq_info *txqi;
1305 struct fq_flow *flow;
1308 local = vif_to_sdata(txqi->txq.vif)->local;
1311 if (cvars == &txqi->def_cvars)
1312 flow = &txqi->def_flow;
1314 flow = &fq->flows[cvars - local->cvars];
1316 return fq_flow_dequeue(fq, flow);
1319 static void codel_drop_func(struct sk_buff *skb,
1322 struct ieee80211_local *local;
1323 struct ieee80211_hw *hw;
1324 struct txq_info *txqi;
1327 local = vif_to_sdata(txqi->txq.vif)->local;
1330 ieee80211_free_txskb(hw, skb);
1333 static struct sk_buff *fq_tin_dequeue_func(struct fq *fq,
1335 struct fq_flow *flow)
1337 struct ieee80211_local *local;
1338 struct txq_info *txqi;
1339 struct codel_vars *cvars;
1340 struct codel_params *cparams;
1341 struct codel_stats *cstats;
1343 local = container_of(fq, struct ieee80211_local, fq);
1344 txqi = container_of(tin, struct txq_info, tin);
1345 cstats = &txqi->cstats;
1347 if (txqi->txq.sta) {
1348 struct sta_info *sta = container_of(txqi->txq.sta,
1349 struct sta_info, sta);
1350 cparams = &sta->cparams;
1352 cparams = &local->cparams;
1355 if (flow == &txqi->def_flow)
1356 cvars = &txqi->def_cvars;
1358 cvars = &local->cvars[flow - fq->flows];
1360 return codel_dequeue(txqi,
1366 codel_skb_time_func,
1368 codel_dequeue_func);
1371 static void fq_skb_free_func(struct fq *fq,
1373 struct fq_flow *flow,
1374 struct sk_buff *skb)
1376 struct ieee80211_local *local;
1378 local = container_of(fq, struct ieee80211_local, fq);
1379 ieee80211_free_txskb(&local->hw, skb);
1382 static struct fq_flow *fq_flow_get_default_func(struct fq *fq,
1385 struct sk_buff *skb)
1387 struct txq_info *txqi;
1389 txqi = container_of(tin, struct txq_info, tin);
1390 return &txqi->def_flow;
1393 static void ieee80211_txq_enqueue(struct ieee80211_local *local,
1394 struct txq_info *txqi,
1395 struct sk_buff *skb)
1397 struct fq *fq = &local->fq;
1398 struct fq_tin *tin = &txqi->tin;
1399 u32 flow_idx = fq_flow_idx(fq, skb);
1401 ieee80211_set_skb_enqueue_time(skb);
1403 spin_lock_bh(&fq->lock);
1404 fq_tin_enqueue(fq, tin, flow_idx, skb,
1406 fq_flow_get_default_func);
1407 spin_unlock_bh(&fq->lock);
1410 static bool fq_vlan_filter_func(struct fq *fq, struct fq_tin *tin,
1411 struct fq_flow *flow, struct sk_buff *skb,
1414 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1416 return info->control.vif == data;
1419 void ieee80211_txq_remove_vlan(struct ieee80211_local *local,
1420 struct ieee80211_sub_if_data *sdata)
1422 struct fq *fq = &local->fq;
1423 struct txq_info *txqi;
1425 struct ieee80211_sub_if_data *ap;
1427 if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_AP_VLAN))
1430 ap = container_of(sdata->bss, struct ieee80211_sub_if_data, u.ap);
1435 txqi = to_txq_info(ap->vif.txq);
1438 spin_lock_bh(&fq->lock);
1439 fq_tin_filter(fq, tin, fq_vlan_filter_func, &sdata->vif,
1441 spin_unlock_bh(&fq->lock);
1444 void ieee80211_txq_init(struct ieee80211_sub_if_data *sdata,
1445 struct sta_info *sta,
1446 struct txq_info *txqi, int tid)
1448 fq_tin_init(&txqi->tin);
1449 fq_flow_init(&txqi->def_flow);
1450 codel_vars_init(&txqi->def_cvars);
1451 codel_stats_init(&txqi->cstats);
1452 __skb_queue_head_init(&txqi->frags);
1453 INIT_LIST_HEAD(&txqi->schedule_order);
1455 txqi->txq.vif = &sdata->vif;
1458 sdata->vif.txq = &txqi->txq;
1460 txqi->txq.ac = IEEE80211_AC_BE;
1465 if (tid == IEEE80211_NUM_TIDS) {
1466 if (sdata->vif.type == NL80211_IFTYPE_STATION) {
1467 /* Drivers need to opt in to the management MPDU TXQ */
1468 if (!ieee80211_hw_check(&sdata->local->hw,
1471 } else if (!ieee80211_hw_check(&sdata->local->hw,
1473 /* Drivers need to opt in to the bufferable MMPDU TXQ */
1476 txqi->txq.ac = IEEE80211_AC_VO;
1478 txqi->txq.ac = ieee80211_ac_from_tid(tid);
1481 txqi->txq.sta = &sta->sta;
1482 txqi->txq.tid = tid;
1483 sta->sta.txq[tid] = &txqi->txq;
1486 void ieee80211_txq_purge(struct ieee80211_local *local,
1487 struct txq_info *txqi)
1489 struct fq *fq = &local->fq;
1490 struct fq_tin *tin = &txqi->tin;
1492 spin_lock_bh(&fq->lock);
1493 fq_tin_reset(fq, tin, fq_skb_free_func);
1494 ieee80211_purge_tx_queue(&local->hw, &txqi->frags);
1495 spin_unlock_bh(&fq->lock);
1497 spin_lock_bh(&local->active_txq_lock[txqi->txq.ac]);
1498 list_del_init(&txqi->schedule_order);
1499 spin_unlock_bh(&local->active_txq_lock[txqi->txq.ac]);
1502 void ieee80211_txq_set_params(struct ieee80211_local *local)
1504 if (local->hw.wiphy->txq_limit)
1505 local->fq.limit = local->hw.wiphy->txq_limit;
1507 local->hw.wiphy->txq_limit = local->fq.limit;
1509 if (local->hw.wiphy->txq_memory_limit)
1510 local->fq.memory_limit = local->hw.wiphy->txq_memory_limit;
1512 local->hw.wiphy->txq_memory_limit = local->fq.memory_limit;
1514 if (local->hw.wiphy->txq_quantum)
1515 local->fq.quantum = local->hw.wiphy->txq_quantum;
1517 local->hw.wiphy->txq_quantum = local->fq.quantum;
1520 int ieee80211_txq_setup_flows(struct ieee80211_local *local)
1522 struct fq *fq = &local->fq;
1525 bool supp_vht = false;
1526 enum nl80211_band band;
1528 if (!local->ops->wake_tx_queue)
1531 ret = fq_init(fq, 4096);
1536 * If the hardware doesn't support VHT, it is safe to limit the maximum
1537 * queue size. 4 Mbytes is 64 max-size aggregates in 802.11n.
1539 for (band = 0; band < NUM_NL80211_BANDS; band++) {
1540 struct ieee80211_supported_band *sband;
1542 sband = local->hw.wiphy->bands[band];
1546 supp_vht = supp_vht || sband->vht_cap.vht_supported;
1550 fq->memory_limit = 4 << 20; /* 4 Mbytes */
1552 codel_params_init(&local->cparams);
1553 local->cparams.interval = MS2TIME(100);
1554 local->cparams.target = MS2TIME(20);
1555 local->cparams.ecn = true;
1557 local->cvars = kcalloc(fq->flows_cnt, sizeof(local->cvars[0]),
1559 if (!local->cvars) {
1560 spin_lock_bh(&fq->lock);
1561 fq_reset(fq, fq_skb_free_func);
1562 spin_unlock_bh(&fq->lock);
1566 for (i = 0; i < fq->flows_cnt; i++)
1567 codel_vars_init(&local->cvars[i]);
1569 ieee80211_txq_set_params(local);
1574 void ieee80211_txq_teardown_flows(struct ieee80211_local *local)
1576 struct fq *fq = &local->fq;
1578 if (!local->ops->wake_tx_queue)
1581 kfree(local->cvars);
1582 local->cvars = NULL;
1584 spin_lock_bh(&fq->lock);
1585 fq_reset(fq, fq_skb_free_func);
1586 spin_unlock_bh(&fq->lock);
1589 static bool ieee80211_queue_skb(struct ieee80211_local *local,
1590 struct ieee80211_sub_if_data *sdata,
1591 struct sta_info *sta,
1592 struct sk_buff *skb)
1594 struct ieee80211_vif *vif;
1595 struct txq_info *txqi;
1597 if (!local->ops->wake_tx_queue ||
1598 sdata->vif.type == NL80211_IFTYPE_MONITOR)
1601 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
1602 sdata = container_of(sdata->bss,
1603 struct ieee80211_sub_if_data, u.ap);
1606 txqi = ieee80211_get_txq(local, vif, sta, skb);
1611 ieee80211_txq_enqueue(local, txqi, skb);
1613 schedule_and_wake_txq(local, txqi);
1618 static bool ieee80211_tx_frags(struct ieee80211_local *local,
1619 struct ieee80211_vif *vif,
1620 struct ieee80211_sta *sta,
1621 struct sk_buff_head *skbs,
1624 struct ieee80211_tx_control control = {};
1625 struct sk_buff *skb, *tmp;
1626 unsigned long flags;
1628 skb_queue_walk_safe(skbs, skb, tmp) {
1629 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1630 int q = info->hw_queue;
1632 #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
1633 if (WARN_ON_ONCE(q >= local->hw.queues)) {
1634 __skb_unlink(skb, skbs);
1635 ieee80211_free_txskb(&local->hw, skb);
1640 spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
1641 if (local->queue_stop_reasons[q] ||
1642 (!txpending && !skb_queue_empty(&local->pending[q]))) {
1643 if (unlikely(info->flags &
1644 IEEE80211_TX_INTFL_OFFCHAN_TX_OK)) {
1645 if (local->queue_stop_reasons[q] &
1646 ~BIT(IEEE80211_QUEUE_STOP_REASON_OFFCHANNEL)) {
1648 * Drop off-channel frames if queues
1649 * are stopped for any reason other
1650 * than off-channel operation. Never
1653 spin_unlock_irqrestore(
1654 &local->queue_stop_reason_lock,
1656 ieee80211_purge_tx_queue(&local->hw,
1663 * Since queue is stopped, queue up frames for
1664 * later transmission from the tx-pending
1665 * tasklet when the queue is woken again.
1668 skb_queue_splice_init(skbs,
1669 &local->pending[q]);
1671 skb_queue_splice_tail_init(skbs,
1672 &local->pending[q]);
1674 spin_unlock_irqrestore(&local->queue_stop_reason_lock,
1679 spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
1681 info->control.vif = vif;
1684 __skb_unlink(skb, skbs);
1685 drv_tx(local, &control, skb);
1692 * Returns false if the frame couldn't be transmitted but was queued instead.
1694 static bool __ieee80211_tx(struct ieee80211_local *local,
1695 struct sk_buff_head *skbs, int led_len,
1696 struct sta_info *sta, bool txpending)
1698 struct ieee80211_tx_info *info;
1699 struct ieee80211_sub_if_data *sdata;
1700 struct ieee80211_vif *vif;
1701 struct ieee80211_sta *pubsta;
1702 struct sk_buff *skb;
1706 if (WARN_ON(skb_queue_empty(skbs)))
1709 skb = skb_peek(skbs);
1710 fc = ((struct ieee80211_hdr *)skb->data)->frame_control;
1711 info = IEEE80211_SKB_CB(skb);
1712 sdata = vif_to_sdata(info->control.vif);
1713 if (sta && !sta->uploaded)
1721 switch (sdata->vif.type) {
1722 case NL80211_IFTYPE_MONITOR:
1723 if (sdata->u.mntr.flags & MONITOR_FLAG_ACTIVE) {
1727 sdata = rcu_dereference(local->monitor_sdata);
1731 vif->hw_queue[skb_get_queue_mapping(skb)];
1732 } else if (ieee80211_hw_check(&local->hw, QUEUE_CONTROL)) {
1733 ieee80211_purge_tx_queue(&local->hw, skbs);
1738 case NL80211_IFTYPE_AP_VLAN:
1739 sdata = container_of(sdata->bss,
1740 struct ieee80211_sub_if_data, u.ap);
1747 result = ieee80211_tx_frags(local, vif, pubsta, skbs,
1750 ieee80211_tpt_led_trig_tx(local, fc, led_len);
1752 WARN_ON_ONCE(!skb_queue_empty(skbs));
1758 * Invoke TX handlers, return 0 on success and non-zero if the
1759 * frame was dropped or queued.
1761 * The handlers are split into an early and late part. The latter is everything
1762 * that can be sensitive to reordering, and will be deferred to after packets
1763 * are dequeued from the intermediate queues (when they are enabled).
1765 static int invoke_tx_handlers_early(struct ieee80211_tx_data *tx)
1767 ieee80211_tx_result res = TX_DROP;
1769 #define CALL_TXH(txh) \
1772 if (res != TX_CONTINUE) \
1776 CALL_TXH(ieee80211_tx_h_dynamic_ps);
1777 CALL_TXH(ieee80211_tx_h_check_assoc);
1778 CALL_TXH(ieee80211_tx_h_ps_buf);
1779 CALL_TXH(ieee80211_tx_h_check_control_port_protocol);
1780 CALL_TXH(ieee80211_tx_h_select_key);
1781 if (!ieee80211_hw_check(&tx->local->hw, HAS_RATE_CONTROL))
1782 CALL_TXH(ieee80211_tx_h_rate_ctrl);
1785 if (unlikely(res == TX_DROP)) {
1786 I802_DEBUG_INC(tx->local->tx_handlers_drop);
1788 ieee80211_free_txskb(&tx->local->hw, tx->skb);
1790 ieee80211_purge_tx_queue(&tx->local->hw, &tx->skbs);
1792 } else if (unlikely(res == TX_QUEUED)) {
1793 I802_DEBUG_INC(tx->local->tx_handlers_queued);
1801 * Late handlers can be called while the sta lock is held. Handlers that can
1802 * cause packets to be generated will cause deadlock!
1804 static int invoke_tx_handlers_late(struct ieee80211_tx_data *tx)
1806 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
1807 ieee80211_tx_result res = TX_CONTINUE;
1809 if (unlikely(info->flags & IEEE80211_TX_INTFL_RETRANSMISSION)) {
1810 __skb_queue_tail(&tx->skbs, tx->skb);
1815 CALL_TXH(ieee80211_tx_h_michael_mic_add);
1816 CALL_TXH(ieee80211_tx_h_sequence);
1817 CALL_TXH(ieee80211_tx_h_fragment);
1818 /* handlers after fragment must be aware of tx info fragmentation! */
1819 CALL_TXH(ieee80211_tx_h_stats);
1820 CALL_TXH(ieee80211_tx_h_encrypt);
1821 if (!ieee80211_hw_check(&tx->local->hw, HAS_RATE_CONTROL))
1822 CALL_TXH(ieee80211_tx_h_calculate_duration);
1826 if (unlikely(res == TX_DROP)) {
1827 I802_DEBUG_INC(tx->local->tx_handlers_drop);
1829 ieee80211_free_txskb(&tx->local->hw, tx->skb);
1831 ieee80211_purge_tx_queue(&tx->local->hw, &tx->skbs);
1833 } else if (unlikely(res == TX_QUEUED)) {
1834 I802_DEBUG_INC(tx->local->tx_handlers_queued);
1841 static int invoke_tx_handlers(struct ieee80211_tx_data *tx)
1843 int r = invoke_tx_handlers_early(tx);
1847 return invoke_tx_handlers_late(tx);
1850 bool ieee80211_tx_prepare_skb(struct ieee80211_hw *hw,
1851 struct ieee80211_vif *vif, struct sk_buff *skb,
1852 int band, struct ieee80211_sta **sta)
1854 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
1855 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1856 struct ieee80211_tx_data tx;
1857 struct sk_buff *skb2;
1859 if (ieee80211_tx_prepare(sdata, &tx, NULL, skb) == TX_DROP)
1863 info->control.vif = vif;
1864 info->hw_queue = vif->hw_queue[skb_get_queue_mapping(skb)];
1866 if (invoke_tx_handlers(&tx))
1871 *sta = &tx.sta->sta;
1876 /* this function isn't suitable for fragmented data frames */
1877 skb2 = __skb_dequeue(&tx.skbs);
1878 if (WARN_ON(skb2 != skb || !skb_queue_empty(&tx.skbs))) {
1879 ieee80211_free_txskb(hw, skb2);
1880 ieee80211_purge_tx_queue(hw, &tx.skbs);
1886 EXPORT_SYMBOL(ieee80211_tx_prepare_skb);
1889 * Returns false if the frame couldn't be transmitted but was queued instead.
1891 static bool ieee80211_tx(struct ieee80211_sub_if_data *sdata,
1892 struct sta_info *sta, struct sk_buff *skb,
1893 bool txpending, u32 txdata_flags)
1895 struct ieee80211_local *local = sdata->local;
1896 struct ieee80211_tx_data tx;
1897 ieee80211_tx_result res_prepare;
1898 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1902 if (unlikely(skb->len < 10)) {
1907 /* initialises tx */
1909 res_prepare = ieee80211_tx_prepare(sdata, &tx, sta, skb);
1911 tx.flags |= txdata_flags;
1913 if (unlikely(res_prepare == TX_DROP)) {
1914 ieee80211_free_txskb(&local->hw, skb);
1916 } else if (unlikely(res_prepare == TX_QUEUED)) {
1920 /* set up hw_queue value early */
1921 if (!(info->flags & IEEE80211_TX_CTL_TX_OFFCHAN) ||
1922 !ieee80211_hw_check(&local->hw, QUEUE_CONTROL))
1924 sdata->vif.hw_queue[skb_get_queue_mapping(skb)];
1926 if (invoke_tx_handlers_early(&tx))
1929 if (ieee80211_queue_skb(local, sdata, tx.sta, tx.skb))
1932 if (!invoke_tx_handlers_late(&tx))
1933 result = __ieee80211_tx(local, &tx.skbs, led_len,
1939 /* device xmit handlers */
1941 static int ieee80211_skb_resize(struct ieee80211_sub_if_data *sdata,
1942 struct sk_buff *skb,
1943 int head_need, bool may_encrypt)
1945 struct ieee80211_local *local = sdata->local;
1946 struct ieee80211_hdr *hdr;
1950 hdr = (struct ieee80211_hdr *) skb->data;
1951 enc_tailroom = may_encrypt &&
1952 (sdata->crypto_tx_tailroom_needed_cnt ||
1953 ieee80211_is_mgmt(hdr->frame_control));
1956 tail_need = IEEE80211_ENCRYPT_TAILROOM;
1957 tail_need -= skb_tailroom(skb);
1958 tail_need = max_t(int, tail_need, 0);
1961 if (skb_cloned(skb) &&
1962 (!ieee80211_hw_check(&local->hw, SUPPORTS_CLONED_SKBS) ||
1963 !skb_clone_writable(skb, ETH_HLEN) || enc_tailroom))
1964 I802_DEBUG_INC(local->tx_expand_skb_head_cloned);
1965 else if (head_need || tail_need)
1966 I802_DEBUG_INC(local->tx_expand_skb_head);
1970 if (pskb_expand_head(skb, head_need, tail_need, GFP_ATOMIC)) {
1971 wiphy_debug(local->hw.wiphy,
1972 "failed to reallocate TX buffer\n");
1979 void ieee80211_xmit(struct ieee80211_sub_if_data *sdata,
1980 struct sta_info *sta, struct sk_buff *skb,
1983 struct ieee80211_local *local = sdata->local;
1984 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1985 struct ieee80211_hdr *hdr;
1989 may_encrypt = !(info->flags & IEEE80211_TX_INTFL_DONT_ENCRYPT);
1991 headroom = local->tx_headroom;
1993 headroom += sdata->encrypt_headroom;
1994 headroom -= skb_headroom(skb);
1995 headroom = max_t(int, 0, headroom);
1997 if (ieee80211_skb_resize(sdata, skb, headroom, may_encrypt)) {
1998 ieee80211_free_txskb(&local->hw, skb);
2002 hdr = (struct ieee80211_hdr *) skb->data;
2003 info->control.vif = &sdata->vif;
2005 if (ieee80211_vif_is_mesh(&sdata->vif)) {
2006 if (ieee80211_is_data(hdr->frame_control) &&
2007 is_unicast_ether_addr(hdr->addr1)) {
2008 if (mesh_nexthop_resolve(sdata, skb))
2009 return; /* skb queued: don't free */
2011 ieee80211_mps_set_frame_flags(sdata, NULL, hdr);
2015 ieee80211_set_qos_hdr(sdata, skb);
2016 ieee80211_tx(sdata, sta, skb, false, txdata_flags);
2019 static bool ieee80211_parse_tx_radiotap(struct ieee80211_local *local,
2020 struct sk_buff *skb)
2022 struct ieee80211_radiotap_iterator iterator;
2023 struct ieee80211_radiotap_header *rthdr =
2024 (struct ieee80211_radiotap_header *) skb->data;
2025 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
2026 struct ieee80211_supported_band *sband =
2027 local->hw.wiphy->bands[info->band];
2028 int ret = ieee80211_radiotap_iterator_init(&iterator, rthdr, skb->len,
2032 bool rate_found = false;
2033 u8 rate_retries = 0;
2035 u8 mcs_known, mcs_flags, mcs_bw;
2037 u8 vht_mcs = 0, vht_nss = 0;
2040 info->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT |
2041 IEEE80211_TX_CTL_DONTFRAG;
2044 * for every radiotap entry that is present
2045 * (ieee80211_radiotap_iterator_next returns -ENOENT when no more
2046 * entries present, or -EINVAL on error)
2050 ret = ieee80211_radiotap_iterator_next(&iterator);
2055 /* see if this argument is something we can use */
2056 switch (iterator.this_arg_index) {
2058 * You must take care when dereferencing iterator.this_arg
2059 * for multibyte types... the pointer is not aligned. Use
2060 * get_unaligned((type *)iterator.this_arg) to dereference
2061 * iterator.this_arg for type "type" safely on all arches.
2063 case IEEE80211_RADIOTAP_FLAGS:
2064 if (*iterator.this_arg & IEEE80211_RADIOTAP_F_FCS) {
2066 * this indicates that the skb we have been
2067 * handed has the 32-bit FCS CRC at the end...
2068 * we should react to that by snipping it off
2069 * because it will be recomputed and added
2072 if (skb->len < (iterator._max_length + FCS_LEN))
2075 skb_trim(skb, skb->len - FCS_LEN);
2077 if (*iterator.this_arg & IEEE80211_RADIOTAP_F_WEP)
2078 info->flags &= ~IEEE80211_TX_INTFL_DONT_ENCRYPT;
2079 if (*iterator.this_arg & IEEE80211_RADIOTAP_F_FRAG)
2080 info->flags &= ~IEEE80211_TX_CTL_DONTFRAG;
2083 case IEEE80211_RADIOTAP_TX_FLAGS:
2084 txflags = get_unaligned_le16(iterator.this_arg);
2085 if (txflags & IEEE80211_RADIOTAP_F_TX_NOACK)
2086 info->flags |= IEEE80211_TX_CTL_NO_ACK;
2089 case IEEE80211_RADIOTAP_RATE:
2090 rate = *iterator.this_arg;
2095 case IEEE80211_RADIOTAP_DATA_RETRIES:
2096 rate_retries = *iterator.this_arg;
2099 case IEEE80211_RADIOTAP_MCS:
2100 mcs_known = iterator.this_arg[0];
2101 mcs_flags = iterator.this_arg[1];
2102 if (!(mcs_known & IEEE80211_RADIOTAP_MCS_HAVE_MCS))
2106 rate = iterator.this_arg[2];
2107 rate_flags = IEEE80211_TX_RC_MCS;
2109 if (mcs_known & IEEE80211_RADIOTAP_MCS_HAVE_GI &&
2110 mcs_flags & IEEE80211_RADIOTAP_MCS_SGI)
2111 rate_flags |= IEEE80211_TX_RC_SHORT_GI;
2113 mcs_bw = mcs_flags & IEEE80211_RADIOTAP_MCS_BW_MASK;
2114 if (mcs_known & IEEE80211_RADIOTAP_MCS_HAVE_BW &&
2115 mcs_bw == IEEE80211_RADIOTAP_MCS_BW_40)
2116 rate_flags |= IEEE80211_TX_RC_40_MHZ_WIDTH;
2119 case IEEE80211_RADIOTAP_VHT:
2120 vht_known = get_unaligned_le16(iterator.this_arg);
2123 rate_flags = IEEE80211_TX_RC_VHT_MCS;
2124 if ((vht_known & IEEE80211_RADIOTAP_VHT_KNOWN_GI) &&
2125 (iterator.this_arg[2] &
2126 IEEE80211_RADIOTAP_VHT_FLAG_SGI))
2127 rate_flags |= IEEE80211_TX_RC_SHORT_GI;
2129 IEEE80211_RADIOTAP_VHT_KNOWN_BANDWIDTH) {
2130 if (iterator.this_arg[3] == 1)
2132 IEEE80211_TX_RC_40_MHZ_WIDTH;
2133 else if (iterator.this_arg[3] == 4)
2135 IEEE80211_TX_RC_80_MHZ_WIDTH;
2136 else if (iterator.this_arg[3] == 11)
2138 IEEE80211_TX_RC_160_MHZ_WIDTH;
2141 vht_mcs = iterator.this_arg[4] >> 4;
2142 vht_nss = iterator.this_arg[4] & 0xF;
2146 * Please update the file
2147 * Documentation/networking/mac80211-injection.txt
2148 * when parsing new fields here.
2156 if (ret != -ENOENT) /* ie, if we didn't simply run out of fields */
2160 info->control.flags |= IEEE80211_TX_CTRL_RATE_INJECT;
2162 for (i = 0; i < IEEE80211_TX_MAX_RATES; i++) {
2163 info->control.rates[i].idx = -1;
2164 info->control.rates[i].flags = 0;
2165 info->control.rates[i].count = 0;
2168 if (rate_flags & IEEE80211_TX_RC_MCS) {
2169 info->control.rates[0].idx = rate;
2170 } else if (rate_flags & IEEE80211_TX_RC_VHT_MCS) {
2171 ieee80211_rate_set_vht(info->control.rates, vht_mcs,
2174 for (i = 0; i < sband->n_bitrates; i++) {
2175 if (rate * 5 != sband->bitrates[i].bitrate)
2178 info->control.rates[0].idx = i;
2183 if (info->control.rates[0].idx < 0)
2184 info->control.flags &= ~IEEE80211_TX_CTRL_RATE_INJECT;
2186 info->control.rates[0].flags = rate_flags;
2187 info->control.rates[0].count = min_t(u8, rate_retries + 1,
2188 local->hw.max_rate_tries);
2192 * remove the radiotap header
2193 * iterator->_max_length was sanity-checked against
2194 * skb->len by iterator init
2196 skb_pull(skb, iterator._max_length);
2201 netdev_tx_t ieee80211_monitor_start_xmit(struct sk_buff *skb,
2202 struct net_device *dev)
2204 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
2205 struct ieee80211_chanctx_conf *chanctx_conf;
2206 struct ieee80211_radiotap_header *prthdr =
2207 (struct ieee80211_radiotap_header *)skb->data;
2208 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
2209 struct ieee80211_hdr *hdr;
2210 struct ieee80211_sub_if_data *tmp_sdata, *sdata;
2211 struct cfg80211_chan_def *chandef;
2215 /* check for not even having the fixed radiotap header part */
2216 if (unlikely(skb->len < sizeof(struct ieee80211_radiotap_header)))
2217 goto fail; /* too short to be possibly valid */
2219 /* is it a header version we can trust to find length from? */
2220 if (unlikely(prthdr->it_version))
2221 goto fail; /* only version 0 is supported */
2223 /* then there must be a radiotap header with a length we can use */
2224 len_rthdr = ieee80211_get_radiotap_len(skb->data);
2226 /* does the skb contain enough to deliver on the alleged length? */
2227 if (unlikely(skb->len < len_rthdr))
2228 goto fail; /* skb too short for claimed rt header extent */
2231 * fix up the pointers accounting for the radiotap
2232 * header still being in there. We are being given
2233 * a precooked IEEE80211 header so no need for
2236 skb_set_mac_header(skb, len_rthdr);
2238 * these are just fixed to the end of the rt area since we
2239 * don't have any better information and at this point, nobody cares
2241 skb_set_network_header(skb, len_rthdr);
2242 skb_set_transport_header(skb, len_rthdr);
2244 if (skb->len < len_rthdr + 2)
2247 hdr = (struct ieee80211_hdr *)(skb->data + len_rthdr);
2248 hdrlen = ieee80211_hdrlen(hdr->frame_control);
2250 if (skb->len < len_rthdr + hdrlen)
2254 * Initialize skb->protocol if the injected frame is a data frame
2255 * carrying a rfc1042 header
2257 if (ieee80211_is_data(hdr->frame_control) &&
2258 skb->len >= len_rthdr + hdrlen + sizeof(rfc1042_header) + 2) {
2259 u8 *payload = (u8 *)hdr + hdrlen;
2261 if (ether_addr_equal(payload, rfc1042_header))
2262 skb->protocol = cpu_to_be16((payload[6] << 8) |
2266 memset(info, 0, sizeof(*info));
2268 info->flags = IEEE80211_TX_CTL_REQ_TX_STATUS |
2269 IEEE80211_TX_CTL_INJECTED;
2274 * We process outgoing injected frames that have a local address
2275 * we handle as though they are non-injected frames.
2276 * This code here isn't entirely correct, the local MAC address
2277 * isn't always enough to find the interface to use; for proper
2278 * VLAN/WDS support we will need a different mechanism (which
2279 * likely isn't going to be monitor interfaces).
2281 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2283 list_for_each_entry_rcu(tmp_sdata, &local->interfaces, list) {
2284 if (!ieee80211_sdata_running(tmp_sdata))
2286 if (tmp_sdata->vif.type == NL80211_IFTYPE_MONITOR ||
2287 tmp_sdata->vif.type == NL80211_IFTYPE_AP_VLAN ||
2288 tmp_sdata->vif.type == NL80211_IFTYPE_WDS)
2290 if (ether_addr_equal(tmp_sdata->vif.addr, hdr->addr2)) {
2296 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
2297 if (!chanctx_conf) {
2298 tmp_sdata = rcu_dereference(local->monitor_sdata);
2301 rcu_dereference(tmp_sdata->vif.chanctx_conf);
2305 chandef = &chanctx_conf->def;
2306 else if (!local->use_chanctx)
2307 chandef = &local->_oper_chandef;
2312 * Frame injection is not allowed if beaconing is not allowed
2313 * or if we need radar detection. Beaconing is usually not allowed when
2314 * the mode or operation (Adhoc, AP, Mesh) does not support DFS.
2315 * Passive scan is also used in world regulatory domains where
2316 * your country is not known and as such it should be treated as
2317 * NO TX unless the channel is explicitly allowed in which case
2318 * your current regulatory domain would not have the passive scan
2321 * Since AP mode uses monitor interfaces to inject/TX management
2322 * frames we can make AP mode the exception to this rule once it
2323 * supports radar detection as its implementation can deal with
2324 * radar detection by itself. We can do that later by adding a
2325 * monitor flag interfaces used for AP support.
2327 if (!cfg80211_reg_can_beacon(local->hw.wiphy, chandef,
2331 info->band = chandef->chan->band;
2333 /* process and remove the injection radiotap header */
2334 if (!ieee80211_parse_tx_radiotap(local, skb))
2337 ieee80211_xmit(sdata, NULL, skb, 0);
2340 return NETDEV_TX_OK;
2346 return NETDEV_TX_OK; /* meaning, we dealt with the skb */
2349 static inline bool ieee80211_is_tdls_setup(struct sk_buff *skb)
2351 u16 ethertype = (skb->data[12] << 8) | skb->data[13];
2353 return ethertype == ETH_P_TDLS &&
2355 skb->data[14] == WLAN_TDLS_SNAP_RFTYPE;
2358 static int ieee80211_lookup_ra_sta(struct ieee80211_sub_if_data *sdata,
2359 struct sk_buff *skb,
2360 struct sta_info **sta_out)
2362 struct sta_info *sta;
2364 switch (sdata->vif.type) {
2365 case NL80211_IFTYPE_AP_VLAN:
2366 sta = rcu_dereference(sdata->u.vlan.sta);
2370 } else if (sdata->wdev.use_4addr) {
2374 case NL80211_IFTYPE_AP:
2375 case NL80211_IFTYPE_OCB:
2376 case NL80211_IFTYPE_ADHOC:
2377 if (is_multicast_ether_addr(skb->data)) {
2378 *sta_out = ERR_PTR(-ENOENT);
2381 sta = sta_info_get_bss(sdata, skb->data);
2383 case NL80211_IFTYPE_WDS:
2384 sta = sta_info_get(sdata, sdata->u.wds.remote_addr);
2386 #ifdef CONFIG_MAC80211_MESH
2387 case NL80211_IFTYPE_MESH_POINT:
2388 /* determined much later */
2392 case NL80211_IFTYPE_STATION:
2393 if (sdata->wdev.wiphy->flags & WIPHY_FLAG_SUPPORTS_TDLS) {
2394 sta = sta_info_get(sdata, skb->data);
2395 if (sta && test_sta_flag(sta, WLAN_STA_TDLS_PEER)) {
2396 if (test_sta_flag(sta,
2397 WLAN_STA_TDLS_PEER_AUTH)) {
2403 * TDLS link during setup - throw out frames to
2404 * peer. Allow TDLS-setup frames to unauthorized
2405 * peers for the special case of a link teardown
2406 * after a TDLS sta is removed due to being
2409 if (!ieee80211_is_tdls_setup(skb))
2415 sta = sta_info_get(sdata, sdata->u.mgd.bssid);
2423 *sta_out = sta ?: ERR_PTR(-ENOENT);
2428 * ieee80211_build_hdr - build 802.11 header in the given frame
2429 * @sdata: virtual interface to build the header for
2430 * @skb: the skb to build the header in
2431 * @info_flags: skb flags to set
2432 * @ctrl_flags: info control flags to set
2434 * This function takes the skb with 802.3 header and reformats the header to
2435 * the appropriate IEEE 802.11 header based on which interface the packet is
2436 * being transmitted on.
2438 * Note that this function also takes care of the TX status request and
2439 * potential unsharing of the SKB - this needs to be interleaved with the
2442 * The function requires the read-side RCU lock held
2444 * Returns: the (possibly reallocated) skb or an ERR_PTR() code
2446 static struct sk_buff *ieee80211_build_hdr(struct ieee80211_sub_if_data *sdata,
2447 struct sk_buff *skb, u32 info_flags,
2448 struct sta_info *sta, u32 ctrl_flags)
2450 struct ieee80211_local *local = sdata->local;
2451 struct ieee80211_tx_info *info;
2453 u16 ethertype, hdrlen, meshhdrlen = 0;
2455 struct ieee80211_hdr hdr;
2456 struct ieee80211s_hdr mesh_hdr __maybe_unused;
2457 struct mesh_path __maybe_unused *mppath = NULL, *mpath = NULL;
2458 const u8 *encaps_data;
2459 int encaps_len, skip_header_bytes;
2460 bool wme_sta = false, authorized = false;
2464 struct ieee80211_chanctx_conf *chanctx_conf;
2465 struct ieee80211_sub_if_data *ap_sdata;
2466 enum nl80211_band band;
2472 #ifdef CONFIG_MAC80211_DEBUGFS
2473 if (local->force_tx_status)
2474 info_flags |= IEEE80211_TX_CTL_REQ_TX_STATUS;
2477 /* convert Ethernet header to proper 802.11 header (based on
2478 * operation mode) */
2479 ethertype = (skb->data[12] << 8) | skb->data[13];
2480 fc = cpu_to_le16(IEEE80211_FTYPE_DATA | IEEE80211_STYPE_DATA);
2482 switch (sdata->vif.type) {
2483 case NL80211_IFTYPE_AP_VLAN:
2484 if (sdata->wdev.use_4addr) {
2485 fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS);
2487 memcpy(hdr.addr1, sta->sta.addr, ETH_ALEN);
2488 memcpy(hdr.addr2, sdata->vif.addr, ETH_ALEN);
2489 memcpy(hdr.addr3, skb->data, ETH_ALEN);
2490 memcpy(hdr.addr4, skb->data + ETH_ALEN, ETH_ALEN);
2492 authorized = test_sta_flag(sta, WLAN_STA_AUTHORIZED);
2493 wme_sta = sta->sta.wme;
2495 ap_sdata = container_of(sdata->bss, struct ieee80211_sub_if_data,
2497 chanctx_conf = rcu_dereference(ap_sdata->vif.chanctx_conf);
2498 if (!chanctx_conf) {
2502 band = chanctx_conf->def.chan->band;
2503 if (sdata->wdev.use_4addr)
2506 case NL80211_IFTYPE_AP:
2507 if (sdata->vif.type == NL80211_IFTYPE_AP)
2508 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
2509 if (!chanctx_conf) {
2513 fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS);
2515 memcpy(hdr.addr1, skb->data, ETH_ALEN);
2516 memcpy(hdr.addr2, sdata->vif.addr, ETH_ALEN);
2517 memcpy(hdr.addr3, skb->data + ETH_ALEN, ETH_ALEN);
2519 band = chanctx_conf->def.chan->band;
2521 case NL80211_IFTYPE_WDS:
2522 fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS);
2524 memcpy(hdr.addr1, sdata->u.wds.remote_addr, ETH_ALEN);
2525 memcpy(hdr.addr2, sdata->vif.addr, ETH_ALEN);
2526 memcpy(hdr.addr3, skb->data, ETH_ALEN);
2527 memcpy(hdr.addr4, skb->data + ETH_ALEN, ETH_ALEN);
2530 * This is the exception! WDS style interfaces are prohibited
2531 * when channel contexts are in used so this must be valid
2533 band = local->hw.conf.chandef.chan->band;
2535 #ifdef CONFIG_MAC80211_MESH
2536 case NL80211_IFTYPE_MESH_POINT:
2537 if (!is_multicast_ether_addr(skb->data)) {
2538 struct sta_info *next_hop;
2539 bool mpp_lookup = true;
2541 mpath = mesh_path_lookup(sdata, skb->data);
2544 next_hop = rcu_dereference(mpath->next_hop);
2546 !(mpath->flags & (MESH_PATH_ACTIVE |
2547 MESH_PATH_RESOLVING)))
2552 mppath = mpp_path_lookup(sdata, skb->data);
2554 mppath->exp_time = jiffies;
2557 if (mppath && mpath)
2558 mesh_path_del(sdata, mpath->dst);
2562 * Use address extension if it is a packet from
2563 * another interface or if we know the destination
2564 * is being proxied by a portal (i.e. portal address
2565 * differs from proxied address)
2567 if (ether_addr_equal(sdata->vif.addr, skb->data + ETH_ALEN) &&
2568 !(mppath && !ether_addr_equal(mppath->mpp, skb->data))) {
2569 hdrlen = ieee80211_fill_mesh_addresses(&hdr, &fc,
2570 skb->data, skb->data + ETH_ALEN);
2571 meshhdrlen = ieee80211_new_mesh_header(sdata, &mesh_hdr,
2574 /* DS -> MBSS (802.11-2012 13.11.3.3).
2575 * For unicast with unknown forwarding information,
2576 * destination might be in the MBSS or if that fails
2577 * forwarded to another mesh gate. In either case
2578 * resolution will be handled in ieee80211_xmit(), so
2579 * leave the original DA. This also works for mcast */
2580 const u8 *mesh_da = skb->data;
2583 mesh_da = mppath->mpp;
2585 mesh_da = mpath->dst;
2587 hdrlen = ieee80211_fill_mesh_addresses(&hdr, &fc,
2588 mesh_da, sdata->vif.addr);
2589 if (is_multicast_ether_addr(mesh_da))
2590 /* DA TA mSA AE:SA */
2591 meshhdrlen = ieee80211_new_mesh_header(
2593 skb->data + ETH_ALEN, NULL);
2595 /* RA TA mDA mSA AE:DA SA */
2596 meshhdrlen = ieee80211_new_mesh_header(
2597 sdata, &mesh_hdr, skb->data,
2598 skb->data + ETH_ALEN);
2601 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
2602 if (!chanctx_conf) {
2606 band = chanctx_conf->def.chan->band;
2608 /* For injected frames, fill RA right away as nexthop lookup
2611 if ((ctrl_flags & IEEE80211_TX_CTRL_SKIP_MPATH_LOOKUP) &&
2612 is_zero_ether_addr(hdr.addr1))
2613 memcpy(hdr.addr1, skb->data, ETH_ALEN);
2616 case NL80211_IFTYPE_STATION:
2617 /* we already did checks when looking up the RA STA */
2618 tdls_peer = test_sta_flag(sta, WLAN_STA_TDLS_PEER);
2622 memcpy(hdr.addr1, skb->data, ETH_ALEN);
2623 memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN);
2624 memcpy(hdr.addr3, sdata->u.mgd.bssid, ETH_ALEN);
2626 } else if (sdata->u.mgd.use_4addr &&
2627 cpu_to_be16(ethertype) != sdata->control_port_protocol) {
2628 fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS |
2629 IEEE80211_FCTL_TODS);
2631 memcpy(hdr.addr1, sdata->u.mgd.bssid, ETH_ALEN);
2632 memcpy(hdr.addr2, sdata->vif.addr, ETH_ALEN);
2633 memcpy(hdr.addr3, skb->data, ETH_ALEN);
2634 memcpy(hdr.addr4, skb->data + ETH_ALEN, ETH_ALEN);
2637 fc |= cpu_to_le16(IEEE80211_FCTL_TODS);
2639 memcpy(hdr.addr1, sdata->u.mgd.bssid, ETH_ALEN);
2640 memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN);
2641 memcpy(hdr.addr3, skb->data, ETH_ALEN);
2644 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
2645 if (!chanctx_conf) {
2649 band = chanctx_conf->def.chan->band;
2651 case NL80211_IFTYPE_OCB:
2653 memcpy(hdr.addr1, skb->data, ETH_ALEN);
2654 memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN);
2655 eth_broadcast_addr(hdr.addr3);
2657 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
2658 if (!chanctx_conf) {
2662 band = chanctx_conf->def.chan->band;
2664 case NL80211_IFTYPE_ADHOC:
2666 memcpy(hdr.addr1, skb->data, ETH_ALEN);
2667 memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN);
2668 memcpy(hdr.addr3, sdata->u.ibss.bssid, ETH_ALEN);
2670 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
2671 if (!chanctx_conf) {
2675 band = chanctx_conf->def.chan->band;
2682 multicast = is_multicast_ether_addr(hdr.addr1);
2684 /* sta is always NULL for mesh */
2686 authorized = test_sta_flag(sta, WLAN_STA_AUTHORIZED);
2687 wme_sta = sta->sta.wme;
2688 } else if (ieee80211_vif_is_mesh(&sdata->vif)) {
2689 /* For mesh, the use of the QoS header is mandatory */
2693 /* receiver does QoS (which also means we do) use it */
2695 fc |= cpu_to_le16(IEEE80211_STYPE_QOS_DATA);
2700 * Drop unicast frames to unauthorised stations unless they are
2701 * EAPOL frames from the local station.
2703 if (unlikely(!ieee80211_vif_is_mesh(&sdata->vif) &&
2704 (sdata->vif.type != NL80211_IFTYPE_OCB) &&
2705 !multicast && !authorized &&
2706 (cpu_to_be16(ethertype) != sdata->control_port_protocol ||
2707 !ether_addr_equal(sdata->vif.addr, skb->data + ETH_ALEN)))) {
2708 #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
2709 net_info_ratelimited("%s: dropped frame to %pM (unauthorized port)\n",
2710 sdata->name, hdr.addr1);
2713 I802_DEBUG_INC(local->tx_handlers_drop_unauth_port);
2719 if (unlikely(!multicast && skb->sk &&
2720 skb_shinfo(skb)->tx_flags & SKBTX_WIFI_STATUS)) {
2721 struct sk_buff *ack_skb = skb_clone_sk(skb);
2724 unsigned long flags;
2727 spin_lock_irqsave(&local->ack_status_lock, flags);
2728 id = idr_alloc(&local->ack_status_frames, ack_skb,
2729 1, 0x10000, GFP_ATOMIC);
2730 spin_unlock_irqrestore(&local->ack_status_lock, flags);
2734 info_flags |= IEEE80211_TX_CTL_REQ_TX_STATUS;
2742 * If the skb is shared we need to obtain our own copy.
2744 if (skb_shared(skb)) {
2745 struct sk_buff *tmp_skb = skb;
2747 /* can't happen -- skb is a clone if info_id != 0 */
2750 skb = skb_clone(skb, GFP_ATOMIC);
2759 hdr.frame_control = fc;
2760 hdr.duration_id = 0;
2763 skip_header_bytes = ETH_HLEN;
2764 if (ethertype == ETH_P_AARP || ethertype == ETH_P_IPX) {
2765 encaps_data = bridge_tunnel_header;
2766 encaps_len = sizeof(bridge_tunnel_header);
2767 skip_header_bytes -= 2;
2768 } else if (ethertype >= ETH_P_802_3_MIN) {
2769 encaps_data = rfc1042_header;
2770 encaps_len = sizeof(rfc1042_header);
2771 skip_header_bytes -= 2;
2777 skb_pull(skb, skip_header_bytes);
2778 head_need = hdrlen + encaps_len + meshhdrlen - skb_headroom(skb);
2781 * So we need to modify the skb header and hence need a copy of
2782 * that. The head_need variable above doesn't, so far, include
2783 * the needed header space that we don't need right away. If we
2784 * can, then we don't reallocate right now but only after the
2785 * frame arrives at the master device (if it does...)
2787 * If we cannot, however, then we will reallocate to include all
2788 * the ever needed space. Also, if we need to reallocate it anyway,
2789 * make it big enough for everything we may ever need.
2792 if (head_need > 0 || skb_cloned(skb)) {
2793 head_need += sdata->encrypt_headroom;
2794 head_need += local->tx_headroom;
2795 head_need = max_t(int, 0, head_need);
2796 if (ieee80211_skb_resize(sdata, skb, head_need, true)) {
2797 ieee80211_free_txskb(&local->hw, skb);
2799 return ERR_PTR(-ENOMEM);
2804 memcpy(skb_push(skb, encaps_len), encaps_data, encaps_len);
2806 #ifdef CONFIG_MAC80211_MESH
2808 memcpy(skb_push(skb, meshhdrlen), &mesh_hdr, meshhdrlen);
2811 if (ieee80211_is_data_qos(fc)) {
2812 __le16 *qos_control;
2814 qos_control = skb_push(skb, 2);
2815 memcpy(skb_push(skb, hdrlen - 2), &hdr, hdrlen - 2);
2817 * Maybe we could actually set some fields here, for now just
2818 * initialise to zero to indicate no special operation.
2822 memcpy(skb_push(skb, hdrlen), &hdr, hdrlen);
2824 skb_reset_mac_header(skb);
2826 info = IEEE80211_SKB_CB(skb);
2827 memset(info, 0, sizeof(*info));
2829 info->flags = info_flags;
2830 info->ack_frame_id = info_id;
2832 info->control.flags = ctrl_flags;
2837 return ERR_PTR(ret);
2841 * fast-xmit overview
2843 * The core idea of this fast-xmit is to remove per-packet checks by checking
2844 * them out of band. ieee80211_check_fast_xmit() implements the out-of-band
2845 * checks that are needed to get the sta->fast_tx pointer assigned, after which
2846 * much less work can be done per packet. For example, fragmentation must be
2847 * disabled or the fast_tx pointer will not be set. All the conditions are seen
2850 * Once assigned, the fast_tx data structure also caches the per-packet 802.11
2851 * header and other data to aid packet processing in ieee80211_xmit_fast().
2853 * The most difficult part of this is that when any of these assumptions
2854 * change, an external trigger (i.e. a call to ieee80211_clear_fast_xmit(),
2855 * ieee80211_check_fast_xmit() or friends) is required to reset the data,
2856 * since the per-packet code no longer checks the conditions. This is reflected
2857 * by the calls to these functions throughout the rest of the code, and must be
2858 * maintained if any of the TX path checks change.
2861 void ieee80211_check_fast_xmit(struct sta_info *sta)
2863 struct ieee80211_fast_tx build = {}, *fast_tx = NULL, *old;
2864 struct ieee80211_local *local = sta->local;
2865 struct ieee80211_sub_if_data *sdata = sta->sdata;
2866 struct ieee80211_hdr *hdr = (void *)build.hdr;
2867 struct ieee80211_chanctx_conf *chanctx_conf;
2870 if (!ieee80211_hw_check(&local->hw, SUPPORT_FAST_XMIT))
2873 /* Locking here protects both the pointer itself, and against concurrent
2874 * invocations winning data access races to, e.g., the key pointer that
2876 * Without it, the invocation of this function right after the key
2877 * pointer changes wouldn't be sufficient, as another CPU could access
2878 * the pointer, then stall, and then do the cache update after the CPU
2879 * that invalidated the key.
2880 * With the locking, such scenarios cannot happen as the check for the
2881 * key and the fast-tx assignment are done atomically, so the CPU that
2882 * modifies the key will either wait or other one will see the key
2883 * cleared/changed already.
2885 spin_lock_bh(&sta->lock);
2886 if (ieee80211_hw_check(&local->hw, SUPPORTS_PS) &&
2887 !ieee80211_hw_check(&local->hw, SUPPORTS_DYNAMIC_PS) &&
2888 sdata->vif.type == NL80211_IFTYPE_STATION)
2891 if (!test_sta_flag(sta, WLAN_STA_AUTHORIZED))
2894 if (test_sta_flag(sta, WLAN_STA_PS_STA) ||
2895 test_sta_flag(sta, WLAN_STA_PS_DRIVER) ||
2896 test_sta_flag(sta, WLAN_STA_PS_DELIVER) ||
2897 test_sta_flag(sta, WLAN_STA_CLEAR_PS_FILT))
2900 if (sdata->noack_map)
2903 /* fast-xmit doesn't handle fragmentation at all */
2904 if (local->hw.wiphy->frag_threshold != (u32)-1 &&
2905 !ieee80211_hw_check(&local->hw, SUPPORTS_TX_FRAG))
2909 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
2910 if (!chanctx_conf) {
2914 build.band = chanctx_conf->def.chan->band;
2917 fc = cpu_to_le16(IEEE80211_FTYPE_DATA | IEEE80211_STYPE_DATA);
2919 switch (sdata->vif.type) {
2920 case NL80211_IFTYPE_ADHOC:
2922 build.da_offs = offsetof(struct ieee80211_hdr, addr1);
2923 build.sa_offs = offsetof(struct ieee80211_hdr, addr2);
2924 memcpy(hdr->addr3, sdata->u.ibss.bssid, ETH_ALEN);
2927 case NL80211_IFTYPE_STATION:
2928 if (test_sta_flag(sta, WLAN_STA_TDLS_PEER)) {
2930 build.da_offs = offsetof(struct ieee80211_hdr, addr1);
2931 build.sa_offs = offsetof(struct ieee80211_hdr, addr2);
2932 memcpy(hdr->addr3, sdata->u.mgd.bssid, ETH_ALEN);
2937 if (sdata->u.mgd.use_4addr) {
2938 /* non-regular ethertype cannot use the fastpath */
2939 fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS |
2940 IEEE80211_FCTL_TODS);
2942 memcpy(hdr->addr1, sdata->u.mgd.bssid, ETH_ALEN);
2943 memcpy(hdr->addr2, sdata->vif.addr, ETH_ALEN);
2944 build.da_offs = offsetof(struct ieee80211_hdr, addr3);
2945 build.sa_offs = offsetof(struct ieee80211_hdr, addr4);
2949 fc |= cpu_to_le16(IEEE80211_FCTL_TODS);
2951 memcpy(hdr->addr1, sdata->u.mgd.bssid, ETH_ALEN);
2952 build.da_offs = offsetof(struct ieee80211_hdr, addr3);
2953 build.sa_offs = offsetof(struct ieee80211_hdr, addr2);
2956 case NL80211_IFTYPE_AP_VLAN:
2957 if (sdata->wdev.use_4addr) {
2958 fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS |
2959 IEEE80211_FCTL_TODS);
2961 memcpy(hdr->addr1, sta->sta.addr, ETH_ALEN);
2962 memcpy(hdr->addr2, sdata->vif.addr, ETH_ALEN);
2963 build.da_offs = offsetof(struct ieee80211_hdr, addr3);
2964 build.sa_offs = offsetof(struct ieee80211_hdr, addr4);
2969 case NL80211_IFTYPE_AP:
2970 fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS);
2972 build.da_offs = offsetof(struct ieee80211_hdr, addr1);
2973 memcpy(hdr->addr2, sdata->vif.addr, ETH_ALEN);
2974 build.sa_offs = offsetof(struct ieee80211_hdr, addr3);
2978 /* not handled on fast-xmit */
2984 fc |= cpu_to_le16(IEEE80211_STYPE_QOS_DATA);
2987 /* We store the key here so there's no point in using rcu_dereference()
2988 * but that's fine because the code that changes the pointers will call
2989 * this function after doing so. For a single CPU that would be enough,
2990 * for multiple see the comment above.
2992 build.key = rcu_access_pointer(sta->ptk[sta->ptk_idx]);
2994 build.key = rcu_access_pointer(sdata->default_unicast_key);
2996 bool gen_iv, iv_spc, mmic;
2998 gen_iv = build.key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_IV;
2999 iv_spc = build.key->conf.flags & IEEE80211_KEY_FLAG_PUT_IV_SPACE;
3000 mmic = build.key->conf.flags &
3001 (IEEE80211_KEY_FLAG_GENERATE_MMIC |
3002 IEEE80211_KEY_FLAG_PUT_MIC_SPACE);
3004 /* don't handle software crypto */
3005 if (!(build.key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE))
3008 /* Key is being removed */
3009 if (build.key->flags & KEY_FLAG_TAINTED)
3012 switch (build.key->conf.cipher) {
3013 case WLAN_CIPHER_SUITE_CCMP:
3014 case WLAN_CIPHER_SUITE_CCMP_256:
3016 build.pn_offs = build.hdr_len;
3017 if (gen_iv || iv_spc)
3018 build.hdr_len += IEEE80211_CCMP_HDR_LEN;
3020 case WLAN_CIPHER_SUITE_GCMP:
3021 case WLAN_CIPHER_SUITE_GCMP_256:
3023 build.pn_offs = build.hdr_len;
3024 if (gen_iv || iv_spc)
3025 build.hdr_len += IEEE80211_GCMP_HDR_LEN;
3027 case WLAN_CIPHER_SUITE_TKIP:
3028 /* cannot handle MMIC or IV generation in xmit-fast */
3032 build.hdr_len += IEEE80211_TKIP_IV_LEN;
3034 case WLAN_CIPHER_SUITE_WEP40:
3035 case WLAN_CIPHER_SUITE_WEP104:
3036 /* cannot handle IV generation in fast-xmit */
3040 build.hdr_len += IEEE80211_WEP_IV_LEN;
3042 case WLAN_CIPHER_SUITE_AES_CMAC:
3043 case WLAN_CIPHER_SUITE_BIP_CMAC_256:
3044 case WLAN_CIPHER_SUITE_BIP_GMAC_128:
3045 case WLAN_CIPHER_SUITE_BIP_GMAC_256:
3047 "management cipher suite 0x%x enabled for data\n",
3048 build.key->conf.cipher);
3051 /* we don't know how to generate IVs for this at all */
3052 if (WARN_ON(gen_iv))
3054 /* pure hardware keys are OK, of course */
3055 if (!(build.key->flags & KEY_FLAG_CIPHER_SCHEME))
3057 /* cipher scheme might require space allocation */
3059 build.key->conf.iv_len > IEEE80211_FAST_XMIT_MAX_IV)
3062 build.hdr_len += build.key->conf.iv_len;
3065 fc |= cpu_to_le16(IEEE80211_FCTL_PROTECTED);
3068 hdr->frame_control = fc;
3070 memcpy(build.hdr + build.hdr_len,
3071 rfc1042_header, sizeof(rfc1042_header));
3072 build.hdr_len += sizeof(rfc1042_header);
3074 fast_tx = kmemdup(&build, sizeof(build), GFP_ATOMIC);
3075 /* if the kmemdup fails, continue w/o fast_tx */
3080 /* we might have raced against another call to this function */
3081 old = rcu_dereference_protected(sta->fast_tx,
3082 lockdep_is_held(&sta->lock));
3083 rcu_assign_pointer(sta->fast_tx, fast_tx);
3085 kfree_rcu(old, rcu_head);
3086 spin_unlock_bh(&sta->lock);
3089 void ieee80211_check_fast_xmit_all(struct ieee80211_local *local)
3091 struct sta_info *sta;
3094 list_for_each_entry_rcu(sta, &local->sta_list, list)
3095 ieee80211_check_fast_xmit(sta);
3099 void ieee80211_check_fast_xmit_iface(struct ieee80211_sub_if_data *sdata)
3101 struct ieee80211_local *local = sdata->local;
3102 struct sta_info *sta;
3106 list_for_each_entry_rcu(sta, &local->sta_list, list) {
3107 if (sdata != sta->sdata &&
3108 (!sta->sdata->bss || sta->sdata->bss != sdata->bss))
3110 ieee80211_check_fast_xmit(sta);
3116 void ieee80211_clear_fast_xmit(struct sta_info *sta)
3118 struct ieee80211_fast_tx *fast_tx;
3120 spin_lock_bh(&sta->lock);
3121 fast_tx = rcu_dereference_protected(sta->fast_tx,
3122 lockdep_is_held(&sta->lock));
3123 RCU_INIT_POINTER(sta->fast_tx, NULL);
3124 spin_unlock_bh(&sta->lock);
3127 kfree_rcu(fast_tx, rcu_head);
3130 static bool ieee80211_amsdu_realloc_pad(struct ieee80211_local *local,
3131 struct sk_buff *skb, int headroom)
3133 if (skb_headroom(skb) < headroom) {
3134 I802_DEBUG_INC(local->tx_expand_skb_head);
3136 if (pskb_expand_head(skb, headroom, 0, GFP_ATOMIC)) {
3137 wiphy_debug(local->hw.wiphy,
3138 "failed to reallocate TX buffer\n");
3146 static bool ieee80211_amsdu_prepare_head(struct ieee80211_sub_if_data *sdata,
3147 struct ieee80211_fast_tx *fast_tx,
3148 struct sk_buff *skb)
3150 struct ieee80211_local *local = sdata->local;
3151 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
3152 struct ieee80211_hdr *hdr;
3153 struct ethhdr *amsdu_hdr;
3154 int hdr_len = fast_tx->hdr_len - sizeof(rfc1042_header);
3155 int subframe_len = skb->len - hdr_len;
3157 u8 *qc, *h_80211_src, *h_80211_dst;
3160 if (info->flags & IEEE80211_TX_CTL_RATE_CTRL_PROBE)
3163 if (info->control.flags & IEEE80211_TX_CTRL_AMSDU)
3166 if (!ieee80211_amsdu_realloc_pad(local, skb, sizeof(*amsdu_hdr)))
3169 data = skb_push(skb, sizeof(*amsdu_hdr));
3170 memmove(data, data + sizeof(*amsdu_hdr), hdr_len);
3172 amsdu_hdr = data + hdr_len;
3173 /* h_80211_src/dst is addr* field within hdr */
3174 h_80211_src = data + fast_tx->sa_offs;
3175 h_80211_dst = data + fast_tx->da_offs;
3177 amsdu_hdr->h_proto = cpu_to_be16(subframe_len);
3178 ether_addr_copy(amsdu_hdr->h_source, h_80211_src);
3179 ether_addr_copy(amsdu_hdr->h_dest, h_80211_dst);
3181 /* according to IEEE 802.11-2012 8.3.2 table 8-19, the outer SA/DA
3182 * fields needs to be changed to BSSID for A-MSDU frames depending
3183 * on FromDS/ToDS values.
3185 switch (sdata->vif.type) {
3186 case NL80211_IFTYPE_STATION:
3187 bssid = sdata->u.mgd.bssid;
3189 case NL80211_IFTYPE_AP:
3190 case NL80211_IFTYPE_AP_VLAN:
3191 bssid = sdata->vif.addr;
3197 if (bssid && ieee80211_has_fromds(hdr->frame_control))
3198 ether_addr_copy(h_80211_src, bssid);
3200 if (bssid && ieee80211_has_tods(hdr->frame_control))
3201 ether_addr_copy(h_80211_dst, bssid);
3203 qc = ieee80211_get_qos_ctl(hdr);
3204 *qc |= IEEE80211_QOS_CTL_A_MSDU_PRESENT;
3206 info->control.flags |= IEEE80211_TX_CTRL_AMSDU;
3211 static bool ieee80211_amsdu_aggregate(struct ieee80211_sub_if_data *sdata,
3212 struct sta_info *sta,
3213 struct ieee80211_fast_tx *fast_tx,
3214 struct sk_buff *skb)
3216 struct ieee80211_local *local = sdata->local;
3217 struct fq *fq = &local->fq;
3219 struct fq_flow *flow;
3220 u8 tid = skb->priority & IEEE80211_QOS_CTL_TAG1D_MASK;
3221 struct ieee80211_txq *txq = sta->sta.txq[tid];
3222 struct txq_info *txqi;
3223 struct sk_buff **frag_tail, *head;
3224 int subframe_len = skb->len - ETH_ALEN;
3225 u8 max_subframes = sta->sta.max_amsdu_subframes;
3226 int max_frags = local->hw.max_tx_fragments;
3227 int max_amsdu_len = sta->sta.max_amsdu_len;
3233 unsigned int orig_len;
3234 int n = 2, nfrags, pad = 0;
3237 if (!ieee80211_hw_check(&local->hw, TX_AMSDU))
3240 if (skb_is_gso(skb))
3246 txqi = to_txq_info(txq);
3247 if (test_bit(IEEE80211_TXQ_NO_AMSDU, &txqi->flags))
3250 if (sta->sta.max_rc_amsdu_len)
3251 max_amsdu_len = min_t(int, max_amsdu_len,
3252 sta->sta.max_rc_amsdu_len);
3254 if (sta->sta.max_tid_amsdu_len[tid])
3255 max_amsdu_len = min_t(int, max_amsdu_len,
3256 sta->sta.max_tid_amsdu_len[tid]);
3258 flow_idx = fq_flow_idx(fq, skb);
3260 spin_lock_bh(&fq->lock);
3262 /* TODO: Ideally aggregation should be done on dequeue to remain
3263 * responsive to environment changes.
3267 flow = fq_flow_classify(fq, tin, flow_idx, skb,
3268 fq_flow_get_default_func);
3269 head = skb_peek_tail(&flow->queue);
3270 if (!head || skb_is_gso(head))
3273 orig_truesize = head->truesize;
3274 orig_len = head->len;
3276 if (skb->len + head->len > max_amsdu_len)
3279 nfrags = 1 + skb_shinfo(skb)->nr_frags;
3280 nfrags += 1 + skb_shinfo(head)->nr_frags;
3281 frag_tail = &skb_shinfo(head)->frag_list;
3282 while (*frag_tail) {
3283 nfrags += 1 + skb_shinfo(*frag_tail)->nr_frags;
3284 frag_tail = &(*frag_tail)->next;
3288 if (max_subframes && n > max_subframes)
3291 if (max_frags && nfrags > max_frags)
3294 if (!drv_can_aggregate_in_amsdu(local, head, skb))
3297 if (!ieee80211_amsdu_prepare_head(sdata, fast_tx, head))
3301 * Pad out the previous subframe to a multiple of 4 by adding the
3302 * padding to the next one, that's being added. Note that head->len
3303 * is the length of the full A-MSDU, but that works since each time
3304 * we add a new subframe we pad out the previous one to a multiple
3305 * of 4 and thus it no longer matters in the next round.
3307 hdrlen = fast_tx->hdr_len - sizeof(rfc1042_header);
3308 if ((head->len - hdrlen) & 3)
3309 pad = 4 - ((head->len - hdrlen) & 3);
3311 if (!ieee80211_amsdu_realloc_pad(local, skb, sizeof(rfc1042_header) +
3316 data = skb_push(skb, ETH_ALEN + 2);
3317 memmove(data, data + ETH_ALEN + 2, 2 * ETH_ALEN);
3319 data += 2 * ETH_ALEN;
3320 len = cpu_to_be16(subframe_len);
3321 memcpy(data, &len, 2);
3322 memcpy(data + 2, rfc1042_header, sizeof(rfc1042_header));
3324 memset(skb_push(skb, pad), 0, pad);
3326 head->len += skb->len;
3327 head->data_len += skb->len;
3331 fq->memory_usage += head->truesize - orig_truesize;
3332 if (head->len != orig_len) {
3333 flow->backlog += head->len - orig_len;
3334 tin->backlog_bytes += head->len - orig_len;
3336 fq_recalc_backlog(fq, tin, flow);
3339 spin_unlock_bh(&fq->lock);
3345 * Can be called while the sta lock is held. Anything that can cause packets to
3346 * be generated will cause deadlock!
3348 static void ieee80211_xmit_fast_finish(struct ieee80211_sub_if_data *sdata,
3349 struct sta_info *sta, u8 pn_offs,
3350 struct ieee80211_key *key,
3351 struct sk_buff *skb)
3353 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
3354 struct ieee80211_hdr *hdr = (void *)skb->data;
3355 u8 tid = IEEE80211_NUM_TIDS;
3358 info->control.hw_key = &key->conf;
3360 ieee80211_tx_stats(skb->dev, skb->len);
3362 if (hdr->frame_control & cpu_to_le16(IEEE80211_STYPE_QOS_DATA)) {
3363 tid = skb->priority & IEEE80211_QOS_CTL_TAG1D_MASK;
3364 hdr->seq_ctrl = ieee80211_tx_next_seq(sta, tid);
3366 info->flags |= IEEE80211_TX_CTL_ASSIGN_SEQ;
3367 hdr->seq_ctrl = cpu_to_le16(sdata->sequence_number);
3368 sdata->sequence_number += 0x10;
3371 if (skb_shinfo(skb)->gso_size)
3372 sta->tx_stats.msdu[tid] +=
3373 DIV_ROUND_UP(skb->len, skb_shinfo(skb)->gso_size);
3375 sta->tx_stats.msdu[tid]++;
3377 info->hw_queue = sdata->vif.hw_queue[skb_get_queue_mapping(skb)];
3379 /* statistics normally done by ieee80211_tx_h_stats (but that
3380 * has to consider fragmentation, so is more complex)
3382 sta->tx_stats.bytes[skb_get_queue_mapping(skb)] += skb->len;
3383 sta->tx_stats.packets[skb_get_queue_mapping(skb)]++;
3387 u8 *crypto_hdr = skb->data + pn_offs;
3389 switch (key->conf.cipher) {
3390 case WLAN_CIPHER_SUITE_CCMP:
3391 case WLAN_CIPHER_SUITE_CCMP_256:
3392 case WLAN_CIPHER_SUITE_GCMP:
3393 case WLAN_CIPHER_SUITE_GCMP_256:
3394 pn = atomic64_inc_return(&key->conf.tx_pn);
3396 crypto_hdr[1] = pn >> 8;
3397 crypto_hdr[3] = 0x20 | (key->conf.keyidx << 6);
3398 crypto_hdr[4] = pn >> 16;
3399 crypto_hdr[5] = pn >> 24;
3400 crypto_hdr[6] = pn >> 32;
3401 crypto_hdr[7] = pn >> 40;
3407 static bool ieee80211_xmit_fast(struct ieee80211_sub_if_data *sdata,
3408 struct sta_info *sta,
3409 struct ieee80211_fast_tx *fast_tx,
3410 struct sk_buff *skb)
3412 struct ieee80211_local *local = sdata->local;
3413 u16 ethertype = (skb->data[12] << 8) | skb->data[13];
3414 int extra_head = fast_tx->hdr_len - (ETH_HLEN - 2);
3415 int hw_headroom = sdata->local->hw.extra_tx_headroom;
3417 struct ieee80211_tx_info *info;
3418 struct ieee80211_hdr *hdr = (void *)fast_tx->hdr;
3419 struct ieee80211_tx_data tx;
3420 ieee80211_tx_result r;
3421 struct tid_ampdu_tx *tid_tx = NULL;
3422 u8 tid = IEEE80211_NUM_TIDS;
3424 /* control port protocol needs a lot of special handling */
3425 if (cpu_to_be16(ethertype) == sdata->control_port_protocol)
3428 /* only RFC 1042 SNAP */
3429 if (ethertype < ETH_P_802_3_MIN)
3432 /* don't handle TX status request here either */
3433 if (skb->sk && skb_shinfo(skb)->tx_flags & SKBTX_WIFI_STATUS)
3436 if (hdr->frame_control & cpu_to_le16(IEEE80211_STYPE_QOS_DATA)) {
3437 tid = skb->priority & IEEE80211_QOS_CTL_TAG1D_MASK;
3438 tid_tx = rcu_dereference(sta->ampdu_mlme.tid_tx[tid]);
3440 if (!test_bit(HT_AGG_STATE_OPERATIONAL, &tid_tx->state))
3442 if (tid_tx->timeout)
3443 tid_tx->last_tx = jiffies;
3447 /* after this point (skb is modified) we cannot return false */
3449 if (skb_shared(skb)) {
3450 struct sk_buff *tmp_skb = skb;
3452 skb = skb_clone(skb, GFP_ATOMIC);
3459 if ((hdr->frame_control & cpu_to_le16(IEEE80211_STYPE_QOS_DATA)) &&
3460 ieee80211_amsdu_aggregate(sdata, sta, fast_tx, skb))
3463 /* will not be crypto-handled beyond what we do here, so use false
3464 * as the may-encrypt argument for the resize to not account for
3465 * more room than we already have in 'extra_head'
3467 if (unlikely(ieee80211_skb_resize(sdata, skb,
3468 max_t(int, extra_head + hw_headroom -
3469 skb_headroom(skb), 0),
3475 memcpy(ð, skb->data, ETH_HLEN - 2);
3476 hdr = skb_push(skb, extra_head);
3477 memcpy(skb->data, fast_tx->hdr, fast_tx->hdr_len);
3478 memcpy(skb->data + fast_tx->da_offs, eth.h_dest, ETH_ALEN);
3479 memcpy(skb->data + fast_tx->sa_offs, eth.h_source, ETH_ALEN);
3481 info = IEEE80211_SKB_CB(skb);
3482 memset(info, 0, sizeof(*info));
3483 info->band = fast_tx->band;
3484 info->control.vif = &sdata->vif;
3485 info->flags = IEEE80211_TX_CTL_FIRST_FRAGMENT |
3486 IEEE80211_TX_CTL_DONTFRAG |
3487 (tid_tx ? IEEE80211_TX_CTL_AMPDU : 0);
3488 info->control.flags = IEEE80211_TX_CTRL_FAST_XMIT;
3490 #ifdef CONFIG_MAC80211_DEBUGFS
3491 if (local->force_tx_status)
3492 info->flags |= IEEE80211_TX_CTL_REQ_TX_STATUS;
3495 if (hdr->frame_control & cpu_to_le16(IEEE80211_STYPE_QOS_DATA)) {
3496 tid = skb->priority & IEEE80211_QOS_CTL_TAG1D_MASK;
3497 *ieee80211_get_qos_ctl(hdr) = tid;
3500 __skb_queue_head_init(&tx.skbs);
3502 tx.flags = IEEE80211_TX_UNICAST;
3506 tx.key = fast_tx->key;
3508 if (!ieee80211_hw_check(&local->hw, HAS_RATE_CONTROL)) {
3510 r = ieee80211_tx_h_rate_ctrl(&tx);
3514 if (r != TX_CONTINUE) {
3521 if (ieee80211_queue_skb(local, sdata, sta, skb))
3524 ieee80211_xmit_fast_finish(sdata, sta, fast_tx->pn_offs,
3527 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
3528 sdata = container_of(sdata->bss,
3529 struct ieee80211_sub_if_data, u.ap);
3531 __skb_queue_tail(&tx.skbs, skb);
3532 ieee80211_tx_frags(local, &sdata->vif, &sta->sta, &tx.skbs, false);
3536 struct sk_buff *ieee80211_tx_dequeue(struct ieee80211_hw *hw,
3537 struct ieee80211_txq *txq)
3539 struct ieee80211_local *local = hw_to_local(hw);
3540 struct txq_info *txqi = container_of(txq, struct txq_info, txq);
3541 struct ieee80211_hdr *hdr;
3542 struct sk_buff *skb = NULL;
3543 struct fq *fq = &local->fq;
3544 struct fq_tin *tin = &txqi->tin;
3545 struct ieee80211_tx_info *info;
3546 struct ieee80211_tx_data tx;
3547 ieee80211_tx_result r;
3548 struct ieee80211_vif *vif = txq->vif;
3550 WARN_ON_ONCE(softirq_count() == 0);
3553 spin_lock_bh(&fq->lock);
3555 if (test_bit(IEEE80211_TXQ_STOP, &txqi->flags) ||
3556 test_bit(IEEE80211_TXQ_STOP_NETIF_TX, &txqi->flags))
3559 if (vif->txqs_stopped[ieee80211_ac_from_tid(txq->tid)]) {
3560 set_bit(IEEE80211_TXQ_STOP_NETIF_TX, &txqi->flags);
3564 /* Make sure fragments stay together. */
3565 skb = __skb_dequeue(&txqi->frags);
3569 skb = fq_tin_dequeue(fq, tin, fq_tin_dequeue_func);
3573 spin_unlock_bh(&fq->lock);
3575 hdr = (struct ieee80211_hdr *)skb->data;
3576 info = IEEE80211_SKB_CB(skb);
3578 memset(&tx, 0, sizeof(tx));
3579 __skb_queue_head_init(&tx.skbs);
3582 tx.sdata = vif_to_sdata(info->control.vif);
3585 tx.sta = container_of(txq->sta, struct sta_info, sta);
3588 * The key can be removed while the packet was queued, so need to call
3589 * this here to get the current key.
3591 r = ieee80211_tx_h_select_key(&tx);
3592 if (r != TX_CONTINUE) {
3593 ieee80211_free_txskb(&local->hw, skb);
3597 if (test_bit(IEEE80211_TXQ_AMPDU, &txqi->flags))
3598 info->flags |= IEEE80211_TX_CTL_AMPDU;
3600 info->flags &= ~IEEE80211_TX_CTL_AMPDU;
3602 if (info->control.flags & IEEE80211_TX_CTRL_FAST_XMIT) {
3603 struct sta_info *sta = container_of(txq->sta, struct sta_info,
3608 (tx.key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_IV))
3609 pn_offs = ieee80211_hdrlen(hdr->frame_control);
3611 ieee80211_xmit_fast_finish(sta->sdata, sta, pn_offs,
3614 if (invoke_tx_handlers_late(&tx))
3617 skb = __skb_dequeue(&tx.skbs);
3619 if (!skb_queue_empty(&tx.skbs)) {
3620 spin_lock_bh(&fq->lock);
3621 skb_queue_splice_tail(&tx.skbs, &txqi->frags);
3622 spin_unlock_bh(&fq->lock);
3626 if (skb_has_frag_list(skb) &&
3627 !ieee80211_hw_check(&local->hw, TX_FRAG_LIST)) {
3628 if (skb_linearize(skb)) {
3629 ieee80211_free_txskb(&local->hw, skb);
3634 switch (tx.sdata->vif.type) {
3635 case NL80211_IFTYPE_MONITOR:
3636 if (tx.sdata->u.mntr.flags & MONITOR_FLAG_ACTIVE) {
3637 vif = &tx.sdata->vif;
3640 tx.sdata = rcu_dereference(local->monitor_sdata);
3642 vif = &tx.sdata->vif;
3644 vif->hw_queue[skb_get_queue_mapping(skb)];
3645 } else if (ieee80211_hw_check(&local->hw, QUEUE_CONTROL)) {
3646 ieee80211_free_txskb(&local->hw, skb);
3652 case NL80211_IFTYPE_AP_VLAN:
3653 tx.sdata = container_of(tx.sdata->bss,
3654 struct ieee80211_sub_if_data, u.ap);
3657 vif = &tx.sdata->vif;
3661 IEEE80211_SKB_CB(skb)->control.vif = vif;
3665 spin_unlock_bh(&fq->lock);
3669 EXPORT_SYMBOL(ieee80211_tx_dequeue);
3671 struct ieee80211_txq *ieee80211_next_txq(struct ieee80211_hw *hw, u8 ac)
3673 struct ieee80211_local *local = hw_to_local(hw);
3674 struct ieee80211_txq *ret = NULL;
3675 struct txq_info *txqi = NULL;
3677 spin_lock_bh(&local->active_txq_lock[ac]);
3680 txqi = list_first_entry_or_null(&local->active_txqs[ac],
3686 if (txqi->txq.sta) {
3687 struct sta_info *sta = container_of(txqi->txq.sta,
3688 struct sta_info, sta);
3690 if (sta->airtime[txqi->txq.ac].deficit < 0) {
3691 sta->airtime[txqi->txq.ac].deficit +=
3692 sta->airtime_weight;
3693 list_move_tail(&txqi->schedule_order,
3694 &local->active_txqs[txqi->txq.ac]);
3700 if (txqi->schedule_round == local->schedule_round[ac])
3703 list_del_init(&txqi->schedule_order);
3704 txqi->schedule_round = local->schedule_round[ac];
3708 spin_unlock_bh(&local->active_txq_lock[ac]);
3711 EXPORT_SYMBOL(ieee80211_next_txq);
3713 void __ieee80211_schedule_txq(struct ieee80211_hw *hw,
3714 struct ieee80211_txq *txq,
3717 struct ieee80211_local *local = hw_to_local(hw);
3718 struct txq_info *txqi = to_txq_info(txq);
3720 spin_lock_bh(&local->active_txq_lock[txq->ac]);
3722 if (list_empty(&txqi->schedule_order) &&
3723 (force || !skb_queue_empty(&txqi->frags) ||
3724 txqi->tin.backlog_packets)) {
3725 /* If airtime accounting is active, always enqueue STAs at the
3726 * head of the list to ensure that they only get moved to the
3727 * back by the airtime DRR scheduler once they have a negative
3728 * deficit. A station that already has a negative deficit will
3729 * get immediately moved to the back of the list on the next
3730 * call to ieee80211_next_txq().
3732 if (txqi->txq.sta &&
3733 wiphy_ext_feature_isset(local->hw.wiphy,
3734 NL80211_EXT_FEATURE_AIRTIME_FAIRNESS))
3735 list_add(&txqi->schedule_order,
3736 &local->active_txqs[txq->ac]);
3738 list_add_tail(&txqi->schedule_order,
3739 &local->active_txqs[txq->ac]);
3742 spin_unlock_bh(&local->active_txq_lock[txq->ac]);
3744 EXPORT_SYMBOL(__ieee80211_schedule_txq);
3746 bool ieee80211_txq_may_transmit(struct ieee80211_hw *hw,
3747 struct ieee80211_txq *txq)
3749 struct ieee80211_local *local = hw_to_local(hw);
3750 struct txq_info *iter, *tmp, *txqi = to_txq_info(txq);
3751 struct sta_info *sta;
3754 spin_lock_bh(&local->active_txq_lock[ac]);
3759 if (list_empty(&txqi->schedule_order))
3762 list_for_each_entry_safe(iter, tmp, &local->active_txqs[ac],
3767 if (!iter->txq.sta) {
3768 list_move_tail(&iter->schedule_order,
3769 &local->active_txqs[ac]);
3772 sta = container_of(iter->txq.sta, struct sta_info, sta);
3773 if (sta->airtime[ac].deficit < 0)
3774 sta->airtime[ac].deficit += sta->airtime_weight;
3775 list_move_tail(&iter->schedule_order, &local->active_txqs[ac]);
3778 sta = container_of(txqi->txq.sta, struct sta_info, sta);
3779 if (sta->airtime[ac].deficit >= 0)
3782 sta->airtime[ac].deficit += sta->airtime_weight;
3783 list_move_tail(&txqi->schedule_order, &local->active_txqs[ac]);
3784 spin_unlock_bh(&local->active_txq_lock[ac]);
3788 if (!list_empty(&txqi->schedule_order))
3789 list_del_init(&txqi->schedule_order);
3790 spin_unlock_bh(&local->active_txq_lock[ac]);
3794 EXPORT_SYMBOL(ieee80211_txq_may_transmit);
3796 void ieee80211_txq_schedule_start(struct ieee80211_hw *hw, u8 ac)
3798 struct ieee80211_local *local = hw_to_local(hw);
3800 spin_lock_bh(&local->active_txq_lock[ac]);
3801 local->schedule_round[ac]++;
3802 spin_unlock_bh(&local->active_txq_lock[ac]);
3804 EXPORT_SYMBOL(ieee80211_txq_schedule_start);
3806 void __ieee80211_subif_start_xmit(struct sk_buff *skb,
3807 struct net_device *dev,
3811 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3812 struct ieee80211_local *local = sdata->local;
3813 struct sta_info *sta;
3814 struct sk_buff *next;
3816 if (unlikely(skb->len < ETH_HLEN)) {
3823 if (ieee80211_lookup_ra_sta(sdata, skb, &sta))
3829 if (local->ops->wake_tx_queue) {
3830 u16 queue = __ieee80211_select_queue(sdata, sta, skb);
3831 skb_set_queue_mapping(skb, queue);
3835 struct ieee80211_fast_tx *fast_tx;
3837 sk_pacing_shift_update(skb->sk, sdata->local->hw.tx_sk_pacing_shift);
3839 fast_tx = rcu_dereference(sta->fast_tx);
3842 ieee80211_xmit_fast(sdata, sta, fast_tx, skb))
3846 if (skb_is_gso(skb)) {
3847 struct sk_buff *segs;
3849 segs = skb_gso_segment(skb, 0);
3857 /* we cannot process non-linear frames on this path */
3858 if (skb_linearize(skb)) {
3863 /* the frame could be fragmented, software-encrypted, and other
3864 * things so we cannot really handle checksum offload with it -
3865 * fix it up in software before we handle anything else.
3867 if (skb->ip_summed == CHECKSUM_PARTIAL) {
3868 skb_set_transport_header(skb,
3869 skb_checksum_start_offset(skb));
3870 if (skb_checksum_help(skb))
3883 skb = ieee80211_build_hdr(sdata, skb, info_flags,
3888 ieee80211_tx_stats(dev, skb->len);
3890 ieee80211_xmit(sdata, sta, skb, 0);
3899 static int ieee80211_change_da(struct sk_buff *skb, struct sta_info *sta)
3904 err = skb_ensure_writable(skb, ETH_HLEN);
3908 eth = (void *)skb->data;
3909 ether_addr_copy(eth->h_dest, sta->sta.addr);
3914 static bool ieee80211_multicast_to_unicast(struct sk_buff *skb,
3915 struct net_device *dev)
3917 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3918 const struct ethhdr *eth = (void *)skb->data;
3919 const struct vlan_ethhdr *ethvlan = (void *)skb->data;
3922 if (likely(!is_multicast_ether_addr(eth->h_dest)))
3925 switch (sdata->vif.type) {
3926 case NL80211_IFTYPE_AP_VLAN:
3927 if (sdata->u.vlan.sta)
3929 if (sdata->wdev.use_4addr)
3932 case NL80211_IFTYPE_AP:
3933 /* check runtime toggle for this bss */
3934 if (!sdata->bss->multicast_to_unicast)
3941 /* multicast to unicast conversion only for some payload */
3942 ethertype = eth->h_proto;
3943 if (ethertype == htons(ETH_P_8021Q) && skb->len >= VLAN_ETH_HLEN)
3944 ethertype = ethvlan->h_vlan_encapsulated_proto;
3945 switch (ethertype) {
3946 case htons(ETH_P_ARP):
3947 case htons(ETH_P_IP):
3948 case htons(ETH_P_IPV6):
3958 ieee80211_convert_to_unicast(struct sk_buff *skb, struct net_device *dev,
3959 struct sk_buff_head *queue)
3961 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3962 struct ieee80211_local *local = sdata->local;
3963 const struct ethhdr *eth = (struct ethhdr *)skb->data;
3964 struct sta_info *sta, *first = NULL;
3965 struct sk_buff *cloned_skb;
3969 list_for_each_entry_rcu(sta, &local->sta_list, list) {
3970 if (sdata != sta->sdata)
3971 /* AP-VLAN mismatch */
3973 if (unlikely(ether_addr_equal(eth->h_source, sta->sta.addr)))
3974 /* do not send back to source */
3980 cloned_skb = skb_clone(skb, GFP_ATOMIC);
3983 if (unlikely(ieee80211_change_da(cloned_skb, sta))) {
3984 dev_kfree_skb(cloned_skb);
3987 __skb_queue_tail(queue, cloned_skb);
3990 if (likely(first)) {
3991 if (unlikely(ieee80211_change_da(skb, first)))
3993 __skb_queue_tail(queue, skb);
3995 /* no STA connected, drop */
4002 __skb_queue_purge(queue);
4003 __skb_queue_tail(queue, skb);
4009 * ieee80211_subif_start_xmit - netif start_xmit function for 802.3 vifs
4010 * @skb: packet to be sent
4011 * @dev: incoming interface
4013 * On failure skb will be freed.
4015 netdev_tx_t ieee80211_subif_start_xmit(struct sk_buff *skb,
4016 struct net_device *dev)
4018 if (unlikely(ieee80211_multicast_to_unicast(skb, dev))) {
4019 struct sk_buff_head queue;
4021 __skb_queue_head_init(&queue);
4022 ieee80211_convert_to_unicast(skb, dev, &queue);
4023 while ((skb = __skb_dequeue(&queue)))
4024 __ieee80211_subif_start_xmit(skb, dev, 0, 0);
4026 __ieee80211_subif_start_xmit(skb, dev, 0, 0);
4029 return NETDEV_TX_OK;
4033 ieee80211_build_data_template(struct ieee80211_sub_if_data *sdata,
4034 struct sk_buff *skb, u32 info_flags)
4036 struct ieee80211_hdr *hdr;
4037 struct ieee80211_tx_data tx = {
4038 .local = sdata->local,
4041 struct sta_info *sta;
4045 if (ieee80211_lookup_ra_sta(sdata, skb, &sta)) {
4047 skb = ERR_PTR(-EINVAL);
4051 skb = ieee80211_build_hdr(sdata, skb, info_flags, sta, 0);
4055 hdr = (void *)skb->data;
4056 tx.sta = sta_info_get(sdata, hdr->addr1);
4059 if (ieee80211_tx_h_select_key(&tx) != TX_CONTINUE) {
4062 return ERR_PTR(-EINVAL);
4071 * ieee80211_clear_tx_pending may not be called in a context where
4072 * it is possible that it packets could come in again.
4074 void ieee80211_clear_tx_pending(struct ieee80211_local *local)
4076 struct sk_buff *skb;
4079 for (i = 0; i < local->hw.queues; i++) {
4080 while ((skb = skb_dequeue(&local->pending[i])) != NULL)
4081 ieee80211_free_txskb(&local->hw, skb);
4086 * Returns false if the frame couldn't be transmitted but was queued instead,
4087 * which in this case means re-queued -- take as an indication to stop sending
4088 * more pending frames.
4090 static bool ieee80211_tx_pending_skb(struct ieee80211_local *local,
4091 struct sk_buff *skb)
4093 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
4094 struct ieee80211_sub_if_data *sdata;
4095 struct sta_info *sta;
4096 struct ieee80211_hdr *hdr;
4098 struct ieee80211_chanctx_conf *chanctx_conf;
4100 sdata = vif_to_sdata(info->control.vif);
4102 if (info->flags & IEEE80211_TX_INTFL_NEED_TXPROCESSING) {
4103 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
4104 if (unlikely(!chanctx_conf)) {
4108 info->band = chanctx_conf->def.chan->band;
4109 result = ieee80211_tx(sdata, NULL, skb, true, 0);
4111 struct sk_buff_head skbs;
4113 __skb_queue_head_init(&skbs);
4114 __skb_queue_tail(&skbs, skb);
4116 hdr = (struct ieee80211_hdr *)skb->data;
4117 sta = sta_info_get(sdata, hdr->addr1);
4119 result = __ieee80211_tx(local, &skbs, skb->len, sta, true);
4126 * Transmit all pending packets. Called from tasklet.
4128 void ieee80211_tx_pending(unsigned long data)
4130 struct ieee80211_local *local = (struct ieee80211_local *)data;
4131 unsigned long flags;
4137 spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
4138 for (i = 0; i < local->hw.queues; i++) {
4140 * If queue is stopped by something other than due to pending
4141 * frames, or we have no pending frames, proceed to next queue.
4143 if (local->queue_stop_reasons[i] ||
4144 skb_queue_empty(&local->pending[i]))
4147 while (!skb_queue_empty(&local->pending[i])) {
4148 struct sk_buff *skb = __skb_dequeue(&local->pending[i]);
4149 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
4151 if (WARN_ON(!info->control.vif)) {
4152 ieee80211_free_txskb(&local->hw, skb);
4156 spin_unlock_irqrestore(&local->queue_stop_reason_lock,
4159 txok = ieee80211_tx_pending_skb(local, skb);
4160 spin_lock_irqsave(&local->queue_stop_reason_lock,
4166 if (skb_queue_empty(&local->pending[i]))
4167 ieee80211_propagate_queue_wake(local, i);
4169 spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
4174 /* functions for drivers to get certain frames */
4176 static void __ieee80211_beacon_add_tim(struct ieee80211_sub_if_data *sdata,
4177 struct ps_data *ps, struct sk_buff *skb,
4182 int i, have_bits = 0, n1, n2;
4184 /* Generate bitmap for TIM only if there are any STAs in power save
4186 if (atomic_read(&ps->num_sta_ps) > 0)
4187 /* in the hope that this is faster than
4188 * checking byte-for-byte */
4189 have_bits = !bitmap_empty((unsigned long *)ps->tim,
4190 IEEE80211_MAX_AID+1);
4192 if (ps->dtim_count == 0)
4193 ps->dtim_count = sdata->vif.bss_conf.dtim_period - 1;
4198 tim = pos = skb_put(skb, 6);
4199 *pos++ = WLAN_EID_TIM;
4201 *pos++ = ps->dtim_count;
4202 *pos++ = sdata->vif.bss_conf.dtim_period;
4204 if (ps->dtim_count == 0 && !skb_queue_empty(&ps->bc_buf))
4207 ps->dtim_bc_mc = aid0 == 1;
4210 /* Find largest even number N1 so that bits numbered 1 through
4211 * (N1 x 8) - 1 in the bitmap are 0 and number N2 so that bits
4212 * (N2 + 1) x 8 through 2007 are 0. */
4214 for (i = 0; i < IEEE80211_MAX_TIM_LEN; i++) {
4221 for (i = IEEE80211_MAX_TIM_LEN - 1; i >= n1; i--) {
4228 /* Bitmap control */
4230 /* Part Virt Bitmap */
4231 skb_put(skb, n2 - n1);
4232 memcpy(pos, ps->tim + n1, n2 - n1 + 1);
4234 tim[1] = n2 - n1 + 4;
4236 *pos++ = aid0; /* Bitmap control */
4237 *pos++ = 0; /* Part Virt Bitmap */
4241 static int ieee80211_beacon_add_tim(struct ieee80211_sub_if_data *sdata,
4242 struct ps_data *ps, struct sk_buff *skb,
4245 struct ieee80211_local *local = sdata->local;
4248 * Not very nice, but we want to allow the driver to call
4249 * ieee80211_beacon_get() as a response to the set_tim()
4250 * callback. That, however, is already invoked under the
4251 * sta_lock to guarantee consistent and race-free update
4252 * of the tim bitmap in mac80211 and the driver.
4254 if (local->tim_in_locked_section) {
4255 __ieee80211_beacon_add_tim(sdata, ps, skb, is_template);
4257 spin_lock_bh(&local->tim_lock);
4258 __ieee80211_beacon_add_tim(sdata, ps, skb, is_template);
4259 spin_unlock_bh(&local->tim_lock);
4265 static void ieee80211_set_csa(struct ieee80211_sub_if_data *sdata,
4266 struct beacon_data *beacon)
4268 struct probe_resp *resp;
4270 size_t beacon_data_len;
4272 u8 count = beacon->csa_current_counter;
4274 switch (sdata->vif.type) {
4275 case NL80211_IFTYPE_AP:
4276 beacon_data = beacon->tail;
4277 beacon_data_len = beacon->tail_len;
4279 case NL80211_IFTYPE_ADHOC:
4280 beacon_data = beacon->head;
4281 beacon_data_len = beacon->head_len;
4283 case NL80211_IFTYPE_MESH_POINT:
4284 beacon_data = beacon->head;
4285 beacon_data_len = beacon->head_len;
4292 for (i = 0; i < IEEE80211_MAX_CSA_COUNTERS_NUM; ++i) {
4293 resp = rcu_dereference(sdata->u.ap.probe_resp);
4295 if (beacon->csa_counter_offsets[i]) {
4296 if (WARN_ON_ONCE(beacon->csa_counter_offsets[i] >=
4302 beacon_data[beacon->csa_counter_offsets[i]] = count;
4305 if (sdata->vif.type == NL80211_IFTYPE_AP && resp)
4306 resp->data[resp->csa_counter_offsets[i]] = count;
4311 static u8 __ieee80211_csa_update_counter(struct beacon_data *beacon)
4313 beacon->csa_current_counter--;
4315 /* the counter should never reach 0 */
4316 WARN_ON_ONCE(!beacon->csa_current_counter);
4318 return beacon->csa_current_counter;
4321 u8 ieee80211_csa_update_counter(struct ieee80211_vif *vif)
4323 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
4324 struct beacon_data *beacon = NULL;
4329 if (sdata->vif.type == NL80211_IFTYPE_AP)
4330 beacon = rcu_dereference(sdata->u.ap.beacon);
4331 else if (sdata->vif.type == NL80211_IFTYPE_ADHOC)
4332 beacon = rcu_dereference(sdata->u.ibss.presp);
4333 else if (ieee80211_vif_is_mesh(&sdata->vif))
4334 beacon = rcu_dereference(sdata->u.mesh.beacon);
4339 count = __ieee80211_csa_update_counter(beacon);
4345 EXPORT_SYMBOL(ieee80211_csa_update_counter);
4347 void ieee80211_csa_set_counter(struct ieee80211_vif *vif, u8 counter)
4349 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
4350 struct beacon_data *beacon = NULL;
4354 if (sdata->vif.type == NL80211_IFTYPE_AP)
4355 beacon = rcu_dereference(sdata->u.ap.beacon);
4356 else if (sdata->vif.type == NL80211_IFTYPE_ADHOC)
4357 beacon = rcu_dereference(sdata->u.ibss.presp);
4358 else if (ieee80211_vif_is_mesh(&sdata->vif))
4359 beacon = rcu_dereference(sdata->u.mesh.beacon);
4364 if (counter < beacon->csa_current_counter)
4365 beacon->csa_current_counter = counter;
4370 EXPORT_SYMBOL(ieee80211_csa_set_counter);
4372 bool ieee80211_csa_is_complete(struct ieee80211_vif *vif)
4374 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
4375 struct beacon_data *beacon = NULL;
4377 size_t beacon_data_len;
4380 if (!ieee80211_sdata_running(sdata))
4384 if (vif->type == NL80211_IFTYPE_AP) {
4385 struct ieee80211_if_ap *ap = &sdata->u.ap;
4387 beacon = rcu_dereference(ap->beacon);
4388 if (WARN_ON(!beacon || !beacon->tail))
4390 beacon_data = beacon->tail;
4391 beacon_data_len = beacon->tail_len;
4392 } else if (vif->type == NL80211_IFTYPE_ADHOC) {
4393 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
4395 beacon = rcu_dereference(ifibss->presp);
4399 beacon_data = beacon->head;
4400 beacon_data_len = beacon->head_len;
4401 } else if (vif->type == NL80211_IFTYPE_MESH_POINT) {
4402 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
4404 beacon = rcu_dereference(ifmsh->beacon);
4408 beacon_data = beacon->head;
4409 beacon_data_len = beacon->head_len;
4415 if (!beacon->csa_counter_offsets[0])
4418 if (WARN_ON_ONCE(beacon->csa_counter_offsets[0] > beacon_data_len))
4421 if (beacon_data[beacon->csa_counter_offsets[0]] == 1)
4428 EXPORT_SYMBOL(ieee80211_csa_is_complete);
4430 static struct sk_buff *
4431 __ieee80211_beacon_get(struct ieee80211_hw *hw,
4432 struct ieee80211_vif *vif,
4433 struct ieee80211_mutable_offsets *offs,
4436 struct ieee80211_local *local = hw_to_local(hw);
4437 struct beacon_data *beacon = NULL;
4438 struct sk_buff *skb = NULL;
4439 struct ieee80211_tx_info *info;
4440 struct ieee80211_sub_if_data *sdata = NULL;
4441 enum nl80211_band band;
4442 struct ieee80211_tx_rate_control txrc;
4443 struct ieee80211_chanctx_conf *chanctx_conf;
4444 int csa_off_base = 0;
4448 sdata = vif_to_sdata(vif);
4449 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
4451 if (!ieee80211_sdata_running(sdata) || !chanctx_conf)
4455 memset(offs, 0, sizeof(*offs));
4457 if (sdata->vif.type == NL80211_IFTYPE_AP) {
4458 struct ieee80211_if_ap *ap = &sdata->u.ap;
4460 beacon = rcu_dereference(ap->beacon);
4462 if (beacon->csa_counter_offsets[0]) {
4464 __ieee80211_csa_update_counter(beacon);
4466 ieee80211_set_csa(sdata, beacon);
4470 * headroom, head length,
4471 * tail length and maximum TIM length
4473 skb = dev_alloc_skb(local->tx_headroom +
4475 beacon->tail_len + 256 +
4476 local->hw.extra_beacon_tailroom);
4480 skb_reserve(skb, local->tx_headroom);
4481 skb_put_data(skb, beacon->head, beacon->head_len);
4483 ieee80211_beacon_add_tim(sdata, &ap->ps, skb,
4487 offs->tim_offset = beacon->head_len;
4488 offs->tim_length = skb->len - beacon->head_len;
4490 /* for AP the csa offsets are from tail */
4491 csa_off_base = skb->len;
4495 skb_put_data(skb, beacon->tail,
4499 } else if (sdata->vif.type == NL80211_IFTYPE_ADHOC) {
4500 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
4501 struct ieee80211_hdr *hdr;
4503 beacon = rcu_dereference(ifibss->presp);
4507 if (beacon->csa_counter_offsets[0]) {
4509 __ieee80211_csa_update_counter(beacon);
4511 ieee80211_set_csa(sdata, beacon);
4514 skb = dev_alloc_skb(local->tx_headroom + beacon->head_len +
4515 local->hw.extra_beacon_tailroom);
4518 skb_reserve(skb, local->tx_headroom);
4519 skb_put_data(skb, beacon->head, beacon->head_len);
4521 hdr = (struct ieee80211_hdr *) skb->data;
4522 hdr->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
4523 IEEE80211_STYPE_BEACON);
4524 } else if (ieee80211_vif_is_mesh(&sdata->vif)) {
4525 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
4527 beacon = rcu_dereference(ifmsh->beacon);
4531 if (beacon->csa_counter_offsets[0]) {
4533 /* TODO: For mesh csa_counter is in TU, so
4534 * decrementing it by one isn't correct, but
4535 * for now we leave it consistent with overall
4536 * mac80211's behavior.
4538 __ieee80211_csa_update_counter(beacon);
4540 ieee80211_set_csa(sdata, beacon);
4543 if (ifmsh->sync_ops)
4544 ifmsh->sync_ops->adjust_tsf(sdata, beacon);
4546 skb = dev_alloc_skb(local->tx_headroom +
4550 local->hw.extra_beacon_tailroom);
4553 skb_reserve(skb, local->tx_headroom);
4554 skb_put_data(skb, beacon->head, beacon->head_len);
4555 ieee80211_beacon_add_tim(sdata, &ifmsh->ps, skb, is_template);
4558 offs->tim_offset = beacon->head_len;
4559 offs->tim_length = skb->len - beacon->head_len;
4562 skb_put_data(skb, beacon->tail, beacon->tail_len);
4569 if (offs && beacon) {
4572 for (i = 0; i < IEEE80211_MAX_CSA_COUNTERS_NUM; i++) {
4573 u16 csa_off = beacon->csa_counter_offsets[i];
4578 offs->csa_counter_offs[i] = csa_off_base + csa_off;
4582 band = chanctx_conf->def.chan->band;
4584 info = IEEE80211_SKB_CB(skb);
4586 info->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
4587 info->flags |= IEEE80211_TX_CTL_NO_ACK;
4590 memset(&txrc, 0, sizeof(txrc));
4592 txrc.sband = local->hw.wiphy->bands[band];
4593 txrc.bss_conf = &sdata->vif.bss_conf;
4595 txrc.reported_rate.idx = -1;
4596 txrc.rate_idx_mask = sdata->rc_rateidx_mask[band];
4598 rate_control_get_rate(sdata, NULL, &txrc);
4600 info->control.vif = vif;
4602 info->flags |= IEEE80211_TX_CTL_CLEAR_PS_FILT |
4603 IEEE80211_TX_CTL_ASSIGN_SEQ |
4604 IEEE80211_TX_CTL_FIRST_FRAGMENT;
4612 ieee80211_beacon_get_template(struct ieee80211_hw *hw,
4613 struct ieee80211_vif *vif,
4614 struct ieee80211_mutable_offsets *offs)
4616 return __ieee80211_beacon_get(hw, vif, offs, true);
4618 EXPORT_SYMBOL(ieee80211_beacon_get_template);
4620 struct sk_buff *ieee80211_beacon_get_tim(struct ieee80211_hw *hw,
4621 struct ieee80211_vif *vif,
4622 u16 *tim_offset, u16 *tim_length)
4624 struct ieee80211_mutable_offsets offs = {};
4625 struct sk_buff *bcn = __ieee80211_beacon_get(hw, vif, &offs, false);
4626 struct sk_buff *copy;
4627 struct ieee80211_supported_band *sband;
4634 *tim_offset = offs.tim_offset;
4637 *tim_length = offs.tim_length;
4639 if (ieee80211_hw_check(hw, BEACON_TX_STATUS) ||
4640 !hw_to_local(hw)->monitors)
4643 /* send a copy to monitor interfaces */
4644 copy = skb_copy(bcn, GFP_ATOMIC);
4648 shift = ieee80211_vif_get_shift(vif);
4649 sband = ieee80211_get_sband(vif_to_sdata(vif));
4653 ieee80211_tx_monitor(hw_to_local(hw), copy, sband, 1, shift, false,
4658 EXPORT_SYMBOL(ieee80211_beacon_get_tim);
4660 struct sk_buff *ieee80211_proberesp_get(struct ieee80211_hw *hw,
4661 struct ieee80211_vif *vif)
4663 struct ieee80211_if_ap *ap = NULL;
4664 struct sk_buff *skb = NULL;
4665 struct probe_resp *presp = NULL;
4666 struct ieee80211_hdr *hdr;
4667 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
4669 if (sdata->vif.type != NL80211_IFTYPE_AP)
4675 presp = rcu_dereference(ap->probe_resp);
4679 skb = dev_alloc_skb(presp->len);
4683 skb_put_data(skb, presp->data, presp->len);
4685 hdr = (struct ieee80211_hdr *) skb->data;
4686 memset(hdr->addr1, 0, sizeof(hdr->addr1));
4692 EXPORT_SYMBOL(ieee80211_proberesp_get);
4694 struct sk_buff *ieee80211_pspoll_get(struct ieee80211_hw *hw,
4695 struct ieee80211_vif *vif)
4697 struct ieee80211_sub_if_data *sdata;
4698 struct ieee80211_if_managed *ifmgd;
4699 struct ieee80211_pspoll *pspoll;
4700 struct ieee80211_local *local;
4701 struct sk_buff *skb;
4703 if (WARN_ON(vif->type != NL80211_IFTYPE_STATION))
4706 sdata = vif_to_sdata(vif);
4707 ifmgd = &sdata->u.mgd;
4708 local = sdata->local;
4710 skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*pspoll));
4714 skb_reserve(skb, local->hw.extra_tx_headroom);
4716 pspoll = skb_put_zero(skb, sizeof(*pspoll));
4717 pspoll->frame_control = cpu_to_le16(IEEE80211_FTYPE_CTL |
4718 IEEE80211_STYPE_PSPOLL);
4719 pspoll->aid = cpu_to_le16(ifmgd->aid);
4721 /* aid in PS-Poll has its two MSBs each set to 1 */
4722 pspoll->aid |= cpu_to_le16(1 << 15 | 1 << 14);
4724 memcpy(pspoll->bssid, ifmgd->bssid, ETH_ALEN);
4725 memcpy(pspoll->ta, vif->addr, ETH_ALEN);
4729 EXPORT_SYMBOL(ieee80211_pspoll_get);
4731 struct sk_buff *ieee80211_nullfunc_get(struct ieee80211_hw *hw,
4732 struct ieee80211_vif *vif,
4735 struct ieee80211_hdr_3addr *nullfunc;
4736 struct ieee80211_sub_if_data *sdata;
4737 struct ieee80211_if_managed *ifmgd;
4738 struct ieee80211_local *local;
4739 struct sk_buff *skb;
4742 if (WARN_ON(vif->type != NL80211_IFTYPE_STATION))
4745 sdata = vif_to_sdata(vif);
4746 ifmgd = &sdata->u.mgd;
4747 local = sdata->local;
4750 struct sta_info *sta;
4753 sta = sta_info_get(sdata, ifmgd->bssid);
4754 qos = sta && sta->sta.wme;
4758 skb = dev_alloc_skb(local->hw.extra_tx_headroom +
4759 sizeof(*nullfunc) + 2);
4763 skb_reserve(skb, local->hw.extra_tx_headroom);
4765 nullfunc = skb_put_zero(skb, sizeof(*nullfunc));
4766 nullfunc->frame_control = cpu_to_le16(IEEE80211_FTYPE_DATA |
4767 IEEE80211_STYPE_NULLFUNC |
4768 IEEE80211_FCTL_TODS);
4770 __le16 qoshdr = cpu_to_le16(7);
4772 BUILD_BUG_ON((IEEE80211_STYPE_QOS_NULLFUNC |
4773 IEEE80211_STYPE_NULLFUNC) !=
4774 IEEE80211_STYPE_QOS_NULLFUNC);
4775 nullfunc->frame_control |=
4776 cpu_to_le16(IEEE80211_STYPE_QOS_NULLFUNC);
4778 skb_set_queue_mapping(skb, IEEE80211_AC_VO);
4779 skb_put_data(skb, &qoshdr, sizeof(qoshdr));
4782 memcpy(nullfunc->addr1, ifmgd->bssid, ETH_ALEN);
4783 memcpy(nullfunc->addr2, vif->addr, ETH_ALEN);
4784 memcpy(nullfunc->addr3, ifmgd->bssid, ETH_ALEN);
4788 EXPORT_SYMBOL(ieee80211_nullfunc_get);
4790 struct sk_buff *ieee80211_probereq_get(struct ieee80211_hw *hw,
4792 const u8 *ssid, size_t ssid_len,
4795 struct ieee80211_local *local = hw_to_local(hw);
4796 struct ieee80211_hdr_3addr *hdr;
4797 struct sk_buff *skb;
4801 ie_ssid_len = 2 + ssid_len;
4803 skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*hdr) +
4804 ie_ssid_len + tailroom);
4808 skb_reserve(skb, local->hw.extra_tx_headroom);
4810 hdr = skb_put_zero(skb, sizeof(*hdr));
4811 hdr->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
4812 IEEE80211_STYPE_PROBE_REQ);
4813 eth_broadcast_addr(hdr->addr1);
4814 memcpy(hdr->addr2, src_addr, ETH_ALEN);
4815 eth_broadcast_addr(hdr->addr3);
4817 pos = skb_put(skb, ie_ssid_len);
4818 *pos++ = WLAN_EID_SSID;
4821 memcpy(pos, ssid, ssid_len);
4826 EXPORT_SYMBOL(ieee80211_probereq_get);
4828 void ieee80211_rts_get(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
4829 const void *frame, size_t frame_len,
4830 const struct ieee80211_tx_info *frame_txctl,
4831 struct ieee80211_rts *rts)
4833 const struct ieee80211_hdr *hdr = frame;
4835 rts->frame_control =
4836 cpu_to_le16(IEEE80211_FTYPE_CTL | IEEE80211_STYPE_RTS);
4837 rts->duration = ieee80211_rts_duration(hw, vif, frame_len,
4839 memcpy(rts->ra, hdr->addr1, sizeof(rts->ra));
4840 memcpy(rts->ta, hdr->addr2, sizeof(rts->ta));
4842 EXPORT_SYMBOL(ieee80211_rts_get);
4844 void ieee80211_ctstoself_get(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
4845 const void *frame, size_t frame_len,
4846 const struct ieee80211_tx_info *frame_txctl,
4847 struct ieee80211_cts *cts)
4849 const struct ieee80211_hdr *hdr = frame;
4851 cts->frame_control =
4852 cpu_to_le16(IEEE80211_FTYPE_CTL | IEEE80211_STYPE_CTS);
4853 cts->duration = ieee80211_ctstoself_duration(hw, vif,
4854 frame_len, frame_txctl);
4855 memcpy(cts->ra, hdr->addr1, sizeof(cts->ra));
4857 EXPORT_SYMBOL(ieee80211_ctstoself_get);
4860 ieee80211_get_buffered_bc(struct ieee80211_hw *hw,
4861 struct ieee80211_vif *vif)
4863 struct ieee80211_local *local = hw_to_local(hw);
4864 struct sk_buff *skb = NULL;
4865 struct ieee80211_tx_data tx;
4866 struct ieee80211_sub_if_data *sdata;
4868 struct ieee80211_tx_info *info;
4869 struct ieee80211_chanctx_conf *chanctx_conf;
4871 sdata = vif_to_sdata(vif);
4874 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
4879 if (sdata->vif.type == NL80211_IFTYPE_AP) {
4880 struct beacon_data *beacon =
4881 rcu_dereference(sdata->u.ap.beacon);
4883 if (!beacon || !beacon->head)
4886 ps = &sdata->u.ap.ps;
4887 } else if (ieee80211_vif_is_mesh(&sdata->vif)) {
4888 ps = &sdata->u.mesh.ps;
4893 if (ps->dtim_count != 0 || !ps->dtim_bc_mc)
4894 goto out; /* send buffered bc/mc only after DTIM beacon */
4897 skb = skb_dequeue(&ps->bc_buf);
4900 local->total_ps_buffered--;
4902 if (!skb_queue_empty(&ps->bc_buf) && skb->len >= 2) {
4903 struct ieee80211_hdr *hdr =
4904 (struct ieee80211_hdr *) skb->data;
4905 /* more buffered multicast/broadcast frames ==> set
4906 * MoreData flag in IEEE 802.11 header to inform PS
4908 hdr->frame_control |=
4909 cpu_to_le16(IEEE80211_FCTL_MOREDATA);
4912 if (sdata->vif.type == NL80211_IFTYPE_AP)
4913 sdata = IEEE80211_DEV_TO_SUB_IF(skb->dev);
4914 if (!ieee80211_tx_prepare(sdata, &tx, NULL, skb))
4916 ieee80211_free_txskb(hw, skb);
4919 info = IEEE80211_SKB_CB(skb);
4921 tx.flags |= IEEE80211_TX_PS_BUFFERED;
4922 info->band = chanctx_conf->def.chan->band;
4924 if (invoke_tx_handlers(&tx))
4931 EXPORT_SYMBOL(ieee80211_get_buffered_bc);
4933 int ieee80211_reserve_tid(struct ieee80211_sta *pubsta, u8 tid)
4935 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
4936 struct ieee80211_sub_if_data *sdata = sta->sdata;
4937 struct ieee80211_local *local = sdata->local;
4941 lockdep_assert_held(&local->sta_mtx);
4943 /* only some cases are supported right now */
4944 switch (sdata->vif.type) {
4945 case NL80211_IFTYPE_STATION:
4946 case NL80211_IFTYPE_AP:
4947 case NL80211_IFTYPE_AP_VLAN:
4954 if (WARN_ON(tid >= IEEE80211_NUM_UPS))
4957 if (sta->reserved_tid == tid) {
4962 if (sta->reserved_tid != IEEE80211_TID_UNRESERVED) {
4963 sdata_err(sdata, "TID reservation already active\n");
4968 ieee80211_stop_vif_queues(sdata->local, sdata,
4969 IEEE80211_QUEUE_STOP_REASON_RESERVE_TID);
4973 /* Tear down BA sessions so we stop aggregating on this TID */
4974 if (ieee80211_hw_check(&local->hw, AMPDU_AGGREGATION)) {
4975 set_sta_flag(sta, WLAN_STA_BLOCK_BA);
4976 __ieee80211_stop_tx_ba_session(sta, tid,
4977 AGG_STOP_LOCAL_REQUEST);
4980 queues = BIT(sdata->vif.hw_queue[ieee802_1d_to_ac[tid]]);
4981 __ieee80211_flush_queues(local, sdata, queues, false);
4983 sta->reserved_tid = tid;
4985 ieee80211_wake_vif_queues(local, sdata,
4986 IEEE80211_QUEUE_STOP_REASON_RESERVE_TID);
4988 if (ieee80211_hw_check(&local->hw, AMPDU_AGGREGATION))
4989 clear_sta_flag(sta, WLAN_STA_BLOCK_BA);
4995 EXPORT_SYMBOL(ieee80211_reserve_tid);
4997 void ieee80211_unreserve_tid(struct ieee80211_sta *pubsta, u8 tid)
4999 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
5000 struct ieee80211_sub_if_data *sdata = sta->sdata;
5002 lockdep_assert_held(&sdata->local->sta_mtx);
5004 /* only some cases are supported right now */
5005 switch (sdata->vif.type) {
5006 case NL80211_IFTYPE_STATION:
5007 case NL80211_IFTYPE_AP:
5008 case NL80211_IFTYPE_AP_VLAN:
5015 if (tid != sta->reserved_tid) {
5016 sdata_err(sdata, "TID to unreserve (%d) isn't reserved\n", tid);
5020 sta->reserved_tid = IEEE80211_TID_UNRESERVED;
5022 EXPORT_SYMBOL(ieee80211_unreserve_tid);
5024 void __ieee80211_tx_skb_tid_band(struct ieee80211_sub_if_data *sdata,
5025 struct sk_buff *skb, int tid,
5026 enum nl80211_band band, u32 txdata_flags)
5028 int ac = ieee80211_ac_from_tid(tid);
5030 skb_reset_mac_header(skb);
5031 skb_set_queue_mapping(skb, ac);
5032 skb->priority = tid;
5034 skb->dev = sdata->dev;
5037 * The other path calling ieee80211_xmit is from the tasklet,
5038 * and while we can handle concurrent transmissions locking
5039 * requirements are that we do not come into tx with bhs on.
5042 IEEE80211_SKB_CB(skb)->band = band;
5043 ieee80211_xmit(sdata, NULL, skb, txdata_flags);
5047 int ieee80211_tx_control_port(struct wiphy *wiphy, struct net_device *dev,
5048 const u8 *buf, size_t len,
5049 const u8 *dest, __be16 proto, bool unencrypted)
5051 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
5052 struct ieee80211_local *local = sdata->local;
5053 struct sk_buff *skb;
5054 struct ethhdr *ehdr;
5057 /* Only accept CONTROL_PORT_PROTOCOL configured in CONNECT/ASSOCIATE
5058 * or Pre-Authentication
5060 if (proto != sdata->control_port_protocol &&
5061 proto != cpu_to_be16(ETH_P_PREAUTH))
5065 flags = IEEE80211_TX_INTFL_DONT_ENCRYPT;
5069 skb = dev_alloc_skb(local->hw.extra_tx_headroom +
5070 sizeof(struct ethhdr) + len);
5074 skb_reserve(skb, local->hw.extra_tx_headroom + sizeof(struct ethhdr));
5076 skb_put_data(skb, buf, len);
5078 ehdr = skb_push(skb, sizeof(struct ethhdr));
5079 memcpy(ehdr->h_dest, dest, ETH_ALEN);
5080 memcpy(ehdr->h_source, sdata->vif.addr, ETH_ALEN);
5081 ehdr->h_proto = proto;
5084 skb->protocol = htons(ETH_P_802_3);
5085 skb_reset_network_header(skb);
5086 skb_reset_mac_header(skb);
5089 __ieee80211_subif_start_xmit(skb, skb->dev, flags, 0);
5095 int ieee80211_probe_mesh_link(struct wiphy *wiphy, struct net_device *dev,
5096 const u8 *buf, size_t len)
5098 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
5099 struct ieee80211_local *local = sdata->local;
5100 struct sk_buff *skb;
5102 skb = dev_alloc_skb(local->hw.extra_tx_headroom + len +
5103 30 + /* header size */
5104 18); /* 11s header size */
5108 skb_reserve(skb, local->hw.extra_tx_headroom);
5109 skb_put_data(skb, buf, len);
5112 skb->protocol = htons(ETH_P_802_3);
5113 skb_reset_network_header(skb);
5114 skb_reset_mac_header(skb);
5117 __ieee80211_subif_start_xmit(skb, skb->dev, 0,
5118 IEEE80211_TX_CTRL_SKIP_MPATH_LOOKUP);