blob: e96981144358b921b8d6bc5088414f122d58cd34 [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001// SPDX-License-Identifier: GPL-2.0-only
Johannes Berge2ebc742007-07-27 15:43:22 +02002/*
3 * Copyright 2002-2005, Instant802 Networks, Inc.
4 * Copyright 2005-2006, Devicescape Software, Inc.
5 * Copyright 2006-2007 Jiri Benc <jbenc@suse.cz>
6 * Copyright 2007 Johannes Berg <johannes@sipsolutions.net>
Johannes Bergd98ad832014-09-03 15:24:57 +03007 * Copyright 2013-2014 Intel Mobile Communications GmbH
Johannes Berg73bc9e02021-03-19 23:28:01 +01008 * Copyright (C) 2018-2021 Intel Corporation
Johannes Berge2ebc742007-07-27 15:43:22 +02009 *
Johannes Berge2ebc742007-07-27 15:43:22 +020010 * Transmit and frame generation functions.
11 */
12
13#include <linux/kernel.h>
14#include <linux/slab.h>
15#include <linux/skbuff.h>
Michael Braunebceec82016-11-22 11:52:18 +010016#include <linux/if_vlan.h>
Johannes Berge2ebc742007-07-27 15:43:22 +020017#include <linux/etherdevice.h>
18#include <linux/bitmap.h>
Johannes Bergd4e46a32007-09-14 11:10:24 -040019#include <linux/rcupdate.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040020#include <linux/export.h>
Toke Høiland-Jørgensen24336472021-06-23 15:47:55 +020021#include <linux/timekeeping.h>
Eric W. Biederman881d9662007-09-17 11:56:21 -070022#include <net/net_namespace.h>
Johannes Berge2ebc742007-07-27 15:43:22 +020023#include <net/ieee80211_radiotap.h>
24#include <net/cfg80211.h>
25#include <net/mac80211.h>
Michal Kazior5caa3282016-05-19 10:37:51 +020026#include <net/codel.h>
27#include <net/codel_impl.h>
Johannes Berge2ebc742007-07-27 15:43:22 +020028#include <asm/unaligned.h>
Michal Kaziorfa962b92016-05-19 10:37:49 +020029#include <net/fq_impl.h>
Johannes Berge2ebc742007-07-27 15:43:22 +020030
31#include "ieee80211_i.h"
Johannes Berg24487982009-04-23 18:52:52 +020032#include "driver-ops.h"
Johannes Berg2c8dccc2008-04-08 15:14:40 -040033#include "led.h"
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +010034#include "mesh.h"
Johannes Berge2ebc742007-07-27 15:43:22 +020035#include "wep.h"
36#include "wpa.h"
37#include "wme.h"
Johannes Berg2c8dccc2008-04-08 15:14:40 -040038#include "rate.h"
Johannes Berge2ebc742007-07-27 15:43:22 +020039
Johannes Berge2ebc742007-07-27 15:43:22 +020040/* misc utils */
41
Johannes Berg252b86c2011-11-16 15:28:55 +010042static __le16 ieee80211_duration(struct ieee80211_tx_data *tx,
43 struct sk_buff *skb, int group_addr,
Johannes Berg03f93c32008-06-25 14:36:27 +030044 int next_frag_len)
Johannes Berge2ebc742007-07-27 15:43:22 +020045{
Simon Wunderlich2103dec2013-07-08 16:55:53 +020046 int rate, mrate, erp, dur, i, shift = 0;
Johannes Berg2e92e6f2008-05-15 12:55:27 +020047 struct ieee80211_rate *txrate;
Johannes Berge2ebc742007-07-27 15:43:22 +020048 struct ieee80211_local *local = tx->local;
Johannes Berg8318d782008-01-24 19:38:38 +010049 struct ieee80211_supported_band *sband;
Harvey Harrison358c8d92008-07-15 18:44:13 -070050 struct ieee80211_hdr *hdr;
Johannes Berg252b86c2011-11-16 15:28:55 +010051 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Simon Wunderlich2103dec2013-07-08 16:55:53 +020052 struct ieee80211_chanctx_conf *chanctx_conf;
53 u32 rate_flags = 0;
54
Felix Fietkau95cd4702016-12-14 20:46:57 +010055 /* assume HW handles this */
56 if (tx->rate.flags & (IEEE80211_TX_RC_MCS | IEEE80211_TX_RC_VHT_MCS))
57 return 0;
58
Simon Wunderlich2103dec2013-07-08 16:55:53 +020059 rcu_read_lock();
60 chanctx_conf = rcu_dereference(tx->sdata->vif.chanctx_conf);
61 if (chanctx_conf) {
62 shift = ieee80211_chandef_get_shift(&chanctx_conf->def);
63 rate_flags = ieee80211_chandef_rate_flags(&chanctx_conf->def);
64 }
65 rcu_read_unlock();
Johannes Berge6a98542008-10-21 12:40:02 +020066
Johannes Berge6a98542008-10-21 12:40:02 +020067 /* uh huh? */
Felix Fietkau0d528d82013-04-22 16:14:41 +020068 if (WARN_ON_ONCE(tx->rate.idx < 0))
Johannes Berge6a98542008-10-21 12:40:02 +020069 return 0;
Johannes Berge2ebc742007-07-27 15:43:22 +020070
Johannes Berg2d565772012-07-23 15:12:51 +020071 sband = local->hw.wiphy->bands[info->band];
Felix Fietkau0d528d82013-04-22 16:14:41 +020072 txrate = &sband->bitrates[tx->rate.idx];
Johannes Berg8318d782008-01-24 19:38:38 +010073
Johannes Berge6a98542008-10-21 12:40:02 +020074 erp = txrate->flags & IEEE80211_RATE_ERP_G;
Johannes Berge2ebc742007-07-27 15:43:22 +020075
Thomas Pedersen89b8c022020-09-21 19:28:11 -070076 /* device is expected to do this */
77 if (sband->band == NL80211_BAND_S1GHZ)
78 return 0;
79
Johannes Berge2ebc742007-07-27 15:43:22 +020080 /*
81 * data and mgmt (except PS Poll):
82 * - during CFP: 32768
83 * - during contention period:
84 * if addr1 is group address: 0
85 * if more fragments = 0 and addr1 is individual address: time to
86 * transmit one ACK plus SIFS
87 * if more fragments = 1 and addr1 is individual address: time to
88 * transmit next fragment plus 2 x ACK plus 3 x SIFS
89 *
90 * IEEE 802.11, 9.6:
91 * - control response frame (CTS or ACK) shall be transmitted using the
92 * same rate as the immediately previous frame in the frame exchange
93 * sequence, if this rate belongs to the PHY mandatory rates, or else
94 * at the highest possible rate belonging to the PHY rates in the
95 * BSSBasicRateSet
96 */
Johannes Berg252b86c2011-11-16 15:28:55 +010097 hdr = (struct ieee80211_hdr *)skb->data;
Harvey Harrison358c8d92008-07-15 18:44:13 -070098 if (ieee80211_is_ctl(hdr->frame_control)) {
Johannes Berge2ebc742007-07-27 15:43:22 +020099 /* TODO: These control frames are not currently sent by
Johannes Bergccd7b362008-09-11 00:01:56 +0200100 * mac80211, but should they be implemented, this function
Johannes Berge2ebc742007-07-27 15:43:22 +0200101 * needs to be updated to support duration field calculation.
102 *
103 * RTS: time needed to transmit pending data/mgmt frame plus
104 * one CTS frame plus one ACK frame plus 3 x SIFS
105 * CTS: duration of immediately previous RTS minus time
106 * required to transmit CTS and its SIFS
107 * ACK: 0 if immediately previous directed data/mgmt had
108 * more=0, with more=1 duration in ACK frame is duration
109 * from previous frame minus time needed to transmit ACK
110 * and its SIFS
111 * PS Poll: BIT(15) | BIT(14) | aid
112 */
113 return 0;
114 }
115
116 /* data/mgmt */
117 if (0 /* FIX: data/mgmt during CFP */)
Johannes Berg03f93c32008-06-25 14:36:27 +0300118 return cpu_to_le16(32768);
Johannes Berge2ebc742007-07-27 15:43:22 +0200119
120 if (group_addr) /* Group address as the destination - no ACK */
121 return 0;
122
123 /* Individual destination address:
124 * IEEE 802.11, Ch. 9.6 (after IEEE 802.11g changes)
125 * CTS and ACK frames shall be transmitted using the highest rate in
126 * basic rate set that is less than or equal to the rate of the
127 * immediately previous frame and that is using the same modulation
128 * (CCK or OFDM). If no basic rate set matches with these requirements,
129 * the highest mandatory rate of the PHY that is less than or equal to
130 * the rate of the previous frame is used.
131 * Mandatory rates for IEEE 802.11g PHY: 1, 2, 5.5, 11, 6, 12, 24 Mbps
132 */
133 rate = -1;
Johannes Berg8318d782008-01-24 19:38:38 +0100134 /* use lowest available if everything fails */
135 mrate = sband->bitrates[0].bitrate;
136 for (i = 0; i < sband->n_bitrates; i++) {
137 struct ieee80211_rate *r = &sband->bitrates[i];
138
139 if (r->bitrate > txrate->bitrate)
Johannes Berge2ebc742007-07-27 15:43:22 +0200140 break;
141
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200142 if ((rate_flags & r->flags) != rate_flags)
143 continue;
144
Johannes Bergbda39332008-10-11 01:51:51 +0200145 if (tx->sdata->vif.bss_conf.basic_rates & BIT(i))
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200146 rate = DIV_ROUND_UP(r->bitrate, 1 << shift);
Johannes Berge2ebc742007-07-27 15:43:22 +0200147
Johannes Berg8318d782008-01-24 19:38:38 +0100148 switch (sband->band) {
Johannes Berg57fbcce2016-04-12 15:56:15 +0200149 case NL80211_BAND_2GHZ: {
Johannes Berg8318d782008-01-24 19:38:38 +0100150 u32 flag;
151 if (tx->sdata->flags & IEEE80211_SDATA_OPERATING_GMODE)
152 flag = IEEE80211_RATE_MANDATORY_G;
153 else
154 flag = IEEE80211_RATE_MANDATORY_B;
155 if (r->flags & flag)
156 mrate = r->bitrate;
157 break;
158 }
Johannes Berg57fbcce2016-04-12 15:56:15 +0200159 case NL80211_BAND_5GHZ:
Arend van Sprielc5b9a7f2019-08-02 13:30:58 +0200160 case NL80211_BAND_6GHZ:
Johannes Berg8318d782008-01-24 19:38:38 +0100161 if (r->flags & IEEE80211_RATE_MANDATORY_A)
162 mrate = r->bitrate;
163 break;
Thomas Pedersendf78a0c2020-06-01 23:22:47 -0700164 case NL80211_BAND_S1GHZ:
Johannes Berg57fbcce2016-04-12 15:56:15 +0200165 case NL80211_BAND_60GHZ:
Vladimir Kondratiev3a0c52a2012-07-02 09:32:32 +0300166 /* TODO, for now fall through */
Johannes Berg57fbcce2016-04-12 15:56:15 +0200167 case NUM_NL80211_BANDS:
Johannes Berg8318d782008-01-24 19:38:38 +0100168 WARN_ON(1);
169 break;
170 }
Johannes Berge2ebc742007-07-27 15:43:22 +0200171 }
172 if (rate == -1) {
173 /* No matching basic rate found; use highest suitable mandatory
174 * PHY rate */
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200175 rate = DIV_ROUND_UP(mrate, 1 << shift);
Johannes Berge2ebc742007-07-27 15:43:22 +0200176 }
177
Simon Wunderlich6674f212011-11-21 21:34:30 +0100178 /* Don't calculate ACKs for QoS Frames with NoAck Policy set */
179 if (ieee80211_is_data_qos(hdr->frame_control) &&
Claudio Pisac26a0e12012-05-28 13:06:25 +0100180 *(ieee80211_get_qos_ctl(hdr)) & IEEE80211_QOS_CTL_ACK_POLICY_NOACK)
Simon Wunderlich6674f212011-11-21 21:34:30 +0100181 dur = 0;
182 else
183 /* Time needed to transmit ACK
184 * (10 bytes + 4-byte FCS = 112 bits) plus SIFS; rounded up
185 * to closest integer */
Michal Kazior4ee73f32012-04-11 08:47:56 +0200186 dur = ieee80211_frame_duration(sband->band, 10, rate, erp,
Simon Wunderlich438b61b2013-07-08 16:55:51 +0200187 tx->sdata->vif.bss_conf.use_short_preamble,
188 shift);
Johannes Berge2ebc742007-07-27 15:43:22 +0200189
190 if (next_frag_len) {
191 /* Frame is fragmented: duration increases with time needed to
192 * transmit next fragment plus ACK and 2 x SIFS. */
193 dur *= 2; /* ACK + SIFS */
194 /* next fragment */
Michal Kazior4ee73f32012-04-11 08:47:56 +0200195 dur += ieee80211_frame_duration(sband->band, next_frag_len,
Johannes Berg8318d782008-01-24 19:38:38 +0100196 txrate->bitrate, erp,
Simon Wunderlich438b61b2013-07-08 16:55:51 +0200197 tx->sdata->vif.bss_conf.use_short_preamble,
198 shift);
Johannes Berge2ebc742007-07-27 15:43:22 +0200199 }
200
Johannes Berg03f93c32008-06-25 14:36:27 +0300201 return cpu_to_le16(dur);
Johannes Berge2ebc742007-07-27 15:43:22 +0200202}
203
Johannes Berge2ebc742007-07-27 15:43:22 +0200204/* tx handlers */
Kalle Valo5c1b98a2010-01-12 10:42:46 +0200205static ieee80211_tx_result debug_noinline
206ieee80211_tx_h_dynamic_ps(struct ieee80211_tx_data *tx)
207{
208 struct ieee80211_local *local = tx->local;
Kalle Valo0c742112010-01-12 10:42:53 +0200209 struct ieee80211_if_managed *ifmgd;
Andrei Otcheretianski94a5b3a2018-09-05 08:06:14 +0300210 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
Kalle Valo5c1b98a2010-01-12 10:42:46 +0200211
212 /* driver doesn't support power save */
Johannes Berg30686bf2015-06-02 21:39:54 +0200213 if (!ieee80211_hw_check(&local->hw, SUPPORTS_PS))
Kalle Valo5c1b98a2010-01-12 10:42:46 +0200214 return TX_CONTINUE;
215
216 /* hardware does dynamic power save */
Johannes Berg30686bf2015-06-02 21:39:54 +0200217 if (ieee80211_hw_check(&local->hw, SUPPORTS_DYNAMIC_PS))
Kalle Valo5c1b98a2010-01-12 10:42:46 +0200218 return TX_CONTINUE;
219
220 /* dynamic power save disabled */
221 if (local->hw.conf.dynamic_ps_timeout <= 0)
222 return TX_CONTINUE;
223
224 /* we are scanning, don't enable power save */
225 if (local->scanning)
226 return TX_CONTINUE;
227
228 if (!local->ps_sdata)
229 return TX_CONTINUE;
230
231 /* No point if we're going to suspend */
232 if (local->quiescing)
233 return TX_CONTINUE;
234
Kalle Valo0c742112010-01-12 10:42:53 +0200235 /* dynamic ps is supported only in managed mode */
236 if (tx->sdata->vif.type != NL80211_IFTYPE_STATION)
237 return TX_CONTINUE;
238
Andrei Otcheretianski94a5b3a2018-09-05 08:06:14 +0300239 if (unlikely(info->flags & IEEE80211_TX_INTFL_OFFCHAN_TX_OK))
240 return TX_CONTINUE;
241
Kalle Valo0c742112010-01-12 10:42:53 +0200242 ifmgd = &tx->sdata->u.mgd;
243
244 /*
245 * Don't wakeup from power save if u-apsd is enabled, voip ac has
246 * u-apsd enabled and the frame is in voip class. This effectively
247 * means that even if all access categories have u-apsd enabled, in
248 * practise u-apsd is only used with the voip ac. This is a
249 * workaround for the case when received voip class packets do not
250 * have correct qos tag for some reason, due the network or the
251 * peer application.
252 *
Eliad Pellerdc41e4d2012-03-14 16:15:03 +0200253 * Note: ifmgd->uapsd_queues access is racy here. If the value is
Kalle Valo0c742112010-01-12 10:42:53 +0200254 * changed via debugfs, user needs to reassociate manually to have
255 * everything in sync.
256 */
Johannes Berg4875d30d2012-03-27 14:18:37 +0200257 if ((ifmgd->flags & IEEE80211_STA_UAPSD_ENABLED) &&
258 (ifmgd->uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_VO) &&
259 skb_get_queue_mapping(tx->skb) == IEEE80211_AC_VO)
Kalle Valo0c742112010-01-12 10:42:53 +0200260 return TX_CONTINUE;
261
Kalle Valo5c1b98a2010-01-12 10:42:46 +0200262 if (local->hw.conf.flags & IEEE80211_CONF_PS) {
263 ieee80211_stop_queues_by_reason(&local->hw,
Johannes Berg445ea4e2013-02-13 12:25:28 +0100264 IEEE80211_MAX_QUEUE_MAP,
Luciano Coelhocca07b02014-06-13 16:30:05 +0300265 IEEE80211_QUEUE_STOP_REASON_PS,
266 false);
Vivek Natarajandb285692011-02-18 17:18:03 +0530267 ifmgd->flags &= ~IEEE80211_STA_NULLFUNC_ACKED;
Kalle Valo5c1b98a2010-01-12 10:42:46 +0200268 ieee80211_queue_work(&local->hw,
269 &local->dynamic_ps_disable_work);
270 }
271
Luciano Coelho5db1c072011-05-03 21:40:08 +0300272 /* Don't restart the timer if we're not disassociated */
273 if (!ifmgd->associated)
274 return TX_CONTINUE;
275
Kalle Valo5c1b98a2010-01-12 10:42:46 +0200276 mod_timer(&local->dynamic_ps_timer, jiffies +
277 msecs_to_jiffies(local->hw.conf.dynamic_ps_timeout));
278
279 return TX_CONTINUE;
280}
Johannes Berge2ebc742007-07-27 15:43:22 +0200281
Johannes Bergd9e8a702008-06-30 15:10:44 +0200282static ieee80211_tx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +0100283ieee80211_tx_h_check_assoc(struct ieee80211_tx_data *tx)
Johannes Berge2ebc742007-07-27 15:43:22 +0200284{
Harvey Harrison358c8d92008-07-15 18:44:13 -0700285
Johannes Berge039fa42008-05-15 12:55:29 +0200286 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data;
Johannes Berge039fa42008-05-15 12:55:29 +0200287 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200288 bool assoc = false;
Johannes Berge2ebc742007-07-27 15:43:22 +0200289
Johannes Berge039fa42008-05-15 12:55:29 +0200290 if (unlikely(info->flags & IEEE80211_TX_CTL_INJECTED))
Johannes Berg9ae54c82008-01-31 19:48:20 +0100291 return TX_CONTINUE;
Johannes Berg58d41852007-09-26 17:53:18 +0200292
Ben Greearb23b0252011-02-04 11:54:17 -0800293 if (unlikely(test_bit(SCAN_SW_SCANNING, &tx->local->scanning)) &&
294 test_bit(SDATA_STATE_OFFCHANNEL, &tx->sdata->state) &&
Kalle Valoa9a6fff2009-03-18 14:06:44 +0200295 !ieee80211_is_probe_req(hdr->frame_control) &&
Thomas Pedersen30b2f0b2020-01-13 21:59:40 -0800296 !ieee80211_is_any_nullfunc(hdr->frame_control))
Kalle Valoa9a6fff2009-03-18 14:06:44 +0200297 /*
298 * When software scanning only nullfunc frames (to notify
299 * the sleep state to the AP) and probe requests (for the
300 * active scan) are allowed, all other frames should not be
301 * sent and we should not get here, but if we do
302 * nonetheless, drop them to avoid sending them
303 * off-channel. See the link below and
304 * ieee80211_start_scan() for more.
305 *
306 * http://article.gmane.org/gmane.linux.kernel.wireless.general/30089
307 */
Johannes Berg9ae54c82008-01-31 19:48:20 +0100308 return TX_DROP;
Johannes Berge2ebc742007-07-27 15:43:22 +0200309
Rostislav Lisovy239281f2014-11-03 10:33:19 +0100310 if (tx->sdata->vif.type == NL80211_IFTYPE_OCB)
311 return TX_CONTINUE;
312
Johannes Berg5cf121c2008-02-25 16:27:43 +0100313 if (tx->flags & IEEE80211_TX_PS_BUFFERED)
Johannes Berg9ae54c82008-01-31 19:48:20 +0100314 return TX_CONTINUE;
Johannes Berge2ebc742007-07-27 15:43:22 +0200315
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200316 if (tx->sta)
317 assoc = test_sta_flag(tx->sta, WLAN_STA_ASSOC);
Johannes Berge2ebc742007-07-27 15:43:22 +0200318
Johannes Berg5cf121c2008-02-25 16:27:43 +0100319 if (likely(tx->flags & IEEE80211_TX_UNICAST)) {
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200320 if (unlikely(!assoc &&
Harvey Harrison358c8d92008-07-15 18:44:13 -0700321 ieee80211_is_data(hdr->frame_control))) {
Johannes Berge2ebc742007-07-27 15:43:22 +0200322#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200323 sdata_info(tx->sdata,
324 "dropped data frame to not associated station %pM\n",
325 hdr->addr1);
326#endif
Johannes Berge2ebc742007-07-27 15:43:22 +0200327 I802_DEBUG_INC(tx->local->tx_handlers_drop_not_assoc);
Johannes Berg9ae54c82008-01-31 19:48:20 +0100328 return TX_DROP;
Johannes Berge2ebc742007-07-27 15:43:22 +0200329 }
Michael Braun72f15d52016-10-10 19:12:21 +0200330 } else if (unlikely(ieee80211_is_data(hdr->frame_control) &&
331 ieee80211_vif_get_num_mcast_if(tx->sdata) == 0)) {
Johannes Berg29623892011-12-14 12:20:31 +0100332 /*
333 * No associated STAs - no need to send multicast
334 * frames.
335 */
336 return TX_DROP;
Johannes Berge2ebc742007-07-27 15:43:22 +0200337 }
338
Johannes Berg9ae54c82008-01-31 19:48:20 +0100339 return TX_CONTINUE;
Johannes Berge2ebc742007-07-27 15:43:22 +0200340}
341
Johannes Berge2ebc742007-07-27 15:43:22 +0200342/* This function is called whenever the AP is about to exceed the maximum limit
343 * of buffered frames for power saving STAs. This situation should not really
344 * happen often during normal operation, so dropping the oldest buffered packet
345 * from each queue should be OK to make some room for new frames. */
346static void purge_old_ps_buffers(struct ieee80211_local *local)
347{
348 int total = 0, purged = 0;
349 struct sk_buff *skb;
350 struct ieee80211_sub_if_data *sdata;
351 struct sta_info *sta;
352
Johannes Berg79010422007-09-18 17:29:21 -0400353 list_for_each_entry_rcu(sdata, &local->interfaces, list) {
Marco Porschd012a602012-10-10 12:39:50 -0700354 struct ps_data *ps;
355
356 if (sdata->vif.type == NL80211_IFTYPE_AP)
357 ps = &sdata->u.ap.ps;
Marco Porsch3f52b7e2013-01-30 18:14:08 +0100358 else if (ieee80211_vif_is_mesh(&sdata->vif))
359 ps = &sdata->u.mesh.ps;
Marco Porschd012a602012-10-10 12:39:50 -0700360 else
Johannes Berge2ebc742007-07-27 15:43:22 +0200361 continue;
Marco Porschd012a602012-10-10 12:39:50 -0700362
363 skb = skb_dequeue(&ps->bc_buf);
Johannes Berge2ebc742007-07-27 15:43:22 +0200364 if (skb) {
365 purged++;
Felix Fietkau6b07d9c2016-08-02 11:13:41 +0200366 ieee80211_free_txskb(&local->hw, skb);
Johannes Berge2ebc742007-07-27 15:43:22 +0200367 }
Marco Porschd012a602012-10-10 12:39:50 -0700368 total += skb_queue_len(&ps->bc_buf);
Johannes Berge2ebc742007-07-27 15:43:22 +0200369 }
Johannes Berge2ebc742007-07-27 15:43:22 +0200370
Johannes Berg948d8872011-09-29 16:04:29 +0200371 /*
372 * Drop one frame from each station from the lowest-priority
373 * AC that has frames at all.
374 */
Johannes Bergd0709a62008-02-25 16:27:46 +0100375 list_for_each_entry_rcu(sta, &local->sta_list, list) {
Johannes Berg948d8872011-09-29 16:04:29 +0200376 int ac;
377
378 for (ac = IEEE80211_AC_BK; ac >= IEEE80211_AC_VO; ac--) {
379 skb = skb_dequeue(&sta->ps_tx_buf[ac]);
380 total += skb_queue_len(&sta->ps_tx_buf[ac]);
381 if (skb) {
382 purged++;
Felix Fietkauc3e77242012-10-08 14:39:33 +0200383 ieee80211_free_txskb(&local->hw, skb);
Johannes Berg948d8872011-09-29 16:04:29 +0200384 break;
385 }
Johannes Berge2ebc742007-07-27 15:43:22 +0200386 }
Johannes Berge2ebc742007-07-27 15:43:22 +0200387 }
Johannes Bergd0709a62008-02-25 16:27:46 +0100388
Johannes Berge2ebc742007-07-27 15:43:22 +0200389 local->total_ps_buffered = total;
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200390 ps_dbg_hw(&local->hw, "PS buffers full - purged %d frames\n", purged);
Johannes Berge2ebc742007-07-27 15:43:22 +0200391}
392
Johannes Berg9ae54c82008-01-31 19:48:20 +0100393static ieee80211_tx_result
Johannes Berg5cf121c2008-02-25 16:27:43 +0100394ieee80211_tx_h_multicast_ps_buf(struct ieee80211_tx_data *tx)
Johannes Berge2ebc742007-07-27 15:43:22 +0200395{
Johannes Berge039fa42008-05-15 12:55:29 +0200396 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
Harvey Harrison358c8d92008-07-15 18:44:13 -0700397 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data;
Marco Porschd012a602012-10-10 12:39:50 -0700398 struct ps_data *ps;
Johannes Berge039fa42008-05-15 12:55:29 +0200399
Johannes Berg7d54d0dd2007-12-19 01:31:25 +0100400 /*
401 * broadcast/multicast frame
402 *
Marco Porsch3f52b7e2013-01-30 18:14:08 +0100403 * If any of the associated/peer stations is in power save mode,
Johannes Berg7d54d0dd2007-12-19 01:31:25 +0100404 * the frame is buffered to be sent after DTIM beacon frame.
405 * This is done either by the hardware or us.
406 */
407
Marco Porsch3f52b7e2013-01-30 18:14:08 +0100408 /* powersaving STAs currently only in AP/VLAN/mesh mode */
Marco Porschd012a602012-10-10 12:39:50 -0700409 if (tx->sdata->vif.type == NL80211_IFTYPE_AP ||
410 tx->sdata->vif.type == NL80211_IFTYPE_AP_VLAN) {
411 if (!tx->sdata->bss)
412 return TX_CONTINUE;
413
414 ps = &tx->sdata->bss->ps;
Marco Porsch3f52b7e2013-01-30 18:14:08 +0100415 } else if (ieee80211_vif_is_mesh(&tx->sdata->vif)) {
416 ps = &tx->sdata->u.mesh.ps;
Marco Porschd012a602012-10-10 12:39:50 -0700417 } else {
Johannes Berg3e122be2008-07-09 14:40:34 +0200418 return TX_CONTINUE;
Marco Porschd012a602012-10-10 12:39:50 -0700419 }
420
Johannes Berg3e122be2008-07-09 14:40:34 +0200421
422 /* no buffering for ordered frames */
Harvey Harrison358c8d92008-07-15 18:44:13 -0700423 if (ieee80211_has_order(hdr->frame_control))
Johannes Berg9ae54c82008-01-31 19:48:20 +0100424 return TX_CONTINUE;
Johannes Berg7d54d0dd2007-12-19 01:31:25 +0100425
Johannes Berg08b99392014-07-07 12:01:11 +0200426 if (ieee80211_is_probe_req(hdr->frame_control))
427 return TX_CONTINUE;
428
Johannes Berg30686bf2015-06-02 21:39:54 +0200429 if (ieee80211_hw_check(&tx->local->hw, QUEUE_CONTROL))
Johannes Bergf4d57942013-05-28 17:24:15 +0200430 info->hw_queue = tx->sdata->vif.cab_queue;
431
Felix Fietkau9ec11902018-11-28 22:39:16 +0100432 /* no stations in PS mode and no buffered packets */
433 if (!atomic_read(&ps->num_sta_ps) && skb_queue_empty(&ps->bc_buf))
Johannes Berg9ae54c82008-01-31 19:48:20 +0100434 return TX_CONTINUE;
Johannes Berg7d54d0dd2007-12-19 01:31:25 +0100435
Johannes Berg62b517c2009-10-29 12:19:21 +0100436 info->flags |= IEEE80211_TX_CTL_SEND_AFTER_DTIM;
Johannes Berg62b12082009-08-10 16:04:15 +0200437
Johannes Berg62b517c2009-10-29 12:19:21 +0100438 /* device releases frame after DTIM beacon */
Johannes Berg30686bf2015-06-02 21:39:54 +0200439 if (!ieee80211_hw_check(&tx->local->hw, HOST_BROADCAST_PS_BUFFERING))
Johannes Berg62b12082009-08-10 16:04:15 +0200440 return TX_CONTINUE;
Johannes Berge2ebc742007-07-27 15:43:22 +0200441
Johannes Berg62b12082009-08-10 16:04:15 +0200442 /* buffered in mac80211 */
443 if (tx->local->total_ps_buffered >= TOTAL_MAX_TX_BUFFER)
444 purge_old_ps_buffers(tx->local);
Johannes Berg7d54d0dd2007-12-19 01:31:25 +0100445
Marco Porschd012a602012-10-10 12:39:50 -0700446 if (skb_queue_len(&ps->bc_buf) >= AP_MAX_BC_BUFFER) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200447 ps_dbg(tx->sdata,
448 "BC TX buffer full - dropping the oldest frame\n");
Felix Fietkau6b07d9c2016-08-02 11:13:41 +0200449 ieee80211_free_txskb(&tx->local->hw, skb_dequeue(&ps->bc_buf));
Johannes Berg62b12082009-08-10 16:04:15 +0200450 } else
451 tx->local->total_ps_buffered++;
452
Marco Porschd012a602012-10-10 12:39:50 -0700453 skb_queue_tail(&ps->bc_buf, tx->skb);
Johannes Berg62b12082009-08-10 16:04:15 +0200454
455 return TX_QUEUED;
Johannes Berge2ebc742007-07-27 15:43:22 +0200456}
457
Jouni Malinenfb733332009-01-08 13:32:00 +0200458static int ieee80211_use_mfp(__le16 fc, struct sta_info *sta,
459 struct sk_buff *skb)
460{
461 if (!ieee80211_is_mgmt(fc))
462 return 0;
463
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200464 if (sta == NULL || !test_sta_flag(sta, WLAN_STA_MFP))
Jouni Malinenfb733332009-01-08 13:32:00 +0200465 return 0;
466
Johannes Bergd8ca16d2014-01-23 16:20:29 +0100467 if (!ieee80211_is_robust_mgmt_frame(skb))
Jouni Malinenfb733332009-01-08 13:32:00 +0200468 return 0;
469
470 return 1;
471}
472
Johannes Berg9ae54c82008-01-31 19:48:20 +0100473static ieee80211_tx_result
Johannes Berg5cf121c2008-02-25 16:27:43 +0100474ieee80211_tx_h_unicast_ps_buf(struct ieee80211_tx_data *tx)
Johannes Berge2ebc742007-07-27 15:43:22 +0200475{
476 struct sta_info *sta = tx->sta;
Johannes Berge039fa42008-05-15 12:55:29 +0200477 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
Johannes Berg08b99392014-07-07 12:01:11 +0200478 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data;
Juuso Oikarinen3393a602010-04-19 10:12:52 +0300479 struct ieee80211_local *local = tx->local;
Johannes Berge2ebc742007-07-27 15:43:22 +0200480
Johannes Berg02f2f1a2012-02-27 12:18:30 +0100481 if (unlikely(!sta))
Johannes Berg9ae54c82008-01-31 19:48:20 +0100482 return TX_CONTINUE;
Johannes Berge2ebc742007-07-27 15:43:22 +0200483
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200484 if (unlikely((test_sta_flag(sta, WLAN_STA_PS_STA) ||
Johannes Berg5ac2e352014-05-27 16:32:27 +0200485 test_sta_flag(sta, WLAN_STA_PS_DRIVER) ||
486 test_sta_flag(sta, WLAN_STA_PS_DELIVER)) &&
Johannes Berg02f2f1a2012-02-27 12:18:30 +0100487 !(info->flags & IEEE80211_TX_CTL_NO_PS_BUFFER))) {
Johannes Berg948d8872011-09-29 16:04:29 +0200488 int ac = skb_get_queue_mapping(tx->skb);
489
Johannes Berg08b99392014-07-07 12:01:11 +0200490 if (ieee80211_is_mgmt(hdr->frame_control) &&
491 !ieee80211_is_bufferable_mmpdu(hdr->frame_control)) {
492 info->flags |= IEEE80211_TX_CTL_NO_PS_BUFFER;
493 return TX_CONTINUE;
494 }
495
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200496 ps_dbg(sta->sdata, "STA %pM aid %d: PS buffer for AC %d\n",
497 sta->sta.addr, sta->sta.aid, ac);
Johannes Berge2ebc742007-07-27 15:43:22 +0200498 if (tx->local->total_ps_buffered >= TOTAL_MAX_TX_BUFFER)
499 purge_old_ps_buffers(tx->local);
Emmanuel Grumbach1d147bf2014-02-20 09:22:11 +0200500
501 /* sync with ieee80211_sta_ps_deliver_wakeup */
502 spin_lock(&sta->ps_lock);
503 /*
504 * STA woke up the meantime and all the frames on ps_tx_buf have
505 * been queued to pending queue. No reordering can happen, go
506 * ahead and Tx the packet.
507 */
508 if (!test_sta_flag(sta, WLAN_STA_PS_STA) &&
Johannes Berg5ac2e352014-05-27 16:32:27 +0200509 !test_sta_flag(sta, WLAN_STA_PS_DRIVER) &&
510 !test_sta_flag(sta, WLAN_STA_PS_DELIVER)) {
Emmanuel Grumbach1d147bf2014-02-20 09:22:11 +0200511 spin_unlock(&sta->ps_lock);
512 return TX_CONTINUE;
513 }
514
Johannes Berg948d8872011-09-29 16:04:29 +0200515 if (skb_queue_len(&sta->ps_tx_buf[ac]) >= STA_MAX_TX_BUFFER) {
516 struct sk_buff *old = skb_dequeue(&sta->ps_tx_buf[ac]);
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200517 ps_dbg(tx->sdata,
518 "STA %pM TX buffer for AC %d full - dropping oldest frame\n",
519 sta->sta.addr, ac);
Felix Fietkauc3e77242012-10-08 14:39:33 +0200520 ieee80211_free_txskb(&local->hw, old);
Johannes Berge2ebc742007-07-27 15:43:22 +0200521 } else
522 tx->local->total_ps_buffered++;
Johannes Berg004c8722008-02-20 11:21:35 +0100523
Johannes Berge039fa42008-05-15 12:55:29 +0200524 info->control.jiffies = jiffies;
Johannes Berg5061b0c2009-07-14 00:33:34 +0200525 info->control.vif = &tx->sdata->vif;
Felix Fietkaucc20ff2c2020-09-08 14:36:57 +0200526 info->control.flags |= IEEE80211_TX_INTCFL_NEED_TXPROCESSING;
Johannes Berg03c8c062014-01-09 01:45:28 +0100527 info->flags &= ~IEEE80211_TX_TEMPORARY_FLAGS;
Johannes Berg948d8872011-09-29 16:04:29 +0200528 skb_queue_tail(&sta->ps_tx_buf[ac], tx->skb);
Emmanuel Grumbach1d147bf2014-02-20 09:22:11 +0200529 spin_unlock(&sta->ps_lock);
Juuso Oikarinen3393a602010-04-19 10:12:52 +0300530
531 if (!timer_pending(&local->sta_cleanup))
532 mod_timer(&local->sta_cleanup,
533 round_jiffies(jiffies +
534 STA_INFO_CLEANUP_INTERVAL));
535
Johannes Bergc868cb352011-09-29 16:04:27 +0200536 /*
537 * We queued up some frames, so the TIM bit might
538 * need to be set, recalculate it.
539 */
540 sta_info_recalc_tim(sta);
541
Johannes Berg9ae54c82008-01-31 19:48:20 +0100542 return TX_QUEUED;
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200543 } else if (unlikely(test_sta_flag(sta, WLAN_STA_PS_STA))) {
544 ps_dbg(tx->sdata,
545 "STA %pM in PS mode, but polling/in SP -> send frame\n",
546 sta->sta.addr);
Johannes Berge2ebc742007-07-27 15:43:22 +0200547 }
Johannes Berge2ebc742007-07-27 15:43:22 +0200548
Johannes Berg9ae54c82008-01-31 19:48:20 +0100549 return TX_CONTINUE;
Johannes Berge2ebc742007-07-27 15:43:22 +0200550}
551
Johannes Bergd9e8a702008-06-30 15:10:44 +0200552static ieee80211_tx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +0100553ieee80211_tx_h_ps_buf(struct ieee80211_tx_data *tx)
Johannes Berge2ebc742007-07-27 15:43:22 +0200554{
Johannes Berg5cf121c2008-02-25 16:27:43 +0100555 if (unlikely(tx->flags & IEEE80211_TX_PS_BUFFERED))
Johannes Berg9ae54c82008-01-31 19:48:20 +0100556 return TX_CONTINUE;
Johannes Berge2ebc742007-07-27 15:43:22 +0200557
Johannes Berg5cf121c2008-02-25 16:27:43 +0100558 if (tx->flags & IEEE80211_TX_UNICAST)
Johannes Berge2ebc742007-07-27 15:43:22 +0200559 return ieee80211_tx_h_unicast_ps_buf(tx);
560 else
561 return ieee80211_tx_h_multicast_ps_buf(tx);
562}
563
Johannes Bergd9e8a702008-06-30 15:10:44 +0200564static ieee80211_tx_result debug_noinline
Johannes Berga621fa42010-08-27 14:26:54 +0300565ieee80211_tx_h_check_control_port_protocol(struct ieee80211_tx_data *tx)
566{
567 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
568
Johannes Bergaf61a162013-07-02 18:09:12 +0200569 if (unlikely(tx->sdata->control_port_protocol == tx->skb->protocol)) {
570 if (tx->sdata->control_port_no_encrypt)
571 info->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
572 info->control.flags |= IEEE80211_TX_CTRL_PORT_CTRL_PROTO;
Jouni Malinen9c1c98a2015-02-26 15:50:50 +0200573 info->flags |= IEEE80211_TX_CTL_USE_MINRATE;
Johannes Bergaf61a162013-07-02 18:09:12 +0200574 }
Johannes Berga621fa42010-08-27 14:26:54 +0300575
576 return TX_CONTINUE;
577}
578
579static ieee80211_tx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +0100580ieee80211_tx_h_select_key(struct ieee80211_tx_data *tx)
Johannes Berge2ebc742007-07-27 15:43:22 +0200581{
Johannes Berg46e6de12012-07-04 18:10:07 +0200582 struct ieee80211_key *key;
Johannes Berge039fa42008-05-15 12:55:29 +0200583 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
Harvey Harrison358c8d92008-07-15 18:44:13 -0700584 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data;
Johannes Bergd4e46a32007-09-14 11:10:24 -0400585
Johannes Berga0761a32020-03-26 15:09:42 +0200586 if (unlikely(info->flags & IEEE80211_TX_INTFL_DONT_ENCRYPT)) {
Johannes Berge2ebc742007-07-27 15:43:22 +0200587 tx->key = NULL;
Johannes Berga0761a32020-03-26 15:09:42 +0200588 return TX_CONTINUE;
589 }
590
591 if (tx->sta &&
592 (key = rcu_dereference(tx->sta->ptk[tx->sta->ptk_idx])))
Johannes Bergd4e46a32007-09-14 11:10:24 -0400593 tx->key = key;
Masashi Honma46f6b062016-06-22 19:55:20 +0900594 else if (ieee80211_is_group_privacy_action(tx->skb) &&
595 (key = rcu_dereference(tx->sdata->default_multicast_key)))
596 tx->key = key;
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200597 else if (ieee80211_is_mgmt(hdr->frame_control) &&
Jouni Malinenecbcd322010-03-29 23:35:23 -0700598 is_multicast_ether_addr(hdr->addr1) &&
Johannes Bergd8ca16d2014-01-23 16:20:29 +0100599 ieee80211_is_robust_mgmt_frame(tx->skb) &&
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200600 (key = rcu_dereference(tx->sdata->default_mgmt_key)))
601 tx->key = key;
Johannes Bergf7e01042010-12-09 19:49:02 +0100602 else if (is_multicast_ether_addr(hdr->addr1) &&
603 (key = rcu_dereference(tx->sdata->default_multicast_key)))
604 tx->key = key;
605 else if (!is_multicast_ether_addr(hdr->addr1) &&
606 (key = rcu_dereference(tx->sdata->default_unicast_key)))
Johannes Bergd4e46a32007-09-14 11:10:24 -0400607 tx->key = key;
Johannes Berge8f4fb72015-03-20 11:37:36 +0100608 else
Johannes Berg46e6de12012-07-04 18:10:07 +0200609 tx->key = NULL;
Johannes Berge2ebc742007-07-27 15:43:22 +0200610
611 if (tx->key) {
Johannes Berg813d7662010-01-17 01:47:58 +0100612 bool skip_hw = false;
613
Johannes Berg011bfcc2007-09-17 01:29:25 -0400614 /* TODO: add threshold stuff again */
Johannes Berg176e4f82007-12-18 15:27:47 +0100615
Johannes Berg97359d12010-08-10 09:46:38 +0200616 switch (tx->key->conf.cipher) {
617 case WLAN_CIPHER_SUITE_WEP40:
618 case WLAN_CIPHER_SUITE_WEP104:
Johannes Berg97359d12010-08-10 09:46:38 +0200619 case WLAN_CIPHER_SUITE_TKIP:
Harvey Harrison358c8d92008-07-15 18:44:13 -0700620 if (!ieee80211_is_data_present(hdr->frame_control))
Johannes Berg176e4f82007-12-18 15:27:47 +0100621 tx->key = NULL;
622 break;
Johannes Berg97359d12010-08-10 09:46:38 +0200623 case WLAN_CIPHER_SUITE_CCMP:
Jouni Malinen2b2ba0d2015-01-24 19:52:07 +0200624 case WLAN_CIPHER_SUITE_CCMP_256:
Jouni Malinen00b9cfa2015-01-24 19:52:06 +0200625 case WLAN_CIPHER_SUITE_GCMP:
626 case WLAN_CIPHER_SUITE_GCMP_256:
Jouni Malinenfb733332009-01-08 13:32:00 +0200627 if (!ieee80211_is_data_present(hdr->frame_control) &&
628 !ieee80211_use_mfp(hdr->frame_control, tx->sta,
Masashi Honma46f6b062016-06-22 19:55:20 +0900629 tx->skb) &&
630 !ieee80211_is_group_privacy_action(tx->skb))
Jouni Malinenfb733332009-01-08 13:32:00 +0200631 tx->key = NULL;
Kalle Valo3b43a182010-01-23 20:27:14 +0200632 else
633 skip_hw = (tx->key->conf.flags &
Johannes Berge548c492012-09-04 17:08:23 +0200634 IEEE80211_KEY_FLAG_SW_MGMT_TX) &&
Kalle Valo3b43a182010-01-23 20:27:14 +0200635 ieee80211_is_mgmt(hdr->frame_control);
Jouni Malinenfb733332009-01-08 13:32:00 +0200636 break;
Johannes Berg97359d12010-08-10 09:46:38 +0200637 case WLAN_CIPHER_SUITE_AES_CMAC:
Jouni Malinen56c52da2015-01-24 19:52:08 +0200638 case WLAN_CIPHER_SUITE_BIP_CMAC_256:
Jouni Malinen8ade5382015-01-24 19:52:09 +0200639 case WLAN_CIPHER_SUITE_BIP_GMAC_128:
640 case WLAN_CIPHER_SUITE_BIP_GMAC_256:
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200641 if (!ieee80211_is_mgmt(hdr->frame_control))
642 tx->key = NULL;
643 break;
Johannes Berg176e4f82007-12-18 15:27:47 +0100644 }
Johannes Berg813d7662010-01-17 01:47:58 +0100645
Johannes Berge54faf22013-01-29 11:41:38 +0100646 if (unlikely(tx->key && tx->key->flags & KEY_FLAG_TAINTED &&
647 !ieee80211_is_deauth(hdr->frame_control)))
Johannes Berg95acac62011-07-12 12:30:59 +0200648 return TX_DROP;
649
Johannes Bergf12553e2010-01-22 22:07:59 +0100650 if (!skip_hw && tx->key &&
Johannes Berg382b1652010-01-25 11:36:16 +0100651 tx->key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE)
Johannes Berg813d7662010-01-17 01:47:58 +0100652 info->control.hw_key = &tx->key->conf;
Felix Fietkau2463ec82020-12-18 20:15:25 +0100653 } else if (ieee80211_is_data_present(hdr->frame_control) && tx->sta &&
Johannes Berga0761a32020-03-26 15:09:42 +0200654 test_sta_flag(tx->sta, WLAN_STA_USES_ENCRYPTION)) {
655 return TX_DROP;
Johannes Berge2ebc742007-07-27 15:43:22 +0200656 }
657
Johannes Berg9ae54c82008-01-31 19:48:20 +0100658 return TX_CONTINUE;
Johannes Berge2ebc742007-07-27 15:43:22 +0200659}
660
Johannes Bergd9e8a702008-06-30 15:10:44 +0200661static ieee80211_tx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +0100662ieee80211_tx_h_rate_ctrl(struct ieee80211_tx_data *tx)
Johannes Berge2ebc742007-07-27 15:43:22 +0200663{
Johannes Berge039fa42008-05-15 12:55:29 +0200664 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
Johannes Berge6a98542008-10-21 12:40:02 +0200665 struct ieee80211_hdr *hdr = (void *)tx->skb->data;
666 struct ieee80211_supported_band *sband;
Shanyu Zhaoa2c40242010-04-27 11:15:12 -0700667 u32 len;
Johannes Berge6a98542008-10-21 12:40:02 +0200668 struct ieee80211_tx_rate_control txrc;
Felix Fietkau0d528d82013-04-22 16:14:41 +0200669 struct ieee80211_sta_rates *ratetbl = NULL;
Ryder Lee3187ba02021-06-17 18:31:13 +0200670 bool encap = info->flags & IEEE80211_TX_CTL_HW_80211_ENCAP;
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200671 bool assoc = false;
Johannes Berge6a98542008-10-21 12:40:02 +0200672
673 memset(&txrc, 0, sizeof(txrc));
Johannes Berg8318d782008-01-24 19:38:38 +0100674
Johannes Berg2d565772012-07-23 15:12:51 +0200675 sband = tx->local->hw.wiphy->bands[info->band];
Johannes Berge2ebc742007-07-27 15:43:22 +0200676
Shanyu Zhaoa2c40242010-04-27 11:15:12 -0700677 len = min_t(u32, tx->skb->len + FCS_LEN,
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +0200678 tx->local->hw.wiphy->frag_threshold);
Johannes Berg58d41852007-09-26 17:53:18 +0200679
Johannes Berge6a98542008-10-21 12:40:02 +0200680 /* set up the tx rate control struct we give the RC algo */
Johannes Berg005e4722012-02-26 11:24:35 +0100681 txrc.hw = &tx->local->hw;
Johannes Berge6a98542008-10-21 12:40:02 +0200682 txrc.sband = sband;
683 txrc.bss_conf = &tx->sdata->vif.bss_conf;
684 txrc.skb = tx->skb;
685 txrc.reported_rate.idx = -1;
Johannes Berg2d565772012-07-23 15:12:51 +0200686 txrc.rate_idx_mask = tx->sdata->rc_rateidx_mask[info->band];
Felix Fietkau2ffbe6d2013-04-16 13:38:42 +0200687
688 if (tx->sdata->rc_has_mcs_mask[info->band])
689 txrc.rate_idx_mcs_mask =
690 tx->sdata->rc_rateidx_mcs_mask[info->band];
691
Felix Fietkau8f0729b2010-11-11 15:07:23 +0100692 txrc.bss = (tx->sdata->vif.type == NL80211_IFTYPE_AP ||
Chun-Yeow Yeoh4bb62342011-11-24 17:15:20 -0800693 tx->sdata->vif.type == NL80211_IFTYPE_MESH_POINT ||
Bertold Van den Bergh5765f9f2015-08-05 16:02:28 +0200694 tx->sdata->vif.type == NL80211_IFTYPE_ADHOC ||
695 tx->sdata->vif.type == NL80211_IFTYPE_OCB);
Johannes Berg58d41852007-09-26 17:53:18 +0200696
Johannes Berge6a98542008-10-21 12:40:02 +0200697 /* set up RTS protection if desired */
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +0200698 if (len > tx->local->hw.wiphy->rts_threshold) {
Felix Fietkau0d528d82013-04-22 16:14:41 +0200699 txrc.rts = true;
Johannes Berge2ebc742007-07-27 15:43:22 +0200700 }
Johannes Berge6a98542008-10-21 12:40:02 +0200701
Felix Fietkau0d528d82013-04-22 16:14:41 +0200702 info->control.use_rts = txrc.rts;
Felix Fietkau991fec02013-04-16 13:38:43 +0200703 info->control.use_cts_prot = tx->sdata->vif.bss_conf.use_cts_prot;
704
Johannes Berge6a98542008-10-21 12:40:02 +0200705 /*
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.
710 */
711 if (tx->sdata->vif.bss_conf.use_short_preamble &&
Ryder Lee3187ba02021-06-17 18:31:13 +0200712 (ieee80211_is_tx_data(tx->skb) ||
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200713 (tx->sta && test_sta_flag(tx->sta, WLAN_STA_SHORT_PREAMBLE))))
Felix Fietkau0d528d82013-04-22 16:14:41 +0200714 txrc.short_preamble = true;
715
716 info->control.short_preamble = txrc.short_preamble;
Johannes Berge6a98542008-10-21 12:40:02 +0200717
Sven Eckelmanndfdfc2b2016-01-26 17:11:13 +0100718 /* don't ask rate control when rate already injected via radiotap */
719 if (info->control.flags & IEEE80211_TX_CTRL_RATE_INJECT)
720 return TX_CONTINUE;
721
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200722 if (tx->sta)
723 assoc = test_sta_flag(tx->sta, WLAN_STA_ASSOC);
Johannes Berge6a98542008-10-21 12:40:02 +0200724
Luis R. Rodriguezb770b432009-07-16 10:15:09 -0700725 /*
726 * Lets not bother rate control if we're associated and cannot
727 * talk to the sta. This should not happen.
728 */
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200729 if (WARN(test_bit(SCAN_SW_SCANNING, &tx->local->scanning) && assoc &&
Luis R. Rodriguezb770b432009-07-16 10:15:09 -0700730 !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",
Ryder Lee3187ba02021-06-17 18:31:13 +0200734 tx->sdata->name,
735 encap ? ((struct ethhdr *)hdr)->h_dest : hdr->addr1,
Johannes Berg2d565772012-07-23 15:12:51 +0200736 info->band ? 5 : 2))
Luis R. Rodriguezb770b432009-07-16 10:15:09 -0700737 return TX_DROP;
738
739 /*
740 * If we're associated with the sta at this point we know we can at
741 * least send the frame at the lowest bit rate.
742 */
Johannes Berge6a98542008-10-21 12:40:02 +0200743 rate_control_get_rate(tx->sdata, tx->sta, &txrc);
744
Felix Fietkau0d528d82013-04-22 16:14:41 +0200745 if (tx->sta && !info->control.skip_table)
746 ratetbl = rcu_dereference(tx->sta->sta.rates);
747
748 if (unlikely(info->control.rates[0].idx < 0)) {
749 if (ratetbl) {
750 struct ieee80211_tx_rate rate = {
751 .idx = ratetbl->rate[0].idx,
752 .flags = ratetbl->rate[0].flags,
753 .count = ratetbl->rate[0].count
754 };
755
756 if (ratetbl->rate[0].idx < 0)
757 return TX_DROP;
758
759 tx->rate = rate;
760 } else {
761 return TX_DROP;
762 }
763 } else {
764 tx->rate = info->control.rates[0];
765 }
Johannes Berge6a98542008-10-21 12:40:02 +0200766
Helmut Schaac1ce5a72010-12-01 16:34:45 +0100767 if (txrc.reported_rate.idx < 0) {
Felix Fietkau0d528d82013-04-22 16:14:41 +0200768 txrc.reported_rate = tx->rate;
Ryder Lee3187ba02021-06-17 18:31:13 +0200769 if (tx->sta && ieee80211_is_tx_data(tx->skb))
Johannes Berge5a9f8d2015-10-16 17:54:47 +0200770 tx->sta->tx_stats.last_rate = txrc.reported_rate;
Helmut Schaac1ce5a72010-12-01 16:34:45 +0100771 } else if (tx->sta)
Johannes Berge5a9f8d2015-10-16 17:54:47 +0200772 tx->sta->tx_stats.last_rate = txrc.reported_rate;
Johannes Berge6a98542008-10-21 12:40:02 +0200773
Felix Fietkau0d528d82013-04-22 16:14:41 +0200774 if (ratetbl)
775 return TX_CONTINUE;
776
Johannes Berge6a98542008-10-21 12:40:02 +0200777 if (unlikely(!info->control.rates[0].count))
778 info->control.rates[0].count = 1;
779
Gábor Stefanik99551512009-04-23 19:36:14 +0200780 if (WARN_ON_ONCE((info->control.rates[0].count > 1) &&
781 (info->flags & IEEE80211_TX_CTL_NO_ACK)))
782 info->control.rates[0].count = 1;
783
Johannes Berg9ae54c82008-01-31 19:48:20 +0100784 return TX_CONTINUE;
Johannes Berge2ebc742007-07-27 15:43:22 +0200785}
786
Felix Fietkauba8c3d62015-03-27 21:30:37 +0100787static __le16 ieee80211_tx_next_seq(struct sta_info *sta, int tid)
788{
789 u16 *seq = &sta->tid_seq[tid];
790 __le16 ret = cpu_to_le16(*seq);
791
792 /* Increase the sequence number. */
793 *seq = (*seq + 0x10) & IEEE80211_SCTL_SEQ;
794
795 return ret;
796}
797
Johannes Bergd9e8a702008-06-30 15:10:44 +0200798static ieee80211_tx_result debug_noinline
Johannes Bergf591fa52008-07-10 11:21:26 +0200799ieee80211_tx_h_sequence(struct ieee80211_tx_data *tx)
800{
801 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
802 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data;
Johannes Bergf591fa52008-07-10 11:21:26 +0200803 int tid;
804
Johannes Berg25d834e2008-09-12 22:52:47 +0200805 /*
806 * Packet injection may want to control the sequence
807 * number, if we have no matching interface then we
808 * neither assign one ourselves nor ask the driver to.
809 */
Johannes Berg5061b0c2009-07-14 00:33:34 +0200810 if (unlikely(info->control.vif->type == NL80211_IFTYPE_MONITOR))
Johannes Berg25d834e2008-09-12 22:52:47 +0200811 return TX_CONTINUE;
812
Johannes Bergf591fa52008-07-10 11:21:26 +0200813 if (unlikely(ieee80211_is_ctl(hdr->frame_control)))
814 return TX_CONTINUE;
815
816 if (ieee80211_hdrlen(hdr->frame_control) < 24)
817 return TX_CONTINUE;
818
Johannes Berg49a59542011-09-29 16:04:41 +0200819 if (ieee80211_is_qos_nullfunc(hdr->frame_control))
820 return TX_CONTINUE;
821
Mathy Vanhoef29c3e952020-07-23 14:01:50 +0400822 if (info->control.flags & IEEE80211_TX_CTRL_NO_SEQNO)
823 return TX_CONTINUE;
824
Johannes Berg94778282008-10-10 13:21:59 +0200825 /*
826 * Anything but QoS data that has a sequence number field
827 * (is long enough) gets a sequence number from the global
Bob Copelandc4c205f2013-08-23 09:35:38 -0400828 * counter. QoS data frames with a multicast destination
829 * also use the global counter (802.11-2012 9.3.2.10).
Johannes Berg94778282008-10-10 13:21:59 +0200830 */
Bob Copelandc4c205f2013-08-23 09:35:38 -0400831 if (!ieee80211_is_data_qos(hdr->frame_control) ||
832 is_multicast_ether_addr(hdr->addr1)) {
Johannes Berg94778282008-10-10 13:21:59 +0200833 /* driver should assign sequence number */
Johannes Bergf591fa52008-07-10 11:21:26 +0200834 info->flags |= IEEE80211_TX_CTL_ASSIGN_SEQ;
Johannes Berg94778282008-10-10 13:21:59 +0200835 /* for pure STA mode without beacons, we can do it */
836 hdr->seq_ctrl = cpu_to_le16(tx->sdata->sequence_number);
837 tx->sdata->sequence_number += 0x10;
Johannes Berg79c892b2014-11-21 14:26:31 +0100838 if (tx->sta)
Johannes Berge5a9f8d2015-10-16 17:54:47 +0200839 tx->sta->tx_stats.msdu[IEEE80211_NUM_TIDS]++;
Johannes Bergf591fa52008-07-10 11:21:26 +0200840 return TX_CONTINUE;
841 }
842
843 /*
844 * This should be true for injected/management frames only, for
845 * management frames we have set the IEEE80211_TX_CTL_ASSIGN_SEQ
846 * above since they are not QoS-data frames.
847 */
848 if (!tx->sta)
849 return TX_CONTINUE;
850
851 /* include per-STA, per-TID sequence counter */
Sara Sharona1f2ba04c2018-02-19 14:48:40 +0200852 tid = ieee80211_get_tid(hdr);
Johannes Berge5a9f8d2015-10-16 17:54:47 +0200853 tx->sta->tx_stats.msdu[tid]++;
Johannes Bergf591fa52008-07-10 11:21:26 +0200854
Toke Høiland-Jørgensenbb42f2d2016-09-22 19:04:20 +0200855 hdr->seq_ctrl = ieee80211_tx_next_seq(tx->sta, tid);
Johannes Bergf591fa52008-07-10 11:21:26 +0200856
857 return TX_CONTINUE;
858}
859
Johannes Berg252b86c2011-11-16 15:28:55 +0100860static int ieee80211_fragment(struct ieee80211_tx_data *tx,
Johannes Berg2de8e0d92009-03-23 17:28:35 +0100861 struct sk_buff *skb, int hdrlen,
862 int frag_threshold)
863{
Johannes Berg252b86c2011-11-16 15:28:55 +0100864 struct ieee80211_local *local = tx->local;
Johannes Berga1a3fce2011-11-16 15:28:56 +0100865 struct ieee80211_tx_info *info;
Johannes Berg252b86c2011-11-16 15:28:55 +0100866 struct sk_buff *tmp;
Johannes Berg2de8e0d92009-03-23 17:28:35 +0100867 int per_fragm = frag_threshold - hdrlen - FCS_LEN;
868 int pos = hdrlen + per_fragm;
869 int rem = skb->len - hdrlen - per_fragm;
870
871 if (WARN_ON(rem < 0))
872 return -EINVAL;
873
Johannes Berg252b86c2011-11-16 15:28:55 +0100874 /* first fragment was already added to queue by caller */
875
Johannes Berg2de8e0d92009-03-23 17:28:35 +0100876 while (rem) {
877 int fraglen = per_fragm;
878
879 if (fraglen > rem)
880 fraglen = rem;
881 rem -= fraglen;
882 tmp = dev_alloc_skb(local->tx_headroom +
883 frag_threshold +
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200884 tx->sdata->encrypt_headroom +
Johannes Berg2de8e0d92009-03-23 17:28:35 +0100885 IEEE80211_ENCRYPT_TAILROOM);
886 if (!tmp)
887 return -ENOMEM;
Johannes Berg252b86c2011-11-16 15:28:55 +0100888
889 __skb_queue_tail(&tx->skbs, tmp);
890
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200891 skb_reserve(tmp,
892 local->tx_headroom + tx->sdata->encrypt_headroom);
893
Johannes Berg2de8e0d92009-03-23 17:28:35 +0100894 /* copy control information */
895 memcpy(tmp->cb, skb->cb, sizeof(tmp->cb));
Johannes Berga1a3fce2011-11-16 15:28:56 +0100896
897 info = IEEE80211_SKB_CB(tmp);
898 info->flags &= ~(IEEE80211_TX_CTL_CLEAR_PS_FILT |
899 IEEE80211_TX_CTL_FIRST_FRAGMENT);
900
901 if (rem)
902 info->flags |= IEEE80211_TX_CTL_MORE_FRAMES;
903
Johannes Berg2de8e0d92009-03-23 17:28:35 +0100904 skb_copy_queue_mapping(tmp, skb);
905 tmp->priority = skb->priority;
Johannes Berg2de8e0d92009-03-23 17:28:35 +0100906 tmp->dev = skb->dev;
Johannes Berg2de8e0d92009-03-23 17:28:35 +0100907
908 /* copy header and data */
Johannes Berg59ae1d12017-06-16 14:29:20 +0200909 skb_put_data(tmp, skb->data, hdrlen);
910 skb_put_data(tmp, skb->data + pos, fraglen);
Johannes Berg2de8e0d92009-03-23 17:28:35 +0100911
912 pos += fraglen;
913 }
914
Johannes Berg252b86c2011-11-16 15:28:55 +0100915 /* adjust first fragment's length */
Johannes Berg338f9772014-02-01 00:16:23 +0100916 skb_trim(skb, hdrlen + per_fragm);
Johannes Berg2de8e0d92009-03-23 17:28:35 +0100917 return 0;
918}
919
Johannes Bergf591fa52008-07-10 11:21:26 +0200920static ieee80211_tx_result debug_noinline
Johannes Berge2454942008-05-15 12:55:28 +0200921ieee80211_tx_h_fragment(struct ieee80211_tx_data *tx)
922{
Johannes Berg2de8e0d92009-03-23 17:28:35 +0100923 struct sk_buff *skb = tx->skb;
924 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
925 struct ieee80211_hdr *hdr = (void *)skb->data;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +0200926 int frag_threshold = tx->local->hw.wiphy->frag_threshold;
Johannes Berg2de8e0d92009-03-23 17:28:35 +0100927 int hdrlen;
928 int fragnum;
Johannes Berge2454942008-05-15 12:55:28 +0200929
Johannes Berg252b86c2011-11-16 15:28:55 +0100930 /* no matter what happens, tx->skb moves to tx->skbs */
931 __skb_queue_tail(&tx->skbs, skb);
932 tx->skb = NULL;
933
Johannes Berga26eb272011-10-07 14:01:25 +0200934 if (info->flags & IEEE80211_TX_CTL_DONTFRAG)
935 return TX_CONTINUE;
936
Sara Sharonf3fe4e92016-10-18 23:12:11 +0300937 if (ieee80211_hw_check(&tx->local->hw, SUPPORTS_TX_FRAG))
Johannes Berge2454942008-05-15 12:55:28 +0200938 return TX_CONTINUE;
939
Johannes Bergeefce912008-05-17 00:57:13 +0200940 /*
941 * Warn when submitting a fragmented A-MPDU frame and drop it.
Johannes Berg3b8d81e02009-06-17 17:43:56 +0200942 * This scenario is handled in ieee80211_tx_prepare but extra
Ron Rindjunsky8d5e0d52008-06-12 15:42:29 +0300943 * caution taken here as fragmented ampdu may cause Tx stop.
Johannes Bergeefce912008-05-17 00:57:13 +0200944 */
Sujith8b30b1f2008-10-24 09:55:27 +0530945 if (WARN_ON(info->flags & IEEE80211_TX_CTL_AMPDU))
Johannes Bergeefce912008-05-17 00:57:13 +0200946 return TX_DROP;
947
Harvey Harrison065e96052008-06-22 16:45:27 -0700948 hdrlen = ieee80211_hdrlen(hdr->frame_control);
Johannes Berge2454942008-05-15 12:55:28 +0200949
Johannes Berga26eb272011-10-07 14:01:25 +0200950 /* internal error, why isn't DONTFRAG set? */
Johannes Berg8ccd8f22009-04-29 23:35:56 +0200951 if (WARN_ON(skb->len + FCS_LEN <= frag_threshold))
Johannes Berg2de8e0d92009-03-23 17:28:35 +0100952 return TX_DROP;
Johannes Berge2454942008-05-15 12:55:28 +0200953
Johannes Berg2de8e0d92009-03-23 17:28:35 +0100954 /*
955 * Now fragment the frame. This will allocate all the fragments and
956 * chain them (using skb as the first fragment) to skb->next.
957 * During transmission, we will remove the successfully transmitted
958 * fragments from this list. When the low-level driver rejects one
959 * of the fragments then we will simply pretend to accept the skb
960 * but store it away as pending.
961 */
Johannes Berg252b86c2011-11-16 15:28:55 +0100962 if (ieee80211_fragment(tx, skb, hdrlen, frag_threshold))
Johannes Berg2de8e0d92009-03-23 17:28:35 +0100963 return TX_DROP;
Johannes Berge2454942008-05-15 12:55:28 +0200964
Johannes Berg2de8e0d92009-03-23 17:28:35 +0100965 /* update duration/seq/flags of fragments */
966 fragnum = 0;
Johannes Berg252b86c2011-11-16 15:28:55 +0100967
968 skb_queue_walk(&tx->skbs, skb) {
Johannes Berg2de8e0d92009-03-23 17:28:35 +0100969 const __le16 morefrags = cpu_to_le16(IEEE80211_FCTL_MOREFRAGS);
Johannes Berge2454942008-05-15 12:55:28 +0200970
Johannes Berg2de8e0d92009-03-23 17:28:35 +0100971 hdr = (void *)skb->data;
972 info = IEEE80211_SKB_CB(skb);
Johannes Berge6a98542008-10-21 12:40:02 +0200973
Johannes Berg252b86c2011-11-16 15:28:55 +0100974 if (!skb_queue_is_last(&tx->skbs, skb)) {
Johannes Berg2de8e0d92009-03-23 17:28:35 +0100975 hdr->frame_control |= morefrags;
Johannes Berge6a98542008-10-21 12:40:02 +0200976 /*
977 * No multi-rate retries for fragmented frames, that
978 * would completely throw off the NAV at other STAs.
979 */
980 info->control.rates[1].idx = -1;
981 info->control.rates[2].idx = -1;
982 info->control.rates[3].idx = -1;
Thomas Huehne3e1a0b2012-07-02 19:46:16 +0200983 BUILD_BUG_ON(IEEE80211_TX_MAX_RATES != 4);
Johannes Berge6a98542008-10-21 12:40:02 +0200984 info->flags &= ~IEEE80211_TX_CTL_RATE_CTRL_PROBE;
Johannes Berg2de8e0d92009-03-23 17:28:35 +0100985 } else {
986 hdr->frame_control &= ~morefrags;
Johannes Berge6a98542008-10-21 12:40:02 +0200987 }
Johannes Berg2de8e0d92009-03-23 17:28:35 +0100988 hdr->seq_ctrl |= cpu_to_le16(fragnum & IEEE80211_SCTL_FRAG);
989 fragnum++;
Johannes Berg252b86c2011-11-16 15:28:55 +0100990 }
Johannes Berge2454942008-05-15 12:55:28 +0200991
992 return TX_CONTINUE;
Johannes Berge2454942008-05-15 12:55:28 +0200993}
994
Johannes Bergd9e8a702008-06-30 15:10:44 +0200995static ieee80211_tx_result debug_noinline
Johannes Bergfeff1f22009-08-10 16:01:54 +0200996ieee80211_tx_h_stats(struct ieee80211_tx_data *tx)
997{
Johannes Berg252b86c2011-11-16 15:28:55 +0100998 struct sk_buff *skb;
Johannes Berg560d2682013-02-05 10:55:21 +0100999 int ac = -1;
Johannes Bergfeff1f22009-08-10 16:01:54 +02001000
1001 if (!tx->sta)
1002 return TX_CONTINUE;
1003
Johannes Berg252b86c2011-11-16 15:28:55 +01001004 skb_queue_walk(&tx->skbs, skb) {
Johannes Berg560d2682013-02-05 10:55:21 +01001005 ac = skb_get_queue_mapping(skb);
Johannes Berge5a9f8d2015-10-16 17:54:47 +02001006 tx->sta->tx_stats.bytes[ac] += skb->len;
Johannes Berg252b86c2011-11-16 15:28:55 +01001007 }
Johannes Berg560d2682013-02-05 10:55:21 +01001008 if (ac >= 0)
Johannes Berge5a9f8d2015-10-16 17:54:47 +02001009 tx->sta->tx_stats.packets[ac]++;
Johannes Bergfeff1f22009-08-10 16:01:54 +02001010
1011 return TX_CONTINUE;
1012}
1013
1014static ieee80211_tx_result debug_noinline
Johannes Berge2454942008-05-15 12:55:28 +02001015ieee80211_tx_h_encrypt(struct ieee80211_tx_data *tx)
1016{
1017 if (!tx->key)
1018 return TX_CONTINUE;
1019
Johannes Berg97359d12010-08-10 09:46:38 +02001020 switch (tx->key->conf.cipher) {
1021 case WLAN_CIPHER_SUITE_WEP40:
1022 case WLAN_CIPHER_SUITE_WEP104:
Johannes Berge2454942008-05-15 12:55:28 +02001023 return ieee80211_crypto_wep_encrypt(tx);
Johannes Berg97359d12010-08-10 09:46:38 +02001024 case WLAN_CIPHER_SUITE_TKIP:
Johannes Berge2454942008-05-15 12:55:28 +02001025 return ieee80211_crypto_tkip_encrypt(tx);
Johannes Berg97359d12010-08-10 09:46:38 +02001026 case WLAN_CIPHER_SUITE_CCMP:
Jouni Malinen2b2ba0d2015-01-24 19:52:07 +02001027 return ieee80211_crypto_ccmp_encrypt(
1028 tx, IEEE80211_CCMP_MIC_LEN);
1029 case WLAN_CIPHER_SUITE_CCMP_256:
1030 return ieee80211_crypto_ccmp_encrypt(
1031 tx, IEEE80211_CCMP_256_MIC_LEN);
Johannes Berg97359d12010-08-10 09:46:38 +02001032 case WLAN_CIPHER_SUITE_AES_CMAC:
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +02001033 return ieee80211_crypto_aes_cmac_encrypt(tx);
Jouni Malinen56c52da2015-01-24 19:52:08 +02001034 case WLAN_CIPHER_SUITE_BIP_CMAC_256:
1035 return ieee80211_crypto_aes_cmac_256_encrypt(tx);
Jouni Malinen8ade5382015-01-24 19:52:09 +02001036 case WLAN_CIPHER_SUITE_BIP_GMAC_128:
1037 case WLAN_CIPHER_SUITE_BIP_GMAC_256:
1038 return ieee80211_crypto_aes_gmac_encrypt(tx);
Jouni Malinen00b9cfa2015-01-24 19:52:06 +02001039 case WLAN_CIPHER_SUITE_GCMP:
1040 case WLAN_CIPHER_SUITE_GCMP_256:
1041 return ieee80211_crypto_gcmp_encrypt(tx);
Johannes Berg3ffc2a92010-08-27 14:26:52 +03001042 default:
Yoni Divinskyd32a1022012-01-16 15:18:59 +02001043 return ieee80211_crypto_hw_encrypt(tx);
Johannes Berge2454942008-05-15 12:55:28 +02001044 }
1045
Johannes Berge2454942008-05-15 12:55:28 +02001046 return TX_DROP;
1047}
1048
Johannes Bergd9e8a702008-06-30 15:10:44 +02001049static ieee80211_tx_result debug_noinline
Johannes Berg03f93c32008-06-25 14:36:27 +03001050ieee80211_tx_h_calculate_duration(struct ieee80211_tx_data *tx)
1051{
Johannes Berg252b86c2011-11-16 15:28:55 +01001052 struct sk_buff *skb;
Johannes Berg2de8e0d92009-03-23 17:28:35 +01001053 struct ieee80211_hdr *hdr;
1054 int next_len;
1055 bool group_addr;
Johannes Berg03f93c32008-06-25 14:36:27 +03001056
Johannes Berg252b86c2011-11-16 15:28:55 +01001057 skb_queue_walk(&tx->skbs, skb) {
Johannes Berg2de8e0d92009-03-23 17:28:35 +01001058 hdr = (void *) skb->data;
Jouni Malinen7e0aae42009-05-19 19:25:58 +03001059 if (unlikely(ieee80211_is_pspoll(hdr->frame_control)))
1060 break; /* must not overwrite AID */
Johannes Berg252b86c2011-11-16 15:28:55 +01001061 if (!skb_queue_is_last(&tx->skbs, skb)) {
1062 struct sk_buff *next = skb_queue_next(&tx->skbs, skb);
1063 next_len = next->len;
1064 } else
1065 next_len = 0;
Johannes Berg2de8e0d92009-03-23 17:28:35 +01001066 group_addr = is_multicast_ether_addr(hdr->addr1);
Johannes Berg03f93c32008-06-25 14:36:27 +03001067
Johannes Berg2de8e0d92009-03-23 17:28:35 +01001068 hdr->duration_id =
Johannes Berg252b86c2011-11-16 15:28:55 +01001069 ieee80211_duration(tx, skb, group_addr, next_len);
1070 }
Johannes Berg03f93c32008-06-25 14:36:27 +03001071
1072 return TX_CONTINUE;
1073}
1074
Johannes Berge2ebc742007-07-27 15:43:22 +02001075/* actual transmit path */
1076
Johannes Berga622ab72010-06-10 10:21:39 +02001077static bool ieee80211_tx_prep_agg(struct ieee80211_tx_data *tx,
1078 struct sk_buff *skb,
1079 struct ieee80211_tx_info *info,
1080 struct tid_ampdu_tx *tid_tx,
1081 int tid)
1082{
1083 bool queued = false;
Nikolay Martynov285fa692011-11-22 21:50:28 -05001084 bool reset_agg_timer = false;
Helmut Schaaaa454582012-03-07 17:20:30 +01001085 struct sk_buff *purge_skb = NULL;
Johannes Berga622ab72010-06-10 10:21:39 +02001086
1087 if (test_bit(HT_AGG_STATE_OPERATIONAL, &tid_tx->state)) {
1088 info->flags |= IEEE80211_TX_CTL_AMPDU;
Nikolay Martynov285fa692011-11-22 21:50:28 -05001089 reset_agg_timer = true;
Johannes Berg0ab33702010-06-10 10:21:42 +02001090 } else if (test_bit(HT_AGG_STATE_WANT_START, &tid_tx->state)) {
1091 /*
1092 * nothing -- this aggregation session is being started
1093 * but that might still fail with the driver
1094 */
Felix Fietkauba8c3d62015-03-27 21:30:37 +01001095 } else if (!tx->sta->sta.txq[tid]) {
Johannes Berga622ab72010-06-10 10:21:39 +02001096 spin_lock(&tx->sta->lock);
1097 /*
1098 * Need to re-check now, because we may get here
1099 *
1100 * 1) in the window during which the setup is actually
1101 * already done, but not marked yet because not all
1102 * packets are spliced over to the driver pending
1103 * queue yet -- if this happened we acquire the lock
1104 * either before or after the splice happens, but
1105 * need to recheck which of these cases happened.
1106 *
1107 * 2) during session teardown, if the OPERATIONAL bit
1108 * was cleared due to the teardown but the pointer
1109 * hasn't been assigned NULL yet (or we loaded it
1110 * before it was assigned) -- in this case it may
1111 * now be NULL which means we should just let the
1112 * packet pass through because splicing the frames
1113 * back is already done.
1114 */
Johannes Berg40b275b2011-05-13 14:15:49 +02001115 tid_tx = rcu_dereference_protected_tid_tx(tx->sta, tid);
Johannes Berga622ab72010-06-10 10:21:39 +02001116
1117 if (!tid_tx) {
1118 /* do nothing, let packet pass through */
1119 } else if (test_bit(HT_AGG_STATE_OPERATIONAL, &tid_tx->state)) {
1120 info->flags |= IEEE80211_TX_CTL_AMPDU;
Nikolay Martynov285fa692011-11-22 21:50:28 -05001121 reset_agg_timer = true;
Johannes Berga622ab72010-06-10 10:21:39 +02001122 } else {
1123 queued = true;
Emmanuel Grumbachf6d46712016-03-17 16:51:42 +02001124 if (info->flags & IEEE80211_TX_CTL_NO_PS_BUFFER) {
1125 clear_sta_flag(tx->sta, WLAN_STA_SP);
1126 ps_dbg(tx->sta->sdata,
1127 "STA %pM aid %d: SP frame queued, close the SP w/o telling the peer\n",
1128 tx->sta->sta.addr, tx->sta->sta.aid);
1129 }
Johannes Berga622ab72010-06-10 10:21:39 +02001130 info->control.vif = &tx->sdata->vif;
Felix Fietkaucc20ff2c2020-09-08 14:36:57 +02001131 info->control.flags |= IEEE80211_TX_INTCFL_NEED_TXPROCESSING;
Emmanuel Grumbachfacde7f2016-03-17 16:51:41 +02001132 info->flags &= ~IEEE80211_TX_TEMPORARY_FLAGS;
Johannes Berga622ab72010-06-10 10:21:39 +02001133 __skb_queue_tail(&tid_tx->pending, skb);
Helmut Schaaaa454582012-03-07 17:20:30 +01001134 if (skb_queue_len(&tid_tx->pending) > STA_MAX_TX_BUFFER)
1135 purge_skb = __skb_dequeue(&tid_tx->pending);
Johannes Berga622ab72010-06-10 10:21:39 +02001136 }
1137 spin_unlock(&tx->sta->lock);
Helmut Schaaaa454582012-03-07 17:20:30 +01001138
1139 if (purge_skb)
Felix Fietkauc3e77242012-10-08 14:39:33 +02001140 ieee80211_free_txskb(&tx->local->hw, purge_skb);
Johannes Berga622ab72010-06-10 10:21:39 +02001141 }
1142
Nikolay Martynov285fa692011-11-22 21:50:28 -05001143 /* reset session timer */
Sara Sharon914eac22018-04-20 13:49:19 +03001144 if (reset_agg_timer)
Felix Fietkau12d3952f2012-03-18 22:58:06 +01001145 tid_tx->last_tx = jiffies;
Nikolay Martynov285fa692011-11-22 21:50:28 -05001146
Johannes Berga622ab72010-06-10 10:21:39 +02001147 return queued;
1148}
1149
Johannes Berg58d41852007-09-26 17:53:18 +02001150/*
1151 * initialises @tx
Johannes Berg7c107702015-03-20 14:18:27 +01001152 * pass %NULL for the station if unknown, a valid pointer if known
1153 * or an ERR_PTR() if the station is known not to exist
Johannes Berg58d41852007-09-26 17:53:18 +02001154 */
Johannes Berg9ae54c82008-01-31 19:48:20 +01001155static ieee80211_tx_result
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001156ieee80211_tx_prepare(struct ieee80211_sub_if_data *sdata,
1157 struct ieee80211_tx_data *tx,
Johannes Berg7c107702015-03-20 14:18:27 +01001158 struct sta_info *sta, struct sk_buff *skb)
Johannes Berge2ebc742007-07-27 15:43:22 +02001159{
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001160 struct ieee80211_local *local = sdata->local;
Johannes Berg58d41852007-09-26 17:53:18 +02001161 struct ieee80211_hdr *hdr;
Johannes Berge039fa42008-05-15 12:55:29 +02001162 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Johannes Berg68f2b512011-10-07 14:01:24 +02001163 int tid;
Johannes Berge2ebc742007-07-27 15:43:22 +02001164
1165 memset(tx, 0, sizeof(*tx));
1166 tx->skb = skb;
Johannes Berge2ebc742007-07-27 15:43:22 +02001167 tx->local = local;
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001168 tx->sdata = sdata;
Johannes Berg252b86c2011-11-16 15:28:55 +01001169 __skb_queue_head_init(&tx->skbs);
Johannes Berge2ebc742007-07-27 15:43:22 +02001170
Johannes Bergcd8ffc82009-03-23 17:28:41 +01001171 /*
1172 * If this flag is set to true anywhere, and we get here,
1173 * we are doing the needed processing, so remove the flag
1174 * now.
1175 */
Felix Fietkaucc20ff2c2020-09-08 14:36:57 +02001176 info->control.flags &= ~IEEE80211_TX_INTCFL_NEED_TXPROCESSING;
Johannes Bergcd8ffc82009-03-23 17:28:41 +01001177
Johannes Berg58d41852007-09-26 17:53:18 +02001178 hdr = (struct ieee80211_hdr *) skb->data;
1179
Johannes Berg7c107702015-03-20 14:18:27 +01001180 if (likely(sta)) {
1181 if (!IS_ERR(sta))
1182 tx->sta = sta;
1183 } else {
1184 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN) {
1185 tx->sta = rcu_dereference(sdata->u.vlan.sta);
1186 if (!tx->sta && sdata->wdev.use_4addr)
1187 return TX_DROP;
Markus Theil10cb8e62021-02-06 12:51:12 +01001188 } else if (tx->sdata->control_port_protocol == tx->skb->protocol) {
Johannes Berg7c107702015-03-20 14:18:27 +01001189 tx->sta = sta_info_get_bss(sdata, hdr->addr1);
1190 }
1191 if (!tx->sta && !is_multicast_ether_addr(hdr->addr1))
1192 tx->sta = sta_info_get(sdata, hdr->addr1);
Felix Fietkau3f0e0b22010-01-08 18:15:13 +01001193 }
Johannes Berg58d41852007-09-26 17:53:18 +02001194
Johannes Bergcd8ffc82009-03-23 17:28:41 +01001195 if (tx->sta && ieee80211_is_data_qos(hdr->frame_control) &&
Johannes Berg49a59542011-09-29 16:04:41 +02001196 !ieee80211_is_qos_nullfunc(hdr->frame_control) &&
Johannes Berg30686bf2015-06-02 21:39:54 +02001197 ieee80211_hw_check(&local->hw, AMPDU_AGGREGATION) &&
1198 !ieee80211_hw_check(&local->hw, TX_AMPDU_SETUP_IN_HW)) {
Johannes Bergcd8ffc82009-03-23 17:28:41 +01001199 struct tid_ampdu_tx *tid_tx;
1200
Sara Sharona1f2ba04c2018-02-19 14:48:40 +02001201 tid = ieee80211_get_tid(hdr);
Sujith8b30b1f2008-10-24 09:55:27 +05301202
Johannes Berga622ab72010-06-10 10:21:39 +02001203 tid_tx = rcu_dereference(tx->sta->ampdu_mlme.tid_tx[tid]);
1204 if (tid_tx) {
1205 bool queued;
Johannes Bergcd8ffc82009-03-23 17:28:41 +01001206
Johannes Berga622ab72010-06-10 10:21:39 +02001207 queued = ieee80211_tx_prep_agg(tx, skb, info,
1208 tid_tx, tid);
1209
1210 if (unlikely(queued))
1211 return TX_QUEUED;
1212 }
Sujith8b30b1f2008-10-24 09:55:27 +05301213 }
1214
Jiri Slabybadffb72007-08-28 17:01:54 -04001215 if (is_multicast_ether_addr(hdr->addr1)) {
Johannes Berg5cf121c2008-02-25 16:27:43 +01001216 tx->flags &= ~IEEE80211_TX_UNICAST;
Johannes Berge039fa42008-05-15 12:55:29 +02001217 info->flags |= IEEE80211_TX_CTL_NO_ACK;
Simon Wunderlich6fd67e92011-11-18 14:20:42 +01001218 } else
Johannes Berg5cf121c2008-02-25 16:27:43 +01001219 tx->flags |= IEEE80211_TX_UNICAST;
Johannes Berg58d41852007-09-26 17:53:18 +02001220
Johannes Berga26eb272011-10-07 14:01:25 +02001221 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;
Johannes Berg58d41852007-09-26 17:53:18 +02001226 }
1227
Johannes Berge2ebc742007-07-27 15:43:22 +02001228 if (!tx->sta)
Johannes Berge039fa42008-05-15 12:55:29 +02001229 info->flags |= IEEE80211_TX_CTL_CLEAR_PS_FILT;
Felix Fietkauf7418bc2015-09-24 14:59:49 +02001230 else if (test_and_clear_sta_flag(tx->sta, WLAN_STA_CLEAR_PS_FILT)) {
Johannes Berge039fa42008-05-15 12:55:29 +02001231 info->flags |= IEEE80211_TX_CTL_CLEAR_PS_FILT;
Felix Fietkauf7418bc2015-09-24 14:59:49 +02001232 ieee80211_check_fast_xmit(tx->sta);
1233 }
Johannes Berg58d41852007-09-26 17:53:18 +02001234
Johannes Berge039fa42008-05-15 12:55:29 +02001235 info->flags |= IEEE80211_TX_CTL_FIRST_FRAGMENT;
Johannes Berge2ebc742007-07-27 15:43:22 +02001236
Johannes Berg9ae54c82008-01-31 19:48:20 +01001237 return TX_CONTINUE;
Johannes Berge2ebc742007-07-27 15:43:22 +02001238}
1239
Michal Kazior80a83cf2016-05-19 10:37:48 +02001240static struct txq_info *ieee80211_get_txq(struct ieee80211_local *local,
1241 struct ieee80211_vif *vif,
Michal Kaziordbef5362017-01-13 13:32:51 +01001242 struct sta_info *sta,
Michal Kazior80a83cf2016-05-19 10:37:48 +02001243 struct sk_buff *skb)
Felix Fietkauba8c3d62015-03-27 21:30:37 +01001244{
1245 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
Felix Fietkauba8c3d62015-03-27 21:30:37 +01001246 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Felix Fietkauba8c3d62015-03-27 21:30:37 +01001247 struct ieee80211_txq *txq = NULL;
Felix Fietkauba8c3d62015-03-27 21:30:37 +01001248
Felix Fietkauc3732a72016-02-28 15:19:53 +01001249 if ((info->flags & IEEE80211_TX_CTL_SEND_AFTER_DTIM) ||
1250 (info->control.flags & IEEE80211_TX_CTRL_PS_RESPONSE))
Michal Kazior80a83cf2016-05-19 10:37:48 +02001251 return NULL;
Felix Fietkauba8c3d62015-03-27 21:30:37 +01001252
Felix Fietkaucc20ff2c2020-09-08 14:36:57 +02001253 if (!(info->flags & IEEE80211_TX_CTL_HW_80211_ENCAP) &&
John Crispin50ff4772019-11-25 11:04:37 +01001254 unlikely(!ieee80211_is_data_present(hdr->frame_control))) {
Johannes Bergadf8ed02018-08-31 11:31:08 +03001255 if ((!ieee80211_is_mgmt(hdr->frame_control) ||
Sara Sharon0eeb2b62018-09-05 08:06:09 +03001256 ieee80211_is_bufferable_mmpdu(hdr->frame_control) ||
1257 vif->type == NL80211_IFTYPE_STATION) &&
Johannes Bergadf8ed02018-08-31 11:31:08 +03001258 sta && sta->uploaded) {
1259 /*
1260 * This will be NULL if the driver didn't set the
1261 * opt-in hardware flag.
1262 */
1263 txq = sta->sta.txq[IEEE80211_NUM_TIDS];
1264 }
1265 } else if (sta) {
Felix Fietkauba8c3d62015-03-27 21:30:37 +01001266 u8 tid = skb->priority & IEEE80211_QOS_CTL_TID_MASK;
1267
Michal Kaziordbef5362017-01-13 13:32:51 +01001268 if (!sta->uploaded)
1269 return NULL;
1270
1271 txq = sta->sta.txq[tid];
Felix Fietkauba8c3d62015-03-27 21:30:37 +01001272 } else if (vif) {
1273 txq = vif->txq;
1274 }
1275
1276 if (!txq)
Michal Kazior80a83cf2016-05-19 10:37:48 +02001277 return NULL;
Felix Fietkauba8c3d62015-03-27 21:30:37 +01001278
Michal Kazior80a83cf2016-05-19 10:37:48 +02001279 return to_txq_info(txq);
1280}
Felix Fietkauba8c3d62015-03-27 21:30:37 +01001281
Michal Kazior5caa3282016-05-19 10:37:51 +02001282static void ieee80211_set_skb_enqueue_time(struct sk_buff *skb)
1283{
1284 IEEE80211_SKB_CB(skb)->control.enqueue_time = codel_get_time();
1285}
1286
Michal Kazior5caa3282016-05-19 10:37:51 +02001287static u32 codel_skb_len_func(const struct sk_buff *skb)
1288{
1289 return skb->len;
1290}
1291
1292static codel_time_t codel_skb_time_func(const struct sk_buff *skb)
1293{
1294 const struct ieee80211_tx_info *info;
1295
1296 info = (const struct ieee80211_tx_info *)skb->cb;
1297 return info->control.enqueue_time;
1298}
1299
1300static struct sk_buff *codel_dequeue_func(struct codel_vars *cvars,
1301 void *ctx)
1302{
1303 struct ieee80211_local *local;
1304 struct txq_info *txqi;
1305 struct fq *fq;
1306 struct fq_flow *flow;
1307
1308 txqi = ctx;
1309 local = vif_to_sdata(txqi->txq.vif)->local;
1310 fq = &local->fq;
1311
1312 if (cvars == &txqi->def_cvars)
Felix Fietkaubf9009b2020-12-18 19:47:14 +01001313 flow = &txqi->tin.default_flow;
Michal Kazior5caa3282016-05-19 10:37:51 +02001314 else
1315 flow = &fq->flows[cvars - local->cvars];
1316
1317 return fq_flow_dequeue(fq, flow);
1318}
1319
1320static void codel_drop_func(struct sk_buff *skb,
1321 void *ctx)
1322{
1323 struct ieee80211_local *local;
1324 struct ieee80211_hw *hw;
1325 struct txq_info *txqi;
1326
1327 txqi = ctx;
1328 local = vif_to_sdata(txqi->txq.vif)->local;
1329 hw = &local->hw;
1330
1331 ieee80211_free_txskb(hw, skb);
1332}
1333
Michal Kaziorfa962b92016-05-19 10:37:49 +02001334static struct sk_buff *fq_tin_dequeue_func(struct fq *fq,
1335 struct fq_tin *tin,
1336 struct fq_flow *flow)
1337{
Michal Kazior5caa3282016-05-19 10:37:51 +02001338 struct ieee80211_local *local;
1339 struct txq_info *txqi;
1340 struct codel_vars *cvars;
1341 struct codel_params *cparams;
1342 struct codel_stats *cstats;
1343
1344 local = container_of(fq, struct ieee80211_local, fq);
1345 txqi = container_of(tin, struct txq_info, tin);
Toke Høiland-Jørgensen8d51dbb2016-09-12 15:55:43 +02001346 cstats = &txqi->cstats;
Michal Kazior5caa3282016-05-19 10:37:51 +02001347
Toke Høiland-Jørgensen484a54c2017-04-06 11:38:26 +02001348 if (txqi->txq.sta) {
1349 struct sta_info *sta = container_of(txqi->txq.sta,
1350 struct sta_info, sta);
1351 cparams = &sta->cparams;
1352 } else {
1353 cparams = &local->cparams;
1354 }
1355
Felix Fietkaubf9009b2020-12-18 19:47:14 +01001356 if (flow == &tin->default_flow)
Michal Kazior5caa3282016-05-19 10:37:51 +02001357 cvars = &txqi->def_cvars;
1358 else
1359 cvars = &local->cvars[flow - fq->flows];
1360
1361 return codel_dequeue(txqi,
1362 &flow->backlog,
1363 cparams,
1364 cvars,
1365 cstats,
1366 codel_skb_len_func,
1367 codel_skb_time_func,
1368 codel_drop_func,
1369 codel_dequeue_func);
Michal Kaziorfa962b92016-05-19 10:37:49 +02001370}
1371
1372static void fq_skb_free_func(struct fq *fq,
1373 struct fq_tin *tin,
1374 struct fq_flow *flow,
1375 struct sk_buff *skb)
1376{
1377 struct ieee80211_local *local;
1378
1379 local = container_of(fq, struct ieee80211_local, fq);
1380 ieee80211_free_txskb(&local->hw, skb);
1381}
1382
Michal Kazior80a83cf2016-05-19 10:37:48 +02001383static void ieee80211_txq_enqueue(struct ieee80211_local *local,
1384 struct txq_info *txqi,
1385 struct sk_buff *skb)
1386{
Michal Kaziorfa962b92016-05-19 10:37:49 +02001387 struct fq *fq = &local->fq;
1388 struct fq_tin *tin = &txqi->tin;
Felix Fietkauf2af2df2019-03-16 18:06:32 +01001389 u32 flow_idx = fq_flow_idx(fq, skb);
Michal Kazior80a83cf2016-05-19 10:37:48 +02001390
Michal Kazior5caa3282016-05-19 10:37:51 +02001391 ieee80211_set_skb_enqueue_time(skb);
Felix Fietkauf2af2df2019-03-16 18:06:32 +01001392
1393 spin_lock_bh(&fq->lock);
Johannes Berg73bc9e02021-03-19 23:28:01 +01001394 /*
1395 * For management frames, don't really apply codel etc.,
1396 * we don't want to apply any shaping or anything we just
1397 * want to simplify the driver API by having them on the
1398 * txqi.
1399 */
Johannes Bergca47b462021-04-16 13:47:04 +02001400 if (unlikely(txqi->txq.tid == IEEE80211_NUM_TIDS)) {
1401 IEEE80211_SKB_CB(skb)->control.flags |=
1402 IEEE80211_TX_INTCFL_NEED_TXPROCESSING;
Johannes Berg73bc9e02021-03-19 23:28:01 +01001403 __skb_queue_tail(&txqi->frags, skb);
Johannes Bergca47b462021-04-16 13:47:04 +02001404 } else {
Johannes Berg73bc9e02021-03-19 23:28:01 +01001405 fq_tin_enqueue(fq, tin, flow_idx, skb,
1406 fq_skb_free_func);
Johannes Bergca47b462021-04-16 13:47:04 +02001407 }
Felix Fietkauf2af2df2019-03-16 18:06:32 +01001408 spin_unlock_bh(&fq->lock);
Michal Kaziorfa962b92016-05-19 10:37:49 +02001409}
Michal Kazior80a83cf2016-05-19 10:37:48 +02001410
Johannes Berg2a9e2572017-10-06 11:53:33 +02001411static bool fq_vlan_filter_func(struct fq *fq, struct fq_tin *tin,
1412 struct fq_flow *flow, struct sk_buff *skb,
1413 void *data)
1414{
1415 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1416
1417 return info->control.vif == data;
1418}
1419
1420void ieee80211_txq_remove_vlan(struct ieee80211_local *local,
1421 struct ieee80211_sub_if_data *sdata)
1422{
1423 struct fq *fq = &local->fq;
1424 struct txq_info *txqi;
1425 struct fq_tin *tin;
1426 struct ieee80211_sub_if_data *ap;
1427
1428 if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_AP_VLAN))
1429 return;
1430
1431 ap = container_of(sdata->bss, struct ieee80211_sub_if_data, u.ap);
1432
1433 if (!ap->vif.txq)
1434 return;
1435
1436 txqi = to_txq_info(ap->vif.txq);
1437 tin = &txqi->tin;
1438
1439 spin_lock_bh(&fq->lock);
1440 fq_tin_filter(fq, tin, fq_vlan_filter_func, &sdata->vif,
1441 fq_skb_free_func);
1442 spin_unlock_bh(&fq->lock);
1443}
1444
Michal Kaziorfa962b92016-05-19 10:37:49 +02001445void ieee80211_txq_init(struct ieee80211_sub_if_data *sdata,
1446 struct sta_info *sta,
1447 struct txq_info *txqi, int tid)
1448{
1449 fq_tin_init(&txqi->tin);
Michal Kazior5caa3282016-05-19 10:37:51 +02001450 codel_vars_init(&txqi->def_cvars);
Toke Høiland-Jørgensen8d51dbb2016-09-12 15:55:43 +02001451 codel_stats_init(&txqi->cstats);
Toke Høiland-Jørgensenbb42f2d2016-09-22 19:04:20 +02001452 __skb_queue_head_init(&txqi->frags);
Toke Høiland-Jørgensen24336472021-06-23 15:47:55 +02001453 RB_CLEAR_NODE(&txqi->schedule_order);
Michal Kaziorfa962b92016-05-19 10:37:49 +02001454
1455 txqi->txq.vif = &sdata->vif;
1456
Johannes Bergadf8ed02018-08-31 11:31:08 +03001457 if (!sta) {
Michal Kaziorfa962b92016-05-19 10:37:49 +02001458 sdata->vif.txq = &txqi->txq;
1459 txqi->txq.tid = 0;
1460 txqi->txq.ac = IEEE80211_AC_BE;
Johannes Bergadf8ed02018-08-31 11:31:08 +03001461
1462 return;
Michal Kazior80a83cf2016-05-19 10:37:48 +02001463 }
Johannes Bergadf8ed02018-08-31 11:31:08 +03001464
1465 if (tid == IEEE80211_NUM_TIDS) {
Sara Sharon0eeb2b62018-09-05 08:06:09 +03001466 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,
1469 STA_MMPDU_TXQ))
1470 return;
1471 } else if (!ieee80211_hw_check(&sdata->local->hw,
1472 BUFF_MMPDU_TXQ)) {
1473 /* Drivers need to opt in to the bufferable MMPDU TXQ */
Johannes Bergadf8ed02018-08-31 11:31:08 +03001474 return;
Sara Sharon0eeb2b62018-09-05 08:06:09 +03001475 }
Johannes Bergadf8ed02018-08-31 11:31:08 +03001476 txqi->txq.ac = IEEE80211_AC_VO;
1477 } else {
1478 txqi->txq.ac = ieee80211_ac_from_tid(tid);
1479 }
1480
1481 txqi->txq.sta = &sta->sta;
1482 txqi->txq.tid = tid;
1483 sta->sta.txq[tid] = &txqi->txq;
Michal Kaziorfa962b92016-05-19 10:37:49 +02001484}
Michal Kazior80a83cf2016-05-19 10:37:48 +02001485
Michal Kaziorfa962b92016-05-19 10:37:49 +02001486void ieee80211_txq_purge(struct ieee80211_local *local,
1487 struct txq_info *txqi)
1488{
1489 struct fq *fq = &local->fq;
1490 struct fq_tin *tin = &txqi->tin;
1491
Toke Høiland-Jørgensenb4809e92018-12-18 17:02:08 -08001492 spin_lock_bh(&fq->lock);
Michal Kaziorfa962b92016-05-19 10:37:49 +02001493 fq_tin_reset(fq, tin, fq_skb_free_func);
Toke Høiland-Jørgensenbb42f2d2016-09-22 19:04:20 +02001494 ieee80211_purge_tx_queue(&local->hw, &txqi->frags);
Toke Høiland-Jørgensenb4809e92018-12-18 17:02:08 -08001495 spin_unlock_bh(&fq->lock);
1496
Toke Høiland-Jørgensen24336472021-06-23 15:47:55 +02001497 ieee80211_unschedule_txq(&local->hw, &txqi->txq, true);
Michal Kaziorfa962b92016-05-19 10:37:49 +02001498}
1499
Toke Høiland-Jørgensen2fe4a292018-05-08 13:03:50 +02001500void ieee80211_txq_set_params(struct ieee80211_local *local)
1501{
1502 if (local->hw.wiphy->txq_limit)
1503 local->fq.limit = local->hw.wiphy->txq_limit;
1504 else
1505 local->hw.wiphy->txq_limit = local->fq.limit;
1506
1507 if (local->hw.wiphy->txq_memory_limit)
1508 local->fq.memory_limit = local->hw.wiphy->txq_memory_limit;
1509 else
1510 local->hw.wiphy->txq_memory_limit = local->fq.memory_limit;
1511
1512 if (local->hw.wiphy->txq_quantum)
1513 local->fq.quantum = local->hw.wiphy->txq_quantum;
1514 else
1515 local->hw.wiphy->txq_quantum = local->fq.quantum;
1516}
1517
Michal Kaziorfa962b92016-05-19 10:37:49 +02001518int ieee80211_txq_setup_flows(struct ieee80211_local *local)
1519{
1520 struct fq *fq = &local->fq;
1521 int ret;
Michal Kazior5caa3282016-05-19 10:37:51 +02001522 int i;
Toke Høiland-Jørgensen3ff23cd2016-09-23 21:59:11 +02001523 bool supp_vht = false;
1524 enum nl80211_band band;
Michal Kaziorfa962b92016-05-19 10:37:49 +02001525
1526 if (!local->ops->wake_tx_queue)
1527 return 0;
1528
1529 ret = fq_init(fq, 4096);
1530 if (ret)
1531 return ret;
1532
Toke Høiland-Jørgensen3ff23cd2016-09-23 21:59:11 +02001533 /*
1534 * If the hardware doesn't support VHT, it is safe to limit the maximum
1535 * queue size. 4 Mbytes is 64 max-size aggregates in 802.11n.
1536 */
1537 for (band = 0; band < NUM_NL80211_BANDS; band++) {
1538 struct ieee80211_supported_band *sband;
1539
1540 sband = local->hw.wiphy->bands[band];
1541 if (!sband)
1542 continue;
1543
1544 supp_vht = supp_vht || sband->vht_cap.vht_supported;
1545 }
1546
1547 if (!supp_vht)
1548 fq->memory_limit = 4 << 20; /* 4 Mbytes */
1549
Michal Kazior5caa3282016-05-19 10:37:51 +02001550 codel_params_init(&local->cparams);
Michal Kazior5caa3282016-05-19 10:37:51 +02001551 local->cparams.interval = MS2TIME(100);
1552 local->cparams.target = MS2TIME(20);
1553 local->cparams.ecn = true;
1554
1555 local->cvars = kcalloc(fq->flows_cnt, sizeof(local->cvars[0]),
1556 GFP_KERNEL);
1557 if (!local->cvars) {
Michal Kazior59a7c822016-06-29 14:00:34 +02001558 spin_lock_bh(&fq->lock);
Michal Kazior5caa3282016-05-19 10:37:51 +02001559 fq_reset(fq, fq_skb_free_func);
Michal Kazior59a7c822016-06-29 14:00:34 +02001560 spin_unlock_bh(&fq->lock);
Michal Kazior5caa3282016-05-19 10:37:51 +02001561 return -ENOMEM;
1562 }
1563
1564 for (i = 0; i < fq->flows_cnt; i++)
1565 codel_vars_init(&local->cvars[i]);
1566
Toke Høiland-Jørgensen2fe4a292018-05-08 13:03:50 +02001567 ieee80211_txq_set_params(local);
1568
Michal Kaziorfa962b92016-05-19 10:37:49 +02001569 return 0;
1570}
1571
1572void ieee80211_txq_teardown_flows(struct ieee80211_local *local)
1573{
1574 struct fq *fq = &local->fq;
1575
1576 if (!local->ops->wake_tx_queue)
1577 return;
1578
Michal Kazior5caa3282016-05-19 10:37:51 +02001579 kfree(local->cvars);
1580 local->cvars = NULL;
1581
Michal Kazior59a7c822016-06-29 14:00:34 +02001582 spin_lock_bh(&fq->lock);
Michal Kaziorfa962b92016-05-19 10:37:49 +02001583 fq_reset(fq, fq_skb_free_func);
Michal Kazior59a7c822016-06-29 14:00:34 +02001584 spin_unlock_bh(&fq->lock);
Felix Fietkauba8c3d62015-03-27 21:30:37 +01001585}
1586
Toke Høiland-Jørgensenbb42f2d2016-09-22 19:04:20 +02001587static bool ieee80211_queue_skb(struct ieee80211_local *local,
1588 struct ieee80211_sub_if_data *sdata,
1589 struct sta_info *sta,
1590 struct sk_buff *skb)
1591{
Toke Høiland-Jørgensenbb42f2d2016-09-22 19:04:20 +02001592 struct ieee80211_vif *vif;
1593 struct txq_info *txqi;
Toke Høiland-Jørgensenbb42f2d2016-09-22 19:04:20 +02001594
1595 if (!local->ops->wake_tx_queue ||
1596 sdata->vif.type == NL80211_IFTYPE_MONITOR)
1597 return false;
1598
Toke Høiland-Jørgensenbb42f2d2016-09-22 19:04:20 +02001599 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
1600 sdata = container_of(sdata->bss,
1601 struct ieee80211_sub_if_data, u.ap);
1602
1603 vif = &sdata->vif;
Michal Kaziordbef5362017-01-13 13:32:51 +01001604 txqi = ieee80211_get_txq(local, vif, sta, skb);
Toke Høiland-Jørgensenbb42f2d2016-09-22 19:04:20 +02001605
1606 if (!txqi)
1607 return false;
1608
Toke Høiland-Jørgensenbb42f2d2016-09-22 19:04:20 +02001609 ieee80211_txq_enqueue(local, txqi, skb);
Toke Høiland-Jørgensenbb42f2d2016-09-22 19:04:20 +02001610
Toke Høiland-Jørgensen18667602018-12-18 17:02:06 -08001611 schedule_and_wake_txq(local, txqi);
Toke Høiland-Jørgensenbb42f2d2016-09-22 19:04:20 +02001612
1613 return true;
1614}
1615
Johannes Berg11127e92011-11-16 16:02:47 +01001616static bool ieee80211_tx_frags(struct ieee80211_local *local,
1617 struct ieee80211_vif *vif,
Johannes Berg4fd03282019-10-01 23:26:35 +02001618 struct sta_info *sta,
Johannes Berg11127e92011-11-16 16:02:47 +01001619 struct sk_buff_head *skbs,
1620 bool txpending)
Johannes Berge2ebc742007-07-27 15:43:22 +02001621{
Michal Kazior80a83cf2016-05-19 10:37:48 +02001622 struct ieee80211_tx_control control = {};
Johannes Berg252b86c2011-11-16 15:28:55 +01001623 struct sk_buff *skb, *tmp;
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001624 unsigned long flags;
Johannes Berge2ebc742007-07-27 15:43:22 +02001625
Johannes Berg252b86c2011-11-16 15:28:55 +01001626 skb_queue_walk_safe(skbs, skb, tmp) {
Johannes Berg3a25a8c2012-04-03 16:28:50 +02001627 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1628 int q = info->hw_queue;
1629
1630#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
1631 if (WARN_ON_ONCE(q >= local->hw.queues)) {
1632 __skb_unlink(skb, skbs);
Felix Fietkauc3e77242012-10-08 14:39:33 +02001633 ieee80211_free_txskb(&local->hw, skb);
Johannes Berg3a25a8c2012-04-03 16:28:50 +02001634 continue;
1635 }
1636#endif
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001637
1638 spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001639 if (local->queue_stop_reasons[q] ||
Johannes Berg7bb45682011-02-24 14:42:06 +01001640 (!txpending && !skb_queue_empty(&local->pending[q]))) {
Seth Forshee6c17b772013-02-11 11:21:07 -06001641 if (unlikely(info->flags &
Seth Forsheea7679ed2013-02-25 14:58:05 -06001642 IEEE80211_TX_INTFL_OFFCHAN_TX_OK)) {
1643 if (local->queue_stop_reasons[q] &
1644 ~BIT(IEEE80211_QUEUE_STOP_REASON_OFFCHANNEL)) {
1645 /*
1646 * Drop off-channel frames if queues
1647 * are stopped for any reason other
1648 * than off-channel operation. Never
1649 * queue them.
1650 */
1651 spin_unlock_irqrestore(
1652 &local->queue_stop_reason_lock,
1653 flags);
1654 ieee80211_purge_tx_queue(&local->hw,
1655 skbs);
1656 return true;
1657 }
1658 } else {
1659
Seth Forshee6c17b772013-02-11 11:21:07 -06001660 /*
Seth Forsheea7679ed2013-02-25 14:58:05 -06001661 * Since queue is stopped, queue up frames for
1662 * later transmission from the tx-pending
1663 * tasklet when the queue is woken again.
Seth Forshee6c17b772013-02-11 11:21:07 -06001664 */
Seth Forsheea7679ed2013-02-25 14:58:05 -06001665 if (txpending)
1666 skb_queue_splice_init(skbs,
1667 &local->pending[q]);
1668 else
1669 skb_queue_splice_tail_init(skbs,
1670 &local->pending[q]);
1671
1672 spin_unlock_irqrestore(&local->queue_stop_reason_lock,
1673 flags);
1674 return false;
Seth Forshee6c17b772013-02-11 11:21:07 -06001675 }
Johannes Berg7bb45682011-02-24 14:42:06 +01001676 }
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001677 spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
Tomas Winklerf8e79dd2008-07-24 18:46:44 +03001678
Johannes Berg11127e92011-11-16 16:02:47 +01001679 info->control.vif = vif;
Johannes Berg4fd03282019-10-01 23:26:35 +02001680 control.sta = sta ? &sta->sta : NULL;
Johannes Bergec25acc2010-07-22 17:11:28 +02001681
Johannes Berg252b86c2011-11-16 15:28:55 +01001682 __skb_unlink(skb, skbs);
Michal Kazior80a83cf2016-05-19 10:37:48 +02001683 drv_tx(local, &control, skb);
Johannes Berge2ebc742007-07-27 15:43:22 +02001684 }
Johannes Berg2de8e0d92009-03-23 17:28:35 +01001685
Johannes Berg11127e92011-11-16 16:02:47 +01001686 return true;
1687}
1688
1689/*
1690 * Returns false if the frame couldn't be transmitted but was queued instead.
1691 */
1692static bool __ieee80211_tx(struct ieee80211_local *local,
1693 struct sk_buff_head *skbs, int led_len,
1694 struct sta_info *sta, bool txpending)
1695{
1696 struct ieee80211_tx_info *info;
1697 struct ieee80211_sub_if_data *sdata;
1698 struct ieee80211_vif *vif;
Johannes Berg11127e92011-11-16 16:02:47 +01001699 struct sk_buff *skb;
Colin Ian King958574c2021-03-28 22:37:29 +01001700 bool result;
Johannes Berg11127e92011-11-16 16:02:47 +01001701 __le16 fc;
1702
1703 if (WARN_ON(skb_queue_empty(skbs)))
1704 return true;
1705
1706 skb = skb_peek(skbs);
1707 fc = ((struct ieee80211_hdr *)skb->data)->frame_control;
1708 info = IEEE80211_SKB_CB(skb);
1709 sdata = vif_to_sdata(info->control.vif);
1710 if (sta && !sta->uploaded)
1711 sta = NULL;
1712
Johannes Berg11127e92011-11-16 16:02:47 +01001713 switch (sdata->vif.type) {
1714 case NL80211_IFTYPE_MONITOR:
Aviya Erenfeldd8212182016-08-29 23:25:15 +03001715 if (sdata->u.mntr.flags & MONITOR_FLAG_ACTIVE) {
Johannes Bergc82b5a72013-07-14 23:39:20 +03001716 vif = &sdata->vif;
1717 break;
1718 }
Johannes Berg4b6f1dd2012-04-03 14:35:57 +02001719 sdata = rcu_dereference(local->monitor_sdata);
Johannes Berg3a25a8c2012-04-03 16:28:50 +02001720 if (sdata) {
Johannes Berg4b6f1dd2012-04-03 14:35:57 +02001721 vif = &sdata->vif;
Johannes Berg3a25a8c2012-04-03 16:28:50 +02001722 info->hw_queue =
1723 vif->hw_queue[skb_get_queue_mapping(skb)];
Johannes Berg30686bf2015-06-02 21:39:54 +02001724 } else if (ieee80211_hw_check(&local->hw, QUEUE_CONTROL)) {
Johannes Berg63b4d8b2015-11-24 15:41:50 +01001725 ieee80211_purge_tx_queue(&local->hw, skbs);
Johannes Berg3a25a8c2012-04-03 16:28:50 +02001726 return true;
1727 } else
Johannes Berg4b6f1dd2012-04-03 14:35:57 +02001728 vif = NULL;
Johannes Berg11127e92011-11-16 16:02:47 +01001729 break;
1730 case NL80211_IFTYPE_AP_VLAN:
1731 sdata = container_of(sdata->bss,
1732 struct ieee80211_sub_if_data, u.ap);
Gustavo A. R. Silvafc0561d2020-07-07 15:45:48 -05001733 fallthrough;
Johannes Berg11127e92011-11-16 16:02:47 +01001734 default:
1735 vif = &sdata->vif;
1736 break;
1737 }
1738
Johannes Berg4fd03282019-10-01 23:26:35 +02001739 result = ieee80211_tx_frags(local, vif, sta, skbs, txpending);
Johannes Berg11127e92011-11-16 16:02:47 +01001740
Johannes Berg74e4dbf2011-11-16 15:28:57 +01001741 ieee80211_tpt_led_trig_tx(local, fc, led_len);
Johannes Berg74e4dbf2011-11-16 15:28:57 +01001742
Johannes Berg4db4e0a2011-11-24 14:47:36 +01001743 WARN_ON_ONCE(!skb_queue_empty(skbs));
Johannes Berg252b86c2011-11-16 15:28:55 +01001744
Johannes Berg11127e92011-11-16 16:02:47 +01001745 return result;
Johannes Berge2ebc742007-07-27 15:43:22 +02001746}
1747
Johannes Berg97b045d2008-06-20 01:22:30 +02001748/*
1749 * Invoke TX handlers, return 0 on success and non-zero if the
1750 * frame was dropped or queued.
Toke Høiland-Jørgensenbb42f2d2016-09-22 19:04:20 +02001751 *
1752 * The handlers are split into an early and late part. The latter is everything
1753 * that can be sensitive to reordering, and will be deferred to after packets
1754 * are dequeued from the intermediate queues (when they are enabled).
Johannes Berg97b045d2008-06-20 01:22:30 +02001755 */
Toke Høiland-Jørgensenbb42f2d2016-09-22 19:04:20 +02001756static int invoke_tx_handlers_early(struct ieee80211_tx_data *tx)
Johannes Berg97b045d2008-06-20 01:22:30 +02001757{
Johannes Berg97b045d2008-06-20 01:22:30 +02001758 ieee80211_tx_result res = TX_DROP;
Johannes Berg97b045d2008-06-20 01:22:30 +02001759
Johannes Berg9aa4aee2009-10-29 08:43:48 +01001760#define CALL_TXH(txh) \
1761 do { \
1762 res = txh(tx); \
1763 if (res != TX_CONTINUE) \
1764 goto txh_done; \
1765 } while (0)
Johannes Berg97b045d2008-06-20 01:22:30 +02001766
Kalle Valo5c1b98a2010-01-12 10:42:46 +02001767 CALL_TXH(ieee80211_tx_h_dynamic_ps);
Johannes Berg9aa4aee2009-10-29 08:43:48 +01001768 CALL_TXH(ieee80211_tx_h_check_assoc);
1769 CALL_TXH(ieee80211_tx_h_ps_buf);
Johannes Berga621fa42010-08-27 14:26:54 +03001770 CALL_TXH(ieee80211_tx_h_check_control_port_protocol);
Johannes Berg9aa4aee2009-10-29 08:43:48 +01001771 CALL_TXH(ieee80211_tx_h_select_key);
Johannes Bergc6fcf6b2010-01-17 01:47:59 +01001772
Toke Høiland-Jørgensenbb42f2d2016-09-22 19:04:20 +02001773 txh_done:
1774 if (unlikely(res == TX_DROP)) {
1775 I802_DEBUG_INC(tx->local->tx_handlers_drop);
1776 if (tx->skb)
1777 ieee80211_free_txskb(&tx->local->hw, tx->skb);
1778 else
1779 ieee80211_purge_tx_queue(&tx->local->hw, &tx->skbs);
1780 return -1;
1781 } else if (unlikely(res == TX_QUEUED)) {
1782 I802_DEBUG_INC(tx->local->tx_handlers_queued);
1783 return -1;
1784 }
1785
1786 return 0;
1787}
1788
1789/*
1790 * Late handlers can be called while the sta lock is held. Handlers that can
1791 * cause packets to be generated will cause deadlock!
1792 */
1793static int invoke_tx_handlers_late(struct ieee80211_tx_data *tx)
1794{
1795 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
1796 ieee80211_tx_result res = TX_CONTINUE;
1797
Johannes Bergaa5b5492011-12-02 22:08:52 +01001798 if (unlikely(info->flags & IEEE80211_TX_INTFL_RETRANSMISSION)) {
1799 __skb_queue_tail(&tx->skbs, tx->skb);
1800 tx->skb = NULL;
Johannes Bergc6fcf6b2010-01-17 01:47:59 +01001801 goto txh_done;
Johannes Bergaa5b5492011-12-02 22:08:52 +01001802 }
Johannes Bergc6fcf6b2010-01-17 01:47:59 +01001803
Ryder Lee03c39112021-06-17 18:31:12 +02001804 if (!ieee80211_hw_check(&tx->local->hw, HAS_RATE_CONTROL))
1805 CALL_TXH(ieee80211_tx_h_rate_ctrl);
1806
Johannes Bergc6fcf6b2010-01-17 01:47:59 +01001807 CALL_TXH(ieee80211_tx_h_michael_mic_add);
Johannes Berg9aa4aee2009-10-29 08:43:48 +01001808 CALL_TXH(ieee80211_tx_h_sequence);
1809 CALL_TXH(ieee80211_tx_h_fragment);
Johannes Bergd9e8a702008-06-30 15:10:44 +02001810 /* handlers after fragment must be aware of tx info fragmentation! */
Johannes Berg9aa4aee2009-10-29 08:43:48 +01001811 CALL_TXH(ieee80211_tx_h_stats);
1812 CALL_TXH(ieee80211_tx_h_encrypt);
Johannes Berg30686bf2015-06-02 21:39:54 +02001813 if (!ieee80211_hw_check(&tx->local->hw, HAS_RATE_CONTROL))
Arik Nemtsov8fd369e2011-01-31 22:29:12 +02001814 CALL_TXH(ieee80211_tx_h_calculate_duration);
Johannes Bergd9e8a702008-06-30 15:10:44 +02001815#undef CALL_TXH
1816
1817 txh_done:
Johannes Berg97b045d2008-06-20 01:22:30 +02001818 if (unlikely(res == TX_DROP)) {
Tomas Winkler5479d0e2008-06-28 03:15:03 +03001819 I802_DEBUG_INC(tx->local->tx_handlers_drop);
Johannes Berg252b86c2011-11-16 15:28:55 +01001820 if (tx->skb)
Felix Fietkauc3e77242012-10-08 14:39:33 +02001821 ieee80211_free_txskb(&tx->local->hw, tx->skb);
Johannes Berg252b86c2011-11-16 15:28:55 +01001822 else
Felix Fietkau1f98ab72012-11-10 03:44:14 +01001823 ieee80211_purge_tx_queue(&tx->local->hw, &tx->skbs);
Johannes Berg97b045d2008-06-20 01:22:30 +02001824 return -1;
1825 } else if (unlikely(res == TX_QUEUED)) {
Tomas Winkler5479d0e2008-06-28 03:15:03 +03001826 I802_DEBUG_INC(tx->local->tx_handlers_queued);
Johannes Berg97b045d2008-06-20 01:22:30 +02001827 return -1;
1828 }
1829
1830 return 0;
1831}
1832
Toke Høiland-Jørgensenbb42f2d2016-09-22 19:04:20 +02001833static int invoke_tx_handlers(struct ieee80211_tx_data *tx)
1834{
1835 int r = invoke_tx_handlers_early(tx);
1836
1837 if (r)
1838 return r;
1839 return invoke_tx_handlers_late(tx);
1840}
1841
Felix Fietkau06be6b12013-10-14 18:01:00 +02001842bool ieee80211_tx_prepare_skb(struct ieee80211_hw *hw,
1843 struct ieee80211_vif *vif, struct sk_buff *skb,
1844 int band, struct ieee80211_sta **sta)
1845{
1846 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
1847 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1848 struct ieee80211_tx_data tx;
Johannes Berg88724a82015-03-01 09:10:12 +02001849 struct sk_buff *skb2;
Felix Fietkau06be6b12013-10-14 18:01:00 +02001850
Johannes Berg7c107702015-03-20 14:18:27 +01001851 if (ieee80211_tx_prepare(sdata, &tx, NULL, skb) == TX_DROP)
Felix Fietkau06be6b12013-10-14 18:01:00 +02001852 return false;
1853
1854 info->band = band;
1855 info->control.vif = vif;
1856 info->hw_queue = vif->hw_queue[skb_get_queue_mapping(skb)];
1857
1858 if (invoke_tx_handlers(&tx))
1859 return false;
1860
1861 if (sta) {
1862 if (tx.sta)
1863 *sta = &tx.sta->sta;
1864 else
1865 *sta = NULL;
1866 }
1867
Johannes Berg88724a82015-03-01 09:10:12 +02001868 /* this function isn't suitable for fragmented data frames */
1869 skb2 = __skb_dequeue(&tx.skbs);
1870 if (WARN_ON(skb2 != skb || !skb_queue_empty(&tx.skbs))) {
1871 ieee80211_free_txskb(hw, skb2);
1872 ieee80211_purge_tx_queue(hw, &tx.skbs);
1873 return false;
1874 }
1875
Felix Fietkau06be6b12013-10-14 18:01:00 +02001876 return true;
1877}
1878EXPORT_SYMBOL(ieee80211_tx_prepare_skb);
1879
Johannes Berg7bb45682011-02-24 14:42:06 +01001880/*
1881 * Returns false if the frame couldn't be transmitted but was queued instead.
1882 */
1883static bool ieee80211_tx(struct ieee80211_sub_if_data *sdata,
Johannes Berg7c107702015-03-20 14:18:27 +01001884 struct sta_info *sta, struct sk_buff *skb,
Mathy Vanhoef08aca292020-07-23 14:01:52 +04001885 bool txpending)
Johannes Berge2ebc742007-07-27 15:43:22 +02001886{
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001887 struct ieee80211_local *local = sdata->local;
Johannes Berg5cf121c2008-02-25 16:27:43 +01001888 struct ieee80211_tx_data tx;
Johannes Berg97b045d2008-06-20 01:22:30 +02001889 ieee80211_tx_result res_prepare;
Johannes Berge039fa42008-05-15 12:55:29 +02001890 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Johannes Berg7bb45682011-02-24 14:42:06 +01001891 bool result = true;
Johannes Berg74e4dbf2011-11-16 15:28:57 +01001892 int led_len;
Johannes Berge2ebc742007-07-27 15:43:22 +02001893
Johannes Berge2ebc742007-07-27 15:43:22 +02001894 if (unlikely(skb->len < 10)) {
1895 dev_kfree_skb(skb);
Johannes Berg7bb45682011-02-24 14:42:06 +01001896 return true;
Johannes Berge2ebc742007-07-27 15:43:22 +02001897 }
1898
Johannes Berg58d41852007-09-26 17:53:18 +02001899 /* initialises tx */
Johannes Berg74e4dbf2011-11-16 15:28:57 +01001900 led_len = skb->len;
Johannes Berg7c107702015-03-20 14:18:27 +01001901 res_prepare = ieee80211_tx_prepare(sdata, &tx, sta, skb);
Johannes Berge2ebc742007-07-27 15:43:22 +02001902
Johannes Bergcd8ffc82009-03-23 17:28:41 +01001903 if (unlikely(res_prepare == TX_DROP)) {
Felix Fietkauc3e77242012-10-08 14:39:33 +02001904 ieee80211_free_txskb(&local->hw, skb);
Johannes Berg55de9082012-07-26 17:24:39 +02001905 return true;
Johannes Bergcd8ffc82009-03-23 17:28:41 +01001906 } else if (unlikely(res_prepare == TX_QUEUED)) {
Johannes Berg55de9082012-07-26 17:24:39 +02001907 return true;
Johannes Berge2ebc742007-07-27 15:43:22 +02001908 }
1909
Johannes Berg3a25a8c2012-04-03 16:28:50 +02001910 /* set up hw_queue value early */
1911 if (!(info->flags & IEEE80211_TX_CTL_TX_OFFCHAN) ||
Johannes Berg30686bf2015-06-02 21:39:54 +02001912 !ieee80211_hw_check(&local->hw, QUEUE_CONTROL))
Johannes Berg3a25a8c2012-04-03 16:28:50 +02001913 info->hw_queue =
1914 sdata->vif.hw_queue[skb_get_queue_mapping(skb)];
1915
Toke Høiland-Jørgensenbb42f2d2016-09-22 19:04:20 +02001916 if (invoke_tx_handlers_early(&tx))
Bob Copeland6eae4a62018-09-05 06:22:59 -04001917 return true;
Toke Høiland-Jørgensenbb42f2d2016-09-22 19:04:20 +02001918
1919 if (ieee80211_queue_skb(local, sdata, tx.sta, tx.skb))
1920 return true;
1921
1922 if (!invoke_tx_handlers_late(&tx))
Johannes Berg74e4dbf2011-11-16 15:28:57 +01001923 result = __ieee80211_tx(local, &tx.skbs, led_len,
1924 tx.sta, txpending);
Johannes Berg55de9082012-07-26 17:24:39 +02001925
Johannes Berg7bb45682011-02-24 14:42:06 +01001926 return result;
Johannes Berge2ebc742007-07-27 15:43:22 +02001927}
1928
1929/* device xmit handlers */
1930
Johannes Berg14f46c12020-10-09 13:25:41 +02001931enum ieee80211_encrypt {
1932 ENCRYPT_NO,
1933 ENCRYPT_MGMT,
1934 ENCRYPT_DATA,
1935};
1936
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +05301937static int ieee80211_skb_resize(struct ieee80211_sub_if_data *sdata,
Johannes Berg23c07522008-05-29 10:38:53 +02001938 struct sk_buff *skb,
Johannes Berg14f46c12020-10-09 13:25:41 +02001939 int head_need,
1940 enum ieee80211_encrypt encrypt)
Johannes Berg23c07522008-05-29 10:38:53 +02001941{
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +05301942 struct ieee80211_local *local = sdata->local;
Felix Fietkau9d0f50b2019-01-29 11:10:57 +01001943 bool enc_tailroom;
Johannes Berg23c07522008-05-29 10:38:53 +02001944 int tail_need = 0;
1945
Johannes Berg14f46c12020-10-09 13:25:41 +02001946 enc_tailroom = encrypt == ENCRYPT_MGMT ||
1947 (encrypt == ENCRYPT_DATA &&
1948 sdata->crypto_tx_tailroom_needed_cnt);
Felix Fietkau9d0f50b2019-01-29 11:10:57 +01001949
1950 if (enc_tailroom) {
Johannes Berg23c07522008-05-29 10:38:53 +02001951 tail_need = IEEE80211_ENCRYPT_TAILROOM;
1952 tail_need -= skb_tailroom(skb);
1953 tail_need = max_t(int, tail_need, 0);
1954 }
1955
Ido Yarivc70f59a2014-07-29 15:39:14 +03001956 if (skb_cloned(skb) &&
Johannes Berg30686bf2015-06-02 21:39:54 +02001957 (!ieee80211_hw_check(&local->hw, SUPPORTS_CLONED_SKBS) ||
Felix Fietkau9d0f50b2019-01-29 11:10:57 +01001958 !skb_clone_writable(skb, ETH_HLEN) || enc_tailroom))
Johannes Berg23c07522008-05-29 10:38:53 +02001959 I802_DEBUG_INC(local->tx_expand_skb_head_cloned);
Felix Fietkau4cd06a32010-12-18 19:30:49 +01001960 else if (head_need || tail_need)
Johannes Berg23c07522008-05-29 10:38:53 +02001961 I802_DEBUG_INC(local->tx_expand_skb_head);
Felix Fietkau4cd06a32010-12-18 19:30:49 +01001962 else
1963 return 0;
Johannes Berg23c07522008-05-29 10:38:53 +02001964
1965 if (pskb_expand_head(skb, head_need, tail_need, GFP_ATOMIC)) {
Joe Perches0fb9a9e2010-08-20 16:25:38 -07001966 wiphy_debug(local->hw.wiphy,
1967 "failed to reallocate TX buffer\n");
Johannes Berg23c07522008-05-29 10:38:53 +02001968 return -ENOMEM;
1969 }
1970
Johannes Berg23c07522008-05-29 10:38:53 +02001971 return 0;
1972}
1973
Johannes Berg7c107702015-03-20 14:18:27 +01001974void ieee80211_xmit(struct ieee80211_sub_if_data *sdata,
Mathy Vanhoef08aca292020-07-23 14:01:52 +04001975 struct sta_info *sta, struct sk_buff *skb)
Johannes Berge2ebc742007-07-27 15:43:22 +02001976{
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001977 struct ieee80211_local *local = sdata->local;
Johannes Berge039fa42008-05-15 12:55:29 +02001978 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Johannes Berg14f46c12020-10-09 13:25:41 +02001979 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
Johannes Berge2ebc742007-07-27 15:43:22 +02001980 int headroom;
Johannes Berg14f46c12020-10-09 13:25:41 +02001981 enum ieee80211_encrypt encrypt;
Johannes Berge2ebc742007-07-27 15:43:22 +02001982
Johannes Berg14f46c12020-10-09 13:25:41 +02001983 if (info->flags & IEEE80211_TX_INTFL_DONT_ENCRYPT)
1984 encrypt = ENCRYPT_NO;
1985 else if (ieee80211_is_mgmt(hdr->frame_control))
1986 encrypt = ENCRYPT_MGMT;
1987 else
1988 encrypt = ENCRYPT_DATA;
Johannes Berg23c07522008-05-29 10:38:53 +02001989
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001990 headroom = local->tx_headroom;
Johannes Berg14f46c12020-10-09 13:25:41 +02001991 if (encrypt != ENCRYPT_NO)
Max Stepanov2475b1cc2013-03-24 14:23:27 +02001992 headroom += sdata->encrypt_headroom;
Johannes Berg23c07522008-05-29 10:38:53 +02001993 headroom -= skb_headroom(skb);
1994 headroom = max_t(int, 0, headroom);
1995
Johannes Berg14f46c12020-10-09 13:25:41 +02001996 if (ieee80211_skb_resize(sdata, skb, headroom, encrypt)) {
Felix Fietkauc3e77242012-10-08 14:39:33 +02001997 ieee80211_free_txskb(&local->hw, skb);
Johannes Berg3b8d81e02009-06-17 17:43:56 +02001998 return;
Johannes Berge2ebc742007-07-27 15:43:22 +02001999 }
2000
Johannes Berg14f46c12020-10-09 13:25:41 +02002001 /* reload after potential resize */
Steve deRosier740c1aa2010-09-11 20:01:31 -07002002 hdr = (struct ieee80211_hdr *) skb->data;
Johannes Berg5061b0c2009-07-14 00:33:34 +02002003 info->control.vif = &sdata->vif;
Johannes Bergcd8ffc82009-03-23 17:28:41 +01002004
Marco Porsch3f52b7e2013-01-30 18:14:08 +01002005 if (ieee80211_vif_is_mesh(&sdata->vif)) {
2006 if (ieee80211_is_data(hdr->frame_control) &&
2007 is_unicast_ether_addr(hdr->addr1)) {
Johannes Bergbf7cd942013-02-15 14:40:31 +01002008 if (mesh_nexthop_resolve(sdata, skb))
Marco Porsch3f52b7e2013-01-30 18:14:08 +01002009 return; /* skb queued: don't free */
2010 } else {
2011 ieee80211_mps_set_frame_flags(sdata, NULL, hdr);
2012 }
Johannes Berg98aed9f2012-03-27 14:18:36 +02002013 }
Javier Cardonacca89492009-08-10 17:29:29 -07002014
Javier Cardona2154c81c2011-09-07 17:49:53 -07002015 ieee80211_set_qos_hdr(sdata, skb);
Mathy Vanhoef08aca292020-07-23 14:01:52 +04002016 ieee80211_tx(sdata, sta, skb, false);
Johannes Berge2ebc742007-07-27 15:43:22 +02002017}
2018
Mathy Vanhoefbddc0c42021-05-30 15:32:26 +02002019static bool ieee80211_validate_radiotap_len(struct sk_buff *skb)
Johannes Berg73b9f032011-10-07 14:01:26 +02002020{
Johannes Berg73b9f032011-10-07 14:01:26 +02002021 struct ieee80211_radiotap_header *rthdr =
Mathy Vanhoefbddc0c42021-05-30 15:32:26 +02002022 (struct ieee80211_radiotap_header *)skb->data;
Johannes Berg73b9f032011-10-07 14:01:26 +02002023
Mathy Vanhoefcb17ed22020-07-23 14:01:53 +04002024 /* check for not even having the fixed radiotap header part */
2025 if (unlikely(skb->len < sizeof(struct ieee80211_radiotap_header)))
2026 return false; /* too short to be possibly valid */
2027
2028 /* is it a header version we can trust to find length from? */
2029 if (unlikely(rthdr->it_version))
2030 return false; /* only version 0 is supported */
2031
2032 /* does the skb contain enough to deliver on the alleged length? */
2033 if (unlikely(skb->len < ieee80211_get_radiotap_len(skb->data)))
2034 return false; /* skb too short for claimed rt header extent */
2035
Mathy Vanhoefbddc0c42021-05-30 15:32:26 +02002036 return true;
2037}
2038
2039bool ieee80211_parse_tx_radiotap(struct sk_buff *skb,
2040 struct net_device *dev)
2041{
2042 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
2043 struct ieee80211_radiotap_iterator iterator;
2044 struct ieee80211_radiotap_header *rthdr =
2045 (struct ieee80211_radiotap_header *) skb->data;
2046 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
2047 int ret = ieee80211_radiotap_iterator_init(&iterator, rthdr, skb->len,
2048 NULL);
2049 u16 txflags;
2050 u16 rate = 0;
2051 bool rate_found = false;
2052 u8 rate_retries = 0;
2053 u16 rate_flags = 0;
2054 u8 mcs_known, mcs_flags, mcs_bw;
2055 u16 vht_known;
2056 u8 vht_mcs = 0, vht_nss = 0;
2057 int i;
2058
2059 if (!ieee80211_validate_radiotap_len(skb))
2060 return false;
2061
Johannes Berg73b9f032011-10-07 14:01:26 +02002062 info->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT |
2063 IEEE80211_TX_CTL_DONTFRAG;
2064
2065 /*
2066 * for every radiotap entry that is present
2067 * (ieee80211_radiotap_iterator_next returns -ENOENT when no more
2068 * entries present, or -EINVAL on error)
2069 */
2070
2071 while (!ret) {
2072 ret = ieee80211_radiotap_iterator_next(&iterator);
2073
2074 if (ret)
2075 continue;
2076
2077 /* see if this argument is something we can use */
2078 switch (iterator.this_arg_index) {
2079 /*
2080 * You must take care when dereferencing iterator.this_arg
2081 * for multibyte types... the pointer is not aligned. Use
2082 * get_unaligned((type *)iterator.this_arg) to dereference
2083 * iterator.this_arg for type "type" safely on all arches.
2084 */
2085 case IEEE80211_RADIOTAP_FLAGS:
2086 if (*iterator.this_arg & IEEE80211_RADIOTAP_F_FCS) {
2087 /*
2088 * this indicates that the skb we have been
2089 * handed has the 32-bit FCS CRC at the end...
2090 * we should react to that by snipping it off
2091 * because it will be recomputed and added
2092 * on transmission
2093 */
2094 if (skb->len < (iterator._max_length + FCS_LEN))
2095 return false;
2096
2097 skb_trim(skb, skb->len - FCS_LEN);
2098 }
2099 if (*iterator.this_arg & IEEE80211_RADIOTAP_F_WEP)
2100 info->flags &= ~IEEE80211_TX_INTFL_DONT_ENCRYPT;
2101 if (*iterator.this_arg & IEEE80211_RADIOTAP_F_FRAG)
2102 info->flags &= ~IEEE80211_TX_CTL_DONTFRAG;
2103 break;
2104
2105 case IEEE80211_RADIOTAP_TX_FLAGS:
2106 txflags = get_unaligned_le16(iterator.this_arg);
2107 if (txflags & IEEE80211_RADIOTAP_F_TX_NOACK)
2108 info->flags |= IEEE80211_TX_CTL_NO_ACK;
Mathy Vanhoefe02281e2020-07-23 14:01:49 +04002109 if (txflags & IEEE80211_RADIOTAP_F_TX_NOSEQNO)
2110 info->control.flags |= IEEE80211_TX_CTRL_NO_SEQNO;
Mathy Vanhoef30df8132020-11-04 10:18:19 +04002111 if (txflags & IEEE80211_RADIOTAP_F_TX_ORDER)
2112 info->control.flags |=
2113 IEEE80211_TX_CTRL_DONT_REORDER;
Johannes Berg73b9f032011-10-07 14:01:26 +02002114 break;
2115
Sven Eckelmanndfdfc2b2016-01-26 17:11:13 +01002116 case IEEE80211_RADIOTAP_RATE:
2117 rate = *iterator.this_arg;
2118 rate_flags = 0;
2119 rate_found = true;
2120 break;
2121
2122 case IEEE80211_RADIOTAP_DATA_RETRIES:
2123 rate_retries = *iterator.this_arg;
2124 break;
2125
2126 case IEEE80211_RADIOTAP_MCS:
2127 mcs_known = iterator.this_arg[0];
2128 mcs_flags = iterator.this_arg[1];
2129 if (!(mcs_known & IEEE80211_RADIOTAP_MCS_HAVE_MCS))
2130 break;
2131
2132 rate_found = true;
2133 rate = iterator.this_arg[2];
2134 rate_flags = IEEE80211_TX_RC_MCS;
2135
2136 if (mcs_known & IEEE80211_RADIOTAP_MCS_HAVE_GI &&
2137 mcs_flags & IEEE80211_RADIOTAP_MCS_SGI)
2138 rate_flags |= IEEE80211_TX_RC_SHORT_GI;
2139
Sven Eckelmannf66b60f2016-02-24 16:25:49 +01002140 mcs_bw = mcs_flags & IEEE80211_RADIOTAP_MCS_BW_MASK;
Sven Eckelmanndfdfc2b2016-01-26 17:11:13 +01002141 if (mcs_known & IEEE80211_RADIOTAP_MCS_HAVE_BW &&
Sven Eckelmannf66b60f2016-02-24 16:25:49 +01002142 mcs_bw == IEEE80211_RADIOTAP_MCS_BW_40)
Sven Eckelmanndfdfc2b2016-01-26 17:11:13 +01002143 rate_flags |= IEEE80211_TX_RC_40_MHZ_WIDTH;
Philipp Borgersf1864e12020-12-19 18:07:10 +01002144
2145 if (mcs_known & IEEE80211_RADIOTAP_MCS_HAVE_FEC &&
2146 mcs_flags & IEEE80211_RADIOTAP_MCS_FEC_LDPC)
2147 info->flags |= IEEE80211_TX_CTL_LDPC;
Philipp Borgers549fdd32021-01-25 16:07:44 +01002148
2149 if (mcs_known & IEEE80211_RADIOTAP_MCS_HAVE_STBC) {
2150 u8 stbc = u8_get_bits(mcs_flags,
2151 IEEE80211_RADIOTAP_MCS_STBC_MASK);
2152
2153 info->flags |=
2154 u32_encode_bits(stbc,
2155 IEEE80211_TX_CTL_STBC);
2156 }
Sven Eckelmanndfdfc2b2016-01-26 17:11:13 +01002157 break;
2158
Lorenzo Bianconi646e76b2016-02-23 15:43:35 +01002159 case IEEE80211_RADIOTAP_VHT:
2160 vht_known = get_unaligned_le16(iterator.this_arg);
2161 rate_found = true;
2162
2163 rate_flags = IEEE80211_TX_RC_VHT_MCS;
2164 if ((vht_known & IEEE80211_RADIOTAP_VHT_KNOWN_GI) &&
2165 (iterator.this_arg[2] &
2166 IEEE80211_RADIOTAP_VHT_FLAG_SGI))
2167 rate_flags |= IEEE80211_TX_RC_SHORT_GI;
2168 if (vht_known &
2169 IEEE80211_RADIOTAP_VHT_KNOWN_BANDWIDTH) {
2170 if (iterator.this_arg[3] == 1)
2171 rate_flags |=
2172 IEEE80211_TX_RC_40_MHZ_WIDTH;
2173 else if (iterator.this_arg[3] == 4)
2174 rate_flags |=
2175 IEEE80211_TX_RC_80_MHZ_WIDTH;
2176 else if (iterator.this_arg[3] == 11)
2177 rate_flags |=
2178 IEEE80211_TX_RC_160_MHZ_WIDTH;
2179 }
2180
2181 vht_mcs = iterator.this_arg[4] >> 4;
2182 vht_nss = iterator.this_arg[4] & 0xF;
2183 break;
2184
Johannes Berg73b9f032011-10-07 14:01:26 +02002185 /*
2186 * Please update the file
Mauro Carvalho Chehab429ff872020-04-30 18:03:59 +02002187 * Documentation/networking/mac80211-injection.rst
Johannes Berg73b9f032011-10-07 14:01:26 +02002188 * when parsing new fields here.
2189 */
2190
2191 default:
2192 break;
2193 }
2194 }
2195
2196 if (ret != -ENOENT) /* ie, if we didn't simply run out of fields */
2197 return false;
2198
Sven Eckelmanndfdfc2b2016-01-26 17:11:13 +01002199 if (rate_found) {
Mathy Vanhoefbddc0c42021-05-30 15:32:26 +02002200 struct ieee80211_supported_band *sband =
2201 local->hw.wiphy->bands[info->band];
2202
Sven Eckelmanndfdfc2b2016-01-26 17:11:13 +01002203 info->control.flags |= IEEE80211_TX_CTRL_RATE_INJECT;
2204
2205 for (i = 0; i < IEEE80211_TX_MAX_RATES; i++) {
2206 info->control.rates[i].idx = -1;
2207 info->control.rates[i].flags = 0;
2208 info->control.rates[i].count = 0;
2209 }
2210
2211 if (rate_flags & IEEE80211_TX_RC_MCS) {
2212 info->control.rates[0].idx = rate;
Lorenzo Bianconi646e76b2016-02-23 15:43:35 +01002213 } else if (rate_flags & IEEE80211_TX_RC_VHT_MCS) {
2214 ieee80211_rate_set_vht(info->control.rates, vht_mcs,
2215 vht_nss);
Mathy Vanhoefbddc0c42021-05-30 15:32:26 +02002216 } else if (sband) {
Sven Eckelmanndfdfc2b2016-01-26 17:11:13 +01002217 for (i = 0; i < sband->n_bitrates; i++) {
2218 if (rate * 5 != sband->bitrates[i].bitrate)
2219 continue;
2220
2221 info->control.rates[0].idx = i;
2222 break;
2223 }
2224 }
2225
Felix Fietkau07310a62016-03-02 15:54:51 +01002226 if (info->control.rates[0].idx < 0)
2227 info->control.flags &= ~IEEE80211_TX_CTRL_RATE_INJECT;
2228
Sven Eckelmanndfdfc2b2016-01-26 17:11:13 +01002229 info->control.rates[0].flags = rate_flags;
2230 info->control.rates[0].count = min_t(u8, rate_retries + 1,
2231 local->hw.max_rate_tries);
2232 }
2233
Johannes Berg73b9f032011-10-07 14:01:26 +02002234 return true;
2235}
2236
Stephen Hemmingerd0cf9c02009-08-31 19:50:57 +00002237netdev_tx_t ieee80211_monitor_start_xmit(struct sk_buff *skb,
2238 struct net_device *dev)
Johannes Berge2ebc742007-07-27 15:43:22 +02002239{
2240 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
Johannes Berg55de9082012-07-26 17:24:39 +02002241 struct ieee80211_chanctx_conf *chanctx_conf;
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002242 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Helmut Schaaf75f5c62011-08-01 11:32:52 +02002243 struct ieee80211_hdr *hdr;
Johannes Berg5d9cf4a2011-10-07 14:01:23 +02002244 struct ieee80211_sub_if_data *tmp_sdata, *sdata;
Janusz Dziedzicb4932832014-06-05 08:12:57 +02002245 struct cfg80211_chan_def *chandef;
Andy Green9b8a74e2007-07-27 15:43:24 +02002246 u16 len_rthdr;
Johannes Berg5d9cf4a2011-10-07 14:01:23 +02002247 int hdrlen;
Johannes Berge2ebc742007-07-27 15:43:22 +02002248
Mathy Vanhoefcb17ed22020-07-23 14:01:53 +04002249 memset(info, 0, sizeof(*info));
2250 info->flags = IEEE80211_TX_CTL_REQ_TX_STATUS |
2251 IEEE80211_TX_CTL_INJECTED;
Andy Green9b8a74e2007-07-27 15:43:24 +02002252
Mathy Vanhoefbddc0c42021-05-30 15:32:26 +02002253 /* Sanity-check the length of the radiotap header */
2254 if (!ieee80211_validate_radiotap_len(skb))
Mathy Vanhoefcb17ed22020-07-23 14:01:53 +04002255 goto fail;
Andy Green9b8a74e2007-07-27 15:43:24 +02002256
Mathy Vanhoefcb17ed22020-07-23 14:01:53 +04002257 /* we now know there is a radiotap header with a length we can use */
Andy Green9b8a74e2007-07-27 15:43:24 +02002258 len_rthdr = ieee80211_get_radiotap_len(skb->data);
2259
Johannes Berge2ebc742007-07-27 15:43:22 +02002260 /*
2261 * fix up the pointers accounting for the radiotap
2262 * header still being in there. We are being given
2263 * a precooked IEEE80211 header so no need for
2264 * normal processing
2265 */
Andy Green9b8a74e2007-07-27 15:43:24 +02002266 skb_set_mac_header(skb, len_rthdr);
Johannes Berge2ebc742007-07-27 15:43:22 +02002267 /*
Andy Green9b8a74e2007-07-27 15:43:24 +02002268 * these are just fixed to the end of the rt area since we
2269 * don't have any better information and at this point, nobody cares
Johannes Berge2ebc742007-07-27 15:43:22 +02002270 */
Andy Green9b8a74e2007-07-27 15:43:24 +02002271 skb_set_network_header(skb, len_rthdr);
2272 skb_set_transport_header(skb, len_rthdr);
Johannes Berge2ebc742007-07-27 15:43:22 +02002273
Johannes Berg5d9cf4a2011-10-07 14:01:23 +02002274 if (skb->len < len_rthdr + 2)
2275 goto fail;
2276
2277 hdr = (struct ieee80211_hdr *)(skb->data + len_rthdr);
2278 hdrlen = ieee80211_hdrlen(hdr->frame_control);
2279
2280 if (skb->len < len_rthdr + hdrlen)
2281 goto fail;
2282
Helmut Schaaf75f5c62011-08-01 11:32:52 +02002283 /*
2284 * Initialize skb->protocol if the injected frame is a data frame
2285 * carrying a rfc1042 header
2286 */
Johannes Berg5d9cf4a2011-10-07 14:01:23 +02002287 if (ieee80211_is_data(hdr->frame_control) &&
2288 skb->len >= len_rthdr + hdrlen + sizeof(rfc1042_header) + 2) {
2289 u8 *payload = (u8 *)hdr + hdrlen;
2290
Joe Perchesb203ca32012-05-08 18:56:52 +00002291 if (ether_addr_equal(payload, rfc1042_header))
Johannes Berg5d9cf4a2011-10-07 14:01:23 +02002292 skb->protocol = cpu_to_be16((payload[6] << 8) |
2293 payload[7]);
Helmut Schaaf75f5c62011-08-01 11:32:52 +02002294 }
2295
Johannes Berg5d9cf4a2011-10-07 14:01:23 +02002296 rcu_read_lock();
2297
2298 /*
2299 * We process outgoing injected frames that have a local address
2300 * we handle as though they are non-injected frames.
2301 * This code here isn't entirely correct, the local MAC address
2302 * isn't always enough to find the interface to use; for proper
Johannes Berg70d9c592020-11-09 10:57:46 +01002303 * VLAN support we have an nl80211-based mechanism.
Johannes Bergb226a822019-11-22 12:42:42 +01002304 *
2305 * This is necessary, for example, for old hostapd versions that
2306 * don't use nl80211-based management TX/RX.
Johannes Berg5d9cf4a2011-10-07 14:01:23 +02002307 */
2308 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2309
2310 list_for_each_entry_rcu(tmp_sdata, &local->interfaces, list) {
2311 if (!ieee80211_sdata_running(tmp_sdata))
2312 continue;
2313 if (tmp_sdata->vif.type == NL80211_IFTYPE_MONITOR ||
Johannes Berg70d9c592020-11-09 10:57:46 +01002314 tmp_sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
Johannes Berg5d9cf4a2011-10-07 14:01:23 +02002315 continue;
Joe Perchesb203ca32012-05-08 18:56:52 +00002316 if (ether_addr_equal(tmp_sdata->vif.addr, hdr->addr2)) {
Johannes Berg5d9cf4a2011-10-07 14:01:23 +02002317 sdata = tmp_sdata;
2318 break;
2319 }
2320 }
Johannes Berg7351c6b2009-11-19 01:08:30 +01002321
Johannes Berg55de9082012-07-26 17:24:39 +02002322 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
2323 if (!chanctx_conf) {
2324 tmp_sdata = rcu_dereference(local->monitor_sdata);
2325 if (tmp_sdata)
2326 chanctx_conf =
2327 rcu_dereference(tmp_sdata->vif.chanctx_conf);
2328 }
Johannes Berg55de9082012-07-26 17:24:39 +02002329
Felix Fietkaub4a7ff72013-01-13 23:10:26 +01002330 if (chanctx_conf)
Janusz Dziedzicb4932832014-06-05 08:12:57 +02002331 chandef = &chanctx_conf->def;
Felix Fietkaub4a7ff72013-01-13 23:10:26 +01002332 else if (!local->use_chanctx)
Janusz Dziedzicb4932832014-06-05 08:12:57 +02002333 chandef = &local->_oper_chandef;
Felix Fietkaub4a7ff72013-01-13 23:10:26 +01002334 else
2335 goto fail_rcu;
Johannes Berg55de9082012-07-26 17:24:39 +02002336
2337 /*
2338 * Frame injection is not allowed if beaconing is not allowed
2339 * or if we need radar detection. Beaconing is usually not allowed when
2340 * the mode or operation (Adhoc, AP, Mesh) does not support DFS.
2341 * Passive scan is also used in world regulatory domains where
2342 * your country is not known and as such it should be treated as
2343 * NO TX unless the channel is explicitly allowed in which case
2344 * your current regulatory domain would not have the passive scan
2345 * flag.
2346 *
2347 * Since AP mode uses monitor interfaces to inject/TX management
2348 * frames we can make AP mode the exception to this rule once it
2349 * supports radar detection as its implementation can deal with
2350 * radar detection by itself. We can do that later by adding a
2351 * monitor flag interfaces used for AP support.
2352 */
Janusz Dziedzicb4932832014-06-05 08:12:57 +02002353 if (!cfg80211_reg_can_beacon(local->hw.wiphy, chandef,
2354 sdata->vif.type))
Johannes Berg55de9082012-07-26 17:24:39 +02002355 goto fail_rcu;
2356
Johannes Berg73c4e192014-11-09 18:50:09 +02002357 info->band = chandef->chan->band;
Lorenzo Bianconi109843b02016-02-19 12:18:01 +01002358
Johan Almbladh96a71092021-04-01 18:44:55 +02002359 /* Initialize skb->priority according to frame type and TID class,
2360 * with respect to the sub interface that the frame will actually
2361 * be transmitted on. If the DONT_REORDER flag is set, the original
2362 * skb-priority is preserved to assure frames injected with this
2363 * flag are not reordered relative to each other.
2364 */
2365 ieee80211_select_queue_80211(sdata, skb, hdr);
2366 skb_set_queue_mapping(skb, ieee80211_ac_from_tid(skb->priority));
2367
Mathy Vanhoefbddc0c42021-05-30 15:32:26 +02002368 /*
2369 * Process the radiotap header. This will now take into account the
2370 * selected chandef above to accurately set injection rates and
2371 * retransmissions.
2372 */
2373 if (!ieee80211_parse_tx_radiotap(skb, dev))
2374 goto fail_rcu;
2375
Mathy Vanhoefcb17ed22020-07-23 14:01:53 +04002376 /* remove the injection radiotap header */
2377 skb_pull(skb, len_rthdr);
Lorenzo Bianconi109843b02016-02-19 12:18:01 +01002378
Mathy Vanhoef08aca292020-07-23 14:01:52 +04002379 ieee80211_xmit(sdata, NULL, skb);
Johannes Berg5d9cf4a2011-10-07 14:01:23 +02002380 rcu_read_unlock();
2381
Johannes Berge2ebc742007-07-27 15:43:22 +02002382 return NETDEV_TX_OK;
Andy Green9b8a74e2007-07-27 15:43:24 +02002383
Johannes Berg55de9082012-07-26 17:24:39 +02002384fail_rcu:
2385 rcu_read_unlock();
Andy Green9b8a74e2007-07-27 15:43:24 +02002386fail:
2387 dev_kfree_skb(skb);
2388 return NETDEV_TX_OK; /* meaning, we dealt with the skb */
Johannes Berge2ebc742007-07-27 15:43:22 +02002389}
2390
Johannes Berg97ffe752015-03-21 09:13:45 +01002391static inline bool ieee80211_is_tdls_setup(struct sk_buff *skb)
Matti Gottliebad38bfc2013-11-18 19:06:45 +02002392{
Johannes Berg97ffe752015-03-21 09:13:45 +01002393 u16 ethertype = (skb->data[12] << 8) | skb->data[13];
Matti Gottliebad38bfc2013-11-18 19:06:45 +02002394
Johannes Berg97ffe752015-03-21 09:13:45 +01002395 return ethertype == ETH_P_TDLS &&
2396 skb->len > 14 &&
2397 skb->data[14] == WLAN_TDLS_SNAP_RFTYPE;
2398}
2399
John Crispin50ff4772019-11-25 11:04:37 +01002400int ieee80211_lookup_ra_sta(struct ieee80211_sub_if_data *sdata,
2401 struct sk_buff *skb,
2402 struct sta_info **sta_out)
Johannes Berg97ffe752015-03-21 09:13:45 +01002403{
2404 struct sta_info *sta;
2405
2406 switch (sdata->vif.type) {
2407 case NL80211_IFTYPE_AP_VLAN:
2408 sta = rcu_dereference(sdata->u.vlan.sta);
2409 if (sta) {
2410 *sta_out = sta;
2411 return 0;
2412 } else if (sdata->wdev.use_4addr) {
2413 return -ENOLINK;
2414 }
Gustavo A. R. Silvafc0561d2020-07-07 15:45:48 -05002415 fallthrough;
Johannes Berg97ffe752015-03-21 09:13:45 +01002416 case NL80211_IFTYPE_AP:
2417 case NL80211_IFTYPE_OCB:
2418 case NL80211_IFTYPE_ADHOC:
2419 if (is_multicast_ether_addr(skb->data)) {
2420 *sta_out = ERR_PTR(-ENOENT);
2421 return 0;
2422 }
2423 sta = sta_info_get_bss(sdata, skb->data);
2424 break;
Johannes Berg97ffe752015-03-21 09:13:45 +01002425#ifdef CONFIG_MAC80211_MESH
2426 case NL80211_IFTYPE_MESH_POINT:
2427 /* determined much later */
2428 *sta_out = NULL;
2429 return 0;
2430#endif
2431 case NL80211_IFTYPE_STATION:
2432 if (sdata->wdev.wiphy->flags & WIPHY_FLAG_SUPPORTS_TDLS) {
2433 sta = sta_info_get(sdata, skb->data);
Johannes Berg11d62ca2016-09-13 08:28:22 +02002434 if (sta && test_sta_flag(sta, WLAN_STA_TDLS_PEER)) {
2435 if (test_sta_flag(sta,
2436 WLAN_STA_TDLS_PEER_AUTH)) {
Johannes Berg97ffe752015-03-21 09:13:45 +01002437 *sta_out = sta;
2438 return 0;
2439 }
2440
2441 /*
2442 * TDLS link during setup - throw out frames to
2443 * peer. Allow TDLS-setup frames to unauthorized
2444 * peers for the special case of a link teardown
2445 * after a TDLS sta is removed due to being
2446 * unreachable.
2447 */
Johannes Berg11d62ca2016-09-13 08:28:22 +02002448 if (!ieee80211_is_tdls_setup(skb))
Johannes Berg97ffe752015-03-21 09:13:45 +01002449 return -EINVAL;
2450 }
2451
2452 }
2453
2454 sta = sta_info_get(sdata, sdata->u.mgd.bssid);
2455 if (!sta)
2456 return -ENOLINK;
2457 break;
2458 default:
2459 return -EINVAL;
2460 }
2461
2462 *sta_out = sta ?: ERR_PTR(-ENOENT);
2463 return 0;
Matti Gottliebad38bfc2013-11-18 19:06:45 +02002464}
2465
Markus Theila7528192020-05-27 18:03:34 +02002466static u16 ieee80211_store_ack_skb(struct ieee80211_local *local,
John Crispin5d8983c2019-10-29 10:13:02 +01002467 struct sk_buff *skb,
Markus Theila7528192020-05-27 18:03:34 +02002468 u32 *info_flags,
2469 u64 *cookie)
John Crispin5d8983c2019-10-29 10:13:02 +01002470{
Markus Theila7528192020-05-27 18:03:34 +02002471 struct sk_buff *ack_skb;
John Crispin5d8983c2019-10-29 10:13:02 +01002472 u16 info_id = 0;
2473
Markus Theila7528192020-05-27 18:03:34 +02002474 if (skb->sk)
2475 ack_skb = skb_clone_sk(skb);
2476 else
2477 ack_skb = skb_clone(skb, GFP_ATOMIC);
2478
John Crispin5d8983c2019-10-29 10:13:02 +01002479 if (ack_skb) {
2480 unsigned long flags;
2481 int id;
2482
2483 spin_lock_irqsave(&local->ack_status_lock, flags);
2484 id = idr_alloc(&local->ack_status_frames, ack_skb,
Johannes Bergf2b18ba2020-01-15 12:25:50 +01002485 1, 0x2000, GFP_ATOMIC);
John Crispin5d8983c2019-10-29 10:13:02 +01002486 spin_unlock_irqrestore(&local->ack_status_lock, flags);
2487
2488 if (id >= 0) {
2489 info_id = id;
2490 *info_flags |= IEEE80211_TX_CTL_REQ_TX_STATUS;
Markus Theila7528192020-05-27 18:03:34 +02002491 if (cookie) {
2492 *cookie = ieee80211_mgmt_tx_cookie(local);
2493 IEEE80211_SKB_CB(ack_skb)->ack.cookie = *cookie;
2494 }
John Crispin5d8983c2019-10-29 10:13:02 +01002495 } else {
2496 kfree_skb(ack_skb);
2497 }
2498 }
2499
2500 return info_id;
2501}
2502
Johannes Berge2ebc742007-07-27 15:43:22 +02002503/**
Johannes Berg4c9451e2014-11-09 18:50:10 +02002504 * ieee80211_build_hdr - build 802.11 header in the given frame
2505 * @sdata: virtual interface to build the header for
2506 * @skb: the skb to build the header in
Liad Kaufman24d342c2014-11-09 18:50:07 +02002507 * @info_flags: skb flags to set
Johannes Bergf0daf542020-09-24 19:25:11 +02002508 * @sta: the station pointer
Rajkumar Manoharan06016772019-04-11 13:47:25 -07002509 * @ctrl_flags: info control flags to set
Johannes Bergf0daf542020-09-24 19:25:11 +02002510 * @cookie: cookie pointer to fill (if not %NULL)
Johannes Berge2ebc742007-07-27 15:43:22 +02002511 *
Johannes Berg4c9451e2014-11-09 18:50:10 +02002512 * This function takes the skb with 802.3 header and reformats the header to
2513 * the appropriate IEEE 802.11 header based on which interface the packet is
2514 * being transmitted on.
Johannes Berge2ebc742007-07-27 15:43:22 +02002515 *
Johannes Berg4c9451e2014-11-09 18:50:10 +02002516 * Note that this function also takes care of the TX status request and
2517 * potential unsharing of the SKB - this needs to be interleaved with the
2518 * header building.
2519 *
2520 * The function requires the read-side RCU lock held
2521 *
2522 * Returns: the (possibly reallocated) skb or an ERR_PTR() code
Johannes Berge2ebc742007-07-27 15:43:22 +02002523 */
Johannes Berg4c9451e2014-11-09 18:50:10 +02002524static struct sk_buff *ieee80211_build_hdr(struct ieee80211_sub_if_data *sdata,
Johannes Berg7c107702015-03-20 14:18:27 +01002525 struct sk_buff *skb, u32 info_flags,
Markus Theila7528192020-05-27 18:03:34 +02002526 struct sta_info *sta, u32 ctrl_flags,
2527 u64 *cookie)
Johannes Berge2ebc742007-07-27 15:43:22 +02002528{
Johannes Berg133b8222008-09-16 14:18:59 +02002529 struct ieee80211_local *local = sdata->local;
Felix Fietkau489ee912010-12-18 19:30:48 +01002530 struct ieee80211_tx_info *info;
Johannes Bergdcf33962012-07-30 15:11:56 +02002531 int head_need;
Harvey Harrison065e96052008-06-22 16:45:27 -07002532 u16 ethertype, hdrlen, meshhdrlen = 0;
2533 __le16 fc;
Johannes Berge2ebc742007-07-27 15:43:22 +02002534 struct ieee80211_hdr hdr;
Wey-Yi Guyff67bb82010-08-21 07:23:29 -07002535 struct ieee80211s_hdr mesh_hdr __maybe_unused;
Chun-Yeow Yeohb8bacc12012-05-30 09:30:41 +08002536 struct mesh_path __maybe_unused *mppath = NULL, *mpath = NULL;
Johannes Berge2ebc742007-07-27 15:43:22 +02002537 const u8 *encaps_data;
2538 int encaps_len, skip_header_bytes;
Johannes Berg97ffe752015-03-21 09:13:45 +01002539 bool wme_sta = false, authorized = false;
2540 bool tdls_peer;
Johannes Berga729cff2011-11-06 14:13:34 +01002541 bool multicast;
Johannes Berga729cff2011-11-06 14:13:34 +01002542 u16 info_id = 0;
Johannes Berg55de9082012-07-26 17:24:39 +02002543 struct ieee80211_chanctx_conf *chanctx_conf;
2544 struct ieee80211_sub_if_data *ap_sdata;
Johannes Berg57fbcce2016-04-12 15:56:15 +02002545 enum nl80211_band band;
Johannes Berg4c9451e2014-11-09 18:50:10 +02002546 int ret;
Johannes Berge2ebc742007-07-27 15:43:22 +02002547
Johannes Berg97ffe752015-03-21 09:13:45 +01002548 if (IS_ERR(sta))
2549 sta = NULL;
2550
Julius Niedworok276d9e82019-03-28 21:01:06 +01002551#ifdef CONFIG_MAC80211_DEBUGFS
2552 if (local->force_tx_status)
2553 info_flags |= IEEE80211_TX_CTL_REQ_TX_STATUS;
2554#endif
2555
Johannes Berge2ebc742007-07-27 15:43:22 +02002556 /* convert Ethernet header to proper 802.11 header (based on
2557 * operation mode) */
2558 ethertype = (skb->data[12] << 8) | skb->data[13];
Harvey Harrison065e96052008-06-22 16:45:27 -07002559 fc = cpu_to_le16(IEEE80211_FTYPE_DATA | IEEE80211_STYPE_DATA);
Johannes Berge2ebc742007-07-27 15:43:22 +02002560
Johannes Berg51fb61e2007-12-19 01:31:27 +01002561 switch (sdata->vif.type) {
Johannes Berg05c914f2008-09-11 00:01:58 +02002562 case NL80211_IFTYPE_AP_VLAN:
Johannes Berg97ffe752015-03-21 09:13:45 +01002563 if (sdata->wdev.use_4addr) {
Felix Fietkauf14543ee2009-11-10 20:10:05 +01002564 fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS);
2565 /* RA TA DA SA */
2566 memcpy(hdr.addr1, sta->sta.addr, ETH_ALEN);
Johannes Berg47846c92009-11-25 17:46:19 +01002567 memcpy(hdr.addr2, sdata->vif.addr, ETH_ALEN);
Felix Fietkauf14543ee2009-11-10 20:10:05 +01002568 memcpy(hdr.addr3, skb->data, ETH_ALEN);
2569 memcpy(hdr.addr4, skb->data + ETH_ALEN, ETH_ALEN);
2570 hdrlen = 30;
Johannes Bergc2c98fd2011-09-29 16:04:36 +02002571 authorized = test_sta_flag(sta, WLAN_STA_AUTHORIZED);
Johannes Berga74a8c82014-07-22 14:50:47 +02002572 wme_sta = sta->sta.wme;
Felix Fietkauf14543ee2009-11-10 20:10:05 +01002573 }
Johannes Berg55de9082012-07-26 17:24:39 +02002574 ap_sdata = container_of(sdata->bss, struct ieee80211_sub_if_data,
2575 u.ap);
2576 chanctx_conf = rcu_dereference(ap_sdata->vif.chanctx_conf);
Johannes Berg4c9451e2014-11-09 18:50:10 +02002577 if (!chanctx_conf) {
2578 ret = -ENOTCONN;
2579 goto free;
2580 }
Johannes Berg4bf88532012-11-09 11:39:59 +01002581 band = chanctx_conf->def.chan->band;
Johannes Berg97ffe752015-03-21 09:13:45 +01002582 if (sdata->wdev.use_4addr)
Felix Fietkauf14543ee2009-11-10 20:10:05 +01002583 break;
Gustavo A. R. Silvafc0561d2020-07-07 15:45:48 -05002584 fallthrough;
Felix Fietkauf14543ee2009-11-10 20:10:05 +01002585 case NL80211_IFTYPE_AP:
Arnd Bergmannfe801232013-01-25 14:14:33 +00002586 if (sdata->vif.type == NL80211_IFTYPE_AP)
2587 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
Johannes Berg4c9451e2014-11-09 18:50:10 +02002588 if (!chanctx_conf) {
2589 ret = -ENOTCONN;
2590 goto free;
2591 }
Harvey Harrison065e96052008-06-22 16:45:27 -07002592 fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS);
Johannes Berge2ebc742007-07-27 15:43:22 +02002593 /* DA BSSID SA */
2594 memcpy(hdr.addr1, skb->data, ETH_ALEN);
Johannes Berg47846c92009-11-25 17:46:19 +01002595 memcpy(hdr.addr2, sdata->vif.addr, ETH_ALEN);
Johannes Berge2ebc742007-07-27 15:43:22 +02002596 memcpy(hdr.addr3, skb->data + ETH_ALEN, ETH_ALEN);
2597 hdrlen = 24;
Johannes Berg4bf88532012-11-09 11:39:59 +01002598 band = chanctx_conf->def.chan->band;
Johannes Bergcf966832007-08-28 17:01:54 -04002599 break;
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01002600#ifdef CONFIG_MAC80211_MESH
Johannes Berg05c914f2008-09-11 00:01:58 +02002601 case NL80211_IFTYPE_MESH_POINT:
Chun-Yeow Yeohb8bacc12012-05-30 09:30:41 +08002602 if (!is_multicast_ether_addr(skb->data)) {
Chun-Yeow Yeoh163df6c2013-02-19 10:04:50 +08002603 struct sta_info *next_hop;
2604 bool mpp_lookup = true;
2605
Johannes Bergbf7cd942013-02-15 14:40:31 +01002606 mpath = mesh_path_lookup(sdata, skb->data);
Chun-Yeow Yeoh163df6c2013-02-19 10:04:50 +08002607 if (mpath) {
2608 mpp_lookup = false;
2609 next_hop = rcu_dereference(mpath->next_hop);
2610 if (!next_hop ||
2611 !(mpath->flags & (MESH_PATH_ACTIVE |
2612 MESH_PATH_RESOLVING)))
2613 mpp_lookup = true;
2614 }
2615
Henning Roggeab1c7902016-02-03 13:58:37 +01002616 if (mpp_lookup) {
Johannes Bergbf7cd942013-02-15 14:40:31 +01002617 mppath = mpp_path_lookup(sdata, skb->data);
Henning Roggeab1c7902016-02-03 13:58:37 +01002618 if (mppath)
2619 mppath->exp_time = jiffies;
2620 }
Chun-Yeow Yeoh163df6c2013-02-19 10:04:50 +08002621
2622 if (mppath && mpath)
Bob Copeland2bdaf382016-02-28 20:03:56 -05002623 mesh_path_del(sdata, mpath->dst);
Chun-Yeow Yeohb8bacc12012-05-30 09:30:41 +08002624 }
YanBo79617de2008-09-22 13:30:32 +08002625
Joel A Fernandesf76b57b2010-12-28 19:28:11 -06002626 /*
Joel A Fernandes9d525012011-01-10 00:44:23 -06002627 * Use address extension if it is a packet from
2628 * another interface or if we know the destination
2629 * is being proxied by a portal (i.e. portal address
2630 * differs from proxied address)
Joel A Fernandesf76b57b2010-12-28 19:28:11 -06002631 */
Joe Perchesb203ca32012-05-08 18:56:52 +00002632 if (ether_addr_equal(sdata->vif.addr, skb->data + ETH_ALEN) &&
2633 !(mppath && !ether_addr_equal(mppath->mpp, skb->data))) {
Javier Cardona3c5772a2009-08-10 12:15:48 -07002634 hdrlen = ieee80211_fill_mesh_addresses(&hdr, &fc,
2635 skb->data, skb->data + ETH_ALEN);
Johannes Bergbf7cd942013-02-15 14:40:31 +01002636 meshhdrlen = ieee80211_new_mesh_header(sdata, &mesh_hdr,
2637 NULL, NULL);
YanBo79617de2008-09-22 13:30:32 +08002638 } else {
Thomas Pedersen27f01122012-08-20 11:28:25 -07002639 /* DS -> MBSS (802.11-2012 13.11.3.3).
2640 * For unicast with unknown forwarding information,
2641 * destination might be in the MBSS or if that fails
2642 * forwarded to another mesh gate. In either case
2643 * resolution will be handled in ieee80211_xmit(), so
2644 * leave the original DA. This also works for mcast */
2645 const u8 *mesh_da = skb->data;
YanBo79617de2008-09-22 13:30:32 +08002646
Thomas Pedersen27f01122012-08-20 11:28:25 -07002647 if (mppath)
2648 mesh_da = mppath->mpp;
2649 else if (mpath)
2650 mesh_da = mpath->dst;
Thomas Pedersen27f01122012-08-20 11:28:25 -07002651
Javier Cardona3c5772a2009-08-10 12:15:48 -07002652 hdrlen = ieee80211_fill_mesh_addresses(&hdr, &fc,
Johannes Berg47846c92009-11-25 17:46:19 +01002653 mesh_da, sdata->vif.addr);
Thomas Pedersen27f01122012-08-20 11:28:25 -07002654 if (is_multicast_ether_addr(mesh_da))
2655 /* DA TA mSA AE:SA */
Johannes Bergbf7cd942013-02-15 14:40:31 +01002656 meshhdrlen = ieee80211_new_mesh_header(
2657 sdata, &mesh_hdr,
2658 skb->data + ETH_ALEN, NULL);
Javier Cardona3c5772a2009-08-10 12:15:48 -07002659 else
Thomas Pedersen27f01122012-08-20 11:28:25 -07002660 /* RA TA mDA mSA AE:DA SA */
Johannes Bergbf7cd942013-02-15 14:40:31 +01002661 meshhdrlen = ieee80211_new_mesh_header(
2662 sdata, &mesh_hdr, skb->data,
2663 skb->data + ETH_ALEN);
YanBo79617de2008-09-22 13:30:32 +08002664
YanBo79617de2008-09-22 13:30:32 +08002665 }
Johannes Berg55de9082012-07-26 17:24:39 +02002666 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
Johannes Berg4c9451e2014-11-09 18:50:10 +02002667 if (!chanctx_conf) {
2668 ret = -ENOTCONN;
2669 goto free;
2670 }
Johannes Berg4bf88532012-11-09 11:39:59 +01002671 band = chanctx_conf->def.chan->band;
Rajkumar Manoharan8828f812019-04-11 13:47:26 -07002672
2673 /* For injected frames, fill RA right away as nexthop lookup
2674 * will be skipped.
2675 */
2676 if ((ctrl_flags & IEEE80211_TX_CTRL_SKIP_MPATH_LOOKUP) &&
2677 is_zero_ether_addr(hdr.addr1))
2678 memcpy(hdr.addr1, skb->data, ETH_ALEN);
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01002679 break;
2680#endif
Johannes Berg05c914f2008-09-11 00:01:58 +02002681 case NL80211_IFTYPE_STATION:
Johannes Berg97ffe752015-03-21 09:13:45 +01002682 /* we already did checks when looking up the RA STA */
2683 tdls_peer = test_sta_flag(sta, WLAN_STA_TDLS_PEER);
Arik Nemtsov941c93c2011-09-28 14:12:54 +03002684
Johannes Berg97ffe752015-03-21 09:13:45 +01002685 if (tdls_peer) {
Arik Nemtsov941c93c2011-09-28 14:12:54 +03002686 /* DA SA BSSID */
2687 memcpy(hdr.addr1, skb->data, ETH_ALEN);
2688 memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN);
2689 memcpy(hdr.addr3, sdata->u.mgd.bssid, ETH_ALEN);
2690 hdrlen = 24;
2691 } else if (sdata->u.mgd.use_4addr &&
2692 cpu_to_be16(ethertype) != sdata->control_port_protocol) {
2693 fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS |
2694 IEEE80211_FCTL_TODS);
Felix Fietkauf14543ee2009-11-10 20:10:05 +01002695 /* RA TA DA SA */
Arik Nemtsov941c93c2011-09-28 14:12:54 +03002696 memcpy(hdr.addr1, sdata->u.mgd.bssid, ETH_ALEN);
Johannes Berg47846c92009-11-25 17:46:19 +01002697 memcpy(hdr.addr2, sdata->vif.addr, ETH_ALEN);
Felix Fietkauf14543ee2009-11-10 20:10:05 +01002698 memcpy(hdr.addr3, skb->data, ETH_ALEN);
2699 memcpy(hdr.addr4, skb->data + ETH_ALEN, ETH_ALEN);
2700 hdrlen = 30;
2701 } else {
2702 fc |= cpu_to_le16(IEEE80211_FCTL_TODS);
2703 /* BSSID SA DA */
Arik Nemtsov941c93c2011-09-28 14:12:54 +03002704 memcpy(hdr.addr1, sdata->u.mgd.bssid, ETH_ALEN);
Felix Fietkauf14543ee2009-11-10 20:10:05 +01002705 memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN);
2706 memcpy(hdr.addr3, skb->data, ETH_ALEN);
2707 hdrlen = 24;
2708 }
Johannes Berg55de9082012-07-26 17:24:39 +02002709 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
Johannes Berg4c9451e2014-11-09 18:50:10 +02002710 if (!chanctx_conf) {
2711 ret = -ENOTCONN;
2712 goto free;
2713 }
Johannes Berg4bf88532012-11-09 11:39:59 +01002714 band = chanctx_conf->def.chan->band;
Johannes Bergcf966832007-08-28 17:01:54 -04002715 break;
Rostislav Lisovy239281f2014-11-03 10:33:19 +01002716 case NL80211_IFTYPE_OCB:
2717 /* DA SA BSSID */
2718 memcpy(hdr.addr1, skb->data, ETH_ALEN);
2719 memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN);
2720 eth_broadcast_addr(hdr.addr3);
2721 hdrlen = 24;
2722 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
Johannes Berg4c9451e2014-11-09 18:50:10 +02002723 if (!chanctx_conf) {
2724 ret = -ENOTCONN;
2725 goto free;
2726 }
Rostislav Lisovy239281f2014-11-03 10:33:19 +01002727 band = chanctx_conf->def.chan->band;
2728 break;
Johannes Berg05c914f2008-09-11 00:01:58 +02002729 case NL80211_IFTYPE_ADHOC:
Johannes Berge2ebc742007-07-27 15:43:22 +02002730 /* DA SA BSSID */
2731 memcpy(hdr.addr1, skb->data, ETH_ALEN);
2732 memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN);
Johannes Berg46900292009-02-15 12:44:28 +01002733 memcpy(hdr.addr3, sdata->u.ibss.bssid, ETH_ALEN);
Johannes Berge2ebc742007-07-27 15:43:22 +02002734 hdrlen = 24;
Johannes Berg55de9082012-07-26 17:24:39 +02002735 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
Johannes Berg4c9451e2014-11-09 18:50:10 +02002736 if (!chanctx_conf) {
2737 ret = -ENOTCONN;
2738 goto free;
2739 }
Johannes Berg4bf88532012-11-09 11:39:59 +01002740 band = chanctx_conf->def.chan->band;
Johannes Bergcf966832007-08-28 17:01:54 -04002741 break;
2742 default:
Johannes Berg4c9451e2014-11-09 18:50:10 +02002743 ret = -EINVAL;
2744 goto free;
Johannes Berge2ebc742007-07-27 15:43:22 +02002745 }
2746
Johannes Berga729cff2011-11-06 14:13:34 +01002747 multicast = is_multicast_ether_addr(hdr.addr1);
Johannes Berge2ebc742007-07-27 15:43:22 +02002748
Johannes Berg97ffe752015-03-21 09:13:45 +01002749 /* sta is always NULL for mesh */
2750 if (sta) {
2751 authorized = test_sta_flag(sta, WLAN_STA_AUTHORIZED);
2752 wme_sta = sta->sta.wme;
2753 } else if (ieee80211_vif_is_mesh(&sdata->vif)) {
2754 /* For mesh, the use of the QoS header is mandatory */
Johannes Bergc2c98fd2011-09-29 16:04:36 +02002755 wme_sta = true;
Johannes Berge2ebc742007-07-27 15:43:22 +02002756 }
2757
Johannes Berg527871d2015-03-21 08:09:55 +01002758 /* receiver does QoS (which also means we do) use it */
2759 if (wme_sta) {
Harvey Harrison065e96052008-06-22 16:45:27 -07002760 fc |= cpu_to_le16(IEEE80211_STYPE_QOS_DATA);
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002761 hdrlen += 2;
2762 }
2763
2764 /*
Johannes Berg238814f2008-01-28 17:19:37 +01002765 * Drop unicast frames to unauthorised stations unless they are
2766 * EAPOL frames from the local station.
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002767 */
Johannes Berg55182e42011-10-12 17:28:21 +02002768 if (unlikely(!ieee80211_vif_is_mesh(&sdata->vif) &&
Rostislav Lisovy239281f2014-11-03 10:33:19 +01002769 (sdata->vif.type != NL80211_IFTYPE_OCB) &&
Sergey Ryazanova6ececf2013-08-30 01:35:09 +04002770 !multicast && !authorized &&
Johannes Berg55182e42011-10-12 17:28:21 +02002771 (cpu_to_be16(ethertype) != sdata->control_port_protocol ||
Joe Perchesb203ca32012-05-08 18:56:52 +00002772 !ether_addr_equal(sdata->vif.addr, skb->data + ETH_ALEN)))) {
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002773#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002774 net_info_ratelimited("%s: dropped frame to %pM (unauthorized port)\n",
Johannes Berg4c9451e2014-11-09 18:50:10 +02002775 sdata->name, hdr.addr1);
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002776#endif
2777
2778 I802_DEBUG_INC(local->tx_handlers_drop_unauth_port);
2779
Johannes Berg4c9451e2014-11-09 18:50:10 +02002780 ret = -EPERM;
2781 goto free;
Johannes Bergce3edf6d02007-12-19 01:31:22 +01002782 }
2783
Markus Theila7528192020-05-27 18:03:34 +02002784 if (unlikely(!multicast && ((skb->sk &&
2785 skb_shinfo(skb)->tx_flags & SKBTX_WIFI_STATUS) ||
2786 ctrl_flags & IEEE80211_TX_CTL_REQ_TX_STATUS)))
2787 info_id = ieee80211_store_ack_skb(local, skb, &info_flags,
2788 cookie);
Johannes Berga729cff2011-11-06 14:13:34 +01002789
Helmut Schaa7e244702010-12-02 18:44:09 +01002790 /*
2791 * If the skb is shared we need to obtain our own copy.
2792 */
2793 if (skb_shared(skb)) {
Johannes Berga729cff2011-11-06 14:13:34 +01002794 struct sk_buff *tmp_skb = skb;
2795
2796 /* can't happen -- skb is a clone if info_id != 0 */
2797 WARN_ON(info_id);
2798
Felix Fietkauf8a0a782010-12-18 19:30:50 +01002799 skb = skb_clone(skb, GFP_ATOMIC);
Helmut Schaa7e244702010-12-02 18:44:09 +01002800 kfree_skb(tmp_skb);
2801
Johannes Berg4c9451e2014-11-09 18:50:10 +02002802 if (!skb) {
2803 ret = -ENOMEM;
2804 goto free;
2805 }
Helmut Schaa7e244702010-12-02 18:44:09 +01002806 }
2807
Harvey Harrison065e96052008-06-22 16:45:27 -07002808 hdr.frame_control = fc;
Johannes Berge2ebc742007-07-27 15:43:22 +02002809 hdr.duration_id = 0;
2810 hdr.seq_ctrl = 0;
2811
2812 skip_header_bytes = ETH_HLEN;
2813 if (ethertype == ETH_P_AARP || ethertype == ETH_P_IPX) {
2814 encaps_data = bridge_tunnel_header;
2815 encaps_len = sizeof(bridge_tunnel_header);
2816 skip_header_bytes -= 2;
Simon Hormane5c5d222013-03-28 13:38:25 +09002817 } else if (ethertype >= ETH_P_802_3_MIN) {
Johannes Berge2ebc742007-07-27 15:43:22 +02002818 encaps_data = rfc1042_header;
2819 encaps_len = sizeof(rfc1042_header);
2820 skip_header_bytes -= 2;
2821 } else {
2822 encaps_data = NULL;
2823 encaps_len = 0;
2824 }
2825
2826 skb_pull(skb, skip_header_bytes);
Johannes Berg23c07522008-05-29 10:38:53 +02002827 head_need = hdrlen + encaps_len + meshhdrlen - skb_headroom(skb);
Johannes Berge2ebc742007-07-27 15:43:22 +02002828
Johannes Berg23c07522008-05-29 10:38:53 +02002829 /*
2830 * So we need to modify the skb header and hence need a copy of
2831 * that. The head_need variable above doesn't, so far, include
2832 * the needed header space that we don't need right away. If we
2833 * can, then we don't reallocate right now but only after the
2834 * frame arrives at the master device (if it does...)
2835 *
2836 * If we cannot, however, then we will reallocate to include all
2837 * the ever needed space. Also, if we need to reallocate it anyway,
2838 * make it big enough for everything we may ever need.
2839 */
Johannes Berge2ebc742007-07-27 15:43:22 +02002840
David S. Miller3a5be7d2008-06-18 01:19:51 -07002841 if (head_need > 0 || skb_cloned(skb)) {
Max Stepanov2475b1cc2013-03-24 14:23:27 +02002842 head_need += sdata->encrypt_headroom;
Johannes Berg23c07522008-05-29 10:38:53 +02002843 head_need += local->tx_headroom;
2844 head_need = max_t(int, 0, head_need);
Johannes Berg14f46c12020-10-09 13:25:41 +02002845 if (ieee80211_skb_resize(sdata, skb, head_need, ENCRYPT_DATA)) {
Felix Fietkauc3e77242012-10-08 14:39:33 +02002846 ieee80211_free_txskb(&local->hw, skb);
Johannes Berg1c963be2012-11-07 14:02:30 +01002847 skb = NULL;
Johannes Berg4c9451e2014-11-09 18:50:10 +02002848 return ERR_PTR(-ENOMEM);
Felix Fietkauc3e77242012-10-08 14:39:33 +02002849 }
Johannes Berge2ebc742007-07-27 15:43:22 +02002850 }
2851
Felix Fietkaueae44302016-07-13 11:00:02 +02002852 if (encaps_data)
Johannes Berge2ebc742007-07-27 15:43:22 +02002853 memcpy(skb_push(skb, encaps_len), encaps_data, encaps_len);
Johannes Bergc29b9b92007-09-14 11:10:24 -04002854
Yuri Ershove4ab7eb2010-06-29 15:08:06 +04002855#ifdef CONFIG_MAC80211_MESH
Felix Fietkaueae44302016-07-13 11:00:02 +02002856 if (meshhdrlen > 0)
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01002857 memcpy(skb_push(skb, meshhdrlen), &mesh_hdr, meshhdrlen);
Yuri Ershove4ab7eb2010-06-29 15:08:06 +04002858#endif
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01002859
Harvey Harrison065e96052008-06-22 16:45:27 -07002860 if (ieee80211_is_data_qos(fc)) {
Johannes Bergc29b9b92007-09-14 11:10:24 -04002861 __le16 *qos_control;
2862
Johannes Bergd58ff352017-06-16 14:29:23 +02002863 qos_control = skb_push(skb, 2);
Johannes Bergc29b9b92007-09-14 11:10:24 -04002864 memcpy(skb_push(skb, hdrlen - 2), &hdr, hdrlen - 2);
2865 /*
2866 * Maybe we could actually set some fields here, for now just
2867 * initialise to zero to indicate no special operation.
2868 */
2869 *qos_control = 0;
2870 } else
2871 memcpy(skb_push(skb, hdrlen), &hdr, hdrlen);
2872
Zhang Shengjud57a5442016-03-03 01:16:56 +00002873 skb_reset_mac_header(skb);
Johannes Berge2ebc742007-07-27 15:43:22 +02002874
Felix Fietkau489ee912010-12-18 19:30:48 +01002875 info = IEEE80211_SKB_CB(skb);
Johannes Berg3b8d81e02009-06-17 17:43:56 +02002876 memset(info, 0, sizeof(*info));
2877
Johannes Berga729cff2011-11-06 14:13:34 +01002878 info->flags = info_flags;
2879 info->ack_frame_id = info_id;
Johannes Berg73c4e192014-11-09 18:50:09 +02002880 info->band = band;
Rajkumar Manoharan06016772019-04-11 13:47:25 -07002881 info->control.flags = ctrl_flags;
Johannes Berga729cff2011-11-06 14:13:34 +01002882
Johannes Berg4c9451e2014-11-09 18:50:10 +02002883 return skb;
2884 free:
2885 kfree_skb(skb);
2886 return ERR_PTR(ret);
Johannes Berge2ebc742007-07-27 15:43:22 +02002887}
2888
Johannes Berg17c18bf2015-03-21 15:25:43 +01002889/*
2890 * fast-xmit overview
2891 *
2892 * The core idea of this fast-xmit is to remove per-packet checks by checking
2893 * them out of band. ieee80211_check_fast_xmit() implements the out-of-band
2894 * checks that are needed to get the sta->fast_tx pointer assigned, after which
2895 * much less work can be done per packet. For example, fragmentation must be
2896 * disabled or the fast_tx pointer will not be set. All the conditions are seen
2897 * in the code here.
2898 *
2899 * Once assigned, the fast_tx data structure also caches the per-packet 802.11
2900 * header and other data to aid packet processing in ieee80211_xmit_fast().
2901 *
2902 * The most difficult part of this is that when any of these assumptions
2903 * change, an external trigger (i.e. a call to ieee80211_clear_fast_xmit(),
2904 * ieee80211_check_fast_xmit() or friends) is required to reset the data,
2905 * since the per-packet code no longer checks the conditions. This is reflected
2906 * by the calls to these functions throughout the rest of the code, and must be
2907 * maintained if any of the TX path checks change.
2908 */
2909
2910void ieee80211_check_fast_xmit(struct sta_info *sta)
2911{
2912 struct ieee80211_fast_tx build = {}, *fast_tx = NULL, *old;
2913 struct ieee80211_local *local = sta->local;
2914 struct ieee80211_sub_if_data *sdata = sta->sdata;
2915 struct ieee80211_hdr *hdr = (void *)build.hdr;
2916 struct ieee80211_chanctx_conf *chanctx_conf;
2917 __le16 fc;
2918
Johannes Berg30686bf2015-06-02 21:39:54 +02002919 if (!ieee80211_hw_check(&local->hw, SUPPORT_FAST_XMIT))
Johannes Berg17c18bf2015-03-21 15:25:43 +01002920 return;
2921
2922 /* Locking here protects both the pointer itself, and against concurrent
2923 * invocations winning data access races to, e.g., the key pointer that
2924 * is used.
2925 * Without it, the invocation of this function right after the key
2926 * pointer changes wouldn't be sufficient, as another CPU could access
2927 * the pointer, then stall, and then do the cache update after the CPU
2928 * that invalidated the key.
2929 * With the locking, such scenarios cannot happen as the check for the
2930 * key and the fast-tx assignment are done atomically, so the CPU that
2931 * modifies the key will either wait or other one will see the key
2932 * cleared/changed already.
2933 */
2934 spin_lock_bh(&sta->lock);
Johannes Berg30686bf2015-06-02 21:39:54 +02002935 if (ieee80211_hw_check(&local->hw, SUPPORTS_PS) &&
2936 !ieee80211_hw_check(&local->hw, SUPPORTS_DYNAMIC_PS) &&
Johannes Berg17c18bf2015-03-21 15:25:43 +01002937 sdata->vif.type == NL80211_IFTYPE_STATION)
2938 goto out;
2939
2940 if (!test_sta_flag(sta, WLAN_STA_AUTHORIZED))
2941 goto out;
2942
2943 if (test_sta_flag(sta, WLAN_STA_PS_STA) ||
2944 test_sta_flag(sta, WLAN_STA_PS_DRIVER) ||
Felix Fietkauf7418bc2015-09-24 14:59:49 +02002945 test_sta_flag(sta, WLAN_STA_PS_DELIVER) ||
2946 test_sta_flag(sta, WLAN_STA_CLEAR_PS_FILT))
Johannes Berg17c18bf2015-03-21 15:25:43 +01002947 goto out;
2948
2949 if (sdata->noack_map)
2950 goto out;
2951
2952 /* fast-xmit doesn't handle fragmentation at all */
Johannes Berg725b8122015-04-10 14:02:08 +02002953 if (local->hw.wiphy->frag_threshold != (u32)-1 &&
Sara Sharonf3fe4e92016-10-18 23:12:11 +03002954 !ieee80211_hw_check(&local->hw, SUPPORTS_TX_FRAG))
Johannes Berg17c18bf2015-03-21 15:25:43 +01002955 goto out;
2956
2957 rcu_read_lock();
2958 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
2959 if (!chanctx_conf) {
2960 rcu_read_unlock();
2961 goto out;
2962 }
2963 build.band = chanctx_conf->def.chan->band;
2964 rcu_read_unlock();
2965
2966 fc = cpu_to_le16(IEEE80211_FTYPE_DATA | IEEE80211_STYPE_DATA);
2967
2968 switch (sdata->vif.type) {
Johannes Berg3ffd8842015-04-14 10:28:37 +02002969 case NL80211_IFTYPE_ADHOC:
2970 /* DA SA BSSID */
2971 build.da_offs = offsetof(struct ieee80211_hdr, addr1);
2972 build.sa_offs = offsetof(struct ieee80211_hdr, addr2);
2973 memcpy(hdr->addr3, sdata->u.ibss.bssid, ETH_ALEN);
2974 build.hdr_len = 24;
2975 break;
Johannes Berg17c18bf2015-03-21 15:25:43 +01002976 case NL80211_IFTYPE_STATION:
2977 if (test_sta_flag(sta, WLAN_STA_TDLS_PEER)) {
2978 /* DA SA BSSID */
2979 build.da_offs = offsetof(struct ieee80211_hdr, addr1);
2980 build.sa_offs = offsetof(struct ieee80211_hdr, addr2);
2981 memcpy(hdr->addr3, sdata->u.mgd.bssid, ETH_ALEN);
2982 build.hdr_len = 24;
2983 break;
2984 }
2985
2986 if (sdata->u.mgd.use_4addr) {
2987 /* non-regular ethertype cannot use the fastpath */
2988 fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS |
2989 IEEE80211_FCTL_TODS);
2990 /* RA TA DA SA */
2991 memcpy(hdr->addr1, sdata->u.mgd.bssid, ETH_ALEN);
2992 memcpy(hdr->addr2, sdata->vif.addr, ETH_ALEN);
2993 build.da_offs = offsetof(struct ieee80211_hdr, addr3);
2994 build.sa_offs = offsetof(struct ieee80211_hdr, addr4);
2995 build.hdr_len = 30;
2996 break;
2997 }
2998 fc |= cpu_to_le16(IEEE80211_FCTL_TODS);
2999 /* BSSID SA DA */
3000 memcpy(hdr->addr1, sdata->u.mgd.bssid, ETH_ALEN);
3001 build.da_offs = offsetof(struct ieee80211_hdr, addr3);
3002 build.sa_offs = offsetof(struct ieee80211_hdr, addr2);
3003 build.hdr_len = 24;
3004 break;
3005 case NL80211_IFTYPE_AP_VLAN:
3006 if (sdata->wdev.use_4addr) {
3007 fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS |
3008 IEEE80211_FCTL_TODS);
3009 /* RA TA DA SA */
3010 memcpy(hdr->addr1, sta->sta.addr, ETH_ALEN);
3011 memcpy(hdr->addr2, sdata->vif.addr, ETH_ALEN);
3012 build.da_offs = offsetof(struct ieee80211_hdr, addr3);
3013 build.sa_offs = offsetof(struct ieee80211_hdr, addr4);
3014 build.hdr_len = 30;
3015 break;
3016 }
Gustavo A. R. Silvafc0561d2020-07-07 15:45:48 -05003017 fallthrough;
Johannes Berg17c18bf2015-03-21 15:25:43 +01003018 case NL80211_IFTYPE_AP:
3019 fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS);
3020 /* DA BSSID SA */
3021 build.da_offs = offsetof(struct ieee80211_hdr, addr1);
3022 memcpy(hdr->addr2, sdata->vif.addr, ETH_ALEN);
3023 build.sa_offs = offsetof(struct ieee80211_hdr, addr3);
3024 build.hdr_len = 24;
3025 break;
3026 default:
3027 /* not handled on fast-xmit */
3028 goto out;
3029 }
3030
3031 if (sta->sta.wme) {
3032 build.hdr_len += 2;
3033 fc |= cpu_to_le16(IEEE80211_STYPE_QOS_DATA);
3034 }
3035
3036 /* We store the key here so there's no point in using rcu_dereference()
3037 * but that's fine because the code that changes the pointers will call
3038 * this function after doing so. For a single CPU that would be enough,
3039 * for multiple see the comment above.
3040 */
3041 build.key = rcu_access_pointer(sta->ptk[sta->ptk_idx]);
3042 if (!build.key)
3043 build.key = rcu_access_pointer(sdata->default_unicast_key);
3044 if (build.key) {
Johannes Berge495c242015-04-10 14:03:17 +02003045 bool gen_iv, iv_spc, mmic;
Johannes Berg17c18bf2015-03-21 15:25:43 +01003046
3047 gen_iv = build.key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_IV;
3048 iv_spc = build.key->conf.flags & IEEE80211_KEY_FLAG_PUT_IV_SPACE;
David Spinadel9de18d82017-12-01 13:50:52 +02003049 mmic = build.key->conf.flags &
3050 (IEEE80211_KEY_FLAG_GENERATE_MMIC |
3051 IEEE80211_KEY_FLAG_PUT_MIC_SPACE);
Johannes Berg17c18bf2015-03-21 15:25:43 +01003052
3053 /* don't handle software crypto */
3054 if (!(build.key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE))
3055 goto out;
3056
Alexander Wetzel62872a92018-08-31 15:00:38 +02003057 /* Key is being removed */
3058 if (build.key->flags & KEY_FLAG_TAINTED)
3059 goto out;
3060
Johannes Berg17c18bf2015-03-21 15:25:43 +01003061 switch (build.key->conf.cipher) {
3062 case WLAN_CIPHER_SUITE_CCMP:
3063 case WLAN_CIPHER_SUITE_CCMP_256:
Alexander Wetzel96fc6ef2019-03-19 21:34:08 +01003064 if (gen_iv)
Johannes Berg17c18bf2015-03-21 15:25:43 +01003065 build.pn_offs = build.hdr_len;
Johannes Berg17c18bf2015-03-21 15:25:43 +01003066 if (gen_iv || iv_spc)
3067 build.hdr_len += IEEE80211_CCMP_HDR_LEN;
3068 break;
3069 case WLAN_CIPHER_SUITE_GCMP:
3070 case WLAN_CIPHER_SUITE_GCMP_256:
Alexander Wetzel96fc6ef2019-03-19 21:34:08 +01003071 if (gen_iv)
Johannes Berg17c18bf2015-03-21 15:25:43 +01003072 build.pn_offs = build.hdr_len;
Johannes Berg17c18bf2015-03-21 15:25:43 +01003073 if (gen_iv || iv_spc)
3074 build.hdr_len += IEEE80211_GCMP_HDR_LEN;
3075 break;
Johannes Berge495c242015-04-10 14:03:17 +02003076 case WLAN_CIPHER_SUITE_TKIP:
3077 /* cannot handle MMIC or IV generation in xmit-fast */
3078 if (mmic || gen_iv)
3079 goto out;
3080 if (iv_spc)
3081 build.hdr_len += IEEE80211_TKIP_IV_LEN;
3082 break;
3083 case WLAN_CIPHER_SUITE_WEP40:
3084 case WLAN_CIPHER_SUITE_WEP104:
3085 /* cannot handle IV generation in fast-xmit */
3086 if (gen_iv)
3087 goto out;
3088 if (iv_spc)
3089 build.hdr_len += IEEE80211_WEP_IV_LEN;
3090 break;
3091 case WLAN_CIPHER_SUITE_AES_CMAC:
3092 case WLAN_CIPHER_SUITE_BIP_CMAC_256:
3093 case WLAN_CIPHER_SUITE_BIP_GMAC_128:
3094 case WLAN_CIPHER_SUITE_BIP_GMAC_256:
3095 WARN(1,
3096 "management cipher suite 0x%x enabled for data\n",
3097 build.key->conf.cipher);
Johannes Berg17c18bf2015-03-21 15:25:43 +01003098 goto out;
Johannes Berge495c242015-04-10 14:03:17 +02003099 default:
3100 /* we don't know how to generate IVs for this at all */
3101 if (WARN_ON(gen_iv))
3102 goto out;
3103 /* pure hardware keys are OK, of course */
3104 if (!(build.key->flags & KEY_FLAG_CIPHER_SCHEME))
3105 break;
3106 /* cipher scheme might require space allocation */
3107 if (iv_spc &&
3108 build.key->conf.iv_len > IEEE80211_FAST_XMIT_MAX_IV)
3109 goto out;
3110 if (iv_spc)
3111 build.hdr_len += build.key->conf.iv_len;
Johannes Berg17c18bf2015-03-21 15:25:43 +01003112 }
3113
3114 fc |= cpu_to_le16(IEEE80211_FCTL_PROTECTED);
3115 }
3116
3117 hdr->frame_control = fc;
3118
3119 memcpy(build.hdr + build.hdr_len,
3120 rfc1042_header, sizeof(rfc1042_header));
3121 build.hdr_len += sizeof(rfc1042_header);
3122
3123 fast_tx = kmemdup(&build, sizeof(build), GFP_ATOMIC);
3124 /* if the kmemdup fails, continue w/o fast_tx */
3125 if (!fast_tx)
3126 goto out;
3127
3128 out:
3129 /* we might have raced against another call to this function */
3130 old = rcu_dereference_protected(sta->fast_tx,
3131 lockdep_is_held(&sta->lock));
3132 rcu_assign_pointer(sta->fast_tx, fast_tx);
3133 if (old)
3134 kfree_rcu(old, rcu_head);
3135 spin_unlock_bh(&sta->lock);
3136}
3137
3138void ieee80211_check_fast_xmit_all(struct ieee80211_local *local)
3139{
3140 struct sta_info *sta;
3141
3142 rcu_read_lock();
3143 list_for_each_entry_rcu(sta, &local->sta_list, list)
3144 ieee80211_check_fast_xmit(sta);
3145 rcu_read_unlock();
3146}
3147
3148void ieee80211_check_fast_xmit_iface(struct ieee80211_sub_if_data *sdata)
3149{
3150 struct ieee80211_local *local = sdata->local;
3151 struct sta_info *sta;
3152
3153 rcu_read_lock();
3154
3155 list_for_each_entry_rcu(sta, &local->sta_list, list) {
3156 if (sdata != sta->sdata &&
3157 (!sta->sdata->bss || sta->sdata->bss != sdata->bss))
3158 continue;
3159 ieee80211_check_fast_xmit(sta);
3160 }
3161
3162 rcu_read_unlock();
3163}
3164
3165void ieee80211_clear_fast_xmit(struct sta_info *sta)
3166{
3167 struct ieee80211_fast_tx *fast_tx;
3168
3169 spin_lock_bh(&sta->lock);
3170 fast_tx = rcu_dereference_protected(sta->fast_tx,
3171 lockdep_is_held(&sta->lock));
3172 RCU_INIT_POINTER(sta->fast_tx, NULL);
3173 spin_unlock_bh(&sta->lock);
3174
3175 if (fast_tx)
3176 kfree_rcu(fast_tx, rcu_head);
3177}
3178
Felix Fietkau6e0456b2016-03-03 22:59:00 +01003179static bool ieee80211_amsdu_realloc_pad(struct ieee80211_local *local,
Sara Sharon166ac9d2018-08-29 08:57:02 +02003180 struct sk_buff *skb, int headroom)
Felix Fietkau6e0456b2016-03-03 22:59:00 +01003181{
Sara Sharon166ac9d2018-08-29 08:57:02 +02003182 if (skb_headroom(skb) < headroom) {
Felix Fietkau6e0456b2016-03-03 22:59:00 +01003183 I802_DEBUG_INC(local->tx_expand_skb_head);
3184
Sara Sharon166ac9d2018-08-29 08:57:02 +02003185 if (pskb_expand_head(skb, headroom, 0, GFP_ATOMIC)) {
Felix Fietkau6e0456b2016-03-03 22:59:00 +01003186 wiphy_debug(local->hw.wiphy,
3187 "failed to reallocate TX buffer\n");
3188 return false;
3189 }
3190 }
3191
Felix Fietkau6e0456b2016-03-03 22:59:00 +01003192 return true;
3193}
3194
3195static bool ieee80211_amsdu_prepare_head(struct ieee80211_sub_if_data *sdata,
3196 struct ieee80211_fast_tx *fast_tx,
3197 struct sk_buff *skb)
3198{
3199 struct ieee80211_local *local = sdata->local;
3200 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
3201 struct ieee80211_hdr *hdr;
Michael Braun06f2bb12016-10-15 13:28:18 +02003202 struct ethhdr *amsdu_hdr;
Felix Fietkau6e0456b2016-03-03 22:59:00 +01003203 int hdr_len = fast_tx->hdr_len - sizeof(rfc1042_header);
3204 int subframe_len = skb->len - hdr_len;
3205 void *data;
Michael Braun06f2bb12016-10-15 13:28:18 +02003206 u8 *qc, *h_80211_src, *h_80211_dst;
Michael Brauna3e2f4b2016-10-15 13:28:19 +02003207 const u8 *bssid;
Felix Fietkau6e0456b2016-03-03 22:59:00 +01003208
3209 if (info->flags & IEEE80211_TX_CTL_RATE_CTRL_PROBE)
3210 return false;
3211
3212 if (info->control.flags & IEEE80211_TX_CTRL_AMSDU)
3213 return true;
3214
Sara Sharon166ac9d2018-08-29 08:57:02 +02003215 if (!ieee80211_amsdu_realloc_pad(local, skb, sizeof(*amsdu_hdr)))
Felix Fietkau6e0456b2016-03-03 22:59:00 +01003216 return false;
3217
Michael Braun06f2bb12016-10-15 13:28:18 +02003218 data = skb_push(skb, sizeof(*amsdu_hdr));
3219 memmove(data, data + sizeof(*amsdu_hdr), hdr_len);
Felix Fietkau6e0456b2016-03-03 22:59:00 +01003220 hdr = data;
Michael Braun06f2bb12016-10-15 13:28:18 +02003221 amsdu_hdr = data + hdr_len;
3222 /* h_80211_src/dst is addr* field within hdr */
3223 h_80211_src = data + fast_tx->sa_offs;
3224 h_80211_dst = data + fast_tx->da_offs;
3225
3226 amsdu_hdr->h_proto = cpu_to_be16(subframe_len);
3227 ether_addr_copy(amsdu_hdr->h_source, h_80211_src);
3228 ether_addr_copy(amsdu_hdr->h_dest, h_80211_dst);
3229
Michael Brauna3e2f4b2016-10-15 13:28:19 +02003230 /* according to IEEE 802.11-2012 8.3.2 table 8-19, the outer SA/DA
3231 * fields needs to be changed to BSSID for A-MSDU frames depending
3232 * on FromDS/ToDS values.
3233 */
3234 switch (sdata->vif.type) {
3235 case NL80211_IFTYPE_STATION:
3236 bssid = sdata->u.mgd.bssid;
3237 break;
3238 case NL80211_IFTYPE_AP:
3239 case NL80211_IFTYPE_AP_VLAN:
3240 bssid = sdata->vif.addr;
3241 break;
3242 default:
3243 bssid = NULL;
3244 }
3245
3246 if (bssid && ieee80211_has_fromds(hdr->frame_control))
3247 ether_addr_copy(h_80211_src, bssid);
3248
3249 if (bssid && ieee80211_has_tods(hdr->frame_control))
3250 ether_addr_copy(h_80211_dst, bssid);
3251
Felix Fietkau6e0456b2016-03-03 22:59:00 +01003252 qc = ieee80211_get_qos_ctl(hdr);
3253 *qc |= IEEE80211_QOS_CTL_A_MSDU_PRESENT;
3254
3255 info->control.flags |= IEEE80211_TX_CTRL_AMSDU;
3256
3257 return true;
3258}
3259
3260static bool ieee80211_amsdu_aggregate(struct ieee80211_sub_if_data *sdata,
3261 struct sta_info *sta,
3262 struct ieee80211_fast_tx *fast_tx,
3263 struct sk_buff *skb)
3264{
3265 struct ieee80211_local *local = sdata->local;
Michal Kaziorfa962b92016-05-19 10:37:49 +02003266 struct fq *fq = &local->fq;
3267 struct fq_tin *tin;
3268 struct fq_flow *flow;
Felix Fietkau6e0456b2016-03-03 22:59:00 +01003269 u8 tid = skb->priority & IEEE80211_QOS_CTL_TAG1D_MASK;
3270 struct ieee80211_txq *txq = sta->sta.txq[tid];
3271 struct txq_info *txqi;
3272 struct sk_buff **frag_tail, *head;
3273 int subframe_len = skb->len - ETH_ALEN;
3274 u8 max_subframes = sta->sta.max_amsdu_subframes;
3275 int max_frags = local->hw.max_tx_fragments;
3276 int max_amsdu_len = sta->sta.max_amsdu_len;
Felix Fietkaueb9b64e2019-03-16 18:06:31 +01003277 int orig_truesize;
Felix Fietkauf2af2df2019-03-16 18:06:32 +01003278 u32 flow_idx;
Felix Fietkau6e0456b2016-03-03 22:59:00 +01003279 __be16 len;
3280 void *data;
3281 bool ret = false;
Michal Kaziorfa962b92016-05-19 10:37:49 +02003282 unsigned int orig_len;
Lorenzo Bianconi66eb02d2018-08-31 01:04:13 +02003283 int n = 2, nfrags, pad = 0;
Sara Sharon166ac9d2018-08-29 08:57:02 +02003284 u16 hdrlen;
Felix Fietkau6e0456b2016-03-03 22:59:00 +01003285
3286 if (!ieee80211_hw_check(&local->hw, TX_AMSDU))
3287 return false;
3288
Ryder Lee4f2e3eb2021-06-18 04:38:59 +08003289 if (sdata->vif.offload_flags & IEEE80211_OFFLOAD_ENCAP_ENABLED)
3290 return false;
3291
Sara Sharon344f8e02018-12-15 11:03:07 +02003292 if (skb_is_gso(skb))
3293 return false;
3294
Felix Fietkau6e0456b2016-03-03 22:59:00 +01003295 if (!txq)
3296 return false;
3297
3298 txqi = to_txq_info(txq);
3299 if (test_bit(IEEE80211_TXQ_NO_AMSDU, &txqi->flags))
3300 return false;
3301
3302 if (sta->sta.max_rc_amsdu_len)
3303 max_amsdu_len = min_t(int, max_amsdu_len,
3304 sta->sta.max_rc_amsdu_len);
3305
Sara Sharonedba6bd2018-09-05 08:06:10 +03003306 if (sta->sta.max_tid_amsdu_len[tid])
3307 max_amsdu_len = min_t(int, max_amsdu_len,
3308 sta->sta.max_tid_amsdu_len[tid]);
3309
Felix Fietkauf2af2df2019-03-16 18:06:32 +01003310 flow_idx = fq_flow_idx(fq, skb);
3311
Michal Kaziorfa962b92016-05-19 10:37:49 +02003312 spin_lock_bh(&fq->lock);
Felix Fietkau6e0456b2016-03-03 22:59:00 +01003313
Michal Kaziorfa962b92016-05-19 10:37:49 +02003314 /* TODO: Ideally aggregation should be done on dequeue to remain
3315 * responsive to environment changes.
3316 */
3317
3318 tin = &txqi->tin;
Felix Fietkaubf9009b2020-12-18 19:47:14 +01003319 flow = fq_flow_classify(fq, tin, flow_idx, skb);
Michal Kaziorfa962b92016-05-19 10:37:49 +02003320 head = skb_peek_tail(&flow->queue);
Sara Sharon344f8e02018-12-15 11:03:07 +02003321 if (!head || skb_is_gso(head))
Felix Fietkau6e0456b2016-03-03 22:59:00 +01003322 goto out;
3323
Felix Fietkaueb9b64e2019-03-16 18:06:31 +01003324 orig_truesize = head->truesize;
Michal Kaziorfa962b92016-05-19 10:37:49 +02003325 orig_len = head->len;
3326
Felix Fietkau6e0456b2016-03-03 22:59:00 +01003327 if (skb->len + head->len > max_amsdu_len)
3328 goto out;
3329
Felix Fietkau6e0456b2016-03-03 22:59:00 +01003330 nfrags = 1 + skb_shinfo(skb)->nr_frags;
3331 nfrags += 1 + skb_shinfo(head)->nr_frags;
3332 frag_tail = &skb_shinfo(head)->frag_list;
3333 while (*frag_tail) {
3334 nfrags += 1 + skb_shinfo(*frag_tail)->nr_frags;
3335 frag_tail = &(*frag_tail)->next;
3336 n++;
3337 }
3338
3339 if (max_subframes && n > max_subframes)
3340 goto out;
3341
3342 if (max_frags && nfrags > max_frags)
3343 goto out;
3344
Sara Sharon9739fe22018-09-05 08:06:11 +03003345 if (!drv_can_aggregate_in_amsdu(local, head, skb))
3346 goto out;
3347
Lorenzo Bianconi1eb50792018-08-29 21:03:25 +02003348 if (!ieee80211_amsdu_prepare_head(sdata, fast_tx, head))
Felix Fietkau6e0456b2016-03-03 22:59:00 +01003349 goto out;
3350
Sara Sharon166ac9d2018-08-29 08:57:02 +02003351 /*
3352 * Pad out the previous subframe to a multiple of 4 by adding the
3353 * padding to the next one, that's being added. Note that head->len
3354 * is the length of the full A-MSDU, but that works since each time
3355 * we add a new subframe we pad out the previous one to a multiple
3356 * of 4 and thus it no longer matters in the next round.
3357 */
3358 hdrlen = fast_tx->hdr_len - sizeof(rfc1042_header);
3359 if ((head->len - hdrlen) & 3)
3360 pad = 4 - ((head->len - hdrlen) & 3);
3361
3362 if (!ieee80211_amsdu_realloc_pad(local, skb, sizeof(rfc1042_header) +
3363 2 + pad))
Johannes Bergaa58acf2018-08-30 10:55:49 +02003364 goto out_recalc;
Felix Fietkau6e0456b2016-03-03 22:59:00 +01003365
3366 ret = true;
3367 data = skb_push(skb, ETH_ALEN + 2);
3368 memmove(data, data + ETH_ALEN + 2, 2 * ETH_ALEN);
3369
3370 data += 2 * ETH_ALEN;
3371 len = cpu_to_be16(subframe_len);
3372 memcpy(data, &len, 2);
3373 memcpy(data + 2, rfc1042_header, sizeof(rfc1042_header));
3374
Sara Sharon166ac9d2018-08-29 08:57:02 +02003375 memset(skb_push(skb, pad), 0, pad);
3376
Felix Fietkau6e0456b2016-03-03 22:59:00 +01003377 head->len += skb->len;
3378 head->data_len += skb->len;
3379 *frag_tail = skb;
3380
Johannes Bergaa58acf2018-08-30 10:55:49 +02003381out_recalc:
Felix Fietkaueb9b64e2019-03-16 18:06:31 +01003382 fq->memory_usage += head->truesize - orig_truesize;
Johannes Bergaa58acf2018-08-30 10:55:49 +02003383 if (head->len != orig_len) {
3384 flow->backlog += head->len - orig_len;
3385 tin->backlog_bytes += head->len - orig_len;
Johannes Bergaa58acf2018-08-30 10:55:49 +02003386 }
Felix Fietkau6e0456b2016-03-03 22:59:00 +01003387out:
Michal Kaziorfa962b92016-05-19 10:37:49 +02003388 spin_unlock_bh(&fq->lock);
Felix Fietkau6e0456b2016-03-03 22:59:00 +01003389
3390 return ret;
3391}
3392
Toke Høiland-Jørgensenbb42f2d2016-09-22 19:04:20 +02003393/*
3394 * Can be called while the sta lock is held. Anything that can cause packets to
3395 * be generated will cause deadlock!
3396 */
Ryder Lee03c39112021-06-17 18:31:12 +02003397static ieee80211_tx_result
3398ieee80211_xmit_fast_finish(struct ieee80211_sub_if_data *sdata,
3399 struct sta_info *sta, u8 pn_offs,
3400 struct ieee80211_key *key,
3401 struct ieee80211_tx_data *tx)
Toke Høiland-Jørgensenbb42f2d2016-09-22 19:04:20 +02003402{
Ryder Lee03c39112021-06-17 18:31:12 +02003403 struct sk_buff *skb = tx->skb;
Toke Høiland-Jørgensenbb42f2d2016-09-22 19:04:20 +02003404 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
3405 struct ieee80211_hdr *hdr = (void *)skb->data;
3406 u8 tid = IEEE80211_NUM_TIDS;
3407
Ryder Lee03c39112021-06-17 18:31:12 +02003408 if (!ieee80211_hw_check(&tx->local->hw, HAS_RATE_CONTROL) &&
3409 ieee80211_tx_h_rate_ctrl(tx) != TX_CONTINUE)
3410 return TX_DROP;
3411
Toke Høiland-Jørgensenbb42f2d2016-09-22 19:04:20 +02003412 if (key)
3413 info->control.hw_key = &key->conf;
3414
Lev Stipakov36ec1442020-11-13 23:46:24 +02003415 dev_sw_netstats_tx_add(skb->dev, 1, skb->len);
Toke Høiland-Jørgensenbb42f2d2016-09-22 19:04:20 +02003416
3417 if (hdr->frame_control & cpu_to_le16(IEEE80211_STYPE_QOS_DATA)) {
3418 tid = skb->priority & IEEE80211_QOS_CTL_TAG1D_MASK;
Toke Høiland-Jørgensenbb42f2d2016-09-22 19:04:20 +02003419 hdr->seq_ctrl = ieee80211_tx_next_seq(sta, tid);
3420 } else {
3421 info->flags |= IEEE80211_TX_CTL_ASSIGN_SEQ;
3422 hdr->seq_ctrl = cpu_to_le16(sdata->sequence_number);
3423 sdata->sequence_number += 0x10;
3424 }
3425
3426 if (skb_shinfo(skb)->gso_size)
3427 sta->tx_stats.msdu[tid] +=
3428 DIV_ROUND_UP(skb->len, skb_shinfo(skb)->gso_size);
3429 else
3430 sta->tx_stats.msdu[tid]++;
3431
3432 info->hw_queue = sdata->vif.hw_queue[skb_get_queue_mapping(skb)];
3433
3434 /* statistics normally done by ieee80211_tx_h_stats (but that
3435 * has to consider fragmentation, so is more complex)
3436 */
3437 sta->tx_stats.bytes[skb_get_queue_mapping(skb)] += skb->len;
3438 sta->tx_stats.packets[skb_get_queue_mapping(skb)]++;
3439
3440 if (pn_offs) {
3441 u64 pn;
3442 u8 *crypto_hdr = skb->data + pn_offs;
3443
3444 switch (key->conf.cipher) {
3445 case WLAN_CIPHER_SUITE_CCMP:
3446 case WLAN_CIPHER_SUITE_CCMP_256:
3447 case WLAN_CIPHER_SUITE_GCMP:
3448 case WLAN_CIPHER_SUITE_GCMP_256:
3449 pn = atomic64_inc_return(&key->conf.tx_pn);
3450 crypto_hdr[0] = pn;
3451 crypto_hdr[1] = pn >> 8;
Alexander Wetzel96fc6ef2019-03-19 21:34:08 +01003452 crypto_hdr[3] = 0x20 | (key->conf.keyidx << 6);
Toke Høiland-Jørgensenbb42f2d2016-09-22 19:04:20 +02003453 crypto_hdr[4] = pn >> 16;
3454 crypto_hdr[5] = pn >> 24;
3455 crypto_hdr[6] = pn >> 32;
3456 crypto_hdr[7] = pn >> 40;
3457 break;
3458 }
3459 }
Ryder Lee03c39112021-06-17 18:31:12 +02003460
3461 return TX_CONTINUE;
Toke Høiland-Jørgensenbb42f2d2016-09-22 19:04:20 +02003462}
3463
Johannes Berg17c18bf2015-03-21 15:25:43 +01003464static bool ieee80211_xmit_fast(struct ieee80211_sub_if_data *sdata,
Toke Høiland-Jørgensenbb42f2d2016-09-22 19:04:20 +02003465 struct sta_info *sta,
Johannes Berg17c18bf2015-03-21 15:25:43 +01003466 struct ieee80211_fast_tx *fast_tx,
3467 struct sk_buff *skb)
3468{
3469 struct ieee80211_local *local = sdata->local;
3470 u16 ethertype = (skb->data[12] << 8) | skb->data[13];
3471 int extra_head = fast_tx->hdr_len - (ETH_HLEN - 2);
3472 int hw_headroom = sdata->local->hw.extra_tx_headroom;
3473 struct ethhdr eth;
Johannes Berg35f432a2017-01-02 11:19:29 +01003474 struct ieee80211_tx_info *info;
Johannes Berg17c18bf2015-03-21 15:25:43 +01003475 struct ieee80211_hdr *hdr = (void *)fast_tx->hdr;
3476 struct ieee80211_tx_data tx;
3477 ieee80211_tx_result r;
3478 struct tid_ampdu_tx *tid_tx = NULL;
3479 u8 tid = IEEE80211_NUM_TIDS;
3480
3481 /* control port protocol needs a lot of special handling */
3482 if (cpu_to_be16(ethertype) == sdata->control_port_protocol)
3483 return false;
3484
3485 /* only RFC 1042 SNAP */
3486 if (ethertype < ETH_P_802_3_MIN)
3487 return false;
3488
3489 /* don't handle TX status request here either */
3490 if (skb->sk && skb_shinfo(skb)->tx_flags & SKBTX_WIFI_STATUS)
3491 return false;
3492
3493 if (hdr->frame_control & cpu_to_le16(IEEE80211_STYPE_QOS_DATA)) {
3494 tid = skb->priority & IEEE80211_QOS_CTL_TAG1D_MASK;
3495 tid_tx = rcu_dereference(sta->ampdu_mlme.tid_tx[tid]);
Johannes Berg472be002015-06-09 16:45:08 +02003496 if (tid_tx) {
3497 if (!test_bit(HT_AGG_STATE_OPERATIONAL, &tid_tx->state))
3498 return false;
3499 if (tid_tx->timeout)
3500 tid_tx->last_tx = jiffies;
3501 }
Johannes Berg17c18bf2015-03-21 15:25:43 +01003502 }
3503
3504 /* after this point (skb is modified) we cannot return false */
3505
3506 if (skb_shared(skb)) {
3507 struct sk_buff *tmp_skb = skb;
3508
3509 skb = skb_clone(skb, GFP_ATOMIC);
3510 kfree_skb(tmp_skb);
3511
3512 if (!skb)
3513 return true;
3514 }
3515
Felix Fietkau6e0456b2016-03-03 22:59:00 +01003516 if ((hdr->frame_control & cpu_to_le16(IEEE80211_STYPE_QOS_DATA)) &&
3517 ieee80211_amsdu_aggregate(sdata, sta, fast_tx, skb))
3518 return true;
3519
Johannes Berg17c18bf2015-03-21 15:25:43 +01003520 /* will not be crypto-handled beyond what we do here, so use false
3521 * as the may-encrypt argument for the resize to not account for
3522 * more room than we already have in 'extra_head'
3523 */
3524 if (unlikely(ieee80211_skb_resize(sdata, skb,
3525 max_t(int, extra_head + hw_headroom -
3526 skb_headroom(skb), 0),
Johannes Berg14f46c12020-10-09 13:25:41 +02003527 ENCRYPT_NO))) {
Johannes Berg17c18bf2015-03-21 15:25:43 +01003528 kfree_skb(skb);
3529 return true;
3530 }
3531
3532 memcpy(&eth, skb->data, ETH_HLEN - 2);
Johannes Bergd58ff352017-06-16 14:29:23 +02003533 hdr = skb_push(skb, extra_head);
Johannes Berg17c18bf2015-03-21 15:25:43 +01003534 memcpy(skb->data, fast_tx->hdr, fast_tx->hdr_len);
3535 memcpy(skb->data + fast_tx->da_offs, eth.h_dest, ETH_ALEN);
3536 memcpy(skb->data + fast_tx->sa_offs, eth.h_source, ETH_ALEN);
3537
Johannes Berg35f432a2017-01-02 11:19:29 +01003538 info = IEEE80211_SKB_CB(skb);
Johannes Berg17c18bf2015-03-21 15:25:43 +01003539 memset(info, 0, sizeof(*info));
3540 info->band = fast_tx->band;
3541 info->control.vif = &sdata->vif;
3542 info->flags = IEEE80211_TX_CTL_FIRST_FRAGMENT |
3543 IEEE80211_TX_CTL_DONTFRAG |
3544 (tid_tx ? IEEE80211_TX_CTL_AMPDU : 0);
Toke Høiland-Jørgensenbb42f2d2016-09-22 19:04:20 +02003545 info->control.flags = IEEE80211_TX_CTRL_FAST_XMIT;
Johannes Berg17c18bf2015-03-21 15:25:43 +01003546
Julius Niedworok276d9e82019-03-28 21:01:06 +01003547#ifdef CONFIG_MAC80211_DEBUGFS
3548 if (local->force_tx_status)
3549 info->flags |= IEEE80211_TX_CTL_REQ_TX_STATUS;
3550#endif
3551
Felix Fietkaua786f962016-11-04 10:27:54 +01003552 if (hdr->frame_control & cpu_to_le16(IEEE80211_STYPE_QOS_DATA)) {
3553 tid = skb->priority & IEEE80211_QOS_CTL_TAG1D_MASK;
3554 *ieee80211_get_qos_ctl(hdr) = tid;
3555 }
3556
Johannes Berg17c18bf2015-03-21 15:25:43 +01003557 __skb_queue_head_init(&tx.skbs);
3558
3559 tx.flags = IEEE80211_TX_UNICAST;
3560 tx.local = local;
3561 tx.sdata = sdata;
3562 tx.sta = sta;
3563 tx.key = fast_tx->key;
3564
Toke Høiland-Jørgensenbb42f2d2016-09-22 19:04:20 +02003565 if (ieee80211_queue_skb(local, sdata, sta, skb))
3566 return true;
Johannes Berg17c18bf2015-03-21 15:25:43 +01003567
Ryder Lee03c39112021-06-17 18:31:12 +02003568 tx.skb = skb;
3569 r = ieee80211_xmit_fast_finish(sdata, sta, fast_tx->pn_offs,
3570 fast_tx->key, &tx);
3571 tx.skb = NULL;
3572 if (r == TX_DROP) {
3573 kfree_skb(skb);
3574 return true;
3575 }
Johannes Berg17c18bf2015-03-21 15:25:43 +01003576
3577 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
3578 sdata = container_of(sdata->bss,
3579 struct ieee80211_sub_if_data, u.ap);
3580
3581 __skb_queue_tail(&tx.skbs, skb);
Johannes Berg4fd03282019-10-01 23:26:35 +02003582 ieee80211_tx_frags(local, &sdata->vif, sta, &tx.skbs, false);
Johannes Berg17c18bf2015-03-21 15:25:43 +01003583 return true;
3584}
3585
Toke Høiland-Jørgensene0e2eff2016-09-22 19:04:19 +02003586struct sk_buff *ieee80211_tx_dequeue(struct ieee80211_hw *hw,
3587 struct ieee80211_txq *txq)
3588{
3589 struct ieee80211_local *local = hw_to_local(hw);
3590 struct txq_info *txqi = container_of(txq, struct txq_info, txq);
3591 struct ieee80211_hdr *hdr;
3592 struct sk_buff *skb = NULL;
3593 struct fq *fq = &local->fq;
3594 struct fq_tin *tin = &txqi->tin;
Toke Høiland-Jørgensenbb42f2d2016-09-22 19:04:20 +02003595 struct ieee80211_tx_info *info;
3596 struct ieee80211_tx_data tx;
3597 ieee80211_tx_result r;
Manikanta Pubbisetty21a5d4c2018-07-11 00:12:53 +05303598 struct ieee80211_vif *vif = txq->vif;
Toke Høiland-Jørgensene0e2eff2016-09-22 19:04:19 +02003599
Erik Stromdahlfb0e76a2019-06-17 22:01:39 +02003600 WARN_ON_ONCE(softirq_count() == 0);
3601
Toke Høiland-Jørgensen7a892332019-11-18 22:06:10 -08003602 if (!ieee80211_txq_airtime_check(hw, txq))
3603 return NULL;
3604
Felix Fietkauded46982019-03-16 18:06:33 +01003605begin:
Toke Høiland-Jørgensene0e2eff2016-09-22 19:04:19 +02003606 spin_lock_bh(&fq->lock);
3607
Manikanta Pubbisetty21a5d4c2018-07-11 00:12:53 +05303608 if (test_bit(IEEE80211_TXQ_STOP, &txqi->flags) ||
3609 test_bit(IEEE80211_TXQ_STOP_NETIF_TX, &txqi->flags))
Toke Høiland-Jørgensene0e2eff2016-09-22 19:04:19 +02003610 goto out;
3611
Johannes Berg1153a742021-03-23 21:05:01 +01003612 if (vif->txqs_stopped[txq->ac]) {
Manikanta Pubbisetty21a5d4c2018-07-11 00:12:53 +05303613 set_bit(IEEE80211_TXQ_STOP_NETIF_TX, &txqi->flags);
3614 goto out;
3615 }
3616
Toke Høiland-Jørgensenbb42f2d2016-09-22 19:04:20 +02003617 /* Make sure fragments stay together. */
3618 skb = __skb_dequeue(&txqi->frags);
Johannes Bergca47b462021-04-16 13:47:04 +02003619 if (unlikely(skb)) {
3620 if (!(IEEE80211_SKB_CB(skb)->control.flags &
3621 IEEE80211_TX_INTCFL_NEED_TXPROCESSING))
3622 goto out;
3623 IEEE80211_SKB_CB(skb)->control.flags &=
3624 ~IEEE80211_TX_INTCFL_NEED_TXPROCESSING;
3625 } else {
3626 skb = fq_tin_dequeue(fq, tin, fq_tin_dequeue_func);
3627 }
Toke Høiland-Jørgensenbb42f2d2016-09-22 19:04:20 +02003628
Toke Høiland-Jørgensene0e2eff2016-09-22 19:04:19 +02003629 if (!skb)
3630 goto out;
3631
Felix Fietkauded46982019-03-16 18:06:33 +01003632 spin_unlock_bh(&fq->lock);
3633
Toke Høiland-Jørgensene0e2eff2016-09-22 19:04:19 +02003634 hdr = (struct ieee80211_hdr *)skb->data;
Toke Høiland-Jørgensenbb42f2d2016-09-22 19:04:20 +02003635 info = IEEE80211_SKB_CB(skb);
3636
3637 memset(&tx, 0, sizeof(tx));
3638 __skb_queue_head_init(&tx.skbs);
3639 tx.local = local;
3640 tx.skb = skb;
3641 tx.sdata = vif_to_sdata(info->control.vif);
3642
Mathy Vanhoef804fc6a2020-10-19 20:01:13 +04003643 if (txq->sta) {
Toke Høiland-Jørgensenbb42f2d2016-09-22 19:04:20 +02003644 tx.sta = container_of(txq->sta, struct sta_info, sta);
Jouni Malinence2e1ca2020-03-26 15:51:34 +01003645 /*
3646 * Drop unicast frames to unauthorised stations unless they are
Mathy Vanhoef804fc6a2020-10-19 20:01:13 +04003647 * injected frames or EAPOL frames from the local station.
Jouni Malinence2e1ca2020-03-26 15:51:34 +01003648 */
Mathy Vanhoef804fc6a2020-10-19 20:01:13 +04003649 if (unlikely(!(info->flags & IEEE80211_TX_CTL_INJECTED) &&
3650 ieee80211_is_data(hdr->frame_control) &&
Johannes Bergbe8c8272020-03-29 22:50:06 +02003651 !ieee80211_vif_is_mesh(&tx.sdata->vif) &&
Jouni Malinence2e1ca2020-03-26 15:51:34 +01003652 tx.sdata->vif.type != NL80211_IFTYPE_OCB &&
3653 !is_multicast_ether_addr(hdr->addr1) &&
3654 !test_sta_flag(tx.sta, WLAN_STA_AUTHORIZED) &&
3655 (!(info->control.flags &
3656 IEEE80211_TX_CTRL_PORT_CTRL_PROTO) ||
3657 !ether_addr_equal(tx.sdata->vif.addr,
3658 hdr->addr2)))) {
3659 I802_DEBUG_INC(local->tx_handlers_drop_unauth_port);
3660 ieee80211_free_txskb(&local->hw, skb);
3661 goto begin;
3662 }
3663 }
Toke Høiland-Jørgensenbb42f2d2016-09-22 19:04:20 +02003664
3665 /*
3666 * The key can be removed while the packet was queued, so need to call
3667 * this here to get the current key.
3668 */
3669 r = ieee80211_tx_h_select_key(&tx);
3670 if (r != TX_CONTINUE) {
3671 ieee80211_free_txskb(&local->hw, skb);
3672 goto begin;
3673 }
3674
Felix Fietkauc1f4c9e2016-11-04 10:27:52 +01003675 if (test_bit(IEEE80211_TXQ_AMPDU, &txqi->flags))
3676 info->flags |= IEEE80211_TX_CTL_AMPDU;
3677 else
3678 info->flags &= ~IEEE80211_TX_CTL_AMPDU;
3679
Ryder Lee3187ba02021-06-17 18:31:13 +02003680 if (info->flags & IEEE80211_TX_CTL_HW_80211_ENCAP) {
3681 if (!ieee80211_hw_check(&local->hw, HAS_RATE_CONTROL)) {
3682 r = ieee80211_tx_h_rate_ctrl(&tx);
3683 if (r != TX_CONTINUE) {
3684 ieee80211_free_txskb(&local->hw, skb);
3685 goto begin;
3686 }
3687 }
John Crispin50ff4772019-11-25 11:04:37 +01003688 goto encap_out;
Ryder Lee3187ba02021-06-17 18:31:13 +02003689 }
John Crispin50ff4772019-11-25 11:04:37 +01003690
Toke Høiland-Jørgensenbb42f2d2016-09-22 19:04:20 +02003691 if (info->control.flags & IEEE80211_TX_CTRL_FAST_XMIT) {
Toke Høiland-Jørgensene0e2eff2016-09-22 19:04:19 +02003692 struct sta_info *sta = container_of(txq->sta, struct sta_info,
3693 sta);
Toke Høiland-Jørgensenbb42f2d2016-09-22 19:04:20 +02003694 u8 pn_offs = 0;
Toke Høiland-Jørgensene0e2eff2016-09-22 19:04:19 +02003695
Toke Høiland-Jørgensenbb42f2d2016-09-22 19:04:20 +02003696 if (tx.key &&
3697 (tx.key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_IV))
3698 pn_offs = ieee80211_hdrlen(hdr->frame_control);
3699
Ryder Lee03c39112021-06-17 18:31:12 +02003700 r = ieee80211_xmit_fast_finish(sta->sdata, sta, pn_offs,
3701 tx.key, &tx);
3702 if (r != TX_CONTINUE) {
3703 ieee80211_free_txskb(&local->hw, skb);
3704 goto begin;
3705 }
Toke Høiland-Jørgensenbb42f2d2016-09-22 19:04:20 +02003706 } else {
3707 if (invoke_tx_handlers_late(&tx))
3708 goto begin;
3709
3710 skb = __skb_dequeue(&tx.skbs);
3711
Felix Fietkauded46982019-03-16 18:06:33 +01003712 if (!skb_queue_empty(&tx.skbs)) {
3713 spin_lock_bh(&fq->lock);
Toke Høiland-Jørgensenbb42f2d2016-09-22 19:04:20 +02003714 skb_queue_splice_tail(&tx.skbs, &txqi->frags);
Felix Fietkauded46982019-03-16 18:06:33 +01003715 spin_unlock_bh(&fq->lock);
3716 }
Toke Høiland-Jørgensene0e2eff2016-09-22 19:04:19 +02003717 }
3718
Johannes Berg233e98d2018-12-15 11:03:09 +02003719 if (skb_has_frag_list(skb) &&
Johannes Berg1e1430d2016-10-04 09:22:19 +02003720 !ieee80211_hw_check(&local->hw, TX_FRAG_LIST)) {
3721 if (skb_linearize(skb)) {
3722 ieee80211_free_txskb(&local->hw, skb);
3723 goto begin;
3724 }
3725 }
3726
Johannes Berg53168212017-06-22 12:20:30 +02003727 switch (tx.sdata->vif.type) {
3728 case NL80211_IFTYPE_MONITOR:
3729 if (tx.sdata->u.mntr.flags & MONITOR_FLAG_ACTIVE) {
3730 vif = &tx.sdata->vif;
3731 break;
3732 }
3733 tx.sdata = rcu_dereference(local->monitor_sdata);
3734 if (tx.sdata) {
3735 vif = &tx.sdata->vif;
3736 info->hw_queue =
3737 vif->hw_queue[skb_get_queue_mapping(skb)];
3738 } else if (ieee80211_hw_check(&local->hw, QUEUE_CONTROL)) {
3739 ieee80211_free_txskb(&local->hw, skb);
3740 goto begin;
3741 } else {
3742 vif = NULL;
3743 }
3744 break;
3745 case NL80211_IFTYPE_AP_VLAN:
3746 tx.sdata = container_of(tx.sdata->bss,
3747 struct ieee80211_sub_if_data, u.ap);
Gustavo A. R. Silvafc0561d2020-07-07 15:45:48 -05003748 fallthrough;
Johannes Berg53168212017-06-22 12:20:30 +02003749 default:
3750 vif = &tx.sdata->vif;
3751 break;
3752 }
3753
John Crispin50ff4772019-11-25 11:04:37 +01003754encap_out:
Johannes Berg53168212017-06-22 12:20:30 +02003755 IEEE80211_SKB_CB(skb)->control.vif = vif;
Toke Høiland-Jørgensen7a892332019-11-18 22:06:10 -08003756
Johannes Bergca98c472020-02-21 10:45:45 +01003757 if (vif &&
3758 wiphy_ext_feature_isset(local->hw.wiphy, NL80211_EXT_FEATURE_AQL)) {
Felix Fietkau3ff901c2020-07-24 20:28:16 +02003759 bool ampdu = txq->ac != IEEE80211_AC_VO;
Toke Høiland-Jørgensen7a892332019-11-18 22:06:10 -08003760 u32 airtime;
3761
3762 airtime = ieee80211_calc_expected_tx_airtime(hw, vif, txq->sta,
Felix Fietkau3ff901c2020-07-24 20:28:16 +02003763 skb->len, ampdu);
Toke Høiland-Jørgensen7a892332019-11-18 22:06:10 -08003764 if (airtime) {
3765 airtime = ieee80211_info_set_tx_time_est(info, airtime);
3766 ieee80211_sta_update_pending_airtime(local, tx.sta,
3767 txq->ac,
3768 airtime,
3769 false);
3770 }
3771 }
3772
Felix Fietkauded46982019-03-16 18:06:33 +01003773 return skb;
Manikanta Pubbisetty21a5d4c2018-07-11 00:12:53 +05303774
Toke Høiland-Jørgensene0e2eff2016-09-22 19:04:19 +02003775out:
3776 spin_unlock_bh(&fq->lock);
3777
Toke Høiland-Jørgensene0e2eff2016-09-22 19:04:19 +02003778 return skb;
3779}
3780EXPORT_SYMBOL(ieee80211_tx_dequeue);
3781
Toke Høiland-Jørgensen18667602018-12-18 17:02:06 -08003782struct ieee80211_txq *ieee80211_next_txq(struct ieee80211_hw *hw, u8 ac)
3783{
3784 struct ieee80211_local *local = hw_to_local(hw);
Toke Høiland-Jørgensen24336472021-06-23 15:47:55 +02003785 struct airtime_sched_info *air_sched;
3786 u64 now = ktime_get_boottime_ns();
Felix Fietkau5b989c12019-03-15 11:03:35 +01003787 struct ieee80211_txq *ret = NULL;
Toke Høiland-Jørgensen24336472021-06-23 15:47:55 +02003788 struct airtime_info *air_info;
3789 struct txq_info *txqi = NULL;
3790 struct rb_node *node;
3791 bool first = false;
Toke Høiland-Jørgensen18667602018-12-18 17:02:06 -08003792
Toke Høiland-Jørgensen24336472021-06-23 15:47:55 +02003793 air_sched = &local->airtime[ac];
3794 spin_lock_bh(&air_sched->lock);
Toke Høiland-Jørgensen18667602018-12-18 17:02:06 -08003795
Toke Høiland-Jørgensen24336472021-06-23 15:47:55 +02003796 node = air_sched->schedule_pos;
Toke Høiland-Jørgensen18667602018-12-18 17:02:06 -08003797
Toke Høiland-Jørgensen24336472021-06-23 15:47:55 +02003798begin:
3799 if (!node) {
3800 node = rb_first_cached(&air_sched->active_txqs);
3801 first = true;
3802 } else {
3803 node = rb_next(node);
Kan Yan3ace10f2019-11-18 22:06:09 -08003804 }
3805
Toke Høiland-Jørgensen24336472021-06-23 15:47:55 +02003806 if (!node)
Felix Fietkau5b989c12019-03-15 11:03:35 +01003807 goto out;
Toke Høiland-Jørgensen18667602018-12-18 17:02:06 -08003808
Toke Høiland-Jørgensen24336472021-06-23 15:47:55 +02003809 txqi = container_of(node, struct txq_info, schedule_order);
3810 air_info = to_airtime_info(&txqi->txq);
3811
3812 if (air_info->v_t > air_sched->v_t &&
3813 (!first || !airtime_catchup_v_t(air_sched, air_info->v_t, now)))
3814 goto out;
3815
3816 if (!ieee80211_txq_airtime_check(hw, &txqi->txq)) {
3817 first = false;
3818 goto begin;
3819 }
3820
3821 air_sched->schedule_pos = node;
3822 air_sched->last_schedule_activity = now;
Felix Fietkau5b989c12019-03-15 11:03:35 +01003823 ret = &txqi->txq;
Felix Fietkau5b989c12019-03-15 11:03:35 +01003824out:
Toke Høiland-Jørgensen24336472021-06-23 15:47:55 +02003825 spin_unlock_bh(&air_sched->lock);
Felix Fietkau5b989c12019-03-15 11:03:35 +01003826 return ret;
Toke Høiland-Jørgensen18667602018-12-18 17:02:06 -08003827}
3828EXPORT_SYMBOL(ieee80211_next_txq);
3829
Toke Høiland-Jørgensen24336472021-06-23 15:47:55 +02003830static void __ieee80211_insert_txq(struct rb_root_cached *root,
3831 struct txq_info *txqi)
3832{
3833 struct rb_node **new = &root->rb_root.rb_node;
3834 struct airtime_info *old_air, *new_air;
3835 struct rb_node *parent = NULL;
3836 struct txq_info *__txqi;
3837 bool leftmost = true;
3838
3839 while (*new) {
3840 parent = *new;
3841 __txqi = rb_entry(parent, struct txq_info, schedule_order);
3842 old_air = to_airtime_info(&__txqi->txq);
3843 new_air = to_airtime_info(&txqi->txq);
3844
3845 if (new_air->v_t <= old_air->v_t) {
3846 new = &parent->rb_left;
3847 } else {
3848 new = &parent->rb_right;
3849 leftmost = false;
3850 }
3851 }
3852
3853 rb_link_node(&txqi->schedule_order, parent, new);
3854 rb_insert_color_cached(&txqi->schedule_order, root, leftmost);
3855}
3856
3857void ieee80211_resort_txq(struct ieee80211_hw *hw,
3858 struct ieee80211_txq *txq)
3859{
3860 struct airtime_info *air_info = to_airtime_info(txq);
3861 struct ieee80211_local *local = hw_to_local(hw);
3862 struct txq_info *txqi = to_txq_info(txq);
3863 struct airtime_sched_info *air_sched;
3864
3865 air_sched = &local->airtime[txq->ac];
3866
3867 lockdep_assert_held(&air_sched->lock);
3868
3869 if (!RB_EMPTY_NODE(&txqi->schedule_order)) {
3870 struct airtime_info *a_prev = NULL, *a_next = NULL;
3871 struct txq_info *t_prev, *t_next;
3872 struct rb_node *n_prev, *n_next;
3873
3874 /* Erasing a node can cause an expensive rebalancing operation,
3875 * so we check the previous and next nodes first and only remove
3876 * and re-insert if the current node is not already in the
3877 * correct position.
3878 */
3879 if ((n_prev = rb_prev(&txqi->schedule_order)) != NULL) {
3880 t_prev = container_of(n_prev, struct txq_info,
3881 schedule_order);
3882 a_prev = to_airtime_info(&t_prev->txq);
3883 }
3884
3885 if ((n_next = rb_next(&txqi->schedule_order)) != NULL) {
3886 t_next = container_of(n_next, struct txq_info,
3887 schedule_order);
3888 a_next = to_airtime_info(&t_next->txq);
3889 }
3890
3891 if ((!a_prev || a_prev->v_t <= air_info->v_t) &&
3892 (!a_next || a_next->v_t > air_info->v_t))
3893 return;
3894
3895 if (air_sched->schedule_pos == &txqi->schedule_order)
3896 air_sched->schedule_pos = n_prev;
3897
3898 rb_erase_cached(&txqi->schedule_order,
3899 &air_sched->active_txqs);
3900 RB_CLEAR_NODE(&txqi->schedule_order);
3901 __ieee80211_insert_txq(&air_sched->active_txqs, txqi);
3902 }
3903}
3904
3905void ieee80211_update_airtime_weight(struct ieee80211_local *local,
3906 struct airtime_sched_info *air_sched,
3907 u64 now, bool force)
3908{
3909 struct airtime_info *air_info, *tmp;
3910 u64 weight_sum = 0;
3911
3912 if (unlikely(!now))
3913 now = ktime_get_boottime_ns();
3914
3915 lockdep_assert_held(&air_sched->lock);
3916
3917 if (!force && (air_sched->last_weight_update <
3918 now - AIRTIME_ACTIVE_DURATION))
3919 return;
3920
3921 list_for_each_entry_safe(air_info, tmp,
3922 &air_sched->active_list, list) {
3923 if (airtime_is_active(air_info, now))
3924 weight_sum += air_info->weight;
3925 else
3926 list_del_init(&air_info->list);
3927 }
3928 airtime_weight_sum_set(air_sched, weight_sum);
3929 air_sched->last_weight_update = now;
3930}
3931
3932void ieee80211_schedule_txq(struct ieee80211_hw *hw,
3933 struct ieee80211_txq *txq)
3934 __acquires(txq_lock) __releases(txq_lock)
3935{
3936 struct ieee80211_local *local = hw_to_local(hw);
3937 struct txq_info *txqi = to_txq_info(txq);
3938 struct airtime_sched_info *air_sched;
3939 u64 now = ktime_get_boottime_ns();
3940 struct airtime_info *air_info;
3941 u8 ac = txq->ac;
3942 bool was_active;
3943
3944 air_sched = &local->airtime[ac];
3945 air_info = to_airtime_info(txq);
3946
3947 spin_lock_bh(&air_sched->lock);
3948 was_active = airtime_is_active(air_info, now);
3949 airtime_set_active(air_sched, air_info, now);
3950
3951 if (!RB_EMPTY_NODE(&txqi->schedule_order))
3952 goto out;
3953
3954 /* If the station has been inactive for a while, catch up its v_t so it
3955 * doesn't get indefinite priority; see comment above the definition of
3956 * AIRTIME_MAX_BEHIND.
3957 */
3958 if ((!was_active && air_info->v_t < air_sched->v_t) ||
3959 air_info->v_t < air_sched->v_t - AIRTIME_MAX_BEHIND)
3960 air_info->v_t = air_sched->v_t;
3961
3962 ieee80211_update_airtime_weight(local, air_sched, now, !was_active);
3963 __ieee80211_insert_txq(&air_sched->active_txqs, txqi);
3964
3965out:
3966 spin_unlock_bh(&air_sched->lock);
3967}
3968EXPORT_SYMBOL(ieee80211_schedule_txq);
3969
3970static void __ieee80211_unschedule_txq(struct ieee80211_hw *hw,
3971 struct ieee80211_txq *txq,
3972 bool purge)
3973{
3974 struct ieee80211_local *local = hw_to_local(hw);
3975 struct txq_info *txqi = to_txq_info(txq);
3976 struct airtime_sched_info *air_sched;
3977 struct airtime_info *air_info;
3978
3979 air_sched = &local->airtime[txq->ac];
3980 air_info = to_airtime_info(&txqi->txq);
3981
3982 lockdep_assert_held(&air_sched->lock);
3983
3984 if (purge) {
3985 list_del_init(&air_info->list);
3986 ieee80211_update_airtime_weight(local, air_sched, 0, true);
3987 }
3988
3989 if (RB_EMPTY_NODE(&txqi->schedule_order))
3990 return;
3991
3992 if (air_sched->schedule_pos == &txqi->schedule_order)
3993 air_sched->schedule_pos = rb_prev(&txqi->schedule_order);
3994
3995 if (!purge)
3996 airtime_set_active(air_sched, air_info,
3997 ktime_get_boottime_ns());
3998
3999 rb_erase_cached(&txqi->schedule_order,
4000 &air_sched->active_txqs);
4001 RB_CLEAR_NODE(&txqi->schedule_order);
4002}
4003
4004void ieee80211_unschedule_txq(struct ieee80211_hw *hw,
Felix Fietkau2b4a6692019-03-18 12:00:58 +01004005 struct ieee80211_txq *txq,
Toke Høiland-Jørgensen24336472021-06-23 15:47:55 +02004006 bool purge)
4007 __acquires(txq_lock) __releases(txq_lock)
4008{
4009 struct ieee80211_local *local = hw_to_local(hw);
4010
4011 spin_lock_bh(&local->airtime[txq->ac].lock);
4012 __ieee80211_unschedule_txq(hw, txq, purge);
4013 spin_unlock_bh(&local->airtime[txq->ac].lock);
4014}
4015
4016void ieee80211_return_txq(struct ieee80211_hw *hw,
4017 struct ieee80211_txq *txq, bool force)
Toke Høiland-Jørgensen18667602018-12-18 17:02:06 -08004018{
4019 struct ieee80211_local *local = hw_to_local(hw);
4020 struct txq_info *txqi = to_txq_info(txq);
4021
Toke Høiland-Jørgensen24336472021-06-23 15:47:55 +02004022 spin_lock_bh(&local->airtime[txq->ac].lock);
Toke Høiland-Jørgensen18667602018-12-18 17:02:06 -08004023
Toke Høiland-Jørgensen24336472021-06-23 15:47:55 +02004024 if (!RB_EMPTY_NODE(&txqi->schedule_order) && !force &&
4025 !txq_has_queue(txq))
4026 __ieee80211_unschedule_txq(hw, txq, false);
Toke Høiland-Jørgensen18667602018-12-18 17:02:06 -08004027
Toke Høiland-Jørgensen24336472021-06-23 15:47:55 +02004028 spin_unlock_bh(&local->airtime[txq->ac].lock);
Toke Høiland-Jørgensen390298e2019-01-22 15:20:16 +01004029}
Toke Høiland-Jørgensen24336472021-06-23 15:47:55 +02004030EXPORT_SYMBOL(ieee80211_return_txq);
Toke Høiland-Jørgensen390298e2019-01-22 15:20:16 +01004031
Lorenzo Bianconie9084352021-01-09 18:57:51 +01004032DEFINE_STATIC_KEY_FALSE(aql_disable);
4033
Kan Yan3ace10f2019-11-18 22:06:09 -08004034bool ieee80211_txq_airtime_check(struct ieee80211_hw *hw,
4035 struct ieee80211_txq *txq)
4036{
Toke Høiland-Jørgensen24336472021-06-23 15:47:55 +02004037 struct airtime_info *air_info = to_airtime_info(txq);
Kan Yan3ace10f2019-11-18 22:06:09 -08004038 struct ieee80211_local *local = hw_to_local(hw);
4039
Toke Høiland-Jørgensen911bde02019-12-12 12:14:37 +01004040 if (!wiphy_ext_feature_isset(local->hw.wiphy, NL80211_EXT_FEATURE_AQL))
Kan Yan3ace10f2019-11-18 22:06:09 -08004041 return true;
4042
Lorenzo Bianconie9084352021-01-09 18:57:51 +01004043 if (static_branch_unlikely(&aql_disable))
4044 return true;
4045
Kan Yan3ace10f2019-11-18 22:06:09 -08004046 if (!txq->sta)
4047 return true;
4048
Johannes Berg73bc9e02021-03-19 23:28:01 +01004049 if (unlikely(txq->tid == IEEE80211_NUM_TIDS))
4050 return true;
4051
Toke Høiland-Jørgensen24336472021-06-23 15:47:55 +02004052 if (atomic_read(&air_info->aql_tx_pending) < air_info->aql_limit_low)
Kan Yan3ace10f2019-11-18 22:06:09 -08004053 return true;
4054
4055 if (atomic_read(&local->aql_total_pending_airtime) <
4056 local->aql_threshold &&
Toke Høiland-Jørgensen24336472021-06-23 15:47:55 +02004057 atomic_read(&air_info->aql_tx_pending) < air_info->aql_limit_high)
Kan Yan3ace10f2019-11-18 22:06:09 -08004058 return true;
4059
4060 return false;
4061}
4062EXPORT_SYMBOL(ieee80211_txq_airtime_check);
4063
Toke Høiland-Jørgensenb4809e92018-12-18 17:02:08 -08004064bool ieee80211_txq_may_transmit(struct ieee80211_hw *hw,
4065 struct ieee80211_txq *txq)
4066{
Toke Høiland-Jørgensen24336472021-06-23 15:47:55 +02004067 struct txq_info *first_txqi = NULL, *txqi = to_txq_info(txq);
Toke Høiland-Jørgensenb4809e92018-12-18 17:02:08 -08004068 struct ieee80211_local *local = hw_to_local(hw);
Toke Høiland-Jørgensen24336472021-06-23 15:47:55 +02004069 struct airtime_sched_info *air_sched;
4070 struct airtime_info *air_info;
4071 struct rb_node *node = NULL;
4072 bool ret = false;
4073 u64 now;
Toke Høiland-Jørgensenb4809e92018-12-18 17:02:08 -08004074
Toke Høiland-Jørgensenb4809e92018-12-18 17:02:08 -08004075
Toke Høiland-Jørgensen24336472021-06-23 15:47:55 +02004076 if (!ieee80211_txq_airtime_check(hw, txq))
4077 return false;
4078
4079 air_sched = &local->airtime[txq->ac];
4080 spin_lock_bh(&air_sched->lock);
4081
4082 if (RB_EMPTY_NODE(&txqi->schedule_order))
Toke Høiland-Jørgensenb4809e92018-12-18 17:02:08 -08004083 goto out;
4084
Toke Høiland-Jørgensen24336472021-06-23 15:47:55 +02004085 now = ktime_get_boottime_ns();
Toke Høiland-Jørgensenb4809e92018-12-18 17:02:08 -08004086
Toke Høiland-Jørgensen24336472021-06-23 15:47:55 +02004087 /* Like in ieee80211_next_txq(), make sure the first station in the
4088 * scheduling order is eligible for transmission to avoid starvation.
4089 */
4090 node = rb_first_cached(&air_sched->active_txqs);
4091 if (node) {
4092 first_txqi = container_of(node, struct txq_info,
4093 schedule_order);
4094 air_info = to_airtime_info(&first_txqi->txq);
Toke Høiland-Jørgensenb4809e92018-12-18 17:02:08 -08004095
Toke Høiland-Jørgensen24336472021-06-23 15:47:55 +02004096 if (air_sched->v_t < air_info->v_t)
4097 airtime_catchup_v_t(air_sched, air_info->v_t, now);
Toke Høiland-Jørgensenb4809e92018-12-18 17:02:08 -08004098 }
4099
Toke Høiland-Jørgensen24336472021-06-23 15:47:55 +02004100 air_info = to_airtime_info(&txqi->txq);
4101 if (air_info->v_t <= air_sched->v_t) {
4102 air_sched->last_schedule_activity = now;
4103 ret = true;
4104 }
Toke Høiland-Jørgensenb4809e92018-12-18 17:02:08 -08004105
Toke Høiland-Jørgensenb4809e92018-12-18 17:02:08 -08004106out:
Toke Høiland-Jørgensen24336472021-06-23 15:47:55 +02004107 spin_unlock_bh(&air_sched->lock);
4108 return ret;
Toke Høiland-Jørgensenb4809e92018-12-18 17:02:08 -08004109}
4110EXPORT_SYMBOL(ieee80211_txq_may_transmit);
4111
Toke Høiland-Jørgensen18667602018-12-18 17:02:06 -08004112void ieee80211_txq_schedule_start(struct ieee80211_hw *hw, u8 ac)
Toke Høiland-Jørgensen18667602018-12-18 17:02:06 -08004113{
4114 struct ieee80211_local *local = hw_to_local(hw);
Toke Høiland-Jørgensen24336472021-06-23 15:47:55 +02004115 struct airtime_sched_info *air_sched = &local->airtime[ac];
Toke Høiland-Jørgensen18667602018-12-18 17:02:06 -08004116
Toke Høiland-Jørgensen24336472021-06-23 15:47:55 +02004117 spin_lock_bh(&air_sched->lock);
4118 air_sched->schedule_pos = NULL;
4119 spin_unlock_bh(&air_sched->lock);
Toke Høiland-Jørgensen18667602018-12-18 17:02:06 -08004120}
Felix Fietkau5b989c12019-03-15 11:03:35 +01004121EXPORT_SYMBOL(ieee80211_txq_schedule_start);
Toke Høiland-Jørgensen18667602018-12-18 17:02:06 -08004122
Felix Fietkau08a46c642021-06-17 18:31:11 +02004123static void
4124ieee80211_aggr_check(struct ieee80211_sub_if_data *sdata,
4125 struct sta_info *sta,
4126 struct sk_buff *skb)
4127{
4128 struct rate_control_ref *ref = sdata->local->rate_ctrl;
4129 u16 tid;
4130
4131 if (!ref || !(ref->ops->capa & RATE_CTRL_CAPA_AMPDU_TRIGGER))
4132 return;
4133
4134 if (!sta || !sta->sta.ht_cap.ht_supported ||
4135 !sta->sta.wme || skb_get_queue_mapping(skb) == IEEE80211_AC_VO ||
4136 skb->protocol == sdata->control_port_protocol)
4137 return;
4138
4139 tid = skb->priority & IEEE80211_QOS_CTL_TID_MASK;
4140 if (likely(sta->ampdu_mlme.tid_tx[tid]))
4141 return;
4142
4143 ieee80211_start_tx_ba_session(&sta->sta, tid, 0);
4144}
4145
Johannes Berg4c9451e2014-11-09 18:50:10 +02004146void __ieee80211_subif_start_xmit(struct sk_buff *skb,
4147 struct net_device *dev,
Rajkumar Manoharan06016772019-04-11 13:47:25 -07004148 u32 info_flags,
Markus Theila7528192020-05-27 18:03:34 +02004149 u32 ctrl_flags,
4150 u64 *cookie)
Johannes Berg4c9451e2014-11-09 18:50:10 +02004151{
4152 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Felix Fietkau1974da82019-03-25 08:59:23 +01004153 struct ieee80211_local *local = sdata->local;
Johannes Berg97ffe752015-03-21 09:13:45 +01004154 struct sta_info *sta;
Johannes Berg80616c02015-04-14 14:50:41 +02004155 struct sk_buff *next;
Johannes Berg4c9451e2014-11-09 18:50:10 +02004156
4157 if (unlikely(skb->len < ETH_HLEN)) {
4158 kfree_skb(skb);
4159 return;
4160 }
4161
4162 rcu_read_lock();
4163
Johannes Berg2d981fd2015-04-10 14:10:10 +02004164 if (ieee80211_lookup_ra_sta(sdata, skb, &sta))
4165 goto out_free;
Johannes Berg4c9451e2014-11-09 18:50:10 +02004166
Felix Fietkau1974da82019-03-25 08:59:23 +01004167 if (IS_ERR(sta))
4168 sta = NULL;
4169
4170 if (local->ops->wake_tx_queue) {
4171 u16 queue = __ieee80211_select_queue(sdata, sta, skb);
4172 skb_set_queue_mapping(skb, queue);
Felix Fietkau180ac482020-07-26 15:09:47 +02004173 skb_get_hash(skb);
Felix Fietkau1974da82019-03-25 08:59:23 +01004174 }
4175
Felix Fietkau08a46c642021-06-17 18:31:11 +02004176 ieee80211_aggr_check(sdata, sta, skb);
4177
Felix Fietkau1974da82019-03-25 08:59:23 +01004178 if (sta) {
Johannes Berg17c18bf2015-03-21 15:25:43 +01004179 struct ieee80211_fast_tx *fast_tx;
4180
Wen Gong70e53662018-08-08 18:40:01 +08004181 sk_pacing_shift_update(skb->sk, sdata->local->hw.tx_sk_pacing_shift);
Toke Høiland-Jørgensen36148c22018-02-02 16:11:05 +01004182
Johannes Berg17c18bf2015-03-21 15:25:43 +01004183 fast_tx = rcu_dereference(sta->fast_tx);
4184
4185 if (fast_tx &&
Toke Høiland-Jørgensenbb42f2d2016-09-22 19:04:20 +02004186 ieee80211_xmit_fast(sdata, sta, fast_tx, skb))
Johannes Berg17c18bf2015-03-21 15:25:43 +01004187 goto out;
4188 }
4189
Johannes Berg80616c02015-04-14 14:50:41 +02004190 if (skb_is_gso(skb)) {
4191 struct sk_buff *segs;
Johannes Berg680a0da2015-04-13 16:58:25 +02004192
Johannes Berg80616c02015-04-14 14:50:41 +02004193 segs = skb_gso_segment(skb, 0);
4194 if (IS_ERR(segs)) {
Johannes Berg2d981fd2015-04-10 14:10:10 +02004195 goto out_free;
Johannes Berg80616c02015-04-14 14:50:41 +02004196 } else if (segs) {
4197 consume_skb(skb);
4198 skb = segs;
4199 }
4200 } else {
4201 /* we cannot process non-linear frames on this path */
4202 if (skb_linearize(skb)) {
4203 kfree_skb(skb);
4204 goto out;
4205 }
4206
4207 /* the frame could be fragmented, software-encrypted, and other
4208 * things so we cannot really handle checksum offload with it -
4209 * fix it up in software before we handle anything else.
4210 */
4211 if (skb->ip_summed == CHECKSUM_PARTIAL) {
Johannes Bergf603f1f2015-05-05 15:25:33 +02004212 skb_set_transport_header(skb,
4213 skb_checksum_start_offset(skb));
Johannes Berg80616c02015-04-14 14:50:41 +02004214 if (skb_checksum_help(skb))
4215 goto out_free;
4216 }
Johannes Berg2d981fd2015-04-10 14:10:10 +02004217 }
4218
Jason A. Donenfeld9f3ef3d2020-01-13 18:42:33 -05004219 skb_list_walk_safe(skb, skb, next) {
4220 skb_mark_not_on_list(skb);
Johannes Berg4c9451e2014-11-09 18:50:10 +02004221
Markus Theil5af7fef2020-06-17 10:26:36 +02004222 if (skb->protocol == sdata->control_port_protocol)
4223 ctrl_flags |= IEEE80211_TX_CTRL_SKIP_MPATH_LOOKUP;
4224
Rajkumar Manoharan06016772019-04-11 13:47:25 -07004225 skb = ieee80211_build_hdr(sdata, skb, info_flags,
Markus Theila7528192020-05-27 18:03:34 +02004226 sta, ctrl_flags, cookie);
Jason A. Donenfeld9f3ef3d2020-01-13 18:42:33 -05004227 if (IS_ERR(skb)) {
4228 kfree_skb_list(next);
Johannes Berg80616c02015-04-14 14:50:41 +02004229 goto out;
Jason A. Donenfeld9f3ef3d2020-01-13 18:42:33 -05004230 }
Johannes Berg80616c02015-04-14 14:50:41 +02004231
Lev Stipakov36ec1442020-11-13 23:46:24 +02004232 dev_sw_netstats_tx_add(dev, 1, skb->len);
Johannes Berg80616c02015-04-14 14:50:41 +02004233
Mathy Vanhoef08aca292020-07-23 14:01:52 +04004234 ieee80211_xmit(sdata, sta, skb);
Johannes Berg80616c02015-04-14 14:50:41 +02004235 }
Johannes Berg2d981fd2015-04-10 14:10:10 +02004236 goto out;
4237 out_free:
4238 kfree_skb(skb);
Johannes Berg4c9451e2014-11-09 18:50:10 +02004239 out:
4240 rcu_read_unlock();
4241}
4242
Michael Braunebceec82016-11-22 11:52:18 +01004243static int ieee80211_change_da(struct sk_buff *skb, struct sta_info *sta)
4244{
4245 struct ethhdr *eth;
4246 int err;
4247
4248 err = skb_ensure_writable(skb, ETH_HLEN);
4249 if (unlikely(err))
4250 return err;
4251
4252 eth = (void *)skb->data;
4253 ether_addr_copy(eth->h_dest, sta->sta.addr);
4254
4255 return 0;
4256}
4257
4258static bool ieee80211_multicast_to_unicast(struct sk_buff *skb,
4259 struct net_device *dev)
4260{
4261 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
4262 const struct ethhdr *eth = (void *)skb->data;
4263 const struct vlan_ethhdr *ethvlan = (void *)skb->data;
4264 __be16 ethertype;
4265
4266 if (likely(!is_multicast_ether_addr(eth->h_dest)))
4267 return false;
4268
4269 switch (sdata->vif.type) {
4270 case NL80211_IFTYPE_AP_VLAN:
4271 if (sdata->u.vlan.sta)
4272 return false;
4273 if (sdata->wdev.use_4addr)
4274 return false;
Gustavo A. R. Silvafc0561d2020-07-07 15:45:48 -05004275 fallthrough;
Michael Braunebceec82016-11-22 11:52:18 +01004276 case NL80211_IFTYPE_AP:
4277 /* check runtime toggle for this bss */
4278 if (!sdata->bss->multicast_to_unicast)
4279 return false;
4280 break;
4281 default:
4282 return false;
4283 }
4284
4285 /* multicast to unicast conversion only for some payload */
4286 ethertype = eth->h_proto;
4287 if (ethertype == htons(ETH_P_8021Q) && skb->len >= VLAN_ETH_HLEN)
4288 ethertype = ethvlan->h_vlan_encapsulated_proto;
4289 switch (ethertype) {
4290 case htons(ETH_P_ARP):
4291 case htons(ETH_P_IP):
4292 case htons(ETH_P_IPV6):
4293 break;
4294 default:
4295 return false;
4296 }
4297
4298 return true;
4299}
4300
4301static void
4302ieee80211_convert_to_unicast(struct sk_buff *skb, struct net_device *dev,
4303 struct sk_buff_head *queue)
4304{
4305 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
4306 struct ieee80211_local *local = sdata->local;
4307 const struct ethhdr *eth = (struct ethhdr *)skb->data;
4308 struct sta_info *sta, *first = NULL;
4309 struct sk_buff *cloned_skb;
4310
4311 rcu_read_lock();
4312
4313 list_for_each_entry_rcu(sta, &local->sta_list, list) {
4314 if (sdata != sta->sdata)
4315 /* AP-VLAN mismatch */
4316 continue;
4317 if (unlikely(ether_addr_equal(eth->h_source, sta->sta.addr)))
4318 /* do not send back to source */
4319 continue;
4320 if (!first) {
4321 first = sta;
4322 continue;
4323 }
4324 cloned_skb = skb_clone(skb, GFP_ATOMIC);
4325 if (!cloned_skb)
4326 goto multicast;
4327 if (unlikely(ieee80211_change_da(cloned_skb, sta))) {
4328 dev_kfree_skb(cloned_skb);
4329 goto multicast;
4330 }
4331 __skb_queue_tail(queue, cloned_skb);
4332 }
4333
4334 if (likely(first)) {
4335 if (unlikely(ieee80211_change_da(skb, first)))
4336 goto multicast;
4337 __skb_queue_tail(queue, skb);
4338 } else {
4339 /* no STA connected, drop */
4340 kfree_skb(skb);
4341 skb = NULL;
4342 }
4343
4344 goto out;
4345multicast:
4346 __skb_queue_purge(queue);
4347 __skb_queue_tail(queue, skb);
4348out:
4349 rcu_read_unlock();
4350}
4351
Johannes Berg4c9451e2014-11-09 18:50:10 +02004352/**
4353 * ieee80211_subif_start_xmit - netif start_xmit function for 802.3 vifs
4354 * @skb: packet to be sent
4355 * @dev: incoming interface
4356 *
4357 * On failure skb will be freed.
4358 */
Liad Kaufman24d342c2014-11-09 18:50:07 +02004359netdev_tx_t ieee80211_subif_start_xmit(struct sk_buff *skb,
4360 struct net_device *dev)
4361{
Michael Braunebceec82016-11-22 11:52:18 +01004362 if (unlikely(ieee80211_multicast_to_unicast(skb, dev))) {
4363 struct sk_buff_head queue;
4364
4365 __skb_queue_head_init(&queue);
4366 ieee80211_convert_to_unicast(skb, dev, &queue);
4367 while ((skb = __skb_dequeue(&queue)))
Markus Theila7528192020-05-27 18:03:34 +02004368 __ieee80211_subif_start_xmit(skb, dev, 0, 0, NULL);
Michael Braunebceec82016-11-22 11:52:18 +01004369 } else {
Markus Theila7528192020-05-27 18:03:34 +02004370 __ieee80211_subif_start_xmit(skb, dev, 0, 0, NULL);
Michael Braunebceec82016-11-22 11:52:18 +01004371 }
4372
Liad Kaufman24d342c2014-11-09 18:50:07 +02004373 return NETDEV_TX_OK;
4374}
Johannes Berge2ebc742007-07-27 15:43:22 +02004375
John Crispin50ff4772019-11-25 11:04:37 +01004376static bool ieee80211_tx_8023(struct ieee80211_sub_if_data *sdata,
4377 struct sk_buff *skb, int led_len,
4378 struct sta_info *sta,
4379 bool txpending)
4380{
4381 struct ieee80211_local *local = sdata->local;
4382 struct ieee80211_tx_control control = {};
4383 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
4384 struct ieee80211_sta *pubsta = NULL;
4385 unsigned long flags;
4386 int q = info->hw_queue;
4387
Lorenzo Bianconi196900f2021-03-08 23:01:49 +01004388 if (sta)
4389 sk_pacing_shift_update(skb->sk, local->hw.tx_sk_pacing_shift);
4390
John Crispin50ff4772019-11-25 11:04:37 +01004391 if (ieee80211_queue_skb(local, sdata, sta, skb))
4392 return true;
4393
4394 spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
4395
4396 if (local->queue_stop_reasons[q] ||
4397 (!txpending && !skb_queue_empty(&local->pending[q]))) {
4398 if (txpending)
4399 skb_queue_head(&local->pending[q], skb);
4400 else
4401 skb_queue_tail(&local->pending[q], skb);
4402
4403 spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
4404
4405 return false;
4406 }
4407
4408 spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
4409
4410 if (sta && sta->uploaded)
4411 pubsta = &sta->sta;
4412
4413 control.sta = pubsta;
4414
4415 drv_tx(local, &control, skb);
4416
4417 return true;
4418}
4419
4420static void ieee80211_8023_xmit(struct ieee80211_sub_if_data *sdata,
4421 struct net_device *dev, struct sta_info *sta,
Felix Fietkau6aea26c2020-09-08 14:36:53 +02004422 struct ieee80211_key *key, struct sk_buff *skb)
John Crispin50ff4772019-11-25 11:04:37 +01004423{
4424 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
John Crispin50ff4772019-11-25 11:04:37 +01004425 struct ieee80211_local *local = sdata->local;
Felix Fietkau96ae9cd2020-09-08 14:36:50 +02004426 struct tid_ampdu_tx *tid_tx;
4427 u8 tid;
John Crispin50ff4772019-11-25 11:04:37 +01004428
Felix Fietkau5f8d69e2020-09-08 14:36:49 +02004429 if (local->ops->wake_tx_queue) {
4430 u16 queue = __ieee80211_select_queue(sdata, sta, skb);
4431 skb_set_queue_mapping(skb, queue);
4432 skb_get_hash(skb);
4433 }
4434
John Crispin50ff4772019-11-25 11:04:37 +01004435 if (unlikely(test_bit(SCAN_SW_SCANNING, &local->scanning)) &&
4436 test_bit(SDATA_STATE_OFFCHANNEL, &sdata->state))
4437 goto out_free;
4438
Vasanthakumar Thiagarajane61fbfc2020-07-22 19:50:17 +05304439 memset(info, 0, sizeof(*info));
4440
Felix Fietkau08a46c642021-06-17 18:31:11 +02004441 ieee80211_aggr_check(sdata, sta, skb);
4442
Felix Fietkauaea6a3f2020-09-08 14:36:51 +02004443 tid = skb->priority & IEEE80211_QOS_CTL_TAG1D_MASK;
4444 tid_tx = rcu_dereference(sta->ampdu_mlme.tid_tx[tid]);
4445 if (tid_tx) {
4446 if (!test_bit(HT_AGG_STATE_OPERATIONAL, &tid_tx->state)) {
4447 /* fall back to non-offload slow path */
4448 __ieee80211_subif_start_xmit(skb, dev, 0, 0, NULL);
4449 return;
Felix Fietkau96ae9cd2020-09-08 14:36:50 +02004450 }
Felix Fietkauaea6a3f2020-09-08 14:36:51 +02004451
4452 info->flags |= IEEE80211_TX_CTL_AMPDU;
4453 if (tid_tx->timeout)
4454 tid_tx->last_tx = jiffies;
Felix Fietkau96ae9cd2020-09-08 14:36:50 +02004455 }
4456
Felix Fietkauaea6a3f2020-09-08 14:36:51 +02004457 if (unlikely(skb->sk &&
John Crispin50ff4772019-11-25 11:04:37 +01004458 skb_shinfo(skb)->tx_flags & SKBTX_WIFI_STATUS))
Vasanthakumar Thiagarajane61fbfc2020-07-22 19:50:17 +05304459 info->ack_frame_id = ieee80211_store_ack_skb(local, skb,
4460 &info->flags, NULL);
John Crispin50ff4772019-11-25 11:04:37 +01004461
John Crispin50ff4772019-11-25 11:04:37 +01004462 info->hw_queue = sdata->vif.hw_queue[skb_get_queue_mapping(skb)];
4463
Lev Stipakov36ec1442020-11-13 23:46:24 +02004464 dev_sw_netstats_tx_add(dev, 1, skb->len);
John Crispin50ff4772019-11-25 11:04:37 +01004465
Felix Fietkauaea6a3f2020-09-08 14:36:51 +02004466 sta->tx_stats.bytes[skb_get_queue_mapping(skb)] += skb->len;
4467 sta->tx_stats.packets[skb_get_queue_mapping(skb)]++;
John Crispin50ff4772019-11-25 11:04:37 +01004468
4469 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
4470 sdata = container_of(sdata->bss,
4471 struct ieee80211_sub_if_data, u.ap);
4472
Felix Fietkaucc20ff2c2020-09-08 14:36:57 +02004473 info->flags |= IEEE80211_TX_CTL_HW_80211_ENCAP;
John Crispin50ff4772019-11-25 11:04:37 +01004474 info->control.vif = &sdata->vif;
4475
Felix Fietkauae045152020-09-08 14:36:52 +02004476 if (key)
4477 info->control.hw_key = &key->conf;
4478
John Crispin50ff4772019-11-25 11:04:37 +01004479 ieee80211_tx_8023(sdata, skb, skb->len, sta, false);
4480
4481 return;
4482
4483out_free:
4484 kfree_skb(skb);
4485}
4486
4487netdev_tx_t ieee80211_subif_start_xmit_8023(struct sk_buff *skb,
4488 struct net_device *dev)
4489{
4490 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Felix Fietkauaea6a3f2020-09-08 14:36:51 +02004491 struct ethhdr *ehdr = (struct ethhdr *)skb->data;
Felix Fietkau6aea26c2020-09-08 14:36:53 +02004492 struct ieee80211_key *key;
John Crispin50ff4772019-11-25 11:04:37 +01004493 struct sta_info *sta;
John Crispin50ff4772019-11-25 11:04:37 +01004494
4495 if (unlikely(skb->len < ETH_HLEN)) {
4496 kfree_skb(skb);
4497 return NETDEV_TX_OK;
4498 }
4499
4500 rcu_read_lock();
4501
Felix Fietkau6aea26c2020-09-08 14:36:53 +02004502 if (ieee80211_lookup_ra_sta(sdata, skb, &sta)) {
John Crispin50ff4772019-11-25 11:04:37 +01004503 kfree_skb(skb);
Felix Fietkau6aea26c2020-09-08 14:36:53 +02004504 goto out;
4505 }
John Crispin50ff4772019-11-25 11:04:37 +01004506
Felix Fietkau6aea26c2020-09-08 14:36:53 +02004507 if (unlikely(IS_ERR_OR_NULL(sta) || !sta->uploaded ||
4508 !test_sta_flag(sta, WLAN_STA_AUTHORIZED) ||
Felix Fietkaub101dd22020-12-18 19:47:16 +01004509 sdata->control_port_protocol == ehdr->h_proto))
4510 goto skip_offload;
Felix Fietkau6aea26c2020-09-08 14:36:53 +02004511
Felix Fietkaub101dd22020-12-18 19:47:16 +01004512 key = rcu_dereference(sta->ptk[sta->ptk_idx]);
4513 if (!key)
4514 key = rcu_dereference(sdata->default_unicast_key);
Felix Fietkau6aea26c2020-09-08 14:36:53 +02004515
Felix Fietkaub101dd22020-12-18 19:47:16 +01004516 if (key && (!(key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE) ||
4517 key->conf.cipher == WLAN_CIPHER_SUITE_TKIP))
4518 goto skip_offload;
4519
4520 ieee80211_8023_xmit(sdata, dev, sta, key, skb);
4521 goto out;
4522
4523skip_offload:
4524 ieee80211_subif_start_xmit(skb, dev);
Felix Fietkau6aea26c2020-09-08 14:36:53 +02004525out:
John Crispin50ff4772019-11-25 11:04:37 +01004526 rcu_read_unlock();
4527
4528 return NETDEV_TX_OK;
4529}
4530
Johannes Berg7528ec52014-11-09 18:50:11 +02004531struct sk_buff *
4532ieee80211_build_data_template(struct ieee80211_sub_if_data *sdata,
4533 struct sk_buff *skb, u32 info_flags)
4534{
4535 struct ieee80211_hdr *hdr;
4536 struct ieee80211_tx_data tx = {
4537 .local = sdata->local,
4538 .sdata = sdata,
4539 };
Johannes Berg97ffe752015-03-21 09:13:45 +01004540 struct sta_info *sta;
Johannes Berg7528ec52014-11-09 18:50:11 +02004541
4542 rcu_read_lock();
4543
Johannes Berg97ffe752015-03-21 09:13:45 +01004544 if (ieee80211_lookup_ra_sta(sdata, skb, &sta)) {
4545 kfree_skb(skb);
4546 skb = ERR_PTR(-EINVAL);
4547 goto out;
4548 }
4549
Markus Theila7528192020-05-27 18:03:34 +02004550 skb = ieee80211_build_hdr(sdata, skb, info_flags, sta, 0, NULL);
Johannes Berg7528ec52014-11-09 18:50:11 +02004551 if (IS_ERR(skb))
4552 goto out;
4553
4554 hdr = (void *)skb->data;
4555 tx.sta = sta_info_get(sdata, hdr->addr1);
4556 tx.skb = skb;
4557
4558 if (ieee80211_tx_h_select_key(&tx) != TX_CONTINUE) {
4559 rcu_read_unlock();
4560 kfree_skb(skb);
4561 return ERR_PTR(-EINVAL);
4562 }
4563
4564out:
4565 rcu_read_unlock();
4566 return skb;
4567}
4568
Johannes Berge2530082008-05-17 00:57:14 +02004569/*
4570 * ieee80211_clear_tx_pending may not be called in a context where
4571 * it is possible that it packets could come in again.
4572 */
Johannes Berge2ebc742007-07-27 15:43:22 +02004573void ieee80211_clear_tx_pending(struct ieee80211_local *local)
4574{
Felix Fietkau1f98ab72012-11-10 03:44:14 +01004575 struct sk_buff *skb;
Johannes Berg2de8e0d92009-03-23 17:28:35 +01004576 int i;
Johannes Berge2ebc742007-07-27 15:43:22 +02004577
Felix Fietkau1f98ab72012-11-10 03:44:14 +01004578 for (i = 0; i < local->hw.queues; i++) {
4579 while ((skb = skb_dequeue(&local->pending[i])) != NULL)
4580 ieee80211_free_txskb(&local->hw, skb);
4581 }
Johannes Berge2ebc742007-07-27 15:43:22 +02004582}
4583
Johannes Berg7bb45682011-02-24 14:42:06 +01004584/*
4585 * Returns false if the frame couldn't be transmitted but was queued instead,
4586 * which in this case means re-queued -- take as an indication to stop sending
4587 * more pending frames.
4588 */
Johannes Bergcd8ffc82009-03-23 17:28:41 +01004589static bool ieee80211_tx_pending_skb(struct ieee80211_local *local,
4590 struct sk_buff *skb)
4591{
4592 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
4593 struct ieee80211_sub_if_data *sdata;
4594 struct sta_info *sta;
4595 struct ieee80211_hdr *hdr;
Johannes Berg7bb45682011-02-24 14:42:06 +01004596 bool result;
Johannes Berg55de9082012-07-26 17:24:39 +02004597 struct ieee80211_chanctx_conf *chanctx_conf;
Johannes Bergcd8ffc82009-03-23 17:28:41 +01004598
Johannes Berg5061b0c2009-07-14 00:33:34 +02004599 sdata = vif_to_sdata(info->control.vif);
Johannes Bergcd8ffc82009-03-23 17:28:41 +01004600
Felix Fietkaucc20ff2c2020-09-08 14:36:57 +02004601 if (info->control.flags & IEEE80211_TX_INTCFL_NEED_TXPROCESSING) {
Johannes Berg55de9082012-07-26 17:24:39 +02004602 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
4603 if (unlikely(!chanctx_conf)) {
4604 dev_kfree_skb(skb);
4605 return true;
4606 }
Johannes Berg73c4e192014-11-09 18:50:09 +02004607 info->band = chanctx_conf->def.chan->band;
Mathy Vanhoef08aca292020-07-23 14:01:52 +04004608 result = ieee80211_tx(sdata, NULL, skb, true);
Felix Fietkaucc20ff2c2020-09-08 14:36:57 +02004609 } else if (info->flags & IEEE80211_TX_CTL_HW_80211_ENCAP) {
John Crispin50ff4772019-11-25 11:04:37 +01004610 if (ieee80211_lookup_ra_sta(sdata, skb, &sta)) {
4611 dev_kfree_skb(skb);
4612 return true;
4613 }
4614
4615 if (IS_ERR(sta) || (sta && !sta->uploaded))
4616 sta = NULL;
4617
4618 result = ieee80211_tx_8023(sdata, skb, skb->len, sta, true);
Johannes Bergcd8ffc82009-03-23 17:28:41 +01004619 } else {
Johannes Berg252b86c2011-11-16 15:28:55 +01004620 struct sk_buff_head skbs;
4621
4622 __skb_queue_head_init(&skbs);
4623 __skb_queue_tail(&skbs, skb);
4624
Johannes Bergcd8ffc82009-03-23 17:28:41 +01004625 hdr = (struct ieee80211_hdr *)skb->data;
Johannes Bergabe60632009-11-25 17:46:18 +01004626 sta = sta_info_get(sdata, hdr->addr1);
Johannes Bergcd8ffc82009-03-23 17:28:41 +01004627
Johannes Berg74e4dbf2011-11-16 15:28:57 +01004628 result = __ieee80211_tx(local, &skbs, skb->len, sta, true);
Johannes Bergcd8ffc82009-03-23 17:28:41 +01004629 }
4630
Johannes Bergcd8ffc82009-03-23 17:28:41 +01004631 return result;
4632}
4633
Johannes Berge2530082008-05-17 00:57:14 +02004634/*
Johannes Berg3b8d81e02009-06-17 17:43:56 +02004635 * Transmit all pending packets. Called from tasklet.
Johannes Berge2530082008-05-17 00:57:14 +02004636 */
Allen Paisda1cad72020-11-03 14:48:18 +05304637void ieee80211_tx_pending(struct tasklet_struct *t)
Johannes Berge2ebc742007-07-27 15:43:22 +02004638{
Allen Paisda1cad72020-11-03 14:48:18 +05304639 struct ieee80211_local *local = from_tasklet(local, t,
4640 tx_pending_tasklet);
Johannes Berg2a577d92009-03-23 17:28:37 +01004641 unsigned long flags;
Johannes Bergcd8ffc82009-03-23 17:28:41 +01004642 int i;
Johannes Berg3b8d81e02009-06-17 17:43:56 +02004643 bool txok;
Johannes Berge2ebc742007-07-27 15:43:22 +02004644
Johannes Bergf0e72852009-03-23 17:28:36 +01004645 rcu_read_lock();
Johannes Berg2a577d92009-03-23 17:28:37 +01004646
Johannes Berg3b8d81e02009-06-17 17:43:56 +02004647 spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
Johannes Berg176be722009-03-12 23:49:28 +01004648 for (i = 0; i < local->hw.queues; i++) {
Johannes Berg2a577d92009-03-23 17:28:37 +01004649 /*
4650 * If queue is stopped by something other than due to pending
4651 * frames, or we have no pending frames, proceed to next queue.
4652 */
Johannes Berg3b8d81e02009-06-17 17:43:56 +02004653 if (local->queue_stop_reasons[i] ||
Johannes Berg2a577d92009-03-23 17:28:37 +01004654 skb_queue_empty(&local->pending[i]))
Johannes Berge2ebc742007-07-27 15:43:22 +02004655 continue;
Johannes Berge2530082008-05-17 00:57:14 +02004656
Johannes Berg2a577d92009-03-23 17:28:37 +01004657 while (!skb_queue_empty(&local->pending[i])) {
Johannes Berg3b8d81e02009-06-17 17:43:56 +02004658 struct sk_buff *skb = __skb_dequeue(&local->pending[i]);
Johannes Berg5061b0c2009-07-14 00:33:34 +02004659 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Johannes Berg5061b0c2009-07-14 00:33:34 +02004660
Johannes Berga7bc3762009-07-27 10:33:31 +02004661 if (WARN_ON(!info->control.vif)) {
Felix Fietkauc3e77242012-10-08 14:39:33 +02004662 ieee80211_free_txskb(&local->hw, skb);
Johannes Berga7bc3762009-07-27 10:33:31 +02004663 continue;
4664 }
4665
Johannes Berg3b8d81e02009-06-17 17:43:56 +02004666 spin_unlock_irqrestore(&local->queue_stop_reason_lock,
4667 flags);
Johannes Berg2a577d92009-03-23 17:28:37 +01004668
Johannes Berg3b8d81e02009-06-17 17:43:56 +02004669 txok = ieee80211_tx_pending_skb(local, skb);
Johannes Berg3b8d81e02009-06-17 17:43:56 +02004670 spin_lock_irqsave(&local->queue_stop_reason_lock,
4671 flags);
4672 if (!txok)
Johannes Berg2a577d92009-03-23 17:28:37 +01004673 break;
Johannes Berge2ebc742007-07-27 15:43:22 +02004674 }
Johannes Berg7236fe22010-03-22 13:42:43 -07004675
4676 if (skb_queue_empty(&local->pending[i]))
Johannes Berg3a25a8c2012-04-03 16:28:50 +02004677 ieee80211_propagate_queue_wake(local, i);
Johannes Berge2ebc742007-07-27 15:43:22 +02004678 }
Johannes Berg3b8d81e02009-06-17 17:43:56 +02004679 spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
Johannes Berg2a577d92009-03-23 17:28:37 +01004680
Johannes Bergf0e72852009-03-23 17:28:36 +01004681 rcu_read_unlock();
Johannes Berge2ebc742007-07-27 15:43:22 +02004682}
4683
4684/* functions for drivers to get certain frames */
4685
Marco Porscheac70c12013-01-07 16:04:50 +01004686static void __ieee80211_beacon_add_tim(struct ieee80211_sub_if_data *sdata,
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03004687 struct ps_data *ps, struct sk_buff *skb,
4688 bool is_template)
Johannes Berge2ebc742007-07-27 15:43:22 +02004689{
4690 u8 *pos, *tim;
4691 int aid0 = 0;
4692 int i, have_bits = 0, n1, n2;
4693
4694 /* Generate bitmap for TIM only if there are any STAs in power save
4695 * mode. */
Marco Porschd012a602012-10-10 12:39:50 -07004696 if (atomic_read(&ps->num_sta_ps) > 0)
Johannes Berge2ebc742007-07-27 15:43:22 +02004697 /* in the hope that this is faster than
4698 * checking byte-for-byte */
Weilong Chenf359d3f2013-12-18 15:44:16 +08004699 have_bits = !bitmap_empty((unsigned long *)ps->tim,
Johannes Berge2ebc742007-07-27 15:43:22 +02004700 IEEE80211_MAX_AID+1);
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03004701 if (!is_template) {
4702 if (ps->dtim_count == 0)
4703 ps->dtim_count = sdata->vif.bss_conf.dtim_period - 1;
4704 else
4705 ps->dtim_count--;
4706 }
Johannes Berge2ebc742007-07-27 15:43:22 +02004707
Johannes Berg4df864c2017-06-16 14:29:21 +02004708 tim = pos = skb_put(skb, 6);
Johannes Berge2ebc742007-07-27 15:43:22 +02004709 *pos++ = WLAN_EID_TIM;
4710 *pos++ = 4;
Marco Porschd012a602012-10-10 12:39:50 -07004711 *pos++ = ps->dtim_count;
Johannes Berg88600202012-02-13 15:17:18 +01004712 *pos++ = sdata->vif.bss_conf.dtim_period;
Johannes Berge2ebc742007-07-27 15:43:22 +02004713
Marco Porschd012a602012-10-10 12:39:50 -07004714 if (ps->dtim_count == 0 && !skb_queue_empty(&ps->bc_buf))
Johannes Berge2ebc742007-07-27 15:43:22 +02004715 aid0 = 1;
4716
Marco Porschd012a602012-10-10 12:39:50 -07004717 ps->dtim_bc_mc = aid0 == 1;
Christian Lamparter512119b2011-01-31 20:48:44 +02004718
Johannes Berge2ebc742007-07-27 15:43:22 +02004719 if (have_bits) {
4720 /* Find largest even number N1 so that bits numbered 1 through
4721 * (N1 x 8) - 1 in the bitmap are 0 and number N2 so that bits
4722 * (N2 + 1) x 8 through 2007 are 0. */
4723 n1 = 0;
4724 for (i = 0; i < IEEE80211_MAX_TIM_LEN; i++) {
Marco Porschd012a602012-10-10 12:39:50 -07004725 if (ps->tim[i]) {
Johannes Berge2ebc742007-07-27 15:43:22 +02004726 n1 = i & 0xfe;
4727 break;
4728 }
4729 }
4730 n2 = n1;
4731 for (i = IEEE80211_MAX_TIM_LEN - 1; i >= n1; i--) {
Marco Porschd012a602012-10-10 12:39:50 -07004732 if (ps->tim[i]) {
Johannes Berge2ebc742007-07-27 15:43:22 +02004733 n2 = i;
4734 break;
4735 }
4736 }
4737
4738 /* Bitmap control */
4739 *pos++ = n1 | aid0;
4740 /* Part Virt Bitmap */
Eliad Peller5220da32011-11-24 16:50:00 +02004741 skb_put(skb, n2 - n1);
Marco Porschd012a602012-10-10 12:39:50 -07004742 memcpy(pos, ps->tim + n1, n2 - n1 + 1);
Johannes Berge2ebc742007-07-27 15:43:22 +02004743
4744 tim[1] = n2 - n1 + 4;
Johannes Berge2ebc742007-07-27 15:43:22 +02004745 } else {
4746 *pos++ = aid0; /* Bitmap control */
4747 *pos++ = 0; /* Part Virt Bitmap */
4748 }
Johannes Berge2ebc742007-07-27 15:43:22 +02004749}
4750
Marco Porscheac70c12013-01-07 16:04:50 +01004751static int ieee80211_beacon_add_tim(struct ieee80211_sub_if_data *sdata,
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03004752 struct ps_data *ps, struct sk_buff *skb,
4753 bool is_template)
Marco Porscheac70c12013-01-07 16:04:50 +01004754{
4755 struct ieee80211_local *local = sdata->local;
4756
4757 /*
4758 * Not very nice, but we want to allow the driver to call
4759 * ieee80211_beacon_get() as a response to the set_tim()
4760 * callback. That, however, is already invoked under the
4761 * sta_lock to guarantee consistent and race-free update
4762 * of the tim bitmap in mac80211 and the driver.
4763 */
4764 if (local->tim_in_locked_section) {
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03004765 __ieee80211_beacon_add_tim(sdata, ps, skb, is_template);
Marco Porscheac70c12013-01-07 16:04:50 +01004766 } else {
Johannes Berg1b917312013-02-22 12:55:01 +01004767 spin_lock_bh(&local->tim_lock);
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03004768 __ieee80211_beacon_add_tim(sdata, ps, skb, is_template);
Johannes Berg1b917312013-02-22 12:55:01 +01004769 spin_unlock_bh(&local->tim_lock);
Marco Porscheac70c12013-01-07 16:04:50 +01004770 }
4771
4772 return 0;
4773}
4774
John Crispin8552a432020-08-11 10:01:04 +02004775static void ieee80211_set_beacon_cntdwn(struct ieee80211_sub_if_data *sdata,
4776 struct beacon_data *beacon)
Simon Wunderlich73da7d52013-07-11 16:09:06 +02004777{
4778 struct probe_resp *resp;
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02004779 u8 *beacon_data;
4780 size_t beacon_data_len;
Andrei Otcheretianski0d06d9b2014-05-09 14:11:47 +03004781 int i;
John Crispin8552a432020-08-11 10:01:04 +02004782 u8 count = beacon->cntdwn_current_counter;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02004783
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02004784 switch (sdata->vif.type) {
4785 case NL80211_IFTYPE_AP:
4786 beacon_data = beacon->tail;
4787 beacon_data_len = beacon->tail_len;
4788 break;
4789 case NL80211_IFTYPE_ADHOC:
4790 beacon_data = beacon->head;
4791 beacon_data_len = beacon->head_len;
4792 break;
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07004793 case NL80211_IFTYPE_MESH_POINT:
4794 beacon_data = beacon->head;
4795 beacon_data_len = beacon->head_len;
4796 break;
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02004797 default:
4798 return;
4799 }
Simon Wunderlich73da7d52013-07-11 16:09:06 +02004800
Michal Kazioraf296bd2014-06-05 14:21:36 +02004801 rcu_read_lock();
John Crispin8552a432020-08-11 10:01:04 +02004802 for (i = 0; i < IEEE80211_MAX_CNTDWN_COUNTERS_NUM; ++i) {
Michal Kazioraf296bd2014-06-05 14:21:36 +02004803 resp = rcu_dereference(sdata->u.ap.probe_resp);
Andrei Otcheretianski0d06d9b2014-05-09 14:11:47 +03004804
John Crispin8552a432020-08-11 10:01:04 +02004805 if (beacon->cntdwn_counter_offsets[i]) {
4806 if (WARN_ON_ONCE(beacon->cntdwn_counter_offsets[i] >=
Michal Kazioraf296bd2014-06-05 14:21:36 +02004807 beacon_data_len)) {
Andrei Otcheretianski0d06d9b2014-05-09 14:11:47 +03004808 rcu_read_unlock();
4809 return;
4810 }
Michal Kazioraf296bd2014-06-05 14:21:36 +02004811
John Crispin8552a432020-08-11 10:01:04 +02004812 beacon_data[beacon->cntdwn_counter_offsets[i]] = count;
Andrei Otcheretianski0d06d9b2014-05-09 14:11:47 +03004813 }
Michal Kazioraf296bd2014-06-05 14:21:36 +02004814
4815 if (sdata->vif.type == NL80211_IFTYPE_AP && resp)
John Crispin8552a432020-08-11 10:01:04 +02004816 resp->data[resp->cntdwn_counter_offsets[i]] = count;
Andrei Otcheretianski0d06d9b2014-05-09 14:11:47 +03004817 }
Michal Kazioraf296bd2014-06-05 14:21:36 +02004818 rcu_read_unlock();
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03004819}
4820
John Crispin8552a432020-08-11 10:01:04 +02004821static u8 __ieee80211_beacon_update_cntdwn(struct beacon_data *beacon)
Wojciech Dubowike996ec22015-06-10 13:06:53 +02004822{
John Crispin8552a432020-08-11 10:01:04 +02004823 beacon->cntdwn_current_counter--;
Wojciech Dubowike996ec22015-06-10 13:06:53 +02004824
4825 /* the counter should never reach 0 */
John Crispin8552a432020-08-11 10:01:04 +02004826 WARN_ON_ONCE(!beacon->cntdwn_current_counter);
Wojciech Dubowike996ec22015-06-10 13:06:53 +02004827
John Crispin8552a432020-08-11 10:01:04 +02004828 return beacon->cntdwn_current_counter;
Wojciech Dubowike996ec22015-06-10 13:06:53 +02004829}
4830
John Crispin8552a432020-08-11 10:01:04 +02004831u8 ieee80211_beacon_update_cntdwn(struct ieee80211_vif *vif)
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03004832{
4833 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
Michal Kazioraf296bd2014-06-05 14:21:36 +02004834 struct beacon_data *beacon = NULL;
4835 u8 count = 0;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02004836
Michal Kazioraf296bd2014-06-05 14:21:36 +02004837 rcu_read_lock();
4838
4839 if (sdata->vif.type == NL80211_IFTYPE_AP)
4840 beacon = rcu_dereference(sdata->u.ap.beacon);
4841 else if (sdata->vif.type == NL80211_IFTYPE_ADHOC)
4842 beacon = rcu_dereference(sdata->u.ibss.presp);
4843 else if (ieee80211_vif_is_mesh(&sdata->vif))
4844 beacon = rcu_dereference(sdata->u.mesh.beacon);
4845
4846 if (!beacon)
4847 goto unlock;
4848
John Crispin8552a432020-08-11 10:01:04 +02004849 count = __ieee80211_beacon_update_cntdwn(beacon);
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03004850
Michal Kazioraf296bd2014-06-05 14:21:36 +02004851unlock:
4852 rcu_read_unlock();
4853 return count;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02004854}
John Crispin8552a432020-08-11 10:01:04 +02004855EXPORT_SYMBOL(ieee80211_beacon_update_cntdwn);
Simon Wunderlich73da7d52013-07-11 16:09:06 +02004856
John Crispin8552a432020-08-11 10:01:04 +02004857void ieee80211_beacon_set_cntdwn(struct ieee80211_vif *vif, u8 counter)
Gregory Greenman03737002018-04-20 13:49:24 +03004858{
4859 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
4860 struct beacon_data *beacon = NULL;
4861
4862 rcu_read_lock();
4863
4864 if (sdata->vif.type == NL80211_IFTYPE_AP)
4865 beacon = rcu_dereference(sdata->u.ap.beacon);
4866 else if (sdata->vif.type == NL80211_IFTYPE_ADHOC)
4867 beacon = rcu_dereference(sdata->u.ibss.presp);
4868 else if (ieee80211_vif_is_mesh(&sdata->vif))
4869 beacon = rcu_dereference(sdata->u.mesh.beacon);
4870
4871 if (!beacon)
4872 goto unlock;
4873
John Crispin8552a432020-08-11 10:01:04 +02004874 if (counter < beacon->cntdwn_current_counter)
4875 beacon->cntdwn_current_counter = counter;
Gregory Greenman03737002018-04-20 13:49:24 +03004876
4877unlock:
4878 rcu_read_unlock();
4879}
John Crispin8552a432020-08-11 10:01:04 +02004880EXPORT_SYMBOL(ieee80211_beacon_set_cntdwn);
Gregory Greenman03737002018-04-20 13:49:24 +03004881
John Crispin8552a432020-08-11 10:01:04 +02004882bool ieee80211_beacon_cntdwn_is_complete(struct ieee80211_vif *vif)
Simon Wunderlich73da7d52013-07-11 16:09:06 +02004883{
4884 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
4885 struct beacon_data *beacon = NULL;
4886 u8 *beacon_data;
4887 size_t beacon_data_len;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02004888 int ret = false;
4889
4890 if (!ieee80211_sdata_running(sdata))
4891 return false;
4892
4893 rcu_read_lock();
4894 if (vif->type == NL80211_IFTYPE_AP) {
4895 struct ieee80211_if_ap *ap = &sdata->u.ap;
4896
4897 beacon = rcu_dereference(ap->beacon);
4898 if (WARN_ON(!beacon || !beacon->tail))
4899 goto out;
4900 beacon_data = beacon->tail;
4901 beacon_data_len = beacon->tail_len;
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02004902 } else if (vif->type == NL80211_IFTYPE_ADHOC) {
4903 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
4904
4905 beacon = rcu_dereference(ifibss->presp);
4906 if (!beacon)
4907 goto out;
4908
4909 beacon_data = beacon->head;
4910 beacon_data_len = beacon->head_len;
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07004911 } else if (vif->type == NL80211_IFTYPE_MESH_POINT) {
4912 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
4913
4914 beacon = rcu_dereference(ifmsh->beacon);
4915 if (!beacon)
4916 goto out;
4917
4918 beacon_data = beacon->head;
4919 beacon_data_len = beacon->head_len;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02004920 } else {
4921 WARN_ON(1);
4922 goto out;
4923 }
4924
John Crispin8552a432020-08-11 10:01:04 +02004925 if (!beacon->cntdwn_counter_offsets[0])
Michal Kazior10d78f22014-06-05 14:21:37 +02004926 goto out;
4927
John Crispin8552a432020-08-11 10:01:04 +02004928 if (WARN_ON_ONCE(beacon->cntdwn_counter_offsets[0] > beacon_data_len))
Simon Wunderlich73da7d52013-07-11 16:09:06 +02004929 goto out;
4930
John Crispin8552a432020-08-11 10:01:04 +02004931 if (beacon_data[beacon->cntdwn_counter_offsets[0]] == 1)
Simon Wunderlich73da7d52013-07-11 16:09:06 +02004932 ret = true;
John Crispin8552a432020-08-11 10:01:04 +02004933
Simon Wunderlich73da7d52013-07-11 16:09:06 +02004934 out:
4935 rcu_read_unlock();
4936
4937 return ret;
4938}
John Crispin8552a432020-08-11 10:01:04 +02004939EXPORT_SYMBOL(ieee80211_beacon_cntdwn_is_complete);
Simon Wunderlich73da7d52013-07-11 16:09:06 +02004940
Jouni Malinen0a3a8432020-02-22 15:25:46 +02004941static int ieee80211_beacon_protect(struct sk_buff *skb,
4942 struct ieee80211_local *local,
4943 struct ieee80211_sub_if_data *sdata)
4944{
4945 ieee80211_tx_result res;
4946 struct ieee80211_tx_data tx;
Johannes Berg95247702020-03-20 10:20:23 +01004947 struct sk_buff *check_skb;
Jouni Malinen0a3a8432020-02-22 15:25:46 +02004948
4949 memset(&tx, 0, sizeof(tx));
4950 tx.key = rcu_dereference(sdata->default_beacon_key);
4951 if (!tx.key)
4952 return 0;
4953 tx.local = local;
4954 tx.sdata = sdata;
4955 __skb_queue_head_init(&tx.skbs);
4956 __skb_queue_tail(&tx.skbs, skb);
4957 res = ieee80211_tx_h_encrypt(&tx);
Johannes Berg95247702020-03-20 10:20:23 +01004958 check_skb = __skb_dequeue(&tx.skbs);
4959 /* we may crash after this, but it'd be a bug in crypto */
4960 WARN_ON(check_skb != skb);
Jouni Malinen0a3a8432020-02-22 15:25:46 +02004961 if (WARN_ON_ONCE(res != TX_CONTINUE))
Johannes Berg95247702020-03-20 10:20:23 +01004962 return -EINVAL;
Jouni Malinen0a3a8432020-02-22 15:25:46 +02004963
4964 return 0;
4965}
4966
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03004967static struct sk_buff *
4968__ieee80211_beacon_get(struct ieee80211_hw *hw,
4969 struct ieee80211_vif *vif,
4970 struct ieee80211_mutable_offsets *offs,
4971 bool is_template)
Johannes Berge2ebc742007-07-27 15:43:22 +02004972{
4973 struct ieee80211_local *local = hw_to_local(hw);
Michal Kazioraf296bd2014-06-05 14:21:36 +02004974 struct beacon_data *beacon = NULL;
Johannes Berg9d139c82008-07-09 14:40:37 +02004975 struct sk_buff *skb = NULL;
Johannes Berge039fa42008-05-15 12:55:29 +02004976 struct ieee80211_tx_info *info;
Johannes Berge2ebc742007-07-27 15:43:22 +02004977 struct ieee80211_sub_if_data *sdata = NULL;
Johannes Berg57fbcce2016-04-12 15:56:15 +02004978 enum nl80211_band band;
Jouni Malinene00cfce2009-12-29 12:59:19 +02004979 struct ieee80211_tx_rate_control txrc;
Johannes Berg55de9082012-07-26 17:24:39 +02004980 struct ieee80211_chanctx_conf *chanctx_conf;
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03004981 int csa_off_base = 0;
Johannes Berg8318d782008-01-24 19:38:38 +01004982
Johannes Berg5dfdaf52007-12-19 02:03:33 +01004983 rcu_read_lock();
Johannes Berge2ebc742007-07-27 15:43:22 +02004984
Johannes Berg32bfd352007-12-19 01:31:26 +01004985 sdata = vif_to_sdata(vif);
Johannes Berg55de9082012-07-26 17:24:39 +02004986 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
Johannes Berge2ebc742007-07-27 15:43:22 +02004987
Johannes Berg55de9082012-07-26 17:24:39 +02004988 if (!ieee80211_sdata_running(sdata) || !chanctx_conf)
Felix Fietkaueb3e5542011-01-24 19:28:49 +01004989 goto out;
4990
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03004991 if (offs)
4992 memset(offs, 0, sizeof(*offs));
Johannes Bergeddcbb942009-10-29 08:30:35 +01004993
Johannes Berg05c914f2008-09-11 00:01:58 +02004994 if (sdata->vif.type == NL80211_IFTYPE_AP) {
Marco Porschd012a602012-10-10 12:39:50 -07004995 struct ieee80211_if_ap *ap = &sdata->u.ap;
Marco Porschd012a602012-10-10 12:39:50 -07004996
Michal Kazioraf296bd2014-06-05 14:21:36 +02004997 beacon = rcu_dereference(ap->beacon);
Dan Carpenter3ad97fbc2011-02-07 22:03:35 +03004998 if (beacon) {
John Crispin8552a432020-08-11 10:01:04 +02004999 if (beacon->cntdwn_counter_offsets[0]) {
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03005000 if (!is_template)
John Crispin8552a432020-08-11 10:01:04 +02005001 ieee80211_beacon_update_cntdwn(vif);
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03005002
John Crispin8552a432020-08-11 10:01:04 +02005003 ieee80211_set_beacon_cntdwn(sdata, beacon);
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03005004 }
Simon Wunderlich73da7d52013-07-11 16:09:06 +02005005
Johannes Berg902acc72008-02-23 15:17:19 +01005006 /*
5007 * headroom, head length,
5008 * tail length and maximum TIM length
5009 */
5010 skb = dev_alloc_skb(local->tx_headroom +
5011 beacon->head_len +
Felix Fietkau70dabeb2013-12-14 13:54:53 +01005012 beacon->tail_len + 256 +
5013 local->hw.extra_beacon_tailroom);
Johannes Berg902acc72008-02-23 15:17:19 +01005014 if (!skb)
5015 goto out;
Johannes Berg5dfdaf52007-12-19 02:03:33 +01005016
Johannes Berg902acc72008-02-23 15:17:19 +01005017 skb_reserve(skb, local->tx_headroom);
Johannes Berg59ae1d12017-06-16 14:29:20 +02005018 skb_put_data(skb, beacon->head, beacon->head_len);
Johannes Berg902acc72008-02-23 15:17:19 +01005019
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03005020 ieee80211_beacon_add_tim(sdata, &ap->ps, skb,
5021 is_template);
Johannes Berg902acc72008-02-23 15:17:19 +01005022
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03005023 if (offs) {
5024 offs->tim_offset = beacon->head_len;
5025 offs->tim_length = skb->len - beacon->head_len;
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03005026
5027 /* for AP the csa offsets are from tail */
5028 csa_off_base = skb->len;
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03005029 }
Johannes Bergeddcbb942009-10-29 08:30:35 +01005030
Johannes Berg902acc72008-02-23 15:17:19 +01005031 if (beacon->tail)
Johannes Berg59ae1d12017-06-16 14:29:20 +02005032 skb_put_data(skb, beacon->tail,
5033 beacon->tail_len);
Jouni Malinen0a3a8432020-02-22 15:25:46 +02005034
5035 if (ieee80211_beacon_protect(skb, local, sdata) < 0)
5036 goto out;
Johannes Berg9d139c82008-07-09 14:40:37 +02005037 } else
5038 goto out;
Johannes Berg05c914f2008-09-11 00:01:58 +02005039 } else if (sdata->vif.type == NL80211_IFTYPE_ADHOC) {
Johannes Berg46900292009-02-15 12:44:28 +01005040 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
Johannes Berg9d139c82008-07-09 14:40:37 +02005041 struct ieee80211_hdr *hdr;
Johannes Berg902acc72008-02-23 15:17:19 +01005042
Michal Kazioraf296bd2014-06-05 14:21:36 +02005043 beacon = rcu_dereference(ifibss->presp);
5044 if (!beacon)
Johannes Berg9d139c82008-07-09 14:40:37 +02005045 goto out;
5046
John Crispin8552a432020-08-11 10:01:04 +02005047 if (beacon->cntdwn_counter_offsets[0]) {
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03005048 if (!is_template)
John Crispin8552a432020-08-11 10:01:04 +02005049 __ieee80211_beacon_update_cntdwn(beacon);
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02005050
John Crispin8552a432020-08-11 10:01:04 +02005051 ieee80211_set_beacon_cntdwn(sdata, beacon);
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03005052 }
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02005053
Michal Kazioraf296bd2014-06-05 14:21:36 +02005054 skb = dev_alloc_skb(local->tx_headroom + beacon->head_len +
Felix Fietkau70dabeb2013-12-14 13:54:53 +01005055 local->hw.extra_beacon_tailroom);
Johannes Berg9d139c82008-07-09 14:40:37 +02005056 if (!skb)
5057 goto out;
Johannes Bergc3ffeab2013-03-07 20:54:29 +01005058 skb_reserve(skb, local->tx_headroom);
Johannes Berg59ae1d12017-06-16 14:29:20 +02005059 skb_put_data(skb, beacon->head, beacon->head_len);
Johannes Berg9d139c82008-07-09 14:40:37 +02005060
5061 hdr = (struct ieee80211_hdr *) skb->data;
Harvey Harrisone7827a72008-07-15 18:44:13 -07005062 hdr->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
5063 IEEE80211_STYPE_BEACON);
Johannes Berg902acc72008-02-23 15:17:19 +01005064 } else if (ieee80211_vif_is_mesh(&sdata->vif)) {
Javier Cardonadbf498f2012-03-31 11:31:32 -07005065 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Johannes Berg472dbc42008-09-11 00:01:49 +02005066
Michal Kazioraf296bd2014-06-05 14:21:36 +02005067 beacon = rcu_dereference(ifmsh->beacon);
5068 if (!beacon)
Johannes Bergac1bd842011-01-18 13:45:32 +01005069 goto out;
Johannes Bergac1bd842011-01-18 13:45:32 +01005070
John Crispin8552a432020-08-11 10:01:04 +02005071 if (beacon->cntdwn_counter_offsets[0]) {
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03005072 if (!is_template)
5073 /* TODO: For mesh csa_counter is in TU, so
5074 * decrementing it by one isn't correct, but
5075 * for now we leave it consistent with overall
5076 * mac80211's behavior.
5077 */
John Crispin8552a432020-08-11 10:01:04 +02005078 __ieee80211_beacon_update_cntdwn(beacon);
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03005079
John Crispin8552a432020-08-11 10:01:04 +02005080 ieee80211_set_beacon_cntdwn(sdata, beacon);
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03005081 }
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07005082
Javier Cardonadbf498f2012-03-31 11:31:32 -07005083 if (ifmsh->sync_ops)
Masashi Honma445cd452016-12-08 10:15:51 +09005084 ifmsh->sync_ops->adjust_tsf(sdata, beacon);
Javier Cardonadbf498f2012-03-31 11:31:32 -07005085
Thomas Pedersen3b69a9c2011-10-26 14:47:25 -07005086 skb = dev_alloc_skb(local->tx_headroom +
Michal Kazioraf296bd2014-06-05 14:21:36 +02005087 beacon->head_len +
Marco Porsch3f52b7e2013-01-30 18:14:08 +01005088 256 + /* TIM IE */
Michal Kazioraf296bd2014-06-05 14:21:36 +02005089 beacon->tail_len +
Felix Fietkau70dabeb2013-12-14 13:54:53 +01005090 local->hw.extra_beacon_tailroom);
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01005091 if (!skb)
5092 goto out;
Thomas Pedersen2b5e1962013-02-14 11:20:13 -08005093 skb_reserve(skb, local->tx_headroom);
Johannes Berg59ae1d12017-06-16 14:29:20 +02005094 skb_put_data(skb, beacon->head, beacon->head_len);
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03005095 ieee80211_beacon_add_tim(sdata, &ifmsh->ps, skb, is_template);
5096
5097 if (offs) {
Michal Kazioraf296bd2014-06-05 14:21:36 +02005098 offs->tim_offset = beacon->head_len;
5099 offs->tim_length = skb->len - beacon->head_len;
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03005100 }
5101
Johannes Berg59ae1d12017-06-16 14:29:20 +02005102 skb_put_data(skb, beacon->tail, beacon->tail_len);
Johannes Berg9d139c82008-07-09 14:40:37 +02005103 } else {
5104 WARN_ON(1);
Johannes Berg5dfdaf52007-12-19 02:03:33 +01005105 goto out;
Johannes Berge2ebc742007-07-27 15:43:22 +02005106 }
5107
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03005108 /* CSA offsets */
Michal Kazioraf296bd2014-06-05 14:21:36 +02005109 if (offs && beacon) {
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03005110 int i;
5111
John Crispin8552a432020-08-11 10:01:04 +02005112 for (i = 0; i < IEEE80211_MAX_CNTDWN_COUNTERS_NUM; i++) {
5113 u16 csa_off = beacon->cntdwn_counter_offsets[i];
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03005114
5115 if (!csa_off)
5116 continue;
5117
John Crispin8552a432020-08-11 10:01:04 +02005118 offs->cntdwn_counter_offs[i] = csa_off_base + csa_off;
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03005119 }
5120 }
5121
Johannes Berg4bf88532012-11-09 11:39:59 +01005122 band = chanctx_conf->def.chan->band;
Johannes Berg55de9082012-07-26 17:24:39 +02005123
Johannes Berge039fa42008-05-15 12:55:29 +02005124 info = IEEE80211_SKB_CB(skb);
Johannes Berge2ebc742007-07-27 15:43:22 +02005125
Johannes Berg3b8d81e02009-06-17 17:43:56 +02005126 info->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
Jouni Malinene00cfce2009-12-29 12:59:19 +02005127 info->flags |= IEEE80211_TX_CTL_NO_ACK;
Johannes Berge039fa42008-05-15 12:55:29 +02005128 info->band = band;
Jouni Malinene00cfce2009-12-29 12:59:19 +02005129
5130 memset(&txrc, 0, sizeof(txrc));
5131 txrc.hw = hw;
Johannes Berge31583c2012-07-26 14:07:46 +02005132 txrc.sband = local->hw.wiphy->bands[band];
Jouni Malinene00cfce2009-12-29 12:59:19 +02005133 txrc.bss_conf = &sdata->vif.bss_conf;
5134 txrc.skb = skb;
5135 txrc.reported_rate.idx = -1;
Jouni Malinen08fad432020-04-25 18:57:12 +03005136 if (sdata->beacon_rate_set && sdata->beacon_rateidx_mask[band])
5137 txrc.rate_idx_mask = sdata->beacon_rateidx_mask[band];
5138 else
5139 txrc.rate_idx_mask = sdata->rc_rateidx_mask[band];
Felix Fietkau8f0729b2010-11-11 15:07:23 +01005140 txrc.bss = true;
Jouni Malinene00cfce2009-12-29 12:59:19 +02005141 rate_control_get_rate(sdata, NULL, &txrc);
Johannes Berge039fa42008-05-15 12:55:29 +02005142
5143 info->control.vif = vif;
Johannes Bergf591fa52008-07-10 11:21:26 +02005144
John W. Linvillea472e712010-05-06 14:45:17 -04005145 info->flags |= IEEE80211_TX_CTL_CLEAR_PS_FILT |
5146 IEEE80211_TX_CTL_ASSIGN_SEQ |
5147 IEEE80211_TX_CTL_FIRST_FRAGMENT;
Johannes Berge6a98542008-10-21 12:40:02 +02005148 out:
Johannes Berg5dfdaf52007-12-19 02:03:33 +01005149 rcu_read_unlock();
Johannes Berge2ebc742007-07-27 15:43:22 +02005150 return skb;
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03005151
5152}
5153
5154struct sk_buff *
5155ieee80211_beacon_get_template(struct ieee80211_hw *hw,
5156 struct ieee80211_vif *vif,
5157 struct ieee80211_mutable_offsets *offs)
5158{
5159 return __ieee80211_beacon_get(hw, vif, offs, true);
5160}
5161EXPORT_SYMBOL(ieee80211_beacon_get_template);
5162
5163struct sk_buff *ieee80211_beacon_get_tim(struct ieee80211_hw *hw,
5164 struct ieee80211_vif *vif,
5165 u16 *tim_offset, u16 *tim_length)
5166{
5167 struct ieee80211_mutable_offsets offs = {};
5168 struct sk_buff *bcn = __ieee80211_beacon_get(hw, vif, &offs, false);
Helmut Schaa35afa582015-09-09 09:46:32 +02005169 struct sk_buff *copy;
5170 struct ieee80211_supported_band *sband;
5171 int shift;
5172
5173 if (!bcn)
5174 return bcn;
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03005175
5176 if (tim_offset)
5177 *tim_offset = offs.tim_offset;
5178
5179 if (tim_length)
5180 *tim_length = offs.tim_length;
5181
Helmut Schaa35afa582015-09-09 09:46:32 +02005182 if (ieee80211_hw_check(hw, BEACON_TX_STATUS) ||
5183 !hw_to_local(hw)->monitors)
5184 return bcn;
5185
5186 /* send a copy to monitor interfaces */
5187 copy = skb_copy(bcn, GFP_ATOMIC);
5188 if (!copy)
5189 return bcn;
5190
5191 shift = ieee80211_vif_get_shift(vif);
Mohammed Shafi Shajakhan21a8e9d2017-04-27 12:45:38 +05305192 sband = ieee80211_get_sband(vif_to_sdata(vif));
5193 if (!sband)
5194 return bcn;
5195
John Crispinb7b2e8c2019-07-14 17:44:15 +02005196 ieee80211_tx_monitor(hw_to_local(hw), copy, sband, 1, shift, false,
5197 NULL);
Helmut Schaa35afa582015-09-09 09:46:32 +02005198
Andrei Otcheretianski6ec8c332014-05-09 14:11:49 +03005199 return bcn;
Johannes Berge2ebc742007-07-27 15:43:22 +02005200}
Johannes Bergeddcbb942009-10-29 08:30:35 +01005201EXPORT_SYMBOL(ieee80211_beacon_get_tim);
Johannes Berge2ebc742007-07-27 15:43:22 +02005202
Arik Nemtsov02945822011-11-10 11:28:57 +02005203struct sk_buff *ieee80211_proberesp_get(struct ieee80211_hw *hw,
5204 struct ieee80211_vif *vif)
5205{
5206 struct ieee80211_if_ap *ap = NULL;
Eyal Shapiraaa7a0082012-08-06 14:26:16 +03005207 struct sk_buff *skb = NULL;
5208 struct probe_resp *presp = NULL;
Arik Nemtsov02945822011-11-10 11:28:57 +02005209 struct ieee80211_hdr *hdr;
5210 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
5211
5212 if (sdata->vif.type != NL80211_IFTYPE_AP)
5213 return NULL;
5214
5215 rcu_read_lock();
5216
5217 ap = &sdata->u.ap;
5218 presp = rcu_dereference(ap->probe_resp);
5219 if (!presp)
5220 goto out;
5221
Eyal Shapiraaa7a0082012-08-06 14:26:16 +03005222 skb = dev_alloc_skb(presp->len);
Arik Nemtsov02945822011-11-10 11:28:57 +02005223 if (!skb)
5224 goto out;
5225
Johannes Berg59ae1d12017-06-16 14:29:20 +02005226 skb_put_data(skb, presp->data, presp->len);
Eyal Shapiraaa7a0082012-08-06 14:26:16 +03005227
Arik Nemtsov02945822011-11-10 11:28:57 +02005228 hdr = (struct ieee80211_hdr *) skb->data;
5229 memset(hdr->addr1, 0, sizeof(hdr->addr1));
5230
5231out:
5232 rcu_read_unlock();
5233 return skb;
5234}
5235EXPORT_SYMBOL(ieee80211_proberesp_get);
5236
Aloka Dixit295b02c2020-09-11 00:05:31 +00005237struct sk_buff *ieee80211_get_fils_discovery_tmpl(struct ieee80211_hw *hw,
5238 struct ieee80211_vif *vif)
5239{
5240 struct sk_buff *skb = NULL;
5241 struct fils_discovery_data *tmpl = NULL;
5242 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
5243
5244 if (sdata->vif.type != NL80211_IFTYPE_AP)
5245 return NULL;
5246
5247 rcu_read_lock();
5248 tmpl = rcu_dereference(sdata->u.ap.fils_discovery);
5249 if (!tmpl) {
5250 rcu_read_unlock();
5251 return NULL;
5252 }
5253
5254 skb = dev_alloc_skb(sdata->local->hw.extra_tx_headroom + tmpl->len);
5255 if (skb) {
5256 skb_reserve(skb, sdata->local->hw.extra_tx_headroom);
5257 skb_put_data(skb, tmpl->data, tmpl->len);
5258 }
5259
5260 rcu_read_unlock();
5261 return skb;
5262}
5263EXPORT_SYMBOL(ieee80211_get_fils_discovery_tmpl);
5264
Aloka Dixit632189a2020-09-11 00:33:01 +00005265struct sk_buff *
5266ieee80211_get_unsol_bcast_probe_resp_tmpl(struct ieee80211_hw *hw,
5267 struct ieee80211_vif *vif)
5268{
5269 struct sk_buff *skb = NULL;
5270 struct unsol_bcast_probe_resp_data *tmpl = NULL;
5271 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
5272
5273 if (sdata->vif.type != NL80211_IFTYPE_AP)
5274 return NULL;
5275
5276 rcu_read_lock();
5277 tmpl = rcu_dereference(sdata->u.ap.unsol_bcast_probe_resp);
5278 if (!tmpl) {
5279 rcu_read_unlock();
5280 return NULL;
5281 }
5282
5283 skb = dev_alloc_skb(sdata->local->hw.extra_tx_headroom + tmpl->len);
5284 if (skb) {
5285 skb_reserve(skb, sdata->local->hw.extra_tx_headroom);
5286 skb_put_data(skb, tmpl->data, tmpl->len);
5287 }
5288
5289 rcu_read_unlock();
5290 return skb;
5291}
5292EXPORT_SYMBOL(ieee80211_get_unsol_bcast_probe_resp_tmpl);
5293
Kalle Valo7044cc52010-01-05 20:16:19 +02005294struct sk_buff *ieee80211_pspoll_get(struct ieee80211_hw *hw,
5295 struct ieee80211_vif *vif)
5296{
5297 struct ieee80211_sub_if_data *sdata;
5298 struct ieee80211_if_managed *ifmgd;
5299 struct ieee80211_pspoll *pspoll;
5300 struct ieee80211_local *local;
5301 struct sk_buff *skb;
5302
5303 if (WARN_ON(vif->type != NL80211_IFTYPE_STATION))
5304 return NULL;
5305
5306 sdata = vif_to_sdata(vif);
5307 ifmgd = &sdata->u.mgd;
5308 local = sdata->local;
5309
5310 skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*pspoll));
Joe Perchesd15b8452011-08-29 14:17:31 -07005311 if (!skb)
Kalle Valo7044cc52010-01-05 20:16:19 +02005312 return NULL;
Joe Perchesd15b8452011-08-29 14:17:31 -07005313
Kalle Valo7044cc52010-01-05 20:16:19 +02005314 skb_reserve(skb, local->hw.extra_tx_headroom);
5315
Johannes Bergb080db52017-06-16 14:29:19 +02005316 pspoll = skb_put_zero(skb, sizeof(*pspoll));
Kalle Valo7044cc52010-01-05 20:16:19 +02005317 pspoll->frame_control = cpu_to_le16(IEEE80211_FTYPE_CTL |
5318 IEEE80211_STYPE_PSPOLL);
Johannes Berg1db364c2020-04-17 12:38:04 +02005319 pspoll->aid = cpu_to_le16(sdata->vif.bss_conf.aid);
Kalle Valo7044cc52010-01-05 20:16:19 +02005320
5321 /* aid in PS-Poll has its two MSBs each set to 1 */
5322 pspoll->aid |= cpu_to_le16(1 << 15 | 1 << 14);
5323
5324 memcpy(pspoll->bssid, ifmgd->bssid, ETH_ALEN);
5325 memcpy(pspoll->ta, vif->addr, ETH_ALEN);
5326
5327 return skb;
5328}
5329EXPORT_SYMBOL(ieee80211_pspoll_get);
5330
5331struct sk_buff *ieee80211_nullfunc_get(struct ieee80211_hw *hw,
Johannes Berg7b6ddea2017-11-21 14:46:08 +01005332 struct ieee80211_vif *vif,
5333 bool qos_ok)
Kalle Valo7044cc52010-01-05 20:16:19 +02005334{
5335 struct ieee80211_hdr_3addr *nullfunc;
5336 struct ieee80211_sub_if_data *sdata;
5337 struct ieee80211_if_managed *ifmgd;
5338 struct ieee80211_local *local;
5339 struct sk_buff *skb;
Johannes Berg7b6ddea2017-11-21 14:46:08 +01005340 bool qos = false;
Kalle Valo7044cc52010-01-05 20:16:19 +02005341
5342 if (WARN_ON(vif->type != NL80211_IFTYPE_STATION))
5343 return NULL;
5344
5345 sdata = vif_to_sdata(vif);
5346 ifmgd = &sdata->u.mgd;
5347 local = sdata->local;
5348
Johannes Berg7b6ddea2017-11-21 14:46:08 +01005349 if (qos_ok) {
5350 struct sta_info *sta;
5351
5352 rcu_read_lock();
5353 sta = sta_info_get(sdata, ifmgd->bssid);
5354 qos = sta && sta->sta.wme;
5355 rcu_read_unlock();
5356 }
5357
5358 skb = dev_alloc_skb(local->hw.extra_tx_headroom +
5359 sizeof(*nullfunc) + 2);
Joe Perchesd15b8452011-08-29 14:17:31 -07005360 if (!skb)
Kalle Valo7044cc52010-01-05 20:16:19 +02005361 return NULL;
Joe Perchesd15b8452011-08-29 14:17:31 -07005362
Kalle Valo7044cc52010-01-05 20:16:19 +02005363 skb_reserve(skb, local->hw.extra_tx_headroom);
5364
Johannes Bergb080db52017-06-16 14:29:19 +02005365 nullfunc = skb_put_zero(skb, sizeof(*nullfunc));
Kalle Valo7044cc52010-01-05 20:16:19 +02005366 nullfunc->frame_control = cpu_to_le16(IEEE80211_FTYPE_DATA |
5367 IEEE80211_STYPE_NULLFUNC |
5368 IEEE80211_FCTL_TODS);
Johannes Berg7b6ddea2017-11-21 14:46:08 +01005369 if (qos) {
Johannes Berge0ba7092018-11-09 11:16:46 +01005370 __le16 qoshdr = cpu_to_le16(7);
Johannes Berg7b6ddea2017-11-21 14:46:08 +01005371
5372 BUILD_BUG_ON((IEEE80211_STYPE_QOS_NULLFUNC |
5373 IEEE80211_STYPE_NULLFUNC) !=
5374 IEEE80211_STYPE_QOS_NULLFUNC);
5375 nullfunc->frame_control |=
5376 cpu_to_le16(IEEE80211_STYPE_QOS_NULLFUNC);
5377 skb->priority = 7;
5378 skb_set_queue_mapping(skb, IEEE80211_AC_VO);
Johannes Berge0ba7092018-11-09 11:16:46 +01005379 skb_put_data(skb, &qoshdr, sizeof(qoshdr));
Johannes Berg7b6ddea2017-11-21 14:46:08 +01005380 }
5381
Kalle Valo7044cc52010-01-05 20:16:19 +02005382 memcpy(nullfunc->addr1, ifmgd->bssid, ETH_ALEN);
5383 memcpy(nullfunc->addr2, vif->addr, ETH_ALEN);
5384 memcpy(nullfunc->addr3, ifmgd->bssid, ETH_ALEN);
5385
5386 return skb;
5387}
5388EXPORT_SYMBOL(ieee80211_nullfunc_get);
5389
Kalle Valo05e54ea2010-01-05 20:16:38 +02005390struct sk_buff *ieee80211_probereq_get(struct ieee80211_hw *hw,
Johannes Berga344d672014-06-12 22:24:31 +02005391 const u8 *src_addr,
Kalle Valo05e54ea2010-01-05 20:16:38 +02005392 const u8 *ssid, size_t ssid_len,
Johannes Bergb9a9ada2012-11-29 13:00:10 +01005393 size_t tailroom)
Kalle Valo05e54ea2010-01-05 20:16:38 +02005394{
Johannes Berga344d672014-06-12 22:24:31 +02005395 struct ieee80211_local *local = hw_to_local(hw);
Kalle Valo05e54ea2010-01-05 20:16:38 +02005396 struct ieee80211_hdr_3addr *hdr;
5397 struct sk_buff *skb;
5398 size_t ie_ssid_len;
5399 u8 *pos;
5400
Kalle Valo05e54ea2010-01-05 20:16:38 +02005401 ie_ssid_len = 2 + ssid_len;
5402
5403 skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*hdr) +
Johannes Bergb9a9ada2012-11-29 13:00:10 +01005404 ie_ssid_len + tailroom);
Joe Perchesd15b8452011-08-29 14:17:31 -07005405 if (!skb)
Kalle Valo05e54ea2010-01-05 20:16:38 +02005406 return NULL;
Kalle Valo05e54ea2010-01-05 20:16:38 +02005407
5408 skb_reserve(skb, local->hw.extra_tx_headroom);
5409
Johannes Bergb080db52017-06-16 14:29:19 +02005410 hdr = skb_put_zero(skb, sizeof(*hdr));
Kalle Valo05e54ea2010-01-05 20:16:38 +02005411 hdr->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
5412 IEEE80211_STYPE_PROBE_REQ);
Johannes Berge83e6542012-07-13 16:23:07 +02005413 eth_broadcast_addr(hdr->addr1);
Johannes Berga344d672014-06-12 22:24:31 +02005414 memcpy(hdr->addr2, src_addr, ETH_ALEN);
Johannes Berge83e6542012-07-13 16:23:07 +02005415 eth_broadcast_addr(hdr->addr3);
Kalle Valo05e54ea2010-01-05 20:16:38 +02005416
5417 pos = skb_put(skb, ie_ssid_len);
5418 *pos++ = WLAN_EID_SSID;
5419 *pos++ = ssid_len;
Stanislaw Gruszka88c868c2012-03-29 16:30:41 +02005420 if (ssid_len)
Kalle Valo05e54ea2010-01-05 20:16:38 +02005421 memcpy(pos, ssid, ssid_len);
5422 pos += ssid_len;
5423
Kalle Valo05e54ea2010-01-05 20:16:38 +02005424 return skb;
5425}
5426EXPORT_SYMBOL(ieee80211_probereq_get);
5427
Johannes Berg32bfd352007-12-19 01:31:26 +01005428void ieee80211_rts_get(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
Johannes Berge2ebc742007-07-27 15:43:22 +02005429 const void *frame, size_t frame_len,
Johannes Berge039fa42008-05-15 12:55:29 +02005430 const struct ieee80211_tx_info *frame_txctl,
Johannes Berge2ebc742007-07-27 15:43:22 +02005431 struct ieee80211_rts *rts)
5432{
5433 const struct ieee80211_hdr *hdr = frame;
Johannes Berge2ebc742007-07-27 15:43:22 +02005434
Harvey Harrison065e96052008-06-22 16:45:27 -07005435 rts->frame_control =
5436 cpu_to_le16(IEEE80211_FTYPE_CTL | IEEE80211_STYPE_RTS);
Johannes Berg32bfd352007-12-19 01:31:26 +01005437 rts->duration = ieee80211_rts_duration(hw, vif, frame_len,
5438 frame_txctl);
Johannes Berge2ebc742007-07-27 15:43:22 +02005439 memcpy(rts->ra, hdr->addr1, sizeof(rts->ra));
5440 memcpy(rts->ta, hdr->addr2, sizeof(rts->ta));
5441}
5442EXPORT_SYMBOL(ieee80211_rts_get);
5443
Johannes Berg32bfd352007-12-19 01:31:26 +01005444void ieee80211_ctstoself_get(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
Johannes Berge2ebc742007-07-27 15:43:22 +02005445 const void *frame, size_t frame_len,
Johannes Berge039fa42008-05-15 12:55:29 +02005446 const struct ieee80211_tx_info *frame_txctl,
Johannes Berge2ebc742007-07-27 15:43:22 +02005447 struct ieee80211_cts *cts)
5448{
5449 const struct ieee80211_hdr *hdr = frame;
Johannes Berge2ebc742007-07-27 15:43:22 +02005450
Harvey Harrison065e96052008-06-22 16:45:27 -07005451 cts->frame_control =
5452 cpu_to_le16(IEEE80211_FTYPE_CTL | IEEE80211_STYPE_CTS);
Johannes Berg32bfd352007-12-19 01:31:26 +01005453 cts->duration = ieee80211_ctstoself_duration(hw, vif,
5454 frame_len, frame_txctl);
Johannes Berge2ebc742007-07-27 15:43:22 +02005455 memcpy(cts->ra, hdr->addr1, sizeof(cts->ra));
5456}
5457EXPORT_SYMBOL(ieee80211_ctstoself_get);
5458
5459struct sk_buff *
Johannes Berg32bfd352007-12-19 01:31:26 +01005460ieee80211_get_buffered_bc(struct ieee80211_hw *hw,
Johannes Berge039fa42008-05-15 12:55:29 +02005461 struct ieee80211_vif *vif)
Johannes Berge2ebc742007-07-27 15:43:22 +02005462{
5463 struct ieee80211_local *local = hw_to_local(hw);
Tomas Winkler747cf5e2008-05-27 17:50:51 +03005464 struct sk_buff *skb = NULL;
Johannes Berg5cf121c2008-02-25 16:27:43 +01005465 struct ieee80211_tx_data tx;
Johannes Berge2ebc742007-07-27 15:43:22 +02005466 struct ieee80211_sub_if_data *sdata;
Marco Porschd012a602012-10-10 12:39:50 -07005467 struct ps_data *ps;
Johannes Berge039fa42008-05-15 12:55:29 +02005468 struct ieee80211_tx_info *info;
Johannes Berg55de9082012-07-26 17:24:39 +02005469 struct ieee80211_chanctx_conf *chanctx_conf;
Johannes Berge2ebc742007-07-27 15:43:22 +02005470
Johannes Berg32bfd352007-12-19 01:31:26 +01005471 sdata = vif_to_sdata(vif);
Johannes Berg5dfdaf52007-12-19 02:03:33 +01005472
Johannes Berg5dfdaf52007-12-19 02:03:33 +01005473 rcu_read_lock();
Johannes Berg55de9082012-07-26 17:24:39 +02005474 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
Johannes Berg5dfdaf52007-12-19 02:03:33 +01005475
Marco Porschd012a602012-10-10 12:39:50 -07005476 if (!chanctx_conf)
Tomas Winkler747cf5e2008-05-27 17:50:51 +03005477 goto out;
Johannes Berg5dfdaf52007-12-19 02:03:33 +01005478
Marco Porschd012a602012-10-10 12:39:50 -07005479 if (sdata->vif.type == NL80211_IFTYPE_AP) {
5480 struct beacon_data *beacon =
5481 rcu_dereference(sdata->u.ap.beacon);
5482
5483 if (!beacon || !beacon->head)
5484 goto out;
5485
5486 ps = &sdata->u.ap.ps;
Marco Porsch3f52b7e2013-01-30 18:14:08 +01005487 } else if (ieee80211_vif_is_mesh(&sdata->vif)) {
5488 ps = &sdata->u.mesh.ps;
Marco Porschd012a602012-10-10 12:39:50 -07005489 } else {
5490 goto out;
5491 }
5492
5493 if (ps->dtim_count != 0 || !ps->dtim_bc_mc)
Tomas Winkler747cf5e2008-05-27 17:50:51 +03005494 goto out; /* send buffered bc/mc only after DTIM beacon */
Johannes Berge039fa42008-05-15 12:55:29 +02005495
Johannes Berge2ebc742007-07-27 15:43:22 +02005496 while (1) {
Marco Porschd012a602012-10-10 12:39:50 -07005497 skb = skb_dequeue(&ps->bc_buf);
Johannes Berge2ebc742007-07-27 15:43:22 +02005498 if (!skb)
Tomas Winkler747cf5e2008-05-27 17:50:51 +03005499 goto out;
Johannes Berge2ebc742007-07-27 15:43:22 +02005500 local->total_ps_buffered--;
5501
Marco Porschd012a602012-10-10 12:39:50 -07005502 if (!skb_queue_empty(&ps->bc_buf) && skb->len >= 2) {
Johannes Berge2ebc742007-07-27 15:43:22 +02005503 struct ieee80211_hdr *hdr =
5504 (struct ieee80211_hdr *) skb->data;
5505 /* more buffered multicast/broadcast frames ==> set
5506 * MoreData flag in IEEE 802.11 header to inform PS
5507 * STAs */
5508 hdr->frame_control |=
5509 cpu_to_le16(IEEE80211_FCTL_MOREDATA);
5510 }
5511
Michael Braun112c44b2014-03-06 15:08:43 +01005512 if (sdata->vif.type == NL80211_IFTYPE_AP)
Marco Porsch7cbf9d02013-03-01 16:01:18 +01005513 sdata = IEEE80211_DEV_TO_SUB_IF(skb->dev);
Johannes Berg7c107702015-03-20 14:18:27 +01005514 if (!ieee80211_tx_prepare(sdata, &tx, NULL, skb))
Johannes Berge2ebc742007-07-27 15:43:22 +02005515 break;
Felix Fietkau6b07d9c2016-08-02 11:13:41 +02005516 ieee80211_free_txskb(hw, skb);
Johannes Berge2ebc742007-07-27 15:43:22 +02005517 }
Johannes Berge039fa42008-05-15 12:55:29 +02005518
5519 info = IEEE80211_SKB_CB(skb);
5520
Johannes Berg5cf121c2008-02-25 16:27:43 +01005521 tx.flags |= IEEE80211_TX_PS_BUFFERED;
Johannes Berg4bf88532012-11-09 11:39:59 +01005522 info->band = chanctx_conf->def.chan->band;
Johannes Berge2ebc742007-07-27 15:43:22 +02005523
Johannes Berg97b045d2008-06-20 01:22:30 +02005524 if (invoke_tx_handlers(&tx))
Johannes Berge2ebc742007-07-27 15:43:22 +02005525 skb = NULL;
Johannes Berg97b045d2008-06-20 01:22:30 +02005526 out:
Johannes Bergd0709a62008-02-25 16:27:46 +01005527 rcu_read_unlock();
Johannes Berge2ebc742007-07-27 15:43:22 +02005528
5529 return skb;
5530}
5531EXPORT_SYMBOL(ieee80211_get_buffered_bc);
Johannes Berg3b8d81e02009-06-17 17:43:56 +02005532
Liad Kaufmanb6da9112014-11-19 13:47:38 +02005533int ieee80211_reserve_tid(struct ieee80211_sta *pubsta, u8 tid)
5534{
5535 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
5536 struct ieee80211_sub_if_data *sdata = sta->sdata;
5537 struct ieee80211_local *local = sdata->local;
5538 int ret;
5539 u32 queues;
5540
5541 lockdep_assert_held(&local->sta_mtx);
5542
5543 /* only some cases are supported right now */
5544 switch (sdata->vif.type) {
5545 case NL80211_IFTYPE_STATION:
5546 case NL80211_IFTYPE_AP:
5547 case NL80211_IFTYPE_AP_VLAN:
5548 break;
5549 default:
5550 WARN_ON(1);
5551 return -EINVAL;
5552 }
5553
5554 if (WARN_ON(tid >= IEEE80211_NUM_UPS))
5555 return -EINVAL;
5556
5557 if (sta->reserved_tid == tid) {
5558 ret = 0;
5559 goto out;
5560 }
5561
5562 if (sta->reserved_tid != IEEE80211_TID_UNRESERVED) {
5563 sdata_err(sdata, "TID reservation already active\n");
5564 ret = -EALREADY;
5565 goto out;
5566 }
5567
5568 ieee80211_stop_vif_queues(sdata->local, sdata,
5569 IEEE80211_QUEUE_STOP_REASON_RESERVE_TID);
5570
5571 synchronize_net();
5572
5573 /* Tear down BA sessions so we stop aggregating on this TID */
Johannes Berg30686bf2015-06-02 21:39:54 +02005574 if (ieee80211_hw_check(&local->hw, AMPDU_AGGREGATION)) {
Liad Kaufmanb6da9112014-11-19 13:47:38 +02005575 set_sta_flag(sta, WLAN_STA_BLOCK_BA);
5576 __ieee80211_stop_tx_ba_session(sta, tid,
5577 AGG_STOP_LOCAL_REQUEST);
5578 }
5579
5580 queues = BIT(sdata->vif.hw_queue[ieee802_1d_to_ac[tid]]);
Emmanuel Grumbach3b24f4c2015-01-07 15:42:39 +02005581 __ieee80211_flush_queues(local, sdata, queues, false);
Liad Kaufmanb6da9112014-11-19 13:47:38 +02005582
5583 sta->reserved_tid = tid;
5584
5585 ieee80211_wake_vif_queues(local, sdata,
5586 IEEE80211_QUEUE_STOP_REASON_RESERVE_TID);
5587
Johannes Berg30686bf2015-06-02 21:39:54 +02005588 if (ieee80211_hw_check(&local->hw, AMPDU_AGGREGATION))
Liad Kaufmanb6da9112014-11-19 13:47:38 +02005589 clear_sta_flag(sta, WLAN_STA_BLOCK_BA);
5590
5591 ret = 0;
5592 out:
5593 return ret;
5594}
5595EXPORT_SYMBOL(ieee80211_reserve_tid);
5596
5597void ieee80211_unreserve_tid(struct ieee80211_sta *pubsta, u8 tid)
5598{
5599 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
5600 struct ieee80211_sub_if_data *sdata = sta->sdata;
5601
5602 lockdep_assert_held(&sdata->local->sta_mtx);
5603
5604 /* only some cases are supported right now */
5605 switch (sdata->vif.type) {
5606 case NL80211_IFTYPE_STATION:
5607 case NL80211_IFTYPE_AP:
5608 case NL80211_IFTYPE_AP_VLAN:
5609 break;
5610 default:
5611 WARN_ON(1);
5612 return;
5613 }
5614
5615 if (tid != sta->reserved_tid) {
5616 sdata_err(sdata, "TID to unreserve (%d) isn't reserved\n", tid);
5617 return;
5618 }
5619
5620 sta->reserved_tid = IEEE80211_TID_UNRESERVED;
5621}
5622EXPORT_SYMBOL(ieee80211_unreserve_tid);
5623
Johannes Berg55de9082012-07-26 17:24:39 +02005624void __ieee80211_tx_skb_tid_band(struct ieee80211_sub_if_data *sdata,
5625 struct sk_buff *skb, int tid,
Mathy Vanhoef08aca292020-07-23 14:01:52 +04005626 enum nl80211_band band)
Johannes Berg3b8d81e02009-06-17 17:43:56 +02005627{
Amadeusz Sławiński731977e2017-01-24 16:42:10 +01005628 int ac = ieee80211_ac_from_tid(tid);
Johannes Berg3a25a8c2012-04-03 16:28:50 +02005629
Zhang Shengjud57a5442016-03-03 01:16:56 +00005630 skb_reset_mac_header(skb);
Johannes Berg3a25a8c2012-04-03 16:28:50 +02005631 skb_set_queue_mapping(skb, ac);
Helmut Schaacf6bb792011-12-15 10:18:34 +01005632 skb->priority = tid;
Johannes Bergcf0277e2010-01-05 18:00:58 +01005633
Johannes Berg89afe612013-02-13 15:39:57 +01005634 skb->dev = sdata->dev;
5635
Johannes Berg3d34deb2009-06-18 17:25:11 +02005636 /*
5637 * The other path calling ieee80211_xmit is from the tasklet,
5638 * and while we can handle concurrent transmissions locking
5639 * requirements are that we do not come into tx with bhs on.
5640 */
5641 local_bh_disable();
Johannes Berg73c4e192014-11-09 18:50:09 +02005642 IEEE80211_SKB_CB(skb)->band = band;
Mathy Vanhoef08aca292020-07-23 14:01:52 +04005643 ieee80211_xmit(sdata, NULL, skb);
Johannes Berg3d34deb2009-06-18 17:25:11 +02005644 local_bh_enable();
Johannes Berg3b8d81e02009-06-17 17:43:56 +02005645}
Denis Kenzior91180642018-03-26 12:52:50 -05005646
5647int ieee80211_tx_control_port(struct wiphy *wiphy, struct net_device *dev,
5648 const u8 *buf, size_t len,
Markus Theildca9ca2d2020-05-08 16:42:00 +02005649 const u8 *dest, __be16 proto, bool unencrypted,
5650 u64 *cookie)
Denis Kenzior91180642018-03-26 12:52:50 -05005651{
5652 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
5653 struct ieee80211_local *local = sdata->local;
Markus Theil10cb8e62021-02-06 12:51:12 +01005654 struct sta_info *sta;
Denis Kenzior91180642018-03-26 12:52:50 -05005655 struct sk_buff *skb;
5656 struct ethhdr *ehdr;
Johannes Bergb95d2cc2020-03-26 15:53:34 +01005657 u32 ctrl_flags = 0;
Markus Theila7528192020-05-27 18:03:34 +02005658 u32 flags = 0;
Denis Kenzior91180642018-03-26 12:52:50 -05005659
5660 /* Only accept CONTROL_PORT_PROTOCOL configured in CONNECT/ASSOCIATE
5661 * or Pre-Authentication
5662 */
5663 if (proto != sdata->control_port_protocol &&
5664 proto != cpu_to_be16(ETH_P_PREAUTH))
5665 return -EINVAL;
5666
Johannes Bergb95d2cc2020-03-26 15:53:34 +01005667 if (proto == sdata->control_port_protocol)
Markus Theil5af7fef2020-06-17 10:26:36 +02005668 ctrl_flags |= IEEE80211_TX_CTRL_PORT_CTRL_PROTO |
5669 IEEE80211_TX_CTRL_SKIP_MPATH_LOOKUP;
Johannes Bergb95d2cc2020-03-26 15:53:34 +01005670
Denis Kenzior91180642018-03-26 12:52:50 -05005671 if (unencrypted)
Markus Theila7528192020-05-27 18:03:34 +02005672 flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
5673
5674 if (cookie)
5675 ctrl_flags |= IEEE80211_TX_CTL_REQ_TX_STATUS;
5676
Markus Theil10cb8e62021-02-06 12:51:12 +01005677 flags |= IEEE80211_TX_INTFL_NL80211_FRAME_TX;
Denis Kenzior91180642018-03-26 12:52:50 -05005678
5679 skb = dev_alloc_skb(local->hw.extra_tx_headroom +
5680 sizeof(struct ethhdr) + len);
5681 if (!skb)
5682 return -ENOMEM;
5683
5684 skb_reserve(skb, local->hw.extra_tx_headroom + sizeof(struct ethhdr));
5685
5686 skb_put_data(skb, buf, len);
5687
5688 ehdr = skb_push(skb, sizeof(struct ethhdr));
5689 memcpy(ehdr->h_dest, dest, ETH_ALEN);
Johannes Berg8079e4f2020-02-24 10:19:11 +01005690 memcpy(ehdr->h_source, sdata->vif.addr, ETH_ALEN);
Denis Kenzior91180642018-03-26 12:52:50 -05005691 ehdr->h_proto = proto;
5692
5693 skb->dev = dev;
Markus Theil10cb8e62021-02-06 12:51:12 +01005694 skb->protocol = proto;
Denis Kenzior91180642018-03-26 12:52:50 -05005695 skb_reset_network_header(skb);
5696 skb_reset_mac_header(skb);
5697
Markus Theil10cb8e62021-02-06 12:51:12 +01005698 /* update QoS header to prioritize control port frames if possible,
5699 * priorization also happens for control port frames send over
5700 * AF_PACKET
5701 */
5702 rcu_read_lock();
5703
5704 if (ieee80211_lookup_ra_sta(sdata, skb, &sta) == 0 && !IS_ERR(sta)) {
5705 u16 queue = __ieee80211_select_queue(sdata, sta, skb);
5706
5707 skb_set_queue_mapping(skb, queue);
5708 skb_get_hash(skb);
5709 }
5710
5711 rcu_read_unlock();
5712
Markus Theila7528192020-05-27 18:03:34 +02005713 /* mutex lock is only needed for incrementing the cookie counter */
5714 mutex_lock(&local->mtx);
5715
Denis Kenziore7441c92018-06-19 10:39:50 -05005716 local_bh_disable();
Markus Theila7528192020-05-27 18:03:34 +02005717 __ieee80211_subif_start_xmit(skb, skb->dev, flags, ctrl_flags, cookie);
Denis Kenziore7441c92018-06-19 10:39:50 -05005718 local_bh_enable();
Denis Kenzior91180642018-03-26 12:52:50 -05005719
Markus Theila7528192020-05-27 18:03:34 +02005720 mutex_unlock(&local->mtx);
5721
Denis Kenzior91180642018-03-26 12:52:50 -05005722 return 0;
5723}
Rajkumar Manoharan8828f812019-04-11 13:47:26 -07005724
5725int ieee80211_probe_mesh_link(struct wiphy *wiphy, struct net_device *dev,
5726 const u8 *buf, size_t len)
5727{
5728 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
5729 struct ieee80211_local *local = sdata->local;
5730 struct sk_buff *skb;
5731
5732 skb = dev_alloc_skb(local->hw.extra_tx_headroom + len +
5733 30 + /* header size */
5734 18); /* 11s header size */
5735 if (!skb)
5736 return -ENOMEM;
5737
5738 skb_reserve(skb, local->hw.extra_tx_headroom);
5739 skb_put_data(skb, buf, len);
5740
5741 skb->dev = dev;
5742 skb->protocol = htons(ETH_P_802_3);
5743 skb_reset_network_header(skb);
5744 skb_reset_mac_header(skb);
5745
5746 local_bh_disable();
5747 __ieee80211_subif_start_xmit(skb, skb->dev, 0,
Markus Theila7528192020-05-27 18:03:34 +02005748 IEEE80211_TX_CTRL_SKIP_MPATH_LOOKUP,
5749 NULL);
Johannes Berge2ebc742007-07-27 15:43:22 +02005750 local_bh_enable();
5751
5752 return 0;
5753}