Merge tag 'for-4.1' of git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux...
[deliverable/linux.git] / net / mac80211 / tx.c
CommitLineData
e2ebc74d
JB
1/*
2 * Copyright 2002-2005, Instant802 Networks, Inc.
3 * Copyright 2005-2006, Devicescape Software, Inc.
4 * Copyright 2006-2007 Jiri Benc <jbenc@suse.cz>
5 * Copyright 2007 Johannes Berg <johannes@sipsolutions.net>
d98ad83e 6 * Copyright 2013-2014 Intel Mobile Communications GmbH
e2ebc74d
JB
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 *
12 *
13 * Transmit and frame generation functions.
14 */
15
16#include <linux/kernel.h>
17#include <linux/slab.h>
18#include <linux/skbuff.h>
19#include <linux/etherdevice.h>
20#include <linux/bitmap.h>
d4e46a3d 21#include <linux/rcupdate.h>
bc3b2d7f 22#include <linux/export.h>
ad38bfc9 23#include <linux/time.h>
881d966b 24#include <net/net_namespace.h>
e2ebc74d
JB
25#include <net/ieee80211_radiotap.h>
26#include <net/cfg80211.h>
27#include <net/mac80211.h>
28#include <asm/unaligned.h>
29
30#include "ieee80211_i.h"
24487981 31#include "driver-ops.h"
2c8dccc7 32#include "led.h"
33b64eb2 33#include "mesh.h"
e2ebc74d
JB
34#include "wep.h"
35#include "wpa.h"
36#include "wme.h"
2c8dccc7 37#include "rate.h"
e2ebc74d 38
e2ebc74d
JB
39/* misc utils */
40
252b86c4
JB
41static __le16 ieee80211_duration(struct ieee80211_tx_data *tx,
42 struct sk_buff *skb, int group_addr,
03f93c3d 43 int next_frag_len)
e2ebc74d 44{
2103dec1 45 int rate, mrate, erp, dur, i, shift = 0;
2e92e6f2 46 struct ieee80211_rate *txrate;
e2ebc74d 47 struct ieee80211_local *local = tx->local;
8318d78a 48 struct ieee80211_supported_band *sband;
358c8d9d 49 struct ieee80211_hdr *hdr;
252b86c4 50 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
2103dec1
SW
51 struct ieee80211_chanctx_conf *chanctx_conf;
52 u32 rate_flags = 0;
53
54 rcu_read_lock();
55 chanctx_conf = rcu_dereference(tx->sdata->vif.chanctx_conf);
56 if (chanctx_conf) {
57 shift = ieee80211_chandef_get_shift(&chanctx_conf->def);
58 rate_flags = ieee80211_chandef_rate_flags(&chanctx_conf->def);
59 }
60 rcu_read_unlock();
e6a9854b
JB
61
62 /* assume HW handles this */
336004e2 63 if (tx->rate.flags & (IEEE80211_TX_RC_MCS | IEEE80211_TX_RC_VHT_MCS))
e6a9854b
JB
64 return 0;
65
66 /* uh huh? */
0d528d85 67 if (WARN_ON_ONCE(tx->rate.idx < 0))
e6a9854b 68 return 0;
e2ebc74d 69
2d56577b 70 sband = local->hw.wiphy->bands[info->band];
0d528d85 71 txrate = &sband->bitrates[tx->rate.idx];
8318d78a 72
e6a9854b 73 erp = txrate->flags & IEEE80211_RATE_ERP_G;
e2ebc74d
JB
74
75 /*
76 * data and mgmt (except PS Poll):
77 * - during CFP: 32768
78 * - during contention period:
79 * if addr1 is group address: 0
80 * if more fragments = 0 and addr1 is individual address: time to
81 * transmit one ACK plus SIFS
82 * if more fragments = 1 and addr1 is individual address: time to
83 * transmit next fragment plus 2 x ACK plus 3 x SIFS
84 *
85 * IEEE 802.11, 9.6:
86 * - control response frame (CTS or ACK) shall be transmitted using the
87 * same rate as the immediately previous frame in the frame exchange
88 * sequence, if this rate belongs to the PHY mandatory rates, or else
89 * at the highest possible rate belonging to the PHY rates in the
90 * BSSBasicRateSet
91 */
252b86c4 92 hdr = (struct ieee80211_hdr *)skb->data;
358c8d9d 93 if (ieee80211_is_ctl(hdr->frame_control)) {
e2ebc74d 94 /* TODO: These control frames are not currently sent by
ccd7b362 95 * mac80211, but should they be implemented, this function
e2ebc74d
JB
96 * needs to be updated to support duration field calculation.
97 *
98 * RTS: time needed to transmit pending data/mgmt frame plus
99 * one CTS frame plus one ACK frame plus 3 x SIFS
100 * CTS: duration of immediately previous RTS minus time
101 * required to transmit CTS and its SIFS
102 * ACK: 0 if immediately previous directed data/mgmt had
103 * more=0, with more=1 duration in ACK frame is duration
104 * from previous frame minus time needed to transmit ACK
105 * and its SIFS
106 * PS Poll: BIT(15) | BIT(14) | aid
107 */
108 return 0;
109 }
110
111 /* data/mgmt */
112 if (0 /* FIX: data/mgmt during CFP */)
03f93c3d 113 return cpu_to_le16(32768);
e2ebc74d
JB
114
115 if (group_addr) /* Group address as the destination - no ACK */
116 return 0;
117
118 /* Individual destination address:
119 * IEEE 802.11, Ch. 9.6 (after IEEE 802.11g changes)
120 * CTS and ACK frames shall be transmitted using the highest rate in
121 * basic rate set that is less than or equal to the rate of the
122 * immediately previous frame and that is using the same modulation
123 * (CCK or OFDM). If no basic rate set matches with these requirements,
124 * the highest mandatory rate of the PHY that is less than or equal to
125 * the rate of the previous frame is used.
126 * Mandatory rates for IEEE 802.11g PHY: 1, 2, 5.5, 11, 6, 12, 24 Mbps
127 */
128 rate = -1;
8318d78a
JB
129 /* use lowest available if everything fails */
130 mrate = sband->bitrates[0].bitrate;
131 for (i = 0; i < sband->n_bitrates; i++) {
132 struct ieee80211_rate *r = &sband->bitrates[i];
e2ebc74d 133
8318d78a
JB
134 if (r->bitrate > txrate->bitrate)
135 break;
e2ebc74d 136
2103dec1
SW
137 if ((rate_flags & r->flags) != rate_flags)
138 continue;
139
bda3933a 140 if (tx->sdata->vif.bss_conf.basic_rates & BIT(i))
2103dec1 141 rate = DIV_ROUND_UP(r->bitrate, 1 << shift);
8318d78a
JB
142
143 switch (sband->band) {
144 case IEEE80211_BAND_2GHZ: {
145 u32 flag;
146 if (tx->sdata->flags & IEEE80211_SDATA_OPERATING_GMODE)
147 flag = IEEE80211_RATE_MANDATORY_G;
148 else
149 flag = IEEE80211_RATE_MANDATORY_B;
150 if (r->flags & flag)
151 mrate = r->bitrate;
152 break;
153 }
154 case IEEE80211_BAND_5GHZ:
155 if (r->flags & IEEE80211_RATE_MANDATORY_A)
156 mrate = r->bitrate;
157 break;
3a0c52a6
VK
158 case IEEE80211_BAND_60GHZ:
159 /* TODO, for now fall through */
8318d78a
JB
160 case IEEE80211_NUM_BANDS:
161 WARN_ON(1);
162 break;
163 }
e2ebc74d
JB
164 }
165 if (rate == -1) {
166 /* No matching basic rate found; use highest suitable mandatory
167 * PHY rate */
2103dec1 168 rate = DIV_ROUND_UP(mrate, 1 << shift);
e2ebc74d
JB
169 }
170
6674f210
SW
171 /* Don't calculate ACKs for QoS Frames with NoAck Policy set */
172 if (ieee80211_is_data_qos(hdr->frame_control) &&
c26a0e10 173 *(ieee80211_get_qos_ctl(hdr)) & IEEE80211_QOS_CTL_ACK_POLICY_NOACK)
6674f210
SW
174 dur = 0;
175 else
176 /* Time needed to transmit ACK
177 * (10 bytes + 4-byte FCS = 112 bits) plus SIFS; rounded up
178 * to closest integer */
4ee73f33 179 dur = ieee80211_frame_duration(sband->band, 10, rate, erp,
438b61b7
SW
180 tx->sdata->vif.bss_conf.use_short_preamble,
181 shift);
e2ebc74d
JB
182
183 if (next_frag_len) {
184 /* Frame is fragmented: duration increases with time needed to
185 * transmit next fragment plus ACK and 2 x SIFS. */
186 dur *= 2; /* ACK + SIFS */
187 /* next fragment */
4ee73f33 188 dur += ieee80211_frame_duration(sband->band, next_frag_len,
8318d78a 189 txrate->bitrate, erp,
438b61b7
SW
190 tx->sdata->vif.bss_conf.use_short_preamble,
191 shift);
e2ebc74d
JB
192 }
193
03f93c3d 194 return cpu_to_le16(dur);
e2ebc74d
JB
195}
196
e2ebc74d 197/* tx handlers */
5c1b98a5
KV
198static ieee80211_tx_result debug_noinline
199ieee80211_tx_h_dynamic_ps(struct ieee80211_tx_data *tx)
200{
201 struct ieee80211_local *local = tx->local;
0c74211d 202 struct ieee80211_if_managed *ifmgd;
5c1b98a5
KV
203
204 /* driver doesn't support power save */
205 if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_PS))
206 return TX_CONTINUE;
207
208 /* hardware does dynamic power save */
209 if (local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS)
210 return TX_CONTINUE;
211
212 /* dynamic power save disabled */
213 if (local->hw.conf.dynamic_ps_timeout <= 0)
214 return TX_CONTINUE;
215
216 /* we are scanning, don't enable power save */
217 if (local->scanning)
218 return TX_CONTINUE;
219
220 if (!local->ps_sdata)
221 return TX_CONTINUE;
222
223 /* No point if we're going to suspend */
224 if (local->quiescing)
225 return TX_CONTINUE;
226
0c74211d
KV
227 /* dynamic ps is supported only in managed mode */
228 if (tx->sdata->vif.type != NL80211_IFTYPE_STATION)
229 return TX_CONTINUE;
230
231 ifmgd = &tx->sdata->u.mgd;
232
233 /*
234 * Don't wakeup from power save if u-apsd is enabled, voip ac has
235 * u-apsd enabled and the frame is in voip class. This effectively
236 * means that even if all access categories have u-apsd enabled, in
237 * practise u-apsd is only used with the voip ac. This is a
238 * workaround for the case when received voip class packets do not
239 * have correct qos tag for some reason, due the network or the
240 * peer application.
241 *
dc41e4d4 242 * Note: ifmgd->uapsd_queues access is racy here. If the value is
0c74211d
KV
243 * changed via debugfs, user needs to reassociate manually to have
244 * everything in sync.
245 */
4875d30d
JB
246 if ((ifmgd->flags & IEEE80211_STA_UAPSD_ENABLED) &&
247 (ifmgd->uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_VO) &&
248 skb_get_queue_mapping(tx->skb) == IEEE80211_AC_VO)
0c74211d
KV
249 return TX_CONTINUE;
250
5c1b98a5
KV
251 if (local->hw.conf.flags & IEEE80211_CONF_PS) {
252 ieee80211_stop_queues_by_reason(&local->hw,
445ea4e8 253 IEEE80211_MAX_QUEUE_MAP,
cca07b00
LC
254 IEEE80211_QUEUE_STOP_REASON_PS,
255 false);
db28569a 256 ifmgd->flags &= ~IEEE80211_STA_NULLFUNC_ACKED;
5c1b98a5
KV
257 ieee80211_queue_work(&local->hw,
258 &local->dynamic_ps_disable_work);
259 }
260
5db1c07c
LC
261 /* Don't restart the timer if we're not disassociated */
262 if (!ifmgd->associated)
263 return TX_CONTINUE;
264
5c1b98a5
KV
265 mod_timer(&local->dynamic_ps_timer, jiffies +
266 msecs_to_jiffies(local->hw.conf.dynamic_ps_timeout));
267
268 return TX_CONTINUE;
269}
e2ebc74d 270
d9e8a70f 271static ieee80211_tx_result debug_noinline
5cf121c3 272ieee80211_tx_h_check_assoc(struct ieee80211_tx_data *tx)
e2ebc74d 273{
358c8d9d 274
e039fa4a 275 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data;
e039fa4a 276 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
c2c98fde 277 bool assoc = false;
e2ebc74d 278
e039fa4a 279 if (unlikely(info->flags & IEEE80211_TX_CTL_INJECTED))
9ae54c84 280 return TX_CONTINUE;
58d4185e 281
b23b025f
BG
282 if (unlikely(test_bit(SCAN_SW_SCANNING, &tx->local->scanning)) &&
283 test_bit(SDATA_STATE_OFFCHANNEL, &tx->sdata->state) &&
a9a6ffff
KV
284 !ieee80211_is_probe_req(hdr->frame_control) &&
285 !ieee80211_is_nullfunc(hdr->frame_control))
286 /*
287 * When software scanning only nullfunc frames (to notify
288 * the sleep state to the AP) and probe requests (for the
289 * active scan) are allowed, all other frames should not be
290 * sent and we should not get here, but if we do
291 * nonetheless, drop them to avoid sending them
292 * off-channel. See the link below and
293 * ieee80211_start_scan() for more.
294 *
295 * http://article.gmane.org/gmane.linux.kernel.wireless.general/30089
296 */
9ae54c84 297 return TX_DROP;
e2ebc74d 298
239281f8
RL
299 if (tx->sdata->vif.type == NL80211_IFTYPE_OCB)
300 return TX_CONTINUE;
301
1be7fe8d
BJ
302 if (tx->sdata->vif.type == NL80211_IFTYPE_WDS)
303 return TX_CONTINUE;
304
05c914fe 305 if (tx->sdata->vif.type == NL80211_IFTYPE_MESH_POINT)
33b64eb2
LCC
306 return TX_CONTINUE;
307
5cf121c3 308 if (tx->flags & IEEE80211_TX_PS_BUFFERED)
9ae54c84 309 return TX_CONTINUE;
e2ebc74d 310
c2c98fde
JB
311 if (tx->sta)
312 assoc = test_sta_flag(tx->sta, WLAN_STA_ASSOC);
e2ebc74d 313
5cf121c3 314 if (likely(tx->flags & IEEE80211_TX_UNICAST)) {
c2c98fde 315 if (unlikely(!assoc &&
358c8d9d 316 ieee80211_is_data(hdr->frame_control))) {
e2ebc74d 317#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
bdcbd8e0
JB
318 sdata_info(tx->sdata,
319 "dropped data frame to not associated station %pM\n",
320 hdr->addr1);
321#endif
e2ebc74d 322 I802_DEBUG_INC(tx->local->tx_handlers_drop_not_assoc);
9ae54c84 323 return TX_DROP;
e2ebc74d 324 }
29623892
JB
325 } else if (unlikely(tx->sdata->vif.type == NL80211_IFTYPE_AP &&
326 ieee80211_is_data(hdr->frame_control) &&
030ef8f8 327 !atomic_read(&tx->sdata->u.ap.num_mcast_sta))) {
29623892
JB
328 /*
329 * No associated STAs - no need to send multicast
330 * frames.
331 */
332 return TX_DROP;
e2ebc74d
JB
333 }
334
9ae54c84 335 return TX_CONTINUE;
e2ebc74d
JB
336}
337
e2ebc74d
JB
338/* This function is called whenever the AP is about to exceed the maximum limit
339 * of buffered frames for power saving STAs. This situation should not really
340 * happen often during normal operation, so dropping the oldest buffered packet
341 * from each queue should be OK to make some room for new frames. */
342static void purge_old_ps_buffers(struct ieee80211_local *local)
343{
344 int total = 0, purged = 0;
345 struct sk_buff *skb;
346 struct ieee80211_sub_if_data *sdata;
347 struct sta_info *sta;
348
79010420 349 list_for_each_entry_rcu(sdata, &local->interfaces, list) {
d012a605
MP
350 struct ps_data *ps;
351
352 if (sdata->vif.type == NL80211_IFTYPE_AP)
353 ps = &sdata->u.ap.ps;
3f52b7e3
MP
354 else if (ieee80211_vif_is_mesh(&sdata->vif))
355 ps = &sdata->u.mesh.ps;
d012a605 356 else
e2ebc74d 357 continue;
d012a605
MP
358
359 skb = skb_dequeue(&ps->bc_buf);
e2ebc74d
JB
360 if (skb) {
361 purged++;
362 dev_kfree_skb(skb);
363 }
d012a605 364 total += skb_queue_len(&ps->bc_buf);
e2ebc74d 365 }
e2ebc74d 366
948d887d
JB
367 /*
368 * Drop one frame from each station from the lowest-priority
369 * AC that has frames at all.
370 */
d0709a65 371 list_for_each_entry_rcu(sta, &local->sta_list, list) {
948d887d
JB
372 int ac;
373
374 for (ac = IEEE80211_AC_BK; ac >= IEEE80211_AC_VO; ac--) {
375 skb = skb_dequeue(&sta->ps_tx_buf[ac]);
376 total += skb_queue_len(&sta->ps_tx_buf[ac]);
377 if (skb) {
378 purged++;
c3e7724b 379 ieee80211_free_txskb(&local->hw, skb);
948d887d
JB
380 break;
381 }
e2ebc74d 382 }
e2ebc74d 383 }
d0709a65 384
e2ebc74d 385 local->total_ps_buffered = total;
bdcbd8e0 386 ps_dbg_hw(&local->hw, "PS buffers full - purged %d frames\n", purged);
e2ebc74d
JB
387}
388
9ae54c84 389static ieee80211_tx_result
5cf121c3 390ieee80211_tx_h_multicast_ps_buf(struct ieee80211_tx_data *tx)
e2ebc74d 391{
e039fa4a 392 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
358c8d9d 393 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data;
d012a605 394 struct ps_data *ps;
e039fa4a 395
7d54d0dd
JB
396 /*
397 * broadcast/multicast frame
398 *
3f52b7e3 399 * If any of the associated/peer stations is in power save mode,
7d54d0dd
JB
400 * the frame is buffered to be sent after DTIM beacon frame.
401 * This is done either by the hardware or us.
402 */
403
3f52b7e3 404 /* powersaving STAs currently only in AP/VLAN/mesh mode */
d012a605
MP
405 if (tx->sdata->vif.type == NL80211_IFTYPE_AP ||
406 tx->sdata->vif.type == NL80211_IFTYPE_AP_VLAN) {
407 if (!tx->sdata->bss)
408 return TX_CONTINUE;
409
410 ps = &tx->sdata->bss->ps;
3f52b7e3
MP
411 } else if (ieee80211_vif_is_mesh(&tx->sdata->vif)) {
412 ps = &tx->sdata->u.mesh.ps;
d012a605 413 } else {
3e122be0 414 return TX_CONTINUE;
d012a605
MP
415 }
416
3e122be0
JB
417
418 /* no buffering for ordered frames */
358c8d9d 419 if (ieee80211_has_order(hdr->frame_control))
9ae54c84 420 return TX_CONTINUE;
7d54d0dd 421
08b99399
JB
422 if (ieee80211_is_probe_req(hdr->frame_control))
423 return TX_CONTINUE;
424
f4d57941
JB
425 if (tx->local->hw.flags & IEEE80211_HW_QUEUE_CONTROL)
426 info->hw_queue = tx->sdata->vif.cab_queue;
427
7d54d0dd 428 /* no stations in PS mode */
d012a605 429 if (!atomic_read(&ps->num_sta_ps))
9ae54c84 430 return TX_CONTINUE;
7d54d0dd 431
62b517cb 432 info->flags |= IEEE80211_TX_CTL_SEND_AFTER_DTIM;
62b1208e 433
62b517cb
JB
434 /* device releases frame after DTIM beacon */
435 if (!(tx->local->hw.flags & IEEE80211_HW_HOST_BROADCAST_PS_BUFFERING))
62b1208e 436 return TX_CONTINUE;
62b1208e 437
7d54d0dd 438 /* buffered in mac80211 */
62b1208e
JB
439 if (tx->local->total_ps_buffered >= TOTAL_MAX_TX_BUFFER)
440 purge_old_ps_buffers(tx->local);
441
d012a605 442 if (skb_queue_len(&ps->bc_buf) >= AP_MAX_BC_BUFFER) {
bdcbd8e0
JB
443 ps_dbg(tx->sdata,
444 "BC TX buffer full - dropping the oldest frame\n");
d012a605 445 dev_kfree_skb(skb_dequeue(&ps->bc_buf));
62b1208e
JB
446 } else
447 tx->local->total_ps_buffered++;
e2ebc74d 448
d012a605 449 skb_queue_tail(&ps->bc_buf, tx->skb);
7d54d0dd 450
62b1208e 451 return TX_QUEUED;
e2ebc74d
JB
452}
453
fb733336
JM
454static int ieee80211_use_mfp(__le16 fc, struct sta_info *sta,
455 struct sk_buff *skb)
456{
457 if (!ieee80211_is_mgmt(fc))
458 return 0;
459
c2c98fde 460 if (sta == NULL || !test_sta_flag(sta, WLAN_STA_MFP))
fb733336
JM
461 return 0;
462
d8ca16db 463 if (!ieee80211_is_robust_mgmt_frame(skb))
fb733336
JM
464 return 0;
465
466 return 1;
467}
468
9ae54c84 469static ieee80211_tx_result
5cf121c3 470ieee80211_tx_h_unicast_ps_buf(struct ieee80211_tx_data *tx)
e2ebc74d
JB
471{
472 struct sta_info *sta = tx->sta;
e039fa4a 473 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
08b99399 474 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data;
3393a608 475 struct ieee80211_local *local = tx->local;
e2ebc74d 476
02f2f1a9 477 if (unlikely(!sta))
9ae54c84 478 return TX_CONTINUE;
e2ebc74d 479
c2c98fde 480 if (unlikely((test_sta_flag(sta, WLAN_STA_PS_STA) ||
5ac2e350
JB
481 test_sta_flag(sta, WLAN_STA_PS_DRIVER) ||
482 test_sta_flag(sta, WLAN_STA_PS_DELIVER)) &&
02f2f1a9 483 !(info->flags & IEEE80211_TX_CTL_NO_PS_BUFFER))) {
948d887d
JB
484 int ac = skb_get_queue_mapping(tx->skb);
485
08b99399
JB
486 if (ieee80211_is_mgmt(hdr->frame_control) &&
487 !ieee80211_is_bufferable_mmpdu(hdr->frame_control)) {
488 info->flags |= IEEE80211_TX_CTL_NO_PS_BUFFER;
489 return TX_CONTINUE;
490 }
491
bdcbd8e0
JB
492 ps_dbg(sta->sdata, "STA %pM aid %d: PS buffer for AC %d\n",
493 sta->sta.addr, sta->sta.aid, ac);
e2ebc74d
JB
494 if (tx->local->total_ps_buffered >= TOTAL_MAX_TX_BUFFER)
495 purge_old_ps_buffers(tx->local);
1d147bfa
EG
496
497 /* sync with ieee80211_sta_ps_deliver_wakeup */
498 spin_lock(&sta->ps_lock);
499 /*
500 * STA woke up the meantime and all the frames on ps_tx_buf have
501 * been queued to pending queue. No reordering can happen, go
502 * ahead and Tx the packet.
503 */
504 if (!test_sta_flag(sta, WLAN_STA_PS_STA) &&
5ac2e350
JB
505 !test_sta_flag(sta, WLAN_STA_PS_DRIVER) &&
506 !test_sta_flag(sta, WLAN_STA_PS_DELIVER)) {
1d147bfa
EG
507 spin_unlock(&sta->ps_lock);
508 return TX_CONTINUE;
509 }
510
948d887d
JB
511 if (skb_queue_len(&sta->ps_tx_buf[ac]) >= STA_MAX_TX_BUFFER) {
512 struct sk_buff *old = skb_dequeue(&sta->ps_tx_buf[ac]);
bdcbd8e0
JB
513 ps_dbg(tx->sdata,
514 "STA %pM TX buffer for AC %d full - dropping oldest frame\n",
515 sta->sta.addr, ac);
c3e7724b 516 ieee80211_free_txskb(&local->hw, old);
e2ebc74d
JB
517 } else
518 tx->local->total_ps_buffered++;
004c872e 519
e039fa4a 520 info->control.jiffies = jiffies;
5061b0c2 521 info->control.vif = &tx->sdata->vif;
8f77f384 522 info->flags |= IEEE80211_TX_INTFL_NEED_TXPROCESSING;
03c8c06f 523 info->flags &= ~IEEE80211_TX_TEMPORARY_FLAGS;
948d887d 524 skb_queue_tail(&sta->ps_tx_buf[ac], tx->skb);
1d147bfa 525 spin_unlock(&sta->ps_lock);
3393a608
JO
526
527 if (!timer_pending(&local->sta_cleanup))
528 mod_timer(&local->sta_cleanup,
529 round_jiffies(jiffies +
530 STA_INFO_CLEANUP_INTERVAL));
531
c868cb35
JB
532 /*
533 * We queued up some frames, so the TIM bit might
534 * need to be set, recalculate it.
535 */
536 sta_info_recalc_tim(sta);
537
9ae54c84 538 return TX_QUEUED;
bdcbd8e0
JB
539 } else if (unlikely(test_sta_flag(sta, WLAN_STA_PS_STA))) {
540 ps_dbg(tx->sdata,
541 "STA %pM in PS mode, but polling/in SP -> send frame\n",
542 sta->sta.addr);
e2ebc74d 543 }
e2ebc74d 544
9ae54c84 545 return TX_CONTINUE;
e2ebc74d
JB
546}
547
d9e8a70f 548static ieee80211_tx_result debug_noinline
5cf121c3 549ieee80211_tx_h_ps_buf(struct ieee80211_tx_data *tx)
e2ebc74d 550{
5cf121c3 551 if (unlikely(tx->flags & IEEE80211_TX_PS_BUFFERED))
9ae54c84 552 return TX_CONTINUE;
e2ebc74d 553
5cf121c3 554 if (tx->flags & IEEE80211_TX_UNICAST)
e2ebc74d
JB
555 return ieee80211_tx_h_unicast_ps_buf(tx);
556 else
557 return ieee80211_tx_h_multicast_ps_buf(tx);
558}
559
a621fa4d
JB
560static ieee80211_tx_result debug_noinline
561ieee80211_tx_h_check_control_port_protocol(struct ieee80211_tx_data *tx)
562{
563 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
564
af61a165
JB
565 if (unlikely(tx->sdata->control_port_protocol == tx->skb->protocol)) {
566 if (tx->sdata->control_port_no_encrypt)
567 info->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
568 info->control.flags |= IEEE80211_TX_CTRL_PORT_CTRL_PROTO;
9c1c98a3 569 info->flags |= IEEE80211_TX_CTL_USE_MINRATE;
af61a165 570 }
a621fa4d
JB
571
572 return TX_CONTINUE;
573}
574
d9e8a70f 575static ieee80211_tx_result debug_noinline
5cf121c3 576ieee80211_tx_h_select_key(struct ieee80211_tx_data *tx)
e2ebc74d 577{
46e6de15 578 struct ieee80211_key *key;
e039fa4a 579 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
358c8d9d 580 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data;
d4e46a3d 581
3b8d81e0 582 if (unlikely(info->flags & IEEE80211_TX_INTFL_DONT_ENCRYPT))
e2ebc74d 583 tx->key = NULL;
2475b1cc
MS
584 else if (tx->sta &&
585 (key = rcu_dereference(tx->sta->ptk[tx->sta->ptk_idx])))
d4e46a3d 586 tx->key = key;
3cfcf6ac 587 else if (ieee80211_is_mgmt(hdr->frame_control) &&
ecbcd324 588 is_multicast_ether_addr(hdr->addr1) &&
d8ca16db 589 ieee80211_is_robust_mgmt_frame(tx->skb) &&
3cfcf6ac
JM
590 (key = rcu_dereference(tx->sdata->default_mgmt_key)))
591 tx->key = key;
f7e0104c
JB
592 else if (is_multicast_ether_addr(hdr->addr1) &&
593 (key = rcu_dereference(tx->sdata->default_multicast_key)))
594 tx->key = key;
595 else if (!is_multicast_ether_addr(hdr->addr1) &&
596 (key = rcu_dereference(tx->sdata->default_unicast_key)))
d4e46a3d 597 tx->key = key;
46e6de15
JB
598 else if (info->flags & IEEE80211_TX_CTL_INJECTED)
599 tx->key = NULL;
600 else if (!tx->sdata->drop_unencrypted)
601 tx->key = NULL;
602 else if (tx->skb->protocol == tx->sdata->control_port_protocol)
603 tx->key = NULL;
d8ca16db 604 else if (ieee80211_is_robust_mgmt_frame(tx->skb) &&
46e6de15
JB
605 !(ieee80211_is_action(hdr->frame_control) &&
606 tx->sta && test_sta_flag(tx->sta, WLAN_STA_MFP)))
607 tx->key = NULL;
4922f71f 608 else if (ieee80211_is_mgmt(hdr->frame_control) &&
d8ca16db 609 !ieee80211_is_robust_mgmt_frame(tx->skb))
4922f71f 610 tx->key = NULL;
46e6de15 611 else {
e2ebc74d 612 I802_DEBUG_INC(tx->local->tx_handlers_drop_unencrypted);
9ae54c84 613 return TX_DROP;
46e6de15 614 }
e2ebc74d
JB
615
616 if (tx->key) {
813d7669
JB
617 bool skip_hw = false;
618
e2ebc74d 619 tx->key->tx_rx_count++;
011bfcc4 620 /* TODO: add threshold stuff again */
176e4f84 621
97359d12
JB
622 switch (tx->key->conf.cipher) {
623 case WLAN_CIPHER_SUITE_WEP40:
624 case WLAN_CIPHER_SUITE_WEP104:
97359d12 625 case WLAN_CIPHER_SUITE_TKIP:
358c8d9d 626 if (!ieee80211_is_data_present(hdr->frame_control))
176e4f84
JB
627 tx->key = NULL;
628 break;
97359d12 629 case WLAN_CIPHER_SUITE_CCMP:
2b2ba0db 630 case WLAN_CIPHER_SUITE_CCMP_256:
00b9cfa3
JM
631 case WLAN_CIPHER_SUITE_GCMP:
632 case WLAN_CIPHER_SUITE_GCMP_256:
fb733336
JM
633 if (!ieee80211_is_data_present(hdr->frame_control) &&
634 !ieee80211_use_mfp(hdr->frame_control, tx->sta,
635 tx->skb))
636 tx->key = NULL;
3b43a187
KV
637 else
638 skip_hw = (tx->key->conf.flags &
e548c49e 639 IEEE80211_KEY_FLAG_SW_MGMT_TX) &&
3b43a187 640 ieee80211_is_mgmt(hdr->frame_control);
fb733336 641 break;
97359d12 642 case WLAN_CIPHER_SUITE_AES_CMAC:
56c52da2 643 case WLAN_CIPHER_SUITE_BIP_CMAC_256:
8ade538b
JM
644 case WLAN_CIPHER_SUITE_BIP_GMAC_128:
645 case WLAN_CIPHER_SUITE_BIP_GMAC_256:
3cfcf6ac
JM
646 if (!ieee80211_is_mgmt(hdr->frame_control))
647 tx->key = NULL;
648 break;
176e4f84 649 }
813d7669 650
e54faf29
JB
651 if (unlikely(tx->key && tx->key->flags & KEY_FLAG_TAINTED &&
652 !ieee80211_is_deauth(hdr->frame_control)))
95acac61
JB
653 return TX_DROP;
654
f12553eb 655 if (!skip_hw && tx->key &&
382b1655 656 tx->key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE)
813d7669 657 info->control.hw_key = &tx->key->conf;
e2ebc74d
JB
658 }
659
9ae54c84 660 return TX_CONTINUE;
e2ebc74d
JB
661}
662
d9e8a70f 663static ieee80211_tx_result debug_noinline
5cf121c3 664ieee80211_tx_h_rate_ctrl(struct ieee80211_tx_data *tx)
e2ebc74d 665{
e039fa4a 666 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
e6a9854b
JB
667 struct ieee80211_hdr *hdr = (void *)tx->skb->data;
668 struct ieee80211_supported_band *sband;
a2c40249 669 u32 len;
e6a9854b 670 struct ieee80211_tx_rate_control txrc;
0d528d85 671 struct ieee80211_sta_rates *ratetbl = NULL;
c2c98fde 672 bool assoc = false;
8318d78a 673
e6a9854b 674 memset(&txrc, 0, sizeof(txrc));
e2ebc74d 675
2d56577b 676 sband = tx->local->hw.wiphy->bands[info->band];
58d4185e 677
a2c40249 678 len = min_t(u32, tx->skb->len + FCS_LEN,
b9a5f8ca 679 tx->local->hw.wiphy->frag_threshold);
e6a9854b
JB
680
681 /* set up the tx rate control struct we give the RC algo */
005e472b 682 txrc.hw = &tx->local->hw;
e6a9854b
JB
683 txrc.sband = sband;
684 txrc.bss_conf = &tx->sdata->vif.bss_conf;
685 txrc.skb = tx->skb;
686 txrc.reported_rate.idx = -1;
2d56577b 687 txrc.rate_idx_mask = tx->sdata->rc_rateidx_mask[info->band];
37eb0b16
JM
688 if (txrc.rate_idx_mask == (1 << sband->n_bitrates) - 1)
689 txrc.max_rate_idx = -1;
690 else
691 txrc.max_rate_idx = fls(txrc.rate_idx_mask) - 1;
2ffbe6d3
FF
692
693 if (tx->sdata->rc_has_mcs_mask[info->band])
694 txrc.rate_idx_mcs_mask =
695 tx->sdata->rc_rateidx_mcs_mask[info->band];
696
8f0729b1 697 txrc.bss = (tx->sdata->vif.type == NL80211_IFTYPE_AP ||
4bb62344 698 tx->sdata->vif.type == NL80211_IFTYPE_MESH_POINT ||
8f0729b1 699 tx->sdata->vif.type == NL80211_IFTYPE_ADHOC);
e6a9854b
JB
700
701 /* set up RTS protection if desired */
b9a5f8ca 702 if (len > tx->local->hw.wiphy->rts_threshold) {
0d528d85 703 txrc.rts = true;
e2ebc74d 704 }
e2ebc74d 705
0d528d85 706 info->control.use_rts = txrc.rts;
991fec09
FF
707 info->control.use_cts_prot = tx->sdata->vif.bss_conf.use_cts_prot;
708
e6a9854b
JB
709 /*
710 * Use short preamble if the BSS can handle it, but not for
711 * management frames unless we know the receiver can handle
712 * that -- the management frame might be to a station that
713 * just wants a probe response.
714 */
715 if (tx->sdata->vif.bss_conf.use_short_preamble &&
716 (ieee80211_is_data(hdr->frame_control) ||
c2c98fde 717 (tx->sta && test_sta_flag(tx->sta, WLAN_STA_SHORT_PREAMBLE))))
0d528d85
FF
718 txrc.short_preamble = true;
719
720 info->control.short_preamble = txrc.short_preamble;
e2ebc74d 721
c2c98fde
JB
722 if (tx->sta)
723 assoc = test_sta_flag(tx->sta, WLAN_STA_ASSOC);
b770b43e
LR
724
725 /*
726 * Lets not bother rate control if we're associated and cannot
727 * talk to the sta. This should not happen.
728 */
c2c98fde 729 if (WARN(test_bit(SCAN_SW_SCANNING, &tx->local->scanning) && assoc &&
b770b43e
LR
730 !rate_usable_index_exists(sband, &tx->sta->sta),
731 "%s: Dropped data frame as no usable bitrate found while "
732 "scanning and associated. Target station: "
733 "%pM on %d GHz band\n",
47846c9b 734 tx->sdata->name, hdr->addr1,
2d56577b 735 info->band ? 5 : 2))
b770b43e 736 return TX_DROP;
2e92e6f2 737
b770b43e
LR
738 /*
739 * If we're associated with the sta at this point we know we can at
740 * least send the frame at the lowest bit rate.
741 */
e6a9854b
JB
742 rate_control_get_rate(tx->sdata, tx->sta, &txrc);
743
0d528d85
FF
744 if (tx->sta && !info->control.skip_table)
745 ratetbl = rcu_dereference(tx->sta->sta.rates);
746
747 if (unlikely(info->control.rates[0].idx < 0)) {
748 if (ratetbl) {
749 struct ieee80211_tx_rate rate = {
750 .idx = ratetbl->rate[0].idx,
751 .flags = ratetbl->rate[0].flags,
752 .count = ratetbl->rate[0].count
753 };
754
755 if (ratetbl->rate[0].idx < 0)
756 return TX_DROP;
757
758 tx->rate = rate;
759 } else {
760 return TX_DROP;
761 }
762 } else {
763 tx->rate = info->control.rates[0];
764 }
e6a9854b 765
c1ce5a74 766 if (txrc.reported_rate.idx < 0) {
0d528d85 767 txrc.reported_rate = tx->rate;
c1ce5a74
HS
768 if (tx->sta && ieee80211_is_data(hdr->frame_control))
769 tx->sta->last_tx_rate = txrc.reported_rate;
770 } else if (tx->sta)
e6a9854b 771 tx->sta->last_tx_rate = txrc.reported_rate;
e039fa4a 772
0d528d85
FF
773 if (ratetbl)
774 return TX_CONTINUE;
775
e6a9854b
JB
776 if (unlikely(!info->control.rates[0].count))
777 info->control.rates[0].count = 1;
e2ebc74d 778
9955151d
GS
779 if (WARN_ON_ONCE((info->control.rates[0].count > 1) &&
780 (info->flags & IEEE80211_TX_CTL_NO_ACK)))
781 info->control.rates[0].count = 1;
782
e6a9854b
JB
783 return TX_CONTINUE;
784}
785
f591fa5d
JB
786static ieee80211_tx_result debug_noinline
787ieee80211_tx_h_sequence(struct ieee80211_tx_data *tx)
788{
789 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
790 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data;
791 u16 *seq;
792 u8 *qc;
793 int tid;
794
25d834e1
JB
795 /*
796 * Packet injection may want to control the sequence
797 * number, if we have no matching interface then we
798 * neither assign one ourselves nor ask the driver to.
799 */
5061b0c2 800 if (unlikely(info->control.vif->type == NL80211_IFTYPE_MONITOR))
25d834e1
JB
801 return TX_CONTINUE;
802
f591fa5d
JB
803 if (unlikely(ieee80211_is_ctl(hdr->frame_control)))
804 return TX_CONTINUE;
805
806 if (ieee80211_hdrlen(hdr->frame_control) < 24)
807 return TX_CONTINUE;
808
49a59543
JB
809 if (ieee80211_is_qos_nullfunc(hdr->frame_control))
810 return TX_CONTINUE;
811
94778280
JB
812 /*
813 * Anything but QoS data that has a sequence number field
814 * (is long enough) gets a sequence number from the global
c4c205f3
BC
815 * counter. QoS data frames with a multicast destination
816 * also use the global counter (802.11-2012 9.3.2.10).
94778280 817 */
c4c205f3
BC
818 if (!ieee80211_is_data_qos(hdr->frame_control) ||
819 is_multicast_ether_addr(hdr->addr1)) {
94778280 820 /* driver should assign sequence number */
f591fa5d 821 info->flags |= IEEE80211_TX_CTL_ASSIGN_SEQ;
94778280
JB
822 /* for pure STA mode without beacons, we can do it */
823 hdr->seq_ctrl = cpu_to_le16(tx->sdata->sequence_number);
824 tx->sdata->sequence_number += 0x10;
79c892b8
JB
825 if (tx->sta)
826 tx->sta->tx_msdu[IEEE80211_NUM_TIDS]++;
f591fa5d
JB
827 return TX_CONTINUE;
828 }
829
830 /*
831 * This should be true for injected/management frames only, for
832 * management frames we have set the IEEE80211_TX_CTL_ASSIGN_SEQ
833 * above since they are not QoS-data frames.
834 */
835 if (!tx->sta)
836 return TX_CONTINUE;
837
838 /* include per-STA, per-TID sequence counter */
839
840 qc = ieee80211_get_qos_ctl(hdr);
841 tid = *qc & IEEE80211_QOS_CTL_TID_MASK;
842 seq = &tx->sta->tid_seq[tid];
79c892b8 843 tx->sta->tx_msdu[tid]++;
f591fa5d
JB
844
845 hdr->seq_ctrl = cpu_to_le16(*seq);
846
847 /* Increase the sequence number. */
848 *seq = (*seq + 0x10) & IEEE80211_SCTL_SEQ;
849
850 return TX_CONTINUE;
851}
852
252b86c4 853static int ieee80211_fragment(struct ieee80211_tx_data *tx,
2de8e0d9
JB
854 struct sk_buff *skb, int hdrlen,
855 int frag_threshold)
856{
252b86c4 857 struct ieee80211_local *local = tx->local;
a1a3fcec 858 struct ieee80211_tx_info *info;
252b86c4 859 struct sk_buff *tmp;
2de8e0d9
JB
860 int per_fragm = frag_threshold - hdrlen - FCS_LEN;
861 int pos = hdrlen + per_fragm;
862 int rem = skb->len - hdrlen - per_fragm;
863
864 if (WARN_ON(rem < 0))
865 return -EINVAL;
866
252b86c4
JB
867 /* first fragment was already added to queue by caller */
868
2de8e0d9
JB
869 while (rem) {
870 int fraglen = per_fragm;
871
872 if (fraglen > rem)
873 fraglen = rem;
874 rem -= fraglen;
875 tmp = dev_alloc_skb(local->tx_headroom +
876 frag_threshold +
2475b1cc 877 tx->sdata->encrypt_headroom +
2de8e0d9
JB
878 IEEE80211_ENCRYPT_TAILROOM);
879 if (!tmp)
880 return -ENOMEM;
252b86c4
JB
881
882 __skb_queue_tail(&tx->skbs, tmp);
883
2475b1cc
MS
884 skb_reserve(tmp,
885 local->tx_headroom + tx->sdata->encrypt_headroom);
886
2de8e0d9
JB
887 /* copy control information */
888 memcpy(tmp->cb, skb->cb, sizeof(tmp->cb));
a1a3fcec
JB
889
890 info = IEEE80211_SKB_CB(tmp);
891 info->flags &= ~(IEEE80211_TX_CTL_CLEAR_PS_FILT |
892 IEEE80211_TX_CTL_FIRST_FRAGMENT);
893
894 if (rem)
895 info->flags |= IEEE80211_TX_CTL_MORE_FRAMES;
896
2de8e0d9
JB
897 skb_copy_queue_mapping(tmp, skb);
898 tmp->priority = skb->priority;
2de8e0d9 899 tmp->dev = skb->dev;
2de8e0d9
JB
900
901 /* copy header and data */
902 memcpy(skb_put(tmp, hdrlen), skb->data, hdrlen);
903 memcpy(skb_put(tmp, fraglen), skb->data + pos, fraglen);
904
905 pos += fraglen;
906 }
907
252b86c4 908 /* adjust first fragment's length */
338f977f 909 skb_trim(skb, hdrlen + per_fragm);
2de8e0d9
JB
910 return 0;
911}
912
d9e8a70f 913static ieee80211_tx_result debug_noinline
e2454948
JB
914ieee80211_tx_h_fragment(struct ieee80211_tx_data *tx)
915{
2de8e0d9
JB
916 struct sk_buff *skb = tx->skb;
917 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
918 struct ieee80211_hdr *hdr = (void *)skb->data;
b9a5f8ca 919 int frag_threshold = tx->local->hw.wiphy->frag_threshold;
2de8e0d9
JB
920 int hdrlen;
921 int fragnum;
e2454948 922
252b86c4
JB
923 /* no matter what happens, tx->skb moves to tx->skbs */
924 __skb_queue_tail(&tx->skbs, skb);
925 tx->skb = NULL;
926
a26eb27a
JB
927 if (info->flags & IEEE80211_TX_CTL_DONTFRAG)
928 return TX_CONTINUE;
929
930 if (tx->local->ops->set_frag_threshold)
e2454948
JB
931 return TX_CONTINUE;
932
eefce91a
JB
933 /*
934 * Warn when submitting a fragmented A-MPDU frame and drop it.
3b8d81e0 935 * This scenario is handled in ieee80211_tx_prepare but extra
8d5e0d58 936 * caution taken here as fragmented ampdu may cause Tx stop.
eefce91a 937 */
8b30b1fe 938 if (WARN_ON(info->flags & IEEE80211_TX_CTL_AMPDU))
eefce91a
JB
939 return TX_DROP;
940
065e9605 941 hdrlen = ieee80211_hdrlen(hdr->frame_control);
e2454948 942
a26eb27a 943 /* internal error, why isn't DONTFRAG set? */
8ccd8f21 944 if (WARN_ON(skb->len + FCS_LEN <= frag_threshold))
2de8e0d9 945 return TX_DROP;
e6a9854b 946
2de8e0d9
JB
947 /*
948 * Now fragment the frame. This will allocate all the fragments and
949 * chain them (using skb as the first fragment) to skb->next.
950 * During transmission, we will remove the successfully transmitted
951 * fragments from this list. When the low-level driver rejects one
952 * of the fragments then we will simply pretend to accept the skb
953 * but store it away as pending.
954 */
252b86c4 955 if (ieee80211_fragment(tx, skb, hdrlen, frag_threshold))
2de8e0d9 956 return TX_DROP;
e6a9854b 957
2de8e0d9
JB
958 /* update duration/seq/flags of fragments */
959 fragnum = 0;
252b86c4
JB
960
961 skb_queue_walk(&tx->skbs, skb) {
2de8e0d9 962 const __le16 morefrags = cpu_to_le16(IEEE80211_FCTL_MOREFRAGS);
e6a9854b 963
2de8e0d9
JB
964 hdr = (void *)skb->data;
965 info = IEEE80211_SKB_CB(skb);
e6a9854b 966
252b86c4 967 if (!skb_queue_is_last(&tx->skbs, skb)) {
2de8e0d9 968 hdr->frame_control |= morefrags;
e6a9854b
JB
969 /*
970 * No multi-rate retries for fragmented frames, that
971 * would completely throw off the NAV at other STAs.
972 */
973 info->control.rates[1].idx = -1;
974 info->control.rates[2].idx = -1;
975 info->control.rates[3].idx = -1;
e3e1a0bc 976 BUILD_BUG_ON(IEEE80211_TX_MAX_RATES != 4);
e6a9854b 977 info->flags &= ~IEEE80211_TX_CTL_RATE_CTRL_PROBE;
2de8e0d9
JB
978 } else {
979 hdr->frame_control &= ~morefrags;
e6a9854b 980 }
2de8e0d9
JB
981 hdr->seq_ctrl |= cpu_to_le16(fragnum & IEEE80211_SCTL_FRAG);
982 fragnum++;
252b86c4 983 }
e2ebc74d 984
9ae54c84 985 return TX_CONTINUE;
e2ebc74d
JB
986}
987
feff1f2f
JB
988static ieee80211_tx_result debug_noinline
989ieee80211_tx_h_stats(struct ieee80211_tx_data *tx)
990{
252b86c4 991 struct sk_buff *skb;
560d2682 992 int ac = -1;
feff1f2f
JB
993
994 if (!tx->sta)
995 return TX_CONTINUE;
996
252b86c4 997 skb_queue_walk(&tx->skbs, skb) {
560d2682 998 ac = skb_get_queue_mapping(skb);
feff1f2f 999 tx->sta->tx_fragments++;
560d2682 1000 tx->sta->tx_bytes[ac] += skb->len;
252b86c4 1001 }
560d2682
JB
1002 if (ac >= 0)
1003 tx->sta->tx_packets[ac]++;
feff1f2f
JB
1004
1005 return TX_CONTINUE;
1006}
1007
d9e8a70f 1008static ieee80211_tx_result debug_noinline
e2454948
JB
1009ieee80211_tx_h_encrypt(struct ieee80211_tx_data *tx)
1010{
1011 if (!tx->key)
1012 return TX_CONTINUE;
1013
97359d12
JB
1014 switch (tx->key->conf.cipher) {
1015 case WLAN_CIPHER_SUITE_WEP40:
1016 case WLAN_CIPHER_SUITE_WEP104:
e2454948 1017 return ieee80211_crypto_wep_encrypt(tx);
97359d12 1018 case WLAN_CIPHER_SUITE_TKIP:
e2454948 1019 return ieee80211_crypto_tkip_encrypt(tx);
97359d12 1020 case WLAN_CIPHER_SUITE_CCMP:
2b2ba0db
JM
1021 return ieee80211_crypto_ccmp_encrypt(
1022 tx, IEEE80211_CCMP_MIC_LEN);
1023 case WLAN_CIPHER_SUITE_CCMP_256:
1024 return ieee80211_crypto_ccmp_encrypt(
1025 tx, IEEE80211_CCMP_256_MIC_LEN);
97359d12 1026 case WLAN_CIPHER_SUITE_AES_CMAC:
3cfcf6ac 1027 return ieee80211_crypto_aes_cmac_encrypt(tx);
56c52da2
JM
1028 case WLAN_CIPHER_SUITE_BIP_CMAC_256:
1029 return ieee80211_crypto_aes_cmac_256_encrypt(tx);
8ade538b
JM
1030 case WLAN_CIPHER_SUITE_BIP_GMAC_128:
1031 case WLAN_CIPHER_SUITE_BIP_GMAC_256:
1032 return ieee80211_crypto_aes_gmac_encrypt(tx);
00b9cfa3
JM
1033 case WLAN_CIPHER_SUITE_GCMP:
1034 case WLAN_CIPHER_SUITE_GCMP_256:
1035 return ieee80211_crypto_gcmp_encrypt(tx);
3ffc2a90 1036 default:
d32a1028 1037 return ieee80211_crypto_hw_encrypt(tx);
e2454948
JB
1038 }
1039
e2454948
JB
1040 return TX_DROP;
1041}
1042
d9e8a70f 1043static ieee80211_tx_result debug_noinline
03f93c3d
JB
1044ieee80211_tx_h_calculate_duration(struct ieee80211_tx_data *tx)
1045{
252b86c4 1046 struct sk_buff *skb;
2de8e0d9
JB
1047 struct ieee80211_hdr *hdr;
1048 int next_len;
1049 bool group_addr;
03f93c3d 1050
252b86c4 1051 skb_queue_walk(&tx->skbs, skb) {
2de8e0d9 1052 hdr = (void *) skb->data;
7e0aae47
JM
1053 if (unlikely(ieee80211_is_pspoll(hdr->frame_control)))
1054 break; /* must not overwrite AID */
252b86c4
JB
1055 if (!skb_queue_is_last(&tx->skbs, skb)) {
1056 struct sk_buff *next = skb_queue_next(&tx->skbs, skb);
1057 next_len = next->len;
1058 } else
1059 next_len = 0;
2de8e0d9 1060 group_addr = is_multicast_ether_addr(hdr->addr1);
03f93c3d 1061
2de8e0d9 1062 hdr->duration_id =
252b86c4
JB
1063 ieee80211_duration(tx, skb, group_addr, next_len);
1064 }
03f93c3d
JB
1065
1066 return TX_CONTINUE;
1067}
1068
e2ebc74d
JB
1069/* actual transmit path */
1070
a622ab72
JB
1071static bool ieee80211_tx_prep_agg(struct ieee80211_tx_data *tx,
1072 struct sk_buff *skb,
1073 struct ieee80211_tx_info *info,
1074 struct tid_ampdu_tx *tid_tx,
1075 int tid)
1076{
1077 bool queued = false;
285fa695 1078 bool reset_agg_timer = false;
aa454580 1079 struct sk_buff *purge_skb = NULL;
a622ab72
JB
1080
1081 if (test_bit(HT_AGG_STATE_OPERATIONAL, &tid_tx->state)) {
1082 info->flags |= IEEE80211_TX_CTL_AMPDU;
285fa695 1083 reset_agg_timer = true;
0ab33703
JB
1084 } else if (test_bit(HT_AGG_STATE_WANT_START, &tid_tx->state)) {
1085 /*
1086 * nothing -- this aggregation session is being started
1087 * but that might still fail with the driver
1088 */
a622ab72
JB
1089 } else {
1090 spin_lock(&tx->sta->lock);
1091 /*
1092 * Need to re-check now, because we may get here
1093 *
1094 * 1) in the window during which the setup is actually
1095 * already done, but not marked yet because not all
1096 * packets are spliced over to the driver pending
1097 * queue yet -- if this happened we acquire the lock
1098 * either before or after the splice happens, but
1099 * need to recheck which of these cases happened.
1100 *
1101 * 2) during session teardown, if the OPERATIONAL bit
1102 * was cleared due to the teardown but the pointer
1103 * hasn't been assigned NULL yet (or we loaded it
1104 * before it was assigned) -- in this case it may
1105 * now be NULL which means we should just let the
1106 * packet pass through because splicing the frames
1107 * back is already done.
1108 */
40b275b6 1109 tid_tx = rcu_dereference_protected_tid_tx(tx->sta, tid);
a622ab72
JB
1110
1111 if (!tid_tx) {
1112 /* do nothing, let packet pass through */
1113 } else if (test_bit(HT_AGG_STATE_OPERATIONAL, &tid_tx->state)) {
1114 info->flags |= IEEE80211_TX_CTL_AMPDU;
285fa695 1115 reset_agg_timer = true;
a622ab72
JB
1116 } else {
1117 queued = true;
1118 info->control.vif = &tx->sdata->vif;
1119 info->flags |= IEEE80211_TX_INTFL_NEED_TXPROCESSING;
03c8c06f 1120 info->flags &= ~IEEE80211_TX_TEMPORARY_FLAGS;
a622ab72 1121 __skb_queue_tail(&tid_tx->pending, skb);
aa454580
HS
1122 if (skb_queue_len(&tid_tx->pending) > STA_MAX_TX_BUFFER)
1123 purge_skb = __skb_dequeue(&tid_tx->pending);
a622ab72
JB
1124 }
1125 spin_unlock(&tx->sta->lock);
aa454580
HS
1126
1127 if (purge_skb)
c3e7724b 1128 ieee80211_free_txskb(&tx->local->hw, purge_skb);
a622ab72
JB
1129 }
1130
285fa695
NM
1131 /* reset session timer */
1132 if (reset_agg_timer && tid_tx->timeout)
12d3952f 1133 tid_tx->last_tx = jiffies;
285fa695 1134
a622ab72
JB
1135 return queued;
1136}
1137
58d4185e
JB
1138/*
1139 * initialises @tx
1140 */
9ae54c84 1141static ieee80211_tx_result
3b8d81e0
JB
1142ieee80211_tx_prepare(struct ieee80211_sub_if_data *sdata,
1143 struct ieee80211_tx_data *tx,
1144 struct sk_buff *skb)
e2ebc74d 1145{
3b8d81e0 1146 struct ieee80211_local *local = sdata->local;
58d4185e 1147 struct ieee80211_hdr *hdr;
e039fa4a 1148 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
68f2b517 1149 int tid;
a622ab72 1150 u8 *qc;
e2ebc74d
JB
1151
1152 memset(tx, 0, sizeof(*tx));
1153 tx->skb = skb;
e2ebc74d 1154 tx->local = local;
3b8d81e0 1155 tx->sdata = sdata;
252b86c4 1156 __skb_queue_head_init(&tx->skbs);
e2ebc74d 1157
cd8ffc80
JB
1158 /*
1159 * If this flag is set to true anywhere, and we get here,
1160 * we are doing the needed processing, so remove the flag
1161 * now.
1162 */
1163 info->flags &= ~IEEE80211_TX_INTFL_NEED_TXPROCESSING;
1164
58d4185e
JB
1165 hdr = (struct ieee80211_hdr *) skb->data;
1166
3f0e0b22 1167 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN) {
f14543ee 1168 tx->sta = rcu_dereference(sdata->u.vlan.sta);
3f0e0b22
FF
1169 if (!tx->sta && sdata->dev->ieee80211_ptr->use_4addr)
1170 return TX_DROP;
03bb7f42
FF
1171 } else if (info->flags & (IEEE80211_TX_CTL_INJECTED |
1172 IEEE80211_TX_INTFL_NL80211_FRAME_TX) ||
66f2c99a 1173 tx->sdata->control_port_protocol == tx->skb->protocol) {
b4d57adb 1174 tx->sta = sta_info_get_bss(sdata, hdr->addr1);
3f0e0b22 1175 }
f14543ee 1176 if (!tx->sta)
abe60632 1177 tx->sta = sta_info_get(sdata, hdr->addr1);
58d4185e 1178
cd8ffc80 1179 if (tx->sta && ieee80211_is_data_qos(hdr->frame_control) &&
49a59543 1180 !ieee80211_is_qos_nullfunc(hdr->frame_control) &&
edf6b784
AN
1181 (local->hw.flags & IEEE80211_HW_AMPDU_AGGREGATION) &&
1182 !(local->hw.flags & IEEE80211_HW_TX_AMPDU_SETUP_IN_HW)) {
cd8ffc80
JB
1183 struct tid_ampdu_tx *tid_tx;
1184
8b30b1fe
S
1185 qc = ieee80211_get_qos_ctl(hdr);
1186 tid = *qc & IEEE80211_QOS_CTL_TID_MASK;
1187
a622ab72
JB
1188 tid_tx = rcu_dereference(tx->sta->ampdu_mlme.tid_tx[tid]);
1189 if (tid_tx) {
1190 bool queued;
cd8ffc80 1191
a622ab72
JB
1192 queued = ieee80211_tx_prep_agg(tx, skb, info,
1193 tid_tx, tid);
1194
1195 if (unlikely(queued))
1196 return TX_QUEUED;
1197 }
8b30b1fe
S
1198 }
1199
badffb72 1200 if (is_multicast_ether_addr(hdr->addr1)) {
5cf121c3 1201 tx->flags &= ~IEEE80211_TX_UNICAST;
e039fa4a 1202 info->flags |= IEEE80211_TX_CTL_NO_ACK;
6fd67e93 1203 } else
5cf121c3 1204 tx->flags |= IEEE80211_TX_UNICAST;
58d4185e 1205
a26eb27a
JB
1206 if (!(info->flags & IEEE80211_TX_CTL_DONTFRAG)) {
1207 if (!(tx->flags & IEEE80211_TX_UNICAST) ||
1208 skb->len + FCS_LEN <= local->hw.wiphy->frag_threshold ||
1209 info->flags & IEEE80211_TX_CTL_AMPDU)
1210 info->flags |= IEEE80211_TX_CTL_DONTFRAG;
58d4185e
JB
1211 }
1212
e2ebc74d 1213 if (!tx->sta)
e039fa4a 1214 info->flags |= IEEE80211_TX_CTL_CLEAR_PS_FILT;
c2c98fde 1215 else if (test_and_clear_sta_flag(tx->sta, WLAN_STA_CLEAR_PS_FILT))
e039fa4a 1216 info->flags |= IEEE80211_TX_CTL_CLEAR_PS_FILT;
58d4185e 1217
e039fa4a 1218 info->flags |= IEEE80211_TX_CTL_FIRST_FRAGMENT;
e2ebc74d 1219
9ae54c84 1220 return TX_CONTINUE;
e2ebc74d
JB
1221}
1222
11127e91
JB
1223static bool ieee80211_tx_frags(struct ieee80211_local *local,
1224 struct ieee80211_vif *vif,
1225 struct ieee80211_sta *sta,
1226 struct sk_buff_head *skbs,
1227 bool txpending)
e2ebc74d 1228{
36323f81 1229 struct ieee80211_tx_control control;
252b86c4 1230 struct sk_buff *skb, *tmp;
3b8d81e0 1231 unsigned long flags;
e2ebc74d 1232
252b86c4 1233 skb_queue_walk_safe(skbs, skb, tmp) {
3a25a8c8
JB
1234 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1235 int q = info->hw_queue;
1236
1237#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
1238 if (WARN_ON_ONCE(q >= local->hw.queues)) {
1239 __skb_unlink(skb, skbs);
c3e7724b 1240 ieee80211_free_txskb(&local->hw, skb);
3a25a8c8
JB
1241 continue;
1242 }
1243#endif
3b8d81e0
JB
1244
1245 spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
3b8d81e0 1246 if (local->queue_stop_reasons[q] ||
7bb45683 1247 (!txpending && !skb_queue_empty(&local->pending[q]))) {
6c17b77b 1248 if (unlikely(info->flags &
a7679ed5
SF
1249 IEEE80211_TX_INTFL_OFFCHAN_TX_OK)) {
1250 if (local->queue_stop_reasons[q] &
1251 ~BIT(IEEE80211_QUEUE_STOP_REASON_OFFCHANNEL)) {
1252 /*
1253 * Drop off-channel frames if queues
1254 * are stopped for any reason other
1255 * than off-channel operation. Never
1256 * queue them.
1257 */
1258 spin_unlock_irqrestore(
1259 &local->queue_stop_reason_lock,
1260 flags);
1261 ieee80211_purge_tx_queue(&local->hw,
1262 skbs);
1263 return true;
1264 }
1265 } else {
1266
6c17b77b 1267 /*
a7679ed5
SF
1268 * Since queue is stopped, queue up frames for
1269 * later transmission from the tx-pending
1270 * tasklet when the queue is woken again.
6c17b77b 1271 */
a7679ed5
SF
1272 if (txpending)
1273 skb_queue_splice_init(skbs,
1274 &local->pending[q]);
1275 else
1276 skb_queue_splice_tail_init(skbs,
1277 &local->pending[q]);
1278
1279 spin_unlock_irqrestore(&local->queue_stop_reason_lock,
1280 flags);
1281 return false;
6c17b77b 1282 }
7bb45683 1283 }
3b8d81e0 1284 spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
f8e79ddd 1285
11127e91 1286 info->control.vif = vif;
36323f81 1287 control.sta = sta;
f0e72851 1288
11127e91 1289 __skb_unlink(skb, skbs);
36323f81 1290 drv_tx(local, &control, skb);
11127e91 1291 }
5061b0c2 1292
11127e91
JB
1293 return true;
1294}
1295
1296/*
1297 * Returns false if the frame couldn't be transmitted but was queued instead.
1298 */
1299static bool __ieee80211_tx(struct ieee80211_local *local,
1300 struct sk_buff_head *skbs, int led_len,
1301 struct sta_info *sta, bool txpending)
1302{
1303 struct ieee80211_tx_info *info;
1304 struct ieee80211_sub_if_data *sdata;
1305 struct ieee80211_vif *vif;
1306 struct ieee80211_sta *pubsta;
1307 struct sk_buff *skb;
1308 bool result = true;
1309 __le16 fc;
5061b0c2 1310
11127e91
JB
1311 if (WARN_ON(skb_queue_empty(skbs)))
1312 return true;
ec25acc4 1313
11127e91
JB
1314 skb = skb_peek(skbs);
1315 fc = ((struct ieee80211_hdr *)skb->data)->frame_control;
1316 info = IEEE80211_SKB_CB(skb);
1317 sdata = vif_to_sdata(info->control.vif);
1318 if (sta && !sta->uploaded)
1319 sta = NULL;
1320
1321 if (sta)
1322 pubsta = &sta->sta;
1323 else
1324 pubsta = NULL;
1325
1326 switch (sdata->vif.type) {
1327 case NL80211_IFTYPE_MONITOR:
c82b5a74
JB
1328 if (sdata->u.mntr_flags & MONITOR_FLAG_ACTIVE) {
1329 vif = &sdata->vif;
1330 break;
1331 }
4b6f1dd6 1332 sdata = rcu_dereference(local->monitor_sdata);
3a25a8c8 1333 if (sdata) {
4b6f1dd6 1334 vif = &sdata->vif;
3a25a8c8
JB
1335 info->hw_queue =
1336 vif->hw_queue[skb_get_queue_mapping(skb)];
1337 } else if (local->hw.flags & IEEE80211_HW_QUEUE_CONTROL) {
1338 dev_kfree_skb(skb);
1339 return true;
1340 } else
4b6f1dd6 1341 vif = NULL;
11127e91
JB
1342 break;
1343 case NL80211_IFTYPE_AP_VLAN:
1344 sdata = container_of(sdata->bss,
1345 struct ieee80211_sub_if_data, u.ap);
1346 /* fall through */
1347 default:
1348 vif = &sdata->vif;
1349 break;
e2ebc74d 1350 }
2de8e0d9 1351
cb831b53
JB
1352 result = ieee80211_tx_frags(local, vif, pubsta, skbs,
1353 txpending);
11127e91 1354
74e4dbfd 1355 ieee80211_tpt_led_trig_tx(local, fc, led_len);
74e4dbfd 1356
4db4e0a1 1357 WARN_ON_ONCE(!skb_queue_empty(skbs));
252b86c4 1358
11127e91 1359 return result;
e2ebc74d
JB
1360}
1361
97b045d6
JB
1362/*
1363 * Invoke TX handlers, return 0 on success and non-zero if the
1364 * frame was dropped or queued.
1365 */
1366static int invoke_tx_handlers(struct ieee80211_tx_data *tx)
1367{
252b86c4 1368 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
97b045d6 1369 ieee80211_tx_result res = TX_DROP;
97b045d6 1370
9aa4aee3
JB
1371#define CALL_TXH(txh) \
1372 do { \
1373 res = txh(tx); \
1374 if (res != TX_CONTINUE) \
1375 goto txh_done; \
1376 } while (0)
1377
5c1b98a5 1378 CALL_TXH(ieee80211_tx_h_dynamic_ps);
9aa4aee3
JB
1379 CALL_TXH(ieee80211_tx_h_check_assoc);
1380 CALL_TXH(ieee80211_tx_h_ps_buf);
a621fa4d 1381 CALL_TXH(ieee80211_tx_h_check_control_port_protocol);
9aa4aee3 1382 CALL_TXH(ieee80211_tx_h_select_key);
af65cd96
JB
1383 if (!(tx->local->hw.flags & IEEE80211_HW_HAS_RATE_CONTROL))
1384 CALL_TXH(ieee80211_tx_h_rate_ctrl);
c6fcf6bc 1385
aa5b5492
JB
1386 if (unlikely(info->flags & IEEE80211_TX_INTFL_RETRANSMISSION)) {
1387 __skb_queue_tail(&tx->skbs, tx->skb);
1388 tx->skb = NULL;
c6fcf6bc 1389 goto txh_done;
aa5b5492 1390 }
c6fcf6bc
JB
1391
1392 CALL_TXH(ieee80211_tx_h_michael_mic_add);
9aa4aee3
JB
1393 CALL_TXH(ieee80211_tx_h_sequence);
1394 CALL_TXH(ieee80211_tx_h_fragment);
d9e8a70f 1395 /* handlers after fragment must be aware of tx info fragmentation! */
9aa4aee3
JB
1396 CALL_TXH(ieee80211_tx_h_stats);
1397 CALL_TXH(ieee80211_tx_h_encrypt);
8fd369ee
AN
1398 if (!(tx->local->hw.flags & IEEE80211_HW_HAS_RATE_CONTROL))
1399 CALL_TXH(ieee80211_tx_h_calculate_duration);
d9e8a70f 1400#undef CALL_TXH
97b045d6 1401
d9e8a70f 1402 txh_done:
97b045d6 1403 if (unlikely(res == TX_DROP)) {
5479d0e7 1404 I802_DEBUG_INC(tx->local->tx_handlers_drop);
252b86c4 1405 if (tx->skb)
c3e7724b 1406 ieee80211_free_txskb(&tx->local->hw, tx->skb);
252b86c4 1407 else
1f98ab7f 1408 ieee80211_purge_tx_queue(&tx->local->hw, &tx->skbs);
97b045d6
JB
1409 return -1;
1410 } else if (unlikely(res == TX_QUEUED)) {
5479d0e7 1411 I802_DEBUG_INC(tx->local->tx_handlers_queued);
97b045d6
JB
1412 return -1;
1413 }
1414
1415 return 0;
1416}
1417
06be6b14
FF
1418bool ieee80211_tx_prepare_skb(struct ieee80211_hw *hw,
1419 struct ieee80211_vif *vif, struct sk_buff *skb,
1420 int band, struct ieee80211_sta **sta)
1421{
1422 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
1423 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1424 struct ieee80211_tx_data tx;
1425
1426 if (ieee80211_tx_prepare(sdata, &tx, skb) == TX_DROP)
1427 return false;
1428
1429 info->band = band;
1430 info->control.vif = vif;
1431 info->hw_queue = vif->hw_queue[skb_get_queue_mapping(skb)];
1432
1433 if (invoke_tx_handlers(&tx))
1434 return false;
1435
1436 if (sta) {
1437 if (tx.sta)
1438 *sta = &tx.sta->sta;
1439 else
1440 *sta = NULL;
1441 }
1442
1443 return true;
1444}
1445EXPORT_SYMBOL(ieee80211_tx_prepare_skb);
1446
7bb45683
JB
1447/*
1448 * Returns false if the frame couldn't be transmitted but was queued instead.
1449 */
1450static bool ieee80211_tx(struct ieee80211_sub_if_data *sdata,
73c4e195 1451 struct sk_buff *skb, bool txpending)
e2ebc74d 1452{
3b8d81e0 1453 struct ieee80211_local *local = sdata->local;
5cf121c3 1454 struct ieee80211_tx_data tx;
97b045d6 1455 ieee80211_tx_result res_prepare;
e039fa4a 1456 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
7bb45683 1457 bool result = true;
74e4dbfd 1458 int led_len;
e2ebc74d 1459
e2ebc74d
JB
1460 if (unlikely(skb->len < 10)) {
1461 dev_kfree_skb(skb);
7bb45683 1462 return true;
e2ebc74d
JB
1463 }
1464
58d4185e 1465 /* initialises tx */
74e4dbfd 1466 led_len = skb->len;
3b8d81e0 1467 res_prepare = ieee80211_tx_prepare(sdata, &tx, skb);
e2ebc74d 1468
cd8ffc80 1469 if (unlikely(res_prepare == TX_DROP)) {
c3e7724b 1470 ieee80211_free_txskb(&local->hw, skb);
55de908a 1471 return true;
cd8ffc80 1472 } else if (unlikely(res_prepare == TX_QUEUED)) {
55de908a 1473 return true;
e2ebc74d
JB
1474 }
1475
3a25a8c8
JB
1476 /* set up hw_queue value early */
1477 if (!(info->flags & IEEE80211_TX_CTL_TX_OFFCHAN) ||
1478 !(local->hw.flags & IEEE80211_HW_QUEUE_CONTROL))
1479 info->hw_queue =
1480 sdata->vif.hw_queue[skb_get_queue_mapping(skb)];
1481
7bb45683 1482 if (!invoke_tx_handlers(&tx))
74e4dbfd
JB
1483 result = __ieee80211_tx(local, &tx.skbs, led_len,
1484 tx.sta, txpending);
55de908a 1485
7bb45683 1486 return result;
e2ebc74d
JB
1487}
1488
1489/* device xmit handlers */
1490
3bff1865 1491static int ieee80211_skb_resize(struct ieee80211_sub_if_data *sdata,
23c0752a
JB
1492 struct sk_buff *skb,
1493 int head_need, bool may_encrypt)
1494{
3bff1865 1495 struct ieee80211_local *local = sdata->local;
23c0752a
JB
1496 int tail_need = 0;
1497
3bff1865 1498 if (may_encrypt && sdata->crypto_tx_tailroom_needed_cnt) {
23c0752a
JB
1499 tail_need = IEEE80211_ENCRYPT_TAILROOM;
1500 tail_need -= skb_tailroom(skb);
1501 tail_need = max_t(int, tail_need, 0);
1502 }
1503
c70f59a2
IY
1504 if (skb_cloned(skb) &&
1505 (!(local->hw.flags & IEEE80211_HW_SUPPORTS_CLONED_SKBS) ||
1506 !skb_clone_writable(skb, ETH_HLEN) ||
1507 sdata->crypto_tx_tailroom_needed_cnt))
23c0752a 1508 I802_DEBUG_INC(local->tx_expand_skb_head_cloned);
4cd06a34 1509 else if (head_need || tail_need)
23c0752a 1510 I802_DEBUG_INC(local->tx_expand_skb_head);
4cd06a34
FF
1511 else
1512 return 0;
23c0752a
JB
1513
1514 if (pskb_expand_head(skb, head_need, tail_need, GFP_ATOMIC)) {
0fb9a9ec
JP
1515 wiphy_debug(local->hw.wiphy,
1516 "failed to reallocate TX buffer\n");
23c0752a
JB
1517 return -ENOMEM;
1518 }
1519
23c0752a
JB
1520 return 0;
1521}
1522
73c4e195 1523void ieee80211_xmit(struct ieee80211_sub_if_data *sdata, struct sk_buff *skb)
e2ebc74d 1524{
3b8d81e0 1525 struct ieee80211_local *local = sdata->local;
e039fa4a 1526 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
e32f85f7 1527 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
e2ebc74d 1528 int headroom;
23c0752a 1529 bool may_encrypt;
e2ebc74d 1530
3b8d81e0 1531 may_encrypt = !(info->flags & IEEE80211_TX_INTFL_DONT_ENCRYPT);
23c0752a 1532
3b8d81e0 1533 headroom = local->tx_headroom;
23c0752a 1534 if (may_encrypt)
2475b1cc 1535 headroom += sdata->encrypt_headroom;
23c0752a
JB
1536 headroom -= skb_headroom(skb);
1537 headroom = max_t(int, 0, headroom);
1538
3bff1865 1539 if (ieee80211_skb_resize(sdata, skb, headroom, may_encrypt)) {
c3e7724b 1540 ieee80211_free_txskb(&local->hw, skb);
3b8d81e0 1541 return;
e2ebc74d
JB
1542 }
1543
740c1aa3 1544 hdr = (struct ieee80211_hdr *) skb->data;
5061b0c2 1545 info->control.vif = &sdata->vif;
e2ebc74d 1546
3f52b7e3
MP
1547 if (ieee80211_vif_is_mesh(&sdata->vif)) {
1548 if (ieee80211_is_data(hdr->frame_control) &&
1549 is_unicast_ether_addr(hdr->addr1)) {
bf7cd94d 1550 if (mesh_nexthop_resolve(sdata, skb))
3f52b7e3
MP
1551 return; /* skb queued: don't free */
1552 } else {
1553 ieee80211_mps_set_frame_flags(sdata, NULL, hdr);
1554 }
98aed9fd 1555 }
cca89496 1556
2154c81c 1557 ieee80211_set_qos_hdr(sdata, skb);
73c4e195 1558 ieee80211_tx(sdata, skb, false);
e2ebc74d
JB
1559}
1560
73b9f03a
JB
1561static bool ieee80211_parse_tx_radiotap(struct sk_buff *skb)
1562{
1563 struct ieee80211_radiotap_iterator iterator;
1564 struct ieee80211_radiotap_header *rthdr =
1565 (struct ieee80211_radiotap_header *) skb->data;
1566 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1567 int ret = ieee80211_radiotap_iterator_init(&iterator, rthdr, skb->len,
1568 NULL);
1569 u16 txflags;
1570
1571 info->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT |
1572 IEEE80211_TX_CTL_DONTFRAG;
1573
1574 /*
1575 * for every radiotap entry that is present
1576 * (ieee80211_radiotap_iterator_next returns -ENOENT when no more
1577 * entries present, or -EINVAL on error)
1578 */
1579
1580 while (!ret) {
1581 ret = ieee80211_radiotap_iterator_next(&iterator);
1582
1583 if (ret)
1584 continue;
1585
1586 /* see if this argument is something we can use */
1587 switch (iterator.this_arg_index) {
1588 /*
1589 * You must take care when dereferencing iterator.this_arg
1590 * for multibyte types... the pointer is not aligned. Use
1591 * get_unaligned((type *)iterator.this_arg) to dereference
1592 * iterator.this_arg for type "type" safely on all arches.
1593 */
1594 case IEEE80211_RADIOTAP_FLAGS:
1595 if (*iterator.this_arg & IEEE80211_RADIOTAP_F_FCS) {
1596 /*
1597 * this indicates that the skb we have been
1598 * handed has the 32-bit FCS CRC at the end...
1599 * we should react to that by snipping it off
1600 * because it will be recomputed and added
1601 * on transmission
1602 */
1603 if (skb->len < (iterator._max_length + FCS_LEN))
1604 return false;
1605
1606 skb_trim(skb, skb->len - FCS_LEN);
1607 }
1608 if (*iterator.this_arg & IEEE80211_RADIOTAP_F_WEP)
1609 info->flags &= ~IEEE80211_TX_INTFL_DONT_ENCRYPT;
1610 if (*iterator.this_arg & IEEE80211_RADIOTAP_F_FRAG)
1611 info->flags &= ~IEEE80211_TX_CTL_DONTFRAG;
1612 break;
1613
1614 case IEEE80211_RADIOTAP_TX_FLAGS:
1615 txflags = get_unaligned_le16(iterator.this_arg);
1616 if (txflags & IEEE80211_RADIOTAP_F_TX_NOACK)
1617 info->flags |= IEEE80211_TX_CTL_NO_ACK;
1618 break;
1619
1620 /*
1621 * Please update the file
1622 * Documentation/networking/mac80211-injection.txt
1623 * when parsing new fields here.
1624 */
1625
1626 default:
1627 break;
1628 }
1629 }
1630
1631 if (ret != -ENOENT) /* ie, if we didn't simply run out of fields */
1632 return false;
1633
1634 /*
1635 * remove the radiotap header
1636 * iterator->_max_length was sanity-checked against
1637 * skb->len by iterator init
1638 */
1639 skb_pull(skb, iterator._max_length);
1640
1641 return true;
1642}
1643
d0cf9c0d
SH
1644netdev_tx_t ieee80211_monitor_start_xmit(struct sk_buff *skb,
1645 struct net_device *dev)
e2ebc74d
JB
1646{
1647 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
55de908a 1648 struct ieee80211_chanctx_conf *chanctx_conf;
e2ebc74d
JB
1649 struct ieee80211_radiotap_header *prthdr =
1650 (struct ieee80211_radiotap_header *)skb->data;
3b8d81e0 1651 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
f75f5c6f 1652 struct ieee80211_hdr *hdr;
5d9cf4a5 1653 struct ieee80211_sub_if_data *tmp_sdata, *sdata;
b4932836 1654 struct cfg80211_chan_def *chandef;
9b8a74e3 1655 u16 len_rthdr;
5d9cf4a5 1656 int hdrlen;
e2ebc74d 1657
9b8a74e3
AG
1658 /* check for not even having the fixed radiotap header part */
1659 if (unlikely(skb->len < sizeof(struct ieee80211_radiotap_header)))
1660 goto fail; /* too short to be possibly valid */
1661
1662 /* is it a header version we can trust to find length from? */
1663 if (unlikely(prthdr->it_version))
1664 goto fail; /* only version 0 is supported */
1665
1666 /* then there must be a radiotap header with a length we can use */
1667 len_rthdr = ieee80211_get_radiotap_len(skb->data);
1668
1669 /* does the skb contain enough to deliver on the alleged length? */
1670 if (unlikely(skb->len < len_rthdr))
1671 goto fail; /* skb too short for claimed rt header extent */
e2ebc74d 1672
e2ebc74d
JB
1673 /*
1674 * fix up the pointers accounting for the radiotap
1675 * header still being in there. We are being given
1676 * a precooked IEEE80211 header so no need for
1677 * normal processing
1678 */
9b8a74e3 1679 skb_set_mac_header(skb, len_rthdr);
e2ebc74d 1680 /*
9b8a74e3
AG
1681 * these are just fixed to the end of the rt area since we
1682 * don't have any better information and at this point, nobody cares
e2ebc74d 1683 */
9b8a74e3
AG
1684 skb_set_network_header(skb, len_rthdr);
1685 skb_set_transport_header(skb, len_rthdr);
e2ebc74d 1686
5d9cf4a5
JB
1687 if (skb->len < len_rthdr + 2)
1688 goto fail;
1689
1690 hdr = (struct ieee80211_hdr *)(skb->data + len_rthdr);
1691 hdrlen = ieee80211_hdrlen(hdr->frame_control);
1692
1693 if (skb->len < len_rthdr + hdrlen)
1694 goto fail;
1695
f75f5c6f
HS
1696 /*
1697 * Initialize skb->protocol if the injected frame is a data frame
1698 * carrying a rfc1042 header
1699 */
5d9cf4a5
JB
1700 if (ieee80211_is_data(hdr->frame_control) &&
1701 skb->len >= len_rthdr + hdrlen + sizeof(rfc1042_header) + 2) {
1702 u8 *payload = (u8 *)hdr + hdrlen;
1703
b203ca39 1704 if (ether_addr_equal(payload, rfc1042_header))
5d9cf4a5
JB
1705 skb->protocol = cpu_to_be16((payload[6] << 8) |
1706 payload[7]);
f75f5c6f
HS
1707 }
1708
3b8d81e0
JB
1709 memset(info, 0, sizeof(*info));
1710
5d9cf4a5 1711 info->flags = IEEE80211_TX_CTL_REQ_TX_STATUS |
73b9f03a
JB
1712 IEEE80211_TX_CTL_INJECTED;
1713
1714 /* process and remove the injection radiotap header */
1715 if (!ieee80211_parse_tx_radiotap(skb))
1716 goto fail;
5d9cf4a5
JB
1717
1718 rcu_read_lock();
1719
1720 /*
1721 * We process outgoing injected frames that have a local address
1722 * we handle as though they are non-injected frames.
1723 * This code here isn't entirely correct, the local MAC address
1724 * isn't always enough to find the interface to use; for proper
1725 * VLAN/WDS support we will need a different mechanism (which
1726 * likely isn't going to be monitor interfaces).
1727 */
1728 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1729
1730 list_for_each_entry_rcu(tmp_sdata, &local->interfaces, list) {
1731 if (!ieee80211_sdata_running(tmp_sdata))
1732 continue;
1733 if (tmp_sdata->vif.type == NL80211_IFTYPE_MONITOR ||
1734 tmp_sdata->vif.type == NL80211_IFTYPE_AP_VLAN ||
1735 tmp_sdata->vif.type == NL80211_IFTYPE_WDS)
1736 continue;
b203ca39 1737 if (ether_addr_equal(tmp_sdata->vif.addr, hdr->addr2)) {
5d9cf4a5
JB
1738 sdata = tmp_sdata;
1739 break;
1740 }
1741 }
7351c6bd 1742
55de908a
JB
1743 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
1744 if (!chanctx_conf) {
1745 tmp_sdata = rcu_dereference(local->monitor_sdata);
1746 if (tmp_sdata)
1747 chanctx_conf =
1748 rcu_dereference(tmp_sdata->vif.chanctx_conf);
1749 }
55de908a 1750
b4a7ff75 1751 if (chanctx_conf)
b4932836 1752 chandef = &chanctx_conf->def;
b4a7ff75 1753 else if (!local->use_chanctx)
b4932836 1754 chandef = &local->_oper_chandef;
b4a7ff75
FF
1755 else
1756 goto fail_rcu;
55de908a
JB
1757
1758 /*
1759 * Frame injection is not allowed if beaconing is not allowed
1760 * or if we need radar detection. Beaconing is usually not allowed when
1761 * the mode or operation (Adhoc, AP, Mesh) does not support DFS.
1762 * Passive scan is also used in world regulatory domains where
1763 * your country is not known and as such it should be treated as
1764 * NO TX unless the channel is explicitly allowed in which case
1765 * your current regulatory domain would not have the passive scan
1766 * flag.
1767 *
1768 * Since AP mode uses monitor interfaces to inject/TX management
1769 * frames we can make AP mode the exception to this rule once it
1770 * supports radar detection as its implementation can deal with
1771 * radar detection by itself. We can do that later by adding a
1772 * monitor flag interfaces used for AP support.
1773 */
b4932836
JD
1774 if (!cfg80211_reg_can_beacon(local->hw.wiphy, chandef,
1775 sdata->vif.type))
55de908a
JB
1776 goto fail_rcu;
1777
73c4e195
JB
1778 info->band = chandef->chan->band;
1779 ieee80211_xmit(sdata, skb);
5d9cf4a5
JB
1780 rcu_read_unlock();
1781
e2ebc74d 1782 return NETDEV_TX_OK;
9b8a74e3 1783
55de908a
JB
1784fail_rcu:
1785 rcu_read_unlock();
9b8a74e3
AG
1786fail:
1787 dev_kfree_skb(skb);
1788 return NETDEV_TX_OK; /* meaning, we dealt with the skb */
e2ebc74d
JB
1789}
1790
ad38bfc9
MG
1791/*
1792 * Measure Tx frame arrival time for Tx latency statistics calculation
1793 * A single Tx frame latency should be measured from when it is entering the
1794 * Kernel until we receive Tx complete confirmation indication and the skb is
1795 * freed.
1796 */
1797static void ieee80211_tx_latency_start_msrmnt(struct ieee80211_local *local,
1798 struct sk_buff *skb)
1799{
ad38bfc9
MG
1800 struct ieee80211_tx_latency_bin_ranges *tx_latency;
1801
1802 tx_latency = rcu_dereference(local->tx_latency);
1803 if (!tx_latency)
1804 return;
8d7b70fb 1805 skb->tstamp = ktime_get();
ad38bfc9
MG
1806}
1807
e2ebc74d 1808/**
4c9451ed
JB
1809 * ieee80211_build_hdr - build 802.11 header in the given frame
1810 * @sdata: virtual interface to build the header for
1811 * @skb: the skb to build the header in
24d342c5 1812 * @info_flags: skb flags to set
e2ebc74d 1813 *
4c9451ed
JB
1814 * This function takes the skb with 802.3 header and reformats the header to
1815 * the appropriate IEEE 802.11 header based on which interface the packet is
1816 * being transmitted on.
1817 *
1818 * Note that this function also takes care of the TX status request and
1819 * potential unsharing of the SKB - this needs to be interleaved with the
1820 * header building.
e2ebc74d 1821 *
4c9451ed
JB
1822 * The function requires the read-side RCU lock held
1823 *
1824 * Returns: the (possibly reallocated) skb or an ERR_PTR() code
e2ebc74d 1825 */
4c9451ed
JB
1826static struct sk_buff *ieee80211_build_hdr(struct ieee80211_sub_if_data *sdata,
1827 struct sk_buff *skb, u32 info_flags)
e2ebc74d 1828{
133b8226 1829 struct ieee80211_local *local = sdata->local;
489ee919 1830 struct ieee80211_tx_info *info;
dcf33963 1831 int head_need;
065e9605
HH
1832 u16 ethertype, hdrlen, meshhdrlen = 0;
1833 __le16 fc;
e2ebc74d 1834 struct ieee80211_hdr hdr;
ff67bb86 1835 struct ieee80211s_hdr mesh_hdr __maybe_unused;
b8bacc18 1836 struct mesh_path __maybe_unused *mppath = NULL, *mpath = NULL;
e2ebc74d
JB
1837 const u8 *encaps_data;
1838 int encaps_len, skip_header_bytes;
e8bf9649 1839 int nh_pos, h_pos;
f14543ee 1840 struct sta_info *sta = NULL;
c2c98fde 1841 bool wme_sta = false, authorized = false, tdls_auth = false;
9deba04d 1842 bool tdls_peer = false, tdls_setup_frame = false;
a729cff8 1843 bool multicast;
a729cff8 1844 u16 info_id = 0;
55de908a
JB
1845 struct ieee80211_chanctx_conf *chanctx_conf;
1846 struct ieee80211_sub_if_data *ap_sdata;
1847 enum ieee80211_band band;
4c9451ed 1848 int ret;
e2ebc74d 1849
e2ebc74d
JB
1850 /* convert Ethernet header to proper 802.11 header (based on
1851 * operation mode) */
1852 ethertype = (skb->data[12] << 8) | skb->data[13];
065e9605 1853 fc = cpu_to_le16(IEEE80211_FTYPE_DATA | IEEE80211_STYPE_DATA);
e2ebc74d 1854
51fb61e7 1855 switch (sdata->vif.type) {
05c914fe 1856 case NL80211_IFTYPE_AP_VLAN:
9bc383de 1857 sta = rcu_dereference(sdata->u.vlan.sta);
f14543ee
FF
1858 if (sta) {
1859 fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS);
1860 /* RA TA DA SA */
1861 memcpy(hdr.addr1, sta->sta.addr, ETH_ALEN);
47846c9b 1862 memcpy(hdr.addr2, sdata->vif.addr, ETH_ALEN);
f14543ee
FF
1863 memcpy(hdr.addr3, skb->data, ETH_ALEN);
1864 memcpy(hdr.addr4, skb->data + ETH_ALEN, ETH_ALEN);
1865 hdrlen = 30;
c2c98fde 1866 authorized = test_sta_flag(sta, WLAN_STA_AUTHORIZED);
a74a8c84 1867 wme_sta = sta->sta.wme;
f14543ee 1868 }
55de908a
JB
1869 ap_sdata = container_of(sdata->bss, struct ieee80211_sub_if_data,
1870 u.ap);
1871 chanctx_conf = rcu_dereference(ap_sdata->vif.chanctx_conf);
4c9451ed
JB
1872 if (!chanctx_conf) {
1873 ret = -ENOTCONN;
1874 goto free;
1875 }
4bf88530 1876 band = chanctx_conf->def.chan->band;
f14543ee
FF
1877 if (sta)
1878 break;
1879 /* fall through */
1880 case NL80211_IFTYPE_AP:
fe80123d
AB
1881 if (sdata->vif.type == NL80211_IFTYPE_AP)
1882 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
4c9451ed
JB
1883 if (!chanctx_conf) {
1884 ret = -ENOTCONN;
1885 goto free;
1886 }
065e9605 1887 fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS);
e2ebc74d
JB
1888 /* DA BSSID SA */
1889 memcpy(hdr.addr1, skb->data, ETH_ALEN);
47846c9b 1890 memcpy(hdr.addr2, sdata->vif.addr, ETH_ALEN);
e2ebc74d
JB
1891 memcpy(hdr.addr3, skb->data + ETH_ALEN, ETH_ALEN);
1892 hdrlen = 24;
4bf88530 1893 band = chanctx_conf->def.chan->band;
cf966838 1894 break;
05c914fe 1895 case NL80211_IFTYPE_WDS:
065e9605 1896 fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS);
e2ebc74d
JB
1897 /* RA TA DA SA */
1898 memcpy(hdr.addr1, sdata->u.wds.remote_addr, ETH_ALEN);
47846c9b 1899 memcpy(hdr.addr2, sdata->vif.addr, ETH_ALEN);
e2ebc74d
JB
1900 memcpy(hdr.addr3, skb->data, ETH_ALEN);
1901 memcpy(hdr.addr4, skb->data + ETH_ALEN, ETH_ALEN);
1902 hdrlen = 30;
55de908a
JB
1903 /*
1904 * This is the exception! WDS style interfaces are prohibited
1905 * when channel contexts are in used so this must be valid
1906 */
675a0b04 1907 band = local->hw.conf.chandef.chan->band;
cf966838 1908 break;
33b64eb2 1909#ifdef CONFIG_MAC80211_MESH
05c914fe 1910 case NL80211_IFTYPE_MESH_POINT:
b8bacc18 1911 if (!is_multicast_ether_addr(skb->data)) {
163df6cf
CYY
1912 struct sta_info *next_hop;
1913 bool mpp_lookup = true;
1914
bf7cd94d 1915 mpath = mesh_path_lookup(sdata, skb->data);
163df6cf
CYY
1916 if (mpath) {
1917 mpp_lookup = false;
1918 next_hop = rcu_dereference(mpath->next_hop);
1919 if (!next_hop ||
1920 !(mpath->flags & (MESH_PATH_ACTIVE |
1921 MESH_PATH_RESOLVING)))
1922 mpp_lookup = true;
1923 }
1924
1925 if (mpp_lookup)
bf7cd94d 1926 mppath = mpp_path_lookup(sdata, skb->data);
163df6cf
CYY
1927
1928 if (mppath && mpath)
1929 mesh_path_del(mpath->sdata, mpath->dst);
b8bacc18 1930 }
79617dee 1931
f76b57b4 1932 /*
9d52501b
JF
1933 * Use address extension if it is a packet from
1934 * another interface or if we know the destination
1935 * is being proxied by a portal (i.e. portal address
1936 * differs from proxied address)
f76b57b4 1937 */
b203ca39
JP
1938 if (ether_addr_equal(sdata->vif.addr, skb->data + ETH_ALEN) &&
1939 !(mppath && !ether_addr_equal(mppath->mpp, skb->data))) {
3c5772a5
JC
1940 hdrlen = ieee80211_fill_mesh_addresses(&hdr, &fc,
1941 skb->data, skb->data + ETH_ALEN);
bf7cd94d
JB
1942 meshhdrlen = ieee80211_new_mesh_header(sdata, &mesh_hdr,
1943 NULL, NULL);
79617dee 1944 } else {
27f01124
TP
1945 /* DS -> MBSS (802.11-2012 13.11.3.3).
1946 * For unicast with unknown forwarding information,
1947 * destination might be in the MBSS or if that fails
1948 * forwarded to another mesh gate. In either case
1949 * resolution will be handled in ieee80211_xmit(), so
1950 * leave the original DA. This also works for mcast */
1951 const u8 *mesh_da = skb->data;
1952
1953 if (mppath)
1954 mesh_da = mppath->mpp;
1955 else if (mpath)
1956 mesh_da = mpath->dst;
79617dee 1957
3c5772a5 1958 hdrlen = ieee80211_fill_mesh_addresses(&hdr, &fc,
47846c9b 1959 mesh_da, sdata->vif.addr);
27f01124
TP
1960 if (is_multicast_ether_addr(mesh_da))
1961 /* DA TA mSA AE:SA */
bf7cd94d
JB
1962 meshhdrlen = ieee80211_new_mesh_header(
1963 sdata, &mesh_hdr,
1964 skb->data + ETH_ALEN, NULL);
3c5772a5 1965 else
27f01124 1966 /* RA TA mDA mSA AE:DA SA */
bf7cd94d
JB
1967 meshhdrlen = ieee80211_new_mesh_header(
1968 sdata, &mesh_hdr, skb->data,
1969 skb->data + ETH_ALEN);
79617dee 1970
79617dee 1971 }
55de908a 1972 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
4c9451ed
JB
1973 if (!chanctx_conf) {
1974 ret = -ENOTCONN;
1975 goto free;
1976 }
4bf88530 1977 band = chanctx_conf->def.chan->band;
33b64eb2
LCC
1978 break;
1979#endif
05c914fe 1980 case NL80211_IFTYPE_STATION:
941c93cd 1981 if (sdata->wdev.wiphy->flags & WIPHY_FLAG_SUPPORTS_TDLS) {
941c93cd 1982 sta = sta_info_get(sdata, skb->data);
c2c98fde
JB
1983 if (sta) {
1984 authorized = test_sta_flag(sta,
1985 WLAN_STA_AUTHORIZED);
a74a8c84 1986 wme_sta = sta->sta.wme;
c2c98fde 1987 tdls_peer = test_sta_flag(sta,
9deba04d 1988 WLAN_STA_TDLS_PEER);
c2c98fde
JB
1989 tdls_auth = test_sta_flag(sta,
1990 WLAN_STA_TDLS_PEER_AUTH);
1991 }
941c93cd 1992
9deba04d
AN
1993 if (tdls_peer)
1994 tdls_setup_frame =
1995 ethertype == ETH_P_TDLS &&
1996 skb->len > 14 &&
1997 skb->data[14] == WLAN_TDLS_SNAP_RFTYPE;
941c93cd
AN
1998 }
1999
9deba04d
AN
2000 /*
2001 * TDLS link during setup - throw out frames to peer. We allow
2002 * TDLS-setup frames to unauthorized peers for the special case
2003 * of a link teardown after a TDLS sta is removed due to being
2004 * unreachable.
2005 */
4c9451ed
JB
2006 if (tdls_peer && !tdls_auth && !tdls_setup_frame) {
2007 ret = -EINVAL;
2008 goto free;
2009 }
941c93cd 2010
9deba04d
AN
2011 /* send direct packets to authorized TDLS peers */
2012 if (tdls_peer && tdls_auth) {
941c93cd
AN
2013 /* DA SA BSSID */
2014 memcpy(hdr.addr1, skb->data, ETH_ALEN);
2015 memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN);
2016 memcpy(hdr.addr3, sdata->u.mgd.bssid, ETH_ALEN);
2017 hdrlen = 24;
2018 } else if (sdata->u.mgd.use_4addr &&
2019 cpu_to_be16(ethertype) != sdata->control_port_protocol) {
2020 fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS |
2021 IEEE80211_FCTL_TODS);
f14543ee 2022 /* RA TA DA SA */
941c93cd 2023 memcpy(hdr.addr1, sdata->u.mgd.bssid, ETH_ALEN);
47846c9b 2024 memcpy(hdr.addr2, sdata->vif.addr, ETH_ALEN);
f14543ee
FF
2025 memcpy(hdr.addr3, skb->data, ETH_ALEN);
2026 memcpy(hdr.addr4, skb->data + ETH_ALEN, ETH_ALEN);
2027 hdrlen = 30;
2028 } else {
2029 fc |= cpu_to_le16(IEEE80211_FCTL_TODS);
2030 /* BSSID SA DA */
941c93cd 2031 memcpy(hdr.addr1, sdata->u.mgd.bssid, ETH_ALEN);
f14543ee
FF
2032 memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN);
2033 memcpy(hdr.addr3, skb->data, ETH_ALEN);
2034 hdrlen = 24;
2035 }
55de908a 2036 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
4c9451ed
JB
2037 if (!chanctx_conf) {
2038 ret = -ENOTCONN;
2039 goto free;
2040 }
4bf88530 2041 band = chanctx_conf->def.chan->band;
cf966838 2042 break;
239281f8
RL
2043 case NL80211_IFTYPE_OCB:
2044 /* DA SA BSSID */
2045 memcpy(hdr.addr1, skb->data, ETH_ALEN);
2046 memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN);
2047 eth_broadcast_addr(hdr.addr3);
2048 hdrlen = 24;
2049 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
4c9451ed
JB
2050 if (!chanctx_conf) {
2051 ret = -ENOTCONN;
2052 goto free;
2053 }
239281f8
RL
2054 band = chanctx_conf->def.chan->band;
2055 break;
05c914fe 2056 case NL80211_IFTYPE_ADHOC:
e2ebc74d
JB
2057 /* DA SA BSSID */
2058 memcpy(hdr.addr1, skb->data, ETH_ALEN);
2059 memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN);
46900298 2060 memcpy(hdr.addr3, sdata->u.ibss.bssid, ETH_ALEN);
e2ebc74d 2061 hdrlen = 24;
55de908a 2062 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
4c9451ed
JB
2063 if (!chanctx_conf) {
2064 ret = -ENOTCONN;
2065 goto free;
2066 }
4bf88530 2067 band = chanctx_conf->def.chan->band;
cf966838
JB
2068 break;
2069 default:
4c9451ed
JB
2070 ret = -EINVAL;
2071 goto free;
e2ebc74d
JB
2072 }
2073
7d185b8b
JB
2074 /*
2075 * There's no need to try to look up the destination
2076 * if it is a multicast address (which can only happen
2077 * in AP mode)
2078 */
a729cff8
JB
2079 multicast = is_multicast_ether_addr(hdr.addr1);
2080 if (!multicast) {
abe60632 2081 sta = sta_info_get(sdata, hdr.addr1);
c2c98fde
JB
2082 if (sta) {
2083 authorized = test_sta_flag(sta, WLAN_STA_AUTHORIZED);
a74a8c84 2084 wme_sta = sta->sta.wme;
c2c98fde 2085 }
e2ebc74d
JB
2086 }
2087
4777be41
JC
2088 /* For mesh, the use of the QoS header is mandatory */
2089 if (ieee80211_vif_is_mesh(&sdata->vif))
c2c98fde 2090 wme_sta = true;
4777be41 2091
3434fbd3 2092 /* receiver and we are QoS enabled, use a QoS type frame */
32c5057b 2093 if (wme_sta && local->hw.queues >= IEEE80211_NUM_ACS) {
065e9605 2094 fc |= cpu_to_le16(IEEE80211_STYPE_QOS_DATA);
ce3edf6d
JB
2095 hdrlen += 2;
2096 }
2097
2098 /*
238814fd
JB
2099 * Drop unicast frames to unauthorised stations unless they are
2100 * EAPOL frames from the local station.
ce3edf6d 2101 */
55182e4a 2102 if (unlikely(!ieee80211_vif_is_mesh(&sdata->vif) &&
239281f8 2103 (sdata->vif.type != NL80211_IFTYPE_OCB) &&
a6ececf4 2104 !multicast && !authorized &&
55182e4a 2105 (cpu_to_be16(ethertype) != sdata->control_port_protocol ||
b203ca39 2106 !ether_addr_equal(sdata->vif.addr, skb->data + ETH_ALEN)))) {
ce3edf6d 2107#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
bdcbd8e0 2108 net_info_ratelimited("%s: dropped frame to %pM (unauthorized port)\n",
4c9451ed 2109 sdata->name, hdr.addr1);
ce3edf6d
JB
2110#endif
2111
2112 I802_DEBUG_INC(local->tx_handlers_drop_unauth_port);
2113
4c9451ed
JB
2114 ret = -EPERM;
2115 goto free;
ce3edf6d
JB
2116 }
2117
a729cff8
JB
2118 if (unlikely(!multicast && skb->sk &&
2119 skb_shinfo(skb)->tx_flags & SKBTX_WIFI_STATUS)) {
bf7fa551 2120 struct sk_buff *ack_skb = skb_clone_sk(skb);
a729cff8 2121
bf7fa551 2122 if (ack_skb) {
a729cff8 2123 unsigned long flags;
9475af6e 2124 int id;
a729cff8
JB
2125
2126 spin_lock_irqsave(&local->ack_status_lock, flags);
bf7fa551 2127 id = idr_alloc(&local->ack_status_frames, ack_skb,
9475af6e 2128 1, 0x10000, GFP_ATOMIC);
a729cff8
JB
2129 spin_unlock_irqrestore(&local->ack_status_lock, flags);
2130
9475af6e 2131 if (id >= 0) {
a729cff8
JB
2132 info_id = id;
2133 info_flags |= IEEE80211_TX_CTL_REQ_TX_STATUS;
a729cff8 2134 } else {
bf7fa551 2135 kfree_skb(ack_skb);
a729cff8 2136 }
a729cff8
JB
2137 }
2138 }
2139
7e244707
HS
2140 /*
2141 * If the skb is shared we need to obtain our own copy.
2142 */
2143 if (skb_shared(skb)) {
a729cff8
JB
2144 struct sk_buff *tmp_skb = skb;
2145
2146 /* can't happen -- skb is a clone if info_id != 0 */
2147 WARN_ON(info_id);
2148
f8a0a781 2149 skb = skb_clone(skb, GFP_ATOMIC);
7e244707
HS
2150 kfree_skb(tmp_skb);
2151
4c9451ed
JB
2152 if (!skb) {
2153 ret = -ENOMEM;
2154 goto free;
2155 }
7e244707
HS
2156 }
2157
065e9605 2158 hdr.frame_control = fc;
e2ebc74d
JB
2159 hdr.duration_id = 0;
2160 hdr.seq_ctrl = 0;
2161
2162 skip_header_bytes = ETH_HLEN;
2163 if (ethertype == ETH_P_AARP || ethertype == ETH_P_IPX) {
2164 encaps_data = bridge_tunnel_header;
2165 encaps_len = sizeof(bridge_tunnel_header);
2166 skip_header_bytes -= 2;
e5c5d22e 2167 } else if (ethertype >= ETH_P_802_3_MIN) {
e2ebc74d
JB
2168 encaps_data = rfc1042_header;
2169 encaps_len = sizeof(rfc1042_header);
2170 skip_header_bytes -= 2;
2171 } else {
2172 encaps_data = NULL;
2173 encaps_len = 0;
2174 }
2175
7e244707
HS
2176 nh_pos = skb_network_header(skb) - skb->data;
2177 h_pos = skb_transport_header(skb) - skb->data;
2178
e2ebc74d
JB
2179 skb_pull(skb, skip_header_bytes);
2180 nh_pos -= skip_header_bytes;
2181 h_pos -= skip_header_bytes;
2182
23c0752a 2183 head_need = hdrlen + encaps_len + meshhdrlen - skb_headroom(skb);
e2ebc74d 2184
23c0752a
JB
2185 /*
2186 * So we need to modify the skb header and hence need a copy of
2187 * that. The head_need variable above doesn't, so far, include
2188 * the needed header space that we don't need right away. If we
2189 * can, then we don't reallocate right now but only after the
2190 * frame arrives at the master device (if it does...)
2191 *
2192 * If we cannot, however, then we will reallocate to include all
2193 * the ever needed space. Also, if we need to reallocate it anyway,
2194 * make it big enough for everything we may ever need.
2195 */
e2ebc74d 2196
3a5be7d4 2197 if (head_need > 0 || skb_cloned(skb)) {
2475b1cc 2198 head_need += sdata->encrypt_headroom;
23c0752a
JB
2199 head_need += local->tx_headroom;
2200 head_need = max_t(int, 0, head_need);
c3e7724b
FF
2201 if (ieee80211_skb_resize(sdata, skb, head_need, true)) {
2202 ieee80211_free_txskb(&local->hw, skb);
1c963bec 2203 skb = NULL;
4c9451ed 2204 return ERR_PTR(-ENOMEM);
c3e7724b 2205 }
e2ebc74d
JB
2206 }
2207
2208 if (encaps_data) {
2209 memcpy(skb_push(skb, encaps_len), encaps_data, encaps_len);
2210 nh_pos += encaps_len;
2211 h_pos += encaps_len;
2212 }
c29b9b9b 2213
e4ab7eb0 2214#ifdef CONFIG_MAC80211_MESH
33b64eb2
LCC
2215 if (meshhdrlen > 0) {
2216 memcpy(skb_push(skb, meshhdrlen), &mesh_hdr, meshhdrlen);
2217 nh_pos += meshhdrlen;
2218 h_pos += meshhdrlen;
2219 }
e4ab7eb0 2220#endif
33b64eb2 2221
065e9605 2222 if (ieee80211_is_data_qos(fc)) {
c29b9b9b
JB
2223 __le16 *qos_control;
2224
f359d3fe 2225 qos_control = (__le16 *) skb_push(skb, 2);
c29b9b9b
JB
2226 memcpy(skb_push(skb, hdrlen - 2), &hdr, hdrlen - 2);
2227 /*
2228 * Maybe we could actually set some fields here, for now just
2229 * initialise to zero to indicate no special operation.
2230 */
2231 *qos_control = 0;
2232 } else
2233 memcpy(skb_push(skb, hdrlen), &hdr, hdrlen);
2234
e2ebc74d
JB
2235 nh_pos += hdrlen;
2236 h_pos += hdrlen;
2237
e2ebc74d
JB
2238 /* Update skb pointers to various headers since this modified frame
2239 * is going to go through Linux networking code that may potentially
2240 * need things like pointer to IP header. */
2241 skb_set_mac_header(skb, 0);
2242 skb_set_network_header(skb, nh_pos);
2243 skb_set_transport_header(skb, h_pos);
2244
489ee919 2245 info = IEEE80211_SKB_CB(skb);
3b8d81e0
JB
2246 memset(info, 0, sizeof(*info));
2247
a729cff8
JB
2248 info->flags = info_flags;
2249 info->ack_frame_id = info_id;
73c4e195 2250 info->band = band;
a729cff8 2251
4c9451ed
JB
2252 return skb;
2253 free:
2254 kfree_skb(skb);
2255 return ERR_PTR(ret);
2256}
2257
2258void __ieee80211_subif_start_xmit(struct sk_buff *skb,
2259 struct net_device *dev,
2260 u32 info_flags)
2261{
2262 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2263 struct ieee80211_local *local = sdata->local;
2264
2265 if (unlikely(skb->len < ETH_HLEN)) {
2266 kfree_skb(skb);
2267 return;
2268 }
2269
2270 rcu_read_lock();
e2ebc74d 2271
4c9451ed
JB
2272 /* Measure frame arrival for Tx latency statistics calculation */
2273 ieee80211_tx_latency_start_msrmnt(local, skb);
2274
2275 skb = ieee80211_build_hdr(sdata, skb, info_flags);
2276 if (IS_ERR(skb))
2277 goto out;
2278
2279 dev->stats.tx_packets++;
2280 dev->stats.tx_bytes += skb->len;
2281 dev->trans_start = jiffies;
e2ebc74d 2282
4c9451ed
JB
2283 ieee80211_xmit(sdata, skb);
2284 out:
55de908a 2285 rcu_read_unlock();
e2ebc74d
JB
2286}
2287
4c9451ed
JB
2288/**
2289 * ieee80211_subif_start_xmit - netif start_xmit function for 802.3 vifs
2290 * @skb: packet to be sent
2291 * @dev: incoming interface
2292 *
2293 * On failure skb will be freed.
2294 */
24d342c5
LK
2295netdev_tx_t ieee80211_subif_start_xmit(struct sk_buff *skb,
2296 struct net_device *dev)
2297{
2298 __ieee80211_subif_start_xmit(skb, dev, 0);
2299 return NETDEV_TX_OK;
2300}
e2ebc74d 2301
7528ec57
JB
2302struct sk_buff *
2303ieee80211_build_data_template(struct ieee80211_sub_if_data *sdata,
2304 struct sk_buff *skb, u32 info_flags)
2305{
2306 struct ieee80211_hdr *hdr;
2307 struct ieee80211_tx_data tx = {
2308 .local = sdata->local,
2309 .sdata = sdata,
2310 };
2311
2312 rcu_read_lock();
2313
2314 skb = ieee80211_build_hdr(sdata, skb, info_flags);
2315 if (IS_ERR(skb))
2316 goto out;
2317
2318 hdr = (void *)skb->data;
2319 tx.sta = sta_info_get(sdata, hdr->addr1);
2320 tx.skb = skb;
2321
2322 if (ieee80211_tx_h_select_key(&tx) != TX_CONTINUE) {
2323 rcu_read_unlock();
2324 kfree_skb(skb);
2325 return ERR_PTR(-EINVAL);
2326 }
2327
2328out:
2329 rcu_read_unlock();
2330 return skb;
2331}
2332
e2530083
JB
2333/*
2334 * ieee80211_clear_tx_pending may not be called in a context where
2335 * it is possible that it packets could come in again.
2336 */
e2ebc74d
JB
2337void ieee80211_clear_tx_pending(struct ieee80211_local *local)
2338{
1f98ab7f 2339 struct sk_buff *skb;
2de8e0d9 2340 int i;
e2ebc74d 2341
1f98ab7f
FF
2342 for (i = 0; i < local->hw.queues; i++) {
2343 while ((skb = skb_dequeue(&local->pending[i])) != NULL)
2344 ieee80211_free_txskb(&local->hw, skb);
2345 }
e2ebc74d
JB
2346}
2347
7bb45683
JB
2348/*
2349 * Returns false if the frame couldn't be transmitted but was queued instead,
2350 * which in this case means re-queued -- take as an indication to stop sending
2351 * more pending frames.
2352 */
cd8ffc80
JB
2353static bool ieee80211_tx_pending_skb(struct ieee80211_local *local,
2354 struct sk_buff *skb)
2355{
2356 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
2357 struct ieee80211_sub_if_data *sdata;
2358 struct sta_info *sta;
2359 struct ieee80211_hdr *hdr;
7bb45683 2360 bool result;
55de908a 2361 struct ieee80211_chanctx_conf *chanctx_conf;
cd8ffc80 2362
5061b0c2 2363 sdata = vif_to_sdata(info->control.vif);
cd8ffc80
JB
2364
2365 if (info->flags & IEEE80211_TX_INTFL_NEED_TXPROCESSING) {
55de908a
JB
2366 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
2367 if (unlikely(!chanctx_conf)) {
2368 dev_kfree_skb(skb);
2369 return true;
2370 }
73c4e195
JB
2371 info->band = chanctx_conf->def.chan->band;
2372 result = ieee80211_tx(sdata, skb, true);
cd8ffc80 2373 } else {
252b86c4
JB
2374 struct sk_buff_head skbs;
2375
2376 __skb_queue_head_init(&skbs);
2377 __skb_queue_tail(&skbs, skb);
2378
cd8ffc80 2379 hdr = (struct ieee80211_hdr *)skb->data;
abe60632 2380 sta = sta_info_get(sdata, hdr->addr1);
cd8ffc80 2381
74e4dbfd 2382 result = __ieee80211_tx(local, &skbs, skb->len, sta, true);
cd8ffc80
JB
2383 }
2384
cd8ffc80
JB
2385 return result;
2386}
2387
e2530083 2388/*
3b8d81e0 2389 * Transmit all pending packets. Called from tasklet.
e2530083 2390 */
e2ebc74d
JB
2391void ieee80211_tx_pending(unsigned long data)
2392{
2393 struct ieee80211_local *local = (struct ieee80211_local *)data;
2a577d98 2394 unsigned long flags;
cd8ffc80 2395 int i;
3b8d81e0 2396 bool txok;
e2ebc74d 2397
f0e72851 2398 rcu_read_lock();
e2530083 2399
3b8d81e0 2400 spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
2a577d98
JB
2401 for (i = 0; i < local->hw.queues; i++) {
2402 /*
2403 * If queue is stopped by something other than due to pending
2404 * frames, or we have no pending frames, proceed to next queue.
2405 */
3b8d81e0 2406 if (local->queue_stop_reasons[i] ||
2a577d98 2407 skb_queue_empty(&local->pending[i]))
e2ebc74d 2408 continue;
e2530083 2409
2a577d98 2410 while (!skb_queue_empty(&local->pending[i])) {
3b8d81e0 2411 struct sk_buff *skb = __skb_dequeue(&local->pending[i]);
5061b0c2 2412 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
5061b0c2 2413
a7bc376c 2414 if (WARN_ON(!info->control.vif)) {
c3e7724b 2415 ieee80211_free_txskb(&local->hw, skb);
a7bc376c
JB
2416 continue;
2417 }
2418
3b8d81e0
JB
2419 spin_unlock_irqrestore(&local->queue_stop_reason_lock,
2420 flags);
2421
2422 txok = ieee80211_tx_pending_skb(local, skb);
3b8d81e0
JB
2423 spin_lock_irqsave(&local->queue_stop_reason_lock,
2424 flags);
2425 if (!txok)
2a577d98 2426 break;
e2ebc74d 2427 }
7236fe29
JB
2428
2429 if (skb_queue_empty(&local->pending[i]))
3a25a8c8 2430 ieee80211_propagate_queue_wake(local, i);
e2ebc74d 2431 }
3b8d81e0 2432 spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
2a577d98 2433
f0e72851 2434 rcu_read_unlock();
e2ebc74d
JB
2435}
2436
2437/* functions for drivers to get certain frames */
2438
eac70c13 2439static void __ieee80211_beacon_add_tim(struct ieee80211_sub_if_data *sdata,
6ec8c332
AO
2440 struct ps_data *ps, struct sk_buff *skb,
2441 bool is_template)
e2ebc74d
JB
2442{
2443 u8 *pos, *tim;
2444 int aid0 = 0;
2445 int i, have_bits = 0, n1, n2;
2446
2447 /* Generate bitmap for TIM only if there are any STAs in power save
2448 * mode. */
d012a605 2449 if (atomic_read(&ps->num_sta_ps) > 0)
e2ebc74d
JB
2450 /* in the hope that this is faster than
2451 * checking byte-for-byte */
f359d3fe 2452 have_bits = !bitmap_empty((unsigned long *)ps->tim,
e2ebc74d 2453 IEEE80211_MAX_AID+1);
6ec8c332
AO
2454 if (!is_template) {
2455 if (ps->dtim_count == 0)
2456 ps->dtim_count = sdata->vif.bss_conf.dtim_period - 1;
2457 else
2458 ps->dtim_count--;
2459 }
e2ebc74d
JB
2460
2461 tim = pos = (u8 *) skb_put(skb, 6);
2462 *pos++ = WLAN_EID_TIM;
2463 *pos++ = 4;
d012a605 2464 *pos++ = ps->dtim_count;
8860020e 2465 *pos++ = sdata->vif.bss_conf.dtim_period;
e2ebc74d 2466
d012a605 2467 if (ps->dtim_count == 0 && !skb_queue_empty(&ps->bc_buf))
e2ebc74d
JB
2468 aid0 = 1;
2469
d012a605 2470 ps->dtim_bc_mc = aid0 == 1;
512119b3 2471
e2ebc74d
JB
2472 if (have_bits) {
2473 /* Find largest even number N1 so that bits numbered 1 through
2474 * (N1 x 8) - 1 in the bitmap are 0 and number N2 so that bits
2475 * (N2 + 1) x 8 through 2007 are 0. */
2476 n1 = 0;
2477 for (i = 0; i < IEEE80211_MAX_TIM_LEN; i++) {
d012a605 2478 if (ps->tim[i]) {
e2ebc74d
JB
2479 n1 = i & 0xfe;
2480 break;
2481 }
2482 }
2483 n2 = n1;
2484 for (i = IEEE80211_MAX_TIM_LEN - 1; i >= n1; i--) {
d012a605 2485 if (ps->tim[i]) {
e2ebc74d
JB
2486 n2 = i;
2487 break;
2488 }
2489 }
2490
2491 /* Bitmap control */
2492 *pos++ = n1 | aid0;
2493 /* Part Virt Bitmap */
5220da39 2494 skb_put(skb, n2 - n1);
d012a605 2495 memcpy(pos, ps->tim + n1, n2 - n1 + 1);
e2ebc74d
JB
2496
2497 tim[1] = n2 - n1 + 4;
e2ebc74d
JB
2498 } else {
2499 *pos++ = aid0; /* Bitmap control */
2500 *pos++ = 0; /* Part Virt Bitmap */
2501 }
e2ebc74d
JB
2502}
2503
eac70c13 2504static int ieee80211_beacon_add_tim(struct ieee80211_sub_if_data *sdata,
6ec8c332
AO
2505 struct ps_data *ps, struct sk_buff *skb,
2506 bool is_template)
eac70c13
MP
2507{
2508 struct ieee80211_local *local = sdata->local;
2509
2510 /*
2511 * Not very nice, but we want to allow the driver to call
2512 * ieee80211_beacon_get() as a response to the set_tim()
2513 * callback. That, however, is already invoked under the
2514 * sta_lock to guarantee consistent and race-free update
2515 * of the tim bitmap in mac80211 and the driver.
2516 */
2517 if (local->tim_in_locked_section) {
6ec8c332 2518 __ieee80211_beacon_add_tim(sdata, ps, skb, is_template);
eac70c13 2519 } else {
1b91731d 2520 spin_lock_bh(&local->tim_lock);
6ec8c332 2521 __ieee80211_beacon_add_tim(sdata, ps, skb, is_template);
1b91731d 2522 spin_unlock_bh(&local->tim_lock);
eac70c13
MP
2523 }
2524
2525 return 0;
2526}
2527
1af586c9
AO
2528static void ieee80211_set_csa(struct ieee80211_sub_if_data *sdata,
2529 struct beacon_data *beacon)
73da7d5b
SW
2530{
2531 struct probe_resp *resp;
cd7760e6
SW
2532 u8 *beacon_data;
2533 size_t beacon_data_len;
0d06d9ba 2534 int i;
af296bdb 2535 u8 count = beacon->csa_current_counter;
cd7760e6
SW
2536
2537 switch (sdata->vif.type) {
2538 case NL80211_IFTYPE_AP:
2539 beacon_data = beacon->tail;
2540 beacon_data_len = beacon->tail_len;
2541 break;
2542 case NL80211_IFTYPE_ADHOC:
2543 beacon_data = beacon->head;
2544 beacon_data_len = beacon->head_len;
2545 break;
b8456a14
CYY
2546 case NL80211_IFTYPE_MESH_POINT:
2547 beacon_data = beacon->head;
2548 beacon_data_len = beacon->head_len;
2549 break;
cd7760e6
SW
2550 default:
2551 return;
2552 }
73da7d5b 2553
af296bdb 2554 rcu_read_lock();
0d06d9ba 2555 for (i = 0; i < IEEE80211_MAX_CSA_COUNTERS_NUM; ++i) {
af296bdb 2556 resp = rcu_dereference(sdata->u.ap.probe_resp);
0d06d9ba 2557
af296bdb
MK
2558 if (beacon->csa_counter_offsets[i]) {
2559 if (WARN_ON_ONCE(beacon->csa_counter_offsets[i] >=
2560 beacon_data_len)) {
0d06d9ba
AO
2561 rcu_read_unlock();
2562 return;
2563 }
af296bdb
MK
2564
2565 beacon_data[beacon->csa_counter_offsets[i]] = count;
73da7d5b 2566 }
af296bdb
MK
2567
2568 if (sdata->vif.type == NL80211_IFTYPE_AP && resp)
2569 resp->data[resp->csa_counter_offsets[i]] = count;
73da7d5b 2570 }
af296bdb 2571 rcu_read_unlock();
1af586c9
AO
2572}
2573
2574u8 ieee80211_csa_update_counter(struct ieee80211_vif *vif)
2575{
2576 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
af296bdb
MK
2577 struct beacon_data *beacon = NULL;
2578 u8 count = 0;
0d06d9ba 2579
af296bdb
MK
2580 rcu_read_lock();
2581
2582 if (sdata->vif.type == NL80211_IFTYPE_AP)
2583 beacon = rcu_dereference(sdata->u.ap.beacon);
2584 else if (sdata->vif.type == NL80211_IFTYPE_ADHOC)
2585 beacon = rcu_dereference(sdata->u.ibss.presp);
2586 else if (ieee80211_vif_is_mesh(&sdata->vif))
2587 beacon = rcu_dereference(sdata->u.mesh.beacon);
2588
2589 if (!beacon)
2590 goto unlock;
2591
2592 beacon->csa_current_counter--;
1af586c9
AO
2593
2594 /* the counter should never reach 0 */
af296bdb
MK
2595 WARN_ON_ONCE(!beacon->csa_current_counter);
2596 count = beacon->csa_current_counter;
1af586c9 2597
af296bdb
MK
2598unlock:
2599 rcu_read_unlock();
2600 return count;
73da7d5b 2601}
1af586c9 2602EXPORT_SYMBOL(ieee80211_csa_update_counter);
73da7d5b
SW
2603
2604bool ieee80211_csa_is_complete(struct ieee80211_vif *vif)
2605{
2606 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
2607 struct beacon_data *beacon = NULL;
2608 u8 *beacon_data;
2609 size_t beacon_data_len;
73da7d5b
SW
2610 int ret = false;
2611
2612 if (!ieee80211_sdata_running(sdata))
2613 return false;
2614
2615 rcu_read_lock();
2616 if (vif->type == NL80211_IFTYPE_AP) {
2617 struct ieee80211_if_ap *ap = &sdata->u.ap;
2618
2619 beacon = rcu_dereference(ap->beacon);
2620 if (WARN_ON(!beacon || !beacon->tail))
2621 goto out;
2622 beacon_data = beacon->tail;
2623 beacon_data_len = beacon->tail_len;
cd7760e6
SW
2624 } else if (vif->type == NL80211_IFTYPE_ADHOC) {
2625 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
2626
2627 beacon = rcu_dereference(ifibss->presp);
2628 if (!beacon)
2629 goto out;
2630
b8456a14
CYY
2631 beacon_data = beacon->head;
2632 beacon_data_len = beacon->head_len;
2633 } else if (vif->type == NL80211_IFTYPE_MESH_POINT) {
2634 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
2635
2636 beacon = rcu_dereference(ifmsh->beacon);
2637 if (!beacon)
2638 goto out;
2639
cd7760e6
SW
2640 beacon_data = beacon->head;
2641 beacon_data_len = beacon->head_len;
73da7d5b
SW
2642 } else {
2643 WARN_ON(1);
2644 goto out;
2645 }
2646
10d78f27
MK
2647 if (!beacon->csa_counter_offsets[0])
2648 goto out;
2649
af296bdb 2650 if (WARN_ON_ONCE(beacon->csa_counter_offsets[0] > beacon_data_len))
73da7d5b
SW
2651 goto out;
2652
af296bdb 2653 if (beacon_data[beacon->csa_counter_offsets[0]] == 1)
73da7d5b
SW
2654 ret = true;
2655 out:
2656 rcu_read_unlock();
2657
2658 return ret;
2659}
2660EXPORT_SYMBOL(ieee80211_csa_is_complete);
2661
6ec8c332
AO
2662static struct sk_buff *
2663__ieee80211_beacon_get(struct ieee80211_hw *hw,
2664 struct ieee80211_vif *vif,
2665 struct ieee80211_mutable_offsets *offs,
2666 bool is_template)
e2ebc74d
JB
2667{
2668 struct ieee80211_local *local = hw_to_local(hw);
af296bdb 2669 struct beacon_data *beacon = NULL;
9d139c81 2670 struct sk_buff *skb = NULL;
e039fa4a 2671 struct ieee80211_tx_info *info;
e2ebc74d 2672 struct ieee80211_sub_if_data *sdata = NULL;
55de908a 2673 enum ieee80211_band band;
e00cfce0 2674 struct ieee80211_tx_rate_control txrc;
55de908a 2675 struct ieee80211_chanctx_conf *chanctx_conf;
1af586c9 2676 int csa_off_base = 0;
8318d78a 2677
5dfdaf58 2678 rcu_read_lock();
e2ebc74d 2679
32bfd35d 2680 sdata = vif_to_sdata(vif);
55de908a 2681 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
e2ebc74d 2682
55de908a 2683 if (!ieee80211_sdata_running(sdata) || !chanctx_conf)
eb3e554b
FF
2684 goto out;
2685
6ec8c332
AO
2686 if (offs)
2687 memset(offs, 0, sizeof(*offs));
eddcbb94 2688
05c914fe 2689 if (sdata->vif.type == NL80211_IFTYPE_AP) {
d012a605 2690 struct ieee80211_if_ap *ap = &sdata->u.ap;
d012a605 2691
af296bdb 2692 beacon = rcu_dereference(ap->beacon);
3ad97fbc 2693 if (beacon) {
10d78f27 2694 if (beacon->csa_counter_offsets[0]) {
1af586c9
AO
2695 if (!is_template)
2696 ieee80211_csa_update_counter(vif);
2697
2698 ieee80211_set_csa(sdata, beacon);
2699 }
73da7d5b 2700
902acc78
JB
2701 /*
2702 * headroom, head length,
2703 * tail length and maximum TIM length
2704 */
2705 skb = dev_alloc_skb(local->tx_headroom +
2706 beacon->head_len +
70dabeb7
FF
2707 beacon->tail_len + 256 +
2708 local->hw.extra_beacon_tailroom);
902acc78
JB
2709 if (!skb)
2710 goto out;
33b64eb2 2711
902acc78
JB
2712 skb_reserve(skb, local->tx_headroom);
2713 memcpy(skb_put(skb, beacon->head_len), beacon->head,
2714 beacon->head_len);
33b64eb2 2715
6ec8c332
AO
2716 ieee80211_beacon_add_tim(sdata, &ap->ps, skb,
2717 is_template);
33b64eb2 2718
6ec8c332
AO
2719 if (offs) {
2720 offs->tim_offset = beacon->head_len;
2721 offs->tim_length = skb->len - beacon->head_len;
1af586c9
AO
2722
2723 /* for AP the csa offsets are from tail */
2724 csa_off_base = skb->len;
6ec8c332 2725 }
eddcbb94 2726
902acc78
JB
2727 if (beacon->tail)
2728 memcpy(skb_put(skb, beacon->tail_len),
2729 beacon->tail, beacon->tail_len);
9d139c81
JB
2730 } else
2731 goto out;
05c914fe 2732 } else if (sdata->vif.type == NL80211_IFTYPE_ADHOC) {
46900298 2733 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
9d139c81 2734 struct ieee80211_hdr *hdr;
33b64eb2 2735
af296bdb
MK
2736 beacon = rcu_dereference(ifibss->presp);
2737 if (!beacon)
9d139c81
JB
2738 goto out;
2739
10d78f27 2740 if (beacon->csa_counter_offsets[0]) {
1af586c9
AO
2741 if (!is_template)
2742 ieee80211_csa_update_counter(vif);
cd7760e6 2743
af296bdb 2744 ieee80211_set_csa(sdata, beacon);
1af586c9 2745 }
cd7760e6 2746
af296bdb 2747 skb = dev_alloc_skb(local->tx_headroom + beacon->head_len +
70dabeb7 2748 local->hw.extra_beacon_tailroom);
9d139c81
JB
2749 if (!skb)
2750 goto out;
c3ffeab4 2751 skb_reserve(skb, local->tx_headroom);
af296bdb
MK
2752 memcpy(skb_put(skb, beacon->head_len), beacon->head,
2753 beacon->head_len);
9d139c81
JB
2754
2755 hdr = (struct ieee80211_hdr *) skb->data;
e7827a70
HH
2756 hdr->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
2757 IEEE80211_STYPE_BEACON);
902acc78 2758 } else if (ieee80211_vif_is_mesh(&sdata->vif)) {
dbf498fb 2759 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
472dbc45 2760
af296bdb
MK
2761 beacon = rcu_dereference(ifmsh->beacon);
2762 if (!beacon)
ac1bd846 2763 goto out;
ac1bd846 2764
10d78f27 2765 if (beacon->csa_counter_offsets[0]) {
1af586c9
AO
2766 if (!is_template)
2767 /* TODO: For mesh csa_counter is in TU, so
2768 * decrementing it by one isn't correct, but
2769 * for now we leave it consistent with overall
2770 * mac80211's behavior.
2771 */
2772 ieee80211_csa_update_counter(vif);
2773
af296bdb 2774 ieee80211_set_csa(sdata, beacon);
1af586c9 2775 }
b8456a14 2776
dbf498fb 2777 if (ifmsh->sync_ops)
af296bdb 2778 ifmsh->sync_ops->adjust_tbtt(sdata, beacon);
dbf498fb 2779
3b69a9c5 2780 skb = dev_alloc_skb(local->tx_headroom +
af296bdb 2781 beacon->head_len +
3f52b7e3 2782 256 + /* TIM IE */
af296bdb 2783 beacon->tail_len +
70dabeb7 2784 local->hw.extra_beacon_tailroom);
902acc78
JB
2785 if (!skb)
2786 goto out;
2b5e1967 2787 skb_reserve(skb, local->tx_headroom);
af296bdb
MK
2788 memcpy(skb_put(skb, beacon->head_len), beacon->head,
2789 beacon->head_len);
6ec8c332
AO
2790 ieee80211_beacon_add_tim(sdata, &ifmsh->ps, skb, is_template);
2791
2792 if (offs) {
af296bdb
MK
2793 offs->tim_offset = beacon->head_len;
2794 offs->tim_length = skb->len - beacon->head_len;
6ec8c332
AO
2795 }
2796
af296bdb
MK
2797 memcpy(skb_put(skb, beacon->tail_len), beacon->tail,
2798 beacon->tail_len);
9d139c81
JB
2799 } else {
2800 WARN_ON(1);
5dfdaf58 2801 goto out;
e2ebc74d
JB
2802 }
2803
1af586c9 2804 /* CSA offsets */
af296bdb 2805 if (offs && beacon) {
1af586c9
AO
2806 int i;
2807
2808 for (i = 0; i < IEEE80211_MAX_CSA_COUNTERS_NUM; i++) {
af296bdb 2809 u16 csa_off = beacon->csa_counter_offsets[i];
1af586c9
AO
2810
2811 if (!csa_off)
2812 continue;
2813
2814 offs->csa_counter_offs[i] = csa_off_base + csa_off;
2815 }
2816 }
2817
4bf88530 2818 band = chanctx_conf->def.chan->band;
55de908a 2819
e039fa4a
JB
2820 info = IEEE80211_SKB_CB(skb);
2821
3b8d81e0 2822 info->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
e00cfce0 2823 info->flags |= IEEE80211_TX_CTL_NO_ACK;
e039fa4a 2824 info->band = band;
e00cfce0
JM
2825
2826 memset(&txrc, 0, sizeof(txrc));
2827 txrc.hw = hw;
e31583cd 2828 txrc.sband = local->hw.wiphy->bands[band];
e00cfce0
JM
2829 txrc.bss_conf = &sdata->vif.bss_conf;
2830 txrc.skb = skb;
2831 txrc.reported_rate.idx = -1;
37eb0b16 2832 txrc.rate_idx_mask = sdata->rc_rateidx_mask[band];
e31583cd 2833 if (txrc.rate_idx_mask == (1 << txrc.sband->n_bitrates) - 1)
37eb0b16
JM
2834 txrc.max_rate_idx = -1;
2835 else
2836 txrc.max_rate_idx = fls(txrc.rate_idx_mask) - 1;
8f0729b1 2837 txrc.bss = true;
e00cfce0 2838 rate_control_get_rate(sdata, NULL, &txrc);
e039fa4a
JB
2839
2840 info->control.vif = vif;
f591fa5d 2841
a472e71b
JL
2842 info->flags |= IEEE80211_TX_CTL_CLEAR_PS_FILT |
2843 IEEE80211_TX_CTL_ASSIGN_SEQ |
2844 IEEE80211_TX_CTL_FIRST_FRAGMENT;
e6a9854b 2845 out:
5dfdaf58 2846 rcu_read_unlock();
e2ebc74d 2847 return skb;
6ec8c332
AO
2848
2849}
2850
2851struct sk_buff *
2852ieee80211_beacon_get_template(struct ieee80211_hw *hw,
2853 struct ieee80211_vif *vif,
2854 struct ieee80211_mutable_offsets *offs)
2855{
2856 return __ieee80211_beacon_get(hw, vif, offs, true);
2857}
2858EXPORT_SYMBOL(ieee80211_beacon_get_template);
2859
2860struct sk_buff *ieee80211_beacon_get_tim(struct ieee80211_hw *hw,
2861 struct ieee80211_vif *vif,
2862 u16 *tim_offset, u16 *tim_length)
2863{
2864 struct ieee80211_mutable_offsets offs = {};
2865 struct sk_buff *bcn = __ieee80211_beacon_get(hw, vif, &offs, false);
2866
2867 if (tim_offset)
2868 *tim_offset = offs.tim_offset;
2869
2870 if (tim_length)
2871 *tim_length = offs.tim_length;
2872
2873 return bcn;
e2ebc74d 2874}
eddcbb94 2875EXPORT_SYMBOL(ieee80211_beacon_get_tim);
e2ebc74d 2876
02945821
AN
2877struct sk_buff *ieee80211_proberesp_get(struct ieee80211_hw *hw,
2878 struct ieee80211_vif *vif)
2879{
2880 struct ieee80211_if_ap *ap = NULL;
aa7a0080
ES
2881 struct sk_buff *skb = NULL;
2882 struct probe_resp *presp = NULL;
02945821
AN
2883 struct ieee80211_hdr *hdr;
2884 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
2885
2886 if (sdata->vif.type != NL80211_IFTYPE_AP)
2887 return NULL;
2888
2889 rcu_read_lock();
2890
2891 ap = &sdata->u.ap;
2892 presp = rcu_dereference(ap->probe_resp);
2893 if (!presp)
2894 goto out;
2895
aa7a0080 2896 skb = dev_alloc_skb(presp->len);
02945821
AN
2897 if (!skb)
2898 goto out;
2899
aa7a0080
ES
2900 memcpy(skb_put(skb, presp->len), presp->data, presp->len);
2901
02945821
AN
2902 hdr = (struct ieee80211_hdr *) skb->data;
2903 memset(hdr->addr1, 0, sizeof(hdr->addr1));
2904
2905out:
2906 rcu_read_unlock();
2907 return skb;
2908}
2909EXPORT_SYMBOL(ieee80211_proberesp_get);
2910
7044cc56
KV
2911struct sk_buff *ieee80211_pspoll_get(struct ieee80211_hw *hw,
2912 struct ieee80211_vif *vif)
2913{
2914 struct ieee80211_sub_if_data *sdata;
2915 struct ieee80211_if_managed *ifmgd;
2916 struct ieee80211_pspoll *pspoll;
2917 struct ieee80211_local *local;
2918 struct sk_buff *skb;
2919
2920 if (WARN_ON(vif->type != NL80211_IFTYPE_STATION))
2921 return NULL;
2922
2923 sdata = vif_to_sdata(vif);
2924 ifmgd = &sdata->u.mgd;
2925 local = sdata->local;
2926
2927 skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*pspoll));
d15b8459 2928 if (!skb)
7044cc56 2929 return NULL;
d15b8459 2930
7044cc56
KV
2931 skb_reserve(skb, local->hw.extra_tx_headroom);
2932
2933 pspoll = (struct ieee80211_pspoll *) skb_put(skb, sizeof(*pspoll));
2934 memset(pspoll, 0, sizeof(*pspoll));
2935 pspoll->frame_control = cpu_to_le16(IEEE80211_FTYPE_CTL |
2936 IEEE80211_STYPE_PSPOLL);
2937 pspoll->aid = cpu_to_le16(ifmgd->aid);
2938
2939 /* aid in PS-Poll has its two MSBs each set to 1 */
2940 pspoll->aid |= cpu_to_le16(1 << 15 | 1 << 14);
2941
2942 memcpy(pspoll->bssid, ifmgd->bssid, ETH_ALEN);
2943 memcpy(pspoll->ta, vif->addr, ETH_ALEN);
2944
2945 return skb;
2946}
2947EXPORT_SYMBOL(ieee80211_pspoll_get);
2948
2949struct sk_buff *ieee80211_nullfunc_get(struct ieee80211_hw *hw,
2950 struct ieee80211_vif *vif)
2951{
2952 struct ieee80211_hdr_3addr *nullfunc;
2953 struct ieee80211_sub_if_data *sdata;
2954 struct ieee80211_if_managed *ifmgd;
2955 struct ieee80211_local *local;
2956 struct sk_buff *skb;
2957
2958 if (WARN_ON(vif->type != NL80211_IFTYPE_STATION))
2959 return NULL;
2960
2961 sdata = vif_to_sdata(vif);
2962 ifmgd = &sdata->u.mgd;
2963 local = sdata->local;
2964
2965 skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*nullfunc));
d15b8459 2966 if (!skb)
7044cc56 2967 return NULL;
d15b8459 2968
7044cc56
KV
2969 skb_reserve(skb, local->hw.extra_tx_headroom);
2970
2971 nullfunc = (struct ieee80211_hdr_3addr *) skb_put(skb,
2972 sizeof(*nullfunc));
2973 memset(nullfunc, 0, sizeof(*nullfunc));
2974 nullfunc->frame_control = cpu_to_le16(IEEE80211_FTYPE_DATA |
2975 IEEE80211_STYPE_NULLFUNC |
2976 IEEE80211_FCTL_TODS);
2977 memcpy(nullfunc->addr1, ifmgd->bssid, ETH_ALEN);
2978 memcpy(nullfunc->addr2, vif->addr, ETH_ALEN);
2979 memcpy(nullfunc->addr3, ifmgd->bssid, ETH_ALEN);
2980
2981 return skb;
2982}
2983EXPORT_SYMBOL(ieee80211_nullfunc_get);
2984
05e54ea6 2985struct sk_buff *ieee80211_probereq_get(struct ieee80211_hw *hw,
a344d677 2986 const u8 *src_addr,
05e54ea6 2987 const u8 *ssid, size_t ssid_len,
b9a9ada1 2988 size_t tailroom)
05e54ea6 2989{
a344d677 2990 struct ieee80211_local *local = hw_to_local(hw);
05e54ea6
KV
2991 struct ieee80211_hdr_3addr *hdr;
2992 struct sk_buff *skb;
2993 size_t ie_ssid_len;
2994 u8 *pos;
2995
05e54ea6
KV
2996 ie_ssid_len = 2 + ssid_len;
2997
2998 skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*hdr) +
b9a9ada1 2999 ie_ssid_len + tailroom);
d15b8459 3000 if (!skb)
05e54ea6 3001 return NULL;
05e54ea6
KV
3002
3003 skb_reserve(skb, local->hw.extra_tx_headroom);
3004
3005 hdr = (struct ieee80211_hdr_3addr *) skb_put(skb, sizeof(*hdr));
3006 memset(hdr, 0, sizeof(*hdr));
3007 hdr->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
3008 IEEE80211_STYPE_PROBE_REQ);
e83e6541 3009 eth_broadcast_addr(hdr->addr1);
a344d677 3010 memcpy(hdr->addr2, src_addr, ETH_ALEN);
e83e6541 3011 eth_broadcast_addr(hdr->addr3);
05e54ea6
KV
3012
3013 pos = skb_put(skb, ie_ssid_len);
3014 *pos++ = WLAN_EID_SSID;
3015 *pos++ = ssid_len;
88c868c4 3016 if (ssid_len)
05e54ea6
KV
3017 memcpy(pos, ssid, ssid_len);
3018 pos += ssid_len;
3019
05e54ea6
KV
3020 return skb;
3021}
3022EXPORT_SYMBOL(ieee80211_probereq_get);
3023
32bfd35d 3024void ieee80211_rts_get(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
e2ebc74d 3025 const void *frame, size_t frame_len,
e039fa4a 3026 const struct ieee80211_tx_info *frame_txctl,
e2ebc74d
JB
3027 struct ieee80211_rts *rts)
3028{
3029 const struct ieee80211_hdr *hdr = frame;
e2ebc74d 3030
065e9605
HH
3031 rts->frame_control =
3032 cpu_to_le16(IEEE80211_FTYPE_CTL | IEEE80211_STYPE_RTS);
32bfd35d
JB
3033 rts->duration = ieee80211_rts_duration(hw, vif, frame_len,
3034 frame_txctl);
e2ebc74d
JB
3035 memcpy(rts->ra, hdr->addr1, sizeof(rts->ra));
3036 memcpy(rts->ta, hdr->addr2, sizeof(rts->ta));
3037}
3038EXPORT_SYMBOL(ieee80211_rts_get);
3039
32bfd35d 3040void ieee80211_ctstoself_get(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
e2ebc74d 3041 const void *frame, size_t frame_len,
e039fa4a 3042 const struct ieee80211_tx_info *frame_txctl,
e2ebc74d
JB
3043 struct ieee80211_cts *cts)
3044{
3045 const struct ieee80211_hdr *hdr = frame;
e2ebc74d 3046
065e9605
HH
3047 cts->frame_control =
3048 cpu_to_le16(IEEE80211_FTYPE_CTL | IEEE80211_STYPE_CTS);
32bfd35d
JB
3049 cts->duration = ieee80211_ctstoself_duration(hw, vif,
3050 frame_len, frame_txctl);
e2ebc74d
JB
3051 memcpy(cts->ra, hdr->addr1, sizeof(cts->ra));
3052}
3053EXPORT_SYMBOL(ieee80211_ctstoself_get);
3054
3055struct sk_buff *
32bfd35d 3056ieee80211_get_buffered_bc(struct ieee80211_hw *hw,
e039fa4a 3057 struct ieee80211_vif *vif)
e2ebc74d
JB
3058{
3059 struct ieee80211_local *local = hw_to_local(hw);
747cf5e9 3060 struct sk_buff *skb = NULL;
5cf121c3 3061 struct ieee80211_tx_data tx;
e2ebc74d 3062 struct ieee80211_sub_if_data *sdata;
d012a605 3063 struct ps_data *ps;
e039fa4a 3064 struct ieee80211_tx_info *info;
55de908a 3065 struct ieee80211_chanctx_conf *chanctx_conf;
e2ebc74d 3066
32bfd35d 3067 sdata = vif_to_sdata(vif);
5dfdaf58 3068
5dfdaf58 3069 rcu_read_lock();
55de908a 3070 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
5dfdaf58 3071
d012a605
MP
3072 if (!chanctx_conf)
3073 goto out;
3074
3075 if (sdata->vif.type == NL80211_IFTYPE_AP) {
3076 struct beacon_data *beacon =
3077 rcu_dereference(sdata->u.ap.beacon);
3078
3079 if (!beacon || !beacon->head)
3080 goto out;
3081
3082 ps = &sdata->u.ap.ps;
3f52b7e3
MP
3083 } else if (ieee80211_vif_is_mesh(&sdata->vif)) {
3084 ps = &sdata->u.mesh.ps;
d012a605 3085 } else {
747cf5e9 3086 goto out;
d012a605 3087 }
5dfdaf58 3088
d012a605 3089 if (ps->dtim_count != 0 || !ps->dtim_bc_mc)
747cf5e9 3090 goto out; /* send buffered bc/mc only after DTIM beacon */
e039fa4a 3091
e2ebc74d 3092 while (1) {
d012a605 3093 skb = skb_dequeue(&ps->bc_buf);
e2ebc74d 3094 if (!skb)
747cf5e9 3095 goto out;
e2ebc74d
JB
3096 local->total_ps_buffered--;
3097
d012a605 3098 if (!skb_queue_empty(&ps->bc_buf) && skb->len >= 2) {
e2ebc74d
JB
3099 struct ieee80211_hdr *hdr =
3100 (struct ieee80211_hdr *) skb->data;
3101 /* more buffered multicast/broadcast frames ==> set
3102 * MoreData flag in IEEE 802.11 header to inform PS
3103 * STAs */
3104 hdr->frame_control |=
3105 cpu_to_le16(IEEE80211_FCTL_MOREDATA);
3106 }
3107
112c44b2 3108 if (sdata->vif.type == NL80211_IFTYPE_AP)
7cbf9d01 3109 sdata = IEEE80211_DEV_TO_SUB_IF(skb->dev);
3b8d81e0 3110 if (!ieee80211_tx_prepare(sdata, &tx, skb))
e2ebc74d
JB
3111 break;
3112 dev_kfree_skb_any(skb);
3113 }
e039fa4a
JB
3114
3115 info = IEEE80211_SKB_CB(skb);
3116
5cf121c3 3117 tx.flags |= IEEE80211_TX_PS_BUFFERED;
4bf88530 3118 info->band = chanctx_conf->def.chan->band;
e2ebc74d 3119
97b045d6 3120 if (invoke_tx_handlers(&tx))
e2ebc74d 3121 skb = NULL;
97b045d6 3122 out:
d0709a65 3123 rcu_read_unlock();
e2ebc74d
JB
3124
3125 return skb;
3126}
3127EXPORT_SYMBOL(ieee80211_get_buffered_bc);
3b8d81e0 3128
b6da911b
LK
3129int ieee80211_reserve_tid(struct ieee80211_sta *pubsta, u8 tid)
3130{
3131 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
3132 struct ieee80211_sub_if_data *sdata = sta->sdata;
3133 struct ieee80211_local *local = sdata->local;
3134 int ret;
3135 u32 queues;
3136
3137 lockdep_assert_held(&local->sta_mtx);
3138
3139 /* only some cases are supported right now */
3140 switch (sdata->vif.type) {
3141 case NL80211_IFTYPE_STATION:
3142 case NL80211_IFTYPE_AP:
3143 case NL80211_IFTYPE_AP_VLAN:
3144 break;
3145 default:
3146 WARN_ON(1);
3147 return -EINVAL;
3148 }
3149
3150 if (WARN_ON(tid >= IEEE80211_NUM_UPS))
3151 return -EINVAL;
3152
3153 if (sta->reserved_tid == tid) {
3154 ret = 0;
3155 goto out;
3156 }
3157
3158 if (sta->reserved_tid != IEEE80211_TID_UNRESERVED) {
3159 sdata_err(sdata, "TID reservation already active\n");
3160 ret = -EALREADY;
3161 goto out;
3162 }
3163
3164 ieee80211_stop_vif_queues(sdata->local, sdata,
3165 IEEE80211_QUEUE_STOP_REASON_RESERVE_TID);
3166
3167 synchronize_net();
3168
3169 /* Tear down BA sessions so we stop aggregating on this TID */
3170 if (local->hw.flags & IEEE80211_HW_AMPDU_AGGREGATION) {
3171 set_sta_flag(sta, WLAN_STA_BLOCK_BA);
3172 __ieee80211_stop_tx_ba_session(sta, tid,
3173 AGG_STOP_LOCAL_REQUEST);
3174 }
3175
3176 queues = BIT(sdata->vif.hw_queue[ieee802_1d_to_ac[tid]]);
3b24f4c6 3177 __ieee80211_flush_queues(local, sdata, queues, false);
b6da911b
LK
3178
3179 sta->reserved_tid = tid;
3180
3181 ieee80211_wake_vif_queues(local, sdata,
3182 IEEE80211_QUEUE_STOP_REASON_RESERVE_TID);
3183
3184 if (local->hw.flags & IEEE80211_HW_AMPDU_AGGREGATION)
3185 clear_sta_flag(sta, WLAN_STA_BLOCK_BA);
3186
3187 ret = 0;
3188 out:
3189 return ret;
3190}
3191EXPORT_SYMBOL(ieee80211_reserve_tid);
3192
3193void ieee80211_unreserve_tid(struct ieee80211_sta *pubsta, u8 tid)
3194{
3195 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
3196 struct ieee80211_sub_if_data *sdata = sta->sdata;
3197
3198 lockdep_assert_held(&sdata->local->sta_mtx);
3199
3200 /* only some cases are supported right now */
3201 switch (sdata->vif.type) {
3202 case NL80211_IFTYPE_STATION:
3203 case NL80211_IFTYPE_AP:
3204 case NL80211_IFTYPE_AP_VLAN:
3205 break;
3206 default:
3207 WARN_ON(1);
3208 return;
3209 }
3210
3211 if (tid != sta->reserved_tid) {
3212 sdata_err(sdata, "TID to unreserve (%d) isn't reserved\n", tid);
3213 return;
3214 }
3215
3216 sta->reserved_tid = IEEE80211_TID_UNRESERVED;
3217}
3218EXPORT_SYMBOL(ieee80211_unreserve_tid);
3219
55de908a
JB
3220void __ieee80211_tx_skb_tid_band(struct ieee80211_sub_if_data *sdata,
3221 struct sk_buff *skb, int tid,
3222 enum ieee80211_band band)
3b8d81e0 3223{
353d09c6 3224 int ac = ieee802_1d_to_ac[tid & 7];
3a25a8c8 3225
3b8d81e0
JB
3226 skb_set_mac_header(skb, 0);
3227 skb_set_network_header(skb, 0);
3228 skb_set_transport_header(skb, 0);
3229
3a25a8c8 3230 skb_set_queue_mapping(skb, ac);
cf6bb79a 3231 skb->priority = tid;
cf0277e7 3232
89afe614
JB
3233 skb->dev = sdata->dev;
3234
3d34deb6
JB
3235 /*
3236 * The other path calling ieee80211_xmit is from the tasklet,
3237 * and while we can handle concurrent transmissions locking
3238 * requirements are that we do not come into tx with bhs on.
3239 */
3240 local_bh_disable();
73c4e195
JB
3241 IEEE80211_SKB_CB(skb)->band = band;
3242 ieee80211_xmit(sdata, skb);
3d34deb6 3243 local_bh_enable();
3b8d81e0 3244}
This page took 1.260322 seconds and 5 git commands to generate.