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