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