2 * BSS client mode implementation
3 * Copyright 2003-2008, Jouni Malinen <j@w1.fi>
4 * Copyright 2004, Instant802 Networks, Inc.
5 * Copyright 2005, Devicescape Software, Inc.
6 * Copyright 2006-2007 Jiri Benc <jbenc@suse.cz>
7 * Copyright 2007, Michael Wu <flamingice@sourmilk.net>
8 * Copyright 2013-2014 Intel Mobile Communications GmbH
9 * Copyright (C) 2015 - 2017 Intel Deutschland GmbH
10 * Copyright (C) 2018 Intel Corporation
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License version 2 as
14 * published by the Free Software Foundation.
17 #include <linux/delay.h>
18 #include <linux/if_ether.h>
19 #include <linux/skbuff.h>
20 #include <linux/if_arp.h>
21 #include <linux/etherdevice.h>
22 #include <linux/moduleparam.h>
23 #include <linux/rtnetlink.h>
24 #include <linux/crc32.h>
25 #include <linux/slab.h>
26 #include <linux/export.h>
27 #include <net/mac80211.h>
28 #include <asm/unaligned.h>
30 #include "ieee80211_i.h"
31 #include "driver-ops.h"
34 #include "fils_aead.h"
36 #define IEEE80211_AUTH_TIMEOUT (HZ / 5)
37 #define IEEE80211_AUTH_TIMEOUT_LONG (HZ / 2)
38 #define IEEE80211_AUTH_TIMEOUT_SHORT (HZ / 10)
39 #define IEEE80211_AUTH_TIMEOUT_SAE (HZ * 2)
40 #define IEEE80211_AUTH_MAX_TRIES 3
41 #define IEEE80211_AUTH_WAIT_ASSOC (HZ * 5)
42 #define IEEE80211_ASSOC_TIMEOUT (HZ / 5)
43 #define IEEE80211_ASSOC_TIMEOUT_LONG (HZ / 2)
44 #define IEEE80211_ASSOC_TIMEOUT_SHORT (HZ / 10)
45 #define IEEE80211_ASSOC_MAX_TRIES 3
47 static int max_nullfunc_tries = 2;
48 module_param(max_nullfunc_tries, int, 0644);
49 MODULE_PARM_DESC(max_nullfunc_tries,
50 "Maximum nullfunc tx tries before disconnecting (reason 4).");
52 static int max_probe_tries = 5;
53 module_param(max_probe_tries, int, 0644);
54 MODULE_PARM_DESC(max_probe_tries,
55 "Maximum probe tries before disconnecting (reason 4).");
58 * Beacon loss timeout is calculated as N frames times the
59 * advertised beacon interval. This may need to be somewhat
60 * higher than what hardware might detect to account for
61 * delays in the host processing frames. But since we also
62 * probe on beacon miss before declaring the connection lost
63 * default to what we want.
65 static int beacon_loss_count = 7;
66 module_param(beacon_loss_count, int, 0644);
67 MODULE_PARM_DESC(beacon_loss_count,
68 "Number of beacon intervals before we decide beacon was lost.");
71 * Time the connection can be idle before we probe
72 * it to see if we can still talk to the AP.
74 #define IEEE80211_CONNECTION_IDLE_TIME (30 * HZ)
76 * Time we wait for a probe response after sending
77 * a probe request because of beacon loss or for
78 * checking the connection still works.
80 static int probe_wait_ms = 500;
81 module_param(probe_wait_ms, int, 0644);
82 MODULE_PARM_DESC(probe_wait_ms,
83 "Maximum time(ms) to wait for probe response"
84 " before disconnecting (reason 4).");
87 * How many Beacon frames need to have been used in average signal strength
88 * before starting to indicate signal change events.
90 #define IEEE80211_SIGNAL_AVE_MIN_COUNT 4
93 * We can have multiple work items (and connection probing)
94 * scheduling this timer, but we need to take care to only
95 * reschedule it when it should fire _earlier_ than it was
96 * asked for before, or if it's not pending right now. This
97 * function ensures that. Note that it then is required to
98 * run this function for all timeouts after the first one
99 * has happened -- the work that runs from this timer will
102 static void run_again(struct ieee80211_sub_if_data *sdata,
103 unsigned long timeout)
105 sdata_assert_lock(sdata);
107 if (!timer_pending(&sdata->u.mgd.timer) ||
108 time_before(timeout, sdata->u.mgd.timer.expires))
109 mod_timer(&sdata->u.mgd.timer, timeout);
112 void ieee80211_sta_reset_beacon_monitor(struct ieee80211_sub_if_data *sdata)
114 if (sdata->vif.driver_flags & IEEE80211_VIF_BEACON_FILTER)
117 if (ieee80211_hw_check(&sdata->local->hw, CONNECTION_MONITOR))
120 mod_timer(&sdata->u.mgd.bcn_mon_timer,
121 round_jiffies_up(jiffies + sdata->u.mgd.beacon_timeout));
124 void ieee80211_sta_reset_conn_monitor(struct ieee80211_sub_if_data *sdata)
126 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
128 if (unlikely(!ifmgd->associated))
131 if (ifmgd->probe_send_count)
132 ifmgd->probe_send_count = 0;
134 if (ieee80211_hw_check(&sdata->local->hw, CONNECTION_MONITOR))
137 mod_timer(&ifmgd->conn_mon_timer,
138 round_jiffies_up(jiffies + IEEE80211_CONNECTION_IDLE_TIME));
141 static int ecw2cw(int ecw)
143 return (1 << ecw) - 1;
147 ieee80211_determine_chantype(struct ieee80211_sub_if_data *sdata,
148 struct ieee80211_supported_band *sband,
149 struct ieee80211_channel *channel,
150 const struct ieee80211_ht_operation *ht_oper,
151 const struct ieee80211_vht_operation *vht_oper,
152 const struct ieee80211_he_operation *he_oper,
153 struct cfg80211_chan_def *chandef, bool tracking)
155 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
156 struct cfg80211_chan_def vht_chandef;
157 struct ieee80211_sta_ht_cap sta_ht_cap;
160 memcpy(&sta_ht_cap, &sband->ht_cap, sizeof(sta_ht_cap));
161 ieee80211_apply_htcap_overrides(sdata, &sta_ht_cap);
163 chandef->chan = channel;
164 chandef->width = NL80211_CHAN_WIDTH_20_NOHT;
165 chandef->center_freq1 = channel->center_freq;
166 chandef->center_freq2 = 0;
168 if (!ht_oper || !sta_ht_cap.ht_supported) {
169 ret = IEEE80211_STA_DISABLE_HT | IEEE80211_STA_DISABLE_VHT;
173 chandef->width = NL80211_CHAN_WIDTH_20;
175 ht_cfreq = ieee80211_channel_to_frequency(ht_oper->primary_chan,
177 /* check that channel matches the right operating channel */
178 if (!tracking && channel->center_freq != ht_cfreq) {
180 * It's possible that some APs are confused here;
181 * Netgear WNDR3700 sometimes reports 4 higher than
182 * the actual channel in association responses, but
183 * since we look at probe response/beacon data here
187 "Wrong control channel: center-freq: %d ht-cfreq: %d ht->primary_chan: %d band: %d - Disabling HT\n",
188 channel->center_freq, ht_cfreq,
189 ht_oper->primary_chan, channel->band);
190 ret = IEEE80211_STA_DISABLE_HT | IEEE80211_STA_DISABLE_VHT;
194 /* check 40 MHz support, if we have it */
195 if (sta_ht_cap.cap & IEEE80211_HT_CAP_SUP_WIDTH_20_40) {
196 ieee80211_chandef_ht_oper(ht_oper, chandef);
198 /* 40 MHz (and 80 MHz) must be supported for VHT */
199 ret = IEEE80211_STA_DISABLE_VHT;
200 /* also mark 40 MHz disabled */
201 ret |= IEEE80211_STA_DISABLE_40MHZ;
205 if (!vht_oper || !sband->vht_cap.vht_supported) {
206 ret = IEEE80211_STA_DISABLE_VHT;
210 vht_chandef = *chandef;
211 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_HE) && he_oper &&
212 (le32_to_cpu(he_oper->he_oper_params) &
213 IEEE80211_HE_OPERATION_VHT_OPER_INFO)) {
214 struct ieee80211_vht_operation he_oper_vht_cap;
217 * Set only first 3 bytes (other 2 aren't used in
218 * ieee80211_chandef_vht_oper() anyway)
220 memcpy(&he_oper_vht_cap, he_oper->optional, 3);
221 he_oper_vht_cap.basic_mcs_set = cpu_to_le16(0);
223 if (!ieee80211_chandef_vht_oper(&he_oper_vht_cap,
225 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_HE))
227 "HE AP VHT information is invalid, disable HE\n");
228 ret = IEEE80211_STA_DISABLE_HE;
231 } else if (!ieee80211_chandef_vht_oper(vht_oper, &vht_chandef)) {
232 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_VHT))
234 "AP VHT information is invalid, disable VHT\n");
235 ret = IEEE80211_STA_DISABLE_VHT;
239 if (!cfg80211_chandef_valid(&vht_chandef)) {
240 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_VHT))
242 "AP VHT information is invalid, disable VHT\n");
243 ret = IEEE80211_STA_DISABLE_VHT;
247 if (cfg80211_chandef_identical(chandef, &vht_chandef)) {
252 if (!cfg80211_chandef_compatible(chandef, &vht_chandef)) {
253 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_VHT))
255 "AP VHT information doesn't match HT, disable VHT\n");
256 ret = IEEE80211_STA_DISABLE_VHT;
260 *chandef = vht_chandef;
266 * When tracking the current AP, don't do any further checks if the
267 * new chandef is identical to the one we're currently using for the
268 * connection. This keeps us from playing ping-pong with regulatory,
269 * without it the following can happen (for example):
270 * - connect to an AP with 80 MHz, world regdom allows 80 MHz
271 * - AP advertises regdom US
272 * - CRDA loads regdom US with 80 MHz prohibited (old database)
273 * - the code below detects an unsupported channel, downgrades, and
274 * we disconnect from the AP in the caller
275 * - disconnect causes CRDA to reload world regdomain and the game
277 * (see https://bugzilla.kernel.org/show_bug.cgi?id=70881)
279 * It seems possible that there are still scenarios with CSA or real
280 * bandwidth changes where a this could happen, but those cases are
281 * less common and wouldn't completely prevent using the AP.
284 cfg80211_chandef_identical(chandef, &sdata->vif.bss_conf.chandef))
287 /* don't print the message below for VHT mismatch if VHT is disabled */
288 if (ret & IEEE80211_STA_DISABLE_VHT)
289 vht_chandef = *chandef;
292 * Ignore the DISABLED flag when we're already connected and only
293 * tracking the APs beacon for bandwidth changes - otherwise we
294 * might get disconnected here if we connect to an AP, update our
295 * regulatory information based on the AP's country IE and the
296 * information we have is wrong/outdated and disables the channel
297 * that we're actually using for the connection to the AP.
299 while (!cfg80211_chandef_usable(sdata->local->hw.wiphy, chandef,
301 IEEE80211_CHAN_DISABLED)) {
302 if (WARN_ON(chandef->width == NL80211_CHAN_WIDTH_20_NOHT)) {
303 ret = IEEE80211_STA_DISABLE_HT |
304 IEEE80211_STA_DISABLE_VHT;
308 ret |= ieee80211_chandef_downgrade(chandef);
311 if (chandef->width != vht_chandef.width && !tracking)
313 "capabilities/regulatory prevented using AP HT/VHT configuration, downgraded\n");
315 WARN_ON_ONCE(!cfg80211_chandef_valid(chandef));
319 static int ieee80211_config_bw(struct ieee80211_sub_if_data *sdata,
320 struct sta_info *sta,
321 const struct ieee80211_ht_cap *ht_cap,
322 const struct ieee80211_ht_operation *ht_oper,
323 const struct ieee80211_vht_operation *vht_oper,
324 const struct ieee80211_he_operation *he_oper,
325 const u8 *bssid, u32 *changed)
327 struct ieee80211_local *local = sdata->local;
328 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
329 struct ieee80211_channel *chan = sdata->vif.bss_conf.chandef.chan;
330 struct ieee80211_supported_band *sband =
331 local->hw.wiphy->bands[chan->band];
332 struct cfg80211_chan_def chandef;
335 enum ieee80211_sta_rx_bandwidth new_sta_bw;
338 /* if HT was/is disabled, don't track any bandwidth changes */
339 if (ifmgd->flags & IEEE80211_STA_DISABLE_HT || !ht_oper)
342 /* don't check VHT if we associated as non-VHT station */
343 if (ifmgd->flags & IEEE80211_STA_DISABLE_VHT)
346 /* don't check HE if we associated as non-HE station */
347 if (ifmgd->flags & IEEE80211_STA_DISABLE_HE ||
348 !ieee80211_get_he_sta_cap(sband))
351 if (WARN_ON_ONCE(!sta))
355 * if bss configuration changed store the new one -
356 * this may be applicable even if channel is identical
358 ht_opmode = le16_to_cpu(ht_oper->operation_mode);
359 if (sdata->vif.bss_conf.ht_operation_mode != ht_opmode) {
360 *changed |= BSS_CHANGED_HT;
361 sdata->vif.bss_conf.ht_operation_mode = ht_opmode;
364 /* calculate new channel (type) based on HT/VHT/HE operation IEs */
365 flags = ieee80211_determine_chantype(sdata, sband, chan,
366 ht_oper, vht_oper, he_oper,
370 * Downgrade the new channel if we associated with restricted
371 * capabilities. For example, if we associated as a 20 MHz STA
372 * to a 40 MHz AP (due to regulatory, capabilities or config
373 * reasons) then switching to a 40 MHz channel now won't do us
374 * any good -- we couldn't use it with the AP.
376 if (ifmgd->flags & IEEE80211_STA_DISABLE_80P80MHZ &&
377 chandef.width == NL80211_CHAN_WIDTH_80P80)
378 flags |= ieee80211_chandef_downgrade(&chandef);
379 if (ifmgd->flags & IEEE80211_STA_DISABLE_160MHZ &&
380 chandef.width == NL80211_CHAN_WIDTH_160)
381 flags |= ieee80211_chandef_downgrade(&chandef);
382 if (ifmgd->flags & IEEE80211_STA_DISABLE_40MHZ &&
383 chandef.width > NL80211_CHAN_WIDTH_20)
384 flags |= ieee80211_chandef_downgrade(&chandef);
386 if (cfg80211_chandef_identical(&chandef, &sdata->vif.bss_conf.chandef))
390 "AP %pM changed bandwidth, new config is %d MHz, width %d (%d/%d MHz)\n",
391 ifmgd->bssid, chandef.chan->center_freq, chandef.width,
392 chandef.center_freq1, chandef.center_freq2);
394 if (flags != (ifmgd->flags & (IEEE80211_STA_DISABLE_HT |
395 IEEE80211_STA_DISABLE_VHT |
396 IEEE80211_STA_DISABLE_40MHZ |
397 IEEE80211_STA_DISABLE_80P80MHZ |
398 IEEE80211_STA_DISABLE_160MHZ)) ||
399 !cfg80211_chandef_valid(&chandef)) {
401 "AP %pM changed bandwidth in a way we can't support - disconnect\n",
406 switch (chandef.width) {
407 case NL80211_CHAN_WIDTH_20_NOHT:
408 case NL80211_CHAN_WIDTH_20:
409 new_sta_bw = IEEE80211_STA_RX_BW_20;
411 case NL80211_CHAN_WIDTH_40:
412 new_sta_bw = IEEE80211_STA_RX_BW_40;
414 case NL80211_CHAN_WIDTH_80:
415 new_sta_bw = IEEE80211_STA_RX_BW_80;
417 case NL80211_CHAN_WIDTH_80P80:
418 case NL80211_CHAN_WIDTH_160:
419 new_sta_bw = IEEE80211_STA_RX_BW_160;
425 if (new_sta_bw > sta->cur_max_bandwidth)
426 new_sta_bw = sta->cur_max_bandwidth;
428 if (new_sta_bw < sta->sta.bandwidth) {
429 sta->sta.bandwidth = new_sta_bw;
430 rate_control_rate_update(local, sband, sta,
431 IEEE80211_RC_BW_CHANGED);
434 ret = ieee80211_vif_change_bandwidth(sdata, &chandef, changed);
437 "AP %pM changed bandwidth to incompatible one - disconnect\n",
442 if (new_sta_bw > sta->sta.bandwidth) {
443 sta->sta.bandwidth = new_sta_bw;
444 rate_control_rate_update(local, sband, sta,
445 IEEE80211_RC_BW_CHANGED);
451 /* frame sending functions */
453 static void ieee80211_add_ht_ie(struct ieee80211_sub_if_data *sdata,
454 struct sk_buff *skb, u8 ap_ht_param,
455 struct ieee80211_supported_band *sband,
456 struct ieee80211_channel *channel,
457 enum ieee80211_smps_mode smps)
460 u32 flags = channel->flags;
462 struct ieee80211_sta_ht_cap ht_cap;
464 BUILD_BUG_ON(sizeof(ht_cap) != sizeof(sband->ht_cap));
466 memcpy(&ht_cap, &sband->ht_cap, sizeof(ht_cap));
467 ieee80211_apply_htcap_overrides(sdata, &ht_cap);
469 /* determine capability flags */
472 switch (ap_ht_param & IEEE80211_HT_PARAM_CHA_SEC_OFFSET) {
473 case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
474 if (flags & IEEE80211_CHAN_NO_HT40PLUS) {
475 cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
476 cap &= ~IEEE80211_HT_CAP_SGI_40;
479 case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
480 if (flags & IEEE80211_CHAN_NO_HT40MINUS) {
481 cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
482 cap &= ~IEEE80211_HT_CAP_SGI_40;
488 * If 40 MHz was disabled associate as though we weren't
489 * capable of 40 MHz -- some broken APs will never fall
490 * back to trying to transmit in 20 MHz.
492 if (sdata->u.mgd.flags & IEEE80211_STA_DISABLE_40MHZ) {
493 cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
494 cap &= ~IEEE80211_HT_CAP_SGI_40;
497 /* set SM PS mode properly */
498 cap &= ~IEEE80211_HT_CAP_SM_PS;
500 case IEEE80211_SMPS_AUTOMATIC:
501 case IEEE80211_SMPS_NUM_MODES:
504 case IEEE80211_SMPS_OFF:
505 cap |= WLAN_HT_CAP_SM_PS_DISABLED <<
506 IEEE80211_HT_CAP_SM_PS_SHIFT;
508 case IEEE80211_SMPS_STATIC:
509 cap |= WLAN_HT_CAP_SM_PS_STATIC <<
510 IEEE80211_HT_CAP_SM_PS_SHIFT;
512 case IEEE80211_SMPS_DYNAMIC:
513 cap |= WLAN_HT_CAP_SM_PS_DYNAMIC <<
514 IEEE80211_HT_CAP_SM_PS_SHIFT;
518 /* reserve and fill IE */
519 pos = skb_put(skb, sizeof(struct ieee80211_ht_cap) + 2);
520 ieee80211_ie_build_ht_cap(pos, &ht_cap, cap);
523 /* This function determines vht capability flags for the association
525 * Note - the function may set the owner of the MU-MIMO capability
527 static void ieee80211_add_vht_ie(struct ieee80211_sub_if_data *sdata,
529 struct ieee80211_supported_band *sband,
530 struct ieee80211_vht_cap *ap_vht_cap)
532 struct ieee80211_local *local = sdata->local;
535 struct ieee80211_sta_vht_cap vht_cap;
536 u32 mask, ap_bf_sts, our_bf_sts;
538 BUILD_BUG_ON(sizeof(vht_cap) != sizeof(sband->vht_cap));
540 memcpy(&vht_cap, &sband->vht_cap, sizeof(vht_cap));
541 ieee80211_apply_vhtcap_overrides(sdata, &vht_cap);
543 /* determine capability flags */
546 if (sdata->u.mgd.flags & IEEE80211_STA_DISABLE_80P80MHZ) {
547 u32 bw = cap & IEEE80211_VHT_CAP_SUPP_CHAN_WIDTH_MASK;
549 cap &= ~IEEE80211_VHT_CAP_SUPP_CHAN_WIDTH_MASK;
550 if (bw == IEEE80211_VHT_CAP_SUPP_CHAN_WIDTH_160MHZ ||
551 bw == IEEE80211_VHT_CAP_SUPP_CHAN_WIDTH_160_80PLUS80MHZ)
552 cap |= IEEE80211_VHT_CAP_SUPP_CHAN_WIDTH_160MHZ;
555 if (sdata->u.mgd.flags & IEEE80211_STA_DISABLE_160MHZ) {
556 cap &= ~IEEE80211_VHT_CAP_SHORT_GI_160;
557 cap &= ~IEEE80211_VHT_CAP_SUPP_CHAN_WIDTH_MASK;
561 * Some APs apparently get confused if our capabilities are better
562 * than theirs, so restrict what we advertise in the assoc request.
564 if (!(ap_vht_cap->vht_cap_info &
565 cpu_to_le32(IEEE80211_VHT_CAP_SU_BEAMFORMER_CAPABLE)))
566 cap &= ~(IEEE80211_VHT_CAP_SU_BEAMFORMEE_CAPABLE |
567 IEEE80211_VHT_CAP_MU_BEAMFORMEE_CAPABLE);
568 else if (!(ap_vht_cap->vht_cap_info &
569 cpu_to_le32(IEEE80211_VHT_CAP_MU_BEAMFORMER_CAPABLE)))
570 cap &= ~IEEE80211_VHT_CAP_MU_BEAMFORMEE_CAPABLE;
573 * If some other vif is using the MU-MIMO capablity we cannot associate
574 * using MU-MIMO - this will lead to contradictions in the group-id
576 * Ownership is defined since association request, in order to avoid
577 * simultaneous associations with MU-MIMO.
579 if (cap & IEEE80211_VHT_CAP_MU_BEAMFORMEE_CAPABLE) {
580 bool disable_mu_mimo = false;
581 struct ieee80211_sub_if_data *other;
583 list_for_each_entry_rcu(other, &local->interfaces, list) {
584 if (other->vif.mu_mimo_owner) {
585 disable_mu_mimo = true;
590 cap &= ~IEEE80211_VHT_CAP_MU_BEAMFORMEE_CAPABLE;
592 sdata->vif.mu_mimo_owner = true;
595 mask = IEEE80211_VHT_CAP_BEAMFORMEE_STS_MASK;
597 ap_bf_sts = le32_to_cpu(ap_vht_cap->vht_cap_info) & mask;
598 our_bf_sts = cap & mask;
600 if (ap_bf_sts < our_bf_sts) {
605 /* reserve and fill IE */
606 pos = skb_put(skb, sizeof(struct ieee80211_vht_cap) + 2);
607 ieee80211_ie_build_vht_cap(pos, &vht_cap, cap);
610 /* This function determines HE capability flags for the association
613 static void ieee80211_add_he_ie(struct ieee80211_sub_if_data *sdata,
615 struct ieee80211_supported_band *sband)
618 const struct ieee80211_sta_he_cap *he_cap = NULL;
621 he_cap = ieee80211_get_he_sta_cap(sband);
626 * TODO: the 1 added is because this temporarily is under the EXTENSION
627 * IE. Get rid of it when it moves.
630 2 + 1 + sizeof(he_cap->he_cap_elem) +
631 ieee80211_he_mcs_nss_size(&he_cap->he_cap_elem) +
632 ieee80211_he_ppe_size(he_cap->ppe_thres[0],
633 he_cap->he_cap_elem.phy_cap_info);
634 pos = skb_put(skb, he_cap_size);
635 ieee80211_ie_build_he_cap(pos, he_cap, pos + he_cap_size);
638 static void ieee80211_send_assoc(struct ieee80211_sub_if_data *sdata)
640 struct ieee80211_local *local = sdata->local;
641 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
642 struct ieee80211_mgd_assoc_data *assoc_data = ifmgd->assoc_data;
644 struct ieee80211_mgmt *mgmt;
646 size_t offset = 0, noffset;
647 int i, count, rates_len, supp_rates_len, shift;
649 struct ieee80211_supported_band *sband;
650 struct ieee80211_chanctx_conf *chanctx_conf;
651 struct ieee80211_channel *chan;
654 sdata_assert_lock(sdata);
657 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
658 if (WARN_ON(!chanctx_conf)) {
662 chan = chanctx_conf->def.chan;
664 sband = local->hw.wiphy->bands[chan->band];
665 shift = ieee80211_vif_get_shift(&sdata->vif);
667 if (assoc_data->supp_rates_len) {
669 * Get all rates supported by the device and the AP as
670 * some APs don't like getting a superset of their rates
671 * in the association request (e.g. D-Link DAP 1353 in
674 rates_len = ieee80211_parse_bitrates(&chanctx_conf->def, sband,
675 assoc_data->supp_rates,
676 assoc_data->supp_rates_len,
680 * In case AP not provide any supported rates information
681 * before association, we send information element(s) with
682 * all rates that we support.
685 for (i = 0; i < sband->n_bitrates; i++) {
691 skb = alloc_skb(local->hw.extra_tx_headroom +
692 sizeof(*mgmt) + /* bit too much but doesn't matter */
693 2 + assoc_data->ssid_len + /* SSID */
694 4 + rates_len + /* (extended) rates */
695 4 + /* power capability */
696 2 + 2 * sband->n_channels + /* supported channels */
697 2 + sizeof(struct ieee80211_ht_cap) + /* HT */
698 2 + sizeof(struct ieee80211_vht_cap) + /* VHT */
699 2 + 1 + sizeof(struct ieee80211_he_cap_elem) + /* HE */
700 sizeof(struct ieee80211_he_mcs_nss_supp) +
701 IEEE80211_HE_PPE_THRES_MAX_LEN +
702 assoc_data->ie_len + /* extra IEs */
703 (assoc_data->fils_kek_len ? 16 /* AES-SIV */ : 0) +
709 skb_reserve(skb, local->hw.extra_tx_headroom);
711 capab = WLAN_CAPABILITY_ESS;
713 if (sband->band == NL80211_BAND_2GHZ) {
714 capab |= WLAN_CAPABILITY_SHORT_SLOT_TIME;
715 capab |= WLAN_CAPABILITY_SHORT_PREAMBLE;
718 if (assoc_data->capability & WLAN_CAPABILITY_PRIVACY)
719 capab |= WLAN_CAPABILITY_PRIVACY;
721 if ((assoc_data->capability & WLAN_CAPABILITY_SPECTRUM_MGMT) &&
722 ieee80211_hw_check(&local->hw, SPECTRUM_MGMT))
723 capab |= WLAN_CAPABILITY_SPECTRUM_MGMT;
725 if (ifmgd->flags & IEEE80211_STA_ENABLE_RRM)
726 capab |= WLAN_CAPABILITY_RADIO_MEASURE;
728 mgmt = skb_put_zero(skb, 24);
729 memcpy(mgmt->da, assoc_data->bss->bssid, ETH_ALEN);
730 memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN);
731 memcpy(mgmt->bssid, assoc_data->bss->bssid, ETH_ALEN);
733 if (!is_zero_ether_addr(assoc_data->prev_bssid)) {
735 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
736 IEEE80211_STYPE_REASSOC_REQ);
737 mgmt->u.reassoc_req.capab_info = cpu_to_le16(capab);
738 mgmt->u.reassoc_req.listen_interval =
739 cpu_to_le16(local->hw.conf.listen_interval);
740 memcpy(mgmt->u.reassoc_req.current_ap, assoc_data->prev_bssid,
744 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
745 IEEE80211_STYPE_ASSOC_REQ);
746 mgmt->u.assoc_req.capab_info = cpu_to_le16(capab);
747 mgmt->u.assoc_req.listen_interval =
748 cpu_to_le16(local->hw.conf.listen_interval);
752 pos = skb_put(skb, 2 + assoc_data->ssid_len);
753 *pos++ = WLAN_EID_SSID;
754 *pos++ = assoc_data->ssid_len;
755 memcpy(pos, assoc_data->ssid, assoc_data->ssid_len);
757 /* add all rates which were marked to be used above */
758 supp_rates_len = rates_len;
759 if (supp_rates_len > 8)
762 pos = skb_put(skb, supp_rates_len + 2);
763 *pos++ = WLAN_EID_SUPP_RATES;
764 *pos++ = supp_rates_len;
767 for (i = 0; i < sband->n_bitrates; i++) {
768 if (BIT(i) & rates) {
769 int rate = DIV_ROUND_UP(sband->bitrates[i].bitrate,
777 if (rates_len > count) {
778 pos = skb_put(skb, rates_len - count + 2);
779 *pos++ = WLAN_EID_EXT_SUPP_RATES;
780 *pos++ = rates_len - count;
782 for (i++; i < sband->n_bitrates; i++) {
783 if (BIT(i) & rates) {
785 rate = DIV_ROUND_UP(sband->bitrates[i].bitrate,
792 if (capab & WLAN_CAPABILITY_SPECTRUM_MGMT ||
793 capab & WLAN_CAPABILITY_RADIO_MEASURE) {
794 pos = skb_put(skb, 4);
795 *pos++ = WLAN_EID_PWR_CAPABILITY;
797 *pos++ = 0; /* min tx power */
799 *pos++ = ieee80211_chandef_max_power(&chanctx_conf->def);
802 if (capab & WLAN_CAPABILITY_SPECTRUM_MGMT) {
803 /* TODO: get this in reg domain format */
804 pos = skb_put(skb, 2 * sband->n_channels + 2);
805 *pos++ = WLAN_EID_SUPPORTED_CHANNELS;
806 *pos++ = 2 * sband->n_channels;
807 for (i = 0; i < sband->n_channels; i++) {
808 *pos++ = ieee80211_frequency_to_channel(
809 sband->channels[i].center_freq);
810 *pos++ = 1; /* one channel in the subband*/
814 /* if present, add any custom IEs that go before HT */
815 if (assoc_data->ie_len) {
816 static const u8 before_ht[] = {
819 WLAN_EID_EXT_SUPP_RATES,
820 WLAN_EID_PWR_CAPABILITY,
821 WLAN_EID_SUPPORTED_CHANNELS,
824 WLAN_EID_RRM_ENABLED_CAPABILITIES,
825 WLAN_EID_MOBILITY_DOMAIN,
826 WLAN_EID_FAST_BSS_TRANSITION, /* reassoc only */
827 WLAN_EID_RIC_DATA, /* reassoc only */
828 WLAN_EID_SUPPORTED_REGULATORY_CLASSES,
830 static const u8 after_ric[] = {
831 WLAN_EID_SUPPORTED_REGULATORY_CLASSES,
832 WLAN_EID_HT_CAPABILITY,
833 WLAN_EID_BSS_COEX_2040,
834 /* luckily this is almost always there */
835 WLAN_EID_EXT_CAPABILITY,
836 WLAN_EID_QOS_TRAFFIC_CAPA,
837 WLAN_EID_TIM_BCAST_REQ,
838 WLAN_EID_INTERWORKING,
839 /* 60 GHz (Multi-band, DMG, MMS) can't happen */
840 WLAN_EID_VHT_CAPABILITY,
841 WLAN_EID_OPMODE_NOTIF,
844 noffset = ieee80211_ie_split_ric(assoc_data->ie,
847 ARRAY_SIZE(before_ht),
849 ARRAY_SIZE(after_ric),
851 skb_put_data(skb, assoc_data->ie + offset, noffset - offset);
855 if (WARN_ON_ONCE((ifmgd->flags & IEEE80211_STA_DISABLE_HT) &&
856 !(ifmgd->flags & IEEE80211_STA_DISABLE_VHT)))
857 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
859 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_HT))
860 ieee80211_add_ht_ie(sdata, skb, assoc_data->ap_ht_param,
861 sband, chan, sdata->smps_mode);
863 /* if present, add any custom IEs that go before VHT */
864 if (assoc_data->ie_len) {
865 static const u8 before_vht[] = {
867 * no need to list the ones split off before HT
870 WLAN_EID_BSS_COEX_2040,
871 WLAN_EID_EXT_CAPABILITY,
872 WLAN_EID_QOS_TRAFFIC_CAPA,
873 WLAN_EID_TIM_BCAST_REQ,
874 WLAN_EID_INTERWORKING,
875 /* 60 GHz (Multi-band, DMG, MMS) can't happen */
878 /* RIC already taken above, so no need to handle here anymore */
879 noffset = ieee80211_ie_split(assoc_data->ie, assoc_data->ie_len,
880 before_vht, ARRAY_SIZE(before_vht),
882 skb_put_data(skb, assoc_data->ie + offset, noffset - offset);
886 /* if present, add any custom IEs that go before HE */
887 if (assoc_data->ie_len) {
888 static const u8 before_he[] = {
890 * no need to list the ones split off before VHT
893 WLAN_EID_OPMODE_NOTIF,
894 WLAN_EID_EXTENSION, WLAN_EID_EXT_FUTURE_CHAN_GUIDANCE,
896 WLAN_EID_EXTENSION, WLAN_EID_EXT_FILS_SESSION,
897 WLAN_EID_EXTENSION, WLAN_EID_EXT_FILS_PUBLIC_KEY,
898 WLAN_EID_EXTENSION, WLAN_EID_EXT_FILS_KEY_CONFIRM,
899 WLAN_EID_EXTENSION, WLAN_EID_EXT_FILS_HLP_CONTAINER,
900 WLAN_EID_EXTENSION, WLAN_EID_EXT_FILS_IP_ADDR_ASSIGN,
901 /* TODO: add 11ah/11aj/11ak elements */
904 /* RIC already taken above, so no need to handle here anymore */
905 noffset = ieee80211_ie_split(assoc_data->ie, assoc_data->ie_len,
906 before_he, ARRAY_SIZE(before_he),
908 pos = skb_put(skb, noffset - offset);
909 memcpy(pos, assoc_data->ie + offset, noffset - offset);
913 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_VHT))
914 ieee80211_add_vht_ie(sdata, skb, sband,
915 &assoc_data->ap_vht_cap);
917 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_HE))
918 ieee80211_add_he_ie(sdata, skb, sband);
920 /* if present, add any custom non-vendor IEs that go after HE */
921 if (assoc_data->ie_len) {
922 noffset = ieee80211_ie_split_vendor(assoc_data->ie,
925 skb_put_data(skb, assoc_data->ie + offset, noffset - offset);
929 if (assoc_data->wmm) {
930 if (assoc_data->uapsd) {
931 qos_info = ifmgd->uapsd_queues;
932 qos_info |= (ifmgd->uapsd_max_sp_len <<
933 IEEE80211_WMM_IE_STA_QOSINFO_SP_SHIFT);
938 pos = ieee80211_add_wmm_info_ie(skb_put(skb, 9), qos_info);
941 /* add any remaining custom (i.e. vendor specific here) IEs */
942 if (assoc_data->ie_len) {
943 noffset = assoc_data->ie_len;
944 skb_put_data(skb, assoc_data->ie + offset, noffset - offset);
947 if (assoc_data->fils_kek_len &&
948 fils_encrypt_assoc_req(skb, assoc_data) < 0) {
953 drv_mgd_prepare_tx(local, sdata, 0);
955 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
956 if (ieee80211_hw_check(&local->hw, REPORTS_TX_ACK_STATUS))
957 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_CTL_REQ_TX_STATUS |
958 IEEE80211_TX_INTFL_MLME_CONN_TX;
959 ieee80211_tx_skb(sdata, skb);
962 void ieee80211_send_pspoll(struct ieee80211_local *local,
963 struct ieee80211_sub_if_data *sdata)
965 struct ieee80211_pspoll *pspoll;
968 skb = ieee80211_pspoll_get(&local->hw, &sdata->vif);
972 pspoll = (struct ieee80211_pspoll *) skb->data;
973 pspoll->frame_control |= cpu_to_le16(IEEE80211_FCTL_PM);
975 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
976 ieee80211_tx_skb(sdata, skb);
979 void ieee80211_send_nullfunc(struct ieee80211_local *local,
980 struct ieee80211_sub_if_data *sdata,
984 struct ieee80211_hdr_3addr *nullfunc;
985 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
987 /* Don't send NDPs when STA is connected HE */
988 if (sdata->vif.type == NL80211_IFTYPE_STATION &&
989 !(ifmgd->flags & IEEE80211_STA_DISABLE_HE))
992 skb = ieee80211_nullfunc_get(&local->hw, &sdata->vif,
993 !ieee80211_hw_check(&local->hw, DOESNT_SUPPORT_QOS_NDP));
997 nullfunc = (struct ieee80211_hdr_3addr *) skb->data;
999 nullfunc->frame_control |= cpu_to_le16(IEEE80211_FCTL_PM);
1001 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT |
1002 IEEE80211_TX_INTFL_OFFCHAN_TX_OK;
1004 if (ieee80211_hw_check(&local->hw, REPORTS_TX_ACK_STATUS))
1005 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_CTL_REQ_TX_STATUS;
1007 if (ifmgd->flags & IEEE80211_STA_CONNECTION_POLL)
1008 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_CTL_USE_MINRATE;
1010 ieee80211_tx_skb(sdata, skb);
1013 static void ieee80211_send_4addr_nullfunc(struct ieee80211_local *local,
1014 struct ieee80211_sub_if_data *sdata)
1016 struct sk_buff *skb;
1017 struct ieee80211_hdr *nullfunc;
1020 if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION))
1023 /* Don't send NDPs when connected HE */
1024 if (!(sdata->u.mgd.flags & IEEE80211_STA_DISABLE_HE))
1027 skb = dev_alloc_skb(local->hw.extra_tx_headroom + 30);
1031 skb_reserve(skb, local->hw.extra_tx_headroom);
1033 nullfunc = skb_put_zero(skb, 30);
1034 fc = cpu_to_le16(IEEE80211_FTYPE_DATA | IEEE80211_STYPE_NULLFUNC |
1035 IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS);
1036 nullfunc->frame_control = fc;
1037 memcpy(nullfunc->addr1, sdata->u.mgd.bssid, ETH_ALEN);
1038 memcpy(nullfunc->addr2, sdata->vif.addr, ETH_ALEN);
1039 memcpy(nullfunc->addr3, sdata->u.mgd.bssid, ETH_ALEN);
1040 memcpy(nullfunc->addr4, sdata->vif.addr, ETH_ALEN);
1042 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
1043 ieee80211_tx_skb(sdata, skb);
1046 /* spectrum management related things */
1047 static void ieee80211_chswitch_work(struct work_struct *work)
1049 struct ieee80211_sub_if_data *sdata =
1050 container_of(work, struct ieee80211_sub_if_data, u.mgd.chswitch_work);
1051 struct ieee80211_local *local = sdata->local;
1052 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1055 if (!ieee80211_sdata_running(sdata))
1059 mutex_lock(&local->mtx);
1060 mutex_lock(&local->chanctx_mtx);
1062 if (!ifmgd->associated)
1065 if (!sdata->vif.csa_active)
1069 * using reservation isn't immediate as it may be deferred until later
1070 * with multi-vif. once reservation is complete it will re-schedule the
1071 * work with no reserved_chanctx so verify chandef to check if it
1072 * completed successfully
1075 if (sdata->reserved_chanctx) {
1076 struct ieee80211_supported_band *sband = NULL;
1077 struct sta_info *mgd_sta = NULL;
1078 enum ieee80211_sta_rx_bandwidth bw = IEEE80211_STA_RX_BW_20;
1081 * with multi-vif csa driver may call ieee80211_csa_finish()
1082 * many times while waiting for other interfaces to use their
1085 if (sdata->reserved_ready)
1088 if (sdata->vif.bss_conf.chandef.width !=
1089 sdata->csa_chandef.width) {
1091 * For managed interface, we need to also update the AP
1092 * station bandwidth and align the rate scale algorithm
1093 * on the bandwidth change. Here we only consider the
1094 * bandwidth of the new channel definition (as channel
1095 * switch flow does not have the full HT/VHT/HE
1096 * information), assuming that if additional changes are
1097 * required they would be done as part of the processing
1098 * of the next beacon from the AP.
1100 switch (sdata->csa_chandef.width) {
1101 case NL80211_CHAN_WIDTH_20_NOHT:
1102 case NL80211_CHAN_WIDTH_20:
1104 bw = IEEE80211_STA_RX_BW_20;
1106 case NL80211_CHAN_WIDTH_40:
1107 bw = IEEE80211_STA_RX_BW_40;
1109 case NL80211_CHAN_WIDTH_80:
1110 bw = IEEE80211_STA_RX_BW_80;
1112 case NL80211_CHAN_WIDTH_80P80:
1113 case NL80211_CHAN_WIDTH_160:
1114 bw = IEEE80211_STA_RX_BW_160;
1118 mgd_sta = sta_info_get(sdata, ifmgd->bssid);
1120 local->hw.wiphy->bands[sdata->csa_chandef.chan->band];
1123 if (sdata->vif.bss_conf.chandef.width >
1124 sdata->csa_chandef.width) {
1125 mgd_sta->sta.bandwidth = bw;
1126 rate_control_rate_update(local, sband, mgd_sta,
1127 IEEE80211_RC_BW_CHANGED);
1130 ret = ieee80211_vif_use_reserved_context(sdata);
1133 "failed to use reserved channel context, disconnecting (err=%d)\n",
1135 ieee80211_queue_work(&sdata->local->hw,
1136 &ifmgd->csa_connection_drop_work);
1140 if (sdata->vif.bss_conf.chandef.width <
1141 sdata->csa_chandef.width) {
1142 mgd_sta->sta.bandwidth = bw;
1143 rate_control_rate_update(local, sband, mgd_sta,
1144 IEEE80211_RC_BW_CHANGED);
1150 if (!cfg80211_chandef_identical(&sdata->vif.bss_conf.chandef,
1151 &sdata->csa_chandef)) {
1153 "failed to finalize channel switch, disconnecting\n");
1154 ieee80211_queue_work(&sdata->local->hw,
1155 &ifmgd->csa_connection_drop_work);
1159 ifmgd->csa_waiting_bcn = true;
1161 ieee80211_sta_reset_beacon_monitor(sdata);
1162 ieee80211_sta_reset_conn_monitor(sdata);
1165 mutex_unlock(&local->chanctx_mtx);
1166 mutex_unlock(&local->mtx);
1167 sdata_unlock(sdata);
1170 static void ieee80211_chswitch_post_beacon(struct ieee80211_sub_if_data *sdata)
1172 struct ieee80211_local *local = sdata->local;
1173 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1176 sdata_assert_lock(sdata);
1178 WARN_ON(!sdata->vif.csa_active);
1180 if (sdata->csa_block_tx) {
1181 ieee80211_wake_vif_queues(local, sdata,
1182 IEEE80211_QUEUE_STOP_REASON_CSA);
1183 sdata->csa_block_tx = false;
1186 sdata->vif.csa_active = false;
1187 ifmgd->csa_waiting_bcn = false;
1189 * If the CSA IE is still present on the beacon after the switch,
1190 * we need to consider it as a new CSA (possibly to self).
1192 ifmgd->beacon_crc_valid = false;
1194 ret = drv_post_channel_switch(sdata);
1197 "driver post channel switch failed, disconnecting\n");
1198 ieee80211_queue_work(&local->hw,
1199 &ifmgd->csa_connection_drop_work);
1203 cfg80211_ch_switch_notify(sdata->dev, &sdata->reserved_chandef);
1206 void ieee80211_chswitch_done(struct ieee80211_vif *vif, bool success)
1208 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
1209 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1211 trace_api_chswitch_done(sdata, success);
1214 "driver channel switch failed, disconnecting\n");
1215 ieee80211_queue_work(&sdata->local->hw,
1216 &ifmgd->csa_connection_drop_work);
1218 ieee80211_queue_work(&sdata->local->hw, &ifmgd->chswitch_work);
1221 EXPORT_SYMBOL(ieee80211_chswitch_done);
1223 static void ieee80211_chswitch_timer(struct timer_list *t)
1225 struct ieee80211_sub_if_data *sdata =
1226 from_timer(sdata, t, u.mgd.chswitch_timer);
1228 ieee80211_queue_work(&sdata->local->hw, &sdata->u.mgd.chswitch_work);
1232 ieee80211_sta_process_chanswitch(struct ieee80211_sub_if_data *sdata,
1233 u64 timestamp, u32 device_timestamp,
1234 struct ieee802_11_elems *elems,
1237 struct ieee80211_local *local = sdata->local;
1238 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1239 struct cfg80211_bss *cbss = ifmgd->associated;
1240 struct ieee80211_chanctx_conf *conf;
1241 struct ieee80211_chanctx *chanctx;
1242 enum nl80211_band current_band;
1243 struct ieee80211_csa_ie csa_ie;
1244 struct ieee80211_channel_switch ch_switch;
1247 sdata_assert_lock(sdata);
1252 if (local->scanning)
1255 /* disregard subsequent announcements if we are already processing */
1256 if (sdata->vif.csa_active)
1259 current_band = cbss->channel->band;
1260 res = ieee80211_parse_ch_switch_ie(sdata, elems, current_band,
1262 ifmgd->associated->bssid, &csa_ie);
1264 ieee80211_queue_work(&local->hw,
1265 &ifmgd->csa_connection_drop_work);
1269 if (!cfg80211_chandef_usable(local->hw.wiphy, &csa_ie.chandef,
1270 IEEE80211_CHAN_DISABLED)) {
1272 "AP %pM switches to unsupported channel (%d MHz, width:%d, CF1/2: %d/%d MHz), disconnecting\n",
1273 ifmgd->associated->bssid,
1274 csa_ie.chandef.chan->center_freq,
1275 csa_ie.chandef.width, csa_ie.chandef.center_freq1,
1276 csa_ie.chandef.center_freq2);
1277 ieee80211_queue_work(&local->hw,
1278 &ifmgd->csa_connection_drop_work);
1282 if (cfg80211_chandef_identical(&csa_ie.chandef,
1283 &sdata->vif.bss_conf.chandef)) {
1284 if (ifmgd->csa_ignored_same_chan)
1287 "AP %pM tries to chanswitch to same channel, ignore\n",
1288 ifmgd->associated->bssid);
1289 ifmgd->csa_ignored_same_chan = true;
1294 * Drop all TDLS peers - either we disconnect or move to a different
1295 * channel from this point on. There's no telling what our peer will do.
1296 * The TDLS WIDER_BW scenario is also problematic, as peers might now
1297 * have an incompatible wider chandef.
1299 ieee80211_teardown_tdls_peers(sdata);
1301 mutex_lock(&local->mtx);
1302 mutex_lock(&local->chanctx_mtx);
1303 conf = rcu_dereference_protected(sdata->vif.chanctx_conf,
1304 lockdep_is_held(&local->chanctx_mtx));
1307 "no channel context assigned to vif?, disconnecting\n");
1308 goto drop_connection;
1311 chanctx = container_of(conf, struct ieee80211_chanctx, conf);
1313 if (local->use_chanctx &&
1314 !ieee80211_hw_check(&local->hw, CHANCTX_STA_CSA)) {
1316 "driver doesn't support chan-switch with channel contexts\n");
1317 goto drop_connection;
1320 ch_switch.timestamp = timestamp;
1321 ch_switch.device_timestamp = device_timestamp;
1322 ch_switch.block_tx = csa_ie.mode;
1323 ch_switch.chandef = csa_ie.chandef;
1324 ch_switch.count = csa_ie.count;
1326 if (drv_pre_channel_switch(sdata, &ch_switch)) {
1328 "preparing for channel switch failed, disconnecting\n");
1329 goto drop_connection;
1332 res = ieee80211_vif_reserve_chanctx(sdata, &csa_ie.chandef,
1333 chanctx->mode, false);
1336 "failed to reserve channel context for channel switch, disconnecting (err=%d)\n",
1338 goto drop_connection;
1340 mutex_unlock(&local->chanctx_mtx);
1342 sdata->vif.csa_active = true;
1343 sdata->csa_chandef = csa_ie.chandef;
1344 sdata->csa_block_tx = csa_ie.mode;
1345 ifmgd->csa_ignored_same_chan = false;
1347 if (sdata->csa_block_tx)
1348 ieee80211_stop_vif_queues(local, sdata,
1349 IEEE80211_QUEUE_STOP_REASON_CSA);
1350 mutex_unlock(&local->mtx);
1352 cfg80211_ch_switch_started_notify(sdata->dev, &csa_ie.chandef,
1355 if (local->ops->channel_switch) {
1356 /* use driver's channel switch callback */
1357 drv_channel_switch(local, sdata, &ch_switch);
1361 /* channel switch handled in software */
1362 if (csa_ie.count <= 1)
1363 ieee80211_queue_work(&local->hw, &ifmgd->chswitch_work);
1365 mod_timer(&ifmgd->chswitch_timer,
1366 TU_TO_EXP_TIME((csa_ie.count - 1) *
1367 cbss->beacon_interval));
1371 * This is just so that the disconnect flow will know that
1372 * we were trying to switch channel and failed. In case the
1373 * mode is 1 (we are not allowed to Tx), we will know not to
1374 * send a deauthentication frame. Those two fields will be
1375 * reset when the disconnection worker runs.
1377 sdata->vif.csa_active = true;
1378 sdata->csa_block_tx = csa_ie.mode;
1380 ieee80211_queue_work(&local->hw, &ifmgd->csa_connection_drop_work);
1381 mutex_unlock(&local->chanctx_mtx);
1382 mutex_unlock(&local->mtx);
1386 ieee80211_find_80211h_pwr_constr(struct ieee80211_sub_if_data *sdata,
1387 struct ieee80211_channel *channel,
1388 const u8 *country_ie, u8 country_ie_len,
1389 const u8 *pwr_constr_elem,
1390 int *chan_pwr, int *pwr_reduction)
1392 struct ieee80211_country_ie_triplet *triplet;
1393 int chan = ieee80211_frequency_to_channel(channel->center_freq);
1394 int i, chan_increment;
1395 bool have_chan_pwr = false;
1398 if (country_ie_len % 2 || country_ie_len < IEEE80211_COUNTRY_IE_MIN_LEN)
1401 triplet = (void *)(country_ie + 3);
1402 country_ie_len -= 3;
1404 switch (channel->band) {
1408 case NL80211_BAND_2GHZ:
1409 case NL80211_BAND_60GHZ:
1412 case NL80211_BAND_5GHZ:
1418 while (country_ie_len >= 3) {
1419 u8 first_channel = triplet->chans.first_channel;
1421 if (first_channel >= IEEE80211_COUNTRY_EXTENSION_ID)
1424 for (i = 0; i < triplet->chans.num_channels; i++) {
1425 if (first_channel + i * chan_increment == chan) {
1426 have_chan_pwr = true;
1427 *chan_pwr = triplet->chans.max_power;
1436 country_ie_len -= 3;
1439 if (have_chan_pwr && pwr_constr_elem)
1440 *pwr_reduction = *pwr_constr_elem;
1444 return have_chan_pwr;
1447 static void ieee80211_find_cisco_dtpc(struct ieee80211_sub_if_data *sdata,
1448 struct ieee80211_channel *channel,
1449 const u8 *cisco_dtpc_ie,
1452 /* From practical testing, the first data byte of the DTPC element
1453 * seems to contain the requested dBm level, and the CLI on Cisco
1454 * APs clearly state the range is -127 to 127 dBm, which indicates
1455 * a signed byte, although it seemingly never actually goes negative.
1456 * The other byte seems to always be zero.
1458 *pwr_level = (__s8)cisco_dtpc_ie[4];
1461 static u32 ieee80211_handle_pwr_constr(struct ieee80211_sub_if_data *sdata,
1462 struct ieee80211_channel *channel,
1463 struct ieee80211_mgmt *mgmt,
1464 const u8 *country_ie, u8 country_ie_len,
1465 const u8 *pwr_constr_ie,
1466 const u8 *cisco_dtpc_ie)
1468 bool has_80211h_pwr = false, has_cisco_pwr = false;
1469 int chan_pwr = 0, pwr_reduction_80211h = 0;
1470 int pwr_level_cisco, pwr_level_80211h;
1472 __le16 capab = mgmt->u.probe_resp.capab_info;
1475 (capab & cpu_to_le16(WLAN_CAPABILITY_SPECTRUM_MGMT) ||
1476 capab & cpu_to_le16(WLAN_CAPABILITY_RADIO_MEASURE))) {
1477 has_80211h_pwr = ieee80211_find_80211h_pwr_constr(
1478 sdata, channel, country_ie, country_ie_len,
1479 pwr_constr_ie, &chan_pwr, &pwr_reduction_80211h);
1481 max_t(int, 0, chan_pwr - pwr_reduction_80211h);
1484 if (cisco_dtpc_ie) {
1485 ieee80211_find_cisco_dtpc(
1486 sdata, channel, cisco_dtpc_ie, &pwr_level_cisco);
1487 has_cisco_pwr = true;
1490 if (!has_80211h_pwr && !has_cisco_pwr)
1493 /* If we have both 802.11h and Cisco DTPC, apply both limits
1494 * by picking the smallest of the two power levels advertised.
1496 if (has_80211h_pwr &&
1497 (!has_cisco_pwr || pwr_level_80211h <= pwr_level_cisco)) {
1498 new_ap_level = pwr_level_80211h;
1500 if (sdata->ap_power_level == new_ap_level)
1504 "Limiting TX power to %d (%d - %d) dBm as advertised by %pM\n",
1505 pwr_level_80211h, chan_pwr, pwr_reduction_80211h,
1506 sdata->u.mgd.bssid);
1507 } else { /* has_cisco_pwr is always true here. */
1508 new_ap_level = pwr_level_cisco;
1510 if (sdata->ap_power_level == new_ap_level)
1514 "Limiting TX power to %d dBm as advertised by %pM\n",
1515 pwr_level_cisco, sdata->u.mgd.bssid);
1518 sdata->ap_power_level = new_ap_level;
1519 if (__ieee80211_recalc_txpower(sdata))
1520 return BSS_CHANGED_TXPOWER;
1525 static void ieee80211_enable_ps(struct ieee80211_local *local,
1526 struct ieee80211_sub_if_data *sdata)
1528 struct ieee80211_conf *conf = &local->hw.conf;
1531 * If we are scanning right now then the parameters will
1532 * take effect when scan finishes.
1534 if (local->scanning)
1537 if (conf->dynamic_ps_timeout > 0 &&
1538 !ieee80211_hw_check(&local->hw, SUPPORTS_DYNAMIC_PS)) {
1539 mod_timer(&local->dynamic_ps_timer, jiffies +
1540 msecs_to_jiffies(conf->dynamic_ps_timeout));
1542 if (ieee80211_hw_check(&local->hw, PS_NULLFUNC_STACK))
1543 ieee80211_send_nullfunc(local, sdata, true);
1545 if (ieee80211_hw_check(&local->hw, PS_NULLFUNC_STACK) &&
1546 ieee80211_hw_check(&local->hw, REPORTS_TX_ACK_STATUS))
1549 conf->flags |= IEEE80211_CONF_PS;
1550 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
1554 static void ieee80211_change_ps(struct ieee80211_local *local)
1556 struct ieee80211_conf *conf = &local->hw.conf;
1558 if (local->ps_sdata) {
1559 ieee80211_enable_ps(local, local->ps_sdata);
1560 } else if (conf->flags & IEEE80211_CONF_PS) {
1561 conf->flags &= ~IEEE80211_CONF_PS;
1562 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
1563 del_timer_sync(&local->dynamic_ps_timer);
1564 cancel_work_sync(&local->dynamic_ps_enable_work);
1568 static bool ieee80211_powersave_allowed(struct ieee80211_sub_if_data *sdata)
1570 struct ieee80211_if_managed *mgd = &sdata->u.mgd;
1571 struct sta_info *sta = NULL;
1572 bool authorized = false;
1574 if (!mgd->powersave)
1580 if (!mgd->associated)
1583 if (mgd->flags & IEEE80211_STA_CONNECTION_POLL)
1586 if (!mgd->have_beacon)
1590 sta = sta_info_get(sdata, mgd->bssid);
1592 authorized = test_sta_flag(sta, WLAN_STA_AUTHORIZED);
1598 /* need to hold RTNL or interface lock */
1599 void ieee80211_recalc_ps(struct ieee80211_local *local)
1601 struct ieee80211_sub_if_data *sdata, *found = NULL;
1605 if (!ieee80211_hw_check(&local->hw, SUPPORTS_PS)) {
1606 local->ps_sdata = NULL;
1610 list_for_each_entry(sdata, &local->interfaces, list) {
1611 if (!ieee80211_sdata_running(sdata))
1613 if (sdata->vif.type == NL80211_IFTYPE_AP) {
1614 /* If an AP vif is found, then disable PS
1615 * by setting the count to zero thereby setting
1621 if (sdata->vif.type != NL80211_IFTYPE_STATION)
1627 if (count == 1 && ieee80211_powersave_allowed(found)) {
1628 u8 dtimper = found->u.mgd.dtim_period;
1630 timeout = local->dynamic_ps_forced_timeout;
1633 local->hw.conf.dynamic_ps_timeout = timeout;
1635 /* If the TIM IE is invalid, pretend the value is 1 */
1639 local->hw.conf.ps_dtim_period = dtimper;
1640 local->ps_sdata = found;
1642 local->ps_sdata = NULL;
1645 ieee80211_change_ps(local);
1648 void ieee80211_recalc_ps_vif(struct ieee80211_sub_if_data *sdata)
1650 bool ps_allowed = ieee80211_powersave_allowed(sdata);
1652 if (sdata->vif.bss_conf.ps != ps_allowed) {
1653 sdata->vif.bss_conf.ps = ps_allowed;
1654 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_PS);
1658 void ieee80211_dynamic_ps_disable_work(struct work_struct *work)
1660 struct ieee80211_local *local =
1661 container_of(work, struct ieee80211_local,
1662 dynamic_ps_disable_work);
1664 if (local->hw.conf.flags & IEEE80211_CONF_PS) {
1665 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
1666 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
1669 ieee80211_wake_queues_by_reason(&local->hw,
1670 IEEE80211_MAX_QUEUE_MAP,
1671 IEEE80211_QUEUE_STOP_REASON_PS,
1675 void ieee80211_dynamic_ps_enable_work(struct work_struct *work)
1677 struct ieee80211_local *local =
1678 container_of(work, struct ieee80211_local,
1679 dynamic_ps_enable_work);
1680 struct ieee80211_sub_if_data *sdata = local->ps_sdata;
1681 struct ieee80211_if_managed *ifmgd;
1682 unsigned long flags;
1685 /* can only happen when PS was just disabled anyway */
1689 ifmgd = &sdata->u.mgd;
1691 if (local->hw.conf.flags & IEEE80211_CONF_PS)
1694 if (local->hw.conf.dynamic_ps_timeout > 0) {
1695 /* don't enter PS if TX frames are pending */
1696 if (drv_tx_frames_pending(local)) {
1697 mod_timer(&local->dynamic_ps_timer, jiffies +
1699 local->hw.conf.dynamic_ps_timeout));
1704 * transmission can be stopped by others which leads to
1705 * dynamic_ps_timer expiry. Postpone the ps timer if it
1706 * is not the actual idle state.
1708 spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
1709 for (q = 0; q < local->hw.queues; q++) {
1710 if (local->queue_stop_reasons[q]) {
1711 spin_unlock_irqrestore(&local->queue_stop_reason_lock,
1713 mod_timer(&local->dynamic_ps_timer, jiffies +
1715 local->hw.conf.dynamic_ps_timeout));
1719 spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
1722 if (ieee80211_hw_check(&local->hw, PS_NULLFUNC_STACK) &&
1723 !(ifmgd->flags & IEEE80211_STA_NULLFUNC_ACKED)) {
1724 if (drv_tx_frames_pending(local)) {
1725 mod_timer(&local->dynamic_ps_timer, jiffies +
1727 local->hw.conf.dynamic_ps_timeout));
1729 ieee80211_send_nullfunc(local, sdata, true);
1730 /* Flush to get the tx status of nullfunc frame */
1731 ieee80211_flush_queues(local, sdata, false);
1735 if (!(ieee80211_hw_check(&local->hw, REPORTS_TX_ACK_STATUS) &&
1736 ieee80211_hw_check(&local->hw, PS_NULLFUNC_STACK)) ||
1737 (ifmgd->flags & IEEE80211_STA_NULLFUNC_ACKED)) {
1738 ifmgd->flags &= ~IEEE80211_STA_NULLFUNC_ACKED;
1739 local->hw.conf.flags |= IEEE80211_CONF_PS;
1740 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
1744 void ieee80211_dynamic_ps_timer(struct timer_list *t)
1746 struct ieee80211_local *local = from_timer(local, t, dynamic_ps_timer);
1748 ieee80211_queue_work(&local->hw, &local->dynamic_ps_enable_work);
1751 void ieee80211_dfs_cac_timer_work(struct work_struct *work)
1753 struct delayed_work *delayed_work = to_delayed_work(work);
1754 struct ieee80211_sub_if_data *sdata =
1755 container_of(delayed_work, struct ieee80211_sub_if_data,
1756 dfs_cac_timer_work);
1757 struct cfg80211_chan_def chandef = sdata->vif.bss_conf.chandef;
1759 mutex_lock(&sdata->local->mtx);
1760 if (sdata->wdev.cac_started) {
1761 ieee80211_vif_release_channel(sdata);
1762 cfg80211_cac_event(sdata->dev, &chandef,
1763 NL80211_RADAR_CAC_FINISHED,
1766 mutex_unlock(&sdata->local->mtx);
1770 __ieee80211_sta_handle_tspec_ac_params(struct ieee80211_sub_if_data *sdata)
1772 struct ieee80211_local *local = sdata->local;
1773 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1777 if (local->hw.queues < IEEE80211_NUM_ACS)
1780 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
1781 struct ieee80211_sta_tx_tspec *tx_tspec = &ifmgd->tx_tspec[ac];
1783 unsigned long now = jiffies;
1785 if (tx_tspec->action == TX_TSPEC_ACTION_NONE &&
1786 tx_tspec->admitted_time &&
1787 time_after(now, tx_tspec->time_slice_start + HZ)) {
1788 tx_tspec->consumed_tx_time = 0;
1789 tx_tspec->time_slice_start = now;
1791 if (tx_tspec->downgraded)
1793 TX_TSPEC_ACTION_STOP_DOWNGRADE;
1796 switch (tx_tspec->action) {
1797 case TX_TSPEC_ACTION_STOP_DOWNGRADE:
1798 /* take the original parameters */
1799 if (drv_conf_tx(local, sdata, ac, &sdata->tx_conf[ac]))
1801 "failed to set TX queue parameters for queue %d\n",
1803 tx_tspec->action = TX_TSPEC_ACTION_NONE;
1804 tx_tspec->downgraded = false;
1807 case TX_TSPEC_ACTION_DOWNGRADE:
1808 if (time_after(now, tx_tspec->time_slice_start + HZ)) {
1809 tx_tspec->action = TX_TSPEC_ACTION_NONE;
1813 /* downgrade next lower non-ACM AC */
1814 for (non_acm_ac = ac + 1;
1815 non_acm_ac < IEEE80211_NUM_ACS;
1817 if (!(sdata->wmm_acm & BIT(7 - 2 * non_acm_ac)))
1819 /* Usually the loop will result in using BK even if it
1820 * requires admission control, but such a configuration
1821 * makes no sense and we have to transmit somehow - the
1822 * AC selection does the same thing.
1823 * If we started out trying to downgrade from BK, then
1824 * the extra condition here might be needed.
1826 if (non_acm_ac >= IEEE80211_NUM_ACS)
1827 non_acm_ac = IEEE80211_AC_BK;
1828 if (drv_conf_tx(local, sdata, ac,
1829 &sdata->tx_conf[non_acm_ac]))
1831 "failed to set TX queue parameters for queue %d\n",
1833 tx_tspec->action = TX_TSPEC_ACTION_NONE;
1835 schedule_delayed_work(&ifmgd->tx_tspec_wk,
1836 tx_tspec->time_slice_start + HZ - now + 1);
1838 case TX_TSPEC_ACTION_NONE:
1847 void ieee80211_sta_handle_tspec_ac_params(struct ieee80211_sub_if_data *sdata)
1849 if (__ieee80211_sta_handle_tspec_ac_params(sdata))
1850 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_QOS);
1853 static void ieee80211_sta_handle_tspec_ac_params_wk(struct work_struct *work)
1855 struct ieee80211_sub_if_data *sdata;
1857 sdata = container_of(work, struct ieee80211_sub_if_data,
1858 u.mgd.tx_tspec_wk.work);
1859 ieee80211_sta_handle_tspec_ac_params(sdata);
1864 ieee80211_sta_wmm_params(struct ieee80211_local *local,
1865 struct ieee80211_sub_if_data *sdata,
1866 const u8 *wmm_param, size_t wmm_param_len,
1867 const struct ieee80211_mu_edca_param_set *mu_edca)
1869 struct ieee80211_tx_queue_params params[IEEE80211_NUM_ACS];
1870 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1874 u8 uapsd_queues = 0;
1876 if (!local->ops->conf_tx)
1879 if (local->hw.queues < IEEE80211_NUM_ACS)
1885 if (wmm_param_len < 8 || wmm_param[5] /* version */ != 1)
1888 if (ifmgd->flags & IEEE80211_STA_UAPSD_ENABLED)
1889 uapsd_queues = ifmgd->uapsd_queues;
1891 count = wmm_param[6] & 0x0f;
1892 if (count == ifmgd->wmm_last_param_set)
1894 ifmgd->wmm_last_param_set = count;
1896 pos = wmm_param + 8;
1897 left = wmm_param_len - 8;
1899 memset(¶ms, 0, sizeof(params));
1902 for (; left >= 4; left -= 4, pos += 4) {
1903 int aci = (pos[0] >> 5) & 0x03;
1904 int acm = (pos[0] >> 4) & 0x01;
1909 ac = IEEE80211_AC_BK;
1911 sdata->wmm_acm |= BIT(1) | BIT(2); /* BK/- */
1912 if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_BK)
1914 params[ac].mu_edca = !!mu_edca;
1916 params[ac].mu_edca_param_rec = mu_edca->ac_bk;
1919 ac = IEEE80211_AC_VI;
1921 sdata->wmm_acm |= BIT(4) | BIT(5); /* CL/VI */
1922 if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_VI)
1924 params[ac].mu_edca = !!mu_edca;
1926 params[ac].mu_edca_param_rec = mu_edca->ac_vi;
1929 ac = IEEE80211_AC_VO;
1931 sdata->wmm_acm |= BIT(6) | BIT(7); /* VO/NC */
1932 if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_VO)
1934 params[ac].mu_edca = !!mu_edca;
1936 params[ac].mu_edca_param_rec = mu_edca->ac_vo;
1940 ac = IEEE80211_AC_BE;
1942 sdata->wmm_acm |= BIT(0) | BIT(3); /* BE/EE */
1943 if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_BE)
1945 params[ac].mu_edca = !!mu_edca;
1947 params[ac].mu_edca_param_rec = mu_edca->ac_be;
1951 params[ac].aifs = pos[0] & 0x0f;
1953 if (params[ac].aifs < 2) {
1955 "AP has invalid WMM params (AIFSN=%d for ACI %d), will use 2\n",
1956 params[ac].aifs, aci);
1957 params[ac].aifs = 2;
1959 params[ac].cw_max = ecw2cw((pos[1] & 0xf0) >> 4);
1960 params[ac].cw_min = ecw2cw(pos[1] & 0x0f);
1961 params[ac].txop = get_unaligned_le16(pos + 2);
1962 params[ac].acm = acm;
1963 params[ac].uapsd = uapsd;
1965 if (params[ac].cw_min == 0 ||
1966 params[ac].cw_min > params[ac].cw_max) {
1968 "AP has invalid WMM params (CWmin/max=%d/%d for ACI %d), using defaults\n",
1969 params[ac].cw_min, params[ac].cw_max, aci);
1972 ieee80211_regulatory_limit_wmm_params(sdata, ¶ms[ac], ac);
1975 /* WMM specification requires all 4 ACIs. */
1976 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
1977 if (params[ac].cw_min == 0) {
1979 "AP has invalid WMM params (missing AC %d), using defaults\n",
1985 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
1987 "WMM AC=%d acm=%d aifs=%d cWmin=%d cWmax=%d txop=%d uapsd=%d, downgraded=%d\n",
1989 params[ac].aifs, params[ac].cw_min, params[ac].cw_max,
1990 params[ac].txop, params[ac].uapsd,
1991 ifmgd->tx_tspec[ac].downgraded);
1992 sdata->tx_conf[ac] = params[ac];
1993 if (!ifmgd->tx_tspec[ac].downgraded &&
1994 drv_conf_tx(local, sdata, ac, ¶ms[ac]))
1996 "failed to set TX queue parameters for AC %d\n",
2000 /* enable WMM or activate new settings */
2001 sdata->vif.bss_conf.qos = true;
2005 static void __ieee80211_stop_poll(struct ieee80211_sub_if_data *sdata)
2007 lockdep_assert_held(&sdata->local->mtx);
2009 sdata->u.mgd.flags &= ~IEEE80211_STA_CONNECTION_POLL;
2010 ieee80211_run_deferred_scan(sdata->local);
2013 static void ieee80211_stop_poll(struct ieee80211_sub_if_data *sdata)
2015 mutex_lock(&sdata->local->mtx);
2016 __ieee80211_stop_poll(sdata);
2017 mutex_unlock(&sdata->local->mtx);
2020 static u32 ieee80211_handle_bss_capability(struct ieee80211_sub_if_data *sdata,
2021 u16 capab, bool erp_valid, u8 erp)
2023 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
2024 struct ieee80211_supported_band *sband;
2026 bool use_protection;
2027 bool use_short_preamble;
2028 bool use_short_slot;
2030 sband = ieee80211_get_sband(sdata);
2035 use_protection = (erp & WLAN_ERP_USE_PROTECTION) != 0;
2036 use_short_preamble = (erp & WLAN_ERP_BARKER_PREAMBLE) == 0;
2038 use_protection = false;
2039 use_short_preamble = !!(capab & WLAN_CAPABILITY_SHORT_PREAMBLE);
2042 use_short_slot = !!(capab & WLAN_CAPABILITY_SHORT_SLOT_TIME);
2043 if (sband->band == NL80211_BAND_5GHZ)
2044 use_short_slot = true;
2046 if (use_protection != bss_conf->use_cts_prot) {
2047 bss_conf->use_cts_prot = use_protection;
2048 changed |= BSS_CHANGED_ERP_CTS_PROT;
2051 if (use_short_preamble != bss_conf->use_short_preamble) {
2052 bss_conf->use_short_preamble = use_short_preamble;
2053 changed |= BSS_CHANGED_ERP_PREAMBLE;
2056 if (use_short_slot != bss_conf->use_short_slot) {
2057 bss_conf->use_short_slot = use_short_slot;
2058 changed |= BSS_CHANGED_ERP_SLOT;
2064 static void ieee80211_set_associated(struct ieee80211_sub_if_data *sdata,
2065 struct cfg80211_bss *cbss,
2066 u32 bss_info_changed)
2068 struct ieee80211_bss *bss = (void *)cbss->priv;
2069 struct ieee80211_local *local = sdata->local;
2070 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
2072 bss_info_changed |= BSS_CHANGED_ASSOC;
2073 bss_info_changed |= ieee80211_handle_bss_capability(sdata,
2074 bss_conf->assoc_capability, bss->has_erp_value, bss->erp_value);
2076 sdata->u.mgd.beacon_timeout = usecs_to_jiffies(ieee80211_tu_to_usec(
2077 beacon_loss_count * bss_conf->beacon_int));
2079 sdata->u.mgd.associated = cbss;
2080 memcpy(sdata->u.mgd.bssid, cbss->bssid, ETH_ALEN);
2082 ieee80211_check_rate_mask(sdata);
2084 sdata->u.mgd.flags |= IEEE80211_STA_RESET_SIGNAL_AVE;
2086 if (sdata->vif.p2p ||
2087 sdata->vif.driver_flags & IEEE80211_VIF_GET_NOA_UPDATE) {
2088 const struct cfg80211_bss_ies *ies;
2091 ies = rcu_dereference(cbss->ies);
2095 ret = cfg80211_get_p2p_attr(
2096 ies->data, ies->len,
2097 IEEE80211_P2P_ATTR_ABSENCE_NOTICE,
2098 (u8 *) &bss_conf->p2p_noa_attr,
2099 sizeof(bss_conf->p2p_noa_attr));
2101 sdata->u.mgd.p2p_noa_index =
2102 bss_conf->p2p_noa_attr.index;
2103 bss_info_changed |= BSS_CHANGED_P2P_PS;
2109 /* just to be sure */
2110 ieee80211_stop_poll(sdata);
2112 ieee80211_led_assoc(local, 1);
2114 if (sdata->u.mgd.have_beacon) {
2116 * If the AP is buggy we may get here with no DTIM period
2117 * known, so assume it's 1 which is the only safe assumption
2118 * in that case, although if the TIM IE is broken powersave
2119 * probably just won't work at all.
2121 bss_conf->dtim_period = sdata->u.mgd.dtim_period ?: 1;
2122 bss_conf->beacon_rate = bss->beacon_rate;
2123 bss_info_changed |= BSS_CHANGED_BEACON_INFO;
2125 bss_conf->beacon_rate = NULL;
2126 bss_conf->dtim_period = 0;
2129 bss_conf->assoc = 1;
2131 /* Tell the driver to monitor connection quality (if supported) */
2132 if (sdata->vif.driver_flags & IEEE80211_VIF_SUPPORTS_CQM_RSSI &&
2133 bss_conf->cqm_rssi_thold)
2134 bss_info_changed |= BSS_CHANGED_CQM;
2136 /* Enable ARP filtering */
2137 if (bss_conf->arp_addr_cnt)
2138 bss_info_changed |= BSS_CHANGED_ARP_FILTER;
2140 ieee80211_bss_info_change_notify(sdata, bss_info_changed);
2142 mutex_lock(&local->iflist_mtx);
2143 ieee80211_recalc_ps(local);
2144 mutex_unlock(&local->iflist_mtx);
2146 ieee80211_recalc_smps(sdata);
2147 ieee80211_recalc_ps_vif(sdata);
2149 netif_carrier_on(sdata->dev);
2152 static void ieee80211_set_disassoc(struct ieee80211_sub_if_data *sdata,
2153 u16 stype, u16 reason, bool tx,
2156 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2157 struct ieee80211_local *local = sdata->local;
2160 sdata_assert_lock(sdata);
2162 if (WARN_ON_ONCE(tx && !frame_buf))
2165 if (WARN_ON(!ifmgd->associated))
2168 ieee80211_stop_poll(sdata);
2170 ifmgd->associated = NULL;
2171 netif_carrier_off(sdata->dev);
2174 * if we want to get out of ps before disassoc (why?) we have
2175 * to do it before sending disassoc, as otherwise the null-packet
2178 if (local->hw.conf.flags & IEEE80211_CONF_PS) {
2179 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
2180 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
2182 local->ps_sdata = NULL;
2184 /* disable per-vif ps */
2185 ieee80211_recalc_ps_vif(sdata);
2187 /* make sure ongoing transmission finishes */
2191 * drop any frame before deauth/disassoc, this can be data or
2192 * management frame. Since we are disconnecting, we should not
2193 * insist sending these frames which can take time and delay
2194 * the disconnection and possible the roaming.
2197 ieee80211_flush_queues(local, sdata, true);
2199 /* deauthenticate/disassociate now */
2200 if (tx || frame_buf) {
2202 * In multi channel scenarios guarantee that the virtual
2203 * interface is granted immediate airtime to transmit the
2204 * deauthentication frame by calling mgd_prepare_tx, if the
2205 * driver requested so.
2207 if (ieee80211_hw_check(&local->hw, DEAUTH_NEED_MGD_TX_PREP) &&
2208 !ifmgd->have_beacon)
2209 drv_mgd_prepare_tx(sdata->local, sdata, 0);
2211 ieee80211_send_deauth_disassoc(sdata, ifmgd->bssid, stype,
2212 reason, tx, frame_buf);
2215 /* flush out frame - make sure the deauth was actually sent */
2217 ieee80211_flush_queues(local, sdata, false);
2219 /* clear bssid only after building the needed mgmt frames */
2220 eth_zero_addr(ifmgd->bssid);
2222 /* remove AP and TDLS peers */
2223 sta_info_flush(sdata);
2225 /* finally reset all BSS / config parameters */
2226 changed |= ieee80211_reset_erp_info(sdata);
2228 ieee80211_led_assoc(local, 0);
2229 changed |= BSS_CHANGED_ASSOC;
2230 sdata->vif.bss_conf.assoc = false;
2232 ifmgd->p2p_noa_index = -1;
2233 memset(&sdata->vif.bss_conf.p2p_noa_attr, 0,
2234 sizeof(sdata->vif.bss_conf.p2p_noa_attr));
2236 /* on the next assoc, re-program HT/VHT parameters */
2237 memset(&ifmgd->ht_capa, 0, sizeof(ifmgd->ht_capa));
2238 memset(&ifmgd->ht_capa_mask, 0, sizeof(ifmgd->ht_capa_mask));
2239 memset(&ifmgd->vht_capa, 0, sizeof(ifmgd->vht_capa));
2240 memset(&ifmgd->vht_capa_mask, 0, sizeof(ifmgd->vht_capa_mask));
2242 /* reset MU-MIMO ownership and group data */
2243 memset(sdata->vif.bss_conf.mu_group.membership, 0,
2244 sizeof(sdata->vif.bss_conf.mu_group.membership));
2245 memset(sdata->vif.bss_conf.mu_group.position, 0,
2246 sizeof(sdata->vif.bss_conf.mu_group.position));
2247 changed |= BSS_CHANGED_MU_GROUPS;
2248 sdata->vif.mu_mimo_owner = false;
2250 sdata->ap_power_level = IEEE80211_UNSET_POWER_LEVEL;
2252 del_timer_sync(&local->dynamic_ps_timer);
2253 cancel_work_sync(&local->dynamic_ps_enable_work);
2255 /* Disable ARP filtering */
2256 if (sdata->vif.bss_conf.arp_addr_cnt)
2257 changed |= BSS_CHANGED_ARP_FILTER;
2259 sdata->vif.bss_conf.qos = false;
2260 changed |= BSS_CHANGED_QOS;
2262 /* The BSSID (not really interesting) and HT changed */
2263 changed |= BSS_CHANGED_BSSID | BSS_CHANGED_HT;
2264 ieee80211_bss_info_change_notify(sdata, changed);
2266 /* disassociated - set to defaults now */
2267 ieee80211_set_wmm_default(sdata, false, false);
2269 del_timer_sync(&sdata->u.mgd.conn_mon_timer);
2270 del_timer_sync(&sdata->u.mgd.bcn_mon_timer);
2271 del_timer_sync(&sdata->u.mgd.timer);
2272 del_timer_sync(&sdata->u.mgd.chswitch_timer);
2274 sdata->vif.bss_conf.dtim_period = 0;
2275 sdata->vif.bss_conf.beacon_rate = NULL;
2277 ifmgd->have_beacon = false;
2280 mutex_lock(&local->mtx);
2281 ieee80211_vif_release_channel(sdata);
2283 sdata->vif.csa_active = false;
2284 ifmgd->csa_waiting_bcn = false;
2285 ifmgd->csa_ignored_same_chan = false;
2286 if (sdata->csa_block_tx) {
2287 ieee80211_wake_vif_queues(local, sdata,
2288 IEEE80211_QUEUE_STOP_REASON_CSA);
2289 sdata->csa_block_tx = false;
2291 mutex_unlock(&local->mtx);
2293 /* existing TX TSPEC sessions no longer exist */
2294 memset(ifmgd->tx_tspec, 0, sizeof(ifmgd->tx_tspec));
2295 cancel_delayed_work_sync(&ifmgd->tx_tspec_wk);
2297 sdata->encrypt_headroom = IEEE80211_ENCRYPT_HEADROOM;
2300 void ieee80211_sta_rx_notify(struct ieee80211_sub_if_data *sdata,
2301 struct ieee80211_hdr *hdr)
2304 * We can postpone the mgd.timer whenever receiving unicast frames
2305 * from AP because we know that the connection is working both ways
2306 * at that time. But multicast frames (and hence also beacons) must
2307 * be ignored here, because we need to trigger the timer during
2308 * data idle periods for sending the periodic probe request to the
2309 * AP we're connected to.
2311 if (is_multicast_ether_addr(hdr->addr1))
2314 ieee80211_sta_reset_conn_monitor(sdata);
2317 static void ieee80211_reset_ap_probe(struct ieee80211_sub_if_data *sdata)
2319 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2320 struct ieee80211_local *local = sdata->local;
2322 mutex_lock(&local->mtx);
2323 if (!(ifmgd->flags & IEEE80211_STA_CONNECTION_POLL))
2326 __ieee80211_stop_poll(sdata);
2328 mutex_lock(&local->iflist_mtx);
2329 ieee80211_recalc_ps(local);
2330 mutex_unlock(&local->iflist_mtx);
2332 if (ieee80211_hw_check(&sdata->local->hw, CONNECTION_MONITOR))
2336 * We've received a probe response, but are not sure whether
2337 * we have or will be receiving any beacons or data, so let's
2338 * schedule the timers again, just in case.
2340 ieee80211_sta_reset_beacon_monitor(sdata);
2342 mod_timer(&ifmgd->conn_mon_timer,
2343 round_jiffies_up(jiffies +
2344 IEEE80211_CONNECTION_IDLE_TIME));
2346 mutex_unlock(&local->mtx);
2349 static void ieee80211_sta_tx_wmm_ac_notify(struct ieee80211_sub_if_data *sdata,
2350 struct ieee80211_hdr *hdr,
2353 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2356 struct ieee80211_sta_tx_tspec *tx_tspec;
2357 unsigned long now = jiffies;
2359 if (!ieee80211_is_data_qos(hdr->frame_control))
2362 tid = ieee80211_get_tid(hdr);
2363 ac = ieee80211_ac_from_tid(tid);
2364 tx_tspec = &ifmgd->tx_tspec[ac];
2366 if (likely(!tx_tspec->admitted_time))
2369 if (time_after(now, tx_tspec->time_slice_start + HZ)) {
2370 tx_tspec->consumed_tx_time = 0;
2371 tx_tspec->time_slice_start = now;
2373 if (tx_tspec->downgraded) {
2374 tx_tspec->action = TX_TSPEC_ACTION_STOP_DOWNGRADE;
2375 schedule_delayed_work(&ifmgd->tx_tspec_wk, 0);
2379 if (tx_tspec->downgraded)
2382 tx_tspec->consumed_tx_time += tx_time;
2384 if (tx_tspec->consumed_tx_time >= tx_tspec->admitted_time) {
2385 tx_tspec->downgraded = true;
2386 tx_tspec->action = TX_TSPEC_ACTION_DOWNGRADE;
2387 schedule_delayed_work(&ifmgd->tx_tspec_wk, 0);
2391 void ieee80211_sta_tx_notify(struct ieee80211_sub_if_data *sdata,
2392 struct ieee80211_hdr *hdr, bool ack, u16 tx_time)
2394 ieee80211_sta_tx_wmm_ac_notify(sdata, hdr, tx_time);
2396 if (!ieee80211_is_data(hdr->frame_control))
2399 if (ieee80211_is_any_nullfunc(hdr->frame_control) &&
2400 sdata->u.mgd.probe_send_count > 0) {
2402 ieee80211_sta_reset_conn_monitor(sdata);
2404 sdata->u.mgd.nullfunc_failed = true;
2405 ieee80211_queue_work(&sdata->local->hw, &sdata->work);
2410 ieee80211_sta_reset_conn_monitor(sdata);
2413 static void ieee80211_mlme_send_probe_req(struct ieee80211_sub_if_data *sdata,
2414 const u8 *src, const u8 *dst,
2415 const u8 *ssid, size_t ssid_len,
2416 struct ieee80211_channel *channel)
2418 struct sk_buff *skb;
2420 skb = ieee80211_build_probe_req(sdata, src, dst, (u32)-1, channel,
2421 ssid, ssid_len, NULL, 0,
2422 IEEE80211_PROBE_FLAG_DIRECTED);
2424 ieee80211_tx_skb(sdata, skb);
2427 static void ieee80211_mgd_probe_ap_send(struct ieee80211_sub_if_data *sdata)
2429 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2431 u8 *dst = ifmgd->associated->bssid;
2432 u8 unicast_limit = max(1, max_probe_tries - 3);
2433 struct sta_info *sta;
2436 * Try sending broadcast probe requests for the last three
2437 * probe requests after the first ones failed since some
2438 * buggy APs only support broadcast probe requests.
2440 if (ifmgd->probe_send_count >= unicast_limit)
2444 * When the hardware reports an accurate Tx ACK status, it's
2445 * better to send a nullfunc frame instead of a probe request,
2446 * as it will kick us off the AP quickly if we aren't associated
2447 * anymore. The timeout will be reset if the frame is ACKed by
2450 ifmgd->probe_send_count++;
2453 mutex_lock(&sdata->local->sta_mtx);
2454 sta = sta_info_get(sdata, dst);
2456 ieee80211_check_fast_rx(sta);
2457 mutex_unlock(&sdata->local->sta_mtx);
2460 if (ieee80211_hw_check(&sdata->local->hw, REPORTS_TX_ACK_STATUS)) {
2461 ifmgd->nullfunc_failed = false;
2462 ieee80211_send_nullfunc(sdata->local, sdata, false);
2467 ssid = ieee80211_bss_get_ie(ifmgd->associated, WLAN_EID_SSID);
2468 if (WARN_ON_ONCE(ssid == NULL))
2473 ieee80211_mlme_send_probe_req(sdata, sdata->vif.addr, dst,
2475 ifmgd->associated->channel);
2479 ifmgd->probe_timeout = jiffies + msecs_to_jiffies(probe_wait_ms);
2480 run_again(sdata, ifmgd->probe_timeout);
2483 static void ieee80211_mgd_probe_ap(struct ieee80211_sub_if_data *sdata,
2486 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2487 bool already = false;
2489 if (!ieee80211_sdata_running(sdata))
2494 if (!ifmgd->associated)
2497 mutex_lock(&sdata->local->mtx);
2499 if (sdata->local->tmp_channel || sdata->local->scanning) {
2500 mutex_unlock(&sdata->local->mtx);
2505 mlme_dbg_ratelimited(sdata,
2506 "detected beacon loss from AP (missed %d beacons) - probing\n",
2509 ieee80211_cqm_beacon_loss_notify(&sdata->vif, GFP_KERNEL);
2513 * The driver/our work has already reported this event or the
2514 * connection monitoring has kicked in and we have already sent
2515 * a probe request. Or maybe the AP died and the driver keeps
2516 * reporting until we disassociate...
2518 * In either case we have to ignore the current call to this
2519 * function (except for setting the correct probe reason bit)
2520 * because otherwise we would reset the timer every time and
2521 * never check whether we received a probe response!
2523 if (ifmgd->flags & IEEE80211_STA_CONNECTION_POLL)
2526 ifmgd->flags |= IEEE80211_STA_CONNECTION_POLL;
2528 mutex_unlock(&sdata->local->mtx);
2533 mutex_lock(&sdata->local->iflist_mtx);
2534 ieee80211_recalc_ps(sdata->local);
2535 mutex_unlock(&sdata->local->iflist_mtx);
2537 ifmgd->probe_send_count = 0;
2538 ieee80211_mgd_probe_ap_send(sdata);
2540 sdata_unlock(sdata);
2543 struct sk_buff *ieee80211_ap_probereq_get(struct ieee80211_hw *hw,
2544 struct ieee80211_vif *vif)
2546 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
2547 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2548 struct cfg80211_bss *cbss;
2549 struct sk_buff *skb;
2553 if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION))
2556 sdata_assert_lock(sdata);
2558 if (ifmgd->associated)
2559 cbss = ifmgd->associated;
2560 else if (ifmgd->auth_data)
2561 cbss = ifmgd->auth_data->bss;
2562 else if (ifmgd->assoc_data)
2563 cbss = ifmgd->assoc_data->bss;
2568 ssid = ieee80211_bss_get_ie(cbss, WLAN_EID_SSID);
2569 if (WARN_ONCE(!ssid || ssid[1] > IEEE80211_MAX_SSID_LEN,
2570 "invalid SSID element (len=%d)", ssid ? ssid[1] : -1))
2575 skb = ieee80211_build_probe_req(sdata, sdata->vif.addr, cbss->bssid,
2576 (u32) -1, cbss->channel,
2578 NULL, 0, IEEE80211_PROBE_FLAG_DIRECTED);
2583 EXPORT_SYMBOL(ieee80211_ap_probereq_get);
2585 static void ieee80211_report_disconnect(struct ieee80211_sub_if_data *sdata,
2586 const u8 *buf, size_t len, bool tx,
2589 struct ieee80211_event event = {
2591 .u.mlme.data = tx ? DEAUTH_TX_EVENT : DEAUTH_RX_EVENT,
2592 .u.mlme.reason = reason,
2596 cfg80211_tx_mlme_mgmt(sdata->dev, buf, len);
2598 cfg80211_rx_mlme_mgmt(sdata->dev, buf, len);
2600 drv_event_callback(sdata->local, sdata, &event);
2603 static void __ieee80211_disconnect(struct ieee80211_sub_if_data *sdata)
2605 struct ieee80211_local *local = sdata->local;
2606 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2607 u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN];
2611 if (!ifmgd->associated) {
2612 sdata_unlock(sdata);
2616 tx = !sdata->csa_block_tx;
2618 /* AP is probably out of range (or not reachable for another reason) so
2619 * remove the bss struct for that AP.
2621 cfg80211_unlink_bss(local->hw.wiphy, ifmgd->associated);
2623 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH,
2624 WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY,
2626 mutex_lock(&local->mtx);
2627 sdata->vif.csa_active = false;
2628 ifmgd->csa_waiting_bcn = false;
2629 if (sdata->csa_block_tx) {
2630 ieee80211_wake_vif_queues(local, sdata,
2631 IEEE80211_QUEUE_STOP_REASON_CSA);
2632 sdata->csa_block_tx = false;
2634 mutex_unlock(&local->mtx);
2636 ieee80211_report_disconnect(sdata, frame_buf, sizeof(frame_buf), tx,
2637 WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY);
2639 sdata_unlock(sdata);
2642 static void ieee80211_beacon_connection_loss_work(struct work_struct *work)
2644 struct ieee80211_sub_if_data *sdata =
2645 container_of(work, struct ieee80211_sub_if_data,
2646 u.mgd.beacon_connection_loss_work);
2647 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2649 if (ifmgd->associated)
2650 ifmgd->beacon_loss_count++;
2652 if (ifmgd->connection_loss) {
2653 sdata_info(sdata, "Connection to AP %pM lost\n",
2655 __ieee80211_disconnect(sdata);
2657 ieee80211_mgd_probe_ap(sdata, true);
2661 static void ieee80211_csa_connection_drop_work(struct work_struct *work)
2663 struct ieee80211_sub_if_data *sdata =
2664 container_of(work, struct ieee80211_sub_if_data,
2665 u.mgd.csa_connection_drop_work);
2667 __ieee80211_disconnect(sdata);
2670 void ieee80211_beacon_loss(struct ieee80211_vif *vif)
2672 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
2673 struct ieee80211_hw *hw = &sdata->local->hw;
2675 trace_api_beacon_loss(sdata);
2677 sdata->u.mgd.connection_loss = false;
2678 ieee80211_queue_work(hw, &sdata->u.mgd.beacon_connection_loss_work);
2680 EXPORT_SYMBOL(ieee80211_beacon_loss);
2682 void ieee80211_connection_loss(struct ieee80211_vif *vif)
2684 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
2685 struct ieee80211_hw *hw = &sdata->local->hw;
2687 trace_api_connection_loss(sdata);
2689 sdata->u.mgd.connection_loss = true;
2690 ieee80211_queue_work(hw, &sdata->u.mgd.beacon_connection_loss_work);
2692 EXPORT_SYMBOL(ieee80211_connection_loss);
2695 static void ieee80211_destroy_auth_data(struct ieee80211_sub_if_data *sdata,
2698 struct ieee80211_mgd_auth_data *auth_data = sdata->u.mgd.auth_data;
2700 sdata_assert_lock(sdata);
2704 * we are not authenticated yet, the only timer that could be
2705 * running is the timeout for the authentication response which
2706 * which is not relevant anymore.
2708 del_timer_sync(&sdata->u.mgd.timer);
2709 sta_info_destroy_addr(sdata, auth_data->bss->bssid);
2711 eth_zero_addr(sdata->u.mgd.bssid);
2712 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BSSID);
2713 sdata->u.mgd.flags = 0;
2714 mutex_lock(&sdata->local->mtx);
2715 ieee80211_vif_release_channel(sdata);
2716 mutex_unlock(&sdata->local->mtx);
2719 cfg80211_put_bss(sdata->local->hw.wiphy, auth_data->bss);
2721 sdata->u.mgd.auth_data = NULL;
2724 static void ieee80211_destroy_assoc_data(struct ieee80211_sub_if_data *sdata,
2725 bool assoc, bool abandon)
2727 struct ieee80211_mgd_assoc_data *assoc_data = sdata->u.mgd.assoc_data;
2729 sdata_assert_lock(sdata);
2733 * we are not associated yet, the only timer that could be
2734 * running is the timeout for the association response which
2735 * which is not relevant anymore.
2737 del_timer_sync(&sdata->u.mgd.timer);
2738 sta_info_destroy_addr(sdata, assoc_data->bss->bssid);
2740 eth_zero_addr(sdata->u.mgd.bssid);
2741 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BSSID);
2742 sdata->u.mgd.flags = 0;
2743 sdata->vif.mu_mimo_owner = false;
2745 mutex_lock(&sdata->local->mtx);
2746 ieee80211_vif_release_channel(sdata);
2747 mutex_unlock(&sdata->local->mtx);
2750 cfg80211_abandon_assoc(sdata->dev, assoc_data->bss);
2754 sdata->u.mgd.assoc_data = NULL;
2757 static void ieee80211_auth_challenge(struct ieee80211_sub_if_data *sdata,
2758 struct ieee80211_mgmt *mgmt, size_t len)
2760 struct ieee80211_local *local = sdata->local;
2761 struct ieee80211_mgd_auth_data *auth_data = sdata->u.mgd.auth_data;
2763 struct ieee802_11_elems elems;
2766 pos = mgmt->u.auth.variable;
2767 ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), false, &elems);
2768 if (!elems.challenge)
2770 auth_data->expected_transaction = 4;
2771 drv_mgd_prepare_tx(sdata->local, sdata, 0);
2772 if (ieee80211_hw_check(&local->hw, REPORTS_TX_ACK_STATUS))
2773 tx_flags = IEEE80211_TX_CTL_REQ_TX_STATUS |
2774 IEEE80211_TX_INTFL_MLME_CONN_TX;
2775 ieee80211_send_auth(sdata, 3, auth_data->algorithm, 0,
2776 elems.challenge - 2, elems.challenge_len + 2,
2777 auth_data->bss->bssid, auth_data->bss->bssid,
2778 auth_data->key, auth_data->key_len,
2779 auth_data->key_idx, tx_flags);
2782 static void ieee80211_rx_mgmt_auth(struct ieee80211_sub_if_data *sdata,
2783 struct ieee80211_mgmt *mgmt, size_t len)
2785 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2787 u16 auth_alg, auth_transaction, status_code;
2788 struct sta_info *sta;
2789 struct ieee80211_event event = {
2791 .u.mlme.data = AUTH_EVENT,
2794 sdata_assert_lock(sdata);
2799 if (!ifmgd->auth_data || ifmgd->auth_data->done)
2802 memcpy(bssid, ifmgd->auth_data->bss->bssid, ETH_ALEN);
2804 if (!ether_addr_equal(bssid, mgmt->bssid))
2807 auth_alg = le16_to_cpu(mgmt->u.auth.auth_alg);
2808 auth_transaction = le16_to_cpu(mgmt->u.auth.auth_transaction);
2809 status_code = le16_to_cpu(mgmt->u.auth.status_code);
2811 if (auth_alg != ifmgd->auth_data->algorithm ||
2812 auth_transaction != ifmgd->auth_data->expected_transaction) {
2813 sdata_info(sdata, "%pM unexpected authentication state: alg %d (expected %d) transact %d (expected %d)\n",
2814 mgmt->sa, auth_alg, ifmgd->auth_data->algorithm,
2816 ifmgd->auth_data->expected_transaction);
2820 if (status_code != WLAN_STATUS_SUCCESS) {
2821 sdata_info(sdata, "%pM denied authentication (status %d)\n",
2822 mgmt->sa, status_code);
2823 ieee80211_destroy_auth_data(sdata, false);
2824 cfg80211_rx_mlme_mgmt(sdata->dev, (u8 *)mgmt, len);
2825 event.u.mlme.status = MLME_DENIED;
2826 event.u.mlme.reason = status_code;
2827 drv_event_callback(sdata->local, sdata, &event);
2831 switch (ifmgd->auth_data->algorithm) {
2832 case WLAN_AUTH_OPEN:
2833 case WLAN_AUTH_LEAP:
2836 case WLAN_AUTH_FILS_SK:
2837 case WLAN_AUTH_FILS_SK_PFS:
2838 case WLAN_AUTH_FILS_PK:
2840 case WLAN_AUTH_SHARED_KEY:
2841 if (ifmgd->auth_data->expected_transaction != 4) {
2842 ieee80211_auth_challenge(sdata, mgmt, len);
2843 /* need another frame */
2848 WARN_ONCE(1, "invalid auth alg %d",
2849 ifmgd->auth_data->algorithm);
2853 event.u.mlme.status = MLME_SUCCESS;
2854 drv_event_callback(sdata->local, sdata, &event);
2855 sdata_info(sdata, "authenticated\n");
2856 ifmgd->auth_data->done = true;
2857 ifmgd->auth_data->timeout = jiffies + IEEE80211_AUTH_WAIT_ASSOC;
2858 ifmgd->auth_data->timeout_started = true;
2859 run_again(sdata, ifmgd->auth_data->timeout);
2861 if (ifmgd->auth_data->algorithm == WLAN_AUTH_SAE &&
2862 ifmgd->auth_data->expected_transaction != 2) {
2864 * Report auth frame to user space for processing since another
2865 * round of Authentication frames is still needed.
2867 cfg80211_rx_mlme_mgmt(sdata->dev, (u8 *)mgmt, len);
2871 /* move station state to auth */
2872 mutex_lock(&sdata->local->sta_mtx);
2873 sta = sta_info_get(sdata, bssid);
2875 WARN_ONCE(1, "%s: STA %pM not found", sdata->name, bssid);
2878 if (sta_info_move_state(sta, IEEE80211_STA_AUTH)) {
2879 sdata_info(sdata, "failed moving %pM to auth\n", bssid);
2882 mutex_unlock(&sdata->local->sta_mtx);
2884 cfg80211_rx_mlme_mgmt(sdata->dev, (u8 *)mgmt, len);
2887 mutex_unlock(&sdata->local->sta_mtx);
2888 /* ignore frame -- wait for timeout */
2891 #define case_WLAN(type) \
2892 case WLAN_REASON_##type: return #type
2894 const char *ieee80211_get_reason_code_string(u16 reason_code)
2896 switch (reason_code) {
2897 case_WLAN(UNSPECIFIED);
2898 case_WLAN(PREV_AUTH_NOT_VALID);
2899 case_WLAN(DEAUTH_LEAVING);
2900 case_WLAN(DISASSOC_DUE_TO_INACTIVITY);
2901 case_WLAN(DISASSOC_AP_BUSY);
2902 case_WLAN(CLASS2_FRAME_FROM_NONAUTH_STA);
2903 case_WLAN(CLASS3_FRAME_FROM_NONASSOC_STA);
2904 case_WLAN(DISASSOC_STA_HAS_LEFT);
2905 case_WLAN(STA_REQ_ASSOC_WITHOUT_AUTH);
2906 case_WLAN(DISASSOC_BAD_POWER);
2907 case_WLAN(DISASSOC_BAD_SUPP_CHAN);
2908 case_WLAN(INVALID_IE);
2909 case_WLAN(MIC_FAILURE);
2910 case_WLAN(4WAY_HANDSHAKE_TIMEOUT);
2911 case_WLAN(GROUP_KEY_HANDSHAKE_TIMEOUT);
2912 case_WLAN(IE_DIFFERENT);
2913 case_WLAN(INVALID_GROUP_CIPHER);
2914 case_WLAN(INVALID_PAIRWISE_CIPHER);
2915 case_WLAN(INVALID_AKMP);
2916 case_WLAN(UNSUPP_RSN_VERSION);
2917 case_WLAN(INVALID_RSN_IE_CAP);
2918 case_WLAN(IEEE8021X_FAILED);
2919 case_WLAN(CIPHER_SUITE_REJECTED);
2920 case_WLAN(DISASSOC_UNSPECIFIED_QOS);
2921 case_WLAN(DISASSOC_QAP_NO_BANDWIDTH);
2922 case_WLAN(DISASSOC_LOW_ACK);
2923 case_WLAN(DISASSOC_QAP_EXCEED_TXOP);
2924 case_WLAN(QSTA_LEAVE_QBSS);
2925 case_WLAN(QSTA_NOT_USE);
2926 case_WLAN(QSTA_REQUIRE_SETUP);
2927 case_WLAN(QSTA_TIMEOUT);
2928 case_WLAN(QSTA_CIPHER_NOT_SUPP);
2929 case_WLAN(MESH_PEER_CANCELED);
2930 case_WLAN(MESH_MAX_PEERS);
2931 case_WLAN(MESH_CONFIG);
2932 case_WLAN(MESH_CLOSE);
2933 case_WLAN(MESH_MAX_RETRIES);
2934 case_WLAN(MESH_CONFIRM_TIMEOUT);
2935 case_WLAN(MESH_INVALID_GTK);
2936 case_WLAN(MESH_INCONSISTENT_PARAM);
2937 case_WLAN(MESH_INVALID_SECURITY);
2938 case_WLAN(MESH_PATH_ERROR);
2939 case_WLAN(MESH_PATH_NOFORWARD);
2940 case_WLAN(MESH_PATH_DEST_UNREACHABLE);
2941 case_WLAN(MAC_EXISTS_IN_MBSS);
2942 case_WLAN(MESH_CHAN_REGULATORY);
2943 case_WLAN(MESH_CHAN);
2944 default: return "<unknown>";
2948 static void ieee80211_rx_mgmt_deauth(struct ieee80211_sub_if_data *sdata,
2949 struct ieee80211_mgmt *mgmt, size_t len)
2951 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2952 u16 reason_code = le16_to_cpu(mgmt->u.deauth.reason_code);
2954 sdata_assert_lock(sdata);
2959 if (!ether_addr_equal(mgmt->bssid, mgmt->sa)) {
2960 ieee80211_tdls_handle_disconnect(sdata, mgmt->sa, reason_code);
2964 if (ifmgd->associated &&
2965 ether_addr_equal(mgmt->bssid, ifmgd->associated->bssid)) {
2966 const u8 *bssid = ifmgd->associated->bssid;
2968 sdata_info(sdata, "deauthenticated from %pM (Reason: %u=%s)\n",
2970 ieee80211_get_reason_code_string(reason_code));
2972 ieee80211_set_disassoc(sdata, 0, 0, false, NULL);
2974 ieee80211_report_disconnect(sdata, (u8 *)mgmt, len, false,
2979 if (ifmgd->assoc_data &&
2980 ether_addr_equal(mgmt->bssid, ifmgd->assoc_data->bss->bssid)) {
2981 const u8 *bssid = ifmgd->assoc_data->bss->bssid;
2984 "deauthenticated from %pM while associating (Reason: %u=%s)\n",
2986 ieee80211_get_reason_code_string(reason_code));
2988 ieee80211_destroy_assoc_data(sdata, false, true);
2990 cfg80211_rx_mlme_mgmt(sdata->dev, (u8 *)mgmt, len);
2996 static void ieee80211_rx_mgmt_disassoc(struct ieee80211_sub_if_data *sdata,
2997 struct ieee80211_mgmt *mgmt, size_t len)
2999 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3002 sdata_assert_lock(sdata);
3007 if (!ifmgd->associated ||
3008 !ether_addr_equal(mgmt->bssid, ifmgd->associated->bssid))
3011 reason_code = le16_to_cpu(mgmt->u.disassoc.reason_code);
3013 if (!ether_addr_equal(mgmt->bssid, mgmt->sa)) {
3014 ieee80211_tdls_handle_disconnect(sdata, mgmt->sa, reason_code);
3018 sdata_info(sdata, "disassociated from %pM (Reason: %u=%s)\n",
3019 mgmt->sa, reason_code,
3020 ieee80211_get_reason_code_string(reason_code));
3022 ieee80211_set_disassoc(sdata, 0, 0, false, NULL);
3024 ieee80211_report_disconnect(sdata, (u8 *)mgmt, len, false, reason_code);
3027 static void ieee80211_get_rates(struct ieee80211_supported_band *sband,
3028 u8 *supp_rates, unsigned int supp_rates_len,
3029 u32 *rates, u32 *basic_rates,
3030 bool *have_higher_than_11mbit,
3031 int *min_rate, int *min_rate_index,
3036 for (i = 0; i < supp_rates_len; i++) {
3037 int rate = supp_rates[i] & 0x7f;
3038 bool is_basic = !!(supp_rates[i] & 0x80);
3040 if ((rate * 5 * (1 << shift)) > 110)
3041 *have_higher_than_11mbit = true;
3044 * Skip HT and VHT BSS membership selectors since they're not
3047 * Note: Even though the membership selector and the basic
3048 * rate flag share the same bit, they are not exactly
3051 if (supp_rates[i] == (0x80 | BSS_MEMBERSHIP_SELECTOR_HT_PHY) ||
3052 supp_rates[i] == (0x80 | BSS_MEMBERSHIP_SELECTOR_VHT_PHY))
3055 for (j = 0; j < sband->n_bitrates; j++) {
3056 struct ieee80211_rate *br;
3059 br = &sband->bitrates[j];
3061 brate = DIV_ROUND_UP(br->bitrate, (1 << shift) * 5);
3062 if (brate == rate) {
3065 *basic_rates |= BIT(j);
3066 if ((rate * 5) < *min_rate) {
3067 *min_rate = rate * 5;
3068 *min_rate_index = j;
3076 static bool ieee80211_assoc_success(struct ieee80211_sub_if_data *sdata,
3077 struct cfg80211_bss *cbss,
3078 struct ieee80211_mgmt *mgmt, size_t len)
3080 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3081 struct ieee80211_local *local = sdata->local;
3082 struct ieee80211_supported_band *sband;
3083 struct sta_info *sta;
3085 u16 capab_info, aid;
3086 struct ieee802_11_elems elems;
3087 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
3088 const struct cfg80211_bss_ies *bss_ies = NULL;
3089 struct ieee80211_mgd_assoc_data *assoc_data = ifmgd->assoc_data;
3094 /* AssocResp and ReassocResp have identical structure */
3096 aid = le16_to_cpu(mgmt->u.assoc_resp.aid);
3097 capab_info = le16_to_cpu(mgmt->u.assoc_resp.capab_info);
3100 * The 5 MSB of the AID field are reserved
3101 * (802.11-2016 9.4.1.8 AID field)
3105 ifmgd->broken_ap = false;
3107 if (aid == 0 || aid > IEEE80211_MAX_AID) {
3108 sdata_info(sdata, "invalid AID value %d (out of range), turn off PS\n",
3111 ifmgd->broken_ap = true;
3114 pos = mgmt->u.assoc_resp.variable;
3115 ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), false, &elems);
3117 if (!elems.supp_rates) {
3118 sdata_info(sdata, "no SuppRates element in AssocResp\n");
3123 ifmgd->tdls_chan_switch_prohibited =
3124 elems.ext_capab && elems.ext_capab_len >= 5 &&
3125 (elems.ext_capab[4] & WLAN_EXT_CAPA5_TDLS_CH_SW_PROHIBITED);
3128 * Some APs are erroneously not including some information in their
3129 * (re)association response frames. Try to recover by using the data
3130 * from the beacon or probe response. This seems to afflict mobile
3131 * 2G/3G/4G wifi routers, reported models include the "Onda PN51T",
3132 * "Vodafone PocketWiFi 2", "ZTE MF60" and a similar T-Mobile device.
3134 if ((assoc_data->wmm && !elems.wmm_param) ||
3135 (!(ifmgd->flags & IEEE80211_STA_DISABLE_HT) &&
3136 (!elems.ht_cap_elem || !elems.ht_operation)) ||
3137 (!(ifmgd->flags & IEEE80211_STA_DISABLE_VHT) &&
3138 (!elems.vht_cap_elem || !elems.vht_operation))) {
3139 const struct cfg80211_bss_ies *ies;
3140 struct ieee802_11_elems bss_elems;
3143 ies = rcu_dereference(cbss->ies);
3145 bss_ies = kmemdup(ies, sizeof(*ies) + ies->len,
3151 ieee802_11_parse_elems(bss_ies->data, bss_ies->len,
3153 if (assoc_data->wmm &&
3154 !elems.wmm_param && bss_elems.wmm_param) {
3155 elems.wmm_param = bss_elems.wmm_param;
3157 "AP bug: WMM param missing from AssocResp\n");
3161 * Also check if we requested HT/VHT, otherwise the AP doesn't
3162 * have to include the IEs in the (re)association response.
3164 if (!elems.ht_cap_elem && bss_elems.ht_cap_elem &&
3165 !(ifmgd->flags & IEEE80211_STA_DISABLE_HT)) {
3166 elems.ht_cap_elem = bss_elems.ht_cap_elem;
3168 "AP bug: HT capability missing from AssocResp\n");
3170 if (!elems.ht_operation && bss_elems.ht_operation &&
3171 !(ifmgd->flags & IEEE80211_STA_DISABLE_HT)) {
3172 elems.ht_operation = bss_elems.ht_operation;
3174 "AP bug: HT operation missing from AssocResp\n");
3176 if (!elems.vht_cap_elem && bss_elems.vht_cap_elem &&
3177 !(ifmgd->flags & IEEE80211_STA_DISABLE_VHT)) {
3178 elems.vht_cap_elem = bss_elems.vht_cap_elem;
3180 "AP bug: VHT capa missing from AssocResp\n");
3182 if (!elems.vht_operation && bss_elems.vht_operation &&
3183 !(ifmgd->flags & IEEE80211_STA_DISABLE_VHT)) {
3184 elems.vht_operation = bss_elems.vht_operation;
3186 "AP bug: VHT operation missing from AssocResp\n");
3191 * We previously checked these in the beacon/probe response, so
3192 * they should be present here. This is just a safety net.
3194 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_HT) &&
3195 (!elems.wmm_param || !elems.ht_cap_elem || !elems.ht_operation)) {
3197 "HT AP is missing WMM params or HT capability/operation\n");
3202 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_VHT) &&
3203 (!elems.vht_cap_elem || !elems.vht_operation)) {
3205 "VHT AP is missing VHT capability/operation\n");
3210 mutex_lock(&sdata->local->sta_mtx);
3212 * station info was already allocated and inserted before
3213 * the association and should be available to us
3215 sta = sta_info_get(sdata, cbss->bssid);
3216 if (WARN_ON(!sta)) {
3217 mutex_unlock(&sdata->local->sta_mtx);
3222 sband = ieee80211_get_sband(sdata);
3224 mutex_unlock(&sdata->local->sta_mtx);
3230 * If AP doesn't support HT, or it doesn't have HE mandatory IEs, mark
3231 * HE as disabled. If on the 5GHz band, make sure it supports VHT.
3233 if (ifmgd->flags & IEEE80211_STA_DISABLE_HT ||
3234 (sband->band == NL80211_BAND_5GHZ &&
3235 ifmgd->flags & IEEE80211_STA_DISABLE_VHT) ||
3236 (!elems.he_cap && !elems.he_operation))
3237 ifmgd->flags |= IEEE80211_STA_DISABLE_HE;
3239 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_HE) &&
3240 (!elems.he_cap || !elems.he_operation)) {
3241 mutex_unlock(&sdata->local->sta_mtx);
3243 "HE AP is missing HE capability/operation\n");
3248 /* Set up internal HT/VHT capabilities */
3249 if (elems.ht_cap_elem && !(ifmgd->flags & IEEE80211_STA_DISABLE_HT))
3250 ieee80211_ht_cap_ie_to_sta_ht_cap(sdata, sband,
3251 elems.ht_cap_elem, sta);
3253 if (elems.vht_cap_elem && !(ifmgd->flags & IEEE80211_STA_DISABLE_VHT))
3254 ieee80211_vht_cap_ie_to_sta_vht_cap(sdata, sband,
3255 elems.vht_cap_elem, sta);
3257 if (elems.he_operation && !(ifmgd->flags & IEEE80211_STA_DISABLE_HE) &&
3259 ieee80211_he_cap_ie_to_sta_he_cap(sdata, sband,
3264 bss_conf->he_support = sta->sta.he_cap.has_he;
3266 bss_conf->he_support = false;
3269 if (bss_conf->he_support) {
3270 bss_conf->bss_color =
3271 le32_get_bits(elems.he_operation->he_oper_params,
3272 IEEE80211_HE_OPERATION_BSS_COLOR_MASK);
3274 bss_conf->htc_trig_based_pkt_ext =
3275 le32_get_bits(elems.he_operation->he_oper_params,
3276 IEEE80211_HE_OPERATION_DFLT_PE_DURATION_MASK);
3277 bss_conf->frame_time_rts_th =
3278 le32_get_bits(elems.he_operation->he_oper_params,
3279 IEEE80211_HE_OPERATION_RTS_THRESHOLD_MASK);
3281 bss_conf->multi_sta_back_32bit =
3282 sta->sta.he_cap.he_cap_elem.mac_cap_info[2] &
3283 IEEE80211_HE_MAC_CAP2_32BIT_BA_BITMAP;
3285 bss_conf->ack_enabled =
3286 sta->sta.he_cap.he_cap_elem.mac_cap_info[2] &
3287 IEEE80211_HE_MAC_CAP2_ACK_EN;
3289 bss_conf->uora_exists = !!elems.uora_element;
3290 if (elems.uora_element)
3291 bss_conf->uora_ocw_range = elems.uora_element[0];
3293 /* TODO: OPEN: what happens if BSS color disable is set? */
3297 * Some APs, e.g. Netgear WNDR3700, report invalid HT operation data
3298 * in their association response, so ignore that data for our own
3299 * configuration. If it changed since the last beacon, we'll get the
3300 * next beacon and update then.
3304 * If an operating mode notification IE is present, override the
3305 * NSS calculation (that would be done in rate_control_rate_init())
3306 * and use the # of streams from that element.
3308 if (elems.opmode_notif &&
3309 !(*elems.opmode_notif & IEEE80211_OPMODE_NOTIF_RX_NSS_TYPE_BF)) {
3312 nss = *elems.opmode_notif & IEEE80211_OPMODE_NOTIF_RX_NSS_MASK;
3313 nss >>= IEEE80211_OPMODE_NOTIF_RX_NSS_SHIFT;
3315 sta->sta.rx_nss = nss;
3318 rate_control_rate_init(sta);
3320 if (ifmgd->flags & IEEE80211_STA_MFP_ENABLED) {
3321 set_sta_flag(sta, WLAN_STA_MFP);
3322 sta->sta.mfp = true;
3324 sta->sta.mfp = false;
3327 sta->sta.wme = elems.wmm_param && local->hw.queues >= IEEE80211_NUM_ACS;
3329 err = sta_info_move_state(sta, IEEE80211_STA_ASSOC);
3330 if (!err && !(ifmgd->flags & IEEE80211_STA_CONTROL_PORT))
3331 err = sta_info_move_state(sta, IEEE80211_STA_AUTHORIZED);
3334 "failed to move station %pM to desired state\n",
3336 WARN_ON(__sta_info_destroy(sta));
3337 mutex_unlock(&sdata->local->sta_mtx);
3342 mutex_unlock(&sdata->local->sta_mtx);
3345 * Always handle WMM once after association regardless
3346 * of the first value the AP uses. Setting -1 here has
3347 * that effect because the AP values is an unsigned
3350 ifmgd->wmm_last_param_set = -1;
3352 if (ifmgd->flags & IEEE80211_STA_DISABLE_WMM) {
3353 ieee80211_set_wmm_default(sdata, false, false);
3354 } else if (!ieee80211_sta_wmm_params(local, sdata, elems.wmm_param,
3355 elems.wmm_param_len,
3356 elems.mu_edca_param_set)) {
3357 /* still enable QoS since we might have HT/VHT */
3358 ieee80211_set_wmm_default(sdata, false, true);
3359 /* set the disable-WMM flag in this case to disable
3360 * tracking WMM parameter changes in the beacon if
3361 * the parameters weren't actually valid. Doing so
3362 * avoids changing parameters very strangely when
3363 * the AP is going back and forth between valid and
3364 * invalid parameters.
3366 ifmgd->flags |= IEEE80211_STA_DISABLE_WMM;
3368 changed |= BSS_CHANGED_QOS;
3370 if (elems.max_idle_period_ie) {
3371 bss_conf->max_idle_period =
3372 le16_to_cpu(elems.max_idle_period_ie->max_idle_period);
3373 bss_conf->protected_keep_alive =
3374 !!(elems.max_idle_period_ie->idle_options &
3375 WLAN_IDLE_OPTIONS_PROTECTED_KEEP_ALIVE);
3376 changed |= BSS_CHANGED_KEEP_ALIVE;
3378 bss_conf->max_idle_period = 0;
3379 bss_conf->protected_keep_alive = false;
3382 /* set AID and assoc capability,
3383 * ieee80211_set_associated() will tell the driver */
3384 bss_conf->aid = aid;
3385 bss_conf->assoc_capability = capab_info;
3386 ieee80211_set_associated(sdata, cbss, changed);
3389 * If we're using 4-addr mode, let the AP know that we're
3390 * doing so, so that it can create the STA VLAN on its side
3392 if (ifmgd->use_4addr)
3393 ieee80211_send_4addr_nullfunc(local, sdata);
3396 * Start timer to probe the connection to the AP now.
3397 * Also start the timer that will detect beacon loss.
3399 ieee80211_sta_rx_notify(sdata, (struct ieee80211_hdr *)mgmt);
3400 ieee80211_sta_reset_beacon_monitor(sdata);
3408 static void ieee80211_rx_mgmt_assoc_resp(struct ieee80211_sub_if_data *sdata,
3409 struct ieee80211_mgmt *mgmt,
3412 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3413 struct ieee80211_mgd_assoc_data *assoc_data = ifmgd->assoc_data;
3414 u16 capab_info, status_code, aid;
3415 struct ieee802_11_elems elems;
3416 int ac, uapsd_queues = -1;
3419 struct cfg80211_bss *bss;
3420 struct ieee80211_event event = {
3422 .u.mlme.data = ASSOC_EVENT,
3425 sdata_assert_lock(sdata);
3429 if (!ether_addr_equal(assoc_data->bss->bssid, mgmt->bssid))
3433 * AssocResp and ReassocResp have identical structure, so process both
3434 * of them in this function.
3440 reassoc = ieee80211_is_reassoc_resp(mgmt->frame_control);
3441 capab_info = le16_to_cpu(mgmt->u.assoc_resp.capab_info);
3442 status_code = le16_to_cpu(mgmt->u.assoc_resp.status_code);
3443 aid = le16_to_cpu(mgmt->u.assoc_resp.aid);
3446 "RX %sssocResp from %pM (capab=0x%x status=%d aid=%d)\n",
3447 reassoc ? "Rea" : "A", mgmt->sa,
3448 capab_info, status_code, (u16)(aid & ~(BIT(15) | BIT(14))));
3450 if (assoc_data->fils_kek_len &&
3451 fils_decrypt_assoc_resp(sdata, (u8 *)mgmt, &len, assoc_data) < 0)
3454 pos = mgmt->u.assoc_resp.variable;
3455 ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), false, &elems);
3457 if (status_code == WLAN_STATUS_ASSOC_REJECTED_TEMPORARILY &&
3458 elems.timeout_int &&
3459 elems.timeout_int->type == WLAN_TIMEOUT_ASSOC_COMEBACK) {
3461 tu = le32_to_cpu(elems.timeout_int->value);
3462 ms = tu * 1024 / 1000;
3464 "%pM rejected association temporarily; comeback duration %u TU (%u ms)\n",
3466 assoc_data->timeout = jiffies + msecs_to_jiffies(ms);
3467 assoc_data->timeout_started = true;
3468 if (ms > IEEE80211_ASSOC_TIMEOUT)
3469 run_again(sdata, assoc_data->timeout);
3473 bss = assoc_data->bss;
3475 if (status_code != WLAN_STATUS_SUCCESS) {
3476 sdata_info(sdata, "%pM denied association (code=%d)\n",
3477 mgmt->sa, status_code);
3478 ieee80211_destroy_assoc_data(sdata, false, false);
3479 event.u.mlme.status = MLME_DENIED;
3480 event.u.mlme.reason = status_code;
3481 drv_event_callback(sdata->local, sdata, &event);
3483 if (!ieee80211_assoc_success(sdata, bss, mgmt, len)) {
3484 /* oops -- internal error -- send timeout for now */
3485 ieee80211_destroy_assoc_data(sdata, false, false);
3486 cfg80211_assoc_timeout(sdata->dev, bss);
3489 event.u.mlme.status = MLME_SUCCESS;
3490 drv_event_callback(sdata->local, sdata, &event);
3491 sdata_info(sdata, "associated\n");
3494 * destroy assoc_data afterwards, as otherwise an idle
3495 * recalc after assoc_data is NULL but before associated
3496 * is set can cause the interface to go idle
3498 ieee80211_destroy_assoc_data(sdata, true, false);
3500 /* get uapsd queues configuration */
3502 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++)
3503 if (sdata->tx_conf[ac].uapsd)
3504 uapsd_queues |= ieee80211_ac_to_qos_mask[ac];
3507 cfg80211_rx_assoc_resp(sdata->dev, bss, (u8 *)mgmt, len, uapsd_queues);
3510 static void ieee80211_rx_bss_info(struct ieee80211_sub_if_data *sdata,
3511 struct ieee80211_mgmt *mgmt, size_t len,
3512 struct ieee80211_rx_status *rx_status,
3513 struct ieee802_11_elems *elems)
3515 struct ieee80211_local *local = sdata->local;
3516 struct ieee80211_bss *bss;
3517 struct ieee80211_channel *channel;
3519 sdata_assert_lock(sdata);
3521 channel = ieee80211_get_channel(local->hw.wiphy, rx_status->freq);
3525 bss = ieee80211_bss_info_update(local, rx_status, mgmt, len, elems,
3528 sdata->vif.bss_conf.beacon_rate = bss->beacon_rate;
3529 ieee80211_rx_bss_put(local, bss);
3534 static void ieee80211_rx_mgmt_probe_resp(struct ieee80211_sub_if_data *sdata,
3535 struct sk_buff *skb)
3537 struct ieee80211_mgmt *mgmt = (void *)skb->data;
3538 struct ieee80211_if_managed *ifmgd;
3539 struct ieee80211_rx_status *rx_status = (void *) skb->cb;
3540 size_t baselen, len = skb->len;
3541 struct ieee802_11_elems elems;
3543 ifmgd = &sdata->u.mgd;
3545 sdata_assert_lock(sdata);
3547 if (!ether_addr_equal(mgmt->da, sdata->vif.addr))
3548 return; /* ignore ProbeResp to foreign address */
3550 baselen = (u8 *) mgmt->u.probe_resp.variable - (u8 *) mgmt;
3554 ieee802_11_parse_elems(mgmt->u.probe_resp.variable, len - baselen,
3557 ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems);
3559 if (ifmgd->associated &&
3560 ether_addr_equal(mgmt->bssid, ifmgd->associated->bssid))
3561 ieee80211_reset_ap_probe(sdata);
3565 * This is the canonical list of information elements we care about,
3566 * the filter code also gives us all changes to the Microsoft OUI
3567 * (00:50:F2) vendor IE which is used for WMM which we need to track,
3568 * as well as the DTPC IE (part of the Cisco OUI) used for signaling
3569 * changes to requested client power.
3571 * We implement beacon filtering in software since that means we can
3572 * avoid processing the frame here and in cfg80211, and userspace
3573 * will not be able to tell whether the hardware supports it or not.
3575 * XXX: This list needs to be dynamic -- userspace needs to be able to
3576 * add items it requires. It also needs to be able to tell us to
3577 * look out for other vendor IEs.
3579 static const u64 care_about_ies =
3580 (1ULL << WLAN_EID_COUNTRY) |
3581 (1ULL << WLAN_EID_ERP_INFO) |
3582 (1ULL << WLAN_EID_CHANNEL_SWITCH) |
3583 (1ULL << WLAN_EID_PWR_CONSTRAINT) |
3584 (1ULL << WLAN_EID_HT_CAPABILITY) |
3585 (1ULL << WLAN_EID_HT_OPERATION) |
3586 (1ULL << WLAN_EID_EXT_CHANSWITCH_ANN);
3588 static void ieee80211_handle_beacon_sig(struct ieee80211_sub_if_data *sdata,
3589 struct ieee80211_if_managed *ifmgd,
3590 struct ieee80211_bss_conf *bss_conf,
3591 struct ieee80211_local *local,
3592 struct ieee80211_rx_status *rx_status)
3594 /* Track average RSSI from the Beacon frames of the current AP */
3596 if (ifmgd->flags & IEEE80211_STA_RESET_SIGNAL_AVE) {
3597 ifmgd->flags &= ~IEEE80211_STA_RESET_SIGNAL_AVE;
3598 ewma_beacon_signal_init(&ifmgd->ave_beacon_signal);
3599 ifmgd->last_cqm_event_signal = 0;
3600 ifmgd->count_beacon_signal = 1;
3601 ifmgd->last_ave_beacon_signal = 0;
3603 ifmgd->count_beacon_signal++;
3606 ewma_beacon_signal_add(&ifmgd->ave_beacon_signal, -rx_status->signal);
3608 if (ifmgd->rssi_min_thold != ifmgd->rssi_max_thold &&
3609 ifmgd->count_beacon_signal >= IEEE80211_SIGNAL_AVE_MIN_COUNT) {
3610 int sig = -ewma_beacon_signal_read(&ifmgd->ave_beacon_signal);
3611 int last_sig = ifmgd->last_ave_beacon_signal;
3612 struct ieee80211_event event = {
3617 * if signal crosses either of the boundaries, invoke callback
3618 * with appropriate parameters
3620 if (sig > ifmgd->rssi_max_thold &&
3621 (last_sig <= ifmgd->rssi_min_thold || last_sig == 0)) {
3622 ifmgd->last_ave_beacon_signal = sig;
3623 event.u.rssi.data = RSSI_EVENT_HIGH;
3624 drv_event_callback(local, sdata, &event);
3625 } else if (sig < ifmgd->rssi_min_thold &&
3626 (last_sig >= ifmgd->rssi_max_thold ||
3628 ifmgd->last_ave_beacon_signal = sig;
3629 event.u.rssi.data = RSSI_EVENT_LOW;
3630 drv_event_callback(local, sdata, &event);
3634 if (bss_conf->cqm_rssi_thold &&
3635 ifmgd->count_beacon_signal >= IEEE80211_SIGNAL_AVE_MIN_COUNT &&
3636 !(sdata->vif.driver_flags & IEEE80211_VIF_SUPPORTS_CQM_RSSI)) {
3637 int sig = -ewma_beacon_signal_read(&ifmgd->ave_beacon_signal);
3638 int last_event = ifmgd->last_cqm_event_signal;
3639 int thold = bss_conf->cqm_rssi_thold;
3640 int hyst = bss_conf->cqm_rssi_hyst;
3643 (last_event == 0 || sig < last_event - hyst)) {
3644 ifmgd->last_cqm_event_signal = sig;
3645 ieee80211_cqm_rssi_notify(
3647 NL80211_CQM_RSSI_THRESHOLD_EVENT_LOW,
3649 } else if (sig > thold &&
3650 (last_event == 0 || sig > last_event + hyst)) {
3651 ifmgd->last_cqm_event_signal = sig;
3652 ieee80211_cqm_rssi_notify(
3654 NL80211_CQM_RSSI_THRESHOLD_EVENT_HIGH,
3659 if (bss_conf->cqm_rssi_low &&
3660 ifmgd->count_beacon_signal >= IEEE80211_SIGNAL_AVE_MIN_COUNT) {
3661 int sig = -ewma_beacon_signal_read(&ifmgd->ave_beacon_signal);
3662 int last_event = ifmgd->last_cqm_event_signal;
3663 int low = bss_conf->cqm_rssi_low;
3664 int high = bss_conf->cqm_rssi_high;
3667 (last_event == 0 || last_event >= low)) {
3668 ifmgd->last_cqm_event_signal = sig;
3669 ieee80211_cqm_rssi_notify(
3671 NL80211_CQM_RSSI_THRESHOLD_EVENT_LOW,
3673 } else if (sig > high &&
3674 (last_event == 0 || last_event <= high)) {
3675 ifmgd->last_cqm_event_signal = sig;
3676 ieee80211_cqm_rssi_notify(
3678 NL80211_CQM_RSSI_THRESHOLD_EVENT_HIGH,
3684 static void ieee80211_rx_mgmt_beacon(struct ieee80211_sub_if_data *sdata,
3685 struct ieee80211_mgmt *mgmt, size_t len,
3686 struct ieee80211_rx_status *rx_status)
3688 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3689 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
3691 struct ieee802_11_elems elems;
3692 struct ieee80211_local *local = sdata->local;
3693 struct ieee80211_chanctx_conf *chanctx_conf;
3694 struct ieee80211_channel *chan;
3695 struct sta_info *sta;
3701 u8 deauth_buf[IEEE80211_DEAUTH_FRAME_LEN];
3703 sdata_assert_lock(sdata);
3705 /* Process beacon from the current BSS */
3706 baselen = (u8 *) mgmt->u.beacon.variable - (u8 *) mgmt;
3711 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
3712 if (!chanctx_conf) {
3717 if (rx_status->freq != chanctx_conf->def.chan->center_freq) {
3721 chan = chanctx_conf->def.chan;
3724 if (ifmgd->assoc_data && ifmgd->assoc_data->need_beacon &&
3725 ether_addr_equal(mgmt->bssid, ifmgd->assoc_data->bss->bssid)) {
3726 ieee802_11_parse_elems(mgmt->u.beacon.variable,
3727 len - baselen, false, &elems);
3729 ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems);
3730 if (elems.tim && !elems.parse_error) {
3731 const struct ieee80211_tim_ie *tim_ie = elems.tim;
3732 ifmgd->dtim_period = tim_ie->dtim_period;
3734 ifmgd->have_beacon = true;
3735 ifmgd->assoc_data->need_beacon = false;
3736 if (ieee80211_hw_check(&local->hw, TIMING_BEACON_ONLY)) {
3737 sdata->vif.bss_conf.sync_tsf =
3738 le64_to_cpu(mgmt->u.beacon.timestamp);
3739 sdata->vif.bss_conf.sync_device_ts =
3740 rx_status->device_timestamp;
3742 sdata->vif.bss_conf.sync_dtim_count =
3743 elems.tim->dtim_count;
3745 sdata->vif.bss_conf.sync_dtim_count = 0;
3747 /* continue assoc process */
3748 ifmgd->assoc_data->timeout = jiffies;
3749 ifmgd->assoc_data->timeout_started = true;
3750 run_again(sdata, ifmgd->assoc_data->timeout);
3754 if (!ifmgd->associated ||
3755 !ether_addr_equal(mgmt->bssid, ifmgd->associated->bssid))
3757 bssid = ifmgd->associated->bssid;
3759 if (!(rx_status->flag & RX_FLAG_NO_SIGNAL_VAL))
3760 ieee80211_handle_beacon_sig(sdata, ifmgd, bss_conf,
3763 if (ifmgd->flags & IEEE80211_STA_CONNECTION_POLL) {
3764 mlme_dbg_ratelimited(sdata,
3765 "cancelling AP probe due to a received beacon\n");
3766 ieee80211_reset_ap_probe(sdata);
3770 * Push the beacon loss detection into the future since
3771 * we are processing a beacon from the AP just now.
3773 ieee80211_sta_reset_beacon_monitor(sdata);
3775 ncrc = crc32_be(0, (void *)&mgmt->u.beacon.beacon_int, 4);
3776 ncrc = ieee802_11_parse_elems_crc(mgmt->u.beacon.variable,
3777 len - baselen, false, &elems,
3778 care_about_ies, ncrc);
3780 if (ieee80211_hw_check(&local->hw, PS_NULLFUNC_STACK) &&
3781 ieee80211_check_tim(elems.tim, elems.tim_len, ifmgd->aid)) {
3782 if (local->hw.conf.dynamic_ps_timeout > 0) {
3783 if (local->hw.conf.flags & IEEE80211_CONF_PS) {
3784 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
3785 ieee80211_hw_config(local,
3786 IEEE80211_CONF_CHANGE_PS);
3788 ieee80211_send_nullfunc(local, sdata, false);
3789 } else if (!local->pspolling && sdata->u.mgd.powersave) {
3790 local->pspolling = true;
3793 * Here is assumed that the driver will be
3794 * able to send ps-poll frame and receive a
3795 * response even though power save mode is
3796 * enabled, but some drivers might require
3797 * to disable power save here. This needs
3798 * to be investigated.
3800 ieee80211_send_pspoll(local, sdata);
3804 if (sdata->vif.p2p ||
3805 sdata->vif.driver_flags & IEEE80211_VIF_GET_NOA_UPDATE) {
3806 struct ieee80211_p2p_noa_attr noa = {};
3809 ret = cfg80211_get_p2p_attr(mgmt->u.beacon.variable,
3811 IEEE80211_P2P_ATTR_ABSENCE_NOTICE,
3812 (u8 *) &noa, sizeof(noa));
3814 if (sdata->u.mgd.p2p_noa_index != noa.index) {
3815 /* valid noa_attr and index changed */
3816 sdata->u.mgd.p2p_noa_index = noa.index;
3817 memcpy(&bss_conf->p2p_noa_attr, &noa, sizeof(noa));
3818 changed |= BSS_CHANGED_P2P_PS;
3820 * make sure we update all information, the CRC
3821 * mechanism doesn't look at P2P attributes.
3823 ifmgd->beacon_crc_valid = false;
3825 } else if (sdata->u.mgd.p2p_noa_index != -1) {
3826 /* noa_attr not found and we had valid noa_attr before */
3827 sdata->u.mgd.p2p_noa_index = -1;
3828 memset(&bss_conf->p2p_noa_attr, 0, sizeof(bss_conf->p2p_noa_attr));
3829 changed |= BSS_CHANGED_P2P_PS;
3830 ifmgd->beacon_crc_valid = false;
3834 if (ifmgd->csa_waiting_bcn)
3835 ieee80211_chswitch_post_beacon(sdata);
3838 * Update beacon timing and dtim count on every beacon appearance. This
3839 * will allow the driver to use the most updated values. Do it before
3840 * comparing this one with last received beacon.
3841 * IMPORTANT: These parameters would possibly be out of sync by the time
3842 * the driver will use them. The synchronized view is currently
3843 * guaranteed only in certain callbacks.
3845 if (ieee80211_hw_check(&local->hw, TIMING_BEACON_ONLY)) {
3846 sdata->vif.bss_conf.sync_tsf =
3847 le64_to_cpu(mgmt->u.beacon.timestamp);
3848 sdata->vif.bss_conf.sync_device_ts =
3849 rx_status->device_timestamp;
3851 sdata->vif.bss_conf.sync_dtim_count =
3852 elems.tim->dtim_count;
3854 sdata->vif.bss_conf.sync_dtim_count = 0;
3857 if (ncrc == ifmgd->beacon_crc && ifmgd->beacon_crc_valid)
3859 ifmgd->beacon_crc = ncrc;
3860 ifmgd->beacon_crc_valid = true;
3862 ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems);
3864 ieee80211_sta_process_chanswitch(sdata, rx_status->mactime,
3865 rx_status->device_timestamp,
3868 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_WMM) &&
3869 ieee80211_sta_wmm_params(local, sdata, elems.wmm_param,
3870 elems.wmm_param_len,
3871 elems.mu_edca_param_set))
3872 changed |= BSS_CHANGED_QOS;
3875 * If we haven't had a beacon before, tell the driver about the
3876 * DTIM period (and beacon timing if desired) now.
3878 if (!ifmgd->have_beacon) {
3879 /* a few bogus AP send dtim_period = 0 or no TIM IE */
3881 bss_conf->dtim_period = elems.tim->dtim_period ?: 1;
3883 bss_conf->dtim_period = 1;
3885 changed |= BSS_CHANGED_BEACON_INFO;
3886 ifmgd->have_beacon = true;
3888 mutex_lock(&local->iflist_mtx);
3889 ieee80211_recalc_ps(local);
3890 mutex_unlock(&local->iflist_mtx);
3892 ieee80211_recalc_ps_vif(sdata);
3895 if (elems.erp_info) {
3897 erp_value = elems.erp_info[0];
3901 changed |= ieee80211_handle_bss_capability(sdata,
3902 le16_to_cpu(mgmt->u.beacon.capab_info),
3903 erp_valid, erp_value);
3905 mutex_lock(&local->sta_mtx);
3906 sta = sta_info_get(sdata, bssid);
3908 if (ieee80211_config_bw(sdata, sta,
3909 elems.ht_cap_elem, elems.ht_operation,
3910 elems.vht_operation, elems.he_operation,
3912 mutex_unlock(&local->sta_mtx);
3914 "failed to follow AP %pM bandwidth change, disconnect\n",
3916 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH,
3917 WLAN_REASON_DEAUTH_LEAVING,
3919 ieee80211_report_disconnect(sdata, deauth_buf,
3920 sizeof(deauth_buf), true,
3921 WLAN_REASON_DEAUTH_LEAVING);
3925 if (sta && elems.opmode_notif)
3926 ieee80211_vht_handle_opmode(sdata, sta, *elems.opmode_notif,
3928 mutex_unlock(&local->sta_mtx);
3930 changed |= ieee80211_handle_pwr_constr(sdata, chan, mgmt,
3932 elems.country_elem_len,
3933 elems.pwr_constr_elem,
3934 elems.cisco_dtpc_elem);
3936 ieee80211_bss_info_change_notify(sdata, changed);
3939 void ieee80211_sta_rx_queued_mgmt(struct ieee80211_sub_if_data *sdata,
3940 struct sk_buff *skb)
3942 struct ieee80211_rx_status *rx_status;
3943 struct ieee80211_mgmt *mgmt;
3945 struct ieee802_11_elems elems;
3948 rx_status = (struct ieee80211_rx_status *) skb->cb;
3949 mgmt = (struct ieee80211_mgmt *) skb->data;
3950 fc = le16_to_cpu(mgmt->frame_control);
3954 switch (fc & IEEE80211_FCTL_STYPE) {
3955 case IEEE80211_STYPE_BEACON:
3956 ieee80211_rx_mgmt_beacon(sdata, mgmt, skb->len, rx_status);
3958 case IEEE80211_STYPE_PROBE_RESP:
3959 ieee80211_rx_mgmt_probe_resp(sdata, skb);
3961 case IEEE80211_STYPE_AUTH:
3962 ieee80211_rx_mgmt_auth(sdata, mgmt, skb->len);
3964 case IEEE80211_STYPE_DEAUTH:
3965 ieee80211_rx_mgmt_deauth(sdata, mgmt, skb->len);
3967 case IEEE80211_STYPE_DISASSOC:
3968 ieee80211_rx_mgmt_disassoc(sdata, mgmt, skb->len);
3970 case IEEE80211_STYPE_ASSOC_RESP:
3971 case IEEE80211_STYPE_REASSOC_RESP:
3972 ieee80211_rx_mgmt_assoc_resp(sdata, mgmt, skb->len);
3974 case IEEE80211_STYPE_ACTION:
3975 if (mgmt->u.action.category == WLAN_CATEGORY_SPECTRUM_MGMT) {
3976 ies_len = skb->len -
3977 offsetof(struct ieee80211_mgmt,
3978 u.action.u.chan_switch.variable);
3983 ieee802_11_parse_elems(
3984 mgmt->u.action.u.chan_switch.variable,
3985 ies_len, true, &elems);
3987 if (elems.parse_error)
3990 ieee80211_sta_process_chanswitch(sdata,
3992 rx_status->device_timestamp,
3994 } else if (mgmt->u.action.category == WLAN_CATEGORY_PUBLIC) {
3995 ies_len = skb->len -
3996 offsetof(struct ieee80211_mgmt,
3997 u.action.u.ext_chan_switch.variable);
4002 ieee802_11_parse_elems(
4003 mgmt->u.action.u.ext_chan_switch.variable,
4004 ies_len, true, &elems);
4006 if (elems.parse_error)
4009 /* for the handling code pretend this was also an IE */
4010 elems.ext_chansw_ie =
4011 &mgmt->u.action.u.ext_chan_switch.data;
4013 ieee80211_sta_process_chanswitch(sdata,
4015 rx_status->device_timestamp,
4020 sdata_unlock(sdata);
4023 static void ieee80211_sta_timer(struct timer_list *t)
4025 struct ieee80211_sub_if_data *sdata =
4026 from_timer(sdata, t, u.mgd.timer);
4028 ieee80211_queue_work(&sdata->local->hw, &sdata->work);
4031 static void ieee80211_sta_connection_lost(struct ieee80211_sub_if_data *sdata,
4032 u8 *bssid, u8 reason, bool tx)
4034 u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN];
4036 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH, reason,
4039 ieee80211_report_disconnect(sdata, frame_buf, sizeof(frame_buf), true,
4043 static int ieee80211_auth(struct ieee80211_sub_if_data *sdata)
4045 struct ieee80211_local *local = sdata->local;
4046 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
4047 struct ieee80211_mgd_auth_data *auth_data = ifmgd->auth_data;
4051 u16 prepare_tx_duration = 0;
4053 sdata_assert_lock(sdata);
4055 if (WARN_ON_ONCE(!auth_data))
4060 if (auth_data->tries > IEEE80211_AUTH_MAX_TRIES) {
4061 sdata_info(sdata, "authentication with %pM timed out\n",
4062 auth_data->bss->bssid);
4065 * Most likely AP is not in the range so remove the
4066 * bss struct for that AP.
4068 cfg80211_unlink_bss(local->hw.wiphy, auth_data->bss);
4073 if (auth_data->algorithm == WLAN_AUTH_SAE)
4074 prepare_tx_duration =
4075 jiffies_to_msecs(IEEE80211_AUTH_TIMEOUT_SAE);
4077 drv_mgd_prepare_tx(local, sdata, prepare_tx_duration);
4079 sdata_info(sdata, "send auth to %pM (try %d/%d)\n",
4080 auth_data->bss->bssid, auth_data->tries,
4081 IEEE80211_AUTH_MAX_TRIES);
4083 auth_data->expected_transaction = 2;
4085 if (auth_data->algorithm == WLAN_AUTH_SAE) {
4086 trans = auth_data->sae_trans;
4087 status = auth_data->sae_status;
4088 auth_data->expected_transaction = trans;
4091 if (ieee80211_hw_check(&local->hw, REPORTS_TX_ACK_STATUS))
4092 tx_flags = IEEE80211_TX_CTL_REQ_TX_STATUS |
4093 IEEE80211_TX_INTFL_MLME_CONN_TX;
4095 ieee80211_send_auth(sdata, trans, auth_data->algorithm, status,
4096 auth_data->data, auth_data->data_len,
4097 auth_data->bss->bssid,
4098 auth_data->bss->bssid, NULL, 0, 0,
4101 if (tx_flags == 0) {
4102 if (auth_data->algorithm == WLAN_AUTH_SAE)
4103 auth_data->timeout = jiffies +
4104 IEEE80211_AUTH_TIMEOUT_SAE;
4106 auth_data->timeout = jiffies + IEEE80211_AUTH_TIMEOUT;
4108 auth_data->timeout =
4109 round_jiffies_up(jiffies + IEEE80211_AUTH_TIMEOUT_LONG);
4112 auth_data->timeout_started = true;
4113 run_again(sdata, auth_data->timeout);
4118 static int ieee80211_do_assoc(struct ieee80211_sub_if_data *sdata)
4120 struct ieee80211_mgd_assoc_data *assoc_data = sdata->u.mgd.assoc_data;
4121 struct ieee80211_local *local = sdata->local;
4123 sdata_assert_lock(sdata);
4125 assoc_data->tries++;
4126 if (assoc_data->tries > IEEE80211_ASSOC_MAX_TRIES) {
4127 sdata_info(sdata, "association with %pM timed out\n",
4128 assoc_data->bss->bssid);
4131 * Most likely AP is not in the range so remove the
4132 * bss struct for that AP.
4134 cfg80211_unlink_bss(local->hw.wiphy, assoc_data->bss);
4139 sdata_info(sdata, "associate with %pM (try %d/%d)\n",
4140 assoc_data->bss->bssid, assoc_data->tries,
4141 IEEE80211_ASSOC_MAX_TRIES);
4142 ieee80211_send_assoc(sdata);
4144 if (!ieee80211_hw_check(&local->hw, REPORTS_TX_ACK_STATUS)) {
4145 assoc_data->timeout = jiffies + IEEE80211_ASSOC_TIMEOUT;
4146 assoc_data->timeout_started = true;
4147 run_again(sdata, assoc_data->timeout);
4149 assoc_data->timeout =
4150 round_jiffies_up(jiffies +
4151 IEEE80211_ASSOC_TIMEOUT_LONG);
4152 assoc_data->timeout_started = true;
4153 run_again(sdata, assoc_data->timeout);
4159 void ieee80211_mgd_conn_tx_status(struct ieee80211_sub_if_data *sdata,
4160 __le16 fc, bool acked)
4162 struct ieee80211_local *local = sdata->local;
4164 sdata->u.mgd.status_fc = fc;
4165 sdata->u.mgd.status_acked = acked;
4166 sdata->u.mgd.status_received = true;
4168 ieee80211_queue_work(&local->hw, &sdata->work);
4171 void ieee80211_sta_work(struct ieee80211_sub_if_data *sdata)
4173 struct ieee80211_local *local = sdata->local;
4174 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
4178 if (ifmgd->status_received) {
4179 __le16 fc = ifmgd->status_fc;
4180 bool status_acked = ifmgd->status_acked;
4182 ifmgd->status_received = false;
4183 if (ifmgd->auth_data && ieee80211_is_auth(fc)) {
4185 if (ifmgd->auth_data->algorithm ==
4187 ifmgd->auth_data->timeout =
4189 IEEE80211_AUTH_TIMEOUT_SAE;
4191 ifmgd->auth_data->timeout =
4193 IEEE80211_AUTH_TIMEOUT_SHORT;
4194 run_again(sdata, ifmgd->auth_data->timeout);
4196 ifmgd->auth_data->timeout = jiffies - 1;
4198 ifmgd->auth_data->timeout_started = true;
4199 } else if (ifmgd->assoc_data &&
4200 (ieee80211_is_assoc_req(fc) ||
4201 ieee80211_is_reassoc_req(fc))) {
4203 ifmgd->assoc_data->timeout =
4204 jiffies + IEEE80211_ASSOC_TIMEOUT_SHORT;
4205 run_again(sdata, ifmgd->assoc_data->timeout);
4207 ifmgd->assoc_data->timeout = jiffies - 1;
4209 ifmgd->assoc_data->timeout_started = true;
4213 if (ifmgd->auth_data && ifmgd->auth_data->timeout_started &&
4214 time_after(jiffies, ifmgd->auth_data->timeout)) {
4215 if (ifmgd->auth_data->done) {
4217 * ok ... we waited for assoc but userspace didn't,
4218 * so let's just kill the auth data
4220 ieee80211_destroy_auth_data(sdata, false);
4221 } else if (ieee80211_auth(sdata)) {
4223 struct ieee80211_event event = {
4225 .u.mlme.data = AUTH_EVENT,
4226 .u.mlme.status = MLME_TIMEOUT,
4229 memcpy(bssid, ifmgd->auth_data->bss->bssid, ETH_ALEN);
4231 ieee80211_destroy_auth_data(sdata, false);
4233 cfg80211_auth_timeout(sdata->dev, bssid);
4234 drv_event_callback(sdata->local, sdata, &event);
4236 } else if (ifmgd->auth_data && ifmgd->auth_data->timeout_started)
4237 run_again(sdata, ifmgd->auth_data->timeout);
4239 if (ifmgd->assoc_data && ifmgd->assoc_data->timeout_started &&
4240 time_after(jiffies, ifmgd->assoc_data->timeout)) {
4241 if ((ifmgd->assoc_data->need_beacon && !ifmgd->have_beacon) ||
4242 ieee80211_do_assoc(sdata)) {
4243 struct cfg80211_bss *bss = ifmgd->assoc_data->bss;
4244 struct ieee80211_event event = {
4246 .u.mlme.data = ASSOC_EVENT,
4247 .u.mlme.status = MLME_TIMEOUT,
4250 ieee80211_destroy_assoc_data(sdata, false, false);
4251 cfg80211_assoc_timeout(sdata->dev, bss);
4252 drv_event_callback(sdata->local, sdata, &event);
4254 } else if (ifmgd->assoc_data && ifmgd->assoc_data->timeout_started)
4255 run_again(sdata, ifmgd->assoc_data->timeout);
4257 if (ifmgd->flags & IEEE80211_STA_CONNECTION_POLL &&
4258 ifmgd->associated) {
4262 memcpy(bssid, ifmgd->associated->bssid, ETH_ALEN);
4264 if (ieee80211_hw_check(&local->hw, REPORTS_TX_ACK_STATUS))
4265 max_tries = max_nullfunc_tries;
4267 max_tries = max_probe_tries;
4269 /* ACK received for nullfunc probing frame */
4270 if (!ifmgd->probe_send_count)
4271 ieee80211_reset_ap_probe(sdata);
4272 else if (ifmgd->nullfunc_failed) {
4273 if (ifmgd->probe_send_count < max_tries) {
4275 "No ack for nullfunc frame to AP %pM, try %d/%i\n",
4276 bssid, ifmgd->probe_send_count,
4278 ieee80211_mgd_probe_ap_send(sdata);
4281 "No ack for nullfunc frame to AP %pM, disconnecting.\n",
4283 ieee80211_sta_connection_lost(sdata, bssid,
4284 WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY,
4287 } else if (time_is_after_jiffies(ifmgd->probe_timeout))
4288 run_again(sdata, ifmgd->probe_timeout);
4289 else if (ieee80211_hw_check(&local->hw, REPORTS_TX_ACK_STATUS)) {
4291 "Failed to send nullfunc to AP %pM after %dms, disconnecting\n",
4292 bssid, probe_wait_ms);
4293 ieee80211_sta_connection_lost(sdata, bssid,
4294 WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY, false);
4295 } else if (ifmgd->probe_send_count < max_tries) {
4297 "No probe response from AP %pM after %dms, try %d/%i\n",
4298 bssid, probe_wait_ms,
4299 ifmgd->probe_send_count, max_tries);
4300 ieee80211_mgd_probe_ap_send(sdata);
4303 * We actually lost the connection ... or did we?
4307 "No probe response from AP %pM after %dms, disconnecting.\n",
4308 bssid, probe_wait_ms);
4310 ieee80211_sta_connection_lost(sdata, bssid,
4311 WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY, false);
4315 sdata_unlock(sdata);
4318 static void ieee80211_sta_bcn_mon_timer(struct timer_list *t)
4320 struct ieee80211_sub_if_data *sdata =
4321 from_timer(sdata, t, u.mgd.bcn_mon_timer);
4322 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
4324 if (sdata->vif.csa_active && !ifmgd->csa_waiting_bcn)
4327 sdata->u.mgd.connection_loss = false;
4328 ieee80211_queue_work(&sdata->local->hw,
4329 &sdata->u.mgd.beacon_connection_loss_work);
4332 static void ieee80211_sta_conn_mon_timer(struct timer_list *t)
4334 struct ieee80211_sub_if_data *sdata =
4335 from_timer(sdata, t, u.mgd.conn_mon_timer);
4336 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
4337 struct ieee80211_local *local = sdata->local;
4339 if (sdata->vif.csa_active && !ifmgd->csa_waiting_bcn)
4342 ieee80211_queue_work(&local->hw, &ifmgd->monitor_work);
4345 static void ieee80211_sta_monitor_work(struct work_struct *work)
4347 struct ieee80211_sub_if_data *sdata =
4348 container_of(work, struct ieee80211_sub_if_data,
4349 u.mgd.monitor_work);
4351 ieee80211_mgd_probe_ap(sdata, false);
4354 static void ieee80211_restart_sta_timer(struct ieee80211_sub_if_data *sdata)
4356 if (sdata->vif.type == NL80211_IFTYPE_STATION) {
4357 __ieee80211_stop_poll(sdata);
4359 /* let's probe the connection once */
4360 if (!ieee80211_hw_check(&sdata->local->hw, CONNECTION_MONITOR))
4361 ieee80211_queue_work(&sdata->local->hw,
4362 &sdata->u.mgd.monitor_work);
4367 void ieee80211_mgd_quiesce(struct ieee80211_sub_if_data *sdata)
4369 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
4370 u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN];
4374 if (ifmgd->auth_data || ifmgd->assoc_data) {
4375 const u8 *bssid = ifmgd->auth_data ?
4376 ifmgd->auth_data->bss->bssid :
4377 ifmgd->assoc_data->bss->bssid;
4380 * If we are trying to authenticate / associate while suspending,
4381 * cfg80211 won't know and won't actually abort those attempts,
4382 * thus we need to do that ourselves.
4384 ieee80211_send_deauth_disassoc(sdata, bssid,
4385 IEEE80211_STYPE_DEAUTH,
4386 WLAN_REASON_DEAUTH_LEAVING,
4388 if (ifmgd->assoc_data)
4389 ieee80211_destroy_assoc_data(sdata, false, true);
4390 if (ifmgd->auth_data)
4391 ieee80211_destroy_auth_data(sdata, false);
4392 cfg80211_tx_mlme_mgmt(sdata->dev, frame_buf,
4393 IEEE80211_DEAUTH_FRAME_LEN);
4396 /* This is a bit of a hack - we should find a better and more generic
4397 * solution to this. Normally when suspending, cfg80211 will in fact
4398 * deauthenticate. However, it doesn't (and cannot) stop an ongoing
4399 * auth (not so important) or assoc (this is the problem) process.
4401 * As a consequence, it can happen that we are in the process of both
4402 * associating and suspending, and receive an association response
4403 * after cfg80211 has checked if it needs to disconnect, but before
4404 * we actually set the flag to drop incoming frames. This will then
4405 * cause the workqueue flush to process the association response in
4406 * the suspend, resulting in a successful association just before it
4407 * tries to remove the interface from the driver, which now though
4408 * has a channel context assigned ... this results in issues.
4410 * To work around this (for now) simply deauth here again if we're
4413 if (ifmgd->associated && !sdata->local->wowlan) {
4415 struct cfg80211_deauth_request req = {
4416 .reason_code = WLAN_REASON_DEAUTH_LEAVING,
4420 memcpy(bssid, ifmgd->associated->bssid, ETH_ALEN);
4421 ieee80211_mgd_deauth(sdata, &req);
4424 sdata_unlock(sdata);
4427 void ieee80211_sta_restart(struct ieee80211_sub_if_data *sdata)
4429 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
4432 if (!ifmgd->associated) {
4433 sdata_unlock(sdata);
4437 if (sdata->flags & IEEE80211_SDATA_DISCONNECT_RESUME) {
4438 sdata->flags &= ~IEEE80211_SDATA_DISCONNECT_RESUME;
4439 mlme_dbg(sdata, "driver requested disconnect after resume\n");
4440 ieee80211_sta_connection_lost(sdata,
4441 ifmgd->associated->bssid,
4442 WLAN_REASON_UNSPECIFIED,
4444 sdata_unlock(sdata);
4447 sdata_unlock(sdata);
4451 /* interface setup */
4452 void ieee80211_sta_setup_sdata(struct ieee80211_sub_if_data *sdata)
4454 struct ieee80211_if_managed *ifmgd;
4456 ifmgd = &sdata->u.mgd;
4457 INIT_WORK(&ifmgd->monitor_work, ieee80211_sta_monitor_work);
4458 INIT_WORK(&ifmgd->chswitch_work, ieee80211_chswitch_work);
4459 INIT_WORK(&ifmgd->beacon_connection_loss_work,
4460 ieee80211_beacon_connection_loss_work);
4461 INIT_WORK(&ifmgd->csa_connection_drop_work,
4462 ieee80211_csa_connection_drop_work);
4463 INIT_WORK(&ifmgd->request_smps_work, ieee80211_request_smps_mgd_work);
4464 INIT_DELAYED_WORK(&ifmgd->tdls_peer_del_work,
4465 ieee80211_tdls_peer_del_work);
4466 timer_setup(&ifmgd->timer, ieee80211_sta_timer, 0);
4467 timer_setup(&ifmgd->bcn_mon_timer, ieee80211_sta_bcn_mon_timer, 0);
4468 timer_setup(&ifmgd->conn_mon_timer, ieee80211_sta_conn_mon_timer, 0);
4469 timer_setup(&ifmgd->chswitch_timer, ieee80211_chswitch_timer, 0);
4470 INIT_DELAYED_WORK(&ifmgd->tx_tspec_wk,
4471 ieee80211_sta_handle_tspec_ac_params_wk);
4474 ifmgd->powersave = sdata->wdev.ps;
4475 ifmgd->uapsd_queues = sdata->local->hw.uapsd_queues;
4476 ifmgd->uapsd_max_sp_len = sdata->local->hw.uapsd_max_sp_len;
4477 ifmgd->p2p_noa_index = -1;
4479 if (sdata->local->hw.wiphy->features & NL80211_FEATURE_DYNAMIC_SMPS)
4480 ifmgd->req_smps = IEEE80211_SMPS_AUTOMATIC;
4482 ifmgd->req_smps = IEEE80211_SMPS_OFF;
4484 /* Setup TDLS data */
4485 spin_lock_init(&ifmgd->teardown_lock);
4486 ifmgd->teardown_skb = NULL;
4487 ifmgd->orig_teardown_skb = NULL;
4490 /* scan finished notification */
4491 void ieee80211_mlme_notify_scan_completed(struct ieee80211_local *local)
4493 struct ieee80211_sub_if_data *sdata;
4495 /* Restart STA timers */
4497 list_for_each_entry_rcu(sdata, &local->interfaces, list) {
4498 if (ieee80211_sdata_running(sdata))
4499 ieee80211_restart_sta_timer(sdata);
4504 static u8 ieee80211_ht_vht_rx_chains(struct ieee80211_sub_if_data *sdata,
4505 struct cfg80211_bss *cbss)
4507 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
4508 const u8 *ht_cap_ie, *vht_cap_ie;
4509 const struct ieee80211_ht_cap *ht_cap;
4510 const struct ieee80211_vht_cap *vht_cap;
4513 if (ifmgd->flags & IEEE80211_STA_DISABLE_HT)
4516 ht_cap_ie = ieee80211_bss_get_ie(cbss, WLAN_EID_HT_CAPABILITY);
4517 if (ht_cap_ie && ht_cap_ie[1] >= sizeof(*ht_cap)) {
4518 ht_cap = (void *)(ht_cap_ie + 2);
4519 chains = ieee80211_mcs_to_chains(&ht_cap->mcs);
4521 * TODO: use "Tx Maximum Number Spatial Streams Supported" and
4522 * "Tx Unequal Modulation Supported" fields.
4526 if (ifmgd->flags & IEEE80211_STA_DISABLE_VHT)
4529 vht_cap_ie = ieee80211_bss_get_ie(cbss, WLAN_EID_VHT_CAPABILITY);
4530 if (vht_cap_ie && vht_cap_ie[1] >= sizeof(*vht_cap)) {
4534 vht_cap = (void *)(vht_cap_ie + 2);
4535 tx_mcs_map = le16_to_cpu(vht_cap->supp_mcs.tx_mcs_map);
4536 for (nss = 8; nss > 0; nss--) {
4537 if (((tx_mcs_map >> (2 * (nss - 1))) & 3) !=
4538 IEEE80211_VHT_MCS_NOT_SUPPORTED)
4541 /* TODO: use "Tx Highest Supported Long GI Data Rate" field? */
4542 chains = max(chains, nss);
4549 ieee80211_verify_sta_he_mcs_support(struct ieee80211_supported_band *sband,
4550 const struct ieee80211_he_operation *he_op)
4552 const struct ieee80211_sta_he_cap *sta_he_cap =
4553 ieee80211_get_he_sta_cap(sband);
4557 if (!sta_he_cap || !he_op)
4560 ap_min_req_set = le16_to_cpu(he_op->he_mcs_nss_set);
4562 /* Need to go over for 80MHz, 160MHz and for 80+80 */
4563 for (i = 0; i < 3; i++) {
4564 const struct ieee80211_he_mcs_nss_supp *sta_mcs_nss_supp =
4565 &sta_he_cap->he_mcs_nss_supp;
4566 u16 sta_mcs_map_rx =
4567 le16_to_cpu(((__le16 *)sta_mcs_nss_supp)[2 * i]);
4568 u16 sta_mcs_map_tx =
4569 le16_to_cpu(((__le16 *)sta_mcs_nss_supp)[2 * i + 1]);
4571 bool verified = true;
4574 * For each band there is a maximum of 8 spatial streams
4575 * possible. Each of the sta_mcs_map_* is a 16-bit struct built
4576 * of 2 bits per NSS (1-8), with the values defined in enum
4577 * ieee80211_he_mcs_support. Need to make sure STA TX and RX
4578 * capabilities aren't less than the AP's minimum requirements
4579 * for this HE BSS per SS.
4580 * It is enough to find one such band that meets the reqs.
4582 for (nss = 8; nss > 0; nss--) {
4583 u8 sta_rx_val = (sta_mcs_map_rx >> (2 * (nss - 1))) & 3;
4584 u8 sta_tx_val = (sta_mcs_map_tx >> (2 * (nss - 1))) & 3;
4585 u8 ap_val = (ap_min_req_set >> (2 * (nss - 1))) & 3;
4587 if (ap_val == IEEE80211_HE_MCS_NOT_SUPPORTED)
4591 * Make sure the HE AP doesn't require MCSs that aren't
4592 * supported by the client
4594 if (sta_rx_val == IEEE80211_HE_MCS_NOT_SUPPORTED ||
4595 sta_tx_val == IEEE80211_HE_MCS_NOT_SUPPORTED ||
4596 (ap_val > sta_rx_val) || (ap_val > sta_tx_val)) {
4606 /* If here, STA doesn't meet AP's HE min requirements */
4610 static int ieee80211_prep_channel(struct ieee80211_sub_if_data *sdata,
4611 struct cfg80211_bss *cbss)
4613 struct ieee80211_local *local = sdata->local;
4614 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
4615 const struct ieee80211_ht_cap *ht_cap = NULL;
4616 const struct ieee80211_ht_operation *ht_oper = NULL;
4617 const struct ieee80211_vht_operation *vht_oper = NULL;
4618 const struct ieee80211_he_operation *he_oper = NULL;
4619 struct ieee80211_supported_band *sband;
4620 struct cfg80211_chan_def chandef;
4625 sband = local->hw.wiphy->bands[cbss->channel->band];
4627 ifmgd->flags &= ~(IEEE80211_STA_DISABLE_40MHZ |
4628 IEEE80211_STA_DISABLE_80P80MHZ |
4629 IEEE80211_STA_DISABLE_160MHZ);
4633 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_HT) &&
4634 sband->ht_cap.ht_supported) {
4635 const u8 *ht_oper_ie, *ht_cap_ie;
4637 ht_oper_ie = ieee80211_bss_get_ie(cbss, WLAN_EID_HT_OPERATION);
4638 if (ht_oper_ie && ht_oper_ie[1] >= sizeof(*ht_oper))
4639 ht_oper = (void *)(ht_oper_ie + 2);
4641 ht_cap_ie = ieee80211_bss_get_ie(cbss, WLAN_EID_HT_CAPABILITY);
4642 if (ht_cap_ie && ht_cap_ie[1] >= sizeof(*ht_cap))
4643 ht_cap = (void *)(ht_cap_ie + 2);
4646 ifmgd->flags |= IEEE80211_STA_DISABLE_HT;
4651 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_VHT) &&
4652 sband->vht_cap.vht_supported) {
4653 const u8 *vht_oper_ie, *vht_cap;
4655 vht_oper_ie = ieee80211_bss_get_ie(cbss,
4656 WLAN_EID_VHT_OPERATION);
4657 if (vht_oper_ie && vht_oper_ie[1] >= sizeof(*vht_oper))
4658 vht_oper = (void *)(vht_oper_ie + 2);
4659 if (vht_oper && !ht_oper) {
4662 "AP advertised VHT without HT, disabling both\n");
4663 ifmgd->flags |= IEEE80211_STA_DISABLE_HT;
4664 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
4667 vht_cap = ieee80211_bss_get_ie(cbss, WLAN_EID_VHT_CAPABILITY);
4668 if (!vht_cap || vht_cap[1] < sizeof(struct ieee80211_vht_cap)) {
4669 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
4674 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_HE) &&
4675 ieee80211_get_he_sta_cap(sband)) {
4676 const struct cfg80211_bss_ies *ies;
4677 const u8 *he_oper_ie;
4679 ies = rcu_dereference(cbss->ies);
4680 he_oper_ie = cfg80211_find_ext_ie(WLAN_EID_EXT_HE_OPERATION,
4681 ies->data, ies->len);
4683 he_oper_ie[1] == ieee80211_he_oper_size(&he_oper_ie[3]))
4684 he_oper = (void *)(he_oper_ie + 3);
4688 if (!ieee80211_verify_sta_he_mcs_support(sband, he_oper))
4689 ifmgd->flags |= IEEE80211_STA_DISABLE_HE;
4692 /* Allow VHT if at least one channel on the sband supports 80 MHz */
4694 for (i = 0; i < sband->n_channels; i++) {
4695 if (sband->channels[i].flags & (IEEE80211_CHAN_DISABLED |
4696 IEEE80211_CHAN_NO_80MHZ))
4704 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
4706 ifmgd->flags |= ieee80211_determine_chantype(sdata, sband,
4708 ht_oper, vht_oper, he_oper,
4711 sdata->needed_rx_chains = min(ieee80211_ht_vht_rx_chains(sdata, cbss),
4716 /* will change later if needed */
4717 sdata->smps_mode = IEEE80211_SMPS_OFF;
4719 mutex_lock(&local->mtx);
4721 * If this fails (possibly due to channel context sharing
4722 * on incompatible channels, e.g. 80+80 and 160 sharing the
4723 * same control channel) try to use a smaller bandwidth.
4725 ret = ieee80211_vif_use_channel(sdata, &chandef,
4726 IEEE80211_CHANCTX_SHARED);
4728 /* don't downgrade for 5 and 10 MHz channels, though. */
4729 if (chandef.width == NL80211_CHAN_WIDTH_5 ||
4730 chandef.width == NL80211_CHAN_WIDTH_10)
4733 while (ret && chandef.width != NL80211_CHAN_WIDTH_20_NOHT) {
4734 ifmgd->flags |= ieee80211_chandef_downgrade(&chandef);
4735 ret = ieee80211_vif_use_channel(sdata, &chandef,
4736 IEEE80211_CHANCTX_SHARED);
4739 mutex_unlock(&local->mtx);
4743 static int ieee80211_prep_connection(struct ieee80211_sub_if_data *sdata,
4744 struct cfg80211_bss *cbss, bool assoc,
4747 struct ieee80211_local *local = sdata->local;
4748 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
4749 struct ieee80211_bss *bss = (void *)cbss->priv;
4750 struct sta_info *new_sta = NULL;
4751 struct ieee80211_supported_band *sband;
4752 bool have_sta = false;
4755 sband = local->hw.wiphy->bands[cbss->channel->band];
4757 if (WARN_ON(!ifmgd->auth_data && !ifmgd->assoc_data))
4760 /* If a reconfig is happening, bail out */
4761 if (local->in_reconfig)
4766 have_sta = sta_info_get(sdata, cbss->bssid);
4771 new_sta = sta_info_alloc(sdata, cbss->bssid, GFP_KERNEL);
4777 * Set up the information for the new channel before setting the
4778 * new channel. We can't - completely race-free - change the basic
4779 * rates bitmap and the channel (sband) that it refers to, but if
4780 * we set it up before we at least avoid calling into the driver's
4781 * bss_info_changed() method with invalid information (since we do
4782 * call that from changing the channel - only for IDLE and perhaps
4783 * some others, but ...).
4785 * So to avoid that, just set up all the new information before the
4786 * channel, but tell the driver to apply it only afterwards, since
4787 * it might need the new channel for that.
4790 u32 rates = 0, basic_rates = 0;
4791 bool have_higher_than_11mbit = false;
4792 int min_rate = INT_MAX, min_rate_index = -1;
4793 const struct cfg80211_bss_ies *ies;
4794 int shift = ieee80211_vif_get_shift(&sdata->vif);
4796 ieee80211_get_rates(sband, bss->supp_rates,
4797 bss->supp_rates_len,
4798 &rates, &basic_rates,
4799 &have_higher_than_11mbit,
4800 &min_rate, &min_rate_index,
4804 * This used to be a workaround for basic rates missing
4805 * in the association response frame. Now that we no
4806 * longer use the basic rates from there, it probably
4807 * doesn't happen any more, but keep the workaround so
4808 * in case some *other* APs are buggy in different ways
4809 * we can connect -- with a warning.
4811 if (!basic_rates && min_rate_index >= 0) {
4813 "No basic rates, using min rate instead\n");
4814 basic_rates = BIT(min_rate_index);
4817 new_sta->sta.supp_rates[cbss->channel->band] = rates;
4818 sdata->vif.bss_conf.basic_rates = basic_rates;
4820 /* cf. IEEE 802.11 9.2.12 */
4821 if (cbss->channel->band == NL80211_BAND_2GHZ &&
4822 have_higher_than_11mbit)
4823 sdata->flags |= IEEE80211_SDATA_OPERATING_GMODE;
4825 sdata->flags &= ~IEEE80211_SDATA_OPERATING_GMODE;
4827 memcpy(ifmgd->bssid, cbss->bssid, ETH_ALEN);
4829 /* set timing information */
4830 sdata->vif.bss_conf.beacon_int = cbss->beacon_interval;
4832 ies = rcu_dereference(cbss->beacon_ies);
4836 sdata->vif.bss_conf.sync_tsf = ies->tsf;
4837 sdata->vif.bss_conf.sync_device_ts =
4838 bss->device_ts_beacon;
4839 tim_ie = cfg80211_find_ie(WLAN_EID_TIM,
4840 ies->data, ies->len);
4841 if (tim_ie && tim_ie[1] >= 2)
4842 sdata->vif.bss_conf.sync_dtim_count = tim_ie[2];
4844 sdata->vif.bss_conf.sync_dtim_count = 0;
4845 } else if (!ieee80211_hw_check(&sdata->local->hw,
4846 TIMING_BEACON_ONLY)) {
4847 ies = rcu_dereference(cbss->proberesp_ies);
4848 /* must be non-NULL since beacon IEs were NULL */
4849 sdata->vif.bss_conf.sync_tsf = ies->tsf;
4850 sdata->vif.bss_conf.sync_device_ts =
4851 bss->device_ts_presp;
4852 sdata->vif.bss_conf.sync_dtim_count = 0;
4854 sdata->vif.bss_conf.sync_tsf = 0;
4855 sdata->vif.bss_conf.sync_device_ts = 0;
4856 sdata->vif.bss_conf.sync_dtim_count = 0;
4861 if (new_sta || override) {
4862 err = ieee80211_prep_channel(sdata, cbss);
4865 sta_info_free(local, new_sta);
4872 * tell driver about BSSID, basic rates and timing
4873 * this was set up above, before setting the channel
4875 ieee80211_bss_info_change_notify(sdata,
4876 BSS_CHANGED_BSSID | BSS_CHANGED_BASIC_RATES |
4877 BSS_CHANGED_BEACON_INT);
4880 sta_info_pre_move_state(new_sta, IEEE80211_STA_AUTH);
4882 err = sta_info_insert(new_sta);
4886 "failed to insert STA entry for the AP (error %d)\n",
4891 WARN_ON_ONCE(!ether_addr_equal(ifmgd->bssid, cbss->bssid));
4893 /* Cancel scan to ensure that nothing interferes with connection */
4894 if (local->scanning)
4895 ieee80211_scan_cancel(local);
4901 int ieee80211_mgd_auth(struct ieee80211_sub_if_data *sdata,
4902 struct cfg80211_auth_request *req)
4904 struct ieee80211_local *local = sdata->local;
4905 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
4906 struct ieee80211_mgd_auth_data *auth_data;
4910 /* prepare auth data structure */
4912 switch (req->auth_type) {
4913 case NL80211_AUTHTYPE_OPEN_SYSTEM:
4914 auth_alg = WLAN_AUTH_OPEN;
4916 case NL80211_AUTHTYPE_SHARED_KEY:
4917 if (IS_ERR(local->wep_tx_tfm))
4919 auth_alg = WLAN_AUTH_SHARED_KEY;
4921 case NL80211_AUTHTYPE_FT:
4922 auth_alg = WLAN_AUTH_FT;
4924 case NL80211_AUTHTYPE_NETWORK_EAP:
4925 auth_alg = WLAN_AUTH_LEAP;
4927 case NL80211_AUTHTYPE_SAE:
4928 auth_alg = WLAN_AUTH_SAE;
4930 case NL80211_AUTHTYPE_FILS_SK:
4931 auth_alg = WLAN_AUTH_FILS_SK;
4933 case NL80211_AUTHTYPE_FILS_SK_PFS:
4934 auth_alg = WLAN_AUTH_FILS_SK_PFS;
4936 case NL80211_AUTHTYPE_FILS_PK:
4937 auth_alg = WLAN_AUTH_FILS_PK;
4943 auth_data = kzalloc(sizeof(*auth_data) + req->auth_data_len +
4944 req->ie_len, GFP_KERNEL);
4948 auth_data->bss = req->bss;
4950 if (req->auth_data_len >= 4) {
4951 if (req->auth_type == NL80211_AUTHTYPE_SAE) {
4952 __le16 *pos = (__le16 *) req->auth_data;
4954 auth_data->sae_trans = le16_to_cpu(pos[0]);
4955 auth_data->sae_status = le16_to_cpu(pos[1]);
4957 memcpy(auth_data->data, req->auth_data + 4,
4958 req->auth_data_len - 4);
4959 auth_data->data_len += req->auth_data_len - 4;
4962 if (req->ie && req->ie_len) {
4963 memcpy(&auth_data->data[auth_data->data_len],
4964 req->ie, req->ie_len);
4965 auth_data->data_len += req->ie_len;
4968 if (req->key && req->key_len) {
4969 auth_data->key_len = req->key_len;
4970 auth_data->key_idx = req->key_idx;
4971 memcpy(auth_data->key, req->key, req->key_len);
4974 auth_data->algorithm = auth_alg;
4976 /* try to authenticate/probe */
4978 if ((ifmgd->auth_data && !ifmgd->auth_data->done) ||
4979 ifmgd->assoc_data) {
4984 if (ifmgd->auth_data)
4985 ieee80211_destroy_auth_data(sdata, false);
4987 /* prep auth_data so we don't go into idle on disassoc */
4988 ifmgd->auth_data = auth_data;
4990 if (ifmgd->associated) {
4991 u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN];
4994 "disconnect from AP %pM for new auth to %pM\n",
4995 ifmgd->associated->bssid, req->bss->bssid);
4996 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH,
4997 WLAN_REASON_UNSPECIFIED,
5000 ieee80211_report_disconnect(sdata, frame_buf,
5001 sizeof(frame_buf), true,
5002 WLAN_REASON_UNSPECIFIED);
5005 sdata_info(sdata, "authenticate with %pM\n", req->bss->bssid);
5007 err = ieee80211_prep_connection(sdata, req->bss, false, false);
5011 err = ieee80211_auth(sdata);
5013 sta_info_destroy_addr(sdata, req->bss->bssid);
5017 /* hold our own reference */
5018 cfg80211_ref_bss(local->hw.wiphy, auth_data->bss);
5022 eth_zero_addr(ifmgd->bssid);
5023 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BSSID);
5024 ifmgd->auth_data = NULL;
5025 mutex_lock(&sdata->local->mtx);
5026 ieee80211_vif_release_channel(sdata);
5027 mutex_unlock(&sdata->local->mtx);
5033 int ieee80211_mgd_assoc(struct ieee80211_sub_if_data *sdata,
5034 struct cfg80211_assoc_request *req)
5036 struct ieee80211_local *local = sdata->local;
5037 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
5038 struct ieee80211_bss *bss = (void *)req->bss->priv;
5039 struct ieee80211_mgd_assoc_data *assoc_data;
5040 const struct cfg80211_bss_ies *beacon_ies;
5041 struct ieee80211_supported_band *sband;
5042 const u8 *ssidie, *ht_ie, *vht_ie;
5044 bool override = false;
5046 assoc_data = kzalloc(sizeof(*assoc_data) + req->ie_len, GFP_KERNEL);
5051 ssidie = ieee80211_bss_get_ie(req->bss, WLAN_EID_SSID);
5052 if (!ssidie || ssidie[1] > sizeof(assoc_data->ssid)) {
5057 memcpy(assoc_data->ssid, ssidie + 2, ssidie[1]);
5058 assoc_data->ssid_len = ssidie[1];
5061 if (ifmgd->associated) {
5062 u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN];
5065 "disconnect from AP %pM for new assoc to %pM\n",
5066 ifmgd->associated->bssid, req->bss->bssid);
5067 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH,
5068 WLAN_REASON_UNSPECIFIED,
5071 ieee80211_report_disconnect(sdata, frame_buf,
5072 sizeof(frame_buf), true,
5073 WLAN_REASON_UNSPECIFIED);
5076 if (ifmgd->auth_data && !ifmgd->auth_data->done) {
5081 if (ifmgd->assoc_data) {
5086 if (ifmgd->auth_data) {
5089 /* keep sta info, bssid if matching */
5090 match = ether_addr_equal(ifmgd->bssid, req->bss->bssid);
5091 ieee80211_destroy_auth_data(sdata, match);
5094 /* prepare assoc data */
5096 ifmgd->beacon_crc_valid = false;
5098 assoc_data->wmm = bss->wmm_used &&
5099 (local->hw.queues >= IEEE80211_NUM_ACS);
5102 * IEEE802.11n does not allow TKIP/WEP as pairwise ciphers in HT mode.
5103 * We still associate in non-HT mode (11a/b/g) if any one of these
5104 * ciphers is configured as pairwise.
5105 * We can set this to true for non-11n hardware, that'll be checked
5106 * separately along with the peer capabilities.
5108 for (i = 0; i < req->crypto.n_ciphers_pairwise; i++) {
5109 if (req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_WEP40 ||
5110 req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_TKIP ||
5111 req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_WEP104) {
5112 ifmgd->flags |= IEEE80211_STA_DISABLE_HT;
5113 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
5114 ifmgd->flags |= IEEE80211_STA_DISABLE_HE;
5115 netdev_info(sdata->dev,
5116 "disabling HE/HT/VHT due to WEP/TKIP use\n");
5120 /* Also disable HT if we don't support it or the AP doesn't use WMM */
5121 sband = local->hw.wiphy->bands[req->bss->channel->band];
5122 if (!sband->ht_cap.ht_supported ||
5123 local->hw.queues < IEEE80211_NUM_ACS || !bss->wmm_used ||
5124 ifmgd->flags & IEEE80211_STA_DISABLE_WMM) {
5125 ifmgd->flags |= IEEE80211_STA_DISABLE_HT;
5126 if (!bss->wmm_used &&
5127 !(ifmgd->flags & IEEE80211_STA_DISABLE_WMM))
5128 netdev_info(sdata->dev,
5129 "disabling HT as WMM/QoS is not supported by the AP\n");
5132 /* disable VHT if we don't support it or the AP doesn't use WMM */
5133 if (!sband->vht_cap.vht_supported ||
5134 local->hw.queues < IEEE80211_NUM_ACS || !bss->wmm_used ||
5135 ifmgd->flags & IEEE80211_STA_DISABLE_WMM) {
5136 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
5137 if (!bss->wmm_used &&
5138 !(ifmgd->flags & IEEE80211_STA_DISABLE_WMM))
5139 netdev_info(sdata->dev,
5140 "disabling VHT as WMM/QoS is not supported by the AP\n");
5143 memcpy(&ifmgd->ht_capa, &req->ht_capa, sizeof(ifmgd->ht_capa));
5144 memcpy(&ifmgd->ht_capa_mask, &req->ht_capa_mask,
5145 sizeof(ifmgd->ht_capa_mask));
5147 memcpy(&ifmgd->vht_capa, &req->vht_capa, sizeof(ifmgd->vht_capa));
5148 memcpy(&ifmgd->vht_capa_mask, &req->vht_capa_mask,
5149 sizeof(ifmgd->vht_capa_mask));
5151 if (req->ie && req->ie_len) {
5152 memcpy(assoc_data->ie, req->ie, req->ie_len);
5153 assoc_data->ie_len = req->ie_len;
5156 if (req->fils_kek) {
5157 /* should already be checked in cfg80211 - so warn */
5158 if (WARN_ON(req->fils_kek_len > FILS_MAX_KEK_LEN)) {
5162 memcpy(assoc_data->fils_kek, req->fils_kek,
5164 assoc_data->fils_kek_len = req->fils_kek_len;
5167 if (req->fils_nonces)
5168 memcpy(assoc_data->fils_nonces, req->fils_nonces,
5169 2 * FILS_NONCE_LEN);
5171 assoc_data->bss = req->bss;
5173 if (ifmgd->req_smps == IEEE80211_SMPS_AUTOMATIC) {
5174 if (ifmgd->powersave)
5175 sdata->smps_mode = IEEE80211_SMPS_DYNAMIC;
5177 sdata->smps_mode = IEEE80211_SMPS_OFF;
5179 sdata->smps_mode = ifmgd->req_smps;
5181 assoc_data->capability = req->bss->capability;
5182 assoc_data->supp_rates = bss->supp_rates;
5183 assoc_data->supp_rates_len = bss->supp_rates_len;
5186 ht_ie = ieee80211_bss_get_ie(req->bss, WLAN_EID_HT_OPERATION);
5187 if (ht_ie && ht_ie[1] >= sizeof(struct ieee80211_ht_operation))
5188 assoc_data->ap_ht_param =
5189 ((struct ieee80211_ht_operation *)(ht_ie + 2))->ht_param;
5191 ifmgd->flags |= IEEE80211_STA_DISABLE_HT;
5192 vht_ie = ieee80211_bss_get_ie(req->bss, WLAN_EID_VHT_CAPABILITY);
5193 if (vht_ie && vht_ie[1] >= sizeof(struct ieee80211_vht_cap))
5194 memcpy(&assoc_data->ap_vht_cap, vht_ie + 2,
5195 sizeof(struct ieee80211_vht_cap));
5197 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
5200 if (WARN((sdata->vif.driver_flags & IEEE80211_VIF_SUPPORTS_UAPSD) &&
5201 ieee80211_hw_check(&local->hw, PS_NULLFUNC_STACK),
5202 "U-APSD not supported with HW_PS_NULLFUNC_STACK\n"))
5203 sdata->vif.driver_flags &= ~IEEE80211_VIF_SUPPORTS_UAPSD;
5205 if (bss->wmm_used && bss->uapsd_supported &&
5206 (sdata->vif.driver_flags & IEEE80211_VIF_SUPPORTS_UAPSD)) {
5207 assoc_data->uapsd = true;
5208 ifmgd->flags |= IEEE80211_STA_UAPSD_ENABLED;
5210 assoc_data->uapsd = false;
5211 ifmgd->flags &= ~IEEE80211_STA_UAPSD_ENABLED;
5214 if (req->prev_bssid)
5215 memcpy(assoc_data->prev_bssid, req->prev_bssid, ETH_ALEN);
5218 ifmgd->mfp = IEEE80211_MFP_REQUIRED;
5219 ifmgd->flags |= IEEE80211_STA_MFP_ENABLED;
5221 ifmgd->mfp = IEEE80211_MFP_DISABLED;
5222 ifmgd->flags &= ~IEEE80211_STA_MFP_ENABLED;
5225 if (req->flags & ASSOC_REQ_USE_RRM)
5226 ifmgd->flags |= IEEE80211_STA_ENABLE_RRM;
5228 ifmgd->flags &= ~IEEE80211_STA_ENABLE_RRM;
5230 if (req->crypto.control_port)
5231 ifmgd->flags |= IEEE80211_STA_CONTROL_PORT;
5233 ifmgd->flags &= ~IEEE80211_STA_CONTROL_PORT;
5235 sdata->control_port_protocol = req->crypto.control_port_ethertype;
5236 sdata->control_port_no_encrypt = req->crypto.control_port_no_encrypt;
5237 sdata->control_port_over_nl80211 =
5238 req->crypto.control_port_over_nl80211;
5239 sdata->encrypt_headroom = ieee80211_cs_headroom(local, &req->crypto,
5242 /* kick off associate process */
5244 ifmgd->assoc_data = assoc_data;
5245 ifmgd->dtim_period = 0;
5246 ifmgd->have_beacon = false;
5248 /* override HT/VHT configuration only if the AP and we support it */
5249 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_HT)) {
5250 struct ieee80211_sta_ht_cap sta_ht_cap;
5252 if (req->flags & ASSOC_REQ_DISABLE_HT)
5255 memcpy(&sta_ht_cap, &sband->ht_cap, sizeof(sta_ht_cap));
5256 ieee80211_apply_htcap_overrides(sdata, &sta_ht_cap);
5258 /* check for 40 MHz disable override */
5259 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_40MHZ) &&
5260 sband->ht_cap.cap & IEEE80211_HT_CAP_SUP_WIDTH_20_40 &&
5261 !(sta_ht_cap.cap & IEEE80211_HT_CAP_SUP_WIDTH_20_40))
5264 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_VHT) &&
5265 req->flags & ASSOC_REQ_DISABLE_VHT)
5269 if (req->flags & ASSOC_REQ_DISABLE_HT) {
5270 ifmgd->flags |= IEEE80211_STA_DISABLE_HT;
5271 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
5274 if (req->flags & ASSOC_REQ_DISABLE_VHT)
5275 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
5277 err = ieee80211_prep_connection(sdata, req->bss, true, override);
5282 beacon_ies = rcu_dereference(req->bss->beacon_ies);
5284 if (ieee80211_hw_check(&sdata->local->hw, NEED_DTIM_BEFORE_ASSOC) &&
5287 * Wait up to one beacon interval ...
5288 * should this be more if we miss one?
5290 sdata_info(sdata, "waiting for beacon from %pM\n",
5292 assoc_data->timeout = TU_TO_EXP_TIME(req->bss->beacon_interval);
5293 assoc_data->timeout_started = true;
5294 assoc_data->need_beacon = true;
5295 } else if (beacon_ies) {
5296 const u8 *tim_ie = cfg80211_find_ie(WLAN_EID_TIM,
5301 if (tim_ie && tim_ie[1] >= sizeof(struct ieee80211_tim_ie)) {
5302 const struct ieee80211_tim_ie *tim;
5303 tim = (void *)(tim_ie + 2);
5304 ifmgd->dtim_period = tim->dtim_period;
5305 dtim_count = tim->dtim_count;
5307 ifmgd->have_beacon = true;
5308 assoc_data->timeout = jiffies;
5309 assoc_data->timeout_started = true;
5311 if (ieee80211_hw_check(&local->hw, TIMING_BEACON_ONLY)) {
5312 sdata->vif.bss_conf.sync_tsf = beacon_ies->tsf;
5313 sdata->vif.bss_conf.sync_device_ts =
5314 bss->device_ts_beacon;
5315 sdata->vif.bss_conf.sync_dtim_count = dtim_count;
5318 assoc_data->timeout = jiffies;
5319 assoc_data->timeout_started = true;
5323 run_again(sdata, assoc_data->timeout);
5325 if (bss->corrupt_data) {
5326 char *corrupt_type = "data";
5327 if (bss->corrupt_data & IEEE80211_BSS_CORRUPT_BEACON) {
5328 if (bss->corrupt_data &
5329 IEEE80211_BSS_CORRUPT_PROBE_RESP)
5330 corrupt_type = "beacon and probe response";
5332 corrupt_type = "beacon";
5333 } else if (bss->corrupt_data & IEEE80211_BSS_CORRUPT_PROBE_RESP)
5334 corrupt_type = "probe response";
5335 sdata_info(sdata, "associating with AP with corrupt %s\n",
5341 eth_zero_addr(ifmgd->bssid);
5342 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BSSID);
5343 ifmgd->assoc_data = NULL;
5349 int ieee80211_mgd_deauth(struct ieee80211_sub_if_data *sdata,
5350 struct cfg80211_deauth_request *req)
5352 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
5353 u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN];
5354 bool tx = !req->local_state_change;
5356 if (ifmgd->auth_data &&
5357 ether_addr_equal(ifmgd->auth_data->bss->bssid, req->bssid)) {
5359 "aborting authentication with %pM by local choice (Reason: %u=%s)\n",
5360 req->bssid, req->reason_code,
5361 ieee80211_get_reason_code_string(req->reason_code));
5363 drv_mgd_prepare_tx(sdata->local, sdata, 0);
5364 ieee80211_send_deauth_disassoc(sdata, req->bssid,
5365 IEEE80211_STYPE_DEAUTH,
5366 req->reason_code, tx,
5368 ieee80211_destroy_auth_data(sdata, false);
5369 ieee80211_report_disconnect(sdata, frame_buf,
5370 sizeof(frame_buf), true,
5376 if (ifmgd->assoc_data &&
5377 ether_addr_equal(ifmgd->assoc_data->bss->bssid, req->bssid)) {
5379 "aborting association with %pM by local choice (Reason: %u=%s)\n",
5380 req->bssid, req->reason_code,
5381 ieee80211_get_reason_code_string(req->reason_code));
5383 drv_mgd_prepare_tx(sdata->local, sdata, 0);
5384 ieee80211_send_deauth_disassoc(sdata, req->bssid,
5385 IEEE80211_STYPE_DEAUTH,
5386 req->reason_code, tx,
5388 ieee80211_destroy_assoc_data(sdata, false, true);
5389 ieee80211_report_disconnect(sdata, frame_buf,
5390 sizeof(frame_buf), true,
5395 if (ifmgd->associated &&
5396 ether_addr_equal(ifmgd->associated->bssid, req->bssid)) {
5398 "deauthenticating from %pM by local choice (Reason: %u=%s)\n",
5399 req->bssid, req->reason_code,
5400 ieee80211_get_reason_code_string(req->reason_code));
5402 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH,
5403 req->reason_code, tx, frame_buf);
5404 ieee80211_report_disconnect(sdata, frame_buf,
5405 sizeof(frame_buf), true,
5413 int ieee80211_mgd_disassoc(struct ieee80211_sub_if_data *sdata,
5414 struct cfg80211_disassoc_request *req)
5416 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
5418 u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN];
5421 * cfg80211 should catch this ... but it's racy since
5422 * we can receive a disassoc frame, process it, hand it
5423 * to cfg80211 while that's in a locked section already
5424 * trying to tell us that the user wants to disconnect.
5426 if (ifmgd->associated != req->bss)
5430 "disassociating from %pM by local choice (Reason: %u=%s)\n",
5431 req->bss->bssid, req->reason_code, ieee80211_get_reason_code_string(req->reason_code));
5433 memcpy(bssid, req->bss->bssid, ETH_ALEN);
5434 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DISASSOC,
5435 req->reason_code, !req->local_state_change,
5438 ieee80211_report_disconnect(sdata, frame_buf, sizeof(frame_buf), true,
5444 void ieee80211_mgd_stop(struct ieee80211_sub_if_data *sdata)
5446 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
5449 * Make sure some work items will not run after this,
5450 * they will not do anything but might not have been
5451 * cancelled when disconnecting.
5453 cancel_work_sync(&ifmgd->monitor_work);
5454 cancel_work_sync(&ifmgd->beacon_connection_loss_work);
5455 cancel_work_sync(&ifmgd->request_smps_work);
5456 cancel_work_sync(&ifmgd->csa_connection_drop_work);
5457 cancel_work_sync(&ifmgd->chswitch_work);
5458 cancel_delayed_work_sync(&ifmgd->tdls_peer_del_work);
5461 if (ifmgd->assoc_data) {
5462 struct cfg80211_bss *bss = ifmgd->assoc_data->bss;
5463 ieee80211_destroy_assoc_data(sdata, false, false);
5464 cfg80211_assoc_timeout(sdata->dev, bss);
5466 if (ifmgd->auth_data)
5467 ieee80211_destroy_auth_data(sdata, false);
5468 spin_lock_bh(&ifmgd->teardown_lock);
5469 if (ifmgd->teardown_skb) {
5470 kfree_skb(ifmgd->teardown_skb);
5471 ifmgd->teardown_skb = NULL;
5472 ifmgd->orig_teardown_skb = NULL;
5474 spin_unlock_bh(&ifmgd->teardown_lock);
5475 del_timer_sync(&ifmgd->timer);
5476 sdata_unlock(sdata);
5479 void ieee80211_cqm_rssi_notify(struct ieee80211_vif *vif,
5480 enum nl80211_cqm_rssi_threshold_event rssi_event,
5484 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
5486 trace_api_cqm_rssi_notify(sdata, rssi_event, rssi_level);
5488 cfg80211_cqm_rssi_notify(sdata->dev, rssi_event, rssi_level, gfp);
5490 EXPORT_SYMBOL(ieee80211_cqm_rssi_notify);
5492 void ieee80211_cqm_beacon_loss_notify(struct ieee80211_vif *vif, gfp_t gfp)
5494 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
5496 trace_api_cqm_beacon_loss_notify(sdata->local, sdata);
5498 cfg80211_cqm_beacon_loss_notify(sdata->dev, gfp);
5500 EXPORT_SYMBOL(ieee80211_cqm_beacon_loss_notify);