1 // SPDX-License-Identifier: GPL-2.0-only 2 /* 3 * Copyright 2015 Intel Deutschland GmbH 4 * Copyright (C) 2022 Intel Corporation 5 */ 6 #include <net/mac80211.h> 7 #include "ieee80211_i.h" 8 #include "trace.h" 9 #include "driver-ops.h" 10 #include "debugfs_sta.h" 11 #include "debugfs_netdev.h" 12 13 int drv_start(struct ieee80211_local *local) 14 { 15 int ret; 16 17 might_sleep(); 18 lockdep_assert_wiphy(local->hw.wiphy); 19 20 if (WARN_ON(local->started)) 21 return -EALREADY; 22 23 trace_drv_start(local); 24 local->started = true; 25 /* allow rx frames */ 26 smp_mb(); 27 ret = local->ops->start(&local->hw); 28 trace_drv_return_int(local, ret); 29 30 if (ret) 31 local->started = false; 32 33 return ret; 34 } 35 36 void drv_stop(struct ieee80211_local *local) 37 { 38 might_sleep(); 39 lockdep_assert_wiphy(local->hw.wiphy); 40 41 if (WARN_ON(!local->started)) 42 return; 43 44 trace_drv_stop(local); 45 local->ops->stop(&local->hw); 46 trace_drv_return_void(local); 47 48 /* sync away all work on the tasklet before clearing started */ 49 tasklet_disable(&local->tasklet); 50 tasklet_enable(&local->tasklet); 51 52 barrier(); 53 54 local->started = false; 55 } 56 57 int drv_add_interface(struct ieee80211_local *local, 58 struct ieee80211_sub_if_data *sdata) 59 { 60 int ret; 61 62 might_sleep(); 63 lockdep_assert_wiphy(local->hw.wiphy); 64 65 if (WARN_ON(sdata->vif.type == NL80211_IFTYPE_AP_VLAN || 66 (sdata->vif.type == NL80211_IFTYPE_MONITOR && 67 !ieee80211_hw_check(&local->hw, WANT_MONITOR_VIF) && 68 !(sdata->u.mntr.flags & MONITOR_FLAG_ACTIVE)))) 69 return -EINVAL; 70 71 trace_drv_add_interface(local, sdata); 72 ret = local->ops->add_interface(&local->hw, &sdata->vif); 73 trace_drv_return_int(local, ret); 74 75 if (ret == 0) 76 sdata->flags |= IEEE80211_SDATA_IN_DRIVER; 77 78 return ret; 79 } 80 81 int drv_change_interface(struct ieee80211_local *local, 82 struct ieee80211_sub_if_data *sdata, 83 enum nl80211_iftype type, bool p2p) 84 { 85 int ret; 86 87 might_sleep(); 88 lockdep_assert_wiphy(local->hw.wiphy); 89 90 if (!check_sdata_in_driver(sdata)) 91 return -EIO; 92 93 trace_drv_change_interface(local, sdata, type, p2p); 94 ret = local->ops->change_interface(&local->hw, &sdata->vif, type, p2p); 95 trace_drv_return_int(local, ret); 96 return ret; 97 } 98 99 void drv_remove_interface(struct ieee80211_local *local, 100 struct ieee80211_sub_if_data *sdata) 101 { 102 might_sleep(); 103 lockdep_assert_wiphy(local->hw.wiphy); 104 105 if (!check_sdata_in_driver(sdata)) 106 return; 107 108 trace_drv_remove_interface(local, sdata); 109 local->ops->remove_interface(&local->hw, &sdata->vif); 110 sdata->flags &= ~IEEE80211_SDATA_IN_DRIVER; 111 trace_drv_return_void(local); 112 } 113 114 __must_check 115 int drv_sta_state(struct ieee80211_local *local, 116 struct ieee80211_sub_if_data *sdata, 117 struct sta_info *sta, 118 enum ieee80211_sta_state old_state, 119 enum ieee80211_sta_state new_state) 120 { 121 int ret = 0; 122 123 might_sleep(); 124 lockdep_assert_wiphy(local->hw.wiphy); 125 126 sdata = get_bss_sdata(sdata); 127 if (!check_sdata_in_driver(sdata)) 128 return -EIO; 129 130 trace_drv_sta_state(local, sdata, &sta->sta, old_state, new_state); 131 if (local->ops->sta_state) { 132 ret = local->ops->sta_state(&local->hw, &sdata->vif, &sta->sta, 133 old_state, new_state); 134 } else if (old_state == IEEE80211_STA_AUTH && 135 new_state == IEEE80211_STA_ASSOC) { 136 ret = drv_sta_add(local, sdata, &sta->sta); 137 if (ret == 0) { 138 sta->uploaded = true; 139 if (rcu_access_pointer(sta->sta.rates)) 140 drv_sta_rate_tbl_update(local, sdata, &sta->sta); 141 } 142 } else if (old_state == IEEE80211_STA_ASSOC && 143 new_state == IEEE80211_STA_AUTH) { 144 drv_sta_remove(local, sdata, &sta->sta); 145 } 146 trace_drv_return_int(local, ret); 147 return ret; 148 } 149 150 __must_check 151 int drv_sta_set_txpwr(struct ieee80211_local *local, 152 struct ieee80211_sub_if_data *sdata, 153 struct sta_info *sta) 154 { 155 int ret = -EOPNOTSUPP; 156 157 might_sleep(); 158 lockdep_assert_wiphy(local->hw.wiphy); 159 160 sdata = get_bss_sdata(sdata); 161 if (!check_sdata_in_driver(sdata)) 162 return -EIO; 163 164 trace_drv_sta_set_txpwr(local, sdata, &sta->sta); 165 if (local->ops->sta_set_txpwr) 166 ret = local->ops->sta_set_txpwr(&local->hw, &sdata->vif, 167 &sta->sta); 168 trace_drv_return_int(local, ret); 169 return ret; 170 } 171 172 void drv_sta_rc_update(struct ieee80211_local *local, 173 struct ieee80211_sub_if_data *sdata, 174 struct ieee80211_sta *sta, u32 changed) 175 { 176 sdata = get_bss_sdata(sdata); 177 if (!check_sdata_in_driver(sdata)) 178 return; 179 180 WARN_ON(changed & IEEE80211_RC_SUPP_RATES_CHANGED && 181 (sdata->vif.type != NL80211_IFTYPE_ADHOC && 182 sdata->vif.type != NL80211_IFTYPE_MESH_POINT)); 183 184 trace_drv_sta_rc_update(local, sdata, sta, changed); 185 if (local->ops->sta_rc_update) 186 local->ops->sta_rc_update(&local->hw, &sdata->vif, 187 sta, changed); 188 189 trace_drv_return_void(local); 190 } 191 192 int drv_conf_tx(struct ieee80211_local *local, 193 struct ieee80211_link_data *link, u16 ac, 194 const struct ieee80211_tx_queue_params *params) 195 { 196 struct ieee80211_sub_if_data *sdata = link->sdata; 197 int ret = -EOPNOTSUPP; 198 199 might_sleep(); 200 lockdep_assert_wiphy(local->hw.wiphy); 201 202 if (!check_sdata_in_driver(sdata)) 203 return -EIO; 204 205 if (sdata->vif.active_links && 206 !(sdata->vif.active_links & BIT(link->link_id))) 207 return 0; 208 209 if (params->cw_min == 0 || params->cw_min > params->cw_max) { 210 /* 211 * If we can't configure hardware anyway, don't warn. We may 212 * never have initialized the CW parameters. 213 */ 214 WARN_ONCE(local->ops->conf_tx, 215 "%s: invalid CW_min/CW_max: %d/%d\n", 216 sdata->name, params->cw_min, params->cw_max); 217 return -EINVAL; 218 } 219 220 trace_drv_conf_tx(local, sdata, link->link_id, ac, params); 221 if (local->ops->conf_tx) 222 ret = local->ops->conf_tx(&local->hw, &sdata->vif, 223 link->link_id, ac, params); 224 trace_drv_return_int(local, ret); 225 return ret; 226 } 227 228 u64 drv_get_tsf(struct ieee80211_local *local, 229 struct ieee80211_sub_if_data *sdata) 230 { 231 u64 ret = -1ULL; 232 233 might_sleep(); 234 lockdep_assert_wiphy(local->hw.wiphy); 235 236 if (!check_sdata_in_driver(sdata)) 237 return ret; 238 239 trace_drv_get_tsf(local, sdata); 240 if (local->ops->get_tsf) 241 ret = local->ops->get_tsf(&local->hw, &sdata->vif); 242 trace_drv_return_u64(local, ret); 243 return ret; 244 } 245 246 void drv_set_tsf(struct ieee80211_local *local, 247 struct ieee80211_sub_if_data *sdata, 248 u64 tsf) 249 { 250 might_sleep(); 251 lockdep_assert_wiphy(local->hw.wiphy); 252 253 if (!check_sdata_in_driver(sdata)) 254 return; 255 256 trace_drv_set_tsf(local, sdata, tsf); 257 if (local->ops->set_tsf) 258 local->ops->set_tsf(&local->hw, &sdata->vif, tsf); 259 trace_drv_return_void(local); 260 } 261 262 void drv_offset_tsf(struct ieee80211_local *local, 263 struct ieee80211_sub_if_data *sdata, 264 s64 offset) 265 { 266 might_sleep(); 267 lockdep_assert_wiphy(local->hw.wiphy); 268 269 if (!check_sdata_in_driver(sdata)) 270 return; 271 272 trace_drv_offset_tsf(local, sdata, offset); 273 if (local->ops->offset_tsf) 274 local->ops->offset_tsf(&local->hw, &sdata->vif, offset); 275 trace_drv_return_void(local); 276 } 277 278 void drv_reset_tsf(struct ieee80211_local *local, 279 struct ieee80211_sub_if_data *sdata) 280 { 281 might_sleep(); 282 lockdep_assert_wiphy(local->hw.wiphy); 283 284 if (!check_sdata_in_driver(sdata)) 285 return; 286 287 trace_drv_reset_tsf(local, sdata); 288 if (local->ops->reset_tsf) 289 local->ops->reset_tsf(&local->hw, &sdata->vif); 290 trace_drv_return_void(local); 291 } 292 293 int drv_assign_vif_chanctx(struct ieee80211_local *local, 294 struct ieee80211_sub_if_data *sdata, 295 struct ieee80211_bss_conf *link_conf, 296 struct ieee80211_chanctx *ctx) 297 { 298 int ret = 0; 299 300 might_sleep(); 301 lockdep_assert_wiphy(local->hw.wiphy); 302 303 if (!check_sdata_in_driver(sdata)) 304 return -EIO; 305 306 if (sdata->vif.active_links && 307 !(sdata->vif.active_links & BIT(link_conf->link_id))) 308 return 0; 309 310 trace_drv_assign_vif_chanctx(local, sdata, link_conf, ctx); 311 if (local->ops->assign_vif_chanctx) { 312 WARN_ON_ONCE(!ctx->driver_present); 313 ret = local->ops->assign_vif_chanctx(&local->hw, 314 &sdata->vif, 315 link_conf, 316 &ctx->conf); 317 } 318 trace_drv_return_int(local, ret); 319 320 return ret; 321 } 322 323 void drv_unassign_vif_chanctx(struct ieee80211_local *local, 324 struct ieee80211_sub_if_data *sdata, 325 struct ieee80211_bss_conf *link_conf, 326 struct ieee80211_chanctx *ctx) 327 { 328 might_sleep(); 329 lockdep_assert_wiphy(local->hw.wiphy); 330 331 if (!check_sdata_in_driver(sdata)) 332 return; 333 334 if (sdata->vif.active_links && 335 !(sdata->vif.active_links & BIT(link_conf->link_id))) 336 return; 337 338 trace_drv_unassign_vif_chanctx(local, sdata, link_conf, ctx); 339 if (local->ops->unassign_vif_chanctx) { 340 WARN_ON_ONCE(!ctx->driver_present); 341 local->ops->unassign_vif_chanctx(&local->hw, 342 &sdata->vif, 343 link_conf, 344 &ctx->conf); 345 } 346 trace_drv_return_void(local); 347 } 348 349 int drv_switch_vif_chanctx(struct ieee80211_local *local, 350 struct ieee80211_vif_chanctx_switch *vifs, 351 int n_vifs, enum ieee80211_chanctx_switch_mode mode) 352 { 353 int ret = 0; 354 int i; 355 356 might_sleep(); 357 lockdep_assert_wiphy(local->hw.wiphy); 358 359 if (!local->ops->switch_vif_chanctx) 360 return -EOPNOTSUPP; 361 362 for (i = 0; i < n_vifs; i++) { 363 struct ieee80211_chanctx *new_ctx = 364 container_of(vifs[i].new_ctx, 365 struct ieee80211_chanctx, 366 conf); 367 struct ieee80211_chanctx *old_ctx = 368 container_of(vifs[i].old_ctx, 369 struct ieee80211_chanctx, 370 conf); 371 372 WARN_ON_ONCE(!old_ctx->driver_present); 373 WARN_ON_ONCE((mode == CHANCTX_SWMODE_SWAP_CONTEXTS && 374 new_ctx->driver_present) || 375 (mode == CHANCTX_SWMODE_REASSIGN_VIF && 376 !new_ctx->driver_present)); 377 } 378 379 trace_drv_switch_vif_chanctx(local, vifs, n_vifs, mode); 380 ret = local->ops->switch_vif_chanctx(&local->hw, 381 vifs, n_vifs, mode); 382 trace_drv_return_int(local, ret); 383 384 if (!ret && mode == CHANCTX_SWMODE_SWAP_CONTEXTS) { 385 for (i = 0; i < n_vifs; i++) { 386 struct ieee80211_chanctx *new_ctx = 387 container_of(vifs[i].new_ctx, 388 struct ieee80211_chanctx, 389 conf); 390 struct ieee80211_chanctx *old_ctx = 391 container_of(vifs[i].old_ctx, 392 struct ieee80211_chanctx, 393 conf); 394 395 new_ctx->driver_present = true; 396 old_ctx->driver_present = false; 397 } 398 } 399 400 return ret; 401 } 402 403 int drv_ampdu_action(struct ieee80211_local *local, 404 struct ieee80211_sub_if_data *sdata, 405 struct ieee80211_ampdu_params *params) 406 { 407 int ret = -EOPNOTSUPP; 408 409 might_sleep(); 410 lockdep_assert_wiphy(local->hw.wiphy); 411 412 sdata = get_bss_sdata(sdata); 413 if (!check_sdata_in_driver(sdata)) 414 return -EIO; 415 416 trace_drv_ampdu_action(local, sdata, params); 417 418 if (local->ops->ampdu_action) 419 ret = local->ops->ampdu_action(&local->hw, &sdata->vif, params); 420 421 trace_drv_return_int(local, ret); 422 423 return ret; 424 } 425 426 void drv_link_info_changed(struct ieee80211_local *local, 427 struct ieee80211_sub_if_data *sdata, 428 struct ieee80211_bss_conf *info, 429 int link_id, u64 changed) 430 { 431 might_sleep(); 432 lockdep_assert_wiphy(local->hw.wiphy); 433 434 if (WARN_ON_ONCE(changed & (BSS_CHANGED_BEACON | 435 BSS_CHANGED_BEACON_ENABLED) && 436 sdata->vif.type != NL80211_IFTYPE_AP && 437 sdata->vif.type != NL80211_IFTYPE_ADHOC && 438 sdata->vif.type != NL80211_IFTYPE_MESH_POINT && 439 sdata->vif.type != NL80211_IFTYPE_OCB)) 440 return; 441 442 if (WARN_ON_ONCE(sdata->vif.type == NL80211_IFTYPE_P2P_DEVICE || 443 sdata->vif.type == NL80211_IFTYPE_NAN || 444 (sdata->vif.type == NL80211_IFTYPE_MONITOR && 445 !sdata->vif.bss_conf.mu_mimo_owner && 446 !(changed & BSS_CHANGED_TXPOWER)))) 447 return; 448 449 if (!check_sdata_in_driver(sdata)) 450 return; 451 452 if (sdata->vif.active_links && 453 !(sdata->vif.active_links & BIT(link_id))) 454 return; 455 456 trace_drv_link_info_changed(local, sdata, info, changed); 457 if (local->ops->link_info_changed) 458 local->ops->link_info_changed(&local->hw, &sdata->vif, 459 info, changed); 460 else if (local->ops->bss_info_changed) 461 local->ops->bss_info_changed(&local->hw, &sdata->vif, 462 info, changed); 463 trace_drv_return_void(local); 464 } 465 466 int drv_set_key(struct ieee80211_local *local, 467 enum set_key_cmd cmd, 468 struct ieee80211_sub_if_data *sdata, 469 struct ieee80211_sta *sta, 470 struct ieee80211_key_conf *key) 471 { 472 int ret; 473 474 might_sleep(); 475 lockdep_assert_wiphy(local->hw.wiphy); 476 477 sdata = get_bss_sdata(sdata); 478 if (!check_sdata_in_driver(sdata)) 479 return -EIO; 480 481 if (WARN_ON(key->link_id >= 0 && sdata->vif.active_links && 482 !(sdata->vif.active_links & BIT(key->link_id)))) 483 return -ENOLINK; 484 485 trace_drv_set_key(local, cmd, sdata, sta, key); 486 ret = local->ops->set_key(&local->hw, cmd, &sdata->vif, sta, key); 487 trace_drv_return_int(local, ret); 488 return ret; 489 } 490 491 int drv_change_vif_links(struct ieee80211_local *local, 492 struct ieee80211_sub_if_data *sdata, 493 u16 old_links, u16 new_links, 494 struct ieee80211_bss_conf *old[IEEE80211_MLD_MAX_NUM_LINKS]) 495 { 496 struct ieee80211_link_data *link; 497 unsigned long links_to_add; 498 unsigned long links_to_rem; 499 unsigned int link_id; 500 int ret = -EOPNOTSUPP; 501 502 might_sleep(); 503 lockdep_assert_wiphy(local->hw.wiphy); 504 505 if (!check_sdata_in_driver(sdata)) 506 return -EIO; 507 508 if (old_links == new_links) 509 return 0; 510 511 links_to_add = ~old_links & new_links; 512 links_to_rem = old_links & ~new_links; 513 514 for_each_set_bit(link_id, &links_to_rem, IEEE80211_MLD_MAX_NUM_LINKS) { 515 link = rcu_access_pointer(sdata->link[link_id]); 516 517 ieee80211_link_debugfs_drv_remove(link); 518 } 519 520 trace_drv_change_vif_links(local, sdata, old_links, new_links); 521 if (local->ops->change_vif_links) 522 ret = local->ops->change_vif_links(&local->hw, &sdata->vif, 523 old_links, new_links, old); 524 trace_drv_return_int(local, ret); 525 526 if (ret) 527 return ret; 528 529 for_each_set_bit(link_id, &links_to_add, IEEE80211_MLD_MAX_NUM_LINKS) { 530 link = rcu_access_pointer(sdata->link[link_id]); 531 532 ieee80211_link_debugfs_drv_add(link); 533 } 534 535 return 0; 536 } 537 538 int drv_change_sta_links(struct ieee80211_local *local, 539 struct ieee80211_sub_if_data *sdata, 540 struct ieee80211_sta *sta, 541 u16 old_links, u16 new_links) 542 { 543 struct sta_info *info = container_of(sta, struct sta_info, sta); 544 struct link_sta_info *link_sta; 545 unsigned long links_to_add; 546 unsigned long links_to_rem; 547 unsigned int link_id; 548 int ret = -EOPNOTSUPP; 549 550 might_sleep(); 551 lockdep_assert_wiphy(local->hw.wiphy); 552 553 if (!check_sdata_in_driver(sdata)) 554 return -EIO; 555 556 old_links &= sdata->vif.active_links; 557 new_links &= sdata->vif.active_links; 558 559 if (old_links == new_links) 560 return 0; 561 562 links_to_add = ~old_links & new_links; 563 links_to_rem = old_links & ~new_links; 564 565 for_each_set_bit(link_id, &links_to_rem, IEEE80211_MLD_MAX_NUM_LINKS) { 566 link_sta = rcu_dereference_protected(info->link[link_id], 567 lockdep_is_held(&local->hw.wiphy->mtx)); 568 569 ieee80211_link_sta_debugfs_drv_remove(link_sta); 570 } 571 572 trace_drv_change_sta_links(local, sdata, sta, old_links, new_links); 573 if (local->ops->change_sta_links) 574 ret = local->ops->change_sta_links(&local->hw, &sdata->vif, sta, 575 old_links, new_links); 576 trace_drv_return_int(local, ret); 577 578 if (ret) 579 return ret; 580 581 for_each_set_bit(link_id, &links_to_add, IEEE80211_MLD_MAX_NUM_LINKS) { 582 link_sta = rcu_dereference_protected(info->link[link_id], 583 lockdep_is_held(&local->hw.wiphy->mtx)); 584 ieee80211_link_sta_debugfs_drv_add(link_sta); 585 } 586 587 return 0; 588 } 589