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