xj | b04a402 | 2021-11-25 15:01:52 +0800 | [diff] [blame] | 1 | /* |
| 2 | * mac80211 configuration hooks for cfg80211 |
| 3 | * |
| 4 | * Copyright 2006-2010 Johannes Berg <johannes@sipsolutions.net> |
| 5 | * Copyright 2013-2015 Intel Mobile Communications GmbH |
| 6 | * Copyright (C) 2015-2017 Intel Deutschland GmbH |
| 7 | * Copyright (C) 2018 Intel Corporation |
| 8 | * |
| 9 | * This file is GPLv2 as found in COPYING. |
| 10 | */ |
| 11 | |
| 12 | #include <linux/ieee80211.h> |
| 13 | #include <linux/nl80211.h> |
| 14 | #include <linux/rtnetlink.h> |
| 15 | #include <linux/slab.h> |
| 16 | #include <net/net_namespace.h> |
| 17 | #include <linux/rcupdate.h> |
| 18 | #include <linux/if_ether.h> |
| 19 | #include <net/cfg80211.h> |
| 20 | #include "ieee80211_i.h" |
| 21 | #include "driver-ops.h" |
| 22 | #include "rate.h" |
| 23 | #include "mesh.h" |
| 24 | #include "wme.h" |
| 25 | |
| 26 | static void ieee80211_set_mu_mimo_follow(struct ieee80211_sub_if_data *sdata, |
| 27 | struct vif_params *params) |
| 28 | { |
| 29 | bool mu_mimo_groups = false; |
| 30 | bool mu_mimo_follow = false; |
| 31 | |
| 32 | if (params->vht_mumimo_groups) { |
| 33 | u64 membership; |
| 34 | |
| 35 | BUILD_BUG_ON(sizeof(membership) != WLAN_MEMBERSHIP_LEN); |
| 36 | |
| 37 | memcpy(sdata->vif.bss_conf.mu_group.membership, |
| 38 | params->vht_mumimo_groups, WLAN_MEMBERSHIP_LEN); |
| 39 | memcpy(sdata->vif.bss_conf.mu_group.position, |
| 40 | params->vht_mumimo_groups + WLAN_MEMBERSHIP_LEN, |
| 41 | WLAN_USER_POSITION_LEN); |
| 42 | ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_MU_GROUPS); |
| 43 | /* don't care about endianness - just check for 0 */ |
| 44 | memcpy(&membership, params->vht_mumimo_groups, |
| 45 | WLAN_MEMBERSHIP_LEN); |
| 46 | mu_mimo_groups = membership != 0; |
| 47 | } |
| 48 | |
| 49 | if (params->vht_mumimo_follow_addr) { |
| 50 | mu_mimo_follow = |
| 51 | is_valid_ether_addr(params->vht_mumimo_follow_addr); |
| 52 | ether_addr_copy(sdata->u.mntr.mu_follow_addr, |
| 53 | params->vht_mumimo_follow_addr); |
| 54 | } |
| 55 | |
| 56 | sdata->vif.mu_mimo_owner = mu_mimo_groups || mu_mimo_follow; |
| 57 | } |
| 58 | |
| 59 | static int ieee80211_set_mon_options(struct ieee80211_sub_if_data *sdata, |
| 60 | struct vif_params *params) |
| 61 | { |
| 62 | struct ieee80211_local *local = sdata->local; |
| 63 | struct ieee80211_sub_if_data *monitor_sdata; |
| 64 | |
| 65 | /* check flags first */ |
| 66 | if (params->flags && ieee80211_sdata_running(sdata)) { |
| 67 | u32 mask = MONITOR_FLAG_COOK_FRAMES | MONITOR_FLAG_ACTIVE; |
| 68 | |
| 69 | /* |
| 70 | * Prohibit MONITOR_FLAG_COOK_FRAMES and |
| 71 | * MONITOR_FLAG_ACTIVE to be changed while the |
| 72 | * interface is up. |
| 73 | * Else we would need to add a lot of cruft |
| 74 | * to update everything: |
| 75 | * cooked_mntrs, monitor and all fif_* counters |
| 76 | * reconfigure hardware |
| 77 | */ |
| 78 | if ((params->flags & mask) != (sdata->u.mntr.flags & mask)) |
| 79 | return -EBUSY; |
| 80 | } |
| 81 | |
| 82 | /* also validate MU-MIMO change */ |
| 83 | monitor_sdata = rtnl_dereference(local->monitor_sdata); |
| 84 | |
| 85 | if (!monitor_sdata && |
| 86 | (params->vht_mumimo_groups || params->vht_mumimo_follow_addr)) |
| 87 | return -EOPNOTSUPP; |
| 88 | |
| 89 | /* apply all changes now - no failures allowed */ |
| 90 | |
| 91 | if (monitor_sdata) |
| 92 | ieee80211_set_mu_mimo_follow(monitor_sdata, params); |
| 93 | |
| 94 | if (params->flags) { |
| 95 | if (ieee80211_sdata_running(sdata)) { |
| 96 | ieee80211_adjust_monitor_flags(sdata, -1); |
| 97 | sdata->u.mntr.flags = params->flags; |
| 98 | ieee80211_adjust_monitor_flags(sdata, 1); |
| 99 | |
| 100 | ieee80211_configure_filter(local); |
| 101 | } else { |
| 102 | /* |
| 103 | * Because the interface is down, ieee80211_do_stop |
| 104 | * and ieee80211_do_open take care of "everything" |
| 105 | * mentioned in the comment above. |
| 106 | */ |
| 107 | sdata->u.mntr.flags = params->flags; |
| 108 | } |
| 109 | } |
| 110 | |
| 111 | return 0; |
| 112 | } |
| 113 | |
| 114 | static struct wireless_dev *ieee80211_add_iface(struct wiphy *wiphy, |
| 115 | const char *name, |
| 116 | unsigned char name_assign_type, |
| 117 | enum nl80211_iftype type, |
| 118 | struct vif_params *params) |
| 119 | { |
| 120 | struct ieee80211_local *local = wiphy_priv(wiphy); |
| 121 | struct wireless_dev *wdev; |
| 122 | struct ieee80211_sub_if_data *sdata; |
| 123 | int err; |
| 124 | |
| 125 | err = ieee80211_if_add(local, name, name_assign_type, &wdev, type, params); |
| 126 | if (err) |
| 127 | return ERR_PTR(err); |
| 128 | |
| 129 | sdata = IEEE80211_WDEV_TO_SUB_IF(wdev); |
| 130 | |
| 131 | if (type == NL80211_IFTYPE_MONITOR) { |
| 132 | err = ieee80211_set_mon_options(sdata, params); |
| 133 | if (err) { |
| 134 | ieee80211_if_remove(sdata); |
| 135 | return NULL; |
| 136 | } |
| 137 | } |
| 138 | |
| 139 | return wdev; |
| 140 | } |
| 141 | |
| 142 | static int ieee80211_del_iface(struct wiphy *wiphy, struct wireless_dev *wdev) |
| 143 | { |
| 144 | ieee80211_if_remove(IEEE80211_WDEV_TO_SUB_IF(wdev)); |
| 145 | |
| 146 | return 0; |
| 147 | } |
| 148 | |
| 149 | static int ieee80211_change_iface(struct wiphy *wiphy, |
| 150 | struct net_device *dev, |
| 151 | enum nl80211_iftype type, |
| 152 | struct vif_params *params) |
| 153 | { |
| 154 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 155 | int ret; |
| 156 | |
| 157 | ret = ieee80211_if_change_type(sdata, type); |
| 158 | if (ret) |
| 159 | return ret; |
| 160 | |
| 161 | if (type == NL80211_IFTYPE_AP_VLAN && |
| 162 | params && params->use_4addr == 0) { |
| 163 | RCU_INIT_POINTER(sdata->u.vlan.sta, NULL); |
| 164 | ieee80211_check_fast_rx_iface(sdata); |
| 165 | } else if (type == NL80211_IFTYPE_STATION && |
| 166 | params && params->use_4addr >= 0) { |
| 167 | sdata->u.mgd.use_4addr = params->use_4addr; |
| 168 | } |
| 169 | |
| 170 | if (sdata->vif.type == NL80211_IFTYPE_MONITOR) { |
| 171 | ret = ieee80211_set_mon_options(sdata, params); |
| 172 | if (ret) |
| 173 | return ret; |
| 174 | } |
| 175 | |
| 176 | return 0; |
| 177 | } |
| 178 | |
| 179 | static int ieee80211_start_p2p_device(struct wiphy *wiphy, |
| 180 | struct wireless_dev *wdev) |
| 181 | { |
| 182 | struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev); |
| 183 | int ret; |
| 184 | |
| 185 | mutex_lock(&sdata->local->chanctx_mtx); |
| 186 | ret = ieee80211_check_combinations(sdata, NULL, 0, 0); |
| 187 | mutex_unlock(&sdata->local->chanctx_mtx); |
| 188 | if (ret < 0) |
| 189 | return ret; |
| 190 | |
| 191 | return ieee80211_do_open(wdev, true); |
| 192 | } |
| 193 | |
| 194 | static void ieee80211_stop_p2p_device(struct wiphy *wiphy, |
| 195 | struct wireless_dev *wdev) |
| 196 | { |
| 197 | ieee80211_sdata_stop(IEEE80211_WDEV_TO_SUB_IF(wdev)); |
| 198 | } |
| 199 | |
| 200 | static int ieee80211_start_nan(struct wiphy *wiphy, |
| 201 | struct wireless_dev *wdev, |
| 202 | struct cfg80211_nan_conf *conf) |
| 203 | { |
| 204 | struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev); |
| 205 | int ret; |
| 206 | |
| 207 | mutex_lock(&sdata->local->chanctx_mtx); |
| 208 | ret = ieee80211_check_combinations(sdata, NULL, 0, 0); |
| 209 | mutex_unlock(&sdata->local->chanctx_mtx); |
| 210 | if (ret < 0) |
| 211 | return ret; |
| 212 | |
| 213 | ret = ieee80211_do_open(wdev, true); |
| 214 | if (ret) |
| 215 | return ret; |
| 216 | |
| 217 | ret = drv_start_nan(sdata->local, sdata, conf); |
| 218 | if (ret) |
| 219 | ieee80211_sdata_stop(sdata); |
| 220 | |
| 221 | sdata->u.nan.conf = *conf; |
| 222 | |
| 223 | return ret; |
| 224 | } |
| 225 | |
| 226 | static void ieee80211_stop_nan(struct wiphy *wiphy, |
| 227 | struct wireless_dev *wdev) |
| 228 | { |
| 229 | struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev); |
| 230 | |
| 231 | drv_stop_nan(sdata->local, sdata); |
| 232 | ieee80211_sdata_stop(sdata); |
| 233 | } |
| 234 | |
| 235 | static int ieee80211_nan_change_conf(struct wiphy *wiphy, |
| 236 | struct wireless_dev *wdev, |
| 237 | struct cfg80211_nan_conf *conf, |
| 238 | u32 changes) |
| 239 | { |
| 240 | struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev); |
| 241 | struct cfg80211_nan_conf new_conf; |
| 242 | int ret = 0; |
| 243 | |
| 244 | if (sdata->vif.type != NL80211_IFTYPE_NAN) |
| 245 | return -EOPNOTSUPP; |
| 246 | |
| 247 | if (!ieee80211_sdata_running(sdata)) |
| 248 | return -ENETDOWN; |
| 249 | |
| 250 | new_conf = sdata->u.nan.conf; |
| 251 | |
| 252 | if (changes & CFG80211_NAN_CONF_CHANGED_PREF) |
| 253 | new_conf.master_pref = conf->master_pref; |
| 254 | |
| 255 | if (changes & CFG80211_NAN_CONF_CHANGED_BANDS) |
| 256 | new_conf.bands = conf->bands; |
| 257 | |
| 258 | ret = drv_nan_change_conf(sdata->local, sdata, &new_conf, changes); |
| 259 | if (!ret) |
| 260 | sdata->u.nan.conf = new_conf; |
| 261 | |
| 262 | return ret; |
| 263 | } |
| 264 | |
| 265 | static int ieee80211_add_nan_func(struct wiphy *wiphy, |
| 266 | struct wireless_dev *wdev, |
| 267 | struct cfg80211_nan_func *nan_func) |
| 268 | { |
| 269 | struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev); |
| 270 | int ret; |
| 271 | |
| 272 | if (sdata->vif.type != NL80211_IFTYPE_NAN) |
| 273 | return -EOPNOTSUPP; |
| 274 | |
| 275 | if (!ieee80211_sdata_running(sdata)) |
| 276 | return -ENETDOWN; |
| 277 | |
| 278 | spin_lock_bh(&sdata->u.nan.func_lock); |
| 279 | |
| 280 | ret = idr_alloc(&sdata->u.nan.function_inst_ids, |
| 281 | nan_func, 1, sdata->local->hw.max_nan_de_entries + 1, |
| 282 | GFP_ATOMIC); |
| 283 | spin_unlock_bh(&sdata->u.nan.func_lock); |
| 284 | |
| 285 | if (ret < 0) |
| 286 | return ret; |
| 287 | |
| 288 | nan_func->instance_id = ret; |
| 289 | |
| 290 | WARN_ON(nan_func->instance_id == 0); |
| 291 | |
| 292 | ret = drv_add_nan_func(sdata->local, sdata, nan_func); |
| 293 | if (ret) { |
| 294 | spin_lock_bh(&sdata->u.nan.func_lock); |
| 295 | idr_remove(&sdata->u.nan.function_inst_ids, |
| 296 | nan_func->instance_id); |
| 297 | spin_unlock_bh(&sdata->u.nan.func_lock); |
| 298 | } |
| 299 | |
| 300 | return ret; |
| 301 | } |
| 302 | |
| 303 | static struct cfg80211_nan_func * |
| 304 | ieee80211_find_nan_func_by_cookie(struct ieee80211_sub_if_data *sdata, |
| 305 | u64 cookie) |
| 306 | { |
| 307 | struct cfg80211_nan_func *func; |
| 308 | int id; |
| 309 | |
| 310 | lockdep_assert_held(&sdata->u.nan.func_lock); |
| 311 | |
| 312 | idr_for_each_entry(&sdata->u.nan.function_inst_ids, func, id) { |
| 313 | if (func->cookie == cookie) |
| 314 | return func; |
| 315 | } |
| 316 | |
| 317 | return NULL; |
| 318 | } |
| 319 | |
| 320 | static void ieee80211_del_nan_func(struct wiphy *wiphy, |
| 321 | struct wireless_dev *wdev, u64 cookie) |
| 322 | { |
| 323 | struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev); |
| 324 | struct cfg80211_nan_func *func; |
| 325 | u8 instance_id = 0; |
| 326 | |
| 327 | if (sdata->vif.type != NL80211_IFTYPE_NAN || |
| 328 | !ieee80211_sdata_running(sdata)) |
| 329 | return; |
| 330 | |
| 331 | spin_lock_bh(&sdata->u.nan.func_lock); |
| 332 | |
| 333 | func = ieee80211_find_nan_func_by_cookie(sdata, cookie); |
| 334 | if (func) |
| 335 | instance_id = func->instance_id; |
| 336 | |
| 337 | spin_unlock_bh(&sdata->u.nan.func_lock); |
| 338 | |
| 339 | if (instance_id) |
| 340 | drv_del_nan_func(sdata->local, sdata, instance_id); |
| 341 | } |
| 342 | |
| 343 | static int ieee80211_set_noack_map(struct wiphy *wiphy, |
| 344 | struct net_device *dev, |
| 345 | u16 noack_map) |
| 346 | { |
| 347 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 348 | |
| 349 | sdata->noack_map = noack_map; |
| 350 | |
| 351 | ieee80211_check_fast_xmit_iface(sdata); |
| 352 | |
| 353 | return 0; |
| 354 | } |
| 355 | |
| 356 | static int ieee80211_add_key(struct wiphy *wiphy, struct net_device *dev, |
| 357 | u8 key_idx, bool pairwise, const u8 *mac_addr, |
| 358 | struct key_params *params) |
| 359 | { |
| 360 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 361 | struct ieee80211_local *local = sdata->local; |
| 362 | struct sta_info *sta = NULL; |
| 363 | const struct ieee80211_cipher_scheme *cs = NULL; |
| 364 | struct ieee80211_key *key; |
| 365 | int err; |
| 366 | |
| 367 | if (!ieee80211_sdata_running(sdata)) |
| 368 | return -ENETDOWN; |
| 369 | |
| 370 | /* reject WEP and TKIP keys if WEP failed to initialize */ |
| 371 | switch (params->cipher) { |
| 372 | case WLAN_CIPHER_SUITE_WEP40: |
| 373 | case WLAN_CIPHER_SUITE_TKIP: |
| 374 | case WLAN_CIPHER_SUITE_WEP104: |
| 375 | if (IS_ERR(local->wep_tx_tfm)) |
| 376 | return -EINVAL; |
| 377 | break; |
| 378 | case WLAN_CIPHER_SUITE_CCMP: |
| 379 | case WLAN_CIPHER_SUITE_CCMP_256: |
| 380 | case WLAN_CIPHER_SUITE_AES_CMAC: |
| 381 | case WLAN_CIPHER_SUITE_BIP_CMAC_256: |
| 382 | case WLAN_CIPHER_SUITE_BIP_GMAC_128: |
| 383 | case WLAN_CIPHER_SUITE_BIP_GMAC_256: |
| 384 | case WLAN_CIPHER_SUITE_GCMP: |
| 385 | case WLAN_CIPHER_SUITE_GCMP_256: |
| 386 | break; |
| 387 | default: |
| 388 | cs = ieee80211_cs_get(local, params->cipher, sdata->vif.type); |
| 389 | break; |
| 390 | } |
| 391 | |
| 392 | key = ieee80211_key_alloc(params->cipher, key_idx, params->key_len, |
| 393 | params->key, params->seq_len, params->seq, |
| 394 | cs); |
| 395 | if (IS_ERR(key)) |
| 396 | return PTR_ERR(key); |
| 397 | |
| 398 | if (pairwise) |
| 399 | key->conf.flags |= IEEE80211_KEY_FLAG_PAIRWISE; |
| 400 | |
| 401 | mutex_lock(&local->sta_mtx); |
| 402 | |
| 403 | if (mac_addr) { |
| 404 | sta = sta_info_get_bss(sdata, mac_addr); |
| 405 | /* |
| 406 | * The ASSOC test makes sure the driver is ready to |
| 407 | * receive the key. When wpa_supplicant has roamed |
| 408 | * using FT, it attempts to set the key before |
| 409 | * association has completed, this rejects that attempt |
| 410 | * so it will set the key again after association. |
| 411 | * |
| 412 | * TODO: accept the key if we have a station entry and |
| 413 | * add it to the device after the station. |
| 414 | */ |
| 415 | if (!sta || !test_sta_flag(sta, WLAN_STA_ASSOC)) { |
| 416 | ieee80211_key_free_unused(key); |
| 417 | err = -ENOENT; |
| 418 | goto out_unlock; |
| 419 | } |
| 420 | } |
| 421 | |
| 422 | switch (sdata->vif.type) { |
| 423 | case NL80211_IFTYPE_STATION: |
| 424 | if (sdata->u.mgd.mfp != IEEE80211_MFP_DISABLED) |
| 425 | key->conf.flags |= IEEE80211_KEY_FLAG_RX_MGMT; |
| 426 | break; |
| 427 | case NL80211_IFTYPE_AP: |
| 428 | case NL80211_IFTYPE_AP_VLAN: |
| 429 | /* Keys without a station are used for TX only */ |
| 430 | if (sta && test_sta_flag(sta, WLAN_STA_MFP)) |
| 431 | key->conf.flags |= IEEE80211_KEY_FLAG_RX_MGMT; |
| 432 | break; |
| 433 | case NL80211_IFTYPE_ADHOC: |
| 434 | /* no MFP (yet) */ |
| 435 | break; |
| 436 | case NL80211_IFTYPE_MESH_POINT: |
| 437 | #ifdef CONFIG_MAC80211_MESH |
| 438 | if (sdata->u.mesh.security != IEEE80211_MESH_SEC_NONE) |
| 439 | key->conf.flags |= IEEE80211_KEY_FLAG_RX_MGMT; |
| 440 | break; |
| 441 | #endif |
| 442 | case NL80211_IFTYPE_WDS: |
| 443 | case NL80211_IFTYPE_MONITOR: |
| 444 | case NL80211_IFTYPE_P2P_DEVICE: |
| 445 | case NL80211_IFTYPE_NAN: |
| 446 | case NL80211_IFTYPE_UNSPECIFIED: |
| 447 | case NUM_NL80211_IFTYPES: |
| 448 | case NL80211_IFTYPE_P2P_CLIENT: |
| 449 | case NL80211_IFTYPE_P2P_GO: |
| 450 | case NL80211_IFTYPE_OCB: |
| 451 | /* shouldn't happen */ |
| 452 | WARN_ON_ONCE(1); |
| 453 | break; |
| 454 | } |
| 455 | |
| 456 | if (sta) |
| 457 | sta->cipher_scheme = cs; |
| 458 | |
| 459 | err = ieee80211_key_link(key, sdata, sta); |
| 460 | |
| 461 | out_unlock: |
| 462 | mutex_unlock(&local->sta_mtx); |
| 463 | |
| 464 | return err; |
| 465 | } |
| 466 | |
| 467 | static int ieee80211_del_key(struct wiphy *wiphy, struct net_device *dev, |
| 468 | u8 key_idx, bool pairwise, const u8 *mac_addr) |
| 469 | { |
| 470 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 471 | struct ieee80211_local *local = sdata->local; |
| 472 | struct sta_info *sta; |
| 473 | struct ieee80211_key *key = NULL; |
| 474 | int ret; |
| 475 | |
| 476 | mutex_lock(&local->sta_mtx); |
| 477 | mutex_lock(&local->key_mtx); |
| 478 | |
| 479 | if (mac_addr) { |
| 480 | ret = -ENOENT; |
| 481 | |
| 482 | sta = sta_info_get_bss(sdata, mac_addr); |
| 483 | if (!sta) |
| 484 | goto out_unlock; |
| 485 | |
| 486 | if (pairwise) |
| 487 | key = key_mtx_dereference(local, sta->ptk[key_idx]); |
| 488 | else |
| 489 | key = key_mtx_dereference(local, sta->gtk[key_idx]); |
| 490 | } else |
| 491 | key = key_mtx_dereference(local, sdata->keys[key_idx]); |
| 492 | |
| 493 | if (!key) { |
| 494 | ret = -ENOENT; |
| 495 | goto out_unlock; |
| 496 | } |
| 497 | |
| 498 | ieee80211_key_free(key, sdata->vif.type == NL80211_IFTYPE_STATION); |
| 499 | |
| 500 | ret = 0; |
| 501 | out_unlock: |
| 502 | mutex_unlock(&local->key_mtx); |
| 503 | mutex_unlock(&local->sta_mtx); |
| 504 | |
| 505 | return ret; |
| 506 | } |
| 507 | |
| 508 | static int ieee80211_get_key(struct wiphy *wiphy, struct net_device *dev, |
| 509 | u8 key_idx, bool pairwise, const u8 *mac_addr, |
| 510 | void *cookie, |
| 511 | void (*callback)(void *cookie, |
| 512 | struct key_params *params)) |
| 513 | { |
| 514 | struct ieee80211_sub_if_data *sdata; |
| 515 | struct sta_info *sta = NULL; |
| 516 | u8 seq[6] = {0}; |
| 517 | struct key_params params; |
| 518 | struct ieee80211_key *key = NULL; |
| 519 | u64 pn64; |
| 520 | u32 iv32; |
| 521 | u16 iv16; |
| 522 | int err = -ENOENT; |
| 523 | struct ieee80211_key_seq kseq = {}; |
| 524 | |
| 525 | sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 526 | |
| 527 | rcu_read_lock(); |
| 528 | |
| 529 | if (mac_addr) { |
| 530 | sta = sta_info_get_bss(sdata, mac_addr); |
| 531 | if (!sta) |
| 532 | goto out; |
| 533 | |
| 534 | if (pairwise && key_idx < NUM_DEFAULT_KEYS) |
| 535 | key = rcu_dereference(sta->ptk[key_idx]); |
| 536 | else if (!pairwise && |
| 537 | key_idx < NUM_DEFAULT_KEYS + NUM_DEFAULT_MGMT_KEYS) |
| 538 | key = rcu_dereference(sta->gtk[key_idx]); |
| 539 | } else |
| 540 | key = rcu_dereference(sdata->keys[key_idx]); |
| 541 | |
| 542 | if (!key) |
| 543 | goto out; |
| 544 | |
| 545 | memset(¶ms, 0, sizeof(params)); |
| 546 | |
| 547 | params.cipher = key->conf.cipher; |
| 548 | |
| 549 | switch (key->conf.cipher) { |
| 550 | case WLAN_CIPHER_SUITE_TKIP: |
| 551 | pn64 = atomic64_read(&key->conf.tx_pn); |
| 552 | iv32 = TKIP_PN_TO_IV32(pn64); |
| 553 | iv16 = TKIP_PN_TO_IV16(pn64); |
| 554 | |
| 555 | if (key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE && |
| 556 | !(key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_IV)) { |
| 557 | drv_get_key_seq(sdata->local, key, &kseq); |
| 558 | iv32 = kseq.tkip.iv32; |
| 559 | iv16 = kseq.tkip.iv16; |
| 560 | } |
| 561 | |
| 562 | seq[0] = iv16 & 0xff; |
| 563 | seq[1] = (iv16 >> 8) & 0xff; |
| 564 | seq[2] = iv32 & 0xff; |
| 565 | seq[3] = (iv32 >> 8) & 0xff; |
| 566 | seq[4] = (iv32 >> 16) & 0xff; |
| 567 | seq[5] = (iv32 >> 24) & 0xff; |
| 568 | params.seq = seq; |
| 569 | params.seq_len = 6; |
| 570 | break; |
| 571 | case WLAN_CIPHER_SUITE_CCMP: |
| 572 | case WLAN_CIPHER_SUITE_CCMP_256: |
| 573 | case WLAN_CIPHER_SUITE_AES_CMAC: |
| 574 | case WLAN_CIPHER_SUITE_BIP_CMAC_256: |
| 575 | BUILD_BUG_ON(offsetof(typeof(kseq), ccmp) != |
| 576 | offsetof(typeof(kseq), aes_cmac)); |
| 577 | /* fall through */ |
| 578 | case WLAN_CIPHER_SUITE_BIP_GMAC_128: |
| 579 | case WLAN_CIPHER_SUITE_BIP_GMAC_256: |
| 580 | BUILD_BUG_ON(offsetof(typeof(kseq), ccmp) != |
| 581 | offsetof(typeof(kseq), aes_gmac)); |
| 582 | /* fall through */ |
| 583 | case WLAN_CIPHER_SUITE_GCMP: |
| 584 | case WLAN_CIPHER_SUITE_GCMP_256: |
| 585 | BUILD_BUG_ON(offsetof(typeof(kseq), ccmp) != |
| 586 | offsetof(typeof(kseq), gcmp)); |
| 587 | |
| 588 | if (key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE && |
| 589 | !(key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_IV)) { |
| 590 | drv_get_key_seq(sdata->local, key, &kseq); |
| 591 | memcpy(seq, kseq.ccmp.pn, 6); |
| 592 | } else { |
| 593 | pn64 = atomic64_read(&key->conf.tx_pn); |
| 594 | seq[0] = pn64; |
| 595 | seq[1] = pn64 >> 8; |
| 596 | seq[2] = pn64 >> 16; |
| 597 | seq[3] = pn64 >> 24; |
| 598 | seq[4] = pn64 >> 32; |
| 599 | seq[5] = pn64 >> 40; |
| 600 | } |
| 601 | params.seq = seq; |
| 602 | params.seq_len = 6; |
| 603 | break; |
| 604 | default: |
| 605 | if (!(key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE)) |
| 606 | break; |
| 607 | if (WARN_ON(key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_IV)) |
| 608 | break; |
| 609 | drv_get_key_seq(sdata->local, key, &kseq); |
| 610 | params.seq = kseq.hw.seq; |
| 611 | params.seq_len = kseq.hw.seq_len; |
| 612 | break; |
| 613 | } |
| 614 | |
| 615 | params.key = key->conf.key; |
| 616 | params.key_len = key->conf.keylen; |
| 617 | |
| 618 | callback(cookie, ¶ms); |
| 619 | err = 0; |
| 620 | |
| 621 | out: |
| 622 | rcu_read_unlock(); |
| 623 | return err; |
| 624 | } |
| 625 | |
| 626 | static int ieee80211_config_default_key(struct wiphy *wiphy, |
| 627 | struct net_device *dev, |
| 628 | u8 key_idx, bool uni, |
| 629 | bool multi) |
| 630 | { |
| 631 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 632 | |
| 633 | ieee80211_set_default_key(sdata, key_idx, uni, multi); |
| 634 | |
| 635 | return 0; |
| 636 | } |
| 637 | |
| 638 | static int ieee80211_config_default_mgmt_key(struct wiphy *wiphy, |
| 639 | struct net_device *dev, |
| 640 | u8 key_idx) |
| 641 | { |
| 642 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 643 | |
| 644 | ieee80211_set_default_mgmt_key(sdata, key_idx); |
| 645 | |
| 646 | return 0; |
| 647 | } |
| 648 | |
| 649 | void sta_set_rate_info_tx(struct sta_info *sta, |
| 650 | const struct ieee80211_tx_rate *rate, |
| 651 | struct rate_info *rinfo) |
| 652 | { |
| 653 | rinfo->flags = 0; |
| 654 | if (rate->flags & IEEE80211_TX_RC_MCS) { |
| 655 | rinfo->flags |= RATE_INFO_FLAGS_MCS; |
| 656 | rinfo->mcs = rate->idx; |
| 657 | } else if (rate->flags & IEEE80211_TX_RC_VHT_MCS) { |
| 658 | rinfo->flags |= RATE_INFO_FLAGS_VHT_MCS; |
| 659 | rinfo->mcs = ieee80211_rate_get_vht_mcs(rate); |
| 660 | rinfo->nss = ieee80211_rate_get_vht_nss(rate); |
| 661 | } else { |
| 662 | struct ieee80211_supported_band *sband; |
| 663 | int shift = ieee80211_vif_get_shift(&sta->sdata->vif); |
| 664 | u16 brate; |
| 665 | |
| 666 | sband = ieee80211_get_sband(sta->sdata); |
| 667 | if (sband) { |
| 668 | brate = sband->bitrates[rate->idx].bitrate; |
| 669 | rinfo->legacy = DIV_ROUND_UP(brate, 1 << shift); |
| 670 | } |
| 671 | } |
| 672 | if (rate->flags & IEEE80211_TX_RC_40_MHZ_WIDTH) |
| 673 | rinfo->bw = RATE_INFO_BW_40; |
| 674 | else if (rate->flags & IEEE80211_TX_RC_80_MHZ_WIDTH) |
| 675 | rinfo->bw = RATE_INFO_BW_80; |
| 676 | else if (rate->flags & IEEE80211_TX_RC_160_MHZ_WIDTH) |
| 677 | rinfo->bw = RATE_INFO_BW_160; |
| 678 | else |
| 679 | rinfo->bw = RATE_INFO_BW_20; |
| 680 | if (rate->flags & IEEE80211_TX_RC_SHORT_GI) |
| 681 | rinfo->flags |= RATE_INFO_FLAGS_SHORT_GI; |
| 682 | } |
| 683 | |
| 684 | static int ieee80211_dump_station(struct wiphy *wiphy, struct net_device *dev, |
| 685 | int idx, u8 *mac, struct station_info *sinfo) |
| 686 | { |
| 687 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 688 | struct ieee80211_local *local = sdata->local; |
| 689 | struct sta_info *sta; |
| 690 | int ret = -ENOENT; |
| 691 | |
| 692 | mutex_lock(&local->sta_mtx); |
| 693 | |
| 694 | sta = sta_info_get_by_idx(sdata, idx); |
| 695 | if (sta) { |
| 696 | ret = 0; |
| 697 | memcpy(mac, sta->sta.addr, ETH_ALEN); |
| 698 | sta_set_sinfo(sta, sinfo, true); |
| 699 | } |
| 700 | |
| 701 | mutex_unlock(&local->sta_mtx); |
| 702 | |
| 703 | return ret; |
| 704 | } |
| 705 | |
| 706 | static int ieee80211_dump_survey(struct wiphy *wiphy, struct net_device *dev, |
| 707 | int idx, struct survey_info *survey) |
| 708 | { |
| 709 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); |
| 710 | |
| 711 | return drv_get_survey(local, idx, survey); |
| 712 | } |
| 713 | |
| 714 | static int ieee80211_get_station(struct wiphy *wiphy, struct net_device *dev, |
| 715 | const u8 *mac, struct station_info *sinfo) |
| 716 | { |
| 717 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 718 | struct ieee80211_local *local = sdata->local; |
| 719 | struct sta_info *sta; |
| 720 | int ret = -ENOENT; |
| 721 | |
| 722 | mutex_lock(&local->sta_mtx); |
| 723 | |
| 724 | sta = sta_info_get_bss(sdata, mac); |
| 725 | if (sta) { |
| 726 | ret = 0; |
| 727 | sta_set_sinfo(sta, sinfo, true); |
| 728 | } |
| 729 | |
| 730 | mutex_unlock(&local->sta_mtx); |
| 731 | |
| 732 | return ret; |
| 733 | } |
| 734 | |
| 735 | static int ieee80211_set_monitor_channel(struct wiphy *wiphy, |
| 736 | struct cfg80211_chan_def *chandef) |
| 737 | { |
| 738 | struct ieee80211_local *local = wiphy_priv(wiphy); |
| 739 | struct ieee80211_sub_if_data *sdata; |
| 740 | int ret = 0; |
| 741 | |
| 742 | if (cfg80211_chandef_identical(&local->monitor_chandef, chandef)) |
| 743 | return 0; |
| 744 | |
| 745 | mutex_lock(&local->mtx); |
| 746 | if (local->use_chanctx) { |
| 747 | sdata = rtnl_dereference(local->monitor_sdata); |
| 748 | if (sdata) { |
| 749 | ieee80211_vif_release_channel(sdata); |
| 750 | ret = ieee80211_vif_use_channel(sdata, chandef, |
| 751 | IEEE80211_CHANCTX_EXCLUSIVE); |
| 752 | } |
| 753 | } else if (local->open_count == local->monitors) { |
| 754 | local->_oper_chandef = *chandef; |
| 755 | ieee80211_hw_config(local, 0); |
| 756 | } |
| 757 | |
| 758 | if (ret == 0) |
| 759 | local->monitor_chandef = *chandef; |
| 760 | mutex_unlock(&local->mtx); |
| 761 | |
| 762 | return ret; |
| 763 | } |
| 764 | |
| 765 | static int ieee80211_set_probe_resp(struct ieee80211_sub_if_data *sdata, |
| 766 | const u8 *resp, size_t resp_len, |
| 767 | const struct ieee80211_csa_settings *csa) |
| 768 | { |
| 769 | struct probe_resp *new, *old; |
| 770 | |
| 771 | if (!resp || !resp_len) |
| 772 | return 1; |
| 773 | |
| 774 | old = sdata_dereference(sdata->u.ap.probe_resp, sdata); |
| 775 | |
| 776 | new = kzalloc(sizeof(struct probe_resp) + resp_len, GFP_KERNEL); |
| 777 | if (!new) |
| 778 | return -ENOMEM; |
| 779 | |
| 780 | new->len = resp_len; |
| 781 | memcpy(new->data, resp, resp_len); |
| 782 | |
| 783 | if (csa) |
| 784 | memcpy(new->csa_counter_offsets, csa->counter_offsets_presp, |
| 785 | csa->n_counter_offsets_presp * |
| 786 | sizeof(new->csa_counter_offsets[0])); |
| 787 | |
| 788 | rcu_assign_pointer(sdata->u.ap.probe_resp, new); |
| 789 | if (old) |
| 790 | kfree_rcu(old, rcu_head); |
| 791 | |
| 792 | return 0; |
| 793 | } |
| 794 | |
| 795 | static int ieee80211_assign_beacon(struct ieee80211_sub_if_data *sdata, |
| 796 | struct cfg80211_beacon_data *params, |
| 797 | const struct ieee80211_csa_settings *csa) |
| 798 | { |
| 799 | struct beacon_data *new, *old; |
| 800 | int new_head_len, new_tail_len; |
| 801 | int size, err; |
| 802 | u32 changed = BSS_CHANGED_BEACON; |
| 803 | |
| 804 | old = sdata_dereference(sdata->u.ap.beacon, sdata); |
| 805 | |
| 806 | |
| 807 | /* Need to have a beacon head if we don't have one yet */ |
| 808 | if (!params->head && !old) |
| 809 | return -EINVAL; |
| 810 | |
| 811 | /* new or old head? */ |
| 812 | if (params->head) |
| 813 | new_head_len = params->head_len; |
| 814 | else |
| 815 | new_head_len = old->head_len; |
| 816 | |
| 817 | /* new or old tail? */ |
| 818 | if (params->tail || !old) |
| 819 | /* params->tail_len will be zero for !params->tail */ |
| 820 | new_tail_len = params->tail_len; |
| 821 | else |
| 822 | new_tail_len = old->tail_len; |
| 823 | |
| 824 | size = sizeof(*new) + new_head_len + new_tail_len; |
| 825 | |
| 826 | new = kzalloc(size, GFP_KERNEL); |
| 827 | if (!new) |
| 828 | return -ENOMEM; |
| 829 | |
| 830 | /* start filling the new info now */ |
| 831 | |
| 832 | /* |
| 833 | * pointers go into the block we allocated, |
| 834 | * memory is | beacon_data | head | tail | |
| 835 | */ |
| 836 | new->head = ((u8 *) new) + sizeof(*new); |
| 837 | new->tail = new->head + new_head_len; |
| 838 | new->head_len = new_head_len; |
| 839 | new->tail_len = new_tail_len; |
| 840 | |
| 841 | if (csa) { |
| 842 | new->csa_current_counter = csa->count; |
| 843 | memcpy(new->csa_counter_offsets, csa->counter_offsets_beacon, |
| 844 | csa->n_counter_offsets_beacon * |
| 845 | sizeof(new->csa_counter_offsets[0])); |
| 846 | } |
| 847 | |
| 848 | /* copy in head */ |
| 849 | if (params->head) |
| 850 | memcpy(new->head, params->head, new_head_len); |
| 851 | else |
| 852 | memcpy(new->head, old->head, new_head_len); |
| 853 | |
| 854 | /* copy in optional tail */ |
| 855 | if (params->tail) |
| 856 | memcpy(new->tail, params->tail, new_tail_len); |
| 857 | else |
| 858 | if (old) |
| 859 | memcpy(new->tail, old->tail, new_tail_len); |
| 860 | |
| 861 | err = ieee80211_set_probe_resp(sdata, params->probe_resp, |
| 862 | params->probe_resp_len, csa); |
| 863 | if (err < 0) |
| 864 | return err; |
| 865 | if (err == 0) |
| 866 | changed |= BSS_CHANGED_AP_PROBE_RESP; |
| 867 | |
| 868 | rcu_assign_pointer(sdata->u.ap.beacon, new); |
| 869 | |
| 870 | if (old) |
| 871 | kfree_rcu(old, rcu_head); |
| 872 | |
| 873 | return changed; |
| 874 | } |
| 875 | |
| 876 | static int ieee80211_start_ap(struct wiphy *wiphy, struct net_device *dev, |
| 877 | struct cfg80211_ap_settings *params) |
| 878 | { |
| 879 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 880 | struct ieee80211_local *local = sdata->local; |
| 881 | struct beacon_data *old; |
| 882 | struct ieee80211_sub_if_data *vlan; |
| 883 | u32 changed = BSS_CHANGED_BEACON_INT | |
| 884 | BSS_CHANGED_BEACON_ENABLED | |
| 885 | BSS_CHANGED_BEACON | |
| 886 | BSS_CHANGED_SSID | |
| 887 | BSS_CHANGED_P2P_PS | |
| 888 | BSS_CHANGED_TXPOWER; |
| 889 | int err; |
| 890 | int prev_beacon_int; |
| 891 | |
| 892 | old = sdata_dereference(sdata->u.ap.beacon, sdata); |
| 893 | if (old) |
| 894 | return -EALREADY; |
| 895 | |
| 896 | switch (params->smps_mode) { |
| 897 | case NL80211_SMPS_OFF: |
| 898 | sdata->smps_mode = IEEE80211_SMPS_OFF; |
| 899 | break; |
| 900 | case NL80211_SMPS_STATIC: |
| 901 | sdata->smps_mode = IEEE80211_SMPS_STATIC; |
| 902 | break; |
| 903 | case NL80211_SMPS_DYNAMIC: |
| 904 | sdata->smps_mode = IEEE80211_SMPS_DYNAMIC; |
| 905 | break; |
| 906 | default: |
| 907 | return -EINVAL; |
| 908 | } |
| 909 | sdata->u.ap.req_smps = sdata->smps_mode; |
| 910 | |
| 911 | sdata->needed_rx_chains = sdata->local->rx_chains; |
| 912 | |
| 913 | prev_beacon_int = sdata->vif.bss_conf.beacon_int; |
| 914 | sdata->vif.bss_conf.beacon_int = params->beacon_interval; |
| 915 | |
| 916 | mutex_lock(&local->mtx); |
| 917 | err = ieee80211_vif_use_channel(sdata, ¶ms->chandef, |
| 918 | IEEE80211_CHANCTX_SHARED); |
| 919 | if (!err) |
| 920 | ieee80211_vif_copy_chanctx_to_vlans(sdata, false); |
| 921 | mutex_unlock(&local->mtx); |
| 922 | if (err) { |
| 923 | sdata->vif.bss_conf.beacon_int = prev_beacon_int; |
| 924 | return err; |
| 925 | } |
| 926 | |
| 927 | /* |
| 928 | * Apply control port protocol, this allows us to |
| 929 | * not encrypt dynamic WEP control frames. |
| 930 | */ |
| 931 | sdata->control_port_protocol = params->crypto.control_port_ethertype; |
| 932 | sdata->control_port_no_encrypt = params->crypto.control_port_no_encrypt; |
| 933 | sdata->control_port_over_nl80211 = |
| 934 | params->crypto.control_port_over_nl80211; |
| 935 | sdata->encrypt_headroom = ieee80211_cs_headroom(sdata->local, |
| 936 | ¶ms->crypto, |
| 937 | sdata->vif.type); |
| 938 | |
| 939 | list_for_each_entry(vlan, &sdata->u.ap.vlans, u.vlan.list) { |
| 940 | vlan->control_port_protocol = |
| 941 | params->crypto.control_port_ethertype; |
| 942 | vlan->control_port_no_encrypt = |
| 943 | params->crypto.control_port_no_encrypt; |
| 944 | vlan->control_port_over_nl80211 = |
| 945 | params->crypto.control_port_over_nl80211; |
| 946 | vlan->encrypt_headroom = |
| 947 | ieee80211_cs_headroom(sdata->local, |
| 948 | ¶ms->crypto, |
| 949 | vlan->vif.type); |
| 950 | } |
| 951 | |
| 952 | sdata->vif.bss_conf.dtim_period = params->dtim_period; |
| 953 | sdata->vif.bss_conf.enable_beacon = true; |
| 954 | sdata->vif.bss_conf.allow_p2p_go_ps = sdata->vif.p2p; |
| 955 | |
| 956 | sdata->vif.bss_conf.ssid_len = params->ssid_len; |
| 957 | if (params->ssid_len) |
| 958 | memcpy(sdata->vif.bss_conf.ssid, params->ssid, |
| 959 | params->ssid_len); |
| 960 | sdata->vif.bss_conf.hidden_ssid = |
| 961 | (params->hidden_ssid != NL80211_HIDDEN_SSID_NOT_IN_USE); |
| 962 | |
| 963 | memset(&sdata->vif.bss_conf.p2p_noa_attr, 0, |
| 964 | sizeof(sdata->vif.bss_conf.p2p_noa_attr)); |
| 965 | sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow = |
| 966 | params->p2p_ctwindow & IEEE80211_P2P_OPPPS_CTWINDOW_MASK; |
| 967 | if (params->p2p_opp_ps) |
| 968 | sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow |= |
| 969 | IEEE80211_P2P_OPPPS_ENABLE_BIT; |
| 970 | |
| 971 | err = ieee80211_assign_beacon(sdata, ¶ms->beacon, NULL); |
| 972 | if (err < 0) { |
| 973 | ieee80211_vif_release_channel(sdata); |
| 974 | return err; |
| 975 | } |
| 976 | changed |= err; |
| 977 | |
| 978 | err = drv_start_ap(sdata->local, sdata); |
| 979 | if (err) { |
| 980 | old = sdata_dereference(sdata->u.ap.beacon, sdata); |
| 981 | |
| 982 | if (old) |
| 983 | kfree_rcu(old, rcu_head); |
| 984 | RCU_INIT_POINTER(sdata->u.ap.beacon, NULL); |
| 985 | ieee80211_vif_release_channel(sdata); |
| 986 | return err; |
| 987 | } |
| 988 | |
| 989 | ieee80211_recalc_dtim(local, sdata); |
| 990 | ieee80211_bss_info_change_notify(sdata, changed); |
| 991 | |
| 992 | netif_carrier_on(dev); |
| 993 | list_for_each_entry(vlan, &sdata->u.ap.vlans, u.vlan.list) |
| 994 | netif_carrier_on(vlan->dev); |
| 995 | |
| 996 | return 0; |
| 997 | } |
| 998 | |
| 999 | static int ieee80211_change_beacon(struct wiphy *wiphy, struct net_device *dev, |
| 1000 | struct cfg80211_beacon_data *params) |
| 1001 | { |
| 1002 | struct ieee80211_sub_if_data *sdata; |
| 1003 | struct beacon_data *old; |
| 1004 | int err; |
| 1005 | |
| 1006 | sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 1007 | sdata_assert_lock(sdata); |
| 1008 | |
| 1009 | /* don't allow changing the beacon while CSA is in place - offset |
| 1010 | * of channel switch counter may change |
| 1011 | */ |
| 1012 | if (sdata->vif.csa_active) |
| 1013 | return -EBUSY; |
| 1014 | |
| 1015 | old = sdata_dereference(sdata->u.ap.beacon, sdata); |
| 1016 | if (!old) |
| 1017 | return -ENOENT; |
| 1018 | |
| 1019 | err = ieee80211_assign_beacon(sdata, params, NULL); |
| 1020 | if (err < 0) |
| 1021 | return err; |
| 1022 | ieee80211_bss_info_change_notify(sdata, err); |
| 1023 | return 0; |
| 1024 | } |
| 1025 | |
| 1026 | static int ieee80211_stop_ap(struct wiphy *wiphy, struct net_device *dev) |
| 1027 | { |
| 1028 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 1029 | struct ieee80211_sub_if_data *vlan; |
| 1030 | struct ieee80211_local *local = sdata->local; |
| 1031 | struct beacon_data *old_beacon; |
| 1032 | struct probe_resp *old_probe_resp; |
| 1033 | struct cfg80211_chan_def chandef; |
| 1034 | |
| 1035 | sdata_assert_lock(sdata); |
| 1036 | |
| 1037 | old_beacon = sdata_dereference(sdata->u.ap.beacon, sdata); |
| 1038 | if (!old_beacon) |
| 1039 | return -ENOENT; |
| 1040 | old_probe_resp = sdata_dereference(sdata->u.ap.probe_resp, sdata); |
| 1041 | |
| 1042 | /* abort any running channel switch */ |
| 1043 | mutex_lock(&local->mtx); |
| 1044 | sdata->vif.csa_active = false; |
| 1045 | if (sdata->csa_block_tx) { |
| 1046 | ieee80211_wake_vif_queues(local, sdata, |
| 1047 | IEEE80211_QUEUE_STOP_REASON_CSA); |
| 1048 | sdata->csa_block_tx = false; |
| 1049 | } |
| 1050 | |
| 1051 | mutex_unlock(&local->mtx); |
| 1052 | |
| 1053 | kfree(sdata->u.ap.next_beacon); |
| 1054 | sdata->u.ap.next_beacon = NULL; |
| 1055 | |
| 1056 | /* turn off carrier for this interface and dependent VLANs */ |
| 1057 | list_for_each_entry(vlan, &sdata->u.ap.vlans, u.vlan.list) |
| 1058 | netif_carrier_off(vlan->dev); |
| 1059 | netif_carrier_off(dev); |
| 1060 | |
| 1061 | /* remove beacon and probe response */ |
| 1062 | RCU_INIT_POINTER(sdata->u.ap.beacon, NULL); |
| 1063 | RCU_INIT_POINTER(sdata->u.ap.probe_resp, NULL); |
| 1064 | kfree_rcu(old_beacon, rcu_head); |
| 1065 | if (old_probe_resp) |
| 1066 | kfree_rcu(old_probe_resp, rcu_head); |
| 1067 | sdata->u.ap.driver_smps_mode = IEEE80211_SMPS_OFF; |
| 1068 | |
| 1069 | __sta_info_flush(sdata, true); |
| 1070 | ieee80211_free_keys(sdata, true); |
| 1071 | |
| 1072 | sdata->vif.bss_conf.enable_beacon = false; |
| 1073 | sdata->vif.bss_conf.ssid_len = 0; |
| 1074 | clear_bit(SDATA_STATE_OFFCHANNEL_BEACON_STOPPED, &sdata->state); |
| 1075 | ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BEACON_ENABLED); |
| 1076 | |
| 1077 | if (sdata->wdev.cac_started) { |
| 1078 | chandef = sdata->vif.bss_conf.chandef; |
| 1079 | cancel_delayed_work_sync(&sdata->dfs_cac_timer_work); |
| 1080 | cfg80211_cac_event(sdata->dev, &chandef, |
| 1081 | NL80211_RADAR_CAC_ABORTED, |
| 1082 | GFP_KERNEL); |
| 1083 | } |
| 1084 | |
| 1085 | drv_stop_ap(sdata->local, sdata); |
| 1086 | |
| 1087 | /* free all potentially still buffered bcast frames */ |
| 1088 | local->total_ps_buffered -= skb_queue_len(&sdata->u.ap.ps.bc_buf); |
| 1089 | ieee80211_purge_tx_queue(&local->hw, &sdata->u.ap.ps.bc_buf); |
| 1090 | |
| 1091 | mutex_lock(&local->mtx); |
| 1092 | ieee80211_vif_copy_chanctx_to_vlans(sdata, true); |
| 1093 | ieee80211_vif_release_channel(sdata); |
| 1094 | mutex_unlock(&local->mtx); |
| 1095 | |
| 1096 | return 0; |
| 1097 | } |
| 1098 | |
| 1099 | static int sta_apply_auth_flags(struct ieee80211_local *local, |
| 1100 | struct sta_info *sta, |
| 1101 | u32 mask, u32 set) |
| 1102 | { |
| 1103 | int ret; |
| 1104 | |
| 1105 | if (mask & BIT(NL80211_STA_FLAG_AUTHENTICATED) && |
| 1106 | set & BIT(NL80211_STA_FLAG_AUTHENTICATED) && |
| 1107 | !test_sta_flag(sta, WLAN_STA_AUTH)) { |
| 1108 | ret = sta_info_move_state(sta, IEEE80211_STA_AUTH); |
| 1109 | if (ret) |
| 1110 | return ret; |
| 1111 | } |
| 1112 | |
| 1113 | if (mask & BIT(NL80211_STA_FLAG_ASSOCIATED) && |
| 1114 | set & BIT(NL80211_STA_FLAG_ASSOCIATED) && |
| 1115 | !test_sta_flag(sta, WLAN_STA_ASSOC)) { |
| 1116 | /* |
| 1117 | * When peer becomes associated, init rate control as |
| 1118 | * well. Some drivers require rate control initialized |
| 1119 | * before drv_sta_state() is called. |
| 1120 | */ |
| 1121 | if (!test_sta_flag(sta, WLAN_STA_RATE_CONTROL)) |
| 1122 | rate_control_rate_init(sta); |
| 1123 | |
| 1124 | ret = sta_info_move_state(sta, IEEE80211_STA_ASSOC); |
| 1125 | if (ret) |
| 1126 | return ret; |
| 1127 | } |
| 1128 | |
| 1129 | if (mask & BIT(NL80211_STA_FLAG_AUTHORIZED)) { |
| 1130 | if (set & BIT(NL80211_STA_FLAG_AUTHORIZED)) |
| 1131 | ret = sta_info_move_state(sta, IEEE80211_STA_AUTHORIZED); |
| 1132 | else if (test_sta_flag(sta, WLAN_STA_AUTHORIZED)) |
| 1133 | ret = sta_info_move_state(sta, IEEE80211_STA_ASSOC); |
| 1134 | else |
| 1135 | ret = 0; |
| 1136 | if (ret) |
| 1137 | return ret; |
| 1138 | } |
| 1139 | |
| 1140 | if (mask & BIT(NL80211_STA_FLAG_ASSOCIATED) && |
| 1141 | !(set & BIT(NL80211_STA_FLAG_ASSOCIATED)) && |
| 1142 | test_sta_flag(sta, WLAN_STA_ASSOC)) { |
| 1143 | ret = sta_info_move_state(sta, IEEE80211_STA_AUTH); |
| 1144 | if (ret) |
| 1145 | return ret; |
| 1146 | } |
| 1147 | |
| 1148 | if (mask & BIT(NL80211_STA_FLAG_AUTHENTICATED) && |
| 1149 | !(set & BIT(NL80211_STA_FLAG_AUTHENTICATED)) && |
| 1150 | test_sta_flag(sta, WLAN_STA_AUTH)) { |
| 1151 | ret = sta_info_move_state(sta, IEEE80211_STA_NONE); |
| 1152 | if (ret) |
| 1153 | return ret; |
| 1154 | } |
| 1155 | |
| 1156 | return 0; |
| 1157 | } |
| 1158 | |
| 1159 | static void sta_apply_mesh_params(struct ieee80211_local *local, |
| 1160 | struct sta_info *sta, |
| 1161 | struct station_parameters *params) |
| 1162 | { |
| 1163 | #ifdef CONFIG_MAC80211_MESH |
| 1164 | struct ieee80211_sub_if_data *sdata = sta->sdata; |
| 1165 | u32 changed = 0; |
| 1166 | |
| 1167 | if (params->sta_modify_mask & STATION_PARAM_APPLY_PLINK_STATE) { |
| 1168 | switch (params->plink_state) { |
| 1169 | case NL80211_PLINK_ESTAB: |
| 1170 | if (sta->mesh->plink_state != NL80211_PLINK_ESTAB) |
| 1171 | changed = mesh_plink_inc_estab_count(sdata); |
| 1172 | sta->mesh->plink_state = params->plink_state; |
| 1173 | sta->mesh->aid = params->peer_aid; |
| 1174 | |
| 1175 | ieee80211_mps_sta_status_update(sta); |
| 1176 | changed |= ieee80211_mps_set_sta_local_pm(sta, |
| 1177 | sdata->u.mesh.mshcfg.power_mode); |
| 1178 | break; |
| 1179 | case NL80211_PLINK_LISTEN: |
| 1180 | case NL80211_PLINK_BLOCKED: |
| 1181 | case NL80211_PLINK_OPN_SNT: |
| 1182 | case NL80211_PLINK_OPN_RCVD: |
| 1183 | case NL80211_PLINK_CNF_RCVD: |
| 1184 | case NL80211_PLINK_HOLDING: |
| 1185 | if (sta->mesh->plink_state == NL80211_PLINK_ESTAB) |
| 1186 | changed = mesh_plink_dec_estab_count(sdata); |
| 1187 | sta->mesh->plink_state = params->plink_state; |
| 1188 | |
| 1189 | ieee80211_mps_sta_status_update(sta); |
| 1190 | changed |= ieee80211_mps_set_sta_local_pm(sta, |
| 1191 | NL80211_MESH_POWER_UNKNOWN); |
| 1192 | break; |
| 1193 | default: |
| 1194 | /* nothing */ |
| 1195 | break; |
| 1196 | } |
| 1197 | } |
| 1198 | |
| 1199 | switch (params->plink_action) { |
| 1200 | case NL80211_PLINK_ACTION_NO_ACTION: |
| 1201 | /* nothing */ |
| 1202 | break; |
| 1203 | case NL80211_PLINK_ACTION_OPEN: |
| 1204 | changed |= mesh_plink_open(sta); |
| 1205 | break; |
| 1206 | case NL80211_PLINK_ACTION_BLOCK: |
| 1207 | changed |= mesh_plink_block(sta); |
| 1208 | break; |
| 1209 | } |
| 1210 | |
| 1211 | if (params->local_pm) |
| 1212 | changed |= ieee80211_mps_set_sta_local_pm(sta, |
| 1213 | params->local_pm); |
| 1214 | |
| 1215 | ieee80211_mbss_info_change_notify(sdata, changed); |
| 1216 | #endif |
| 1217 | } |
| 1218 | |
| 1219 | static int sta_apply_parameters(struct ieee80211_local *local, |
| 1220 | struct sta_info *sta, |
| 1221 | struct station_parameters *params) |
| 1222 | { |
| 1223 | int ret = 0; |
| 1224 | struct ieee80211_supported_band *sband; |
| 1225 | struct ieee80211_sub_if_data *sdata = sta->sdata; |
| 1226 | u32 mask, set; |
| 1227 | |
| 1228 | sband = ieee80211_get_sband(sdata); |
| 1229 | if (!sband) |
| 1230 | return -EINVAL; |
| 1231 | |
| 1232 | mask = params->sta_flags_mask; |
| 1233 | set = params->sta_flags_set; |
| 1234 | |
| 1235 | if (ieee80211_vif_is_mesh(&sdata->vif)) { |
| 1236 | /* |
| 1237 | * In mesh mode, ASSOCIATED isn't part of the nl80211 |
| 1238 | * API but must follow AUTHENTICATED for driver state. |
| 1239 | */ |
| 1240 | if (mask & BIT(NL80211_STA_FLAG_AUTHENTICATED)) |
| 1241 | mask |= BIT(NL80211_STA_FLAG_ASSOCIATED); |
| 1242 | if (set & BIT(NL80211_STA_FLAG_AUTHENTICATED)) |
| 1243 | set |= BIT(NL80211_STA_FLAG_ASSOCIATED); |
| 1244 | } else if (test_sta_flag(sta, WLAN_STA_TDLS_PEER)) { |
| 1245 | /* |
| 1246 | * TDLS -- everything follows authorized, but |
| 1247 | * only becoming authorized is possible, not |
| 1248 | * going back |
| 1249 | */ |
| 1250 | if (set & BIT(NL80211_STA_FLAG_AUTHORIZED)) { |
| 1251 | set |= BIT(NL80211_STA_FLAG_AUTHENTICATED) | |
| 1252 | BIT(NL80211_STA_FLAG_ASSOCIATED); |
| 1253 | mask |= BIT(NL80211_STA_FLAG_AUTHENTICATED) | |
| 1254 | BIT(NL80211_STA_FLAG_ASSOCIATED); |
| 1255 | } |
| 1256 | } |
| 1257 | |
| 1258 | if (mask & BIT(NL80211_STA_FLAG_WME) && |
| 1259 | local->hw.queues >= IEEE80211_NUM_ACS) |
| 1260 | sta->sta.wme = set & BIT(NL80211_STA_FLAG_WME); |
| 1261 | |
| 1262 | /* auth flags will be set later for TDLS, |
| 1263 | * and for unassociated stations that move to assocaited */ |
| 1264 | if (!test_sta_flag(sta, WLAN_STA_TDLS_PEER) && |
| 1265 | !((mask & BIT(NL80211_STA_FLAG_ASSOCIATED)) && |
| 1266 | (set & BIT(NL80211_STA_FLAG_ASSOCIATED)))) { |
| 1267 | ret = sta_apply_auth_flags(local, sta, mask, set); |
| 1268 | if (ret) |
| 1269 | return ret; |
| 1270 | } |
| 1271 | |
| 1272 | if (mask & BIT(NL80211_STA_FLAG_SHORT_PREAMBLE)) { |
| 1273 | if (set & BIT(NL80211_STA_FLAG_SHORT_PREAMBLE)) |
| 1274 | set_sta_flag(sta, WLAN_STA_SHORT_PREAMBLE); |
| 1275 | else |
| 1276 | clear_sta_flag(sta, WLAN_STA_SHORT_PREAMBLE); |
| 1277 | } |
| 1278 | |
| 1279 | if (mask & BIT(NL80211_STA_FLAG_MFP)) { |
| 1280 | sta->sta.mfp = !!(set & BIT(NL80211_STA_FLAG_MFP)); |
| 1281 | if (set & BIT(NL80211_STA_FLAG_MFP)) |
| 1282 | set_sta_flag(sta, WLAN_STA_MFP); |
| 1283 | else |
| 1284 | clear_sta_flag(sta, WLAN_STA_MFP); |
| 1285 | } |
| 1286 | |
| 1287 | if (mask & BIT(NL80211_STA_FLAG_TDLS_PEER)) { |
| 1288 | if (set & BIT(NL80211_STA_FLAG_TDLS_PEER)) |
| 1289 | set_sta_flag(sta, WLAN_STA_TDLS_PEER); |
| 1290 | else |
| 1291 | clear_sta_flag(sta, WLAN_STA_TDLS_PEER); |
| 1292 | } |
| 1293 | |
| 1294 | /* mark TDLS channel switch support, if the AP allows it */ |
| 1295 | if (test_sta_flag(sta, WLAN_STA_TDLS_PEER) && |
| 1296 | !sdata->u.mgd.tdls_chan_switch_prohibited && |
| 1297 | params->ext_capab_len >= 4 && |
| 1298 | params->ext_capab[3] & WLAN_EXT_CAPA4_TDLS_CHAN_SWITCH) |
| 1299 | set_sta_flag(sta, WLAN_STA_TDLS_CHAN_SWITCH); |
| 1300 | |
| 1301 | if (test_sta_flag(sta, WLAN_STA_TDLS_PEER) && |
| 1302 | !sdata->u.mgd.tdls_wider_bw_prohibited && |
| 1303 | ieee80211_hw_check(&local->hw, TDLS_WIDER_BW) && |
| 1304 | params->ext_capab_len >= 8 && |
| 1305 | params->ext_capab[7] & WLAN_EXT_CAPA8_TDLS_WIDE_BW_ENABLED) |
| 1306 | set_sta_flag(sta, WLAN_STA_TDLS_WIDER_BW); |
| 1307 | |
| 1308 | if (params->sta_modify_mask & STATION_PARAM_APPLY_UAPSD) { |
| 1309 | sta->sta.uapsd_queues = params->uapsd_queues; |
| 1310 | sta->sta.max_sp = params->max_sp; |
| 1311 | } |
| 1312 | |
| 1313 | /* The sender might not have sent the last bit, consider it to be 0 */ |
| 1314 | if (params->ext_capab_len >= 8) { |
| 1315 | u8 val = (params->ext_capab[7] & |
| 1316 | WLAN_EXT_CAPA8_MAX_MSDU_IN_AMSDU_LSB) >> 7; |
| 1317 | |
| 1318 | /* we did get all the bits, take the MSB as well */ |
| 1319 | if (params->ext_capab_len >= 9) { |
| 1320 | u8 val_msb = params->ext_capab[8] & |
| 1321 | WLAN_EXT_CAPA9_MAX_MSDU_IN_AMSDU_MSB; |
| 1322 | val_msb <<= 1; |
| 1323 | val |= val_msb; |
| 1324 | } |
| 1325 | |
| 1326 | switch (val) { |
| 1327 | case 1: |
| 1328 | sta->sta.max_amsdu_subframes = 32; |
| 1329 | break; |
| 1330 | case 2: |
| 1331 | sta->sta.max_amsdu_subframes = 16; |
| 1332 | break; |
| 1333 | case 3: |
| 1334 | sta->sta.max_amsdu_subframes = 8; |
| 1335 | break; |
| 1336 | default: |
| 1337 | sta->sta.max_amsdu_subframes = 0; |
| 1338 | } |
| 1339 | } |
| 1340 | |
| 1341 | /* |
| 1342 | * cfg80211 validates this (1-2007) and allows setting the AID |
| 1343 | * only when creating a new station entry |
| 1344 | */ |
| 1345 | if (params->aid) |
| 1346 | sta->sta.aid = params->aid; |
| 1347 | |
| 1348 | /* |
| 1349 | * Some of the following updates would be racy if called on an |
| 1350 | * existing station, via ieee80211_change_station(). However, |
| 1351 | * all such changes are rejected by cfg80211 except for updates |
| 1352 | * changing the supported rates on an existing but not yet used |
| 1353 | * TDLS peer. |
| 1354 | */ |
| 1355 | |
| 1356 | if (params->listen_interval >= 0) |
| 1357 | sta->listen_interval = params->listen_interval; |
| 1358 | |
| 1359 | if (params->supported_rates) { |
| 1360 | ieee80211_parse_bitrates(&sdata->vif.bss_conf.chandef, |
| 1361 | sband, params->supported_rates, |
| 1362 | params->supported_rates_len, |
| 1363 | &sta->sta.supp_rates[sband->band]); |
| 1364 | } |
| 1365 | |
| 1366 | if (params->ht_capa) |
| 1367 | ieee80211_ht_cap_ie_to_sta_ht_cap(sdata, sband, |
| 1368 | params->ht_capa, sta); |
| 1369 | |
| 1370 | /* VHT can override some HT caps such as the A-MSDU max length */ |
| 1371 | if (params->vht_capa) |
| 1372 | ieee80211_vht_cap_ie_to_sta_vht_cap(sdata, sband, |
| 1373 | params->vht_capa, sta); |
| 1374 | |
| 1375 | if (params->he_capa) |
| 1376 | ieee80211_he_cap_ie_to_sta_he_cap(sdata, sband, |
| 1377 | (void *)params->he_capa, |
| 1378 | params->he_capa_len, sta); |
| 1379 | |
| 1380 | if (params->opmode_notif_used) { |
| 1381 | /* returned value is only needed for rc update, but the |
| 1382 | * rc isn't initialized here yet, so ignore it |
| 1383 | */ |
| 1384 | __ieee80211_vht_handle_opmode(sdata, sta, params->opmode_notif, |
| 1385 | sband->band); |
| 1386 | } |
| 1387 | |
| 1388 | if (params->support_p2p_ps >= 0) |
| 1389 | sta->sta.support_p2p_ps = params->support_p2p_ps; |
| 1390 | |
| 1391 | if (ieee80211_vif_is_mesh(&sdata->vif)) |
| 1392 | sta_apply_mesh_params(local, sta, params); |
| 1393 | |
| 1394 | /* set the STA state after all sta info from usermode has been set */ |
| 1395 | if (test_sta_flag(sta, WLAN_STA_TDLS_PEER) || |
| 1396 | set & BIT(NL80211_STA_FLAG_ASSOCIATED)) { |
| 1397 | ret = sta_apply_auth_flags(local, sta, mask, set); |
| 1398 | if (ret) |
| 1399 | return ret; |
| 1400 | } |
| 1401 | |
| 1402 | return 0; |
| 1403 | } |
| 1404 | |
| 1405 | static int ieee80211_add_station(struct wiphy *wiphy, struct net_device *dev, |
| 1406 | const u8 *mac, |
| 1407 | struct station_parameters *params) |
| 1408 | { |
| 1409 | struct ieee80211_local *local = wiphy_priv(wiphy); |
| 1410 | struct sta_info *sta; |
| 1411 | struct ieee80211_sub_if_data *sdata; |
| 1412 | int err; |
| 1413 | |
| 1414 | if (params->vlan) { |
| 1415 | sdata = IEEE80211_DEV_TO_SUB_IF(params->vlan); |
| 1416 | |
| 1417 | if (sdata->vif.type != NL80211_IFTYPE_AP_VLAN && |
| 1418 | sdata->vif.type != NL80211_IFTYPE_AP) |
| 1419 | return -EINVAL; |
| 1420 | } else |
| 1421 | sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 1422 | |
| 1423 | if (ether_addr_equal(mac, sdata->vif.addr)) |
| 1424 | return -EINVAL; |
| 1425 | |
| 1426 | if (is_multicast_ether_addr(mac)) |
| 1427 | return -EINVAL; |
| 1428 | |
| 1429 | if (params->sta_flags_set & BIT(NL80211_STA_FLAG_TDLS_PEER) && |
| 1430 | sdata->vif.type == NL80211_IFTYPE_STATION && |
| 1431 | !sdata->u.mgd.associated) |
| 1432 | return -EINVAL; |
| 1433 | |
| 1434 | sta = sta_info_alloc(sdata, mac, GFP_KERNEL); |
| 1435 | if (!sta) |
| 1436 | return -ENOMEM; |
| 1437 | |
| 1438 | if (params->sta_flags_set & BIT(NL80211_STA_FLAG_TDLS_PEER)) |
| 1439 | sta->sta.tdls = true; |
| 1440 | |
| 1441 | err = sta_apply_parameters(local, sta, params); |
| 1442 | if (err) { |
| 1443 | sta_info_free(local, sta); |
| 1444 | return err; |
| 1445 | } |
| 1446 | |
| 1447 | /* |
| 1448 | * for TDLS and for unassociated station, rate control should be |
| 1449 | * initialized only when rates are known and station is marked |
| 1450 | * authorized/associated |
| 1451 | */ |
| 1452 | if (!test_sta_flag(sta, WLAN_STA_TDLS_PEER) && |
| 1453 | test_sta_flag(sta, WLAN_STA_ASSOC)) |
| 1454 | rate_control_rate_init(sta); |
| 1455 | |
| 1456 | err = sta_info_insert_rcu(sta); |
| 1457 | if (err) { |
| 1458 | rcu_read_unlock(); |
| 1459 | return err; |
| 1460 | } |
| 1461 | |
| 1462 | rcu_read_unlock(); |
| 1463 | |
| 1464 | return 0; |
| 1465 | } |
| 1466 | |
| 1467 | static int ieee80211_del_station(struct wiphy *wiphy, struct net_device *dev, |
| 1468 | struct station_del_parameters *params) |
| 1469 | { |
| 1470 | struct ieee80211_sub_if_data *sdata; |
| 1471 | |
| 1472 | sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 1473 | |
| 1474 | if (params->mac) |
| 1475 | return sta_info_destroy_addr_bss(sdata, params->mac); |
| 1476 | |
| 1477 | sta_info_flush(sdata); |
| 1478 | return 0; |
| 1479 | } |
| 1480 | |
| 1481 | static int ieee80211_change_station(struct wiphy *wiphy, |
| 1482 | struct net_device *dev, const u8 *mac, |
| 1483 | struct station_parameters *params) |
| 1484 | { |
| 1485 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 1486 | struct ieee80211_local *local = wiphy_priv(wiphy); |
| 1487 | struct sta_info *sta; |
| 1488 | struct ieee80211_sub_if_data *vlansdata; |
| 1489 | enum cfg80211_station_type statype; |
| 1490 | int err; |
| 1491 | |
| 1492 | mutex_lock(&local->sta_mtx); |
| 1493 | |
| 1494 | sta = sta_info_get_bss(sdata, mac); |
| 1495 | if (!sta) { |
| 1496 | err = -ENOENT; |
| 1497 | goto out_err; |
| 1498 | } |
| 1499 | |
| 1500 | switch (sdata->vif.type) { |
| 1501 | case NL80211_IFTYPE_MESH_POINT: |
| 1502 | if (sdata->u.mesh.user_mpm) |
| 1503 | statype = CFG80211_STA_MESH_PEER_USER; |
| 1504 | else |
| 1505 | statype = CFG80211_STA_MESH_PEER_KERNEL; |
| 1506 | break; |
| 1507 | case NL80211_IFTYPE_ADHOC: |
| 1508 | statype = CFG80211_STA_IBSS; |
| 1509 | break; |
| 1510 | case NL80211_IFTYPE_STATION: |
| 1511 | if (!test_sta_flag(sta, WLAN_STA_TDLS_PEER)) { |
| 1512 | statype = CFG80211_STA_AP_STA; |
| 1513 | break; |
| 1514 | } |
| 1515 | if (test_sta_flag(sta, WLAN_STA_AUTHORIZED)) |
| 1516 | statype = CFG80211_STA_TDLS_PEER_ACTIVE; |
| 1517 | else |
| 1518 | statype = CFG80211_STA_TDLS_PEER_SETUP; |
| 1519 | break; |
| 1520 | case NL80211_IFTYPE_AP: |
| 1521 | case NL80211_IFTYPE_AP_VLAN: |
| 1522 | if (test_sta_flag(sta, WLAN_STA_ASSOC)) |
| 1523 | statype = CFG80211_STA_AP_CLIENT; |
| 1524 | else |
| 1525 | statype = CFG80211_STA_AP_CLIENT_UNASSOC; |
| 1526 | break; |
| 1527 | default: |
| 1528 | err = -EOPNOTSUPP; |
| 1529 | goto out_err; |
| 1530 | } |
| 1531 | |
| 1532 | err = cfg80211_check_station_change(wiphy, params, statype); |
| 1533 | if (err) |
| 1534 | goto out_err; |
| 1535 | |
| 1536 | if (params->vlan && params->vlan != sta->sdata->dev) { |
| 1537 | vlansdata = IEEE80211_DEV_TO_SUB_IF(params->vlan); |
| 1538 | |
| 1539 | if (params->vlan->ieee80211_ptr->use_4addr) { |
| 1540 | if (vlansdata->u.vlan.sta) { |
| 1541 | err = -EBUSY; |
| 1542 | goto out_err; |
| 1543 | } |
| 1544 | |
| 1545 | rcu_assign_pointer(vlansdata->u.vlan.sta, sta); |
| 1546 | __ieee80211_check_fast_rx_iface(vlansdata); |
| 1547 | } |
| 1548 | |
| 1549 | if (sta->sdata->vif.type == NL80211_IFTYPE_AP_VLAN && |
| 1550 | sta->sdata->u.vlan.sta) |
| 1551 | RCU_INIT_POINTER(sta->sdata->u.vlan.sta, NULL); |
| 1552 | |
| 1553 | if (test_sta_flag(sta, WLAN_STA_AUTHORIZED)) |
| 1554 | ieee80211_vif_dec_num_mcast(sta->sdata); |
| 1555 | |
| 1556 | sta->sdata = vlansdata; |
| 1557 | ieee80211_check_fast_xmit(sta); |
| 1558 | |
| 1559 | if (test_sta_flag(sta, WLAN_STA_AUTHORIZED)) { |
| 1560 | ieee80211_vif_inc_num_mcast(sta->sdata); |
| 1561 | cfg80211_send_layer2_update(sta->sdata->dev, |
| 1562 | sta->sta.addr); |
| 1563 | } |
| 1564 | } |
| 1565 | |
| 1566 | err = sta_apply_parameters(local, sta, params); |
| 1567 | if (err) |
| 1568 | goto out_err; |
| 1569 | |
| 1570 | mutex_unlock(&local->sta_mtx); |
| 1571 | |
| 1572 | if ((sdata->vif.type == NL80211_IFTYPE_AP || |
| 1573 | sdata->vif.type == NL80211_IFTYPE_AP_VLAN) && |
| 1574 | sta->known_smps_mode != sta->sdata->bss->req_smps && |
| 1575 | test_sta_flag(sta, WLAN_STA_AUTHORIZED) && |
| 1576 | sta_info_tx_streams(sta) != 1) { |
| 1577 | ht_dbg(sta->sdata, |
| 1578 | "%pM just authorized and MIMO capable - update SMPS\n", |
| 1579 | sta->sta.addr); |
| 1580 | ieee80211_send_smps_action(sta->sdata, |
| 1581 | sta->sdata->bss->req_smps, |
| 1582 | sta->sta.addr, |
| 1583 | sta->sdata->vif.bss_conf.bssid); |
| 1584 | } |
| 1585 | |
| 1586 | if (sdata->vif.type == NL80211_IFTYPE_STATION && |
| 1587 | params->sta_flags_mask & BIT(NL80211_STA_FLAG_AUTHORIZED)) { |
| 1588 | ieee80211_recalc_ps(local); |
| 1589 | ieee80211_recalc_ps_vif(sdata); |
| 1590 | } |
| 1591 | |
| 1592 | return 0; |
| 1593 | out_err: |
| 1594 | mutex_unlock(&local->sta_mtx); |
| 1595 | return err; |
| 1596 | } |
| 1597 | |
| 1598 | #ifdef CONFIG_MAC80211_MESH |
| 1599 | static int ieee80211_add_mpath(struct wiphy *wiphy, struct net_device *dev, |
| 1600 | const u8 *dst, const u8 *next_hop) |
| 1601 | { |
| 1602 | struct ieee80211_sub_if_data *sdata; |
| 1603 | struct mesh_path *mpath; |
| 1604 | struct sta_info *sta; |
| 1605 | |
| 1606 | sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 1607 | |
| 1608 | rcu_read_lock(); |
| 1609 | sta = sta_info_get(sdata, next_hop); |
| 1610 | if (!sta) { |
| 1611 | rcu_read_unlock(); |
| 1612 | return -ENOENT; |
| 1613 | } |
| 1614 | |
| 1615 | mpath = mesh_path_add(sdata, dst); |
| 1616 | if (IS_ERR(mpath)) { |
| 1617 | rcu_read_unlock(); |
| 1618 | return PTR_ERR(mpath); |
| 1619 | } |
| 1620 | |
| 1621 | mesh_path_fix_nexthop(mpath, sta); |
| 1622 | |
| 1623 | rcu_read_unlock(); |
| 1624 | return 0; |
| 1625 | } |
| 1626 | |
| 1627 | static int ieee80211_del_mpath(struct wiphy *wiphy, struct net_device *dev, |
| 1628 | const u8 *dst) |
| 1629 | { |
| 1630 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 1631 | |
| 1632 | if (dst) |
| 1633 | return mesh_path_del(sdata, dst); |
| 1634 | |
| 1635 | mesh_path_flush_by_iface(sdata); |
| 1636 | return 0; |
| 1637 | } |
| 1638 | |
| 1639 | static int ieee80211_change_mpath(struct wiphy *wiphy, struct net_device *dev, |
| 1640 | const u8 *dst, const u8 *next_hop) |
| 1641 | { |
| 1642 | struct ieee80211_sub_if_data *sdata; |
| 1643 | struct mesh_path *mpath; |
| 1644 | struct sta_info *sta; |
| 1645 | |
| 1646 | sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 1647 | |
| 1648 | rcu_read_lock(); |
| 1649 | |
| 1650 | sta = sta_info_get(sdata, next_hop); |
| 1651 | if (!sta) { |
| 1652 | rcu_read_unlock(); |
| 1653 | return -ENOENT; |
| 1654 | } |
| 1655 | |
| 1656 | mpath = mesh_path_lookup(sdata, dst); |
| 1657 | if (!mpath) { |
| 1658 | rcu_read_unlock(); |
| 1659 | return -ENOENT; |
| 1660 | } |
| 1661 | |
| 1662 | mesh_path_fix_nexthop(mpath, sta); |
| 1663 | |
| 1664 | rcu_read_unlock(); |
| 1665 | return 0; |
| 1666 | } |
| 1667 | |
| 1668 | static void mpath_set_pinfo(struct mesh_path *mpath, u8 *next_hop, |
| 1669 | struct mpath_info *pinfo) |
| 1670 | { |
| 1671 | struct sta_info *next_hop_sta = rcu_dereference(mpath->next_hop); |
| 1672 | |
| 1673 | if (next_hop_sta) |
| 1674 | memcpy(next_hop, next_hop_sta->sta.addr, ETH_ALEN); |
| 1675 | else |
| 1676 | eth_zero_addr(next_hop); |
| 1677 | |
| 1678 | memset(pinfo, 0, sizeof(*pinfo)); |
| 1679 | |
| 1680 | pinfo->generation = mpath->sdata->u.mesh.mesh_paths_generation; |
| 1681 | |
| 1682 | pinfo->filled = MPATH_INFO_FRAME_QLEN | |
| 1683 | MPATH_INFO_SN | |
| 1684 | MPATH_INFO_METRIC | |
| 1685 | MPATH_INFO_EXPTIME | |
| 1686 | MPATH_INFO_DISCOVERY_TIMEOUT | |
| 1687 | MPATH_INFO_DISCOVERY_RETRIES | |
| 1688 | MPATH_INFO_FLAGS; |
| 1689 | |
| 1690 | pinfo->frame_qlen = mpath->frame_queue.qlen; |
| 1691 | pinfo->sn = mpath->sn; |
| 1692 | pinfo->metric = mpath->metric; |
| 1693 | if (time_before(jiffies, mpath->exp_time)) |
| 1694 | pinfo->exptime = jiffies_to_msecs(mpath->exp_time - jiffies); |
| 1695 | pinfo->discovery_timeout = |
| 1696 | jiffies_to_msecs(mpath->discovery_timeout); |
| 1697 | pinfo->discovery_retries = mpath->discovery_retries; |
| 1698 | if (mpath->flags & MESH_PATH_ACTIVE) |
| 1699 | pinfo->flags |= NL80211_MPATH_FLAG_ACTIVE; |
| 1700 | if (mpath->flags & MESH_PATH_RESOLVING) |
| 1701 | pinfo->flags |= NL80211_MPATH_FLAG_RESOLVING; |
| 1702 | if (mpath->flags & MESH_PATH_SN_VALID) |
| 1703 | pinfo->flags |= NL80211_MPATH_FLAG_SN_VALID; |
| 1704 | if (mpath->flags & MESH_PATH_FIXED) |
| 1705 | pinfo->flags |= NL80211_MPATH_FLAG_FIXED; |
| 1706 | if (mpath->flags & MESH_PATH_RESOLVED) |
| 1707 | pinfo->flags |= NL80211_MPATH_FLAG_RESOLVED; |
| 1708 | } |
| 1709 | |
| 1710 | static int ieee80211_get_mpath(struct wiphy *wiphy, struct net_device *dev, |
| 1711 | u8 *dst, u8 *next_hop, struct mpath_info *pinfo) |
| 1712 | |
| 1713 | { |
| 1714 | struct ieee80211_sub_if_data *sdata; |
| 1715 | struct mesh_path *mpath; |
| 1716 | |
| 1717 | sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 1718 | |
| 1719 | rcu_read_lock(); |
| 1720 | mpath = mesh_path_lookup(sdata, dst); |
| 1721 | if (!mpath) { |
| 1722 | rcu_read_unlock(); |
| 1723 | return -ENOENT; |
| 1724 | } |
| 1725 | memcpy(dst, mpath->dst, ETH_ALEN); |
| 1726 | mpath_set_pinfo(mpath, next_hop, pinfo); |
| 1727 | rcu_read_unlock(); |
| 1728 | return 0; |
| 1729 | } |
| 1730 | |
| 1731 | static int ieee80211_dump_mpath(struct wiphy *wiphy, struct net_device *dev, |
| 1732 | int idx, u8 *dst, u8 *next_hop, |
| 1733 | struct mpath_info *pinfo) |
| 1734 | { |
| 1735 | struct ieee80211_sub_if_data *sdata; |
| 1736 | struct mesh_path *mpath; |
| 1737 | |
| 1738 | sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 1739 | |
| 1740 | rcu_read_lock(); |
| 1741 | mpath = mesh_path_lookup_by_idx(sdata, idx); |
| 1742 | if (!mpath) { |
| 1743 | rcu_read_unlock(); |
| 1744 | return -ENOENT; |
| 1745 | } |
| 1746 | memcpy(dst, mpath->dst, ETH_ALEN); |
| 1747 | mpath_set_pinfo(mpath, next_hop, pinfo); |
| 1748 | rcu_read_unlock(); |
| 1749 | return 0; |
| 1750 | } |
| 1751 | |
| 1752 | static void mpp_set_pinfo(struct mesh_path *mpath, u8 *mpp, |
| 1753 | struct mpath_info *pinfo) |
| 1754 | { |
| 1755 | memset(pinfo, 0, sizeof(*pinfo)); |
| 1756 | memcpy(mpp, mpath->mpp, ETH_ALEN); |
| 1757 | |
| 1758 | pinfo->generation = mpath->sdata->u.mesh.mpp_paths_generation; |
| 1759 | } |
| 1760 | |
| 1761 | static int ieee80211_get_mpp(struct wiphy *wiphy, struct net_device *dev, |
| 1762 | u8 *dst, u8 *mpp, struct mpath_info *pinfo) |
| 1763 | |
| 1764 | { |
| 1765 | struct ieee80211_sub_if_data *sdata; |
| 1766 | struct mesh_path *mpath; |
| 1767 | |
| 1768 | sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 1769 | |
| 1770 | rcu_read_lock(); |
| 1771 | mpath = mpp_path_lookup(sdata, dst); |
| 1772 | if (!mpath) { |
| 1773 | rcu_read_unlock(); |
| 1774 | return -ENOENT; |
| 1775 | } |
| 1776 | memcpy(dst, mpath->dst, ETH_ALEN); |
| 1777 | mpp_set_pinfo(mpath, mpp, pinfo); |
| 1778 | rcu_read_unlock(); |
| 1779 | return 0; |
| 1780 | } |
| 1781 | |
| 1782 | static int ieee80211_dump_mpp(struct wiphy *wiphy, struct net_device *dev, |
| 1783 | int idx, u8 *dst, u8 *mpp, |
| 1784 | struct mpath_info *pinfo) |
| 1785 | { |
| 1786 | struct ieee80211_sub_if_data *sdata; |
| 1787 | struct mesh_path *mpath; |
| 1788 | |
| 1789 | sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 1790 | |
| 1791 | rcu_read_lock(); |
| 1792 | mpath = mpp_path_lookup_by_idx(sdata, idx); |
| 1793 | if (!mpath) { |
| 1794 | rcu_read_unlock(); |
| 1795 | return -ENOENT; |
| 1796 | } |
| 1797 | memcpy(dst, mpath->dst, ETH_ALEN); |
| 1798 | mpp_set_pinfo(mpath, mpp, pinfo); |
| 1799 | rcu_read_unlock(); |
| 1800 | return 0; |
| 1801 | } |
| 1802 | |
| 1803 | static int ieee80211_get_mesh_config(struct wiphy *wiphy, |
| 1804 | struct net_device *dev, |
| 1805 | struct mesh_config *conf) |
| 1806 | { |
| 1807 | struct ieee80211_sub_if_data *sdata; |
| 1808 | sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 1809 | |
| 1810 | memcpy(conf, &(sdata->u.mesh.mshcfg), sizeof(struct mesh_config)); |
| 1811 | return 0; |
| 1812 | } |
| 1813 | |
| 1814 | static inline bool _chg_mesh_attr(enum nl80211_meshconf_params parm, u32 mask) |
| 1815 | { |
| 1816 | return (mask >> (parm-1)) & 0x1; |
| 1817 | } |
| 1818 | |
| 1819 | static int copy_mesh_setup(struct ieee80211_if_mesh *ifmsh, |
| 1820 | const struct mesh_setup *setup) |
| 1821 | { |
| 1822 | u8 *new_ie; |
| 1823 | const u8 *old_ie; |
| 1824 | struct ieee80211_sub_if_data *sdata = container_of(ifmsh, |
| 1825 | struct ieee80211_sub_if_data, u.mesh); |
| 1826 | |
| 1827 | /* allocate information elements */ |
| 1828 | new_ie = NULL; |
| 1829 | old_ie = ifmsh->ie; |
| 1830 | |
| 1831 | if (setup->ie_len) { |
| 1832 | new_ie = kmemdup(setup->ie, setup->ie_len, |
| 1833 | GFP_KERNEL); |
| 1834 | if (!new_ie) |
| 1835 | return -ENOMEM; |
| 1836 | } |
| 1837 | ifmsh->ie_len = setup->ie_len; |
| 1838 | ifmsh->ie = new_ie; |
| 1839 | kfree(old_ie); |
| 1840 | |
| 1841 | /* now copy the rest of the setup parameters */ |
| 1842 | ifmsh->mesh_id_len = setup->mesh_id_len; |
| 1843 | memcpy(ifmsh->mesh_id, setup->mesh_id, ifmsh->mesh_id_len); |
| 1844 | ifmsh->mesh_sp_id = setup->sync_method; |
| 1845 | ifmsh->mesh_pp_id = setup->path_sel_proto; |
| 1846 | ifmsh->mesh_pm_id = setup->path_metric; |
| 1847 | ifmsh->user_mpm = setup->user_mpm; |
| 1848 | ifmsh->mesh_auth_id = setup->auth_id; |
| 1849 | ifmsh->security = IEEE80211_MESH_SEC_NONE; |
| 1850 | ifmsh->userspace_handles_dfs = setup->userspace_handles_dfs; |
| 1851 | if (setup->is_authenticated) |
| 1852 | ifmsh->security |= IEEE80211_MESH_SEC_AUTHED; |
| 1853 | if (setup->is_secure) |
| 1854 | ifmsh->security |= IEEE80211_MESH_SEC_SECURED; |
| 1855 | |
| 1856 | /* mcast rate setting in Mesh Node */ |
| 1857 | memcpy(sdata->vif.bss_conf.mcast_rate, setup->mcast_rate, |
| 1858 | sizeof(setup->mcast_rate)); |
| 1859 | sdata->vif.bss_conf.basic_rates = setup->basic_rates; |
| 1860 | |
| 1861 | sdata->vif.bss_conf.beacon_int = setup->beacon_interval; |
| 1862 | sdata->vif.bss_conf.dtim_period = setup->dtim_period; |
| 1863 | |
| 1864 | return 0; |
| 1865 | } |
| 1866 | |
| 1867 | static int ieee80211_update_mesh_config(struct wiphy *wiphy, |
| 1868 | struct net_device *dev, u32 mask, |
| 1869 | const struct mesh_config *nconf) |
| 1870 | { |
| 1871 | struct mesh_config *conf; |
| 1872 | struct ieee80211_sub_if_data *sdata; |
| 1873 | struct ieee80211_if_mesh *ifmsh; |
| 1874 | |
| 1875 | sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 1876 | ifmsh = &sdata->u.mesh; |
| 1877 | |
| 1878 | /* Set the config options which we are interested in setting */ |
| 1879 | conf = &(sdata->u.mesh.mshcfg); |
| 1880 | if (_chg_mesh_attr(NL80211_MESHCONF_RETRY_TIMEOUT, mask)) |
| 1881 | conf->dot11MeshRetryTimeout = nconf->dot11MeshRetryTimeout; |
| 1882 | if (_chg_mesh_attr(NL80211_MESHCONF_CONFIRM_TIMEOUT, mask)) |
| 1883 | conf->dot11MeshConfirmTimeout = nconf->dot11MeshConfirmTimeout; |
| 1884 | if (_chg_mesh_attr(NL80211_MESHCONF_HOLDING_TIMEOUT, mask)) |
| 1885 | conf->dot11MeshHoldingTimeout = nconf->dot11MeshHoldingTimeout; |
| 1886 | if (_chg_mesh_attr(NL80211_MESHCONF_MAX_PEER_LINKS, mask)) |
| 1887 | conf->dot11MeshMaxPeerLinks = nconf->dot11MeshMaxPeerLinks; |
| 1888 | if (_chg_mesh_attr(NL80211_MESHCONF_MAX_RETRIES, mask)) |
| 1889 | conf->dot11MeshMaxRetries = nconf->dot11MeshMaxRetries; |
| 1890 | if (_chg_mesh_attr(NL80211_MESHCONF_TTL, mask)) |
| 1891 | conf->dot11MeshTTL = nconf->dot11MeshTTL; |
| 1892 | if (_chg_mesh_attr(NL80211_MESHCONF_ELEMENT_TTL, mask)) |
| 1893 | conf->element_ttl = nconf->element_ttl; |
| 1894 | if (_chg_mesh_attr(NL80211_MESHCONF_AUTO_OPEN_PLINKS, mask)) { |
| 1895 | if (ifmsh->user_mpm) |
| 1896 | return -EBUSY; |
| 1897 | conf->auto_open_plinks = nconf->auto_open_plinks; |
| 1898 | } |
| 1899 | if (_chg_mesh_attr(NL80211_MESHCONF_SYNC_OFFSET_MAX_NEIGHBOR, mask)) |
| 1900 | conf->dot11MeshNbrOffsetMaxNeighbor = |
| 1901 | nconf->dot11MeshNbrOffsetMaxNeighbor; |
| 1902 | if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES, mask)) |
| 1903 | conf->dot11MeshHWMPmaxPREQretries = |
| 1904 | nconf->dot11MeshHWMPmaxPREQretries; |
| 1905 | if (_chg_mesh_attr(NL80211_MESHCONF_PATH_REFRESH_TIME, mask)) |
| 1906 | conf->path_refresh_time = nconf->path_refresh_time; |
| 1907 | if (_chg_mesh_attr(NL80211_MESHCONF_MIN_DISCOVERY_TIMEOUT, mask)) |
| 1908 | conf->min_discovery_timeout = nconf->min_discovery_timeout; |
| 1909 | if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_ACTIVE_PATH_TIMEOUT, mask)) |
| 1910 | conf->dot11MeshHWMPactivePathTimeout = |
| 1911 | nconf->dot11MeshHWMPactivePathTimeout; |
| 1912 | if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_PREQ_MIN_INTERVAL, mask)) |
| 1913 | conf->dot11MeshHWMPpreqMinInterval = |
| 1914 | nconf->dot11MeshHWMPpreqMinInterval; |
| 1915 | if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_PERR_MIN_INTERVAL, mask)) |
| 1916 | conf->dot11MeshHWMPperrMinInterval = |
| 1917 | nconf->dot11MeshHWMPperrMinInterval; |
| 1918 | if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME, |
| 1919 | mask)) |
| 1920 | conf->dot11MeshHWMPnetDiameterTraversalTime = |
| 1921 | nconf->dot11MeshHWMPnetDiameterTraversalTime; |
| 1922 | if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_ROOTMODE, mask)) { |
| 1923 | conf->dot11MeshHWMPRootMode = nconf->dot11MeshHWMPRootMode; |
| 1924 | ieee80211_mesh_root_setup(ifmsh); |
| 1925 | } |
| 1926 | if (_chg_mesh_attr(NL80211_MESHCONF_GATE_ANNOUNCEMENTS, mask)) { |
| 1927 | /* our current gate announcement implementation rides on root |
| 1928 | * announcements, so require this ifmsh to also be a root node |
| 1929 | * */ |
| 1930 | if (nconf->dot11MeshGateAnnouncementProtocol && |
| 1931 | !(conf->dot11MeshHWMPRootMode > IEEE80211_ROOTMODE_ROOT)) { |
| 1932 | conf->dot11MeshHWMPRootMode = IEEE80211_PROACTIVE_RANN; |
| 1933 | ieee80211_mesh_root_setup(ifmsh); |
| 1934 | } |
| 1935 | conf->dot11MeshGateAnnouncementProtocol = |
| 1936 | nconf->dot11MeshGateAnnouncementProtocol; |
| 1937 | } |
| 1938 | if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_RANN_INTERVAL, mask)) |
| 1939 | conf->dot11MeshHWMPRannInterval = |
| 1940 | nconf->dot11MeshHWMPRannInterval; |
| 1941 | if (_chg_mesh_attr(NL80211_MESHCONF_FORWARDING, mask)) |
| 1942 | conf->dot11MeshForwarding = nconf->dot11MeshForwarding; |
| 1943 | if (_chg_mesh_attr(NL80211_MESHCONF_RSSI_THRESHOLD, mask)) { |
| 1944 | /* our RSSI threshold implementation is supported only for |
| 1945 | * devices that report signal in dBm. |
| 1946 | */ |
| 1947 | if (!ieee80211_hw_check(&sdata->local->hw, SIGNAL_DBM)) |
| 1948 | return -ENOTSUPP; |
| 1949 | conf->rssi_threshold = nconf->rssi_threshold; |
| 1950 | } |
| 1951 | if (_chg_mesh_attr(NL80211_MESHCONF_HT_OPMODE, mask)) { |
| 1952 | conf->ht_opmode = nconf->ht_opmode; |
| 1953 | sdata->vif.bss_conf.ht_operation_mode = nconf->ht_opmode; |
| 1954 | ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_HT); |
| 1955 | } |
| 1956 | if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_PATH_TO_ROOT_TIMEOUT, mask)) |
| 1957 | conf->dot11MeshHWMPactivePathToRootTimeout = |
| 1958 | nconf->dot11MeshHWMPactivePathToRootTimeout; |
| 1959 | if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_ROOT_INTERVAL, mask)) |
| 1960 | conf->dot11MeshHWMProotInterval = |
| 1961 | nconf->dot11MeshHWMProotInterval; |
| 1962 | if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_CONFIRMATION_INTERVAL, mask)) |
| 1963 | conf->dot11MeshHWMPconfirmationInterval = |
| 1964 | nconf->dot11MeshHWMPconfirmationInterval; |
| 1965 | if (_chg_mesh_attr(NL80211_MESHCONF_POWER_MODE, mask)) { |
| 1966 | conf->power_mode = nconf->power_mode; |
| 1967 | ieee80211_mps_local_status_update(sdata); |
| 1968 | } |
| 1969 | if (_chg_mesh_attr(NL80211_MESHCONF_AWAKE_WINDOW, mask)) |
| 1970 | conf->dot11MeshAwakeWindowDuration = |
| 1971 | nconf->dot11MeshAwakeWindowDuration; |
| 1972 | if (_chg_mesh_attr(NL80211_MESHCONF_PLINK_TIMEOUT, mask)) |
| 1973 | conf->plink_timeout = nconf->plink_timeout; |
| 1974 | ieee80211_mbss_info_change_notify(sdata, BSS_CHANGED_BEACON); |
| 1975 | return 0; |
| 1976 | } |
| 1977 | |
| 1978 | static int ieee80211_join_mesh(struct wiphy *wiphy, struct net_device *dev, |
| 1979 | const struct mesh_config *conf, |
| 1980 | const struct mesh_setup *setup) |
| 1981 | { |
| 1982 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 1983 | struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh; |
| 1984 | int err; |
| 1985 | |
| 1986 | memcpy(&ifmsh->mshcfg, conf, sizeof(struct mesh_config)); |
| 1987 | err = copy_mesh_setup(ifmsh, setup); |
| 1988 | if (err) |
| 1989 | return err; |
| 1990 | |
| 1991 | sdata->control_port_over_nl80211 = setup->control_port_over_nl80211; |
| 1992 | |
| 1993 | /* can mesh use other SMPS modes? */ |
| 1994 | sdata->smps_mode = IEEE80211_SMPS_OFF; |
| 1995 | sdata->needed_rx_chains = sdata->local->rx_chains; |
| 1996 | |
| 1997 | mutex_lock(&sdata->local->mtx); |
| 1998 | err = ieee80211_vif_use_channel(sdata, &setup->chandef, |
| 1999 | IEEE80211_CHANCTX_SHARED); |
| 2000 | mutex_unlock(&sdata->local->mtx); |
| 2001 | if (err) |
| 2002 | return err; |
| 2003 | |
| 2004 | return ieee80211_start_mesh(sdata); |
| 2005 | } |
| 2006 | |
| 2007 | static int ieee80211_leave_mesh(struct wiphy *wiphy, struct net_device *dev) |
| 2008 | { |
| 2009 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 2010 | |
| 2011 | ieee80211_stop_mesh(sdata); |
| 2012 | mutex_lock(&sdata->local->mtx); |
| 2013 | ieee80211_vif_release_channel(sdata); |
| 2014 | mutex_unlock(&sdata->local->mtx); |
| 2015 | |
| 2016 | return 0; |
| 2017 | } |
| 2018 | #endif |
| 2019 | |
| 2020 | static int ieee80211_change_bss(struct wiphy *wiphy, |
| 2021 | struct net_device *dev, |
| 2022 | struct bss_parameters *params) |
| 2023 | { |
| 2024 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 2025 | struct ieee80211_supported_band *sband; |
| 2026 | u32 changed = 0; |
| 2027 | |
| 2028 | if (!sdata_dereference(sdata->u.ap.beacon, sdata)) |
| 2029 | return -ENOENT; |
| 2030 | |
| 2031 | sband = ieee80211_get_sband(sdata); |
| 2032 | if (!sband) |
| 2033 | return -EINVAL; |
| 2034 | |
| 2035 | if (params->use_cts_prot >= 0) { |
| 2036 | sdata->vif.bss_conf.use_cts_prot = params->use_cts_prot; |
| 2037 | changed |= BSS_CHANGED_ERP_CTS_PROT; |
| 2038 | } |
| 2039 | if (params->use_short_preamble >= 0) { |
| 2040 | sdata->vif.bss_conf.use_short_preamble = |
| 2041 | params->use_short_preamble; |
| 2042 | changed |= BSS_CHANGED_ERP_PREAMBLE; |
| 2043 | } |
| 2044 | |
| 2045 | if (!sdata->vif.bss_conf.use_short_slot && |
| 2046 | sband->band == NL80211_BAND_5GHZ) { |
| 2047 | sdata->vif.bss_conf.use_short_slot = true; |
| 2048 | changed |= BSS_CHANGED_ERP_SLOT; |
| 2049 | } |
| 2050 | |
| 2051 | if (params->use_short_slot_time >= 0) { |
| 2052 | sdata->vif.bss_conf.use_short_slot = |
| 2053 | params->use_short_slot_time; |
| 2054 | changed |= BSS_CHANGED_ERP_SLOT; |
| 2055 | } |
| 2056 | |
| 2057 | if (params->basic_rates) { |
| 2058 | ieee80211_parse_bitrates(&sdata->vif.bss_conf.chandef, |
| 2059 | wiphy->bands[sband->band], |
| 2060 | params->basic_rates, |
| 2061 | params->basic_rates_len, |
| 2062 | &sdata->vif.bss_conf.basic_rates); |
| 2063 | changed |= BSS_CHANGED_BASIC_RATES; |
| 2064 | ieee80211_check_rate_mask(sdata); |
| 2065 | } |
| 2066 | |
| 2067 | if (params->ap_isolate >= 0) { |
| 2068 | if (params->ap_isolate) |
| 2069 | sdata->flags |= IEEE80211_SDATA_DONT_BRIDGE_PACKETS; |
| 2070 | else |
| 2071 | sdata->flags &= ~IEEE80211_SDATA_DONT_BRIDGE_PACKETS; |
| 2072 | ieee80211_check_fast_rx_iface(sdata); |
| 2073 | } |
| 2074 | |
| 2075 | if (params->ht_opmode >= 0) { |
| 2076 | sdata->vif.bss_conf.ht_operation_mode = |
| 2077 | (u16) params->ht_opmode; |
| 2078 | changed |= BSS_CHANGED_HT; |
| 2079 | } |
| 2080 | |
| 2081 | if (params->p2p_ctwindow >= 0) { |
| 2082 | sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow &= |
| 2083 | ~IEEE80211_P2P_OPPPS_CTWINDOW_MASK; |
| 2084 | sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow |= |
| 2085 | params->p2p_ctwindow & IEEE80211_P2P_OPPPS_CTWINDOW_MASK; |
| 2086 | changed |= BSS_CHANGED_P2P_PS; |
| 2087 | } |
| 2088 | |
| 2089 | if (params->p2p_opp_ps > 0) { |
| 2090 | sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow |= |
| 2091 | IEEE80211_P2P_OPPPS_ENABLE_BIT; |
| 2092 | changed |= BSS_CHANGED_P2P_PS; |
| 2093 | } else if (params->p2p_opp_ps == 0) { |
| 2094 | sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow &= |
| 2095 | ~IEEE80211_P2P_OPPPS_ENABLE_BIT; |
| 2096 | changed |= BSS_CHANGED_P2P_PS; |
| 2097 | } |
| 2098 | |
| 2099 | ieee80211_bss_info_change_notify(sdata, changed); |
| 2100 | |
| 2101 | return 0; |
| 2102 | } |
| 2103 | |
| 2104 | static int ieee80211_set_txq_params(struct wiphy *wiphy, |
| 2105 | struct net_device *dev, |
| 2106 | struct ieee80211_txq_params *params) |
| 2107 | { |
| 2108 | struct ieee80211_local *local = wiphy_priv(wiphy); |
| 2109 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 2110 | struct ieee80211_tx_queue_params p; |
| 2111 | |
| 2112 | if (!local->ops->conf_tx) |
| 2113 | return -EOPNOTSUPP; |
| 2114 | |
| 2115 | if (local->hw.queues < IEEE80211_NUM_ACS) |
| 2116 | return -EOPNOTSUPP; |
| 2117 | |
| 2118 | memset(&p, 0, sizeof(p)); |
| 2119 | p.aifs = params->aifs; |
| 2120 | p.cw_max = params->cwmax; |
| 2121 | p.cw_min = params->cwmin; |
| 2122 | p.txop = params->txop; |
| 2123 | |
| 2124 | /* |
| 2125 | * Setting tx queue params disables u-apsd because it's only |
| 2126 | * called in master mode. |
| 2127 | */ |
| 2128 | p.uapsd = false; |
| 2129 | |
| 2130 | ieee80211_regulatory_limit_wmm_params(sdata, &p, params->ac); |
| 2131 | |
| 2132 | sdata->tx_conf[params->ac] = p; |
| 2133 | if (drv_conf_tx(local, sdata, params->ac, &p)) { |
| 2134 | wiphy_debug(local->hw.wiphy, |
| 2135 | "failed to set TX queue parameters for AC %d\n", |
| 2136 | params->ac); |
| 2137 | return -EINVAL; |
| 2138 | } |
| 2139 | |
| 2140 | ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_QOS); |
| 2141 | |
| 2142 | return 0; |
| 2143 | } |
| 2144 | |
| 2145 | #ifdef CONFIG_PM |
| 2146 | static int ieee80211_suspend(struct wiphy *wiphy, |
| 2147 | struct cfg80211_wowlan *wowlan) |
| 2148 | { |
| 2149 | return __ieee80211_suspend(wiphy_priv(wiphy), wowlan); |
| 2150 | } |
| 2151 | |
| 2152 | static int ieee80211_resume(struct wiphy *wiphy) |
| 2153 | { |
| 2154 | return __ieee80211_resume(wiphy_priv(wiphy)); |
| 2155 | } |
| 2156 | #else |
| 2157 | #define ieee80211_suspend NULL |
| 2158 | #define ieee80211_resume NULL |
| 2159 | #endif |
| 2160 | |
| 2161 | static int ieee80211_scan(struct wiphy *wiphy, |
| 2162 | struct cfg80211_scan_request *req) |
| 2163 | { |
| 2164 | struct ieee80211_sub_if_data *sdata; |
| 2165 | |
| 2166 | sdata = IEEE80211_WDEV_TO_SUB_IF(req->wdev); |
| 2167 | |
| 2168 | switch (ieee80211_vif_type_p2p(&sdata->vif)) { |
| 2169 | case NL80211_IFTYPE_STATION: |
| 2170 | case NL80211_IFTYPE_ADHOC: |
| 2171 | case NL80211_IFTYPE_MESH_POINT: |
| 2172 | case NL80211_IFTYPE_P2P_CLIENT: |
| 2173 | case NL80211_IFTYPE_P2P_DEVICE: |
| 2174 | break; |
| 2175 | case NL80211_IFTYPE_P2P_GO: |
| 2176 | if (sdata->local->ops->hw_scan) |
| 2177 | break; |
| 2178 | /* |
| 2179 | * FIXME: implement NoA while scanning in software, |
| 2180 | * for now fall through to allow scanning only when |
| 2181 | * beaconing hasn't been configured yet |
| 2182 | */ |
| 2183 | /* fall through */ |
| 2184 | case NL80211_IFTYPE_AP: |
| 2185 | /* |
| 2186 | * If the scan has been forced (and the driver supports |
| 2187 | * forcing), don't care about being beaconing already. |
| 2188 | * This will create problems to the attached stations (e.g. all |
| 2189 | * the frames sent while scanning on other channel will be |
| 2190 | * lost) |
| 2191 | */ |
| 2192 | if (sdata->u.ap.beacon && |
| 2193 | (!(wiphy->features & NL80211_FEATURE_AP_SCAN) || |
| 2194 | !(req->flags & NL80211_SCAN_FLAG_AP))) |
| 2195 | return -EOPNOTSUPP; |
| 2196 | break; |
| 2197 | case NL80211_IFTYPE_NAN: |
| 2198 | default: |
| 2199 | return -EOPNOTSUPP; |
| 2200 | } |
| 2201 | |
| 2202 | return ieee80211_request_scan(sdata, req); |
| 2203 | } |
| 2204 | |
| 2205 | static void ieee80211_abort_scan(struct wiphy *wiphy, struct wireless_dev *wdev) |
| 2206 | { |
| 2207 | ieee80211_scan_cancel(wiphy_priv(wiphy)); |
| 2208 | } |
| 2209 | |
| 2210 | static int |
| 2211 | ieee80211_sched_scan_start(struct wiphy *wiphy, |
| 2212 | struct net_device *dev, |
| 2213 | struct cfg80211_sched_scan_request *req) |
| 2214 | { |
| 2215 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 2216 | |
| 2217 | if (!sdata->local->ops->sched_scan_start) |
| 2218 | return -EOPNOTSUPP; |
| 2219 | |
| 2220 | return ieee80211_request_sched_scan_start(sdata, req); |
| 2221 | } |
| 2222 | |
| 2223 | static int |
| 2224 | ieee80211_sched_scan_stop(struct wiphy *wiphy, struct net_device *dev, |
| 2225 | u64 reqid) |
| 2226 | { |
| 2227 | struct ieee80211_local *local = wiphy_priv(wiphy); |
| 2228 | |
| 2229 | if (!local->ops->sched_scan_stop) |
| 2230 | return -EOPNOTSUPP; |
| 2231 | |
| 2232 | return ieee80211_request_sched_scan_stop(local); |
| 2233 | } |
| 2234 | |
| 2235 | static int ieee80211_auth(struct wiphy *wiphy, struct net_device *dev, |
| 2236 | struct cfg80211_auth_request *req) |
| 2237 | { |
| 2238 | return ieee80211_mgd_auth(IEEE80211_DEV_TO_SUB_IF(dev), req); |
| 2239 | } |
| 2240 | |
| 2241 | static int ieee80211_assoc(struct wiphy *wiphy, struct net_device *dev, |
| 2242 | struct cfg80211_assoc_request *req) |
| 2243 | { |
| 2244 | return ieee80211_mgd_assoc(IEEE80211_DEV_TO_SUB_IF(dev), req); |
| 2245 | } |
| 2246 | |
| 2247 | static int ieee80211_deauth(struct wiphy *wiphy, struct net_device *dev, |
| 2248 | struct cfg80211_deauth_request *req) |
| 2249 | { |
| 2250 | return ieee80211_mgd_deauth(IEEE80211_DEV_TO_SUB_IF(dev), req); |
| 2251 | } |
| 2252 | |
| 2253 | static int ieee80211_disassoc(struct wiphy *wiphy, struct net_device *dev, |
| 2254 | struct cfg80211_disassoc_request *req) |
| 2255 | { |
| 2256 | return ieee80211_mgd_disassoc(IEEE80211_DEV_TO_SUB_IF(dev), req); |
| 2257 | } |
| 2258 | |
| 2259 | static int ieee80211_join_ibss(struct wiphy *wiphy, struct net_device *dev, |
| 2260 | struct cfg80211_ibss_params *params) |
| 2261 | { |
| 2262 | return ieee80211_ibss_join(IEEE80211_DEV_TO_SUB_IF(dev), params); |
| 2263 | } |
| 2264 | |
| 2265 | static int ieee80211_leave_ibss(struct wiphy *wiphy, struct net_device *dev) |
| 2266 | { |
| 2267 | return ieee80211_ibss_leave(IEEE80211_DEV_TO_SUB_IF(dev)); |
| 2268 | } |
| 2269 | |
| 2270 | static int ieee80211_join_ocb(struct wiphy *wiphy, struct net_device *dev, |
| 2271 | struct ocb_setup *setup) |
| 2272 | { |
| 2273 | return ieee80211_ocb_join(IEEE80211_DEV_TO_SUB_IF(dev), setup); |
| 2274 | } |
| 2275 | |
| 2276 | static int ieee80211_leave_ocb(struct wiphy *wiphy, struct net_device *dev) |
| 2277 | { |
| 2278 | return ieee80211_ocb_leave(IEEE80211_DEV_TO_SUB_IF(dev)); |
| 2279 | } |
| 2280 | |
| 2281 | static int ieee80211_set_mcast_rate(struct wiphy *wiphy, struct net_device *dev, |
| 2282 | int rate[NUM_NL80211_BANDS]) |
| 2283 | { |
| 2284 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 2285 | |
| 2286 | memcpy(sdata->vif.bss_conf.mcast_rate, rate, |
| 2287 | sizeof(int) * NUM_NL80211_BANDS); |
| 2288 | |
| 2289 | ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_MCAST_RATE); |
| 2290 | |
| 2291 | return 0; |
| 2292 | } |
| 2293 | |
| 2294 | static int ieee80211_set_wiphy_params(struct wiphy *wiphy, u32 changed) |
| 2295 | { |
| 2296 | struct ieee80211_local *local = wiphy_priv(wiphy); |
| 2297 | int err; |
| 2298 | |
| 2299 | if (changed & WIPHY_PARAM_FRAG_THRESHOLD) { |
| 2300 | ieee80211_check_fast_xmit_all(local); |
| 2301 | |
| 2302 | err = drv_set_frag_threshold(local, wiphy->frag_threshold); |
| 2303 | |
| 2304 | if (err) { |
| 2305 | ieee80211_check_fast_xmit_all(local); |
| 2306 | return err; |
| 2307 | } |
| 2308 | } |
| 2309 | |
| 2310 | if ((changed & WIPHY_PARAM_COVERAGE_CLASS) || |
| 2311 | (changed & WIPHY_PARAM_DYN_ACK)) { |
| 2312 | s16 coverage_class; |
| 2313 | |
| 2314 | coverage_class = changed & WIPHY_PARAM_COVERAGE_CLASS ? |
| 2315 | wiphy->coverage_class : -1; |
| 2316 | err = drv_set_coverage_class(local, coverage_class); |
| 2317 | |
| 2318 | if (err) |
| 2319 | return err; |
| 2320 | } |
| 2321 | |
| 2322 | if (changed & WIPHY_PARAM_RTS_THRESHOLD) { |
| 2323 | err = drv_set_rts_threshold(local, wiphy->rts_threshold); |
| 2324 | |
| 2325 | if (err) |
| 2326 | return err; |
| 2327 | } |
| 2328 | |
| 2329 | if (changed & WIPHY_PARAM_RETRY_SHORT) { |
| 2330 | if (wiphy->retry_short > IEEE80211_MAX_TX_RETRY) |
| 2331 | return -EINVAL; |
| 2332 | local->hw.conf.short_frame_max_tx_count = wiphy->retry_short; |
| 2333 | } |
| 2334 | if (changed & WIPHY_PARAM_RETRY_LONG) { |
| 2335 | if (wiphy->retry_long > IEEE80211_MAX_TX_RETRY) |
| 2336 | return -EINVAL; |
| 2337 | local->hw.conf.long_frame_max_tx_count = wiphy->retry_long; |
| 2338 | } |
| 2339 | if (changed & |
| 2340 | (WIPHY_PARAM_RETRY_SHORT | WIPHY_PARAM_RETRY_LONG)) |
| 2341 | ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_RETRY_LIMITS); |
| 2342 | |
| 2343 | if (changed & (WIPHY_PARAM_TXQ_LIMIT | |
| 2344 | WIPHY_PARAM_TXQ_MEMORY_LIMIT | |
| 2345 | WIPHY_PARAM_TXQ_QUANTUM)) |
| 2346 | ieee80211_txq_set_params(local); |
| 2347 | |
| 2348 | return 0; |
| 2349 | } |
| 2350 | |
| 2351 | static int ieee80211_set_tx_power(struct wiphy *wiphy, |
| 2352 | struct wireless_dev *wdev, |
| 2353 | enum nl80211_tx_power_setting type, int mbm) |
| 2354 | { |
| 2355 | struct ieee80211_local *local = wiphy_priv(wiphy); |
| 2356 | struct ieee80211_sub_if_data *sdata; |
| 2357 | enum nl80211_tx_power_setting txp_type = type; |
| 2358 | bool update_txp_type = false; |
| 2359 | bool has_monitor = false; |
| 2360 | |
| 2361 | if (wdev) { |
| 2362 | sdata = IEEE80211_WDEV_TO_SUB_IF(wdev); |
| 2363 | |
| 2364 | if (sdata->vif.type == NL80211_IFTYPE_MONITOR) { |
| 2365 | sdata = rtnl_dereference(local->monitor_sdata); |
| 2366 | if (!sdata) |
| 2367 | return -EOPNOTSUPP; |
| 2368 | } |
| 2369 | |
| 2370 | switch (type) { |
| 2371 | case NL80211_TX_POWER_AUTOMATIC: |
| 2372 | sdata->user_power_level = IEEE80211_UNSET_POWER_LEVEL; |
| 2373 | txp_type = NL80211_TX_POWER_LIMITED; |
| 2374 | break; |
| 2375 | case NL80211_TX_POWER_LIMITED: |
| 2376 | case NL80211_TX_POWER_FIXED: |
| 2377 | if (mbm < 0 || (mbm % 100)) |
| 2378 | return -EOPNOTSUPP; |
| 2379 | sdata->user_power_level = MBM_TO_DBM(mbm); |
| 2380 | break; |
| 2381 | } |
| 2382 | |
| 2383 | if (txp_type != sdata->vif.bss_conf.txpower_type) { |
| 2384 | update_txp_type = true; |
| 2385 | sdata->vif.bss_conf.txpower_type = txp_type; |
| 2386 | } |
| 2387 | |
| 2388 | ieee80211_recalc_txpower(sdata, update_txp_type); |
| 2389 | |
| 2390 | return 0; |
| 2391 | } |
| 2392 | |
| 2393 | switch (type) { |
| 2394 | case NL80211_TX_POWER_AUTOMATIC: |
| 2395 | local->user_power_level = IEEE80211_UNSET_POWER_LEVEL; |
| 2396 | txp_type = NL80211_TX_POWER_LIMITED; |
| 2397 | break; |
| 2398 | case NL80211_TX_POWER_LIMITED: |
| 2399 | case NL80211_TX_POWER_FIXED: |
| 2400 | if (mbm < 0 || (mbm % 100)) |
| 2401 | return -EOPNOTSUPP; |
| 2402 | local->user_power_level = MBM_TO_DBM(mbm); |
| 2403 | break; |
| 2404 | } |
| 2405 | |
| 2406 | mutex_lock(&local->iflist_mtx); |
| 2407 | list_for_each_entry(sdata, &local->interfaces, list) { |
| 2408 | if (sdata->vif.type == NL80211_IFTYPE_MONITOR) { |
| 2409 | has_monitor = true; |
| 2410 | continue; |
| 2411 | } |
| 2412 | sdata->user_power_level = local->user_power_level; |
| 2413 | if (txp_type != sdata->vif.bss_conf.txpower_type) |
| 2414 | update_txp_type = true; |
| 2415 | sdata->vif.bss_conf.txpower_type = txp_type; |
| 2416 | } |
| 2417 | list_for_each_entry(sdata, &local->interfaces, list) { |
| 2418 | if (sdata->vif.type == NL80211_IFTYPE_MONITOR) |
| 2419 | continue; |
| 2420 | ieee80211_recalc_txpower(sdata, update_txp_type); |
| 2421 | } |
| 2422 | mutex_unlock(&local->iflist_mtx); |
| 2423 | |
| 2424 | if (has_monitor) { |
| 2425 | sdata = rtnl_dereference(local->monitor_sdata); |
| 2426 | if (sdata) { |
| 2427 | sdata->user_power_level = local->user_power_level; |
| 2428 | if (txp_type != sdata->vif.bss_conf.txpower_type) |
| 2429 | update_txp_type = true; |
| 2430 | sdata->vif.bss_conf.txpower_type = txp_type; |
| 2431 | |
| 2432 | ieee80211_recalc_txpower(sdata, update_txp_type); |
| 2433 | } |
| 2434 | } |
| 2435 | |
| 2436 | return 0; |
| 2437 | } |
| 2438 | |
| 2439 | static int ieee80211_get_tx_power(struct wiphy *wiphy, |
| 2440 | struct wireless_dev *wdev, |
| 2441 | int *dbm) |
| 2442 | { |
| 2443 | struct ieee80211_local *local = wiphy_priv(wiphy); |
| 2444 | struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev); |
| 2445 | |
| 2446 | if (local->ops->get_txpower) |
| 2447 | return drv_get_txpower(local, sdata, dbm); |
| 2448 | |
| 2449 | if (!local->use_chanctx) |
| 2450 | *dbm = local->hw.conf.power_level; |
| 2451 | else |
| 2452 | *dbm = sdata->vif.bss_conf.txpower; |
| 2453 | |
| 2454 | return 0; |
| 2455 | } |
| 2456 | |
| 2457 | static int ieee80211_set_wds_peer(struct wiphy *wiphy, struct net_device *dev, |
| 2458 | const u8 *addr) |
| 2459 | { |
| 2460 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 2461 | |
| 2462 | memcpy(&sdata->u.wds.remote_addr, addr, ETH_ALEN); |
| 2463 | |
| 2464 | return 0; |
| 2465 | } |
| 2466 | |
| 2467 | static void ieee80211_rfkill_poll(struct wiphy *wiphy) |
| 2468 | { |
| 2469 | struct ieee80211_local *local = wiphy_priv(wiphy); |
| 2470 | |
| 2471 | drv_rfkill_poll(local); |
| 2472 | } |
| 2473 | |
| 2474 | #ifdef CONFIG_NL80211_TESTMODE |
| 2475 | static int ieee80211_testmode_cmd(struct wiphy *wiphy, |
| 2476 | struct wireless_dev *wdev, |
| 2477 | void *data, int len) |
| 2478 | { |
| 2479 | struct ieee80211_local *local = wiphy_priv(wiphy); |
| 2480 | struct ieee80211_vif *vif = NULL; |
| 2481 | |
| 2482 | if (!local->ops->testmode_cmd) |
| 2483 | return -EOPNOTSUPP; |
| 2484 | |
| 2485 | if (wdev) { |
| 2486 | struct ieee80211_sub_if_data *sdata; |
| 2487 | |
| 2488 | sdata = IEEE80211_WDEV_TO_SUB_IF(wdev); |
| 2489 | if (sdata->flags & IEEE80211_SDATA_IN_DRIVER) |
| 2490 | vif = &sdata->vif; |
| 2491 | } |
| 2492 | |
| 2493 | return local->ops->testmode_cmd(&local->hw, vif, data, len); |
| 2494 | } |
| 2495 | |
| 2496 | static int ieee80211_testmode_dump(struct wiphy *wiphy, |
| 2497 | struct sk_buff *skb, |
| 2498 | struct netlink_callback *cb, |
| 2499 | void *data, int len) |
| 2500 | { |
| 2501 | struct ieee80211_local *local = wiphy_priv(wiphy); |
| 2502 | |
| 2503 | if (!local->ops->testmode_dump) |
| 2504 | return -EOPNOTSUPP; |
| 2505 | |
| 2506 | return local->ops->testmode_dump(&local->hw, skb, cb, data, len); |
| 2507 | } |
| 2508 | #endif |
| 2509 | |
| 2510 | int __ieee80211_request_smps_ap(struct ieee80211_sub_if_data *sdata, |
| 2511 | enum ieee80211_smps_mode smps_mode) |
| 2512 | { |
| 2513 | struct sta_info *sta; |
| 2514 | enum ieee80211_smps_mode old_req; |
| 2515 | |
| 2516 | if (WARN_ON_ONCE(sdata->vif.type != NL80211_IFTYPE_AP)) |
| 2517 | return -EINVAL; |
| 2518 | |
| 2519 | if (sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_20_NOHT) |
| 2520 | return 0; |
| 2521 | |
| 2522 | old_req = sdata->u.ap.req_smps; |
| 2523 | sdata->u.ap.req_smps = smps_mode; |
| 2524 | |
| 2525 | /* AUTOMATIC doesn't mean much for AP - don't allow it */ |
| 2526 | if (old_req == smps_mode || |
| 2527 | smps_mode == IEEE80211_SMPS_AUTOMATIC) |
| 2528 | return 0; |
| 2529 | |
| 2530 | ht_dbg(sdata, |
| 2531 | "SMPS %d requested in AP mode, sending Action frame to %d stations\n", |
| 2532 | smps_mode, atomic_read(&sdata->u.ap.num_mcast_sta)); |
| 2533 | |
| 2534 | mutex_lock(&sdata->local->sta_mtx); |
| 2535 | list_for_each_entry(sta, &sdata->local->sta_list, list) { |
| 2536 | /* |
| 2537 | * Only stations associated to our AP and |
| 2538 | * associated VLANs |
| 2539 | */ |
| 2540 | if (sta->sdata->bss != &sdata->u.ap) |
| 2541 | continue; |
| 2542 | |
| 2543 | /* This station doesn't support MIMO - skip it */ |
| 2544 | if (sta_info_tx_streams(sta) == 1) |
| 2545 | continue; |
| 2546 | |
| 2547 | /* |
| 2548 | * Don't wake up a STA just to send the action frame |
| 2549 | * unless we are getting more restrictive. |
| 2550 | */ |
| 2551 | if (test_sta_flag(sta, WLAN_STA_PS_STA) && |
| 2552 | !ieee80211_smps_is_restrictive(sta->known_smps_mode, |
| 2553 | smps_mode)) { |
| 2554 | ht_dbg(sdata, "Won't send SMPS to sleeping STA %pM\n", |
| 2555 | sta->sta.addr); |
| 2556 | continue; |
| 2557 | } |
| 2558 | |
| 2559 | /* |
| 2560 | * If the STA is not authorized, wait until it gets |
| 2561 | * authorized and the action frame will be sent then. |
| 2562 | */ |
| 2563 | if (!test_sta_flag(sta, WLAN_STA_AUTHORIZED)) |
| 2564 | continue; |
| 2565 | |
| 2566 | ht_dbg(sdata, "Sending SMPS to %pM\n", sta->sta.addr); |
| 2567 | ieee80211_send_smps_action(sdata, smps_mode, sta->sta.addr, |
| 2568 | sdata->vif.bss_conf.bssid); |
| 2569 | } |
| 2570 | mutex_unlock(&sdata->local->sta_mtx); |
| 2571 | |
| 2572 | sdata->smps_mode = smps_mode; |
| 2573 | ieee80211_queue_work(&sdata->local->hw, &sdata->recalc_smps); |
| 2574 | |
| 2575 | return 0; |
| 2576 | } |
| 2577 | |
| 2578 | int __ieee80211_request_smps_mgd(struct ieee80211_sub_if_data *sdata, |
| 2579 | enum ieee80211_smps_mode smps_mode) |
| 2580 | { |
| 2581 | const u8 *ap; |
| 2582 | enum ieee80211_smps_mode old_req; |
| 2583 | int err; |
| 2584 | struct sta_info *sta; |
| 2585 | bool tdls_peer_found = false; |
| 2586 | |
| 2587 | lockdep_assert_held(&sdata->wdev.mtx); |
| 2588 | |
| 2589 | if (WARN_ON_ONCE(sdata->vif.type != NL80211_IFTYPE_STATION)) |
| 2590 | return -EINVAL; |
| 2591 | |
| 2592 | old_req = sdata->u.mgd.req_smps; |
| 2593 | sdata->u.mgd.req_smps = smps_mode; |
| 2594 | |
| 2595 | if (old_req == smps_mode && |
| 2596 | smps_mode != IEEE80211_SMPS_AUTOMATIC) |
| 2597 | return 0; |
| 2598 | |
| 2599 | /* |
| 2600 | * If not associated, or current association is not an HT |
| 2601 | * association, there's no need to do anything, just store |
| 2602 | * the new value until we associate. |
| 2603 | */ |
| 2604 | if (!sdata->u.mgd.associated || |
| 2605 | sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_20_NOHT) |
| 2606 | return 0; |
| 2607 | |
| 2608 | ap = sdata->u.mgd.associated->bssid; |
| 2609 | |
| 2610 | rcu_read_lock(); |
| 2611 | list_for_each_entry_rcu(sta, &sdata->local->sta_list, list) { |
| 2612 | if (!sta->sta.tdls || sta->sdata != sdata || !sta->uploaded || |
| 2613 | !test_sta_flag(sta, WLAN_STA_AUTHORIZED)) |
| 2614 | continue; |
| 2615 | |
| 2616 | tdls_peer_found = true; |
| 2617 | break; |
| 2618 | } |
| 2619 | rcu_read_unlock(); |
| 2620 | |
| 2621 | if (smps_mode == IEEE80211_SMPS_AUTOMATIC) { |
| 2622 | if (tdls_peer_found || !sdata->u.mgd.powersave) |
| 2623 | smps_mode = IEEE80211_SMPS_OFF; |
| 2624 | else |
| 2625 | smps_mode = IEEE80211_SMPS_DYNAMIC; |
| 2626 | } |
| 2627 | |
| 2628 | /* send SM PS frame to AP */ |
| 2629 | err = ieee80211_send_smps_action(sdata, smps_mode, |
| 2630 | ap, ap); |
| 2631 | if (err) |
| 2632 | sdata->u.mgd.req_smps = old_req; |
| 2633 | else if (smps_mode != IEEE80211_SMPS_OFF && tdls_peer_found) |
| 2634 | ieee80211_teardown_tdls_peers(sdata); |
| 2635 | |
| 2636 | return err; |
| 2637 | } |
| 2638 | |
| 2639 | static int ieee80211_set_power_mgmt(struct wiphy *wiphy, struct net_device *dev, |
| 2640 | bool enabled, int timeout) |
| 2641 | { |
| 2642 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 2643 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); |
| 2644 | |
| 2645 | if (sdata->vif.type != NL80211_IFTYPE_STATION) |
| 2646 | return -EOPNOTSUPP; |
| 2647 | |
| 2648 | if (!ieee80211_hw_check(&local->hw, SUPPORTS_PS)) |
| 2649 | return -EOPNOTSUPP; |
| 2650 | |
| 2651 | if (enabled == sdata->u.mgd.powersave && |
| 2652 | timeout == local->dynamic_ps_forced_timeout) |
| 2653 | return 0; |
| 2654 | |
| 2655 | sdata->u.mgd.powersave = enabled; |
| 2656 | local->dynamic_ps_forced_timeout = timeout; |
| 2657 | |
| 2658 | /* no change, but if automatic follow powersave */ |
| 2659 | sdata_lock(sdata); |
| 2660 | __ieee80211_request_smps_mgd(sdata, sdata->u.mgd.req_smps); |
| 2661 | sdata_unlock(sdata); |
| 2662 | |
| 2663 | if (ieee80211_hw_check(&local->hw, SUPPORTS_DYNAMIC_PS)) |
| 2664 | ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS); |
| 2665 | |
| 2666 | ieee80211_recalc_ps(local); |
| 2667 | ieee80211_recalc_ps_vif(sdata); |
| 2668 | ieee80211_check_fast_rx_iface(sdata); |
| 2669 | |
| 2670 | return 0; |
| 2671 | } |
| 2672 | |
| 2673 | static int ieee80211_set_cqm_rssi_config(struct wiphy *wiphy, |
| 2674 | struct net_device *dev, |
| 2675 | s32 rssi_thold, u32 rssi_hyst) |
| 2676 | { |
| 2677 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 2678 | struct ieee80211_vif *vif = &sdata->vif; |
| 2679 | struct ieee80211_bss_conf *bss_conf = &vif->bss_conf; |
| 2680 | |
| 2681 | if (rssi_thold == bss_conf->cqm_rssi_thold && |
| 2682 | rssi_hyst == bss_conf->cqm_rssi_hyst) |
| 2683 | return 0; |
| 2684 | |
| 2685 | if (sdata->vif.driver_flags & IEEE80211_VIF_BEACON_FILTER && |
| 2686 | !(sdata->vif.driver_flags & IEEE80211_VIF_SUPPORTS_CQM_RSSI)) |
| 2687 | return -EOPNOTSUPP; |
| 2688 | |
| 2689 | bss_conf->cqm_rssi_thold = rssi_thold; |
| 2690 | bss_conf->cqm_rssi_hyst = rssi_hyst; |
| 2691 | bss_conf->cqm_rssi_low = 0; |
| 2692 | bss_conf->cqm_rssi_high = 0; |
| 2693 | sdata->u.mgd.last_cqm_event_signal = 0; |
| 2694 | |
| 2695 | /* tell the driver upon association, unless already associated */ |
| 2696 | if (sdata->u.mgd.associated && |
| 2697 | sdata->vif.driver_flags & IEEE80211_VIF_SUPPORTS_CQM_RSSI) |
| 2698 | ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_CQM); |
| 2699 | |
| 2700 | return 0; |
| 2701 | } |
| 2702 | |
| 2703 | static int ieee80211_set_cqm_rssi_range_config(struct wiphy *wiphy, |
| 2704 | struct net_device *dev, |
| 2705 | s32 rssi_low, s32 rssi_high) |
| 2706 | { |
| 2707 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 2708 | struct ieee80211_vif *vif = &sdata->vif; |
| 2709 | struct ieee80211_bss_conf *bss_conf = &vif->bss_conf; |
| 2710 | |
| 2711 | if (sdata->vif.driver_flags & IEEE80211_VIF_BEACON_FILTER) |
| 2712 | return -EOPNOTSUPP; |
| 2713 | |
| 2714 | bss_conf->cqm_rssi_low = rssi_low; |
| 2715 | bss_conf->cqm_rssi_high = rssi_high; |
| 2716 | bss_conf->cqm_rssi_thold = 0; |
| 2717 | bss_conf->cqm_rssi_hyst = 0; |
| 2718 | sdata->u.mgd.last_cqm_event_signal = 0; |
| 2719 | |
| 2720 | /* tell the driver upon association, unless already associated */ |
| 2721 | if (sdata->u.mgd.associated && |
| 2722 | sdata->vif.driver_flags & IEEE80211_VIF_SUPPORTS_CQM_RSSI) |
| 2723 | ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_CQM); |
| 2724 | |
| 2725 | return 0; |
| 2726 | } |
| 2727 | |
| 2728 | static int ieee80211_set_bitrate_mask(struct wiphy *wiphy, |
| 2729 | struct net_device *dev, |
| 2730 | const u8 *addr, |
| 2731 | const struct cfg80211_bitrate_mask *mask) |
| 2732 | { |
| 2733 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 2734 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); |
| 2735 | int i, ret; |
| 2736 | |
| 2737 | if (!ieee80211_sdata_running(sdata)) |
| 2738 | return -ENETDOWN; |
| 2739 | |
| 2740 | /* |
| 2741 | * If active validate the setting and reject it if it doesn't leave |
| 2742 | * at least one basic rate usable, since we really have to be able |
| 2743 | * to send something, and if we're an AP we have to be able to do |
| 2744 | * so at a basic rate so that all clients can receive it. |
| 2745 | */ |
| 2746 | if (rcu_access_pointer(sdata->vif.chanctx_conf) && |
| 2747 | sdata->vif.bss_conf.chandef.chan) { |
| 2748 | u32 basic_rates = sdata->vif.bss_conf.basic_rates; |
| 2749 | enum nl80211_band band = sdata->vif.bss_conf.chandef.chan->band; |
| 2750 | |
| 2751 | if (!(mask->control[band].legacy & basic_rates)) |
| 2752 | return -EINVAL; |
| 2753 | } |
| 2754 | |
| 2755 | if (ieee80211_hw_check(&local->hw, HAS_RATE_CONTROL)) { |
| 2756 | ret = drv_set_bitrate_mask(local, sdata, mask); |
| 2757 | if (ret) |
| 2758 | return ret; |
| 2759 | } |
| 2760 | |
| 2761 | for (i = 0; i < NUM_NL80211_BANDS; i++) { |
| 2762 | struct ieee80211_supported_band *sband = wiphy->bands[i]; |
| 2763 | int j; |
| 2764 | |
| 2765 | sdata->rc_rateidx_mask[i] = mask->control[i].legacy; |
| 2766 | memcpy(sdata->rc_rateidx_mcs_mask[i], mask->control[i].ht_mcs, |
| 2767 | sizeof(mask->control[i].ht_mcs)); |
| 2768 | memcpy(sdata->rc_rateidx_vht_mcs_mask[i], |
| 2769 | mask->control[i].vht_mcs, |
| 2770 | sizeof(mask->control[i].vht_mcs)); |
| 2771 | |
| 2772 | sdata->rc_has_mcs_mask[i] = false; |
| 2773 | sdata->rc_has_vht_mcs_mask[i] = false; |
| 2774 | if (!sband) |
| 2775 | continue; |
| 2776 | |
| 2777 | for (j = 0; j < IEEE80211_HT_MCS_MASK_LEN; j++) { |
| 2778 | if (~sdata->rc_rateidx_mcs_mask[i][j]) { |
| 2779 | sdata->rc_has_mcs_mask[i] = true; |
| 2780 | break; |
| 2781 | } |
| 2782 | } |
| 2783 | |
| 2784 | for (j = 0; j < NL80211_VHT_NSS_MAX; j++) { |
| 2785 | if (~sdata->rc_rateidx_vht_mcs_mask[i][j]) { |
| 2786 | sdata->rc_has_vht_mcs_mask[i] = true; |
| 2787 | break; |
| 2788 | } |
| 2789 | } |
| 2790 | } |
| 2791 | |
| 2792 | return 0; |
| 2793 | } |
| 2794 | |
| 2795 | static int ieee80211_start_radar_detection(struct wiphy *wiphy, |
| 2796 | struct net_device *dev, |
| 2797 | struct cfg80211_chan_def *chandef, |
| 2798 | u32 cac_time_ms) |
| 2799 | { |
| 2800 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 2801 | struct ieee80211_local *local = sdata->local; |
| 2802 | int err; |
| 2803 | |
| 2804 | mutex_lock(&local->mtx); |
| 2805 | if (!list_empty(&local->roc_list) || local->scanning) { |
| 2806 | err = -EBUSY; |
| 2807 | goto out_unlock; |
| 2808 | } |
| 2809 | |
| 2810 | /* whatever, but channel contexts should not complain about that one */ |
| 2811 | sdata->smps_mode = IEEE80211_SMPS_OFF; |
| 2812 | sdata->needed_rx_chains = local->rx_chains; |
| 2813 | |
| 2814 | err = ieee80211_vif_use_channel(sdata, chandef, |
| 2815 | IEEE80211_CHANCTX_SHARED); |
| 2816 | if (err) |
| 2817 | goto out_unlock; |
| 2818 | |
| 2819 | ieee80211_queue_delayed_work(&sdata->local->hw, |
| 2820 | &sdata->dfs_cac_timer_work, |
| 2821 | msecs_to_jiffies(cac_time_ms)); |
| 2822 | |
| 2823 | out_unlock: |
| 2824 | mutex_unlock(&local->mtx); |
| 2825 | return err; |
| 2826 | } |
| 2827 | |
| 2828 | static struct cfg80211_beacon_data * |
| 2829 | cfg80211_beacon_dup(struct cfg80211_beacon_data *beacon) |
| 2830 | { |
| 2831 | struct cfg80211_beacon_data *new_beacon; |
| 2832 | u8 *pos; |
| 2833 | int len; |
| 2834 | |
| 2835 | len = beacon->head_len + beacon->tail_len + beacon->beacon_ies_len + |
| 2836 | beacon->proberesp_ies_len + beacon->assocresp_ies_len + |
| 2837 | beacon->probe_resp_len; |
| 2838 | |
| 2839 | new_beacon = kzalloc(sizeof(*new_beacon) + len, GFP_KERNEL); |
| 2840 | if (!new_beacon) |
| 2841 | return NULL; |
| 2842 | |
| 2843 | pos = (u8 *)(new_beacon + 1); |
| 2844 | if (beacon->head_len) { |
| 2845 | new_beacon->head_len = beacon->head_len; |
| 2846 | new_beacon->head = pos; |
| 2847 | memcpy(pos, beacon->head, beacon->head_len); |
| 2848 | pos += beacon->head_len; |
| 2849 | } |
| 2850 | if (beacon->tail_len) { |
| 2851 | new_beacon->tail_len = beacon->tail_len; |
| 2852 | new_beacon->tail = pos; |
| 2853 | memcpy(pos, beacon->tail, beacon->tail_len); |
| 2854 | pos += beacon->tail_len; |
| 2855 | } |
| 2856 | if (beacon->beacon_ies_len) { |
| 2857 | new_beacon->beacon_ies_len = beacon->beacon_ies_len; |
| 2858 | new_beacon->beacon_ies = pos; |
| 2859 | memcpy(pos, beacon->beacon_ies, beacon->beacon_ies_len); |
| 2860 | pos += beacon->beacon_ies_len; |
| 2861 | } |
| 2862 | if (beacon->proberesp_ies_len) { |
| 2863 | new_beacon->proberesp_ies_len = beacon->proberesp_ies_len; |
| 2864 | new_beacon->proberesp_ies = pos; |
| 2865 | memcpy(pos, beacon->proberesp_ies, beacon->proberesp_ies_len); |
| 2866 | pos += beacon->proberesp_ies_len; |
| 2867 | } |
| 2868 | if (beacon->assocresp_ies_len) { |
| 2869 | new_beacon->assocresp_ies_len = beacon->assocresp_ies_len; |
| 2870 | new_beacon->assocresp_ies = pos; |
| 2871 | memcpy(pos, beacon->assocresp_ies, beacon->assocresp_ies_len); |
| 2872 | pos += beacon->assocresp_ies_len; |
| 2873 | } |
| 2874 | if (beacon->probe_resp_len) { |
| 2875 | new_beacon->probe_resp_len = beacon->probe_resp_len; |
| 2876 | new_beacon->probe_resp = pos; |
| 2877 | memcpy(pos, beacon->probe_resp, beacon->probe_resp_len); |
| 2878 | pos += beacon->probe_resp_len; |
| 2879 | } |
| 2880 | |
| 2881 | return new_beacon; |
| 2882 | } |
| 2883 | |
| 2884 | void ieee80211_csa_finish(struct ieee80211_vif *vif) |
| 2885 | { |
| 2886 | struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif); |
| 2887 | |
| 2888 | ieee80211_queue_work(&sdata->local->hw, |
| 2889 | &sdata->csa_finalize_work); |
| 2890 | } |
| 2891 | EXPORT_SYMBOL(ieee80211_csa_finish); |
| 2892 | |
| 2893 | static int ieee80211_set_after_csa_beacon(struct ieee80211_sub_if_data *sdata, |
| 2894 | u32 *changed) |
| 2895 | { |
| 2896 | int err; |
| 2897 | |
| 2898 | switch (sdata->vif.type) { |
| 2899 | case NL80211_IFTYPE_AP: |
| 2900 | err = ieee80211_assign_beacon(sdata, sdata->u.ap.next_beacon, |
| 2901 | NULL); |
| 2902 | kfree(sdata->u.ap.next_beacon); |
| 2903 | sdata->u.ap.next_beacon = NULL; |
| 2904 | |
| 2905 | if (err < 0) |
| 2906 | return err; |
| 2907 | *changed |= err; |
| 2908 | break; |
| 2909 | case NL80211_IFTYPE_ADHOC: |
| 2910 | err = ieee80211_ibss_finish_csa(sdata); |
| 2911 | if (err < 0) |
| 2912 | return err; |
| 2913 | *changed |= err; |
| 2914 | break; |
| 2915 | #ifdef CONFIG_MAC80211_MESH |
| 2916 | case NL80211_IFTYPE_MESH_POINT: |
| 2917 | err = ieee80211_mesh_finish_csa(sdata); |
| 2918 | if (err < 0) |
| 2919 | return err; |
| 2920 | *changed |= err; |
| 2921 | break; |
| 2922 | #endif |
| 2923 | default: |
| 2924 | WARN_ON(1); |
| 2925 | return -EINVAL; |
| 2926 | } |
| 2927 | |
| 2928 | return 0; |
| 2929 | } |
| 2930 | |
| 2931 | static int __ieee80211_csa_finalize(struct ieee80211_sub_if_data *sdata) |
| 2932 | { |
| 2933 | struct ieee80211_local *local = sdata->local; |
| 2934 | u32 changed = 0; |
| 2935 | int err; |
| 2936 | |
| 2937 | sdata_assert_lock(sdata); |
| 2938 | lockdep_assert_held(&local->mtx); |
| 2939 | lockdep_assert_held(&local->chanctx_mtx); |
| 2940 | |
| 2941 | /* |
| 2942 | * using reservation isn't immediate as it may be deferred until later |
| 2943 | * with multi-vif. once reservation is complete it will re-schedule the |
| 2944 | * work with no reserved_chanctx so verify chandef to check if it |
| 2945 | * completed successfully |
| 2946 | */ |
| 2947 | |
| 2948 | if (sdata->reserved_chanctx) { |
| 2949 | /* |
| 2950 | * with multi-vif csa driver may call ieee80211_csa_finish() |
| 2951 | * many times while waiting for other interfaces to use their |
| 2952 | * reservations |
| 2953 | */ |
| 2954 | if (sdata->reserved_ready) |
| 2955 | return 0; |
| 2956 | |
| 2957 | return ieee80211_vif_use_reserved_context(sdata); |
| 2958 | } |
| 2959 | |
| 2960 | if (!cfg80211_chandef_identical(&sdata->vif.bss_conf.chandef, |
| 2961 | &sdata->csa_chandef)) |
| 2962 | return -EINVAL; |
| 2963 | |
| 2964 | sdata->vif.csa_active = false; |
| 2965 | |
| 2966 | err = ieee80211_set_after_csa_beacon(sdata, &changed); |
| 2967 | if (err) |
| 2968 | return err; |
| 2969 | |
| 2970 | ieee80211_bss_info_change_notify(sdata, changed); |
| 2971 | |
| 2972 | if (sdata->csa_block_tx) { |
| 2973 | ieee80211_wake_vif_queues(local, sdata, |
| 2974 | IEEE80211_QUEUE_STOP_REASON_CSA); |
| 2975 | sdata->csa_block_tx = false; |
| 2976 | } |
| 2977 | |
| 2978 | err = drv_post_channel_switch(sdata); |
| 2979 | if (err) |
| 2980 | return err; |
| 2981 | |
| 2982 | cfg80211_ch_switch_notify(sdata->dev, &sdata->csa_chandef); |
| 2983 | |
| 2984 | return 0; |
| 2985 | } |
| 2986 | |
| 2987 | static void ieee80211_csa_finalize(struct ieee80211_sub_if_data *sdata) |
| 2988 | { |
| 2989 | if (__ieee80211_csa_finalize(sdata)) { |
| 2990 | sdata_info(sdata, "failed to finalize CSA, disconnecting\n"); |
| 2991 | cfg80211_stop_iface(sdata->local->hw.wiphy, &sdata->wdev, |
| 2992 | GFP_KERNEL); |
| 2993 | } |
| 2994 | } |
| 2995 | |
| 2996 | void ieee80211_csa_finalize_work(struct work_struct *work) |
| 2997 | { |
| 2998 | struct ieee80211_sub_if_data *sdata = |
| 2999 | container_of(work, struct ieee80211_sub_if_data, |
| 3000 | csa_finalize_work); |
| 3001 | struct ieee80211_local *local = sdata->local; |
| 3002 | |
| 3003 | sdata_lock(sdata); |
| 3004 | mutex_lock(&local->mtx); |
| 3005 | mutex_lock(&local->chanctx_mtx); |
| 3006 | |
| 3007 | /* AP might have been stopped while waiting for the lock. */ |
| 3008 | if (!sdata->vif.csa_active) |
| 3009 | goto unlock; |
| 3010 | |
| 3011 | if (!ieee80211_sdata_running(sdata)) |
| 3012 | goto unlock; |
| 3013 | |
| 3014 | ieee80211_csa_finalize(sdata); |
| 3015 | |
| 3016 | unlock: |
| 3017 | mutex_unlock(&local->chanctx_mtx); |
| 3018 | mutex_unlock(&local->mtx); |
| 3019 | sdata_unlock(sdata); |
| 3020 | } |
| 3021 | |
| 3022 | static int ieee80211_set_csa_beacon(struct ieee80211_sub_if_data *sdata, |
| 3023 | struct cfg80211_csa_settings *params, |
| 3024 | u32 *changed) |
| 3025 | { |
| 3026 | struct ieee80211_csa_settings csa = {}; |
| 3027 | int err; |
| 3028 | |
| 3029 | switch (sdata->vif.type) { |
| 3030 | case NL80211_IFTYPE_AP: |
| 3031 | sdata->u.ap.next_beacon = |
| 3032 | cfg80211_beacon_dup(¶ms->beacon_after); |
| 3033 | if (!sdata->u.ap.next_beacon) |
| 3034 | return -ENOMEM; |
| 3035 | |
| 3036 | /* |
| 3037 | * With a count of 0, we don't have to wait for any |
| 3038 | * TBTT before switching, so complete the CSA |
| 3039 | * immediately. In theory, with a count == 1 we |
| 3040 | * should delay the switch until just before the next |
| 3041 | * TBTT, but that would complicate things so we switch |
| 3042 | * immediately too. If we would delay the switch |
| 3043 | * until the next TBTT, we would have to set the probe |
| 3044 | * response here. |
| 3045 | * |
| 3046 | * TODO: A channel switch with count <= 1 without |
| 3047 | * sending a CSA action frame is kind of useless, |
| 3048 | * because the clients won't know we're changing |
| 3049 | * channels. The action frame must be implemented |
| 3050 | * either here or in the userspace. |
| 3051 | */ |
| 3052 | if (params->count <= 1) |
| 3053 | break; |
| 3054 | |
| 3055 | if ((params->n_counter_offsets_beacon > |
| 3056 | IEEE80211_MAX_CSA_COUNTERS_NUM) || |
| 3057 | (params->n_counter_offsets_presp > |
| 3058 | IEEE80211_MAX_CSA_COUNTERS_NUM)) |
| 3059 | return -EINVAL; |
| 3060 | |
| 3061 | csa.counter_offsets_beacon = params->counter_offsets_beacon; |
| 3062 | csa.counter_offsets_presp = params->counter_offsets_presp; |
| 3063 | csa.n_counter_offsets_beacon = params->n_counter_offsets_beacon; |
| 3064 | csa.n_counter_offsets_presp = params->n_counter_offsets_presp; |
| 3065 | csa.count = params->count; |
| 3066 | |
| 3067 | err = ieee80211_assign_beacon(sdata, ¶ms->beacon_csa, &csa); |
| 3068 | if (err < 0) { |
| 3069 | kfree(sdata->u.ap.next_beacon); |
| 3070 | return err; |
| 3071 | } |
| 3072 | *changed |= err; |
| 3073 | |
| 3074 | break; |
| 3075 | case NL80211_IFTYPE_ADHOC: |
| 3076 | if (!sdata->vif.bss_conf.ibss_joined) |
| 3077 | return -EINVAL; |
| 3078 | |
| 3079 | if (params->chandef.width != sdata->u.ibss.chandef.width) |
| 3080 | return -EINVAL; |
| 3081 | |
| 3082 | switch (params->chandef.width) { |
| 3083 | case NL80211_CHAN_WIDTH_40: |
| 3084 | if (cfg80211_get_chandef_type(¶ms->chandef) != |
| 3085 | cfg80211_get_chandef_type(&sdata->u.ibss.chandef)) |
| 3086 | return -EINVAL; |
| 3087 | case NL80211_CHAN_WIDTH_5: |
| 3088 | case NL80211_CHAN_WIDTH_10: |
| 3089 | case NL80211_CHAN_WIDTH_20_NOHT: |
| 3090 | case NL80211_CHAN_WIDTH_20: |
| 3091 | break; |
| 3092 | default: |
| 3093 | return -EINVAL; |
| 3094 | } |
| 3095 | |
| 3096 | /* changes into another band are not supported */ |
| 3097 | if (sdata->u.ibss.chandef.chan->band != |
| 3098 | params->chandef.chan->band) |
| 3099 | return -EINVAL; |
| 3100 | |
| 3101 | /* see comments in the NL80211_IFTYPE_AP block */ |
| 3102 | if (params->count > 1) { |
| 3103 | err = ieee80211_ibss_csa_beacon(sdata, params); |
| 3104 | if (err < 0) |
| 3105 | return err; |
| 3106 | *changed |= err; |
| 3107 | } |
| 3108 | |
| 3109 | ieee80211_send_action_csa(sdata, params); |
| 3110 | |
| 3111 | break; |
| 3112 | #ifdef CONFIG_MAC80211_MESH |
| 3113 | case NL80211_IFTYPE_MESH_POINT: { |
| 3114 | struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh; |
| 3115 | |
| 3116 | if (params->chandef.width != sdata->vif.bss_conf.chandef.width) |
| 3117 | return -EINVAL; |
| 3118 | |
| 3119 | /* changes into another band are not supported */ |
| 3120 | if (sdata->vif.bss_conf.chandef.chan->band != |
| 3121 | params->chandef.chan->band) |
| 3122 | return -EINVAL; |
| 3123 | |
| 3124 | if (ifmsh->csa_role == IEEE80211_MESH_CSA_ROLE_NONE) { |
| 3125 | ifmsh->csa_role = IEEE80211_MESH_CSA_ROLE_INIT; |
| 3126 | if (!ifmsh->pre_value) |
| 3127 | ifmsh->pre_value = 1; |
| 3128 | else |
| 3129 | ifmsh->pre_value++; |
| 3130 | } |
| 3131 | |
| 3132 | /* see comments in the NL80211_IFTYPE_AP block */ |
| 3133 | if (params->count > 1) { |
| 3134 | err = ieee80211_mesh_csa_beacon(sdata, params); |
| 3135 | if (err < 0) { |
| 3136 | ifmsh->csa_role = IEEE80211_MESH_CSA_ROLE_NONE; |
| 3137 | return err; |
| 3138 | } |
| 3139 | *changed |= err; |
| 3140 | } |
| 3141 | |
| 3142 | if (ifmsh->csa_role == IEEE80211_MESH_CSA_ROLE_INIT) |
| 3143 | ieee80211_send_action_csa(sdata, params); |
| 3144 | |
| 3145 | break; |
| 3146 | } |
| 3147 | #endif |
| 3148 | default: |
| 3149 | return -EOPNOTSUPP; |
| 3150 | } |
| 3151 | |
| 3152 | return 0; |
| 3153 | } |
| 3154 | |
| 3155 | static int |
| 3156 | __ieee80211_channel_switch(struct wiphy *wiphy, struct net_device *dev, |
| 3157 | struct cfg80211_csa_settings *params) |
| 3158 | { |
| 3159 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 3160 | struct ieee80211_local *local = sdata->local; |
| 3161 | struct ieee80211_channel_switch ch_switch; |
| 3162 | struct ieee80211_chanctx_conf *conf; |
| 3163 | struct ieee80211_chanctx *chanctx; |
| 3164 | u32 changed = 0; |
| 3165 | int err; |
| 3166 | |
| 3167 | sdata_assert_lock(sdata); |
| 3168 | lockdep_assert_held(&local->mtx); |
| 3169 | |
| 3170 | if (!list_empty(&local->roc_list) || local->scanning) |
| 3171 | return -EBUSY; |
| 3172 | |
| 3173 | if (sdata->wdev.cac_started) |
| 3174 | return -EBUSY; |
| 3175 | |
| 3176 | if (cfg80211_chandef_identical(¶ms->chandef, |
| 3177 | &sdata->vif.bss_conf.chandef)) |
| 3178 | return -EINVAL; |
| 3179 | |
| 3180 | /* don't allow another channel switch if one is already active. */ |
| 3181 | if (sdata->vif.csa_active) |
| 3182 | return -EBUSY; |
| 3183 | |
| 3184 | mutex_lock(&local->chanctx_mtx); |
| 3185 | conf = rcu_dereference_protected(sdata->vif.chanctx_conf, |
| 3186 | lockdep_is_held(&local->chanctx_mtx)); |
| 3187 | if (!conf) { |
| 3188 | err = -EBUSY; |
| 3189 | goto out; |
| 3190 | } |
| 3191 | |
| 3192 | chanctx = container_of(conf, struct ieee80211_chanctx, conf); |
| 3193 | |
| 3194 | ch_switch.timestamp = 0; |
| 3195 | ch_switch.device_timestamp = 0; |
| 3196 | ch_switch.block_tx = params->block_tx; |
| 3197 | ch_switch.chandef = params->chandef; |
| 3198 | ch_switch.count = params->count; |
| 3199 | |
| 3200 | err = drv_pre_channel_switch(sdata, &ch_switch); |
| 3201 | if (err) |
| 3202 | goto out; |
| 3203 | |
| 3204 | err = ieee80211_vif_reserve_chanctx(sdata, ¶ms->chandef, |
| 3205 | chanctx->mode, |
| 3206 | params->radar_required); |
| 3207 | if (err) |
| 3208 | goto out; |
| 3209 | |
| 3210 | /* if reservation is invalid then this will fail */ |
| 3211 | err = ieee80211_check_combinations(sdata, NULL, chanctx->mode, 0); |
| 3212 | if (err) { |
| 3213 | ieee80211_vif_unreserve_chanctx(sdata); |
| 3214 | goto out; |
| 3215 | } |
| 3216 | |
| 3217 | err = ieee80211_set_csa_beacon(sdata, params, &changed); |
| 3218 | if (err) { |
| 3219 | ieee80211_vif_unreserve_chanctx(sdata); |
| 3220 | goto out; |
| 3221 | } |
| 3222 | |
| 3223 | sdata->csa_chandef = params->chandef; |
| 3224 | sdata->csa_block_tx = params->block_tx; |
| 3225 | sdata->vif.csa_active = true; |
| 3226 | |
| 3227 | if (sdata->csa_block_tx) |
| 3228 | ieee80211_stop_vif_queues(local, sdata, |
| 3229 | IEEE80211_QUEUE_STOP_REASON_CSA); |
| 3230 | |
| 3231 | cfg80211_ch_switch_started_notify(sdata->dev, &sdata->csa_chandef, |
| 3232 | params->count); |
| 3233 | |
| 3234 | if (changed) { |
| 3235 | ieee80211_bss_info_change_notify(sdata, changed); |
| 3236 | drv_channel_switch_beacon(sdata, ¶ms->chandef); |
| 3237 | } else { |
| 3238 | /* if the beacon didn't change, we can finalize immediately */ |
| 3239 | ieee80211_csa_finalize(sdata); |
| 3240 | } |
| 3241 | |
| 3242 | out: |
| 3243 | mutex_unlock(&local->chanctx_mtx); |
| 3244 | return err; |
| 3245 | } |
| 3246 | |
| 3247 | int ieee80211_channel_switch(struct wiphy *wiphy, struct net_device *dev, |
| 3248 | struct cfg80211_csa_settings *params) |
| 3249 | { |
| 3250 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 3251 | struct ieee80211_local *local = sdata->local; |
| 3252 | int err; |
| 3253 | |
| 3254 | mutex_lock(&local->mtx); |
| 3255 | err = __ieee80211_channel_switch(wiphy, dev, params); |
| 3256 | mutex_unlock(&local->mtx); |
| 3257 | |
| 3258 | return err; |
| 3259 | } |
| 3260 | |
| 3261 | u64 ieee80211_mgmt_tx_cookie(struct ieee80211_local *local) |
| 3262 | { |
| 3263 | lockdep_assert_held(&local->mtx); |
| 3264 | |
| 3265 | local->roc_cookie_counter++; |
| 3266 | |
| 3267 | /* wow, you wrapped 64 bits ... more likely a bug */ |
| 3268 | if (WARN_ON(local->roc_cookie_counter == 0)) |
| 3269 | local->roc_cookie_counter++; |
| 3270 | |
| 3271 | return local->roc_cookie_counter; |
| 3272 | } |
| 3273 | |
| 3274 | int ieee80211_attach_ack_skb(struct ieee80211_local *local, struct sk_buff *skb, |
| 3275 | u64 *cookie, gfp_t gfp) |
| 3276 | { |
| 3277 | unsigned long spin_flags; |
| 3278 | struct sk_buff *ack_skb; |
| 3279 | int id; |
| 3280 | |
| 3281 | ack_skb = skb_copy(skb, gfp); |
| 3282 | if (!ack_skb) |
| 3283 | return -ENOMEM; |
| 3284 | |
| 3285 | spin_lock_irqsave(&local->ack_status_lock, spin_flags); |
| 3286 | id = idr_alloc(&local->ack_status_frames, ack_skb, |
| 3287 | 1, 0x10000, GFP_ATOMIC); |
| 3288 | spin_unlock_irqrestore(&local->ack_status_lock, spin_flags); |
| 3289 | |
| 3290 | if (id < 0) { |
| 3291 | kfree_skb(ack_skb); |
| 3292 | return -ENOMEM; |
| 3293 | } |
| 3294 | |
| 3295 | IEEE80211_SKB_CB(skb)->ack_frame_id = id; |
| 3296 | |
| 3297 | *cookie = ieee80211_mgmt_tx_cookie(local); |
| 3298 | IEEE80211_SKB_CB(ack_skb)->ack.cookie = *cookie; |
| 3299 | |
| 3300 | return 0; |
| 3301 | } |
| 3302 | |
| 3303 | static void ieee80211_mgmt_frame_register(struct wiphy *wiphy, |
| 3304 | struct wireless_dev *wdev, |
| 3305 | u16 frame_type, bool reg) |
| 3306 | { |
| 3307 | struct ieee80211_local *local = wiphy_priv(wiphy); |
| 3308 | struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev); |
| 3309 | |
| 3310 | switch (frame_type) { |
| 3311 | case IEEE80211_FTYPE_MGMT | IEEE80211_STYPE_PROBE_REQ: |
| 3312 | if (reg) { |
| 3313 | local->probe_req_reg++; |
| 3314 | sdata->vif.probe_req_reg++; |
| 3315 | } else { |
| 3316 | if (local->probe_req_reg) |
| 3317 | local->probe_req_reg--; |
| 3318 | |
| 3319 | if (sdata->vif.probe_req_reg) |
| 3320 | sdata->vif.probe_req_reg--; |
| 3321 | } |
| 3322 | |
| 3323 | if (!local->open_count) |
| 3324 | break; |
| 3325 | |
| 3326 | if (sdata->vif.probe_req_reg == 1) |
| 3327 | drv_config_iface_filter(local, sdata, FIF_PROBE_REQ, |
| 3328 | FIF_PROBE_REQ); |
| 3329 | else if (sdata->vif.probe_req_reg == 0) |
| 3330 | drv_config_iface_filter(local, sdata, 0, |
| 3331 | FIF_PROBE_REQ); |
| 3332 | |
| 3333 | ieee80211_configure_filter(local); |
| 3334 | break; |
| 3335 | default: |
| 3336 | break; |
| 3337 | } |
| 3338 | } |
| 3339 | |
| 3340 | static int ieee80211_set_antenna(struct wiphy *wiphy, u32 tx_ant, u32 rx_ant) |
| 3341 | { |
| 3342 | struct ieee80211_local *local = wiphy_priv(wiphy); |
| 3343 | |
| 3344 | if (local->started) |
| 3345 | return -EOPNOTSUPP; |
| 3346 | |
| 3347 | return drv_set_antenna(local, tx_ant, rx_ant); |
| 3348 | } |
| 3349 | |
| 3350 | static int ieee80211_get_antenna(struct wiphy *wiphy, u32 *tx_ant, u32 *rx_ant) |
| 3351 | { |
| 3352 | struct ieee80211_local *local = wiphy_priv(wiphy); |
| 3353 | |
| 3354 | return drv_get_antenna(local, tx_ant, rx_ant); |
| 3355 | } |
| 3356 | |
| 3357 | static int ieee80211_set_rekey_data(struct wiphy *wiphy, |
| 3358 | struct net_device *dev, |
| 3359 | struct cfg80211_gtk_rekey_data *data) |
| 3360 | { |
| 3361 | struct ieee80211_local *local = wiphy_priv(wiphy); |
| 3362 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 3363 | |
| 3364 | if (!local->ops->set_rekey_data) |
| 3365 | return -EOPNOTSUPP; |
| 3366 | |
| 3367 | drv_set_rekey_data(local, sdata, data); |
| 3368 | |
| 3369 | return 0; |
| 3370 | } |
| 3371 | |
| 3372 | static int ieee80211_probe_client(struct wiphy *wiphy, struct net_device *dev, |
| 3373 | const u8 *peer, u64 *cookie) |
| 3374 | { |
| 3375 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 3376 | struct ieee80211_local *local = sdata->local; |
| 3377 | struct ieee80211_qos_hdr *nullfunc; |
| 3378 | struct sk_buff *skb; |
| 3379 | int size = sizeof(*nullfunc); |
| 3380 | __le16 fc; |
| 3381 | bool qos; |
| 3382 | struct ieee80211_tx_info *info; |
| 3383 | struct sta_info *sta; |
| 3384 | struct ieee80211_chanctx_conf *chanctx_conf; |
| 3385 | enum nl80211_band band; |
| 3386 | int ret; |
| 3387 | |
| 3388 | /* the lock is needed to assign the cookie later */ |
| 3389 | mutex_lock(&local->mtx); |
| 3390 | |
| 3391 | rcu_read_lock(); |
| 3392 | chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf); |
| 3393 | if (WARN_ON(!chanctx_conf)) { |
| 3394 | ret = -EINVAL; |
| 3395 | goto unlock; |
| 3396 | } |
| 3397 | band = chanctx_conf->def.chan->band; |
| 3398 | sta = sta_info_get_bss(sdata, peer); |
| 3399 | if (sta) { |
| 3400 | qos = sta->sta.wme; |
| 3401 | } else { |
| 3402 | ret = -ENOLINK; |
| 3403 | goto unlock; |
| 3404 | } |
| 3405 | |
| 3406 | if (qos) { |
| 3407 | fc = cpu_to_le16(IEEE80211_FTYPE_DATA | |
| 3408 | IEEE80211_STYPE_QOS_NULLFUNC | |
| 3409 | IEEE80211_FCTL_FROMDS); |
| 3410 | } else { |
| 3411 | size -= 2; |
| 3412 | fc = cpu_to_le16(IEEE80211_FTYPE_DATA | |
| 3413 | IEEE80211_STYPE_NULLFUNC | |
| 3414 | IEEE80211_FCTL_FROMDS); |
| 3415 | } |
| 3416 | |
| 3417 | skb = dev_alloc_skb(local->hw.extra_tx_headroom + size); |
| 3418 | if (!skb) { |
| 3419 | ret = -ENOMEM; |
| 3420 | goto unlock; |
| 3421 | } |
| 3422 | |
| 3423 | skb->dev = dev; |
| 3424 | |
| 3425 | skb_reserve(skb, local->hw.extra_tx_headroom); |
| 3426 | |
| 3427 | nullfunc = skb_put(skb, size); |
| 3428 | nullfunc->frame_control = fc; |
| 3429 | nullfunc->duration_id = 0; |
| 3430 | memcpy(nullfunc->addr1, sta->sta.addr, ETH_ALEN); |
| 3431 | memcpy(nullfunc->addr2, sdata->vif.addr, ETH_ALEN); |
| 3432 | memcpy(nullfunc->addr3, sdata->vif.addr, ETH_ALEN); |
| 3433 | nullfunc->seq_ctrl = 0; |
| 3434 | |
| 3435 | info = IEEE80211_SKB_CB(skb); |
| 3436 | |
| 3437 | info->flags |= IEEE80211_TX_CTL_REQ_TX_STATUS | |
| 3438 | IEEE80211_TX_INTFL_NL80211_FRAME_TX; |
| 3439 | info->band = band; |
| 3440 | |
| 3441 | skb_set_queue_mapping(skb, IEEE80211_AC_VO); |
| 3442 | skb->priority = 7; |
| 3443 | if (qos) |
| 3444 | nullfunc->qos_ctrl = cpu_to_le16(7); |
| 3445 | |
| 3446 | ret = ieee80211_attach_ack_skb(local, skb, cookie, GFP_ATOMIC); |
| 3447 | if (ret) { |
| 3448 | kfree_skb(skb); |
| 3449 | goto unlock; |
| 3450 | } |
| 3451 | |
| 3452 | local_bh_disable(); |
| 3453 | ieee80211_xmit(sdata, sta, skb, 0); |
| 3454 | local_bh_enable(); |
| 3455 | |
| 3456 | ret = 0; |
| 3457 | unlock: |
| 3458 | rcu_read_unlock(); |
| 3459 | mutex_unlock(&local->mtx); |
| 3460 | |
| 3461 | return ret; |
| 3462 | } |
| 3463 | |
| 3464 | static int ieee80211_cfg_get_channel(struct wiphy *wiphy, |
| 3465 | struct wireless_dev *wdev, |
| 3466 | struct cfg80211_chan_def *chandef) |
| 3467 | { |
| 3468 | struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev); |
| 3469 | struct ieee80211_local *local = wiphy_priv(wiphy); |
| 3470 | struct ieee80211_chanctx_conf *chanctx_conf; |
| 3471 | int ret = -ENODATA; |
| 3472 | |
| 3473 | rcu_read_lock(); |
| 3474 | chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf); |
| 3475 | if (chanctx_conf) { |
| 3476 | *chandef = sdata->vif.bss_conf.chandef; |
| 3477 | ret = 0; |
| 3478 | } else if (local->open_count > 0 && |
| 3479 | local->open_count == local->monitors && |
| 3480 | sdata->vif.type == NL80211_IFTYPE_MONITOR) { |
| 3481 | if (local->use_chanctx) |
| 3482 | *chandef = local->monitor_chandef; |
| 3483 | else |
| 3484 | *chandef = local->_oper_chandef; |
| 3485 | ret = 0; |
| 3486 | } |
| 3487 | rcu_read_unlock(); |
| 3488 | |
| 3489 | return ret; |
| 3490 | } |
| 3491 | |
| 3492 | #ifdef CONFIG_PM |
| 3493 | static void ieee80211_set_wakeup(struct wiphy *wiphy, bool enabled) |
| 3494 | { |
| 3495 | drv_set_wakeup(wiphy_priv(wiphy), enabled); |
| 3496 | } |
| 3497 | #endif |
| 3498 | |
| 3499 | static int ieee80211_set_qos_map(struct wiphy *wiphy, |
| 3500 | struct net_device *dev, |
| 3501 | struct cfg80211_qos_map *qos_map) |
| 3502 | { |
| 3503 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 3504 | struct mac80211_qos_map *new_qos_map, *old_qos_map; |
| 3505 | |
| 3506 | if (qos_map) { |
| 3507 | new_qos_map = kzalloc(sizeof(*new_qos_map), GFP_KERNEL); |
| 3508 | if (!new_qos_map) |
| 3509 | return -ENOMEM; |
| 3510 | memcpy(&new_qos_map->qos_map, qos_map, sizeof(*qos_map)); |
| 3511 | } else { |
| 3512 | /* A NULL qos_map was passed to disable QoS mapping */ |
| 3513 | new_qos_map = NULL; |
| 3514 | } |
| 3515 | |
| 3516 | old_qos_map = sdata_dereference(sdata->qos_map, sdata); |
| 3517 | rcu_assign_pointer(sdata->qos_map, new_qos_map); |
| 3518 | if (old_qos_map) |
| 3519 | kfree_rcu(old_qos_map, rcu_head); |
| 3520 | |
| 3521 | return 0; |
| 3522 | } |
| 3523 | |
| 3524 | static int ieee80211_set_ap_chanwidth(struct wiphy *wiphy, |
| 3525 | struct net_device *dev, |
| 3526 | struct cfg80211_chan_def *chandef) |
| 3527 | { |
| 3528 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 3529 | int ret; |
| 3530 | u32 changed = 0; |
| 3531 | |
| 3532 | ret = ieee80211_vif_change_bandwidth(sdata, chandef, &changed); |
| 3533 | if (ret == 0) |
| 3534 | ieee80211_bss_info_change_notify(sdata, changed); |
| 3535 | |
| 3536 | return ret; |
| 3537 | } |
| 3538 | |
| 3539 | static int ieee80211_add_tx_ts(struct wiphy *wiphy, struct net_device *dev, |
| 3540 | u8 tsid, const u8 *peer, u8 up, |
| 3541 | u16 admitted_time) |
| 3542 | { |
| 3543 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 3544 | struct ieee80211_if_managed *ifmgd = &sdata->u.mgd; |
| 3545 | int ac = ieee802_1d_to_ac[up]; |
| 3546 | |
| 3547 | if (sdata->vif.type != NL80211_IFTYPE_STATION) |
| 3548 | return -EOPNOTSUPP; |
| 3549 | |
| 3550 | if (!(sdata->wmm_acm & BIT(up))) |
| 3551 | return -EINVAL; |
| 3552 | |
| 3553 | if (ifmgd->tx_tspec[ac].admitted_time) |
| 3554 | return -EBUSY; |
| 3555 | |
| 3556 | if (admitted_time) { |
| 3557 | ifmgd->tx_tspec[ac].admitted_time = 32 * admitted_time; |
| 3558 | ifmgd->tx_tspec[ac].tsid = tsid; |
| 3559 | ifmgd->tx_tspec[ac].up = up; |
| 3560 | } |
| 3561 | |
| 3562 | return 0; |
| 3563 | } |
| 3564 | |
| 3565 | static int ieee80211_del_tx_ts(struct wiphy *wiphy, struct net_device *dev, |
| 3566 | u8 tsid, const u8 *peer) |
| 3567 | { |
| 3568 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 3569 | struct ieee80211_if_managed *ifmgd = &sdata->u.mgd; |
| 3570 | struct ieee80211_local *local = wiphy_priv(wiphy); |
| 3571 | int ac; |
| 3572 | |
| 3573 | for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) { |
| 3574 | struct ieee80211_sta_tx_tspec *tx_tspec = &ifmgd->tx_tspec[ac]; |
| 3575 | |
| 3576 | /* skip unused entries */ |
| 3577 | if (!tx_tspec->admitted_time) |
| 3578 | continue; |
| 3579 | |
| 3580 | if (tx_tspec->tsid != tsid) |
| 3581 | continue; |
| 3582 | |
| 3583 | /* due to this new packets will be reassigned to non-ACM ACs */ |
| 3584 | tx_tspec->up = -1; |
| 3585 | |
| 3586 | /* Make sure that all packets have been sent to avoid to |
| 3587 | * restore the QoS params on packets that are still on the |
| 3588 | * queues. |
| 3589 | */ |
| 3590 | synchronize_net(); |
| 3591 | ieee80211_flush_queues(local, sdata, false); |
| 3592 | |
| 3593 | /* restore the normal QoS parameters |
| 3594 | * (unconditionally to avoid races) |
| 3595 | */ |
| 3596 | tx_tspec->action = TX_TSPEC_ACTION_STOP_DOWNGRADE; |
| 3597 | tx_tspec->downgraded = false; |
| 3598 | ieee80211_sta_handle_tspec_ac_params(sdata); |
| 3599 | |
| 3600 | /* finally clear all the data */ |
| 3601 | memset(tx_tspec, 0, sizeof(*tx_tspec)); |
| 3602 | |
| 3603 | return 0; |
| 3604 | } |
| 3605 | |
| 3606 | return -ENOENT; |
| 3607 | } |
| 3608 | |
| 3609 | void ieee80211_nan_func_terminated(struct ieee80211_vif *vif, |
| 3610 | u8 inst_id, |
| 3611 | enum nl80211_nan_func_term_reason reason, |
| 3612 | gfp_t gfp) |
| 3613 | { |
| 3614 | struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif); |
| 3615 | struct cfg80211_nan_func *func; |
| 3616 | u64 cookie; |
| 3617 | |
| 3618 | if (WARN_ON(vif->type != NL80211_IFTYPE_NAN)) |
| 3619 | return; |
| 3620 | |
| 3621 | spin_lock_bh(&sdata->u.nan.func_lock); |
| 3622 | |
| 3623 | func = idr_find(&sdata->u.nan.function_inst_ids, inst_id); |
| 3624 | if (WARN_ON(!func)) { |
| 3625 | spin_unlock_bh(&sdata->u.nan.func_lock); |
| 3626 | return; |
| 3627 | } |
| 3628 | |
| 3629 | cookie = func->cookie; |
| 3630 | idr_remove(&sdata->u.nan.function_inst_ids, inst_id); |
| 3631 | |
| 3632 | spin_unlock_bh(&sdata->u.nan.func_lock); |
| 3633 | |
| 3634 | cfg80211_free_nan_func(func); |
| 3635 | |
| 3636 | cfg80211_nan_func_terminated(ieee80211_vif_to_wdev(vif), inst_id, |
| 3637 | reason, cookie, gfp); |
| 3638 | } |
| 3639 | EXPORT_SYMBOL(ieee80211_nan_func_terminated); |
| 3640 | |
| 3641 | void ieee80211_nan_func_match(struct ieee80211_vif *vif, |
| 3642 | struct cfg80211_nan_match_params *match, |
| 3643 | gfp_t gfp) |
| 3644 | { |
| 3645 | struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif); |
| 3646 | struct cfg80211_nan_func *func; |
| 3647 | |
| 3648 | if (WARN_ON(vif->type != NL80211_IFTYPE_NAN)) |
| 3649 | return; |
| 3650 | |
| 3651 | spin_lock_bh(&sdata->u.nan.func_lock); |
| 3652 | |
| 3653 | func = idr_find(&sdata->u.nan.function_inst_ids, match->inst_id); |
| 3654 | if (WARN_ON(!func)) { |
| 3655 | spin_unlock_bh(&sdata->u.nan.func_lock); |
| 3656 | return; |
| 3657 | } |
| 3658 | match->cookie = func->cookie; |
| 3659 | |
| 3660 | spin_unlock_bh(&sdata->u.nan.func_lock); |
| 3661 | |
| 3662 | cfg80211_nan_match(ieee80211_vif_to_wdev(vif), match, gfp); |
| 3663 | } |
| 3664 | EXPORT_SYMBOL(ieee80211_nan_func_match); |
| 3665 | |
| 3666 | static int ieee80211_set_multicast_to_unicast(struct wiphy *wiphy, |
| 3667 | struct net_device *dev, |
| 3668 | const bool enabled) |
| 3669 | { |
| 3670 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 3671 | |
| 3672 | sdata->u.ap.multicast_to_unicast = enabled; |
| 3673 | |
| 3674 | return 0; |
| 3675 | } |
| 3676 | |
| 3677 | void ieee80211_fill_txq_stats(struct cfg80211_txq_stats *txqstats, |
| 3678 | struct txq_info *txqi) |
| 3679 | { |
| 3680 | if (!(txqstats->filled & BIT(NL80211_TXQ_STATS_BACKLOG_BYTES))) { |
| 3681 | txqstats->filled |= BIT(NL80211_TXQ_STATS_BACKLOG_BYTES); |
| 3682 | txqstats->backlog_bytes = txqi->tin.backlog_bytes; |
| 3683 | } |
| 3684 | |
| 3685 | if (!(txqstats->filled & BIT(NL80211_TXQ_STATS_BACKLOG_PACKETS))) { |
| 3686 | txqstats->filled |= BIT(NL80211_TXQ_STATS_BACKLOG_PACKETS); |
| 3687 | txqstats->backlog_packets = txqi->tin.backlog_packets; |
| 3688 | } |
| 3689 | |
| 3690 | if (!(txqstats->filled & BIT(NL80211_TXQ_STATS_FLOWS))) { |
| 3691 | txqstats->filled |= BIT(NL80211_TXQ_STATS_FLOWS); |
| 3692 | txqstats->flows = txqi->tin.flows; |
| 3693 | } |
| 3694 | |
| 3695 | if (!(txqstats->filled & BIT(NL80211_TXQ_STATS_DROPS))) { |
| 3696 | txqstats->filled |= BIT(NL80211_TXQ_STATS_DROPS); |
| 3697 | txqstats->drops = txqi->cstats.drop_count; |
| 3698 | } |
| 3699 | |
| 3700 | if (!(txqstats->filled & BIT(NL80211_TXQ_STATS_ECN_MARKS))) { |
| 3701 | txqstats->filled |= BIT(NL80211_TXQ_STATS_ECN_MARKS); |
| 3702 | txqstats->ecn_marks = txqi->cstats.ecn_mark; |
| 3703 | } |
| 3704 | |
| 3705 | if (!(txqstats->filled & BIT(NL80211_TXQ_STATS_OVERLIMIT))) { |
| 3706 | txqstats->filled |= BIT(NL80211_TXQ_STATS_OVERLIMIT); |
| 3707 | txqstats->overlimit = txqi->tin.overlimit; |
| 3708 | } |
| 3709 | |
| 3710 | if (!(txqstats->filled & BIT(NL80211_TXQ_STATS_COLLISIONS))) { |
| 3711 | txqstats->filled |= BIT(NL80211_TXQ_STATS_COLLISIONS); |
| 3712 | txqstats->collisions = txqi->tin.collisions; |
| 3713 | } |
| 3714 | |
| 3715 | if (!(txqstats->filled & BIT(NL80211_TXQ_STATS_TX_BYTES))) { |
| 3716 | txqstats->filled |= BIT(NL80211_TXQ_STATS_TX_BYTES); |
| 3717 | txqstats->tx_bytes = txqi->tin.tx_bytes; |
| 3718 | } |
| 3719 | |
| 3720 | if (!(txqstats->filled & BIT(NL80211_TXQ_STATS_TX_PACKETS))) { |
| 3721 | txqstats->filled |= BIT(NL80211_TXQ_STATS_TX_PACKETS); |
| 3722 | txqstats->tx_packets = txqi->tin.tx_packets; |
| 3723 | } |
| 3724 | } |
| 3725 | |
| 3726 | static int ieee80211_get_txq_stats(struct wiphy *wiphy, |
| 3727 | struct wireless_dev *wdev, |
| 3728 | struct cfg80211_txq_stats *txqstats) |
| 3729 | { |
| 3730 | struct ieee80211_local *local = wiphy_priv(wiphy); |
| 3731 | struct ieee80211_sub_if_data *sdata; |
| 3732 | int ret = 0; |
| 3733 | |
| 3734 | if (!local->ops->wake_tx_queue) |
| 3735 | return 1; |
| 3736 | |
| 3737 | spin_lock_bh(&local->fq.lock); |
| 3738 | rcu_read_lock(); |
| 3739 | |
| 3740 | if (wdev) { |
| 3741 | sdata = IEEE80211_WDEV_TO_SUB_IF(wdev); |
| 3742 | if (!sdata->vif.txq) { |
| 3743 | ret = 1; |
| 3744 | goto out; |
| 3745 | } |
| 3746 | ieee80211_fill_txq_stats(txqstats, to_txq_info(sdata->vif.txq)); |
| 3747 | } else { |
| 3748 | /* phy stats */ |
| 3749 | txqstats->filled |= BIT(NL80211_TXQ_STATS_BACKLOG_PACKETS) | |
| 3750 | BIT(NL80211_TXQ_STATS_BACKLOG_BYTES) | |
| 3751 | BIT(NL80211_TXQ_STATS_OVERLIMIT) | |
| 3752 | BIT(NL80211_TXQ_STATS_OVERMEMORY) | |
| 3753 | BIT(NL80211_TXQ_STATS_COLLISIONS) | |
| 3754 | BIT(NL80211_TXQ_STATS_MAX_FLOWS); |
| 3755 | txqstats->backlog_packets = local->fq.backlog; |
| 3756 | txqstats->backlog_bytes = local->fq.memory_usage; |
| 3757 | txqstats->overlimit = local->fq.overlimit; |
| 3758 | txqstats->overmemory = local->fq.overmemory; |
| 3759 | txqstats->collisions = local->fq.collisions; |
| 3760 | txqstats->max_flows = local->fq.flows_cnt; |
| 3761 | } |
| 3762 | |
| 3763 | out: |
| 3764 | rcu_read_unlock(); |
| 3765 | spin_unlock_bh(&local->fq.lock); |
| 3766 | |
| 3767 | return ret; |
| 3768 | } |
| 3769 | |
| 3770 | const struct cfg80211_ops mac80211_config_ops = { |
| 3771 | .add_virtual_intf = ieee80211_add_iface, |
| 3772 | .del_virtual_intf = ieee80211_del_iface, |
| 3773 | .change_virtual_intf = ieee80211_change_iface, |
| 3774 | .start_p2p_device = ieee80211_start_p2p_device, |
| 3775 | .stop_p2p_device = ieee80211_stop_p2p_device, |
| 3776 | .add_key = ieee80211_add_key, |
| 3777 | .del_key = ieee80211_del_key, |
| 3778 | .get_key = ieee80211_get_key, |
| 3779 | .set_default_key = ieee80211_config_default_key, |
| 3780 | .set_default_mgmt_key = ieee80211_config_default_mgmt_key, |
| 3781 | .start_ap = ieee80211_start_ap, |
| 3782 | .change_beacon = ieee80211_change_beacon, |
| 3783 | .stop_ap = ieee80211_stop_ap, |
| 3784 | .add_station = ieee80211_add_station, |
| 3785 | .del_station = ieee80211_del_station, |
| 3786 | .change_station = ieee80211_change_station, |
| 3787 | .get_station = ieee80211_get_station, |
| 3788 | .dump_station = ieee80211_dump_station, |
| 3789 | .dump_survey = ieee80211_dump_survey, |
| 3790 | #ifdef CONFIG_MAC80211_MESH |
| 3791 | .add_mpath = ieee80211_add_mpath, |
| 3792 | .del_mpath = ieee80211_del_mpath, |
| 3793 | .change_mpath = ieee80211_change_mpath, |
| 3794 | .get_mpath = ieee80211_get_mpath, |
| 3795 | .dump_mpath = ieee80211_dump_mpath, |
| 3796 | .get_mpp = ieee80211_get_mpp, |
| 3797 | .dump_mpp = ieee80211_dump_mpp, |
| 3798 | .update_mesh_config = ieee80211_update_mesh_config, |
| 3799 | .get_mesh_config = ieee80211_get_mesh_config, |
| 3800 | .join_mesh = ieee80211_join_mesh, |
| 3801 | .leave_mesh = ieee80211_leave_mesh, |
| 3802 | #endif |
| 3803 | .join_ocb = ieee80211_join_ocb, |
| 3804 | .leave_ocb = ieee80211_leave_ocb, |
| 3805 | .change_bss = ieee80211_change_bss, |
| 3806 | .set_txq_params = ieee80211_set_txq_params, |
| 3807 | .set_monitor_channel = ieee80211_set_monitor_channel, |
| 3808 | .suspend = ieee80211_suspend, |
| 3809 | .resume = ieee80211_resume, |
| 3810 | .scan = ieee80211_scan, |
| 3811 | .abort_scan = ieee80211_abort_scan, |
| 3812 | .sched_scan_start = ieee80211_sched_scan_start, |
| 3813 | .sched_scan_stop = ieee80211_sched_scan_stop, |
| 3814 | .auth = ieee80211_auth, |
| 3815 | .assoc = ieee80211_assoc, |
| 3816 | .deauth = ieee80211_deauth, |
| 3817 | .disassoc = ieee80211_disassoc, |
| 3818 | .join_ibss = ieee80211_join_ibss, |
| 3819 | .leave_ibss = ieee80211_leave_ibss, |
| 3820 | .set_mcast_rate = ieee80211_set_mcast_rate, |
| 3821 | .set_wiphy_params = ieee80211_set_wiphy_params, |
| 3822 | .set_tx_power = ieee80211_set_tx_power, |
| 3823 | .get_tx_power = ieee80211_get_tx_power, |
| 3824 | .set_wds_peer = ieee80211_set_wds_peer, |
| 3825 | .rfkill_poll = ieee80211_rfkill_poll, |
| 3826 | CFG80211_TESTMODE_CMD(ieee80211_testmode_cmd) |
| 3827 | CFG80211_TESTMODE_DUMP(ieee80211_testmode_dump) |
| 3828 | .set_power_mgmt = ieee80211_set_power_mgmt, |
| 3829 | .set_bitrate_mask = ieee80211_set_bitrate_mask, |
| 3830 | .remain_on_channel = ieee80211_remain_on_channel, |
| 3831 | .cancel_remain_on_channel = ieee80211_cancel_remain_on_channel, |
| 3832 | .mgmt_tx = ieee80211_mgmt_tx, |
| 3833 | .mgmt_tx_cancel_wait = ieee80211_mgmt_tx_cancel_wait, |
| 3834 | .set_cqm_rssi_config = ieee80211_set_cqm_rssi_config, |
| 3835 | .set_cqm_rssi_range_config = ieee80211_set_cqm_rssi_range_config, |
| 3836 | .mgmt_frame_register = ieee80211_mgmt_frame_register, |
| 3837 | .set_antenna = ieee80211_set_antenna, |
| 3838 | .get_antenna = ieee80211_get_antenna, |
| 3839 | .set_rekey_data = ieee80211_set_rekey_data, |
| 3840 | .tdls_oper = ieee80211_tdls_oper, |
| 3841 | .tdls_mgmt = ieee80211_tdls_mgmt, |
| 3842 | .tdls_channel_switch = ieee80211_tdls_channel_switch, |
| 3843 | .tdls_cancel_channel_switch = ieee80211_tdls_cancel_channel_switch, |
| 3844 | .probe_client = ieee80211_probe_client, |
| 3845 | .set_noack_map = ieee80211_set_noack_map, |
| 3846 | #ifdef CONFIG_PM |
| 3847 | .set_wakeup = ieee80211_set_wakeup, |
| 3848 | #endif |
| 3849 | .get_channel = ieee80211_cfg_get_channel, |
| 3850 | .start_radar_detection = ieee80211_start_radar_detection, |
| 3851 | .channel_switch = ieee80211_channel_switch, |
| 3852 | .set_qos_map = ieee80211_set_qos_map, |
| 3853 | .set_ap_chanwidth = ieee80211_set_ap_chanwidth, |
| 3854 | .add_tx_ts = ieee80211_add_tx_ts, |
| 3855 | .del_tx_ts = ieee80211_del_tx_ts, |
| 3856 | .start_nan = ieee80211_start_nan, |
| 3857 | .stop_nan = ieee80211_stop_nan, |
| 3858 | .nan_change_conf = ieee80211_nan_change_conf, |
| 3859 | .add_nan_func = ieee80211_add_nan_func, |
| 3860 | .del_nan_func = ieee80211_del_nan_func, |
| 3861 | .set_multicast_to_unicast = ieee80211_set_multicast_to_unicast, |
| 3862 | .tx_control_port = ieee80211_tx_control_port, |
| 3863 | .get_txq_stats = ieee80211_get_txq_stats, |
| 3864 | }; |