xref: /openbmc/linux/net/mac80211/tx.c (revision f21e49be)
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  * Copyright 2002-2005, Instant802 Networks, Inc.
4  * Copyright 2005-2006, Devicescape Software, Inc.
5  * Copyright 2006-2007	Jiri Benc <jbenc@suse.cz>
6  * Copyright 2007	Johannes Berg <johannes@sipsolutions.net>
7  * Copyright 2013-2014  Intel Mobile Communications GmbH
8  * Copyright (C) 2018-2021 Intel Corporation
9  *
10  * Transmit and frame generation functions.
11  */
12 
13 #include <linux/kernel.h>
14 #include <linux/slab.h>
15 #include <linux/skbuff.h>
16 #include <linux/if_vlan.h>
17 #include <linux/etherdevice.h>
18 #include <linux/bitmap.h>
19 #include <linux/rcupdate.h>
20 #include <linux/export.h>
21 #include <linux/timekeeping.h>
22 #include <net/net_namespace.h>
23 #include <net/ieee80211_radiotap.h>
24 #include <net/cfg80211.h>
25 #include <net/mac80211.h>
26 #include <net/codel.h>
27 #include <net/codel_impl.h>
28 #include <asm/unaligned.h>
29 #include <net/fq_impl.h>
30 
31 #include "ieee80211_i.h"
32 #include "driver-ops.h"
33 #include "led.h"
34 #include "mesh.h"
35 #include "wep.h"
36 #include "wpa.h"
37 #include "wme.h"
38 #include "rate.h"
39 
40 /* misc utils */
41 
42 static __le16 ieee80211_duration(struct ieee80211_tx_data *tx,
43 				 struct sk_buff *skb, int group_addr,
44 				 int next_frag_len)
45 {
46 	int rate, mrate, erp, dur, i, shift = 0;
47 	struct ieee80211_rate *txrate;
48 	struct ieee80211_local *local = tx->local;
49 	struct ieee80211_supported_band *sband;
50 	struct ieee80211_hdr *hdr;
51 	struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
52 	struct ieee80211_chanctx_conf *chanctx_conf;
53 	u32 rate_flags = 0;
54 
55 	/* assume HW handles this */
56 	if (tx->rate.flags & (IEEE80211_TX_RC_MCS | IEEE80211_TX_RC_VHT_MCS))
57 		return 0;
58 
59 	rcu_read_lock();
60 	chanctx_conf = rcu_dereference(tx->sdata->vif.chanctx_conf);
61 	if (chanctx_conf) {
62 		shift = ieee80211_chandef_get_shift(&chanctx_conf->def);
63 		rate_flags = ieee80211_chandef_rate_flags(&chanctx_conf->def);
64 	}
65 	rcu_read_unlock();
66 
67 	/* uh huh? */
68 	if (WARN_ON_ONCE(tx->rate.idx < 0))
69 		return 0;
70 
71 	sband = local->hw.wiphy->bands[info->band];
72 	txrate = &sband->bitrates[tx->rate.idx];
73 
74 	erp = txrate->flags & IEEE80211_RATE_ERP_G;
75 
76 	/* device is expected to do this */
77 	if (sband->band == NL80211_BAND_S1GHZ)
78 		return 0;
79 
80 	/*
81 	 * data and mgmt (except PS Poll):
82 	 * - during CFP: 32768
83 	 * - during contention period:
84 	 *   if addr1 is group address: 0
85 	 *   if more fragments = 0 and addr1 is individual address: time to
86 	 *      transmit one ACK plus SIFS
87 	 *   if more fragments = 1 and addr1 is individual address: time to
88 	 *      transmit next fragment plus 2 x ACK plus 3 x SIFS
89 	 *
90 	 * IEEE 802.11, 9.6:
91 	 * - control response frame (CTS or ACK) shall be transmitted using the
92 	 *   same rate as the immediately previous frame in the frame exchange
93 	 *   sequence, if this rate belongs to the PHY mandatory rates, or else
94 	 *   at the highest possible rate belonging to the PHY rates in the
95 	 *   BSSBasicRateSet
96 	 */
97 	hdr = (struct ieee80211_hdr *)skb->data;
98 	if (ieee80211_is_ctl(hdr->frame_control)) {
99 		/* TODO: These control frames are not currently sent by
100 		 * mac80211, but should they be implemented, this function
101 		 * needs to be updated to support duration field calculation.
102 		 *
103 		 * RTS: time needed to transmit pending data/mgmt frame plus
104 		 *    one CTS frame plus one ACK frame plus 3 x SIFS
105 		 * CTS: duration of immediately previous RTS minus time
106 		 *    required to transmit CTS and its SIFS
107 		 * ACK: 0 if immediately previous directed data/mgmt had
108 		 *    more=0, with more=1 duration in ACK frame is duration
109 		 *    from previous frame minus time needed to transmit ACK
110 		 *    and its SIFS
111 		 * PS Poll: BIT(15) | BIT(14) | aid
112 		 */
113 		return 0;
114 	}
115 
116 	/* data/mgmt */
117 	if (0 /* FIX: data/mgmt during CFP */)
118 		return cpu_to_le16(32768);
119 
120 	if (group_addr) /* Group address as the destination - no ACK */
121 		return 0;
122 
123 	/* Individual destination address:
124 	 * IEEE 802.11, Ch. 9.6 (after IEEE 802.11g changes)
125 	 * CTS and ACK frames shall be transmitted using the highest rate in
126 	 * basic rate set that is less than or equal to the rate of the
127 	 * immediately previous frame and that is using the same modulation
128 	 * (CCK or OFDM). If no basic rate set matches with these requirements,
129 	 * the highest mandatory rate of the PHY that is less than or equal to
130 	 * the rate of the previous frame is used.
131 	 * Mandatory rates for IEEE 802.11g PHY: 1, 2, 5.5, 11, 6, 12, 24 Mbps
132 	 */
133 	rate = -1;
134 	/* use lowest available if everything fails */
135 	mrate = sband->bitrates[0].bitrate;
136 	for (i = 0; i < sband->n_bitrates; i++) {
137 		struct ieee80211_rate *r = &sband->bitrates[i];
138 
139 		if (r->bitrate > txrate->bitrate)
140 			break;
141 
142 		if ((rate_flags & r->flags) != rate_flags)
143 			continue;
144 
145 		if (tx->sdata->vif.bss_conf.basic_rates & BIT(i))
146 			rate = DIV_ROUND_UP(r->bitrate, 1 << shift);
147 
148 		switch (sband->band) {
149 		case NL80211_BAND_2GHZ:
150 		case NL80211_BAND_LC: {
151 			u32 flag;
152 			if (tx->sdata->flags & IEEE80211_SDATA_OPERATING_GMODE)
153 				flag = IEEE80211_RATE_MANDATORY_G;
154 			else
155 				flag = IEEE80211_RATE_MANDATORY_B;
156 			if (r->flags & flag)
157 				mrate = r->bitrate;
158 			break;
159 		}
160 		case NL80211_BAND_5GHZ:
161 		case NL80211_BAND_6GHZ:
162 			if (r->flags & IEEE80211_RATE_MANDATORY_A)
163 				mrate = r->bitrate;
164 			break;
165 		case NL80211_BAND_S1GHZ:
166 		case NL80211_BAND_60GHZ:
167 			/* TODO, for now fall through */
168 		case NUM_NL80211_BANDS:
169 			WARN_ON(1);
170 			break;
171 		}
172 	}
173 	if (rate == -1) {
174 		/* No matching basic rate found; use highest suitable mandatory
175 		 * PHY rate */
176 		rate = DIV_ROUND_UP(mrate, 1 << shift);
177 	}
178 
179 	/* Don't calculate ACKs for QoS Frames with NoAck Policy set */
180 	if (ieee80211_is_data_qos(hdr->frame_control) &&
181 	    *(ieee80211_get_qos_ctl(hdr)) & IEEE80211_QOS_CTL_ACK_POLICY_NOACK)
182 		dur = 0;
183 	else
184 		/* Time needed to transmit ACK
185 		 * (10 bytes + 4-byte FCS = 112 bits) plus SIFS; rounded up
186 		 * to closest integer */
187 		dur = ieee80211_frame_duration(sband->band, 10, rate, erp,
188 				tx->sdata->vif.bss_conf.use_short_preamble,
189 				shift);
190 
191 	if (next_frag_len) {
192 		/* Frame is fragmented: duration increases with time needed to
193 		 * transmit next fragment plus ACK and 2 x SIFS. */
194 		dur *= 2; /* ACK + SIFS */
195 		/* next fragment */
196 		dur += ieee80211_frame_duration(sband->band, next_frag_len,
197 				txrate->bitrate, erp,
198 				tx->sdata->vif.bss_conf.use_short_preamble,
199 				shift);
200 	}
201 
202 	return cpu_to_le16(dur);
203 }
204 
205 /* tx handlers */
206 static ieee80211_tx_result debug_noinline
207 ieee80211_tx_h_dynamic_ps(struct ieee80211_tx_data *tx)
208 {
209 	struct ieee80211_local *local = tx->local;
210 	struct ieee80211_if_managed *ifmgd;
211 	struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
212 
213 	/* driver doesn't support power save */
214 	if (!ieee80211_hw_check(&local->hw, SUPPORTS_PS))
215 		return TX_CONTINUE;
216 
217 	/* hardware does dynamic power save */
218 	if (ieee80211_hw_check(&local->hw, SUPPORTS_DYNAMIC_PS))
219 		return TX_CONTINUE;
220 
221 	/* dynamic power save disabled */
222 	if (local->hw.conf.dynamic_ps_timeout <= 0)
223 		return TX_CONTINUE;
224 
225 	/* we are scanning, don't enable power save */
226 	if (local->scanning)
227 		return TX_CONTINUE;
228 
229 	if (!local->ps_sdata)
230 		return TX_CONTINUE;
231 
232 	/* No point if we're going to suspend */
233 	if (local->quiescing)
234 		return TX_CONTINUE;
235 
236 	/* dynamic ps is supported only in managed mode */
237 	if (tx->sdata->vif.type != NL80211_IFTYPE_STATION)
238 		return TX_CONTINUE;
239 
240 	if (unlikely(info->flags & IEEE80211_TX_INTFL_OFFCHAN_TX_OK))
241 		return TX_CONTINUE;
242 
243 	ifmgd = &tx->sdata->u.mgd;
244 
245 	/*
246 	 * Don't wakeup from power save if u-apsd is enabled, voip ac has
247 	 * u-apsd enabled and the frame is in voip class. This effectively
248 	 * means that even if all access categories have u-apsd enabled, in
249 	 * practise u-apsd is only used with the voip ac. This is a
250 	 * workaround for the case when received voip class packets do not
251 	 * have correct qos tag for some reason, due the network or the
252 	 * peer application.
253 	 *
254 	 * Note: ifmgd->uapsd_queues access is racy here. If the value is
255 	 * changed via debugfs, user needs to reassociate manually to have
256 	 * everything in sync.
257 	 */
258 	if ((ifmgd->flags & IEEE80211_STA_UAPSD_ENABLED) &&
259 	    (ifmgd->uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_VO) &&
260 	    skb_get_queue_mapping(tx->skb) == IEEE80211_AC_VO)
261 		return TX_CONTINUE;
262 
263 	if (local->hw.conf.flags & IEEE80211_CONF_PS) {
264 		ieee80211_stop_queues_by_reason(&local->hw,
265 						IEEE80211_MAX_QUEUE_MAP,
266 						IEEE80211_QUEUE_STOP_REASON_PS,
267 						false);
268 		ifmgd->flags &= ~IEEE80211_STA_NULLFUNC_ACKED;
269 		ieee80211_queue_work(&local->hw,
270 				     &local->dynamic_ps_disable_work);
271 	}
272 
273 	/* Don't restart the timer if we're not disassociated */
274 	if (!ifmgd->associated)
275 		return TX_CONTINUE;
276 
277 	mod_timer(&local->dynamic_ps_timer, jiffies +
278 		  msecs_to_jiffies(local->hw.conf.dynamic_ps_timeout));
279 
280 	return TX_CONTINUE;
281 }
282 
283 static ieee80211_tx_result debug_noinline
284 ieee80211_tx_h_check_assoc(struct ieee80211_tx_data *tx)
285 {
286 
287 	struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data;
288 	struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
289 	bool assoc = false;
290 
291 	if (unlikely(info->flags & IEEE80211_TX_CTL_INJECTED))
292 		return TX_CONTINUE;
293 
294 	if (unlikely(test_bit(SCAN_SW_SCANNING, &tx->local->scanning)) &&
295 	    test_bit(SDATA_STATE_OFFCHANNEL, &tx->sdata->state) &&
296 	    !ieee80211_is_probe_req(hdr->frame_control) &&
297 	    !ieee80211_is_any_nullfunc(hdr->frame_control))
298 		/*
299 		 * When software scanning only nullfunc frames (to notify
300 		 * the sleep state to the AP) and probe requests (for the
301 		 * active scan) are allowed, all other frames should not be
302 		 * sent and we should not get here, but if we do
303 		 * nonetheless, drop them to avoid sending them
304 		 * off-channel. See the link below and
305 		 * ieee80211_start_scan() for more.
306 		 *
307 		 * http://article.gmane.org/gmane.linux.kernel.wireless.general/30089
308 		 */
309 		return TX_DROP;
310 
311 	if (tx->sdata->vif.type == NL80211_IFTYPE_OCB)
312 		return TX_CONTINUE;
313 
314 	if (tx->flags & IEEE80211_TX_PS_BUFFERED)
315 		return TX_CONTINUE;
316 
317 	if (tx->sta)
318 		assoc = test_sta_flag(tx->sta, WLAN_STA_ASSOC);
319 
320 	if (likely(tx->flags & IEEE80211_TX_UNICAST)) {
321 		if (unlikely(!assoc &&
322 			     ieee80211_is_data(hdr->frame_control))) {
323 #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
324 			sdata_info(tx->sdata,
325 				   "dropped data frame to not associated station %pM\n",
326 				   hdr->addr1);
327 #endif
328 			I802_DEBUG_INC(tx->local->tx_handlers_drop_not_assoc);
329 			return TX_DROP;
330 		}
331 	} else if (unlikely(ieee80211_is_data(hdr->frame_control) &&
332 			    ieee80211_vif_get_num_mcast_if(tx->sdata) == 0)) {
333 		/*
334 		 * No associated STAs - no need to send multicast
335 		 * frames.
336 		 */
337 		return TX_DROP;
338 	}
339 
340 	return TX_CONTINUE;
341 }
342 
343 /* This function is called whenever the AP is about to exceed the maximum limit
344  * of buffered frames for power saving STAs. This situation should not really
345  * happen often during normal operation, so dropping the oldest buffered packet
346  * from each queue should be OK to make some room for new frames. */
347 static void purge_old_ps_buffers(struct ieee80211_local *local)
348 {
349 	int total = 0, purged = 0;
350 	struct sk_buff *skb;
351 	struct ieee80211_sub_if_data *sdata;
352 	struct sta_info *sta;
353 
354 	list_for_each_entry_rcu(sdata, &local->interfaces, list) {
355 		struct ps_data *ps;
356 
357 		if (sdata->vif.type == NL80211_IFTYPE_AP)
358 			ps = &sdata->u.ap.ps;
359 		else if (ieee80211_vif_is_mesh(&sdata->vif))
360 			ps = &sdata->u.mesh.ps;
361 		else
362 			continue;
363 
364 		skb = skb_dequeue(&ps->bc_buf);
365 		if (skb) {
366 			purged++;
367 			ieee80211_free_txskb(&local->hw, skb);
368 		}
369 		total += skb_queue_len(&ps->bc_buf);
370 	}
371 
372 	/*
373 	 * Drop one frame from each station from the lowest-priority
374 	 * AC that has frames at all.
375 	 */
376 	list_for_each_entry_rcu(sta, &local->sta_list, list) {
377 		int ac;
378 
379 		for (ac = IEEE80211_AC_BK; ac >= IEEE80211_AC_VO; ac--) {
380 			skb = skb_dequeue(&sta->ps_tx_buf[ac]);
381 			total += skb_queue_len(&sta->ps_tx_buf[ac]);
382 			if (skb) {
383 				purged++;
384 				ieee80211_free_txskb(&local->hw, skb);
385 				break;
386 			}
387 		}
388 	}
389 
390 	local->total_ps_buffered = total;
391 	ps_dbg_hw(&local->hw, "PS buffers full - purged %d frames\n", purged);
392 }
393 
394 static ieee80211_tx_result
395 ieee80211_tx_h_multicast_ps_buf(struct ieee80211_tx_data *tx)
396 {
397 	struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
398 	struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data;
399 	struct ps_data *ps;
400 
401 	/*
402 	 * broadcast/multicast frame
403 	 *
404 	 * If any of the associated/peer stations is in power save mode,
405 	 * the frame is buffered to be sent after DTIM beacon frame.
406 	 * This is done either by the hardware or us.
407 	 */
408 
409 	/* powersaving STAs currently only in AP/VLAN/mesh mode */
410 	if (tx->sdata->vif.type == NL80211_IFTYPE_AP ||
411 	    tx->sdata->vif.type == NL80211_IFTYPE_AP_VLAN) {
412 		if (!tx->sdata->bss)
413 			return TX_CONTINUE;
414 
415 		ps = &tx->sdata->bss->ps;
416 	} else if (ieee80211_vif_is_mesh(&tx->sdata->vif)) {
417 		ps = &tx->sdata->u.mesh.ps;
418 	} else {
419 		return TX_CONTINUE;
420 	}
421 
422 
423 	/* no buffering for ordered frames */
424 	if (ieee80211_has_order(hdr->frame_control))
425 		return TX_CONTINUE;
426 
427 	if (ieee80211_is_probe_req(hdr->frame_control))
428 		return TX_CONTINUE;
429 
430 	if (ieee80211_hw_check(&tx->local->hw, QUEUE_CONTROL))
431 		info->hw_queue = tx->sdata->vif.cab_queue;
432 
433 	/* no stations in PS mode and no buffered packets */
434 	if (!atomic_read(&ps->num_sta_ps) && skb_queue_empty(&ps->bc_buf))
435 		return TX_CONTINUE;
436 
437 	info->flags |= IEEE80211_TX_CTL_SEND_AFTER_DTIM;
438 
439 	/* device releases frame after DTIM beacon */
440 	if (!ieee80211_hw_check(&tx->local->hw, HOST_BROADCAST_PS_BUFFERING))
441 		return TX_CONTINUE;
442 
443 	/* buffered in mac80211 */
444 	if (tx->local->total_ps_buffered >= TOTAL_MAX_TX_BUFFER)
445 		purge_old_ps_buffers(tx->local);
446 
447 	if (skb_queue_len(&ps->bc_buf) >= AP_MAX_BC_BUFFER) {
448 		ps_dbg(tx->sdata,
449 		       "BC TX buffer full - dropping the oldest frame\n");
450 		ieee80211_free_txskb(&tx->local->hw, skb_dequeue(&ps->bc_buf));
451 	} else
452 		tx->local->total_ps_buffered++;
453 
454 	skb_queue_tail(&ps->bc_buf, tx->skb);
455 
456 	return TX_QUEUED;
457 }
458 
459 static int ieee80211_use_mfp(__le16 fc, struct sta_info *sta,
460 			     struct sk_buff *skb)
461 {
462 	if (!ieee80211_is_mgmt(fc))
463 		return 0;
464 
465 	if (sta == NULL || !test_sta_flag(sta, WLAN_STA_MFP))
466 		return 0;
467 
468 	if (!ieee80211_is_robust_mgmt_frame(skb))
469 		return 0;
470 
471 	return 1;
472 }
473 
474 static ieee80211_tx_result
475 ieee80211_tx_h_unicast_ps_buf(struct ieee80211_tx_data *tx)
476 {
477 	struct sta_info *sta = tx->sta;
478 	struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
479 	struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data;
480 	struct ieee80211_local *local = tx->local;
481 
482 	if (unlikely(!sta))
483 		return TX_CONTINUE;
484 
485 	if (unlikely((test_sta_flag(sta, WLAN_STA_PS_STA) ||
486 		      test_sta_flag(sta, WLAN_STA_PS_DRIVER) ||
487 		      test_sta_flag(sta, WLAN_STA_PS_DELIVER)) &&
488 		     !(info->flags & IEEE80211_TX_CTL_NO_PS_BUFFER))) {
489 		int ac = skb_get_queue_mapping(tx->skb);
490 
491 		if (ieee80211_is_mgmt(hdr->frame_control) &&
492 		    !ieee80211_is_bufferable_mmpdu(hdr->frame_control)) {
493 			info->flags |= IEEE80211_TX_CTL_NO_PS_BUFFER;
494 			return TX_CONTINUE;
495 		}
496 
497 		ps_dbg(sta->sdata, "STA %pM aid %d: PS buffer for AC %d\n",
498 		       sta->sta.addr, sta->sta.aid, ac);
499 		if (tx->local->total_ps_buffered >= TOTAL_MAX_TX_BUFFER)
500 			purge_old_ps_buffers(tx->local);
501 
502 		/* sync with ieee80211_sta_ps_deliver_wakeup */
503 		spin_lock(&sta->ps_lock);
504 		/*
505 		 * STA woke up the meantime and all the frames on ps_tx_buf have
506 		 * been queued to pending queue. No reordering can happen, go
507 		 * ahead and Tx the packet.
508 		 */
509 		if (!test_sta_flag(sta, WLAN_STA_PS_STA) &&
510 		    !test_sta_flag(sta, WLAN_STA_PS_DRIVER) &&
511 		    !test_sta_flag(sta, WLAN_STA_PS_DELIVER)) {
512 			spin_unlock(&sta->ps_lock);
513 			return TX_CONTINUE;
514 		}
515 
516 		if (skb_queue_len(&sta->ps_tx_buf[ac]) >= STA_MAX_TX_BUFFER) {
517 			struct sk_buff *old = skb_dequeue(&sta->ps_tx_buf[ac]);
518 			ps_dbg(tx->sdata,
519 			       "STA %pM TX buffer for AC %d full - dropping oldest frame\n",
520 			       sta->sta.addr, ac);
521 			ieee80211_free_txskb(&local->hw, old);
522 		} else
523 			tx->local->total_ps_buffered++;
524 
525 		info->control.jiffies = jiffies;
526 		info->control.vif = &tx->sdata->vif;
527 		info->control.flags |= IEEE80211_TX_INTCFL_NEED_TXPROCESSING;
528 		info->flags &= ~IEEE80211_TX_TEMPORARY_FLAGS;
529 		skb_queue_tail(&sta->ps_tx_buf[ac], tx->skb);
530 		spin_unlock(&sta->ps_lock);
531 
532 		if (!timer_pending(&local->sta_cleanup))
533 			mod_timer(&local->sta_cleanup,
534 				  round_jiffies(jiffies +
535 						STA_INFO_CLEANUP_INTERVAL));
536 
537 		/*
538 		 * We queued up some frames, so the TIM bit might
539 		 * need to be set, recalculate it.
540 		 */
541 		sta_info_recalc_tim(sta);
542 
543 		return TX_QUEUED;
544 	} else if (unlikely(test_sta_flag(sta, WLAN_STA_PS_STA))) {
545 		ps_dbg(tx->sdata,
546 		       "STA %pM in PS mode, but polling/in SP -> send frame\n",
547 		       sta->sta.addr);
548 	}
549 
550 	return TX_CONTINUE;
551 }
552 
553 static ieee80211_tx_result debug_noinline
554 ieee80211_tx_h_ps_buf(struct ieee80211_tx_data *tx)
555 {
556 	if (unlikely(tx->flags & IEEE80211_TX_PS_BUFFERED))
557 		return TX_CONTINUE;
558 
559 	if (tx->flags & IEEE80211_TX_UNICAST)
560 		return ieee80211_tx_h_unicast_ps_buf(tx);
561 	else
562 		return ieee80211_tx_h_multicast_ps_buf(tx);
563 }
564 
565 static ieee80211_tx_result debug_noinline
566 ieee80211_tx_h_check_control_port_protocol(struct ieee80211_tx_data *tx)
567 {
568 	struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
569 
570 	if (unlikely(tx->sdata->control_port_protocol == tx->skb->protocol)) {
571 		if (tx->sdata->control_port_no_encrypt)
572 			info->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
573 		info->control.flags |= IEEE80211_TX_CTRL_PORT_CTRL_PROTO;
574 		info->flags |= IEEE80211_TX_CTL_USE_MINRATE;
575 	}
576 
577 	return TX_CONTINUE;
578 }
579 
580 static ieee80211_tx_result debug_noinline
581 ieee80211_tx_h_select_key(struct ieee80211_tx_data *tx)
582 {
583 	struct ieee80211_key *key;
584 	struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
585 	struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data;
586 
587 	if (unlikely(info->flags & IEEE80211_TX_INTFL_DONT_ENCRYPT)) {
588 		tx->key = NULL;
589 		return TX_CONTINUE;
590 	}
591 
592 	if (tx->sta &&
593 	    (key = rcu_dereference(tx->sta->ptk[tx->sta->ptk_idx])))
594 		tx->key = key;
595 	else if (ieee80211_is_group_privacy_action(tx->skb) &&
596 		(key = rcu_dereference(tx->sdata->default_multicast_key)))
597 		tx->key = key;
598 	else if (ieee80211_is_mgmt(hdr->frame_control) &&
599 		 is_multicast_ether_addr(hdr->addr1) &&
600 		 ieee80211_is_robust_mgmt_frame(tx->skb) &&
601 		 (key = rcu_dereference(tx->sdata->default_mgmt_key)))
602 		tx->key = key;
603 	else if (is_multicast_ether_addr(hdr->addr1) &&
604 		 (key = rcu_dereference(tx->sdata->default_multicast_key)))
605 		tx->key = key;
606 	else if (!is_multicast_ether_addr(hdr->addr1) &&
607 		 (key = rcu_dereference(tx->sdata->default_unicast_key)))
608 		tx->key = key;
609 	else
610 		tx->key = NULL;
611 
612 	if (tx->key) {
613 		bool skip_hw = false;
614 
615 		/* TODO: add threshold stuff again */
616 
617 		switch (tx->key->conf.cipher) {
618 		case WLAN_CIPHER_SUITE_WEP40:
619 		case WLAN_CIPHER_SUITE_WEP104:
620 		case WLAN_CIPHER_SUITE_TKIP:
621 			if (!ieee80211_is_data_present(hdr->frame_control))
622 				tx->key = NULL;
623 			break;
624 		case WLAN_CIPHER_SUITE_CCMP:
625 		case WLAN_CIPHER_SUITE_CCMP_256:
626 		case WLAN_CIPHER_SUITE_GCMP:
627 		case WLAN_CIPHER_SUITE_GCMP_256:
628 			if (!ieee80211_is_data_present(hdr->frame_control) &&
629 			    !ieee80211_use_mfp(hdr->frame_control, tx->sta,
630 					       tx->skb) &&
631 			    !ieee80211_is_group_privacy_action(tx->skb))
632 				tx->key = NULL;
633 			else
634 				skip_hw = (tx->key->conf.flags &
635 					   IEEE80211_KEY_FLAG_SW_MGMT_TX) &&
636 					ieee80211_is_mgmt(hdr->frame_control);
637 			break;
638 		case WLAN_CIPHER_SUITE_AES_CMAC:
639 		case WLAN_CIPHER_SUITE_BIP_CMAC_256:
640 		case WLAN_CIPHER_SUITE_BIP_GMAC_128:
641 		case WLAN_CIPHER_SUITE_BIP_GMAC_256:
642 			if (!ieee80211_is_mgmt(hdr->frame_control))
643 				tx->key = NULL;
644 			break;
645 		}
646 
647 		if (unlikely(tx->key && tx->key->flags & KEY_FLAG_TAINTED &&
648 			     !ieee80211_is_deauth(hdr->frame_control)))
649 			return TX_DROP;
650 
651 		if (!skip_hw && tx->key &&
652 		    tx->key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE)
653 			info->control.hw_key = &tx->key->conf;
654 	} else if (ieee80211_is_data_present(hdr->frame_control) && tx->sta &&
655 		   test_sta_flag(tx->sta, WLAN_STA_USES_ENCRYPTION)) {
656 		return TX_DROP;
657 	}
658 
659 	return TX_CONTINUE;
660 }
661 
662 static ieee80211_tx_result debug_noinline
663 ieee80211_tx_h_rate_ctrl(struct ieee80211_tx_data *tx)
664 {
665 	struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
666 	struct ieee80211_hdr *hdr = (void *)tx->skb->data;
667 	struct ieee80211_supported_band *sband;
668 	u32 len;
669 	struct ieee80211_tx_rate_control txrc;
670 	struct ieee80211_sta_rates *ratetbl = NULL;
671 	bool encap = info->flags & IEEE80211_TX_CTL_HW_80211_ENCAP;
672 	bool assoc = false;
673 
674 	memset(&txrc, 0, sizeof(txrc));
675 
676 	sband = tx->local->hw.wiphy->bands[info->band];
677 
678 	len = min_t(u32, tx->skb->len + FCS_LEN,
679 			 tx->local->hw.wiphy->frag_threshold);
680 
681 	/* set up the tx rate control struct we give the RC algo */
682 	txrc.hw = &tx->local->hw;
683 	txrc.sband = sband;
684 	txrc.bss_conf = &tx->sdata->vif.bss_conf;
685 	txrc.skb = tx->skb;
686 	txrc.reported_rate.idx = -1;
687 	txrc.rate_idx_mask = tx->sdata->rc_rateidx_mask[info->band];
688 
689 	if (tx->sdata->rc_has_mcs_mask[info->band])
690 		txrc.rate_idx_mcs_mask =
691 			tx->sdata->rc_rateidx_mcs_mask[info->band];
692 
693 	txrc.bss = (tx->sdata->vif.type == NL80211_IFTYPE_AP ||
694 		    tx->sdata->vif.type == NL80211_IFTYPE_MESH_POINT ||
695 		    tx->sdata->vif.type == NL80211_IFTYPE_ADHOC ||
696 		    tx->sdata->vif.type == NL80211_IFTYPE_OCB);
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_tx_data(tx->skb) ||
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 	/* don't ask rate control when rate already injected via radiotap */
720 	if (info->control.flags & IEEE80211_TX_CTRL_RATE_INJECT)
721 		return TX_CONTINUE;
722 
723 	if (tx->sta)
724 		assoc = test_sta_flag(tx->sta, WLAN_STA_ASSOC);
725 
726 	/*
727 	 * Lets not bother rate control if we're associated and cannot
728 	 * talk to the sta. This should not happen.
729 	 */
730 	if (WARN(test_bit(SCAN_SW_SCANNING, &tx->local->scanning) && assoc &&
731 		 !rate_usable_index_exists(sband, &tx->sta->sta),
732 		 "%s: Dropped data frame as no usable bitrate found while "
733 		 "scanning and associated. Target station: "
734 		 "%pM on %d GHz band\n",
735 		 tx->sdata->name,
736 		 encap ? ((struct ethhdr *)hdr)->h_dest : hdr->addr1,
737 		 info->band ? 5 : 2))
738 		return TX_DROP;
739 
740 	/*
741 	 * If we're associated with the sta at this point we know we can at
742 	 * least send the frame at the lowest bit rate.
743 	 */
744 	rate_control_get_rate(tx->sdata, tx->sta, &txrc);
745 
746 	if (tx->sta && !info->control.skip_table)
747 		ratetbl = rcu_dereference(tx->sta->sta.rates);
748 
749 	if (unlikely(info->control.rates[0].idx < 0)) {
750 		if (ratetbl) {
751 			struct ieee80211_tx_rate rate = {
752 				.idx = ratetbl->rate[0].idx,
753 				.flags = ratetbl->rate[0].flags,
754 				.count = ratetbl->rate[0].count
755 			};
756 
757 			if (ratetbl->rate[0].idx < 0)
758 				return TX_DROP;
759 
760 			tx->rate = rate;
761 		} else {
762 			return TX_DROP;
763 		}
764 	} else {
765 		tx->rate = info->control.rates[0];
766 	}
767 
768 	if (txrc.reported_rate.idx < 0) {
769 		txrc.reported_rate = tx->rate;
770 		if (tx->sta && ieee80211_is_tx_data(tx->skb))
771 			tx->sta->tx_stats.last_rate = txrc.reported_rate;
772 	} else if (tx->sta)
773 		tx->sta->tx_stats.last_rate = txrc.reported_rate;
774 
775 	if (ratetbl)
776 		return TX_CONTINUE;
777 
778 	if (unlikely(!info->control.rates[0].count))
779 		info->control.rates[0].count = 1;
780 
781 	if (WARN_ON_ONCE((info->control.rates[0].count > 1) &&
782 			 (info->flags & IEEE80211_TX_CTL_NO_ACK)))
783 		info->control.rates[0].count = 1;
784 
785 	return TX_CONTINUE;
786 }
787 
788 static __le16 ieee80211_tx_next_seq(struct sta_info *sta, int tid)
789 {
790 	u16 *seq = &sta->tid_seq[tid];
791 	__le16 ret = cpu_to_le16(*seq);
792 
793 	/* Increase the sequence number. */
794 	*seq = (*seq + 0x10) & IEEE80211_SCTL_SEQ;
795 
796 	return ret;
797 }
798 
799 static ieee80211_tx_result debug_noinline
800 ieee80211_tx_h_sequence(struct ieee80211_tx_data *tx)
801 {
802 	struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
803 	struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data;
804 	int tid;
805 
806 	/*
807 	 * Packet injection may want to control the sequence
808 	 * number, if we have no matching interface then we
809 	 * neither assign one ourselves nor ask the driver to.
810 	 */
811 	if (unlikely(info->control.vif->type == NL80211_IFTYPE_MONITOR))
812 		return TX_CONTINUE;
813 
814 	if (unlikely(ieee80211_is_ctl(hdr->frame_control)))
815 		return TX_CONTINUE;
816 
817 	if (ieee80211_hdrlen(hdr->frame_control) < 24)
818 		return TX_CONTINUE;
819 
820 	if (ieee80211_is_qos_nullfunc(hdr->frame_control))
821 		return TX_CONTINUE;
822 
823 	if (info->control.flags & IEEE80211_TX_CTRL_NO_SEQNO)
824 		return TX_CONTINUE;
825 
826 	/*
827 	 * Anything but QoS data that has a sequence number field
828 	 * (is long enough) gets a sequence number from the global
829 	 * counter.  QoS data frames with a multicast destination
830 	 * also use the global counter (802.11-2012 9.3.2.10).
831 	 */
832 	if (!ieee80211_is_data_qos(hdr->frame_control) ||
833 	    is_multicast_ether_addr(hdr->addr1)) {
834 		/* driver should assign sequence number */
835 		info->flags |= IEEE80211_TX_CTL_ASSIGN_SEQ;
836 		/* for pure STA mode without beacons, we can do it */
837 		hdr->seq_ctrl = cpu_to_le16(tx->sdata->sequence_number);
838 		tx->sdata->sequence_number += 0x10;
839 		if (tx->sta)
840 			tx->sta->tx_stats.msdu[IEEE80211_NUM_TIDS]++;
841 		return TX_CONTINUE;
842 	}
843 
844 	/*
845 	 * This should be true for injected/management frames only, for
846 	 * management frames we have set the IEEE80211_TX_CTL_ASSIGN_SEQ
847 	 * above since they are not QoS-data frames.
848 	 */
849 	if (!tx->sta)
850 		return TX_CONTINUE;
851 
852 	/* include per-STA, per-TID sequence counter */
853 	tid = ieee80211_get_tid(hdr);
854 	tx->sta->tx_stats.msdu[tid]++;
855 
856 	hdr->seq_ctrl = ieee80211_tx_next_seq(tx->sta, tid);
857 
858 	return TX_CONTINUE;
859 }
860 
861 static int ieee80211_fragment(struct ieee80211_tx_data *tx,
862 			      struct sk_buff *skb, int hdrlen,
863 			      int frag_threshold)
864 {
865 	struct ieee80211_local *local = tx->local;
866 	struct ieee80211_tx_info *info;
867 	struct sk_buff *tmp;
868 	int per_fragm = frag_threshold - hdrlen - FCS_LEN;
869 	int pos = hdrlen + per_fragm;
870 	int rem = skb->len - hdrlen - per_fragm;
871 
872 	if (WARN_ON(rem < 0))
873 		return -EINVAL;
874 
875 	/* first fragment was already added to queue by caller */
876 
877 	while (rem) {
878 		int fraglen = per_fragm;
879 
880 		if (fraglen > rem)
881 			fraglen = rem;
882 		rem -= fraglen;
883 		tmp = dev_alloc_skb(local->tx_headroom +
884 				    frag_threshold +
885 				    tx->sdata->encrypt_headroom +
886 				    IEEE80211_ENCRYPT_TAILROOM);
887 		if (!tmp)
888 			return -ENOMEM;
889 
890 		__skb_queue_tail(&tx->skbs, tmp);
891 
892 		skb_reserve(tmp,
893 			    local->tx_headroom + tx->sdata->encrypt_headroom);
894 
895 		/* copy control information */
896 		memcpy(tmp->cb, skb->cb, sizeof(tmp->cb));
897 
898 		info = IEEE80211_SKB_CB(tmp);
899 		info->flags &= ~(IEEE80211_TX_CTL_CLEAR_PS_FILT |
900 				 IEEE80211_TX_CTL_FIRST_FRAGMENT);
901 
902 		if (rem)
903 			info->flags |= IEEE80211_TX_CTL_MORE_FRAMES;
904 
905 		skb_copy_queue_mapping(tmp, skb);
906 		tmp->priority = skb->priority;
907 		tmp->dev = skb->dev;
908 
909 		/* copy header and data */
910 		skb_put_data(tmp, skb->data, hdrlen);
911 		skb_put_data(tmp, skb->data + pos, fraglen);
912 
913 		pos += fraglen;
914 	}
915 
916 	/* adjust first fragment's length */
917 	skb_trim(skb, hdrlen + per_fragm);
918 	return 0;
919 }
920 
921 static ieee80211_tx_result debug_noinline
922 ieee80211_tx_h_fragment(struct ieee80211_tx_data *tx)
923 {
924 	struct sk_buff *skb = tx->skb;
925 	struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
926 	struct ieee80211_hdr *hdr = (void *)skb->data;
927 	int frag_threshold = tx->local->hw.wiphy->frag_threshold;
928 	int hdrlen;
929 	int fragnum;
930 
931 	/* no matter what happens, tx->skb moves to tx->skbs */
932 	__skb_queue_tail(&tx->skbs, skb);
933 	tx->skb = NULL;
934 
935 	if (info->flags & IEEE80211_TX_CTL_DONTFRAG)
936 		return TX_CONTINUE;
937 
938 	if (ieee80211_hw_check(&tx->local->hw, SUPPORTS_TX_FRAG))
939 		return TX_CONTINUE;
940 
941 	/*
942 	 * Warn when submitting a fragmented A-MPDU frame and drop it.
943 	 * This scenario is handled in ieee80211_tx_prepare but extra
944 	 * caution taken here as fragmented ampdu may cause Tx stop.
945 	 */
946 	if (WARN_ON(info->flags & IEEE80211_TX_CTL_AMPDU))
947 		return TX_DROP;
948 
949 	hdrlen = ieee80211_hdrlen(hdr->frame_control);
950 
951 	/* internal error, why isn't DONTFRAG set? */
952 	if (WARN_ON(skb->len + FCS_LEN <= frag_threshold))
953 		return TX_DROP;
954 
955 	/*
956 	 * Now fragment the frame. This will allocate all the fragments and
957 	 * chain them (using skb as the first fragment) to skb->next.
958 	 * During transmission, we will remove the successfully transmitted
959 	 * fragments from this list. When the low-level driver rejects one
960 	 * of the fragments then we will simply pretend to accept the skb
961 	 * but store it away as pending.
962 	 */
963 	if (ieee80211_fragment(tx, skb, hdrlen, frag_threshold))
964 		return TX_DROP;
965 
966 	/* update duration/seq/flags of fragments */
967 	fragnum = 0;
968 
969 	skb_queue_walk(&tx->skbs, skb) {
970 		const __le16 morefrags = cpu_to_le16(IEEE80211_FCTL_MOREFRAGS);
971 
972 		hdr = (void *)skb->data;
973 		info = IEEE80211_SKB_CB(skb);
974 
975 		if (!skb_queue_is_last(&tx->skbs, skb)) {
976 			hdr->frame_control |= morefrags;
977 			/*
978 			 * No multi-rate retries for fragmented frames, that
979 			 * would completely throw off the NAV at other STAs.
980 			 */
981 			info->control.rates[1].idx = -1;
982 			info->control.rates[2].idx = -1;
983 			info->control.rates[3].idx = -1;
984 			BUILD_BUG_ON(IEEE80211_TX_MAX_RATES != 4);
985 			info->flags &= ~IEEE80211_TX_CTL_RATE_CTRL_PROBE;
986 		} else {
987 			hdr->frame_control &= ~morefrags;
988 		}
989 		hdr->seq_ctrl |= cpu_to_le16(fragnum & IEEE80211_SCTL_FRAG);
990 		fragnum++;
991 	}
992 
993 	return TX_CONTINUE;
994 }
995 
996 static ieee80211_tx_result debug_noinline
997 ieee80211_tx_h_stats(struct ieee80211_tx_data *tx)
998 {
999 	struct sk_buff *skb;
1000 	int ac = -1;
1001 
1002 	if (!tx->sta)
1003 		return TX_CONTINUE;
1004 
1005 	skb_queue_walk(&tx->skbs, skb) {
1006 		ac = skb_get_queue_mapping(skb);
1007 		tx->sta->tx_stats.bytes[ac] += skb->len;
1008 	}
1009 	if (ac >= 0)
1010 		tx->sta->tx_stats.packets[ac]++;
1011 
1012 	return TX_CONTINUE;
1013 }
1014 
1015 static ieee80211_tx_result debug_noinline
1016 ieee80211_tx_h_encrypt(struct ieee80211_tx_data *tx)
1017 {
1018 	if (!tx->key)
1019 		return TX_CONTINUE;
1020 
1021 	switch (tx->key->conf.cipher) {
1022 	case WLAN_CIPHER_SUITE_WEP40:
1023 	case WLAN_CIPHER_SUITE_WEP104:
1024 		return ieee80211_crypto_wep_encrypt(tx);
1025 	case WLAN_CIPHER_SUITE_TKIP:
1026 		return ieee80211_crypto_tkip_encrypt(tx);
1027 	case WLAN_CIPHER_SUITE_CCMP:
1028 		return ieee80211_crypto_ccmp_encrypt(
1029 			tx, IEEE80211_CCMP_MIC_LEN);
1030 	case WLAN_CIPHER_SUITE_CCMP_256:
1031 		return ieee80211_crypto_ccmp_encrypt(
1032 			tx, IEEE80211_CCMP_256_MIC_LEN);
1033 	case WLAN_CIPHER_SUITE_AES_CMAC:
1034 		return ieee80211_crypto_aes_cmac_encrypt(tx);
1035 	case WLAN_CIPHER_SUITE_BIP_CMAC_256:
1036 		return ieee80211_crypto_aes_cmac_256_encrypt(tx);
1037 	case WLAN_CIPHER_SUITE_BIP_GMAC_128:
1038 	case WLAN_CIPHER_SUITE_BIP_GMAC_256:
1039 		return ieee80211_crypto_aes_gmac_encrypt(tx);
1040 	case WLAN_CIPHER_SUITE_GCMP:
1041 	case WLAN_CIPHER_SUITE_GCMP_256:
1042 		return ieee80211_crypto_gcmp_encrypt(tx);
1043 	default:
1044 		return ieee80211_crypto_hw_encrypt(tx);
1045 	}
1046 
1047 	return TX_DROP;
1048 }
1049 
1050 static ieee80211_tx_result debug_noinline
1051 ieee80211_tx_h_calculate_duration(struct ieee80211_tx_data *tx)
1052 {
1053 	struct sk_buff *skb;
1054 	struct ieee80211_hdr *hdr;
1055 	int next_len;
1056 	bool group_addr;
1057 
1058 	skb_queue_walk(&tx->skbs, skb) {
1059 		hdr = (void *) skb->data;
1060 		if (unlikely(ieee80211_is_pspoll(hdr->frame_control)))
1061 			break; /* must not overwrite AID */
1062 		if (!skb_queue_is_last(&tx->skbs, skb)) {
1063 			struct sk_buff *next = skb_queue_next(&tx->skbs, skb);
1064 			next_len = next->len;
1065 		} else
1066 			next_len = 0;
1067 		group_addr = is_multicast_ether_addr(hdr->addr1);
1068 
1069 		hdr->duration_id =
1070 			ieee80211_duration(tx, skb, group_addr, next_len);
1071 	}
1072 
1073 	return TX_CONTINUE;
1074 }
1075 
1076 /* actual transmit path */
1077 
1078 static bool ieee80211_tx_prep_agg(struct ieee80211_tx_data *tx,
1079 				  struct sk_buff *skb,
1080 				  struct ieee80211_tx_info *info,
1081 				  struct tid_ampdu_tx *tid_tx,
1082 				  int tid)
1083 {
1084 	bool queued = false;
1085 	bool reset_agg_timer = false;
1086 	struct sk_buff *purge_skb = NULL;
1087 
1088 	if (test_bit(HT_AGG_STATE_OPERATIONAL, &tid_tx->state)) {
1089 		info->flags |= IEEE80211_TX_CTL_AMPDU;
1090 		reset_agg_timer = true;
1091 	} else if (test_bit(HT_AGG_STATE_WANT_START, &tid_tx->state)) {
1092 		/*
1093 		 * nothing -- this aggregation session is being started
1094 		 * but that might still fail with the driver
1095 		 */
1096 	} else if (!tx->sta->sta.txq[tid]) {
1097 		spin_lock(&tx->sta->lock);
1098 		/*
1099 		 * Need to re-check now, because we may get here
1100 		 *
1101 		 *  1) in the window during which the setup is actually
1102 		 *     already done, but not marked yet because not all
1103 		 *     packets are spliced over to the driver pending
1104 		 *     queue yet -- if this happened we acquire the lock
1105 		 *     either before or after the splice happens, but
1106 		 *     need to recheck which of these cases happened.
1107 		 *
1108 		 *  2) during session teardown, if the OPERATIONAL bit
1109 		 *     was cleared due to the teardown but the pointer
1110 		 *     hasn't been assigned NULL yet (or we loaded it
1111 		 *     before it was assigned) -- in this case it may
1112 		 *     now be NULL which means we should just let the
1113 		 *     packet pass through because splicing the frames
1114 		 *     back is already done.
1115 		 */
1116 		tid_tx = rcu_dereference_protected_tid_tx(tx->sta, tid);
1117 
1118 		if (!tid_tx) {
1119 			/* do nothing, let packet pass through */
1120 		} else if (test_bit(HT_AGG_STATE_OPERATIONAL, &tid_tx->state)) {
1121 			info->flags |= IEEE80211_TX_CTL_AMPDU;
1122 			reset_agg_timer = true;
1123 		} else {
1124 			queued = true;
1125 			if (info->flags & IEEE80211_TX_CTL_NO_PS_BUFFER) {
1126 				clear_sta_flag(tx->sta, WLAN_STA_SP);
1127 				ps_dbg(tx->sta->sdata,
1128 				       "STA %pM aid %d: SP frame queued, close the SP w/o telling the peer\n",
1129 				       tx->sta->sta.addr, tx->sta->sta.aid);
1130 			}
1131 			info->control.vif = &tx->sdata->vif;
1132 			info->control.flags |= IEEE80211_TX_INTCFL_NEED_TXPROCESSING;
1133 			info->flags &= ~IEEE80211_TX_TEMPORARY_FLAGS;
1134 			__skb_queue_tail(&tid_tx->pending, skb);
1135 			if (skb_queue_len(&tid_tx->pending) > STA_MAX_TX_BUFFER)
1136 				purge_skb = __skb_dequeue(&tid_tx->pending);
1137 		}
1138 		spin_unlock(&tx->sta->lock);
1139 
1140 		if (purge_skb)
1141 			ieee80211_free_txskb(&tx->local->hw, purge_skb);
1142 	}
1143 
1144 	/* reset session timer */
1145 	if (reset_agg_timer)
1146 		tid_tx->last_tx = jiffies;
1147 
1148 	return queued;
1149 }
1150 
1151 static void
1152 ieee80211_aggr_check(struct ieee80211_sub_if_data *sdata,
1153 		     struct sta_info *sta,
1154 		     struct sk_buff *skb)
1155 {
1156 	struct rate_control_ref *ref = sdata->local->rate_ctrl;
1157 	u16 tid;
1158 
1159 	if (!ref || !(ref->ops->capa & RATE_CTRL_CAPA_AMPDU_TRIGGER))
1160 		return;
1161 
1162 	if (!sta || !sta->sta.ht_cap.ht_supported ||
1163 	    !sta->sta.wme || skb_get_queue_mapping(skb) == IEEE80211_AC_VO ||
1164 	    skb->protocol == sdata->control_port_protocol)
1165 		return;
1166 
1167 	tid = skb->priority & IEEE80211_QOS_CTL_TID_MASK;
1168 	if (likely(sta->ampdu_mlme.tid_tx[tid]))
1169 		return;
1170 
1171 	ieee80211_start_tx_ba_session(&sta->sta, tid, 0);
1172 }
1173 
1174 /*
1175  * initialises @tx
1176  * pass %NULL for the station if unknown, a valid pointer if known
1177  * or an ERR_PTR() if the station is known not to exist
1178  */
1179 static ieee80211_tx_result
1180 ieee80211_tx_prepare(struct ieee80211_sub_if_data *sdata,
1181 		     struct ieee80211_tx_data *tx,
1182 		     struct sta_info *sta, struct sk_buff *skb)
1183 {
1184 	struct ieee80211_local *local = sdata->local;
1185 	struct ieee80211_hdr *hdr;
1186 	struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1187 	bool aggr_check = false;
1188 	int tid;
1189 
1190 	memset(tx, 0, sizeof(*tx));
1191 	tx->skb = skb;
1192 	tx->local = local;
1193 	tx->sdata = sdata;
1194 	__skb_queue_head_init(&tx->skbs);
1195 
1196 	/*
1197 	 * If this flag is set to true anywhere, and we get here,
1198 	 * we are doing the needed processing, so remove the flag
1199 	 * now.
1200 	 */
1201 	info->control.flags &= ~IEEE80211_TX_INTCFL_NEED_TXPROCESSING;
1202 
1203 	hdr = (struct ieee80211_hdr *) skb->data;
1204 
1205 	if (likely(sta)) {
1206 		if (!IS_ERR(sta))
1207 			tx->sta = sta;
1208 	} else {
1209 		if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN) {
1210 			tx->sta = rcu_dereference(sdata->u.vlan.sta);
1211 			if (!tx->sta && sdata->wdev.use_4addr)
1212 				return TX_DROP;
1213 		} else if (tx->sdata->control_port_protocol == tx->skb->protocol) {
1214 			tx->sta = sta_info_get_bss(sdata, hdr->addr1);
1215 		}
1216 		if (!tx->sta && !is_multicast_ether_addr(hdr->addr1)) {
1217 			tx->sta = sta_info_get(sdata, hdr->addr1);
1218 			aggr_check = true;
1219 		}
1220 	}
1221 
1222 	if (tx->sta && ieee80211_is_data_qos(hdr->frame_control) &&
1223 	    !ieee80211_is_qos_nullfunc(hdr->frame_control) &&
1224 	    ieee80211_hw_check(&local->hw, AMPDU_AGGREGATION) &&
1225 	    !ieee80211_hw_check(&local->hw, TX_AMPDU_SETUP_IN_HW)) {
1226 		struct tid_ampdu_tx *tid_tx;
1227 
1228 		tid = ieee80211_get_tid(hdr);
1229 		tid_tx = rcu_dereference(tx->sta->ampdu_mlme.tid_tx[tid]);
1230 		if (!tid_tx && aggr_check) {
1231 			ieee80211_aggr_check(sdata, tx->sta, skb);
1232 			tid_tx = rcu_dereference(tx->sta->ampdu_mlme.tid_tx[tid]);
1233 		}
1234 
1235 		if (tid_tx) {
1236 			bool queued;
1237 
1238 			queued = ieee80211_tx_prep_agg(tx, skb, info,
1239 						       tid_tx, tid);
1240 
1241 			if (unlikely(queued))
1242 				return TX_QUEUED;
1243 		}
1244 	}
1245 
1246 	if (is_multicast_ether_addr(hdr->addr1)) {
1247 		tx->flags &= ~IEEE80211_TX_UNICAST;
1248 		info->flags |= IEEE80211_TX_CTL_NO_ACK;
1249 	} else
1250 		tx->flags |= IEEE80211_TX_UNICAST;
1251 
1252 	if (!(info->flags & IEEE80211_TX_CTL_DONTFRAG)) {
1253 		if (!(tx->flags & IEEE80211_TX_UNICAST) ||
1254 		    skb->len + FCS_LEN <= local->hw.wiphy->frag_threshold ||
1255 		    info->flags & IEEE80211_TX_CTL_AMPDU)
1256 			info->flags |= IEEE80211_TX_CTL_DONTFRAG;
1257 	}
1258 
1259 	if (!tx->sta)
1260 		info->flags |= IEEE80211_TX_CTL_CLEAR_PS_FILT;
1261 	else if (test_and_clear_sta_flag(tx->sta, WLAN_STA_CLEAR_PS_FILT)) {
1262 		info->flags |= IEEE80211_TX_CTL_CLEAR_PS_FILT;
1263 		ieee80211_check_fast_xmit(tx->sta);
1264 	}
1265 
1266 	info->flags |= IEEE80211_TX_CTL_FIRST_FRAGMENT;
1267 
1268 	return TX_CONTINUE;
1269 }
1270 
1271 static struct txq_info *ieee80211_get_txq(struct ieee80211_local *local,
1272 					  struct ieee80211_vif *vif,
1273 					  struct sta_info *sta,
1274 					  struct sk_buff *skb)
1275 {
1276 	struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
1277 	struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1278 	struct ieee80211_txq *txq = NULL;
1279 
1280 	if ((info->flags & IEEE80211_TX_CTL_SEND_AFTER_DTIM) ||
1281 	    (info->control.flags & IEEE80211_TX_CTRL_PS_RESPONSE))
1282 		return NULL;
1283 
1284 	if (!(info->flags & IEEE80211_TX_CTL_HW_80211_ENCAP) &&
1285 	    unlikely(!ieee80211_is_data_present(hdr->frame_control))) {
1286 		if ((!ieee80211_is_mgmt(hdr->frame_control) ||
1287 		     ieee80211_is_bufferable_mmpdu(hdr->frame_control) ||
1288 		     vif->type == NL80211_IFTYPE_STATION) &&
1289 		    sta && sta->uploaded) {
1290 			/*
1291 			 * This will be NULL if the driver didn't set the
1292 			 * opt-in hardware flag.
1293 			 */
1294 			txq = sta->sta.txq[IEEE80211_NUM_TIDS];
1295 		}
1296 	} else if (sta) {
1297 		u8 tid = skb->priority & IEEE80211_QOS_CTL_TID_MASK;
1298 
1299 		if (!sta->uploaded)
1300 			return NULL;
1301 
1302 		txq = sta->sta.txq[tid];
1303 	} else if (vif) {
1304 		txq = vif->txq;
1305 	}
1306 
1307 	if (!txq)
1308 		return NULL;
1309 
1310 	return to_txq_info(txq);
1311 }
1312 
1313 static void ieee80211_set_skb_enqueue_time(struct sk_buff *skb)
1314 {
1315 	IEEE80211_SKB_CB(skb)->control.enqueue_time = codel_get_time();
1316 }
1317 
1318 static u32 codel_skb_len_func(const struct sk_buff *skb)
1319 {
1320 	return skb->len;
1321 }
1322 
1323 static codel_time_t codel_skb_time_func(const struct sk_buff *skb)
1324 {
1325 	const struct ieee80211_tx_info *info;
1326 
1327 	info = (const struct ieee80211_tx_info *)skb->cb;
1328 	return info->control.enqueue_time;
1329 }
1330 
1331 static struct sk_buff *codel_dequeue_func(struct codel_vars *cvars,
1332 					  void *ctx)
1333 {
1334 	struct ieee80211_local *local;
1335 	struct txq_info *txqi;
1336 	struct fq *fq;
1337 	struct fq_flow *flow;
1338 
1339 	txqi = ctx;
1340 	local = vif_to_sdata(txqi->txq.vif)->local;
1341 	fq = &local->fq;
1342 
1343 	if (cvars == &txqi->def_cvars)
1344 		flow = &txqi->tin.default_flow;
1345 	else
1346 		flow = &fq->flows[cvars - local->cvars];
1347 
1348 	return fq_flow_dequeue(fq, flow);
1349 }
1350 
1351 static void codel_drop_func(struct sk_buff *skb,
1352 			    void *ctx)
1353 {
1354 	struct ieee80211_local *local;
1355 	struct ieee80211_hw *hw;
1356 	struct txq_info *txqi;
1357 
1358 	txqi = ctx;
1359 	local = vif_to_sdata(txqi->txq.vif)->local;
1360 	hw = &local->hw;
1361 
1362 	ieee80211_free_txskb(hw, skb);
1363 }
1364 
1365 static struct sk_buff *fq_tin_dequeue_func(struct fq *fq,
1366 					   struct fq_tin *tin,
1367 					   struct fq_flow *flow)
1368 {
1369 	struct ieee80211_local *local;
1370 	struct txq_info *txqi;
1371 	struct codel_vars *cvars;
1372 	struct codel_params *cparams;
1373 	struct codel_stats *cstats;
1374 
1375 	local = container_of(fq, struct ieee80211_local, fq);
1376 	txqi = container_of(tin, struct txq_info, tin);
1377 	cstats = &txqi->cstats;
1378 
1379 	if (txqi->txq.sta) {
1380 		struct sta_info *sta = container_of(txqi->txq.sta,
1381 						    struct sta_info, sta);
1382 		cparams = &sta->cparams;
1383 	} else {
1384 		cparams = &local->cparams;
1385 	}
1386 
1387 	if (flow == &tin->default_flow)
1388 		cvars = &txqi->def_cvars;
1389 	else
1390 		cvars = &local->cvars[flow - fq->flows];
1391 
1392 	return codel_dequeue(txqi,
1393 			     &flow->backlog,
1394 			     cparams,
1395 			     cvars,
1396 			     cstats,
1397 			     codel_skb_len_func,
1398 			     codel_skb_time_func,
1399 			     codel_drop_func,
1400 			     codel_dequeue_func);
1401 }
1402 
1403 static void fq_skb_free_func(struct fq *fq,
1404 			     struct fq_tin *tin,
1405 			     struct fq_flow *flow,
1406 			     struct sk_buff *skb)
1407 {
1408 	struct ieee80211_local *local;
1409 
1410 	local = container_of(fq, struct ieee80211_local, fq);
1411 	ieee80211_free_txskb(&local->hw, skb);
1412 }
1413 
1414 static void ieee80211_txq_enqueue(struct ieee80211_local *local,
1415 				  struct txq_info *txqi,
1416 				  struct sk_buff *skb)
1417 {
1418 	struct fq *fq = &local->fq;
1419 	struct fq_tin *tin = &txqi->tin;
1420 	u32 flow_idx = fq_flow_idx(fq, skb);
1421 
1422 	ieee80211_set_skb_enqueue_time(skb);
1423 
1424 	spin_lock_bh(&fq->lock);
1425 	/*
1426 	 * For management frames, don't really apply codel etc.,
1427 	 * we don't want to apply any shaping or anything we just
1428 	 * want to simplify the driver API by having them on the
1429 	 * txqi.
1430 	 */
1431 	if (unlikely(txqi->txq.tid == IEEE80211_NUM_TIDS)) {
1432 		IEEE80211_SKB_CB(skb)->control.flags |=
1433 			IEEE80211_TX_INTCFL_NEED_TXPROCESSING;
1434 		__skb_queue_tail(&txqi->frags, skb);
1435 	} else {
1436 		fq_tin_enqueue(fq, tin, flow_idx, skb,
1437 			       fq_skb_free_func);
1438 	}
1439 	spin_unlock_bh(&fq->lock);
1440 }
1441 
1442 static bool fq_vlan_filter_func(struct fq *fq, struct fq_tin *tin,
1443 				struct fq_flow *flow, struct sk_buff *skb,
1444 				void *data)
1445 {
1446 	struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1447 
1448 	return info->control.vif == data;
1449 }
1450 
1451 void ieee80211_txq_remove_vlan(struct ieee80211_local *local,
1452 			       struct ieee80211_sub_if_data *sdata)
1453 {
1454 	struct fq *fq = &local->fq;
1455 	struct txq_info *txqi;
1456 	struct fq_tin *tin;
1457 	struct ieee80211_sub_if_data *ap;
1458 
1459 	if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_AP_VLAN))
1460 		return;
1461 
1462 	ap = container_of(sdata->bss, struct ieee80211_sub_if_data, u.ap);
1463 
1464 	if (!ap->vif.txq)
1465 		return;
1466 
1467 	txqi = to_txq_info(ap->vif.txq);
1468 	tin = &txqi->tin;
1469 
1470 	spin_lock_bh(&fq->lock);
1471 	fq_tin_filter(fq, tin, fq_vlan_filter_func, &sdata->vif,
1472 		      fq_skb_free_func);
1473 	spin_unlock_bh(&fq->lock);
1474 }
1475 
1476 void ieee80211_txq_init(struct ieee80211_sub_if_data *sdata,
1477 			struct sta_info *sta,
1478 			struct txq_info *txqi, int tid)
1479 {
1480 	fq_tin_init(&txqi->tin);
1481 	codel_vars_init(&txqi->def_cvars);
1482 	codel_stats_init(&txqi->cstats);
1483 	__skb_queue_head_init(&txqi->frags);
1484 	RB_CLEAR_NODE(&txqi->schedule_order);
1485 
1486 	txqi->txq.vif = &sdata->vif;
1487 
1488 	if (!sta) {
1489 		sdata->vif.txq = &txqi->txq;
1490 		txqi->txq.tid = 0;
1491 		txqi->txq.ac = IEEE80211_AC_BE;
1492 
1493 		return;
1494 	}
1495 
1496 	if (tid == IEEE80211_NUM_TIDS) {
1497 		if (sdata->vif.type == NL80211_IFTYPE_STATION) {
1498 			/* Drivers need to opt in to the management MPDU TXQ */
1499 			if (!ieee80211_hw_check(&sdata->local->hw,
1500 						STA_MMPDU_TXQ))
1501 				return;
1502 		} else if (!ieee80211_hw_check(&sdata->local->hw,
1503 					       BUFF_MMPDU_TXQ)) {
1504 			/* Drivers need to opt in to the bufferable MMPDU TXQ */
1505 			return;
1506 		}
1507 		txqi->txq.ac = IEEE80211_AC_VO;
1508 	} else {
1509 		txqi->txq.ac = ieee80211_ac_from_tid(tid);
1510 	}
1511 
1512 	txqi->txq.sta = &sta->sta;
1513 	txqi->txq.tid = tid;
1514 	sta->sta.txq[tid] = &txqi->txq;
1515 }
1516 
1517 void ieee80211_txq_purge(struct ieee80211_local *local,
1518 			 struct txq_info *txqi)
1519 {
1520 	struct fq *fq = &local->fq;
1521 	struct fq_tin *tin = &txqi->tin;
1522 
1523 	spin_lock_bh(&fq->lock);
1524 	fq_tin_reset(fq, tin, fq_skb_free_func);
1525 	ieee80211_purge_tx_queue(&local->hw, &txqi->frags);
1526 	spin_unlock_bh(&fq->lock);
1527 
1528 	ieee80211_unschedule_txq(&local->hw, &txqi->txq, true);
1529 }
1530 
1531 void ieee80211_txq_set_params(struct ieee80211_local *local)
1532 {
1533 	if (local->hw.wiphy->txq_limit)
1534 		local->fq.limit = local->hw.wiphy->txq_limit;
1535 	else
1536 		local->hw.wiphy->txq_limit = local->fq.limit;
1537 
1538 	if (local->hw.wiphy->txq_memory_limit)
1539 		local->fq.memory_limit = local->hw.wiphy->txq_memory_limit;
1540 	else
1541 		local->hw.wiphy->txq_memory_limit = local->fq.memory_limit;
1542 
1543 	if (local->hw.wiphy->txq_quantum)
1544 		local->fq.quantum = local->hw.wiphy->txq_quantum;
1545 	else
1546 		local->hw.wiphy->txq_quantum = local->fq.quantum;
1547 }
1548 
1549 int ieee80211_txq_setup_flows(struct ieee80211_local *local)
1550 {
1551 	struct fq *fq = &local->fq;
1552 	int ret;
1553 	int i;
1554 	bool supp_vht = false;
1555 	enum nl80211_band band;
1556 
1557 	if (!local->ops->wake_tx_queue)
1558 		return 0;
1559 
1560 	ret = fq_init(fq, 4096);
1561 	if (ret)
1562 		return ret;
1563 
1564 	/*
1565 	 * If the hardware doesn't support VHT, it is safe to limit the maximum
1566 	 * queue size. 4 Mbytes is 64 max-size aggregates in 802.11n.
1567 	 */
1568 	for (band = 0; band < NUM_NL80211_BANDS; band++) {
1569 		struct ieee80211_supported_band *sband;
1570 
1571 		sband = local->hw.wiphy->bands[band];
1572 		if (!sband)
1573 			continue;
1574 
1575 		supp_vht = supp_vht || sband->vht_cap.vht_supported;
1576 	}
1577 
1578 	if (!supp_vht)
1579 		fq->memory_limit = 4 << 20; /* 4 Mbytes */
1580 
1581 	codel_params_init(&local->cparams);
1582 	local->cparams.interval = MS2TIME(100);
1583 	local->cparams.target = MS2TIME(20);
1584 	local->cparams.ecn = true;
1585 
1586 	local->cvars = kcalloc(fq->flows_cnt, sizeof(local->cvars[0]),
1587 			       GFP_KERNEL);
1588 	if (!local->cvars) {
1589 		spin_lock_bh(&fq->lock);
1590 		fq_reset(fq, fq_skb_free_func);
1591 		spin_unlock_bh(&fq->lock);
1592 		return -ENOMEM;
1593 	}
1594 
1595 	for (i = 0; i < fq->flows_cnt; i++)
1596 		codel_vars_init(&local->cvars[i]);
1597 
1598 	ieee80211_txq_set_params(local);
1599 
1600 	return 0;
1601 }
1602 
1603 void ieee80211_txq_teardown_flows(struct ieee80211_local *local)
1604 {
1605 	struct fq *fq = &local->fq;
1606 
1607 	if (!local->ops->wake_tx_queue)
1608 		return;
1609 
1610 	kfree(local->cvars);
1611 	local->cvars = NULL;
1612 
1613 	spin_lock_bh(&fq->lock);
1614 	fq_reset(fq, fq_skb_free_func);
1615 	spin_unlock_bh(&fq->lock);
1616 }
1617 
1618 static bool ieee80211_queue_skb(struct ieee80211_local *local,
1619 				struct ieee80211_sub_if_data *sdata,
1620 				struct sta_info *sta,
1621 				struct sk_buff *skb)
1622 {
1623 	struct ieee80211_vif *vif;
1624 	struct txq_info *txqi;
1625 
1626 	if (!local->ops->wake_tx_queue ||
1627 	    sdata->vif.type == NL80211_IFTYPE_MONITOR)
1628 		return false;
1629 
1630 	if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
1631 		sdata = container_of(sdata->bss,
1632 				     struct ieee80211_sub_if_data, u.ap);
1633 
1634 	vif = &sdata->vif;
1635 	txqi = ieee80211_get_txq(local, vif, sta, skb);
1636 
1637 	if (!txqi)
1638 		return false;
1639 
1640 	ieee80211_txq_enqueue(local, txqi, skb);
1641 
1642 	schedule_and_wake_txq(local, txqi);
1643 
1644 	return true;
1645 }
1646 
1647 static bool ieee80211_tx_frags(struct ieee80211_local *local,
1648 			       struct ieee80211_vif *vif,
1649 			       struct sta_info *sta,
1650 			       struct sk_buff_head *skbs,
1651 			       bool txpending)
1652 {
1653 	struct ieee80211_tx_control control = {};
1654 	struct sk_buff *skb, *tmp;
1655 	unsigned long flags;
1656 
1657 	skb_queue_walk_safe(skbs, skb, tmp) {
1658 		struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1659 		int q = info->hw_queue;
1660 
1661 #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
1662 		if (WARN_ON_ONCE(q >= local->hw.queues)) {
1663 			__skb_unlink(skb, skbs);
1664 			ieee80211_free_txskb(&local->hw, skb);
1665 			continue;
1666 		}
1667 #endif
1668 
1669 		spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
1670 		if (local->queue_stop_reasons[q] ||
1671 		    (!txpending && !skb_queue_empty(&local->pending[q]))) {
1672 			if (unlikely(info->flags &
1673 				     IEEE80211_TX_INTFL_OFFCHAN_TX_OK)) {
1674 				if (local->queue_stop_reasons[q] &
1675 				    ~BIT(IEEE80211_QUEUE_STOP_REASON_OFFCHANNEL)) {
1676 					/*
1677 					 * Drop off-channel frames if queues
1678 					 * are stopped for any reason other
1679 					 * than off-channel operation. Never
1680 					 * queue them.
1681 					 */
1682 					spin_unlock_irqrestore(
1683 						&local->queue_stop_reason_lock,
1684 						flags);
1685 					ieee80211_purge_tx_queue(&local->hw,
1686 								 skbs);
1687 					return true;
1688 				}
1689 			} else {
1690 
1691 				/*
1692 				 * Since queue is stopped, queue up frames for
1693 				 * later transmission from the tx-pending
1694 				 * tasklet when the queue is woken again.
1695 				 */
1696 				if (txpending)
1697 					skb_queue_splice_init(skbs,
1698 							      &local->pending[q]);
1699 				else
1700 					skb_queue_splice_tail_init(skbs,
1701 								   &local->pending[q]);
1702 
1703 				spin_unlock_irqrestore(&local->queue_stop_reason_lock,
1704 						       flags);
1705 				return false;
1706 			}
1707 		}
1708 		spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
1709 
1710 		info->control.vif = vif;
1711 		control.sta = sta ? &sta->sta : NULL;
1712 
1713 		__skb_unlink(skb, skbs);
1714 		drv_tx(local, &control, skb);
1715 	}
1716 
1717 	return true;
1718 }
1719 
1720 /*
1721  * Returns false if the frame couldn't be transmitted but was queued instead.
1722  */
1723 static bool __ieee80211_tx(struct ieee80211_local *local,
1724 			   struct sk_buff_head *skbs, int led_len,
1725 			   struct sta_info *sta, bool txpending)
1726 {
1727 	struct ieee80211_tx_info *info;
1728 	struct ieee80211_sub_if_data *sdata;
1729 	struct ieee80211_vif *vif;
1730 	struct sk_buff *skb;
1731 	bool result;
1732 	__le16 fc;
1733 
1734 	if (WARN_ON(skb_queue_empty(skbs)))
1735 		return true;
1736 
1737 	skb = skb_peek(skbs);
1738 	fc = ((struct ieee80211_hdr *)skb->data)->frame_control;
1739 	info = IEEE80211_SKB_CB(skb);
1740 	sdata = vif_to_sdata(info->control.vif);
1741 	if (sta && !sta->uploaded)
1742 		sta = NULL;
1743 
1744 	switch (sdata->vif.type) {
1745 	case NL80211_IFTYPE_MONITOR:
1746 		if (sdata->u.mntr.flags & MONITOR_FLAG_ACTIVE) {
1747 			vif = &sdata->vif;
1748 			break;
1749 		}
1750 		sdata = rcu_dereference(local->monitor_sdata);
1751 		if (sdata) {
1752 			vif = &sdata->vif;
1753 			info->hw_queue =
1754 				vif->hw_queue[skb_get_queue_mapping(skb)];
1755 		} else if (ieee80211_hw_check(&local->hw, QUEUE_CONTROL)) {
1756 			ieee80211_purge_tx_queue(&local->hw, skbs);
1757 			return true;
1758 		} else
1759 			vif = NULL;
1760 		break;
1761 	case NL80211_IFTYPE_AP_VLAN:
1762 		sdata = container_of(sdata->bss,
1763 				     struct ieee80211_sub_if_data, u.ap);
1764 		fallthrough;
1765 	default:
1766 		vif = &sdata->vif;
1767 		break;
1768 	}
1769 
1770 	result = ieee80211_tx_frags(local, vif, sta, skbs, txpending);
1771 
1772 	ieee80211_tpt_led_trig_tx(local, fc, led_len);
1773 
1774 	WARN_ON_ONCE(!skb_queue_empty(skbs));
1775 
1776 	return result;
1777 }
1778 
1779 /*
1780  * Invoke TX handlers, return 0 on success and non-zero if the
1781  * frame was dropped or queued.
1782  *
1783  * The handlers are split into an early and late part. The latter is everything
1784  * that can be sensitive to reordering, and will be deferred to after packets
1785  * are dequeued from the intermediate queues (when they are enabled).
1786  */
1787 static int invoke_tx_handlers_early(struct ieee80211_tx_data *tx)
1788 {
1789 	ieee80211_tx_result res = TX_DROP;
1790 
1791 #define CALL_TXH(txh) \
1792 	do {				\
1793 		res = txh(tx);		\
1794 		if (res != TX_CONTINUE)	\
1795 			goto txh_done;	\
1796 	} while (0)
1797 
1798 	CALL_TXH(ieee80211_tx_h_dynamic_ps);
1799 	CALL_TXH(ieee80211_tx_h_check_assoc);
1800 	CALL_TXH(ieee80211_tx_h_ps_buf);
1801 	CALL_TXH(ieee80211_tx_h_check_control_port_protocol);
1802 	CALL_TXH(ieee80211_tx_h_select_key);
1803 
1804  txh_done:
1805 	if (unlikely(res == TX_DROP)) {
1806 		I802_DEBUG_INC(tx->local->tx_handlers_drop);
1807 		if (tx->skb)
1808 			ieee80211_free_txskb(&tx->local->hw, tx->skb);
1809 		else
1810 			ieee80211_purge_tx_queue(&tx->local->hw, &tx->skbs);
1811 		return -1;
1812 	} else if (unlikely(res == TX_QUEUED)) {
1813 		I802_DEBUG_INC(tx->local->tx_handlers_queued);
1814 		return -1;
1815 	}
1816 
1817 	return 0;
1818 }
1819 
1820 /*
1821  * Late handlers can be called while the sta lock is held. Handlers that can
1822  * cause packets to be generated will cause deadlock!
1823  */
1824 static int invoke_tx_handlers_late(struct ieee80211_tx_data *tx)
1825 {
1826 	struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
1827 	ieee80211_tx_result res = TX_CONTINUE;
1828 
1829 	if (unlikely(info->flags & IEEE80211_TX_INTFL_RETRANSMISSION)) {
1830 		__skb_queue_tail(&tx->skbs, tx->skb);
1831 		tx->skb = NULL;
1832 		goto txh_done;
1833 	}
1834 
1835 	if (!ieee80211_hw_check(&tx->local->hw, HAS_RATE_CONTROL))
1836 		CALL_TXH(ieee80211_tx_h_rate_ctrl);
1837 
1838 	CALL_TXH(ieee80211_tx_h_michael_mic_add);
1839 	CALL_TXH(ieee80211_tx_h_sequence);
1840 	CALL_TXH(ieee80211_tx_h_fragment);
1841 	/* handlers after fragment must be aware of tx info fragmentation! */
1842 	CALL_TXH(ieee80211_tx_h_stats);
1843 	CALL_TXH(ieee80211_tx_h_encrypt);
1844 	if (!ieee80211_hw_check(&tx->local->hw, HAS_RATE_CONTROL))
1845 		CALL_TXH(ieee80211_tx_h_calculate_duration);
1846 #undef CALL_TXH
1847 
1848  txh_done:
1849 	if (unlikely(res == TX_DROP)) {
1850 		I802_DEBUG_INC(tx->local->tx_handlers_drop);
1851 		if (tx->skb)
1852 			ieee80211_free_txskb(&tx->local->hw, tx->skb);
1853 		else
1854 			ieee80211_purge_tx_queue(&tx->local->hw, &tx->skbs);
1855 		return -1;
1856 	} else if (unlikely(res == TX_QUEUED)) {
1857 		I802_DEBUG_INC(tx->local->tx_handlers_queued);
1858 		return -1;
1859 	}
1860 
1861 	return 0;
1862 }
1863 
1864 static int invoke_tx_handlers(struct ieee80211_tx_data *tx)
1865 {
1866 	int r = invoke_tx_handlers_early(tx);
1867 
1868 	if (r)
1869 		return r;
1870 	return invoke_tx_handlers_late(tx);
1871 }
1872 
1873 bool ieee80211_tx_prepare_skb(struct ieee80211_hw *hw,
1874 			      struct ieee80211_vif *vif, struct sk_buff *skb,
1875 			      int band, struct ieee80211_sta **sta)
1876 {
1877 	struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
1878 	struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1879 	struct ieee80211_tx_data tx;
1880 	struct sk_buff *skb2;
1881 
1882 	if (ieee80211_tx_prepare(sdata, &tx, NULL, skb) == TX_DROP)
1883 		return false;
1884 
1885 	info->band = band;
1886 	info->control.vif = vif;
1887 	info->hw_queue = vif->hw_queue[skb_get_queue_mapping(skb)];
1888 
1889 	if (invoke_tx_handlers(&tx))
1890 		return false;
1891 
1892 	if (sta) {
1893 		if (tx.sta)
1894 			*sta = &tx.sta->sta;
1895 		else
1896 			*sta = NULL;
1897 	}
1898 
1899 	/* this function isn't suitable for fragmented data frames */
1900 	skb2 = __skb_dequeue(&tx.skbs);
1901 	if (WARN_ON(skb2 != skb || !skb_queue_empty(&tx.skbs))) {
1902 		ieee80211_free_txskb(hw, skb2);
1903 		ieee80211_purge_tx_queue(hw, &tx.skbs);
1904 		return false;
1905 	}
1906 
1907 	return true;
1908 }
1909 EXPORT_SYMBOL(ieee80211_tx_prepare_skb);
1910 
1911 /*
1912  * Returns false if the frame couldn't be transmitted but was queued instead.
1913  */
1914 static bool ieee80211_tx(struct ieee80211_sub_if_data *sdata,
1915 			 struct sta_info *sta, struct sk_buff *skb,
1916 			 bool txpending)
1917 {
1918 	struct ieee80211_local *local = sdata->local;
1919 	struct ieee80211_tx_data tx;
1920 	ieee80211_tx_result res_prepare;
1921 	struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1922 	bool result = true;
1923 	int led_len;
1924 
1925 	if (unlikely(skb->len < 10)) {
1926 		dev_kfree_skb(skb);
1927 		return true;
1928 	}
1929 
1930 	/* initialises tx */
1931 	led_len = skb->len;
1932 	res_prepare = ieee80211_tx_prepare(sdata, &tx, sta, skb);
1933 
1934 	if (unlikely(res_prepare == TX_DROP)) {
1935 		ieee80211_free_txskb(&local->hw, skb);
1936 		return true;
1937 	} else if (unlikely(res_prepare == TX_QUEUED)) {
1938 		return true;
1939 	}
1940 
1941 	/* set up hw_queue value early */
1942 	if (!(info->flags & IEEE80211_TX_CTL_TX_OFFCHAN) ||
1943 	    !ieee80211_hw_check(&local->hw, QUEUE_CONTROL))
1944 		info->hw_queue =
1945 			sdata->vif.hw_queue[skb_get_queue_mapping(skb)];
1946 
1947 	if (invoke_tx_handlers_early(&tx))
1948 		return true;
1949 
1950 	if (ieee80211_queue_skb(local, sdata, tx.sta, tx.skb))
1951 		return true;
1952 
1953 	if (!invoke_tx_handlers_late(&tx))
1954 		result = __ieee80211_tx(local, &tx.skbs, led_len,
1955 					tx.sta, txpending);
1956 
1957 	return result;
1958 }
1959 
1960 /* device xmit handlers */
1961 
1962 enum ieee80211_encrypt {
1963 	ENCRYPT_NO,
1964 	ENCRYPT_MGMT,
1965 	ENCRYPT_DATA,
1966 };
1967 
1968 static int ieee80211_skb_resize(struct ieee80211_sub_if_data *sdata,
1969 				struct sk_buff *skb,
1970 				int head_need,
1971 				enum ieee80211_encrypt encrypt)
1972 {
1973 	struct ieee80211_local *local = sdata->local;
1974 	bool enc_tailroom;
1975 	int tail_need = 0;
1976 
1977 	enc_tailroom = encrypt == ENCRYPT_MGMT ||
1978 		       (encrypt == ENCRYPT_DATA &&
1979 			sdata->crypto_tx_tailroom_needed_cnt);
1980 
1981 	if (enc_tailroom) {
1982 		tail_need = IEEE80211_ENCRYPT_TAILROOM;
1983 		tail_need -= skb_tailroom(skb);
1984 		tail_need = max_t(int, tail_need, 0);
1985 	}
1986 
1987 	if (skb_cloned(skb) &&
1988 	    (!ieee80211_hw_check(&local->hw, SUPPORTS_CLONED_SKBS) ||
1989 	     !skb_clone_writable(skb, ETH_HLEN) || enc_tailroom))
1990 		I802_DEBUG_INC(local->tx_expand_skb_head_cloned);
1991 	else if (head_need || tail_need)
1992 		I802_DEBUG_INC(local->tx_expand_skb_head);
1993 	else
1994 		return 0;
1995 
1996 	if (pskb_expand_head(skb, head_need, tail_need, GFP_ATOMIC)) {
1997 		wiphy_debug(local->hw.wiphy,
1998 			    "failed to reallocate TX buffer\n");
1999 		return -ENOMEM;
2000 	}
2001 
2002 	return 0;
2003 }
2004 
2005 void ieee80211_xmit(struct ieee80211_sub_if_data *sdata,
2006 		    struct sta_info *sta, struct sk_buff *skb)
2007 {
2008 	struct ieee80211_local *local = sdata->local;
2009 	struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
2010 	struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
2011 	int headroom;
2012 	enum ieee80211_encrypt encrypt;
2013 
2014 	if (info->flags & IEEE80211_TX_INTFL_DONT_ENCRYPT)
2015 		encrypt = ENCRYPT_NO;
2016 	else if (ieee80211_is_mgmt(hdr->frame_control))
2017 		encrypt = ENCRYPT_MGMT;
2018 	else
2019 		encrypt = ENCRYPT_DATA;
2020 
2021 	headroom = local->tx_headroom;
2022 	if (encrypt != ENCRYPT_NO)
2023 		headroom += sdata->encrypt_headroom;
2024 	headroom -= skb_headroom(skb);
2025 	headroom = max_t(int, 0, headroom);
2026 
2027 	if (ieee80211_skb_resize(sdata, skb, headroom, encrypt)) {
2028 		ieee80211_free_txskb(&local->hw, skb);
2029 		return;
2030 	}
2031 
2032 	/* reload after potential resize */
2033 	hdr = (struct ieee80211_hdr *) skb->data;
2034 	info->control.vif = &sdata->vif;
2035 
2036 	if (ieee80211_vif_is_mesh(&sdata->vif)) {
2037 		if (ieee80211_is_data(hdr->frame_control) &&
2038 		    is_unicast_ether_addr(hdr->addr1)) {
2039 			if (mesh_nexthop_resolve(sdata, skb))
2040 				return; /* skb queued: don't free */
2041 		} else {
2042 			ieee80211_mps_set_frame_flags(sdata, NULL, hdr);
2043 		}
2044 	}
2045 
2046 	ieee80211_set_qos_hdr(sdata, skb);
2047 	ieee80211_tx(sdata, sta, skb, false);
2048 }
2049 
2050 static bool ieee80211_validate_radiotap_len(struct sk_buff *skb)
2051 {
2052 	struct ieee80211_radiotap_header *rthdr =
2053 		(struct ieee80211_radiotap_header *)skb->data;
2054 
2055 	/* check for not even having the fixed radiotap header part */
2056 	if (unlikely(skb->len < sizeof(struct ieee80211_radiotap_header)))
2057 		return false; /* too short to be possibly valid */
2058 
2059 	/* is it a header version we can trust to find length from? */
2060 	if (unlikely(rthdr->it_version))
2061 		return false; /* only version 0 is supported */
2062 
2063 	/* does the skb contain enough to deliver on the alleged length? */
2064 	if (unlikely(skb->len < ieee80211_get_radiotap_len(skb->data)))
2065 		return false; /* skb too short for claimed rt header extent */
2066 
2067 	return true;
2068 }
2069 
2070 bool ieee80211_parse_tx_radiotap(struct sk_buff *skb,
2071 				 struct net_device *dev)
2072 {
2073 	struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
2074 	struct ieee80211_radiotap_iterator iterator;
2075 	struct ieee80211_radiotap_header *rthdr =
2076 		(struct ieee80211_radiotap_header *) skb->data;
2077 	struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
2078 	int ret = ieee80211_radiotap_iterator_init(&iterator, rthdr, skb->len,
2079 						   NULL);
2080 	u16 txflags;
2081 	u16 rate = 0;
2082 	bool rate_found = false;
2083 	u8 rate_retries = 0;
2084 	u16 rate_flags = 0;
2085 	u8 mcs_known, mcs_flags, mcs_bw;
2086 	u16 vht_known;
2087 	u8 vht_mcs = 0, vht_nss = 0;
2088 	int i;
2089 
2090 	if (!ieee80211_validate_radiotap_len(skb))
2091 		return false;
2092 
2093 	info->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT |
2094 		       IEEE80211_TX_CTL_DONTFRAG;
2095 
2096 	/*
2097 	 * for every radiotap entry that is present
2098 	 * (ieee80211_radiotap_iterator_next returns -ENOENT when no more
2099 	 * entries present, or -EINVAL on error)
2100 	 */
2101 
2102 	while (!ret) {
2103 		ret = ieee80211_radiotap_iterator_next(&iterator);
2104 
2105 		if (ret)
2106 			continue;
2107 
2108 		/* see if this argument is something we can use */
2109 		switch (iterator.this_arg_index) {
2110 		/*
2111 		 * You must take care when dereferencing iterator.this_arg
2112 		 * for multibyte types... the pointer is not aligned.  Use
2113 		 * get_unaligned((type *)iterator.this_arg) to dereference
2114 		 * iterator.this_arg for type "type" safely on all arches.
2115 		*/
2116 		case IEEE80211_RADIOTAP_FLAGS:
2117 			if (*iterator.this_arg & IEEE80211_RADIOTAP_F_FCS) {
2118 				/*
2119 				 * this indicates that the skb we have been
2120 				 * handed has the 32-bit FCS CRC at the end...
2121 				 * we should react to that by snipping it off
2122 				 * because it will be recomputed and added
2123 				 * on transmission
2124 				 */
2125 				if (skb->len < (iterator._max_length + FCS_LEN))
2126 					return false;
2127 
2128 				skb_trim(skb, skb->len - FCS_LEN);
2129 			}
2130 			if (*iterator.this_arg & IEEE80211_RADIOTAP_F_WEP)
2131 				info->flags &= ~IEEE80211_TX_INTFL_DONT_ENCRYPT;
2132 			if (*iterator.this_arg & IEEE80211_RADIOTAP_F_FRAG)
2133 				info->flags &= ~IEEE80211_TX_CTL_DONTFRAG;
2134 			break;
2135 
2136 		case IEEE80211_RADIOTAP_TX_FLAGS:
2137 			txflags = get_unaligned_le16(iterator.this_arg);
2138 			if (txflags & IEEE80211_RADIOTAP_F_TX_NOACK)
2139 				info->flags |= IEEE80211_TX_CTL_NO_ACK;
2140 			if (txflags & IEEE80211_RADIOTAP_F_TX_NOSEQNO)
2141 				info->control.flags |= IEEE80211_TX_CTRL_NO_SEQNO;
2142 			if (txflags & IEEE80211_RADIOTAP_F_TX_ORDER)
2143 				info->control.flags |=
2144 					IEEE80211_TX_CTRL_DONT_REORDER;
2145 			break;
2146 
2147 		case IEEE80211_RADIOTAP_RATE:
2148 			rate = *iterator.this_arg;
2149 			rate_flags = 0;
2150 			rate_found = true;
2151 			break;
2152 
2153 		case IEEE80211_RADIOTAP_DATA_RETRIES:
2154 			rate_retries = *iterator.this_arg;
2155 			break;
2156 
2157 		case IEEE80211_RADIOTAP_MCS:
2158 			mcs_known = iterator.this_arg[0];
2159 			mcs_flags = iterator.this_arg[1];
2160 			if (!(mcs_known & IEEE80211_RADIOTAP_MCS_HAVE_MCS))
2161 				break;
2162 
2163 			rate_found = true;
2164 			rate = iterator.this_arg[2];
2165 			rate_flags = IEEE80211_TX_RC_MCS;
2166 
2167 			if (mcs_known & IEEE80211_RADIOTAP_MCS_HAVE_GI &&
2168 			    mcs_flags & IEEE80211_RADIOTAP_MCS_SGI)
2169 				rate_flags |= IEEE80211_TX_RC_SHORT_GI;
2170 
2171 			mcs_bw = mcs_flags & IEEE80211_RADIOTAP_MCS_BW_MASK;
2172 			if (mcs_known & IEEE80211_RADIOTAP_MCS_HAVE_BW &&
2173 			    mcs_bw == IEEE80211_RADIOTAP_MCS_BW_40)
2174 				rate_flags |= IEEE80211_TX_RC_40_MHZ_WIDTH;
2175 
2176 			if (mcs_known & IEEE80211_RADIOTAP_MCS_HAVE_FEC &&
2177 			    mcs_flags & IEEE80211_RADIOTAP_MCS_FEC_LDPC)
2178 				info->flags |= IEEE80211_TX_CTL_LDPC;
2179 
2180 			if (mcs_known & IEEE80211_RADIOTAP_MCS_HAVE_STBC) {
2181 				u8 stbc = u8_get_bits(mcs_flags,
2182 						      IEEE80211_RADIOTAP_MCS_STBC_MASK);
2183 
2184 				info->flags |=
2185 					u32_encode_bits(stbc,
2186 							IEEE80211_TX_CTL_STBC);
2187 			}
2188 			break;
2189 
2190 		case IEEE80211_RADIOTAP_VHT:
2191 			vht_known = get_unaligned_le16(iterator.this_arg);
2192 			rate_found = true;
2193 
2194 			rate_flags = IEEE80211_TX_RC_VHT_MCS;
2195 			if ((vht_known & IEEE80211_RADIOTAP_VHT_KNOWN_GI) &&
2196 			    (iterator.this_arg[2] &
2197 			     IEEE80211_RADIOTAP_VHT_FLAG_SGI))
2198 				rate_flags |= IEEE80211_TX_RC_SHORT_GI;
2199 			if (vht_known &
2200 			    IEEE80211_RADIOTAP_VHT_KNOWN_BANDWIDTH) {
2201 				if (iterator.this_arg[3] == 1)
2202 					rate_flags |=
2203 						IEEE80211_TX_RC_40_MHZ_WIDTH;
2204 				else if (iterator.this_arg[3] == 4)
2205 					rate_flags |=
2206 						IEEE80211_TX_RC_80_MHZ_WIDTH;
2207 				else if (iterator.this_arg[3] == 11)
2208 					rate_flags |=
2209 						IEEE80211_TX_RC_160_MHZ_WIDTH;
2210 			}
2211 
2212 			vht_mcs = iterator.this_arg[4] >> 4;
2213 			if (vht_mcs > 11)
2214 				vht_mcs = 0;
2215 			vht_nss = iterator.this_arg[4] & 0xF;
2216 			if (!vht_nss || vht_nss > 8)
2217 				vht_nss = 1;
2218 			break;
2219 
2220 		/*
2221 		 * Please update the file
2222 		 * Documentation/networking/mac80211-injection.rst
2223 		 * when parsing new fields here.
2224 		 */
2225 
2226 		default:
2227 			break;
2228 		}
2229 	}
2230 
2231 	if (ret != -ENOENT) /* ie, if we didn't simply run out of fields */
2232 		return false;
2233 
2234 	if (rate_found) {
2235 		struct ieee80211_supported_band *sband =
2236 			local->hw.wiphy->bands[info->band];
2237 
2238 		info->control.flags |= IEEE80211_TX_CTRL_RATE_INJECT;
2239 
2240 		for (i = 0; i < IEEE80211_TX_MAX_RATES; i++) {
2241 			info->control.rates[i].idx = -1;
2242 			info->control.rates[i].flags = 0;
2243 			info->control.rates[i].count = 0;
2244 		}
2245 
2246 		if (rate_flags & IEEE80211_TX_RC_MCS) {
2247 			info->control.rates[0].idx = rate;
2248 		} else if (rate_flags & IEEE80211_TX_RC_VHT_MCS) {
2249 			ieee80211_rate_set_vht(info->control.rates, vht_mcs,
2250 					       vht_nss);
2251 		} else if (sband) {
2252 			for (i = 0; i < sband->n_bitrates; i++) {
2253 				if (rate * 5 != sband->bitrates[i].bitrate)
2254 					continue;
2255 
2256 				info->control.rates[0].idx = i;
2257 				break;
2258 			}
2259 		}
2260 
2261 		if (info->control.rates[0].idx < 0)
2262 			info->control.flags &= ~IEEE80211_TX_CTRL_RATE_INJECT;
2263 
2264 		info->control.rates[0].flags = rate_flags;
2265 		info->control.rates[0].count = min_t(u8, rate_retries + 1,
2266 						     local->hw.max_rate_tries);
2267 	}
2268 
2269 	return true;
2270 }
2271 
2272 netdev_tx_t ieee80211_monitor_start_xmit(struct sk_buff *skb,
2273 					 struct net_device *dev)
2274 {
2275 	struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
2276 	struct ieee80211_chanctx_conf *chanctx_conf;
2277 	struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
2278 	struct ieee80211_hdr *hdr;
2279 	struct ieee80211_sub_if_data *tmp_sdata, *sdata;
2280 	struct cfg80211_chan_def *chandef;
2281 	u16 len_rthdr;
2282 	int hdrlen;
2283 
2284 	memset(info, 0, sizeof(*info));
2285 	info->flags = IEEE80211_TX_CTL_REQ_TX_STATUS |
2286 		      IEEE80211_TX_CTL_INJECTED;
2287 
2288 	/* Sanity-check the length of the radiotap header */
2289 	if (!ieee80211_validate_radiotap_len(skb))
2290 		goto fail;
2291 
2292 	/* we now know there is a radiotap header with a length we can use */
2293 	len_rthdr = ieee80211_get_radiotap_len(skb->data);
2294 
2295 	/*
2296 	 * fix up the pointers accounting for the radiotap
2297 	 * header still being in there.  We are being given
2298 	 * a precooked IEEE80211 header so no need for
2299 	 * normal processing
2300 	 */
2301 	skb_set_mac_header(skb, len_rthdr);
2302 	/*
2303 	 * these are just fixed to the end of the rt area since we
2304 	 * don't have any better information and at this point, nobody cares
2305 	 */
2306 	skb_set_network_header(skb, len_rthdr);
2307 	skb_set_transport_header(skb, len_rthdr);
2308 
2309 	if (skb->len < len_rthdr + 2)
2310 		goto fail;
2311 
2312 	hdr = (struct ieee80211_hdr *)(skb->data + len_rthdr);
2313 	hdrlen = ieee80211_hdrlen(hdr->frame_control);
2314 
2315 	if (skb->len < len_rthdr + hdrlen)
2316 		goto fail;
2317 
2318 	/*
2319 	 * Initialize skb->protocol if the injected frame is a data frame
2320 	 * carrying a rfc1042 header
2321 	 */
2322 	if (ieee80211_is_data(hdr->frame_control) &&
2323 	    skb->len >= len_rthdr + hdrlen + sizeof(rfc1042_header) + 2) {
2324 		u8 *payload = (u8 *)hdr + hdrlen;
2325 
2326 		if (ether_addr_equal(payload, rfc1042_header))
2327 			skb->protocol = cpu_to_be16((payload[6] << 8) |
2328 						    payload[7]);
2329 	}
2330 
2331 	rcu_read_lock();
2332 
2333 	/*
2334 	 * We process outgoing injected frames that have a local address
2335 	 * we handle as though they are non-injected frames.
2336 	 * This code here isn't entirely correct, the local MAC address
2337 	 * isn't always enough to find the interface to use; for proper
2338 	 * VLAN support we have an nl80211-based mechanism.
2339 	 *
2340 	 * This is necessary, for example, for old hostapd versions that
2341 	 * don't use nl80211-based management TX/RX.
2342 	 */
2343 	sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2344 
2345 	list_for_each_entry_rcu(tmp_sdata, &local->interfaces, list) {
2346 		if (!ieee80211_sdata_running(tmp_sdata))
2347 			continue;
2348 		if (tmp_sdata->vif.type == NL80211_IFTYPE_MONITOR ||
2349 		    tmp_sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
2350 			continue;
2351 		if (ether_addr_equal(tmp_sdata->vif.addr, hdr->addr2)) {
2352 			sdata = tmp_sdata;
2353 			break;
2354 		}
2355 	}
2356 
2357 	chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
2358 	if (!chanctx_conf) {
2359 		tmp_sdata = rcu_dereference(local->monitor_sdata);
2360 		if (tmp_sdata)
2361 			chanctx_conf =
2362 				rcu_dereference(tmp_sdata->vif.chanctx_conf);
2363 	}
2364 
2365 	if (chanctx_conf)
2366 		chandef = &chanctx_conf->def;
2367 	else if (!local->use_chanctx)
2368 		chandef = &local->_oper_chandef;
2369 	else
2370 		goto fail_rcu;
2371 
2372 	/*
2373 	 * Frame injection is not allowed if beaconing is not allowed
2374 	 * or if we need radar detection. Beaconing is usually not allowed when
2375 	 * the mode or operation (Adhoc, AP, Mesh) does not support DFS.
2376 	 * Passive scan is also used in world regulatory domains where
2377 	 * your country is not known and as such it should be treated as
2378 	 * NO TX unless the channel is explicitly allowed in which case
2379 	 * your current regulatory domain would not have the passive scan
2380 	 * flag.
2381 	 *
2382 	 * Since AP mode uses monitor interfaces to inject/TX management
2383 	 * frames we can make AP mode the exception to this rule once it
2384 	 * supports radar detection as its implementation can deal with
2385 	 * radar detection by itself. We can do that later by adding a
2386 	 * monitor flag interfaces used for AP support.
2387 	 */
2388 	if (!cfg80211_reg_can_beacon(local->hw.wiphy, chandef,
2389 				     sdata->vif.type))
2390 		goto fail_rcu;
2391 
2392 	info->band = chandef->chan->band;
2393 
2394 	/* Initialize skb->priority according to frame type and TID class,
2395 	 * with respect to the sub interface that the frame will actually
2396 	 * be transmitted on. If the DONT_REORDER flag is set, the original
2397 	 * skb-priority is preserved to assure frames injected with this
2398 	 * flag are not reordered relative to each other.
2399 	 */
2400 	ieee80211_select_queue_80211(sdata, skb, hdr);
2401 	skb_set_queue_mapping(skb, ieee80211_ac_from_tid(skb->priority));
2402 
2403 	/*
2404 	 * Process the radiotap header. This will now take into account the
2405 	 * selected chandef above to accurately set injection rates and
2406 	 * retransmissions.
2407 	 */
2408 	if (!ieee80211_parse_tx_radiotap(skb, dev))
2409 		goto fail_rcu;
2410 
2411 	/* remove the injection radiotap header */
2412 	skb_pull(skb, len_rthdr);
2413 
2414 	ieee80211_xmit(sdata, NULL, skb);
2415 	rcu_read_unlock();
2416 
2417 	return NETDEV_TX_OK;
2418 
2419 fail_rcu:
2420 	rcu_read_unlock();
2421 fail:
2422 	dev_kfree_skb(skb);
2423 	return NETDEV_TX_OK; /* meaning, we dealt with the skb */
2424 }
2425 
2426 static inline bool ieee80211_is_tdls_setup(struct sk_buff *skb)
2427 {
2428 	u16 ethertype = (skb->data[12] << 8) | skb->data[13];
2429 
2430 	return ethertype == ETH_P_TDLS &&
2431 	       skb->len > 14 &&
2432 	       skb->data[14] == WLAN_TDLS_SNAP_RFTYPE;
2433 }
2434 
2435 int ieee80211_lookup_ra_sta(struct ieee80211_sub_if_data *sdata,
2436 			    struct sk_buff *skb,
2437 			    struct sta_info **sta_out)
2438 {
2439 	struct sta_info *sta;
2440 
2441 	switch (sdata->vif.type) {
2442 	case NL80211_IFTYPE_AP_VLAN:
2443 		sta = rcu_dereference(sdata->u.vlan.sta);
2444 		if (sta) {
2445 			*sta_out = sta;
2446 			return 0;
2447 		} else if (sdata->wdev.use_4addr) {
2448 			return -ENOLINK;
2449 		}
2450 		fallthrough;
2451 	case NL80211_IFTYPE_AP:
2452 	case NL80211_IFTYPE_OCB:
2453 	case NL80211_IFTYPE_ADHOC:
2454 		if (is_multicast_ether_addr(skb->data)) {
2455 			*sta_out = ERR_PTR(-ENOENT);
2456 			return 0;
2457 		}
2458 		sta = sta_info_get_bss(sdata, skb->data);
2459 		break;
2460 #ifdef CONFIG_MAC80211_MESH
2461 	case NL80211_IFTYPE_MESH_POINT:
2462 		/* determined much later */
2463 		*sta_out = NULL;
2464 		return 0;
2465 #endif
2466 	case NL80211_IFTYPE_STATION:
2467 		if (sdata->wdev.wiphy->flags & WIPHY_FLAG_SUPPORTS_TDLS) {
2468 			sta = sta_info_get(sdata, skb->data);
2469 			if (sta && test_sta_flag(sta, WLAN_STA_TDLS_PEER)) {
2470 				if (test_sta_flag(sta,
2471 						  WLAN_STA_TDLS_PEER_AUTH)) {
2472 					*sta_out = sta;
2473 					return 0;
2474 				}
2475 
2476 				/*
2477 				 * TDLS link during setup - throw out frames to
2478 				 * peer. Allow TDLS-setup frames to unauthorized
2479 				 * peers for the special case of a link teardown
2480 				 * after a TDLS sta is removed due to being
2481 				 * unreachable.
2482 				 */
2483 				if (!ieee80211_is_tdls_setup(skb))
2484 					return -EINVAL;
2485 			}
2486 
2487 		}
2488 
2489 		sta = sta_info_get(sdata, sdata->u.mgd.bssid);
2490 		if (!sta)
2491 			return -ENOLINK;
2492 		break;
2493 	default:
2494 		return -EINVAL;
2495 	}
2496 
2497 	*sta_out = sta ?: ERR_PTR(-ENOENT);
2498 	return 0;
2499 }
2500 
2501 static u16 ieee80211_store_ack_skb(struct ieee80211_local *local,
2502 				   struct sk_buff *skb,
2503 				   u32 *info_flags,
2504 				   u64 *cookie)
2505 {
2506 	struct sk_buff *ack_skb;
2507 	u16 info_id = 0;
2508 
2509 	if (skb->sk)
2510 		ack_skb = skb_clone_sk(skb);
2511 	else
2512 		ack_skb = skb_clone(skb, GFP_ATOMIC);
2513 
2514 	if (ack_skb) {
2515 		unsigned long flags;
2516 		int id;
2517 
2518 		spin_lock_irqsave(&local->ack_status_lock, flags);
2519 		id = idr_alloc(&local->ack_status_frames, ack_skb,
2520 			       1, 0x2000, GFP_ATOMIC);
2521 		spin_unlock_irqrestore(&local->ack_status_lock, flags);
2522 
2523 		if (id >= 0) {
2524 			info_id = id;
2525 			*info_flags |= IEEE80211_TX_CTL_REQ_TX_STATUS;
2526 			if (cookie) {
2527 				*cookie = ieee80211_mgmt_tx_cookie(local);
2528 				IEEE80211_SKB_CB(ack_skb)->ack.cookie = *cookie;
2529 			}
2530 		} else {
2531 			kfree_skb(ack_skb);
2532 		}
2533 	}
2534 
2535 	return info_id;
2536 }
2537 
2538 /**
2539  * ieee80211_build_hdr - build 802.11 header in the given frame
2540  * @sdata: virtual interface to build the header for
2541  * @skb: the skb to build the header in
2542  * @info_flags: skb flags to set
2543  * @sta: the station pointer
2544  * @ctrl_flags: info control flags to set
2545  * @cookie: cookie pointer to fill (if not %NULL)
2546  *
2547  * This function takes the skb with 802.3 header and reformats the header to
2548  * the appropriate IEEE 802.11 header based on which interface the packet is
2549  * being transmitted on.
2550  *
2551  * Note that this function also takes care of the TX status request and
2552  * potential unsharing of the SKB - this needs to be interleaved with the
2553  * header building.
2554  *
2555  * The function requires the read-side RCU lock held
2556  *
2557  * Returns: the (possibly reallocated) skb or an ERR_PTR() code
2558  */
2559 static struct sk_buff *ieee80211_build_hdr(struct ieee80211_sub_if_data *sdata,
2560 					   struct sk_buff *skb, u32 info_flags,
2561 					   struct sta_info *sta, u32 ctrl_flags,
2562 					   u64 *cookie)
2563 {
2564 	struct ieee80211_local *local = sdata->local;
2565 	struct ieee80211_tx_info *info;
2566 	int head_need;
2567 	u16 ethertype, hdrlen,  meshhdrlen = 0;
2568 	__le16 fc;
2569 	struct ieee80211_hdr hdr;
2570 	struct ieee80211s_hdr mesh_hdr __maybe_unused;
2571 	struct mesh_path __maybe_unused *mppath = NULL, *mpath = NULL;
2572 	const u8 *encaps_data;
2573 	int encaps_len, skip_header_bytes;
2574 	bool wme_sta = false, authorized = false;
2575 	bool tdls_peer;
2576 	bool multicast;
2577 	u16 info_id = 0;
2578 	struct ieee80211_chanctx_conf *chanctx_conf;
2579 	struct ieee80211_sub_if_data *ap_sdata;
2580 	enum nl80211_band band;
2581 	int ret;
2582 
2583 	if (IS_ERR(sta))
2584 		sta = NULL;
2585 
2586 #ifdef CONFIG_MAC80211_DEBUGFS
2587 	if (local->force_tx_status)
2588 		info_flags |= IEEE80211_TX_CTL_REQ_TX_STATUS;
2589 #endif
2590 
2591 	/* convert Ethernet header to proper 802.11 header (based on
2592 	 * operation mode) */
2593 	ethertype = (skb->data[12] << 8) | skb->data[13];
2594 	fc = cpu_to_le16(IEEE80211_FTYPE_DATA | IEEE80211_STYPE_DATA);
2595 
2596 	switch (sdata->vif.type) {
2597 	case NL80211_IFTYPE_AP_VLAN:
2598 		if (sdata->wdev.use_4addr) {
2599 			fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS);
2600 			/* RA TA DA SA */
2601 			memcpy(hdr.addr1, sta->sta.addr, ETH_ALEN);
2602 			memcpy(hdr.addr2, sdata->vif.addr, ETH_ALEN);
2603 			memcpy(hdr.addr3, skb->data, ETH_ALEN);
2604 			memcpy(hdr.addr4, skb->data + ETH_ALEN, ETH_ALEN);
2605 			hdrlen = 30;
2606 			authorized = test_sta_flag(sta, WLAN_STA_AUTHORIZED);
2607 			wme_sta = sta->sta.wme;
2608 		}
2609 		ap_sdata = container_of(sdata->bss, struct ieee80211_sub_if_data,
2610 					u.ap);
2611 		chanctx_conf = rcu_dereference(ap_sdata->vif.chanctx_conf);
2612 		if (!chanctx_conf) {
2613 			ret = -ENOTCONN;
2614 			goto free;
2615 		}
2616 		band = chanctx_conf->def.chan->band;
2617 		if (sdata->wdev.use_4addr)
2618 			break;
2619 		fallthrough;
2620 	case NL80211_IFTYPE_AP:
2621 		if (sdata->vif.type == NL80211_IFTYPE_AP)
2622 			chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
2623 		if (!chanctx_conf) {
2624 			ret = -ENOTCONN;
2625 			goto free;
2626 		}
2627 		fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS);
2628 		/* DA BSSID SA */
2629 		memcpy(hdr.addr1, skb->data, ETH_ALEN);
2630 		memcpy(hdr.addr2, sdata->vif.addr, ETH_ALEN);
2631 		memcpy(hdr.addr3, skb->data + ETH_ALEN, ETH_ALEN);
2632 		hdrlen = 24;
2633 		band = chanctx_conf->def.chan->band;
2634 		break;
2635 #ifdef CONFIG_MAC80211_MESH
2636 	case NL80211_IFTYPE_MESH_POINT:
2637 		if (!is_multicast_ether_addr(skb->data)) {
2638 			struct sta_info *next_hop;
2639 			bool mpp_lookup = true;
2640 
2641 			mpath = mesh_path_lookup(sdata, skb->data);
2642 			if (mpath) {
2643 				mpp_lookup = false;
2644 				next_hop = rcu_dereference(mpath->next_hop);
2645 				if (!next_hop ||
2646 				    !(mpath->flags & (MESH_PATH_ACTIVE |
2647 						      MESH_PATH_RESOLVING)))
2648 					mpp_lookup = true;
2649 			}
2650 
2651 			if (mpp_lookup) {
2652 				mppath = mpp_path_lookup(sdata, skb->data);
2653 				if (mppath)
2654 					mppath->exp_time = jiffies;
2655 			}
2656 
2657 			if (mppath && mpath)
2658 				mesh_path_del(sdata, mpath->dst);
2659 		}
2660 
2661 		/*
2662 		 * Use address extension if it is a packet from
2663 		 * another interface or if we know the destination
2664 		 * is being proxied by a portal (i.e. portal address
2665 		 * differs from proxied address)
2666 		 */
2667 		if (ether_addr_equal(sdata->vif.addr, skb->data + ETH_ALEN) &&
2668 		    !(mppath && !ether_addr_equal(mppath->mpp, skb->data))) {
2669 			hdrlen = ieee80211_fill_mesh_addresses(&hdr, &fc,
2670 					skb->data, skb->data + ETH_ALEN);
2671 			meshhdrlen = ieee80211_new_mesh_header(sdata, &mesh_hdr,
2672 							       NULL, NULL);
2673 		} else {
2674 			/* DS -> MBSS (802.11-2012 13.11.3.3).
2675 			 * For unicast with unknown forwarding information,
2676 			 * destination might be in the MBSS or if that fails
2677 			 * forwarded to another mesh gate. In either case
2678 			 * resolution will be handled in ieee80211_xmit(), so
2679 			 * leave the original DA. This also works for mcast */
2680 			const u8 *mesh_da = skb->data;
2681 
2682 			if (mppath)
2683 				mesh_da = mppath->mpp;
2684 			else if (mpath)
2685 				mesh_da = mpath->dst;
2686 
2687 			hdrlen = ieee80211_fill_mesh_addresses(&hdr, &fc,
2688 					mesh_da, sdata->vif.addr);
2689 			if (is_multicast_ether_addr(mesh_da))
2690 				/* DA TA mSA AE:SA */
2691 				meshhdrlen = ieee80211_new_mesh_header(
2692 						sdata, &mesh_hdr,
2693 						skb->data + ETH_ALEN, NULL);
2694 			else
2695 				/* RA TA mDA mSA AE:DA SA */
2696 				meshhdrlen = ieee80211_new_mesh_header(
2697 						sdata, &mesh_hdr, skb->data,
2698 						skb->data + ETH_ALEN);
2699 
2700 		}
2701 		chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
2702 		if (!chanctx_conf) {
2703 			ret = -ENOTCONN;
2704 			goto free;
2705 		}
2706 		band = chanctx_conf->def.chan->band;
2707 
2708 		/* For injected frames, fill RA right away as nexthop lookup
2709 		 * will be skipped.
2710 		 */
2711 		if ((ctrl_flags & IEEE80211_TX_CTRL_SKIP_MPATH_LOOKUP) &&
2712 		    is_zero_ether_addr(hdr.addr1))
2713 			memcpy(hdr.addr1, skb->data, ETH_ALEN);
2714 		break;
2715 #endif
2716 	case NL80211_IFTYPE_STATION:
2717 		/* we already did checks when looking up the RA STA */
2718 		tdls_peer = test_sta_flag(sta, WLAN_STA_TDLS_PEER);
2719 
2720 		if (tdls_peer) {
2721 			/* DA SA BSSID */
2722 			memcpy(hdr.addr1, skb->data, ETH_ALEN);
2723 			memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN);
2724 			memcpy(hdr.addr3, sdata->u.mgd.bssid, ETH_ALEN);
2725 			hdrlen = 24;
2726 		}  else if (sdata->u.mgd.use_4addr &&
2727 			    cpu_to_be16(ethertype) != sdata->control_port_protocol) {
2728 			fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS |
2729 					  IEEE80211_FCTL_TODS);
2730 			/* RA TA DA SA */
2731 			memcpy(hdr.addr1, sdata->u.mgd.bssid, ETH_ALEN);
2732 			memcpy(hdr.addr2, sdata->vif.addr, ETH_ALEN);
2733 			memcpy(hdr.addr3, skb->data, ETH_ALEN);
2734 			memcpy(hdr.addr4, skb->data + ETH_ALEN, ETH_ALEN);
2735 			hdrlen = 30;
2736 		} else {
2737 			fc |= cpu_to_le16(IEEE80211_FCTL_TODS);
2738 			/* BSSID SA DA */
2739 			memcpy(hdr.addr1, sdata->u.mgd.bssid, ETH_ALEN);
2740 			memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN);
2741 			memcpy(hdr.addr3, skb->data, ETH_ALEN);
2742 			hdrlen = 24;
2743 		}
2744 		chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
2745 		if (!chanctx_conf) {
2746 			ret = -ENOTCONN;
2747 			goto free;
2748 		}
2749 		band = chanctx_conf->def.chan->band;
2750 		break;
2751 	case NL80211_IFTYPE_OCB:
2752 		/* DA SA BSSID */
2753 		memcpy(hdr.addr1, skb->data, ETH_ALEN);
2754 		memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN);
2755 		eth_broadcast_addr(hdr.addr3);
2756 		hdrlen = 24;
2757 		chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
2758 		if (!chanctx_conf) {
2759 			ret = -ENOTCONN;
2760 			goto free;
2761 		}
2762 		band = chanctx_conf->def.chan->band;
2763 		break;
2764 	case NL80211_IFTYPE_ADHOC:
2765 		/* DA SA BSSID */
2766 		memcpy(hdr.addr1, skb->data, ETH_ALEN);
2767 		memcpy(hdr.addr2, skb->data + ETH_ALEN, ETH_ALEN);
2768 		memcpy(hdr.addr3, sdata->u.ibss.bssid, ETH_ALEN);
2769 		hdrlen = 24;
2770 		chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
2771 		if (!chanctx_conf) {
2772 			ret = -ENOTCONN;
2773 			goto free;
2774 		}
2775 		band = chanctx_conf->def.chan->band;
2776 		break;
2777 	default:
2778 		ret = -EINVAL;
2779 		goto free;
2780 	}
2781 
2782 	multicast = is_multicast_ether_addr(hdr.addr1);
2783 
2784 	/* sta is always NULL for mesh */
2785 	if (sta) {
2786 		authorized = test_sta_flag(sta, WLAN_STA_AUTHORIZED);
2787 		wme_sta = sta->sta.wme;
2788 	} else if (ieee80211_vif_is_mesh(&sdata->vif)) {
2789 		/* For mesh, the use of the QoS header is mandatory */
2790 		wme_sta = true;
2791 	}
2792 
2793 	/* receiver does QoS (which also means we do) use it */
2794 	if (wme_sta) {
2795 		fc |= cpu_to_le16(IEEE80211_STYPE_QOS_DATA);
2796 		hdrlen += 2;
2797 	}
2798 
2799 	/*
2800 	 * Drop unicast frames to unauthorised stations unless they are
2801 	 * EAPOL frames from the local station.
2802 	 */
2803 	if (unlikely(!ieee80211_vif_is_mesh(&sdata->vif) &&
2804 		     (sdata->vif.type != NL80211_IFTYPE_OCB) &&
2805 		     !multicast && !authorized &&
2806 		     (cpu_to_be16(ethertype) != sdata->control_port_protocol ||
2807 		      !ether_addr_equal(sdata->vif.addr, skb->data + ETH_ALEN)))) {
2808 #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
2809 		net_info_ratelimited("%s: dropped frame to %pM (unauthorized port)\n",
2810 				    sdata->name, hdr.addr1);
2811 #endif
2812 
2813 		I802_DEBUG_INC(local->tx_handlers_drop_unauth_port);
2814 
2815 		ret = -EPERM;
2816 		goto free;
2817 	}
2818 
2819 	if (unlikely(!multicast && ((skb->sk &&
2820 		     skb_shinfo(skb)->tx_flags & SKBTX_WIFI_STATUS) ||
2821 		     ctrl_flags & IEEE80211_TX_CTL_REQ_TX_STATUS)))
2822 		info_id = ieee80211_store_ack_skb(local, skb, &info_flags,
2823 						  cookie);
2824 
2825 	/*
2826 	 * If the skb is shared we need to obtain our own copy.
2827 	 */
2828 	if (skb_shared(skb)) {
2829 		struct sk_buff *tmp_skb = skb;
2830 
2831 		/* can't happen -- skb is a clone if info_id != 0 */
2832 		WARN_ON(info_id);
2833 
2834 		skb = skb_clone(skb, GFP_ATOMIC);
2835 		kfree_skb(tmp_skb);
2836 
2837 		if (!skb) {
2838 			ret = -ENOMEM;
2839 			goto free;
2840 		}
2841 	}
2842 
2843 	hdr.frame_control = fc;
2844 	hdr.duration_id = 0;
2845 	hdr.seq_ctrl = 0;
2846 
2847 	skip_header_bytes = ETH_HLEN;
2848 	if (ethertype == ETH_P_AARP || ethertype == ETH_P_IPX) {
2849 		encaps_data = bridge_tunnel_header;
2850 		encaps_len = sizeof(bridge_tunnel_header);
2851 		skip_header_bytes -= 2;
2852 	} else if (ethertype >= ETH_P_802_3_MIN) {
2853 		encaps_data = rfc1042_header;
2854 		encaps_len = sizeof(rfc1042_header);
2855 		skip_header_bytes -= 2;
2856 	} else {
2857 		encaps_data = NULL;
2858 		encaps_len = 0;
2859 	}
2860 
2861 	skb_pull(skb, skip_header_bytes);
2862 	head_need = hdrlen + encaps_len + meshhdrlen - skb_headroom(skb);
2863 
2864 	/*
2865 	 * So we need to modify the skb header and hence need a copy of
2866 	 * that. The head_need variable above doesn't, so far, include
2867 	 * the needed header space that we don't need right away. If we
2868 	 * can, then we don't reallocate right now but only after the
2869 	 * frame arrives at the master device (if it does...)
2870 	 *
2871 	 * If we cannot, however, then we will reallocate to include all
2872 	 * the ever needed space. Also, if we need to reallocate it anyway,
2873 	 * make it big enough for everything we may ever need.
2874 	 */
2875 
2876 	if (head_need > 0 || skb_cloned(skb)) {
2877 		head_need += sdata->encrypt_headroom;
2878 		head_need += local->tx_headroom;
2879 		head_need = max_t(int, 0, head_need);
2880 		if (ieee80211_skb_resize(sdata, skb, head_need, ENCRYPT_DATA)) {
2881 			ieee80211_free_txskb(&local->hw, skb);
2882 			skb = NULL;
2883 			return ERR_PTR(-ENOMEM);
2884 		}
2885 	}
2886 
2887 	if (encaps_data)
2888 		memcpy(skb_push(skb, encaps_len), encaps_data, encaps_len);
2889 
2890 #ifdef CONFIG_MAC80211_MESH
2891 	if (meshhdrlen > 0)
2892 		memcpy(skb_push(skb, meshhdrlen), &mesh_hdr, meshhdrlen);
2893 #endif
2894 
2895 	if (ieee80211_is_data_qos(fc)) {
2896 		__le16 *qos_control;
2897 
2898 		qos_control = skb_push(skb, 2);
2899 		memcpy(skb_push(skb, hdrlen - 2), &hdr, hdrlen - 2);
2900 		/*
2901 		 * Maybe we could actually set some fields here, for now just
2902 		 * initialise to zero to indicate no special operation.
2903 		 */
2904 		*qos_control = 0;
2905 	} else
2906 		memcpy(skb_push(skb, hdrlen), &hdr, hdrlen);
2907 
2908 	skb_reset_mac_header(skb);
2909 
2910 	info = IEEE80211_SKB_CB(skb);
2911 	memset(info, 0, sizeof(*info));
2912 
2913 	info->flags = info_flags;
2914 	info->ack_frame_id = info_id;
2915 	info->band = band;
2916 	info->control.flags = ctrl_flags;
2917 
2918 	return skb;
2919  free:
2920 	kfree_skb(skb);
2921 	return ERR_PTR(ret);
2922 }
2923 
2924 /*
2925  * fast-xmit overview
2926  *
2927  * The core idea of this fast-xmit is to remove per-packet checks by checking
2928  * them out of band. ieee80211_check_fast_xmit() implements the out-of-band
2929  * checks that are needed to get the sta->fast_tx pointer assigned, after which
2930  * much less work can be done per packet. For example, fragmentation must be
2931  * disabled or the fast_tx pointer will not be set. All the conditions are seen
2932  * in the code here.
2933  *
2934  * Once assigned, the fast_tx data structure also caches the per-packet 802.11
2935  * header and other data to aid packet processing in ieee80211_xmit_fast().
2936  *
2937  * The most difficult part of this is that when any of these assumptions
2938  * change, an external trigger (i.e. a call to ieee80211_clear_fast_xmit(),
2939  * ieee80211_check_fast_xmit() or friends) is required to reset the data,
2940  * since the per-packet code no longer checks the conditions. This is reflected
2941  * by the calls to these functions throughout the rest of the code, and must be
2942  * maintained if any of the TX path checks change.
2943  */
2944 
2945 void ieee80211_check_fast_xmit(struct sta_info *sta)
2946 {
2947 	struct ieee80211_fast_tx build = {}, *fast_tx = NULL, *old;
2948 	struct ieee80211_local *local = sta->local;
2949 	struct ieee80211_sub_if_data *sdata = sta->sdata;
2950 	struct ieee80211_hdr *hdr = (void *)build.hdr;
2951 	struct ieee80211_chanctx_conf *chanctx_conf;
2952 	__le16 fc;
2953 
2954 	if (!ieee80211_hw_check(&local->hw, SUPPORT_FAST_XMIT))
2955 		return;
2956 
2957 	/* Locking here protects both the pointer itself, and against concurrent
2958 	 * invocations winning data access races to, e.g., the key pointer that
2959 	 * is used.
2960 	 * Without it, the invocation of this function right after the key
2961 	 * pointer changes wouldn't be sufficient, as another CPU could access
2962 	 * the pointer, then stall, and then do the cache update after the CPU
2963 	 * that invalidated the key.
2964 	 * With the locking, such scenarios cannot happen as the check for the
2965 	 * key and the fast-tx assignment are done atomically, so the CPU that
2966 	 * modifies the key will either wait or other one will see the key
2967 	 * cleared/changed already.
2968 	 */
2969 	spin_lock_bh(&sta->lock);
2970 	if (ieee80211_hw_check(&local->hw, SUPPORTS_PS) &&
2971 	    !ieee80211_hw_check(&local->hw, SUPPORTS_DYNAMIC_PS) &&
2972 	    sdata->vif.type == NL80211_IFTYPE_STATION)
2973 		goto out;
2974 
2975 	if (!test_sta_flag(sta, WLAN_STA_AUTHORIZED))
2976 		goto out;
2977 
2978 	if (test_sta_flag(sta, WLAN_STA_PS_STA) ||
2979 	    test_sta_flag(sta, WLAN_STA_PS_DRIVER) ||
2980 	    test_sta_flag(sta, WLAN_STA_PS_DELIVER) ||
2981 	    test_sta_flag(sta, WLAN_STA_CLEAR_PS_FILT))
2982 		goto out;
2983 
2984 	if (sdata->noack_map)
2985 		goto out;
2986 
2987 	/* fast-xmit doesn't handle fragmentation at all */
2988 	if (local->hw.wiphy->frag_threshold != (u32)-1 &&
2989 	    !ieee80211_hw_check(&local->hw, SUPPORTS_TX_FRAG))
2990 		goto out;
2991 
2992 	rcu_read_lock();
2993 	chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
2994 	if (!chanctx_conf) {
2995 		rcu_read_unlock();
2996 		goto out;
2997 	}
2998 	build.band = chanctx_conf->def.chan->band;
2999 	rcu_read_unlock();
3000 
3001 	fc = cpu_to_le16(IEEE80211_FTYPE_DATA | IEEE80211_STYPE_DATA);
3002 
3003 	switch (sdata->vif.type) {
3004 	case NL80211_IFTYPE_ADHOC:
3005 		/* DA SA BSSID */
3006 		build.da_offs = offsetof(struct ieee80211_hdr, addr1);
3007 		build.sa_offs = offsetof(struct ieee80211_hdr, addr2);
3008 		memcpy(hdr->addr3, sdata->u.ibss.bssid, ETH_ALEN);
3009 		build.hdr_len = 24;
3010 		break;
3011 	case NL80211_IFTYPE_STATION:
3012 		if (test_sta_flag(sta, WLAN_STA_TDLS_PEER)) {
3013 			/* DA SA BSSID */
3014 			build.da_offs = offsetof(struct ieee80211_hdr, addr1);
3015 			build.sa_offs = offsetof(struct ieee80211_hdr, addr2);
3016 			memcpy(hdr->addr3, sdata->u.mgd.bssid, ETH_ALEN);
3017 			build.hdr_len = 24;
3018 			break;
3019 		}
3020 
3021 		if (sdata->u.mgd.use_4addr) {
3022 			/* non-regular ethertype cannot use the fastpath */
3023 			fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS |
3024 					  IEEE80211_FCTL_TODS);
3025 			/* RA TA DA SA */
3026 			memcpy(hdr->addr1, sdata->u.mgd.bssid, ETH_ALEN);
3027 			memcpy(hdr->addr2, sdata->vif.addr, ETH_ALEN);
3028 			build.da_offs = offsetof(struct ieee80211_hdr, addr3);
3029 			build.sa_offs = offsetof(struct ieee80211_hdr, addr4);
3030 			build.hdr_len = 30;
3031 			break;
3032 		}
3033 		fc |= cpu_to_le16(IEEE80211_FCTL_TODS);
3034 		/* BSSID SA DA */
3035 		memcpy(hdr->addr1, sdata->u.mgd.bssid, ETH_ALEN);
3036 		build.da_offs = offsetof(struct ieee80211_hdr, addr3);
3037 		build.sa_offs = offsetof(struct ieee80211_hdr, addr2);
3038 		build.hdr_len = 24;
3039 		break;
3040 	case NL80211_IFTYPE_AP_VLAN:
3041 		if (sdata->wdev.use_4addr) {
3042 			fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS |
3043 					  IEEE80211_FCTL_TODS);
3044 			/* RA TA DA SA */
3045 			memcpy(hdr->addr1, sta->sta.addr, ETH_ALEN);
3046 			memcpy(hdr->addr2, sdata->vif.addr, ETH_ALEN);
3047 			build.da_offs = offsetof(struct ieee80211_hdr, addr3);
3048 			build.sa_offs = offsetof(struct ieee80211_hdr, addr4);
3049 			build.hdr_len = 30;
3050 			break;
3051 		}
3052 		fallthrough;
3053 	case NL80211_IFTYPE_AP:
3054 		fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS);
3055 		/* DA BSSID SA */
3056 		build.da_offs = offsetof(struct ieee80211_hdr, addr1);
3057 		memcpy(hdr->addr2, sdata->vif.addr, ETH_ALEN);
3058 		build.sa_offs = offsetof(struct ieee80211_hdr, addr3);
3059 		build.hdr_len = 24;
3060 		break;
3061 	default:
3062 		/* not handled on fast-xmit */
3063 		goto out;
3064 	}
3065 
3066 	if (sta->sta.wme) {
3067 		build.hdr_len += 2;
3068 		fc |= cpu_to_le16(IEEE80211_STYPE_QOS_DATA);
3069 	}
3070 
3071 	/* We store the key here so there's no point in using rcu_dereference()
3072 	 * but that's fine because the code that changes the pointers will call
3073 	 * this function after doing so. For a single CPU that would be enough,
3074 	 * for multiple see the comment above.
3075 	 */
3076 	build.key = rcu_access_pointer(sta->ptk[sta->ptk_idx]);
3077 	if (!build.key)
3078 		build.key = rcu_access_pointer(sdata->default_unicast_key);
3079 	if (build.key) {
3080 		bool gen_iv, iv_spc, mmic;
3081 
3082 		gen_iv = build.key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_IV;
3083 		iv_spc = build.key->conf.flags & IEEE80211_KEY_FLAG_PUT_IV_SPACE;
3084 		mmic = build.key->conf.flags &
3085 			(IEEE80211_KEY_FLAG_GENERATE_MMIC |
3086 			 IEEE80211_KEY_FLAG_PUT_MIC_SPACE);
3087 
3088 		/* don't handle software crypto */
3089 		if (!(build.key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE))
3090 			goto out;
3091 
3092 		/* Key is being removed */
3093 		if (build.key->flags & KEY_FLAG_TAINTED)
3094 			goto out;
3095 
3096 		switch (build.key->conf.cipher) {
3097 		case WLAN_CIPHER_SUITE_CCMP:
3098 		case WLAN_CIPHER_SUITE_CCMP_256:
3099 			if (gen_iv)
3100 				build.pn_offs = build.hdr_len;
3101 			if (gen_iv || iv_spc)
3102 				build.hdr_len += IEEE80211_CCMP_HDR_LEN;
3103 			break;
3104 		case WLAN_CIPHER_SUITE_GCMP:
3105 		case WLAN_CIPHER_SUITE_GCMP_256:
3106 			if (gen_iv)
3107 				build.pn_offs = build.hdr_len;
3108 			if (gen_iv || iv_spc)
3109 				build.hdr_len += IEEE80211_GCMP_HDR_LEN;
3110 			break;
3111 		case WLAN_CIPHER_SUITE_TKIP:
3112 			/* cannot handle MMIC or IV generation in xmit-fast */
3113 			if (mmic || gen_iv)
3114 				goto out;
3115 			if (iv_spc)
3116 				build.hdr_len += IEEE80211_TKIP_IV_LEN;
3117 			break;
3118 		case WLAN_CIPHER_SUITE_WEP40:
3119 		case WLAN_CIPHER_SUITE_WEP104:
3120 			/* cannot handle IV generation in fast-xmit */
3121 			if (gen_iv)
3122 				goto out;
3123 			if (iv_spc)
3124 				build.hdr_len += IEEE80211_WEP_IV_LEN;
3125 			break;
3126 		case WLAN_CIPHER_SUITE_AES_CMAC:
3127 		case WLAN_CIPHER_SUITE_BIP_CMAC_256:
3128 		case WLAN_CIPHER_SUITE_BIP_GMAC_128:
3129 		case WLAN_CIPHER_SUITE_BIP_GMAC_256:
3130 			WARN(1,
3131 			     "management cipher suite 0x%x enabled for data\n",
3132 			     build.key->conf.cipher);
3133 			goto out;
3134 		default:
3135 			/* we don't know how to generate IVs for this at all */
3136 			if (WARN_ON(gen_iv))
3137 				goto out;
3138 			/* pure hardware keys are OK, of course */
3139 			if (!(build.key->flags & KEY_FLAG_CIPHER_SCHEME))
3140 				break;
3141 			/* cipher scheme might require space allocation */
3142 			if (iv_spc &&
3143 			    build.key->conf.iv_len > IEEE80211_FAST_XMIT_MAX_IV)
3144 				goto out;
3145 			if (iv_spc)
3146 				build.hdr_len += build.key->conf.iv_len;
3147 		}
3148 
3149 		fc |= cpu_to_le16(IEEE80211_FCTL_PROTECTED);
3150 	}
3151 
3152 	hdr->frame_control = fc;
3153 
3154 	memcpy(build.hdr + build.hdr_len,
3155 	       rfc1042_header,  sizeof(rfc1042_header));
3156 	build.hdr_len += sizeof(rfc1042_header);
3157 
3158 	fast_tx = kmemdup(&build, sizeof(build), GFP_ATOMIC);
3159 	/* if the kmemdup fails, continue w/o fast_tx */
3160 	if (!fast_tx)
3161 		goto out;
3162 
3163  out:
3164 	/* we might have raced against another call to this function */
3165 	old = rcu_dereference_protected(sta->fast_tx,
3166 					lockdep_is_held(&sta->lock));
3167 	rcu_assign_pointer(sta->fast_tx, fast_tx);
3168 	if (old)
3169 		kfree_rcu(old, rcu_head);
3170 	spin_unlock_bh(&sta->lock);
3171 }
3172 
3173 void ieee80211_check_fast_xmit_all(struct ieee80211_local *local)
3174 {
3175 	struct sta_info *sta;
3176 
3177 	rcu_read_lock();
3178 	list_for_each_entry_rcu(sta, &local->sta_list, list)
3179 		ieee80211_check_fast_xmit(sta);
3180 	rcu_read_unlock();
3181 }
3182 
3183 void ieee80211_check_fast_xmit_iface(struct ieee80211_sub_if_data *sdata)
3184 {
3185 	struct ieee80211_local *local = sdata->local;
3186 	struct sta_info *sta;
3187 
3188 	rcu_read_lock();
3189 
3190 	list_for_each_entry_rcu(sta, &local->sta_list, list) {
3191 		if (sdata != sta->sdata &&
3192 		    (!sta->sdata->bss || sta->sdata->bss != sdata->bss))
3193 			continue;
3194 		ieee80211_check_fast_xmit(sta);
3195 	}
3196 
3197 	rcu_read_unlock();
3198 }
3199 
3200 void ieee80211_clear_fast_xmit(struct sta_info *sta)
3201 {
3202 	struct ieee80211_fast_tx *fast_tx;
3203 
3204 	spin_lock_bh(&sta->lock);
3205 	fast_tx = rcu_dereference_protected(sta->fast_tx,
3206 					    lockdep_is_held(&sta->lock));
3207 	RCU_INIT_POINTER(sta->fast_tx, NULL);
3208 	spin_unlock_bh(&sta->lock);
3209 
3210 	if (fast_tx)
3211 		kfree_rcu(fast_tx, rcu_head);
3212 }
3213 
3214 static bool ieee80211_amsdu_realloc_pad(struct ieee80211_local *local,
3215 					struct sk_buff *skb, int headroom)
3216 {
3217 	if (skb_headroom(skb) < headroom) {
3218 		I802_DEBUG_INC(local->tx_expand_skb_head);
3219 
3220 		if (pskb_expand_head(skb, headroom, 0, GFP_ATOMIC)) {
3221 			wiphy_debug(local->hw.wiphy,
3222 				    "failed to reallocate TX buffer\n");
3223 			return false;
3224 		}
3225 	}
3226 
3227 	return true;
3228 }
3229 
3230 static bool ieee80211_amsdu_prepare_head(struct ieee80211_sub_if_data *sdata,
3231 					 struct ieee80211_fast_tx *fast_tx,
3232 					 struct sk_buff *skb)
3233 {
3234 	struct ieee80211_local *local = sdata->local;
3235 	struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
3236 	struct ieee80211_hdr *hdr;
3237 	struct ethhdr *amsdu_hdr;
3238 	int hdr_len = fast_tx->hdr_len - sizeof(rfc1042_header);
3239 	int subframe_len = skb->len - hdr_len;
3240 	void *data;
3241 	u8 *qc, *h_80211_src, *h_80211_dst;
3242 	const u8 *bssid;
3243 
3244 	if (info->flags & IEEE80211_TX_CTL_RATE_CTRL_PROBE)
3245 		return false;
3246 
3247 	if (info->control.flags & IEEE80211_TX_CTRL_AMSDU)
3248 		return true;
3249 
3250 	if (!ieee80211_amsdu_realloc_pad(local, skb,
3251 					 sizeof(*amsdu_hdr) +
3252 					 local->hw.extra_tx_headroom))
3253 		return false;
3254 
3255 	data = skb_push(skb, sizeof(*amsdu_hdr));
3256 	memmove(data, data + sizeof(*amsdu_hdr), hdr_len);
3257 	hdr = data;
3258 	amsdu_hdr = data + hdr_len;
3259 	/* h_80211_src/dst is addr* field within hdr */
3260 	h_80211_src = data + fast_tx->sa_offs;
3261 	h_80211_dst = data + fast_tx->da_offs;
3262 
3263 	amsdu_hdr->h_proto = cpu_to_be16(subframe_len);
3264 	ether_addr_copy(amsdu_hdr->h_source, h_80211_src);
3265 	ether_addr_copy(amsdu_hdr->h_dest, h_80211_dst);
3266 
3267 	/* according to IEEE 802.11-2012 8.3.2 table 8-19, the outer SA/DA
3268 	 * fields needs to be changed to BSSID for A-MSDU frames depending
3269 	 * on FromDS/ToDS values.
3270 	 */
3271 	switch (sdata->vif.type) {
3272 	case NL80211_IFTYPE_STATION:
3273 		bssid = sdata->u.mgd.bssid;
3274 		break;
3275 	case NL80211_IFTYPE_AP:
3276 	case NL80211_IFTYPE_AP_VLAN:
3277 		bssid = sdata->vif.addr;
3278 		break;
3279 	default:
3280 		bssid = NULL;
3281 	}
3282 
3283 	if (bssid && ieee80211_has_fromds(hdr->frame_control))
3284 		ether_addr_copy(h_80211_src, bssid);
3285 
3286 	if (bssid && ieee80211_has_tods(hdr->frame_control))
3287 		ether_addr_copy(h_80211_dst, bssid);
3288 
3289 	qc = ieee80211_get_qos_ctl(hdr);
3290 	*qc |= IEEE80211_QOS_CTL_A_MSDU_PRESENT;
3291 
3292 	info->control.flags |= IEEE80211_TX_CTRL_AMSDU;
3293 
3294 	return true;
3295 }
3296 
3297 static bool ieee80211_amsdu_aggregate(struct ieee80211_sub_if_data *sdata,
3298 				      struct sta_info *sta,
3299 				      struct ieee80211_fast_tx *fast_tx,
3300 				      struct sk_buff *skb)
3301 {
3302 	struct ieee80211_local *local = sdata->local;
3303 	struct fq *fq = &local->fq;
3304 	struct fq_tin *tin;
3305 	struct fq_flow *flow;
3306 	u8 tid = skb->priority & IEEE80211_QOS_CTL_TAG1D_MASK;
3307 	struct ieee80211_txq *txq = sta->sta.txq[tid];
3308 	struct txq_info *txqi;
3309 	struct sk_buff **frag_tail, *head;
3310 	int subframe_len = skb->len - ETH_ALEN;
3311 	u8 max_subframes = sta->sta.max_amsdu_subframes;
3312 	int max_frags = local->hw.max_tx_fragments;
3313 	int max_amsdu_len = sta->sta.max_amsdu_len;
3314 	int orig_truesize;
3315 	u32 flow_idx;
3316 	__be16 len;
3317 	void *data;
3318 	bool ret = false;
3319 	unsigned int orig_len;
3320 	int n = 2, nfrags, pad = 0;
3321 	u16 hdrlen;
3322 
3323 	if (!ieee80211_hw_check(&local->hw, TX_AMSDU))
3324 		return false;
3325 
3326 	if (sdata->vif.offload_flags & IEEE80211_OFFLOAD_ENCAP_ENABLED)
3327 		return false;
3328 
3329 	if (skb_is_gso(skb))
3330 		return false;
3331 
3332 	if (!txq)
3333 		return false;
3334 
3335 	txqi = to_txq_info(txq);
3336 	if (test_bit(IEEE80211_TXQ_NO_AMSDU, &txqi->flags))
3337 		return false;
3338 
3339 	if (sta->sta.max_rc_amsdu_len)
3340 		max_amsdu_len = min_t(int, max_amsdu_len,
3341 				      sta->sta.max_rc_amsdu_len);
3342 
3343 	if (sta->sta.max_tid_amsdu_len[tid])
3344 		max_amsdu_len = min_t(int, max_amsdu_len,
3345 				      sta->sta.max_tid_amsdu_len[tid]);
3346 
3347 	flow_idx = fq_flow_idx(fq, skb);
3348 
3349 	spin_lock_bh(&fq->lock);
3350 
3351 	/* TODO: Ideally aggregation should be done on dequeue to remain
3352 	 * responsive to environment changes.
3353 	 */
3354 
3355 	tin = &txqi->tin;
3356 	flow = fq_flow_classify(fq, tin, flow_idx, skb);
3357 	head = skb_peek_tail(&flow->queue);
3358 	if (!head || skb_is_gso(head))
3359 		goto out;
3360 
3361 	orig_truesize = head->truesize;
3362 	orig_len = head->len;
3363 
3364 	if (skb->len + head->len > max_amsdu_len)
3365 		goto out;
3366 
3367 	nfrags = 1 + skb_shinfo(skb)->nr_frags;
3368 	nfrags += 1 + skb_shinfo(head)->nr_frags;
3369 	frag_tail = &skb_shinfo(head)->frag_list;
3370 	while (*frag_tail) {
3371 		nfrags += 1 + skb_shinfo(*frag_tail)->nr_frags;
3372 		frag_tail = &(*frag_tail)->next;
3373 		n++;
3374 	}
3375 
3376 	if (max_subframes && n > max_subframes)
3377 		goto out;
3378 
3379 	if (max_frags && nfrags > max_frags)
3380 		goto out;
3381 
3382 	if (!drv_can_aggregate_in_amsdu(local, head, skb))
3383 		goto out;
3384 
3385 	if (!ieee80211_amsdu_prepare_head(sdata, fast_tx, head))
3386 		goto out;
3387 
3388 	/* If n == 2, the "while (*frag_tail)" loop above didn't execute
3389 	 * and  frag_tail should be &skb_shinfo(head)->frag_list.
3390 	 * However, ieee80211_amsdu_prepare_head() can reallocate it.
3391 	 * Reload frag_tail to have it pointing to the correct place.
3392 	 */
3393 	if (n == 2)
3394 		frag_tail = &skb_shinfo(head)->frag_list;
3395 
3396 	/*
3397 	 * Pad out the previous subframe to a multiple of 4 by adding the
3398 	 * padding to the next one, that's being added. Note that head->len
3399 	 * is the length of the full A-MSDU, but that works since each time
3400 	 * we add a new subframe we pad out the previous one to a multiple
3401 	 * of 4 and thus it no longer matters in the next round.
3402 	 */
3403 	hdrlen = fast_tx->hdr_len - sizeof(rfc1042_header);
3404 	if ((head->len - hdrlen) & 3)
3405 		pad = 4 - ((head->len - hdrlen) & 3);
3406 
3407 	if (!ieee80211_amsdu_realloc_pad(local, skb, sizeof(rfc1042_header) +
3408 						     2 + pad))
3409 		goto out_recalc;
3410 
3411 	ret = true;
3412 	data = skb_push(skb, ETH_ALEN + 2);
3413 	memmove(data, data + ETH_ALEN + 2, 2 * ETH_ALEN);
3414 
3415 	data += 2 * ETH_ALEN;
3416 	len = cpu_to_be16(subframe_len);
3417 	memcpy(data, &len, 2);
3418 	memcpy(data + 2, rfc1042_header, sizeof(rfc1042_header));
3419 
3420 	memset(skb_push(skb, pad), 0, pad);
3421 
3422 	head->len += skb->len;
3423 	head->data_len += skb->len;
3424 	*frag_tail = skb;
3425 
3426 out_recalc:
3427 	fq->memory_usage += head->truesize - orig_truesize;
3428 	if (head->len != orig_len) {
3429 		flow->backlog += head->len - orig_len;
3430 		tin->backlog_bytes += head->len - orig_len;
3431 	}
3432 out:
3433 	spin_unlock_bh(&fq->lock);
3434 
3435 	return ret;
3436 }
3437 
3438 /*
3439  * Can be called while the sta lock is held. Anything that can cause packets to
3440  * be generated will cause deadlock!
3441  */
3442 static ieee80211_tx_result
3443 ieee80211_xmit_fast_finish(struct ieee80211_sub_if_data *sdata,
3444 			   struct sta_info *sta, u8 pn_offs,
3445 			   struct ieee80211_key *key,
3446 			   struct ieee80211_tx_data *tx)
3447 {
3448 	struct sk_buff *skb = tx->skb;
3449 	struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
3450 	struct ieee80211_hdr *hdr = (void *)skb->data;
3451 	u8 tid = IEEE80211_NUM_TIDS;
3452 
3453 	if (!ieee80211_hw_check(&tx->local->hw, HAS_RATE_CONTROL) &&
3454 	    ieee80211_tx_h_rate_ctrl(tx) != TX_CONTINUE)
3455 		return TX_DROP;
3456 
3457 	if (key)
3458 		info->control.hw_key = &key->conf;
3459 
3460 	dev_sw_netstats_tx_add(skb->dev, 1, skb->len);
3461 
3462 	if (hdr->frame_control & cpu_to_le16(IEEE80211_STYPE_QOS_DATA)) {
3463 		tid = skb->priority & IEEE80211_QOS_CTL_TAG1D_MASK;
3464 		hdr->seq_ctrl = ieee80211_tx_next_seq(sta, tid);
3465 	} else {
3466 		info->flags |= IEEE80211_TX_CTL_ASSIGN_SEQ;
3467 		hdr->seq_ctrl = cpu_to_le16(sdata->sequence_number);
3468 		sdata->sequence_number += 0x10;
3469 	}
3470 
3471 	if (skb_shinfo(skb)->gso_size)
3472 		sta->tx_stats.msdu[tid] +=
3473 			DIV_ROUND_UP(skb->len, skb_shinfo(skb)->gso_size);
3474 	else
3475 		sta->tx_stats.msdu[tid]++;
3476 
3477 	info->hw_queue = sdata->vif.hw_queue[skb_get_queue_mapping(skb)];
3478 
3479 	/* statistics normally done by ieee80211_tx_h_stats (but that
3480 	 * has to consider fragmentation, so is more complex)
3481 	 */
3482 	sta->tx_stats.bytes[skb_get_queue_mapping(skb)] += skb->len;
3483 	sta->tx_stats.packets[skb_get_queue_mapping(skb)]++;
3484 
3485 	if (pn_offs) {
3486 		u64 pn;
3487 		u8 *crypto_hdr = skb->data + pn_offs;
3488 
3489 		switch (key->conf.cipher) {
3490 		case WLAN_CIPHER_SUITE_CCMP:
3491 		case WLAN_CIPHER_SUITE_CCMP_256:
3492 		case WLAN_CIPHER_SUITE_GCMP:
3493 		case WLAN_CIPHER_SUITE_GCMP_256:
3494 			pn = atomic64_inc_return(&key->conf.tx_pn);
3495 			crypto_hdr[0] = pn;
3496 			crypto_hdr[1] = pn >> 8;
3497 			crypto_hdr[3] = 0x20 | (key->conf.keyidx << 6);
3498 			crypto_hdr[4] = pn >> 16;
3499 			crypto_hdr[5] = pn >> 24;
3500 			crypto_hdr[6] = pn >> 32;
3501 			crypto_hdr[7] = pn >> 40;
3502 			break;
3503 		}
3504 	}
3505 
3506 	return TX_CONTINUE;
3507 }
3508 
3509 static bool ieee80211_xmit_fast(struct ieee80211_sub_if_data *sdata,
3510 				struct sta_info *sta,
3511 				struct ieee80211_fast_tx *fast_tx,
3512 				struct sk_buff *skb)
3513 {
3514 	struct ieee80211_local *local = sdata->local;
3515 	u16 ethertype = (skb->data[12] << 8) | skb->data[13];
3516 	int extra_head = fast_tx->hdr_len - (ETH_HLEN - 2);
3517 	int hw_headroom = sdata->local->hw.extra_tx_headroom;
3518 	struct ethhdr eth;
3519 	struct ieee80211_tx_info *info;
3520 	struct ieee80211_hdr *hdr = (void *)fast_tx->hdr;
3521 	struct ieee80211_tx_data tx;
3522 	ieee80211_tx_result r;
3523 	struct tid_ampdu_tx *tid_tx = NULL;
3524 	u8 tid = IEEE80211_NUM_TIDS;
3525 
3526 	/* control port protocol needs a lot of special handling */
3527 	if (cpu_to_be16(ethertype) == sdata->control_port_protocol)
3528 		return false;
3529 
3530 	/* only RFC 1042 SNAP */
3531 	if (ethertype < ETH_P_802_3_MIN)
3532 		return false;
3533 
3534 	/* don't handle TX status request here either */
3535 	if (skb->sk && skb_shinfo(skb)->tx_flags & SKBTX_WIFI_STATUS)
3536 		return false;
3537 
3538 	if (hdr->frame_control & cpu_to_le16(IEEE80211_STYPE_QOS_DATA)) {
3539 		tid = skb->priority & IEEE80211_QOS_CTL_TAG1D_MASK;
3540 		tid_tx = rcu_dereference(sta->ampdu_mlme.tid_tx[tid]);
3541 		if (tid_tx) {
3542 			if (!test_bit(HT_AGG_STATE_OPERATIONAL, &tid_tx->state))
3543 				return false;
3544 			if (tid_tx->timeout)
3545 				tid_tx->last_tx = jiffies;
3546 		}
3547 	}
3548 
3549 	/* after this point (skb is modified) we cannot return false */
3550 
3551 	if (skb_shared(skb)) {
3552 		struct sk_buff *tmp_skb = skb;
3553 
3554 		skb = skb_clone(skb, GFP_ATOMIC);
3555 		kfree_skb(tmp_skb);
3556 
3557 		if (!skb)
3558 			return true;
3559 	}
3560 
3561 	if ((hdr->frame_control & cpu_to_le16(IEEE80211_STYPE_QOS_DATA)) &&
3562 	    ieee80211_amsdu_aggregate(sdata, sta, fast_tx, skb))
3563 		return true;
3564 
3565 	/* will not be crypto-handled beyond what we do here, so use false
3566 	 * as the may-encrypt argument for the resize to not account for
3567 	 * more room than we already have in 'extra_head'
3568 	 */
3569 	if (unlikely(ieee80211_skb_resize(sdata, skb,
3570 					  max_t(int, extra_head + hw_headroom -
3571 						     skb_headroom(skb), 0),
3572 					  ENCRYPT_NO))) {
3573 		kfree_skb(skb);
3574 		return true;
3575 	}
3576 
3577 	memcpy(&eth, skb->data, ETH_HLEN - 2);
3578 	hdr = skb_push(skb, extra_head);
3579 	memcpy(skb->data, fast_tx->hdr, fast_tx->hdr_len);
3580 	memcpy(skb->data + fast_tx->da_offs, eth.h_dest, ETH_ALEN);
3581 	memcpy(skb->data + fast_tx->sa_offs, eth.h_source, ETH_ALEN);
3582 
3583 	info = IEEE80211_SKB_CB(skb);
3584 	memset(info, 0, sizeof(*info));
3585 	info->band = fast_tx->band;
3586 	info->control.vif = &sdata->vif;
3587 	info->flags = IEEE80211_TX_CTL_FIRST_FRAGMENT |
3588 		      IEEE80211_TX_CTL_DONTFRAG |
3589 		      (tid_tx ? IEEE80211_TX_CTL_AMPDU : 0);
3590 	info->control.flags = IEEE80211_TX_CTRL_FAST_XMIT;
3591 
3592 #ifdef CONFIG_MAC80211_DEBUGFS
3593 	if (local->force_tx_status)
3594 		info->flags |= IEEE80211_TX_CTL_REQ_TX_STATUS;
3595 #endif
3596 
3597 	if (hdr->frame_control & cpu_to_le16(IEEE80211_STYPE_QOS_DATA)) {
3598 		tid = skb->priority & IEEE80211_QOS_CTL_TAG1D_MASK;
3599 		*ieee80211_get_qos_ctl(hdr) = tid;
3600 	}
3601 
3602 	__skb_queue_head_init(&tx.skbs);
3603 
3604 	tx.flags = IEEE80211_TX_UNICAST;
3605 	tx.local = local;
3606 	tx.sdata = sdata;
3607 	tx.sta = sta;
3608 	tx.key = fast_tx->key;
3609 
3610 	if (ieee80211_queue_skb(local, sdata, sta, skb))
3611 		return true;
3612 
3613 	tx.skb = skb;
3614 	r = ieee80211_xmit_fast_finish(sdata, sta, fast_tx->pn_offs,
3615 				       fast_tx->key, &tx);
3616 	tx.skb = NULL;
3617 	if (r == TX_DROP) {
3618 		kfree_skb(skb);
3619 		return true;
3620 	}
3621 
3622 	if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
3623 		sdata = container_of(sdata->bss,
3624 				     struct ieee80211_sub_if_data, u.ap);
3625 
3626 	__skb_queue_tail(&tx.skbs, skb);
3627 	ieee80211_tx_frags(local, &sdata->vif, sta, &tx.skbs, false);
3628 	return true;
3629 }
3630 
3631 struct sk_buff *ieee80211_tx_dequeue(struct ieee80211_hw *hw,
3632 				     struct ieee80211_txq *txq)
3633 {
3634 	struct ieee80211_local *local = hw_to_local(hw);
3635 	struct txq_info *txqi = container_of(txq, struct txq_info, txq);
3636 	struct ieee80211_hdr *hdr;
3637 	struct sk_buff *skb = NULL;
3638 	struct fq *fq = &local->fq;
3639 	struct fq_tin *tin = &txqi->tin;
3640 	struct ieee80211_tx_info *info;
3641 	struct ieee80211_tx_data tx;
3642 	ieee80211_tx_result r;
3643 	struct ieee80211_vif *vif = txq->vif;
3644 
3645 	WARN_ON_ONCE(softirq_count() == 0);
3646 
3647 	if (!ieee80211_txq_airtime_check(hw, txq))
3648 		return NULL;
3649 
3650 begin:
3651 	spin_lock_bh(&fq->lock);
3652 
3653 	if (test_bit(IEEE80211_TXQ_STOP, &txqi->flags) ||
3654 	    test_bit(IEEE80211_TXQ_STOP_NETIF_TX, &txqi->flags))
3655 		goto out;
3656 
3657 	if (vif->txqs_stopped[txq->ac]) {
3658 		set_bit(IEEE80211_TXQ_STOP_NETIF_TX, &txqi->flags);
3659 		goto out;
3660 	}
3661 
3662 	/* Make sure fragments stay together. */
3663 	skb = __skb_dequeue(&txqi->frags);
3664 	if (unlikely(skb)) {
3665 		if (!(IEEE80211_SKB_CB(skb)->control.flags &
3666 				IEEE80211_TX_INTCFL_NEED_TXPROCESSING))
3667 			goto out;
3668 		IEEE80211_SKB_CB(skb)->control.flags &=
3669 			~IEEE80211_TX_INTCFL_NEED_TXPROCESSING;
3670 	} else {
3671 		skb = fq_tin_dequeue(fq, tin, fq_tin_dequeue_func);
3672 	}
3673 
3674 	if (!skb)
3675 		goto out;
3676 
3677 	spin_unlock_bh(&fq->lock);
3678 
3679 	hdr = (struct ieee80211_hdr *)skb->data;
3680 	info = IEEE80211_SKB_CB(skb);
3681 
3682 	memset(&tx, 0, sizeof(tx));
3683 	__skb_queue_head_init(&tx.skbs);
3684 	tx.local = local;
3685 	tx.skb = skb;
3686 	tx.sdata = vif_to_sdata(info->control.vif);
3687 
3688 	if (txq->sta) {
3689 		tx.sta = container_of(txq->sta, struct sta_info, sta);
3690 		/*
3691 		 * Drop unicast frames to unauthorised stations unless they are
3692 		 * injected frames or EAPOL frames from the local station.
3693 		 */
3694 		if (unlikely(!(info->flags & IEEE80211_TX_CTL_INJECTED) &&
3695 			     ieee80211_is_data(hdr->frame_control) &&
3696 			     !ieee80211_vif_is_mesh(&tx.sdata->vif) &&
3697 			     tx.sdata->vif.type != NL80211_IFTYPE_OCB &&
3698 			     !is_multicast_ether_addr(hdr->addr1) &&
3699 			     !test_sta_flag(tx.sta, WLAN_STA_AUTHORIZED) &&
3700 			     (!(info->control.flags &
3701 				IEEE80211_TX_CTRL_PORT_CTRL_PROTO) ||
3702 			      !ether_addr_equal(tx.sdata->vif.addr,
3703 						hdr->addr2)))) {
3704 			I802_DEBUG_INC(local->tx_handlers_drop_unauth_port);
3705 			ieee80211_free_txskb(&local->hw, skb);
3706 			goto begin;
3707 		}
3708 	}
3709 
3710 	/*
3711 	 * The key can be removed while the packet was queued, so need to call
3712 	 * this here to get the current key.
3713 	 */
3714 	r = ieee80211_tx_h_select_key(&tx);
3715 	if (r != TX_CONTINUE) {
3716 		ieee80211_free_txskb(&local->hw, skb);
3717 		goto begin;
3718 	}
3719 
3720 	if (test_bit(IEEE80211_TXQ_AMPDU, &txqi->flags))
3721 		info->flags |= IEEE80211_TX_CTL_AMPDU;
3722 	else
3723 		info->flags &= ~IEEE80211_TX_CTL_AMPDU;
3724 
3725 	if (info->flags & IEEE80211_TX_CTL_HW_80211_ENCAP) {
3726 		if (!ieee80211_hw_check(&local->hw, HAS_RATE_CONTROL)) {
3727 			r = ieee80211_tx_h_rate_ctrl(&tx);
3728 			if (r != TX_CONTINUE) {
3729 				ieee80211_free_txskb(&local->hw, skb);
3730 				goto begin;
3731 			}
3732 		}
3733 		goto encap_out;
3734 	}
3735 
3736 	if (info->control.flags & IEEE80211_TX_CTRL_FAST_XMIT) {
3737 		struct sta_info *sta = container_of(txq->sta, struct sta_info,
3738 						    sta);
3739 		u8 pn_offs = 0;
3740 
3741 		if (tx.key &&
3742 		    (tx.key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_IV))
3743 			pn_offs = ieee80211_hdrlen(hdr->frame_control);
3744 
3745 		r = ieee80211_xmit_fast_finish(sta->sdata, sta, pn_offs,
3746 					       tx.key, &tx);
3747 		if (r != TX_CONTINUE) {
3748 			ieee80211_free_txskb(&local->hw, skb);
3749 			goto begin;
3750 		}
3751 	} else {
3752 		if (invoke_tx_handlers_late(&tx))
3753 			goto begin;
3754 
3755 		skb = __skb_dequeue(&tx.skbs);
3756 
3757 		if (!skb_queue_empty(&tx.skbs)) {
3758 			spin_lock_bh(&fq->lock);
3759 			skb_queue_splice_tail(&tx.skbs, &txqi->frags);
3760 			spin_unlock_bh(&fq->lock);
3761 		}
3762 	}
3763 
3764 	if (skb_has_frag_list(skb) &&
3765 	    !ieee80211_hw_check(&local->hw, TX_FRAG_LIST)) {
3766 		if (skb_linearize(skb)) {
3767 			ieee80211_free_txskb(&local->hw, skb);
3768 			goto begin;
3769 		}
3770 	}
3771 
3772 	switch (tx.sdata->vif.type) {
3773 	case NL80211_IFTYPE_MONITOR:
3774 		if (tx.sdata->u.mntr.flags & MONITOR_FLAG_ACTIVE) {
3775 			vif = &tx.sdata->vif;
3776 			break;
3777 		}
3778 		tx.sdata = rcu_dereference(local->monitor_sdata);
3779 		if (tx.sdata) {
3780 			vif = &tx.sdata->vif;
3781 			info->hw_queue =
3782 				vif->hw_queue[skb_get_queue_mapping(skb)];
3783 		} else if (ieee80211_hw_check(&local->hw, QUEUE_CONTROL)) {
3784 			ieee80211_free_txskb(&local->hw, skb);
3785 			goto begin;
3786 		} else {
3787 			vif = NULL;
3788 		}
3789 		break;
3790 	case NL80211_IFTYPE_AP_VLAN:
3791 		tx.sdata = container_of(tx.sdata->bss,
3792 					struct ieee80211_sub_if_data, u.ap);
3793 		fallthrough;
3794 	default:
3795 		vif = &tx.sdata->vif;
3796 		break;
3797 	}
3798 
3799 encap_out:
3800 	IEEE80211_SKB_CB(skb)->control.vif = vif;
3801 
3802 	if (vif &&
3803 	    wiphy_ext_feature_isset(local->hw.wiphy, NL80211_EXT_FEATURE_AQL)) {
3804 		bool ampdu = txq->ac != IEEE80211_AC_VO;
3805 		u32 airtime;
3806 
3807 		airtime = ieee80211_calc_expected_tx_airtime(hw, vif, txq->sta,
3808 							     skb->len, ampdu);
3809 		if (airtime) {
3810 			airtime = ieee80211_info_set_tx_time_est(info, airtime);
3811 			ieee80211_sta_update_pending_airtime(local, tx.sta,
3812 							     txq->ac,
3813 							     airtime,
3814 							     false);
3815 		}
3816 	}
3817 
3818 	return skb;
3819 
3820 out:
3821 	spin_unlock_bh(&fq->lock);
3822 
3823 	return skb;
3824 }
3825 EXPORT_SYMBOL(ieee80211_tx_dequeue);
3826 
3827 struct ieee80211_txq *ieee80211_next_txq(struct ieee80211_hw *hw, u8 ac)
3828 {
3829 	struct ieee80211_local *local = hw_to_local(hw);
3830 	struct airtime_sched_info *air_sched;
3831 	u64 now = ktime_get_boottime_ns();
3832 	struct ieee80211_txq *ret = NULL;
3833 	struct airtime_info *air_info;
3834 	struct txq_info *txqi = NULL;
3835 	struct rb_node *node;
3836 	bool first = false;
3837 
3838 	air_sched = &local->airtime[ac];
3839 	spin_lock_bh(&air_sched->lock);
3840 
3841 	node = air_sched->schedule_pos;
3842 
3843 begin:
3844 	if (!node) {
3845 		node = rb_first_cached(&air_sched->active_txqs);
3846 		first = true;
3847 	} else {
3848 		node = rb_next(node);
3849 	}
3850 
3851 	if (!node)
3852 		goto out;
3853 
3854 	txqi = container_of(node, struct txq_info, schedule_order);
3855 	air_info = to_airtime_info(&txqi->txq);
3856 
3857 	if (air_info->v_t > air_sched->v_t &&
3858 	    (!first || !airtime_catchup_v_t(air_sched, air_info->v_t, now)))
3859 		goto out;
3860 
3861 	if (!ieee80211_txq_airtime_check(hw, &txqi->txq)) {
3862 		first = false;
3863 		goto begin;
3864 	}
3865 
3866 	air_sched->schedule_pos = node;
3867 	air_sched->last_schedule_activity = now;
3868 	ret = &txqi->txq;
3869 out:
3870 	spin_unlock_bh(&air_sched->lock);
3871 	return ret;
3872 }
3873 EXPORT_SYMBOL(ieee80211_next_txq);
3874 
3875 static void __ieee80211_insert_txq(struct rb_root_cached *root,
3876 				   struct txq_info *txqi)
3877 {
3878 	struct rb_node **new = &root->rb_root.rb_node;
3879 	struct airtime_info *old_air, *new_air;
3880 	struct rb_node *parent = NULL;
3881 	struct txq_info *__txqi;
3882 	bool leftmost = true;
3883 
3884 	while (*new) {
3885 		parent = *new;
3886 		__txqi = rb_entry(parent, struct txq_info, schedule_order);
3887 		old_air = to_airtime_info(&__txqi->txq);
3888 		new_air = to_airtime_info(&txqi->txq);
3889 
3890 		if (new_air->v_t <= old_air->v_t) {
3891 			new = &parent->rb_left;
3892 		} else {
3893 			new = &parent->rb_right;
3894 			leftmost = false;
3895 		}
3896 	}
3897 
3898 	rb_link_node(&txqi->schedule_order, parent, new);
3899 	rb_insert_color_cached(&txqi->schedule_order, root, leftmost);
3900 }
3901 
3902 void ieee80211_resort_txq(struct ieee80211_hw *hw,
3903 			  struct ieee80211_txq *txq)
3904 {
3905 	struct airtime_info *air_info = to_airtime_info(txq);
3906 	struct ieee80211_local *local = hw_to_local(hw);
3907 	struct txq_info *txqi = to_txq_info(txq);
3908 	struct airtime_sched_info *air_sched;
3909 
3910 	air_sched = &local->airtime[txq->ac];
3911 
3912 	lockdep_assert_held(&air_sched->lock);
3913 
3914 	if (!RB_EMPTY_NODE(&txqi->schedule_order)) {
3915 		struct airtime_info *a_prev = NULL, *a_next = NULL;
3916 		struct txq_info *t_prev, *t_next;
3917 		struct rb_node *n_prev, *n_next;
3918 
3919 		/* Erasing a node can cause an expensive rebalancing operation,
3920 		 * so we check the previous and next nodes first and only remove
3921 		 * and re-insert if the current node is not already in the
3922 		 * correct position.
3923 		 */
3924 		if ((n_prev = rb_prev(&txqi->schedule_order)) != NULL) {
3925 			t_prev = container_of(n_prev, struct txq_info,
3926 					      schedule_order);
3927 			a_prev = to_airtime_info(&t_prev->txq);
3928 		}
3929 
3930 		if ((n_next = rb_next(&txqi->schedule_order)) != NULL) {
3931 			t_next = container_of(n_next, struct txq_info,
3932 					      schedule_order);
3933 			a_next = to_airtime_info(&t_next->txq);
3934 		}
3935 
3936 		if ((!a_prev || a_prev->v_t <= air_info->v_t) &&
3937 		    (!a_next || a_next->v_t > air_info->v_t))
3938 			return;
3939 
3940 		if (air_sched->schedule_pos == &txqi->schedule_order)
3941 			air_sched->schedule_pos = n_prev;
3942 
3943 		rb_erase_cached(&txqi->schedule_order,
3944 				&air_sched->active_txqs);
3945 		RB_CLEAR_NODE(&txqi->schedule_order);
3946 		__ieee80211_insert_txq(&air_sched->active_txqs, txqi);
3947 	}
3948 }
3949 
3950 void ieee80211_update_airtime_weight(struct ieee80211_local *local,
3951 				     struct airtime_sched_info *air_sched,
3952 				     u64 now, bool force)
3953 {
3954 	struct airtime_info *air_info, *tmp;
3955 	u64 weight_sum = 0;
3956 
3957 	if (unlikely(!now))
3958 		now = ktime_get_boottime_ns();
3959 
3960 	lockdep_assert_held(&air_sched->lock);
3961 
3962 	if (!force && (air_sched->last_weight_update <
3963 		       now - AIRTIME_ACTIVE_DURATION))
3964 		return;
3965 
3966 	list_for_each_entry_safe(air_info, tmp,
3967 				 &air_sched->active_list, list) {
3968 		if (airtime_is_active(air_info, now))
3969 			weight_sum += air_info->weight;
3970 		else
3971 			list_del_init(&air_info->list);
3972 	}
3973 	airtime_weight_sum_set(air_sched, weight_sum);
3974 	air_sched->last_weight_update = now;
3975 }
3976 
3977 void ieee80211_schedule_txq(struct ieee80211_hw *hw,
3978 			    struct ieee80211_txq *txq)
3979 	__acquires(txq_lock) __releases(txq_lock)
3980 {
3981 	struct ieee80211_local *local = hw_to_local(hw);
3982 	struct txq_info *txqi = to_txq_info(txq);
3983 	struct airtime_sched_info *air_sched;
3984 	u64 now = ktime_get_boottime_ns();
3985 	struct airtime_info *air_info;
3986 	u8 ac = txq->ac;
3987 	bool was_active;
3988 
3989 	air_sched = &local->airtime[ac];
3990 	air_info = to_airtime_info(txq);
3991 
3992 	spin_lock_bh(&air_sched->lock);
3993 	was_active = airtime_is_active(air_info, now);
3994 	airtime_set_active(air_sched, air_info, now);
3995 
3996 	if (!RB_EMPTY_NODE(&txqi->schedule_order))
3997 		goto out;
3998 
3999 	/* If the station has been inactive for a while, catch up its v_t so it
4000 	 * doesn't get indefinite priority; see comment above the definition of
4001 	 * AIRTIME_MAX_BEHIND.
4002 	 */
4003 	if ((!was_active && air_info->v_t < air_sched->v_t) ||
4004 	    air_info->v_t < air_sched->v_t - AIRTIME_MAX_BEHIND)
4005 		air_info->v_t = air_sched->v_t;
4006 
4007 	ieee80211_update_airtime_weight(local, air_sched, now, !was_active);
4008 	__ieee80211_insert_txq(&air_sched->active_txqs, txqi);
4009 
4010 out:
4011 	spin_unlock_bh(&air_sched->lock);
4012 }
4013 EXPORT_SYMBOL(ieee80211_schedule_txq);
4014 
4015 static void __ieee80211_unschedule_txq(struct ieee80211_hw *hw,
4016 				       struct ieee80211_txq *txq,
4017 				       bool purge)
4018 {
4019 	struct ieee80211_local *local = hw_to_local(hw);
4020 	struct txq_info *txqi = to_txq_info(txq);
4021 	struct airtime_sched_info *air_sched;
4022 	struct airtime_info *air_info;
4023 
4024 	air_sched = &local->airtime[txq->ac];
4025 	air_info = to_airtime_info(&txqi->txq);
4026 
4027 	lockdep_assert_held(&air_sched->lock);
4028 
4029 	if (purge) {
4030 		list_del_init(&air_info->list);
4031 		ieee80211_update_airtime_weight(local, air_sched, 0, true);
4032 	}
4033 
4034 	if (RB_EMPTY_NODE(&txqi->schedule_order))
4035 		return;
4036 
4037 	if (air_sched->schedule_pos == &txqi->schedule_order)
4038 		air_sched->schedule_pos = rb_prev(&txqi->schedule_order);
4039 
4040 	if (!purge)
4041 		airtime_set_active(air_sched, air_info,
4042 				   ktime_get_boottime_ns());
4043 
4044 	rb_erase_cached(&txqi->schedule_order,
4045 			&air_sched->active_txqs);
4046 	RB_CLEAR_NODE(&txqi->schedule_order);
4047 }
4048 
4049 void ieee80211_unschedule_txq(struct ieee80211_hw *hw,
4050 			      struct ieee80211_txq *txq,
4051 			      bool purge)
4052 	__acquires(txq_lock) __releases(txq_lock)
4053 {
4054 	struct ieee80211_local *local = hw_to_local(hw);
4055 
4056 	spin_lock_bh(&local->airtime[txq->ac].lock);
4057 	__ieee80211_unschedule_txq(hw, txq, purge);
4058 	spin_unlock_bh(&local->airtime[txq->ac].lock);
4059 }
4060 
4061 void ieee80211_return_txq(struct ieee80211_hw *hw,
4062 			  struct ieee80211_txq *txq, bool force)
4063 {
4064 	struct ieee80211_local *local = hw_to_local(hw);
4065 	struct txq_info *txqi = to_txq_info(txq);
4066 
4067 	spin_lock_bh(&local->airtime[txq->ac].lock);
4068 
4069 	if (!RB_EMPTY_NODE(&txqi->schedule_order) && !force &&
4070 	    !txq_has_queue(txq))
4071 		__ieee80211_unschedule_txq(hw, txq, false);
4072 
4073 	spin_unlock_bh(&local->airtime[txq->ac].lock);
4074 }
4075 EXPORT_SYMBOL(ieee80211_return_txq);
4076 
4077 DEFINE_STATIC_KEY_FALSE(aql_disable);
4078 
4079 bool ieee80211_txq_airtime_check(struct ieee80211_hw *hw,
4080 				 struct ieee80211_txq *txq)
4081 {
4082 	struct airtime_info *air_info = to_airtime_info(txq);
4083 	struct ieee80211_local *local = hw_to_local(hw);
4084 
4085 	if (!wiphy_ext_feature_isset(local->hw.wiphy, NL80211_EXT_FEATURE_AQL))
4086 		return true;
4087 
4088 	if (static_branch_unlikely(&aql_disable))
4089 		return true;
4090 
4091 	if (!txq->sta)
4092 		return true;
4093 
4094 	if (unlikely(txq->tid == IEEE80211_NUM_TIDS))
4095 		return true;
4096 
4097 	if (atomic_read(&air_info->aql_tx_pending) < air_info->aql_limit_low)
4098 		return true;
4099 
4100 	if (atomic_read(&local->aql_total_pending_airtime) <
4101 	    local->aql_threshold &&
4102 	    atomic_read(&air_info->aql_tx_pending) < air_info->aql_limit_high)
4103 		return true;
4104 
4105 	return false;
4106 }
4107 EXPORT_SYMBOL(ieee80211_txq_airtime_check);
4108 
4109 bool ieee80211_txq_may_transmit(struct ieee80211_hw *hw,
4110 				struct ieee80211_txq *txq)
4111 {
4112 	struct txq_info *first_txqi = NULL, *txqi = to_txq_info(txq);
4113 	struct ieee80211_local *local = hw_to_local(hw);
4114 	struct airtime_sched_info *air_sched;
4115 	struct airtime_info *air_info;
4116 	struct rb_node *node = NULL;
4117 	bool ret = false;
4118 	u64 now;
4119 
4120 
4121 	if (!ieee80211_txq_airtime_check(hw, txq))
4122 		return false;
4123 
4124 	air_sched = &local->airtime[txq->ac];
4125 	spin_lock_bh(&air_sched->lock);
4126 
4127 	if (RB_EMPTY_NODE(&txqi->schedule_order))
4128 		goto out;
4129 
4130 	now = ktime_get_boottime_ns();
4131 
4132 	/* Like in ieee80211_next_txq(), make sure the first station in the
4133 	 * scheduling order is eligible for transmission to avoid starvation.
4134 	 */
4135 	node = rb_first_cached(&air_sched->active_txqs);
4136 	if (node) {
4137 		first_txqi = container_of(node, struct txq_info,
4138 					  schedule_order);
4139 		air_info = to_airtime_info(&first_txqi->txq);
4140 
4141 		if (air_sched->v_t < air_info->v_t)
4142 			airtime_catchup_v_t(air_sched, air_info->v_t, now);
4143 	}
4144 
4145 	air_info = to_airtime_info(&txqi->txq);
4146 	if (air_info->v_t <= air_sched->v_t) {
4147 		air_sched->last_schedule_activity = now;
4148 		ret = true;
4149 	}
4150 
4151 out:
4152 	spin_unlock_bh(&air_sched->lock);
4153 	return ret;
4154 }
4155 EXPORT_SYMBOL(ieee80211_txq_may_transmit);
4156 
4157 void ieee80211_txq_schedule_start(struct ieee80211_hw *hw, u8 ac)
4158 {
4159 	struct ieee80211_local *local = hw_to_local(hw);
4160 	struct airtime_sched_info *air_sched = &local->airtime[ac];
4161 
4162 	spin_lock_bh(&air_sched->lock);
4163 	air_sched->schedule_pos = NULL;
4164 	spin_unlock_bh(&air_sched->lock);
4165 }
4166 EXPORT_SYMBOL(ieee80211_txq_schedule_start);
4167 
4168 void __ieee80211_subif_start_xmit(struct sk_buff *skb,
4169 				  struct net_device *dev,
4170 				  u32 info_flags,
4171 				  u32 ctrl_flags,
4172 				  u64 *cookie)
4173 {
4174 	struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
4175 	struct ieee80211_local *local = sdata->local;
4176 	struct sta_info *sta;
4177 	struct sk_buff *next;
4178 
4179 	if (unlikely(skb->len < ETH_HLEN)) {
4180 		kfree_skb(skb);
4181 		return;
4182 	}
4183 
4184 	rcu_read_lock();
4185 
4186 	if (ieee80211_lookup_ra_sta(sdata, skb, &sta))
4187 		goto out_free;
4188 
4189 	if (IS_ERR(sta))
4190 		sta = NULL;
4191 
4192 	if (local->ops->wake_tx_queue) {
4193 		u16 queue = __ieee80211_select_queue(sdata, sta, skb);
4194 		skb_set_queue_mapping(skb, queue);
4195 		skb_get_hash(skb);
4196 	}
4197 
4198 	ieee80211_aggr_check(sdata, sta, skb);
4199 
4200 	if (sta) {
4201 		struct ieee80211_fast_tx *fast_tx;
4202 
4203 		sk_pacing_shift_update(skb->sk, sdata->local->hw.tx_sk_pacing_shift);
4204 
4205 		fast_tx = rcu_dereference(sta->fast_tx);
4206 
4207 		if (fast_tx &&
4208 		    ieee80211_xmit_fast(sdata, sta, fast_tx, skb))
4209 			goto out;
4210 	}
4211 
4212 	if (skb_is_gso(skb)) {
4213 		struct sk_buff *segs;
4214 
4215 		segs = skb_gso_segment(skb, 0);
4216 		if (IS_ERR(segs)) {
4217 			goto out_free;
4218 		} else if (segs) {
4219 			consume_skb(skb);
4220 			skb = segs;
4221 		}
4222 	} else {
4223 		/* we cannot process non-linear frames on this path */
4224 		if (skb_linearize(skb)) {
4225 			kfree_skb(skb);
4226 			goto out;
4227 		}
4228 
4229 		/* the frame could be fragmented, software-encrypted, and other
4230 		 * things so we cannot really handle checksum offload with it -
4231 		 * fix it up in software before we handle anything else.
4232 		 */
4233 		if (skb->ip_summed == CHECKSUM_PARTIAL) {
4234 			skb_set_transport_header(skb,
4235 						 skb_checksum_start_offset(skb));
4236 			if (skb_checksum_help(skb))
4237 				goto out_free;
4238 		}
4239 	}
4240 
4241 	skb_list_walk_safe(skb, skb, next) {
4242 		skb_mark_not_on_list(skb);
4243 
4244 		if (skb->protocol == sdata->control_port_protocol)
4245 			ctrl_flags |= IEEE80211_TX_CTRL_SKIP_MPATH_LOOKUP;
4246 
4247 		skb = ieee80211_build_hdr(sdata, skb, info_flags,
4248 					  sta, ctrl_flags, cookie);
4249 		if (IS_ERR(skb)) {
4250 			kfree_skb_list(next);
4251 			goto out;
4252 		}
4253 
4254 		dev_sw_netstats_tx_add(dev, 1, skb->len);
4255 
4256 		ieee80211_xmit(sdata, sta, skb);
4257 	}
4258 	goto out;
4259  out_free:
4260 	kfree_skb(skb);
4261  out:
4262 	rcu_read_unlock();
4263 }
4264 
4265 static int ieee80211_change_da(struct sk_buff *skb, struct sta_info *sta)
4266 {
4267 	struct ethhdr *eth;
4268 	int err;
4269 
4270 	err = skb_ensure_writable(skb, ETH_HLEN);
4271 	if (unlikely(err))
4272 		return err;
4273 
4274 	eth = (void *)skb->data;
4275 	ether_addr_copy(eth->h_dest, sta->sta.addr);
4276 
4277 	return 0;
4278 }
4279 
4280 static bool ieee80211_multicast_to_unicast(struct sk_buff *skb,
4281 					   struct net_device *dev)
4282 {
4283 	struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
4284 	const struct ethhdr *eth = (void *)skb->data;
4285 	const struct vlan_ethhdr *ethvlan = (void *)skb->data;
4286 	__be16 ethertype;
4287 
4288 	if (likely(!is_multicast_ether_addr(eth->h_dest)))
4289 		return false;
4290 
4291 	switch (sdata->vif.type) {
4292 	case NL80211_IFTYPE_AP_VLAN:
4293 		if (sdata->u.vlan.sta)
4294 			return false;
4295 		if (sdata->wdev.use_4addr)
4296 			return false;
4297 		fallthrough;
4298 	case NL80211_IFTYPE_AP:
4299 		/* check runtime toggle for this bss */
4300 		if (!sdata->bss->multicast_to_unicast)
4301 			return false;
4302 		break;
4303 	default:
4304 		return false;
4305 	}
4306 
4307 	/* multicast to unicast conversion only for some payload */
4308 	ethertype = eth->h_proto;
4309 	if (ethertype == htons(ETH_P_8021Q) && skb->len >= VLAN_ETH_HLEN)
4310 		ethertype = ethvlan->h_vlan_encapsulated_proto;
4311 	switch (ethertype) {
4312 	case htons(ETH_P_ARP):
4313 	case htons(ETH_P_IP):
4314 	case htons(ETH_P_IPV6):
4315 		break;
4316 	default:
4317 		return false;
4318 	}
4319 
4320 	return true;
4321 }
4322 
4323 static void
4324 ieee80211_convert_to_unicast(struct sk_buff *skb, struct net_device *dev,
4325 			     struct sk_buff_head *queue)
4326 {
4327 	struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
4328 	struct ieee80211_local *local = sdata->local;
4329 	const struct ethhdr *eth = (struct ethhdr *)skb->data;
4330 	struct sta_info *sta, *first = NULL;
4331 	struct sk_buff *cloned_skb;
4332 
4333 	rcu_read_lock();
4334 
4335 	list_for_each_entry_rcu(sta, &local->sta_list, list) {
4336 		if (sdata != sta->sdata)
4337 			/* AP-VLAN mismatch */
4338 			continue;
4339 		if (unlikely(ether_addr_equal(eth->h_source, sta->sta.addr)))
4340 			/* do not send back to source */
4341 			continue;
4342 		if (!first) {
4343 			first = sta;
4344 			continue;
4345 		}
4346 		cloned_skb = skb_clone(skb, GFP_ATOMIC);
4347 		if (!cloned_skb)
4348 			goto multicast;
4349 		if (unlikely(ieee80211_change_da(cloned_skb, sta))) {
4350 			dev_kfree_skb(cloned_skb);
4351 			goto multicast;
4352 		}
4353 		__skb_queue_tail(queue, cloned_skb);
4354 	}
4355 
4356 	if (likely(first)) {
4357 		if (unlikely(ieee80211_change_da(skb, first)))
4358 			goto multicast;
4359 		__skb_queue_tail(queue, skb);
4360 	} else {
4361 		/* no STA connected, drop */
4362 		kfree_skb(skb);
4363 		skb = NULL;
4364 	}
4365 
4366 	goto out;
4367 multicast:
4368 	__skb_queue_purge(queue);
4369 	__skb_queue_tail(queue, skb);
4370 out:
4371 	rcu_read_unlock();
4372 }
4373 
4374 /**
4375  * ieee80211_subif_start_xmit - netif start_xmit function for 802.3 vifs
4376  * @skb: packet to be sent
4377  * @dev: incoming interface
4378  *
4379  * On failure skb will be freed.
4380  */
4381 netdev_tx_t ieee80211_subif_start_xmit(struct sk_buff *skb,
4382 				       struct net_device *dev)
4383 {
4384 	if (unlikely(ieee80211_multicast_to_unicast(skb, dev))) {
4385 		struct sk_buff_head queue;
4386 
4387 		__skb_queue_head_init(&queue);
4388 		ieee80211_convert_to_unicast(skb, dev, &queue);
4389 		while ((skb = __skb_dequeue(&queue)))
4390 			__ieee80211_subif_start_xmit(skb, dev, 0, 0, NULL);
4391 	} else {
4392 		__ieee80211_subif_start_xmit(skb, dev, 0, 0, NULL);
4393 	}
4394 
4395 	return NETDEV_TX_OK;
4396 }
4397 
4398 static bool ieee80211_tx_8023(struct ieee80211_sub_if_data *sdata,
4399 			      struct sk_buff *skb, int led_len,
4400 			      struct sta_info *sta,
4401 			      bool txpending)
4402 {
4403 	struct ieee80211_local *local = sdata->local;
4404 	struct ieee80211_tx_control control = {};
4405 	struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
4406 	struct ieee80211_sta *pubsta = NULL;
4407 	unsigned long flags;
4408 	int q = info->hw_queue;
4409 
4410 	if (sta)
4411 		sk_pacing_shift_update(skb->sk, local->hw.tx_sk_pacing_shift);
4412 
4413 	if (ieee80211_queue_skb(local, sdata, sta, skb))
4414 		return true;
4415 
4416 	spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
4417 
4418 	if (local->queue_stop_reasons[q] ||
4419 	    (!txpending && !skb_queue_empty(&local->pending[q]))) {
4420 		if (txpending)
4421 			skb_queue_head(&local->pending[q], skb);
4422 		else
4423 			skb_queue_tail(&local->pending[q], skb);
4424 
4425 		spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
4426 
4427 		return false;
4428 	}
4429 
4430 	spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
4431 
4432 	if (sta && sta->uploaded)
4433 		pubsta = &sta->sta;
4434 
4435 	control.sta = pubsta;
4436 
4437 	drv_tx(local, &control, skb);
4438 
4439 	return true;
4440 }
4441 
4442 static void ieee80211_8023_xmit(struct ieee80211_sub_if_data *sdata,
4443 				struct net_device *dev, struct sta_info *sta,
4444 				struct ieee80211_key *key, struct sk_buff *skb)
4445 {
4446 	struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
4447 	struct ieee80211_local *local = sdata->local;
4448 	struct tid_ampdu_tx *tid_tx;
4449 	u8 tid;
4450 
4451 	if (local->ops->wake_tx_queue) {
4452 		u16 queue = __ieee80211_select_queue(sdata, sta, skb);
4453 		skb_set_queue_mapping(skb, queue);
4454 		skb_get_hash(skb);
4455 	}
4456 
4457 	if (unlikely(test_bit(SCAN_SW_SCANNING, &local->scanning)) &&
4458 	    test_bit(SDATA_STATE_OFFCHANNEL, &sdata->state))
4459 		goto out_free;
4460 
4461 	memset(info, 0, sizeof(*info));
4462 
4463 	ieee80211_aggr_check(sdata, sta, skb);
4464 
4465 	tid = skb->priority & IEEE80211_QOS_CTL_TAG1D_MASK;
4466 	tid_tx = rcu_dereference(sta->ampdu_mlme.tid_tx[tid]);
4467 	if (tid_tx) {
4468 		if (!test_bit(HT_AGG_STATE_OPERATIONAL, &tid_tx->state)) {
4469 			/* fall back to non-offload slow path */
4470 			__ieee80211_subif_start_xmit(skb, dev, 0, 0, NULL);
4471 			return;
4472 		}
4473 
4474 		info->flags |= IEEE80211_TX_CTL_AMPDU;
4475 		if (tid_tx->timeout)
4476 			tid_tx->last_tx = jiffies;
4477 	}
4478 
4479 	if (unlikely(skb->sk &&
4480 		     skb_shinfo(skb)->tx_flags & SKBTX_WIFI_STATUS))
4481 		info->ack_frame_id = ieee80211_store_ack_skb(local, skb,
4482 							     &info->flags, NULL);
4483 
4484 	info->hw_queue = sdata->vif.hw_queue[skb_get_queue_mapping(skb)];
4485 
4486 	dev_sw_netstats_tx_add(dev, 1, skb->len);
4487 
4488 	sta->tx_stats.bytes[skb_get_queue_mapping(skb)] += skb->len;
4489 	sta->tx_stats.packets[skb_get_queue_mapping(skb)]++;
4490 
4491 	if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
4492 		sdata = container_of(sdata->bss,
4493 				     struct ieee80211_sub_if_data, u.ap);
4494 
4495 	info->flags |= IEEE80211_TX_CTL_HW_80211_ENCAP;
4496 	info->control.vif = &sdata->vif;
4497 
4498 	if (key)
4499 		info->control.hw_key = &key->conf;
4500 
4501 	ieee80211_tx_8023(sdata, skb, skb->len, sta, false);
4502 
4503 	return;
4504 
4505 out_free:
4506 	kfree_skb(skb);
4507 }
4508 
4509 netdev_tx_t ieee80211_subif_start_xmit_8023(struct sk_buff *skb,
4510 					    struct net_device *dev)
4511 {
4512 	struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
4513 	struct ethhdr *ehdr = (struct ethhdr *)skb->data;
4514 	struct ieee80211_key *key;
4515 	struct sta_info *sta;
4516 
4517 	if (unlikely(skb->len < ETH_HLEN)) {
4518 		kfree_skb(skb);
4519 		return NETDEV_TX_OK;
4520 	}
4521 
4522 	rcu_read_lock();
4523 
4524 	if (ieee80211_lookup_ra_sta(sdata, skb, &sta)) {
4525 		kfree_skb(skb);
4526 		goto out;
4527 	}
4528 
4529 	if (unlikely(IS_ERR_OR_NULL(sta) || !sta->uploaded ||
4530 	    !test_sta_flag(sta, WLAN_STA_AUTHORIZED) ||
4531 	    sdata->control_port_protocol == ehdr->h_proto))
4532 		goto skip_offload;
4533 
4534 	key = rcu_dereference(sta->ptk[sta->ptk_idx]);
4535 	if (!key)
4536 		key = rcu_dereference(sdata->default_unicast_key);
4537 
4538 	if (key && (!(key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE) ||
4539 		    key->conf.cipher == WLAN_CIPHER_SUITE_TKIP))
4540 		goto skip_offload;
4541 
4542 	ieee80211_8023_xmit(sdata, dev, sta, key, skb);
4543 	goto out;
4544 
4545 skip_offload:
4546 	ieee80211_subif_start_xmit(skb, dev);
4547 out:
4548 	rcu_read_unlock();
4549 
4550 	return NETDEV_TX_OK;
4551 }
4552 
4553 struct sk_buff *
4554 ieee80211_build_data_template(struct ieee80211_sub_if_data *sdata,
4555 			      struct sk_buff *skb, u32 info_flags)
4556 {
4557 	struct ieee80211_hdr *hdr;
4558 	struct ieee80211_tx_data tx = {
4559 		.local = sdata->local,
4560 		.sdata = sdata,
4561 	};
4562 	struct sta_info *sta;
4563 
4564 	rcu_read_lock();
4565 
4566 	if (ieee80211_lookup_ra_sta(sdata, skb, &sta)) {
4567 		kfree_skb(skb);
4568 		skb = ERR_PTR(-EINVAL);
4569 		goto out;
4570 	}
4571 
4572 	skb = ieee80211_build_hdr(sdata, skb, info_flags, sta, 0, NULL);
4573 	if (IS_ERR(skb))
4574 		goto out;
4575 
4576 	hdr = (void *)skb->data;
4577 	tx.sta = sta_info_get(sdata, hdr->addr1);
4578 	tx.skb = skb;
4579 
4580 	if (ieee80211_tx_h_select_key(&tx) != TX_CONTINUE) {
4581 		rcu_read_unlock();
4582 		kfree_skb(skb);
4583 		return ERR_PTR(-EINVAL);
4584 	}
4585 
4586 out:
4587 	rcu_read_unlock();
4588 	return skb;
4589 }
4590 
4591 /*
4592  * ieee80211_clear_tx_pending may not be called in a context where
4593  * it is possible that it packets could come in again.
4594  */
4595 void ieee80211_clear_tx_pending(struct ieee80211_local *local)
4596 {
4597 	struct sk_buff *skb;
4598 	int i;
4599 
4600 	for (i = 0; i < local->hw.queues; i++) {
4601 		while ((skb = skb_dequeue(&local->pending[i])) != NULL)
4602 			ieee80211_free_txskb(&local->hw, skb);
4603 	}
4604 }
4605 
4606 /*
4607  * Returns false if the frame couldn't be transmitted but was queued instead,
4608  * which in this case means re-queued -- take as an indication to stop sending
4609  * more pending frames.
4610  */
4611 static bool ieee80211_tx_pending_skb(struct ieee80211_local *local,
4612 				     struct sk_buff *skb)
4613 {
4614 	struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
4615 	struct ieee80211_sub_if_data *sdata;
4616 	struct sta_info *sta;
4617 	struct ieee80211_hdr *hdr;
4618 	bool result;
4619 	struct ieee80211_chanctx_conf *chanctx_conf;
4620 
4621 	sdata = vif_to_sdata(info->control.vif);
4622 
4623 	if (info->control.flags & IEEE80211_TX_INTCFL_NEED_TXPROCESSING) {
4624 		chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
4625 		if (unlikely(!chanctx_conf)) {
4626 			dev_kfree_skb(skb);
4627 			return true;
4628 		}
4629 		info->band = chanctx_conf->def.chan->band;
4630 		result = ieee80211_tx(sdata, NULL, skb, true);
4631 	} else if (info->flags & IEEE80211_TX_CTL_HW_80211_ENCAP) {
4632 		if (ieee80211_lookup_ra_sta(sdata, skb, &sta)) {
4633 			dev_kfree_skb(skb);
4634 			return true;
4635 		}
4636 
4637 		if (IS_ERR(sta) || (sta && !sta->uploaded))
4638 			sta = NULL;
4639 
4640 		result = ieee80211_tx_8023(sdata, skb, skb->len, sta, true);
4641 	} else {
4642 		struct sk_buff_head skbs;
4643 
4644 		__skb_queue_head_init(&skbs);
4645 		__skb_queue_tail(&skbs, skb);
4646 
4647 		hdr = (struct ieee80211_hdr *)skb->data;
4648 		sta = sta_info_get(sdata, hdr->addr1);
4649 
4650 		result = __ieee80211_tx(local, &skbs, skb->len, sta, true);
4651 	}
4652 
4653 	return result;
4654 }
4655 
4656 /*
4657  * Transmit all pending packets. Called from tasklet.
4658  */
4659 void ieee80211_tx_pending(struct tasklet_struct *t)
4660 {
4661 	struct ieee80211_local *local = from_tasklet(local, t,
4662 						     tx_pending_tasklet);
4663 	unsigned long flags;
4664 	int i;
4665 	bool txok;
4666 
4667 	rcu_read_lock();
4668 
4669 	spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
4670 	for (i = 0; i < local->hw.queues; i++) {
4671 		/*
4672 		 * If queue is stopped by something other than due to pending
4673 		 * frames, or we have no pending frames, proceed to next queue.
4674 		 */
4675 		if (local->queue_stop_reasons[i] ||
4676 		    skb_queue_empty(&local->pending[i]))
4677 			continue;
4678 
4679 		while (!skb_queue_empty(&local->pending[i])) {
4680 			struct sk_buff *skb = __skb_dequeue(&local->pending[i]);
4681 			struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
4682 
4683 			if (WARN_ON(!info->control.vif)) {
4684 				ieee80211_free_txskb(&local->hw, skb);
4685 				continue;
4686 			}
4687 
4688 			spin_unlock_irqrestore(&local->queue_stop_reason_lock,
4689 						flags);
4690 
4691 			txok = ieee80211_tx_pending_skb(local, skb);
4692 			spin_lock_irqsave(&local->queue_stop_reason_lock,
4693 					  flags);
4694 			if (!txok)
4695 				break;
4696 		}
4697 
4698 		if (skb_queue_empty(&local->pending[i]))
4699 			ieee80211_propagate_queue_wake(local, i);
4700 	}
4701 	spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
4702 
4703 	rcu_read_unlock();
4704 }
4705 
4706 /* functions for drivers to get certain frames */
4707 
4708 static void __ieee80211_beacon_add_tim(struct ieee80211_sub_if_data *sdata,
4709 				       struct ps_data *ps, struct sk_buff *skb,
4710 				       bool is_template)
4711 {
4712 	u8 *pos, *tim;
4713 	int aid0 = 0;
4714 	int i, have_bits = 0, n1, n2;
4715 
4716 	/* Generate bitmap for TIM only if there are any STAs in power save
4717 	 * mode. */
4718 	if (atomic_read(&ps->num_sta_ps) > 0)
4719 		/* in the hope that this is faster than
4720 		 * checking byte-for-byte */
4721 		have_bits = !bitmap_empty((unsigned long *)ps->tim,
4722 					  IEEE80211_MAX_AID+1);
4723 	if (!is_template) {
4724 		if (ps->dtim_count == 0)
4725 			ps->dtim_count = sdata->vif.bss_conf.dtim_period - 1;
4726 		else
4727 			ps->dtim_count--;
4728 	}
4729 
4730 	tim = pos = skb_put(skb, 6);
4731 	*pos++ = WLAN_EID_TIM;
4732 	*pos++ = 4;
4733 	*pos++ = ps->dtim_count;
4734 	*pos++ = sdata->vif.bss_conf.dtim_period;
4735 
4736 	if (ps->dtim_count == 0 && !skb_queue_empty(&ps->bc_buf))
4737 		aid0 = 1;
4738 
4739 	ps->dtim_bc_mc = aid0 == 1;
4740 
4741 	if (have_bits) {
4742 		/* Find largest even number N1 so that bits numbered 1 through
4743 		 * (N1 x 8) - 1 in the bitmap are 0 and number N2 so that bits
4744 		 * (N2 + 1) x 8 through 2007 are 0. */
4745 		n1 = 0;
4746 		for (i = 0; i < IEEE80211_MAX_TIM_LEN; i++) {
4747 			if (ps->tim[i]) {
4748 				n1 = i & 0xfe;
4749 				break;
4750 			}
4751 		}
4752 		n2 = n1;
4753 		for (i = IEEE80211_MAX_TIM_LEN - 1; i >= n1; i--) {
4754 			if (ps->tim[i]) {
4755 				n2 = i;
4756 				break;
4757 			}
4758 		}
4759 
4760 		/* Bitmap control */
4761 		*pos++ = n1 | aid0;
4762 		/* Part Virt Bitmap */
4763 		skb_put(skb, n2 - n1);
4764 		memcpy(pos, ps->tim + n1, n2 - n1 + 1);
4765 
4766 		tim[1] = n2 - n1 + 4;
4767 	} else {
4768 		*pos++ = aid0; /* Bitmap control */
4769 		*pos++ = 0; /* Part Virt Bitmap */
4770 	}
4771 }
4772 
4773 static int ieee80211_beacon_add_tim(struct ieee80211_sub_if_data *sdata,
4774 				    struct ps_data *ps, struct sk_buff *skb,
4775 				    bool is_template)
4776 {
4777 	struct ieee80211_local *local = sdata->local;
4778 
4779 	/*
4780 	 * Not very nice, but we want to allow the driver to call
4781 	 * ieee80211_beacon_get() as a response to the set_tim()
4782 	 * callback. That, however, is already invoked under the
4783 	 * sta_lock to guarantee consistent and race-free update
4784 	 * of the tim bitmap in mac80211 and the driver.
4785 	 */
4786 	if (local->tim_in_locked_section) {
4787 		__ieee80211_beacon_add_tim(sdata, ps, skb, is_template);
4788 	} else {
4789 		spin_lock_bh(&local->tim_lock);
4790 		__ieee80211_beacon_add_tim(sdata, ps, skb, is_template);
4791 		spin_unlock_bh(&local->tim_lock);
4792 	}
4793 
4794 	return 0;
4795 }
4796 
4797 static void ieee80211_set_beacon_cntdwn(struct ieee80211_sub_if_data *sdata,
4798 					struct beacon_data *beacon)
4799 {
4800 	u8 *beacon_data, count, max_count = 1;
4801 	struct probe_resp *resp;
4802 	size_t beacon_data_len;
4803 	u16 *bcn_offsets;
4804 	int i;
4805 
4806 	switch (sdata->vif.type) {
4807 	case NL80211_IFTYPE_AP:
4808 		beacon_data = beacon->tail;
4809 		beacon_data_len = beacon->tail_len;
4810 		break;
4811 	case NL80211_IFTYPE_ADHOC:
4812 		beacon_data = beacon->head;
4813 		beacon_data_len = beacon->head_len;
4814 		break;
4815 	case NL80211_IFTYPE_MESH_POINT:
4816 		beacon_data = beacon->head;
4817 		beacon_data_len = beacon->head_len;
4818 		break;
4819 	default:
4820 		return;
4821 	}
4822 
4823 	rcu_read_lock();
4824 	resp = rcu_dereference(sdata->u.ap.probe_resp);
4825 
4826 	bcn_offsets = beacon->cntdwn_counter_offsets;
4827 	count = beacon->cntdwn_current_counter;
4828 	if (sdata->vif.csa_active)
4829 		max_count = IEEE80211_MAX_CNTDWN_COUNTERS_NUM;
4830 
4831 	for (i = 0; i < max_count; ++i) {
4832 		if (bcn_offsets[i]) {
4833 			if (WARN_ON_ONCE(bcn_offsets[i] >= beacon_data_len)) {
4834 				rcu_read_unlock();
4835 				return;
4836 			}
4837 			beacon_data[bcn_offsets[i]] = count;
4838 		}
4839 
4840 		if (sdata->vif.type == NL80211_IFTYPE_AP && resp) {
4841 			u16 *resp_offsets = resp->cntdwn_counter_offsets;
4842 
4843 			resp->data[resp_offsets[i]] = count;
4844 		}
4845 	}
4846 	rcu_read_unlock();
4847 }
4848 
4849 static u8 __ieee80211_beacon_update_cntdwn(struct beacon_data *beacon)
4850 {
4851 	beacon->cntdwn_current_counter--;
4852 
4853 	/* the counter should never reach 0 */
4854 	WARN_ON_ONCE(!beacon->cntdwn_current_counter);
4855 
4856 	return beacon->cntdwn_current_counter;
4857 }
4858 
4859 u8 ieee80211_beacon_update_cntdwn(struct ieee80211_vif *vif)
4860 {
4861 	struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
4862 	struct beacon_data *beacon = NULL;
4863 	u8 count = 0;
4864 
4865 	rcu_read_lock();
4866 
4867 	if (sdata->vif.type == NL80211_IFTYPE_AP)
4868 		beacon = rcu_dereference(sdata->u.ap.beacon);
4869 	else if (sdata->vif.type == NL80211_IFTYPE_ADHOC)
4870 		beacon = rcu_dereference(sdata->u.ibss.presp);
4871 	else if (ieee80211_vif_is_mesh(&sdata->vif))
4872 		beacon = rcu_dereference(sdata->u.mesh.beacon);
4873 
4874 	if (!beacon)
4875 		goto unlock;
4876 
4877 	count = __ieee80211_beacon_update_cntdwn(beacon);
4878 
4879 unlock:
4880 	rcu_read_unlock();
4881 	return count;
4882 }
4883 EXPORT_SYMBOL(ieee80211_beacon_update_cntdwn);
4884 
4885 void ieee80211_beacon_set_cntdwn(struct ieee80211_vif *vif, u8 counter)
4886 {
4887 	struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
4888 	struct beacon_data *beacon = NULL;
4889 
4890 	rcu_read_lock();
4891 
4892 	if (sdata->vif.type == NL80211_IFTYPE_AP)
4893 		beacon = rcu_dereference(sdata->u.ap.beacon);
4894 	else if (sdata->vif.type == NL80211_IFTYPE_ADHOC)
4895 		beacon = rcu_dereference(sdata->u.ibss.presp);
4896 	else if (ieee80211_vif_is_mesh(&sdata->vif))
4897 		beacon = rcu_dereference(sdata->u.mesh.beacon);
4898 
4899 	if (!beacon)
4900 		goto unlock;
4901 
4902 	if (counter < beacon->cntdwn_current_counter)
4903 		beacon->cntdwn_current_counter = counter;
4904 
4905 unlock:
4906 	rcu_read_unlock();
4907 }
4908 EXPORT_SYMBOL(ieee80211_beacon_set_cntdwn);
4909 
4910 bool ieee80211_beacon_cntdwn_is_complete(struct ieee80211_vif *vif)
4911 {
4912 	struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
4913 	struct beacon_data *beacon = NULL;
4914 	u8 *beacon_data;
4915 	size_t beacon_data_len;
4916 	int ret = false;
4917 
4918 	if (!ieee80211_sdata_running(sdata))
4919 		return false;
4920 
4921 	rcu_read_lock();
4922 	if (vif->type == NL80211_IFTYPE_AP) {
4923 		struct ieee80211_if_ap *ap = &sdata->u.ap;
4924 
4925 		beacon = rcu_dereference(ap->beacon);
4926 		if (WARN_ON(!beacon || !beacon->tail))
4927 			goto out;
4928 		beacon_data = beacon->tail;
4929 		beacon_data_len = beacon->tail_len;
4930 	} else if (vif->type == NL80211_IFTYPE_ADHOC) {
4931 		struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
4932 
4933 		beacon = rcu_dereference(ifibss->presp);
4934 		if (!beacon)
4935 			goto out;
4936 
4937 		beacon_data = beacon->head;
4938 		beacon_data_len = beacon->head_len;
4939 	} else if (vif->type == NL80211_IFTYPE_MESH_POINT) {
4940 		struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
4941 
4942 		beacon = rcu_dereference(ifmsh->beacon);
4943 		if (!beacon)
4944 			goto out;
4945 
4946 		beacon_data = beacon->head;
4947 		beacon_data_len = beacon->head_len;
4948 	} else {
4949 		WARN_ON(1);
4950 		goto out;
4951 	}
4952 
4953 	if (!beacon->cntdwn_counter_offsets[0])
4954 		goto out;
4955 
4956 	if (WARN_ON_ONCE(beacon->cntdwn_counter_offsets[0] > beacon_data_len))
4957 		goto out;
4958 
4959 	if (beacon_data[beacon->cntdwn_counter_offsets[0]] == 1)
4960 		ret = true;
4961 
4962  out:
4963 	rcu_read_unlock();
4964 
4965 	return ret;
4966 }
4967 EXPORT_SYMBOL(ieee80211_beacon_cntdwn_is_complete);
4968 
4969 static int ieee80211_beacon_protect(struct sk_buff *skb,
4970 				    struct ieee80211_local *local,
4971 				    struct ieee80211_sub_if_data *sdata)
4972 {
4973 	ieee80211_tx_result res;
4974 	struct ieee80211_tx_data tx;
4975 	struct sk_buff *check_skb;
4976 
4977 	memset(&tx, 0, sizeof(tx));
4978 	tx.key = rcu_dereference(sdata->default_beacon_key);
4979 	if (!tx.key)
4980 		return 0;
4981 	tx.local = local;
4982 	tx.sdata = sdata;
4983 	__skb_queue_head_init(&tx.skbs);
4984 	__skb_queue_tail(&tx.skbs, skb);
4985 	res = ieee80211_tx_h_encrypt(&tx);
4986 	check_skb = __skb_dequeue(&tx.skbs);
4987 	/* we may crash after this, but it'd be a bug in crypto */
4988 	WARN_ON(check_skb != skb);
4989 	if (WARN_ON_ONCE(res != TX_CONTINUE))
4990 		return -EINVAL;
4991 
4992 	return 0;
4993 }
4994 
4995 static void
4996 ieee80211_beacon_get_finish(struct ieee80211_hw *hw,
4997 			    struct ieee80211_vif *vif,
4998 			    struct ieee80211_mutable_offsets *offs,
4999 			    struct beacon_data *beacon,
5000 			    struct sk_buff *skb,
5001 			    struct ieee80211_chanctx_conf *chanctx_conf,
5002 			    u16 csa_off_base)
5003 {
5004 	struct ieee80211_local *local = hw_to_local(hw);
5005 	struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
5006 	struct ieee80211_tx_info *info;
5007 	enum nl80211_band band;
5008 	struct ieee80211_tx_rate_control txrc;
5009 
5010 	/* CSA offsets */
5011 	if (offs && beacon) {
5012 		u16 i;
5013 
5014 		for (i = 0; i < IEEE80211_MAX_CNTDWN_COUNTERS_NUM; i++) {
5015 			u16 csa_off = beacon->cntdwn_counter_offsets[i];
5016 
5017 			if (!csa_off)
5018 				continue;
5019 
5020 			offs->cntdwn_counter_offs[i] = csa_off_base + csa_off;
5021 		}
5022 	}
5023 
5024 	band = chanctx_conf->def.chan->band;
5025 	info = IEEE80211_SKB_CB(skb);
5026 	info->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
5027 	info->flags |= IEEE80211_TX_CTL_NO_ACK;
5028 	info->band = band;
5029 
5030 	memset(&txrc, 0, sizeof(txrc));
5031 	txrc.hw = hw;
5032 	txrc.sband = local->hw.wiphy->bands[band];
5033 	txrc.bss_conf = &sdata->vif.bss_conf;
5034 	txrc.skb = skb;
5035 	txrc.reported_rate.idx = -1;
5036 	if (sdata->beacon_rate_set && sdata->beacon_rateidx_mask[band])
5037 		txrc.rate_idx_mask = sdata->beacon_rateidx_mask[band];
5038 	else
5039 		txrc.rate_idx_mask = sdata->rc_rateidx_mask[band];
5040 	txrc.bss = true;
5041 	rate_control_get_rate(sdata, NULL, &txrc);
5042 
5043 	info->control.vif = vif;
5044 	info->flags |= IEEE80211_TX_CTL_CLEAR_PS_FILT |
5045 		       IEEE80211_TX_CTL_ASSIGN_SEQ |
5046 		       IEEE80211_TX_CTL_FIRST_FRAGMENT;
5047 }
5048 
5049 static struct sk_buff *
5050 ieee80211_beacon_get_ap(struct ieee80211_hw *hw,
5051 			struct ieee80211_vif *vif,
5052 			struct ieee80211_mutable_offsets *offs,
5053 			bool is_template,
5054 			struct beacon_data *beacon,
5055 			struct ieee80211_chanctx_conf *chanctx_conf)
5056 {
5057 	struct ieee80211_local *local = hw_to_local(hw);
5058 	struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
5059 	struct ieee80211_if_ap *ap = &sdata->u.ap;
5060 	struct sk_buff *skb = NULL;
5061 	u16 csa_off_base = 0;
5062 
5063 	if (beacon->cntdwn_counter_offsets[0]) {
5064 		if (!is_template)
5065 			ieee80211_beacon_update_cntdwn(vif);
5066 
5067 		ieee80211_set_beacon_cntdwn(sdata, beacon);
5068 	}
5069 
5070 	/* headroom, head length,
5071 	 * tail length and maximum TIM length
5072 	 */
5073 	skb = dev_alloc_skb(local->tx_headroom + beacon->head_len +
5074 			    beacon->tail_len + 256 +
5075 			    local->hw.extra_beacon_tailroom);
5076 	if (!skb)
5077 		return NULL;
5078 
5079 	skb_reserve(skb, local->tx_headroom);
5080 	skb_put_data(skb, beacon->head, beacon->head_len);
5081 
5082 	ieee80211_beacon_add_tim(sdata, &ap->ps, skb, is_template);
5083 
5084 	if (offs) {
5085 		offs->tim_offset = beacon->head_len;
5086 		offs->tim_length = skb->len - beacon->head_len;
5087 		offs->cntdwn_counter_offs[0] = beacon->cntdwn_counter_offsets[0];
5088 
5089 		/* for AP the csa offsets are from tail */
5090 		csa_off_base = skb->len;
5091 	}
5092 
5093 	if (beacon->tail)
5094 		skb_put_data(skb, beacon->tail, beacon->tail_len);
5095 
5096 	if (ieee80211_beacon_protect(skb, local, sdata) < 0)
5097 		return NULL;
5098 
5099 	ieee80211_beacon_get_finish(hw, vif, offs, beacon, skb, chanctx_conf,
5100 				    csa_off_base);
5101 	return skb;
5102 }
5103 
5104 static struct sk_buff *
5105 __ieee80211_beacon_get(struct ieee80211_hw *hw,
5106 		       struct ieee80211_vif *vif,
5107 		       struct ieee80211_mutable_offsets *offs,
5108 		       bool is_template)
5109 {
5110 	struct ieee80211_local *local = hw_to_local(hw);
5111 	struct beacon_data *beacon = NULL;
5112 	struct sk_buff *skb = NULL;
5113 	struct ieee80211_sub_if_data *sdata = NULL;
5114 	struct ieee80211_chanctx_conf *chanctx_conf;
5115 
5116 	rcu_read_lock();
5117 
5118 	sdata = vif_to_sdata(vif);
5119 	chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
5120 
5121 	if (!ieee80211_sdata_running(sdata) || !chanctx_conf)
5122 		goto out;
5123 
5124 	if (offs)
5125 		memset(offs, 0, sizeof(*offs));
5126 
5127 	if (sdata->vif.type == NL80211_IFTYPE_AP) {
5128 		struct ieee80211_if_ap *ap = &sdata->u.ap;
5129 
5130 		beacon = rcu_dereference(ap->beacon);
5131 		if (!beacon)
5132 			goto out;
5133 
5134 		skb = ieee80211_beacon_get_ap(hw, vif, offs, is_template,
5135 					      beacon, chanctx_conf);
5136 	} else if (sdata->vif.type == NL80211_IFTYPE_ADHOC) {
5137 		struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
5138 		struct ieee80211_hdr *hdr;
5139 
5140 		beacon = rcu_dereference(ifibss->presp);
5141 		if (!beacon)
5142 			goto out;
5143 
5144 		if (beacon->cntdwn_counter_offsets[0]) {
5145 			if (!is_template)
5146 				__ieee80211_beacon_update_cntdwn(beacon);
5147 
5148 			ieee80211_set_beacon_cntdwn(sdata, beacon);
5149 		}
5150 
5151 		skb = dev_alloc_skb(local->tx_headroom + beacon->head_len +
5152 				    local->hw.extra_beacon_tailroom);
5153 		if (!skb)
5154 			goto out;
5155 		skb_reserve(skb, local->tx_headroom);
5156 		skb_put_data(skb, beacon->head, beacon->head_len);
5157 
5158 		hdr = (struct ieee80211_hdr *) skb->data;
5159 		hdr->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
5160 						 IEEE80211_STYPE_BEACON);
5161 
5162 		ieee80211_beacon_get_finish(hw, vif, offs, beacon, skb,
5163 					    chanctx_conf, 0);
5164 	} else if (ieee80211_vif_is_mesh(&sdata->vif)) {
5165 		struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
5166 
5167 		beacon = rcu_dereference(ifmsh->beacon);
5168 		if (!beacon)
5169 			goto out;
5170 
5171 		if (beacon->cntdwn_counter_offsets[0]) {
5172 			if (!is_template)
5173 				/* TODO: For mesh csa_counter is in TU, so
5174 				 * decrementing it by one isn't correct, but
5175 				 * for now we leave it consistent with overall
5176 				 * mac80211's behavior.
5177 				 */
5178 				__ieee80211_beacon_update_cntdwn(beacon);
5179 
5180 			ieee80211_set_beacon_cntdwn(sdata, beacon);
5181 		}
5182 
5183 		if (ifmsh->sync_ops)
5184 			ifmsh->sync_ops->adjust_tsf(sdata, beacon);
5185 
5186 		skb = dev_alloc_skb(local->tx_headroom +
5187 				    beacon->head_len +
5188 				    256 + /* TIM IE */
5189 				    beacon->tail_len +
5190 				    local->hw.extra_beacon_tailroom);
5191 		if (!skb)
5192 			goto out;
5193 		skb_reserve(skb, local->tx_headroom);
5194 		skb_put_data(skb, beacon->head, beacon->head_len);
5195 		ieee80211_beacon_add_tim(sdata, &ifmsh->ps, skb, is_template);
5196 
5197 		if (offs) {
5198 			offs->tim_offset = beacon->head_len;
5199 			offs->tim_length = skb->len - beacon->head_len;
5200 		}
5201 
5202 		skb_put_data(skb, beacon->tail, beacon->tail_len);
5203 		ieee80211_beacon_get_finish(hw, vif, offs, beacon, skb,
5204 					    chanctx_conf, 0);
5205 	} else {
5206 		WARN_ON(1);
5207 		goto out;
5208 	}
5209 
5210  out:
5211 	rcu_read_unlock();
5212 	return skb;
5213 
5214 }
5215 
5216 struct sk_buff *
5217 ieee80211_beacon_get_template(struct ieee80211_hw *hw,
5218 			      struct ieee80211_vif *vif,
5219 			      struct ieee80211_mutable_offsets *offs)
5220 {
5221 	return __ieee80211_beacon_get(hw, vif, offs, true);
5222 }
5223 EXPORT_SYMBOL(ieee80211_beacon_get_template);
5224 
5225 struct sk_buff *ieee80211_beacon_get_tim(struct ieee80211_hw *hw,
5226 					 struct ieee80211_vif *vif,
5227 					 u16 *tim_offset, u16 *tim_length)
5228 {
5229 	struct ieee80211_mutable_offsets offs = {};
5230 	struct sk_buff *bcn = __ieee80211_beacon_get(hw, vif, &offs, false);
5231 	struct sk_buff *copy;
5232 	struct ieee80211_supported_band *sband;
5233 	int shift;
5234 
5235 	if (!bcn)
5236 		return bcn;
5237 
5238 	if (tim_offset)
5239 		*tim_offset = offs.tim_offset;
5240 
5241 	if (tim_length)
5242 		*tim_length = offs.tim_length;
5243 
5244 	if (ieee80211_hw_check(hw, BEACON_TX_STATUS) ||
5245 	    !hw_to_local(hw)->monitors)
5246 		return bcn;
5247 
5248 	/* send a copy to monitor interfaces */
5249 	copy = skb_copy(bcn, GFP_ATOMIC);
5250 	if (!copy)
5251 		return bcn;
5252 
5253 	shift = ieee80211_vif_get_shift(vif);
5254 	sband = ieee80211_get_sband(vif_to_sdata(vif));
5255 	if (!sband)
5256 		return bcn;
5257 
5258 	ieee80211_tx_monitor(hw_to_local(hw), copy, sband, 1, shift, false,
5259 			     NULL);
5260 
5261 	return bcn;
5262 }
5263 EXPORT_SYMBOL(ieee80211_beacon_get_tim);
5264 
5265 struct sk_buff *ieee80211_proberesp_get(struct ieee80211_hw *hw,
5266 					struct ieee80211_vif *vif)
5267 {
5268 	struct ieee80211_if_ap *ap = NULL;
5269 	struct sk_buff *skb = NULL;
5270 	struct probe_resp *presp = NULL;
5271 	struct ieee80211_hdr *hdr;
5272 	struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
5273 
5274 	if (sdata->vif.type != NL80211_IFTYPE_AP)
5275 		return NULL;
5276 
5277 	rcu_read_lock();
5278 
5279 	ap = &sdata->u.ap;
5280 	presp = rcu_dereference(ap->probe_resp);
5281 	if (!presp)
5282 		goto out;
5283 
5284 	skb = dev_alloc_skb(presp->len);
5285 	if (!skb)
5286 		goto out;
5287 
5288 	skb_put_data(skb, presp->data, presp->len);
5289 
5290 	hdr = (struct ieee80211_hdr *) skb->data;
5291 	memset(hdr->addr1, 0, sizeof(hdr->addr1));
5292 
5293 out:
5294 	rcu_read_unlock();
5295 	return skb;
5296 }
5297 EXPORT_SYMBOL(ieee80211_proberesp_get);
5298 
5299 struct sk_buff *ieee80211_get_fils_discovery_tmpl(struct ieee80211_hw *hw,
5300 						  struct ieee80211_vif *vif)
5301 {
5302 	struct sk_buff *skb = NULL;
5303 	struct fils_discovery_data *tmpl = NULL;
5304 	struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
5305 
5306 	if (sdata->vif.type != NL80211_IFTYPE_AP)
5307 		return NULL;
5308 
5309 	rcu_read_lock();
5310 	tmpl = rcu_dereference(sdata->u.ap.fils_discovery);
5311 	if (!tmpl) {
5312 		rcu_read_unlock();
5313 		return NULL;
5314 	}
5315 
5316 	skb = dev_alloc_skb(sdata->local->hw.extra_tx_headroom + tmpl->len);
5317 	if (skb) {
5318 		skb_reserve(skb, sdata->local->hw.extra_tx_headroom);
5319 		skb_put_data(skb, tmpl->data, tmpl->len);
5320 	}
5321 
5322 	rcu_read_unlock();
5323 	return skb;
5324 }
5325 EXPORT_SYMBOL(ieee80211_get_fils_discovery_tmpl);
5326 
5327 struct sk_buff *
5328 ieee80211_get_unsol_bcast_probe_resp_tmpl(struct ieee80211_hw *hw,
5329 					  struct ieee80211_vif *vif)
5330 {
5331 	struct sk_buff *skb = NULL;
5332 	struct unsol_bcast_probe_resp_data *tmpl = NULL;
5333 	struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
5334 
5335 	if (sdata->vif.type != NL80211_IFTYPE_AP)
5336 		return NULL;
5337 
5338 	rcu_read_lock();
5339 	tmpl = rcu_dereference(sdata->u.ap.unsol_bcast_probe_resp);
5340 	if (!tmpl) {
5341 		rcu_read_unlock();
5342 		return NULL;
5343 	}
5344 
5345 	skb = dev_alloc_skb(sdata->local->hw.extra_tx_headroom + tmpl->len);
5346 	if (skb) {
5347 		skb_reserve(skb, sdata->local->hw.extra_tx_headroom);
5348 		skb_put_data(skb, tmpl->data, tmpl->len);
5349 	}
5350 
5351 	rcu_read_unlock();
5352 	return skb;
5353 }
5354 EXPORT_SYMBOL(ieee80211_get_unsol_bcast_probe_resp_tmpl);
5355 
5356 struct sk_buff *ieee80211_pspoll_get(struct ieee80211_hw *hw,
5357 				     struct ieee80211_vif *vif)
5358 {
5359 	struct ieee80211_sub_if_data *sdata;
5360 	struct ieee80211_if_managed *ifmgd;
5361 	struct ieee80211_pspoll *pspoll;
5362 	struct ieee80211_local *local;
5363 	struct sk_buff *skb;
5364 
5365 	if (WARN_ON(vif->type != NL80211_IFTYPE_STATION))
5366 		return NULL;
5367 
5368 	sdata = vif_to_sdata(vif);
5369 	ifmgd = &sdata->u.mgd;
5370 	local = sdata->local;
5371 
5372 	skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*pspoll));
5373 	if (!skb)
5374 		return NULL;
5375 
5376 	skb_reserve(skb, local->hw.extra_tx_headroom);
5377 
5378 	pspoll = skb_put_zero(skb, sizeof(*pspoll));
5379 	pspoll->frame_control = cpu_to_le16(IEEE80211_FTYPE_CTL |
5380 					    IEEE80211_STYPE_PSPOLL);
5381 	pspoll->aid = cpu_to_le16(sdata->vif.bss_conf.aid);
5382 
5383 	/* aid in PS-Poll has its two MSBs each set to 1 */
5384 	pspoll->aid |= cpu_to_le16(1 << 15 | 1 << 14);
5385 
5386 	memcpy(pspoll->bssid, ifmgd->bssid, ETH_ALEN);
5387 	memcpy(pspoll->ta, vif->addr, ETH_ALEN);
5388 
5389 	return skb;
5390 }
5391 EXPORT_SYMBOL(ieee80211_pspoll_get);
5392 
5393 struct sk_buff *ieee80211_nullfunc_get(struct ieee80211_hw *hw,
5394 				       struct ieee80211_vif *vif,
5395 				       bool qos_ok)
5396 {
5397 	struct ieee80211_hdr_3addr *nullfunc;
5398 	struct ieee80211_sub_if_data *sdata;
5399 	struct ieee80211_if_managed *ifmgd;
5400 	struct ieee80211_local *local;
5401 	struct sk_buff *skb;
5402 	bool qos = false;
5403 
5404 	if (WARN_ON(vif->type != NL80211_IFTYPE_STATION))
5405 		return NULL;
5406 
5407 	sdata = vif_to_sdata(vif);
5408 	ifmgd = &sdata->u.mgd;
5409 	local = sdata->local;
5410 
5411 	if (qos_ok) {
5412 		struct sta_info *sta;
5413 
5414 		rcu_read_lock();
5415 		sta = sta_info_get(sdata, ifmgd->bssid);
5416 		qos = sta && sta->sta.wme;
5417 		rcu_read_unlock();
5418 	}
5419 
5420 	skb = dev_alloc_skb(local->hw.extra_tx_headroom +
5421 			    sizeof(*nullfunc) + 2);
5422 	if (!skb)
5423 		return NULL;
5424 
5425 	skb_reserve(skb, local->hw.extra_tx_headroom);
5426 
5427 	nullfunc = skb_put_zero(skb, sizeof(*nullfunc));
5428 	nullfunc->frame_control = cpu_to_le16(IEEE80211_FTYPE_DATA |
5429 					      IEEE80211_STYPE_NULLFUNC |
5430 					      IEEE80211_FCTL_TODS);
5431 	if (qos) {
5432 		__le16 qoshdr = cpu_to_le16(7);
5433 
5434 		BUILD_BUG_ON((IEEE80211_STYPE_QOS_NULLFUNC |
5435 			      IEEE80211_STYPE_NULLFUNC) !=
5436 			     IEEE80211_STYPE_QOS_NULLFUNC);
5437 		nullfunc->frame_control |=
5438 			cpu_to_le16(IEEE80211_STYPE_QOS_NULLFUNC);
5439 		skb->priority = 7;
5440 		skb_set_queue_mapping(skb, IEEE80211_AC_VO);
5441 		skb_put_data(skb, &qoshdr, sizeof(qoshdr));
5442 	}
5443 
5444 	memcpy(nullfunc->addr1, ifmgd->bssid, ETH_ALEN);
5445 	memcpy(nullfunc->addr2, vif->addr, ETH_ALEN);
5446 	memcpy(nullfunc->addr3, ifmgd->bssid, ETH_ALEN);
5447 
5448 	return skb;
5449 }
5450 EXPORT_SYMBOL(ieee80211_nullfunc_get);
5451 
5452 struct sk_buff *ieee80211_probereq_get(struct ieee80211_hw *hw,
5453 				       const u8 *src_addr,
5454 				       const u8 *ssid, size_t ssid_len,
5455 				       size_t tailroom)
5456 {
5457 	struct ieee80211_local *local = hw_to_local(hw);
5458 	struct ieee80211_hdr_3addr *hdr;
5459 	struct sk_buff *skb;
5460 	size_t ie_ssid_len;
5461 	u8 *pos;
5462 
5463 	ie_ssid_len = 2 + ssid_len;
5464 
5465 	skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*hdr) +
5466 			    ie_ssid_len + tailroom);
5467 	if (!skb)
5468 		return NULL;
5469 
5470 	skb_reserve(skb, local->hw.extra_tx_headroom);
5471 
5472 	hdr = skb_put_zero(skb, sizeof(*hdr));
5473 	hdr->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
5474 					 IEEE80211_STYPE_PROBE_REQ);
5475 	eth_broadcast_addr(hdr->addr1);
5476 	memcpy(hdr->addr2, src_addr, ETH_ALEN);
5477 	eth_broadcast_addr(hdr->addr3);
5478 
5479 	pos = skb_put(skb, ie_ssid_len);
5480 	*pos++ = WLAN_EID_SSID;
5481 	*pos++ = ssid_len;
5482 	if (ssid_len)
5483 		memcpy(pos, ssid, ssid_len);
5484 	pos += ssid_len;
5485 
5486 	return skb;
5487 }
5488 EXPORT_SYMBOL(ieee80211_probereq_get);
5489 
5490 void ieee80211_rts_get(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
5491 		       const void *frame, size_t frame_len,
5492 		       const struct ieee80211_tx_info *frame_txctl,
5493 		       struct ieee80211_rts *rts)
5494 {
5495 	const struct ieee80211_hdr *hdr = frame;
5496 
5497 	rts->frame_control =
5498 	    cpu_to_le16(IEEE80211_FTYPE_CTL | IEEE80211_STYPE_RTS);
5499 	rts->duration = ieee80211_rts_duration(hw, vif, frame_len,
5500 					       frame_txctl);
5501 	memcpy(rts->ra, hdr->addr1, sizeof(rts->ra));
5502 	memcpy(rts->ta, hdr->addr2, sizeof(rts->ta));
5503 }
5504 EXPORT_SYMBOL(ieee80211_rts_get);
5505 
5506 void ieee80211_ctstoself_get(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
5507 			     const void *frame, size_t frame_len,
5508 			     const struct ieee80211_tx_info *frame_txctl,
5509 			     struct ieee80211_cts *cts)
5510 {
5511 	const struct ieee80211_hdr *hdr = frame;
5512 
5513 	cts->frame_control =
5514 	    cpu_to_le16(IEEE80211_FTYPE_CTL | IEEE80211_STYPE_CTS);
5515 	cts->duration = ieee80211_ctstoself_duration(hw, vif,
5516 						     frame_len, frame_txctl);
5517 	memcpy(cts->ra, hdr->addr1, sizeof(cts->ra));
5518 }
5519 EXPORT_SYMBOL(ieee80211_ctstoself_get);
5520 
5521 struct sk_buff *
5522 ieee80211_get_buffered_bc(struct ieee80211_hw *hw,
5523 			  struct ieee80211_vif *vif)
5524 {
5525 	struct ieee80211_local *local = hw_to_local(hw);
5526 	struct sk_buff *skb = NULL;
5527 	struct ieee80211_tx_data tx;
5528 	struct ieee80211_sub_if_data *sdata;
5529 	struct ps_data *ps;
5530 	struct ieee80211_tx_info *info;
5531 	struct ieee80211_chanctx_conf *chanctx_conf;
5532 
5533 	sdata = vif_to_sdata(vif);
5534 
5535 	rcu_read_lock();
5536 	chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
5537 
5538 	if (!chanctx_conf)
5539 		goto out;
5540 
5541 	if (sdata->vif.type == NL80211_IFTYPE_AP) {
5542 		struct beacon_data *beacon =
5543 				rcu_dereference(sdata->u.ap.beacon);
5544 
5545 		if (!beacon || !beacon->head)
5546 			goto out;
5547 
5548 		ps = &sdata->u.ap.ps;
5549 	} else if (ieee80211_vif_is_mesh(&sdata->vif)) {
5550 		ps = &sdata->u.mesh.ps;
5551 	} else {
5552 		goto out;
5553 	}
5554 
5555 	if (ps->dtim_count != 0 || !ps->dtim_bc_mc)
5556 		goto out; /* send buffered bc/mc only after DTIM beacon */
5557 
5558 	while (1) {
5559 		skb = skb_dequeue(&ps->bc_buf);
5560 		if (!skb)
5561 			goto out;
5562 		local->total_ps_buffered--;
5563 
5564 		if (!skb_queue_empty(&ps->bc_buf) && skb->len >= 2) {
5565 			struct ieee80211_hdr *hdr =
5566 				(struct ieee80211_hdr *) skb->data;
5567 			/* more buffered multicast/broadcast frames ==> set
5568 			 * MoreData flag in IEEE 802.11 header to inform PS
5569 			 * STAs */
5570 			hdr->frame_control |=
5571 				cpu_to_le16(IEEE80211_FCTL_MOREDATA);
5572 		}
5573 
5574 		if (sdata->vif.type == NL80211_IFTYPE_AP)
5575 			sdata = IEEE80211_DEV_TO_SUB_IF(skb->dev);
5576 		if (!ieee80211_tx_prepare(sdata, &tx, NULL, skb))
5577 			break;
5578 		ieee80211_free_txskb(hw, skb);
5579 	}
5580 
5581 	info = IEEE80211_SKB_CB(skb);
5582 
5583 	tx.flags |= IEEE80211_TX_PS_BUFFERED;
5584 	info->band = chanctx_conf->def.chan->band;
5585 
5586 	if (invoke_tx_handlers(&tx))
5587 		skb = NULL;
5588  out:
5589 	rcu_read_unlock();
5590 
5591 	return skb;
5592 }
5593 EXPORT_SYMBOL(ieee80211_get_buffered_bc);
5594 
5595 int ieee80211_reserve_tid(struct ieee80211_sta *pubsta, u8 tid)
5596 {
5597 	struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
5598 	struct ieee80211_sub_if_data *sdata = sta->sdata;
5599 	struct ieee80211_local *local = sdata->local;
5600 	int ret;
5601 	u32 queues;
5602 
5603 	lockdep_assert_held(&local->sta_mtx);
5604 
5605 	/* only some cases are supported right now */
5606 	switch (sdata->vif.type) {
5607 	case NL80211_IFTYPE_STATION:
5608 	case NL80211_IFTYPE_AP:
5609 	case NL80211_IFTYPE_AP_VLAN:
5610 		break;
5611 	default:
5612 		WARN_ON(1);
5613 		return -EINVAL;
5614 	}
5615 
5616 	if (WARN_ON(tid >= IEEE80211_NUM_UPS))
5617 		return -EINVAL;
5618 
5619 	if (sta->reserved_tid == tid) {
5620 		ret = 0;
5621 		goto out;
5622 	}
5623 
5624 	if (sta->reserved_tid != IEEE80211_TID_UNRESERVED) {
5625 		sdata_err(sdata, "TID reservation already active\n");
5626 		ret = -EALREADY;
5627 		goto out;
5628 	}
5629 
5630 	ieee80211_stop_vif_queues(sdata->local, sdata,
5631 				  IEEE80211_QUEUE_STOP_REASON_RESERVE_TID);
5632 
5633 	synchronize_net();
5634 
5635 	/* Tear down BA sessions so we stop aggregating on this TID */
5636 	if (ieee80211_hw_check(&local->hw, AMPDU_AGGREGATION)) {
5637 		set_sta_flag(sta, WLAN_STA_BLOCK_BA);
5638 		__ieee80211_stop_tx_ba_session(sta, tid,
5639 					       AGG_STOP_LOCAL_REQUEST);
5640 	}
5641 
5642 	queues = BIT(sdata->vif.hw_queue[ieee802_1d_to_ac[tid]]);
5643 	__ieee80211_flush_queues(local, sdata, queues, false);
5644 
5645 	sta->reserved_tid = tid;
5646 
5647 	ieee80211_wake_vif_queues(local, sdata,
5648 				  IEEE80211_QUEUE_STOP_REASON_RESERVE_TID);
5649 
5650 	if (ieee80211_hw_check(&local->hw, AMPDU_AGGREGATION))
5651 		clear_sta_flag(sta, WLAN_STA_BLOCK_BA);
5652 
5653 	ret = 0;
5654  out:
5655 	return ret;
5656 }
5657 EXPORT_SYMBOL(ieee80211_reserve_tid);
5658 
5659 void ieee80211_unreserve_tid(struct ieee80211_sta *pubsta, u8 tid)
5660 {
5661 	struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
5662 	struct ieee80211_sub_if_data *sdata = sta->sdata;
5663 
5664 	lockdep_assert_held(&sdata->local->sta_mtx);
5665 
5666 	/* only some cases are supported right now */
5667 	switch (sdata->vif.type) {
5668 	case NL80211_IFTYPE_STATION:
5669 	case NL80211_IFTYPE_AP:
5670 	case NL80211_IFTYPE_AP_VLAN:
5671 		break;
5672 	default:
5673 		WARN_ON(1);
5674 		return;
5675 	}
5676 
5677 	if (tid != sta->reserved_tid) {
5678 		sdata_err(sdata, "TID to unreserve (%d) isn't reserved\n", tid);
5679 		return;
5680 	}
5681 
5682 	sta->reserved_tid = IEEE80211_TID_UNRESERVED;
5683 }
5684 EXPORT_SYMBOL(ieee80211_unreserve_tid);
5685 
5686 void __ieee80211_tx_skb_tid_band(struct ieee80211_sub_if_data *sdata,
5687 				 struct sk_buff *skb, int tid,
5688 				 enum nl80211_band band)
5689 {
5690 	int ac = ieee80211_ac_from_tid(tid);
5691 
5692 	skb_reset_mac_header(skb);
5693 	skb_set_queue_mapping(skb, ac);
5694 	skb->priority = tid;
5695 
5696 	skb->dev = sdata->dev;
5697 
5698 	/*
5699 	 * The other path calling ieee80211_xmit is from the tasklet,
5700 	 * and while we can handle concurrent transmissions locking
5701 	 * requirements are that we do not come into tx with bhs on.
5702 	 */
5703 	local_bh_disable();
5704 	IEEE80211_SKB_CB(skb)->band = band;
5705 	ieee80211_xmit(sdata, NULL, skb);
5706 	local_bh_enable();
5707 }
5708 
5709 int ieee80211_tx_control_port(struct wiphy *wiphy, struct net_device *dev,
5710 			      const u8 *buf, size_t len,
5711 			      const u8 *dest, __be16 proto, bool unencrypted,
5712 			      u64 *cookie)
5713 {
5714 	struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
5715 	struct ieee80211_local *local = sdata->local;
5716 	struct sta_info *sta;
5717 	struct sk_buff *skb;
5718 	struct ethhdr *ehdr;
5719 	u32 ctrl_flags = 0;
5720 	u32 flags = 0;
5721 
5722 	/* Only accept CONTROL_PORT_PROTOCOL configured in CONNECT/ASSOCIATE
5723 	 * or Pre-Authentication
5724 	 */
5725 	if (proto != sdata->control_port_protocol &&
5726 	    proto != cpu_to_be16(ETH_P_PREAUTH))
5727 		return -EINVAL;
5728 
5729 	if (proto == sdata->control_port_protocol)
5730 		ctrl_flags |= IEEE80211_TX_CTRL_PORT_CTRL_PROTO |
5731 			      IEEE80211_TX_CTRL_SKIP_MPATH_LOOKUP;
5732 
5733 	if (unencrypted)
5734 		flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
5735 
5736 	if (cookie)
5737 		ctrl_flags |= IEEE80211_TX_CTL_REQ_TX_STATUS;
5738 
5739 	flags |= IEEE80211_TX_INTFL_NL80211_FRAME_TX;
5740 
5741 	skb = dev_alloc_skb(local->hw.extra_tx_headroom +
5742 			    sizeof(struct ethhdr) + len);
5743 	if (!skb)
5744 		return -ENOMEM;
5745 
5746 	skb_reserve(skb, local->hw.extra_tx_headroom + sizeof(struct ethhdr));
5747 
5748 	skb_put_data(skb, buf, len);
5749 
5750 	ehdr = skb_push(skb, sizeof(struct ethhdr));
5751 	memcpy(ehdr->h_dest, dest, ETH_ALEN);
5752 	memcpy(ehdr->h_source, sdata->vif.addr, ETH_ALEN);
5753 	ehdr->h_proto = proto;
5754 
5755 	skb->dev = dev;
5756 	skb->protocol = proto;
5757 	skb_reset_network_header(skb);
5758 	skb_reset_mac_header(skb);
5759 
5760 	/* update QoS header to prioritize control port frames if possible,
5761 	 * priorization also happens for control port frames send over
5762 	 * AF_PACKET
5763 	 */
5764 	rcu_read_lock();
5765 
5766 	if (ieee80211_lookup_ra_sta(sdata, skb, &sta) == 0 && !IS_ERR(sta)) {
5767 		u16 queue = __ieee80211_select_queue(sdata, sta, skb);
5768 
5769 		skb_set_queue_mapping(skb, queue);
5770 		skb_get_hash(skb);
5771 	}
5772 
5773 	rcu_read_unlock();
5774 
5775 	/* mutex lock is only needed for incrementing the cookie counter */
5776 	mutex_lock(&local->mtx);
5777 
5778 	local_bh_disable();
5779 	__ieee80211_subif_start_xmit(skb, skb->dev, flags, ctrl_flags, cookie);
5780 	local_bh_enable();
5781 
5782 	mutex_unlock(&local->mtx);
5783 
5784 	return 0;
5785 }
5786 
5787 int ieee80211_probe_mesh_link(struct wiphy *wiphy, struct net_device *dev,
5788 			      const u8 *buf, size_t len)
5789 {
5790 	struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
5791 	struct ieee80211_local *local = sdata->local;
5792 	struct sk_buff *skb;
5793 
5794 	skb = dev_alloc_skb(local->hw.extra_tx_headroom + len +
5795 			    30 + /* header size */
5796 			    18); /* 11s header size */
5797 	if (!skb)
5798 		return -ENOMEM;
5799 
5800 	skb_reserve(skb, local->hw.extra_tx_headroom);
5801 	skb_put_data(skb, buf, len);
5802 
5803 	skb->dev = dev;
5804 	skb->protocol = htons(ETH_P_802_3);
5805 	skb_reset_network_header(skb);
5806 	skb_reset_mac_header(skb);
5807 
5808 	local_bh_disable();
5809 	__ieee80211_subif_start_xmit(skb, skb->dev, 0,
5810 				     IEEE80211_TX_CTRL_SKIP_MPATH_LOOKUP,
5811 				     NULL);
5812 	local_bh_enable();
5813 
5814 	return 0;
5815 }
5816