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