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