xref: /linux/net/mac80211/mlme.c (revision 4cde72fead4cebb5b6b2fe9425904c2064739184)
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  * BSS client mode implementation
4  * Copyright 2003-2008, Jouni Malinen <j@w1.fi>
5  * Copyright 2004, Instant802 Networks, Inc.
6  * Copyright 2005, Devicescape Software, Inc.
7  * Copyright 2006-2007	Jiri Benc <jbenc@suse.cz>
8  * Copyright 2007, Michael Wu <flamingice@sourmilk.net>
9  * Copyright 2013-2014  Intel Mobile Communications GmbH
10  * Copyright (C) 2015 - 2017 Intel Deutschland GmbH
11  * Copyright (C) 2018 - 2023 Intel Corporation
12  */
13 
14 #include <linux/delay.h>
15 #include <linux/fips.h>
16 #include <linux/if_ether.h>
17 #include <linux/skbuff.h>
18 #include <linux/if_arp.h>
19 #include <linux/etherdevice.h>
20 #include <linux/moduleparam.h>
21 #include <linux/rtnetlink.h>
22 #include <linux/crc32.h>
23 #include <linux/slab.h>
24 #include <linux/export.h>
25 #include <net/mac80211.h>
26 #include <asm/unaligned.h>
27 
28 #include "ieee80211_i.h"
29 #include "driver-ops.h"
30 #include "rate.h"
31 #include "led.h"
32 #include "fils_aead.h"
33 
34 #define IEEE80211_AUTH_TIMEOUT		(HZ / 5)
35 #define IEEE80211_AUTH_TIMEOUT_LONG	(HZ / 2)
36 #define IEEE80211_AUTH_TIMEOUT_SHORT	(HZ / 10)
37 #define IEEE80211_AUTH_TIMEOUT_SAE	(HZ * 2)
38 #define IEEE80211_AUTH_MAX_TRIES	3
39 #define IEEE80211_AUTH_WAIT_ASSOC	(HZ * 5)
40 #define IEEE80211_AUTH_WAIT_SAE_RETRY	(HZ * 2)
41 #define IEEE80211_ASSOC_TIMEOUT		(HZ / 5)
42 #define IEEE80211_ASSOC_TIMEOUT_LONG	(HZ / 2)
43 #define IEEE80211_ASSOC_TIMEOUT_SHORT	(HZ / 10)
44 #define IEEE80211_ASSOC_MAX_TRIES	3
45 
46 static int max_nullfunc_tries = 2;
47 module_param(max_nullfunc_tries, int, 0644);
48 MODULE_PARM_DESC(max_nullfunc_tries,
49 		 "Maximum nullfunc tx tries before disconnecting (reason 4).");
50 
51 static int max_probe_tries = 5;
52 module_param(max_probe_tries, int, 0644);
53 MODULE_PARM_DESC(max_probe_tries,
54 		 "Maximum probe tries before disconnecting (reason 4).");
55 
56 /*
57  * Beacon loss timeout is calculated as N frames times the
58  * advertised beacon interval.  This may need to be somewhat
59  * higher than what hardware might detect to account for
60  * delays in the host processing frames. But since we also
61  * probe on beacon miss before declaring the connection lost
62  * default to what we want.
63  */
64 static int beacon_loss_count = 7;
65 module_param(beacon_loss_count, int, 0644);
66 MODULE_PARM_DESC(beacon_loss_count,
67 		 "Number of beacon intervals before we decide beacon was lost.");
68 
69 /*
70  * Time the connection can be idle before we probe
71  * it to see if we can still talk to the AP.
72  */
73 #define IEEE80211_CONNECTION_IDLE_TIME	(30 * HZ)
74 /*
75  * Time we wait for a probe response after sending
76  * a probe request because of beacon loss or for
77  * checking the connection still works.
78  */
79 static int probe_wait_ms = 500;
80 module_param(probe_wait_ms, int, 0644);
81 MODULE_PARM_DESC(probe_wait_ms,
82 		 "Maximum time(ms) to wait for probe response"
83 		 " before disconnecting (reason 4).");
84 
85 /*
86  * How many Beacon frames need to have been used in average signal strength
87  * before starting to indicate signal change events.
88  */
89 #define IEEE80211_SIGNAL_AVE_MIN_COUNT	4
90 
91 /*
92  * Extract from the given disabled subchannel bitmap (raw format
93  * from the EHT Operation Element) the bits for the subchannel
94  * we're using right now.
95  */
96 static u16
97 ieee80211_extract_dis_subch_bmap(const struct ieee80211_eht_operation *eht_oper,
98 				 struct cfg80211_chan_def *chandef, u16 bitmap)
99 {
100 	struct ieee80211_eht_operation_info *info = (void *)eht_oper->optional;
101 	struct cfg80211_chan_def ap_chandef = *chandef;
102 	u32 ap_center_freq, local_center_freq;
103 	u32 ap_bw, local_bw;
104 	int ap_start_freq, local_start_freq;
105 	u16 shift, mask;
106 
107 	if (!(eht_oper->params & IEEE80211_EHT_OPER_INFO_PRESENT) ||
108 	    !(eht_oper->params &
109 	      IEEE80211_EHT_OPER_DISABLED_SUBCHANNEL_BITMAP_PRESENT))
110 		return 0;
111 
112 	/* set 160/320 supported to get the full AP definition */
113 	ieee80211_chandef_eht_oper((const void *)eht_oper->optional,
114 				   true, true, &ap_chandef);
115 	ap_center_freq = ap_chandef.center_freq1;
116 	ap_bw = 20 * BIT(u8_get_bits(info->control,
117 				     IEEE80211_EHT_OPER_CHAN_WIDTH));
118 	ap_start_freq = ap_center_freq - ap_bw / 2;
119 	local_center_freq = chandef->center_freq1;
120 	local_bw = 20 * BIT(ieee80211_chan_width_to_rx_bw(chandef->width));
121 	local_start_freq = local_center_freq - local_bw / 2;
122 	shift = (local_start_freq - ap_start_freq) / 20;
123 	mask = BIT(local_bw / 20) - 1;
124 
125 	return (bitmap >> shift) & mask;
126 }
127 
128 /*
129  * Handle the puncturing bitmap, possibly downgrading bandwidth to get a
130  * valid bitmap.
131  */
132 static void
133 ieee80211_handle_puncturing_bitmap(struct ieee80211_link_data *link,
134 				   const struct ieee80211_eht_operation *eht_oper,
135 				   u16 bitmap, u64 *changed)
136 {
137 	struct cfg80211_chan_def *chandef = &link->conf->chandef;
138 	struct ieee80211_local *local = link->sdata->local;
139 	u16 extracted;
140 	u64 _changed = 0;
141 
142 	if (!changed)
143 		changed = &_changed;
144 
145 	while (chandef->width > NL80211_CHAN_WIDTH_40) {
146 		extracted =
147 			ieee80211_extract_dis_subch_bmap(eht_oper, chandef,
148 							 bitmap);
149 
150 		if (cfg80211_valid_disable_subchannel_bitmap(&bitmap,
151 							     chandef) &&
152 		    !(bitmap && ieee80211_hw_check(&local->hw,
153 						   DISALLOW_PUNCTURING)))
154 			break;
155 		link->u.mgd.conn_flags |=
156 			ieee80211_chandef_downgrade(chandef);
157 		*changed |= BSS_CHANGED_BANDWIDTH;
158 	}
159 
160 	if (chandef->width <= NL80211_CHAN_WIDTH_40)
161 		extracted = 0;
162 
163 	if (link->conf->eht_puncturing != extracted) {
164 		link->conf->eht_puncturing = extracted;
165 		*changed |= BSS_CHANGED_EHT_PUNCTURING;
166 	}
167 }
168 
169 /*
170  * We can have multiple work items (and connection probing)
171  * scheduling this timer, but we need to take care to only
172  * reschedule it when it should fire _earlier_ than it was
173  * asked for before, or if it's not pending right now. This
174  * function ensures that. Note that it then is required to
175  * run this function for all timeouts after the first one
176  * has happened -- the work that runs from this timer will
177  * do that.
178  */
179 static void run_again(struct ieee80211_sub_if_data *sdata,
180 		      unsigned long timeout)
181 {
182 	lockdep_assert_wiphy(sdata->local->hw.wiphy);
183 
184 	if (!timer_pending(&sdata->u.mgd.timer) ||
185 	    time_before(timeout, sdata->u.mgd.timer.expires))
186 		mod_timer(&sdata->u.mgd.timer, timeout);
187 }
188 
189 void ieee80211_sta_reset_beacon_monitor(struct ieee80211_sub_if_data *sdata)
190 {
191 	if (sdata->vif.driver_flags & IEEE80211_VIF_BEACON_FILTER)
192 		return;
193 
194 	if (ieee80211_hw_check(&sdata->local->hw, CONNECTION_MONITOR))
195 		return;
196 
197 	mod_timer(&sdata->u.mgd.bcn_mon_timer,
198 		  round_jiffies_up(jiffies + sdata->u.mgd.beacon_timeout));
199 }
200 
201 void ieee80211_sta_reset_conn_monitor(struct ieee80211_sub_if_data *sdata)
202 {
203 	struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
204 
205 	if (unlikely(!ifmgd->associated))
206 		return;
207 
208 	if (ifmgd->probe_send_count)
209 		ifmgd->probe_send_count = 0;
210 
211 	if (ieee80211_hw_check(&sdata->local->hw, CONNECTION_MONITOR))
212 		return;
213 
214 	mod_timer(&ifmgd->conn_mon_timer,
215 		  round_jiffies_up(jiffies + IEEE80211_CONNECTION_IDLE_TIME));
216 }
217 
218 static int ecw2cw(int ecw)
219 {
220 	return (1 << ecw) - 1;
221 }
222 
223 static ieee80211_conn_flags_t
224 ieee80211_determine_chantype(struct ieee80211_sub_if_data *sdata,
225 			     struct ieee80211_link_data *link,
226 			     ieee80211_conn_flags_t conn_flags,
227 			     struct ieee80211_supported_band *sband,
228 			     struct ieee80211_channel *channel,
229 			     u32 vht_cap_info,
230 			     const struct ieee80211_ht_operation *ht_oper,
231 			     const struct ieee80211_vht_operation *vht_oper,
232 			     const struct ieee80211_he_operation *he_oper,
233 			     const struct ieee80211_eht_operation *eht_oper,
234 			     const struct ieee80211_s1g_oper_ie *s1g_oper,
235 			     struct cfg80211_chan_def *chandef, bool tracking)
236 {
237 	struct cfg80211_chan_def vht_chandef;
238 	struct ieee80211_sta_ht_cap sta_ht_cap;
239 	ieee80211_conn_flags_t ret;
240 	u32 ht_cfreq;
241 
242 	memset(chandef, 0, sizeof(struct cfg80211_chan_def));
243 	chandef->chan = channel;
244 	chandef->width = NL80211_CHAN_WIDTH_20_NOHT;
245 	chandef->center_freq1 = channel->center_freq;
246 	chandef->freq1_offset = channel->freq_offset;
247 
248 	if (channel->band == NL80211_BAND_6GHZ) {
249 		if (!ieee80211_chandef_he_6ghz_oper(sdata, he_oper, eht_oper,
250 						    chandef)) {
251 			mlme_dbg(sdata,
252 				 "bad 6 GHz operation, disabling HT/VHT/HE/EHT\n");
253 			ret = IEEE80211_CONN_DISABLE_HT |
254 			      IEEE80211_CONN_DISABLE_VHT |
255 			      IEEE80211_CONN_DISABLE_HE |
256 			      IEEE80211_CONN_DISABLE_EHT;
257 		} else {
258 			ret = 0;
259 		}
260 		vht_chandef = *chandef;
261 		goto out;
262 	} else if (sband->band == NL80211_BAND_S1GHZ) {
263 		if (!ieee80211_chandef_s1g_oper(s1g_oper, chandef)) {
264 			sdata_info(sdata,
265 				   "Missing S1G Operation Element? Trying operating == primary\n");
266 			chandef->width = ieee80211_s1g_channel_width(channel);
267 		}
268 
269 		ret = IEEE80211_CONN_DISABLE_HT | IEEE80211_CONN_DISABLE_40MHZ |
270 		      IEEE80211_CONN_DISABLE_VHT |
271 		      IEEE80211_CONN_DISABLE_80P80MHZ |
272 		      IEEE80211_CONN_DISABLE_160MHZ;
273 		goto out;
274 	}
275 
276 	memcpy(&sta_ht_cap, &sband->ht_cap, sizeof(sta_ht_cap));
277 	ieee80211_apply_htcap_overrides(sdata, &sta_ht_cap);
278 
279 	if (!ht_oper || !sta_ht_cap.ht_supported) {
280 		mlme_dbg(sdata, "HT operation missing / HT not supported\n");
281 		ret = IEEE80211_CONN_DISABLE_HT |
282 		      IEEE80211_CONN_DISABLE_VHT |
283 		      IEEE80211_CONN_DISABLE_HE |
284 		      IEEE80211_CONN_DISABLE_EHT;
285 		goto out;
286 	}
287 
288 	chandef->width = NL80211_CHAN_WIDTH_20;
289 
290 	ht_cfreq = ieee80211_channel_to_frequency(ht_oper->primary_chan,
291 						  channel->band);
292 	/* check that channel matches the right operating channel */
293 	if (!tracking && channel->center_freq != ht_cfreq) {
294 		/*
295 		 * It's possible that some APs are confused here;
296 		 * Netgear WNDR3700 sometimes reports 4 higher than
297 		 * the actual channel in association responses, but
298 		 * since we look at probe response/beacon data here
299 		 * it should be OK.
300 		 */
301 		sdata_info(sdata,
302 			   "Wrong control channel: center-freq: %d ht-cfreq: %d ht->primary_chan: %d band: %d - Disabling HT\n",
303 			   channel->center_freq, ht_cfreq,
304 			   ht_oper->primary_chan, channel->band);
305 		ret = IEEE80211_CONN_DISABLE_HT |
306 		      IEEE80211_CONN_DISABLE_VHT |
307 		      IEEE80211_CONN_DISABLE_HE |
308 		      IEEE80211_CONN_DISABLE_EHT;
309 		goto out;
310 	}
311 
312 	/* check 40 MHz support, if we have it */
313 	if (sta_ht_cap.cap & IEEE80211_HT_CAP_SUP_WIDTH_20_40) {
314 		ieee80211_chandef_ht_oper(ht_oper, chandef);
315 	} else {
316 		mlme_dbg(sdata, "40 MHz not supported\n");
317 		/* 40 MHz (and 80 MHz) must be supported for VHT */
318 		ret = IEEE80211_CONN_DISABLE_VHT;
319 		/* also mark 40 MHz disabled */
320 		ret |= IEEE80211_CONN_DISABLE_40MHZ;
321 		goto out;
322 	}
323 
324 	if (!vht_oper || !sband->vht_cap.vht_supported) {
325 		mlme_dbg(sdata, "VHT operation missing / VHT not supported\n");
326 		ret = IEEE80211_CONN_DISABLE_VHT;
327 		goto out;
328 	}
329 
330 	vht_chandef = *chandef;
331 	if (!(conn_flags & IEEE80211_CONN_DISABLE_HE) &&
332 	    he_oper &&
333 	    (le32_to_cpu(he_oper->he_oper_params) &
334 	     IEEE80211_HE_OPERATION_VHT_OPER_INFO)) {
335 		struct ieee80211_vht_operation he_oper_vht_cap;
336 
337 		/*
338 		 * Set only first 3 bytes (other 2 aren't used in
339 		 * ieee80211_chandef_vht_oper() anyway)
340 		 */
341 		memcpy(&he_oper_vht_cap, he_oper->optional, 3);
342 		he_oper_vht_cap.basic_mcs_set = cpu_to_le16(0);
343 
344 		if (!ieee80211_chandef_vht_oper(&sdata->local->hw, vht_cap_info,
345 						&he_oper_vht_cap, ht_oper,
346 						&vht_chandef)) {
347 			if (!(conn_flags & IEEE80211_CONN_DISABLE_HE))
348 				sdata_info(sdata,
349 					   "HE AP VHT information is invalid, disabling HE\n");
350 			ret = IEEE80211_CONN_DISABLE_HE | IEEE80211_CONN_DISABLE_EHT;
351 			goto out;
352 		}
353 	} else if (!ieee80211_chandef_vht_oper(&sdata->local->hw,
354 					       vht_cap_info,
355 					       vht_oper, ht_oper,
356 					       &vht_chandef)) {
357 		if (!(conn_flags & IEEE80211_CONN_DISABLE_VHT))
358 			sdata_info(sdata,
359 				   "AP VHT information is invalid, disabling VHT\n");
360 		ret = IEEE80211_CONN_DISABLE_VHT;
361 		goto out;
362 	}
363 
364 	if (!cfg80211_chandef_valid(&vht_chandef)) {
365 		if (!(conn_flags & IEEE80211_CONN_DISABLE_VHT))
366 			sdata_info(sdata,
367 				   "AP VHT information is invalid, disabling VHT\n");
368 		ret = IEEE80211_CONN_DISABLE_VHT;
369 		goto out;
370 	}
371 
372 	if (cfg80211_chandef_identical(chandef, &vht_chandef)) {
373 		ret = 0;
374 		goto out;
375 	}
376 
377 	if (!cfg80211_chandef_compatible(chandef, &vht_chandef)) {
378 		if (!(conn_flags & IEEE80211_CONN_DISABLE_VHT))
379 			sdata_info(sdata,
380 				   "AP VHT information doesn't match HT, disabling VHT\n");
381 		ret = IEEE80211_CONN_DISABLE_VHT;
382 		goto out;
383 	}
384 
385 	*chandef = vht_chandef;
386 
387 	/*
388 	 * handle the case that the EHT operation indicates that it holds EHT
389 	 * operation information (in case that the channel width differs from
390 	 * the channel width reported in HT/VHT/HE).
391 	 */
392 	if (eht_oper && (eht_oper->params & IEEE80211_EHT_OPER_INFO_PRESENT)) {
393 		struct cfg80211_chan_def eht_chandef = *chandef;
394 
395 		ieee80211_chandef_eht_oper((const void *)eht_oper->optional,
396 					   eht_chandef.width ==
397 					   NL80211_CHAN_WIDTH_160,
398 					   false, &eht_chandef);
399 
400 		if (!cfg80211_chandef_valid(&eht_chandef)) {
401 			if (!(conn_flags & IEEE80211_CONN_DISABLE_EHT))
402 				sdata_info(sdata,
403 					   "AP EHT information is invalid, disabling EHT\n");
404 			ret = IEEE80211_CONN_DISABLE_EHT;
405 			goto out;
406 		}
407 
408 		if (!cfg80211_chandef_compatible(chandef, &eht_chandef)) {
409 			if (!(conn_flags & IEEE80211_CONN_DISABLE_EHT))
410 				sdata_info(sdata,
411 					   "AP EHT information is incompatible, disabling EHT\n");
412 			ret = IEEE80211_CONN_DISABLE_EHT;
413 			goto out;
414 		}
415 
416 		*chandef = eht_chandef;
417 	}
418 
419 	ret = 0;
420 
421 out:
422 	/*
423 	 * When tracking the current AP, don't do any further checks if the
424 	 * new chandef is identical to the one we're currently using for the
425 	 * connection. This keeps us from playing ping-pong with regulatory,
426 	 * without it the following can happen (for example):
427 	 *  - connect to an AP with 80 MHz, world regdom allows 80 MHz
428 	 *  - AP advertises regdom US
429 	 *  - CRDA loads regdom US with 80 MHz prohibited (old database)
430 	 *  - the code below detects an unsupported channel, downgrades, and
431 	 *    we disconnect from the AP in the caller
432 	 *  - disconnect causes CRDA to reload world regdomain and the game
433 	 *    starts anew.
434 	 * (see https://bugzilla.kernel.org/show_bug.cgi?id=70881)
435 	 *
436 	 * It seems possible that there are still scenarios with CSA or real
437 	 * bandwidth changes where a this could happen, but those cases are
438 	 * less common and wouldn't completely prevent using the AP.
439 	 */
440 	if (tracking &&
441 	    cfg80211_chandef_identical(chandef, &link->conf->chandef))
442 		return ret;
443 
444 	/* don't print the message below for VHT mismatch if VHT is disabled */
445 	if (ret & IEEE80211_CONN_DISABLE_VHT)
446 		vht_chandef = *chandef;
447 
448 	/*
449 	 * Ignore the DISABLED flag when we're already connected and only
450 	 * tracking the APs beacon for bandwidth changes - otherwise we
451 	 * might get disconnected here if we connect to an AP, update our
452 	 * regulatory information based on the AP's country IE and the
453 	 * information we have is wrong/outdated and disables the channel
454 	 * that we're actually using for the connection to the AP.
455 	 */
456 	while (!cfg80211_chandef_usable(sdata->local->hw.wiphy, chandef,
457 					tracking ? 0 :
458 						   IEEE80211_CHAN_DISABLED)) {
459 		if (WARN_ON(chandef->width == NL80211_CHAN_WIDTH_20_NOHT)) {
460 			ret = IEEE80211_CONN_DISABLE_HT |
461 			      IEEE80211_CONN_DISABLE_VHT |
462 			      IEEE80211_CONN_DISABLE_HE |
463 			      IEEE80211_CONN_DISABLE_EHT;
464 			break;
465 		}
466 
467 		ret |= ieee80211_chandef_downgrade(chandef);
468 	}
469 
470 	if (!he_oper || !cfg80211_chandef_usable(sdata->wdev.wiphy, chandef,
471 						 IEEE80211_CHAN_NO_HE))
472 		ret |= IEEE80211_CONN_DISABLE_HE | IEEE80211_CONN_DISABLE_EHT;
473 
474 	if (!eht_oper || !cfg80211_chandef_usable(sdata->wdev.wiphy, chandef,
475 						  IEEE80211_CHAN_NO_EHT))
476 		ret |= IEEE80211_CONN_DISABLE_EHT;
477 
478 	if (chandef->width != vht_chandef.width && !tracking)
479 		sdata_info(sdata,
480 			   "capabilities/regulatory prevented using AP HT/VHT configuration, downgraded\n");
481 
482 	WARN_ON_ONCE(!cfg80211_chandef_valid(chandef));
483 	return ret;
484 }
485 
486 static int ieee80211_config_bw(struct ieee80211_link_data *link,
487 			       const struct ieee80211_ht_cap *ht_cap,
488 			       const struct ieee80211_vht_cap *vht_cap,
489 			       const struct ieee80211_ht_operation *ht_oper,
490 			       const struct ieee80211_vht_operation *vht_oper,
491 			       const struct ieee80211_he_operation *he_oper,
492 			       const struct ieee80211_eht_operation *eht_oper,
493 			       const struct ieee80211_s1g_oper_ie *s1g_oper,
494 			       const u8 *bssid, u64 *changed)
495 {
496 	struct ieee80211_sub_if_data *sdata = link->sdata;
497 	struct ieee80211_local *local = sdata->local;
498 	struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
499 	struct ieee80211_channel *chan = link->conf->chandef.chan;
500 	struct ieee80211_supported_band *sband =
501 		local->hw.wiphy->bands[chan->band];
502 	struct cfg80211_chan_def chandef;
503 	u16 ht_opmode;
504 	ieee80211_conn_flags_t flags;
505 	u32 vht_cap_info = 0;
506 	int ret;
507 
508 	/* if HT was/is disabled, don't track any bandwidth changes */
509 	if (link->u.mgd.conn_flags & IEEE80211_CONN_DISABLE_HT || !ht_oper)
510 		return 0;
511 
512 	/* don't check VHT if we associated as non-VHT station */
513 	if (link->u.mgd.conn_flags & IEEE80211_CONN_DISABLE_VHT)
514 		vht_oper = NULL;
515 
516 	/* don't check HE if we associated as non-HE station */
517 	if (link->u.mgd.conn_flags & IEEE80211_CONN_DISABLE_HE ||
518 	    !ieee80211_get_he_iftype_cap_vif(sband, &sdata->vif)) {
519 		he_oper = NULL;
520 		eht_oper = NULL;
521 	}
522 
523 	/* don't check EHT if we associated as non-EHT station */
524 	if (link->u.mgd.conn_flags & IEEE80211_CONN_DISABLE_EHT ||
525 	    !ieee80211_get_eht_iftype_cap_vif(sband, &sdata->vif))
526 		eht_oper = NULL;
527 
528 	/*
529 	 * if bss configuration changed store the new one -
530 	 * this may be applicable even if channel is identical
531 	 */
532 	ht_opmode = le16_to_cpu(ht_oper->operation_mode);
533 	if (link->conf->ht_operation_mode != ht_opmode) {
534 		*changed |= BSS_CHANGED_HT;
535 		link->conf->ht_operation_mode = ht_opmode;
536 	}
537 
538 	if (vht_cap)
539 		vht_cap_info = le32_to_cpu(vht_cap->vht_cap_info);
540 
541 	/* calculate new channel (type) based on HT/VHT/HE operation IEs */
542 	flags = ieee80211_determine_chantype(sdata, link,
543 					     link->u.mgd.conn_flags,
544 					     sband, chan, vht_cap_info,
545 					     ht_oper, vht_oper,
546 					     he_oper, eht_oper,
547 					     s1g_oper, &chandef, true);
548 
549 	/*
550 	 * Downgrade the new channel if we associated with restricted
551 	 * capabilities. For example, if we associated as a 20 MHz STA
552 	 * to a 40 MHz AP (due to regulatory, capabilities or config
553 	 * reasons) then switching to a 40 MHz channel now won't do us
554 	 * any good -- we couldn't use it with the AP.
555 	 */
556 	if (link->u.mgd.conn_flags & IEEE80211_CONN_DISABLE_80P80MHZ &&
557 	    chandef.width == NL80211_CHAN_WIDTH_80P80)
558 		flags |= ieee80211_chandef_downgrade(&chandef);
559 	if (link->u.mgd.conn_flags & IEEE80211_CONN_DISABLE_160MHZ &&
560 	    chandef.width == NL80211_CHAN_WIDTH_160)
561 		flags |= ieee80211_chandef_downgrade(&chandef);
562 	if (link->u.mgd.conn_flags & IEEE80211_CONN_DISABLE_40MHZ &&
563 	    chandef.width > NL80211_CHAN_WIDTH_20)
564 		flags |= ieee80211_chandef_downgrade(&chandef);
565 
566 	if (cfg80211_chandef_identical(&chandef, &link->conf->chandef))
567 		return 0;
568 
569 	link_info(link,
570 		  "AP %pM changed bandwidth, new config is %d.%03d MHz, width %d (%d.%03d/%d MHz)\n",
571 		  link->u.mgd.bssid, chandef.chan->center_freq,
572 		  chandef.chan->freq_offset, chandef.width,
573 		  chandef.center_freq1, chandef.freq1_offset,
574 		  chandef.center_freq2);
575 
576 	if (flags != (link->u.mgd.conn_flags &
577 				(IEEE80211_CONN_DISABLE_HT |
578 				 IEEE80211_CONN_DISABLE_VHT |
579 				 IEEE80211_CONN_DISABLE_HE |
580 				 IEEE80211_CONN_DISABLE_EHT |
581 				 IEEE80211_CONN_DISABLE_40MHZ |
582 				 IEEE80211_CONN_DISABLE_80P80MHZ |
583 				 IEEE80211_CONN_DISABLE_160MHZ |
584 				 IEEE80211_CONN_DISABLE_320MHZ)) ||
585 	    !cfg80211_chandef_valid(&chandef)) {
586 		sdata_info(sdata,
587 			   "AP %pM changed caps/bw in a way we can't support (0x%x/0x%x) - disconnect\n",
588 			   link->u.mgd.bssid, flags, ifmgd->flags);
589 		return -EINVAL;
590 	}
591 
592 	ret = ieee80211_link_change_bandwidth(link, &chandef, changed);
593 
594 	if (ret) {
595 		sdata_info(sdata,
596 			   "AP %pM changed bandwidth to incompatible one - disconnect\n",
597 			   link->u.mgd.bssid);
598 		return ret;
599 	}
600 
601 	return 0;
602 }
603 
604 /* frame sending functions */
605 
606 static void ieee80211_add_ht_ie(struct ieee80211_sub_if_data *sdata,
607 				struct sk_buff *skb, u8 ap_ht_param,
608 				struct ieee80211_supported_band *sband,
609 				struct ieee80211_channel *channel,
610 				enum ieee80211_smps_mode smps,
611 				ieee80211_conn_flags_t conn_flags)
612 {
613 	u8 *pos;
614 	u32 flags = channel->flags;
615 	u16 cap;
616 	struct ieee80211_sta_ht_cap ht_cap;
617 
618 	BUILD_BUG_ON(sizeof(ht_cap) != sizeof(sband->ht_cap));
619 
620 	memcpy(&ht_cap, &sband->ht_cap, sizeof(ht_cap));
621 	ieee80211_apply_htcap_overrides(sdata, &ht_cap);
622 
623 	/* determine capability flags */
624 	cap = ht_cap.cap;
625 
626 	switch (ap_ht_param & IEEE80211_HT_PARAM_CHA_SEC_OFFSET) {
627 	case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
628 		if (flags & IEEE80211_CHAN_NO_HT40PLUS) {
629 			cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
630 			cap &= ~IEEE80211_HT_CAP_SGI_40;
631 		}
632 		break;
633 	case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
634 		if (flags & IEEE80211_CHAN_NO_HT40MINUS) {
635 			cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
636 			cap &= ~IEEE80211_HT_CAP_SGI_40;
637 		}
638 		break;
639 	}
640 
641 	/*
642 	 * If 40 MHz was disabled associate as though we weren't
643 	 * capable of 40 MHz -- some broken APs will never fall
644 	 * back to trying to transmit in 20 MHz.
645 	 */
646 	if (conn_flags & IEEE80211_CONN_DISABLE_40MHZ) {
647 		cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
648 		cap &= ~IEEE80211_HT_CAP_SGI_40;
649 	}
650 
651 	/* set SM PS mode properly */
652 	cap &= ~IEEE80211_HT_CAP_SM_PS;
653 	switch (smps) {
654 	case IEEE80211_SMPS_AUTOMATIC:
655 	case IEEE80211_SMPS_NUM_MODES:
656 		WARN_ON(1);
657 		fallthrough;
658 	case IEEE80211_SMPS_OFF:
659 		cap |= WLAN_HT_CAP_SM_PS_DISABLED <<
660 			IEEE80211_HT_CAP_SM_PS_SHIFT;
661 		break;
662 	case IEEE80211_SMPS_STATIC:
663 		cap |= WLAN_HT_CAP_SM_PS_STATIC <<
664 			IEEE80211_HT_CAP_SM_PS_SHIFT;
665 		break;
666 	case IEEE80211_SMPS_DYNAMIC:
667 		cap |= WLAN_HT_CAP_SM_PS_DYNAMIC <<
668 			IEEE80211_HT_CAP_SM_PS_SHIFT;
669 		break;
670 	}
671 
672 	/* reserve and fill IE */
673 	pos = skb_put(skb, sizeof(struct ieee80211_ht_cap) + 2);
674 	ieee80211_ie_build_ht_cap(pos, &ht_cap, cap);
675 }
676 
677 /* This function determines vht capability flags for the association
678  * and builds the IE.
679  * Note - the function returns true to own the MU-MIMO capability
680  */
681 static bool ieee80211_add_vht_ie(struct ieee80211_sub_if_data *sdata,
682 				 struct sk_buff *skb,
683 				 struct ieee80211_supported_band *sband,
684 				 struct ieee80211_vht_cap *ap_vht_cap,
685 				 ieee80211_conn_flags_t conn_flags)
686 {
687 	struct ieee80211_local *local = sdata->local;
688 	u8 *pos;
689 	u32 cap;
690 	struct ieee80211_sta_vht_cap vht_cap;
691 	u32 mask, ap_bf_sts, our_bf_sts;
692 	bool mu_mimo_owner = false;
693 
694 	BUILD_BUG_ON(sizeof(vht_cap) != sizeof(sband->vht_cap));
695 
696 	memcpy(&vht_cap, &sband->vht_cap, sizeof(vht_cap));
697 	ieee80211_apply_vhtcap_overrides(sdata, &vht_cap);
698 
699 	/* determine capability flags */
700 	cap = vht_cap.cap;
701 
702 	if (conn_flags & IEEE80211_CONN_DISABLE_80P80MHZ) {
703 		u32 bw = cap & IEEE80211_VHT_CAP_SUPP_CHAN_WIDTH_MASK;
704 
705 		cap &= ~IEEE80211_VHT_CAP_SUPP_CHAN_WIDTH_MASK;
706 		if (bw == IEEE80211_VHT_CAP_SUPP_CHAN_WIDTH_160MHZ ||
707 		    bw == IEEE80211_VHT_CAP_SUPP_CHAN_WIDTH_160_80PLUS80MHZ)
708 			cap |= IEEE80211_VHT_CAP_SUPP_CHAN_WIDTH_160MHZ;
709 	}
710 
711 	if (conn_flags & IEEE80211_CONN_DISABLE_160MHZ) {
712 		cap &= ~IEEE80211_VHT_CAP_SHORT_GI_160;
713 		cap &= ~IEEE80211_VHT_CAP_SUPP_CHAN_WIDTH_MASK;
714 	}
715 
716 	/*
717 	 * Some APs apparently get confused if our capabilities are better
718 	 * than theirs, so restrict what we advertise in the assoc request.
719 	 */
720 	if (!(ap_vht_cap->vht_cap_info &
721 			cpu_to_le32(IEEE80211_VHT_CAP_SU_BEAMFORMER_CAPABLE)))
722 		cap &= ~(IEEE80211_VHT_CAP_SU_BEAMFORMEE_CAPABLE |
723 			 IEEE80211_VHT_CAP_MU_BEAMFORMEE_CAPABLE);
724 	else if (!(ap_vht_cap->vht_cap_info &
725 			cpu_to_le32(IEEE80211_VHT_CAP_MU_BEAMFORMER_CAPABLE)))
726 		cap &= ~IEEE80211_VHT_CAP_MU_BEAMFORMEE_CAPABLE;
727 
728 	/*
729 	 * If some other vif is using the MU-MIMO capability we cannot associate
730 	 * using MU-MIMO - this will lead to contradictions in the group-id
731 	 * mechanism.
732 	 * Ownership is defined since association request, in order to avoid
733 	 * simultaneous associations with MU-MIMO.
734 	 */
735 	if (cap & IEEE80211_VHT_CAP_MU_BEAMFORMEE_CAPABLE) {
736 		bool disable_mu_mimo = false;
737 		struct ieee80211_sub_if_data *other;
738 
739 		list_for_each_entry_rcu(other, &local->interfaces, list) {
740 			if (other->vif.bss_conf.mu_mimo_owner) {
741 				disable_mu_mimo = true;
742 				break;
743 			}
744 		}
745 		if (disable_mu_mimo)
746 			cap &= ~IEEE80211_VHT_CAP_MU_BEAMFORMEE_CAPABLE;
747 		else
748 			mu_mimo_owner = true;
749 	}
750 
751 	mask = IEEE80211_VHT_CAP_BEAMFORMEE_STS_MASK;
752 
753 	ap_bf_sts = le32_to_cpu(ap_vht_cap->vht_cap_info) & mask;
754 	our_bf_sts = cap & mask;
755 
756 	if (ap_bf_sts < our_bf_sts) {
757 		cap &= ~mask;
758 		cap |= ap_bf_sts;
759 	}
760 
761 	/* reserve and fill IE */
762 	pos = skb_put(skb, sizeof(struct ieee80211_vht_cap) + 2);
763 	ieee80211_ie_build_vht_cap(pos, &vht_cap, cap);
764 
765 	return mu_mimo_owner;
766 }
767 
768 /* This function determines HE capability flags for the association
769  * and builds the IE.
770  */
771 static void ieee80211_add_he_ie(struct ieee80211_sub_if_data *sdata,
772 				struct sk_buff *skb,
773 				struct ieee80211_supported_band *sband,
774 				enum ieee80211_smps_mode smps_mode,
775 				ieee80211_conn_flags_t conn_flags)
776 {
777 	u8 *pos, *pre_he_pos;
778 	const struct ieee80211_sta_he_cap *he_cap;
779 	u8 he_cap_size;
780 
781 	he_cap = ieee80211_get_he_iftype_cap_vif(sband, &sdata->vif);
782 	if (WARN_ON(!he_cap))
783 		return;
784 
785 	/* get a max size estimate */
786 	he_cap_size =
787 		2 + 1 + sizeof(he_cap->he_cap_elem) +
788 		ieee80211_he_mcs_nss_size(&he_cap->he_cap_elem) +
789 		ieee80211_he_ppe_size(he_cap->ppe_thres[0],
790 				      he_cap->he_cap_elem.phy_cap_info);
791 	pos = skb_put(skb, he_cap_size);
792 	pre_he_pos = pos;
793 	pos = ieee80211_ie_build_he_cap(conn_flags,
794 					pos, he_cap, pos + he_cap_size);
795 	/* trim excess if any */
796 	skb_trim(skb, skb->len - (pre_he_pos + he_cap_size - pos));
797 
798 	ieee80211_ie_build_he_6ghz_cap(sdata, smps_mode, skb);
799 }
800 
801 static void ieee80211_add_eht_ie(struct ieee80211_sub_if_data *sdata,
802 				 struct sk_buff *skb,
803 				 struct ieee80211_supported_band *sband)
804 {
805 	u8 *pos;
806 	const struct ieee80211_sta_he_cap *he_cap;
807 	const struct ieee80211_sta_eht_cap *eht_cap;
808 	u8 eht_cap_size;
809 
810 	he_cap = ieee80211_get_he_iftype_cap_vif(sband, &sdata->vif);
811 	eht_cap = ieee80211_get_eht_iftype_cap_vif(sband, &sdata->vif);
812 
813 	/*
814 	 * EHT capabilities element is only added if the HE capabilities element
815 	 * was added so assume that 'he_cap' is valid and don't check it.
816 	 */
817 	if (WARN_ON(!he_cap || !eht_cap))
818 		return;
819 
820 	eht_cap_size =
821 		2 + 1 + sizeof(eht_cap->eht_cap_elem) +
822 		ieee80211_eht_mcs_nss_size(&he_cap->he_cap_elem,
823 					   &eht_cap->eht_cap_elem,
824 					   false) +
825 		ieee80211_eht_ppe_size(eht_cap->eht_ppe_thres[0],
826 				       eht_cap->eht_cap_elem.phy_cap_info);
827 	pos = skb_put(skb, eht_cap_size);
828 	ieee80211_ie_build_eht_cap(pos, he_cap, eht_cap, pos + eht_cap_size,
829 				   false);
830 }
831 
832 static void ieee80211_assoc_add_rates(struct sk_buff *skb,
833 				      enum nl80211_chan_width width,
834 				      struct ieee80211_supported_band *sband,
835 				      struct ieee80211_mgd_assoc_data *assoc_data)
836 {
837 	unsigned int rates_len, supp_rates_len;
838 	u32 rates = 0;
839 	int i, count;
840 	u8 *pos;
841 
842 	if (assoc_data->supp_rates_len) {
843 		/*
844 		 * Get all rates supported by the device and the AP as
845 		 * some APs don't like getting a superset of their rates
846 		 * in the association request (e.g. D-Link DAP 1353 in
847 		 * b-only mode)...
848 		 */
849 		rates_len = ieee80211_parse_bitrates(width, sband,
850 						     assoc_data->supp_rates,
851 						     assoc_data->supp_rates_len,
852 						     &rates);
853 	} else {
854 		/*
855 		 * In case AP not provide any supported rates information
856 		 * before association, we send information element(s) with
857 		 * all rates that we support.
858 		 */
859 		rates_len = sband->n_bitrates;
860 		for (i = 0; i < sband->n_bitrates; i++)
861 			rates |= BIT(i);
862 	}
863 
864 	supp_rates_len = rates_len;
865 	if (supp_rates_len > 8)
866 		supp_rates_len = 8;
867 
868 	pos = skb_put(skb, supp_rates_len + 2);
869 	*pos++ = WLAN_EID_SUPP_RATES;
870 	*pos++ = supp_rates_len;
871 
872 	count = 0;
873 	for (i = 0; i < sband->n_bitrates; i++) {
874 		if (BIT(i) & rates) {
875 			int rate = DIV_ROUND_UP(sband->bitrates[i].bitrate, 5);
876 			*pos++ = (u8)rate;
877 			if (++count == 8)
878 				break;
879 		}
880 	}
881 
882 	if (rates_len > count) {
883 		pos = skb_put(skb, rates_len - count + 2);
884 		*pos++ = WLAN_EID_EXT_SUPP_RATES;
885 		*pos++ = rates_len - count;
886 
887 		for (i++; i < sband->n_bitrates; i++) {
888 			if (BIT(i) & rates) {
889 				int rate;
890 
891 				rate = DIV_ROUND_UP(sband->bitrates[i].bitrate, 5);
892 				*pos++ = (u8)rate;
893 			}
894 		}
895 	}
896 }
897 
898 static size_t ieee80211_add_before_ht_elems(struct sk_buff *skb,
899 					    const u8 *elems,
900 					    size_t elems_len,
901 					    size_t offset)
902 {
903 	size_t noffset;
904 
905 	static const u8 before_ht[] = {
906 		WLAN_EID_SSID,
907 		WLAN_EID_SUPP_RATES,
908 		WLAN_EID_EXT_SUPP_RATES,
909 		WLAN_EID_PWR_CAPABILITY,
910 		WLAN_EID_SUPPORTED_CHANNELS,
911 		WLAN_EID_RSN,
912 		WLAN_EID_QOS_CAPA,
913 		WLAN_EID_RRM_ENABLED_CAPABILITIES,
914 		WLAN_EID_MOBILITY_DOMAIN,
915 		WLAN_EID_FAST_BSS_TRANSITION,	/* reassoc only */
916 		WLAN_EID_RIC_DATA,		/* reassoc only */
917 		WLAN_EID_SUPPORTED_REGULATORY_CLASSES,
918 	};
919 	static const u8 after_ric[] = {
920 		WLAN_EID_SUPPORTED_REGULATORY_CLASSES,
921 		WLAN_EID_HT_CAPABILITY,
922 		WLAN_EID_BSS_COEX_2040,
923 		/* luckily this is almost always there */
924 		WLAN_EID_EXT_CAPABILITY,
925 		WLAN_EID_QOS_TRAFFIC_CAPA,
926 		WLAN_EID_TIM_BCAST_REQ,
927 		WLAN_EID_INTERWORKING,
928 		/* 60 GHz (Multi-band, DMG, MMS) can't happen */
929 		WLAN_EID_VHT_CAPABILITY,
930 		WLAN_EID_OPMODE_NOTIF,
931 	};
932 
933 	if (!elems_len)
934 		return offset;
935 
936 	noffset = ieee80211_ie_split_ric(elems, elems_len,
937 					 before_ht,
938 					 ARRAY_SIZE(before_ht),
939 					 after_ric,
940 					 ARRAY_SIZE(after_ric),
941 					 offset);
942 	skb_put_data(skb, elems + offset, noffset - offset);
943 
944 	return noffset;
945 }
946 
947 static size_t ieee80211_add_before_vht_elems(struct sk_buff *skb,
948 					     const u8 *elems,
949 					     size_t elems_len,
950 					     size_t offset)
951 {
952 	static const u8 before_vht[] = {
953 		/*
954 		 * no need to list the ones split off before HT
955 		 * or generated here
956 		 */
957 		WLAN_EID_BSS_COEX_2040,
958 		WLAN_EID_EXT_CAPABILITY,
959 		WLAN_EID_QOS_TRAFFIC_CAPA,
960 		WLAN_EID_TIM_BCAST_REQ,
961 		WLAN_EID_INTERWORKING,
962 		/* 60 GHz (Multi-band, DMG, MMS) can't happen */
963 	};
964 	size_t noffset;
965 
966 	if (!elems_len)
967 		return offset;
968 
969 	/* RIC already taken care of in ieee80211_add_before_ht_elems() */
970 	noffset = ieee80211_ie_split(elems, elems_len,
971 				     before_vht, ARRAY_SIZE(before_vht),
972 				     offset);
973 	skb_put_data(skb, elems + offset, noffset - offset);
974 
975 	return noffset;
976 }
977 
978 static size_t ieee80211_add_before_he_elems(struct sk_buff *skb,
979 					    const u8 *elems,
980 					    size_t elems_len,
981 					    size_t offset)
982 {
983 	static const u8 before_he[] = {
984 		/*
985 		 * no need to list the ones split off before VHT
986 		 * or generated here
987 		 */
988 		WLAN_EID_OPMODE_NOTIF,
989 		WLAN_EID_EXTENSION, WLAN_EID_EXT_FUTURE_CHAN_GUIDANCE,
990 		/* 11ai elements */
991 		WLAN_EID_EXTENSION, WLAN_EID_EXT_FILS_SESSION,
992 		WLAN_EID_EXTENSION, WLAN_EID_EXT_FILS_PUBLIC_KEY,
993 		WLAN_EID_EXTENSION, WLAN_EID_EXT_FILS_KEY_CONFIRM,
994 		WLAN_EID_EXTENSION, WLAN_EID_EXT_FILS_HLP_CONTAINER,
995 		WLAN_EID_EXTENSION, WLAN_EID_EXT_FILS_IP_ADDR_ASSIGN,
996 		/* TODO: add 11ah/11aj/11ak elements */
997 	};
998 	size_t noffset;
999 
1000 	if (!elems_len)
1001 		return offset;
1002 
1003 	/* RIC already taken care of in ieee80211_add_before_ht_elems() */
1004 	noffset = ieee80211_ie_split(elems, elems_len,
1005 				     before_he, ARRAY_SIZE(before_he),
1006 				     offset);
1007 	skb_put_data(skb, elems + offset, noffset - offset);
1008 
1009 	return noffset;
1010 }
1011 
1012 #define PRESENT_ELEMS_MAX	8
1013 #define PRESENT_ELEM_EXT_OFFS	0x100
1014 
1015 static void ieee80211_assoc_add_ml_elem(struct ieee80211_sub_if_data *sdata,
1016 					struct sk_buff *skb, u16 capab,
1017 					const struct element *ext_capa,
1018 					const u16 *present_elems);
1019 
1020 static size_t ieee80211_assoc_link_elems(struct ieee80211_sub_if_data *sdata,
1021 					 struct sk_buff *skb, u16 *capab,
1022 					 const struct element *ext_capa,
1023 					 const u8 *extra_elems,
1024 					 size_t extra_elems_len,
1025 					 unsigned int link_id,
1026 					 struct ieee80211_link_data *link,
1027 					 u16 *present_elems)
1028 {
1029 	enum nl80211_iftype iftype = ieee80211_vif_type_p2p(&sdata->vif);
1030 	struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1031 	struct ieee80211_mgd_assoc_data *assoc_data = ifmgd->assoc_data;
1032 	struct cfg80211_bss *cbss = assoc_data->link[link_id].bss;
1033 	struct ieee80211_channel *chan = cbss->channel;
1034 	const struct ieee80211_sband_iftype_data *iftd;
1035 	struct ieee80211_local *local = sdata->local;
1036 	struct ieee80211_supported_band *sband;
1037 	enum nl80211_chan_width width = NL80211_CHAN_WIDTH_20;
1038 	struct ieee80211_chanctx_conf *chanctx_conf;
1039 	enum ieee80211_smps_mode smps_mode;
1040 	u16 orig_capab = *capab;
1041 	size_t offset = 0;
1042 	int present_elems_len = 0;
1043 	u8 *pos;
1044 	int i;
1045 
1046 #define ADD_PRESENT_ELEM(id) do {					\
1047 	/* need a last for termination - we use 0 == SSID */		\
1048 	if (!WARN_ON(present_elems_len >= PRESENT_ELEMS_MAX - 1))	\
1049 		present_elems[present_elems_len++] = (id);		\
1050 } while (0)
1051 #define ADD_PRESENT_EXT_ELEM(id) ADD_PRESENT_ELEM(PRESENT_ELEM_EXT_OFFS | (id))
1052 
1053 	if (link)
1054 		smps_mode = link->smps_mode;
1055 	else if (sdata->u.mgd.powersave)
1056 		smps_mode = IEEE80211_SMPS_DYNAMIC;
1057 	else
1058 		smps_mode = IEEE80211_SMPS_OFF;
1059 
1060 	if (link) {
1061 		/*
1062 		 * 5/10 MHz scenarios are only viable without MLO, in which
1063 		 * case this pointer should be used ... All of this is a bit
1064 		 * unclear though, not sure this even works at all.
1065 		 */
1066 		rcu_read_lock();
1067 		chanctx_conf = rcu_dereference(link->conf->chanctx_conf);
1068 		if (chanctx_conf)
1069 			width = chanctx_conf->def.width;
1070 		rcu_read_unlock();
1071 	}
1072 
1073 	sband = local->hw.wiphy->bands[chan->band];
1074 	iftd = ieee80211_get_sband_iftype_data(sband, iftype);
1075 
1076 	if (sband->band == NL80211_BAND_2GHZ) {
1077 		*capab |= WLAN_CAPABILITY_SHORT_SLOT_TIME;
1078 		*capab |= WLAN_CAPABILITY_SHORT_PREAMBLE;
1079 	}
1080 
1081 	if ((cbss->capability & WLAN_CAPABILITY_SPECTRUM_MGMT) &&
1082 	    ieee80211_hw_check(&local->hw, SPECTRUM_MGMT))
1083 		*capab |= WLAN_CAPABILITY_SPECTRUM_MGMT;
1084 
1085 	if (sband->band != NL80211_BAND_S1GHZ)
1086 		ieee80211_assoc_add_rates(skb, width, sband, assoc_data);
1087 
1088 	if (*capab & WLAN_CAPABILITY_SPECTRUM_MGMT ||
1089 	    *capab & WLAN_CAPABILITY_RADIO_MEASURE) {
1090 		struct cfg80211_chan_def chandef = {
1091 			.width = width,
1092 			.chan = chan,
1093 		};
1094 
1095 		pos = skb_put(skb, 4);
1096 		*pos++ = WLAN_EID_PWR_CAPABILITY;
1097 		*pos++ = 2;
1098 		*pos++ = 0; /* min tx power */
1099 		 /* max tx power */
1100 		*pos++ = ieee80211_chandef_max_power(&chandef);
1101 		ADD_PRESENT_ELEM(WLAN_EID_PWR_CAPABILITY);
1102 	}
1103 
1104 	/*
1105 	 * Per spec, we shouldn't include the list of channels if we advertise
1106 	 * support for extended channel switching, but we've always done that;
1107 	 * (for now?) apply this restriction only on the (new) 6 GHz band.
1108 	 */
1109 	if (*capab & WLAN_CAPABILITY_SPECTRUM_MGMT &&
1110 	    (sband->band != NL80211_BAND_6GHZ ||
1111 	     !ext_capa || ext_capa->datalen < 1 ||
1112 	     !(ext_capa->data[0] & WLAN_EXT_CAPA1_EXT_CHANNEL_SWITCHING))) {
1113 		/* TODO: get this in reg domain format */
1114 		pos = skb_put(skb, 2 * sband->n_channels + 2);
1115 		*pos++ = WLAN_EID_SUPPORTED_CHANNELS;
1116 		*pos++ = 2 * sband->n_channels;
1117 		for (i = 0; i < sband->n_channels; i++) {
1118 			int cf = sband->channels[i].center_freq;
1119 
1120 			*pos++ = ieee80211_frequency_to_channel(cf);
1121 			*pos++ = 1; /* one channel in the subband*/
1122 		}
1123 		ADD_PRESENT_ELEM(WLAN_EID_SUPPORTED_CHANNELS);
1124 	}
1125 
1126 	/* if present, add any custom IEs that go before HT */
1127 	offset = ieee80211_add_before_ht_elems(skb, extra_elems,
1128 					       extra_elems_len,
1129 					       offset);
1130 
1131 	if (sband->band != NL80211_BAND_6GHZ &&
1132 	    !(assoc_data->link[link_id].conn_flags & IEEE80211_CONN_DISABLE_HT)) {
1133 		ieee80211_add_ht_ie(sdata, skb,
1134 				    assoc_data->link[link_id].ap_ht_param,
1135 				    sband, chan, smps_mode,
1136 				    assoc_data->link[link_id].conn_flags);
1137 		ADD_PRESENT_ELEM(WLAN_EID_HT_CAPABILITY);
1138 	}
1139 
1140 	/* if present, add any custom IEs that go before VHT */
1141 	offset = ieee80211_add_before_vht_elems(skb, extra_elems,
1142 						extra_elems_len,
1143 						offset);
1144 
1145 	if (sband->band != NL80211_BAND_6GHZ &&
1146 	    !(assoc_data->link[link_id].conn_flags & IEEE80211_CONN_DISABLE_VHT)) {
1147 		bool mu_mimo_owner =
1148 			ieee80211_add_vht_ie(sdata, skb, sband,
1149 					     &assoc_data->link[link_id].ap_vht_cap,
1150 					     assoc_data->link[link_id].conn_flags);
1151 
1152 		if (link)
1153 			link->conf->mu_mimo_owner = mu_mimo_owner;
1154 		ADD_PRESENT_ELEM(WLAN_EID_VHT_CAPABILITY);
1155 	}
1156 
1157 	/*
1158 	 * If AP doesn't support HT, mark HE and EHT as disabled.
1159 	 * If on the 5GHz band, make sure it supports VHT.
1160 	 */
1161 	if (assoc_data->link[link_id].conn_flags & IEEE80211_CONN_DISABLE_HT ||
1162 	    (sband->band == NL80211_BAND_5GHZ &&
1163 	     assoc_data->link[link_id].conn_flags & IEEE80211_CONN_DISABLE_VHT))
1164 		assoc_data->link[link_id].conn_flags |=
1165 			IEEE80211_CONN_DISABLE_HE |
1166 			IEEE80211_CONN_DISABLE_EHT;
1167 
1168 	/* if present, add any custom IEs that go before HE */
1169 	offset = ieee80211_add_before_he_elems(skb, extra_elems,
1170 					       extra_elems_len,
1171 					       offset);
1172 
1173 	if (!(assoc_data->link[link_id].conn_flags & IEEE80211_CONN_DISABLE_HE)) {
1174 		ieee80211_add_he_ie(sdata, skb, sband, smps_mode,
1175 				    assoc_data->link[link_id].conn_flags);
1176 		ADD_PRESENT_EXT_ELEM(WLAN_EID_EXT_HE_CAPABILITY);
1177 	}
1178 
1179 	/*
1180 	 * careful - need to know about all the present elems before
1181 	 * calling ieee80211_assoc_add_ml_elem(), so add this one if
1182 	 * we're going to put it after the ML element
1183 	 */
1184 	if (!(assoc_data->link[link_id].conn_flags & IEEE80211_CONN_DISABLE_EHT))
1185 		ADD_PRESENT_EXT_ELEM(WLAN_EID_EXT_EHT_CAPABILITY);
1186 
1187 	if (link_id == assoc_data->assoc_link_id)
1188 		ieee80211_assoc_add_ml_elem(sdata, skb, orig_capab, ext_capa,
1189 					    present_elems);
1190 
1191 	/* crash if somebody gets it wrong */
1192 	present_elems = NULL;
1193 
1194 	if (!(assoc_data->link[link_id].conn_flags & IEEE80211_CONN_DISABLE_EHT))
1195 		ieee80211_add_eht_ie(sdata, skb, sband);
1196 
1197 	if (sband->band == NL80211_BAND_S1GHZ) {
1198 		ieee80211_add_aid_request_ie(sdata, skb);
1199 		ieee80211_add_s1g_capab_ie(sdata, &sband->s1g_cap, skb);
1200 	}
1201 
1202 	if (iftd && iftd->vendor_elems.data && iftd->vendor_elems.len)
1203 		skb_put_data(skb, iftd->vendor_elems.data, iftd->vendor_elems.len);
1204 
1205 	if (link)
1206 		link->u.mgd.conn_flags = assoc_data->link[link_id].conn_flags;
1207 
1208 	return offset;
1209 }
1210 
1211 static void ieee80211_add_non_inheritance_elem(struct sk_buff *skb,
1212 					       const u16 *outer,
1213 					       const u16 *inner)
1214 {
1215 	unsigned int skb_len = skb->len;
1216 	bool at_extension = false;
1217 	bool added = false;
1218 	int i, j;
1219 	u8 *len, *list_len = NULL;
1220 
1221 	skb_put_u8(skb, WLAN_EID_EXTENSION);
1222 	len = skb_put(skb, 1);
1223 	skb_put_u8(skb, WLAN_EID_EXT_NON_INHERITANCE);
1224 
1225 	for (i = 0; i < PRESENT_ELEMS_MAX && outer[i]; i++) {
1226 		u16 elem = outer[i];
1227 		bool have_inner = false;
1228 
1229 		/* should at least be sorted in the sense of normal -> ext */
1230 		WARN_ON(at_extension && elem < PRESENT_ELEM_EXT_OFFS);
1231 
1232 		/* switch to extension list */
1233 		if (!at_extension && elem >= PRESENT_ELEM_EXT_OFFS) {
1234 			at_extension = true;
1235 			if (!list_len)
1236 				skb_put_u8(skb, 0);
1237 			list_len = NULL;
1238 		}
1239 
1240 		for (j = 0; j < PRESENT_ELEMS_MAX && inner[j]; j++) {
1241 			if (elem == inner[j]) {
1242 				have_inner = true;
1243 				break;
1244 			}
1245 		}
1246 
1247 		if (have_inner)
1248 			continue;
1249 
1250 		if (!list_len) {
1251 			list_len = skb_put(skb, 1);
1252 			*list_len = 0;
1253 		}
1254 		*list_len += 1;
1255 		skb_put_u8(skb, (u8)elem);
1256 		added = true;
1257 	}
1258 
1259 	/* if we added a list but no extension list, make a zero-len one */
1260 	if (added && (!at_extension || !list_len))
1261 		skb_put_u8(skb, 0);
1262 
1263 	/* if nothing added remove extension element completely */
1264 	if (!added)
1265 		skb_trim(skb, skb_len);
1266 	else
1267 		*len = skb->len - skb_len - 2;
1268 }
1269 
1270 static void ieee80211_assoc_add_ml_elem(struct ieee80211_sub_if_data *sdata,
1271 					struct sk_buff *skb, u16 capab,
1272 					const struct element *ext_capa,
1273 					const u16 *outer_present_elems)
1274 {
1275 	struct ieee80211_local *local = sdata->local;
1276 	struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1277 	struct ieee80211_mgd_assoc_data *assoc_data = ifmgd->assoc_data;
1278 	struct ieee80211_multi_link_elem *ml_elem;
1279 	struct ieee80211_mle_basic_common_info *common;
1280 	const struct wiphy_iftype_ext_capab *ift_ext_capa;
1281 	__le16 eml_capa = 0, mld_capa_ops = 0;
1282 	unsigned int link_id;
1283 	u8 *ml_elem_len;
1284 	void *capab_pos;
1285 
1286 	if (!ieee80211_vif_is_mld(&sdata->vif))
1287 		return;
1288 
1289 	ift_ext_capa = cfg80211_get_iftype_ext_capa(local->hw.wiphy,
1290 						    ieee80211_vif_type_p2p(&sdata->vif));
1291 	if (ift_ext_capa) {
1292 		eml_capa = cpu_to_le16(ift_ext_capa->eml_capabilities);
1293 		mld_capa_ops = cpu_to_le16(ift_ext_capa->mld_capa_and_ops);
1294 	}
1295 
1296 	skb_put_u8(skb, WLAN_EID_EXTENSION);
1297 	ml_elem_len = skb_put(skb, 1);
1298 	skb_put_u8(skb, WLAN_EID_EXT_EHT_MULTI_LINK);
1299 	ml_elem = skb_put(skb, sizeof(*ml_elem));
1300 	ml_elem->control =
1301 		cpu_to_le16(IEEE80211_ML_CONTROL_TYPE_BASIC |
1302 			    IEEE80211_MLC_BASIC_PRES_MLD_CAPA_OP);
1303 	common = skb_put(skb, sizeof(*common));
1304 	common->len = sizeof(*common) +
1305 		      2;  /* MLD capa/ops */
1306 	memcpy(common->mld_mac_addr, sdata->vif.addr, ETH_ALEN);
1307 
1308 	/* add EML_CAPA only if needed, see Draft P802.11be_D2.1, 35.3.17 */
1309 	if (eml_capa &
1310 	    cpu_to_le16((IEEE80211_EML_CAP_EMLSR_SUPP |
1311 			 IEEE80211_EML_CAP_EMLMR_SUPPORT))) {
1312 		common->len += 2; /* EML capabilities */
1313 		ml_elem->control |=
1314 			cpu_to_le16(IEEE80211_MLC_BASIC_PRES_EML_CAPA);
1315 		skb_put_data(skb, &eml_capa, sizeof(eml_capa));
1316 	}
1317 	/* need indication from userspace to support this */
1318 	mld_capa_ops &= ~cpu_to_le16(IEEE80211_MLD_CAP_OP_TID_TO_LINK_MAP_NEG_SUPP);
1319 	skb_put_data(skb, &mld_capa_ops, sizeof(mld_capa_ops));
1320 
1321 	for (link_id = 0; link_id < IEEE80211_MLD_MAX_NUM_LINKS; link_id++) {
1322 		u16 link_present_elems[PRESENT_ELEMS_MAX] = {};
1323 		const u8 *extra_elems;
1324 		size_t extra_elems_len;
1325 		size_t extra_used;
1326 		u8 *subelem_len = NULL;
1327 		__le16 ctrl;
1328 
1329 		if (!assoc_data->link[link_id].bss ||
1330 		    link_id == assoc_data->assoc_link_id)
1331 			continue;
1332 
1333 		extra_elems = assoc_data->link[link_id].elems;
1334 		extra_elems_len = assoc_data->link[link_id].elems_len;
1335 
1336 		skb_put_u8(skb, IEEE80211_MLE_SUBELEM_PER_STA_PROFILE);
1337 		subelem_len = skb_put(skb, 1);
1338 
1339 		ctrl = cpu_to_le16(link_id |
1340 				   IEEE80211_MLE_STA_CONTROL_COMPLETE_PROFILE |
1341 				   IEEE80211_MLE_STA_CONTROL_STA_MAC_ADDR_PRESENT);
1342 		skb_put_data(skb, &ctrl, sizeof(ctrl));
1343 		skb_put_u8(skb, 1 + ETH_ALEN); /* STA Info Length */
1344 		skb_put_data(skb, assoc_data->link[link_id].addr,
1345 			     ETH_ALEN);
1346 		/*
1347 		 * Now add the contents of the (re)association request,
1348 		 * but the "listen interval" and "current AP address"
1349 		 * (if applicable) are skipped. So we only have
1350 		 * the capability field (remember the position and fill
1351 		 * later), followed by the elements added below by
1352 		 * calling ieee80211_assoc_link_elems().
1353 		 */
1354 		capab_pos = skb_put(skb, 2);
1355 
1356 		extra_used = ieee80211_assoc_link_elems(sdata, skb, &capab,
1357 							ext_capa,
1358 							extra_elems,
1359 							extra_elems_len,
1360 							link_id, NULL,
1361 							link_present_elems);
1362 		if (extra_elems)
1363 			skb_put_data(skb, extra_elems + extra_used,
1364 				     extra_elems_len - extra_used);
1365 
1366 		put_unaligned_le16(capab, capab_pos);
1367 
1368 		ieee80211_add_non_inheritance_elem(skb, outer_present_elems,
1369 						   link_present_elems);
1370 
1371 		ieee80211_fragment_element(skb, subelem_len,
1372 					   IEEE80211_MLE_SUBELEM_FRAGMENT);
1373 	}
1374 
1375 	ieee80211_fragment_element(skb, ml_elem_len, WLAN_EID_FRAGMENT);
1376 }
1377 
1378 static int ieee80211_send_assoc(struct ieee80211_sub_if_data *sdata)
1379 {
1380 	struct ieee80211_local *local = sdata->local;
1381 	struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1382 	struct ieee80211_mgd_assoc_data *assoc_data = ifmgd->assoc_data;
1383 	struct ieee80211_link_data *link;
1384 	struct sk_buff *skb;
1385 	struct ieee80211_mgmt *mgmt;
1386 	u8 *pos, qos_info, *ie_start;
1387 	size_t offset, noffset;
1388 	u16 capab = 0, link_capab;
1389 	__le16 listen_int;
1390 	struct element *ext_capa = NULL;
1391 	enum nl80211_iftype iftype = ieee80211_vif_type_p2p(&sdata->vif);
1392 	struct ieee80211_prep_tx_info info = {};
1393 	unsigned int link_id, n_links = 0;
1394 	u16 present_elems[PRESENT_ELEMS_MAX] = {};
1395 	void *capab_pos;
1396 	size_t size;
1397 	int ret;
1398 
1399 	/* we know it's writable, cast away the const */
1400 	if (assoc_data->ie_len)
1401 		ext_capa = (void *)cfg80211_find_elem(WLAN_EID_EXT_CAPABILITY,
1402 						      assoc_data->ie,
1403 						      assoc_data->ie_len);
1404 
1405 	lockdep_assert_wiphy(sdata->local->hw.wiphy);
1406 
1407 	size = local->hw.extra_tx_headroom +
1408 	       sizeof(*mgmt) + /* bit too much but doesn't matter */
1409 	       2 + assoc_data->ssid_len + /* SSID */
1410 	       assoc_data->ie_len + /* extra IEs */
1411 	       (assoc_data->fils_kek_len ? 16 /* AES-SIV */ : 0) +
1412 	       9; /* WMM */
1413 
1414 	for (link_id = 0; link_id < IEEE80211_MLD_MAX_NUM_LINKS; link_id++) {
1415 		struct cfg80211_bss *cbss = assoc_data->link[link_id].bss;
1416 		const struct ieee80211_sband_iftype_data *iftd;
1417 		struct ieee80211_supported_band *sband;
1418 
1419 		if (!cbss)
1420 			continue;
1421 
1422 		sband = local->hw.wiphy->bands[cbss->channel->band];
1423 
1424 		n_links++;
1425 		/* add STA profile elements length */
1426 		size += assoc_data->link[link_id].elems_len;
1427 		/* and supported rates length */
1428 		size += 4 + sband->n_bitrates;
1429 		/* supported channels */
1430 		size += 2 + 2 * sband->n_channels;
1431 
1432 		iftd = ieee80211_get_sband_iftype_data(sband, iftype);
1433 		if (iftd)
1434 			size += iftd->vendor_elems.len;
1435 
1436 		/* power capability */
1437 		size += 4;
1438 
1439 		/* HT, VHT, HE, EHT */
1440 		size += 2 + sizeof(struct ieee80211_ht_cap);
1441 		size += 2 + sizeof(struct ieee80211_vht_cap);
1442 		size += 2 + 1 + sizeof(struct ieee80211_he_cap_elem) +
1443 			sizeof(struct ieee80211_he_mcs_nss_supp) +
1444 			IEEE80211_HE_PPE_THRES_MAX_LEN;
1445 
1446 		if (sband->band == NL80211_BAND_6GHZ)
1447 			size += 2 + 1 + sizeof(struct ieee80211_he_6ghz_capa);
1448 
1449 		size += 2 + 1 + sizeof(struct ieee80211_eht_cap_elem) +
1450 			sizeof(struct ieee80211_eht_mcs_nss_supp) +
1451 			IEEE80211_EHT_PPE_THRES_MAX_LEN;
1452 
1453 		/* non-inheritance element */
1454 		size += 2 + 2 + PRESENT_ELEMS_MAX;
1455 
1456 		/* should be the same across all BSSes */
1457 		if (cbss->capability & WLAN_CAPABILITY_PRIVACY)
1458 			capab |= WLAN_CAPABILITY_PRIVACY;
1459 	}
1460 
1461 	if (ieee80211_vif_is_mld(&sdata->vif)) {
1462 		/* consider the multi-link element with STA profile */
1463 		size += sizeof(struct ieee80211_multi_link_elem);
1464 		/* max common info field in basic multi-link element */
1465 		size += sizeof(struct ieee80211_mle_basic_common_info) +
1466 			2 + /* capa & op */
1467 			2; /* EML capa */
1468 
1469 		/*
1470 		 * The capability elements were already considered above;
1471 		 * note this over-estimates a bit because there's no
1472 		 * STA profile for the assoc link.
1473 		 */
1474 		size += (n_links - 1) *
1475 			(1 + 1 + /* subelement ID/length */
1476 			 2 + /* STA control */
1477 			 1 + ETH_ALEN + 2 /* STA Info field */);
1478 	}
1479 
1480 	link = sdata_dereference(sdata->link[assoc_data->assoc_link_id], sdata);
1481 	if (WARN_ON(!link))
1482 		return -EINVAL;
1483 
1484 	if (WARN_ON(!assoc_data->link[assoc_data->assoc_link_id].bss))
1485 		return -EINVAL;
1486 
1487 	skb = alloc_skb(size, GFP_KERNEL);
1488 	if (!skb)
1489 		return -ENOMEM;
1490 
1491 	skb_reserve(skb, local->hw.extra_tx_headroom);
1492 
1493 	if (ifmgd->flags & IEEE80211_STA_ENABLE_RRM)
1494 		capab |= WLAN_CAPABILITY_RADIO_MEASURE;
1495 
1496 	/* Set MBSSID support for HE AP if needed */
1497 	if (ieee80211_hw_check(&local->hw, SUPPORTS_ONLY_HE_MULTI_BSSID) &&
1498 	    !(link->u.mgd.conn_flags & IEEE80211_CONN_DISABLE_HE) &&
1499 	    ext_capa && ext_capa->datalen >= 3)
1500 		ext_capa->data[2] |= WLAN_EXT_CAPA3_MULTI_BSSID_SUPPORT;
1501 
1502 	mgmt = skb_put_zero(skb, 24);
1503 	memcpy(mgmt->da, sdata->vif.cfg.ap_addr, ETH_ALEN);
1504 	memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN);
1505 	memcpy(mgmt->bssid, sdata->vif.cfg.ap_addr, ETH_ALEN);
1506 
1507 	listen_int = cpu_to_le16(assoc_data->s1g ?
1508 			ieee80211_encode_usf(local->hw.conf.listen_interval) :
1509 			local->hw.conf.listen_interval);
1510 	if (!is_zero_ether_addr(assoc_data->prev_ap_addr)) {
1511 		skb_put(skb, 10);
1512 		mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
1513 						  IEEE80211_STYPE_REASSOC_REQ);
1514 		capab_pos = &mgmt->u.reassoc_req.capab_info;
1515 		mgmt->u.reassoc_req.listen_interval = listen_int;
1516 		memcpy(mgmt->u.reassoc_req.current_ap,
1517 		       assoc_data->prev_ap_addr, ETH_ALEN);
1518 		info.subtype = IEEE80211_STYPE_REASSOC_REQ;
1519 	} else {
1520 		skb_put(skb, 4);
1521 		mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
1522 						  IEEE80211_STYPE_ASSOC_REQ);
1523 		capab_pos = &mgmt->u.assoc_req.capab_info;
1524 		mgmt->u.assoc_req.listen_interval = listen_int;
1525 		info.subtype = IEEE80211_STYPE_ASSOC_REQ;
1526 	}
1527 
1528 	/* SSID */
1529 	pos = skb_put(skb, 2 + assoc_data->ssid_len);
1530 	ie_start = pos;
1531 	*pos++ = WLAN_EID_SSID;
1532 	*pos++ = assoc_data->ssid_len;
1533 	memcpy(pos, assoc_data->ssid, assoc_data->ssid_len);
1534 
1535 	/*
1536 	 * This bit is technically reserved, so it shouldn't matter for either
1537 	 * the AP or us, but it also means we shouldn't set it. However, we've
1538 	 * always set it in the past, and apparently some EHT APs check that
1539 	 * we don't set it. To avoid interoperability issues with old APs that
1540 	 * for some reason check it and want it to be set, set the bit for all
1541 	 * pre-EHT connections as we used to do.
1542 	 */
1543 	if (link->u.mgd.conn_flags & IEEE80211_CONN_DISABLE_EHT)
1544 		capab |= WLAN_CAPABILITY_ESS;
1545 
1546 	/* add the elements for the assoc (main) link */
1547 	link_capab = capab;
1548 	offset = ieee80211_assoc_link_elems(sdata, skb, &link_capab,
1549 					    ext_capa,
1550 					    assoc_data->ie,
1551 					    assoc_data->ie_len,
1552 					    assoc_data->assoc_link_id, link,
1553 					    present_elems);
1554 	put_unaligned_le16(link_capab, capab_pos);
1555 
1556 	/* if present, add any custom non-vendor IEs */
1557 	if (assoc_data->ie_len) {
1558 		noffset = ieee80211_ie_split_vendor(assoc_data->ie,
1559 						    assoc_data->ie_len,
1560 						    offset);
1561 		skb_put_data(skb, assoc_data->ie + offset, noffset - offset);
1562 		offset = noffset;
1563 	}
1564 
1565 	if (assoc_data->wmm) {
1566 		if (assoc_data->uapsd) {
1567 			qos_info = ifmgd->uapsd_queues;
1568 			qos_info |= (ifmgd->uapsd_max_sp_len <<
1569 				     IEEE80211_WMM_IE_STA_QOSINFO_SP_SHIFT);
1570 		} else {
1571 			qos_info = 0;
1572 		}
1573 
1574 		pos = ieee80211_add_wmm_info_ie(skb_put(skb, 9), qos_info);
1575 	}
1576 
1577 	/* add any remaining custom (i.e. vendor specific here) IEs */
1578 	if (assoc_data->ie_len) {
1579 		noffset = assoc_data->ie_len;
1580 		skb_put_data(skb, assoc_data->ie + offset, noffset - offset);
1581 	}
1582 
1583 	if (assoc_data->fils_kek_len) {
1584 		ret = fils_encrypt_assoc_req(skb, assoc_data);
1585 		if (ret < 0) {
1586 			dev_kfree_skb(skb);
1587 			return ret;
1588 		}
1589 	}
1590 
1591 	pos = skb_tail_pointer(skb);
1592 	kfree(ifmgd->assoc_req_ies);
1593 	ifmgd->assoc_req_ies = kmemdup(ie_start, pos - ie_start, GFP_ATOMIC);
1594 	if (!ifmgd->assoc_req_ies) {
1595 		dev_kfree_skb(skb);
1596 		return -ENOMEM;
1597 	}
1598 
1599 	ifmgd->assoc_req_ies_len = pos - ie_start;
1600 
1601 	info.link_id = assoc_data->assoc_link_id;
1602 	drv_mgd_prepare_tx(local, sdata, &info);
1603 
1604 	IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
1605 	if (ieee80211_hw_check(&local->hw, REPORTS_TX_ACK_STATUS))
1606 		IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_CTL_REQ_TX_STATUS |
1607 						IEEE80211_TX_INTFL_MLME_CONN_TX;
1608 	ieee80211_tx_skb(sdata, skb);
1609 
1610 	return 0;
1611 }
1612 
1613 void ieee80211_send_pspoll(struct ieee80211_local *local,
1614 			   struct ieee80211_sub_if_data *sdata)
1615 {
1616 	struct ieee80211_pspoll *pspoll;
1617 	struct sk_buff *skb;
1618 
1619 	skb = ieee80211_pspoll_get(&local->hw, &sdata->vif);
1620 	if (!skb)
1621 		return;
1622 
1623 	pspoll = (struct ieee80211_pspoll *) skb->data;
1624 	pspoll->frame_control |= cpu_to_le16(IEEE80211_FCTL_PM);
1625 
1626 	IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
1627 	ieee80211_tx_skb(sdata, skb);
1628 }
1629 
1630 void ieee80211_send_nullfunc(struct ieee80211_local *local,
1631 			     struct ieee80211_sub_if_data *sdata,
1632 			     bool powersave)
1633 {
1634 	struct sk_buff *skb;
1635 	struct ieee80211_hdr_3addr *nullfunc;
1636 	struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1637 
1638 	skb = ieee80211_nullfunc_get(&local->hw, &sdata->vif, -1,
1639 				     !ieee80211_hw_check(&local->hw,
1640 							 DOESNT_SUPPORT_QOS_NDP));
1641 	if (!skb)
1642 		return;
1643 
1644 	nullfunc = (struct ieee80211_hdr_3addr *) skb->data;
1645 	if (powersave)
1646 		nullfunc->frame_control |= cpu_to_le16(IEEE80211_FCTL_PM);
1647 
1648 	IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT |
1649 					IEEE80211_TX_INTFL_OFFCHAN_TX_OK;
1650 
1651 	if (ieee80211_hw_check(&local->hw, REPORTS_TX_ACK_STATUS))
1652 		IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_CTL_REQ_TX_STATUS;
1653 
1654 	if (ifmgd->flags & IEEE80211_STA_CONNECTION_POLL)
1655 		IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_CTL_USE_MINRATE;
1656 
1657 	ieee80211_tx_skb(sdata, skb);
1658 }
1659 
1660 void ieee80211_send_4addr_nullfunc(struct ieee80211_local *local,
1661 				   struct ieee80211_sub_if_data *sdata)
1662 {
1663 	struct sk_buff *skb;
1664 	struct ieee80211_hdr *nullfunc;
1665 	__le16 fc;
1666 
1667 	if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION))
1668 		return;
1669 
1670 	skb = dev_alloc_skb(local->hw.extra_tx_headroom + 30);
1671 	if (!skb)
1672 		return;
1673 
1674 	skb_reserve(skb, local->hw.extra_tx_headroom);
1675 
1676 	nullfunc = skb_put_zero(skb, 30);
1677 	fc = cpu_to_le16(IEEE80211_FTYPE_DATA | IEEE80211_STYPE_NULLFUNC |
1678 			 IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS);
1679 	nullfunc->frame_control = fc;
1680 	memcpy(nullfunc->addr1, sdata->deflink.u.mgd.bssid, ETH_ALEN);
1681 	memcpy(nullfunc->addr2, sdata->vif.addr, ETH_ALEN);
1682 	memcpy(nullfunc->addr3, sdata->deflink.u.mgd.bssid, ETH_ALEN);
1683 	memcpy(nullfunc->addr4, sdata->vif.addr, ETH_ALEN);
1684 
1685 	IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
1686 	IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_CTL_USE_MINRATE;
1687 	ieee80211_tx_skb(sdata, skb);
1688 }
1689 
1690 /* spectrum management related things */
1691 static void ieee80211_chswitch_work(struct wiphy *wiphy,
1692 				    struct wiphy_work *work)
1693 {
1694 	struct ieee80211_link_data *link =
1695 		container_of(work, struct ieee80211_link_data,
1696 			     u.mgd.chswitch_work.work);
1697 	struct ieee80211_sub_if_data *sdata = link->sdata;
1698 	struct ieee80211_local *local = sdata->local;
1699 	struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1700 	int ret;
1701 
1702 	if (!ieee80211_sdata_running(sdata))
1703 		return;
1704 
1705 	lockdep_assert_wiphy(local->hw.wiphy);
1706 
1707 	if (!ifmgd->associated)
1708 		return;
1709 
1710 	if (!link->conf->csa_active)
1711 		return;
1712 
1713 	/*
1714 	 * using reservation isn't immediate as it may be deferred until later
1715 	 * with multi-vif. once reservation is complete it will re-schedule the
1716 	 * work with no reserved_chanctx so verify chandef to check if it
1717 	 * completed successfully
1718 	 */
1719 
1720 	if (link->reserved_chanctx) {
1721 		/*
1722 		 * with multi-vif csa driver may call ieee80211_csa_finish()
1723 		 * many times while waiting for other interfaces to use their
1724 		 * reservations
1725 		 */
1726 		if (link->reserved_ready)
1727 			return;
1728 
1729 		ret = ieee80211_link_use_reserved_context(link);
1730 		if (ret) {
1731 			sdata_info(sdata,
1732 				   "failed to use reserved channel context, disconnecting (err=%d)\n",
1733 				   ret);
1734 			wiphy_work_queue(sdata->local->hw.wiphy,
1735 					 &ifmgd->csa_connection_drop_work);
1736 		}
1737 		return;
1738 	}
1739 
1740 	if (!cfg80211_chandef_identical(&link->conf->chandef,
1741 					&link->csa_chandef)) {
1742 		sdata_info(sdata,
1743 			   "failed to finalize channel switch, disconnecting\n");
1744 		wiphy_work_queue(sdata->local->hw.wiphy,
1745 				 &ifmgd->csa_connection_drop_work);
1746 		return;
1747 	}
1748 
1749 	link->u.mgd.csa_waiting_bcn = true;
1750 
1751 	ieee80211_sta_reset_beacon_monitor(sdata);
1752 	ieee80211_sta_reset_conn_monitor(sdata);
1753 }
1754 
1755 static void ieee80211_chswitch_post_beacon(struct ieee80211_link_data *link)
1756 {
1757 	struct ieee80211_sub_if_data *sdata = link->sdata;
1758 	struct ieee80211_local *local = sdata->local;
1759 	struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1760 	int ret;
1761 
1762 	lockdep_assert_wiphy(sdata->local->hw.wiphy);
1763 
1764 	WARN_ON(!link->conf->csa_active);
1765 
1766 	if (link->csa_block_tx) {
1767 		ieee80211_wake_vif_queues(local, sdata,
1768 					  IEEE80211_QUEUE_STOP_REASON_CSA);
1769 		link->csa_block_tx = false;
1770 	}
1771 
1772 	link->conf->csa_active = false;
1773 	link->u.mgd.csa_waiting_bcn = false;
1774 	/*
1775 	 * If the CSA IE is still present on the beacon after the switch,
1776 	 * we need to consider it as a new CSA (possibly to self).
1777 	 */
1778 	link->u.mgd.beacon_crc_valid = false;
1779 
1780 	ret = drv_post_channel_switch(link);
1781 	if (ret) {
1782 		sdata_info(sdata,
1783 			   "driver post channel switch failed, disconnecting\n");
1784 		wiphy_work_queue(sdata->local->hw.wiphy,
1785 				 &ifmgd->csa_connection_drop_work);
1786 		return;
1787 	}
1788 
1789 	cfg80211_ch_switch_notify(sdata->dev, &link->reserved_chandef,
1790 				  link->link_id, 0);
1791 }
1792 
1793 void ieee80211_chswitch_done(struct ieee80211_vif *vif, bool success,
1794 			     unsigned int link_id)
1795 {
1796 	struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
1797 
1798 	trace_api_chswitch_done(sdata, success, link_id);
1799 
1800 	rcu_read_lock();
1801 
1802 	if (!success) {
1803 		sdata_info(sdata,
1804 			   "driver channel switch failed, disconnecting\n");
1805 		wiphy_work_queue(sdata->local->hw.wiphy,
1806 				 &sdata->u.mgd.csa_connection_drop_work);
1807 	} else {
1808 		struct ieee80211_link_data *link =
1809 			rcu_dereference(sdata->link[link_id]);
1810 
1811 		if (WARN_ON(!link)) {
1812 			rcu_read_unlock();
1813 			return;
1814 		}
1815 
1816 		wiphy_delayed_work_queue(sdata->local->hw.wiphy,
1817 					 &link->u.mgd.chswitch_work, 0);
1818 	}
1819 
1820 	rcu_read_unlock();
1821 }
1822 EXPORT_SYMBOL(ieee80211_chswitch_done);
1823 
1824 static void
1825 ieee80211_sta_abort_chanswitch(struct ieee80211_link_data *link)
1826 {
1827 	struct ieee80211_sub_if_data *sdata = link->sdata;
1828 	struct ieee80211_local *local = sdata->local;
1829 
1830 	lockdep_assert_wiphy(local->hw.wiphy);
1831 
1832 	if (!local->ops->abort_channel_switch)
1833 		return;
1834 
1835 	ieee80211_link_unreserve_chanctx(link);
1836 
1837 	if (link->csa_block_tx)
1838 		ieee80211_wake_vif_queues(local, sdata,
1839 					  IEEE80211_QUEUE_STOP_REASON_CSA);
1840 
1841 	link->csa_block_tx = false;
1842 	link->conf->csa_active = false;
1843 
1844 	drv_abort_channel_switch(sdata);
1845 }
1846 
1847 static void
1848 ieee80211_sta_process_chanswitch(struct ieee80211_link_data *link,
1849 				 u64 timestamp, u32 device_timestamp,
1850 				 struct ieee802_11_elems *elems,
1851 				 bool beacon)
1852 {
1853 	struct ieee80211_sub_if_data *sdata = link->sdata;
1854 	struct ieee80211_local *local = sdata->local;
1855 	struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1856 	struct cfg80211_bss *cbss = link->u.mgd.bss;
1857 	struct ieee80211_chanctx_conf *conf;
1858 	struct ieee80211_chanctx *chanctx;
1859 	enum nl80211_band current_band;
1860 	struct ieee80211_csa_ie csa_ie;
1861 	struct ieee80211_channel_switch ch_switch;
1862 	struct ieee80211_bss *bss;
1863 	unsigned long timeout;
1864 	int res;
1865 
1866 	lockdep_assert_wiphy(local->hw.wiphy);
1867 
1868 	if (!cbss)
1869 		return;
1870 
1871 	current_band = cbss->channel->band;
1872 	bss = (void *)cbss->priv;
1873 	res = ieee80211_parse_ch_switch_ie(sdata, elems, current_band,
1874 					   bss->vht_cap_info,
1875 					   link->u.mgd.conn_flags,
1876 					   link->u.mgd.bssid, &csa_ie);
1877 
1878 	if (!res) {
1879 		ch_switch.timestamp = timestamp;
1880 		ch_switch.device_timestamp = device_timestamp;
1881 		ch_switch.block_tx = csa_ie.mode;
1882 		ch_switch.chandef = csa_ie.chandef;
1883 		ch_switch.count = csa_ie.count;
1884 		ch_switch.delay = csa_ie.max_switch_time;
1885 	}
1886 
1887 	if (res < 0)
1888 		goto drop_connection;
1889 
1890 	if (beacon && link->conf->csa_active &&
1891 	    !link->u.mgd.csa_waiting_bcn) {
1892 		if (res)
1893 			ieee80211_sta_abort_chanswitch(link);
1894 		else
1895 			drv_channel_switch_rx_beacon(sdata, &ch_switch);
1896 		return;
1897 	} else if (link->conf->csa_active || res) {
1898 		/* disregard subsequent announcements if already processing */
1899 		return;
1900 	}
1901 
1902 	if (link->conf->chandef.chan->band !=
1903 	    csa_ie.chandef.chan->band) {
1904 		sdata_info(sdata,
1905 			   "AP %pM switches to different band (%d MHz, width:%d, CF1/2: %d/%d MHz), disconnecting\n",
1906 			   link->u.mgd.bssid,
1907 			   csa_ie.chandef.chan->center_freq,
1908 			   csa_ie.chandef.width, csa_ie.chandef.center_freq1,
1909 			   csa_ie.chandef.center_freq2);
1910 		goto drop_connection;
1911 	}
1912 
1913 	if (!cfg80211_chandef_usable(local->hw.wiphy, &csa_ie.chandef,
1914 				     IEEE80211_CHAN_DISABLED)) {
1915 		sdata_info(sdata,
1916 			   "AP %pM switches to unsupported channel "
1917 			   "(%d.%03d MHz, width:%d, CF1/2: %d.%03d/%d MHz), "
1918 			   "disconnecting\n",
1919 			   link->u.mgd.bssid,
1920 			   csa_ie.chandef.chan->center_freq,
1921 			   csa_ie.chandef.chan->freq_offset,
1922 			   csa_ie.chandef.width, csa_ie.chandef.center_freq1,
1923 			   csa_ie.chandef.freq1_offset,
1924 			   csa_ie.chandef.center_freq2);
1925 		goto drop_connection;
1926 	}
1927 
1928 	if (cfg80211_chandef_identical(&csa_ie.chandef,
1929 				       &link->conf->chandef) &&
1930 	    (!csa_ie.mode || !beacon)) {
1931 		if (link->u.mgd.csa_ignored_same_chan)
1932 			return;
1933 		sdata_info(sdata,
1934 			   "AP %pM tries to chanswitch to same channel, ignore\n",
1935 			   link->u.mgd.bssid);
1936 		link->u.mgd.csa_ignored_same_chan = true;
1937 		return;
1938 	}
1939 
1940 	/*
1941 	 * Drop all TDLS peers - either we disconnect or move to a different
1942 	 * channel from this point on. There's no telling what our peer will do.
1943 	 * The TDLS WIDER_BW scenario is also problematic, as peers might now
1944 	 * have an incompatible wider chandef.
1945 	 */
1946 	ieee80211_teardown_tdls_peers(sdata);
1947 
1948 	conf = rcu_dereference_protected(link->conf->chanctx_conf,
1949 					 lockdep_is_held(&local->hw.wiphy->mtx));
1950 	if (!conf) {
1951 		sdata_info(sdata,
1952 			   "no channel context assigned to vif?, disconnecting\n");
1953 		goto drop_connection;
1954 	}
1955 
1956 	chanctx = container_of(conf, struct ieee80211_chanctx, conf);
1957 
1958 	if (local->use_chanctx &&
1959 	    !ieee80211_hw_check(&local->hw, CHANCTX_STA_CSA)) {
1960 		sdata_info(sdata,
1961 			   "driver doesn't support chan-switch with channel contexts\n");
1962 		goto drop_connection;
1963 	}
1964 
1965 	if (drv_pre_channel_switch(sdata, &ch_switch)) {
1966 		sdata_info(sdata,
1967 			   "preparing for channel switch failed, disconnecting\n");
1968 		goto drop_connection;
1969 	}
1970 
1971 	res = ieee80211_link_reserve_chanctx(link, &csa_ie.chandef,
1972 					     chanctx->mode, false);
1973 	if (res) {
1974 		sdata_info(sdata,
1975 			   "failed to reserve channel context for channel switch, disconnecting (err=%d)\n",
1976 			   res);
1977 		goto drop_connection;
1978 	}
1979 
1980 	link->conf->csa_active = true;
1981 	link->csa_chandef = csa_ie.chandef;
1982 	link->csa_block_tx = csa_ie.mode;
1983 	link->u.mgd.csa_ignored_same_chan = false;
1984 	link->u.mgd.beacon_crc_valid = false;
1985 
1986 	if (link->csa_block_tx)
1987 		ieee80211_stop_vif_queues(local, sdata,
1988 					  IEEE80211_QUEUE_STOP_REASON_CSA);
1989 
1990 	cfg80211_ch_switch_started_notify(sdata->dev, &csa_ie.chandef,
1991 					  link->link_id, csa_ie.count,
1992 					  csa_ie.mode, 0);
1993 
1994 	if (local->ops->channel_switch) {
1995 		/* use driver's channel switch callback */
1996 		drv_channel_switch(local, sdata, &ch_switch);
1997 		return;
1998 	}
1999 
2000 	/* channel switch handled in software */
2001 	timeout = TU_TO_JIFFIES((max_t(int, csa_ie.count, 1) - 1) *
2002 				cbss->beacon_interval);
2003 	wiphy_delayed_work_queue(local->hw.wiphy,
2004 				 &link->u.mgd.chswitch_work,
2005 				 timeout);
2006 	return;
2007  drop_connection:
2008 	/*
2009 	 * This is just so that the disconnect flow will know that
2010 	 * we were trying to switch channel and failed. In case the
2011 	 * mode is 1 (we are not allowed to Tx), we will know not to
2012 	 * send a deauthentication frame. Those two fields will be
2013 	 * reset when the disconnection worker runs.
2014 	 */
2015 	link->conf->csa_active = true;
2016 	link->csa_block_tx = csa_ie.mode;
2017 
2018 	wiphy_work_queue(sdata->local->hw.wiphy,
2019 			 &ifmgd->csa_connection_drop_work);
2020 }
2021 
2022 static bool
2023 ieee80211_find_80211h_pwr_constr(struct ieee80211_sub_if_data *sdata,
2024 				 struct ieee80211_channel *channel,
2025 				 const u8 *country_ie, u8 country_ie_len,
2026 				 const u8 *pwr_constr_elem,
2027 				 int *chan_pwr, int *pwr_reduction)
2028 {
2029 	struct ieee80211_country_ie_triplet *triplet;
2030 	int chan = ieee80211_frequency_to_channel(channel->center_freq);
2031 	int i, chan_increment;
2032 	bool have_chan_pwr = false;
2033 
2034 	/* Invalid IE */
2035 	if (country_ie_len % 2 || country_ie_len < IEEE80211_COUNTRY_IE_MIN_LEN)
2036 		return false;
2037 
2038 	triplet = (void *)(country_ie + 3);
2039 	country_ie_len -= 3;
2040 
2041 	switch (channel->band) {
2042 	default:
2043 		WARN_ON_ONCE(1);
2044 		fallthrough;
2045 	case NL80211_BAND_2GHZ:
2046 	case NL80211_BAND_60GHZ:
2047 	case NL80211_BAND_LC:
2048 		chan_increment = 1;
2049 		break;
2050 	case NL80211_BAND_5GHZ:
2051 		chan_increment = 4;
2052 		break;
2053 	case NL80211_BAND_6GHZ:
2054 		/*
2055 		 * In the 6 GHz band, the "maximum transmit power level"
2056 		 * field in the triplets is reserved, and thus will be
2057 		 * zero and we shouldn't use it to control TX power.
2058 		 * The actual TX power will be given in the transmit
2059 		 * power envelope element instead.
2060 		 */
2061 		return false;
2062 	}
2063 
2064 	/* find channel */
2065 	while (country_ie_len >= 3) {
2066 		u8 first_channel = triplet->chans.first_channel;
2067 
2068 		if (first_channel >= IEEE80211_COUNTRY_EXTENSION_ID)
2069 			goto next;
2070 
2071 		for (i = 0; i < triplet->chans.num_channels; i++) {
2072 			if (first_channel + i * chan_increment == chan) {
2073 				have_chan_pwr = true;
2074 				*chan_pwr = triplet->chans.max_power;
2075 				break;
2076 			}
2077 		}
2078 		if (have_chan_pwr)
2079 			break;
2080 
2081  next:
2082 		triplet++;
2083 		country_ie_len -= 3;
2084 	}
2085 
2086 	if (have_chan_pwr && pwr_constr_elem)
2087 		*pwr_reduction = *pwr_constr_elem;
2088 	else
2089 		*pwr_reduction = 0;
2090 
2091 	return have_chan_pwr;
2092 }
2093 
2094 static void ieee80211_find_cisco_dtpc(struct ieee80211_sub_if_data *sdata,
2095 				      struct ieee80211_channel *channel,
2096 				      const u8 *cisco_dtpc_ie,
2097 				      int *pwr_level)
2098 {
2099 	/* From practical testing, the first data byte of the DTPC element
2100 	 * seems to contain the requested dBm level, and the CLI on Cisco
2101 	 * APs clearly state the range is -127 to 127 dBm, which indicates
2102 	 * a signed byte, although it seemingly never actually goes negative.
2103 	 * The other byte seems to always be zero.
2104 	 */
2105 	*pwr_level = (__s8)cisco_dtpc_ie[4];
2106 }
2107 
2108 static u64 ieee80211_handle_pwr_constr(struct ieee80211_link_data *link,
2109 				       struct ieee80211_channel *channel,
2110 				       struct ieee80211_mgmt *mgmt,
2111 				       const u8 *country_ie, u8 country_ie_len,
2112 				       const u8 *pwr_constr_ie,
2113 				       const u8 *cisco_dtpc_ie)
2114 {
2115 	struct ieee80211_sub_if_data *sdata = link->sdata;
2116 	bool has_80211h_pwr = false, has_cisco_pwr = false;
2117 	int chan_pwr = 0, pwr_reduction_80211h = 0;
2118 	int pwr_level_cisco, pwr_level_80211h;
2119 	int new_ap_level;
2120 	__le16 capab = mgmt->u.probe_resp.capab_info;
2121 
2122 	if (ieee80211_is_s1g_beacon(mgmt->frame_control))
2123 		return 0;	/* TODO */
2124 
2125 	if (country_ie &&
2126 	    (capab & cpu_to_le16(WLAN_CAPABILITY_SPECTRUM_MGMT) ||
2127 	     capab & cpu_to_le16(WLAN_CAPABILITY_RADIO_MEASURE))) {
2128 		has_80211h_pwr = ieee80211_find_80211h_pwr_constr(
2129 			sdata, channel, country_ie, country_ie_len,
2130 			pwr_constr_ie, &chan_pwr, &pwr_reduction_80211h);
2131 		pwr_level_80211h =
2132 			max_t(int, 0, chan_pwr - pwr_reduction_80211h);
2133 	}
2134 
2135 	if (cisco_dtpc_ie) {
2136 		ieee80211_find_cisco_dtpc(
2137 			sdata, channel, cisco_dtpc_ie, &pwr_level_cisco);
2138 		has_cisco_pwr = true;
2139 	}
2140 
2141 	if (!has_80211h_pwr && !has_cisco_pwr)
2142 		return 0;
2143 
2144 	/* If we have both 802.11h and Cisco DTPC, apply both limits
2145 	 * by picking the smallest of the two power levels advertised.
2146 	 */
2147 	if (has_80211h_pwr &&
2148 	    (!has_cisco_pwr || pwr_level_80211h <= pwr_level_cisco)) {
2149 		new_ap_level = pwr_level_80211h;
2150 
2151 		if (link->ap_power_level == new_ap_level)
2152 			return 0;
2153 
2154 		sdata_dbg(sdata,
2155 			  "Limiting TX power to %d (%d - %d) dBm as advertised by %pM\n",
2156 			  pwr_level_80211h, chan_pwr, pwr_reduction_80211h,
2157 			  link->u.mgd.bssid);
2158 	} else {  /* has_cisco_pwr is always true here. */
2159 		new_ap_level = pwr_level_cisco;
2160 
2161 		if (link->ap_power_level == new_ap_level)
2162 			return 0;
2163 
2164 		sdata_dbg(sdata,
2165 			  "Limiting TX power to %d dBm as advertised by %pM\n",
2166 			  pwr_level_cisco, link->u.mgd.bssid);
2167 	}
2168 
2169 	link->ap_power_level = new_ap_level;
2170 	if (__ieee80211_recalc_txpower(sdata))
2171 		return BSS_CHANGED_TXPOWER;
2172 	return 0;
2173 }
2174 
2175 /* powersave */
2176 static void ieee80211_enable_ps(struct ieee80211_local *local,
2177 				struct ieee80211_sub_if_data *sdata)
2178 {
2179 	struct ieee80211_conf *conf = &local->hw.conf;
2180 
2181 	/*
2182 	 * If we are scanning right now then the parameters will
2183 	 * take effect when scan finishes.
2184 	 */
2185 	if (local->scanning)
2186 		return;
2187 
2188 	if (conf->dynamic_ps_timeout > 0 &&
2189 	    !ieee80211_hw_check(&local->hw, SUPPORTS_DYNAMIC_PS)) {
2190 		mod_timer(&local->dynamic_ps_timer, jiffies +
2191 			  msecs_to_jiffies(conf->dynamic_ps_timeout));
2192 	} else {
2193 		if (ieee80211_hw_check(&local->hw, PS_NULLFUNC_STACK))
2194 			ieee80211_send_nullfunc(local, sdata, true);
2195 
2196 		if (ieee80211_hw_check(&local->hw, PS_NULLFUNC_STACK) &&
2197 		    ieee80211_hw_check(&local->hw, REPORTS_TX_ACK_STATUS))
2198 			return;
2199 
2200 		conf->flags |= IEEE80211_CONF_PS;
2201 		ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
2202 	}
2203 }
2204 
2205 static void ieee80211_change_ps(struct ieee80211_local *local)
2206 {
2207 	struct ieee80211_conf *conf = &local->hw.conf;
2208 
2209 	if (local->ps_sdata) {
2210 		ieee80211_enable_ps(local, local->ps_sdata);
2211 	} else if (conf->flags & IEEE80211_CONF_PS) {
2212 		conf->flags &= ~IEEE80211_CONF_PS;
2213 		ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
2214 		del_timer_sync(&local->dynamic_ps_timer);
2215 		wiphy_work_cancel(local->hw.wiphy,
2216 				  &local->dynamic_ps_enable_work);
2217 	}
2218 }
2219 
2220 static bool ieee80211_powersave_allowed(struct ieee80211_sub_if_data *sdata)
2221 {
2222 	struct ieee80211_local *local = sdata->local;
2223 	struct ieee80211_if_managed *mgd = &sdata->u.mgd;
2224 	struct sta_info *sta = NULL;
2225 	bool authorized = false;
2226 
2227 	if (!mgd->powersave)
2228 		return false;
2229 
2230 	if (mgd->broken_ap)
2231 		return false;
2232 
2233 	if (!mgd->associated)
2234 		return false;
2235 
2236 	if (mgd->flags & IEEE80211_STA_CONNECTION_POLL)
2237 		return false;
2238 
2239 	if (!(local->hw.wiphy->flags & WIPHY_FLAG_SUPPORTS_MLO) &&
2240 	    !sdata->deflink.u.mgd.have_beacon)
2241 		return false;
2242 
2243 	rcu_read_lock();
2244 	sta = sta_info_get(sdata, sdata->vif.cfg.ap_addr);
2245 	if (sta)
2246 		authorized = test_sta_flag(sta, WLAN_STA_AUTHORIZED);
2247 	rcu_read_unlock();
2248 
2249 	return authorized;
2250 }
2251 
2252 /* need to hold RTNL or interface lock */
2253 void ieee80211_recalc_ps(struct ieee80211_local *local)
2254 {
2255 	struct ieee80211_sub_if_data *sdata, *found = NULL;
2256 	int count = 0;
2257 	int timeout;
2258 
2259 	if (!ieee80211_hw_check(&local->hw, SUPPORTS_PS) ||
2260 	    ieee80211_hw_check(&local->hw, SUPPORTS_DYNAMIC_PS)) {
2261 		local->ps_sdata = NULL;
2262 		return;
2263 	}
2264 
2265 	list_for_each_entry(sdata, &local->interfaces, list) {
2266 		if (!ieee80211_sdata_running(sdata))
2267 			continue;
2268 		if (sdata->vif.type == NL80211_IFTYPE_AP) {
2269 			/* If an AP vif is found, then disable PS
2270 			 * by setting the count to zero thereby setting
2271 			 * ps_sdata to NULL.
2272 			 */
2273 			count = 0;
2274 			break;
2275 		}
2276 		if (sdata->vif.type != NL80211_IFTYPE_STATION)
2277 			continue;
2278 		found = sdata;
2279 		count++;
2280 	}
2281 
2282 	if (count == 1 && ieee80211_powersave_allowed(found)) {
2283 		u8 dtimper = found->deflink.u.mgd.dtim_period;
2284 
2285 		timeout = local->dynamic_ps_forced_timeout;
2286 		if (timeout < 0)
2287 			timeout = 100;
2288 		local->hw.conf.dynamic_ps_timeout = timeout;
2289 
2290 		/* If the TIM IE is invalid, pretend the value is 1 */
2291 		if (!dtimper)
2292 			dtimper = 1;
2293 
2294 		local->hw.conf.ps_dtim_period = dtimper;
2295 		local->ps_sdata = found;
2296 	} else {
2297 		local->ps_sdata = NULL;
2298 	}
2299 
2300 	ieee80211_change_ps(local);
2301 }
2302 
2303 void ieee80211_recalc_ps_vif(struct ieee80211_sub_if_data *sdata)
2304 {
2305 	bool ps_allowed = ieee80211_powersave_allowed(sdata);
2306 
2307 	if (sdata->vif.cfg.ps != ps_allowed) {
2308 		sdata->vif.cfg.ps = ps_allowed;
2309 		ieee80211_vif_cfg_change_notify(sdata, BSS_CHANGED_PS);
2310 	}
2311 }
2312 
2313 void ieee80211_dynamic_ps_disable_work(struct wiphy *wiphy,
2314 				       struct wiphy_work *work)
2315 {
2316 	struct ieee80211_local *local =
2317 		container_of(work, struct ieee80211_local,
2318 			     dynamic_ps_disable_work);
2319 
2320 	if (local->hw.conf.flags & IEEE80211_CONF_PS) {
2321 		local->hw.conf.flags &= ~IEEE80211_CONF_PS;
2322 		ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
2323 	}
2324 
2325 	ieee80211_wake_queues_by_reason(&local->hw,
2326 					IEEE80211_MAX_QUEUE_MAP,
2327 					IEEE80211_QUEUE_STOP_REASON_PS,
2328 					false);
2329 }
2330 
2331 void ieee80211_dynamic_ps_enable_work(struct wiphy *wiphy,
2332 				      struct wiphy_work *work)
2333 {
2334 	struct ieee80211_local *local =
2335 		container_of(work, struct ieee80211_local,
2336 			     dynamic_ps_enable_work);
2337 	struct ieee80211_sub_if_data *sdata = local->ps_sdata;
2338 	struct ieee80211_if_managed *ifmgd;
2339 	unsigned long flags;
2340 	int q;
2341 
2342 	/* can only happen when PS was just disabled anyway */
2343 	if (!sdata)
2344 		return;
2345 
2346 	ifmgd = &sdata->u.mgd;
2347 
2348 	if (local->hw.conf.flags & IEEE80211_CONF_PS)
2349 		return;
2350 
2351 	if (local->hw.conf.dynamic_ps_timeout > 0) {
2352 		/* don't enter PS if TX frames are pending */
2353 		if (drv_tx_frames_pending(local)) {
2354 			mod_timer(&local->dynamic_ps_timer, jiffies +
2355 				  msecs_to_jiffies(
2356 				  local->hw.conf.dynamic_ps_timeout));
2357 			return;
2358 		}
2359 
2360 		/*
2361 		 * transmission can be stopped by others which leads to
2362 		 * dynamic_ps_timer expiry. Postpone the ps timer if it
2363 		 * is not the actual idle state.
2364 		 */
2365 		spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
2366 		for (q = 0; q < local->hw.queues; q++) {
2367 			if (local->queue_stop_reasons[q]) {
2368 				spin_unlock_irqrestore(&local->queue_stop_reason_lock,
2369 						       flags);
2370 				mod_timer(&local->dynamic_ps_timer, jiffies +
2371 					  msecs_to_jiffies(
2372 					  local->hw.conf.dynamic_ps_timeout));
2373 				return;
2374 			}
2375 		}
2376 		spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
2377 	}
2378 
2379 	if (ieee80211_hw_check(&local->hw, PS_NULLFUNC_STACK) &&
2380 	    !(ifmgd->flags & IEEE80211_STA_NULLFUNC_ACKED)) {
2381 		if (drv_tx_frames_pending(local)) {
2382 			mod_timer(&local->dynamic_ps_timer, jiffies +
2383 				  msecs_to_jiffies(
2384 				  local->hw.conf.dynamic_ps_timeout));
2385 		} else {
2386 			ieee80211_send_nullfunc(local, sdata, true);
2387 			/* Flush to get the tx status of nullfunc frame */
2388 			ieee80211_flush_queues(local, sdata, false);
2389 		}
2390 	}
2391 
2392 	if (!(ieee80211_hw_check(&local->hw, REPORTS_TX_ACK_STATUS) &&
2393 	      ieee80211_hw_check(&local->hw, PS_NULLFUNC_STACK)) ||
2394 	    (ifmgd->flags & IEEE80211_STA_NULLFUNC_ACKED)) {
2395 		ifmgd->flags &= ~IEEE80211_STA_NULLFUNC_ACKED;
2396 		local->hw.conf.flags |= IEEE80211_CONF_PS;
2397 		ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
2398 	}
2399 }
2400 
2401 void ieee80211_dynamic_ps_timer(struct timer_list *t)
2402 {
2403 	struct ieee80211_local *local = from_timer(local, t, dynamic_ps_timer);
2404 
2405 	wiphy_work_queue(local->hw.wiphy, &local->dynamic_ps_enable_work);
2406 }
2407 
2408 void ieee80211_dfs_cac_timer_work(struct wiphy *wiphy, struct wiphy_work *work)
2409 {
2410 	struct ieee80211_link_data *link =
2411 		container_of(work, struct ieee80211_link_data,
2412 			     dfs_cac_timer_work.work);
2413 	struct cfg80211_chan_def chandef = link->conf->chandef;
2414 	struct ieee80211_sub_if_data *sdata = link->sdata;
2415 
2416 	lockdep_assert_wiphy(sdata->local->hw.wiphy);
2417 
2418 	if (sdata->wdev.cac_started) {
2419 		ieee80211_link_release_channel(link);
2420 		cfg80211_cac_event(sdata->dev, &chandef,
2421 				   NL80211_RADAR_CAC_FINISHED,
2422 				   GFP_KERNEL);
2423 	}
2424 }
2425 
2426 static bool
2427 __ieee80211_sta_handle_tspec_ac_params(struct ieee80211_sub_if_data *sdata)
2428 {
2429 	struct ieee80211_local *local = sdata->local;
2430 	struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2431 	bool ret = false;
2432 	int ac;
2433 
2434 	if (local->hw.queues < IEEE80211_NUM_ACS)
2435 		return false;
2436 
2437 	for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
2438 		struct ieee80211_sta_tx_tspec *tx_tspec = &ifmgd->tx_tspec[ac];
2439 		int non_acm_ac;
2440 		unsigned long now = jiffies;
2441 
2442 		if (tx_tspec->action == TX_TSPEC_ACTION_NONE &&
2443 		    tx_tspec->admitted_time &&
2444 		    time_after(now, tx_tspec->time_slice_start + HZ)) {
2445 			tx_tspec->consumed_tx_time = 0;
2446 			tx_tspec->time_slice_start = now;
2447 
2448 			if (tx_tspec->downgraded)
2449 				tx_tspec->action =
2450 					TX_TSPEC_ACTION_STOP_DOWNGRADE;
2451 		}
2452 
2453 		switch (tx_tspec->action) {
2454 		case TX_TSPEC_ACTION_STOP_DOWNGRADE:
2455 			/* take the original parameters */
2456 			if (drv_conf_tx(local, &sdata->deflink, ac,
2457 					&sdata->deflink.tx_conf[ac]))
2458 				link_err(&sdata->deflink,
2459 					 "failed to set TX queue parameters for queue %d\n",
2460 					 ac);
2461 			tx_tspec->action = TX_TSPEC_ACTION_NONE;
2462 			tx_tspec->downgraded = false;
2463 			ret = true;
2464 			break;
2465 		case TX_TSPEC_ACTION_DOWNGRADE:
2466 			if (time_after(now, tx_tspec->time_slice_start + HZ)) {
2467 				tx_tspec->action = TX_TSPEC_ACTION_NONE;
2468 				ret = true;
2469 				break;
2470 			}
2471 			/* downgrade next lower non-ACM AC */
2472 			for (non_acm_ac = ac + 1;
2473 			     non_acm_ac < IEEE80211_NUM_ACS;
2474 			     non_acm_ac++)
2475 				if (!(sdata->wmm_acm & BIT(7 - 2 * non_acm_ac)))
2476 					break;
2477 			/* Usually the loop will result in using BK even if it
2478 			 * requires admission control, but such a configuration
2479 			 * makes no sense and we have to transmit somehow - the
2480 			 * AC selection does the same thing.
2481 			 * If we started out trying to downgrade from BK, then
2482 			 * the extra condition here might be needed.
2483 			 */
2484 			if (non_acm_ac >= IEEE80211_NUM_ACS)
2485 				non_acm_ac = IEEE80211_AC_BK;
2486 			if (drv_conf_tx(local, &sdata->deflink, ac,
2487 					&sdata->deflink.tx_conf[non_acm_ac]))
2488 				link_err(&sdata->deflink,
2489 					 "failed to set TX queue parameters for queue %d\n",
2490 					 ac);
2491 			tx_tspec->action = TX_TSPEC_ACTION_NONE;
2492 			ret = true;
2493 			wiphy_delayed_work_queue(local->hw.wiphy,
2494 						 &ifmgd->tx_tspec_wk,
2495 						 tx_tspec->time_slice_start +
2496 						 HZ - now + 1);
2497 			break;
2498 		case TX_TSPEC_ACTION_NONE:
2499 			/* nothing now */
2500 			break;
2501 		}
2502 	}
2503 
2504 	return ret;
2505 }
2506 
2507 void ieee80211_sta_handle_tspec_ac_params(struct ieee80211_sub_if_data *sdata)
2508 {
2509 	if (__ieee80211_sta_handle_tspec_ac_params(sdata))
2510 		ieee80211_link_info_change_notify(sdata, &sdata->deflink,
2511 						  BSS_CHANGED_QOS);
2512 }
2513 
2514 static void ieee80211_sta_handle_tspec_ac_params_wk(struct wiphy *wiphy,
2515 						    struct wiphy_work *work)
2516 {
2517 	struct ieee80211_sub_if_data *sdata;
2518 
2519 	sdata = container_of(work, struct ieee80211_sub_if_data,
2520 			     u.mgd.tx_tspec_wk.work);
2521 	ieee80211_sta_handle_tspec_ac_params(sdata);
2522 }
2523 
2524 void ieee80211_mgd_set_link_qos_params(struct ieee80211_link_data *link)
2525 {
2526 	struct ieee80211_sub_if_data *sdata = link->sdata;
2527 	struct ieee80211_local *local = sdata->local;
2528 	struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2529 	struct ieee80211_tx_queue_params *params = link->tx_conf;
2530 	u8 ac;
2531 
2532 	for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
2533 		mlme_dbg(sdata,
2534 			 "WMM AC=%d acm=%d aifs=%d cWmin=%d cWmax=%d txop=%d uapsd=%d, downgraded=%d\n",
2535 			 ac, params[ac].acm,
2536 			 params[ac].aifs, params[ac].cw_min, params[ac].cw_max,
2537 			 params[ac].txop, params[ac].uapsd,
2538 			 ifmgd->tx_tspec[ac].downgraded);
2539 		if (!ifmgd->tx_tspec[ac].downgraded &&
2540 		    drv_conf_tx(local, link, ac, &params[ac]))
2541 			link_err(link,
2542 				 "failed to set TX queue parameters for AC %d\n",
2543 				 ac);
2544 	}
2545 }
2546 
2547 /* MLME */
2548 static bool
2549 ieee80211_sta_wmm_params(struct ieee80211_local *local,
2550 			 struct ieee80211_link_data *link,
2551 			 const u8 *wmm_param, size_t wmm_param_len,
2552 			 const struct ieee80211_mu_edca_param_set *mu_edca)
2553 {
2554 	struct ieee80211_sub_if_data *sdata = link->sdata;
2555 	struct ieee80211_tx_queue_params params[IEEE80211_NUM_ACS];
2556 	struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2557 	size_t left;
2558 	int count, mu_edca_count, ac;
2559 	const u8 *pos;
2560 	u8 uapsd_queues = 0;
2561 
2562 	if (!local->ops->conf_tx)
2563 		return false;
2564 
2565 	if (local->hw.queues < IEEE80211_NUM_ACS)
2566 		return false;
2567 
2568 	if (!wmm_param)
2569 		return false;
2570 
2571 	if (wmm_param_len < 8 || wmm_param[5] /* version */ != 1)
2572 		return false;
2573 
2574 	if (ifmgd->flags & IEEE80211_STA_UAPSD_ENABLED)
2575 		uapsd_queues = ifmgd->uapsd_queues;
2576 
2577 	count = wmm_param[6] & 0x0f;
2578 	/* -1 is the initial value of ifmgd->mu_edca_last_param_set.
2579 	 * if mu_edca was preset before and now it disappeared tell
2580 	 * the driver about it.
2581 	 */
2582 	mu_edca_count = mu_edca ? mu_edca->mu_qos_info & 0x0f : -1;
2583 	if (count == link->u.mgd.wmm_last_param_set &&
2584 	    mu_edca_count == link->u.mgd.mu_edca_last_param_set)
2585 		return false;
2586 	link->u.mgd.wmm_last_param_set = count;
2587 	link->u.mgd.mu_edca_last_param_set = mu_edca_count;
2588 
2589 	pos = wmm_param + 8;
2590 	left = wmm_param_len - 8;
2591 
2592 	memset(&params, 0, sizeof(params));
2593 
2594 	sdata->wmm_acm = 0;
2595 	for (; left >= 4; left -= 4, pos += 4) {
2596 		int aci = (pos[0] >> 5) & 0x03;
2597 		int acm = (pos[0] >> 4) & 0x01;
2598 		bool uapsd = false;
2599 
2600 		switch (aci) {
2601 		case 1: /* AC_BK */
2602 			ac = IEEE80211_AC_BK;
2603 			if (acm)
2604 				sdata->wmm_acm |= BIT(1) | BIT(2); /* BK/- */
2605 			if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_BK)
2606 				uapsd = true;
2607 			params[ac].mu_edca = !!mu_edca;
2608 			if (mu_edca)
2609 				params[ac].mu_edca_param_rec = mu_edca->ac_bk;
2610 			break;
2611 		case 2: /* AC_VI */
2612 			ac = IEEE80211_AC_VI;
2613 			if (acm)
2614 				sdata->wmm_acm |= BIT(4) | BIT(5); /* CL/VI */
2615 			if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_VI)
2616 				uapsd = true;
2617 			params[ac].mu_edca = !!mu_edca;
2618 			if (mu_edca)
2619 				params[ac].mu_edca_param_rec = mu_edca->ac_vi;
2620 			break;
2621 		case 3: /* AC_VO */
2622 			ac = IEEE80211_AC_VO;
2623 			if (acm)
2624 				sdata->wmm_acm |= BIT(6) | BIT(7); /* VO/NC */
2625 			if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_VO)
2626 				uapsd = true;
2627 			params[ac].mu_edca = !!mu_edca;
2628 			if (mu_edca)
2629 				params[ac].mu_edca_param_rec = mu_edca->ac_vo;
2630 			break;
2631 		case 0: /* AC_BE */
2632 		default:
2633 			ac = IEEE80211_AC_BE;
2634 			if (acm)
2635 				sdata->wmm_acm |= BIT(0) | BIT(3); /* BE/EE */
2636 			if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_BE)
2637 				uapsd = true;
2638 			params[ac].mu_edca = !!mu_edca;
2639 			if (mu_edca)
2640 				params[ac].mu_edca_param_rec = mu_edca->ac_be;
2641 			break;
2642 		}
2643 
2644 		params[ac].aifs = pos[0] & 0x0f;
2645 
2646 		if (params[ac].aifs < 2) {
2647 			link_info(link,
2648 				  "AP has invalid WMM params (AIFSN=%d for ACI %d), will use 2\n",
2649 				  params[ac].aifs, aci);
2650 			params[ac].aifs = 2;
2651 		}
2652 		params[ac].cw_max = ecw2cw((pos[1] & 0xf0) >> 4);
2653 		params[ac].cw_min = ecw2cw(pos[1] & 0x0f);
2654 		params[ac].txop = get_unaligned_le16(pos + 2);
2655 		params[ac].acm = acm;
2656 		params[ac].uapsd = uapsd;
2657 
2658 		if (params[ac].cw_min == 0 ||
2659 		    params[ac].cw_min > params[ac].cw_max) {
2660 			link_info(link,
2661 				  "AP has invalid WMM params (CWmin/max=%d/%d for ACI %d), using defaults\n",
2662 				  params[ac].cw_min, params[ac].cw_max, aci);
2663 			return false;
2664 		}
2665 		ieee80211_regulatory_limit_wmm_params(sdata, &params[ac], ac);
2666 	}
2667 
2668 	/* WMM specification requires all 4 ACIs. */
2669 	for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
2670 		if (params[ac].cw_min == 0) {
2671 			link_info(link,
2672 				  "AP has invalid WMM params (missing AC %d), using defaults\n",
2673 				  ac);
2674 			return false;
2675 		}
2676 	}
2677 
2678 	for (ac = 0; ac < IEEE80211_NUM_ACS; ac++)
2679 		link->tx_conf[ac] = params[ac];
2680 
2681 	ieee80211_mgd_set_link_qos_params(link);
2682 
2683 	/* enable WMM or activate new settings */
2684 	link->conf->qos = true;
2685 	return true;
2686 }
2687 
2688 static void __ieee80211_stop_poll(struct ieee80211_sub_if_data *sdata)
2689 {
2690 	lockdep_assert_wiphy(sdata->local->hw.wiphy);
2691 
2692 	sdata->u.mgd.flags &= ~IEEE80211_STA_CONNECTION_POLL;
2693 	ieee80211_run_deferred_scan(sdata->local);
2694 }
2695 
2696 static void ieee80211_stop_poll(struct ieee80211_sub_if_data *sdata)
2697 {
2698 	lockdep_assert_wiphy(sdata->local->hw.wiphy);
2699 
2700 	__ieee80211_stop_poll(sdata);
2701 }
2702 
2703 static u64 ieee80211_handle_bss_capability(struct ieee80211_link_data *link,
2704 					   u16 capab, bool erp_valid, u8 erp)
2705 {
2706 	struct ieee80211_bss_conf *bss_conf = link->conf;
2707 	struct ieee80211_supported_band *sband;
2708 	u64 changed = 0;
2709 	bool use_protection;
2710 	bool use_short_preamble;
2711 	bool use_short_slot;
2712 
2713 	sband = ieee80211_get_link_sband(link);
2714 	if (!sband)
2715 		return changed;
2716 
2717 	if (erp_valid) {
2718 		use_protection = (erp & WLAN_ERP_USE_PROTECTION) != 0;
2719 		use_short_preamble = (erp & WLAN_ERP_BARKER_PREAMBLE) == 0;
2720 	} else {
2721 		use_protection = false;
2722 		use_short_preamble = !!(capab & WLAN_CAPABILITY_SHORT_PREAMBLE);
2723 	}
2724 
2725 	use_short_slot = !!(capab & WLAN_CAPABILITY_SHORT_SLOT_TIME);
2726 	if (sband->band == NL80211_BAND_5GHZ ||
2727 	    sband->band == NL80211_BAND_6GHZ)
2728 		use_short_slot = true;
2729 
2730 	if (use_protection != bss_conf->use_cts_prot) {
2731 		bss_conf->use_cts_prot = use_protection;
2732 		changed |= BSS_CHANGED_ERP_CTS_PROT;
2733 	}
2734 
2735 	if (use_short_preamble != bss_conf->use_short_preamble) {
2736 		bss_conf->use_short_preamble = use_short_preamble;
2737 		changed |= BSS_CHANGED_ERP_PREAMBLE;
2738 	}
2739 
2740 	if (use_short_slot != bss_conf->use_short_slot) {
2741 		bss_conf->use_short_slot = use_short_slot;
2742 		changed |= BSS_CHANGED_ERP_SLOT;
2743 	}
2744 
2745 	return changed;
2746 }
2747 
2748 static u64 ieee80211_link_set_associated(struct ieee80211_link_data *link,
2749 					 struct cfg80211_bss *cbss)
2750 {
2751 	struct ieee80211_sub_if_data *sdata = link->sdata;
2752 	struct ieee80211_bss_conf *bss_conf = link->conf;
2753 	struct ieee80211_bss *bss = (void *)cbss->priv;
2754 	u64 changed = BSS_CHANGED_QOS;
2755 
2756 	/* not really used in MLO */
2757 	sdata->u.mgd.beacon_timeout =
2758 		usecs_to_jiffies(ieee80211_tu_to_usec(beacon_loss_count *
2759 						      bss_conf->beacon_int));
2760 
2761 	changed |= ieee80211_handle_bss_capability(link,
2762 						   bss_conf->assoc_capability,
2763 						   bss->has_erp_value,
2764 						   bss->erp_value);
2765 
2766 	ieee80211_check_rate_mask(link);
2767 
2768 	link->u.mgd.bss = cbss;
2769 	memcpy(link->u.mgd.bssid, cbss->bssid, ETH_ALEN);
2770 
2771 	if (sdata->vif.p2p ||
2772 	    sdata->vif.driver_flags & IEEE80211_VIF_GET_NOA_UPDATE) {
2773 		const struct cfg80211_bss_ies *ies;
2774 
2775 		rcu_read_lock();
2776 		ies = rcu_dereference(cbss->ies);
2777 		if (ies) {
2778 			int ret;
2779 
2780 			ret = cfg80211_get_p2p_attr(
2781 					ies->data, ies->len,
2782 					IEEE80211_P2P_ATTR_ABSENCE_NOTICE,
2783 					(u8 *) &bss_conf->p2p_noa_attr,
2784 					sizeof(bss_conf->p2p_noa_attr));
2785 			if (ret >= 2) {
2786 				link->u.mgd.p2p_noa_index =
2787 					bss_conf->p2p_noa_attr.index;
2788 				changed |= BSS_CHANGED_P2P_PS;
2789 			}
2790 		}
2791 		rcu_read_unlock();
2792 	}
2793 
2794 	if (link->u.mgd.have_beacon) {
2795 		bss_conf->beacon_rate = bss->beacon_rate;
2796 		changed |= BSS_CHANGED_BEACON_INFO;
2797 	} else {
2798 		bss_conf->beacon_rate = NULL;
2799 	}
2800 
2801 	/* Tell the driver to monitor connection quality (if supported) */
2802 	if (sdata->vif.driver_flags & IEEE80211_VIF_SUPPORTS_CQM_RSSI &&
2803 	    bss_conf->cqm_rssi_thold)
2804 		changed |= BSS_CHANGED_CQM;
2805 
2806 	return changed;
2807 }
2808 
2809 static void ieee80211_set_associated(struct ieee80211_sub_if_data *sdata,
2810 				     struct ieee80211_mgd_assoc_data *assoc_data,
2811 				     u64 changed[IEEE80211_MLD_MAX_NUM_LINKS])
2812 {
2813 	struct ieee80211_local *local = sdata->local;
2814 	struct ieee80211_vif_cfg *vif_cfg = &sdata->vif.cfg;
2815 	u64 vif_changed = BSS_CHANGED_ASSOC;
2816 	unsigned int link_id;
2817 
2818 	lockdep_assert_wiphy(local->hw.wiphy);
2819 
2820 	sdata->u.mgd.associated = true;
2821 
2822 	for (link_id = 0; link_id < IEEE80211_MLD_MAX_NUM_LINKS; link_id++) {
2823 		struct cfg80211_bss *cbss = assoc_data->link[link_id].bss;
2824 		struct ieee80211_link_data *link;
2825 
2826 		if (!cbss ||
2827 		    assoc_data->link[link_id].status != WLAN_STATUS_SUCCESS)
2828 			continue;
2829 
2830 		if (ieee80211_vif_is_mld(&sdata->vif) &&
2831 		    !(ieee80211_vif_usable_links(&sdata->vif) & BIT(link_id)))
2832 			continue;
2833 
2834 		link = sdata_dereference(sdata->link[link_id], sdata);
2835 		if (WARN_ON(!link))
2836 			return;
2837 
2838 		changed[link_id] |= ieee80211_link_set_associated(link, cbss);
2839 	}
2840 
2841 	/* just to be sure */
2842 	ieee80211_stop_poll(sdata);
2843 
2844 	ieee80211_led_assoc(local, 1);
2845 
2846 	vif_cfg->assoc = 1;
2847 
2848 	/* Enable ARP filtering */
2849 	if (vif_cfg->arp_addr_cnt)
2850 		vif_changed |= BSS_CHANGED_ARP_FILTER;
2851 
2852 	if (ieee80211_vif_is_mld(&sdata->vif)) {
2853 		for (link_id = 0;
2854 		     link_id < IEEE80211_MLD_MAX_NUM_LINKS;
2855 		     link_id++) {
2856 			struct ieee80211_link_data *link;
2857 			struct cfg80211_bss *cbss = assoc_data->link[link_id].bss;
2858 
2859 			if (!cbss ||
2860 			    !(BIT(link_id) &
2861 			      ieee80211_vif_usable_links(&sdata->vif)) ||
2862 			    assoc_data->link[link_id].status != WLAN_STATUS_SUCCESS)
2863 				continue;
2864 
2865 			link = sdata_dereference(sdata->link[link_id], sdata);
2866 			if (WARN_ON(!link))
2867 				return;
2868 
2869 			ieee80211_link_info_change_notify(sdata, link,
2870 							  changed[link_id]);
2871 
2872 			ieee80211_recalc_smps(sdata, link);
2873 		}
2874 
2875 		ieee80211_vif_cfg_change_notify(sdata, vif_changed);
2876 	} else {
2877 		ieee80211_bss_info_change_notify(sdata,
2878 						 vif_changed | changed[0]);
2879 	}
2880 
2881 	ieee80211_recalc_ps(local);
2882 
2883 	/* leave this here to not change ordering in non-MLO cases */
2884 	if (!ieee80211_vif_is_mld(&sdata->vif))
2885 		ieee80211_recalc_smps(sdata, &sdata->deflink);
2886 	ieee80211_recalc_ps_vif(sdata);
2887 
2888 	netif_carrier_on(sdata->dev);
2889 }
2890 
2891 static void ieee80211_set_disassoc(struct ieee80211_sub_if_data *sdata,
2892 				   u16 stype, u16 reason, bool tx,
2893 				   u8 *frame_buf)
2894 {
2895 	struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2896 	struct ieee80211_local *local = sdata->local;
2897 	unsigned int link_id;
2898 	u64 changed = 0;
2899 	struct ieee80211_prep_tx_info info = {
2900 		.subtype = stype,
2901 	};
2902 
2903 	lockdep_assert_wiphy(local->hw.wiphy);
2904 
2905 	if (WARN_ON_ONCE(tx && !frame_buf))
2906 		return;
2907 
2908 	if (WARN_ON(!ifmgd->associated))
2909 		return;
2910 
2911 	ieee80211_stop_poll(sdata);
2912 
2913 	ifmgd->associated = false;
2914 
2915 	/* other links will be destroyed */
2916 	sdata->deflink.u.mgd.bss = NULL;
2917 
2918 	netif_carrier_off(sdata->dev);
2919 
2920 	/*
2921 	 * if we want to get out of ps before disassoc (why?) we have
2922 	 * to do it before sending disassoc, as otherwise the null-packet
2923 	 * won't be valid.
2924 	 */
2925 	if (local->hw.conf.flags & IEEE80211_CONF_PS) {
2926 		local->hw.conf.flags &= ~IEEE80211_CONF_PS;
2927 		ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
2928 	}
2929 	local->ps_sdata = NULL;
2930 
2931 	/* disable per-vif ps */
2932 	ieee80211_recalc_ps_vif(sdata);
2933 
2934 	/* make sure ongoing transmission finishes */
2935 	synchronize_net();
2936 
2937 	/*
2938 	 * drop any frame before deauth/disassoc, this can be data or
2939 	 * management frame. Since we are disconnecting, we should not
2940 	 * insist sending these frames which can take time and delay
2941 	 * the disconnection and possible the roaming.
2942 	 */
2943 	if (tx)
2944 		ieee80211_flush_queues(local, sdata, true);
2945 
2946 	/* deauthenticate/disassociate now */
2947 	if (tx || frame_buf) {
2948 		/*
2949 		 * In multi channel scenarios guarantee that the virtual
2950 		 * interface is granted immediate airtime to transmit the
2951 		 * deauthentication frame by calling mgd_prepare_tx, if the
2952 		 * driver requested so.
2953 		 */
2954 		if (ieee80211_hw_check(&local->hw, DEAUTH_NEED_MGD_TX_PREP)) {
2955 			for (link_id = 0; link_id < ARRAY_SIZE(sdata->link);
2956 			     link_id++) {
2957 				struct ieee80211_link_data *link;
2958 
2959 				link = sdata_dereference(sdata->link[link_id],
2960 							 sdata);
2961 				if (!link)
2962 					continue;
2963 				if (link->u.mgd.have_beacon)
2964 					break;
2965 			}
2966 			if (link_id == IEEE80211_MLD_MAX_NUM_LINKS) {
2967 				info.link_id = ffs(sdata->vif.active_links) - 1;
2968 				drv_mgd_prepare_tx(sdata->local, sdata, &info);
2969 			}
2970 		}
2971 
2972 		ieee80211_send_deauth_disassoc(sdata, sdata->vif.cfg.ap_addr,
2973 					       sdata->vif.cfg.ap_addr, stype,
2974 					       reason, tx, frame_buf);
2975 	}
2976 
2977 	/* flush out frame - make sure the deauth was actually sent */
2978 	if (tx)
2979 		ieee80211_flush_queues(local, sdata, false);
2980 
2981 	drv_mgd_complete_tx(sdata->local, sdata, &info);
2982 
2983 	/* clear AP addr only after building the needed mgmt frames */
2984 	eth_zero_addr(sdata->deflink.u.mgd.bssid);
2985 	eth_zero_addr(sdata->vif.cfg.ap_addr);
2986 
2987 	sdata->vif.cfg.ssid_len = 0;
2988 
2989 	/* remove AP and TDLS peers */
2990 	sta_info_flush(sdata);
2991 
2992 	/* finally reset all BSS / config parameters */
2993 	if (!ieee80211_vif_is_mld(&sdata->vif))
2994 		changed |= ieee80211_reset_erp_info(sdata);
2995 
2996 	ieee80211_led_assoc(local, 0);
2997 	changed |= BSS_CHANGED_ASSOC;
2998 	sdata->vif.cfg.assoc = false;
2999 
3000 	sdata->deflink.u.mgd.p2p_noa_index = -1;
3001 	memset(&sdata->vif.bss_conf.p2p_noa_attr, 0,
3002 	       sizeof(sdata->vif.bss_conf.p2p_noa_attr));
3003 
3004 	/* on the next assoc, re-program HT/VHT parameters */
3005 	memset(&ifmgd->ht_capa, 0, sizeof(ifmgd->ht_capa));
3006 	memset(&ifmgd->ht_capa_mask, 0, sizeof(ifmgd->ht_capa_mask));
3007 	memset(&ifmgd->vht_capa, 0, sizeof(ifmgd->vht_capa));
3008 	memset(&ifmgd->vht_capa_mask, 0, sizeof(ifmgd->vht_capa_mask));
3009 
3010 	/*
3011 	 * reset MU-MIMO ownership and group data in default link,
3012 	 * if used, other links are destroyed
3013 	 */
3014 	memset(sdata->vif.bss_conf.mu_group.membership, 0,
3015 	       sizeof(sdata->vif.bss_conf.mu_group.membership));
3016 	memset(sdata->vif.bss_conf.mu_group.position, 0,
3017 	       sizeof(sdata->vif.bss_conf.mu_group.position));
3018 	if (!ieee80211_vif_is_mld(&sdata->vif))
3019 		changed |= BSS_CHANGED_MU_GROUPS;
3020 	sdata->vif.bss_conf.mu_mimo_owner = false;
3021 
3022 	sdata->deflink.ap_power_level = IEEE80211_UNSET_POWER_LEVEL;
3023 
3024 	del_timer_sync(&local->dynamic_ps_timer);
3025 	wiphy_work_cancel(local->hw.wiphy, &local->dynamic_ps_enable_work);
3026 
3027 	/* Disable ARP filtering */
3028 	if (sdata->vif.cfg.arp_addr_cnt)
3029 		changed |= BSS_CHANGED_ARP_FILTER;
3030 
3031 	sdata->vif.bss_conf.qos = false;
3032 	if (!ieee80211_vif_is_mld(&sdata->vif)) {
3033 		changed |= BSS_CHANGED_QOS;
3034 		/* The BSSID (not really interesting) and HT changed */
3035 		changed |= BSS_CHANGED_BSSID | BSS_CHANGED_HT;
3036 		ieee80211_bss_info_change_notify(sdata, changed);
3037 	} else {
3038 		ieee80211_vif_cfg_change_notify(sdata, changed);
3039 	}
3040 
3041 	/* disassociated - set to defaults now */
3042 	ieee80211_set_wmm_default(&sdata->deflink, false, false);
3043 
3044 	del_timer_sync(&sdata->u.mgd.conn_mon_timer);
3045 	del_timer_sync(&sdata->u.mgd.bcn_mon_timer);
3046 	del_timer_sync(&sdata->u.mgd.timer);
3047 
3048 	sdata->vif.bss_conf.dtim_period = 0;
3049 	sdata->vif.bss_conf.beacon_rate = NULL;
3050 
3051 	sdata->deflink.u.mgd.have_beacon = false;
3052 	sdata->deflink.u.mgd.tracking_signal_avg = false;
3053 	sdata->deflink.u.mgd.disable_wmm_tracking = false;
3054 
3055 	ifmgd->flags = 0;
3056 	sdata->deflink.u.mgd.conn_flags = 0;
3057 
3058 	for (link_id = 0; link_id < ARRAY_SIZE(sdata->link); link_id++) {
3059 		struct ieee80211_link_data *link;
3060 
3061 		link = sdata_dereference(sdata->link[link_id], sdata);
3062 		if (!link)
3063 			continue;
3064 		ieee80211_link_release_channel(link);
3065 	}
3066 
3067 	sdata->vif.bss_conf.csa_active = false;
3068 	sdata->deflink.u.mgd.csa_waiting_bcn = false;
3069 	sdata->deflink.u.mgd.csa_ignored_same_chan = false;
3070 	if (sdata->deflink.csa_block_tx) {
3071 		ieee80211_wake_vif_queues(local, sdata,
3072 					  IEEE80211_QUEUE_STOP_REASON_CSA);
3073 		sdata->deflink.csa_block_tx = false;
3074 	}
3075 
3076 	/* existing TX TSPEC sessions no longer exist */
3077 	memset(ifmgd->tx_tspec, 0, sizeof(ifmgd->tx_tspec));
3078 	wiphy_delayed_work_cancel(local->hw.wiphy, &ifmgd->tx_tspec_wk);
3079 
3080 	sdata->vif.bss_conf.pwr_reduction = 0;
3081 	sdata->vif.bss_conf.tx_pwr_env_num = 0;
3082 	memset(sdata->vif.bss_conf.tx_pwr_env, 0,
3083 	       sizeof(sdata->vif.bss_conf.tx_pwr_env));
3084 
3085 	memset(&sdata->u.mgd.ttlm_info, 0,
3086 	       sizeof(sdata->u.mgd.ttlm_info));
3087 	wiphy_delayed_work_cancel(sdata->local->hw.wiphy, &ifmgd->ttlm_work);
3088 	ieee80211_vif_set_links(sdata, 0, 0);
3089 }
3090 
3091 static void ieee80211_reset_ap_probe(struct ieee80211_sub_if_data *sdata)
3092 {
3093 	struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3094 	struct ieee80211_local *local = sdata->local;
3095 
3096 	lockdep_assert_wiphy(local->hw.wiphy);
3097 
3098 	if (!(ifmgd->flags & IEEE80211_STA_CONNECTION_POLL))
3099 		return;
3100 
3101 	__ieee80211_stop_poll(sdata);
3102 
3103 	ieee80211_recalc_ps(local);
3104 
3105 	if (ieee80211_hw_check(&sdata->local->hw, CONNECTION_MONITOR))
3106 		return;
3107 
3108 	/*
3109 	 * We've received a probe response, but are not sure whether
3110 	 * we have or will be receiving any beacons or data, so let's
3111 	 * schedule the timers again, just in case.
3112 	 */
3113 	ieee80211_sta_reset_beacon_monitor(sdata);
3114 
3115 	mod_timer(&ifmgd->conn_mon_timer,
3116 		  round_jiffies_up(jiffies +
3117 				   IEEE80211_CONNECTION_IDLE_TIME));
3118 }
3119 
3120 static void ieee80211_sta_tx_wmm_ac_notify(struct ieee80211_sub_if_data *sdata,
3121 					   struct ieee80211_hdr *hdr,
3122 					   u16 tx_time)
3123 {
3124 	struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3125 	u16 tid;
3126 	int ac;
3127 	struct ieee80211_sta_tx_tspec *tx_tspec;
3128 	unsigned long now = jiffies;
3129 
3130 	if (!ieee80211_is_data_qos(hdr->frame_control))
3131 		return;
3132 
3133 	tid = ieee80211_get_tid(hdr);
3134 	ac = ieee80211_ac_from_tid(tid);
3135 	tx_tspec = &ifmgd->tx_tspec[ac];
3136 
3137 	if (likely(!tx_tspec->admitted_time))
3138 		return;
3139 
3140 	if (time_after(now, tx_tspec->time_slice_start + HZ)) {
3141 		tx_tspec->consumed_tx_time = 0;
3142 		tx_tspec->time_slice_start = now;
3143 
3144 		if (tx_tspec->downgraded) {
3145 			tx_tspec->action = TX_TSPEC_ACTION_STOP_DOWNGRADE;
3146 			wiphy_delayed_work_queue(sdata->local->hw.wiphy,
3147 						 &ifmgd->tx_tspec_wk, 0);
3148 		}
3149 	}
3150 
3151 	if (tx_tspec->downgraded)
3152 		return;
3153 
3154 	tx_tspec->consumed_tx_time += tx_time;
3155 
3156 	if (tx_tspec->consumed_tx_time >= tx_tspec->admitted_time) {
3157 		tx_tspec->downgraded = true;
3158 		tx_tspec->action = TX_TSPEC_ACTION_DOWNGRADE;
3159 		wiphy_delayed_work_queue(sdata->local->hw.wiphy,
3160 					 &ifmgd->tx_tspec_wk, 0);
3161 	}
3162 }
3163 
3164 void ieee80211_sta_tx_notify(struct ieee80211_sub_if_data *sdata,
3165 			     struct ieee80211_hdr *hdr, bool ack, u16 tx_time)
3166 {
3167 	ieee80211_sta_tx_wmm_ac_notify(sdata, hdr, tx_time);
3168 
3169 	if (!ieee80211_is_any_nullfunc(hdr->frame_control) ||
3170 	    !sdata->u.mgd.probe_send_count)
3171 		return;
3172 
3173 	if (ack)
3174 		sdata->u.mgd.probe_send_count = 0;
3175 	else
3176 		sdata->u.mgd.nullfunc_failed = true;
3177 	wiphy_work_queue(sdata->local->hw.wiphy, &sdata->work);
3178 }
3179 
3180 static void ieee80211_mlme_send_probe_req(struct ieee80211_sub_if_data *sdata,
3181 					  const u8 *src, const u8 *dst,
3182 					  const u8 *ssid, size_t ssid_len,
3183 					  struct ieee80211_channel *channel)
3184 {
3185 	struct sk_buff *skb;
3186 
3187 	skb = ieee80211_build_probe_req(sdata, src, dst, (u32)-1, channel,
3188 					ssid, ssid_len, NULL, 0,
3189 					IEEE80211_PROBE_FLAG_DIRECTED);
3190 	if (skb)
3191 		ieee80211_tx_skb(sdata, skb);
3192 }
3193 
3194 static void ieee80211_mgd_probe_ap_send(struct ieee80211_sub_if_data *sdata)
3195 {
3196 	struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3197 	u8 *dst = sdata->vif.cfg.ap_addr;
3198 	u8 unicast_limit = max(1, max_probe_tries - 3);
3199 	struct sta_info *sta;
3200 
3201 	lockdep_assert_wiphy(sdata->local->hw.wiphy);
3202 
3203 	if (WARN_ON(ieee80211_vif_is_mld(&sdata->vif)))
3204 		return;
3205 
3206 	/*
3207 	 * Try sending broadcast probe requests for the last three
3208 	 * probe requests after the first ones failed since some
3209 	 * buggy APs only support broadcast probe requests.
3210 	 */
3211 	if (ifmgd->probe_send_count >= unicast_limit)
3212 		dst = NULL;
3213 
3214 	/*
3215 	 * When the hardware reports an accurate Tx ACK status, it's
3216 	 * better to send a nullfunc frame instead of a probe request,
3217 	 * as it will kick us off the AP quickly if we aren't associated
3218 	 * anymore. The timeout will be reset if the frame is ACKed by
3219 	 * the AP.
3220 	 */
3221 	ifmgd->probe_send_count++;
3222 
3223 	if (dst) {
3224 		sta = sta_info_get(sdata, dst);
3225 		if (!WARN_ON(!sta))
3226 			ieee80211_check_fast_rx(sta);
3227 	}
3228 
3229 	if (ieee80211_hw_check(&sdata->local->hw, REPORTS_TX_ACK_STATUS)) {
3230 		ifmgd->nullfunc_failed = false;
3231 		ieee80211_send_nullfunc(sdata->local, sdata, false);
3232 	} else {
3233 		ieee80211_mlme_send_probe_req(sdata, sdata->vif.addr, dst,
3234 					      sdata->vif.cfg.ssid,
3235 					      sdata->vif.cfg.ssid_len,
3236 					      sdata->deflink.u.mgd.bss->channel);
3237 	}
3238 
3239 	ifmgd->probe_timeout = jiffies + msecs_to_jiffies(probe_wait_ms);
3240 	run_again(sdata, ifmgd->probe_timeout);
3241 }
3242 
3243 static void ieee80211_mgd_probe_ap(struct ieee80211_sub_if_data *sdata,
3244 				   bool beacon)
3245 {
3246 	struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3247 	bool already = false;
3248 
3249 	lockdep_assert_wiphy(sdata->local->hw.wiphy);
3250 
3251 	if (WARN_ON_ONCE(ieee80211_vif_is_mld(&sdata->vif)))
3252 		return;
3253 
3254 	if (!ieee80211_sdata_running(sdata))
3255 		return;
3256 
3257 	if (!ifmgd->associated)
3258 		return;
3259 
3260 	if (sdata->local->tmp_channel || sdata->local->scanning)
3261 		return;
3262 
3263 	if (sdata->local->suspending) {
3264 		/* reschedule after resume */
3265 		ieee80211_reset_ap_probe(sdata);
3266 		return;
3267 	}
3268 
3269 	if (beacon) {
3270 		mlme_dbg_ratelimited(sdata,
3271 				     "detected beacon loss from AP (missed %d beacons) - probing\n",
3272 				     beacon_loss_count);
3273 
3274 		ieee80211_cqm_beacon_loss_notify(&sdata->vif, GFP_KERNEL);
3275 	}
3276 
3277 	/*
3278 	 * The driver/our work has already reported this event or the
3279 	 * connection monitoring has kicked in and we have already sent
3280 	 * a probe request. Or maybe the AP died and the driver keeps
3281 	 * reporting until we disassociate...
3282 	 *
3283 	 * In either case we have to ignore the current call to this
3284 	 * function (except for setting the correct probe reason bit)
3285 	 * because otherwise we would reset the timer every time and
3286 	 * never check whether we received a probe response!
3287 	 */
3288 	if (ifmgd->flags & IEEE80211_STA_CONNECTION_POLL)
3289 		already = true;
3290 
3291 	ifmgd->flags |= IEEE80211_STA_CONNECTION_POLL;
3292 
3293 	if (already)
3294 		return;
3295 
3296 	ieee80211_recalc_ps(sdata->local);
3297 
3298 	ifmgd->probe_send_count = 0;
3299 	ieee80211_mgd_probe_ap_send(sdata);
3300 }
3301 
3302 struct sk_buff *ieee80211_ap_probereq_get(struct ieee80211_hw *hw,
3303 					  struct ieee80211_vif *vif)
3304 {
3305 	struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
3306 	struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3307 	struct cfg80211_bss *cbss;
3308 	struct sk_buff *skb;
3309 	const struct element *ssid;
3310 	int ssid_len;
3311 
3312 	lockdep_assert_wiphy(sdata->local->hw.wiphy);
3313 
3314 	if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION ||
3315 		    ieee80211_vif_is_mld(&sdata->vif)))
3316 		return NULL;
3317 
3318 	if (ifmgd->associated)
3319 		cbss = sdata->deflink.u.mgd.bss;
3320 	else if (ifmgd->auth_data)
3321 		cbss = ifmgd->auth_data->bss;
3322 	else if (ifmgd->assoc_data && ifmgd->assoc_data->link[0].bss)
3323 		cbss = ifmgd->assoc_data->link[0].bss;
3324 	else
3325 		return NULL;
3326 
3327 	rcu_read_lock();
3328 	ssid = ieee80211_bss_get_elem(cbss, WLAN_EID_SSID);
3329 	if (WARN_ONCE(!ssid || ssid->datalen > IEEE80211_MAX_SSID_LEN,
3330 		      "invalid SSID element (len=%d)",
3331 		      ssid ? ssid->datalen : -1))
3332 		ssid_len = 0;
3333 	else
3334 		ssid_len = ssid->datalen;
3335 
3336 	skb = ieee80211_build_probe_req(sdata, sdata->vif.addr, cbss->bssid,
3337 					(u32) -1, cbss->channel,
3338 					ssid->data, ssid_len,
3339 					NULL, 0, IEEE80211_PROBE_FLAG_DIRECTED);
3340 	rcu_read_unlock();
3341 
3342 	return skb;
3343 }
3344 EXPORT_SYMBOL(ieee80211_ap_probereq_get);
3345 
3346 static void ieee80211_report_disconnect(struct ieee80211_sub_if_data *sdata,
3347 					const u8 *buf, size_t len, bool tx,
3348 					u16 reason, bool reconnect)
3349 {
3350 	struct ieee80211_event event = {
3351 		.type = MLME_EVENT,
3352 		.u.mlme.data = tx ? DEAUTH_TX_EVENT : DEAUTH_RX_EVENT,
3353 		.u.mlme.reason = reason,
3354 	};
3355 
3356 	if (tx)
3357 		cfg80211_tx_mlme_mgmt(sdata->dev, buf, len, reconnect);
3358 	else
3359 		cfg80211_rx_mlme_mgmt(sdata->dev, buf, len);
3360 
3361 	drv_event_callback(sdata->local, sdata, &event);
3362 }
3363 
3364 static void __ieee80211_disconnect(struct ieee80211_sub_if_data *sdata)
3365 {
3366 	struct ieee80211_local *local = sdata->local;
3367 	struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3368 	u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN];
3369 	bool tx;
3370 
3371 	lockdep_assert_wiphy(local->hw.wiphy);
3372 
3373 	if (!ifmgd->associated)
3374 		return;
3375 
3376 	/* in MLO assume we have a link where we can TX the frame */
3377 	tx = ieee80211_vif_is_mld(&sdata->vif) ||
3378 		!sdata->deflink.csa_block_tx;
3379 
3380 	if (!ifmgd->driver_disconnect) {
3381 		unsigned int link_id;
3382 
3383 		/*
3384 		 * AP is probably out of range (or not reachable for another
3385 		 * reason) so remove the bss structs for that AP. In the case
3386 		 * of multi-link, it's not clear that all of them really are
3387 		 * out of range, but if they weren't the driver likely would
3388 		 * have switched to just have a single link active?
3389 		 */
3390 		for (link_id = 0;
3391 		     link_id < ARRAY_SIZE(sdata->link);
3392 		     link_id++) {
3393 			struct ieee80211_link_data *link;
3394 
3395 			link = sdata_dereference(sdata->link[link_id], sdata);
3396 			if (!link)
3397 				continue;
3398 			cfg80211_unlink_bss(local->hw.wiphy, link->u.mgd.bss);
3399 			link->u.mgd.bss = NULL;
3400 		}
3401 	}
3402 
3403 	ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH,
3404 			       ifmgd->driver_disconnect ?
3405 					WLAN_REASON_DEAUTH_LEAVING :
3406 					WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY,
3407 			       tx, frame_buf);
3408 	/* the other links will be destroyed */
3409 	sdata->vif.bss_conf.csa_active = false;
3410 	sdata->deflink.u.mgd.csa_waiting_bcn = false;
3411 	if (sdata->deflink.csa_block_tx) {
3412 		ieee80211_wake_vif_queues(local, sdata,
3413 					  IEEE80211_QUEUE_STOP_REASON_CSA);
3414 		sdata->deflink.csa_block_tx = false;
3415 	}
3416 
3417 	ieee80211_report_disconnect(sdata, frame_buf, sizeof(frame_buf), tx,
3418 				    WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY,
3419 				    ifmgd->reconnect);
3420 	ifmgd->reconnect = false;
3421 }
3422 
3423 static void ieee80211_beacon_connection_loss_work(struct wiphy *wiphy,
3424 						  struct wiphy_work *work)
3425 {
3426 	struct ieee80211_sub_if_data *sdata =
3427 		container_of(work, struct ieee80211_sub_if_data,
3428 			     u.mgd.beacon_connection_loss_work);
3429 	struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3430 
3431 	if (ifmgd->connection_loss) {
3432 		sdata_info(sdata, "Connection to AP %pM lost\n",
3433 			   sdata->vif.cfg.ap_addr);
3434 		__ieee80211_disconnect(sdata);
3435 		ifmgd->connection_loss = false;
3436 	} else if (ifmgd->driver_disconnect) {
3437 		sdata_info(sdata,
3438 			   "Driver requested disconnection from AP %pM\n",
3439 			   sdata->vif.cfg.ap_addr);
3440 		__ieee80211_disconnect(sdata);
3441 		ifmgd->driver_disconnect = false;
3442 	} else {
3443 		if (ifmgd->associated)
3444 			sdata->deflink.u.mgd.beacon_loss_count++;
3445 		ieee80211_mgd_probe_ap(sdata, true);
3446 	}
3447 }
3448 
3449 static void ieee80211_csa_connection_drop_work(struct wiphy *wiphy,
3450 					       struct wiphy_work *work)
3451 {
3452 	struct ieee80211_sub_if_data *sdata =
3453 		container_of(work, struct ieee80211_sub_if_data,
3454 			     u.mgd.csa_connection_drop_work);
3455 
3456 	__ieee80211_disconnect(sdata);
3457 }
3458 
3459 void ieee80211_beacon_loss(struct ieee80211_vif *vif)
3460 {
3461 	struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
3462 	struct ieee80211_hw *hw = &sdata->local->hw;
3463 
3464 	trace_api_beacon_loss(sdata);
3465 
3466 	sdata->u.mgd.connection_loss = false;
3467 	wiphy_work_queue(hw->wiphy, &sdata->u.mgd.beacon_connection_loss_work);
3468 }
3469 EXPORT_SYMBOL(ieee80211_beacon_loss);
3470 
3471 void ieee80211_connection_loss(struct ieee80211_vif *vif)
3472 {
3473 	struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
3474 	struct ieee80211_hw *hw = &sdata->local->hw;
3475 
3476 	trace_api_connection_loss(sdata);
3477 
3478 	sdata->u.mgd.connection_loss = true;
3479 	wiphy_work_queue(hw->wiphy, &sdata->u.mgd.beacon_connection_loss_work);
3480 }
3481 EXPORT_SYMBOL(ieee80211_connection_loss);
3482 
3483 void ieee80211_disconnect(struct ieee80211_vif *vif, bool reconnect)
3484 {
3485 	struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
3486 	struct ieee80211_hw *hw = &sdata->local->hw;
3487 
3488 	trace_api_disconnect(sdata, reconnect);
3489 
3490 	if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION))
3491 		return;
3492 
3493 	sdata->u.mgd.driver_disconnect = true;
3494 	sdata->u.mgd.reconnect = reconnect;
3495 	wiphy_work_queue(hw->wiphy, &sdata->u.mgd.beacon_connection_loss_work);
3496 }
3497 EXPORT_SYMBOL(ieee80211_disconnect);
3498 
3499 static void ieee80211_destroy_auth_data(struct ieee80211_sub_if_data *sdata,
3500 					bool assoc)
3501 {
3502 	struct ieee80211_mgd_auth_data *auth_data = sdata->u.mgd.auth_data;
3503 
3504 	lockdep_assert_wiphy(sdata->local->hw.wiphy);
3505 
3506 	if (!assoc) {
3507 		/*
3508 		 * we are not authenticated yet, the only timer that could be
3509 		 * running is the timeout for the authentication response which
3510 		 * which is not relevant anymore.
3511 		 */
3512 		del_timer_sync(&sdata->u.mgd.timer);
3513 		sta_info_destroy_addr(sdata, auth_data->ap_addr);
3514 
3515 		/* other links are destroyed */
3516 		sdata->deflink.u.mgd.conn_flags = 0;
3517 		eth_zero_addr(sdata->deflink.u.mgd.bssid);
3518 		ieee80211_link_info_change_notify(sdata, &sdata->deflink,
3519 						  BSS_CHANGED_BSSID);
3520 		sdata->u.mgd.flags = 0;
3521 
3522 		ieee80211_link_release_channel(&sdata->deflink);
3523 		ieee80211_vif_set_links(sdata, 0, 0);
3524 	}
3525 
3526 	cfg80211_put_bss(sdata->local->hw.wiphy, auth_data->bss);
3527 	kfree(auth_data);
3528 	sdata->u.mgd.auth_data = NULL;
3529 }
3530 
3531 enum assoc_status {
3532 	ASSOC_SUCCESS,
3533 	ASSOC_REJECTED,
3534 	ASSOC_TIMEOUT,
3535 	ASSOC_ABANDON,
3536 };
3537 
3538 static void ieee80211_destroy_assoc_data(struct ieee80211_sub_if_data *sdata,
3539 					 enum assoc_status status)
3540 {
3541 	struct ieee80211_mgd_assoc_data *assoc_data = sdata->u.mgd.assoc_data;
3542 
3543 	lockdep_assert_wiphy(sdata->local->hw.wiphy);
3544 
3545 	if (status != ASSOC_SUCCESS) {
3546 		/*
3547 		 * we are not associated yet, the only timer that could be
3548 		 * running is the timeout for the association response which
3549 		 * which is not relevant anymore.
3550 		 */
3551 		del_timer_sync(&sdata->u.mgd.timer);
3552 		sta_info_destroy_addr(sdata, assoc_data->ap_addr);
3553 
3554 		sdata->deflink.u.mgd.conn_flags = 0;
3555 		eth_zero_addr(sdata->deflink.u.mgd.bssid);
3556 		ieee80211_link_info_change_notify(sdata, &sdata->deflink,
3557 						  BSS_CHANGED_BSSID);
3558 		sdata->u.mgd.flags = 0;
3559 		sdata->vif.bss_conf.mu_mimo_owner = false;
3560 
3561 		if (status != ASSOC_REJECTED) {
3562 			struct cfg80211_assoc_failure data = {
3563 				.timeout = status == ASSOC_TIMEOUT,
3564 			};
3565 			int i;
3566 
3567 			BUILD_BUG_ON(ARRAY_SIZE(data.bss) !=
3568 				     ARRAY_SIZE(assoc_data->link));
3569 
3570 			for (i = 0; i < ARRAY_SIZE(data.bss); i++)
3571 				data.bss[i] = assoc_data->link[i].bss;
3572 
3573 			if (ieee80211_vif_is_mld(&sdata->vif))
3574 				data.ap_mld_addr = assoc_data->ap_addr;
3575 
3576 			cfg80211_assoc_failure(sdata->dev, &data);
3577 		}
3578 
3579 		ieee80211_link_release_channel(&sdata->deflink);
3580 		ieee80211_vif_set_links(sdata, 0, 0);
3581 	}
3582 
3583 	kfree(assoc_data);
3584 	sdata->u.mgd.assoc_data = NULL;
3585 }
3586 
3587 static void ieee80211_auth_challenge(struct ieee80211_sub_if_data *sdata,
3588 				     struct ieee80211_mgmt *mgmt, size_t len)
3589 {
3590 	struct ieee80211_local *local = sdata->local;
3591 	struct ieee80211_mgd_auth_data *auth_data = sdata->u.mgd.auth_data;
3592 	const struct element *challenge;
3593 	u8 *pos;
3594 	u32 tx_flags = 0;
3595 	struct ieee80211_prep_tx_info info = {
3596 		.subtype = IEEE80211_STYPE_AUTH,
3597 		.link_id = auth_data->link_id,
3598 	};
3599 
3600 	pos = mgmt->u.auth.variable;
3601 	challenge = cfg80211_find_elem(WLAN_EID_CHALLENGE, pos,
3602 				       len - (pos - (u8 *)mgmt));
3603 	if (!challenge)
3604 		return;
3605 	auth_data->expected_transaction = 4;
3606 	drv_mgd_prepare_tx(sdata->local, sdata, &info);
3607 	if (ieee80211_hw_check(&local->hw, REPORTS_TX_ACK_STATUS))
3608 		tx_flags = IEEE80211_TX_CTL_REQ_TX_STATUS |
3609 			   IEEE80211_TX_INTFL_MLME_CONN_TX;
3610 	ieee80211_send_auth(sdata, 3, auth_data->algorithm, 0,
3611 			    (void *)challenge,
3612 			    challenge->datalen + sizeof(*challenge),
3613 			    auth_data->ap_addr, auth_data->ap_addr,
3614 			    auth_data->key, auth_data->key_len,
3615 			    auth_data->key_idx, tx_flags);
3616 }
3617 
3618 static bool ieee80211_mark_sta_auth(struct ieee80211_sub_if_data *sdata)
3619 {
3620 	struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3621 	const u8 *ap_addr = ifmgd->auth_data->ap_addr;
3622 	struct sta_info *sta;
3623 
3624 	lockdep_assert_wiphy(sdata->local->hw.wiphy);
3625 
3626 	sdata_info(sdata, "authenticated\n");
3627 	ifmgd->auth_data->done = true;
3628 	ifmgd->auth_data->timeout = jiffies + IEEE80211_AUTH_WAIT_ASSOC;
3629 	ifmgd->auth_data->timeout_started = true;
3630 	run_again(sdata, ifmgd->auth_data->timeout);
3631 
3632 	/* move station state to auth */
3633 	sta = sta_info_get(sdata, ap_addr);
3634 	if (!sta) {
3635 		WARN_ONCE(1, "%s: STA %pM not found", sdata->name, ap_addr);
3636 		return false;
3637 	}
3638 	if (sta_info_move_state(sta, IEEE80211_STA_AUTH)) {
3639 		sdata_info(sdata, "failed moving %pM to auth\n", ap_addr);
3640 		return false;
3641 	}
3642 
3643 	return true;
3644 }
3645 
3646 static void ieee80211_rx_mgmt_auth(struct ieee80211_sub_if_data *sdata,
3647 				   struct ieee80211_mgmt *mgmt, size_t len)
3648 {
3649 	struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3650 	u16 auth_alg, auth_transaction, status_code;
3651 	struct ieee80211_event event = {
3652 		.type = MLME_EVENT,
3653 		.u.mlme.data = AUTH_EVENT,
3654 	};
3655 	struct ieee80211_prep_tx_info info = {
3656 		.subtype = IEEE80211_STYPE_AUTH,
3657 	};
3658 
3659 	lockdep_assert_wiphy(sdata->local->hw.wiphy);
3660 
3661 	if (len < 24 + 6)
3662 		return;
3663 
3664 	if (!ifmgd->auth_data || ifmgd->auth_data->done)
3665 		return;
3666 
3667 	if (!ether_addr_equal(ifmgd->auth_data->ap_addr, mgmt->bssid))
3668 		return;
3669 
3670 	auth_alg = le16_to_cpu(mgmt->u.auth.auth_alg);
3671 	auth_transaction = le16_to_cpu(mgmt->u.auth.auth_transaction);
3672 	status_code = le16_to_cpu(mgmt->u.auth.status_code);
3673 
3674 	if (auth_alg != ifmgd->auth_data->algorithm ||
3675 	    (auth_alg != WLAN_AUTH_SAE &&
3676 	     auth_transaction != ifmgd->auth_data->expected_transaction) ||
3677 	    (auth_alg == WLAN_AUTH_SAE &&
3678 	     (auth_transaction < ifmgd->auth_data->expected_transaction ||
3679 	      auth_transaction > 2))) {
3680 		sdata_info(sdata, "%pM unexpected authentication state: alg %d (expected %d) transact %d (expected %d)\n",
3681 			   mgmt->sa, auth_alg, ifmgd->auth_data->algorithm,
3682 			   auth_transaction,
3683 			   ifmgd->auth_data->expected_transaction);
3684 		goto notify_driver;
3685 	}
3686 
3687 	if (status_code != WLAN_STATUS_SUCCESS) {
3688 		cfg80211_rx_mlme_mgmt(sdata->dev, (u8 *)mgmt, len);
3689 
3690 		if (auth_alg == WLAN_AUTH_SAE &&
3691 		    (status_code == WLAN_STATUS_ANTI_CLOG_REQUIRED ||
3692 		     (auth_transaction == 1 &&
3693 		      (status_code == WLAN_STATUS_SAE_HASH_TO_ELEMENT ||
3694 		       status_code == WLAN_STATUS_SAE_PK)))) {
3695 			/* waiting for userspace now */
3696 			ifmgd->auth_data->waiting = true;
3697 			ifmgd->auth_data->timeout =
3698 				jiffies + IEEE80211_AUTH_WAIT_SAE_RETRY;
3699 			ifmgd->auth_data->timeout_started = true;
3700 			run_again(sdata, ifmgd->auth_data->timeout);
3701 			goto notify_driver;
3702 		}
3703 
3704 		sdata_info(sdata, "%pM denied authentication (status %d)\n",
3705 			   mgmt->sa, status_code);
3706 		ieee80211_destroy_auth_data(sdata, false);
3707 		event.u.mlme.status = MLME_DENIED;
3708 		event.u.mlme.reason = status_code;
3709 		drv_event_callback(sdata->local, sdata, &event);
3710 		goto notify_driver;
3711 	}
3712 
3713 	switch (ifmgd->auth_data->algorithm) {
3714 	case WLAN_AUTH_OPEN:
3715 	case WLAN_AUTH_LEAP:
3716 	case WLAN_AUTH_FT:
3717 	case WLAN_AUTH_SAE:
3718 	case WLAN_AUTH_FILS_SK:
3719 	case WLAN_AUTH_FILS_SK_PFS:
3720 	case WLAN_AUTH_FILS_PK:
3721 		break;
3722 	case WLAN_AUTH_SHARED_KEY:
3723 		if (ifmgd->auth_data->expected_transaction != 4) {
3724 			ieee80211_auth_challenge(sdata, mgmt, len);
3725 			/* need another frame */
3726 			return;
3727 		}
3728 		break;
3729 	default:
3730 		WARN_ONCE(1, "invalid auth alg %d",
3731 			  ifmgd->auth_data->algorithm);
3732 		goto notify_driver;
3733 	}
3734 
3735 	event.u.mlme.status = MLME_SUCCESS;
3736 	info.success = 1;
3737 	drv_event_callback(sdata->local, sdata, &event);
3738 	if (ifmgd->auth_data->algorithm != WLAN_AUTH_SAE ||
3739 	    (auth_transaction == 2 &&
3740 	     ifmgd->auth_data->expected_transaction == 2)) {
3741 		if (!ieee80211_mark_sta_auth(sdata))
3742 			return; /* ignore frame -- wait for timeout */
3743 	} else if (ifmgd->auth_data->algorithm == WLAN_AUTH_SAE &&
3744 		   auth_transaction == 2) {
3745 		sdata_info(sdata, "SAE peer confirmed\n");
3746 		ifmgd->auth_data->peer_confirmed = true;
3747 	}
3748 
3749 	cfg80211_rx_mlme_mgmt(sdata->dev, (u8 *)mgmt, len);
3750 notify_driver:
3751 	drv_mgd_complete_tx(sdata->local, sdata, &info);
3752 }
3753 
3754 #define case_WLAN(type) \
3755 	case WLAN_REASON_##type: return #type
3756 
3757 const char *ieee80211_get_reason_code_string(u16 reason_code)
3758 {
3759 	switch (reason_code) {
3760 	case_WLAN(UNSPECIFIED);
3761 	case_WLAN(PREV_AUTH_NOT_VALID);
3762 	case_WLAN(DEAUTH_LEAVING);
3763 	case_WLAN(DISASSOC_DUE_TO_INACTIVITY);
3764 	case_WLAN(DISASSOC_AP_BUSY);
3765 	case_WLAN(CLASS2_FRAME_FROM_NONAUTH_STA);
3766 	case_WLAN(CLASS3_FRAME_FROM_NONASSOC_STA);
3767 	case_WLAN(DISASSOC_STA_HAS_LEFT);
3768 	case_WLAN(STA_REQ_ASSOC_WITHOUT_AUTH);
3769 	case_WLAN(DISASSOC_BAD_POWER);
3770 	case_WLAN(DISASSOC_BAD_SUPP_CHAN);
3771 	case_WLAN(INVALID_IE);
3772 	case_WLAN(MIC_FAILURE);
3773 	case_WLAN(4WAY_HANDSHAKE_TIMEOUT);
3774 	case_WLAN(GROUP_KEY_HANDSHAKE_TIMEOUT);
3775 	case_WLAN(IE_DIFFERENT);
3776 	case_WLAN(INVALID_GROUP_CIPHER);
3777 	case_WLAN(INVALID_PAIRWISE_CIPHER);
3778 	case_WLAN(INVALID_AKMP);
3779 	case_WLAN(UNSUPP_RSN_VERSION);
3780 	case_WLAN(INVALID_RSN_IE_CAP);
3781 	case_WLAN(IEEE8021X_FAILED);
3782 	case_WLAN(CIPHER_SUITE_REJECTED);
3783 	case_WLAN(DISASSOC_UNSPECIFIED_QOS);
3784 	case_WLAN(DISASSOC_QAP_NO_BANDWIDTH);
3785 	case_WLAN(DISASSOC_LOW_ACK);
3786 	case_WLAN(DISASSOC_QAP_EXCEED_TXOP);
3787 	case_WLAN(QSTA_LEAVE_QBSS);
3788 	case_WLAN(QSTA_NOT_USE);
3789 	case_WLAN(QSTA_REQUIRE_SETUP);
3790 	case_WLAN(QSTA_TIMEOUT);
3791 	case_WLAN(QSTA_CIPHER_NOT_SUPP);
3792 	case_WLAN(MESH_PEER_CANCELED);
3793 	case_WLAN(MESH_MAX_PEERS);
3794 	case_WLAN(MESH_CONFIG);
3795 	case_WLAN(MESH_CLOSE);
3796 	case_WLAN(MESH_MAX_RETRIES);
3797 	case_WLAN(MESH_CONFIRM_TIMEOUT);
3798 	case_WLAN(MESH_INVALID_GTK);
3799 	case_WLAN(MESH_INCONSISTENT_PARAM);
3800 	case_WLAN(MESH_INVALID_SECURITY);
3801 	case_WLAN(MESH_PATH_ERROR);
3802 	case_WLAN(MESH_PATH_NOFORWARD);
3803 	case_WLAN(MESH_PATH_DEST_UNREACHABLE);
3804 	case_WLAN(MAC_EXISTS_IN_MBSS);
3805 	case_WLAN(MESH_CHAN_REGULATORY);
3806 	case_WLAN(MESH_CHAN);
3807 	default: return "<unknown>";
3808 	}
3809 }
3810 
3811 static void ieee80211_rx_mgmt_deauth(struct ieee80211_sub_if_data *sdata,
3812 				     struct ieee80211_mgmt *mgmt, size_t len)
3813 {
3814 	struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3815 	u16 reason_code = le16_to_cpu(mgmt->u.deauth.reason_code);
3816 
3817 	lockdep_assert_wiphy(sdata->local->hw.wiphy);
3818 
3819 	if (len < 24 + 2)
3820 		return;
3821 
3822 	if (!ether_addr_equal(mgmt->bssid, mgmt->sa)) {
3823 		ieee80211_tdls_handle_disconnect(sdata, mgmt->sa, reason_code);
3824 		return;
3825 	}
3826 
3827 	if (ifmgd->associated &&
3828 	    ether_addr_equal(mgmt->bssid, sdata->vif.cfg.ap_addr)) {
3829 		sdata_info(sdata, "deauthenticated from %pM (Reason: %u=%s)\n",
3830 			   sdata->vif.cfg.ap_addr, reason_code,
3831 			   ieee80211_get_reason_code_string(reason_code));
3832 
3833 		ieee80211_set_disassoc(sdata, 0, 0, false, NULL);
3834 
3835 		ieee80211_report_disconnect(sdata, (u8 *)mgmt, len, false,
3836 					    reason_code, false);
3837 		return;
3838 	}
3839 
3840 	if (ifmgd->assoc_data &&
3841 	    ether_addr_equal(mgmt->bssid, ifmgd->assoc_data->ap_addr)) {
3842 		sdata_info(sdata,
3843 			   "deauthenticated from %pM while associating (Reason: %u=%s)\n",
3844 			   ifmgd->assoc_data->ap_addr, reason_code,
3845 			   ieee80211_get_reason_code_string(reason_code));
3846 
3847 		ieee80211_destroy_assoc_data(sdata, ASSOC_ABANDON);
3848 
3849 		cfg80211_rx_mlme_mgmt(sdata->dev, (u8 *)mgmt, len);
3850 		return;
3851 	}
3852 }
3853 
3854 
3855 static void ieee80211_rx_mgmt_disassoc(struct ieee80211_sub_if_data *sdata,
3856 				       struct ieee80211_mgmt *mgmt, size_t len)
3857 {
3858 	struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3859 	u16 reason_code;
3860 
3861 	lockdep_assert_wiphy(sdata->local->hw.wiphy);
3862 
3863 	if (len < 24 + 2)
3864 		return;
3865 
3866 	if (!ifmgd->associated ||
3867 	    !ether_addr_equal(mgmt->bssid, sdata->vif.cfg.ap_addr))
3868 		return;
3869 
3870 	reason_code = le16_to_cpu(mgmt->u.disassoc.reason_code);
3871 
3872 	if (!ether_addr_equal(mgmt->bssid, mgmt->sa)) {
3873 		ieee80211_tdls_handle_disconnect(sdata, mgmt->sa, reason_code);
3874 		return;
3875 	}
3876 
3877 	sdata_info(sdata, "disassociated from %pM (Reason: %u=%s)\n",
3878 		   sdata->vif.cfg.ap_addr, reason_code,
3879 		   ieee80211_get_reason_code_string(reason_code));
3880 
3881 	ieee80211_set_disassoc(sdata, 0, 0, false, NULL);
3882 
3883 	ieee80211_report_disconnect(sdata, (u8 *)mgmt, len, false, reason_code,
3884 				    false);
3885 }
3886 
3887 static void ieee80211_get_rates(struct ieee80211_supported_band *sband,
3888 				u8 *supp_rates, unsigned int supp_rates_len,
3889 				u32 *rates, u32 *basic_rates,
3890 				bool *have_higher_than_11mbit,
3891 				int *min_rate, int *min_rate_index)
3892 {
3893 	int i, j;
3894 
3895 	for (i = 0; i < supp_rates_len; i++) {
3896 		int rate = supp_rates[i] & 0x7f;
3897 		bool is_basic = !!(supp_rates[i] & 0x80);
3898 
3899 		if ((rate * 5) > 110)
3900 			*have_higher_than_11mbit = true;
3901 
3902 		/*
3903 		 * Skip HT, VHT, HE, EHT and SAE H2E only BSS membership
3904 		 * selectors since they're not rates.
3905 		 *
3906 		 * Note: Even though the membership selector and the basic
3907 		 *	 rate flag share the same bit, they are not exactly
3908 		 *	 the same.
3909 		 */
3910 		if (supp_rates[i] == (0x80 | BSS_MEMBERSHIP_SELECTOR_HT_PHY) ||
3911 		    supp_rates[i] == (0x80 | BSS_MEMBERSHIP_SELECTOR_VHT_PHY) ||
3912 		    supp_rates[i] == (0x80 | BSS_MEMBERSHIP_SELECTOR_HE_PHY) ||
3913 		    supp_rates[i] == (0x80 | BSS_MEMBERSHIP_SELECTOR_EHT_PHY) ||
3914 		    supp_rates[i] == (0x80 | BSS_MEMBERSHIP_SELECTOR_SAE_H2E))
3915 			continue;
3916 
3917 		for (j = 0; j < sband->n_bitrates; j++) {
3918 			struct ieee80211_rate *br;
3919 			int brate;
3920 
3921 			br = &sband->bitrates[j];
3922 
3923 			brate = DIV_ROUND_UP(br->bitrate, 5);
3924 			if (brate == rate) {
3925 				*rates |= BIT(j);
3926 				if (is_basic)
3927 					*basic_rates |= BIT(j);
3928 				if ((rate * 5) < *min_rate) {
3929 					*min_rate = rate * 5;
3930 					*min_rate_index = j;
3931 				}
3932 				break;
3933 			}
3934 		}
3935 	}
3936 }
3937 
3938 static bool ieee80211_twt_req_supported(struct ieee80211_sub_if_data *sdata,
3939 					struct ieee80211_supported_band *sband,
3940 					const struct link_sta_info *link_sta,
3941 					const struct ieee802_11_elems *elems)
3942 {
3943 	const struct ieee80211_sta_he_cap *own_he_cap =
3944 		ieee80211_get_he_iftype_cap_vif(sband, &sdata->vif);
3945 
3946 	if (elems->ext_capab_len < 10)
3947 		return false;
3948 
3949 	if (!(elems->ext_capab[9] & WLAN_EXT_CAPA10_TWT_RESPONDER_SUPPORT))
3950 		return false;
3951 
3952 	return link_sta->pub->he_cap.he_cap_elem.mac_cap_info[0] &
3953 		IEEE80211_HE_MAC_CAP0_TWT_RES &&
3954 		own_he_cap &&
3955 		(own_he_cap->he_cap_elem.mac_cap_info[0] &
3956 			IEEE80211_HE_MAC_CAP0_TWT_REQ);
3957 }
3958 
3959 static u64 ieee80211_recalc_twt_req(struct ieee80211_sub_if_data *sdata,
3960 				    struct ieee80211_supported_band *sband,
3961 				    struct ieee80211_link_data *link,
3962 				    struct link_sta_info *link_sta,
3963 				    struct ieee802_11_elems *elems)
3964 {
3965 	bool twt = ieee80211_twt_req_supported(sdata, sband, link_sta, elems);
3966 
3967 	if (link->conf->twt_requester != twt) {
3968 		link->conf->twt_requester = twt;
3969 		return BSS_CHANGED_TWT;
3970 	}
3971 	return 0;
3972 }
3973 
3974 static bool ieee80211_twt_bcast_support(struct ieee80211_sub_if_data *sdata,
3975 					struct ieee80211_bss_conf *bss_conf,
3976 					struct ieee80211_supported_band *sband,
3977 					struct link_sta_info *link_sta)
3978 {
3979 	const struct ieee80211_sta_he_cap *own_he_cap =
3980 		ieee80211_get_he_iftype_cap_vif(sband, &sdata->vif);
3981 
3982 	return bss_conf->he_support &&
3983 		(link_sta->pub->he_cap.he_cap_elem.mac_cap_info[2] &
3984 			IEEE80211_HE_MAC_CAP2_BCAST_TWT) &&
3985 		own_he_cap &&
3986 		(own_he_cap->he_cap_elem.mac_cap_info[2] &
3987 			IEEE80211_HE_MAC_CAP2_BCAST_TWT);
3988 }
3989 
3990 static bool ieee80211_assoc_config_link(struct ieee80211_link_data *link,
3991 					struct link_sta_info *link_sta,
3992 					struct cfg80211_bss *cbss,
3993 					struct ieee80211_mgmt *mgmt,
3994 					const u8 *elem_start,
3995 					unsigned int elem_len,
3996 					u64 *changed)
3997 {
3998 	struct ieee80211_sub_if_data *sdata = link->sdata;
3999 	struct ieee80211_mgd_assoc_data *assoc_data = sdata->u.mgd.assoc_data;
4000 	struct ieee80211_bss_conf *bss_conf = link->conf;
4001 	struct ieee80211_local *local = sdata->local;
4002 	unsigned int link_id = link->link_id;
4003 	struct ieee80211_elems_parse_params parse_params = {
4004 		.start = elem_start,
4005 		.len = elem_len,
4006 		.link_id = link_id == assoc_data->assoc_link_id ? -1 : link_id,
4007 		.from_ap = true,
4008 	};
4009 	bool is_6ghz = cbss->channel->band == NL80211_BAND_6GHZ;
4010 	bool is_s1g = cbss->channel->band == NL80211_BAND_S1GHZ;
4011 	const struct cfg80211_bss_ies *bss_ies = NULL;
4012 	struct ieee80211_supported_band *sband;
4013 	struct ieee802_11_elems *elems;
4014 	const __le16 prof_bss_param_ch_present =
4015 		cpu_to_le16(IEEE80211_MLE_STA_CONTROL_BSS_PARAM_CHANGE_CNT_PRESENT);
4016 	u16 capab_info;
4017 	bool ret;
4018 
4019 	elems = ieee802_11_parse_elems_full(&parse_params);
4020 	if (!elems)
4021 		return false;
4022 
4023 	if (link_id == assoc_data->assoc_link_id) {
4024 		capab_info = le16_to_cpu(mgmt->u.assoc_resp.capab_info);
4025 
4026 		/*
4027 		 * we should not get to this flow unless the association was
4028 		 * successful, so set the status directly to success
4029 		 */
4030 		assoc_data->link[link_id].status = WLAN_STATUS_SUCCESS;
4031 		if (elems->ml_basic) {
4032 			if (!(elems->ml_basic->control &
4033 					cpu_to_le16(IEEE80211_MLC_BASIC_PRES_BSS_PARAM_CH_CNT))) {
4034 				ret = false;
4035 				goto out;
4036 			}
4037 			link->u.mgd.bss_param_ch_cnt =
4038 				ieee80211_mle_get_bss_param_ch_cnt(elems->ml_basic);
4039 		}
4040 	} else if (!elems->prof ||
4041 		   !(elems->prof->control & prof_bss_param_ch_present)) {
4042 		ret = false;
4043 		goto out;
4044 	} else {
4045 		const u8 *ptr = elems->prof->variable +
4046 				elems->prof->sta_info_len - 1;
4047 
4048 		/*
4049 		 * During parsing, we validated that these fields exist,
4050 		 * otherwise elems->prof would have been set to NULL.
4051 		 */
4052 		capab_info = get_unaligned_le16(ptr);
4053 		assoc_data->link[link_id].status = get_unaligned_le16(ptr + 2);
4054 		link->u.mgd.bss_param_ch_cnt =
4055 			ieee80211_mle_basic_sta_prof_bss_param_ch_cnt(elems->prof);
4056 
4057 		if (assoc_data->link[link_id].status != WLAN_STATUS_SUCCESS) {
4058 			link_info(link, "association response status code=%u\n",
4059 				  assoc_data->link[link_id].status);
4060 			ret = true;
4061 			goto out;
4062 		}
4063 	}
4064 
4065 	if (!is_s1g && !elems->supp_rates) {
4066 		sdata_info(sdata, "no SuppRates element in AssocResp\n");
4067 		ret = false;
4068 		goto out;
4069 	}
4070 
4071 	link->u.mgd.tdls_chan_switch_prohibited =
4072 		elems->ext_capab && elems->ext_capab_len >= 5 &&
4073 		(elems->ext_capab[4] & WLAN_EXT_CAPA5_TDLS_CH_SW_PROHIBITED);
4074 
4075 	/*
4076 	 * Some APs are erroneously not including some information in their
4077 	 * (re)association response frames. Try to recover by using the data
4078 	 * from the beacon or probe response. This seems to afflict mobile
4079 	 * 2G/3G/4G wifi routers, reported models include the "Onda PN51T",
4080 	 * "Vodafone PocketWiFi 2", "ZTE MF60" and a similar T-Mobile device.
4081 	 */
4082 	if (!is_6ghz &&
4083 	    ((assoc_data->wmm && !elems->wmm_param) ||
4084 	     (!(link->u.mgd.conn_flags & IEEE80211_CONN_DISABLE_HT) &&
4085 	      (!elems->ht_cap_elem || !elems->ht_operation)) ||
4086 	     (!(link->u.mgd.conn_flags & IEEE80211_CONN_DISABLE_VHT) &&
4087 	      (!elems->vht_cap_elem || !elems->vht_operation)))) {
4088 		const struct cfg80211_bss_ies *ies;
4089 		struct ieee802_11_elems *bss_elems;
4090 
4091 		rcu_read_lock();
4092 		ies = rcu_dereference(cbss->ies);
4093 		if (ies)
4094 			bss_ies = kmemdup(ies, sizeof(*ies) + ies->len,
4095 					  GFP_ATOMIC);
4096 		rcu_read_unlock();
4097 		if (!bss_ies) {
4098 			ret = false;
4099 			goto out;
4100 		}
4101 
4102 		parse_params.start = bss_ies->data;
4103 		parse_params.len = bss_ies->len;
4104 		parse_params.bss = cbss;
4105 		bss_elems = ieee802_11_parse_elems_full(&parse_params);
4106 		if (!bss_elems) {
4107 			ret = false;
4108 			goto out;
4109 		}
4110 
4111 		if (assoc_data->wmm &&
4112 		    !elems->wmm_param && bss_elems->wmm_param) {
4113 			elems->wmm_param = bss_elems->wmm_param;
4114 			sdata_info(sdata,
4115 				   "AP bug: WMM param missing from AssocResp\n");
4116 		}
4117 
4118 		/*
4119 		 * Also check if we requested HT/VHT, otherwise the AP doesn't
4120 		 * have to include the IEs in the (re)association response.
4121 		 */
4122 		if (!elems->ht_cap_elem && bss_elems->ht_cap_elem &&
4123 		    !(link->u.mgd.conn_flags & IEEE80211_CONN_DISABLE_HT)) {
4124 			elems->ht_cap_elem = bss_elems->ht_cap_elem;
4125 			sdata_info(sdata,
4126 				   "AP bug: HT capability missing from AssocResp\n");
4127 		}
4128 		if (!elems->ht_operation && bss_elems->ht_operation &&
4129 		    !(link->u.mgd.conn_flags & IEEE80211_CONN_DISABLE_HT)) {
4130 			elems->ht_operation = bss_elems->ht_operation;
4131 			sdata_info(sdata,
4132 				   "AP bug: HT operation missing from AssocResp\n");
4133 		}
4134 		if (!elems->vht_cap_elem && bss_elems->vht_cap_elem &&
4135 		    !(link->u.mgd.conn_flags & IEEE80211_CONN_DISABLE_VHT)) {
4136 			elems->vht_cap_elem = bss_elems->vht_cap_elem;
4137 			sdata_info(sdata,
4138 				   "AP bug: VHT capa missing from AssocResp\n");
4139 		}
4140 		if (!elems->vht_operation && bss_elems->vht_operation &&
4141 		    !(link->u.mgd.conn_flags & IEEE80211_CONN_DISABLE_VHT)) {
4142 			elems->vht_operation = bss_elems->vht_operation;
4143 			sdata_info(sdata,
4144 				   "AP bug: VHT operation missing from AssocResp\n");
4145 		}
4146 
4147 		kfree(bss_elems);
4148 	}
4149 
4150 	/*
4151 	 * We previously checked these in the beacon/probe response, so
4152 	 * they should be present here. This is just a safety net.
4153 	 */
4154 	if (!is_6ghz && !(link->u.mgd.conn_flags & IEEE80211_CONN_DISABLE_HT) &&
4155 	    (!elems->wmm_param || !elems->ht_cap_elem || !elems->ht_operation)) {
4156 		sdata_info(sdata,
4157 			   "HT AP is missing WMM params or HT capability/operation\n");
4158 		ret = false;
4159 		goto out;
4160 	}
4161 
4162 	if (!is_6ghz && !(link->u.mgd.conn_flags & IEEE80211_CONN_DISABLE_VHT) &&
4163 	    (!elems->vht_cap_elem || !elems->vht_operation)) {
4164 		sdata_info(sdata,
4165 			   "VHT AP is missing VHT capability/operation\n");
4166 		ret = false;
4167 		goto out;
4168 	}
4169 
4170 	if (is_6ghz && !(link->u.mgd.conn_flags & IEEE80211_CONN_DISABLE_HE) &&
4171 	    !elems->he_6ghz_capa) {
4172 		sdata_info(sdata,
4173 			   "HE 6 GHz AP is missing HE 6 GHz band capability\n");
4174 		ret = false;
4175 		goto out;
4176 	}
4177 
4178 	if (WARN_ON(!link->conf->chandef.chan)) {
4179 		ret = false;
4180 		goto out;
4181 	}
4182 	sband = local->hw.wiphy->bands[link->conf->chandef.chan->band];
4183 
4184 	if (!(link->u.mgd.conn_flags & IEEE80211_CONN_DISABLE_HE) &&
4185 	    (!elems->he_cap || !elems->he_operation)) {
4186 		sdata_info(sdata,
4187 			   "HE AP is missing HE capability/operation\n");
4188 		ret = false;
4189 		goto out;
4190 	}
4191 
4192 	/* Set up internal HT/VHT capabilities */
4193 	if (elems->ht_cap_elem && !(link->u.mgd.conn_flags & IEEE80211_CONN_DISABLE_HT))
4194 		ieee80211_ht_cap_ie_to_sta_ht_cap(sdata, sband,
4195 						  elems->ht_cap_elem,
4196 						  link_sta);
4197 
4198 	if (elems->vht_cap_elem &&
4199 	    !(link->u.mgd.conn_flags & IEEE80211_CONN_DISABLE_VHT)) {
4200 		const struct ieee80211_vht_cap *bss_vht_cap = NULL;
4201 		const struct cfg80211_bss_ies *ies;
4202 
4203 		/*
4204 		 * Cisco AP module 9115 with FW 17.3 has a bug and sends a
4205 		 * too large maximum MPDU length in the association response
4206 		 * (indicating 12k) that it cannot actually process ...
4207 		 * Work around that.
4208 		 */
4209 		rcu_read_lock();
4210 		ies = rcu_dereference(cbss->ies);
4211 		if (ies) {
4212 			const struct element *elem;
4213 
4214 			elem = cfg80211_find_elem(WLAN_EID_VHT_CAPABILITY,
4215 						  ies->data, ies->len);
4216 			if (elem && elem->datalen >= sizeof(*bss_vht_cap))
4217 				bss_vht_cap = (const void *)elem->data;
4218 		}
4219 
4220 		ieee80211_vht_cap_ie_to_sta_vht_cap(sdata, sband,
4221 						    elems->vht_cap_elem,
4222 						    bss_vht_cap, link_sta);
4223 		rcu_read_unlock();
4224 	}
4225 
4226 	if (elems->he_operation && !(link->u.mgd.conn_flags & IEEE80211_CONN_DISABLE_HE) &&
4227 	    elems->he_cap) {
4228 		ieee80211_he_cap_ie_to_sta_he_cap(sdata, sband,
4229 						  elems->he_cap,
4230 						  elems->he_cap_len,
4231 						  elems->he_6ghz_capa,
4232 						  link_sta);
4233 
4234 		bss_conf->he_support = link_sta->pub->he_cap.has_he;
4235 		if (elems->rsnx && elems->rsnx_len &&
4236 		    (elems->rsnx[0] & WLAN_RSNX_CAPA_PROTECTED_TWT) &&
4237 		    wiphy_ext_feature_isset(local->hw.wiphy,
4238 					    NL80211_EXT_FEATURE_PROTECTED_TWT))
4239 			bss_conf->twt_protected = true;
4240 		else
4241 			bss_conf->twt_protected = false;
4242 
4243 		*changed |= ieee80211_recalc_twt_req(sdata, sband, link,
4244 						     link_sta, elems);
4245 
4246 		if (elems->eht_operation && elems->eht_cap &&
4247 		    !(link->u.mgd.conn_flags & IEEE80211_CONN_DISABLE_EHT)) {
4248 			ieee80211_eht_cap_ie_to_sta_eht_cap(sdata, sband,
4249 							    elems->he_cap,
4250 							    elems->he_cap_len,
4251 							    elems->eht_cap,
4252 							    elems->eht_cap_len,
4253 							    link_sta);
4254 
4255 			bss_conf->eht_support = link_sta->pub->eht_cap.has_eht;
4256 			*changed |= BSS_CHANGED_EHT_PUNCTURING;
4257 		} else {
4258 			bss_conf->eht_support = false;
4259 		}
4260 	} else {
4261 		bss_conf->he_support = false;
4262 		bss_conf->twt_requester = false;
4263 		bss_conf->twt_protected = false;
4264 		bss_conf->eht_support = false;
4265 	}
4266 
4267 	bss_conf->twt_broadcast =
4268 		ieee80211_twt_bcast_support(sdata, bss_conf, sband, link_sta);
4269 
4270 	if (bss_conf->he_support) {
4271 		bss_conf->he_bss_color.color =
4272 			le32_get_bits(elems->he_operation->he_oper_params,
4273 				      IEEE80211_HE_OPERATION_BSS_COLOR_MASK);
4274 		bss_conf->he_bss_color.partial =
4275 			le32_get_bits(elems->he_operation->he_oper_params,
4276 				      IEEE80211_HE_OPERATION_PARTIAL_BSS_COLOR);
4277 		bss_conf->he_bss_color.enabled =
4278 			!le32_get_bits(elems->he_operation->he_oper_params,
4279 				       IEEE80211_HE_OPERATION_BSS_COLOR_DISABLED);
4280 
4281 		if (bss_conf->he_bss_color.enabled)
4282 			*changed |= BSS_CHANGED_HE_BSS_COLOR;
4283 
4284 		bss_conf->htc_trig_based_pkt_ext =
4285 			le32_get_bits(elems->he_operation->he_oper_params,
4286 				      IEEE80211_HE_OPERATION_DFLT_PE_DURATION_MASK);
4287 		bss_conf->frame_time_rts_th =
4288 			le32_get_bits(elems->he_operation->he_oper_params,
4289 				      IEEE80211_HE_OPERATION_RTS_THRESHOLD_MASK);
4290 
4291 		bss_conf->uora_exists = !!elems->uora_element;
4292 		if (elems->uora_element)
4293 			bss_conf->uora_ocw_range = elems->uora_element[0];
4294 
4295 		ieee80211_he_op_ie_to_bss_conf(&sdata->vif, elems->he_operation);
4296 		ieee80211_he_spr_ie_to_bss_conf(&sdata->vif, elems->he_spr);
4297 		/* TODO: OPEN: what happens if BSS color disable is set? */
4298 	}
4299 
4300 	if (cbss->transmitted_bss) {
4301 		bss_conf->nontransmitted = true;
4302 		ether_addr_copy(bss_conf->transmitter_bssid,
4303 				cbss->transmitted_bss->bssid);
4304 		bss_conf->bssid_indicator = cbss->max_bssid_indicator;
4305 		bss_conf->bssid_index = cbss->bssid_index;
4306 	}
4307 
4308 	/*
4309 	 * Some APs, e.g. Netgear WNDR3700, report invalid HT operation data
4310 	 * in their association response, so ignore that data for our own
4311 	 * configuration. If it changed since the last beacon, we'll get the
4312 	 * next beacon and update then.
4313 	 */
4314 
4315 	/*
4316 	 * If an operating mode notification IE is present, override the
4317 	 * NSS calculation (that would be done in rate_control_rate_init())
4318 	 * and use the # of streams from that element.
4319 	 */
4320 	if (elems->opmode_notif &&
4321 	    !(*elems->opmode_notif & IEEE80211_OPMODE_NOTIF_RX_NSS_TYPE_BF)) {
4322 		u8 nss;
4323 
4324 		nss = *elems->opmode_notif & IEEE80211_OPMODE_NOTIF_RX_NSS_MASK;
4325 		nss >>= IEEE80211_OPMODE_NOTIF_RX_NSS_SHIFT;
4326 		nss += 1;
4327 		link_sta->pub->rx_nss = nss;
4328 	}
4329 
4330 	/*
4331 	 * Always handle WMM once after association regardless
4332 	 * of the first value the AP uses. Setting -1 here has
4333 	 * that effect because the AP values is an unsigned
4334 	 * 4-bit value.
4335 	 */
4336 	link->u.mgd.wmm_last_param_set = -1;
4337 	link->u.mgd.mu_edca_last_param_set = -1;
4338 
4339 	if (link->u.mgd.disable_wmm_tracking) {
4340 		ieee80211_set_wmm_default(link, false, false);
4341 	} else if (!ieee80211_sta_wmm_params(local, link, elems->wmm_param,
4342 					     elems->wmm_param_len,
4343 					     elems->mu_edca_param_set)) {
4344 		/* still enable QoS since we might have HT/VHT */
4345 		ieee80211_set_wmm_default(link, false, true);
4346 		/* disable WMM tracking in this case to disable
4347 		 * tracking WMM parameter changes in the beacon if
4348 		 * the parameters weren't actually valid. Doing so
4349 		 * avoids changing parameters very strangely when
4350 		 * the AP is going back and forth between valid and
4351 		 * invalid parameters.
4352 		 */
4353 		link->u.mgd.disable_wmm_tracking = true;
4354 	}
4355 
4356 	if (elems->max_idle_period_ie) {
4357 		bss_conf->max_idle_period =
4358 			le16_to_cpu(elems->max_idle_period_ie->max_idle_period);
4359 		bss_conf->protected_keep_alive =
4360 			!!(elems->max_idle_period_ie->idle_options &
4361 			   WLAN_IDLE_OPTIONS_PROTECTED_KEEP_ALIVE);
4362 		*changed |= BSS_CHANGED_KEEP_ALIVE;
4363 	} else {
4364 		bss_conf->max_idle_period = 0;
4365 		bss_conf->protected_keep_alive = false;
4366 	}
4367 
4368 	/* set assoc capability (AID was already set earlier),
4369 	 * ieee80211_set_associated() will tell the driver */
4370 	bss_conf->assoc_capability = capab_info;
4371 
4372 	ret = true;
4373 out:
4374 	kfree(elems);
4375 	kfree(bss_ies);
4376 	return ret;
4377 }
4378 
4379 static int ieee80211_mgd_setup_link_sta(struct ieee80211_link_data *link,
4380 					struct sta_info *sta,
4381 					struct link_sta_info *link_sta,
4382 					struct cfg80211_bss *cbss)
4383 {
4384 	struct ieee80211_sub_if_data *sdata = link->sdata;
4385 	struct ieee80211_local *local = sdata->local;
4386 	struct ieee80211_bss *bss = (void *)cbss->priv;
4387 	u32 rates = 0, basic_rates = 0;
4388 	bool have_higher_than_11mbit = false;
4389 	int min_rate = INT_MAX, min_rate_index = -1;
4390 	struct ieee80211_supported_band *sband;
4391 
4392 	memcpy(link_sta->addr, cbss->bssid, ETH_ALEN);
4393 	memcpy(link_sta->pub->addr, cbss->bssid, ETH_ALEN);
4394 
4395 	/* TODO: S1G Basic Rate Set is expressed elsewhere */
4396 	if (cbss->channel->band == NL80211_BAND_S1GHZ) {
4397 		ieee80211_s1g_sta_rate_init(sta);
4398 		return 0;
4399 	}
4400 
4401 	sband = local->hw.wiphy->bands[cbss->channel->band];
4402 
4403 	ieee80211_get_rates(sband, bss->supp_rates, bss->supp_rates_len,
4404 			    &rates, &basic_rates, &have_higher_than_11mbit,
4405 			    &min_rate, &min_rate_index);
4406 
4407 	/*
4408 	 * This used to be a workaround for basic rates missing
4409 	 * in the association response frame. Now that we no
4410 	 * longer use the basic rates from there, it probably
4411 	 * doesn't happen any more, but keep the workaround so
4412 	 * in case some *other* APs are buggy in different ways
4413 	 * we can connect -- with a warning.
4414 	 * Allow this workaround only in case the AP provided at least
4415 	 * one rate.
4416 	 */
4417 	if (min_rate_index < 0) {
4418 		link_info(link, "No legacy rates in association response\n");
4419 		return -EINVAL;
4420 	} else if (!basic_rates) {
4421 		link_info(link, "No basic rates, using min rate instead\n");
4422 		basic_rates = BIT(min_rate_index);
4423 	}
4424 
4425 	if (rates)
4426 		link_sta->pub->supp_rates[cbss->channel->band] = rates;
4427 	else
4428 		link_info(link, "No rates found, keeping mandatory only\n");
4429 
4430 	link->conf->basic_rates = basic_rates;
4431 
4432 	/* cf. IEEE 802.11 9.2.12 */
4433 	link->operating_11g_mode = sband->band == NL80211_BAND_2GHZ &&
4434 				   have_higher_than_11mbit;
4435 
4436 	return 0;
4437 }
4438 
4439 static u8 ieee80211_max_rx_chains(struct ieee80211_link_data *link,
4440 				  struct cfg80211_bss *cbss)
4441 {
4442 	struct ieee80211_he_mcs_nss_supp *he_mcs_nss_supp;
4443 	const struct element *ht_cap_elem, *vht_cap_elem;
4444 	const struct cfg80211_bss_ies *ies;
4445 	const struct ieee80211_ht_cap *ht_cap;
4446 	const struct ieee80211_vht_cap *vht_cap;
4447 	const struct ieee80211_he_cap_elem *he_cap;
4448 	const struct element *he_cap_elem;
4449 	u16 mcs_80_map, mcs_160_map;
4450 	int i, mcs_nss_size;
4451 	bool support_160;
4452 	u8 chains = 1;
4453 
4454 	if (link->u.mgd.conn_flags & IEEE80211_CONN_DISABLE_HT)
4455 		return chains;
4456 
4457 	ht_cap_elem = ieee80211_bss_get_elem(cbss, WLAN_EID_HT_CAPABILITY);
4458 	if (ht_cap_elem && ht_cap_elem->datalen >= sizeof(*ht_cap)) {
4459 		ht_cap = (void *)ht_cap_elem->data;
4460 		chains = ieee80211_mcs_to_chains(&ht_cap->mcs);
4461 		/*
4462 		 * TODO: use "Tx Maximum Number Spatial Streams Supported" and
4463 		 *	 "Tx Unequal Modulation Supported" fields.
4464 		 */
4465 	}
4466 
4467 	if (link->u.mgd.conn_flags & IEEE80211_CONN_DISABLE_VHT)
4468 		return chains;
4469 
4470 	vht_cap_elem = ieee80211_bss_get_elem(cbss, WLAN_EID_VHT_CAPABILITY);
4471 	if (vht_cap_elem && vht_cap_elem->datalen >= sizeof(*vht_cap)) {
4472 		u8 nss;
4473 		u16 tx_mcs_map;
4474 
4475 		vht_cap = (void *)vht_cap_elem->data;
4476 		tx_mcs_map = le16_to_cpu(vht_cap->supp_mcs.tx_mcs_map);
4477 		for (nss = 8; nss > 0; nss--) {
4478 			if (((tx_mcs_map >> (2 * (nss - 1))) & 3) !=
4479 					IEEE80211_VHT_MCS_NOT_SUPPORTED)
4480 				break;
4481 		}
4482 		/* TODO: use "Tx Highest Supported Long GI Data Rate" field? */
4483 		chains = max(chains, nss);
4484 	}
4485 
4486 	if (link->u.mgd.conn_flags & IEEE80211_CONN_DISABLE_HE)
4487 		return chains;
4488 
4489 	ies = rcu_dereference(cbss->ies);
4490 	he_cap_elem = cfg80211_find_ext_elem(WLAN_EID_EXT_HE_CAPABILITY,
4491 					     ies->data, ies->len);
4492 
4493 	if (!he_cap_elem || he_cap_elem->datalen < sizeof(*he_cap))
4494 		return chains;
4495 
4496 	/* skip one byte ext_tag_id */
4497 	he_cap = (void *)(he_cap_elem->data + 1);
4498 	mcs_nss_size = ieee80211_he_mcs_nss_size(he_cap);
4499 
4500 	/* invalid HE IE */
4501 	if (he_cap_elem->datalen < 1 + mcs_nss_size + sizeof(*he_cap))
4502 		return chains;
4503 
4504 	/* mcs_nss is right after he_cap info */
4505 	he_mcs_nss_supp = (void *)(he_cap + 1);
4506 
4507 	mcs_80_map = le16_to_cpu(he_mcs_nss_supp->tx_mcs_80);
4508 
4509 	for (i = 7; i >= 0; i--) {
4510 		u8 mcs_80 = mcs_80_map >> (2 * i) & 3;
4511 
4512 		if (mcs_80 != IEEE80211_VHT_MCS_NOT_SUPPORTED) {
4513 			chains = max_t(u8, chains, i + 1);
4514 			break;
4515 		}
4516 	}
4517 
4518 	support_160 = he_cap->phy_cap_info[0] &
4519 		      IEEE80211_HE_PHY_CAP0_CHANNEL_WIDTH_SET_160MHZ_IN_5G;
4520 
4521 	if (!support_160)
4522 		return chains;
4523 
4524 	mcs_160_map = le16_to_cpu(he_mcs_nss_supp->tx_mcs_160);
4525 	for (i = 7; i >= 0; i--) {
4526 		u8 mcs_160 = mcs_160_map >> (2 * i) & 3;
4527 
4528 		if (mcs_160 != IEEE80211_VHT_MCS_NOT_SUPPORTED) {
4529 			chains = max_t(u8, chains, i + 1);
4530 			break;
4531 		}
4532 	}
4533 
4534 	return chains;
4535 }
4536 
4537 static bool
4538 ieee80211_verify_peer_he_mcs_support(struct ieee80211_sub_if_data *sdata,
4539 				     const struct cfg80211_bss_ies *ies,
4540 				     const struct ieee80211_he_operation *he_op)
4541 {
4542 	const struct element *he_cap_elem;
4543 	const struct ieee80211_he_cap_elem *he_cap;
4544 	struct ieee80211_he_mcs_nss_supp *he_mcs_nss_supp;
4545 	u16 mcs_80_map_tx, mcs_80_map_rx;
4546 	u16 ap_min_req_set;
4547 	int mcs_nss_size;
4548 	int nss;
4549 
4550 	he_cap_elem = cfg80211_find_ext_elem(WLAN_EID_EXT_HE_CAPABILITY,
4551 					     ies->data, ies->len);
4552 
4553 	if (!he_cap_elem)
4554 		return false;
4555 
4556 	/* invalid HE IE */
4557 	if (he_cap_elem->datalen < 1 + sizeof(*he_cap)) {
4558 		sdata_info(sdata,
4559 			   "Invalid HE elem, Disable HE\n");
4560 		return false;
4561 	}
4562 
4563 	/* skip one byte ext_tag_id */
4564 	he_cap = (void *)(he_cap_elem->data + 1);
4565 	mcs_nss_size = ieee80211_he_mcs_nss_size(he_cap);
4566 
4567 	/* invalid HE IE */
4568 	if (he_cap_elem->datalen < 1 + sizeof(*he_cap) + mcs_nss_size) {
4569 		sdata_info(sdata,
4570 			   "Invalid HE elem with nss size, Disable HE\n");
4571 		return false;
4572 	}
4573 
4574 	/* mcs_nss is right after he_cap info */
4575 	he_mcs_nss_supp = (void *)(he_cap + 1);
4576 
4577 	mcs_80_map_tx = le16_to_cpu(he_mcs_nss_supp->tx_mcs_80);
4578 	mcs_80_map_rx = le16_to_cpu(he_mcs_nss_supp->rx_mcs_80);
4579 
4580 	/* P802.11-REVme/D0.3
4581 	 * 27.1.1 Introduction to the HE PHY
4582 	 * ...
4583 	 * An HE STA shall support the following features:
4584 	 * ...
4585 	 * Single spatial stream HE-MCSs 0 to 7 (transmit and receive) in all
4586 	 * supported channel widths for HE SU PPDUs
4587 	 */
4588 	if ((mcs_80_map_tx & 0x3) == IEEE80211_HE_MCS_NOT_SUPPORTED ||
4589 	    (mcs_80_map_rx & 0x3) == IEEE80211_HE_MCS_NOT_SUPPORTED) {
4590 		sdata_info(sdata,
4591 			   "Missing mandatory rates for 1 Nss, rx 0x%x, tx 0x%x, disable HE\n",
4592 			   mcs_80_map_tx, mcs_80_map_rx);
4593 		return false;
4594 	}
4595 
4596 	if (!he_op)
4597 		return true;
4598 
4599 	ap_min_req_set = le16_to_cpu(he_op->he_mcs_nss_set);
4600 
4601 	/*
4602 	 * Apparently iPhone 13 (at least iOS version 15.3.1) sets this to all
4603 	 * zeroes, which is nonsense, and completely inconsistent with itself
4604 	 * (it doesn't have 8 streams). Accept the settings in this case anyway.
4605 	 */
4606 	if (!ap_min_req_set)
4607 		return true;
4608 
4609 	/* make sure the AP is consistent with itself
4610 	 *
4611 	 * P802.11-REVme/D0.3
4612 	 * 26.17.1 Basic HE BSS operation
4613 	 *
4614 	 * A STA that is operating in an HE BSS shall be able to receive and
4615 	 * transmit at each of the <HE-MCS, NSS> tuple values indicated by the
4616 	 * Basic HE-MCS And NSS Set field of the HE Operation parameter of the
4617 	 * MLME-START.request primitive and shall be able to receive at each of
4618 	 * the <HE-MCS, NSS> tuple values indicated by the Supported HE-MCS and
4619 	 * NSS Set field in the HE Capabilities parameter of the MLMESTART.request
4620 	 * primitive
4621 	 */
4622 	for (nss = 8; nss > 0; nss--) {
4623 		u8 ap_op_val = (ap_min_req_set >> (2 * (nss - 1))) & 3;
4624 		u8 ap_rx_val;
4625 		u8 ap_tx_val;
4626 
4627 		if (ap_op_val == IEEE80211_HE_MCS_NOT_SUPPORTED)
4628 			continue;
4629 
4630 		ap_rx_val = (mcs_80_map_rx >> (2 * (nss - 1))) & 3;
4631 		ap_tx_val = (mcs_80_map_tx >> (2 * (nss - 1))) & 3;
4632 
4633 		if (ap_rx_val == IEEE80211_HE_MCS_NOT_SUPPORTED ||
4634 		    ap_tx_val == IEEE80211_HE_MCS_NOT_SUPPORTED ||
4635 		    ap_rx_val < ap_op_val || ap_tx_val < ap_op_val) {
4636 			sdata_info(sdata,
4637 				   "Invalid rates for %d Nss, rx %d, tx %d oper %d, disable HE\n",
4638 				   nss, ap_rx_val, ap_rx_val, ap_op_val);
4639 			return false;
4640 		}
4641 	}
4642 
4643 	return true;
4644 }
4645 
4646 static bool
4647 ieee80211_verify_sta_he_mcs_support(struct ieee80211_sub_if_data *sdata,
4648 				    struct ieee80211_supported_band *sband,
4649 				    const struct ieee80211_he_operation *he_op)
4650 {
4651 	const struct ieee80211_sta_he_cap *sta_he_cap =
4652 		ieee80211_get_he_iftype_cap_vif(sband, &sdata->vif);
4653 	u16 ap_min_req_set;
4654 	int i;
4655 
4656 	if (!sta_he_cap || !he_op)
4657 		return false;
4658 
4659 	ap_min_req_set = le16_to_cpu(he_op->he_mcs_nss_set);
4660 
4661 	/*
4662 	 * Apparently iPhone 13 (at least iOS version 15.3.1) sets this to all
4663 	 * zeroes, which is nonsense, and completely inconsistent with itself
4664 	 * (it doesn't have 8 streams). Accept the settings in this case anyway.
4665 	 */
4666 	if (!ap_min_req_set)
4667 		return true;
4668 
4669 	/* Need to go over for 80MHz, 160MHz and for 80+80 */
4670 	for (i = 0; i < 3; i++) {
4671 		const struct ieee80211_he_mcs_nss_supp *sta_mcs_nss_supp =
4672 			&sta_he_cap->he_mcs_nss_supp;
4673 		u16 sta_mcs_map_rx =
4674 			le16_to_cpu(((__le16 *)sta_mcs_nss_supp)[2 * i]);
4675 		u16 sta_mcs_map_tx =
4676 			le16_to_cpu(((__le16 *)sta_mcs_nss_supp)[2 * i + 1]);
4677 		u8 nss;
4678 		bool verified = true;
4679 
4680 		/*
4681 		 * For each band there is a maximum of 8 spatial streams
4682 		 * possible. Each of the sta_mcs_map_* is a 16-bit struct built
4683 		 * of 2 bits per NSS (1-8), with the values defined in enum
4684 		 * ieee80211_he_mcs_support. Need to make sure STA TX and RX
4685 		 * capabilities aren't less than the AP's minimum requirements
4686 		 * for this HE BSS per SS.
4687 		 * It is enough to find one such band that meets the reqs.
4688 		 */
4689 		for (nss = 8; nss > 0; nss--) {
4690 			u8 sta_rx_val = (sta_mcs_map_rx >> (2 * (nss - 1))) & 3;
4691 			u8 sta_tx_val = (sta_mcs_map_tx >> (2 * (nss - 1))) & 3;
4692 			u8 ap_val = (ap_min_req_set >> (2 * (nss - 1))) & 3;
4693 
4694 			if (ap_val == IEEE80211_HE_MCS_NOT_SUPPORTED)
4695 				continue;
4696 
4697 			/*
4698 			 * Make sure the HE AP doesn't require MCSs that aren't
4699 			 * supported by the client as required by spec
4700 			 *
4701 			 * P802.11-REVme/D0.3
4702 			 * 26.17.1 Basic HE BSS operation
4703 			 *
4704 			 * An HE STA shall not attempt to join * (MLME-JOIN.request primitive)
4705 			 * a BSS, unless it supports (i.e., is able to both transmit and
4706 			 * receive using) all of the <HE-MCS, NSS> tuples in the basic
4707 			 * HE-MCS and NSS set.
4708 			 */
4709 			if (sta_rx_val == IEEE80211_HE_MCS_NOT_SUPPORTED ||
4710 			    sta_tx_val == IEEE80211_HE_MCS_NOT_SUPPORTED ||
4711 			    (ap_val > sta_rx_val) || (ap_val > sta_tx_val)) {
4712 				verified = false;
4713 				break;
4714 			}
4715 		}
4716 
4717 		if (verified)
4718 			return true;
4719 	}
4720 
4721 	/* If here, STA doesn't meet AP's HE min requirements */
4722 	return false;
4723 }
4724 
4725 static u8
4726 ieee80211_get_eht_cap_mcs_nss(const struct ieee80211_sta_he_cap *sta_he_cap,
4727 			      const struct ieee80211_sta_eht_cap *sta_eht_cap,
4728 			      unsigned int idx, int bw)
4729 {
4730 	u8 he_phy_cap0 = sta_he_cap->he_cap_elem.phy_cap_info[0];
4731 	u8 eht_phy_cap0 = sta_eht_cap->eht_cap_elem.phy_cap_info[0];
4732 
4733 	/* handle us being a 20 MHz-only EHT STA - with four values
4734 	 * for MCS 0-7, 8-9, 10-11, 12-13.
4735 	 */
4736 	if (!(he_phy_cap0 & IEEE80211_HE_PHY_CAP0_CHANNEL_WIDTH_SET_MASK_ALL))
4737 		return sta_eht_cap->eht_mcs_nss_supp.only_20mhz.rx_tx_max_nss[idx];
4738 
4739 	/* the others have MCS 0-9 together, rather than separately from 0-7 */
4740 	if (idx > 0)
4741 		idx--;
4742 
4743 	switch (bw) {
4744 	case 0:
4745 		return sta_eht_cap->eht_mcs_nss_supp.bw._80.rx_tx_max_nss[idx];
4746 	case 1:
4747 		if (!(he_phy_cap0 &
4748 		      (IEEE80211_HE_PHY_CAP0_CHANNEL_WIDTH_SET_160MHZ_IN_5G |
4749 		       IEEE80211_HE_PHY_CAP0_CHANNEL_WIDTH_SET_80PLUS80_MHZ_IN_5G)))
4750 			return 0xff; /* pass check */
4751 		return sta_eht_cap->eht_mcs_nss_supp.bw._160.rx_tx_max_nss[idx];
4752 	case 2:
4753 		if (!(eht_phy_cap0 & IEEE80211_EHT_PHY_CAP0_320MHZ_IN_6GHZ))
4754 			return 0xff; /* pass check */
4755 		return sta_eht_cap->eht_mcs_nss_supp.bw._320.rx_tx_max_nss[idx];
4756 	}
4757 
4758 	WARN_ON(1);
4759 	return 0;
4760 }
4761 
4762 static bool
4763 ieee80211_verify_sta_eht_mcs_support(struct ieee80211_sub_if_data *sdata,
4764 				     struct ieee80211_supported_band *sband,
4765 				     const struct ieee80211_eht_operation *eht_op)
4766 {
4767 	const struct ieee80211_sta_he_cap *sta_he_cap =
4768 		ieee80211_get_he_iftype_cap_vif(sband, &sdata->vif);
4769 	const struct ieee80211_sta_eht_cap *sta_eht_cap =
4770 		ieee80211_get_eht_iftype_cap_vif(sband, &sdata->vif);
4771 	const struct ieee80211_eht_mcs_nss_supp_20mhz_only *req;
4772 	unsigned int i;
4773 
4774 	if (!sta_he_cap || !sta_eht_cap || !eht_op)
4775 		return false;
4776 
4777 	req = &eht_op->basic_mcs_nss;
4778 
4779 	for (i = 0; i < ARRAY_SIZE(req->rx_tx_max_nss); i++) {
4780 		u8 req_rx_nss, req_tx_nss;
4781 		unsigned int bw;
4782 
4783 		req_rx_nss = u8_get_bits(req->rx_tx_max_nss[i],
4784 					 IEEE80211_EHT_MCS_NSS_RX);
4785 		req_tx_nss = u8_get_bits(req->rx_tx_max_nss[i],
4786 					 IEEE80211_EHT_MCS_NSS_TX);
4787 
4788 		for (bw = 0; bw < 3; bw++) {
4789 			u8 have, have_rx_nss, have_tx_nss;
4790 
4791 			have = ieee80211_get_eht_cap_mcs_nss(sta_he_cap,
4792 							     sta_eht_cap,
4793 							     i, bw);
4794 			have_rx_nss = u8_get_bits(have,
4795 						  IEEE80211_EHT_MCS_NSS_RX);
4796 			have_tx_nss = u8_get_bits(have,
4797 						  IEEE80211_EHT_MCS_NSS_TX);
4798 
4799 			if (req_rx_nss > have_rx_nss ||
4800 			    req_tx_nss > have_tx_nss)
4801 				return false;
4802 		}
4803 	}
4804 
4805 	return true;
4806 }
4807 
4808 static int ieee80211_prep_channel(struct ieee80211_sub_if_data *sdata,
4809 				  struct ieee80211_link_data *link,
4810 				  struct cfg80211_bss *cbss,
4811 				  bool mlo,
4812 				  ieee80211_conn_flags_t *conn_flags)
4813 {
4814 	struct ieee80211_local *local = sdata->local;
4815 	const struct ieee80211_ht_cap *ht_cap = NULL;
4816 	const struct ieee80211_ht_operation *ht_oper = NULL;
4817 	const struct ieee80211_vht_operation *vht_oper = NULL;
4818 	const struct ieee80211_he_operation *he_oper = NULL;
4819 	const struct ieee80211_eht_operation *eht_oper = NULL;
4820 	const struct ieee80211_s1g_oper_ie *s1g_oper = NULL;
4821 	struct ieee80211_supported_band *sband;
4822 	struct cfg80211_chan_def chandef;
4823 	bool is_6ghz = cbss->channel->band == NL80211_BAND_6GHZ;
4824 	bool is_5ghz = cbss->channel->band == NL80211_BAND_5GHZ;
4825 	bool supports_mlo = false;
4826 	struct ieee80211_bss *bss = (void *)cbss->priv;
4827 	struct ieee80211_elems_parse_params parse_params = {
4828 		.link_id = -1,
4829 		.from_ap = true,
4830 	};
4831 	struct ieee802_11_elems *elems;
4832 	const struct cfg80211_bss_ies *ies;
4833 	int ret;
4834 	u32 i;
4835 	bool have_80mhz;
4836 
4837 	lockdep_assert_wiphy(local->hw.wiphy);
4838 
4839 	rcu_read_lock();
4840 
4841 	ies = rcu_dereference(cbss->ies);
4842 	parse_params.start = ies->data;
4843 	parse_params.len = ies->len;
4844 	elems = ieee802_11_parse_elems_full(&parse_params);
4845 	if (!elems) {
4846 		rcu_read_unlock();
4847 		return -ENOMEM;
4848 	}
4849 
4850 	sband = local->hw.wiphy->bands[cbss->channel->band];
4851 
4852 	*conn_flags &= ~(IEEE80211_CONN_DISABLE_40MHZ |
4853 			 IEEE80211_CONN_DISABLE_80P80MHZ |
4854 			 IEEE80211_CONN_DISABLE_160MHZ);
4855 
4856 	/* disable HT/VHT/HE if we don't support them */
4857 	if (!sband->ht_cap.ht_supported && !is_6ghz) {
4858 		mlme_dbg(sdata, "HT not supported, disabling HT/VHT/HE/EHT\n");
4859 		*conn_flags |= IEEE80211_CONN_DISABLE_HT;
4860 		*conn_flags |= IEEE80211_CONN_DISABLE_VHT;
4861 		*conn_flags |= IEEE80211_CONN_DISABLE_HE;
4862 		*conn_flags |= IEEE80211_CONN_DISABLE_EHT;
4863 	}
4864 
4865 	if (!sband->vht_cap.vht_supported && is_5ghz) {
4866 		mlme_dbg(sdata, "VHT not supported, disabling VHT/HE/EHT\n");
4867 		*conn_flags |= IEEE80211_CONN_DISABLE_VHT;
4868 		*conn_flags |= IEEE80211_CONN_DISABLE_HE;
4869 		*conn_flags |= IEEE80211_CONN_DISABLE_EHT;
4870 	}
4871 
4872 	if (!ieee80211_get_he_iftype_cap_vif(sband, &sdata->vif)) {
4873 		mlme_dbg(sdata, "HE not supported, disabling HE and EHT\n");
4874 		*conn_flags |= IEEE80211_CONN_DISABLE_HE;
4875 		*conn_flags |= IEEE80211_CONN_DISABLE_EHT;
4876 	}
4877 
4878 	if (!ieee80211_get_eht_iftype_cap_vif(sband, &sdata->vif)) {
4879 		mlme_dbg(sdata, "EHT not supported, disabling EHT\n");
4880 		*conn_flags |= IEEE80211_CONN_DISABLE_EHT;
4881 	}
4882 
4883 	if (!(*conn_flags & IEEE80211_CONN_DISABLE_HT) && !is_6ghz) {
4884 		ht_oper = elems->ht_operation;
4885 		ht_cap = elems->ht_cap_elem;
4886 
4887 		if (!ht_cap) {
4888 			*conn_flags |= IEEE80211_CONN_DISABLE_HT;
4889 			ht_oper = NULL;
4890 		}
4891 	}
4892 
4893 	if (!(*conn_flags & IEEE80211_CONN_DISABLE_VHT) && !is_6ghz) {
4894 		vht_oper = elems->vht_operation;
4895 		if (vht_oper && !ht_oper) {
4896 			vht_oper = NULL;
4897 			sdata_info(sdata,
4898 				   "AP advertised VHT without HT, disabling HT/VHT/HE\n");
4899 			*conn_flags |= IEEE80211_CONN_DISABLE_HT;
4900 			*conn_flags |= IEEE80211_CONN_DISABLE_VHT;
4901 			*conn_flags |= IEEE80211_CONN_DISABLE_HE;
4902 			*conn_flags |= IEEE80211_CONN_DISABLE_EHT;
4903 		}
4904 
4905 		if (!elems->vht_cap_elem) {
4906 			*conn_flags |= IEEE80211_CONN_DISABLE_VHT;
4907 			vht_oper = NULL;
4908 		}
4909 	}
4910 
4911 	if (!(*conn_flags & IEEE80211_CONN_DISABLE_HE)) {
4912 		he_oper = elems->he_operation;
4913 
4914 		if (link && is_6ghz) {
4915 			struct ieee80211_bss_conf *bss_conf;
4916 			u8 j = 0;
4917 
4918 			bss_conf = link->conf;
4919 
4920 			if (elems->pwr_constr_elem)
4921 				bss_conf->pwr_reduction = *elems->pwr_constr_elem;
4922 
4923 			BUILD_BUG_ON(ARRAY_SIZE(bss_conf->tx_pwr_env) !=
4924 				     ARRAY_SIZE(elems->tx_pwr_env));
4925 
4926 			for (i = 0; i < elems->tx_pwr_env_num; i++) {
4927 				if (elems->tx_pwr_env_len[i] >
4928 				    sizeof(bss_conf->tx_pwr_env[j]))
4929 					continue;
4930 
4931 				bss_conf->tx_pwr_env_num++;
4932 				memcpy(&bss_conf->tx_pwr_env[j], elems->tx_pwr_env[i],
4933 				       elems->tx_pwr_env_len[i]);
4934 				j++;
4935 			}
4936 		}
4937 
4938 		if (!ieee80211_verify_peer_he_mcs_support(sdata, ies, he_oper) ||
4939 		    !ieee80211_verify_sta_he_mcs_support(sdata, sband, he_oper))
4940 			*conn_flags |= IEEE80211_CONN_DISABLE_HE |
4941 				       IEEE80211_CONN_DISABLE_EHT;
4942 	}
4943 
4944 	/*
4945 	 * EHT requires HE to be supported as well. Specifically for 6 GHz
4946 	 * channels, the operation channel information can only be deduced from
4947 	 * both the 6 GHz operation information (from the HE operation IE) and
4948 	 * EHT operation.
4949 	 */
4950 	if (!(*conn_flags &
4951 			(IEEE80211_CONN_DISABLE_HE |
4952 			 IEEE80211_CONN_DISABLE_EHT)) &&
4953 	    he_oper) {
4954 		const struct cfg80211_bss_ies *cbss_ies;
4955 		const struct element *eht_ml_elem;
4956 		const u8 *eht_oper_ie;
4957 
4958 		cbss_ies = rcu_dereference(cbss->ies);
4959 		eht_oper_ie = cfg80211_find_ext_ie(WLAN_EID_EXT_EHT_OPERATION,
4960 						   cbss_ies->data, cbss_ies->len);
4961 		if (eht_oper_ie && eht_oper_ie[1] >=
4962 		    1 + sizeof(struct ieee80211_eht_operation))
4963 			eht_oper = (void *)(eht_oper_ie + 3);
4964 		else
4965 			eht_oper = NULL;
4966 
4967 		if (!ieee80211_verify_sta_eht_mcs_support(sdata, sband, eht_oper))
4968 			*conn_flags |= IEEE80211_CONN_DISABLE_EHT;
4969 
4970 		eht_ml_elem = cfg80211_find_ext_elem(WLAN_EID_EXT_EHT_MULTI_LINK,
4971 						     cbss_ies->data, cbss_ies->len);
4972 
4973 		/* data + 1 / datalen - 1 since it's an extended element */
4974 		if (!(*conn_flags & IEEE80211_CONN_DISABLE_EHT) &&
4975 		    eht_ml_elem &&
4976 		    ieee80211_mle_type_ok(eht_ml_elem->data + 1,
4977 					  IEEE80211_ML_CONTROL_TYPE_BASIC,
4978 					  eht_ml_elem->datalen - 1)) {
4979 			supports_mlo = true;
4980 
4981 			sdata->vif.cfg.eml_cap =
4982 				ieee80211_mle_get_eml_cap(eht_ml_elem->data + 1);
4983 			sdata->vif.cfg.eml_med_sync_delay =
4984 				ieee80211_mle_get_eml_med_sync_delay(eht_ml_elem->data + 1);
4985 		}
4986 	}
4987 
4988 	/* Allow VHT if at least one channel on the sband supports 80 MHz */
4989 	have_80mhz = false;
4990 	for (i = 0; i < sband->n_channels; i++) {
4991 		if (sband->channels[i].flags & (IEEE80211_CHAN_DISABLED |
4992 						IEEE80211_CHAN_NO_80MHZ))
4993 			continue;
4994 
4995 		have_80mhz = true;
4996 		break;
4997 	}
4998 
4999 	if (!have_80mhz) {
5000 		sdata_info(sdata, "80 MHz not supported, disabling VHT\n");
5001 		*conn_flags |= IEEE80211_CONN_DISABLE_VHT;
5002 	}
5003 
5004 	if (sband->band == NL80211_BAND_S1GHZ) {
5005 		s1g_oper = elems->s1g_oper;
5006 		if (!s1g_oper)
5007 			sdata_info(sdata,
5008 				   "AP missing S1G operation element?\n");
5009 	}
5010 
5011 	*conn_flags |=
5012 		ieee80211_determine_chantype(sdata, link, *conn_flags,
5013 					     sband,
5014 					     cbss->channel,
5015 					     bss->vht_cap_info,
5016 					     ht_oper, vht_oper,
5017 					     he_oper, eht_oper,
5018 					     s1g_oper,
5019 					     &chandef, false);
5020 
5021 	if (link)
5022 		link->needed_rx_chains =
5023 			min(ieee80211_max_rx_chains(link, cbss),
5024 			    local->rx_chains);
5025 
5026 	rcu_read_unlock();
5027 	/* the element data was RCU protected so no longer valid anyway */
5028 	kfree(elems);
5029 	elems = NULL;
5030 
5031 	if (*conn_flags & IEEE80211_CONN_DISABLE_HE && is_6ghz) {
5032 		sdata_info(sdata, "Rejecting non-HE 6/7 GHz connection");
5033 		return -EINVAL;
5034 	}
5035 
5036 	if (mlo && !supports_mlo) {
5037 		sdata_info(sdata, "Rejecting MLO as it is not supported by AP\n");
5038 		return -EINVAL;
5039 	}
5040 
5041 	if (!link)
5042 		return 0;
5043 
5044 	/* will change later if needed */
5045 	link->smps_mode = IEEE80211_SMPS_OFF;
5046 
5047 	/*
5048 	 * If this fails (possibly due to channel context sharing
5049 	 * on incompatible channels, e.g. 80+80 and 160 sharing the
5050 	 * same control channel) try to use a smaller bandwidth.
5051 	 */
5052 	ret = ieee80211_link_use_channel(link, &chandef,
5053 					 IEEE80211_CHANCTX_SHARED);
5054 
5055 	/* don't downgrade for 5 and 10 MHz channels, though. */
5056 	if (chandef.width == NL80211_CHAN_WIDTH_5 ||
5057 	    chandef.width == NL80211_CHAN_WIDTH_10)
5058 		goto out;
5059 
5060 	while (ret && chandef.width != NL80211_CHAN_WIDTH_20_NOHT) {
5061 		*conn_flags |=
5062 			ieee80211_chandef_downgrade(&chandef);
5063 		ret = ieee80211_link_use_channel(link, &chandef,
5064 						 IEEE80211_CHANCTX_SHARED);
5065 	}
5066  out:
5067 	return ret;
5068 }
5069 
5070 static bool ieee80211_get_dtim(const struct cfg80211_bss_ies *ies,
5071 			       u8 *dtim_count, u8 *dtim_period)
5072 {
5073 	const u8 *tim_ie = cfg80211_find_ie(WLAN_EID_TIM, ies->data, ies->len);
5074 	const u8 *idx_ie = cfg80211_find_ie(WLAN_EID_MULTI_BSSID_IDX, ies->data,
5075 					 ies->len);
5076 	const struct ieee80211_tim_ie *tim = NULL;
5077 	const struct ieee80211_bssid_index *idx;
5078 	bool valid = tim_ie && tim_ie[1] >= 2;
5079 
5080 	if (valid)
5081 		tim = (void *)(tim_ie + 2);
5082 
5083 	if (dtim_count)
5084 		*dtim_count = valid ? tim->dtim_count : 0;
5085 
5086 	if (dtim_period)
5087 		*dtim_period = valid ? tim->dtim_period : 0;
5088 
5089 	/* Check if value is overridden by non-transmitted profile */
5090 	if (!idx_ie || idx_ie[1] < 3)
5091 		return valid;
5092 
5093 	idx = (void *)(idx_ie + 2);
5094 
5095 	if (dtim_count)
5096 		*dtim_count = idx->dtim_count;
5097 
5098 	if (dtim_period)
5099 		*dtim_period = idx->dtim_period;
5100 
5101 	return true;
5102 }
5103 
5104 static bool ieee80211_assoc_success(struct ieee80211_sub_if_data *sdata,
5105 				    struct ieee80211_mgmt *mgmt,
5106 				    struct ieee802_11_elems *elems,
5107 				    const u8 *elem_start, unsigned int elem_len)
5108 {
5109 	struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
5110 	struct ieee80211_mgd_assoc_data *assoc_data = ifmgd->assoc_data;
5111 	struct ieee80211_local *local = sdata->local;
5112 	unsigned int link_id;
5113 	struct sta_info *sta;
5114 	u64 changed[IEEE80211_MLD_MAX_NUM_LINKS] = {};
5115 	u16 valid_links = 0, dormant_links = 0;
5116 	int err;
5117 
5118 	lockdep_assert_wiphy(sdata->local->hw.wiphy);
5119 	/*
5120 	 * station info was already allocated and inserted before
5121 	 * the association and should be available to us
5122 	 */
5123 	sta = sta_info_get(sdata, assoc_data->ap_addr);
5124 	if (WARN_ON(!sta))
5125 		goto out_err;
5126 
5127 	if (ieee80211_vif_is_mld(&sdata->vif)) {
5128 		for (link_id = 0; link_id < IEEE80211_MLD_MAX_NUM_LINKS; link_id++) {
5129 			if (!assoc_data->link[link_id].bss)
5130 				continue;
5131 
5132 			valid_links |= BIT(link_id);
5133 			if (assoc_data->link[link_id].disabled)
5134 				dormant_links |= BIT(link_id);
5135 
5136 			if (link_id != assoc_data->assoc_link_id) {
5137 				err = ieee80211_sta_allocate_link(sta, link_id);
5138 				if (err)
5139 					goto out_err;
5140 			}
5141 		}
5142 
5143 		ieee80211_vif_set_links(sdata, valid_links, dormant_links);
5144 	}
5145 
5146 	for (link_id = 0; link_id < IEEE80211_MLD_MAX_NUM_LINKS; link_id++) {
5147 		struct cfg80211_bss *cbss = assoc_data->link[link_id].bss;
5148 		struct ieee80211_link_data *link;
5149 		struct link_sta_info *link_sta;
5150 
5151 		if (!cbss)
5152 			continue;
5153 
5154 		link = sdata_dereference(sdata->link[link_id], sdata);
5155 		if (WARN_ON(!link))
5156 			goto out_err;
5157 
5158 		if (ieee80211_vif_is_mld(&sdata->vif))
5159 			link_info(link,
5160 				  "local address %pM, AP link address %pM%s\n",
5161 				  link->conf->addr,
5162 				  assoc_data->link[link_id].bss->bssid,
5163 				  link_id == assoc_data->assoc_link_id ?
5164 					" (assoc)" : "");
5165 
5166 		link_sta = rcu_dereference_protected(sta->link[link_id],
5167 						     lockdep_is_held(&local->hw.wiphy->mtx));
5168 		if (WARN_ON(!link_sta))
5169 			goto out_err;
5170 
5171 		if (!link->u.mgd.have_beacon) {
5172 			const struct cfg80211_bss_ies *ies;
5173 
5174 			rcu_read_lock();
5175 			ies = rcu_dereference(cbss->beacon_ies);
5176 			if (ies)
5177 				link->u.mgd.have_beacon = true;
5178 			else
5179 				ies = rcu_dereference(cbss->ies);
5180 			ieee80211_get_dtim(ies,
5181 					   &link->conf->sync_dtim_count,
5182 					   &link->u.mgd.dtim_period);
5183 			link->conf->beacon_int = cbss->beacon_interval;
5184 			rcu_read_unlock();
5185 		}
5186 
5187 		link->conf->dtim_period = link->u.mgd.dtim_period ?: 1;
5188 
5189 		if (link_id != assoc_data->assoc_link_id) {
5190 			err = ieee80211_prep_channel(sdata, link, cbss, true,
5191 						     &link->u.mgd.conn_flags);
5192 			if (err) {
5193 				link_info(link, "prep_channel failed\n");
5194 				goto out_err;
5195 			}
5196 		}
5197 
5198 		err = ieee80211_mgd_setup_link_sta(link, sta, link_sta,
5199 						   assoc_data->link[link_id].bss);
5200 		if (err)
5201 			goto out_err;
5202 
5203 		if (!ieee80211_assoc_config_link(link, link_sta,
5204 						 assoc_data->link[link_id].bss,
5205 						 mgmt, elem_start, elem_len,
5206 						 &changed[link_id]))
5207 			goto out_err;
5208 
5209 		if (assoc_data->link[link_id].status != WLAN_STATUS_SUCCESS) {
5210 			valid_links &= ~BIT(link_id);
5211 			ieee80211_sta_remove_link(sta, link_id);
5212 			continue;
5213 		}
5214 
5215 		if (link_id != assoc_data->assoc_link_id) {
5216 			err = ieee80211_sta_activate_link(sta, link_id);
5217 			if (err)
5218 				goto out_err;
5219 		}
5220 	}
5221 
5222 	/* links might have changed due to rejected ones, set them again */
5223 	ieee80211_vif_set_links(sdata, valid_links, dormant_links);
5224 
5225 	rate_control_rate_init(sta);
5226 
5227 	if (ifmgd->flags & IEEE80211_STA_MFP_ENABLED) {
5228 		set_sta_flag(sta, WLAN_STA_MFP);
5229 		sta->sta.mfp = true;
5230 	} else {
5231 		sta->sta.mfp = false;
5232 	}
5233 
5234 	ieee80211_sta_set_max_amsdu_subframes(sta, elems->ext_capab,
5235 					      elems->ext_capab_len);
5236 
5237 	sta->sta.wme = (elems->wmm_param || elems->s1g_capab) &&
5238 		       local->hw.queues >= IEEE80211_NUM_ACS;
5239 
5240 	err = sta_info_move_state(sta, IEEE80211_STA_ASSOC);
5241 	if (!err && !(ifmgd->flags & IEEE80211_STA_CONTROL_PORT))
5242 		err = sta_info_move_state(sta, IEEE80211_STA_AUTHORIZED);
5243 	if (err) {
5244 		sdata_info(sdata,
5245 			   "failed to move station %pM to desired state\n",
5246 			   sta->sta.addr);
5247 		WARN_ON(__sta_info_destroy(sta));
5248 		goto out_err;
5249 	}
5250 
5251 	if (sdata->wdev.use_4addr)
5252 		drv_sta_set_4addr(local, sdata, &sta->sta, true);
5253 
5254 	ieee80211_set_associated(sdata, assoc_data, changed);
5255 
5256 	/*
5257 	 * If we're using 4-addr mode, let the AP know that we're
5258 	 * doing so, so that it can create the STA VLAN on its side
5259 	 */
5260 	if (ifmgd->use_4addr)
5261 		ieee80211_send_4addr_nullfunc(local, sdata);
5262 
5263 	/*
5264 	 * Start timer to probe the connection to the AP now.
5265 	 * Also start the timer that will detect beacon loss.
5266 	 */
5267 	ieee80211_sta_reset_beacon_monitor(sdata);
5268 	ieee80211_sta_reset_conn_monitor(sdata);
5269 
5270 	return true;
5271 out_err:
5272 	eth_zero_addr(sdata->vif.cfg.ap_addr);
5273 	return false;
5274 }
5275 
5276 static void ieee80211_rx_mgmt_assoc_resp(struct ieee80211_sub_if_data *sdata,
5277 					 struct ieee80211_mgmt *mgmt,
5278 					 size_t len)
5279 {
5280 	struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
5281 	struct ieee80211_mgd_assoc_data *assoc_data = ifmgd->assoc_data;
5282 	u16 capab_info, status_code, aid;
5283 	struct ieee80211_elems_parse_params parse_params = {
5284 		.bss = NULL,
5285 		.link_id = -1,
5286 		.from_ap = true,
5287 	};
5288 	struct ieee802_11_elems *elems;
5289 	int ac;
5290 	const u8 *elem_start;
5291 	unsigned int elem_len;
5292 	bool reassoc;
5293 	struct ieee80211_event event = {
5294 		.type = MLME_EVENT,
5295 		.u.mlme.data = ASSOC_EVENT,
5296 	};
5297 	struct ieee80211_prep_tx_info info = {};
5298 	struct cfg80211_rx_assoc_resp_data resp = {
5299 		.uapsd_queues = -1,
5300 	};
5301 	u8 ap_mld_addr[ETH_ALEN] __aligned(2);
5302 	unsigned int link_id;
5303 
5304 	lockdep_assert_wiphy(sdata->local->hw.wiphy);
5305 
5306 	if (!assoc_data)
5307 		return;
5308 
5309 	if (!ether_addr_equal(assoc_data->ap_addr, mgmt->bssid) ||
5310 	    !ether_addr_equal(assoc_data->ap_addr, mgmt->sa))
5311 		return;
5312 
5313 	/*
5314 	 * AssocResp and ReassocResp have identical structure, so process both
5315 	 * of them in this function.
5316 	 */
5317 
5318 	if (len < 24 + 6)
5319 		return;
5320 
5321 	reassoc = ieee80211_is_reassoc_resp(mgmt->frame_control);
5322 	capab_info = le16_to_cpu(mgmt->u.assoc_resp.capab_info);
5323 	status_code = le16_to_cpu(mgmt->u.assoc_resp.status_code);
5324 	if (assoc_data->s1g)
5325 		elem_start = mgmt->u.s1g_assoc_resp.variable;
5326 	else
5327 		elem_start = mgmt->u.assoc_resp.variable;
5328 
5329 	/*
5330 	 * Note: this may not be perfect, AP might misbehave - if
5331 	 * anyone needs to rely on perfect complete notification
5332 	 * with the exact right subtype, then we need to track what
5333 	 * we actually transmitted.
5334 	 */
5335 	info.subtype = reassoc ? IEEE80211_STYPE_REASSOC_REQ :
5336 				 IEEE80211_STYPE_ASSOC_REQ;
5337 
5338 	if (assoc_data->fils_kek_len &&
5339 	    fils_decrypt_assoc_resp(sdata, (u8 *)mgmt, &len, assoc_data) < 0)
5340 		return;
5341 
5342 	elem_len = len - (elem_start - (u8 *)mgmt);
5343 	parse_params.start = elem_start;
5344 	parse_params.len = elem_len;
5345 	elems = ieee802_11_parse_elems_full(&parse_params);
5346 	if (!elems)
5347 		goto notify_driver;
5348 
5349 	if (elems->aid_resp)
5350 		aid = le16_to_cpu(elems->aid_resp->aid);
5351 	else if (assoc_data->s1g)
5352 		aid = 0; /* TODO */
5353 	else
5354 		aid = le16_to_cpu(mgmt->u.assoc_resp.aid);
5355 
5356 	/*
5357 	 * The 5 MSB of the AID field are reserved
5358 	 * (802.11-2016 9.4.1.8 AID field)
5359 	 */
5360 	aid &= 0x7ff;
5361 
5362 	sdata_info(sdata,
5363 		   "RX %sssocResp from %pM (capab=0x%x status=%d aid=%d)\n",
5364 		   reassoc ? "Rea" : "A", assoc_data->ap_addr,
5365 		   capab_info, status_code, (u16)(aid & ~(BIT(15) | BIT(14))));
5366 
5367 	ifmgd->broken_ap = false;
5368 
5369 	if (status_code == WLAN_STATUS_ASSOC_REJECTED_TEMPORARILY &&
5370 	    elems->timeout_int &&
5371 	    elems->timeout_int->type == WLAN_TIMEOUT_ASSOC_COMEBACK) {
5372 		u32 tu, ms;
5373 
5374 		cfg80211_assoc_comeback(sdata->dev, assoc_data->ap_addr,
5375 					le32_to_cpu(elems->timeout_int->value));
5376 
5377 		tu = le32_to_cpu(elems->timeout_int->value);
5378 		ms = tu * 1024 / 1000;
5379 		sdata_info(sdata,
5380 			   "%pM rejected association temporarily; comeback duration %u TU (%u ms)\n",
5381 			   assoc_data->ap_addr, tu, ms);
5382 		assoc_data->timeout = jiffies + msecs_to_jiffies(ms);
5383 		assoc_data->timeout_started = true;
5384 		if (ms > IEEE80211_ASSOC_TIMEOUT)
5385 			run_again(sdata, assoc_data->timeout);
5386 		goto notify_driver;
5387 	}
5388 
5389 	if (status_code != WLAN_STATUS_SUCCESS) {
5390 		sdata_info(sdata, "%pM denied association (code=%d)\n",
5391 			   assoc_data->ap_addr, status_code);
5392 		event.u.mlme.status = MLME_DENIED;
5393 		event.u.mlme.reason = status_code;
5394 		drv_event_callback(sdata->local, sdata, &event);
5395 	} else {
5396 		if (aid == 0 || aid > IEEE80211_MAX_AID) {
5397 			sdata_info(sdata,
5398 				   "invalid AID value %d (out of range), turn off PS\n",
5399 				   aid);
5400 			aid = 0;
5401 			ifmgd->broken_ap = true;
5402 		}
5403 
5404 		if (ieee80211_vif_is_mld(&sdata->vif)) {
5405 			if (!elems->ml_basic) {
5406 				sdata_info(sdata,
5407 					   "MLO association with %pM but no multi-link element in response!\n",
5408 					   assoc_data->ap_addr);
5409 				goto abandon_assoc;
5410 			}
5411 
5412 			if (le16_get_bits(elems->ml_basic->control,
5413 					  IEEE80211_ML_CONTROL_TYPE) !=
5414 					IEEE80211_ML_CONTROL_TYPE_BASIC) {
5415 				sdata_info(sdata,
5416 					   "bad multi-link element (control=0x%x)\n",
5417 					   le16_to_cpu(elems->ml_basic->control));
5418 				goto abandon_assoc;
5419 			} else {
5420 				struct ieee80211_mle_basic_common_info *common;
5421 
5422 				common = (void *)elems->ml_basic->variable;
5423 
5424 				if (memcmp(assoc_data->ap_addr,
5425 					   common->mld_mac_addr, ETH_ALEN)) {
5426 					sdata_info(sdata,
5427 						   "AP MLD MAC address mismatch: got %pM expected %pM\n",
5428 						   common->mld_mac_addr,
5429 						   assoc_data->ap_addr);
5430 					goto abandon_assoc;
5431 				}
5432 			}
5433 		}
5434 
5435 		sdata->vif.cfg.aid = aid;
5436 
5437 		if (!ieee80211_assoc_success(sdata, mgmt, elems,
5438 					     elem_start, elem_len)) {
5439 			/* oops -- internal error -- send timeout for now */
5440 			ieee80211_destroy_assoc_data(sdata, ASSOC_TIMEOUT);
5441 			goto notify_driver;
5442 		}
5443 		event.u.mlme.status = MLME_SUCCESS;
5444 		drv_event_callback(sdata->local, sdata, &event);
5445 		sdata_info(sdata, "associated\n");
5446 
5447 		info.success = 1;
5448 	}
5449 
5450 	for (link_id = 0; link_id < IEEE80211_MLD_MAX_NUM_LINKS; link_id++) {
5451 		struct ieee80211_link_data *link;
5452 
5453 		if (!assoc_data->link[link_id].bss)
5454 			continue;
5455 
5456 		resp.links[link_id].bss = assoc_data->link[link_id].bss;
5457 		ether_addr_copy(resp.links[link_id].addr,
5458 				assoc_data->link[link_id].addr);
5459 		resp.links[link_id].status = assoc_data->link[link_id].status;
5460 
5461 		link = sdata_dereference(sdata->link[link_id], sdata);
5462 		if (!link)
5463 			continue;
5464 
5465 		/* get uapsd queues configuration - same for all links */
5466 		resp.uapsd_queues = 0;
5467 		for (ac = 0; ac < IEEE80211_NUM_ACS; ac++)
5468 			if (link->tx_conf[ac].uapsd)
5469 				resp.uapsd_queues |= ieee80211_ac_to_qos_mask[ac];
5470 	}
5471 
5472 	if (ieee80211_vif_is_mld(&sdata->vif)) {
5473 		ether_addr_copy(ap_mld_addr, sdata->vif.cfg.ap_addr);
5474 		resp.ap_mld_addr = ap_mld_addr;
5475 	}
5476 
5477 	ieee80211_destroy_assoc_data(sdata,
5478 				     status_code == WLAN_STATUS_SUCCESS ?
5479 					ASSOC_SUCCESS :
5480 					ASSOC_REJECTED);
5481 
5482 	resp.buf = (u8 *)mgmt;
5483 	resp.len = len;
5484 	resp.req_ies = ifmgd->assoc_req_ies;
5485 	resp.req_ies_len = ifmgd->assoc_req_ies_len;
5486 	cfg80211_rx_assoc_resp(sdata->dev, &resp);
5487 notify_driver:
5488 	drv_mgd_complete_tx(sdata->local, sdata, &info);
5489 	kfree(elems);
5490 	return;
5491 abandon_assoc:
5492 	ieee80211_destroy_assoc_data(sdata, ASSOC_ABANDON);
5493 	goto notify_driver;
5494 }
5495 
5496 static void ieee80211_rx_bss_info(struct ieee80211_link_data *link,
5497 				  struct ieee80211_mgmt *mgmt, size_t len,
5498 				  struct ieee80211_rx_status *rx_status)
5499 {
5500 	struct ieee80211_sub_if_data *sdata = link->sdata;
5501 	struct ieee80211_local *local = sdata->local;
5502 	struct ieee80211_bss *bss;
5503 	struct ieee80211_channel *channel;
5504 
5505 	lockdep_assert_wiphy(sdata->local->hw.wiphy);
5506 
5507 	channel = ieee80211_get_channel_khz(local->hw.wiphy,
5508 					ieee80211_rx_status_to_khz(rx_status));
5509 	if (!channel)
5510 		return;
5511 
5512 	bss = ieee80211_bss_info_update(local, rx_status, mgmt, len, channel);
5513 	if (bss) {
5514 		link->conf->beacon_rate = bss->beacon_rate;
5515 		ieee80211_rx_bss_put(local, bss);
5516 	}
5517 }
5518 
5519 
5520 static void ieee80211_rx_mgmt_probe_resp(struct ieee80211_link_data *link,
5521 					 struct sk_buff *skb)
5522 {
5523 	struct ieee80211_sub_if_data *sdata = link->sdata;
5524 	struct ieee80211_mgmt *mgmt = (void *)skb->data;
5525 	struct ieee80211_if_managed *ifmgd;
5526 	struct ieee80211_rx_status *rx_status = (void *) skb->cb;
5527 	struct ieee80211_channel *channel;
5528 	size_t baselen, len = skb->len;
5529 
5530 	ifmgd = &sdata->u.mgd;
5531 
5532 	lockdep_assert_wiphy(sdata->local->hw.wiphy);
5533 
5534 	/*
5535 	 * According to Draft P802.11ax D6.0 clause 26.17.2.3.2:
5536 	 * "If a 6 GHz AP receives a Probe Request frame  and responds with
5537 	 * a Probe Response frame [..], the Address 1 field of the Probe
5538 	 * Response frame shall be set to the broadcast address [..]"
5539 	 * So, on 6GHz band we should also accept broadcast responses.
5540 	 */
5541 	channel = ieee80211_get_channel(sdata->local->hw.wiphy,
5542 					rx_status->freq);
5543 	if (!channel)
5544 		return;
5545 
5546 	if (!ether_addr_equal(mgmt->da, sdata->vif.addr) &&
5547 	    (channel->band != NL80211_BAND_6GHZ ||
5548 	     !is_broadcast_ether_addr(mgmt->da)))
5549 		return; /* ignore ProbeResp to foreign address */
5550 
5551 	baselen = (u8 *) mgmt->u.probe_resp.variable - (u8 *) mgmt;
5552 	if (baselen > len)
5553 		return;
5554 
5555 	ieee80211_rx_bss_info(link, mgmt, len, rx_status);
5556 
5557 	if (ifmgd->associated &&
5558 	    ether_addr_equal(mgmt->bssid, link->u.mgd.bssid))
5559 		ieee80211_reset_ap_probe(sdata);
5560 }
5561 
5562 /*
5563  * This is the canonical list of information elements we care about,
5564  * the filter code also gives us all changes to the Microsoft OUI
5565  * (00:50:F2) vendor IE which is used for WMM which we need to track,
5566  * as well as the DTPC IE (part of the Cisco OUI) used for signaling
5567  * changes to requested client power.
5568  *
5569  * We implement beacon filtering in software since that means we can
5570  * avoid processing the frame here and in cfg80211, and userspace
5571  * will not be able to tell whether the hardware supports it or not.
5572  *
5573  * XXX: This list needs to be dynamic -- userspace needs to be able to
5574  *	add items it requires. It also needs to be able to tell us to
5575  *	look out for other vendor IEs.
5576  */
5577 static const u64 care_about_ies =
5578 	(1ULL << WLAN_EID_COUNTRY) |
5579 	(1ULL << WLAN_EID_ERP_INFO) |
5580 	(1ULL << WLAN_EID_CHANNEL_SWITCH) |
5581 	(1ULL << WLAN_EID_PWR_CONSTRAINT) |
5582 	(1ULL << WLAN_EID_HT_CAPABILITY) |
5583 	(1ULL << WLAN_EID_HT_OPERATION) |
5584 	(1ULL << WLAN_EID_EXT_CHANSWITCH_ANN);
5585 
5586 static void ieee80211_handle_beacon_sig(struct ieee80211_link_data *link,
5587 					struct ieee80211_if_managed *ifmgd,
5588 					struct ieee80211_bss_conf *bss_conf,
5589 					struct ieee80211_local *local,
5590 					struct ieee80211_rx_status *rx_status)
5591 {
5592 	struct ieee80211_sub_if_data *sdata = link->sdata;
5593 
5594 	/* Track average RSSI from the Beacon frames of the current AP */
5595 
5596 	if (!link->u.mgd.tracking_signal_avg) {
5597 		link->u.mgd.tracking_signal_avg = true;
5598 		ewma_beacon_signal_init(&link->u.mgd.ave_beacon_signal);
5599 		link->u.mgd.last_cqm_event_signal = 0;
5600 		link->u.mgd.count_beacon_signal = 1;
5601 		link->u.mgd.last_ave_beacon_signal = 0;
5602 	} else {
5603 		link->u.mgd.count_beacon_signal++;
5604 	}
5605 
5606 	ewma_beacon_signal_add(&link->u.mgd.ave_beacon_signal,
5607 			       -rx_status->signal);
5608 
5609 	if (ifmgd->rssi_min_thold != ifmgd->rssi_max_thold &&
5610 	    link->u.mgd.count_beacon_signal >= IEEE80211_SIGNAL_AVE_MIN_COUNT) {
5611 		int sig = -ewma_beacon_signal_read(&link->u.mgd.ave_beacon_signal);
5612 		int last_sig = link->u.mgd.last_ave_beacon_signal;
5613 		struct ieee80211_event event = {
5614 			.type = RSSI_EVENT,
5615 		};
5616 
5617 		/*
5618 		 * if signal crosses either of the boundaries, invoke callback
5619 		 * with appropriate parameters
5620 		 */
5621 		if (sig > ifmgd->rssi_max_thold &&
5622 		    (last_sig <= ifmgd->rssi_min_thold || last_sig == 0)) {
5623 			link->u.mgd.last_ave_beacon_signal = sig;
5624 			event.u.rssi.data = RSSI_EVENT_HIGH;
5625 			drv_event_callback(local, sdata, &event);
5626 		} else if (sig < ifmgd->rssi_min_thold &&
5627 			   (last_sig >= ifmgd->rssi_max_thold ||
5628 			   last_sig == 0)) {
5629 			link->u.mgd.last_ave_beacon_signal = sig;
5630 			event.u.rssi.data = RSSI_EVENT_LOW;
5631 			drv_event_callback(local, sdata, &event);
5632 		}
5633 	}
5634 
5635 	if (bss_conf->cqm_rssi_thold &&
5636 	    link->u.mgd.count_beacon_signal >= IEEE80211_SIGNAL_AVE_MIN_COUNT &&
5637 	    !(sdata->vif.driver_flags & IEEE80211_VIF_SUPPORTS_CQM_RSSI)) {
5638 		int sig = -ewma_beacon_signal_read(&link->u.mgd.ave_beacon_signal);
5639 		int last_event = link->u.mgd.last_cqm_event_signal;
5640 		int thold = bss_conf->cqm_rssi_thold;
5641 		int hyst = bss_conf->cqm_rssi_hyst;
5642 
5643 		if (sig < thold &&
5644 		    (last_event == 0 || sig < last_event - hyst)) {
5645 			link->u.mgd.last_cqm_event_signal = sig;
5646 			ieee80211_cqm_rssi_notify(
5647 				&sdata->vif,
5648 				NL80211_CQM_RSSI_THRESHOLD_EVENT_LOW,
5649 				sig, GFP_KERNEL);
5650 		} else if (sig > thold &&
5651 			   (last_event == 0 || sig > last_event + hyst)) {
5652 			link->u.mgd.last_cqm_event_signal = sig;
5653 			ieee80211_cqm_rssi_notify(
5654 				&sdata->vif,
5655 				NL80211_CQM_RSSI_THRESHOLD_EVENT_HIGH,
5656 				sig, GFP_KERNEL);
5657 		}
5658 	}
5659 
5660 	if (bss_conf->cqm_rssi_low &&
5661 	    link->u.mgd.count_beacon_signal >= IEEE80211_SIGNAL_AVE_MIN_COUNT) {
5662 		int sig = -ewma_beacon_signal_read(&link->u.mgd.ave_beacon_signal);
5663 		int last_event = link->u.mgd.last_cqm_event_signal;
5664 		int low = bss_conf->cqm_rssi_low;
5665 		int high = bss_conf->cqm_rssi_high;
5666 
5667 		if (sig < low &&
5668 		    (last_event == 0 || last_event >= low)) {
5669 			link->u.mgd.last_cqm_event_signal = sig;
5670 			ieee80211_cqm_rssi_notify(
5671 				&sdata->vif,
5672 				NL80211_CQM_RSSI_THRESHOLD_EVENT_LOW,
5673 				sig, GFP_KERNEL);
5674 		} else if (sig > high &&
5675 			   (last_event == 0 || last_event <= high)) {
5676 			link->u.mgd.last_cqm_event_signal = sig;
5677 			ieee80211_cqm_rssi_notify(
5678 				&sdata->vif,
5679 				NL80211_CQM_RSSI_THRESHOLD_EVENT_HIGH,
5680 				sig, GFP_KERNEL);
5681 		}
5682 	}
5683 }
5684 
5685 static bool ieee80211_rx_our_beacon(const u8 *tx_bssid,
5686 				    struct cfg80211_bss *bss)
5687 {
5688 	if (ether_addr_equal(tx_bssid, bss->bssid))
5689 		return true;
5690 	if (!bss->transmitted_bss)
5691 		return false;
5692 	return ether_addr_equal(tx_bssid, bss->transmitted_bss->bssid);
5693 }
5694 
5695 static bool ieee80211_config_puncturing(struct ieee80211_link_data *link,
5696 					const struct ieee80211_eht_operation *eht_oper,
5697 					u64 *changed)
5698 {
5699 	struct ieee80211_local *local = link->sdata->local;
5700 	u16 bitmap = 0, extracted;
5701 
5702 	if ((eht_oper->params & IEEE80211_EHT_OPER_INFO_PRESENT) &&
5703 	    (eht_oper->params &
5704 	     IEEE80211_EHT_OPER_DISABLED_SUBCHANNEL_BITMAP_PRESENT)) {
5705 		const struct ieee80211_eht_operation_info *info =
5706 			(void *)eht_oper->optional;
5707 		const u8 *disable_subchannel_bitmap = info->optional;
5708 
5709 		bitmap = get_unaligned_le16(disable_subchannel_bitmap);
5710 	}
5711 
5712 	extracted = ieee80211_extract_dis_subch_bmap(eht_oper,
5713 						     &link->conf->chandef,
5714 						     bitmap);
5715 
5716 	/* accept if there are no changes */
5717 	if (!(*changed & BSS_CHANGED_BANDWIDTH) &&
5718 	    extracted == link->conf->eht_puncturing)
5719 		return true;
5720 
5721 	if (!cfg80211_valid_disable_subchannel_bitmap(&bitmap,
5722 						      &link->conf->chandef)) {
5723 		link_info(link,
5724 			  "Got an invalid disable subchannel bitmap from AP %pM: bitmap = 0x%x, bw = 0x%x. disconnect\n",
5725 			  link->u.mgd.bssid,
5726 			  bitmap,
5727 			  link->conf->chandef.width);
5728 		return false;
5729 	}
5730 
5731 	if (bitmap && ieee80211_hw_check(&local->hw, DISALLOW_PUNCTURING))
5732 		return false;
5733 
5734 	ieee80211_handle_puncturing_bitmap(link, eht_oper, bitmap, changed);
5735 	return true;
5736 }
5737 
5738 static void ieee80211_ml_reconf_work(struct wiphy *wiphy,
5739 				     struct wiphy_work *work)
5740 {
5741 	struct ieee80211_sub_if_data *sdata =
5742 		container_of(work, struct ieee80211_sub_if_data,
5743 			     u.mgd.ml_reconf_work.work);
5744 	u16 new_valid_links, new_active_links, new_dormant_links;
5745 	int ret;
5746 
5747 	if (!sdata->u.mgd.removed_links)
5748 		return;
5749 
5750 	sdata_info(sdata,
5751 		   "MLO Reconfiguration: work: valid=0x%x, removed=0x%x\n",
5752 		   sdata->vif.valid_links, sdata->u.mgd.removed_links);
5753 
5754 	new_valid_links = sdata->vif.valid_links & ~sdata->u.mgd.removed_links;
5755 	if (new_valid_links == sdata->vif.valid_links)
5756 		return;
5757 
5758 	if (!new_valid_links ||
5759 	    !(new_valid_links & ~sdata->vif.dormant_links)) {
5760 		sdata_info(sdata, "No valid links after reconfiguration\n");
5761 		ret = -EINVAL;
5762 		goto out;
5763 	}
5764 
5765 	new_active_links = sdata->vif.active_links & ~sdata->u.mgd.removed_links;
5766 	if (new_active_links != sdata->vif.active_links) {
5767 		if (!new_active_links)
5768 			new_active_links =
5769 				BIT(ffs(new_valid_links &
5770 					~sdata->vif.dormant_links) - 1);
5771 
5772 		ret = ieee80211_set_active_links(&sdata->vif, new_active_links);
5773 		if (ret) {
5774 			sdata_info(sdata,
5775 				   "Failed setting active links\n");
5776 			goto out;
5777 		}
5778 	}
5779 
5780 	new_dormant_links = sdata->vif.dormant_links & ~sdata->u.mgd.removed_links;
5781 
5782 	ret = ieee80211_vif_set_links(sdata, new_valid_links,
5783 				      new_dormant_links);
5784 	if (ret)
5785 		sdata_info(sdata, "Failed setting valid links\n");
5786 
5787 	ieee80211_vif_cfg_change_notify(sdata, BSS_CHANGED_MLD_VALID_LINKS);
5788 
5789 out:
5790 	if (!ret)
5791 		cfg80211_links_removed(sdata->dev, sdata->u.mgd.removed_links);
5792 	else
5793 		__ieee80211_disconnect(sdata);
5794 
5795 	sdata->u.mgd.removed_links = 0;
5796 }
5797 
5798 static void ieee80211_ml_reconfiguration(struct ieee80211_sub_if_data *sdata,
5799 					 struct ieee802_11_elems *elems)
5800 {
5801 	const struct ieee80211_multi_link_elem *ml;
5802 	const struct element *sub;
5803 	size_t ml_len;
5804 	unsigned long removed_links = 0;
5805 	u16 link_removal_timeout[IEEE80211_MLD_MAX_NUM_LINKS] = {};
5806 	u8 link_id;
5807 	u32 delay;
5808 
5809 	if (!ieee80211_vif_is_mld(&sdata->vif) || !elems->ml_reconf)
5810 		return;
5811 
5812 	ml_len = cfg80211_defragment_element(elems->ml_reconf_elem,
5813 					     elems->ie_start,
5814 					     elems->total_len,
5815 					     elems->scratch_pos,
5816 					     elems->scratch + elems->scratch_len -
5817 					     elems->scratch_pos,
5818 					     WLAN_EID_FRAGMENT);
5819 
5820 	elems->ml_reconf = (const void *)elems->scratch_pos;
5821 	elems->ml_reconf_len = ml_len;
5822 	ml = elems->ml_reconf;
5823 
5824 	/* Directly parse the sub elements as the common information doesn't
5825 	 * hold any useful information.
5826 	 */
5827 	for_each_mle_subelement(sub, (u8 *)ml, ml_len) {
5828 		struct ieee80211_mle_per_sta_profile *prof = (void *)sub->data;
5829 		u8 *pos = prof->variable;
5830 		u16 control;
5831 
5832 		if (sub->id != IEEE80211_MLE_SUBELEM_PER_STA_PROFILE)
5833 			continue;
5834 
5835 		if (!ieee80211_mle_reconf_sta_prof_size_ok(sub->data,
5836 							   sub->datalen))
5837 			return;
5838 
5839 		control = le16_to_cpu(prof->control);
5840 		link_id = control & IEEE80211_MLE_STA_RECONF_CONTROL_LINK_ID;
5841 
5842 		removed_links |= BIT(link_id);
5843 
5844 		/* the MAC address should not be included, but handle it */
5845 		if (control &
5846 		    IEEE80211_MLE_STA_RECONF_CONTROL_STA_MAC_ADDR_PRESENT)
5847 			pos += 6;
5848 
5849 		/* According to Draft P802.11be_D3.0, the control should
5850 		 * include the AP Removal Timer present. If the AP Removal Timer
5851 		 * is not present assume immediate removal.
5852 		 */
5853 		if (control &
5854 		    IEEE80211_MLE_STA_RECONF_CONTROL_AP_REM_TIMER_PRESENT)
5855 			link_removal_timeout[link_id] = le16_to_cpu(*(__le16 *)pos);
5856 	}
5857 
5858 	removed_links &= sdata->vif.valid_links;
5859 	if (!removed_links) {
5860 		/* In case the removal was cancelled, abort it */
5861 		if (sdata->u.mgd.removed_links) {
5862 			sdata->u.mgd.removed_links = 0;
5863 			wiphy_delayed_work_cancel(sdata->local->hw.wiphy,
5864 						  &sdata->u.mgd.ml_reconf_work);
5865 		}
5866 		return;
5867 	}
5868 
5869 	delay = 0;
5870 	for_each_set_bit(link_id, &removed_links, IEEE80211_MLD_MAX_NUM_LINKS) {
5871 		struct ieee80211_bss_conf *link_conf =
5872 			sdata_dereference(sdata->vif.link_conf[link_id], sdata);
5873 		u32 link_delay;
5874 
5875 		if (!link_conf) {
5876 			removed_links &= ~BIT(link_id);
5877 			continue;
5878 		}
5879 
5880 		link_delay = link_conf->beacon_int *
5881 			link_removal_timeout[link_id];
5882 
5883 		if (!delay)
5884 			delay = link_delay;
5885 		else
5886 			delay = min(delay, link_delay);
5887 	}
5888 
5889 	sdata->u.mgd.removed_links = removed_links;
5890 	wiphy_delayed_work_queue(sdata->local->hw.wiphy,
5891 				 &sdata->u.mgd.ml_reconf_work,
5892 				 TU_TO_JIFFIES(delay));
5893 }
5894 
5895 static void ieee80211_tid_to_link_map_work(struct wiphy *wiphy,
5896 					   struct wiphy_work *work)
5897 {
5898 	u16 new_active_links, new_dormant_links;
5899 	struct ieee80211_sub_if_data *sdata =
5900 		container_of(work, struct ieee80211_sub_if_data,
5901 			     u.mgd.ttlm_work.work);
5902 	int ret;
5903 
5904 	new_active_links = sdata->u.mgd.ttlm_info.map &
5905 			   sdata->vif.valid_links;
5906 	new_dormant_links = ~sdata->u.mgd.ttlm_info.map &
5907 			    sdata->vif.valid_links;
5908 	if (!new_active_links) {
5909 		ieee80211_disconnect(&sdata->vif, false);
5910 		return;
5911 	}
5912 
5913 	ieee80211_vif_set_links(sdata, sdata->vif.valid_links, 0);
5914 	new_active_links = BIT(ffs(new_active_links) - 1);
5915 	ieee80211_set_active_links(&sdata->vif, new_active_links);
5916 
5917 	ret = ieee80211_vif_set_links(sdata, sdata->vif.valid_links,
5918 				      new_dormant_links);
5919 
5920 	sdata->u.mgd.ttlm_info.active = true;
5921 	sdata->u.mgd.ttlm_info.switch_time = 0;
5922 
5923 	if (!ret)
5924 		ieee80211_vif_cfg_change_notify(sdata,
5925 						BSS_CHANGED_MLD_VALID_LINKS);
5926 }
5927 
5928 static u16 ieee80211_get_ttlm(u8 bm_size, u8 *data)
5929 {
5930 	if (bm_size == 1)
5931 		return *data;
5932 	else
5933 		return get_unaligned_le16(data);
5934 }
5935 
5936 static int
5937 ieee80211_parse_adv_t2l(struct ieee80211_sub_if_data *sdata,
5938 			const struct ieee80211_ttlm_elem *ttlm,
5939 			struct ieee80211_adv_ttlm_info *ttlm_info)
5940 {
5941 	/* The element size was already validated in
5942 	 * ieee80211_tid_to_link_map_size_ok()
5943 	 */
5944 	u8 control, link_map_presence, map_size, tid;
5945 	u8 *pos;
5946 
5947 	memset(ttlm_info, 0, sizeof(*ttlm_info));
5948 	pos = (void *)ttlm->optional;
5949 	control	= ttlm->control;
5950 
5951 	if ((control & IEEE80211_TTLM_CONTROL_DEF_LINK_MAP) ||
5952 	    !(control & IEEE80211_TTLM_CONTROL_SWITCH_TIME_PRESENT))
5953 		return 0;
5954 
5955 	if ((control & IEEE80211_TTLM_CONTROL_DIRECTION) !=
5956 	    IEEE80211_TTLM_DIRECTION_BOTH) {
5957 		sdata_info(sdata, "Invalid advertised T2L map direction\n");
5958 		return -EINVAL;
5959 	}
5960 
5961 	link_map_presence = *pos;
5962 	pos++;
5963 
5964 	ttlm_info->switch_time = get_unaligned_le16(pos);
5965 	pos += 2;
5966 
5967 	if (control & IEEE80211_TTLM_CONTROL_EXPECTED_DUR_PRESENT) {
5968 		ttlm_info->duration = pos[0] | pos[1] << 8 | pos[2] << 16;
5969 		pos += 3;
5970 	}
5971 
5972 	if (control & IEEE80211_TTLM_CONTROL_LINK_MAP_SIZE)
5973 		map_size = 1;
5974 	else
5975 		map_size = 2;
5976 
5977 	/* According to Draft P802.11be_D3.0 clause 35.3.7.1.7, an AP MLD shall
5978 	 * not advertise a TID-to-link mapping that does not map all TIDs to the
5979 	 * same link set, reject frame if not all links have mapping
5980 	 */
5981 	if (link_map_presence != 0xff) {
5982 		sdata_info(sdata,
5983 			   "Invalid advertised T2L mapping presence indicator\n");
5984 		return -EINVAL;
5985 	}
5986 
5987 	ttlm_info->map = ieee80211_get_ttlm(map_size, pos);
5988 	if (!ttlm_info->map) {
5989 		sdata_info(sdata,
5990 			   "Invalid advertised T2L map for TID 0\n");
5991 		return -EINVAL;
5992 	}
5993 
5994 	pos += map_size;
5995 
5996 	for (tid = 1; tid < 8; tid++) {
5997 		u16 map = ieee80211_get_ttlm(map_size, pos);
5998 
5999 		if (map != ttlm_info->map) {
6000 			sdata_info(sdata, "Invalid advertised T2L map for tid %d\n",
6001 				   tid);
6002 			return -EINVAL;
6003 		}
6004 
6005 		pos += map_size;
6006 	}
6007 	return 0;
6008 }
6009 
6010 static void ieee80211_process_adv_ttlm(struct ieee80211_sub_if_data *sdata,
6011 					  struct ieee802_11_elems *elems,
6012 					  u64 beacon_ts)
6013 {
6014 	u8 i;
6015 	int ret;
6016 
6017 	if (!ieee80211_vif_is_mld(&sdata->vif))
6018 		return;
6019 
6020 	if (!elems->ttlm_num) {
6021 		if (sdata->u.mgd.ttlm_info.switch_time) {
6022 			/* if a planned TID-to-link mapping was cancelled -
6023 			 * abort it
6024 			 */
6025 			wiphy_delayed_work_cancel(sdata->local->hw.wiphy,
6026 						  &sdata->u.mgd.ttlm_work);
6027 		} else if (sdata->u.mgd.ttlm_info.active) {
6028 			/* if no TID-to-link element, set to default mapping in
6029 			 * which all TIDs are mapped to all setup links
6030 			 */
6031 			ret = ieee80211_vif_set_links(sdata,
6032 						      sdata->vif.valid_links,
6033 						      0);
6034 			if (ret) {
6035 				sdata_info(sdata, "Failed setting valid/dormant links\n");
6036 				return;
6037 			}
6038 			ieee80211_vif_cfg_change_notify(sdata,
6039 							BSS_CHANGED_MLD_VALID_LINKS);
6040 		}
6041 		memset(&sdata->u.mgd.ttlm_info, 0,
6042 		       sizeof(sdata->u.mgd.ttlm_info));
6043 		return;
6044 	}
6045 
6046 	for (i = 0; i < elems->ttlm_num; i++) {
6047 		struct ieee80211_adv_ttlm_info ttlm_info;
6048 		u32 res;
6049 
6050 		res = ieee80211_parse_adv_t2l(sdata, elems->ttlm[i],
6051 					      &ttlm_info);
6052 
6053 		if (res) {
6054 			__ieee80211_disconnect(sdata);
6055 			return;
6056 		}
6057 
6058 		if (ttlm_info.switch_time) {
6059 			u32 st_us, delay = 0;
6060 			u32 ts_l26 = beacon_ts & GENMASK(25, 0);
6061 
6062 			/* The t2l map switch time is indicated with a partial
6063 			 * TSF value, convert it to TSF and calc the delay
6064 			 * to the start time.
6065 			 */
6066 			st_us = ieee80211_tu_to_usec(ttlm_info.switch_time);
6067 			if (st_us > ts_l26)
6068 				delay = st_us - ts_l26;
6069 			else
6070 				continue;
6071 
6072 			sdata->u.mgd.ttlm_info = ttlm_info;
6073 			wiphy_delayed_work_cancel(sdata->local->hw.wiphy,
6074 						  &sdata->u.mgd.ttlm_work);
6075 			wiphy_delayed_work_queue(sdata->local->hw.wiphy,
6076 						 &sdata->u.mgd.ttlm_work,
6077 						 usecs_to_jiffies(delay));
6078 			return;
6079 		}
6080 	}
6081 }
6082 
6083 static void ieee80211_rx_mgmt_beacon(struct ieee80211_link_data *link,
6084 				     struct ieee80211_hdr *hdr, size_t len,
6085 				     struct ieee80211_rx_status *rx_status)
6086 {
6087 	struct ieee80211_sub_if_data *sdata = link->sdata;
6088 	struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
6089 	struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
6090 	struct ieee80211_vif_cfg *vif_cfg = &sdata->vif.cfg;
6091 	struct ieee80211_mgmt *mgmt = (void *) hdr;
6092 	size_t baselen;
6093 	struct ieee802_11_elems *elems;
6094 	struct ieee80211_local *local = sdata->local;
6095 	struct ieee80211_chanctx_conf *chanctx_conf;
6096 	struct ieee80211_supported_band *sband;
6097 	struct ieee80211_channel *chan;
6098 	struct link_sta_info *link_sta;
6099 	struct sta_info *sta;
6100 	u64 changed = 0;
6101 	bool erp_valid;
6102 	u8 erp_value = 0;
6103 	u32 ncrc = 0;
6104 	u8 *bssid, *variable = mgmt->u.beacon.variable;
6105 	u8 deauth_buf[IEEE80211_DEAUTH_FRAME_LEN];
6106 	struct ieee80211_elems_parse_params parse_params = {
6107 		.link_id = -1,
6108 		.from_ap = true,
6109 	};
6110 
6111 	lockdep_assert_wiphy(local->hw.wiphy);
6112 
6113 	/* Process beacon from the current BSS */
6114 	bssid = ieee80211_get_bssid(hdr, len, sdata->vif.type);
6115 	if (ieee80211_is_s1g_beacon(mgmt->frame_control)) {
6116 		struct ieee80211_ext *ext = (void *) mgmt;
6117 
6118 		if (ieee80211_is_s1g_short_beacon(ext->frame_control))
6119 			variable = ext->u.s1g_short_beacon.variable;
6120 		else
6121 			variable = ext->u.s1g_beacon.variable;
6122 	}
6123 
6124 	baselen = (u8 *) variable - (u8 *) mgmt;
6125 	if (baselen > len)
6126 		return;
6127 
6128 	parse_params.start = variable;
6129 	parse_params.len = len - baselen;
6130 
6131 	rcu_read_lock();
6132 	chanctx_conf = rcu_dereference(link->conf->chanctx_conf);
6133 	if (!chanctx_conf) {
6134 		rcu_read_unlock();
6135 		return;
6136 	}
6137 
6138 	if (ieee80211_rx_status_to_khz(rx_status) !=
6139 	    ieee80211_channel_to_khz(chanctx_conf->def.chan)) {
6140 		rcu_read_unlock();
6141 		return;
6142 	}
6143 	chan = chanctx_conf->def.chan;
6144 	rcu_read_unlock();
6145 
6146 	if (ifmgd->assoc_data && ifmgd->assoc_data->need_beacon &&
6147 	    !WARN_ON(ieee80211_vif_is_mld(&sdata->vif)) &&
6148 	    ieee80211_rx_our_beacon(bssid, ifmgd->assoc_data->link[0].bss)) {
6149 		parse_params.bss = ifmgd->assoc_data->link[0].bss;
6150 		elems = ieee802_11_parse_elems_full(&parse_params);
6151 		if (!elems)
6152 			return;
6153 
6154 		ieee80211_rx_bss_info(link, mgmt, len, rx_status);
6155 
6156 		if (elems->dtim_period)
6157 			link->u.mgd.dtim_period = elems->dtim_period;
6158 		link->u.mgd.have_beacon = true;
6159 		ifmgd->assoc_data->need_beacon = false;
6160 		if (ieee80211_hw_check(&local->hw, TIMING_BEACON_ONLY)) {
6161 			link->conf->sync_tsf =
6162 				le64_to_cpu(mgmt->u.beacon.timestamp);
6163 			link->conf->sync_device_ts =
6164 				rx_status->device_timestamp;
6165 			link->conf->sync_dtim_count = elems->dtim_count;
6166 		}
6167 
6168 		if (elems->mbssid_config_ie)
6169 			bss_conf->profile_periodicity =
6170 				elems->mbssid_config_ie->profile_periodicity;
6171 		else
6172 			bss_conf->profile_periodicity = 0;
6173 
6174 		if (elems->ext_capab_len >= 11 &&
6175 		    (elems->ext_capab[10] & WLAN_EXT_CAPA11_EMA_SUPPORT))
6176 			bss_conf->ema_ap = true;
6177 		else
6178 			bss_conf->ema_ap = false;
6179 
6180 		/* continue assoc process */
6181 		ifmgd->assoc_data->timeout = jiffies;
6182 		ifmgd->assoc_data->timeout_started = true;
6183 		run_again(sdata, ifmgd->assoc_data->timeout);
6184 		kfree(elems);
6185 		return;
6186 	}
6187 
6188 	if (!ifmgd->associated ||
6189 	    !ieee80211_rx_our_beacon(bssid, link->u.mgd.bss))
6190 		return;
6191 	bssid = link->u.mgd.bssid;
6192 
6193 	if (!(rx_status->flag & RX_FLAG_NO_SIGNAL_VAL))
6194 		ieee80211_handle_beacon_sig(link, ifmgd, bss_conf,
6195 					    local, rx_status);
6196 
6197 	if (ifmgd->flags & IEEE80211_STA_CONNECTION_POLL) {
6198 		mlme_dbg_ratelimited(sdata,
6199 				     "cancelling AP probe due to a received beacon\n");
6200 		ieee80211_reset_ap_probe(sdata);
6201 	}
6202 
6203 	/*
6204 	 * Push the beacon loss detection into the future since
6205 	 * we are processing a beacon from the AP just now.
6206 	 */
6207 	ieee80211_sta_reset_beacon_monitor(sdata);
6208 
6209 	/* TODO: CRC urrently not calculated on S1G Beacon Compatibility
6210 	 * element (which carries the beacon interval). Don't forget to add a
6211 	 * bit to care_about_ies[] above if mac80211 is interested in a
6212 	 * changing S1G element.
6213 	 */
6214 	if (!ieee80211_is_s1g_beacon(hdr->frame_control))
6215 		ncrc = crc32_be(0, (void *)&mgmt->u.beacon.beacon_int, 4);
6216 	parse_params.bss = link->u.mgd.bss;
6217 	parse_params.filter = care_about_ies;
6218 	parse_params.crc = ncrc;
6219 	elems = ieee802_11_parse_elems_full(&parse_params);
6220 	if (!elems)
6221 		return;
6222 	ncrc = elems->crc;
6223 
6224 	if (ieee80211_hw_check(&local->hw, PS_NULLFUNC_STACK) &&
6225 	    ieee80211_check_tim(elems->tim, elems->tim_len, vif_cfg->aid)) {
6226 		if (local->hw.conf.dynamic_ps_timeout > 0) {
6227 			if (local->hw.conf.flags & IEEE80211_CONF_PS) {
6228 				local->hw.conf.flags &= ~IEEE80211_CONF_PS;
6229 				ieee80211_hw_config(local,
6230 						    IEEE80211_CONF_CHANGE_PS);
6231 			}
6232 			ieee80211_send_nullfunc(local, sdata, false);
6233 		} else if (!local->pspolling && sdata->u.mgd.powersave) {
6234 			local->pspolling = true;
6235 
6236 			/*
6237 			 * Here is assumed that the driver will be
6238 			 * able to send ps-poll frame and receive a
6239 			 * response even though power save mode is
6240 			 * enabled, but some drivers might require
6241 			 * to disable power save here. This needs
6242 			 * to be investigated.
6243 			 */
6244 			ieee80211_send_pspoll(local, sdata);
6245 		}
6246 	}
6247 
6248 	if (sdata->vif.p2p ||
6249 	    sdata->vif.driver_flags & IEEE80211_VIF_GET_NOA_UPDATE) {
6250 		struct ieee80211_p2p_noa_attr noa = {};
6251 		int ret;
6252 
6253 		ret = cfg80211_get_p2p_attr(variable,
6254 					    len - baselen,
6255 					    IEEE80211_P2P_ATTR_ABSENCE_NOTICE,
6256 					    (u8 *) &noa, sizeof(noa));
6257 		if (ret >= 2) {
6258 			if (link->u.mgd.p2p_noa_index != noa.index) {
6259 				/* valid noa_attr and index changed */
6260 				link->u.mgd.p2p_noa_index = noa.index;
6261 				memcpy(&bss_conf->p2p_noa_attr, &noa, sizeof(noa));
6262 				changed |= BSS_CHANGED_P2P_PS;
6263 				/*
6264 				 * make sure we update all information, the CRC
6265 				 * mechanism doesn't look at P2P attributes.
6266 				 */
6267 				link->u.mgd.beacon_crc_valid = false;
6268 			}
6269 		} else if (link->u.mgd.p2p_noa_index != -1) {
6270 			/* noa_attr not found and we had valid noa_attr before */
6271 			link->u.mgd.p2p_noa_index = -1;
6272 			memset(&bss_conf->p2p_noa_attr, 0, sizeof(bss_conf->p2p_noa_attr));
6273 			changed |= BSS_CHANGED_P2P_PS;
6274 			link->u.mgd.beacon_crc_valid = false;
6275 		}
6276 	}
6277 
6278 	if (link->u.mgd.csa_waiting_bcn)
6279 		ieee80211_chswitch_post_beacon(link);
6280 
6281 	/*
6282 	 * Update beacon timing and dtim count on every beacon appearance. This
6283 	 * will allow the driver to use the most updated values. Do it before
6284 	 * comparing this one with last received beacon.
6285 	 * IMPORTANT: These parameters would possibly be out of sync by the time
6286 	 * the driver will use them. The synchronized view is currently
6287 	 * guaranteed only in certain callbacks.
6288 	 */
6289 	if (ieee80211_hw_check(&local->hw, TIMING_BEACON_ONLY) &&
6290 	    !ieee80211_is_s1g_beacon(hdr->frame_control)) {
6291 		link->conf->sync_tsf =
6292 			le64_to_cpu(mgmt->u.beacon.timestamp);
6293 		link->conf->sync_device_ts =
6294 			rx_status->device_timestamp;
6295 		link->conf->sync_dtim_count = elems->dtim_count;
6296 	}
6297 
6298 	if ((ncrc == link->u.mgd.beacon_crc && link->u.mgd.beacon_crc_valid) ||
6299 	    ieee80211_is_s1g_short_beacon(mgmt->frame_control))
6300 		goto free;
6301 	link->u.mgd.beacon_crc = ncrc;
6302 	link->u.mgd.beacon_crc_valid = true;
6303 
6304 	ieee80211_rx_bss_info(link, mgmt, len, rx_status);
6305 
6306 	ieee80211_sta_process_chanswitch(link, rx_status->mactime,
6307 					 rx_status->device_timestamp,
6308 					 elems, true);
6309 
6310 	if (!link->u.mgd.disable_wmm_tracking &&
6311 	    ieee80211_sta_wmm_params(local, link, elems->wmm_param,
6312 				     elems->wmm_param_len,
6313 				     elems->mu_edca_param_set))
6314 		changed |= BSS_CHANGED_QOS;
6315 
6316 	/*
6317 	 * If we haven't had a beacon before, tell the driver about the
6318 	 * DTIM period (and beacon timing if desired) now.
6319 	 */
6320 	if (!link->u.mgd.have_beacon) {
6321 		/* a few bogus AP send dtim_period = 0 or no TIM IE */
6322 		bss_conf->dtim_period = elems->dtim_period ?: 1;
6323 
6324 		changed |= BSS_CHANGED_BEACON_INFO;
6325 		link->u.mgd.have_beacon = true;
6326 
6327 		ieee80211_recalc_ps(local);
6328 
6329 		ieee80211_recalc_ps_vif(sdata);
6330 	}
6331 
6332 	if (elems->erp_info) {
6333 		erp_valid = true;
6334 		erp_value = elems->erp_info[0];
6335 	} else {
6336 		erp_valid = false;
6337 	}
6338 
6339 	if (!ieee80211_is_s1g_beacon(hdr->frame_control))
6340 		changed |= ieee80211_handle_bss_capability(link,
6341 				le16_to_cpu(mgmt->u.beacon.capab_info),
6342 				erp_valid, erp_value);
6343 
6344 	sta = sta_info_get(sdata, sdata->vif.cfg.ap_addr);
6345 	if (WARN_ON(!sta)) {
6346 		goto free;
6347 	}
6348 	link_sta = rcu_dereference_protected(sta->link[link->link_id],
6349 					     lockdep_is_held(&local->hw.wiphy->mtx));
6350 	if (WARN_ON(!link_sta)) {
6351 		goto free;
6352 	}
6353 
6354 	if (WARN_ON(!link->conf->chandef.chan))
6355 		goto free;
6356 
6357 	sband = local->hw.wiphy->bands[link->conf->chandef.chan->band];
6358 
6359 	changed |= ieee80211_recalc_twt_req(sdata, sband, link, link_sta, elems);
6360 
6361 	if (ieee80211_config_bw(link, elems->ht_cap_elem,
6362 				elems->vht_cap_elem, elems->ht_operation,
6363 				elems->vht_operation, elems->he_operation,
6364 				elems->eht_operation,
6365 				elems->s1g_oper, bssid, &changed)) {
6366 		sdata_info(sdata,
6367 			   "failed to follow AP %pM bandwidth change, disconnect\n",
6368 			   bssid);
6369 		ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH,
6370 				       WLAN_REASON_DEAUTH_LEAVING,
6371 				       true, deauth_buf);
6372 		ieee80211_report_disconnect(sdata, deauth_buf,
6373 					    sizeof(deauth_buf), true,
6374 					    WLAN_REASON_DEAUTH_LEAVING,
6375 					    false);
6376 		goto free;
6377 	}
6378 
6379 	if (elems->opmode_notif)
6380 		ieee80211_vht_handle_opmode(sdata, link_sta,
6381 					    *elems->opmode_notif,
6382 					    rx_status->band);
6383 
6384 	changed |= ieee80211_handle_pwr_constr(link, chan, mgmt,
6385 					       elems->country_elem,
6386 					       elems->country_elem_len,
6387 					       elems->pwr_constr_elem,
6388 					       elems->cisco_dtpc_elem);
6389 
6390 	if (elems->eht_operation &&
6391 	    !(link->u.mgd.conn_flags & IEEE80211_CONN_DISABLE_EHT)) {
6392 		if (!ieee80211_config_puncturing(link, elems->eht_operation,
6393 						 &changed)) {
6394 			ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH,
6395 					       WLAN_REASON_DEAUTH_LEAVING,
6396 					       true, deauth_buf);
6397 			ieee80211_report_disconnect(sdata, deauth_buf,
6398 						    sizeof(deauth_buf), true,
6399 						    WLAN_REASON_DEAUTH_LEAVING,
6400 						    false);
6401 			goto free;
6402 		}
6403 	}
6404 
6405 	ieee80211_ml_reconfiguration(sdata, elems);
6406 	ieee80211_process_adv_ttlm(sdata, elems,
6407 				      le64_to_cpu(mgmt->u.beacon.timestamp));
6408 
6409 	ieee80211_link_info_change_notify(sdata, link, changed);
6410 free:
6411 	kfree(elems);
6412 }
6413 
6414 void ieee80211_sta_rx_queued_ext(struct ieee80211_sub_if_data *sdata,
6415 				 struct sk_buff *skb)
6416 {
6417 	struct ieee80211_link_data *link = &sdata->deflink;
6418 	struct ieee80211_rx_status *rx_status;
6419 	struct ieee80211_hdr *hdr;
6420 	u16 fc;
6421 
6422 	lockdep_assert_wiphy(sdata->local->hw.wiphy);
6423 
6424 	rx_status = (struct ieee80211_rx_status *) skb->cb;
6425 	hdr = (struct ieee80211_hdr *) skb->data;
6426 	fc = le16_to_cpu(hdr->frame_control);
6427 
6428 	switch (fc & IEEE80211_FCTL_STYPE) {
6429 	case IEEE80211_STYPE_S1G_BEACON:
6430 		ieee80211_rx_mgmt_beacon(link, hdr, skb->len, rx_status);
6431 		break;
6432 	}
6433 }
6434 
6435 void ieee80211_sta_rx_queued_mgmt(struct ieee80211_sub_if_data *sdata,
6436 				  struct sk_buff *skb)
6437 {
6438 	struct ieee80211_link_data *link = &sdata->deflink;
6439 	struct ieee80211_rx_status *rx_status;
6440 	struct ieee80211_mgmt *mgmt;
6441 	u16 fc;
6442 	int ies_len;
6443 
6444 	lockdep_assert_wiphy(sdata->local->hw.wiphy);
6445 
6446 	rx_status = (struct ieee80211_rx_status *) skb->cb;
6447 	mgmt = (struct ieee80211_mgmt *) skb->data;
6448 	fc = le16_to_cpu(mgmt->frame_control);
6449 
6450 	if (rx_status->link_valid) {
6451 		link = sdata_dereference(sdata->link[rx_status->link_id],
6452 					 sdata);
6453 		if (!link)
6454 			return;
6455 	}
6456 
6457 	switch (fc & IEEE80211_FCTL_STYPE) {
6458 	case IEEE80211_STYPE_BEACON:
6459 		ieee80211_rx_mgmt_beacon(link, (void *)mgmt,
6460 					 skb->len, rx_status);
6461 		break;
6462 	case IEEE80211_STYPE_PROBE_RESP:
6463 		ieee80211_rx_mgmt_probe_resp(link, skb);
6464 		break;
6465 	case IEEE80211_STYPE_AUTH:
6466 		ieee80211_rx_mgmt_auth(sdata, mgmt, skb->len);
6467 		break;
6468 	case IEEE80211_STYPE_DEAUTH:
6469 		ieee80211_rx_mgmt_deauth(sdata, mgmt, skb->len);
6470 		break;
6471 	case IEEE80211_STYPE_DISASSOC:
6472 		ieee80211_rx_mgmt_disassoc(sdata, mgmt, skb->len);
6473 		break;
6474 	case IEEE80211_STYPE_ASSOC_RESP:
6475 	case IEEE80211_STYPE_REASSOC_RESP:
6476 		ieee80211_rx_mgmt_assoc_resp(sdata, mgmt, skb->len);
6477 		break;
6478 	case IEEE80211_STYPE_ACTION:
6479 		if (!sdata->u.mgd.associated ||
6480 		    !ether_addr_equal(mgmt->bssid, sdata->vif.cfg.ap_addr))
6481 			break;
6482 
6483 		if (mgmt->u.action.category == WLAN_CATEGORY_SPECTRUM_MGMT) {
6484 			struct ieee802_11_elems *elems;
6485 
6486 			ies_len = skb->len -
6487 				  offsetof(struct ieee80211_mgmt,
6488 					   u.action.u.chan_switch.variable);
6489 
6490 			if (ies_len < 0)
6491 				break;
6492 
6493 			/* CSA IE cannot be overridden, no need for BSSID */
6494 			elems = ieee802_11_parse_elems(
6495 					mgmt->u.action.u.chan_switch.variable,
6496 					ies_len, true, NULL);
6497 
6498 			if (elems && !elems->parse_error)
6499 				ieee80211_sta_process_chanswitch(link,
6500 								 rx_status->mactime,
6501 								 rx_status->device_timestamp,
6502 								 elems, false);
6503 			kfree(elems);
6504 		} else if (mgmt->u.action.category == WLAN_CATEGORY_PUBLIC) {
6505 			struct ieee802_11_elems *elems;
6506 
6507 			ies_len = skb->len -
6508 				  offsetof(struct ieee80211_mgmt,
6509 					   u.action.u.ext_chan_switch.variable);
6510 
6511 			if (ies_len < 0)
6512 				break;
6513 
6514 			/*
6515 			 * extended CSA IE can't be overridden, no need for
6516 			 * BSSID
6517 			 */
6518 			elems = ieee802_11_parse_elems(
6519 					mgmt->u.action.u.ext_chan_switch.variable,
6520 					ies_len, true, NULL);
6521 
6522 			if (elems && !elems->parse_error) {
6523 				/* for the handling code pretend it was an IE */
6524 				elems->ext_chansw_ie =
6525 					&mgmt->u.action.u.ext_chan_switch.data;
6526 
6527 				ieee80211_sta_process_chanswitch(link,
6528 								 rx_status->mactime,
6529 								 rx_status->device_timestamp,
6530 								 elems, false);
6531 			}
6532 
6533 			kfree(elems);
6534 		}
6535 		break;
6536 	}
6537 }
6538 
6539 static void ieee80211_sta_timer(struct timer_list *t)
6540 {
6541 	struct ieee80211_sub_if_data *sdata =
6542 		from_timer(sdata, t, u.mgd.timer);
6543 
6544 	wiphy_work_queue(sdata->local->hw.wiphy, &sdata->work);
6545 }
6546 
6547 void ieee80211_sta_connection_lost(struct ieee80211_sub_if_data *sdata,
6548 				   u8 reason, bool tx)
6549 {
6550 	u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN];
6551 
6552 	ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH, reason,
6553 			       tx, frame_buf);
6554 
6555 	ieee80211_report_disconnect(sdata, frame_buf, sizeof(frame_buf), true,
6556 				    reason, false);
6557 }
6558 
6559 static int ieee80211_auth(struct ieee80211_sub_if_data *sdata)
6560 {
6561 	struct ieee80211_local *local = sdata->local;
6562 	struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
6563 	struct ieee80211_mgd_auth_data *auth_data = ifmgd->auth_data;
6564 	u32 tx_flags = 0;
6565 	u16 trans = 1;
6566 	u16 status = 0;
6567 	struct ieee80211_prep_tx_info info = {
6568 		.subtype = IEEE80211_STYPE_AUTH,
6569 	};
6570 
6571 	lockdep_assert_wiphy(sdata->local->hw.wiphy);
6572 
6573 	if (WARN_ON_ONCE(!auth_data))
6574 		return -EINVAL;
6575 
6576 	auth_data->tries++;
6577 
6578 	if (auth_data->tries > IEEE80211_AUTH_MAX_TRIES) {
6579 		sdata_info(sdata, "authentication with %pM timed out\n",
6580 			   auth_data->ap_addr);
6581 
6582 		/*
6583 		 * Most likely AP is not in the range so remove the
6584 		 * bss struct for that AP.
6585 		 */
6586 		cfg80211_unlink_bss(local->hw.wiphy, auth_data->bss);
6587 
6588 		return -ETIMEDOUT;
6589 	}
6590 
6591 	if (auth_data->algorithm == WLAN_AUTH_SAE)
6592 		info.duration = jiffies_to_msecs(IEEE80211_AUTH_TIMEOUT_SAE);
6593 
6594 	info.link_id = auth_data->link_id;
6595 	drv_mgd_prepare_tx(local, sdata, &info);
6596 
6597 	sdata_info(sdata, "send auth to %pM (try %d/%d)\n",
6598 		   auth_data->ap_addr, auth_data->tries,
6599 		   IEEE80211_AUTH_MAX_TRIES);
6600 
6601 	auth_data->expected_transaction = 2;
6602 
6603 	if (auth_data->algorithm == WLAN_AUTH_SAE) {
6604 		trans = auth_data->sae_trans;
6605 		status = auth_data->sae_status;
6606 		auth_data->expected_transaction = trans;
6607 	}
6608 
6609 	if (ieee80211_hw_check(&local->hw, REPORTS_TX_ACK_STATUS))
6610 		tx_flags = IEEE80211_TX_CTL_REQ_TX_STATUS |
6611 			   IEEE80211_TX_INTFL_MLME_CONN_TX;
6612 
6613 	ieee80211_send_auth(sdata, trans, auth_data->algorithm, status,
6614 			    auth_data->data, auth_data->data_len,
6615 			    auth_data->ap_addr, auth_data->ap_addr,
6616 			    NULL, 0, 0, tx_flags);
6617 
6618 	if (tx_flags == 0) {
6619 		if (auth_data->algorithm == WLAN_AUTH_SAE)
6620 			auth_data->timeout = jiffies +
6621 				IEEE80211_AUTH_TIMEOUT_SAE;
6622 		else
6623 			auth_data->timeout = jiffies + IEEE80211_AUTH_TIMEOUT;
6624 	} else {
6625 		auth_data->timeout =
6626 			round_jiffies_up(jiffies + IEEE80211_AUTH_TIMEOUT_LONG);
6627 	}
6628 
6629 	auth_data->timeout_started = true;
6630 	run_again(sdata, auth_data->timeout);
6631 
6632 	return 0;
6633 }
6634 
6635 static int ieee80211_do_assoc(struct ieee80211_sub_if_data *sdata)
6636 {
6637 	struct ieee80211_mgd_assoc_data *assoc_data = sdata->u.mgd.assoc_data;
6638 	struct ieee80211_local *local = sdata->local;
6639 	int ret;
6640 
6641 	lockdep_assert_wiphy(sdata->local->hw.wiphy);
6642 
6643 	assoc_data->tries++;
6644 	if (assoc_data->tries > IEEE80211_ASSOC_MAX_TRIES) {
6645 		sdata_info(sdata, "association with %pM timed out\n",
6646 			   assoc_data->ap_addr);
6647 
6648 		/*
6649 		 * Most likely AP is not in the range so remove the
6650 		 * bss struct for that AP.
6651 		 */
6652 		cfg80211_unlink_bss(local->hw.wiphy,
6653 				    assoc_data->link[assoc_data->assoc_link_id].bss);
6654 
6655 		return -ETIMEDOUT;
6656 	}
6657 
6658 	sdata_info(sdata, "associate with %pM (try %d/%d)\n",
6659 		   assoc_data->ap_addr, assoc_data->tries,
6660 		   IEEE80211_ASSOC_MAX_TRIES);
6661 	ret = ieee80211_send_assoc(sdata);
6662 	if (ret)
6663 		return ret;
6664 
6665 	if (!ieee80211_hw_check(&local->hw, REPORTS_TX_ACK_STATUS)) {
6666 		assoc_data->timeout = jiffies + IEEE80211_ASSOC_TIMEOUT;
6667 		assoc_data->timeout_started = true;
6668 		run_again(sdata, assoc_data->timeout);
6669 	} else {
6670 		assoc_data->timeout =
6671 			round_jiffies_up(jiffies +
6672 					 IEEE80211_ASSOC_TIMEOUT_LONG);
6673 		assoc_data->timeout_started = true;
6674 		run_again(sdata, assoc_data->timeout);
6675 	}
6676 
6677 	return 0;
6678 }
6679 
6680 void ieee80211_mgd_conn_tx_status(struct ieee80211_sub_if_data *sdata,
6681 				  __le16 fc, bool acked)
6682 {
6683 	struct ieee80211_local *local = sdata->local;
6684 
6685 	sdata->u.mgd.status_fc = fc;
6686 	sdata->u.mgd.status_acked = acked;
6687 	sdata->u.mgd.status_received = true;
6688 
6689 	wiphy_work_queue(local->hw.wiphy, &sdata->work);
6690 }
6691 
6692 void ieee80211_sta_work(struct ieee80211_sub_if_data *sdata)
6693 {
6694 	struct ieee80211_local *local = sdata->local;
6695 	struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
6696 
6697 	lockdep_assert_wiphy(sdata->local->hw.wiphy);
6698 
6699 	if (ifmgd->status_received) {
6700 		__le16 fc = ifmgd->status_fc;
6701 		bool status_acked = ifmgd->status_acked;
6702 
6703 		ifmgd->status_received = false;
6704 		if (ifmgd->auth_data && ieee80211_is_auth(fc)) {
6705 			if (status_acked) {
6706 				if (ifmgd->auth_data->algorithm ==
6707 				    WLAN_AUTH_SAE)
6708 					ifmgd->auth_data->timeout =
6709 						jiffies +
6710 						IEEE80211_AUTH_TIMEOUT_SAE;
6711 				else
6712 					ifmgd->auth_data->timeout =
6713 						jiffies +
6714 						IEEE80211_AUTH_TIMEOUT_SHORT;
6715 				run_again(sdata, ifmgd->auth_data->timeout);
6716 			} else {
6717 				ifmgd->auth_data->timeout = jiffies - 1;
6718 			}
6719 			ifmgd->auth_data->timeout_started = true;
6720 		} else if (ifmgd->assoc_data &&
6721 			   (ieee80211_is_assoc_req(fc) ||
6722 			    ieee80211_is_reassoc_req(fc))) {
6723 			if (status_acked) {
6724 				ifmgd->assoc_data->timeout =
6725 					jiffies + IEEE80211_ASSOC_TIMEOUT_SHORT;
6726 				run_again(sdata, ifmgd->assoc_data->timeout);
6727 			} else {
6728 				ifmgd->assoc_data->timeout = jiffies - 1;
6729 			}
6730 			ifmgd->assoc_data->timeout_started = true;
6731 		}
6732 	}
6733 
6734 	if (ifmgd->auth_data && ifmgd->auth_data->timeout_started &&
6735 	    time_after(jiffies, ifmgd->auth_data->timeout)) {
6736 		if (ifmgd->auth_data->done || ifmgd->auth_data->waiting) {
6737 			/*
6738 			 * ok ... we waited for assoc or continuation but
6739 			 * userspace didn't do it, so kill the auth data
6740 			 */
6741 			ieee80211_destroy_auth_data(sdata, false);
6742 		} else if (ieee80211_auth(sdata)) {
6743 			u8 ap_addr[ETH_ALEN];
6744 			struct ieee80211_event event = {
6745 				.type = MLME_EVENT,
6746 				.u.mlme.data = AUTH_EVENT,
6747 				.u.mlme.status = MLME_TIMEOUT,
6748 			};
6749 
6750 			memcpy(ap_addr, ifmgd->auth_data->ap_addr, ETH_ALEN);
6751 
6752 			ieee80211_destroy_auth_data(sdata, false);
6753 
6754 			cfg80211_auth_timeout(sdata->dev, ap_addr);
6755 			drv_event_callback(sdata->local, sdata, &event);
6756 		}
6757 	} else if (ifmgd->auth_data && ifmgd->auth_data->timeout_started)
6758 		run_again(sdata, ifmgd->auth_data->timeout);
6759 
6760 	if (ifmgd->assoc_data && ifmgd->assoc_data->timeout_started &&
6761 	    time_after(jiffies, ifmgd->assoc_data->timeout)) {
6762 		if ((ifmgd->assoc_data->need_beacon &&
6763 		     !sdata->deflink.u.mgd.have_beacon) ||
6764 		    ieee80211_do_assoc(sdata)) {
6765 			struct ieee80211_event event = {
6766 				.type = MLME_EVENT,
6767 				.u.mlme.data = ASSOC_EVENT,
6768 				.u.mlme.status = MLME_TIMEOUT,
6769 			};
6770 
6771 			ieee80211_destroy_assoc_data(sdata, ASSOC_TIMEOUT);
6772 			drv_event_callback(sdata->local, sdata, &event);
6773 		}
6774 	} else if (ifmgd->assoc_data && ifmgd->assoc_data->timeout_started)
6775 		run_again(sdata, ifmgd->assoc_data->timeout);
6776 
6777 	if (ifmgd->flags & IEEE80211_STA_CONNECTION_POLL &&
6778 	    ifmgd->associated) {
6779 		u8 *bssid = sdata->deflink.u.mgd.bssid;
6780 		int max_tries;
6781 
6782 		if (ieee80211_hw_check(&local->hw, REPORTS_TX_ACK_STATUS))
6783 			max_tries = max_nullfunc_tries;
6784 		else
6785 			max_tries = max_probe_tries;
6786 
6787 		/* ACK received for nullfunc probing frame */
6788 		if (!ifmgd->probe_send_count)
6789 			ieee80211_reset_ap_probe(sdata);
6790 		else if (ifmgd->nullfunc_failed) {
6791 			if (ifmgd->probe_send_count < max_tries) {
6792 				mlme_dbg(sdata,
6793 					 "No ack for nullfunc frame to AP %pM, try %d/%i\n",
6794 					 bssid, ifmgd->probe_send_count,
6795 					 max_tries);
6796 				ieee80211_mgd_probe_ap_send(sdata);
6797 			} else {
6798 				mlme_dbg(sdata,
6799 					 "No ack for nullfunc frame to AP %pM, disconnecting.\n",
6800 					 bssid);
6801 				ieee80211_sta_connection_lost(sdata,
6802 					WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY,
6803 					false);
6804 			}
6805 		} else if (time_is_after_jiffies(ifmgd->probe_timeout))
6806 			run_again(sdata, ifmgd->probe_timeout);
6807 		else if (ieee80211_hw_check(&local->hw, REPORTS_TX_ACK_STATUS)) {
6808 			mlme_dbg(sdata,
6809 				 "Failed to send nullfunc to AP %pM after %dms, disconnecting\n",
6810 				 bssid, probe_wait_ms);
6811 			ieee80211_sta_connection_lost(sdata,
6812 				WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY, false);
6813 		} else if (ifmgd->probe_send_count < max_tries) {
6814 			mlme_dbg(sdata,
6815 				 "No probe response from AP %pM after %dms, try %d/%i\n",
6816 				 bssid, probe_wait_ms,
6817 				 ifmgd->probe_send_count, max_tries);
6818 			ieee80211_mgd_probe_ap_send(sdata);
6819 		} else {
6820 			/*
6821 			 * We actually lost the connection ... or did we?
6822 			 * Let's make sure!
6823 			 */
6824 			mlme_dbg(sdata,
6825 				 "No probe response from AP %pM after %dms, disconnecting.\n",
6826 				 bssid, probe_wait_ms);
6827 
6828 			ieee80211_sta_connection_lost(sdata,
6829 				WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY, false);
6830 		}
6831 	}
6832 }
6833 
6834 static void ieee80211_sta_bcn_mon_timer(struct timer_list *t)
6835 {
6836 	struct ieee80211_sub_if_data *sdata =
6837 		from_timer(sdata, t, u.mgd.bcn_mon_timer);
6838 
6839 	if (WARN_ON(ieee80211_vif_is_mld(&sdata->vif)))
6840 		return;
6841 
6842 	if (sdata->vif.bss_conf.csa_active &&
6843 	    !sdata->deflink.u.mgd.csa_waiting_bcn)
6844 		return;
6845 
6846 	if (sdata->vif.driver_flags & IEEE80211_VIF_BEACON_FILTER)
6847 		return;
6848 
6849 	sdata->u.mgd.connection_loss = false;
6850 	wiphy_work_queue(sdata->local->hw.wiphy,
6851 			 &sdata->u.mgd.beacon_connection_loss_work);
6852 }
6853 
6854 static void ieee80211_sta_conn_mon_timer(struct timer_list *t)
6855 {
6856 	struct ieee80211_sub_if_data *sdata =
6857 		from_timer(sdata, t, u.mgd.conn_mon_timer);
6858 	struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
6859 	struct ieee80211_local *local = sdata->local;
6860 	struct sta_info *sta;
6861 	unsigned long timeout;
6862 
6863 	if (WARN_ON(ieee80211_vif_is_mld(&sdata->vif)))
6864 		return;
6865 
6866 	if (sdata->vif.bss_conf.csa_active &&
6867 	    !sdata->deflink.u.mgd.csa_waiting_bcn)
6868 		return;
6869 
6870 	sta = sta_info_get(sdata, sdata->vif.cfg.ap_addr);
6871 	if (!sta)
6872 		return;
6873 
6874 	timeout = sta->deflink.status_stats.last_ack;
6875 	if (time_before(sta->deflink.status_stats.last_ack, sta->deflink.rx_stats.last_rx))
6876 		timeout = sta->deflink.rx_stats.last_rx;
6877 	timeout += IEEE80211_CONNECTION_IDLE_TIME;
6878 
6879 	/* If timeout is after now, then update timer to fire at
6880 	 * the later date, but do not actually probe at this time.
6881 	 */
6882 	if (time_is_after_jiffies(timeout)) {
6883 		mod_timer(&ifmgd->conn_mon_timer, round_jiffies_up(timeout));
6884 		return;
6885 	}
6886 
6887 	wiphy_work_queue(local->hw.wiphy, &sdata->u.mgd.monitor_work);
6888 }
6889 
6890 static void ieee80211_sta_monitor_work(struct wiphy *wiphy,
6891 				       struct wiphy_work *work)
6892 {
6893 	struct ieee80211_sub_if_data *sdata =
6894 		container_of(work, struct ieee80211_sub_if_data,
6895 			     u.mgd.monitor_work);
6896 
6897 	ieee80211_mgd_probe_ap(sdata, false);
6898 }
6899 
6900 static void ieee80211_restart_sta_timer(struct ieee80211_sub_if_data *sdata)
6901 {
6902 	if (sdata->vif.type == NL80211_IFTYPE_STATION) {
6903 		__ieee80211_stop_poll(sdata);
6904 
6905 		/* let's probe the connection once */
6906 		if (!ieee80211_hw_check(&sdata->local->hw, CONNECTION_MONITOR))
6907 			wiphy_work_queue(sdata->local->hw.wiphy,
6908 					 &sdata->u.mgd.monitor_work);
6909 	}
6910 }
6911 
6912 #ifdef CONFIG_PM
6913 void ieee80211_mgd_quiesce(struct ieee80211_sub_if_data *sdata)
6914 {
6915 	struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
6916 	u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN];
6917 
6918 	lockdep_assert_wiphy(sdata->local->hw.wiphy);
6919 
6920 	if (ifmgd->auth_data || ifmgd->assoc_data) {
6921 		const u8 *ap_addr = ifmgd->auth_data ?
6922 				ifmgd->auth_data->ap_addr :
6923 				ifmgd->assoc_data->ap_addr;
6924 
6925 		/*
6926 		 * If we are trying to authenticate / associate while suspending,
6927 		 * cfg80211 won't know and won't actually abort those attempts,
6928 		 * thus we need to do that ourselves.
6929 		 */
6930 		ieee80211_send_deauth_disassoc(sdata, ap_addr, ap_addr,
6931 					       IEEE80211_STYPE_DEAUTH,
6932 					       WLAN_REASON_DEAUTH_LEAVING,
6933 					       false, frame_buf);
6934 		if (ifmgd->assoc_data)
6935 			ieee80211_destroy_assoc_data(sdata, ASSOC_ABANDON);
6936 		if (ifmgd->auth_data)
6937 			ieee80211_destroy_auth_data(sdata, false);
6938 		cfg80211_tx_mlme_mgmt(sdata->dev, frame_buf,
6939 				      IEEE80211_DEAUTH_FRAME_LEN,
6940 				      false);
6941 	}
6942 
6943 	/* This is a bit of a hack - we should find a better and more generic
6944 	 * solution to this. Normally when suspending, cfg80211 will in fact
6945 	 * deauthenticate. However, it doesn't (and cannot) stop an ongoing
6946 	 * auth (not so important) or assoc (this is the problem) process.
6947 	 *
6948 	 * As a consequence, it can happen that we are in the process of both
6949 	 * associating and suspending, and receive an association response
6950 	 * after cfg80211 has checked if it needs to disconnect, but before
6951 	 * we actually set the flag to drop incoming frames. This will then
6952 	 * cause the workqueue flush to process the association response in
6953 	 * the suspend, resulting in a successful association just before it
6954 	 * tries to remove the interface from the driver, which now though
6955 	 * has a channel context assigned ... this results in issues.
6956 	 *
6957 	 * To work around this (for now) simply deauth here again if we're
6958 	 * now connected.
6959 	 */
6960 	if (ifmgd->associated && !sdata->local->wowlan) {
6961 		u8 bssid[ETH_ALEN];
6962 		struct cfg80211_deauth_request req = {
6963 			.reason_code = WLAN_REASON_DEAUTH_LEAVING,
6964 			.bssid = bssid,
6965 		};
6966 
6967 		memcpy(bssid, sdata->vif.cfg.ap_addr, ETH_ALEN);
6968 		ieee80211_mgd_deauth(sdata, &req);
6969 	}
6970 }
6971 #endif
6972 
6973 void ieee80211_sta_restart(struct ieee80211_sub_if_data *sdata)
6974 {
6975 	struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
6976 
6977 	lockdep_assert_wiphy(sdata->local->hw.wiphy);
6978 
6979 	if (!ifmgd->associated)
6980 		return;
6981 
6982 	if (sdata->flags & IEEE80211_SDATA_DISCONNECT_RESUME) {
6983 		sdata->flags &= ~IEEE80211_SDATA_DISCONNECT_RESUME;
6984 		mlme_dbg(sdata, "driver requested disconnect after resume\n");
6985 		ieee80211_sta_connection_lost(sdata,
6986 					      WLAN_REASON_UNSPECIFIED,
6987 					      true);
6988 		return;
6989 	}
6990 
6991 	if (sdata->flags & IEEE80211_SDATA_DISCONNECT_HW_RESTART) {
6992 		sdata->flags &= ~IEEE80211_SDATA_DISCONNECT_HW_RESTART;
6993 		mlme_dbg(sdata, "driver requested disconnect after hardware restart\n");
6994 		ieee80211_sta_connection_lost(sdata,
6995 					      WLAN_REASON_UNSPECIFIED,
6996 					      true);
6997 		return;
6998 	}
6999 }
7000 
7001 static void ieee80211_request_smps_mgd_work(struct wiphy *wiphy,
7002 					    struct wiphy_work *work)
7003 {
7004 	struct ieee80211_link_data *link =
7005 		container_of(work, struct ieee80211_link_data,
7006 			     u.mgd.request_smps_work);
7007 
7008 	__ieee80211_request_smps_mgd(link->sdata, link,
7009 				     link->u.mgd.driver_smps_mode);
7010 }
7011 
7012 /* interface setup */
7013 void ieee80211_sta_setup_sdata(struct ieee80211_sub_if_data *sdata)
7014 {
7015 	struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
7016 
7017 	wiphy_work_init(&ifmgd->monitor_work, ieee80211_sta_monitor_work);
7018 	wiphy_work_init(&ifmgd->beacon_connection_loss_work,
7019 			ieee80211_beacon_connection_loss_work);
7020 	wiphy_work_init(&ifmgd->csa_connection_drop_work,
7021 			ieee80211_csa_connection_drop_work);
7022 	wiphy_delayed_work_init(&ifmgd->tdls_peer_del_work,
7023 				ieee80211_tdls_peer_del_work);
7024 	wiphy_delayed_work_init(&ifmgd->ml_reconf_work,
7025 				ieee80211_ml_reconf_work);
7026 	timer_setup(&ifmgd->timer, ieee80211_sta_timer, 0);
7027 	timer_setup(&ifmgd->bcn_mon_timer, ieee80211_sta_bcn_mon_timer, 0);
7028 	timer_setup(&ifmgd->conn_mon_timer, ieee80211_sta_conn_mon_timer, 0);
7029 	wiphy_delayed_work_init(&ifmgd->tx_tspec_wk,
7030 				ieee80211_sta_handle_tspec_ac_params_wk);
7031 	wiphy_delayed_work_init(&ifmgd->ttlm_work,
7032 				ieee80211_tid_to_link_map_work);
7033 
7034 	ifmgd->flags = 0;
7035 	ifmgd->powersave = sdata->wdev.ps;
7036 	ifmgd->uapsd_queues = sdata->local->hw.uapsd_queues;
7037 	ifmgd->uapsd_max_sp_len = sdata->local->hw.uapsd_max_sp_len;
7038 	/* Setup TDLS data */
7039 	spin_lock_init(&ifmgd->teardown_lock);
7040 	ifmgd->teardown_skb = NULL;
7041 	ifmgd->orig_teardown_skb = NULL;
7042 }
7043 
7044 static void ieee80211_recalc_smps_work(struct wiphy *wiphy,
7045 				       struct wiphy_work *work)
7046 {
7047 	struct ieee80211_link_data *link =
7048 		container_of(work, struct ieee80211_link_data,
7049 			     u.mgd.recalc_smps);
7050 
7051 	ieee80211_recalc_smps(link->sdata, link);
7052 }
7053 
7054 void ieee80211_mgd_setup_link(struct ieee80211_link_data *link)
7055 {
7056 	struct ieee80211_sub_if_data *sdata = link->sdata;
7057 	struct ieee80211_local *local = sdata->local;
7058 	unsigned int link_id = link->link_id;
7059 
7060 	link->u.mgd.p2p_noa_index = -1;
7061 	link->u.mgd.conn_flags = 0;
7062 	link->conf->bssid = link->u.mgd.bssid;
7063 
7064 	wiphy_work_init(&link->u.mgd.request_smps_work,
7065 			ieee80211_request_smps_mgd_work);
7066 	wiphy_work_init(&link->u.mgd.recalc_smps,
7067 			ieee80211_recalc_smps_work);
7068 	if (local->hw.wiphy->features & NL80211_FEATURE_DYNAMIC_SMPS)
7069 		link->u.mgd.req_smps = IEEE80211_SMPS_AUTOMATIC;
7070 	else
7071 		link->u.mgd.req_smps = IEEE80211_SMPS_OFF;
7072 
7073 	wiphy_delayed_work_init(&link->u.mgd.chswitch_work,
7074 				ieee80211_chswitch_work);
7075 
7076 	if (sdata->u.mgd.assoc_data)
7077 		ether_addr_copy(link->conf->addr,
7078 				sdata->u.mgd.assoc_data->link[link_id].addr);
7079 	else if (!is_valid_ether_addr(link->conf->addr))
7080 		eth_random_addr(link->conf->addr);
7081 }
7082 
7083 /* scan finished notification */
7084 void ieee80211_mlme_notify_scan_completed(struct ieee80211_local *local)
7085 {
7086 	struct ieee80211_sub_if_data *sdata;
7087 
7088 	/* Restart STA timers */
7089 	rcu_read_lock();
7090 	list_for_each_entry_rcu(sdata, &local->interfaces, list) {
7091 		if (ieee80211_sdata_running(sdata))
7092 			ieee80211_restart_sta_timer(sdata);
7093 	}
7094 	rcu_read_unlock();
7095 }
7096 
7097 static int ieee80211_prep_connection(struct ieee80211_sub_if_data *sdata,
7098 				     struct cfg80211_bss *cbss, s8 link_id,
7099 				     const u8 *ap_mld_addr, bool assoc,
7100 				     bool override)
7101 {
7102 	struct ieee80211_local *local = sdata->local;
7103 	struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
7104 	struct ieee80211_bss *bss = (void *)cbss->priv;
7105 	struct sta_info *new_sta = NULL;
7106 	struct ieee80211_link_data *link;
7107 	bool have_sta = false;
7108 	bool mlo;
7109 	int err;
7110 
7111 	if (link_id >= 0) {
7112 		mlo = true;
7113 		if (WARN_ON(!ap_mld_addr))
7114 			return -EINVAL;
7115 		err = ieee80211_vif_set_links(sdata, BIT(link_id), 0);
7116 	} else {
7117 		if (WARN_ON(ap_mld_addr))
7118 			return -EINVAL;
7119 		ap_mld_addr = cbss->bssid;
7120 		err = ieee80211_vif_set_links(sdata, 0, 0);
7121 		link_id = 0;
7122 		mlo = false;
7123 	}
7124 
7125 	if (err)
7126 		return err;
7127 
7128 	link = sdata_dereference(sdata->link[link_id], sdata);
7129 	if (WARN_ON(!link)) {
7130 		err = -ENOLINK;
7131 		goto out_err;
7132 	}
7133 
7134 	if (WARN_ON(!ifmgd->auth_data && !ifmgd->assoc_data)) {
7135 		err = -EINVAL;
7136 		goto out_err;
7137 	}
7138 
7139 	/* If a reconfig is happening, bail out */
7140 	if (local->in_reconfig) {
7141 		err = -EBUSY;
7142 		goto out_err;
7143 	}
7144 
7145 	if (assoc) {
7146 		rcu_read_lock();
7147 		have_sta = sta_info_get(sdata, ap_mld_addr);
7148 		rcu_read_unlock();
7149 	}
7150 
7151 	if (!have_sta) {
7152 		if (mlo)
7153 			new_sta = sta_info_alloc_with_link(sdata, ap_mld_addr,
7154 							   link_id, cbss->bssid,
7155 							   GFP_KERNEL);
7156 		else
7157 			new_sta = sta_info_alloc(sdata, ap_mld_addr, GFP_KERNEL);
7158 
7159 		if (!new_sta) {
7160 			err = -ENOMEM;
7161 			goto out_err;
7162 		}
7163 
7164 		new_sta->sta.mlo = mlo;
7165 	}
7166 
7167 	/*
7168 	 * Set up the information for the new channel before setting the
7169 	 * new channel. We can't - completely race-free - change the basic
7170 	 * rates bitmap and the channel (sband) that it refers to, but if
7171 	 * we set it up before we at least avoid calling into the driver's
7172 	 * bss_info_changed() method with invalid information (since we do
7173 	 * call that from changing the channel - only for IDLE and perhaps
7174 	 * some others, but ...).
7175 	 *
7176 	 * So to avoid that, just set up all the new information before the
7177 	 * channel, but tell the driver to apply it only afterwards, since
7178 	 * it might need the new channel for that.
7179 	 */
7180 	if (new_sta) {
7181 		const struct cfg80211_bss_ies *ies;
7182 		struct link_sta_info *link_sta;
7183 
7184 		rcu_read_lock();
7185 		link_sta = rcu_dereference(new_sta->link[link_id]);
7186 		if (WARN_ON(!link_sta)) {
7187 			rcu_read_unlock();
7188 			sta_info_free(local, new_sta);
7189 			err = -EINVAL;
7190 			goto out_err;
7191 		}
7192 
7193 		err = ieee80211_mgd_setup_link_sta(link, new_sta,
7194 						   link_sta, cbss);
7195 		if (err) {
7196 			rcu_read_unlock();
7197 			sta_info_free(local, new_sta);
7198 			goto out_err;
7199 		}
7200 
7201 		memcpy(link->u.mgd.bssid, cbss->bssid, ETH_ALEN);
7202 
7203 		/* set timing information */
7204 		link->conf->beacon_int = cbss->beacon_interval;
7205 		ies = rcu_dereference(cbss->beacon_ies);
7206 		if (ies) {
7207 			link->conf->sync_tsf = ies->tsf;
7208 			link->conf->sync_device_ts =
7209 				bss->device_ts_beacon;
7210 
7211 			ieee80211_get_dtim(ies,
7212 					   &link->conf->sync_dtim_count,
7213 					   NULL);
7214 		} else if (!ieee80211_hw_check(&sdata->local->hw,
7215 					       TIMING_BEACON_ONLY)) {
7216 			ies = rcu_dereference(cbss->proberesp_ies);
7217 			/* must be non-NULL since beacon IEs were NULL */
7218 			link->conf->sync_tsf = ies->tsf;
7219 			link->conf->sync_device_ts =
7220 				bss->device_ts_presp;
7221 			link->conf->sync_dtim_count = 0;
7222 		} else {
7223 			link->conf->sync_tsf = 0;
7224 			link->conf->sync_device_ts = 0;
7225 			link->conf->sync_dtim_count = 0;
7226 		}
7227 		rcu_read_unlock();
7228 	}
7229 
7230 	if (new_sta || override) {
7231 		err = ieee80211_prep_channel(sdata, link, cbss, mlo,
7232 					     &link->u.mgd.conn_flags);
7233 		if (err) {
7234 			if (new_sta)
7235 				sta_info_free(local, new_sta);
7236 			goto out_err;
7237 		}
7238 	}
7239 
7240 	if (new_sta) {
7241 		/*
7242 		 * tell driver about BSSID, basic rates and timing
7243 		 * this was set up above, before setting the channel
7244 		 */
7245 		ieee80211_link_info_change_notify(sdata, link,
7246 						  BSS_CHANGED_BSSID |
7247 						  BSS_CHANGED_BASIC_RATES |
7248 						  BSS_CHANGED_BEACON_INT);
7249 
7250 		if (assoc)
7251 			sta_info_pre_move_state(new_sta, IEEE80211_STA_AUTH);
7252 
7253 		err = sta_info_insert(new_sta);
7254 		new_sta = NULL;
7255 		if (err) {
7256 			sdata_info(sdata,
7257 				   "failed to insert STA entry for the AP (error %d)\n",
7258 				   err);
7259 			goto out_err;
7260 		}
7261 	} else
7262 		WARN_ON_ONCE(!ether_addr_equal(link->u.mgd.bssid, cbss->bssid));
7263 
7264 	/* Cancel scan to ensure that nothing interferes with connection */
7265 	if (local->scanning)
7266 		ieee80211_scan_cancel(local);
7267 
7268 	return 0;
7269 
7270 out_err:
7271 	ieee80211_link_release_channel(&sdata->deflink);
7272 	ieee80211_vif_set_links(sdata, 0, 0);
7273 	return err;
7274 }
7275 
7276 /* config hooks */
7277 int ieee80211_mgd_auth(struct ieee80211_sub_if_data *sdata,
7278 		       struct cfg80211_auth_request *req)
7279 {
7280 	struct ieee80211_local *local = sdata->local;
7281 	struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
7282 	struct ieee80211_mgd_auth_data *auth_data;
7283 	struct ieee80211_link_data *link;
7284 	const struct element *csa_elem, *ecsa_elem;
7285 	u16 auth_alg;
7286 	int err;
7287 	bool cont_auth;
7288 
7289 	lockdep_assert_wiphy(sdata->local->hw.wiphy);
7290 
7291 	/* prepare auth data structure */
7292 
7293 	switch (req->auth_type) {
7294 	case NL80211_AUTHTYPE_OPEN_SYSTEM:
7295 		auth_alg = WLAN_AUTH_OPEN;
7296 		break;
7297 	case NL80211_AUTHTYPE_SHARED_KEY:
7298 		if (fips_enabled)
7299 			return -EOPNOTSUPP;
7300 		auth_alg = WLAN_AUTH_SHARED_KEY;
7301 		break;
7302 	case NL80211_AUTHTYPE_FT:
7303 		auth_alg = WLAN_AUTH_FT;
7304 		break;
7305 	case NL80211_AUTHTYPE_NETWORK_EAP:
7306 		auth_alg = WLAN_AUTH_LEAP;
7307 		break;
7308 	case NL80211_AUTHTYPE_SAE:
7309 		auth_alg = WLAN_AUTH_SAE;
7310 		break;
7311 	case NL80211_AUTHTYPE_FILS_SK:
7312 		auth_alg = WLAN_AUTH_FILS_SK;
7313 		break;
7314 	case NL80211_AUTHTYPE_FILS_SK_PFS:
7315 		auth_alg = WLAN_AUTH_FILS_SK_PFS;
7316 		break;
7317 	case NL80211_AUTHTYPE_FILS_PK:
7318 		auth_alg = WLAN_AUTH_FILS_PK;
7319 		break;
7320 	default:
7321 		return -EOPNOTSUPP;
7322 	}
7323 
7324 	if (ifmgd->assoc_data)
7325 		return -EBUSY;
7326 
7327 	rcu_read_lock();
7328 	csa_elem = ieee80211_bss_get_elem(req->bss, WLAN_EID_CHANNEL_SWITCH);
7329 	ecsa_elem = ieee80211_bss_get_elem(req->bss,
7330 					   WLAN_EID_EXT_CHANSWITCH_ANN);
7331 	if ((csa_elem &&
7332 	     csa_elem->datalen == sizeof(struct ieee80211_channel_sw_ie) &&
7333 	     ((struct ieee80211_channel_sw_ie *)csa_elem->data)->count != 0) ||
7334 	    (ecsa_elem &&
7335 	     ecsa_elem->datalen == sizeof(struct ieee80211_ext_chansw_ie) &&
7336 	     ((struct ieee80211_ext_chansw_ie *)ecsa_elem->data)->count != 0)) {
7337 		rcu_read_unlock();
7338 		sdata_info(sdata, "AP is in CSA process, reject auth\n");
7339 		return -EINVAL;
7340 	}
7341 	rcu_read_unlock();
7342 
7343 	auth_data = kzalloc(sizeof(*auth_data) + req->auth_data_len +
7344 			    req->ie_len, GFP_KERNEL);
7345 	if (!auth_data)
7346 		return -ENOMEM;
7347 
7348 	memcpy(auth_data->ap_addr,
7349 	       req->ap_mld_addr ?: req->bss->bssid,
7350 	       ETH_ALEN);
7351 	auth_data->bss = req->bss;
7352 	auth_data->link_id = req->link_id;
7353 
7354 	if (req->auth_data_len >= 4) {
7355 		if (req->auth_type == NL80211_AUTHTYPE_SAE) {
7356 			__le16 *pos = (__le16 *) req->auth_data;
7357 
7358 			auth_data->sae_trans = le16_to_cpu(pos[0]);
7359 			auth_data->sae_status = le16_to_cpu(pos[1]);
7360 		}
7361 		memcpy(auth_data->data, req->auth_data + 4,
7362 		       req->auth_data_len - 4);
7363 		auth_data->data_len += req->auth_data_len - 4;
7364 	}
7365 
7366 	/* Check if continuing authentication or trying to authenticate with the
7367 	 * same BSS that we were in the process of authenticating with and avoid
7368 	 * removal and re-addition of the STA entry in
7369 	 * ieee80211_prep_connection().
7370 	 */
7371 	cont_auth = ifmgd->auth_data && req->bss == ifmgd->auth_data->bss &&
7372 		    ifmgd->auth_data->link_id == req->link_id;
7373 
7374 	if (req->ie && req->ie_len) {
7375 		memcpy(&auth_data->data[auth_data->data_len],
7376 		       req->ie, req->ie_len);
7377 		auth_data->data_len += req->ie_len;
7378 	}
7379 
7380 	if (req->key && req->key_len) {
7381 		auth_data->key_len = req->key_len;
7382 		auth_data->key_idx = req->key_idx;
7383 		memcpy(auth_data->key, req->key, req->key_len);
7384 	}
7385 
7386 	auth_data->algorithm = auth_alg;
7387 
7388 	/* try to authenticate/probe */
7389 
7390 	if (ifmgd->auth_data) {
7391 		if (cont_auth && req->auth_type == NL80211_AUTHTYPE_SAE) {
7392 			auth_data->peer_confirmed =
7393 				ifmgd->auth_data->peer_confirmed;
7394 		}
7395 		ieee80211_destroy_auth_data(sdata, cont_auth);
7396 	}
7397 
7398 	/* prep auth_data so we don't go into idle on disassoc */
7399 	ifmgd->auth_data = auth_data;
7400 
7401 	/* If this is continuation of an ongoing SAE authentication exchange
7402 	 * (i.e., request to send SAE Confirm) and the peer has already
7403 	 * confirmed, mark authentication completed since we are about to send
7404 	 * out SAE Confirm.
7405 	 */
7406 	if (cont_auth && req->auth_type == NL80211_AUTHTYPE_SAE &&
7407 	    auth_data->peer_confirmed && auth_data->sae_trans == 2)
7408 		ieee80211_mark_sta_auth(sdata);
7409 
7410 	if (ifmgd->associated) {
7411 		u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN];
7412 
7413 		sdata_info(sdata,
7414 			   "disconnect from AP %pM for new auth to %pM\n",
7415 			   sdata->vif.cfg.ap_addr, auth_data->ap_addr);
7416 		ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH,
7417 				       WLAN_REASON_UNSPECIFIED,
7418 				       false, frame_buf);
7419 
7420 		ieee80211_report_disconnect(sdata, frame_buf,
7421 					    sizeof(frame_buf), true,
7422 					    WLAN_REASON_UNSPECIFIED,
7423 					    false);
7424 	}
7425 
7426 	/* needed for transmitting the auth frame(s) properly */
7427 	memcpy(sdata->vif.cfg.ap_addr, auth_data->ap_addr, ETH_ALEN);
7428 
7429 	err = ieee80211_prep_connection(sdata, req->bss, req->link_id,
7430 					req->ap_mld_addr, cont_auth, false);
7431 	if (err)
7432 		goto err_clear;
7433 
7434 	if (req->link_id > 0)
7435 		link = sdata_dereference(sdata->link[req->link_id], sdata);
7436 	else
7437 		link = sdata_dereference(sdata->link[0], sdata);
7438 
7439 	if (WARN_ON(!link)) {
7440 		err = -ENOLINK;
7441 		goto err_clear;
7442 	}
7443 
7444 	sdata_info(sdata, "authenticate with %pM (local address=%pM)\n",
7445 		   auth_data->ap_addr, link->conf->addr);
7446 
7447 	err = ieee80211_auth(sdata);
7448 	if (err) {
7449 		sta_info_destroy_addr(sdata, auth_data->ap_addr);
7450 		goto err_clear;
7451 	}
7452 
7453 	/* hold our own reference */
7454 	cfg80211_ref_bss(local->hw.wiphy, auth_data->bss);
7455 	return 0;
7456 
7457  err_clear:
7458 	if (!ieee80211_vif_is_mld(&sdata->vif)) {
7459 		eth_zero_addr(sdata->deflink.u.mgd.bssid);
7460 		ieee80211_link_info_change_notify(sdata, &sdata->deflink,
7461 						  BSS_CHANGED_BSSID);
7462 		ieee80211_link_release_channel(&sdata->deflink);
7463 	}
7464 	ifmgd->auth_data = NULL;
7465 	kfree(auth_data);
7466 	return err;
7467 }
7468 
7469 static ieee80211_conn_flags_t
7470 ieee80211_setup_assoc_link(struct ieee80211_sub_if_data *sdata,
7471 			   struct ieee80211_mgd_assoc_data *assoc_data,
7472 			   struct cfg80211_assoc_request *req,
7473 			   ieee80211_conn_flags_t conn_flags,
7474 			   unsigned int link_id)
7475 {
7476 	struct ieee80211_local *local = sdata->local;
7477 	const struct cfg80211_bss_ies *bss_ies;
7478 	struct ieee80211_supported_band *sband;
7479 	const struct element *ht_elem, *vht_elem;
7480 	struct ieee80211_link_data *link;
7481 	struct cfg80211_bss *cbss;
7482 	struct ieee80211_bss *bss;
7483 	bool is_5ghz, is_6ghz;
7484 
7485 	cbss = assoc_data->link[link_id].bss;
7486 	if (WARN_ON(!cbss))
7487 		return 0;
7488 
7489 	bss = (void *)cbss->priv;
7490 
7491 	sband = local->hw.wiphy->bands[cbss->channel->band];
7492 	if (WARN_ON(!sband))
7493 		return 0;
7494 
7495 	link = sdata_dereference(sdata->link[link_id], sdata);
7496 	if (WARN_ON(!link))
7497 		return 0;
7498 
7499 	is_5ghz = cbss->channel->band == NL80211_BAND_5GHZ;
7500 	is_6ghz = cbss->channel->band == NL80211_BAND_6GHZ;
7501 
7502 	/* for MLO connections assume advertising all rates is OK */
7503 	if (!req->ap_mld_addr) {
7504 		assoc_data->supp_rates = bss->supp_rates;
7505 		assoc_data->supp_rates_len = bss->supp_rates_len;
7506 	}
7507 
7508 	/* copy and link elems for the STA profile */
7509 	if (req->links[link_id].elems_len) {
7510 		memcpy(assoc_data->ie_pos, req->links[link_id].elems,
7511 		       req->links[link_id].elems_len);
7512 		assoc_data->link[link_id].elems = assoc_data->ie_pos;
7513 		assoc_data->link[link_id].elems_len = req->links[link_id].elems_len;
7514 		assoc_data->ie_pos += req->links[link_id].elems_len;
7515 	}
7516 
7517 	rcu_read_lock();
7518 	ht_elem = ieee80211_bss_get_elem(cbss, WLAN_EID_HT_OPERATION);
7519 	if (ht_elem && ht_elem->datalen >= sizeof(struct ieee80211_ht_operation))
7520 		assoc_data->link[link_id].ap_ht_param =
7521 			((struct ieee80211_ht_operation *)(ht_elem->data))->ht_param;
7522 	else if (!is_6ghz)
7523 		conn_flags |= IEEE80211_CONN_DISABLE_HT;
7524 	vht_elem = ieee80211_bss_get_elem(cbss, WLAN_EID_VHT_CAPABILITY);
7525 	if (vht_elem && vht_elem->datalen >= sizeof(struct ieee80211_vht_cap)) {
7526 		memcpy(&assoc_data->link[link_id].ap_vht_cap, vht_elem->data,
7527 		       sizeof(struct ieee80211_vht_cap));
7528 	} else if (is_5ghz) {
7529 		link_info(link,
7530 			  "VHT capa missing/short, disabling VHT/HE/EHT\n");
7531 		conn_flags |= IEEE80211_CONN_DISABLE_VHT |
7532 			      IEEE80211_CONN_DISABLE_HE |
7533 			      IEEE80211_CONN_DISABLE_EHT;
7534 	}
7535 	rcu_read_unlock();
7536 
7537 	link->u.mgd.beacon_crc_valid = false;
7538 	link->u.mgd.dtim_period = 0;
7539 	link->u.mgd.have_beacon = false;
7540 
7541 	/* override HT/VHT configuration only if the AP and we support it */
7542 	if (!(conn_flags & IEEE80211_CONN_DISABLE_HT)) {
7543 		struct ieee80211_sta_ht_cap sta_ht_cap;
7544 
7545 		memcpy(&sta_ht_cap, &sband->ht_cap, sizeof(sta_ht_cap));
7546 		ieee80211_apply_htcap_overrides(sdata, &sta_ht_cap);
7547 	}
7548 
7549 	link->conf->eht_puncturing = 0;
7550 
7551 	rcu_read_lock();
7552 	bss_ies = rcu_dereference(cbss->beacon_ies);
7553 	if (bss_ies) {
7554 		u8 dtim_count = 0;
7555 
7556 		ieee80211_get_dtim(bss_ies, &dtim_count,
7557 				   &link->u.mgd.dtim_period);
7558 
7559 		sdata->deflink.u.mgd.have_beacon = true;
7560 
7561 		if (ieee80211_hw_check(&local->hw, TIMING_BEACON_ONLY)) {
7562 			link->conf->sync_tsf = bss_ies->tsf;
7563 			link->conf->sync_device_ts = bss->device_ts_beacon;
7564 			link->conf->sync_dtim_count = dtim_count;
7565 		}
7566 	} else {
7567 		bss_ies = rcu_dereference(cbss->ies);
7568 	}
7569 
7570 	if (bss_ies) {
7571 		const struct ieee80211_eht_operation *eht_oper;
7572 		const struct element *elem;
7573 
7574 		elem = cfg80211_find_ext_elem(WLAN_EID_EXT_MULTIPLE_BSSID_CONFIGURATION,
7575 					      bss_ies->data, bss_ies->len);
7576 		if (elem && elem->datalen >= 3)
7577 			link->conf->profile_periodicity = elem->data[2];
7578 		else
7579 			link->conf->profile_periodicity = 0;
7580 
7581 		elem = cfg80211_find_elem(WLAN_EID_EXT_CAPABILITY,
7582 					  bss_ies->data, bss_ies->len);
7583 		if (elem && elem->datalen >= 11 &&
7584 		    (elem->data[10] & WLAN_EXT_CAPA11_EMA_SUPPORT))
7585 			link->conf->ema_ap = true;
7586 		else
7587 			link->conf->ema_ap = false;
7588 
7589 		elem = cfg80211_find_ext_elem(WLAN_EID_EXT_EHT_OPERATION,
7590 					      bss_ies->data, bss_ies->len);
7591 		eht_oper = (const void *)(elem->data + 1);
7592 
7593 		if (elem &&
7594 		    ieee80211_eht_oper_size_ok((const void *)(elem->data + 1),
7595 					       elem->datalen - 1) &&
7596 		    (eht_oper->params & IEEE80211_EHT_OPER_INFO_PRESENT) &&
7597 		    (eht_oper->params & IEEE80211_EHT_OPER_DISABLED_SUBCHANNEL_BITMAP_PRESENT)) {
7598 			const struct ieee80211_eht_operation_info *info =
7599 				(void *)eht_oper->optional;
7600 			const u8 *disable_subchannel_bitmap = info->optional;
7601 			u16 bitmap;
7602 
7603 			bitmap = get_unaligned_le16(disable_subchannel_bitmap);
7604 			if (cfg80211_valid_disable_subchannel_bitmap(&bitmap,
7605 								     &link->conf->chandef) &&
7606 			    !(bitmap && ieee80211_hw_check(&local->hw, DISALLOW_PUNCTURING)))
7607 				ieee80211_handle_puncturing_bitmap(link,
7608 								   eht_oper,
7609 								   bitmap,
7610 								   NULL);
7611 			else
7612 				conn_flags |= IEEE80211_CONN_DISABLE_EHT;
7613 		}
7614 	}
7615 	rcu_read_unlock();
7616 
7617 	if (bss->corrupt_data) {
7618 		char *corrupt_type = "data";
7619 
7620 		if (bss->corrupt_data & IEEE80211_BSS_CORRUPT_BEACON) {
7621 			if (bss->corrupt_data & IEEE80211_BSS_CORRUPT_PROBE_RESP)
7622 				corrupt_type = "beacon and probe response";
7623 			else
7624 				corrupt_type = "beacon";
7625 		} else if (bss->corrupt_data & IEEE80211_BSS_CORRUPT_PROBE_RESP) {
7626 			corrupt_type = "probe response";
7627 		}
7628 		sdata_info(sdata, "associating to AP %pM with corrupt %s\n",
7629 			   cbss->bssid, corrupt_type);
7630 	}
7631 
7632 	if (link->u.mgd.req_smps == IEEE80211_SMPS_AUTOMATIC) {
7633 		if (sdata->u.mgd.powersave)
7634 			link->smps_mode = IEEE80211_SMPS_DYNAMIC;
7635 		else
7636 			link->smps_mode = IEEE80211_SMPS_OFF;
7637 	} else {
7638 		link->smps_mode = link->u.mgd.req_smps;
7639 	}
7640 
7641 	return conn_flags;
7642 }
7643 
7644 int ieee80211_mgd_assoc(struct ieee80211_sub_if_data *sdata,
7645 			struct cfg80211_assoc_request *req)
7646 {
7647 	unsigned int assoc_link_id = req->link_id < 0 ? 0 : req->link_id;
7648 	struct ieee80211_local *local = sdata->local;
7649 	struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
7650 	struct ieee80211_mgd_assoc_data *assoc_data;
7651 	const struct element *ssid_elem, *csa_elem, *ecsa_elem;
7652 	struct ieee80211_vif_cfg *vif_cfg = &sdata->vif.cfg;
7653 	ieee80211_conn_flags_t conn_flags = 0;
7654 	struct ieee80211_link_data *link;
7655 	struct cfg80211_bss *cbss;
7656 	struct ieee80211_bss *bss;
7657 	bool override;
7658 	int i, err;
7659 	size_t size = sizeof(*assoc_data) + req->ie_len;
7660 
7661 	for (i = 0; i < IEEE80211_MLD_MAX_NUM_LINKS; i++)
7662 		size += req->links[i].elems_len;
7663 
7664 	/* FIXME: no support for 4-addr MLO yet */
7665 	if (sdata->u.mgd.use_4addr && req->link_id >= 0)
7666 		return -EOPNOTSUPP;
7667 
7668 	assoc_data = kzalloc(size, GFP_KERNEL);
7669 	if (!assoc_data)
7670 		return -ENOMEM;
7671 
7672 	cbss = req->link_id < 0 ? req->bss : req->links[req->link_id].bss;
7673 
7674 	rcu_read_lock();
7675 	ssid_elem = ieee80211_bss_get_elem(cbss, WLAN_EID_SSID);
7676 	if (!ssid_elem || ssid_elem->datalen > sizeof(assoc_data->ssid)) {
7677 		rcu_read_unlock();
7678 		kfree(assoc_data);
7679 		return -EINVAL;
7680 	}
7681 
7682 	csa_elem = ieee80211_bss_get_elem(cbss, WLAN_EID_CHANNEL_SWITCH);
7683 	ecsa_elem = ieee80211_bss_get_elem(cbss, WLAN_EID_EXT_CHANSWITCH_ANN);
7684 	if ((csa_elem &&
7685 	     csa_elem->datalen == sizeof(struct ieee80211_channel_sw_ie) &&
7686 	     ((struct ieee80211_channel_sw_ie *)csa_elem->data)->count != 0) ||
7687 	    (ecsa_elem &&
7688 	     ecsa_elem->datalen == sizeof(struct ieee80211_ext_chansw_ie) &&
7689 	     ((struct ieee80211_ext_chansw_ie *)ecsa_elem->data)->count != 0)) {
7690 		sdata_info(sdata, "AP is in CSA process, reject assoc\n");
7691 		rcu_read_unlock();
7692 		kfree(assoc_data);
7693 		return -EINVAL;
7694 	}
7695 
7696 	memcpy(assoc_data->ssid, ssid_elem->data, ssid_elem->datalen);
7697 	assoc_data->ssid_len = ssid_elem->datalen;
7698 	memcpy(vif_cfg->ssid, assoc_data->ssid, assoc_data->ssid_len);
7699 	vif_cfg->ssid_len = assoc_data->ssid_len;
7700 	rcu_read_unlock();
7701 
7702 	if (req->ap_mld_addr) {
7703 		for (i = 0; i < IEEE80211_MLD_MAX_NUM_LINKS; i++) {
7704 			if (!req->links[i].bss)
7705 				continue;
7706 			link = sdata_dereference(sdata->link[i], sdata);
7707 			if (link)
7708 				ether_addr_copy(assoc_data->link[i].addr,
7709 						link->conf->addr);
7710 			else
7711 				eth_random_addr(assoc_data->link[i].addr);
7712 		}
7713 	} else {
7714 		memcpy(assoc_data->link[0].addr, sdata->vif.addr, ETH_ALEN);
7715 	}
7716 
7717 	assoc_data->s1g = cbss->channel->band == NL80211_BAND_S1GHZ;
7718 
7719 	memcpy(assoc_data->ap_addr,
7720 	       req->ap_mld_addr ?: req->bss->bssid,
7721 	       ETH_ALEN);
7722 
7723 	if (ifmgd->associated) {
7724 		u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN];
7725 
7726 		sdata_info(sdata,
7727 			   "disconnect from AP %pM for new assoc to %pM\n",
7728 			   sdata->vif.cfg.ap_addr, assoc_data->ap_addr);
7729 		ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH,
7730 				       WLAN_REASON_UNSPECIFIED,
7731 				       false, frame_buf);
7732 
7733 		ieee80211_report_disconnect(sdata, frame_buf,
7734 					    sizeof(frame_buf), true,
7735 					    WLAN_REASON_UNSPECIFIED,
7736 					    false);
7737 	}
7738 
7739 	if (ifmgd->auth_data && !ifmgd->auth_data->done) {
7740 		err = -EBUSY;
7741 		goto err_free;
7742 	}
7743 
7744 	if (ifmgd->assoc_data) {
7745 		err = -EBUSY;
7746 		goto err_free;
7747 	}
7748 
7749 	if (ifmgd->auth_data) {
7750 		bool match;
7751 
7752 		/* keep sta info, bssid if matching */
7753 		match = ether_addr_equal(ifmgd->auth_data->ap_addr,
7754 					 assoc_data->ap_addr) &&
7755 			ifmgd->auth_data->link_id == req->link_id;
7756 
7757 		/* Cleanup is delayed if auth_data matches */
7758 		if (!match)
7759 			ieee80211_destroy_auth_data(sdata, false);
7760 	}
7761 
7762 	/* prepare assoc data */
7763 
7764 	bss = (void *)cbss->priv;
7765 	assoc_data->wmm = bss->wmm_used &&
7766 			  (local->hw.queues >= IEEE80211_NUM_ACS);
7767 
7768 	/*
7769 	 * IEEE802.11n does not allow TKIP/WEP as pairwise ciphers in HT mode.
7770 	 * We still associate in non-HT mode (11a/b/g) if any one of these
7771 	 * ciphers is configured as pairwise.
7772 	 * We can set this to true for non-11n hardware, that'll be checked
7773 	 * separately along with the peer capabilities.
7774 	 */
7775 	for (i = 0; i < req->crypto.n_ciphers_pairwise; i++) {
7776 		if (req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_WEP40 ||
7777 		    req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_TKIP ||
7778 		    req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_WEP104) {
7779 			conn_flags |= IEEE80211_CONN_DISABLE_HT;
7780 			conn_flags |= IEEE80211_CONN_DISABLE_VHT;
7781 			conn_flags |= IEEE80211_CONN_DISABLE_HE;
7782 			conn_flags |= IEEE80211_CONN_DISABLE_EHT;
7783 			netdev_info(sdata->dev,
7784 				    "disabling HT/VHT/HE due to WEP/TKIP use\n");
7785 		}
7786 	}
7787 
7788 	/* also disable HT/VHT/HE/EHT if the AP doesn't use WMM */
7789 	if (!bss->wmm_used) {
7790 		conn_flags |= IEEE80211_CONN_DISABLE_HT;
7791 		conn_flags |= IEEE80211_CONN_DISABLE_VHT;
7792 		conn_flags |= IEEE80211_CONN_DISABLE_HE;
7793 		conn_flags |= IEEE80211_CONN_DISABLE_EHT;
7794 		netdev_info(sdata->dev,
7795 			    "disabling HT/VHT/HE as WMM/QoS is not supported by the AP\n");
7796 	}
7797 
7798 	if (req->flags & ASSOC_REQ_DISABLE_HT) {
7799 		mlme_dbg(sdata, "HT disabled by flag, disabling HT/VHT/HE\n");
7800 		conn_flags |= IEEE80211_CONN_DISABLE_HT;
7801 		conn_flags |= IEEE80211_CONN_DISABLE_VHT;
7802 		conn_flags |= IEEE80211_CONN_DISABLE_HE;
7803 		conn_flags |= IEEE80211_CONN_DISABLE_EHT;
7804 	}
7805 
7806 	if (req->flags & ASSOC_REQ_DISABLE_VHT) {
7807 		mlme_dbg(sdata, "VHT disabled by flag, disabling VHT\n");
7808 		conn_flags |= IEEE80211_CONN_DISABLE_VHT;
7809 	}
7810 
7811 	if (req->flags & ASSOC_REQ_DISABLE_HE) {
7812 		mlme_dbg(sdata, "HE disabled by flag, disabling HE/EHT\n");
7813 		conn_flags |= IEEE80211_CONN_DISABLE_HE;
7814 		conn_flags |= IEEE80211_CONN_DISABLE_EHT;
7815 	}
7816 
7817 	if (req->flags & ASSOC_REQ_DISABLE_EHT)
7818 		conn_flags |= IEEE80211_CONN_DISABLE_EHT;
7819 
7820 	memcpy(&ifmgd->ht_capa, &req->ht_capa, sizeof(ifmgd->ht_capa));
7821 	memcpy(&ifmgd->ht_capa_mask, &req->ht_capa_mask,
7822 	       sizeof(ifmgd->ht_capa_mask));
7823 
7824 	memcpy(&ifmgd->vht_capa, &req->vht_capa, sizeof(ifmgd->vht_capa));
7825 	memcpy(&ifmgd->vht_capa_mask, &req->vht_capa_mask,
7826 	       sizeof(ifmgd->vht_capa_mask));
7827 
7828 	memcpy(&ifmgd->s1g_capa, &req->s1g_capa, sizeof(ifmgd->s1g_capa));
7829 	memcpy(&ifmgd->s1g_capa_mask, &req->s1g_capa_mask,
7830 	       sizeof(ifmgd->s1g_capa_mask));
7831 
7832 	if (req->ie && req->ie_len) {
7833 		memcpy(assoc_data->ie, req->ie, req->ie_len);
7834 		assoc_data->ie_len = req->ie_len;
7835 		assoc_data->ie_pos = assoc_data->ie + assoc_data->ie_len;
7836 	} else {
7837 		assoc_data->ie_pos = assoc_data->ie;
7838 	}
7839 
7840 	if (req->fils_kek) {
7841 		/* should already be checked in cfg80211 - so warn */
7842 		if (WARN_ON(req->fils_kek_len > FILS_MAX_KEK_LEN)) {
7843 			err = -EINVAL;
7844 			goto err_free;
7845 		}
7846 		memcpy(assoc_data->fils_kek, req->fils_kek,
7847 		       req->fils_kek_len);
7848 		assoc_data->fils_kek_len = req->fils_kek_len;
7849 	}
7850 
7851 	if (req->fils_nonces)
7852 		memcpy(assoc_data->fils_nonces, req->fils_nonces,
7853 		       2 * FILS_NONCE_LEN);
7854 
7855 	/* default timeout */
7856 	assoc_data->timeout = jiffies;
7857 	assoc_data->timeout_started = true;
7858 
7859 	assoc_data->assoc_link_id = assoc_link_id;
7860 
7861 	if (req->ap_mld_addr) {
7862 		for (i = 0; i < ARRAY_SIZE(assoc_data->link); i++) {
7863 			assoc_data->link[i].conn_flags = conn_flags;
7864 			assoc_data->link[i].bss = req->links[i].bss;
7865 			assoc_data->link[i].disabled = req->links[i].disabled;
7866 		}
7867 
7868 		/* if there was no authentication, set up the link */
7869 		err = ieee80211_vif_set_links(sdata, BIT(assoc_link_id), 0);
7870 		if (err)
7871 			goto err_clear;
7872 	} else {
7873 		assoc_data->link[0].conn_flags = conn_flags;
7874 		assoc_data->link[0].bss = cbss;
7875 	}
7876 
7877 	link = sdata_dereference(sdata->link[assoc_link_id], sdata);
7878 	if (WARN_ON(!link)) {
7879 		err = -EINVAL;
7880 		goto err_clear;
7881 	}
7882 
7883 	/* keep old conn_flags from ieee80211_prep_channel() from auth */
7884 	conn_flags |= link->u.mgd.conn_flags;
7885 	conn_flags |= ieee80211_setup_assoc_link(sdata, assoc_data, req,
7886 						 conn_flags, assoc_link_id);
7887 	override = link->u.mgd.conn_flags != conn_flags;
7888 	link->u.mgd.conn_flags |= conn_flags;
7889 
7890 	if (WARN((sdata->vif.driver_flags & IEEE80211_VIF_SUPPORTS_UAPSD) &&
7891 		 ieee80211_hw_check(&local->hw, PS_NULLFUNC_STACK),
7892 	     "U-APSD not supported with HW_PS_NULLFUNC_STACK\n"))
7893 		sdata->vif.driver_flags &= ~IEEE80211_VIF_SUPPORTS_UAPSD;
7894 
7895 	if (bss->wmm_used && bss->uapsd_supported &&
7896 	    (sdata->vif.driver_flags & IEEE80211_VIF_SUPPORTS_UAPSD)) {
7897 		assoc_data->uapsd = true;
7898 		ifmgd->flags |= IEEE80211_STA_UAPSD_ENABLED;
7899 	} else {
7900 		assoc_data->uapsd = false;
7901 		ifmgd->flags &= ~IEEE80211_STA_UAPSD_ENABLED;
7902 	}
7903 
7904 	if (req->prev_bssid)
7905 		memcpy(assoc_data->prev_ap_addr, req->prev_bssid, ETH_ALEN);
7906 
7907 	if (req->use_mfp) {
7908 		ifmgd->mfp = IEEE80211_MFP_REQUIRED;
7909 		ifmgd->flags |= IEEE80211_STA_MFP_ENABLED;
7910 	} else {
7911 		ifmgd->mfp = IEEE80211_MFP_DISABLED;
7912 		ifmgd->flags &= ~IEEE80211_STA_MFP_ENABLED;
7913 	}
7914 
7915 	if (req->flags & ASSOC_REQ_USE_RRM)
7916 		ifmgd->flags |= IEEE80211_STA_ENABLE_RRM;
7917 	else
7918 		ifmgd->flags &= ~IEEE80211_STA_ENABLE_RRM;
7919 
7920 	if (req->crypto.control_port)
7921 		ifmgd->flags |= IEEE80211_STA_CONTROL_PORT;
7922 	else
7923 		ifmgd->flags &= ~IEEE80211_STA_CONTROL_PORT;
7924 
7925 	sdata->control_port_protocol = req->crypto.control_port_ethertype;
7926 	sdata->control_port_no_encrypt = req->crypto.control_port_no_encrypt;
7927 	sdata->control_port_over_nl80211 =
7928 					req->crypto.control_port_over_nl80211;
7929 	sdata->control_port_no_preauth = req->crypto.control_port_no_preauth;
7930 
7931 	/* kick off associate process */
7932 	ifmgd->assoc_data = assoc_data;
7933 
7934 	for (i = 0; i < ARRAY_SIZE(assoc_data->link); i++) {
7935 		if (!assoc_data->link[i].bss)
7936 			continue;
7937 		if (i == assoc_data->assoc_link_id)
7938 			continue;
7939 		/* only calculate the flags, hence link == NULL */
7940 		err = ieee80211_prep_channel(sdata, NULL,
7941 					     assoc_data->link[i].bss, true,
7942 					     &assoc_data->link[i].conn_flags);
7943 		if (err) {
7944 			req->links[i].error = err;
7945 			goto err_clear;
7946 		}
7947 	}
7948 
7949 	/* needed for transmitting the assoc frames properly */
7950 	memcpy(sdata->vif.cfg.ap_addr, assoc_data->ap_addr, ETH_ALEN);
7951 
7952 	err = ieee80211_prep_connection(sdata, cbss, req->link_id,
7953 					req->ap_mld_addr, true, override);
7954 	if (err)
7955 		goto err_clear;
7956 
7957 	assoc_data->link[assoc_data->assoc_link_id].conn_flags =
7958 		link->u.mgd.conn_flags;
7959 
7960 	if (ieee80211_hw_check(&sdata->local->hw, NEED_DTIM_BEFORE_ASSOC)) {
7961 		const struct cfg80211_bss_ies *beacon_ies;
7962 
7963 		rcu_read_lock();
7964 		beacon_ies = rcu_dereference(req->bss->beacon_ies);
7965 
7966 		if (beacon_ies) {
7967 			/*
7968 			 * Wait up to one beacon interval ...
7969 			 * should this be more if we miss one?
7970 			 */
7971 			sdata_info(sdata, "waiting for beacon from %pM\n",
7972 				   link->u.mgd.bssid);
7973 			assoc_data->timeout = TU_TO_EXP_TIME(req->bss->beacon_interval);
7974 			assoc_data->timeout_started = true;
7975 			assoc_data->need_beacon = true;
7976 		}
7977 		rcu_read_unlock();
7978 	}
7979 
7980 	run_again(sdata, assoc_data->timeout);
7981 
7982 	/* We are associating, clean up auth_data */
7983 	if (ifmgd->auth_data)
7984 		ieee80211_destroy_auth_data(sdata, true);
7985 
7986 	return 0;
7987  err_clear:
7988 	if (!ifmgd->auth_data) {
7989 		eth_zero_addr(sdata->deflink.u.mgd.bssid);
7990 		ieee80211_link_info_change_notify(sdata, &sdata->deflink,
7991 						  BSS_CHANGED_BSSID);
7992 	}
7993 	ifmgd->assoc_data = NULL;
7994  err_free:
7995 	kfree(assoc_data);
7996 	return err;
7997 }
7998 
7999 int ieee80211_mgd_deauth(struct ieee80211_sub_if_data *sdata,
8000 			 struct cfg80211_deauth_request *req)
8001 {
8002 	struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
8003 	u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN];
8004 	bool tx = !req->local_state_change;
8005 	struct ieee80211_prep_tx_info info = {
8006 		.subtype = IEEE80211_STYPE_DEAUTH,
8007 	};
8008 
8009 	if (ifmgd->auth_data &&
8010 	    ether_addr_equal(ifmgd->auth_data->ap_addr, req->bssid)) {
8011 		sdata_info(sdata,
8012 			   "aborting authentication with %pM by local choice (Reason: %u=%s)\n",
8013 			   req->bssid, req->reason_code,
8014 			   ieee80211_get_reason_code_string(req->reason_code));
8015 
8016 		info.link_id = ifmgd->auth_data->link_id;
8017 		drv_mgd_prepare_tx(sdata->local, sdata, &info);
8018 		ieee80211_send_deauth_disassoc(sdata, req->bssid, req->bssid,
8019 					       IEEE80211_STYPE_DEAUTH,
8020 					       req->reason_code, tx,
8021 					       frame_buf);
8022 		ieee80211_destroy_auth_data(sdata, false);
8023 		ieee80211_report_disconnect(sdata, frame_buf,
8024 					    sizeof(frame_buf), true,
8025 					    req->reason_code, false);
8026 		drv_mgd_complete_tx(sdata->local, sdata, &info);
8027 		return 0;
8028 	}
8029 
8030 	if (ifmgd->assoc_data &&
8031 	    ether_addr_equal(ifmgd->assoc_data->ap_addr, req->bssid)) {
8032 		sdata_info(sdata,
8033 			   "aborting association with %pM by local choice (Reason: %u=%s)\n",
8034 			   req->bssid, req->reason_code,
8035 			   ieee80211_get_reason_code_string(req->reason_code));
8036 
8037 		info.link_id = ifmgd->assoc_data->assoc_link_id;
8038 		drv_mgd_prepare_tx(sdata->local, sdata, &info);
8039 		ieee80211_send_deauth_disassoc(sdata, req->bssid, req->bssid,
8040 					       IEEE80211_STYPE_DEAUTH,
8041 					       req->reason_code, tx,
8042 					       frame_buf);
8043 		ieee80211_destroy_assoc_data(sdata, ASSOC_ABANDON);
8044 		ieee80211_report_disconnect(sdata, frame_buf,
8045 					    sizeof(frame_buf), true,
8046 					    req->reason_code, false);
8047 		return 0;
8048 	}
8049 
8050 	if (ifmgd->associated &&
8051 	    ether_addr_equal(sdata->vif.cfg.ap_addr, req->bssid)) {
8052 		sdata_info(sdata,
8053 			   "deauthenticating from %pM by local choice (Reason: %u=%s)\n",
8054 			   req->bssid, req->reason_code,
8055 			   ieee80211_get_reason_code_string(req->reason_code));
8056 
8057 		ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH,
8058 				       req->reason_code, tx, frame_buf);
8059 		ieee80211_report_disconnect(sdata, frame_buf,
8060 					    sizeof(frame_buf), true,
8061 					    req->reason_code, false);
8062 		drv_mgd_complete_tx(sdata->local, sdata, &info);
8063 		return 0;
8064 	}
8065 
8066 	return -ENOTCONN;
8067 }
8068 
8069 int ieee80211_mgd_disassoc(struct ieee80211_sub_if_data *sdata,
8070 			   struct cfg80211_disassoc_request *req)
8071 {
8072 	u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN];
8073 
8074 	if (!sdata->u.mgd.associated ||
8075 	    memcmp(sdata->vif.cfg.ap_addr, req->ap_addr, ETH_ALEN))
8076 		return -ENOTCONN;
8077 
8078 	sdata_info(sdata,
8079 		   "disassociating from %pM by local choice (Reason: %u=%s)\n",
8080 		   req->ap_addr, req->reason_code,
8081 		   ieee80211_get_reason_code_string(req->reason_code));
8082 
8083 	ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DISASSOC,
8084 			       req->reason_code, !req->local_state_change,
8085 			       frame_buf);
8086 
8087 	ieee80211_report_disconnect(sdata, frame_buf, sizeof(frame_buf), true,
8088 				    req->reason_code, false);
8089 
8090 	return 0;
8091 }
8092 
8093 void ieee80211_mgd_stop_link(struct ieee80211_link_data *link)
8094 {
8095 	wiphy_work_cancel(link->sdata->local->hw.wiphy,
8096 			  &link->u.mgd.request_smps_work);
8097 	wiphy_work_cancel(link->sdata->local->hw.wiphy,
8098 			  &link->u.mgd.recalc_smps);
8099 	wiphy_delayed_work_cancel(link->sdata->local->hw.wiphy,
8100 				  &link->u.mgd.chswitch_work);
8101 }
8102 
8103 void ieee80211_mgd_stop(struct ieee80211_sub_if_data *sdata)
8104 {
8105 	struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
8106 
8107 	/*
8108 	 * Make sure some work items will not run after this,
8109 	 * they will not do anything but might not have been
8110 	 * cancelled when disconnecting.
8111 	 */
8112 	wiphy_work_cancel(sdata->local->hw.wiphy,
8113 			  &ifmgd->monitor_work);
8114 	wiphy_work_cancel(sdata->local->hw.wiphy,
8115 			  &ifmgd->beacon_connection_loss_work);
8116 	wiphy_work_cancel(sdata->local->hw.wiphy,
8117 			  &ifmgd->csa_connection_drop_work);
8118 	wiphy_delayed_work_cancel(sdata->local->hw.wiphy,
8119 				  &ifmgd->tdls_peer_del_work);
8120 	wiphy_delayed_work_cancel(sdata->local->hw.wiphy,
8121 				  &ifmgd->ml_reconf_work);
8122 	wiphy_delayed_work_cancel(sdata->local->hw.wiphy, &ifmgd->ttlm_work);
8123 
8124 	if (ifmgd->assoc_data)
8125 		ieee80211_destroy_assoc_data(sdata, ASSOC_TIMEOUT);
8126 	if (ifmgd->auth_data)
8127 		ieee80211_destroy_auth_data(sdata, false);
8128 	spin_lock_bh(&ifmgd->teardown_lock);
8129 	if (ifmgd->teardown_skb) {
8130 		kfree_skb(ifmgd->teardown_skb);
8131 		ifmgd->teardown_skb = NULL;
8132 		ifmgd->orig_teardown_skb = NULL;
8133 	}
8134 	kfree(ifmgd->assoc_req_ies);
8135 	ifmgd->assoc_req_ies = NULL;
8136 	ifmgd->assoc_req_ies_len = 0;
8137 	spin_unlock_bh(&ifmgd->teardown_lock);
8138 	del_timer_sync(&ifmgd->timer);
8139 }
8140 
8141 void ieee80211_cqm_rssi_notify(struct ieee80211_vif *vif,
8142 			       enum nl80211_cqm_rssi_threshold_event rssi_event,
8143 			       s32 rssi_level,
8144 			       gfp_t gfp)
8145 {
8146 	struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
8147 
8148 	trace_api_cqm_rssi_notify(sdata, rssi_event, rssi_level);
8149 
8150 	cfg80211_cqm_rssi_notify(sdata->dev, rssi_event, rssi_level, gfp);
8151 }
8152 EXPORT_SYMBOL(ieee80211_cqm_rssi_notify);
8153 
8154 void ieee80211_cqm_beacon_loss_notify(struct ieee80211_vif *vif, gfp_t gfp)
8155 {
8156 	struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
8157 
8158 	trace_api_cqm_beacon_loss_notify(sdata->local, sdata);
8159 
8160 	cfg80211_cqm_beacon_loss_notify(sdata->dev, gfp);
8161 }
8162 EXPORT_SYMBOL(ieee80211_cqm_beacon_loss_notify);
8163 
8164 static void _ieee80211_enable_rssi_reports(struct ieee80211_sub_if_data *sdata,
8165 					    int rssi_min_thold,
8166 					    int rssi_max_thold)
8167 {
8168 	trace_api_enable_rssi_reports(sdata, rssi_min_thold, rssi_max_thold);
8169 
8170 	if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION))
8171 		return;
8172 
8173 	/*
8174 	 * Scale up threshold values before storing it, as the RSSI averaging
8175 	 * algorithm uses a scaled up value as well. Change this scaling
8176 	 * factor if the RSSI averaging algorithm changes.
8177 	 */
8178 	sdata->u.mgd.rssi_min_thold = rssi_min_thold*16;
8179 	sdata->u.mgd.rssi_max_thold = rssi_max_thold*16;
8180 }
8181 
8182 void ieee80211_enable_rssi_reports(struct ieee80211_vif *vif,
8183 				    int rssi_min_thold,
8184 				    int rssi_max_thold)
8185 {
8186 	struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
8187 
8188 	WARN_ON(rssi_min_thold == rssi_max_thold ||
8189 		rssi_min_thold > rssi_max_thold);
8190 
8191 	_ieee80211_enable_rssi_reports(sdata, rssi_min_thold,
8192 				       rssi_max_thold);
8193 }
8194 EXPORT_SYMBOL(ieee80211_enable_rssi_reports);
8195 
8196 void ieee80211_disable_rssi_reports(struct ieee80211_vif *vif)
8197 {
8198 	struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
8199 
8200 	_ieee80211_enable_rssi_reports(sdata, 0, 0);
8201 }
8202 EXPORT_SYMBOL(ieee80211_disable_rssi_reports);
8203