1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright 2002-2005, Instant802 Networks, Inc.
5 * Copyright 2013-2014 Intel Mobile Communications GmbH
6 * Copyright (C) 2015 - 2017 Intel Deutschland GmbH
7 * Copyright (C) 2018-2022 Intel Corporation
10 #include <linux/module.h>
11 #include <linux/init.h>
12 #include <linux/etherdevice.h>
13 #include <linux/netdevice.h>
14 #include <linux/types.h>
15 #include <linux/slab.h>
16 #include <linux/skbuff.h>
17 #include <linux/if_arp.h>
18 #include <linux/timer.h>
19 #include <linux/rtnetlink.h>
21 #include <net/codel.h>
22 #include <net/mac80211.h>
23 #include "ieee80211_i.h"
24 #include "driver-ops.h"
27 #include "debugfs_sta.h"
32 * DOC: STA information lifetime rules
34 * STA info structures (&struct sta_info) are managed in a hash table
35 * for faster lookup and a list for iteration. They are managed using
36 * RCU, i.e. access to the list and hash table is protected by RCU.
38 * Upon allocating a STA info structure with sta_info_alloc(), the caller
39 * owns that structure. It must then insert it into the hash table using
40 * either sta_info_insert() or sta_info_insert_rcu(); only in the latter
41 * case (which acquires an rcu read section but must not be called from
42 * within one) will the pointer still be valid after the call. Note that
43 * the caller may not do much with the STA info before inserting it, in
44 * particular, it may not start any mesh peer link management or add
47 * When the insertion fails (sta_info_insert()) returns non-zero), the
48 * structure will have been freed by sta_info_insert()!
50 * Station entries are added by mac80211 when you establish a link with a
51 * peer. This means different things for the different type of interfaces
52 * we support. For a regular station this mean we add the AP sta when we
53 * receive an association response from the AP. For IBSS this occurs when
54 * get to know about a peer on the same IBSS. For WDS we add the sta for
55 * the peer immediately upon device open. When using AP mode we add stations
56 * for each respective station upon request from userspace through nl80211.
58 * In order to remove a STA info structure, various sta_info_destroy_*()
59 * calls are available.
61 * There is no concept of ownership on a STA entry, each structure is
62 * owned by the global hash table/list until it is removed. All users of
63 * the structure need to be RCU protected so that the structure won't be
64 * freed before they are done using it.
67 struct sta_link_alloc {
68 struct link_sta_info info;
69 struct ieee80211_link_sta sta;
70 struct rcu_head rcu_head;
73 static const struct rhashtable_params sta_rht_params = {
74 .nelem_hint = 3, /* start small */
75 .automatic_shrinking = true,
76 .head_offset = offsetof(struct sta_info, hash_node),
77 .key_offset = offsetof(struct sta_info, addr),
79 .max_size = CONFIG_MAC80211_STA_HASH_MAX_SIZE,
82 static const struct rhashtable_params link_sta_rht_params = {
83 .nelem_hint = 3, /* start small */
84 .automatic_shrinking = true,
85 .head_offset = offsetof(struct link_sta_info, link_hash_node),
86 .key_offset = offsetof(struct link_sta_info, addr),
88 .max_size = CONFIG_MAC80211_STA_HASH_MAX_SIZE,
91 /* Caller must hold local->sta_mtx */
92 static int sta_info_hash_del(struct ieee80211_local *local,
95 return rhltable_remove(&local->sta_hash, &sta->hash_node,
99 static int link_sta_info_hash_add(struct ieee80211_local *local,
100 struct link_sta_info *link_sta)
102 lockdep_assert_held(&local->sta_mtx);
103 return rhltable_insert(&local->link_sta_hash,
104 &link_sta->link_hash_node,
105 link_sta_rht_params);
108 static int link_sta_info_hash_del(struct ieee80211_local *local,
109 struct link_sta_info *link_sta)
111 lockdep_assert_held(&local->sta_mtx);
112 return rhltable_remove(&local->link_sta_hash,
113 &link_sta->link_hash_node,
114 link_sta_rht_params);
117 static void __cleanup_single_sta(struct sta_info *sta)
120 struct tid_ampdu_tx *tid_tx;
121 struct ieee80211_sub_if_data *sdata = sta->sdata;
122 struct ieee80211_local *local = sdata->local;
125 if (test_sta_flag(sta, WLAN_STA_PS_STA) ||
126 test_sta_flag(sta, WLAN_STA_PS_DRIVER) ||
127 test_sta_flag(sta, WLAN_STA_PS_DELIVER)) {
128 if (sta->sdata->vif.type == NL80211_IFTYPE_AP ||
129 sta->sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
130 ps = &sdata->bss->ps;
131 else if (ieee80211_vif_is_mesh(&sdata->vif))
132 ps = &sdata->u.mesh.ps;
136 clear_sta_flag(sta, WLAN_STA_PS_STA);
137 clear_sta_flag(sta, WLAN_STA_PS_DRIVER);
138 clear_sta_flag(sta, WLAN_STA_PS_DELIVER);
140 atomic_dec(&ps->num_sta_ps);
143 for (i = 0; i < ARRAY_SIZE(sta->sta.txq); i++) {
144 struct txq_info *txqi;
146 if (!sta->sta.txq[i])
149 txqi = to_txq_info(sta->sta.txq[i]);
151 ieee80211_txq_purge(local, txqi);
154 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
155 local->total_ps_buffered -= skb_queue_len(&sta->ps_tx_buf[ac]);
156 ieee80211_purge_tx_queue(&local->hw, &sta->ps_tx_buf[ac]);
157 ieee80211_purge_tx_queue(&local->hw, &sta->tx_filtered[ac]);
160 if (ieee80211_vif_is_mesh(&sdata->vif))
161 mesh_sta_cleanup(sta);
163 cancel_work_sync(&sta->drv_deliver_wk);
166 * Destroy aggregation state here. It would be nice to wait for the
167 * driver to finish aggregation stop and then clean up, but for now
168 * drivers have to handle aggregation stop being requested, followed
169 * directly by station destruction.
171 for (i = 0; i < IEEE80211_NUM_TIDS; i++) {
172 kfree(sta->ampdu_mlme.tid_start_tx[i]);
173 tid_tx = rcu_dereference_raw(sta->ampdu_mlme.tid_tx[i]);
176 ieee80211_purge_tx_queue(&local->hw, &tid_tx->pending);
181 static void cleanup_single_sta(struct sta_info *sta)
183 struct ieee80211_sub_if_data *sdata = sta->sdata;
184 struct ieee80211_local *local = sdata->local;
186 __cleanup_single_sta(sta);
187 sta_info_free(local, sta);
190 struct rhlist_head *sta_info_hash_lookup(struct ieee80211_local *local,
193 return rhltable_lookup(&local->sta_hash, addr, sta_rht_params);
196 /* protected by RCU */
197 struct sta_info *sta_info_get(struct ieee80211_sub_if_data *sdata,
200 struct ieee80211_local *local = sdata->local;
201 struct rhlist_head *tmp;
202 struct sta_info *sta;
205 for_each_sta_info(local, addr, sta, tmp) {
206 if (sta->sdata == sdata) {
208 /* this is safe as the caller must already hold
209 * another rcu read section or the mutex
219 * Get sta info either from the specified interface
220 * or from one of its vlans
222 struct sta_info *sta_info_get_bss(struct ieee80211_sub_if_data *sdata,
225 struct ieee80211_local *local = sdata->local;
226 struct rhlist_head *tmp;
227 struct sta_info *sta;
230 for_each_sta_info(local, addr, sta, tmp) {
231 if (sta->sdata == sdata ||
232 (sta->sdata->bss && sta->sdata->bss == sdata->bss)) {
234 /* this is safe as the caller must already hold
235 * another rcu read section or the mutex
244 struct rhlist_head *link_sta_info_hash_lookup(struct ieee80211_local *local,
247 return rhltable_lookup(&local->link_sta_hash, addr,
248 link_sta_rht_params);
251 struct link_sta_info *
252 link_sta_info_get_bss(struct ieee80211_sub_if_data *sdata, const u8 *addr)
254 struct ieee80211_local *local = sdata->local;
255 struct rhlist_head *tmp;
256 struct link_sta_info *link_sta;
259 for_each_link_sta_info(local, addr, link_sta, tmp) {
260 struct sta_info *sta = link_sta->sta;
262 if (sta->sdata == sdata ||
263 (sta->sdata->bss && sta->sdata->bss == sdata->bss)) {
265 /* this is safe as the caller must already hold
266 * another rcu read section or the mutex
275 struct ieee80211_sta *
276 ieee80211_find_sta_by_link_addrs(struct ieee80211_hw *hw,
279 unsigned int *link_id)
281 struct ieee80211_local *local = hw_to_local(hw);
282 struct link_sta_info *link_sta;
283 struct rhlist_head *tmp;
285 for_each_link_sta_info(local, addr, link_sta, tmp) {
286 struct sta_info *sta = link_sta->sta;
287 struct ieee80211_link_data *link;
288 u8 _link_id = link_sta->link_id;
296 link = rcu_dereference(sta->sdata->link[_link_id]);
300 if (memcmp(link->conf->addr, localaddr, ETH_ALEN))
310 EXPORT_SYMBOL_GPL(ieee80211_find_sta_by_link_addrs);
312 struct sta_info *sta_info_get_by_addrs(struct ieee80211_local *local,
313 const u8 *sta_addr, const u8 *vif_addr)
315 struct rhlist_head *tmp;
316 struct sta_info *sta;
318 for_each_sta_info(local, sta_addr, sta, tmp) {
319 if (ether_addr_equal(vif_addr, sta->sdata->vif.addr))
326 struct sta_info *sta_info_get_by_idx(struct ieee80211_sub_if_data *sdata,
329 struct ieee80211_local *local = sdata->local;
330 struct sta_info *sta;
333 list_for_each_entry_rcu(sta, &local->sta_list, list,
334 lockdep_is_held(&local->sta_mtx)) {
335 if (sdata != sta->sdata)
347 static void sta_info_free_link(struct link_sta_info *link_sta)
349 free_percpu(link_sta->pcpu_rx_stats);
352 static void sta_remove_link(struct sta_info *sta, unsigned int link_id,
355 struct sta_link_alloc *alloc = NULL;
356 struct link_sta_info *link_sta;
358 link_sta = rcu_dereference_protected(sta->link[link_id],
359 lockdep_is_held(&sta->local->sta_mtx));
361 if (WARN_ON(!link_sta))
365 link_sta_info_hash_del(sta->local, link_sta);
367 if (test_sta_flag(sta, WLAN_STA_INSERTED))
368 ieee80211_link_sta_debugfs_remove(link_sta);
370 if (link_sta != &sta->deflink)
371 alloc = container_of(link_sta, typeof(*alloc), info);
373 sta->sta.valid_links &= ~BIT(link_id);
374 RCU_INIT_POINTER(sta->link[link_id], NULL);
375 RCU_INIT_POINTER(sta->sta.link[link_id], NULL);
377 sta_info_free_link(&alloc->info);
378 kfree_rcu(alloc, rcu_head);
381 ieee80211_sta_recalc_aggregates(&sta->sta);
385 * sta_info_free - free STA
387 * @local: pointer to the global information
388 * @sta: STA info to free
390 * This function must undo everything done by sta_info_alloc()
391 * that may happen before sta_info_insert(). It may only be
392 * called when sta_info_insert() has not been attempted (and
393 * if that fails, the station is freed anyway.)
395 void sta_info_free(struct ieee80211_local *local, struct sta_info *sta)
399 for (i = 0; i < ARRAY_SIZE(sta->link); i++) {
400 if (!(sta->sta.valid_links & BIT(i)))
403 sta_remove_link(sta, i, false);
407 * If we had used sta_info_pre_move_state() then we might not
408 * have gone through the state transitions down again, so do
409 * it here now (and warn if it's inserted).
411 * This will clear state such as fast TX/RX that may have been
412 * allocated during state transitions.
414 while (sta->sta_state > IEEE80211_STA_NONE) {
417 WARN_ON_ONCE(test_sta_flag(sta, WLAN_STA_INSERTED));
419 ret = sta_info_move_state(sta, sta->sta_state - 1);
420 if (WARN_ONCE(ret, "sta_info_move_state() returned %d\n", ret))
425 rate_control_free_sta(sta);
427 sta_dbg(sta->sdata, "Destroyed STA %pM\n", sta->sta.addr);
429 kfree(to_txq_info(sta->sta.txq[0]));
430 kfree(rcu_dereference_raw(sta->sta.rates));
431 #ifdef CONFIG_MAC80211_MESH
435 sta_info_free_link(&sta->deflink);
439 /* Caller must hold local->sta_mtx */
440 static int sta_info_hash_add(struct ieee80211_local *local,
441 struct sta_info *sta)
443 return rhltable_insert(&local->sta_hash, &sta->hash_node,
447 static void sta_deliver_ps_frames(struct work_struct *wk)
449 struct sta_info *sta;
451 sta = container_of(wk, struct sta_info, drv_deliver_wk);
457 if (!test_sta_flag(sta, WLAN_STA_PS_STA))
458 ieee80211_sta_ps_deliver_wakeup(sta);
459 else if (test_and_clear_sta_flag(sta, WLAN_STA_PSPOLL))
460 ieee80211_sta_ps_deliver_poll_response(sta);
461 else if (test_and_clear_sta_flag(sta, WLAN_STA_UAPSD))
462 ieee80211_sta_ps_deliver_uapsd(sta);
466 static int sta_prepare_rate_control(struct ieee80211_local *local,
467 struct sta_info *sta, gfp_t gfp)
469 if (ieee80211_hw_check(&local->hw, HAS_RATE_CONTROL))
472 sta->rate_ctrl = local->rate_ctrl;
473 sta->rate_ctrl_priv = rate_control_alloc_sta(sta->rate_ctrl,
475 if (!sta->rate_ctrl_priv)
481 static int sta_info_alloc_link(struct ieee80211_local *local,
482 struct link_sta_info *link_info,
485 struct ieee80211_hw *hw = &local->hw;
488 if (ieee80211_hw_check(hw, USES_RSS)) {
489 link_info->pcpu_rx_stats =
490 alloc_percpu_gfp(struct ieee80211_sta_rx_stats, gfp);
491 if (!link_info->pcpu_rx_stats)
495 link_info->rx_stats.last_rx = jiffies;
496 u64_stats_init(&link_info->rx_stats.syncp);
498 ewma_signal_init(&link_info->rx_stats_avg.signal);
499 ewma_avg_signal_init(&link_info->status_stats.avg_ack_signal);
500 for (i = 0; i < ARRAY_SIZE(link_info->rx_stats_avg.chain_signal); i++)
501 ewma_signal_init(&link_info->rx_stats_avg.chain_signal[i]);
506 static void sta_info_add_link(struct sta_info *sta,
507 unsigned int link_id,
508 struct link_sta_info *link_info,
509 struct ieee80211_link_sta *link_sta)
511 link_info->sta = sta;
512 link_info->link_id = link_id;
513 link_info->pub = link_sta;
514 link_info->pub->sta = &sta->sta;
515 link_sta->link_id = link_id;
516 rcu_assign_pointer(sta->link[link_id], link_info);
517 rcu_assign_pointer(sta->sta.link[link_id], link_sta);
519 link_sta->smps_mode = IEEE80211_SMPS_OFF;
520 link_sta->agg.max_rc_amsdu_len = IEEE80211_MAX_MPDU_LEN_HT_BA;
523 static struct sta_info *
524 __sta_info_alloc(struct ieee80211_sub_if_data *sdata,
525 const u8 *addr, int link_id, const u8 *link_addr,
528 struct ieee80211_local *local = sdata->local;
529 struct ieee80211_hw *hw = &local->hw;
530 struct sta_info *sta;
535 sta = kzalloc(sizeof(*sta) + hw->sta_data_size, gfp);
542 if (sta_info_alloc_link(local, &sta->deflink, gfp))
546 sta_info_add_link(sta, link_id, &sta->deflink,
548 sta->sta.valid_links = BIT(link_id);
550 sta_info_add_link(sta, 0, &sta->deflink, &sta->sta.deflink);
553 sta->sta.cur = &sta->sta.deflink.agg;
555 spin_lock_init(&sta->lock);
556 spin_lock_init(&sta->ps_lock);
557 INIT_WORK(&sta->drv_deliver_wk, sta_deliver_ps_frames);
558 INIT_WORK(&sta->ampdu_mlme.work, ieee80211_ba_session_work);
559 mutex_init(&sta->ampdu_mlme.mtx);
560 #ifdef CONFIG_MAC80211_MESH
561 if (ieee80211_vif_is_mesh(&sdata->vif)) {
562 sta->mesh = kzalloc(sizeof(*sta->mesh), gfp);
565 sta->mesh->plink_sta = sta;
566 spin_lock_init(&sta->mesh->plink_lock);
567 if (!sdata->u.mesh.user_mpm)
568 timer_setup(&sta->mesh->plink_timer, mesh_plink_timer,
570 sta->mesh->nonpeer_pm = NL80211_MESH_POWER_ACTIVE;
574 memcpy(sta->addr, addr, ETH_ALEN);
575 memcpy(sta->sta.addr, addr, ETH_ALEN);
576 memcpy(sta->deflink.addr, link_addr, ETH_ALEN);
577 memcpy(sta->sta.deflink.addr, link_addr, ETH_ALEN);
578 sta->sta.max_rx_aggregation_subframes =
579 local->hw.max_rx_aggregation_subframes;
581 /* TODO link specific alloc and assignments for MLO Link STA */
583 /* Extended Key ID needs to install keys for keyid 0 and 1 Rx-only.
584 * The Tx path starts to use a key as soon as the key slot ptk_idx
585 * references to is not NULL. To not use the initial Rx-only key
586 * prematurely for Tx initialize ptk_idx to an impossible PTK keyid
587 * which always will refer to a NULL key.
589 BUILD_BUG_ON(ARRAY_SIZE(sta->ptk) <= INVALID_PTK_KEYIDX);
590 sta->ptk_idx = INVALID_PTK_KEYIDX;
593 ieee80211_init_frag_cache(&sta->frags);
595 sta->sta_state = IEEE80211_STA_NONE;
597 if (sdata->vif.type == NL80211_IFTYPE_MESH_POINT)
598 sta->amsdu_mesh_control = -1;
600 /* Mark TID as unreserved */
601 sta->reserved_tid = IEEE80211_TID_UNRESERVED;
603 sta->last_connected = ktime_get_seconds();
605 size = sizeof(struct txq_info) +
606 ALIGN(hw->txq_data_size, sizeof(void *));
608 txq_data = kcalloc(ARRAY_SIZE(sta->sta.txq), size, gfp);
612 for (i = 0; i < ARRAY_SIZE(sta->sta.txq); i++) {
613 struct txq_info *txq = txq_data + i * size;
615 /* might not do anything for the (bufferable) MMPDU TXQ */
616 ieee80211_txq_init(sdata, sta, txq, i);
619 if (sta_prepare_rate_control(local, sta, gfp))
622 sta->airtime_weight = IEEE80211_DEFAULT_AIRTIME_WEIGHT;
624 for (i = 0; i < IEEE80211_NUM_ACS; i++) {
625 skb_queue_head_init(&sta->ps_tx_buf[i]);
626 skb_queue_head_init(&sta->tx_filtered[i]);
627 sta->airtime[i].deficit = sta->airtime_weight;
628 atomic_set(&sta->airtime[i].aql_tx_pending, 0);
629 sta->airtime[i].aql_limit_low = local->aql_txq_limit_low[i];
630 sta->airtime[i].aql_limit_high = local->aql_txq_limit_high[i];
633 for (i = 0; i < IEEE80211_NUM_TIDS; i++)
634 sta->last_seq_ctrl[i] = cpu_to_le16(USHRT_MAX);
636 for (i = 0; i < NUM_NL80211_BANDS; i++) {
640 if (!hw->wiphy->bands[i])
644 case NL80211_BAND_2GHZ:
645 case NL80211_BAND_LC:
647 * We use both here, even if we cannot really know for
648 * sure the station will support both, but the only use
649 * for this is when we don't know anything yet and send
650 * management frames, and then we'll pick the lowest
651 * possible rate anyway.
652 * If we don't include _G here, we cannot find a rate
653 * in P2P, and thus trigger the WARN_ONCE() in rate.c
655 mandatory = IEEE80211_RATE_MANDATORY_B |
656 IEEE80211_RATE_MANDATORY_G;
658 case NL80211_BAND_5GHZ:
659 mandatory = IEEE80211_RATE_MANDATORY_A;
661 case NL80211_BAND_60GHZ:
667 for (r = 0; r < hw->wiphy->bands[i]->n_bitrates; r++) {
668 struct ieee80211_rate *rate;
670 rate = &hw->wiphy->bands[i]->bitrates[r];
672 if (!(rate->flags & mandatory))
674 sta->sta.deflink.supp_rates[i] |= BIT(r);
678 sta->cparams.ce_threshold = CODEL_DISABLED_THRESHOLD;
679 sta->cparams.target = MS2TIME(20);
680 sta->cparams.interval = MS2TIME(100);
681 sta->cparams.ecn = true;
682 sta->cparams.ce_threshold_selector = 0;
683 sta->cparams.ce_threshold_mask = 0;
685 sta_dbg(sdata, "Allocated STA %pM\n", sta->sta.addr);
690 kfree(to_txq_info(sta->sta.txq[0]));
692 sta_info_free_link(&sta->deflink);
693 #ifdef CONFIG_MAC80211_MESH
700 struct sta_info *sta_info_alloc(struct ieee80211_sub_if_data *sdata,
701 const u8 *addr, gfp_t gfp)
703 return __sta_info_alloc(sdata, addr, -1, addr, gfp);
706 struct sta_info *sta_info_alloc_with_link(struct ieee80211_sub_if_data *sdata,
708 unsigned int link_id,
712 return __sta_info_alloc(sdata, mld_addr, link_id, link_addr, gfp);
715 static int sta_info_insert_check(struct sta_info *sta)
717 struct ieee80211_sub_if_data *sdata = sta->sdata;
720 * Can't be a WARN_ON because it can be triggered through a race:
721 * something inserts a STA (on one CPU) without holding the RTNL
722 * and another CPU turns off the net device.
724 if (unlikely(!ieee80211_sdata_running(sdata)))
727 if (WARN_ON(ether_addr_equal(sta->sta.addr, sdata->vif.addr) ||
728 !is_valid_ether_addr(sta->sta.addr)))
731 /* The RCU read lock is required by rhashtable due to
732 * asynchronous resize/rehash. We also require the mutex
736 lockdep_assert_held(&sdata->local->sta_mtx);
737 if (ieee80211_hw_check(&sdata->local->hw, NEEDS_UNIQUE_STA_ADDR) &&
738 ieee80211_find_sta_by_ifaddr(&sdata->local->hw, sta->addr, NULL)) {
747 static int sta_info_insert_drv_state(struct ieee80211_local *local,
748 struct ieee80211_sub_if_data *sdata,
749 struct sta_info *sta)
751 enum ieee80211_sta_state state;
754 for (state = IEEE80211_STA_NOTEXIST; state < sta->sta_state; state++) {
755 err = drv_sta_state(local, sdata, sta, state, state + 1);
762 * Drivers using legacy sta_add/sta_remove callbacks only
763 * get uploaded set to true after sta_add is called.
765 if (!local->ops->sta_add)
766 sta->uploaded = true;
770 if (sdata->vif.type == NL80211_IFTYPE_ADHOC) {
772 "failed to move IBSS STA %pM to state %d (%d) - keeping it anyway\n",
773 sta->sta.addr, state + 1, err);
777 /* unwind on error */
778 for (; state > IEEE80211_STA_NOTEXIST; state--)
779 WARN_ON(drv_sta_state(local, sdata, sta, state, state - 1));
785 ieee80211_recalc_p2p_go_ps_allowed(struct ieee80211_sub_if_data *sdata)
787 struct ieee80211_local *local = sdata->local;
788 bool allow_p2p_go_ps = sdata->vif.p2p;
789 struct sta_info *sta;
792 list_for_each_entry_rcu(sta, &local->sta_list, list) {
793 if (sdata != sta->sdata ||
794 !test_sta_flag(sta, WLAN_STA_ASSOC))
796 if (!sta->sta.support_p2p_ps) {
797 allow_p2p_go_ps = false;
803 if (allow_p2p_go_ps != sdata->vif.bss_conf.allow_p2p_go_ps) {
804 sdata->vif.bss_conf.allow_p2p_go_ps = allow_p2p_go_ps;
805 ieee80211_link_info_change_notify(sdata, &sdata->deflink,
811 * should be called with sta_mtx locked
812 * this function replaces the mutex lock
815 static int sta_info_insert_finish(struct sta_info *sta) __acquires(RCU)
817 struct ieee80211_local *local = sta->local;
818 struct ieee80211_sub_if_data *sdata = sta->sdata;
819 struct station_info *sinfo = NULL;
822 lockdep_assert_held(&local->sta_mtx);
824 /* check if STA exists already */
825 if (sta_info_get_bss(sdata, sta->sta.addr)) {
830 sinfo = kzalloc(sizeof(struct station_info), GFP_KERNEL);
837 local->sta_generation++;
840 /* simplify things and don't accept BA sessions yet */
841 set_sta_flag(sta, WLAN_STA_BLOCK_BA);
843 /* make the station visible */
844 err = sta_info_hash_add(local, sta);
848 if (sta->sta.valid_links) {
849 err = link_sta_info_hash_add(local, &sta->deflink);
851 sta_info_hash_del(local, sta);
856 list_add_tail_rcu(&sta->list, &local->sta_list);
858 /* update channel context before notifying the driver about state
859 * change, this enables driver using the updated channel context right away.
861 if (sta->sta_state >= IEEE80211_STA_ASSOC) {
862 ieee80211_recalc_min_chandef(sta->sdata, -1);
863 if (!sta->sta.support_p2p_ps)
864 ieee80211_recalc_p2p_go_ps_allowed(sta->sdata);
868 err = sta_info_insert_drv_state(local, sdata, sta);
872 set_sta_flag(sta, WLAN_STA_INSERTED);
874 /* accept BA sessions now */
875 clear_sta_flag(sta, WLAN_STA_BLOCK_BA);
877 ieee80211_sta_debugfs_add(sta);
878 rate_control_add_sta_debugfs(sta);
879 if (sta->sta.valid_links) {
882 for (i = 0; i < ARRAY_SIZE(sta->link); i++) {
883 struct link_sta_info *link_sta;
885 link_sta = rcu_dereference_protected(sta->link[i],
886 lockdep_is_held(&local->sta_mtx));
891 ieee80211_link_sta_debugfs_add(link_sta);
892 if (sdata->vif.active_links & BIT(i))
893 ieee80211_link_sta_debugfs_drv_add(link_sta);
896 ieee80211_link_sta_debugfs_add(&sta->deflink);
897 ieee80211_link_sta_debugfs_drv_add(&sta->deflink);
900 sinfo->generation = local->sta_generation;
901 cfg80211_new_sta(sdata->dev, sta->sta.addr, sinfo, GFP_KERNEL);
904 sta_dbg(sdata, "Inserted STA %pM\n", sta->sta.addr);
906 /* move reference to rcu-protected */
908 mutex_unlock(&local->sta_mtx);
910 if (ieee80211_vif_is_mesh(&sdata->vif))
911 mesh_accept_plinks_update(sdata);
915 if (sta->sta.valid_links)
916 link_sta_info_hash_del(local, &sta->deflink);
917 sta_info_hash_del(local, sta);
918 list_del_rcu(&sta->list);
923 cleanup_single_sta(sta);
924 mutex_unlock(&local->sta_mtx);
930 int sta_info_insert_rcu(struct sta_info *sta) __acquires(RCU)
932 struct ieee80211_local *local = sta->local;
937 mutex_lock(&local->sta_mtx);
939 err = sta_info_insert_check(sta);
941 sta_info_free(local, sta);
942 mutex_unlock(&local->sta_mtx);
947 return sta_info_insert_finish(sta);
950 int sta_info_insert(struct sta_info *sta)
952 int err = sta_info_insert_rcu(sta);
959 static inline void __bss_tim_set(u8 *tim, u16 id)
962 * This format has been mandated by the IEEE specifications,
963 * so this line may not be changed to use the __set_bit() format.
965 tim[id / 8] |= (1 << (id % 8));
968 static inline void __bss_tim_clear(u8 *tim, u16 id)
971 * This format has been mandated by the IEEE specifications,
972 * so this line may not be changed to use the __clear_bit() format.
974 tim[id / 8] &= ~(1 << (id % 8));
977 static inline bool __bss_tim_get(u8 *tim, u16 id)
980 * This format has been mandated by the IEEE specifications,
981 * so this line may not be changed to use the test_bit() format.
983 return tim[id / 8] & (1 << (id % 8));
986 static unsigned long ieee80211_tids_for_ac(int ac)
988 /* If we ever support TIDs > 7, this obviously needs to be adjusted */
990 case IEEE80211_AC_VO:
991 return BIT(6) | BIT(7);
992 case IEEE80211_AC_VI:
993 return BIT(4) | BIT(5);
994 case IEEE80211_AC_BE:
995 return BIT(0) | BIT(3);
996 case IEEE80211_AC_BK:
997 return BIT(1) | BIT(2);
1004 static void __sta_info_recalc_tim(struct sta_info *sta, bool ignore_pending)
1006 struct ieee80211_local *local = sta->local;
1008 bool indicate_tim = false;
1009 u8 ignore_for_tim = sta->sta.uapsd_queues;
1011 u16 id = sta->sta.aid;
1013 if (sta->sdata->vif.type == NL80211_IFTYPE_AP ||
1014 sta->sdata->vif.type == NL80211_IFTYPE_AP_VLAN) {
1015 if (WARN_ON_ONCE(!sta->sdata->bss))
1018 ps = &sta->sdata->bss->ps;
1019 #ifdef CONFIG_MAC80211_MESH
1020 } else if (ieee80211_vif_is_mesh(&sta->sdata->vif)) {
1021 ps = &sta->sdata->u.mesh.ps;
1027 /* No need to do anything if the driver does all */
1028 if (ieee80211_hw_check(&local->hw, AP_LINK_PS) && !local->ops->set_tim)
1035 * If all ACs are delivery-enabled then we should build
1036 * the TIM bit for all ACs anyway; if only some are then
1037 * we ignore those and build the TIM bit using only the
1040 if (ignore_for_tim == BIT(IEEE80211_NUM_ACS) - 1)
1044 ignore_for_tim = BIT(IEEE80211_NUM_ACS) - 1;
1046 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
1049 if (ignore_for_tim & ieee80211_ac_to_qos_mask[ac])
1052 indicate_tim |= !skb_queue_empty(&sta->tx_filtered[ac]) ||
1053 !skb_queue_empty(&sta->ps_tx_buf[ac]);
1057 tids = ieee80211_tids_for_ac(ac);
1060 sta->driver_buffered_tids & tids;
1062 sta->txq_buffered_tids & tids;
1066 spin_lock_bh(&local->tim_lock);
1068 if (indicate_tim == __bss_tim_get(ps->tim, id))
1072 __bss_tim_set(ps->tim, id);
1074 __bss_tim_clear(ps->tim, id);
1076 if (local->ops->set_tim && !WARN_ON(sta->dead)) {
1077 local->tim_in_locked_section = true;
1078 drv_set_tim(local, &sta->sta, indicate_tim);
1079 local->tim_in_locked_section = false;
1083 spin_unlock_bh(&local->tim_lock);
1086 void sta_info_recalc_tim(struct sta_info *sta)
1088 __sta_info_recalc_tim(sta, false);
1091 static bool sta_info_buffer_expired(struct sta_info *sta, struct sk_buff *skb)
1093 struct ieee80211_tx_info *info;
1099 info = IEEE80211_SKB_CB(skb);
1101 /* Timeout: (2 * listen_interval * beacon_int * 1024 / 1000000) sec */
1102 timeout = (sta->listen_interval *
1103 sta->sdata->vif.bss_conf.beacon_int *
1105 if (timeout < STA_TX_BUFFER_EXPIRE)
1106 timeout = STA_TX_BUFFER_EXPIRE;
1107 return time_after(jiffies, info->control.jiffies + timeout);
1111 static bool sta_info_cleanup_expire_buffered_ac(struct ieee80211_local *local,
1112 struct sta_info *sta, int ac)
1114 unsigned long flags;
1115 struct sk_buff *skb;
1118 * First check for frames that should expire on the filtered
1119 * queue. Frames here were rejected by the driver and are on
1120 * a separate queue to avoid reordering with normal PS-buffered
1121 * frames. They also aren't accounted for right now in the
1122 * total_ps_buffered counter.
1125 spin_lock_irqsave(&sta->tx_filtered[ac].lock, flags);
1126 skb = skb_peek(&sta->tx_filtered[ac]);
1127 if (sta_info_buffer_expired(sta, skb))
1128 skb = __skb_dequeue(&sta->tx_filtered[ac]);
1131 spin_unlock_irqrestore(&sta->tx_filtered[ac].lock, flags);
1134 * Frames are queued in order, so if this one
1135 * hasn't expired yet we can stop testing. If
1136 * we actually reached the end of the queue we
1137 * also need to stop, of course.
1141 ieee80211_free_txskb(&local->hw, skb);
1145 * Now also check the normal PS-buffered queue, this will
1146 * only find something if the filtered queue was emptied
1147 * since the filtered frames are all before the normal PS
1151 spin_lock_irqsave(&sta->ps_tx_buf[ac].lock, flags);
1152 skb = skb_peek(&sta->ps_tx_buf[ac]);
1153 if (sta_info_buffer_expired(sta, skb))
1154 skb = __skb_dequeue(&sta->ps_tx_buf[ac]);
1157 spin_unlock_irqrestore(&sta->ps_tx_buf[ac].lock, flags);
1160 * frames are queued in order, so if this one
1161 * hasn't expired yet (or we reached the end of
1162 * the queue) we can stop testing
1167 local->total_ps_buffered--;
1168 ps_dbg(sta->sdata, "Buffered frame expired (STA %pM)\n",
1170 ieee80211_free_txskb(&local->hw, skb);
1174 * Finally, recalculate the TIM bit for this station -- it might
1175 * now be clear because the station was too slow to retrieve its
1178 sta_info_recalc_tim(sta);
1181 * Return whether there are any frames still buffered, this is
1182 * used to check whether the cleanup timer still needs to run,
1183 * if there are no frames we don't need to rearm the timer.
1185 return !(skb_queue_empty(&sta->ps_tx_buf[ac]) &&
1186 skb_queue_empty(&sta->tx_filtered[ac]));
1189 static bool sta_info_cleanup_expire_buffered(struct ieee80211_local *local,
1190 struct sta_info *sta)
1192 bool have_buffered = false;
1195 /* This is only necessary for stations on BSS/MBSS interfaces */
1196 if (!sta->sdata->bss &&
1197 !ieee80211_vif_is_mesh(&sta->sdata->vif))
1200 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++)
1202 sta_info_cleanup_expire_buffered_ac(local, sta, ac);
1204 return have_buffered;
1207 static int __must_check __sta_info_destroy_part1(struct sta_info *sta)
1209 struct ieee80211_local *local;
1210 struct ieee80211_sub_if_data *sdata;
1221 lockdep_assert_held(&local->sta_mtx);
1224 * Before removing the station from the driver and
1225 * rate control, it might still start new aggregation
1226 * sessions -- block that to make sure the tear-down
1227 * will be sufficient.
1229 set_sta_flag(sta, WLAN_STA_BLOCK_BA);
1230 ieee80211_sta_tear_down_BA_sessions(sta, AGG_STOP_DESTROY_STA);
1233 * Before removing the station from the driver there might be pending
1234 * rx frames on RSS queues sent prior to the disassociation - wait for
1235 * all such frames to be processed.
1237 drv_sync_rx_queues(local, sta);
1239 for (i = 0; i < ARRAY_SIZE(sta->link); i++) {
1240 struct link_sta_info *link_sta;
1242 if (!(sta->sta.valid_links & BIT(i)))
1245 link_sta = rcu_dereference_protected(sta->link[i],
1246 lockdep_is_held(&local->sta_mtx));
1248 link_sta_info_hash_del(local, link_sta);
1251 ret = sta_info_hash_del(local, sta);
1256 * for TDLS peers, make sure to return to the base channel before
1259 if (test_sta_flag(sta, WLAN_STA_TDLS_OFF_CHANNEL)) {
1260 drv_tdls_cancel_channel_switch(local, sdata, &sta->sta);
1261 clear_sta_flag(sta, WLAN_STA_TDLS_OFF_CHANNEL);
1264 list_del_rcu(&sta->list);
1265 sta->removed = true;
1268 drv_sta_pre_rcu_remove(local, sta->sdata, sta);
1270 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN &&
1271 rcu_access_pointer(sdata->u.vlan.sta) == sta)
1272 RCU_INIT_POINTER(sdata->u.vlan.sta, NULL);
1277 static void __sta_info_destroy_part2(struct sta_info *sta)
1279 struct ieee80211_local *local = sta->local;
1280 struct ieee80211_sub_if_data *sdata = sta->sdata;
1281 struct station_info *sinfo;
1285 * NOTE: This assumes at least synchronize_net() was done
1286 * after _part1 and before _part2!
1290 lockdep_assert_held(&local->sta_mtx);
1292 if (sta->sta_state == IEEE80211_STA_AUTHORIZED) {
1293 ret = sta_info_move_state(sta, IEEE80211_STA_ASSOC);
1297 /* Flush queues before removing keys, as that might remove them
1298 * from hardware, and then depending on the offload method, any
1299 * frames sitting on hardware queues might be sent out without
1300 * any encryption at all.
1302 if (local->ops->set_key) {
1303 if (local->ops->flush_sta)
1304 drv_flush_sta(local, sta->sdata, sta);
1306 ieee80211_flush_queues(local, sta->sdata, false);
1309 /* now keys can no longer be reached */
1310 ieee80211_free_sta_keys(local, sta);
1312 /* disable TIM bit - last chance to tell driver */
1313 __sta_info_recalc_tim(sta, true);
1318 local->sta_generation++;
1320 while (sta->sta_state > IEEE80211_STA_NONE) {
1321 ret = sta_info_move_state(sta, sta->sta_state - 1);
1328 if (sta->uploaded) {
1329 ret = drv_sta_state(local, sdata, sta, IEEE80211_STA_NONE,
1330 IEEE80211_STA_NOTEXIST);
1331 WARN_ON_ONCE(ret != 0);
1334 sta_dbg(sdata, "Removed STA %pM\n", sta->sta.addr);
1336 sinfo = kzalloc(sizeof(*sinfo), GFP_KERNEL);
1338 sta_set_sinfo(sta, sinfo, true);
1339 cfg80211_del_sta_sinfo(sdata->dev, sta->sta.addr, sinfo, GFP_KERNEL);
1342 ieee80211_sta_debugfs_remove(sta);
1344 ieee80211_destroy_frag_cache(&sta->frags);
1346 cleanup_single_sta(sta);
1349 int __must_check __sta_info_destroy(struct sta_info *sta)
1351 int err = __sta_info_destroy_part1(sta);
1358 __sta_info_destroy_part2(sta);
1363 int sta_info_destroy_addr(struct ieee80211_sub_if_data *sdata, const u8 *addr)
1365 struct sta_info *sta;
1368 mutex_lock(&sdata->local->sta_mtx);
1369 sta = sta_info_get(sdata, addr);
1370 ret = __sta_info_destroy(sta);
1371 mutex_unlock(&sdata->local->sta_mtx);
1376 int sta_info_destroy_addr_bss(struct ieee80211_sub_if_data *sdata,
1379 struct sta_info *sta;
1382 mutex_lock(&sdata->local->sta_mtx);
1383 sta = sta_info_get_bss(sdata, addr);
1384 ret = __sta_info_destroy(sta);
1385 mutex_unlock(&sdata->local->sta_mtx);
1390 static void sta_info_cleanup(struct timer_list *t)
1392 struct ieee80211_local *local = from_timer(local, t, sta_cleanup);
1393 struct sta_info *sta;
1394 bool timer_needed = false;
1397 list_for_each_entry_rcu(sta, &local->sta_list, list)
1398 if (sta_info_cleanup_expire_buffered(local, sta))
1399 timer_needed = true;
1402 if (local->quiescing)
1408 mod_timer(&local->sta_cleanup,
1409 round_jiffies(jiffies + STA_INFO_CLEANUP_INTERVAL));
1412 int sta_info_init(struct ieee80211_local *local)
1416 err = rhltable_init(&local->sta_hash, &sta_rht_params);
1420 err = rhltable_init(&local->link_sta_hash, &link_sta_rht_params);
1422 rhltable_destroy(&local->sta_hash);
1426 spin_lock_init(&local->tim_lock);
1427 mutex_init(&local->sta_mtx);
1428 INIT_LIST_HEAD(&local->sta_list);
1430 timer_setup(&local->sta_cleanup, sta_info_cleanup, 0);
1434 void sta_info_stop(struct ieee80211_local *local)
1436 del_timer_sync(&local->sta_cleanup);
1437 rhltable_destroy(&local->sta_hash);
1438 rhltable_destroy(&local->link_sta_hash);
1442 int __sta_info_flush(struct ieee80211_sub_if_data *sdata, bool vlans)
1444 struct ieee80211_local *local = sdata->local;
1445 struct sta_info *sta, *tmp;
1446 LIST_HEAD(free_list);
1451 WARN_ON(vlans && sdata->vif.type != NL80211_IFTYPE_AP);
1452 WARN_ON(vlans && !sdata->bss);
1454 mutex_lock(&local->sta_mtx);
1455 list_for_each_entry_safe(sta, tmp, &local->sta_list, list) {
1456 if (sdata == sta->sdata ||
1457 (vlans && sdata->bss == sta->sdata->bss)) {
1458 if (!WARN_ON(__sta_info_destroy_part1(sta)))
1459 list_add(&sta->free_list, &free_list);
1464 if (!list_empty(&free_list)) {
1466 list_for_each_entry_safe(sta, tmp, &free_list, free_list)
1467 __sta_info_destroy_part2(sta);
1469 mutex_unlock(&local->sta_mtx);
1474 void ieee80211_sta_expire(struct ieee80211_sub_if_data *sdata,
1475 unsigned long exp_time)
1477 struct ieee80211_local *local = sdata->local;
1478 struct sta_info *sta, *tmp;
1480 mutex_lock(&local->sta_mtx);
1482 list_for_each_entry_safe(sta, tmp, &local->sta_list, list) {
1483 unsigned long last_active = ieee80211_sta_last_active(sta);
1485 if (sdata != sta->sdata)
1488 if (time_is_before_jiffies(last_active + exp_time)) {
1489 sta_dbg(sta->sdata, "expiring inactive STA %pM\n",
1492 if (ieee80211_vif_is_mesh(&sdata->vif) &&
1493 test_sta_flag(sta, WLAN_STA_PS_STA))
1494 atomic_dec(&sdata->u.mesh.ps.num_sta_ps);
1496 WARN_ON(__sta_info_destroy(sta));
1500 mutex_unlock(&local->sta_mtx);
1503 struct ieee80211_sta *ieee80211_find_sta_by_ifaddr(struct ieee80211_hw *hw,
1505 const u8 *localaddr)
1507 struct ieee80211_local *local = hw_to_local(hw);
1508 struct rhlist_head *tmp;
1509 struct sta_info *sta;
1512 * Just return a random station if localaddr is NULL
1513 * ... first in list.
1515 for_each_sta_info(local, addr, sta, tmp) {
1517 !ether_addr_equal(sta->sdata->vif.addr, localaddr))
1526 EXPORT_SYMBOL_GPL(ieee80211_find_sta_by_ifaddr);
1528 struct ieee80211_sta *ieee80211_find_sta(struct ieee80211_vif *vif,
1531 struct sta_info *sta;
1536 sta = sta_info_get_bss(vif_to_sdata(vif), addr);
1545 EXPORT_SYMBOL(ieee80211_find_sta);
1547 /* powersave support code */
1548 void ieee80211_sta_ps_deliver_wakeup(struct sta_info *sta)
1550 struct ieee80211_sub_if_data *sdata = sta->sdata;
1551 struct ieee80211_local *local = sdata->local;
1552 struct sk_buff_head pending;
1553 int filtered = 0, buffered = 0, ac, i;
1554 unsigned long flags;
1557 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
1558 sdata = container_of(sdata->bss, struct ieee80211_sub_if_data,
1561 if (sdata->vif.type == NL80211_IFTYPE_AP)
1562 ps = &sdata->bss->ps;
1563 else if (ieee80211_vif_is_mesh(&sdata->vif))
1564 ps = &sdata->u.mesh.ps;
1568 clear_sta_flag(sta, WLAN_STA_SP);
1570 BUILD_BUG_ON(BITS_TO_LONGS(IEEE80211_NUM_TIDS) > 1);
1571 sta->driver_buffered_tids = 0;
1572 sta->txq_buffered_tids = 0;
1574 if (!ieee80211_hw_check(&local->hw, AP_LINK_PS))
1575 drv_sta_notify(local, sdata, STA_NOTIFY_AWAKE, &sta->sta);
1577 for (i = 0; i < ARRAY_SIZE(sta->sta.txq); i++) {
1578 if (!sta->sta.txq[i] || !txq_has_queue(sta->sta.txq[i]))
1581 schedule_and_wake_txq(local, to_txq_info(sta->sta.txq[i]));
1584 skb_queue_head_init(&pending);
1586 /* sync with ieee80211_tx_h_unicast_ps_buf */
1587 spin_lock(&sta->ps_lock);
1588 /* Send all buffered frames to the station */
1589 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
1590 int count = skb_queue_len(&pending), tmp;
1592 spin_lock_irqsave(&sta->tx_filtered[ac].lock, flags);
1593 skb_queue_splice_tail_init(&sta->tx_filtered[ac], &pending);
1594 spin_unlock_irqrestore(&sta->tx_filtered[ac].lock, flags);
1595 tmp = skb_queue_len(&pending);
1596 filtered += tmp - count;
1599 spin_lock_irqsave(&sta->ps_tx_buf[ac].lock, flags);
1600 skb_queue_splice_tail_init(&sta->ps_tx_buf[ac], &pending);
1601 spin_unlock_irqrestore(&sta->ps_tx_buf[ac].lock, flags);
1602 tmp = skb_queue_len(&pending);
1603 buffered += tmp - count;
1606 ieee80211_add_pending_skbs(local, &pending);
1608 /* now we're no longer in the deliver code */
1609 clear_sta_flag(sta, WLAN_STA_PS_DELIVER);
1611 /* The station might have polled and then woken up before we responded,
1612 * so clear these flags now to avoid them sticking around.
1614 clear_sta_flag(sta, WLAN_STA_PSPOLL);
1615 clear_sta_flag(sta, WLAN_STA_UAPSD);
1616 spin_unlock(&sta->ps_lock);
1618 atomic_dec(&ps->num_sta_ps);
1620 local->total_ps_buffered -= buffered;
1622 sta_info_recalc_tim(sta);
1625 "STA %pM aid %d sending %d filtered/%d PS frames since STA woke up\n",
1626 sta->sta.addr, sta->sta.aid, filtered, buffered);
1628 ieee80211_check_fast_xmit(sta);
1631 static void ieee80211_send_null_response(struct sta_info *sta, int tid,
1632 enum ieee80211_frame_release_type reason,
1633 bool call_driver, bool more_data)
1635 struct ieee80211_sub_if_data *sdata = sta->sdata;
1636 struct ieee80211_local *local = sdata->local;
1637 struct ieee80211_qos_hdr *nullfunc;
1638 struct sk_buff *skb;
1639 int size = sizeof(*nullfunc);
1641 bool qos = sta->sta.wme;
1642 struct ieee80211_tx_info *info;
1643 struct ieee80211_chanctx_conf *chanctx_conf;
1646 fc = cpu_to_le16(IEEE80211_FTYPE_DATA |
1647 IEEE80211_STYPE_QOS_NULLFUNC |
1648 IEEE80211_FCTL_FROMDS);
1651 fc = cpu_to_le16(IEEE80211_FTYPE_DATA |
1652 IEEE80211_STYPE_NULLFUNC |
1653 IEEE80211_FCTL_FROMDS);
1656 skb = dev_alloc_skb(local->hw.extra_tx_headroom + size);
1660 skb_reserve(skb, local->hw.extra_tx_headroom);
1662 nullfunc = skb_put(skb, size);
1663 nullfunc->frame_control = fc;
1664 nullfunc->duration_id = 0;
1665 memcpy(nullfunc->addr1, sta->sta.addr, ETH_ALEN);
1666 memcpy(nullfunc->addr2, sdata->vif.addr, ETH_ALEN);
1667 memcpy(nullfunc->addr3, sdata->vif.addr, ETH_ALEN);
1668 nullfunc->seq_ctrl = 0;
1670 skb->priority = tid;
1671 skb_set_queue_mapping(skb, ieee802_1d_to_ac[tid]);
1673 nullfunc->qos_ctrl = cpu_to_le16(tid);
1675 if (reason == IEEE80211_FRAME_RELEASE_UAPSD) {
1676 nullfunc->qos_ctrl |=
1677 cpu_to_le16(IEEE80211_QOS_CTL_EOSP);
1679 nullfunc->frame_control |=
1680 cpu_to_le16(IEEE80211_FCTL_MOREDATA);
1684 info = IEEE80211_SKB_CB(skb);
1687 * Tell TX path to send this frame even though the
1688 * STA may still remain is PS mode after this frame
1689 * exchange. Also set EOSP to indicate this packet
1690 * ends the poll/service period.
1692 info->flags |= IEEE80211_TX_CTL_NO_PS_BUFFER |
1693 IEEE80211_TX_STATUS_EOSP |
1694 IEEE80211_TX_CTL_REQ_TX_STATUS;
1696 info->control.flags |= IEEE80211_TX_CTRL_PS_RESPONSE;
1699 drv_allow_buffered_frames(local, sta, BIT(tid), 1,
1702 skb->dev = sdata->dev;
1705 chanctx_conf = rcu_dereference(sdata->vif.bss_conf.chanctx_conf);
1706 if (WARN_ON(!chanctx_conf)) {
1712 info->band = chanctx_conf->def.chan->band;
1713 ieee80211_xmit(sdata, sta, skb);
1717 static int find_highest_prio_tid(unsigned long tids)
1719 /* lower 3 TIDs aren't ordered perfectly */
1721 return fls(tids) - 1;
1722 /* TID 0 is BE just like TID 3 */
1725 return fls(tids) - 1;
1728 /* Indicates if the MORE_DATA bit should be set in the last
1729 * frame obtained by ieee80211_sta_ps_get_frames.
1730 * Note that driver_release_tids is relevant only if
1731 * reason = IEEE80211_FRAME_RELEASE_PSPOLL
1734 ieee80211_sta_ps_more_data(struct sta_info *sta, u8 ignored_acs,
1735 enum ieee80211_frame_release_type reason,
1736 unsigned long driver_release_tids)
1740 /* If the driver has data on more than one TID then
1741 * certainly there's more data if we release just a
1742 * single frame now (from a single TID). This will
1743 * only happen for PS-Poll.
1745 if (reason == IEEE80211_FRAME_RELEASE_PSPOLL &&
1746 hweight16(driver_release_tids) > 1)
1749 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
1750 if (ignored_acs & ieee80211_ac_to_qos_mask[ac])
1753 if (!skb_queue_empty(&sta->tx_filtered[ac]) ||
1754 !skb_queue_empty(&sta->ps_tx_buf[ac]))
1762 ieee80211_sta_ps_get_frames(struct sta_info *sta, int n_frames, u8 ignored_acs,
1763 enum ieee80211_frame_release_type reason,
1764 struct sk_buff_head *frames,
1765 unsigned long *driver_release_tids)
1767 struct ieee80211_sub_if_data *sdata = sta->sdata;
1768 struct ieee80211_local *local = sdata->local;
1771 /* Get response frame(s) and more data bit for the last one. */
1772 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
1775 if (ignored_acs & ieee80211_ac_to_qos_mask[ac])
1778 tids = ieee80211_tids_for_ac(ac);
1780 /* if we already have frames from software, then we can't also
1781 * release from hardware queues
1783 if (skb_queue_empty(frames)) {
1784 *driver_release_tids |=
1785 sta->driver_buffered_tids & tids;
1786 *driver_release_tids |= sta->txq_buffered_tids & tids;
1789 if (!*driver_release_tids) {
1790 struct sk_buff *skb;
1792 while (n_frames > 0) {
1793 skb = skb_dequeue(&sta->tx_filtered[ac]);
1796 &sta->ps_tx_buf[ac]);
1798 local->total_ps_buffered--;
1803 __skb_queue_tail(frames, skb);
1807 /* If we have more frames buffered on this AC, then abort the
1808 * loop since we can't send more data from other ACs before
1809 * the buffered frames from this.
1811 if (!skb_queue_empty(&sta->tx_filtered[ac]) ||
1812 !skb_queue_empty(&sta->ps_tx_buf[ac]))
1818 ieee80211_sta_ps_deliver_response(struct sta_info *sta,
1819 int n_frames, u8 ignored_acs,
1820 enum ieee80211_frame_release_type reason)
1822 struct ieee80211_sub_if_data *sdata = sta->sdata;
1823 struct ieee80211_local *local = sdata->local;
1824 unsigned long driver_release_tids = 0;
1825 struct sk_buff_head frames;
1828 /* Service or PS-Poll period starts */
1829 set_sta_flag(sta, WLAN_STA_SP);
1831 __skb_queue_head_init(&frames);
1833 ieee80211_sta_ps_get_frames(sta, n_frames, ignored_acs, reason,
1834 &frames, &driver_release_tids);
1836 more_data = ieee80211_sta_ps_more_data(sta, ignored_acs, reason, driver_release_tids);
1838 if (driver_release_tids && reason == IEEE80211_FRAME_RELEASE_PSPOLL)
1839 driver_release_tids =
1840 BIT(find_highest_prio_tid(driver_release_tids));
1842 if (skb_queue_empty(&frames) && !driver_release_tids) {
1846 * For PS-Poll, this can only happen due to a race condition
1847 * when we set the TIM bit and the station notices it, but
1848 * before it can poll for the frame we expire it.
1850 * For uAPSD, this is said in the standard (11.2.1.5 h):
1851 * At each unscheduled SP for a non-AP STA, the AP shall
1852 * attempt to transmit at least one MSDU or MMPDU, but no
1853 * more than the value specified in the Max SP Length field
1854 * in the QoS Capability element from delivery-enabled ACs,
1855 * that are destined for the non-AP STA.
1857 * Since we have no other MSDU/MMPDU, transmit a QoS null frame.
1860 /* This will evaluate to 1, 3, 5 or 7. */
1861 for (ac = IEEE80211_AC_VO; ac < IEEE80211_NUM_ACS; ac++)
1862 if (!(ignored_acs & ieee80211_ac_to_qos_mask[ac]))
1866 ieee80211_send_null_response(sta, tid, reason, true, false);
1867 } else if (!driver_release_tids) {
1868 struct sk_buff_head pending;
1869 struct sk_buff *skb;
1872 bool need_null = false;
1874 skb_queue_head_init(&pending);
1876 while ((skb = __skb_dequeue(&frames))) {
1877 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1878 struct ieee80211_hdr *hdr = (void *) skb->data;
1884 * Tell TX path to send this frame even though the
1885 * STA may still remain is PS mode after this frame
1888 info->flags |= IEEE80211_TX_CTL_NO_PS_BUFFER;
1889 info->control.flags |= IEEE80211_TX_CTRL_PS_RESPONSE;
1892 * Use MoreData flag to indicate whether there are
1893 * more buffered frames for this STA
1895 if (more_data || !skb_queue_empty(&frames))
1896 hdr->frame_control |=
1897 cpu_to_le16(IEEE80211_FCTL_MOREDATA);
1899 hdr->frame_control &=
1900 cpu_to_le16(~IEEE80211_FCTL_MOREDATA);
1902 if (ieee80211_is_data_qos(hdr->frame_control) ||
1903 ieee80211_is_qos_nullfunc(hdr->frame_control))
1904 qoshdr = ieee80211_get_qos_ctl(hdr);
1906 tids |= BIT(skb->priority);
1908 __skb_queue_tail(&pending, skb);
1910 /* end service period after last frame or add one */
1911 if (!skb_queue_empty(&frames))
1914 if (reason != IEEE80211_FRAME_RELEASE_UAPSD) {
1915 /* for PS-Poll, there's only one frame */
1916 info->flags |= IEEE80211_TX_STATUS_EOSP |
1917 IEEE80211_TX_CTL_REQ_TX_STATUS;
1921 /* For uAPSD, things are a bit more complicated. If the
1922 * last frame has a QoS header (i.e. is a QoS-data or
1923 * QoS-nulldata frame) then just set the EOSP bit there
1925 * If the frame doesn't have a QoS header (which means
1926 * it should be a bufferable MMPDU) then we can't set
1927 * the EOSP bit in the QoS header; add a QoS-nulldata
1928 * frame to the list to send it after the MMPDU.
1930 * Note that this code is only in the mac80211-release
1931 * code path, we assume that the driver will not buffer
1932 * anything but QoS-data frames, or if it does, will
1933 * create the QoS-nulldata frame by itself if needed.
1935 * Cf. 802.11-2012 10.2.1.10 (c).
1938 *qoshdr |= IEEE80211_QOS_CTL_EOSP;
1940 info->flags |= IEEE80211_TX_STATUS_EOSP |
1941 IEEE80211_TX_CTL_REQ_TX_STATUS;
1943 /* The standard isn't completely clear on this
1944 * as it says the more-data bit should be set
1945 * if there are more BUs. The QoS-Null frame
1946 * we're about to send isn't buffered yet, we
1947 * only create it below, but let's pretend it
1948 * was buffered just in case some clients only
1949 * expect more-data=0 when eosp=1.
1951 hdr->frame_control |=
1952 cpu_to_le16(IEEE80211_FCTL_MOREDATA);
1959 drv_allow_buffered_frames(local, sta, tids, num,
1962 ieee80211_add_pending_skbs(local, &pending);
1965 ieee80211_send_null_response(
1966 sta, find_highest_prio_tid(tids),
1967 reason, false, false);
1969 sta_info_recalc_tim(sta);
1974 * We need to release a frame that is buffered somewhere in the
1975 * driver ... it'll have to handle that.
1976 * Note that the driver also has to check the number of frames
1977 * on the TIDs we're releasing from - if there are more than
1978 * n_frames it has to set the more-data bit (if we didn't ask
1979 * it to set it anyway due to other buffered frames); if there
1980 * are fewer than n_frames it has to make sure to adjust that
1981 * to allow the service period to end properly.
1983 drv_release_buffered_frames(local, sta, driver_release_tids,
1984 n_frames, reason, more_data);
1987 * Note that we don't recalculate the TIM bit here as it would
1988 * most likely have no effect at all unless the driver told us
1989 * that the TID(s) became empty before returning here from the
1991 * Either way, however, when the driver tells us that the TID(s)
1992 * became empty or we find that a txq became empty, we'll do the
1993 * TIM recalculation.
1996 for (tid = 0; tid < ARRAY_SIZE(sta->sta.txq); tid++) {
1997 if (!sta->sta.txq[tid] ||
1998 !(driver_release_tids & BIT(tid)) ||
1999 txq_has_queue(sta->sta.txq[tid]))
2002 sta_info_recalc_tim(sta);
2008 void ieee80211_sta_ps_deliver_poll_response(struct sta_info *sta)
2010 u8 ignore_for_response = sta->sta.uapsd_queues;
2013 * If all ACs are delivery-enabled then we should reply
2014 * from any of them, if only some are enabled we reply
2015 * only from the non-enabled ones.
2017 if (ignore_for_response == BIT(IEEE80211_NUM_ACS) - 1)
2018 ignore_for_response = 0;
2020 ieee80211_sta_ps_deliver_response(sta, 1, ignore_for_response,
2021 IEEE80211_FRAME_RELEASE_PSPOLL);
2024 void ieee80211_sta_ps_deliver_uapsd(struct sta_info *sta)
2026 int n_frames = sta->sta.max_sp;
2027 u8 delivery_enabled = sta->sta.uapsd_queues;
2030 * If we ever grow support for TSPEC this might happen if
2031 * the TSPEC update from hostapd comes in between a trigger
2032 * frame setting WLAN_STA_UAPSD in the RX path and this
2033 * actually getting called.
2035 if (!delivery_enabled)
2038 switch (sta->sta.max_sp) {
2049 /* XXX: what is a good value? */
2054 ieee80211_sta_ps_deliver_response(sta, n_frames, ~delivery_enabled,
2055 IEEE80211_FRAME_RELEASE_UAPSD);
2058 void ieee80211_sta_block_awake(struct ieee80211_hw *hw,
2059 struct ieee80211_sta *pubsta, bool block)
2061 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
2063 trace_api_sta_block_awake(sta->local, pubsta, block);
2066 set_sta_flag(sta, WLAN_STA_PS_DRIVER);
2067 ieee80211_clear_fast_xmit(sta);
2071 if (!test_sta_flag(sta, WLAN_STA_PS_DRIVER))
2074 if (!test_sta_flag(sta, WLAN_STA_PS_STA)) {
2075 set_sta_flag(sta, WLAN_STA_PS_DELIVER);
2076 clear_sta_flag(sta, WLAN_STA_PS_DRIVER);
2077 ieee80211_queue_work(hw, &sta->drv_deliver_wk);
2078 } else if (test_sta_flag(sta, WLAN_STA_PSPOLL) ||
2079 test_sta_flag(sta, WLAN_STA_UAPSD)) {
2080 /* must be asleep in this case */
2081 clear_sta_flag(sta, WLAN_STA_PS_DRIVER);
2082 ieee80211_queue_work(hw, &sta->drv_deliver_wk);
2084 clear_sta_flag(sta, WLAN_STA_PS_DRIVER);
2085 ieee80211_check_fast_xmit(sta);
2088 EXPORT_SYMBOL(ieee80211_sta_block_awake);
2090 void ieee80211_sta_eosp(struct ieee80211_sta *pubsta)
2092 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
2093 struct ieee80211_local *local = sta->local;
2095 trace_api_eosp(local, pubsta);
2097 clear_sta_flag(sta, WLAN_STA_SP);
2099 EXPORT_SYMBOL(ieee80211_sta_eosp);
2101 void ieee80211_send_eosp_nullfunc(struct ieee80211_sta *pubsta, int tid)
2103 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
2104 enum ieee80211_frame_release_type reason;
2107 trace_api_send_eosp_nullfunc(sta->local, pubsta, tid);
2109 reason = IEEE80211_FRAME_RELEASE_UAPSD;
2110 more_data = ieee80211_sta_ps_more_data(sta, ~sta->sta.uapsd_queues,
2113 ieee80211_send_null_response(sta, tid, reason, false, more_data);
2115 EXPORT_SYMBOL(ieee80211_send_eosp_nullfunc);
2117 void ieee80211_sta_set_buffered(struct ieee80211_sta *pubsta,
2118 u8 tid, bool buffered)
2120 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
2122 if (WARN_ON(tid >= IEEE80211_NUM_TIDS))
2125 trace_api_sta_set_buffered(sta->local, pubsta, tid, buffered);
2128 set_bit(tid, &sta->driver_buffered_tids);
2130 clear_bit(tid, &sta->driver_buffered_tids);
2132 sta_info_recalc_tim(sta);
2134 EXPORT_SYMBOL(ieee80211_sta_set_buffered);
2136 void ieee80211_sta_register_airtime(struct ieee80211_sta *pubsta, u8 tid,
2137 u32 tx_airtime, u32 rx_airtime)
2139 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
2140 struct ieee80211_local *local = sta->sdata->local;
2141 u8 ac = ieee80211_ac_from_tid(tid);
2145 if (sta->local->airtime_flags & AIRTIME_USE_TX)
2146 airtime += tx_airtime;
2147 if (sta->local->airtime_flags & AIRTIME_USE_RX)
2148 airtime += rx_airtime;
2150 spin_lock_bh(&local->active_txq_lock[ac]);
2151 sta->airtime[ac].tx_airtime += tx_airtime;
2152 sta->airtime[ac].rx_airtime += rx_airtime;
2154 diff = (u32)jiffies - sta->airtime[ac].last_active;
2155 if (diff <= AIRTIME_ACTIVE_DURATION)
2156 sta->airtime[ac].deficit -= airtime;
2158 spin_unlock_bh(&local->active_txq_lock[ac]);
2160 EXPORT_SYMBOL(ieee80211_sta_register_airtime);
2162 void __ieee80211_sta_recalc_aggregates(struct sta_info *sta, u16 active_links)
2167 if (!sta->sta.valid_links || !sta->sta.mlo) {
2168 sta->sta.cur = &sta->sta.deflink.agg;
2173 for (link_id = 0; link_id < ARRAY_SIZE((sta)->link); link_id++) {
2174 struct ieee80211_link_sta *link_sta;
2177 if (!(active_links & BIT(link_id)))
2180 link_sta = rcu_dereference(sta->sta.link[link_id]);
2185 sta->cur = sta->sta.deflink.agg;
2190 sta->cur.max_amsdu_len =
2191 min(sta->cur.max_amsdu_len,
2192 link_sta->agg.max_amsdu_len);
2193 sta->cur.max_rc_amsdu_len =
2194 min(sta->cur.max_rc_amsdu_len,
2195 link_sta->agg.max_rc_amsdu_len);
2197 for (i = 0; i < ARRAY_SIZE(sta->cur.max_tid_amsdu_len); i++)
2198 sta->cur.max_tid_amsdu_len[i] =
2199 min(sta->cur.max_tid_amsdu_len[i],
2200 link_sta->agg.max_tid_amsdu_len[i]);
2204 sta->sta.cur = &sta->cur;
2207 void ieee80211_sta_recalc_aggregates(struct ieee80211_sta *pubsta)
2209 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
2211 __ieee80211_sta_recalc_aggregates(sta, sta->sdata->vif.active_links);
2213 EXPORT_SYMBOL(ieee80211_sta_recalc_aggregates);
2215 void ieee80211_sta_update_pending_airtime(struct ieee80211_local *local,
2216 struct sta_info *sta, u8 ac,
2217 u16 tx_airtime, bool tx_completed)
2221 if (!wiphy_ext_feature_isset(local->hw.wiphy, NL80211_EXT_FEATURE_AQL))
2224 if (!tx_completed) {
2226 atomic_add(tx_airtime,
2227 &sta->airtime[ac].aql_tx_pending);
2229 atomic_add(tx_airtime, &local->aql_total_pending_airtime);
2230 atomic_add(tx_airtime, &local->aql_ac_pending_airtime[ac]);
2235 tx_pending = atomic_sub_return(tx_airtime,
2236 &sta->airtime[ac].aql_tx_pending);
2238 atomic_cmpxchg(&sta->airtime[ac].aql_tx_pending,
2242 atomic_sub(tx_airtime, &local->aql_total_pending_airtime);
2243 tx_pending = atomic_sub_return(tx_airtime,
2244 &local->aql_ac_pending_airtime[ac]);
2245 if (WARN_ONCE(tx_pending < 0,
2246 "Device %s AC %d pending airtime underflow: %u, %u",
2247 wiphy_name(local->hw.wiphy), ac, tx_pending,
2249 atomic_cmpxchg(&local->aql_ac_pending_airtime[ac],
2251 atomic_sub(tx_pending, &local->aql_total_pending_airtime);
2255 int sta_info_move_state(struct sta_info *sta,
2256 enum ieee80211_sta_state new_state)
2260 if (sta->sta_state == new_state)
2263 /* check allowed transitions first */
2265 switch (new_state) {
2266 case IEEE80211_STA_NONE:
2267 if (sta->sta_state != IEEE80211_STA_AUTH)
2270 case IEEE80211_STA_AUTH:
2271 if (sta->sta_state != IEEE80211_STA_NONE &&
2272 sta->sta_state != IEEE80211_STA_ASSOC)
2275 case IEEE80211_STA_ASSOC:
2276 if (sta->sta_state != IEEE80211_STA_AUTH &&
2277 sta->sta_state != IEEE80211_STA_AUTHORIZED)
2280 case IEEE80211_STA_AUTHORIZED:
2281 if (sta->sta_state != IEEE80211_STA_ASSOC)
2285 WARN(1, "invalid state %d", new_state);
2289 sta_dbg(sta->sdata, "moving STA %pM to state %d\n",
2290 sta->sta.addr, new_state);
2293 * notify the driver before the actual changes so it can
2294 * fail the transition
2296 if (test_sta_flag(sta, WLAN_STA_INSERTED)) {
2297 int err = drv_sta_state(sta->local, sta->sdata, sta,
2298 sta->sta_state, new_state);
2303 /* reflect the change in all state variables */
2305 switch (new_state) {
2306 case IEEE80211_STA_NONE:
2307 if (sta->sta_state == IEEE80211_STA_AUTH)
2308 clear_bit(WLAN_STA_AUTH, &sta->_flags);
2310 case IEEE80211_STA_AUTH:
2311 if (sta->sta_state == IEEE80211_STA_NONE) {
2312 set_bit(WLAN_STA_AUTH, &sta->_flags);
2313 } else if (sta->sta_state == IEEE80211_STA_ASSOC) {
2314 clear_bit(WLAN_STA_ASSOC, &sta->_flags);
2315 ieee80211_recalc_min_chandef(sta->sdata, -1);
2316 if (!sta->sta.support_p2p_ps)
2317 ieee80211_recalc_p2p_go_ps_allowed(sta->sdata);
2320 case IEEE80211_STA_ASSOC:
2321 if (sta->sta_state == IEEE80211_STA_AUTH) {
2322 set_bit(WLAN_STA_ASSOC, &sta->_flags);
2323 sta->assoc_at = ktime_get_boottime_ns();
2324 ieee80211_recalc_min_chandef(sta->sdata, -1);
2325 if (!sta->sta.support_p2p_ps)
2326 ieee80211_recalc_p2p_go_ps_allowed(sta->sdata);
2327 } else if (sta->sta_state == IEEE80211_STA_AUTHORIZED) {
2328 ieee80211_vif_dec_num_mcast(sta->sdata);
2329 clear_bit(WLAN_STA_AUTHORIZED, &sta->_flags);
2330 ieee80211_clear_fast_xmit(sta);
2331 ieee80211_clear_fast_rx(sta);
2334 case IEEE80211_STA_AUTHORIZED:
2335 if (sta->sta_state == IEEE80211_STA_ASSOC) {
2336 ieee80211_vif_inc_num_mcast(sta->sdata);
2337 set_bit(WLAN_STA_AUTHORIZED, &sta->_flags);
2338 ieee80211_check_fast_xmit(sta);
2339 ieee80211_check_fast_rx(sta);
2341 if (sta->sdata->vif.type == NL80211_IFTYPE_AP_VLAN ||
2342 sta->sdata->vif.type == NL80211_IFTYPE_AP)
2343 cfg80211_send_layer2_update(sta->sdata->dev,
2350 sta->sta_state = new_state;
2355 static struct ieee80211_sta_rx_stats *
2356 sta_get_last_rx_stats(struct sta_info *sta)
2358 struct ieee80211_sta_rx_stats *stats = &sta->deflink.rx_stats;
2361 if (!sta->deflink.pcpu_rx_stats)
2364 for_each_possible_cpu(cpu) {
2365 struct ieee80211_sta_rx_stats *cpustats;
2367 cpustats = per_cpu_ptr(sta->deflink.pcpu_rx_stats, cpu);
2369 if (time_after(cpustats->last_rx, stats->last_rx))
2376 static void sta_stats_decode_rate(struct ieee80211_local *local, u32 rate,
2377 struct rate_info *rinfo)
2379 rinfo->bw = STA_STATS_GET(BW, rate);
2381 switch (STA_STATS_GET(TYPE, rate)) {
2382 case STA_STATS_RATE_TYPE_VHT:
2383 rinfo->flags = RATE_INFO_FLAGS_VHT_MCS;
2384 rinfo->mcs = STA_STATS_GET(VHT_MCS, rate);
2385 rinfo->nss = STA_STATS_GET(VHT_NSS, rate);
2386 if (STA_STATS_GET(SGI, rate))
2387 rinfo->flags |= RATE_INFO_FLAGS_SHORT_GI;
2389 case STA_STATS_RATE_TYPE_HT:
2390 rinfo->flags = RATE_INFO_FLAGS_MCS;
2391 rinfo->mcs = STA_STATS_GET(HT_MCS, rate);
2392 if (STA_STATS_GET(SGI, rate))
2393 rinfo->flags |= RATE_INFO_FLAGS_SHORT_GI;
2395 case STA_STATS_RATE_TYPE_LEGACY: {
2396 struct ieee80211_supported_band *sband;
2399 int band = STA_STATS_GET(LEGACY_BAND, rate);
2400 int rate_idx = STA_STATS_GET(LEGACY_IDX, rate);
2402 sband = local->hw.wiphy->bands[band];
2404 if (WARN_ON_ONCE(!sband->bitrates))
2407 brate = sband->bitrates[rate_idx].bitrate;
2408 if (rinfo->bw == RATE_INFO_BW_5)
2410 else if (rinfo->bw == RATE_INFO_BW_10)
2414 rinfo->legacy = DIV_ROUND_UP(brate, 1 << shift);
2417 case STA_STATS_RATE_TYPE_HE:
2418 rinfo->flags = RATE_INFO_FLAGS_HE_MCS;
2419 rinfo->mcs = STA_STATS_GET(HE_MCS, rate);
2420 rinfo->nss = STA_STATS_GET(HE_NSS, rate);
2421 rinfo->he_gi = STA_STATS_GET(HE_GI, rate);
2422 rinfo->he_ru_alloc = STA_STATS_GET(HE_RU, rate);
2423 rinfo->he_dcm = STA_STATS_GET(HE_DCM, rate);
2425 case STA_STATS_RATE_TYPE_EHT:
2426 rinfo->flags = RATE_INFO_FLAGS_EHT_MCS;
2427 rinfo->mcs = STA_STATS_GET(EHT_MCS, rate);
2428 rinfo->nss = STA_STATS_GET(EHT_NSS, rate);
2429 rinfo->eht_gi = STA_STATS_GET(EHT_GI, rate);
2430 rinfo->eht_ru_alloc = STA_STATS_GET(EHT_RU, rate);
2435 static int sta_set_rate_info_rx(struct sta_info *sta, struct rate_info *rinfo)
2437 u32 rate = READ_ONCE(sta_get_last_rx_stats(sta)->last_rate);
2439 if (rate == STA_STATS_RATE_INVALID)
2442 sta_stats_decode_rate(sta->local, rate, rinfo);
2446 static inline u64 sta_get_tidstats_msdu(struct ieee80211_sta_rx_stats *rxstats,
2453 start = u64_stats_fetch_begin(&rxstats->syncp);
2454 value = rxstats->msdu[tid];
2455 } while (u64_stats_fetch_retry(&rxstats->syncp, start));
2460 static void sta_set_tidstats(struct sta_info *sta,
2461 struct cfg80211_tid_stats *tidstats,
2464 struct ieee80211_local *local = sta->local;
2467 if (!(tidstats->filled & BIT(NL80211_TID_STATS_RX_MSDU))) {
2468 tidstats->rx_msdu += sta_get_tidstats_msdu(&sta->deflink.rx_stats,
2471 if (sta->deflink.pcpu_rx_stats) {
2472 for_each_possible_cpu(cpu) {
2473 struct ieee80211_sta_rx_stats *cpurxs;
2475 cpurxs = per_cpu_ptr(sta->deflink.pcpu_rx_stats,
2477 tidstats->rx_msdu +=
2478 sta_get_tidstats_msdu(cpurxs, tid);
2482 tidstats->filled |= BIT(NL80211_TID_STATS_RX_MSDU);
2485 if (!(tidstats->filled & BIT(NL80211_TID_STATS_TX_MSDU))) {
2486 tidstats->filled |= BIT(NL80211_TID_STATS_TX_MSDU);
2487 tidstats->tx_msdu = sta->deflink.tx_stats.msdu[tid];
2490 if (!(tidstats->filled & BIT(NL80211_TID_STATS_TX_MSDU_RETRIES)) &&
2491 ieee80211_hw_check(&local->hw, REPORTS_TX_ACK_STATUS)) {
2492 tidstats->filled |= BIT(NL80211_TID_STATS_TX_MSDU_RETRIES);
2493 tidstats->tx_msdu_retries = sta->deflink.status_stats.msdu_retries[tid];
2496 if (!(tidstats->filled & BIT(NL80211_TID_STATS_TX_MSDU_FAILED)) &&
2497 ieee80211_hw_check(&local->hw, REPORTS_TX_ACK_STATUS)) {
2498 tidstats->filled |= BIT(NL80211_TID_STATS_TX_MSDU_FAILED);
2499 tidstats->tx_msdu_failed = sta->deflink.status_stats.msdu_failed[tid];
2502 if (tid < IEEE80211_NUM_TIDS) {
2503 spin_lock_bh(&local->fq.lock);
2506 tidstats->filled |= BIT(NL80211_TID_STATS_TXQ_STATS);
2507 ieee80211_fill_txq_stats(&tidstats->txq_stats,
2508 to_txq_info(sta->sta.txq[tid]));
2511 spin_unlock_bh(&local->fq.lock);
2515 static inline u64 sta_get_stats_bytes(struct ieee80211_sta_rx_stats *rxstats)
2521 start = u64_stats_fetch_begin(&rxstats->syncp);
2522 value = rxstats->bytes;
2523 } while (u64_stats_fetch_retry(&rxstats->syncp, start));
2528 void sta_set_sinfo(struct sta_info *sta, struct station_info *sinfo,
2531 struct ieee80211_sub_if_data *sdata = sta->sdata;
2532 struct ieee80211_local *local = sdata->local;
2535 struct ieee80211_sta_rx_stats *last_rxstats;
2537 last_rxstats = sta_get_last_rx_stats(sta);
2539 sinfo->generation = sdata->local->sta_generation;
2541 /* do before driver, so beacon filtering drivers have a
2542 * chance to e.g. just add the number of filtered beacons
2543 * (or just modify the value entirely, of course)
2545 if (sdata->vif.type == NL80211_IFTYPE_STATION)
2546 sinfo->rx_beacon = sdata->deflink.u.mgd.count_beacon_signal;
2548 drv_sta_statistics(local, sdata, &sta->sta, sinfo);
2549 sinfo->filled |= BIT_ULL(NL80211_STA_INFO_INACTIVE_TIME) |
2550 BIT_ULL(NL80211_STA_INFO_STA_FLAGS) |
2551 BIT_ULL(NL80211_STA_INFO_BSS_PARAM) |
2552 BIT_ULL(NL80211_STA_INFO_CONNECTED_TIME) |
2553 BIT_ULL(NL80211_STA_INFO_ASSOC_AT_BOOTTIME) |
2554 BIT_ULL(NL80211_STA_INFO_RX_DROP_MISC);
2556 if (sdata->vif.type == NL80211_IFTYPE_STATION) {
2557 sinfo->beacon_loss_count =
2558 sdata->deflink.u.mgd.beacon_loss_count;
2559 sinfo->filled |= BIT_ULL(NL80211_STA_INFO_BEACON_LOSS);
2562 sinfo->connected_time = ktime_get_seconds() - sta->last_connected;
2563 sinfo->assoc_at = sta->assoc_at;
2564 sinfo->inactive_time =
2565 jiffies_to_msecs(jiffies - ieee80211_sta_last_active(sta));
2567 if (!(sinfo->filled & (BIT_ULL(NL80211_STA_INFO_TX_BYTES64) |
2568 BIT_ULL(NL80211_STA_INFO_TX_BYTES)))) {
2569 sinfo->tx_bytes = 0;
2570 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++)
2571 sinfo->tx_bytes += sta->deflink.tx_stats.bytes[ac];
2572 sinfo->filled |= BIT_ULL(NL80211_STA_INFO_TX_BYTES64);
2575 if (!(sinfo->filled & BIT_ULL(NL80211_STA_INFO_TX_PACKETS))) {
2576 sinfo->tx_packets = 0;
2577 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++)
2578 sinfo->tx_packets += sta->deflink.tx_stats.packets[ac];
2579 sinfo->filled |= BIT_ULL(NL80211_STA_INFO_TX_PACKETS);
2582 if (!(sinfo->filled & (BIT_ULL(NL80211_STA_INFO_RX_BYTES64) |
2583 BIT_ULL(NL80211_STA_INFO_RX_BYTES)))) {
2584 sinfo->rx_bytes += sta_get_stats_bytes(&sta->deflink.rx_stats);
2586 if (sta->deflink.pcpu_rx_stats) {
2587 for_each_possible_cpu(cpu) {
2588 struct ieee80211_sta_rx_stats *cpurxs;
2590 cpurxs = per_cpu_ptr(sta->deflink.pcpu_rx_stats,
2592 sinfo->rx_bytes += sta_get_stats_bytes(cpurxs);
2596 sinfo->filled |= BIT_ULL(NL80211_STA_INFO_RX_BYTES64);
2599 if (!(sinfo->filled & BIT_ULL(NL80211_STA_INFO_RX_PACKETS))) {
2600 sinfo->rx_packets = sta->deflink.rx_stats.packets;
2601 if (sta->deflink.pcpu_rx_stats) {
2602 for_each_possible_cpu(cpu) {
2603 struct ieee80211_sta_rx_stats *cpurxs;
2605 cpurxs = per_cpu_ptr(sta->deflink.pcpu_rx_stats,
2607 sinfo->rx_packets += cpurxs->packets;
2610 sinfo->filled |= BIT_ULL(NL80211_STA_INFO_RX_PACKETS);
2613 if (!(sinfo->filled & BIT_ULL(NL80211_STA_INFO_TX_RETRIES))) {
2614 sinfo->tx_retries = sta->deflink.status_stats.retry_count;
2615 sinfo->filled |= BIT_ULL(NL80211_STA_INFO_TX_RETRIES);
2618 if (!(sinfo->filled & BIT_ULL(NL80211_STA_INFO_TX_FAILED))) {
2619 sinfo->tx_failed = sta->deflink.status_stats.retry_failed;
2620 sinfo->filled |= BIT_ULL(NL80211_STA_INFO_TX_FAILED);
2623 if (!(sinfo->filled & BIT_ULL(NL80211_STA_INFO_RX_DURATION))) {
2624 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++)
2625 sinfo->rx_duration += sta->airtime[ac].rx_airtime;
2626 sinfo->filled |= BIT_ULL(NL80211_STA_INFO_RX_DURATION);
2629 if (!(sinfo->filled & BIT_ULL(NL80211_STA_INFO_TX_DURATION))) {
2630 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++)
2631 sinfo->tx_duration += sta->airtime[ac].tx_airtime;
2632 sinfo->filled |= BIT_ULL(NL80211_STA_INFO_TX_DURATION);
2635 if (!(sinfo->filled & BIT_ULL(NL80211_STA_INFO_AIRTIME_WEIGHT))) {
2636 sinfo->airtime_weight = sta->airtime_weight;
2637 sinfo->filled |= BIT_ULL(NL80211_STA_INFO_AIRTIME_WEIGHT);
2640 sinfo->rx_dropped_misc = sta->deflink.rx_stats.dropped;
2641 if (sta->deflink.pcpu_rx_stats) {
2642 for_each_possible_cpu(cpu) {
2643 struct ieee80211_sta_rx_stats *cpurxs;
2645 cpurxs = per_cpu_ptr(sta->deflink.pcpu_rx_stats, cpu);
2646 sinfo->rx_dropped_misc += cpurxs->dropped;
2650 if (sdata->vif.type == NL80211_IFTYPE_STATION &&
2651 !(sdata->vif.driver_flags & IEEE80211_VIF_BEACON_FILTER)) {
2652 sinfo->filled |= BIT_ULL(NL80211_STA_INFO_BEACON_RX) |
2653 BIT_ULL(NL80211_STA_INFO_BEACON_SIGNAL_AVG);
2654 sinfo->rx_beacon_signal_avg = ieee80211_ave_rssi(&sdata->vif);
2657 if (ieee80211_hw_check(&sta->local->hw, SIGNAL_DBM) ||
2658 ieee80211_hw_check(&sta->local->hw, SIGNAL_UNSPEC)) {
2659 if (!(sinfo->filled & BIT_ULL(NL80211_STA_INFO_SIGNAL))) {
2660 sinfo->signal = (s8)last_rxstats->last_signal;
2661 sinfo->filled |= BIT_ULL(NL80211_STA_INFO_SIGNAL);
2664 if (!sta->deflink.pcpu_rx_stats &&
2665 !(sinfo->filled & BIT_ULL(NL80211_STA_INFO_SIGNAL_AVG))) {
2667 -ewma_signal_read(&sta->deflink.rx_stats_avg.signal);
2668 sinfo->filled |= BIT_ULL(NL80211_STA_INFO_SIGNAL_AVG);
2672 /* for the average - if pcpu_rx_stats isn't set - rxstats must point to
2673 * the sta->rx_stats struct, so the check here is fine with and without
2676 if (last_rxstats->chains &&
2677 !(sinfo->filled & (BIT_ULL(NL80211_STA_INFO_CHAIN_SIGNAL) |
2678 BIT_ULL(NL80211_STA_INFO_CHAIN_SIGNAL_AVG)))) {
2679 sinfo->filled |= BIT_ULL(NL80211_STA_INFO_CHAIN_SIGNAL);
2680 if (!sta->deflink.pcpu_rx_stats)
2681 sinfo->filled |= BIT_ULL(NL80211_STA_INFO_CHAIN_SIGNAL_AVG);
2683 sinfo->chains = last_rxstats->chains;
2685 for (i = 0; i < ARRAY_SIZE(sinfo->chain_signal); i++) {
2686 sinfo->chain_signal[i] =
2687 last_rxstats->chain_signal_last[i];
2688 sinfo->chain_signal_avg[i] =
2689 -ewma_signal_read(&sta->deflink.rx_stats_avg.chain_signal[i]);
2693 if (!(sinfo->filled & BIT_ULL(NL80211_STA_INFO_TX_BITRATE)) &&
2694 !sta->sta.valid_links) {
2695 sta_set_rate_info_tx(sta, &sta->deflink.tx_stats.last_rate,
2697 sinfo->filled |= BIT_ULL(NL80211_STA_INFO_TX_BITRATE);
2700 if (!(sinfo->filled & BIT_ULL(NL80211_STA_INFO_RX_BITRATE)) &&
2701 !sta->sta.valid_links) {
2702 if (sta_set_rate_info_rx(sta, &sinfo->rxrate) == 0)
2703 sinfo->filled |= BIT_ULL(NL80211_STA_INFO_RX_BITRATE);
2706 if (tidstats && !cfg80211_sinfo_alloc_tid_stats(sinfo, GFP_KERNEL)) {
2707 for (i = 0; i < IEEE80211_NUM_TIDS + 1; i++)
2708 sta_set_tidstats(sta, &sinfo->pertid[i], i);
2711 if (ieee80211_vif_is_mesh(&sdata->vif)) {
2712 #ifdef CONFIG_MAC80211_MESH
2713 sinfo->filled |= BIT_ULL(NL80211_STA_INFO_LLID) |
2714 BIT_ULL(NL80211_STA_INFO_PLID) |
2715 BIT_ULL(NL80211_STA_INFO_PLINK_STATE) |
2716 BIT_ULL(NL80211_STA_INFO_LOCAL_PM) |
2717 BIT_ULL(NL80211_STA_INFO_PEER_PM) |
2718 BIT_ULL(NL80211_STA_INFO_NONPEER_PM) |
2719 BIT_ULL(NL80211_STA_INFO_CONNECTED_TO_GATE) |
2720 BIT_ULL(NL80211_STA_INFO_CONNECTED_TO_AS);
2722 sinfo->llid = sta->mesh->llid;
2723 sinfo->plid = sta->mesh->plid;
2724 sinfo->plink_state = sta->mesh->plink_state;
2725 if (test_sta_flag(sta, WLAN_STA_TOFFSET_KNOWN)) {
2726 sinfo->filled |= BIT_ULL(NL80211_STA_INFO_T_OFFSET);
2727 sinfo->t_offset = sta->mesh->t_offset;
2729 sinfo->local_pm = sta->mesh->local_pm;
2730 sinfo->peer_pm = sta->mesh->peer_pm;
2731 sinfo->nonpeer_pm = sta->mesh->nonpeer_pm;
2732 sinfo->connected_to_gate = sta->mesh->connected_to_gate;
2733 sinfo->connected_to_as = sta->mesh->connected_to_as;
2737 sinfo->bss_param.flags = 0;
2738 if (sdata->vif.bss_conf.use_cts_prot)
2739 sinfo->bss_param.flags |= BSS_PARAM_FLAGS_CTS_PROT;
2740 if (sdata->vif.bss_conf.use_short_preamble)
2741 sinfo->bss_param.flags |= BSS_PARAM_FLAGS_SHORT_PREAMBLE;
2742 if (sdata->vif.bss_conf.use_short_slot)
2743 sinfo->bss_param.flags |= BSS_PARAM_FLAGS_SHORT_SLOT_TIME;
2744 sinfo->bss_param.dtim_period = sdata->vif.bss_conf.dtim_period;
2745 sinfo->bss_param.beacon_interval = sdata->vif.bss_conf.beacon_int;
2747 sinfo->sta_flags.set = 0;
2748 sinfo->sta_flags.mask = BIT(NL80211_STA_FLAG_AUTHORIZED) |
2749 BIT(NL80211_STA_FLAG_SHORT_PREAMBLE) |
2750 BIT(NL80211_STA_FLAG_WME) |
2751 BIT(NL80211_STA_FLAG_MFP) |
2752 BIT(NL80211_STA_FLAG_AUTHENTICATED) |
2753 BIT(NL80211_STA_FLAG_ASSOCIATED) |
2754 BIT(NL80211_STA_FLAG_TDLS_PEER);
2755 if (test_sta_flag(sta, WLAN_STA_AUTHORIZED))
2756 sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_AUTHORIZED);
2757 if (test_sta_flag(sta, WLAN_STA_SHORT_PREAMBLE))
2758 sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_SHORT_PREAMBLE);
2760 sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_WME);
2761 if (test_sta_flag(sta, WLAN_STA_MFP))
2762 sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_MFP);
2763 if (test_sta_flag(sta, WLAN_STA_AUTH))
2764 sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_AUTHENTICATED);
2765 if (test_sta_flag(sta, WLAN_STA_ASSOC))
2766 sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_ASSOCIATED);
2767 if (test_sta_flag(sta, WLAN_STA_TDLS_PEER))
2768 sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_TDLS_PEER);
2770 thr = sta_get_expected_throughput(sta);
2773 sinfo->filled |= BIT_ULL(NL80211_STA_INFO_EXPECTED_THROUGHPUT);
2774 sinfo->expected_throughput = thr;
2777 if (!(sinfo->filled & BIT_ULL(NL80211_STA_INFO_ACK_SIGNAL)) &&
2778 sta->deflink.status_stats.ack_signal_filled) {
2779 sinfo->ack_signal = sta->deflink.status_stats.last_ack_signal;
2780 sinfo->filled |= BIT_ULL(NL80211_STA_INFO_ACK_SIGNAL);
2783 if (!(sinfo->filled & BIT_ULL(NL80211_STA_INFO_ACK_SIGNAL_AVG)) &&
2784 sta->deflink.status_stats.ack_signal_filled) {
2785 sinfo->avg_ack_signal =
2786 -(s8)ewma_avg_signal_read(
2787 &sta->deflink.status_stats.avg_ack_signal);
2789 BIT_ULL(NL80211_STA_INFO_ACK_SIGNAL_AVG);
2792 if (ieee80211_vif_is_mesh(&sdata->vif)) {
2793 sinfo->filled |= BIT_ULL(NL80211_STA_INFO_AIRTIME_LINK_METRIC);
2794 sinfo->airtime_link_metric =
2795 airtime_link_metric_get(local, sta);
2799 u32 sta_get_expected_throughput(struct sta_info *sta)
2801 struct ieee80211_sub_if_data *sdata = sta->sdata;
2802 struct ieee80211_local *local = sdata->local;
2803 struct rate_control_ref *ref = NULL;
2806 if (test_sta_flag(sta, WLAN_STA_RATE_CONTROL))
2807 ref = local->rate_ctrl;
2809 /* check if the driver has a SW RC implementation */
2810 if (ref && ref->ops->get_expected_throughput)
2811 thr = ref->ops->get_expected_throughput(sta->rate_ctrl_priv);
2813 thr = drv_get_expected_throughput(local, sta);
2818 unsigned long ieee80211_sta_last_active(struct sta_info *sta)
2820 struct ieee80211_sta_rx_stats *stats = sta_get_last_rx_stats(sta);
2822 if (!sta->deflink.status_stats.last_ack ||
2823 time_after(stats->last_rx, sta->deflink.status_stats.last_ack))
2824 return stats->last_rx;
2825 return sta->deflink.status_stats.last_ack;
2828 static void sta_update_codel_params(struct sta_info *sta, u32 thr)
2830 if (thr && thr < STA_SLOW_THRESHOLD * sta->local->num_sta) {
2831 sta->cparams.target = MS2TIME(50);
2832 sta->cparams.interval = MS2TIME(300);
2833 sta->cparams.ecn = false;
2835 sta->cparams.target = MS2TIME(20);
2836 sta->cparams.interval = MS2TIME(100);
2837 sta->cparams.ecn = true;
2841 void ieee80211_sta_set_expected_throughput(struct ieee80211_sta *pubsta,
2844 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
2846 sta_update_codel_params(sta, thr);
2849 int ieee80211_sta_allocate_link(struct sta_info *sta, unsigned int link_id)
2851 struct ieee80211_sub_if_data *sdata = sta->sdata;
2852 struct sta_link_alloc *alloc;
2855 lockdep_assert_held(&sdata->local->sta_mtx);
2857 /* must represent an MLD from the start */
2858 if (WARN_ON(!sta->sta.valid_links))
2861 if (WARN_ON(sta->sta.valid_links & BIT(link_id) ||
2862 sta->link[link_id]))
2865 alloc = kzalloc(sizeof(*alloc), GFP_KERNEL);
2869 ret = sta_info_alloc_link(sdata->local, &alloc->info, GFP_KERNEL);
2875 sta_info_add_link(sta, link_id, &alloc->info, &alloc->sta);
2877 ieee80211_link_sta_debugfs_add(&alloc->info);
2882 void ieee80211_sta_free_link(struct sta_info *sta, unsigned int link_id)
2884 lockdep_assert_held(&sta->sdata->local->sta_mtx);
2886 sta_remove_link(sta, link_id, false);
2889 int ieee80211_sta_activate_link(struct sta_info *sta, unsigned int link_id)
2891 struct ieee80211_sub_if_data *sdata = sta->sdata;
2892 struct link_sta_info *link_sta;
2893 u16 old_links = sta->sta.valid_links;
2894 u16 new_links = old_links | BIT(link_id);
2897 link_sta = rcu_dereference_protected(sta->link[link_id],
2898 lockdep_is_held(&sdata->local->sta_mtx));
2900 if (WARN_ON(old_links == new_links || !link_sta))
2904 if (link_sta_info_hash_lookup(sdata->local, link_sta->addr)) {
2908 /* we only modify under the mutex so this is fine */
2911 sta->sta.valid_links = new_links;
2913 if (!test_sta_flag(sta, WLAN_STA_INSERTED))
2916 /* Ensure the values are updated for the driver,
2917 * redone by sta_remove_link on failure.
2919 ieee80211_sta_recalc_aggregates(&sta->sta);
2921 ret = drv_change_sta_links(sdata->local, sdata, &sta->sta,
2922 old_links, new_links);
2924 sta->sta.valid_links = old_links;
2925 sta_remove_link(sta, link_id, false);
2930 ret = link_sta_info_hash_add(sdata->local, link_sta);
2935 void ieee80211_sta_remove_link(struct sta_info *sta, unsigned int link_id)
2937 struct ieee80211_sub_if_data *sdata = sta->sdata;
2938 u16 old_links = sta->sta.valid_links;
2940 lockdep_assert_held(&sdata->local->sta_mtx);
2942 sta->sta.valid_links &= ~BIT(link_id);
2944 if (test_sta_flag(sta, WLAN_STA_INSERTED))
2945 drv_change_sta_links(sdata->local, sdata, &sta->sta,
2946 old_links, sta->sta.valid_links);
2948 sta_remove_link(sta, link_id, true);
2951 void ieee80211_sta_set_max_amsdu_subframes(struct sta_info *sta,
2952 const u8 *ext_capab,
2953 unsigned int ext_capab_len)
2957 sta->sta.max_amsdu_subframes = 0;
2959 if (ext_capab_len < 8)
2962 /* The sender might not have sent the last bit, consider it to be 0 */
2963 val = u8_get_bits(ext_capab[7], WLAN_EXT_CAPA8_MAX_MSDU_IN_AMSDU_LSB);
2965 /* we did get all the bits, take the MSB as well */
2966 if (ext_capab_len >= 9)
2967 val |= u8_get_bits(ext_capab[8],
2968 WLAN_EXT_CAPA9_MAX_MSDU_IN_AMSDU_MSB) << 1;
2971 sta->sta.max_amsdu_subframes = 4 << val;
2974 #ifdef CONFIG_LOCKDEP
2975 bool lockdep_sta_mutex_held(struct ieee80211_sta *pubsta)
2977 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
2979 return lockdep_is_held(&sta->local->sta_mtx);
2981 EXPORT_SYMBOL(lockdep_sta_mutex_held);