xref: /openbmc/linux/net/mac80211/sta_info.c (revision 86f22e7cce02d17da740d8d9a79a661bcff9eece)
1d2912cb1SThomas Gleixner // SPDX-License-Identifier: GPL-2.0-only
2f0706e82SJiri Benc /*
3f0706e82SJiri Benc  * Copyright 2002-2005, Instant802 Networks, Inc.
4f0706e82SJiri Benc  * Copyright 2006-2007	Jiri Benc <jbenc@suse.cz>
5d98ad83eSJohannes Berg  * Copyright 2013-2014  Intel Mobile Communications GmbH
6dcba665bSJohannes Berg  * Copyright (C) 2015 - 2017 Intel Deutschland GmbH
710a7ba92SJohannes Berg  * Copyright (C) 2018-2023 Intel Corporation
8f0706e82SJiri Benc  */
9f0706e82SJiri Benc 
10f0706e82SJiri Benc #include <linux/module.h>
11f0706e82SJiri Benc #include <linux/init.h>
12888d04dfSFelix Fietkau #include <linux/etherdevice.h>
13f0706e82SJiri Benc #include <linux/netdevice.h>
14f0706e82SJiri Benc #include <linux/types.h>
15f0706e82SJiri Benc #include <linux/slab.h>
16f0706e82SJiri Benc #include <linux/skbuff.h>
17f0706e82SJiri Benc #include <linux/if_arp.h>
180d174406SJohannes Berg #include <linux/timer.h>
19d0709a65SJohannes Berg #include <linux/rtnetlink.h>
20f0706e82SJiri Benc 
21484a54c2SToke Høiland-Jørgensen #include <net/codel.h>
22f0706e82SJiri Benc #include <net/mac80211.h>
23f0706e82SJiri Benc #include "ieee80211_i.h"
2424487981SJohannes Berg #include "driver-ops.h"
252c8dccc7SJohannes Berg #include "rate.h"
26f0706e82SJiri Benc #include "sta_info.h"
27e9f207f0SJiri Benc #include "debugfs_sta.h"
28ee385855SLuis Carlos Cobo #include "mesh.h"
29ce662b44SJohannes Berg #include "wme.h"
30f0706e82SJiri Benc 
31d0709a65SJohannes Berg /**
32d0709a65SJohannes Berg  * DOC: STA information lifetime rules
33d0709a65SJohannes Berg  *
34d0709a65SJohannes Berg  * STA info structures (&struct sta_info) are managed in a hash table
35d0709a65SJohannes Berg  * for faster lookup and a list for iteration. They are managed using
36d0709a65SJohannes Berg  * RCU, i.e. access to the list and hash table is protected by RCU.
37d0709a65SJohannes Berg  *
3834e89507SJohannes Berg  * Upon allocating a STA info structure with sta_info_alloc(), the caller
3934e89507SJohannes Berg  * owns that structure. It must then insert it into the hash table using
4034e89507SJohannes Berg  * either sta_info_insert() or sta_info_insert_rcu(); only in the latter
4134e89507SJohannes Berg  * case (which acquires an rcu read section but must not be called from
4234e89507SJohannes Berg  * within one) will the pointer still be valid after the call. Note that
4334e89507SJohannes Berg  * the caller may not do much with the STA info before inserting it, in
4434e89507SJohannes Berg  * particular, it may not start any mesh peer link management or add
4534e89507SJohannes Berg  * encryption keys.
4693e5deb1SJohannes Berg  *
4793e5deb1SJohannes Berg  * When the insertion fails (sta_info_insert()) returns non-zero), the
4893e5deb1SJohannes Berg  * structure will have been freed by sta_info_insert()!
49d0709a65SJohannes Berg  *
5034e89507SJohannes Berg  * Station entries are added by mac80211 when you establish a link with a
517e189a12SLuis R. Rodriguez  * peer. This means different things for the different type of interfaces
527e189a12SLuis R. Rodriguez  * we support. For a regular station this mean we add the AP sta when we
5325985edcSLucas De Marchi  * receive an association response from the AP. For IBSS this occurs when
5434e89507SJohannes Berg  * get to know about a peer on the same IBSS. For WDS we add the sta for
5525985edcSLucas De Marchi  * the peer immediately upon device open. When using AP mode we add stations
5634e89507SJohannes Berg  * for each respective station upon request from userspace through nl80211.
577e189a12SLuis R. Rodriguez  *
5834e89507SJohannes Berg  * In order to remove a STA info structure, various sta_info_destroy_*()
5934e89507SJohannes Berg  * calls are available.
60d0709a65SJohannes Berg  *
6134e89507SJohannes Berg  * There is no concept of ownership on a STA entry, each structure is
6234e89507SJohannes Berg  * owned by the global hash table/list until it is removed. All users of
6334e89507SJohannes Berg  * the structure need to be RCU protected so that the structure won't be
6434e89507SJohannes Berg  * freed before they are done using it.
65d0709a65SJohannes Berg  */
66f0706e82SJiri Benc 
67cb71f1d1SJohannes Berg struct sta_link_alloc {
68cb71f1d1SJohannes Berg 	struct link_sta_info info;
69cb71f1d1SJohannes Berg 	struct ieee80211_link_sta sta;
70c71420dbSJohannes Berg 	struct rcu_head rcu_head;
71cb71f1d1SJohannes Berg };
72cb71f1d1SJohannes Berg 
737bedd0cfSJohannes Berg static const struct rhashtable_params sta_rht_params = {
747bedd0cfSJohannes Berg 	.nelem_hint = 3, /* start small */
75caf22d31SJohannes Berg 	.automatic_shrinking = true,
767bedd0cfSJohannes Berg 	.head_offset = offsetof(struct sta_info, hash_node),
77ac100ce5SJohannes Berg 	.key_offset = offsetof(struct sta_info, addr),
787bedd0cfSJohannes Berg 	.key_len = ETH_ALEN,
79ebd82b39SJohannes Berg 	.max_size = CONFIG_MAC80211_STA_HASH_MAX_SIZE,
807bedd0cfSJohannes Berg };
817bedd0cfSJohannes Berg 
82ba6ddab9SJohannes Berg static const struct rhashtable_params link_sta_rht_params = {
83ba6ddab9SJohannes Berg 	.nelem_hint = 3, /* start small */
84ba6ddab9SJohannes Berg 	.automatic_shrinking = true,
85ba6ddab9SJohannes Berg 	.head_offset = offsetof(struct link_sta_info, link_hash_node),
86ba6ddab9SJohannes Berg 	.key_offset = offsetof(struct link_sta_info, addr),
87ba6ddab9SJohannes Berg 	.key_len = ETH_ALEN,
88ba6ddab9SJohannes Berg 	.max_size = CONFIG_MAC80211_STA_HASH_MAX_SIZE,
89ba6ddab9SJohannes Berg };
90ba6ddab9SJohannes Berg 
914d33960bSJohannes Berg /* Caller must hold local->sta_mtx */
92be8755e1SMichael Wu static int sta_info_hash_del(struct ieee80211_local *local,
93f0706e82SJiri Benc 			     struct sta_info *sta)
94f0706e82SJiri Benc {
9583e7e4ceSHerbert Xu 	return rhltable_remove(&local->sta_hash, &sta->hash_node,
967bedd0cfSJohannes Berg 			       sta_rht_params);
97f0706e82SJiri Benc }
98f0706e82SJiri Benc 
99f36fe0a2SJohannes Berg static int link_sta_info_hash_add(struct ieee80211_local *local,
100f36fe0a2SJohannes Berg 				  struct link_sta_info *link_sta)
101f36fe0a2SJohannes Berg {
102177577dbSJohannes Berg 	lockdep_assert_held(&local->sta_mtx);
103f36fe0a2SJohannes Berg 	return rhltable_insert(&local->link_sta_hash,
104f36fe0a2SJohannes Berg 			       &link_sta->link_hash_node,
105f36fe0a2SJohannes Berg 			       link_sta_rht_params);
106f36fe0a2SJohannes Berg }
107f36fe0a2SJohannes Berg 
108ba6ddab9SJohannes Berg static int link_sta_info_hash_del(struct ieee80211_local *local,
109ba6ddab9SJohannes Berg 				  struct link_sta_info *link_sta)
110ba6ddab9SJohannes Berg {
111177577dbSJohannes Berg 	lockdep_assert_held(&local->sta_mtx);
112ba6ddab9SJohannes Berg 	return rhltable_remove(&local->link_sta_hash,
113ba6ddab9SJohannes Berg 			       &link_sta->link_hash_node,
114ba6ddab9SJohannes Berg 			       link_sta_rht_params);
115ba6ddab9SJohannes Berg }
116ba6ddab9SJohannes Berg 
1175108ca82SJohannes Berg static void __cleanup_single_sta(struct sta_info *sta)
118b22cfcfcSEliad Peller {
119b22cfcfcSEliad Peller 	int ac, i;
120b22cfcfcSEliad Peller 	struct tid_ampdu_tx *tid_tx;
121b22cfcfcSEliad Peller 	struct ieee80211_sub_if_data *sdata = sta->sdata;
122b22cfcfcSEliad Peller 	struct ieee80211_local *local = sdata->local;
123d012a605SMarco Porsch 	struct ps_data *ps;
124b22cfcfcSEliad Peller 
125e3685e03SJohannes Berg 	if (test_sta_flag(sta, WLAN_STA_PS_STA) ||
1265ac2e350SJohannes Berg 	    test_sta_flag(sta, WLAN_STA_PS_DRIVER) ||
1275ac2e350SJohannes Berg 	    test_sta_flag(sta, WLAN_STA_PS_DELIVER)) {
128d012a605SMarco Porsch 		if (sta->sdata->vif.type == NL80211_IFTYPE_AP ||
129d012a605SMarco Porsch 		    sta->sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
130d012a605SMarco Porsch 			ps = &sdata->bss->ps;
1313f52b7e3SMarco Porsch 		else if (ieee80211_vif_is_mesh(&sdata->vif))
1323f52b7e3SMarco Porsch 			ps = &sdata->u.mesh.ps;
133d012a605SMarco Porsch 		else
134d012a605SMarco Porsch 			return;
135b22cfcfcSEliad Peller 
136b22cfcfcSEliad Peller 		clear_sta_flag(sta, WLAN_STA_PS_STA);
137e3685e03SJohannes Berg 		clear_sta_flag(sta, WLAN_STA_PS_DRIVER);
1385ac2e350SJohannes Berg 		clear_sta_flag(sta, WLAN_STA_PS_DELIVER);
139b22cfcfcSEliad Peller 
140d012a605SMarco Porsch 		atomic_dec(&ps->num_sta_ps);
141b22cfcfcSEliad Peller 	}
142b22cfcfcSEliad Peller 
143ba8c3d6fSFelix Fietkau 	for (i = 0; i < ARRAY_SIZE(sta->sta.txq); i++) {
144adf8ed01SJohannes Berg 		struct txq_info *txqi;
145adf8ed01SJohannes Berg 
146adf8ed01SJohannes Berg 		if (!sta->sta.txq[i])
147adf8ed01SJohannes Berg 			continue;
148adf8ed01SJohannes Berg 
149adf8ed01SJohannes Berg 		txqi = to_txq_info(sta->sta.txq[i]);
150ba8c3d6fSFelix Fietkau 
151fa962b92SMichal Kazior 		ieee80211_txq_purge(local, txqi);
152ba8c3d6fSFelix Fietkau 	}
153ba8c3d6fSFelix Fietkau 
154b22cfcfcSEliad Peller 	for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
155b22cfcfcSEliad Peller 		local->total_ps_buffered -= skb_queue_len(&sta->ps_tx_buf[ac]);
1561f98ab7fSFelix Fietkau 		ieee80211_purge_tx_queue(&local->hw, &sta->ps_tx_buf[ac]);
1571f98ab7fSFelix Fietkau 		ieee80211_purge_tx_queue(&local->hw, &sta->tx_filtered[ac]);
158b22cfcfcSEliad Peller 	}
159b22cfcfcSEliad Peller 
16045b5028eSThomas Pedersen 	if (ieee80211_vif_is_mesh(&sdata->vif))
16145b5028eSThomas Pedersen 		mesh_sta_cleanup(sta);
162b22cfcfcSEliad Peller 
1635ac2e350SJohannes Berg 	cancel_work_sync(&sta->drv_deliver_wk);
164b22cfcfcSEliad Peller 
165b22cfcfcSEliad Peller 	/*
166b22cfcfcSEliad Peller 	 * Destroy aggregation state here. It would be nice to wait for the
167b22cfcfcSEliad Peller 	 * driver to finish aggregation stop and then clean up, but for now
168b22cfcfcSEliad Peller 	 * drivers have to handle aggregation stop being requested, followed
169b22cfcfcSEliad Peller 	 * directly by station destruction.
170b22cfcfcSEliad Peller 	 */
1715a306f58SJohannes Berg 	for (i = 0; i < IEEE80211_NUM_TIDS; i++) {
172661eb381SJohannes Berg 		kfree(sta->ampdu_mlme.tid_start_tx[i]);
173b22cfcfcSEliad Peller 		tid_tx = rcu_dereference_raw(sta->ampdu_mlme.tid_tx[i]);
174b22cfcfcSEliad Peller 		if (!tid_tx)
175b22cfcfcSEliad Peller 			continue;
1761f98ab7fSFelix Fietkau 		ieee80211_purge_tx_queue(&local->hw, &tid_tx->pending);
177b22cfcfcSEliad Peller 		kfree(tid_tx);
178b22cfcfcSEliad Peller 	}
1795108ca82SJohannes Berg }
180b22cfcfcSEliad Peller 
1815108ca82SJohannes Berg static void cleanup_single_sta(struct sta_info *sta)
1825108ca82SJohannes Berg {
1835108ca82SJohannes Berg 	struct ieee80211_sub_if_data *sdata = sta->sdata;
1845108ca82SJohannes Berg 	struct ieee80211_local *local = sdata->local;
1855108ca82SJohannes Berg 
1865108ca82SJohannes Berg 	__cleanup_single_sta(sta);
187b22cfcfcSEliad Peller 	sta_info_free(local, sta);
188b22cfcfcSEliad Peller }
189b22cfcfcSEliad Peller 
19083e7e4ceSHerbert Xu struct rhlist_head *sta_info_hash_lookup(struct ieee80211_local *local,
19183e7e4ceSHerbert Xu 					 const u8 *addr)
19283e7e4ceSHerbert Xu {
19383e7e4ceSHerbert Xu 	return rhltable_lookup(&local->sta_hash, addr, sta_rht_params);
19483e7e4ceSHerbert Xu }
19583e7e4ceSHerbert Xu 
196d0709a65SJohannes Berg /* protected by RCU */
197abe60632SJohannes Berg struct sta_info *sta_info_get(struct ieee80211_sub_if_data *sdata,
198abe60632SJohannes Berg 			      const u8 *addr)
19943ba7e95SJohannes Berg {
200abe60632SJohannes Berg 	struct ieee80211_local *local = sdata->local;
20183e7e4ceSHerbert Xu 	struct rhlist_head *tmp;
20260f4b626SJohannes Berg 	struct sta_info *sta;
20343ba7e95SJohannes Berg 
20460f4b626SJohannes Berg 	rcu_read_lock();
20583e7e4ceSHerbert Xu 	for_each_sta_info(local, addr, sta, tmp) {
20660f4b626SJohannes Berg 		if (sta->sdata == sdata) {
20760f4b626SJohannes Berg 			rcu_read_unlock();
20860f4b626SJohannes Berg 			/* this is safe as the caller must already hold
20960f4b626SJohannes Berg 			 * another rcu read section or the mutex
21060f4b626SJohannes Berg 			 */
21160f4b626SJohannes Berg 			return sta;
21260f4b626SJohannes Berg 		}
21360f4b626SJohannes Berg 	}
21460f4b626SJohannes Berg 	rcu_read_unlock();
21560f4b626SJohannes Berg 	return NULL;
21643ba7e95SJohannes Berg }
21743ba7e95SJohannes Berg 
2180e5ded5aSFelix Fietkau /*
2190e5ded5aSFelix Fietkau  * Get sta info either from the specified interface
2200e5ded5aSFelix Fietkau  * or from one of its vlans
2210e5ded5aSFelix Fietkau  */
2220e5ded5aSFelix Fietkau struct sta_info *sta_info_get_bss(struct ieee80211_sub_if_data *sdata,
2230e5ded5aSFelix Fietkau 				  const u8 *addr)
2240e5ded5aSFelix Fietkau {
2250e5ded5aSFelix Fietkau 	struct ieee80211_local *local = sdata->local;
22683e7e4ceSHerbert Xu 	struct rhlist_head *tmp;
2270e5ded5aSFelix Fietkau 	struct sta_info *sta;
2280e5ded5aSFelix Fietkau 
2297bedd0cfSJohannes Berg 	rcu_read_lock();
23083e7e4ceSHerbert Xu 	for_each_sta_info(local, addr, sta, tmp) {
2317bedd0cfSJohannes Berg 		if (sta->sdata == sdata ||
2327bedd0cfSJohannes Berg 		    (sta->sdata->bss && sta->sdata->bss == sdata->bss)) {
2337bedd0cfSJohannes Berg 			rcu_read_unlock();
2347bedd0cfSJohannes Berg 			/* this is safe as the caller must already hold
2357bedd0cfSJohannes Berg 			 * another rcu read section or the mutex
2367bedd0cfSJohannes Berg 			 */
2370e5ded5aSFelix Fietkau 			return sta;
2380e5ded5aSFelix Fietkau 		}
2397bedd0cfSJohannes Berg 	}
2407bedd0cfSJohannes Berg 	rcu_read_unlock();
2417bedd0cfSJohannes Berg 	return NULL;
2427bedd0cfSJohannes Berg }
2430e5ded5aSFelix Fietkau 
244ba6ddab9SJohannes Berg struct rhlist_head *link_sta_info_hash_lookup(struct ieee80211_local *local,
245ba6ddab9SJohannes Berg 					      const u8 *addr)
246ba6ddab9SJohannes Berg {
247ba6ddab9SJohannes Berg 	return rhltable_lookup(&local->link_sta_hash, addr,
248ba6ddab9SJohannes Berg 			       link_sta_rht_params);
249ba6ddab9SJohannes Berg }
250ba6ddab9SJohannes Berg 
251ba6ddab9SJohannes Berg struct link_sta_info *
252ba6ddab9SJohannes Berg link_sta_info_get_bss(struct ieee80211_sub_if_data *sdata, const u8 *addr)
253ba6ddab9SJohannes Berg {
254ba6ddab9SJohannes Berg 	struct ieee80211_local *local = sdata->local;
255ba6ddab9SJohannes Berg 	struct rhlist_head *tmp;
256ba6ddab9SJohannes Berg 	struct link_sta_info *link_sta;
257ba6ddab9SJohannes Berg 
258ba6ddab9SJohannes Berg 	rcu_read_lock();
259ba6ddab9SJohannes Berg 	for_each_link_sta_info(local, addr, link_sta, tmp) {
260ba6ddab9SJohannes Berg 		struct sta_info *sta = link_sta->sta;
261ba6ddab9SJohannes Berg 
262ba6ddab9SJohannes Berg 		if (sta->sdata == sdata ||
263ba6ddab9SJohannes Berg 		    (sta->sdata->bss && sta->sdata->bss == sdata->bss)) {
264ba6ddab9SJohannes Berg 			rcu_read_unlock();
265ba6ddab9SJohannes Berg 			/* this is safe as the caller must already hold
266ba6ddab9SJohannes Berg 			 * another rcu read section or the mutex
267ba6ddab9SJohannes Berg 			 */
268ba6ddab9SJohannes Berg 			return link_sta;
269ba6ddab9SJohannes Berg 		}
270ba6ddab9SJohannes Berg 	}
271ba6ddab9SJohannes Berg 	rcu_read_unlock();
272ba6ddab9SJohannes Berg 	return NULL;
273ba6ddab9SJohannes Berg }
274ba6ddab9SJohannes Berg 
275ffa9598eSJohannes Berg struct ieee80211_sta *
276ffa9598eSJohannes Berg ieee80211_find_sta_by_link_addrs(struct ieee80211_hw *hw,
277ffa9598eSJohannes Berg 				 const u8 *addr,
278ffa9598eSJohannes Berg 				 const u8 *localaddr,
279ffa9598eSJohannes Berg 				 unsigned int *link_id)
280ffa9598eSJohannes Berg {
281ffa9598eSJohannes Berg 	struct ieee80211_local *local = hw_to_local(hw);
282ffa9598eSJohannes Berg 	struct link_sta_info *link_sta;
283ffa9598eSJohannes Berg 	struct rhlist_head *tmp;
284ffa9598eSJohannes Berg 
285ffa9598eSJohannes Berg 	for_each_link_sta_info(local, addr, link_sta, tmp) {
286ffa9598eSJohannes Berg 		struct sta_info *sta = link_sta->sta;
287ffa9598eSJohannes Berg 		struct ieee80211_link_data *link;
288ffa9598eSJohannes Berg 		u8 _link_id = link_sta->link_id;
289ffa9598eSJohannes Berg 
290ffa9598eSJohannes Berg 		if (!localaddr) {
291ffa9598eSJohannes Berg 			if (link_id)
292ffa9598eSJohannes Berg 				*link_id = _link_id;
293ffa9598eSJohannes Berg 			return &sta->sta;
294ffa9598eSJohannes Berg 		}
295ffa9598eSJohannes Berg 
296ffa9598eSJohannes Berg 		link = rcu_dereference(sta->sdata->link[_link_id]);
297ffa9598eSJohannes Berg 		if (!link)
298ffa9598eSJohannes Berg 			continue;
299ffa9598eSJohannes Berg 
300ffa9598eSJohannes Berg 		if (memcmp(link->conf->addr, localaddr, ETH_ALEN))
301ffa9598eSJohannes Berg 			continue;
302ffa9598eSJohannes Berg 
303ffa9598eSJohannes Berg 		if (link_id)
304ffa9598eSJohannes Berg 			*link_id = _link_id;
305ffa9598eSJohannes Berg 		return &sta->sta;
306ffa9598eSJohannes Berg 	}
307ffa9598eSJohannes Berg 
308ffa9598eSJohannes Berg 	return NULL;
309ffa9598eSJohannes Berg }
310ffa9598eSJohannes Berg EXPORT_SYMBOL_GPL(ieee80211_find_sta_by_link_addrs);
311ffa9598eSJohannes Berg 
3125072f73cSToke Høiland-Jørgensen struct sta_info *sta_info_get_by_addrs(struct ieee80211_local *local,
3135072f73cSToke Høiland-Jørgensen 				       const u8 *sta_addr, const u8 *vif_addr)
3145072f73cSToke Høiland-Jørgensen {
3155072f73cSToke Høiland-Jørgensen 	struct rhlist_head *tmp;
3165072f73cSToke Høiland-Jørgensen 	struct sta_info *sta;
3175072f73cSToke Høiland-Jørgensen 
3185072f73cSToke Høiland-Jørgensen 	for_each_sta_info(local, sta_addr, sta, tmp) {
3195072f73cSToke Høiland-Jørgensen 		if (ether_addr_equal(vif_addr, sta->sdata->vif.addr))
3205072f73cSToke Høiland-Jørgensen 			return sta;
3215072f73cSToke Høiland-Jørgensen 	}
3225072f73cSToke Høiland-Jørgensen 
3235072f73cSToke Høiland-Jørgensen 	return NULL;
3245072f73cSToke Høiland-Jørgensen }
3255072f73cSToke Høiland-Jørgensen 
3263b53fde8SJohannes Berg struct sta_info *sta_info_get_by_idx(struct ieee80211_sub_if_data *sdata,
3273b53fde8SJohannes Berg 				     int idx)
328ee385855SLuis Carlos Cobo {
3293b53fde8SJohannes Berg 	struct ieee80211_local *local = sdata->local;
330ee385855SLuis Carlos Cobo 	struct sta_info *sta;
331ee385855SLuis Carlos Cobo 	int i = 0;
332ee385855SLuis Carlos Cobo 
3338ca47eb9SMadhuparna Bhowmik 	list_for_each_entry_rcu(sta, &local->sta_list, list,
3348ca47eb9SMadhuparna Bhowmik 				lockdep_is_held(&local->sta_mtx)) {
3353b53fde8SJohannes Berg 		if (sdata != sta->sdata)
3362a8ca29aSLuis Carlos Cobo 			continue;
337ee385855SLuis Carlos Cobo 		if (i < idx) {
338ee385855SLuis Carlos Cobo 			++i;
339ee385855SLuis Carlos Cobo 			continue;
340ee385855SLuis Carlos Cobo 		}
3412a8ca29aSLuis Carlos Cobo 		return sta;
342ee385855SLuis Carlos Cobo 	}
343ee385855SLuis Carlos Cobo 
344ee385855SLuis Carlos Cobo 	return NULL;
345ee385855SLuis Carlos Cobo }
346f0706e82SJiri Benc 
347cb71f1d1SJohannes Berg static void sta_info_free_link(struct link_sta_info *link_sta)
348246b39e4SJohannes Berg {
349cb71f1d1SJohannes Berg 	free_percpu(link_sta->pcpu_rx_stats);
350cb71f1d1SJohannes Berg }
351246b39e4SJohannes Berg 
352ba6ddab9SJohannes Berg static void sta_remove_link(struct sta_info *sta, unsigned int link_id,
353ba6ddab9SJohannes Berg 			    bool unhash)
354cb71f1d1SJohannes Berg {
355cb71f1d1SJohannes Berg 	struct sta_link_alloc *alloc = NULL;
356c71420dbSJohannes Berg 	struct link_sta_info *link_sta;
357cb71f1d1SJohannes Berg 
358b8b80770SBenjamin Berg 	link_sta = rcu_access_pointer(sta->link[link_id]);
359b8b80770SBenjamin Berg 	if (link_sta != &sta->deflink)
360b8b80770SBenjamin Berg 		lockdep_assert_held(&sta->local->sta_mtx);
361c71420dbSJohannes Berg 
362c71420dbSJohannes Berg 	if (WARN_ON(!link_sta))
363cb71f1d1SJohannes Berg 		return;
364246b39e4SJohannes Berg 
365ba6ddab9SJohannes Berg 	if (unhash)
366ba6ddab9SJohannes Berg 		link_sta_info_hash_del(sta->local, link_sta);
367ba6ddab9SJohannes Berg 
368d2caad52SBenjamin Berg 	if (test_sta_flag(sta, WLAN_STA_INSERTED))
369d2caad52SBenjamin Berg 		ieee80211_link_sta_debugfs_remove(link_sta);
370d2caad52SBenjamin Berg 
371c71420dbSJohannes Berg 	if (link_sta != &sta->deflink)
372c71420dbSJohannes Berg 		alloc = container_of(link_sta, typeof(*alloc), info);
373cb71f1d1SJohannes Berg 
374cb71f1d1SJohannes Berg 	sta->sta.valid_links &= ~BIT(link_id);
375c71420dbSJohannes Berg 	RCU_INIT_POINTER(sta->link[link_id], NULL);
376c71420dbSJohannes Berg 	RCU_INIT_POINTER(sta->sta.link[link_id], NULL);
377cb71f1d1SJohannes Berg 	if (alloc) {
378cb71f1d1SJohannes Berg 		sta_info_free_link(&alloc->info);
379c71420dbSJohannes Berg 		kfree_rcu(alloc, rcu_head);
380246b39e4SJohannes Berg 	}
3814c51541dSBenjamin Berg 
3824c51541dSBenjamin Berg 	ieee80211_sta_recalc_aggregates(&sta->sta);
383246b39e4SJohannes Berg }
384246b39e4SJohannes Berg 
38593e5deb1SJohannes Berg /**
386d9a7ddb0SJohannes Berg  * sta_info_free - free STA
38793e5deb1SJohannes Berg  *
3886ef307bcSRandy Dunlap  * @local: pointer to the global information
38993e5deb1SJohannes Berg  * @sta: STA info to free
39093e5deb1SJohannes Berg  *
39193e5deb1SJohannes Berg  * This function must undo everything done by sta_info_alloc()
392d9a7ddb0SJohannes Berg  * that may happen before sta_info_insert(). It may only be
393d9a7ddb0SJohannes Berg  * called when sta_info_insert() has not been attempted (and
394d9a7ddb0SJohannes Berg  * if that fails, the station is freed anyway.)
39593e5deb1SJohannes Berg  */
396d9a7ddb0SJohannes Berg void sta_info_free(struct ieee80211_local *local, struct sta_info *sta)
39793e5deb1SJohannes Berg {
398cb71f1d1SJohannes Berg 	int i;
399cb71f1d1SJohannes Berg 
400cb71f1d1SJohannes Berg 	for (i = 0; i < ARRAY_SIZE(sta->link); i++) {
401587c5892SJohannes Berg 		struct link_sta_info *link_sta;
402587c5892SJohannes Berg 
403587c5892SJohannes Berg 		link_sta = rcu_access_pointer(sta->link[i]);
404587c5892SJohannes Berg 		if (!link_sta)
405cb71f1d1SJohannes Berg 			continue;
406cb71f1d1SJohannes Berg 
4070ad49045SJohannes Berg 		sta_remove_link(sta, i, false);
408cb71f1d1SJohannes Berg 	}
409cb71f1d1SJohannes Berg 
410dcd479e1SJohannes Berg 	/*
411dcd479e1SJohannes Berg 	 * If we had used sta_info_pre_move_state() then we might not
412dcd479e1SJohannes Berg 	 * have gone through the state transitions down again, so do
413dcd479e1SJohannes Berg 	 * it here now (and warn if it's inserted).
414dcd479e1SJohannes Berg 	 *
415dcd479e1SJohannes Berg 	 * This will clear state such as fast TX/RX that may have been
416dcd479e1SJohannes Berg 	 * allocated during state transitions.
417dcd479e1SJohannes Berg 	 */
418dcd479e1SJohannes Berg 	while (sta->sta_state > IEEE80211_STA_NONE) {
419dcd479e1SJohannes Berg 		int ret;
420dcd479e1SJohannes Berg 
421dcd479e1SJohannes Berg 		WARN_ON_ONCE(test_sta_flag(sta, WLAN_STA_INSERTED));
422dcd479e1SJohannes Berg 
423dcd479e1SJohannes Berg 		ret = sta_info_move_state(sta, sta->sta_state - 1);
424dcd479e1SJohannes Berg 		if (WARN_ONCE(ret, "sta_info_move_state() returned %d\n", ret))
425dcd479e1SJohannes Berg 			break;
426dcd479e1SJohannes Berg 	}
427dcd479e1SJohannes Berg 
428889cbb91SJohannes Berg 	if (sta->rate_ctrl)
4294b7679a5SJohannes Berg 		rate_control_free_sta(sta);
43093e5deb1SJohannes Berg 
431bdcbd8e0SJohannes Berg 	sta_dbg(sta->sdata, "Destroyed STA %pM\n", sta->sta.addr);
43293e5deb1SJohannes Berg 
433ba8c3d6fSFelix Fietkau 	kfree(to_txq_info(sta->sta.txq[0]));
43453d04525SFelix Fietkau 	kfree(rcu_dereference_raw(sta->sta.rates));
435433f5bc1SJohannes Berg #ifdef CONFIG_MAC80211_MESH
436433f5bc1SJohannes Berg 	kfree(sta->mesh);
437433f5bc1SJohannes Berg #endif
438246b39e4SJohannes Berg 
439cb71f1d1SJohannes Berg 	sta_info_free_link(&sta->deflink);
44093e5deb1SJohannes Berg 	kfree(sta);
44193e5deb1SJohannes Berg }
44293e5deb1SJohannes Berg 
4434d33960bSJohannes Berg /* Caller must hold local->sta_mtx */
44462b14b24SJohannes Berg static int sta_info_hash_add(struct ieee80211_local *local,
445d0709a65SJohannes Berg 			     struct sta_info *sta)
446f0706e82SJiri Benc {
44783e7e4ceSHerbert Xu 	return rhltable_insert(&local->sta_hash, &sta->hash_node,
4487bedd0cfSJohannes Berg 			       sta_rht_params);
449f0706e82SJiri Benc }
450f0706e82SJiri Benc 
4515ac2e350SJohannes Berg static void sta_deliver_ps_frames(struct work_struct *wk)
452af818581SJohannes Berg {
453af818581SJohannes Berg 	struct sta_info *sta;
454af818581SJohannes Berg 
4555ac2e350SJohannes Berg 	sta = container_of(wk, struct sta_info, drv_deliver_wk);
456af818581SJohannes Berg 
457af818581SJohannes Berg 	if (sta->dead)
458af818581SJohannes Berg 		return;
459af818581SJohannes Berg 
46054420473SHelmut Schaa 	local_bh_disable();
4615ac2e350SJohannes Berg 	if (!test_sta_flag(sta, WLAN_STA_PS_STA))
462af818581SJohannes Berg 		ieee80211_sta_ps_deliver_wakeup(sta);
4635ac2e350SJohannes Berg 	else if (test_and_clear_sta_flag(sta, WLAN_STA_PSPOLL))
464af818581SJohannes Berg 		ieee80211_sta_ps_deliver_poll_response(sta);
4655ac2e350SJohannes Berg 	else if (test_and_clear_sta_flag(sta, WLAN_STA_UAPSD))
46647086fc5SJohannes Berg 		ieee80211_sta_ps_deliver_uapsd(sta);
467ce662b44SJohannes Berg 	local_bh_enable();
468af818581SJohannes Berg }
469af818581SJohannes Berg 
470af65cd96SJohannes Berg static int sta_prepare_rate_control(struct ieee80211_local *local,
471af65cd96SJohannes Berg 				    struct sta_info *sta, gfp_t gfp)
472af65cd96SJohannes Berg {
47330686bf7SJohannes Berg 	if (ieee80211_hw_check(&local->hw, HAS_RATE_CONTROL))
474af65cd96SJohannes Berg 		return 0;
475af65cd96SJohannes Berg 
476889cbb91SJohannes Berg 	sta->rate_ctrl = local->rate_ctrl;
477af65cd96SJohannes Berg 	sta->rate_ctrl_priv = rate_control_alloc_sta(sta->rate_ctrl,
47835c347acSJohannes Berg 						     sta, gfp);
479889cbb91SJohannes Berg 	if (!sta->rate_ctrl_priv)
480af65cd96SJohannes Berg 		return -ENOMEM;
481af65cd96SJohannes Berg 
482af65cd96SJohannes Berg 	return 0;
483af65cd96SJohannes Berg }
484af65cd96SJohannes Berg 
485cb71f1d1SJohannes Berg static int sta_info_alloc_link(struct ieee80211_local *local,
486246b39e4SJohannes Berg 			       struct link_sta_info *link_info,
487246b39e4SJohannes Berg 			       gfp_t gfp)
488246b39e4SJohannes Berg {
489246b39e4SJohannes Berg 	struct ieee80211_hw *hw = &local->hw;
490246b39e4SJohannes Berg 	int i;
491246b39e4SJohannes Berg 
492246b39e4SJohannes Berg 	if (ieee80211_hw_check(hw, USES_RSS)) {
493246b39e4SJohannes Berg 		link_info->pcpu_rx_stats =
494246b39e4SJohannes Berg 			alloc_percpu_gfp(struct ieee80211_sta_rx_stats, gfp);
495246b39e4SJohannes Berg 		if (!link_info->pcpu_rx_stats)
496246b39e4SJohannes Berg 			return -ENOMEM;
497246b39e4SJohannes Berg 	}
498246b39e4SJohannes Berg 
499246b39e4SJohannes Berg 	link_info->rx_stats.last_rx = jiffies;
500246b39e4SJohannes Berg 	u64_stats_init(&link_info->rx_stats.syncp);
501246b39e4SJohannes Berg 
502246b39e4SJohannes Berg 	ewma_signal_init(&link_info->rx_stats_avg.signal);
503246b39e4SJohannes Berg 	ewma_avg_signal_init(&link_info->status_stats.avg_ack_signal);
504246b39e4SJohannes Berg 	for (i = 0; i < ARRAY_SIZE(link_info->rx_stats_avg.chain_signal); i++)
505246b39e4SJohannes Berg 		ewma_signal_init(&link_info->rx_stats_avg.chain_signal[i]);
506246b39e4SJohannes Berg 
507246b39e4SJohannes Berg 	return 0;
508246b39e4SJohannes Berg }
509246b39e4SJohannes Berg 
510cb71f1d1SJohannes Berg static void sta_info_add_link(struct sta_info *sta,
511cb71f1d1SJohannes Berg 			      unsigned int link_id,
512cb71f1d1SJohannes Berg 			      struct link_sta_info *link_info,
513cb71f1d1SJohannes Berg 			      struct ieee80211_link_sta *link_sta)
514cb71f1d1SJohannes Berg {
515cb71f1d1SJohannes Berg 	link_info->sta = sta;
516cb71f1d1SJohannes Berg 	link_info->link_id = link_id;
517c71420dbSJohannes Berg 	link_info->pub = link_sta;
5181d9e4c91SBenjamin Berg 	link_info->pub->sta = &sta->sta;
519c73993b8SJohannes Berg 	link_sta->link_id = link_id;
520c71420dbSJohannes Berg 	rcu_assign_pointer(sta->link[link_id], link_info);
521c71420dbSJohannes Berg 	rcu_assign_pointer(sta->sta.link[link_id], link_sta);
522261ce887SBenjamin Berg 
523261ce887SBenjamin Berg 	link_sta->smps_mode = IEEE80211_SMPS_OFF;
5244c51541dSBenjamin Berg 	link_sta->agg.max_rc_amsdu_len = IEEE80211_MAX_MPDU_LEN_HT_BA;
525cb71f1d1SJohannes Berg }
526cb71f1d1SJohannes Berg 
527f36fe0a2SJohannes Berg static struct sta_info *
528f36fe0a2SJohannes Berg __sta_info_alloc(struct ieee80211_sub_if_data *sdata,
529f36fe0a2SJohannes Berg 		 const u8 *addr, int link_id, const u8 *link_addr,
530f36fe0a2SJohannes Berg 		 gfp_t gfp)
531f0706e82SJiri Benc {
532d0709a65SJohannes Berg 	struct ieee80211_local *local = sdata->local;
533ba8c3d6fSFelix Fietkau 	struct ieee80211_hw *hw = &local->hw;
534f0706e82SJiri Benc 	struct sta_info *sta;
535107395f9SAlexander Wetzel 	void *txq_data;
536107395f9SAlexander Wetzel 	int size;
53716c5f15cSRon Rindjunsky 	int i;
538f0706e82SJiri Benc 
539ba8c3d6fSFelix Fietkau 	sta = kzalloc(sizeof(*sta) + hw->sta_data_size, gfp);
540f0706e82SJiri Benc 	if (!sta)
54173651ee6SJohannes Berg 		return NULL;
542f0706e82SJiri Benc 
543246b39e4SJohannes Berg 	sta->local = local;
544246b39e4SJohannes Berg 	sta->sdata = sdata;
545246b39e4SJohannes Berg 
546cb71f1d1SJohannes Berg 	if (sta_info_alloc_link(local, &sta->deflink, gfp))
54736fe8e4eSLorenzo Bianconi 		goto free;
548c9c5962bSJohannes Berg 
549cb71f1d1SJohannes Berg 	if (link_id >= 0) {
550cb71f1d1SJohannes Berg 		sta_info_add_link(sta, link_id, &sta->deflink,
551cb71f1d1SJohannes Berg 				  &sta->sta.deflink);
552cb71f1d1SJohannes Berg 		sta->sta.valid_links = BIT(link_id);
553cb71f1d1SJohannes Berg 	} else {
554cb71f1d1SJohannes Berg 		sta_info_add_link(sta, 0, &sta->deflink, &sta->sta.deflink);
555cb71f1d1SJohannes Berg 	}
556cb71f1d1SJohannes Berg 
5574c51541dSBenjamin Berg 	sta->sta.cur = &sta->sta.deflink.agg;
5584c51541dSBenjamin Berg 
55907346f81SJohannes Berg 	spin_lock_init(&sta->lock);
5601d147bfaSEmmanuel Grumbach 	spin_lock_init(&sta->ps_lock);
5615ac2e350SJohannes Berg 	INIT_WORK(&sta->drv_deliver_wk, sta_deliver_ps_frames);
56267c282c0SJohannes Berg 	INIT_WORK(&sta->ampdu_mlme.work, ieee80211_ba_session_work);
563a93e3644SJohannes Berg 	mutex_init(&sta->ampdu_mlme.mtx);
56487f59c70SThomas Pedersen #ifdef CONFIG_MAC80211_MESH
565433f5bc1SJohannes Berg 	if (ieee80211_vif_is_mesh(&sdata->vif)) {
566433f5bc1SJohannes Berg 		sta->mesh = kzalloc(sizeof(*sta->mesh), gfp);
567433f5bc1SJohannes Berg 		if (!sta->mesh)
568433f5bc1SJohannes Berg 			goto free;
5694c02d62fSKees Cook 		sta->mesh->plink_sta = sta;
570433f5bc1SJohannes Berg 		spin_lock_init(&sta->mesh->plink_lock);
57145d33746SBaligh Gasmi 		if (!sdata->u.mesh.user_mpm)
5724c02d62fSKees Cook 			timer_setup(&sta->mesh->plink_timer, mesh_plink_timer,
5734c02d62fSKees Cook 				    0);
574433f5bc1SJohannes Berg 		sta->mesh->nonpeer_pm = NL80211_MESH_POWER_ACTIVE;
575433f5bc1SJohannes Berg 	}
57687f59c70SThomas Pedersen #endif
57707346f81SJohannes Berg 
578ac100ce5SJohannes Berg 	memcpy(sta->addr, addr, ETH_ALEN);
57917741cdcSJohannes Berg 	memcpy(sta->sta.addr, addr, ETH_ALEN);
580f36fe0a2SJohannes Berg 	memcpy(sta->deflink.addr, link_addr, ETH_ALEN);
581f36fe0a2SJohannes Berg 	memcpy(sta->sta.deflink.addr, link_addr, ETH_ALEN);
582480dd46bSMaxim Altshul 	sta->sta.max_rx_aggregation_subframes =
583480dd46bSMaxim Altshul 		local->hw.max_rx_aggregation_subframes;
584480dd46bSMaxim Altshul 
585046d2e7cSSriram R 	/* TODO link specific alloc and assignments for MLO Link STA */
586046d2e7cSSriram R 
58796fc6efbSAlexander Wetzel 	/* Extended Key ID needs to install keys for keyid 0 and 1 Rx-only.
58896fc6efbSAlexander Wetzel 	 * The Tx path starts to use a key as soon as the key slot ptk_idx
58996fc6efbSAlexander Wetzel 	 * references to is not NULL. To not use the initial Rx-only key
59096fc6efbSAlexander Wetzel 	 * prematurely for Tx initialize ptk_idx to an impossible PTK keyid
59196fc6efbSAlexander Wetzel 	 * which always will refer to a NULL key.
59296fc6efbSAlexander Wetzel 	 */
59396fc6efbSAlexander Wetzel 	BUILD_BUG_ON(ARRAY_SIZE(sta->ptk) <= INVALID_PTK_KEYIDX);
59496fc6efbSAlexander Wetzel 	sta->ptk_idx = INVALID_PTK_KEYIDX;
59596fc6efbSAlexander Wetzel 
5960f9c5a61SJohannes Berg 
5973a11ce08SJohannes Berg 	ieee80211_init_frag_cache(&sta->frags);
5983a11ce08SJohannes Berg 
59971ec375cSJohannes Berg 	sta->sta_state = IEEE80211_STA_NONE;
60071ec375cSJohannes Berg 
6016e4c0d04SFelix Fietkau 	if (sdata->vif.type == NL80211_IFTYPE_MESH_POINT)
6026e4c0d04SFelix Fietkau 		sta->amsdu_mesh_control = -1;
6036e4c0d04SFelix Fietkau 
604b6da911bSLiad Kaufman 	/* Mark TID as unreserved */
605b6da911bSLiad Kaufman 	sta->reserved_tid = IEEE80211_TID_UNRESERVED;
606b6da911bSLiad Kaufman 
60784b00607SArnd Bergmann 	sta->last_connected = ktime_get_seconds();
608541a45a1SBruno Randolf 
609107395f9SAlexander Wetzel 	size = sizeof(struct txq_info) +
610ba8c3d6fSFelix Fietkau 	       ALIGN(hw->txq_data_size, sizeof(void *));
611ba8c3d6fSFelix Fietkau 
612ba8c3d6fSFelix Fietkau 	txq_data = kcalloc(ARRAY_SIZE(sta->sta.txq), size, gfp);
613ba8c3d6fSFelix Fietkau 	if (!txq_data)
614ba8c3d6fSFelix Fietkau 		goto free;
615ba8c3d6fSFelix Fietkau 
616ba8c3d6fSFelix Fietkau 	for (i = 0; i < ARRAY_SIZE(sta->sta.txq); i++) {
617ba8c3d6fSFelix Fietkau 		struct txq_info *txq = txq_data + i * size;
618ba8c3d6fSFelix Fietkau 
619107395f9SAlexander Wetzel 		/* might not do anything for the (bufferable) MMPDU TXQ */
620fa962b92SMichal Kazior 		ieee80211_txq_init(sdata, sta, txq, i);
621abfbc3afSJohannes Berg 	}
622ba8c3d6fSFelix Fietkau 
623ba8c3d6fSFelix Fietkau 	if (sta_prepare_rate_control(local, sta, gfp))
624ba8c3d6fSFelix Fietkau 		goto free_txq;
625f0706e82SJiri Benc 
626942741daSFelix Fietkau 	sta->airtime_weight = IEEE80211_DEFAULT_AIRTIME_WEIGHT;
627b4809e94SToke Høiland-Jørgensen 
628948d887dSJohannes Berg 	for (i = 0; i < IEEE80211_NUM_ACS; i++) {
629948d887dSJohannes Berg 		skb_queue_head_init(&sta->ps_tx_buf[i]);
630948d887dSJohannes Berg 		skb_queue_head_init(&sta->tx_filtered[i]);
631942741daSFelix Fietkau 		sta->airtime[i].deficit = sta->airtime_weight;
632942741daSFelix Fietkau 		atomic_set(&sta->airtime[i].aql_tx_pending, 0);
633942741daSFelix Fietkau 		sta->airtime[i].aql_limit_low = local->aql_txq_limit_low[i];
634942741daSFelix Fietkau 		sta->airtime[i].aql_limit_high = local->aql_txq_limit_high[i];
635948d887dSJohannes Berg 	}
63673651ee6SJohannes Berg 
6375a306f58SJohannes Berg 	for (i = 0; i < IEEE80211_NUM_TIDS; i++)
6384be929beSAlexey Dobriyan 		sta->last_seq_ctrl[i] = cpu_to_le16(USHRT_MAX);
639cccaec98SSenthil Balasubramanian 
640bd718fc1SJohannes Berg 	for (i = 0; i < NUM_NL80211_BANDS; i++) {
641bd718fc1SJohannes Berg 		u32 mandatory = 0;
642bd718fc1SJohannes Berg 		int r;
643bd718fc1SJohannes Berg 
644bd718fc1SJohannes Berg 		if (!hw->wiphy->bands[i])
645bd718fc1SJohannes Berg 			continue;
646bd718fc1SJohannes Berg 
647bd718fc1SJohannes Berg 		switch (i) {
648bd718fc1SJohannes Berg 		case NL80211_BAND_2GHZ:
64963fa0426SSrinivasan Raju 		case NL80211_BAND_LC:
650bd718fc1SJohannes Berg 			/*
651bd718fc1SJohannes Berg 			 * We use both here, even if we cannot really know for
652bd718fc1SJohannes Berg 			 * sure the station will support both, but the only use
653bd718fc1SJohannes Berg 			 * for this is when we don't know anything yet and send
654bd718fc1SJohannes Berg 			 * management frames, and then we'll pick the lowest
655bd718fc1SJohannes Berg 			 * possible rate anyway.
656bd718fc1SJohannes Berg 			 * If we don't include _G here, we cannot find a rate
657bd718fc1SJohannes Berg 			 * in P2P, and thus trigger the WARN_ONCE() in rate.c
658bd718fc1SJohannes Berg 			 */
659bd718fc1SJohannes Berg 			mandatory = IEEE80211_RATE_MANDATORY_B |
660bd718fc1SJohannes Berg 				    IEEE80211_RATE_MANDATORY_G;
661bd718fc1SJohannes Berg 			break;
662bd718fc1SJohannes Berg 		case NL80211_BAND_5GHZ:
663bd718fc1SJohannes Berg 			mandatory = IEEE80211_RATE_MANDATORY_A;
664bd718fc1SJohannes Berg 			break;
665bd718fc1SJohannes Berg 		case NL80211_BAND_60GHZ:
666bd718fc1SJohannes Berg 			WARN_ON(1);
667bd718fc1SJohannes Berg 			mandatory = 0;
668bd718fc1SJohannes Berg 			break;
669bd718fc1SJohannes Berg 		}
670bd718fc1SJohannes Berg 
671bd718fc1SJohannes Berg 		for (r = 0; r < hw->wiphy->bands[i]->n_bitrates; r++) {
672bd718fc1SJohannes Berg 			struct ieee80211_rate *rate;
673bd718fc1SJohannes Berg 
674bd718fc1SJohannes Berg 			rate = &hw->wiphy->bands[i]->bitrates[r];
675bd718fc1SJohannes Berg 
676bd718fc1SJohannes Berg 			if (!(rate->flags & mandatory))
677bd718fc1SJohannes Berg 				continue;
678046d2e7cSSriram R 			sta->sta.deflink.supp_rates[i] |= BIT(r);
679bd718fc1SJohannes Berg 		}
680bd718fc1SJohannes Berg 	}
681bd718fc1SJohannes Berg 
682484a54c2SToke Høiland-Jørgensen 	sta->cparams.ce_threshold = CODEL_DISABLED_THRESHOLD;
683484a54c2SToke Høiland-Jørgensen 	sta->cparams.target = MS2TIME(20);
684484a54c2SToke Høiland-Jørgensen 	sta->cparams.interval = MS2TIME(100);
685484a54c2SToke Høiland-Jørgensen 	sta->cparams.ecn = true;
686dfcb63ceSToke Høiland-Jørgensen 	sta->cparams.ce_threshold_selector = 0;
687dfcb63ceSToke Høiland-Jørgensen 	sta->cparams.ce_threshold_mask = 0;
688484a54c2SToke Høiland-Jørgensen 
689bdcbd8e0SJohannes Berg 	sta_dbg(sdata, "Allocated STA %pM\n", sta->sta.addr);
690ef04a297SJohannes Berg 
691abfbc3afSJohannes Berg 	return sta;
692ba8c3d6fSFelix Fietkau 
693ba8c3d6fSFelix Fietkau free_txq:
694ba8c3d6fSFelix Fietkau 	kfree(to_txq_info(sta->sta.txq[0]));
695ba8c3d6fSFelix Fietkau free:
696cb71f1d1SJohannes Berg 	sta_info_free_link(&sta->deflink);
697433f5bc1SJohannes Berg #ifdef CONFIG_MAC80211_MESH
698433f5bc1SJohannes Berg 	kfree(sta->mesh);
699433f5bc1SJohannes Berg #endif
700ba8c3d6fSFelix Fietkau 	kfree(sta);
701ba8c3d6fSFelix Fietkau 	return NULL;
70273651ee6SJohannes Berg }
70373651ee6SJohannes Berg 
704f36fe0a2SJohannes Berg struct sta_info *sta_info_alloc(struct ieee80211_sub_if_data *sdata,
705f36fe0a2SJohannes Berg 				const u8 *addr, gfp_t gfp)
706f36fe0a2SJohannes Berg {
707f36fe0a2SJohannes Berg 	return __sta_info_alloc(sdata, addr, -1, addr, gfp);
708f36fe0a2SJohannes Berg }
709f36fe0a2SJohannes Berg 
710f36fe0a2SJohannes Berg struct sta_info *sta_info_alloc_with_link(struct ieee80211_sub_if_data *sdata,
711f36fe0a2SJohannes Berg 					  const u8 *mld_addr,
712f36fe0a2SJohannes Berg 					  unsigned int link_id,
713f36fe0a2SJohannes Berg 					  const u8 *link_addr,
714f36fe0a2SJohannes Berg 					  gfp_t gfp)
715f36fe0a2SJohannes Berg {
716f36fe0a2SJohannes Berg 	return __sta_info_alloc(sdata, mld_addr, link_id, link_addr, gfp);
717f36fe0a2SJohannes Berg }
718f36fe0a2SJohannes Berg 
7198c71df7aSGuy Eilam static int sta_info_insert_check(struct sta_info *sta)
72034e89507SJohannes Berg {
72134e89507SJohannes Berg 	struct ieee80211_sub_if_data *sdata = sta->sdata;
72234e89507SJohannes Berg 
72303e4497eSJohannes Berg 	/*
72403e4497eSJohannes Berg 	 * Can't be a WARN_ON because it can be triggered through a race:
72503e4497eSJohannes Berg 	 * something inserts a STA (on one CPU) without holding the RTNL
72603e4497eSJohannes Berg 	 * and another CPU turns off the net device.
72703e4497eSJohannes Berg 	 */
7288c71df7aSGuy Eilam 	if (unlikely(!ieee80211_sdata_running(sdata)))
7298c71df7aSGuy Eilam 		return -ENETDOWN;
73003e4497eSJohannes Berg 
731b203ca39SJoe Perches 	if (WARN_ON(ether_addr_equal(sta->sta.addr, sdata->vif.addr) ||
732deebea0aSYueHaibing 		    !is_valid_ether_addr(sta->sta.addr)))
7338c71df7aSGuy Eilam 		return -EINVAL;
7348c71df7aSGuy Eilam 
73583e7e4ceSHerbert Xu 	/* The RCU read lock is required by rhashtable due to
73683e7e4ceSHerbert Xu 	 * asynchronous resize/rehash.  We also require the mutex
73783e7e4ceSHerbert Xu 	 * for correctness.
73831104891SJohannes Berg 	 */
73931104891SJohannes Berg 	rcu_read_lock();
74031104891SJohannes Berg 	lockdep_assert_held(&sdata->local->sta_mtx);
74131104891SJohannes Berg 	if (ieee80211_hw_check(&sdata->local->hw, NEEDS_UNIQUE_STA_ADDR) &&
74231104891SJohannes Berg 	    ieee80211_find_sta_by_ifaddr(&sdata->local->hw, sta->addr, NULL)) {
74331104891SJohannes Berg 		rcu_read_unlock();
74431104891SJohannes Berg 		return -ENOTUNIQ;
74531104891SJohannes Berg 	}
74631104891SJohannes Berg 	rcu_read_unlock();
74731104891SJohannes Berg 
7488c71df7aSGuy Eilam 	return 0;
74993e5deb1SJohannes Berg }
75044213b5eSJohannes Berg 
751f09603a2SJohannes Berg static int sta_info_insert_drv_state(struct ieee80211_local *local,
752f09603a2SJohannes Berg 				     struct ieee80211_sub_if_data *sdata,
753f09603a2SJohannes Berg 				     struct sta_info *sta)
754f09603a2SJohannes Berg {
755f09603a2SJohannes Berg 	enum ieee80211_sta_state state;
756f09603a2SJohannes Berg 	int err = 0;
757f09603a2SJohannes Berg 
758f09603a2SJohannes Berg 	for (state = IEEE80211_STA_NOTEXIST; state < sta->sta_state; state++) {
759f09603a2SJohannes Berg 		err = drv_sta_state(local, sdata, sta, state, state + 1);
760f09603a2SJohannes Berg 		if (err)
761f09603a2SJohannes Berg 			break;
762f09603a2SJohannes Berg 	}
763f09603a2SJohannes Berg 
764f09603a2SJohannes Berg 	if (!err) {
765a4ec45a4SJohannes Berg 		/*
766a4ec45a4SJohannes Berg 		 * Drivers using legacy sta_add/sta_remove callbacks only
767a4ec45a4SJohannes Berg 		 * get uploaded set to true after sta_add is called.
768a4ec45a4SJohannes Berg 		 */
769a4ec45a4SJohannes Berg 		if (!local->ops->sta_add)
770f09603a2SJohannes Berg 			sta->uploaded = true;
771f09603a2SJohannes Berg 		return 0;
772f09603a2SJohannes Berg 	}
773f09603a2SJohannes Berg 
774f09603a2SJohannes Berg 	if (sdata->vif.type == NL80211_IFTYPE_ADHOC) {
775bdcbd8e0SJohannes Berg 		sdata_info(sdata,
776bdcbd8e0SJohannes Berg 			   "failed to move IBSS STA %pM to state %d (%d) - keeping it anyway\n",
777bdcbd8e0SJohannes Berg 			   sta->sta.addr, state + 1, err);
778f09603a2SJohannes Berg 		err = 0;
779f09603a2SJohannes Berg 	}
780f09603a2SJohannes Berg 
781f09603a2SJohannes Berg 	/* unwind on error */
782f09603a2SJohannes Berg 	for (; state > IEEE80211_STA_NOTEXIST; state--)
783f09603a2SJohannes Berg 		WARN_ON(drv_sta_state(local, sdata, sta, state, state - 1));
784f09603a2SJohannes Berg 
785f09603a2SJohannes Berg 	return err;
786f09603a2SJohannes Berg }
787f09603a2SJohannes Berg 
788d405fd8cSGregory Greenman static void
789d405fd8cSGregory Greenman ieee80211_recalc_p2p_go_ps_allowed(struct ieee80211_sub_if_data *sdata)
790d405fd8cSGregory Greenman {
791d405fd8cSGregory Greenman 	struct ieee80211_local *local = sdata->local;
792d405fd8cSGregory Greenman 	bool allow_p2p_go_ps = sdata->vif.p2p;
793d405fd8cSGregory Greenman 	struct sta_info *sta;
794d405fd8cSGregory Greenman 
795d405fd8cSGregory Greenman 	rcu_read_lock();
796d405fd8cSGregory Greenman 	list_for_each_entry_rcu(sta, &local->sta_list, list) {
797d405fd8cSGregory Greenman 		if (sdata != sta->sdata ||
798d405fd8cSGregory Greenman 		    !test_sta_flag(sta, WLAN_STA_ASSOC))
799d405fd8cSGregory Greenman 			continue;
800d405fd8cSGregory Greenman 		if (!sta->sta.support_p2p_ps) {
801d405fd8cSGregory Greenman 			allow_p2p_go_ps = false;
802d405fd8cSGregory Greenman 			break;
803d405fd8cSGregory Greenman 		}
804d405fd8cSGregory Greenman 	}
805d405fd8cSGregory Greenman 	rcu_read_unlock();
806d405fd8cSGregory Greenman 
807d405fd8cSGregory Greenman 	if (allow_p2p_go_ps != sdata->vif.bss_conf.allow_p2p_go_ps) {
808d405fd8cSGregory Greenman 		sdata->vif.bss_conf.allow_p2p_go_ps = allow_p2p_go_ps;
809d8675a63SJohannes Berg 		ieee80211_link_info_change_notify(sdata, &sdata->deflink,
810d8675a63SJohannes Berg 						  BSS_CHANGED_P2P_PS);
811d405fd8cSGregory Greenman 	}
812d405fd8cSGregory Greenman }
813d405fd8cSGregory Greenman 
81434e89507SJohannes Berg /*
8158c71df7aSGuy Eilam  * should be called with sta_mtx locked
8168c71df7aSGuy Eilam  * this function replaces the mutex lock
8178c71df7aSGuy Eilam  * with a RCU lock
8188c71df7aSGuy Eilam  */
8194d33960bSJohannes Berg static int sta_info_insert_finish(struct sta_info *sta) __acquires(RCU)
8208c71df7aSGuy Eilam {
8218c71df7aSGuy Eilam 	struct ieee80211_local *local = sta->local;
8228c71df7aSGuy Eilam 	struct ieee80211_sub_if_data *sdata = sta->sdata;
8230c2e3842SKoen Vandeputte 	struct station_info *sinfo = NULL;
8248c71df7aSGuy Eilam 	int err = 0;
8258c71df7aSGuy Eilam 
8268c71df7aSGuy Eilam 	lockdep_assert_held(&local->sta_mtx);
8278c71df7aSGuy Eilam 
8287852e361SJohannes Berg 	/* check if STA exists already */
8297852e361SJohannes Berg 	if (sta_info_get_bss(sdata, sta->sta.addr)) {
8304d33960bSJohannes Berg 		err = -EEXIST;
8318f9dcc29SAhmed Zaki 		goto out_cleanup;
83234e89507SJohannes Berg 	}
83334e89507SJohannes Berg 
8340c2e3842SKoen Vandeputte 	sinfo = kzalloc(sizeof(struct station_info), GFP_KERNEL);
8350c2e3842SKoen Vandeputte 	if (!sinfo) {
8360c2e3842SKoen Vandeputte 		err = -ENOMEM;
8378f9dcc29SAhmed Zaki 		goto out_cleanup;
8380c2e3842SKoen Vandeputte 	}
8390c2e3842SKoen Vandeputte 
8404d33960bSJohannes Berg 	local->num_sta++;
8414d33960bSJohannes Berg 	local->sta_generation++;
8424d33960bSJohannes Berg 	smp_mb();
8434d33960bSJohannes Berg 
8445108ca82SJohannes Berg 	/* simplify things and don't accept BA sessions yet */
8455108ca82SJohannes Berg 	set_sta_flag(sta, WLAN_STA_BLOCK_BA);
8465108ca82SJohannes Berg 
8474d33960bSJohannes Berg 	/* make the station visible */
84862b14b24SJohannes Berg 	err = sta_info_hash_add(local, sta);
84962b14b24SJohannes Berg 	if (err)
85062b14b24SJohannes Berg 		goto out_drop_sta;
8514d33960bSJohannes Berg 
852f36fe0a2SJohannes Berg 	if (sta->sta.valid_links) {
853f36fe0a2SJohannes Berg 		err = link_sta_info_hash_add(local, &sta->deflink);
854f36fe0a2SJohannes Berg 		if (err) {
855f36fe0a2SJohannes Berg 			sta_info_hash_del(local, sta);
856f36fe0a2SJohannes Berg 			goto out_drop_sta;
857f36fe0a2SJohannes Berg 		}
858f36fe0a2SJohannes Berg 	}
859f36fe0a2SJohannes Berg 
8602bad7748SArik Nemtsov 	list_add_tail_rcu(&sta->list, &local->sta_list);
86183d5cc01SJohannes Berg 
8624dde3c36SMordechay Goodstein 	/* update channel context before notifying the driver about state
8634dde3c36SMordechay Goodstein 	 * change, this enables driver using the updated channel context right away.
8644dde3c36SMordechay Goodstein 	 */
8654dde3c36SMordechay Goodstein 	if (sta->sta_state >= IEEE80211_STA_ASSOC) {
8660cbf348aSAndrei Otcheretianski 		ieee80211_recalc_min_chandef(sta->sdata, -1);
8674dde3c36SMordechay Goodstein 		if (!sta->sta.support_p2p_ps)
8684dde3c36SMordechay Goodstein 			ieee80211_recalc_p2p_go_ps_allowed(sta->sdata);
8694dde3c36SMordechay Goodstein 	}
8704dde3c36SMordechay Goodstein 
8715108ca82SJohannes Berg 	/* notify driver */
8725108ca82SJohannes Berg 	err = sta_info_insert_drv_state(local, sdata, sta);
8735108ca82SJohannes Berg 	if (err)
8745108ca82SJohannes Berg 		goto out_remove;
8755108ca82SJohannes Berg 
87683d5cc01SJohannes Berg 	set_sta_flag(sta, WLAN_STA_INSERTED);
877d405fd8cSGregory Greenman 
8785108ca82SJohannes Berg 	/* accept BA sessions now */
8795108ca82SJohannes Berg 	clear_sta_flag(sta, WLAN_STA_BLOCK_BA);
8804d33960bSJohannes Berg 
8814d33960bSJohannes Berg 	ieee80211_sta_debugfs_add(sta);
8824d33960bSJohannes Berg 	rate_control_add_sta_debugfs(sta);
883d2caad52SBenjamin Berg 	if (sta->sta.valid_links) {
884d2caad52SBenjamin Berg 		int i;
885d2caad52SBenjamin Berg 
886d2caad52SBenjamin Berg 		for (i = 0; i < ARRAY_SIZE(sta->link); i++) {
887d2caad52SBenjamin Berg 			struct link_sta_info *link_sta;
888d2caad52SBenjamin Berg 
889d2caad52SBenjamin Berg 			link_sta = rcu_dereference_protected(sta->link[i],
890d2caad52SBenjamin Berg 							     lockdep_is_held(&local->sta_mtx));
891d2caad52SBenjamin Berg 
892d2caad52SBenjamin Berg 			if (!link_sta)
893d2caad52SBenjamin Berg 				continue;
894d2caad52SBenjamin Berg 
895d2caad52SBenjamin Berg 			ieee80211_link_sta_debugfs_add(link_sta);
896d2caad52SBenjamin Berg 			if (sdata->vif.active_links & BIT(i))
897d2caad52SBenjamin Berg 				ieee80211_link_sta_debugfs_drv_add(link_sta);
898d2caad52SBenjamin Berg 		}
899d2caad52SBenjamin Berg 	} else {
900d2caad52SBenjamin Berg 		ieee80211_link_sta_debugfs_add(&sta->deflink);
901d2caad52SBenjamin Berg 		ieee80211_link_sta_debugfs_drv_add(&sta->deflink);
902d2caad52SBenjamin Berg 	}
9034d33960bSJohannes Berg 
9040ef049dcSArnd Bergmann 	sinfo->generation = local->sta_generation;
9050ef049dcSArnd Bergmann 	cfg80211_new_sta(sdata->dev, sta->sta.addr, sinfo, GFP_KERNEL);
9060ef049dcSArnd Bergmann 	kfree(sinfo);
907d0709a65SJohannes Berg 
908bdcbd8e0SJohannes Berg 	sta_dbg(sdata, "Inserted STA %pM\n", sta->sta.addr);
909f0706e82SJiri Benc 
91034e89507SJohannes Berg 	/* move reference to rcu-protected */
91134e89507SJohannes Berg 	rcu_read_lock();
91234e89507SJohannes Berg 	mutex_unlock(&local->sta_mtx);
913e9f207f0SJiri Benc 
91473651ee6SJohannes Berg 	if (ieee80211_vif_is_mesh(&sdata->vif))
91573651ee6SJohannes Berg 		mesh_accept_plinks_update(sdata);
91673651ee6SJohannes Berg 
91754b79d87SFelix Fietkau 	ieee80211_check_fast_xmit(sta);
91854b79d87SFelix Fietkau 
91973651ee6SJohannes Berg 	return 0;
9205108ca82SJohannes Berg  out_remove:
9210ad49045SJohannes Berg 	if (sta->sta.valid_links)
9220ad49045SJohannes Berg 		link_sta_info_hash_del(local, &sta->deflink);
9235108ca82SJohannes Berg 	sta_info_hash_del(local, sta);
9245108ca82SJohannes Berg 	list_del_rcu(&sta->list);
92562b14b24SJohannes Berg  out_drop_sta:
9265108ca82SJohannes Berg 	local->num_sta--;
9275108ca82SJohannes Berg 	synchronize_net();
9288f9dcc29SAhmed Zaki  out_cleanup:
9297bc40aedSJohannes Berg 	cleanup_single_sta(sta);
9304d33960bSJohannes Berg 	mutex_unlock(&local->sta_mtx);
931ea32f065SSudip Mukherjee 	kfree(sinfo);
9324d33960bSJohannes Berg 	rcu_read_lock();
9334d33960bSJohannes Berg 	return err;
9348c71df7aSGuy Eilam }
9358c71df7aSGuy Eilam 
9368c71df7aSGuy Eilam int sta_info_insert_rcu(struct sta_info *sta) __acquires(RCU)
9378c71df7aSGuy Eilam {
9388c71df7aSGuy Eilam 	struct ieee80211_local *local = sta->local;
939308f7fcfSZhao, Gang 	int err;
9408c71df7aSGuy Eilam 
9414d33960bSJohannes Berg 	might_sleep();
9424d33960bSJohannes Berg 
94331104891SJohannes Berg 	mutex_lock(&local->sta_mtx);
94431104891SJohannes Berg 
9458c71df7aSGuy Eilam 	err = sta_info_insert_check(sta);
9468c71df7aSGuy Eilam 	if (err) {
9477bc40aedSJohannes Berg 		sta_info_free(local, sta);
94831104891SJohannes Berg 		mutex_unlock(&local->sta_mtx);
9498c71df7aSGuy Eilam 		rcu_read_lock();
9507bc40aedSJohannes Berg 		return err;
9518c71df7aSGuy Eilam 	}
9528c71df7aSGuy Eilam 
9537bc40aedSJohannes Berg 	return sta_info_insert_finish(sta);
954f0706e82SJiri Benc }
955f0706e82SJiri Benc 
95634e89507SJohannes Berg int sta_info_insert(struct sta_info *sta)
95734e89507SJohannes Berg {
95834e89507SJohannes Berg 	int err = sta_info_insert_rcu(sta);
95934e89507SJohannes Berg 
96034e89507SJohannes Berg 	rcu_read_unlock();
96134e89507SJohannes Berg 
96234e89507SJohannes Berg 	return err;
96334e89507SJohannes Berg }
96434e89507SJohannes Berg 
965d012a605SMarco Porsch static inline void __bss_tim_set(u8 *tim, u16 id)
966004c872eSJohannes Berg {
967004c872eSJohannes Berg 	/*
968004c872eSJohannes Berg 	 * This format has been mandated by the IEEE specifications,
969004c872eSJohannes Berg 	 * so this line may not be changed to use the __set_bit() format.
970004c872eSJohannes Berg 	 */
971d012a605SMarco Porsch 	tim[id / 8] |= (1 << (id % 8));
972004c872eSJohannes Berg }
973004c872eSJohannes Berg 
974d012a605SMarco Porsch static inline void __bss_tim_clear(u8 *tim, u16 id)
975004c872eSJohannes Berg {
976004c872eSJohannes Berg 	/*
977004c872eSJohannes Berg 	 * This format has been mandated by the IEEE specifications,
978004c872eSJohannes Berg 	 * so this line may not be changed to use the __clear_bit() format.
979004c872eSJohannes Berg 	 */
980d012a605SMarco Porsch 	tim[id / 8] &= ~(1 << (id % 8));
981004c872eSJohannes Berg }
982004c872eSJohannes Berg 
9833d5839b6SIlan Peer static inline bool __bss_tim_get(u8 *tim, u16 id)
9843d5839b6SIlan Peer {
9853d5839b6SIlan Peer 	/*
9863d5839b6SIlan Peer 	 * This format has been mandated by the IEEE specifications,
9873d5839b6SIlan Peer 	 * so this line may not be changed to use the test_bit() format.
9883d5839b6SIlan Peer 	 */
9893d5839b6SIlan Peer 	return tim[id / 8] & (1 << (id % 8));
9903d5839b6SIlan Peer }
9913d5839b6SIlan Peer 
992948d887dSJohannes Berg static unsigned long ieee80211_tids_for_ac(int ac)
993004c872eSJohannes Berg {
994948d887dSJohannes Berg 	/* If we ever support TIDs > 7, this obviously needs to be adjusted */
995948d887dSJohannes Berg 	switch (ac) {
996948d887dSJohannes Berg 	case IEEE80211_AC_VO:
997948d887dSJohannes Berg 		return BIT(6) | BIT(7);
998948d887dSJohannes Berg 	case IEEE80211_AC_VI:
999948d887dSJohannes Berg 		return BIT(4) | BIT(5);
1000948d887dSJohannes Berg 	case IEEE80211_AC_BE:
1001948d887dSJohannes Berg 		return BIT(0) | BIT(3);
1002948d887dSJohannes Berg 	case IEEE80211_AC_BK:
1003948d887dSJohannes Berg 		return BIT(1) | BIT(2);
1004948d887dSJohannes Berg 	default:
1005948d887dSJohannes Berg 		WARN_ON(1);
1006948d887dSJohannes Berg 		return 0;
1007d0709a65SJohannes Berg 	}
1008004c872eSJohannes Berg }
1009004c872eSJohannes Berg 
10109b7a86f3SJohannes Berg static void __sta_info_recalc_tim(struct sta_info *sta, bool ignore_pending)
1011004c872eSJohannes Berg {
1012c868cb35SJohannes Berg 	struct ieee80211_local *local = sta->local;
1013d012a605SMarco Porsch 	struct ps_data *ps;
1014948d887dSJohannes Berg 	bool indicate_tim = false;
1015948d887dSJohannes Berg 	u8 ignore_for_tim = sta->sta.uapsd_queues;
1016948d887dSJohannes Berg 	int ac;
1017a69bd8e6SBob Copeland 	u16 id = sta->sta.aid;
1018004c872eSJohannes Berg 
1019d012a605SMarco Porsch 	if (sta->sdata->vif.type == NL80211_IFTYPE_AP ||
1020d012a605SMarco Porsch 	    sta->sdata->vif.type == NL80211_IFTYPE_AP_VLAN) {
1021c868cb35SJohannes Berg 		if (WARN_ON_ONCE(!sta->sdata->bss))
1022c868cb35SJohannes Berg 			return;
10233e122be0SJohannes Berg 
1024d012a605SMarco Porsch 		ps = &sta->sdata->bss->ps;
10253f52b7e3SMarco Porsch #ifdef CONFIG_MAC80211_MESH
10263f52b7e3SMarco Porsch 	} else if (ieee80211_vif_is_mesh(&sta->sdata->vif)) {
10273f52b7e3SMarco Porsch 		ps = &sta->sdata->u.mesh.ps;
10283f52b7e3SMarco Porsch #endif
1029d012a605SMarco Porsch 	} else {
1030d012a605SMarco Porsch 		return;
1031d012a605SMarco Porsch 	}
1032d012a605SMarco Porsch 
1033c868cb35SJohannes Berg 	/* No need to do anything if the driver does all */
1034d98937f4SEmmanuel Grumbach 	if (ieee80211_hw_check(&local->hw, AP_LINK_PS) && !local->ops->set_tim)
1035c868cb35SJohannes Berg 		return;
1036004c872eSJohannes Berg 
1037c868cb35SJohannes Berg 	if (sta->dead)
1038c868cb35SJohannes Berg 		goto done;
10393e122be0SJohannes Berg 
1040948d887dSJohannes Berg 	/*
1041948d887dSJohannes Berg 	 * If all ACs are delivery-enabled then we should build
1042948d887dSJohannes Berg 	 * the TIM bit for all ACs anyway; if only some are then
1043948d887dSJohannes Berg 	 * we ignore those and build the TIM bit using only the
1044948d887dSJohannes Berg 	 * non-enabled ones.
1045948d887dSJohannes Berg 	 */
1046948d887dSJohannes Berg 	if (ignore_for_tim == BIT(IEEE80211_NUM_ACS) - 1)
1047948d887dSJohannes Berg 		ignore_for_tim = 0;
1048948d887dSJohannes Berg 
10499b7a86f3SJohannes Berg 	if (ignore_pending)
10509b7a86f3SJohannes Berg 		ignore_for_tim = BIT(IEEE80211_NUM_ACS) - 1;
10519b7a86f3SJohannes Berg 
1052948d887dSJohannes Berg 	for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
1053948d887dSJohannes Berg 		unsigned long tids;
1054948d887dSJohannes Berg 
1055f438ceb8SEmmanuel Grumbach 		if (ignore_for_tim & ieee80211_ac_to_qos_mask[ac])
1056948d887dSJohannes Berg 			continue;
1057948d887dSJohannes Berg 
1058948d887dSJohannes Berg 		indicate_tim |= !skb_queue_empty(&sta->tx_filtered[ac]) ||
1059948d887dSJohannes Berg 				!skb_queue_empty(&sta->ps_tx_buf[ac]);
1060948d887dSJohannes Berg 		if (indicate_tim)
1061948d887dSJohannes Berg 			break;
1062948d887dSJohannes Berg 
1063948d887dSJohannes Berg 		tids = ieee80211_tids_for_ac(ac);
1064948d887dSJohannes Berg 
1065948d887dSJohannes Berg 		indicate_tim |=
1066948d887dSJohannes Berg 			sta->driver_buffered_tids & tids;
1067ba8c3d6fSFelix Fietkau 		indicate_tim |=
1068ba8c3d6fSFelix Fietkau 			sta->txq_buffered_tids & tids;
1069004c872eSJohannes Berg 	}
1070004c872eSJohannes Berg 
1071c868cb35SJohannes Berg  done:
107265f704a5SJohannes Berg 	spin_lock_bh(&local->tim_lock);
1073004c872eSJohannes Berg 
10743d5839b6SIlan Peer 	if (indicate_tim == __bss_tim_get(ps->tim, id))
10753d5839b6SIlan Peer 		goto out_unlock;
10763d5839b6SIlan Peer 
1077948d887dSJohannes Berg 	if (indicate_tim)
1078d012a605SMarco Porsch 		__bss_tim_set(ps->tim, id);
1079c868cb35SJohannes Berg 	else
1080d012a605SMarco Porsch 		__bss_tim_clear(ps->tim, id);
10813e122be0SJohannes Berg 
10829b7a86f3SJohannes Berg 	if (local->ops->set_tim && !WARN_ON(sta->dead)) {
1083c868cb35SJohannes Berg 		local->tim_in_locked_section = true;
1084948d887dSJohannes Berg 		drv_set_tim(local, &sta->sta, indicate_tim);
1085c868cb35SJohannes Berg 		local->tim_in_locked_section = false;
1086004c872eSJohannes Berg 	}
1087004c872eSJohannes Berg 
10883d5839b6SIlan Peer out_unlock:
108965f704a5SJohannes Berg 	spin_unlock_bh(&local->tim_lock);
1090004c872eSJohannes Berg }
1091004c872eSJohannes Berg 
10929b7a86f3SJohannes Berg void sta_info_recalc_tim(struct sta_info *sta)
10939b7a86f3SJohannes Berg {
10949b7a86f3SJohannes Berg 	__sta_info_recalc_tim(sta, false);
10959b7a86f3SJohannes Berg }
10969b7a86f3SJohannes Berg 
1097cd0b8d89SJohannes Berg static bool sta_info_buffer_expired(struct sta_info *sta, struct sk_buff *skb)
1098f0706e82SJiri Benc {
1099e039fa4aSJohannes Berg 	struct ieee80211_tx_info *info;
1100f0706e82SJiri Benc 	int timeout;
1101f0706e82SJiri Benc 
1102f0706e82SJiri Benc 	if (!skb)
1103cd0b8d89SJohannes Berg 		return false;
1104f0706e82SJiri Benc 
1105e039fa4aSJohannes Berg 	info = IEEE80211_SKB_CB(skb);
1106f0706e82SJiri Benc 
1107f0706e82SJiri Benc 	/* Timeout: (2 * listen_interval * beacon_int * 1024 / 1000000) sec */
110857c4d7b4SJohannes Berg 	timeout = (sta->listen_interval *
110957c4d7b4SJohannes Berg 		   sta->sdata->vif.bss_conf.beacon_int *
111057c4d7b4SJohannes Berg 		   32 / 15625) * HZ;
1111f0706e82SJiri Benc 	if (timeout < STA_TX_BUFFER_EXPIRE)
1112f0706e82SJiri Benc 		timeout = STA_TX_BUFFER_EXPIRE;
1113e039fa4aSJohannes Berg 	return time_after(jiffies, info->control.jiffies + timeout);
1114f0706e82SJiri Benc }
1115f0706e82SJiri Benc 
1116f0706e82SJiri Benc 
1117948d887dSJohannes Berg static bool sta_info_cleanup_expire_buffered_ac(struct ieee80211_local *local,
1118948d887dSJohannes Berg 						struct sta_info *sta, int ac)
1119f0706e82SJiri Benc {
1120f0706e82SJiri Benc 	unsigned long flags;
1121f0706e82SJiri Benc 	struct sk_buff *skb;
1122f0706e82SJiri Benc 
112360750397SJohannes Berg 	/*
112460750397SJohannes Berg 	 * First check for frames that should expire on the filtered
112560750397SJohannes Berg 	 * queue. Frames here were rejected by the driver and are on
112660750397SJohannes Berg 	 * a separate queue to avoid reordering with normal PS-buffered
112760750397SJohannes Berg 	 * frames. They also aren't accounted for right now in the
112860750397SJohannes Berg 	 * total_ps_buffered counter.
112960750397SJohannes Berg 	 */
1130f0706e82SJiri Benc 	for (;;) {
1131948d887dSJohannes Berg 		spin_lock_irqsave(&sta->tx_filtered[ac].lock, flags);
1132948d887dSJohannes Berg 		skb = skb_peek(&sta->tx_filtered[ac]);
113357c4d7b4SJohannes Berg 		if (sta_info_buffer_expired(sta, skb))
1134948d887dSJohannes Berg 			skb = __skb_dequeue(&sta->tx_filtered[ac]);
1135836341a7SJohannes Berg 		else
1136f0706e82SJiri Benc 			skb = NULL;
1137948d887dSJohannes Berg 		spin_unlock_irqrestore(&sta->tx_filtered[ac].lock, flags);
1138f0706e82SJiri Benc 
113960750397SJohannes Berg 		/*
114060750397SJohannes Berg 		 * Frames are queued in order, so if this one
114160750397SJohannes Berg 		 * hasn't expired yet we can stop testing. If
114260750397SJohannes Berg 		 * we actually reached the end of the queue we
114360750397SJohannes Berg 		 * also need to stop, of course.
114460750397SJohannes Berg 		 */
114560750397SJohannes Berg 		if (!skb)
114660750397SJohannes Berg 			break;
1147d4fa14cdSFelix Fietkau 		ieee80211_free_txskb(&local->hw, skb);
114860750397SJohannes Berg 	}
114960750397SJohannes Berg 
115060750397SJohannes Berg 	/*
115160750397SJohannes Berg 	 * Now also check the normal PS-buffered queue, this will
115260750397SJohannes Berg 	 * only find something if the filtered queue was emptied
115360750397SJohannes Berg 	 * since the filtered frames are all before the normal PS
115460750397SJohannes Berg 	 * buffered frames.
115560750397SJohannes Berg 	 */
1156f0706e82SJiri Benc 	for (;;) {
1157948d887dSJohannes Berg 		spin_lock_irqsave(&sta->ps_tx_buf[ac].lock, flags);
1158948d887dSJohannes Berg 		skb = skb_peek(&sta->ps_tx_buf[ac]);
1159f0706e82SJiri Benc 		if (sta_info_buffer_expired(sta, skb))
1160948d887dSJohannes Berg 			skb = __skb_dequeue(&sta->ps_tx_buf[ac]);
1161f0706e82SJiri Benc 		else
1162f0706e82SJiri Benc 			skb = NULL;
1163948d887dSJohannes Berg 		spin_unlock_irqrestore(&sta->ps_tx_buf[ac].lock, flags);
1164f0706e82SJiri Benc 
116560750397SJohannes Berg 		/*
116660750397SJohannes Berg 		 * frames are queued in order, so if this one
116760750397SJohannes Berg 		 * hasn't expired yet (or we reached the end of
116860750397SJohannes Berg 		 * the queue) we can stop testing
116960750397SJohannes Berg 		 */
1170836341a7SJohannes Berg 		if (!skb)
1171836341a7SJohannes Berg 			break;
1172836341a7SJohannes Berg 
1173f0706e82SJiri Benc 		local->total_ps_buffered--;
1174bdcbd8e0SJohannes Berg 		ps_dbg(sta->sdata, "Buffered frame expired (STA %pM)\n",
1175bdcbd8e0SJohannes Berg 		       sta->sta.addr);
1176d4fa14cdSFelix Fietkau 		ieee80211_free_txskb(&local->hw, skb);
1177f0706e82SJiri Benc 	}
11783393a608SJuuso Oikarinen 
117960750397SJohannes Berg 	/*
118060750397SJohannes Berg 	 * Finally, recalculate the TIM bit for this station -- it might
118160750397SJohannes Berg 	 * now be clear because the station was too slow to retrieve its
118260750397SJohannes Berg 	 * frames.
118360750397SJohannes Berg 	 */
118460750397SJohannes Berg 	sta_info_recalc_tim(sta);
118560750397SJohannes Berg 
118660750397SJohannes Berg 	/*
118760750397SJohannes Berg 	 * Return whether there are any frames still buffered, this is
118860750397SJohannes Berg 	 * used to check whether the cleanup timer still needs to run,
118960750397SJohannes Berg 	 * if there are no frames we don't need to rearm the timer.
119060750397SJohannes Berg 	 */
1191948d887dSJohannes Berg 	return !(skb_queue_empty(&sta->ps_tx_buf[ac]) &&
1192948d887dSJohannes Berg 		 skb_queue_empty(&sta->tx_filtered[ac]));
1193948d887dSJohannes Berg }
1194948d887dSJohannes Berg 
1195948d887dSJohannes Berg static bool sta_info_cleanup_expire_buffered(struct ieee80211_local *local,
1196948d887dSJohannes Berg 					     struct sta_info *sta)
1197948d887dSJohannes Berg {
1198948d887dSJohannes Berg 	bool have_buffered = false;
1199948d887dSJohannes Berg 	int ac;
1200948d887dSJohannes Berg 
12013f52b7e3SMarco Porsch 	/* This is only necessary for stations on BSS/MBSS interfaces */
12023f52b7e3SMarco Porsch 	if (!sta->sdata->bss &&
12033f52b7e3SMarco Porsch 	    !ieee80211_vif_is_mesh(&sta->sdata->vif))
1204948d887dSJohannes Berg 		return false;
1205948d887dSJohannes Berg 
1206948d887dSJohannes Berg 	for (ac = 0; ac < IEEE80211_NUM_ACS; ac++)
1207948d887dSJohannes Berg 		have_buffered |=
1208948d887dSJohannes Berg 			sta_info_cleanup_expire_buffered_ac(local, sta, ac);
1209948d887dSJohannes Berg 
1210948d887dSJohannes Berg 	return have_buffered;
1211f0706e82SJiri Benc }
1212f0706e82SJiri Benc 
1213d778207bSJohannes Berg static int __must_check __sta_info_destroy_part1(struct sta_info *sta)
121434e89507SJohannes Berg {
121534e89507SJohannes Berg 	struct ieee80211_local *local;
121634e89507SJohannes Berg 	struct ieee80211_sub_if_data *sdata;
12170ad49045SJohannes Berg 	int ret, i;
121834e89507SJohannes Berg 
121934e89507SJohannes Berg 	might_sleep();
122034e89507SJohannes Berg 
122134e89507SJohannes Berg 	if (!sta)
122234e89507SJohannes Berg 		return -ENOENT;
122334e89507SJohannes Berg 
122434e89507SJohannes Berg 	local = sta->local;
122534e89507SJohannes Berg 	sdata = sta->sdata;
122634e89507SJohannes Berg 
122783d5cc01SJohannes Berg 	lockdep_assert_held(&local->sta_mtx);
122883d5cc01SJohannes Berg 
1229098a6070SJohannes Berg 	/*
1230098a6070SJohannes Berg 	 * Before removing the station from the driver and
1231098a6070SJohannes Berg 	 * rate control, it might still start new aggregation
1232098a6070SJohannes Berg 	 * sessions -- block that to make sure the tear-down
1233098a6070SJohannes Berg 	 * will be sufficient.
1234098a6070SJohannes Berg 	 */
1235c2c98fdeSJohannes Berg 	set_sta_flag(sta, WLAN_STA_BLOCK_BA);
1236c82c4a80SJohannes Berg 	ieee80211_sta_tear_down_BA_sessions(sta, AGG_STOP_DESTROY_STA);
1237098a6070SJohannes Berg 
1238f59374ebSSara Sharon 	/*
1239f59374ebSSara Sharon 	 * Before removing the station from the driver there might be pending
1240f59374ebSSara Sharon 	 * rx frames on RSS queues sent prior to the disassociation - wait for
1241f59374ebSSara Sharon 	 * all such frames to be processed.
1242f59374ebSSara Sharon 	 */
1243f59374ebSSara Sharon 	drv_sync_rx_queues(local, sta);
1244f59374ebSSara Sharon 
12450ad49045SJohannes Berg 	for (i = 0; i < ARRAY_SIZE(sta->link); i++) {
12460ad49045SJohannes Berg 		struct link_sta_info *link_sta;
12470ad49045SJohannes Berg 
12480ad49045SJohannes Berg 		if (!(sta->sta.valid_links & BIT(i)))
12490ad49045SJohannes Berg 			continue;
12500ad49045SJohannes Berg 
12510ad49045SJohannes Berg 		link_sta = rcu_dereference_protected(sta->link[i],
12520ad49045SJohannes Berg 						     lockdep_is_held(&local->sta_mtx));
12530ad49045SJohannes Berg 
12540ad49045SJohannes Berg 		link_sta_info_hash_del(local, link_sta);
12550ad49045SJohannes Berg 	}
12560ad49045SJohannes Berg 
125734e89507SJohannes Berg 	ret = sta_info_hash_del(local, sta);
1258b01711beSJohannes Berg 	if (WARN_ON(ret))
125934e89507SJohannes Berg 		return ret;
126034e89507SJohannes Berg 
1261a7a6bdd0SArik Nemtsov 	/*
1262a7a6bdd0SArik Nemtsov 	 * for TDLS peers, make sure to return to the base channel before
1263a7a6bdd0SArik Nemtsov 	 * removal.
1264a7a6bdd0SArik Nemtsov 	 */
1265a7a6bdd0SArik Nemtsov 	if (test_sta_flag(sta, WLAN_STA_TDLS_OFF_CHANNEL)) {
1266a7a6bdd0SArik Nemtsov 		drv_tdls_cancel_channel_switch(local, sdata, &sta->sta);
1267a7a6bdd0SArik Nemtsov 		clear_sta_flag(sta, WLAN_STA_TDLS_OFF_CHANNEL);
1268a7a6bdd0SArik Nemtsov 	}
1269a7a6bdd0SArik Nemtsov 
1270794454ceSArik Nemtsov 	list_del_rcu(&sta->list);
1271ef044763SEliad Peller 	sta->removed = true;
12724d33960bSJohannes Berg 
127312b220a6SFelix Fietkau 	if (sta->uploaded)
12746a9d1b91SJohannes Berg 		drv_sta_pre_rcu_remove(local, sta->sdata, sta);
12756a9d1b91SJohannes Berg 
1276a710c816SJohannes Berg 	if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN &&
1277a710c816SJohannes Berg 	    rcu_access_pointer(sdata->u.vlan.sta) == sta)
1278a710c816SJohannes Berg 		RCU_INIT_POINTER(sdata->u.vlan.sta, NULL);
1279a710c816SJohannes Berg 
1280d778207bSJohannes Berg 	return 0;
1281d778207bSJohannes Berg }
1282d778207bSJohannes Berg 
128392747f17SJohannes Berg static int _sta_info_move_state(struct sta_info *sta,
128492747f17SJohannes Berg 				enum ieee80211_sta_state new_state,
128592747f17SJohannes Berg 				bool recalc)
128610a7ba92SJohannes Berg {
128710a7ba92SJohannes Berg 	might_sleep();
128810a7ba92SJohannes Berg 
128910a7ba92SJohannes Berg 	if (sta->sta_state == new_state)
129010a7ba92SJohannes Berg 		return 0;
129110a7ba92SJohannes Berg 
129210a7ba92SJohannes Berg 	/* check allowed transitions first */
129310a7ba92SJohannes Berg 
129410a7ba92SJohannes Berg 	switch (new_state) {
129510a7ba92SJohannes Berg 	case IEEE80211_STA_NONE:
129610a7ba92SJohannes Berg 		if (sta->sta_state != IEEE80211_STA_AUTH)
129710a7ba92SJohannes Berg 			return -EINVAL;
129810a7ba92SJohannes Berg 		break;
129910a7ba92SJohannes Berg 	case IEEE80211_STA_AUTH:
130010a7ba92SJohannes Berg 		if (sta->sta_state != IEEE80211_STA_NONE &&
130110a7ba92SJohannes Berg 		    sta->sta_state != IEEE80211_STA_ASSOC)
130210a7ba92SJohannes Berg 			return -EINVAL;
130310a7ba92SJohannes Berg 		break;
130410a7ba92SJohannes Berg 	case IEEE80211_STA_ASSOC:
130510a7ba92SJohannes Berg 		if (sta->sta_state != IEEE80211_STA_AUTH &&
130610a7ba92SJohannes Berg 		    sta->sta_state != IEEE80211_STA_AUTHORIZED)
130710a7ba92SJohannes Berg 			return -EINVAL;
130810a7ba92SJohannes Berg 		break;
130910a7ba92SJohannes Berg 	case IEEE80211_STA_AUTHORIZED:
131010a7ba92SJohannes Berg 		if (sta->sta_state != IEEE80211_STA_ASSOC)
131110a7ba92SJohannes Berg 			return -EINVAL;
131210a7ba92SJohannes Berg 		break;
131310a7ba92SJohannes Berg 	default:
131410a7ba92SJohannes Berg 		WARN(1, "invalid state %d", new_state);
131510a7ba92SJohannes Berg 		return -EINVAL;
131610a7ba92SJohannes Berg 	}
131710a7ba92SJohannes Berg 
131810a7ba92SJohannes Berg 	sta_dbg(sta->sdata, "moving STA %pM to state %d\n",
131910a7ba92SJohannes Berg 		sta->sta.addr, new_state);
132010a7ba92SJohannes Berg 
132110a7ba92SJohannes Berg 	/* notify the driver before the actual changes so it can
132210a7ba92SJohannes Berg 	 * fail the transition
132310a7ba92SJohannes Berg 	 */
132410a7ba92SJohannes Berg 	if (test_sta_flag(sta, WLAN_STA_INSERTED)) {
132510a7ba92SJohannes Berg 		int err = drv_sta_state(sta->local, sta->sdata, sta,
132610a7ba92SJohannes Berg 					sta->sta_state, new_state);
132710a7ba92SJohannes Berg 		if (err)
132810a7ba92SJohannes Berg 			return err;
132910a7ba92SJohannes Berg 	}
133010a7ba92SJohannes Berg 
133110a7ba92SJohannes Berg 	/* reflect the change in all state variables */
133210a7ba92SJohannes Berg 
133310a7ba92SJohannes Berg 	switch (new_state) {
133410a7ba92SJohannes Berg 	case IEEE80211_STA_NONE:
133510a7ba92SJohannes Berg 		if (sta->sta_state == IEEE80211_STA_AUTH)
133610a7ba92SJohannes Berg 			clear_bit(WLAN_STA_AUTH, &sta->_flags);
133710a7ba92SJohannes Berg 		break;
133810a7ba92SJohannes Berg 	case IEEE80211_STA_AUTH:
133910a7ba92SJohannes Berg 		if (sta->sta_state == IEEE80211_STA_NONE) {
134010a7ba92SJohannes Berg 			set_bit(WLAN_STA_AUTH, &sta->_flags);
134110a7ba92SJohannes Berg 		} else if (sta->sta_state == IEEE80211_STA_ASSOC) {
134210a7ba92SJohannes Berg 			clear_bit(WLAN_STA_ASSOC, &sta->_flags);
134392747f17SJohannes Berg 			if (recalc) {
134410a7ba92SJohannes Berg 				ieee80211_recalc_min_chandef(sta->sdata, -1);
134510a7ba92SJohannes Berg 				if (!sta->sta.support_p2p_ps)
134610a7ba92SJohannes Berg 					ieee80211_recalc_p2p_go_ps_allowed(sta->sdata);
134710a7ba92SJohannes Berg 			}
134892747f17SJohannes Berg 		}
134910a7ba92SJohannes Berg 		break;
135010a7ba92SJohannes Berg 	case IEEE80211_STA_ASSOC:
135110a7ba92SJohannes Berg 		if (sta->sta_state == IEEE80211_STA_AUTH) {
135210a7ba92SJohannes Berg 			set_bit(WLAN_STA_ASSOC, &sta->_flags);
135310a7ba92SJohannes Berg 			sta->assoc_at = ktime_get_boottime_ns();
135492747f17SJohannes Berg 			if (recalc) {
135510a7ba92SJohannes Berg 				ieee80211_recalc_min_chandef(sta->sdata, -1);
135610a7ba92SJohannes Berg 				if (!sta->sta.support_p2p_ps)
135710a7ba92SJohannes Berg 					ieee80211_recalc_p2p_go_ps_allowed(sta->sdata);
135892747f17SJohannes Berg 			}
135910a7ba92SJohannes Berg 		} else if (sta->sta_state == IEEE80211_STA_AUTHORIZED) {
136010a7ba92SJohannes Berg 			ieee80211_vif_dec_num_mcast(sta->sdata);
136110a7ba92SJohannes Berg 			clear_bit(WLAN_STA_AUTHORIZED, &sta->_flags);
136210a7ba92SJohannes Berg 			ieee80211_clear_fast_xmit(sta);
136310a7ba92SJohannes Berg 			ieee80211_clear_fast_rx(sta);
136410a7ba92SJohannes Berg 		}
136510a7ba92SJohannes Berg 		break;
136610a7ba92SJohannes Berg 	case IEEE80211_STA_AUTHORIZED:
136710a7ba92SJohannes Berg 		if (sta->sta_state == IEEE80211_STA_ASSOC) {
136810a7ba92SJohannes Berg 			ieee80211_vif_inc_num_mcast(sta->sdata);
136910a7ba92SJohannes Berg 			set_bit(WLAN_STA_AUTHORIZED, &sta->_flags);
137010a7ba92SJohannes Berg 			ieee80211_check_fast_xmit(sta);
137110a7ba92SJohannes Berg 			ieee80211_check_fast_rx(sta);
137210a7ba92SJohannes Berg 		}
137310a7ba92SJohannes Berg 		if (sta->sdata->vif.type == NL80211_IFTYPE_AP_VLAN ||
137410a7ba92SJohannes Berg 		    sta->sdata->vif.type == NL80211_IFTYPE_AP)
137510a7ba92SJohannes Berg 			cfg80211_send_layer2_update(sta->sdata->dev,
137610a7ba92SJohannes Berg 						    sta->sta.addr);
137710a7ba92SJohannes Berg 		break;
137810a7ba92SJohannes Berg 	default:
137910a7ba92SJohannes Berg 		break;
138010a7ba92SJohannes Berg 	}
138110a7ba92SJohannes Berg 
138210a7ba92SJohannes Berg 	sta->sta_state = new_state;
138310a7ba92SJohannes Berg 
138410a7ba92SJohannes Berg 	return 0;
138510a7ba92SJohannes Berg }
138610a7ba92SJohannes Berg 
138792747f17SJohannes Berg int sta_info_move_state(struct sta_info *sta,
138892747f17SJohannes Berg 			enum ieee80211_sta_state new_state)
138992747f17SJohannes Berg {
139092747f17SJohannes Berg 	return _sta_info_move_state(sta, new_state, true);
139192747f17SJohannes Berg }
139292747f17SJohannes Berg 
139392747f17SJohannes Berg static void __sta_info_destroy_part2(struct sta_info *sta, bool recalc)
1394d778207bSJohannes Berg {
1395d778207bSJohannes Berg 	struct ieee80211_local *local = sta->local;
1396d778207bSJohannes Berg 	struct ieee80211_sub_if_data *sdata = sta->sdata;
13970ef049dcSArnd Bergmann 	struct station_info *sinfo;
1398d778207bSJohannes Berg 	int ret;
1399d778207bSJohannes Berg 
1400d778207bSJohannes Berg 	/*
1401d778207bSJohannes Berg 	 * NOTE: This assumes at least synchronize_net() was done
1402d778207bSJohannes Berg 	 *	 after _part1 and before _part2!
1403d778207bSJohannes Berg 	 */
1404d778207bSJohannes Berg 
1405*86f22e7cSJohannes Berg 	/*
1406*86f22e7cSJohannes Berg 	 * There's a potential race in _part1 where we set WLAN_STA_BLOCK_BA
1407*86f22e7cSJohannes Berg 	 * but someone might have just gotten past a check, and not yet into
1408*86f22e7cSJohannes Berg 	 * queuing the work/creating the data/etc.
1409*86f22e7cSJohannes Berg 	 *
1410*86f22e7cSJohannes Berg 	 * Do another round of destruction so that the worker is certainly
1411*86f22e7cSJohannes Berg 	 * canceled before we later free the station.
1412*86f22e7cSJohannes Berg 	 *
1413*86f22e7cSJohannes Berg 	 * Since this is after synchronize_rcu()/synchronize_net() we're now
1414*86f22e7cSJohannes Berg 	 * certain that nobody can actually hold a reference to the STA and
1415*86f22e7cSJohannes Berg 	 * be calling e.g. ieee80211_start_tx_ba_session().
1416*86f22e7cSJohannes Berg 	 */
1417*86f22e7cSJohannes Berg 	ieee80211_sta_tear_down_BA_sessions(sta, AGG_STOP_DESTROY_STA);
1418*86f22e7cSJohannes Berg 
1419d778207bSJohannes Berg 	might_sleep();
1420d778207bSJohannes Berg 	lockdep_assert_held(&local->sta_mtx);
1421d778207bSJohannes Berg 
14225981fe5bSJohannes Berg 	if (sta->sta_state == IEEE80211_STA_AUTHORIZED) {
142392747f17SJohannes Berg 		ret = _sta_info_move_state(sta, IEEE80211_STA_ASSOC, recalc);
1424b16798f5SJohannes Berg 		WARN_ON_ONCE(ret);
1425b16798f5SJohannes Berg 	}
1426b16798f5SJohannes Berg 
14270b75a1b1SJohannes Berg 	/* Flush queues before removing keys, as that might remove them
14280b75a1b1SJohannes Berg 	 * from hardware, and then depending on the offload method, any
14290b75a1b1SJohannes Berg 	 * frames sitting on hardware queues might be sent out without
14300b75a1b1SJohannes Berg 	 * any encryption at all.
14310b75a1b1SJohannes Berg 	 */
1432d00800a2SJohannes Berg 	if (local->ops->set_key) {
1433d00800a2SJohannes Berg 		if (local->ops->flush_sta)
1434d00800a2SJohannes Berg 			drv_flush_sta(local, sta->sdata, sta);
1435d00800a2SJohannes Berg 		else
14360b75a1b1SJohannes Berg 			ieee80211_flush_queues(local, sta->sdata, false);
1437d00800a2SJohannes Berg 	}
14380b75a1b1SJohannes Berg 
1439c8782078SJohannes Berg 	/* now keys can no longer be reached */
14406d10e46bSJohannes Berg 	ieee80211_free_sta_keys(local, sta);
144134e89507SJohannes Berg 
14429b7a86f3SJohannes Berg 	/* disable TIM bit - last chance to tell driver */
14439b7a86f3SJohannes Berg 	__sta_info_recalc_tim(sta, true);
14449b7a86f3SJohannes Berg 
144534e89507SJohannes Berg 	sta->dead = true;
144634e89507SJohannes Berg 
144734e89507SJohannes Berg 	local->num_sta--;
144834e89507SJohannes Berg 	local->sta_generation++;
144934e89507SJohannes Berg 
145083d5cc01SJohannes Berg 	while (sta->sta_state > IEEE80211_STA_NONE) {
145192747f17SJohannes Berg 		ret = _sta_info_move_state(sta, sta->sta_state - 1, recalc);
1452f09603a2SJohannes Berg 		if (ret) {
145383d5cc01SJohannes Berg 			WARN_ON_ONCE(1);
145483d5cc01SJohannes Berg 			break;
145583d5cc01SJohannes Berg 		}
145683d5cc01SJohannes Berg 	}
1457d9a7ddb0SJohannes Berg 
1458f09603a2SJohannes Berg 	if (sta->uploaded) {
1459f09603a2SJohannes Berg 		ret = drv_sta_state(local, sdata, sta, IEEE80211_STA_NONE,
1460f09603a2SJohannes Berg 				    IEEE80211_STA_NOTEXIST);
1461f09603a2SJohannes Berg 		WARN_ON_ONCE(ret != 0);
1462f09603a2SJohannes Berg 	}
146334e89507SJohannes Berg 
1464bdcbd8e0SJohannes Berg 	sta_dbg(sdata, "Removed STA %pM\n", sta->sta.addr);
1465bdcbd8e0SJohannes Berg 
14660ef049dcSArnd Bergmann 	sinfo = kzalloc(sizeof(*sinfo), GFP_KERNEL);
14670ef049dcSArnd Bergmann 	if (sinfo)
14680fdf1493SJohannes Berg 		sta_set_sinfo(sta, sinfo, true);
14690ef049dcSArnd Bergmann 	cfg80211_del_sta_sinfo(sdata->dev, sta->sta.addr, sinfo, GFP_KERNEL);
14700ef049dcSArnd Bergmann 	kfree(sinfo);
1471ec15e68bSJouni Malinen 
147234e89507SJohannes Berg 	ieee80211_sta_debugfs_remove(sta);
147334e89507SJohannes Berg 
14743a11ce08SJohannes Berg 	ieee80211_destroy_frag_cache(&sta->frags);
14753a11ce08SJohannes Berg 
1476d34ba216SJohannes Berg 	cleanup_single_sta(sta);
1477d778207bSJohannes Berg }
1478d778207bSJohannes Berg 
1479d778207bSJohannes Berg int __must_check __sta_info_destroy(struct sta_info *sta)
1480d778207bSJohannes Berg {
1481d778207bSJohannes Berg 	int err = __sta_info_destroy_part1(sta);
1482d778207bSJohannes Berg 
1483d778207bSJohannes Berg 	if (err)
1484d778207bSJohannes Berg 		return err;
1485d778207bSJohannes Berg 
1486d778207bSJohannes Berg 	synchronize_net();
1487d778207bSJohannes Berg 
148892747f17SJohannes Berg 	__sta_info_destroy_part2(sta, true);
148934e89507SJohannes Berg 
149034e89507SJohannes Berg 	return 0;
149134e89507SJohannes Berg }
149234e89507SJohannes Berg 
149334e89507SJohannes Berg int sta_info_destroy_addr(struct ieee80211_sub_if_data *sdata, const u8 *addr)
149434e89507SJohannes Berg {
149534e89507SJohannes Berg 	struct sta_info *sta;
149634e89507SJohannes Berg 	int ret;
149734e89507SJohannes Berg 
149834e89507SJohannes Berg 	mutex_lock(&sdata->local->sta_mtx);
14997852e361SJohannes Berg 	sta = sta_info_get(sdata, addr);
150034e89507SJohannes Berg 	ret = __sta_info_destroy(sta);
150134e89507SJohannes Berg 	mutex_unlock(&sdata->local->sta_mtx);
150234e89507SJohannes Berg 
150334e89507SJohannes Berg 	return ret;
150434e89507SJohannes Berg }
150534e89507SJohannes Berg 
150634e89507SJohannes Berg int sta_info_destroy_addr_bss(struct ieee80211_sub_if_data *sdata,
150734e89507SJohannes Berg 			      const u8 *addr)
150834e89507SJohannes Berg {
150934e89507SJohannes Berg 	struct sta_info *sta;
151034e89507SJohannes Berg 	int ret;
151134e89507SJohannes Berg 
151234e89507SJohannes Berg 	mutex_lock(&sdata->local->sta_mtx);
15137852e361SJohannes Berg 	sta = sta_info_get_bss(sdata, addr);
151434e89507SJohannes Berg 	ret = __sta_info_destroy(sta);
151534e89507SJohannes Berg 	mutex_unlock(&sdata->local->sta_mtx);
151634e89507SJohannes Berg 
151734e89507SJohannes Berg 	return ret;
151834e89507SJohannes Berg }
1519f0706e82SJiri Benc 
152034f11cd3SKees Cook static void sta_info_cleanup(struct timer_list *t)
1521f0706e82SJiri Benc {
152234f11cd3SKees Cook 	struct ieee80211_local *local = from_timer(local, t, sta_cleanup);
1523f0706e82SJiri Benc 	struct sta_info *sta;
15243393a608SJuuso Oikarinen 	bool timer_needed = false;
1525f0706e82SJiri Benc 
1526d0709a65SJohannes Berg 	rcu_read_lock();
1527d0709a65SJohannes Berg 	list_for_each_entry_rcu(sta, &local->sta_list, list)
15283393a608SJuuso Oikarinen 		if (sta_info_cleanup_expire_buffered(local, sta))
15293393a608SJuuso Oikarinen 			timer_needed = true;
1530d0709a65SJohannes Berg 	rcu_read_unlock();
1531f0706e82SJiri Benc 
15325bb644a0SJohannes Berg 	if (local->quiescing)
15335bb644a0SJohannes Berg 		return;
15345bb644a0SJohannes Berg 
15353393a608SJuuso Oikarinen 	if (!timer_needed)
15363393a608SJuuso Oikarinen 		return;
15373393a608SJuuso Oikarinen 
153826d59535SJohannes Berg 	mod_timer(&local->sta_cleanup,
153926d59535SJohannes Berg 		  round_jiffies(jiffies + STA_INFO_CLEANUP_INTERVAL));
1540f0706e82SJiri Benc }
1541f0706e82SJiri Benc 
15427bedd0cfSJohannes Berg int sta_info_init(struct ieee80211_local *local)
15437bedd0cfSJohannes Berg {
15447bedd0cfSJohannes Berg 	int err;
15457bedd0cfSJohannes Berg 
154683e7e4ceSHerbert Xu 	err = rhltable_init(&local->sta_hash, &sta_rht_params);
15477bedd0cfSJohannes Berg 	if (err)
15487bedd0cfSJohannes Berg 		return err;
15497bedd0cfSJohannes Berg 
1550ba6ddab9SJohannes Berg 	err = rhltable_init(&local->link_sta_hash, &link_sta_rht_params);
1551ba6ddab9SJohannes Berg 	if (err) {
1552ba6ddab9SJohannes Berg 		rhltable_destroy(&local->sta_hash);
1553ba6ddab9SJohannes Berg 		return err;
1554ba6ddab9SJohannes Berg 	}
1555ba6ddab9SJohannes Berg 
15564d33960bSJohannes Berg 	spin_lock_init(&local->tim_lock);
155734e89507SJohannes Berg 	mutex_init(&local->sta_mtx);
1558f0706e82SJiri Benc 	INIT_LIST_HEAD(&local->sta_list);
1559f0706e82SJiri Benc 
156034f11cd3SKees Cook 	timer_setup(&local->sta_cleanup, sta_info_cleanup, 0);
15617bedd0cfSJohannes Berg 	return 0;
1562f0706e82SJiri Benc }
1563f0706e82SJiri Benc 
1564f0706e82SJiri Benc void sta_info_stop(struct ieee80211_local *local)
1565f0706e82SJiri Benc {
1566a56f992cSJohannes Berg 	del_timer_sync(&local->sta_cleanup);
156783e7e4ceSHerbert Xu 	rhltable_destroy(&local->sta_hash);
1568ba6ddab9SJohannes Berg 	rhltable_destroy(&local->link_sta_hash);
1569f0706e82SJiri Benc }
1570f0706e82SJiri Benc 
1571051007d9SJohannes Berg 
1572e716251dSJohannes Berg int __sta_info_flush(struct ieee80211_sub_if_data *sdata, bool vlans)
1573f0706e82SJiri Benc {
1574b998e8bbSJohannes Berg 	struct ieee80211_local *local = sdata->local;
1575f0706e82SJiri Benc 	struct sta_info *sta, *tmp;
1576d778207bSJohannes Berg 	LIST_HEAD(free_list);
157744213b5eSJohannes Berg 	int ret = 0;
1578f0706e82SJiri Benc 
1579d0709a65SJohannes Berg 	might_sleep();
1580d0709a65SJohannes Berg 
1581e716251dSJohannes Berg 	WARN_ON(vlans && sdata->vif.type != NL80211_IFTYPE_AP);
1582e716251dSJohannes Berg 	WARN_ON(vlans && !sdata->bss);
1583e716251dSJohannes Berg 
158434e89507SJohannes Berg 	mutex_lock(&local->sta_mtx);
158534e89507SJohannes Berg 	list_for_each_entry_safe(sta, tmp, &local->sta_list, list) {
1586e716251dSJohannes Berg 		if (sdata == sta->sdata ||
1587e716251dSJohannes Berg 		    (vlans && sdata->bss == sta->sdata->bss)) {
1588d778207bSJohannes Berg 			if (!WARN_ON(__sta_info_destroy_part1(sta)))
1589d778207bSJohannes Berg 				list_add(&sta->free_list, &free_list);
159034316837SJohannes Berg 			ret++;
159134316837SJohannes Berg 		}
159234e89507SJohannes Berg 	}
1593d778207bSJohannes Berg 
1594d778207bSJohannes Berg 	if (!list_empty(&free_list)) {
159592747f17SJohannes Berg 		bool support_p2p_ps = true;
159692747f17SJohannes Berg 
1597d778207bSJohannes Berg 		synchronize_net();
159892747f17SJohannes Berg 		list_for_each_entry_safe(sta, tmp, &free_list, free_list) {
159992747f17SJohannes Berg 			if (!sta->sta.support_p2p_ps)
160092747f17SJohannes Berg 				support_p2p_ps = false;
160192747f17SJohannes Berg 			__sta_info_destroy_part2(sta, false);
160292747f17SJohannes Berg 		}
160392747f17SJohannes Berg 
160492747f17SJohannes Berg 		ieee80211_recalc_min_chandef(sdata, -1);
160592747f17SJohannes Berg 		if (!support_p2p_ps)
160692747f17SJohannes Berg 			ieee80211_recalc_p2p_go_ps_allowed(sdata);
1607d778207bSJohannes Berg 	}
160834e89507SJohannes Berg 	mutex_unlock(&local->sta_mtx);
160944213b5eSJohannes Berg 
1610051007d9SJohannes Berg 	return ret;
1611051007d9SJohannes Berg }
1612051007d9SJohannes Berg 
161324723d1bSJohannes Berg void ieee80211_sta_expire(struct ieee80211_sub_if_data *sdata,
161424723d1bSJohannes Berg 			  unsigned long exp_time)
161524723d1bSJohannes Berg {
161624723d1bSJohannes Berg 	struct ieee80211_local *local = sdata->local;
161724723d1bSJohannes Berg 	struct sta_info *sta, *tmp;
161824723d1bSJohannes Berg 
161934e89507SJohannes Berg 	mutex_lock(&local->sta_mtx);
1620e46a2cf9SMohammed Shafi Shajakhan 
1621e46a2cf9SMohammed Shafi Shajakhan 	list_for_each_entry_safe(sta, tmp, &local->sta_list, list) {
1622b8da6b6aSJohannes Berg 		unsigned long last_active = ieee80211_sta_last_active(sta);
1623b8da6b6aSJohannes Berg 
1624ec2b774eSMarek Lindner 		if (sdata != sta->sdata)
1625ec2b774eSMarek Lindner 			continue;
1626ec2b774eSMarek Lindner 
1627b8da6b6aSJohannes Berg 		if (time_is_before_jiffies(last_active + exp_time)) {
1628eea57d42SMohammed Shafi Shajakhan 			sta_dbg(sta->sdata, "expiring inactive STA %pM\n",
1629bdcbd8e0SJohannes Berg 				sta->sta.addr);
16303f52b7e3SMarco Porsch 
16313f52b7e3SMarco Porsch 			if (ieee80211_vif_is_mesh(&sdata->vif) &&
16323f52b7e3SMarco Porsch 			    test_sta_flag(sta, WLAN_STA_PS_STA))
16333f52b7e3SMarco Porsch 				atomic_dec(&sdata->u.mesh.ps.num_sta_ps);
16343f52b7e3SMarco Porsch 
163534e89507SJohannes Berg 			WARN_ON(__sta_info_destroy(sta));
163624723d1bSJohannes Berg 		}
1637e46a2cf9SMohammed Shafi Shajakhan 	}
1638e46a2cf9SMohammed Shafi Shajakhan 
163934e89507SJohannes Berg 	mutex_unlock(&local->sta_mtx);
164024723d1bSJohannes Berg }
164117741cdcSJohannes Berg 
1642686b9cb9SBen Greear struct ieee80211_sta *ieee80211_find_sta_by_ifaddr(struct ieee80211_hw *hw,
1643686b9cb9SBen Greear 						   const u8 *addr,
1644686b9cb9SBen Greear 						   const u8 *localaddr)
164517741cdcSJohannes Berg {
16467bedd0cfSJohannes Berg 	struct ieee80211_local *local = hw_to_local(hw);
164783e7e4ceSHerbert Xu 	struct rhlist_head *tmp;
16487bedd0cfSJohannes Berg 	struct sta_info *sta;
164917741cdcSJohannes Berg 
1650686b9cb9SBen Greear 	/*
1651686b9cb9SBen Greear 	 * Just return a random station if localaddr is NULL
1652686b9cb9SBen Greear 	 * ... first in list.
1653686b9cb9SBen Greear 	 */
165483e7e4ceSHerbert Xu 	for_each_sta_info(local, addr, sta, tmp) {
1655686b9cb9SBen Greear 		if (localaddr &&
1656b203ca39SJoe Perches 		    !ether_addr_equal(sta->sdata->vif.addr, localaddr))
1657686b9cb9SBen Greear 			continue;
1658f7c65594SJohannes Berg 		if (!sta->uploaded)
1659f7c65594SJohannes Berg 			return NULL;
166017741cdcSJohannes Berg 		return &sta->sta;
1661f7c65594SJohannes Berg 	}
1662f7c65594SJohannes Berg 
1663abe60632SJohannes Berg 	return NULL;
166417741cdcSJohannes Berg }
1665686b9cb9SBen Greear EXPORT_SYMBOL_GPL(ieee80211_find_sta_by_ifaddr);
16665ed176e1SJohannes Berg 
16675ed176e1SJohannes Berg struct ieee80211_sta *ieee80211_find_sta(struct ieee80211_vif *vif,
16685ed176e1SJohannes Berg 					 const u8 *addr)
16695ed176e1SJohannes Berg {
1670f7c65594SJohannes Berg 	struct sta_info *sta;
16715ed176e1SJohannes Berg 
16725ed176e1SJohannes Berg 	if (!vif)
16735ed176e1SJohannes Berg 		return NULL;
16745ed176e1SJohannes Berg 
1675f7c65594SJohannes Berg 	sta = sta_info_get_bss(vif_to_sdata(vif), addr);
1676f7c65594SJohannes Berg 	if (!sta)
1677f7c65594SJohannes Berg 		return NULL;
16785ed176e1SJohannes Berg 
1679f7c65594SJohannes Berg 	if (!sta->uploaded)
1680f7c65594SJohannes Berg 		return NULL;
1681f7c65594SJohannes Berg 
1682f7c65594SJohannes Berg 	return &sta->sta;
16835ed176e1SJohannes Berg }
168417741cdcSJohannes Berg EXPORT_SYMBOL(ieee80211_find_sta);
1685af818581SJohannes Berg 
1686e3685e03SJohannes Berg /* powersave support code */
1687e3685e03SJohannes Berg void ieee80211_sta_ps_deliver_wakeup(struct sta_info *sta)
168850a9432dSJohannes Berg {
1689608383bfSHelmut Schaa 	struct ieee80211_sub_if_data *sdata = sta->sdata;
1690e3685e03SJohannes Berg 	struct ieee80211_local *local = sdata->local;
1691e3685e03SJohannes Berg 	struct sk_buff_head pending;
1692ba8c3d6fSFelix Fietkau 	int filtered = 0, buffered = 0, ac, i;
1693e3685e03SJohannes Berg 	unsigned long flags;
1694d012a605SMarco Porsch 	struct ps_data *ps;
1695d012a605SMarco Porsch 
16963918edb0SFelix Fietkau 	if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
16973918edb0SFelix Fietkau 		sdata = container_of(sdata->bss, struct ieee80211_sub_if_data,
16983918edb0SFelix Fietkau 				     u.ap);
16993918edb0SFelix Fietkau 
17003918edb0SFelix Fietkau 	if (sdata->vif.type == NL80211_IFTYPE_AP)
1701d012a605SMarco Porsch 		ps = &sdata->bss->ps;
17023f52b7e3SMarco Porsch 	else if (ieee80211_vif_is_mesh(&sdata->vif))
17033f52b7e3SMarco Porsch 		ps = &sdata->u.mesh.ps;
1704d012a605SMarco Porsch 	else
1705d012a605SMarco Porsch 		return;
170650a9432dSJohannes Berg 
1707c2c98fdeSJohannes Berg 	clear_sta_flag(sta, WLAN_STA_SP);
170847086fc5SJohannes Berg 
17095a306f58SJohannes Berg 	BUILD_BUG_ON(BITS_TO_LONGS(IEEE80211_NUM_TIDS) > 1);
1710948d887dSJohannes Berg 	sta->driver_buffered_tids = 0;
1711ba8c3d6fSFelix Fietkau 	sta->txq_buffered_tids = 0;
1712948d887dSJohannes Berg 
171330686bf7SJohannes Berg 	if (!ieee80211_hw_check(&local->hw, AP_LINK_PS))
171412375ef9SJohannes Berg 		drv_sta_notify(local, sdata, STA_NOTIFY_AWAKE, &sta->sta);
1715af818581SJohannes Berg 
1716ba8c3d6fSFelix Fietkau 	for (i = 0; i < ARRAY_SIZE(sta->sta.txq); i++) {
1717adf8ed01SJohannes Berg 		if (!sta->sta.txq[i] || !txq_has_queue(sta->sta.txq[i]))
1718ba8c3d6fSFelix Fietkau 			continue;
1719ba8c3d6fSFelix Fietkau 
172018667600SToke Høiland-Jørgensen 		schedule_and_wake_txq(local, to_txq_info(sta->sta.txq[i]));
1721ba8c3d6fSFelix Fietkau 	}
1722ba8c3d6fSFelix Fietkau 
1723948d887dSJohannes Berg 	skb_queue_head_init(&pending);
1724af818581SJohannes Berg 
17251d147bfaSEmmanuel Grumbach 	/* sync with ieee80211_tx_h_unicast_ps_buf */
1726456bbb8aSRemi Pommarel 	spin_lock_bh(&sta->ps_lock);
1727af818581SJohannes Berg 	/* Send all buffered frames to the station */
1728948d887dSJohannes Berg 	for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
1729948d887dSJohannes Berg 		int count = skb_queue_len(&pending), tmp;
1730948d887dSJohannes Berg 
1731987c285cSArik Nemtsov 		spin_lock_irqsave(&sta->tx_filtered[ac].lock, flags);
1732948d887dSJohannes Berg 		skb_queue_splice_tail_init(&sta->tx_filtered[ac], &pending);
1733987c285cSArik Nemtsov 		spin_unlock_irqrestore(&sta->tx_filtered[ac].lock, flags);
1734948d887dSJohannes Berg 		tmp = skb_queue_len(&pending);
1735948d887dSJohannes Berg 		filtered += tmp - count;
1736948d887dSJohannes Berg 		count = tmp;
1737948d887dSJohannes Berg 
1738987c285cSArik Nemtsov 		spin_lock_irqsave(&sta->ps_tx_buf[ac].lock, flags);
1739948d887dSJohannes Berg 		skb_queue_splice_tail_init(&sta->ps_tx_buf[ac], &pending);
1740987c285cSArik Nemtsov 		spin_unlock_irqrestore(&sta->ps_tx_buf[ac].lock, flags);
1741948d887dSJohannes Berg 		tmp = skb_queue_len(&pending);
1742948d887dSJohannes Berg 		buffered += tmp - count;
1743948d887dSJohannes Berg 	}
1744948d887dSJohannes Berg 
1745e3685e03SJohannes Berg 	ieee80211_add_pending_skbs(local, &pending);
17465ac2e350SJohannes Berg 
17475ac2e350SJohannes Berg 	/* now we're no longer in the deliver code */
17485ac2e350SJohannes Berg 	clear_sta_flag(sta, WLAN_STA_PS_DELIVER);
17495ac2e350SJohannes Berg 
17505ac2e350SJohannes Berg 	/* The station might have polled and then woken up before we responded,
17515ac2e350SJohannes Berg 	 * so clear these flags now to avoid them sticking around.
17525ac2e350SJohannes Berg 	 */
17535ac2e350SJohannes Berg 	clear_sta_flag(sta, WLAN_STA_PSPOLL);
17545ac2e350SJohannes Berg 	clear_sta_flag(sta, WLAN_STA_UAPSD);
1755456bbb8aSRemi Pommarel 	spin_unlock_bh(&sta->ps_lock);
1756948d887dSJohannes Berg 
1757e3685e03SJohannes Berg 	atomic_dec(&ps->num_sta_ps);
1758e3685e03SJohannes Berg 
1759af818581SJohannes Berg 	local->total_ps_buffered -= buffered;
1760af818581SJohannes Berg 
1761c868cb35SJohannes Berg 	sta_info_recalc_tim(sta);
1762c868cb35SJohannes Berg 
1763bdcbd8e0SJohannes Berg 	ps_dbg(sdata,
17642595d259SSara Sharon 	       "STA %pM aid %d sending %d filtered/%d PS frames since STA woke up\n",
1765bdcbd8e0SJohannes Berg 	       sta->sta.addr, sta->sta.aid, filtered, buffered);
176617c18bf8SJohannes Berg 
176717c18bf8SJohannes Berg 	ieee80211_check_fast_xmit(sta);
1768af818581SJohannes Berg }
1769af818581SJohannes Berg 
17700ead2510SEmmanuel Grumbach static void ieee80211_send_null_response(struct sta_info *sta, int tid,
1771b77cf4f8SJohannes Berg 					 enum ieee80211_frame_release_type reason,
17720ead2510SEmmanuel Grumbach 					 bool call_driver, bool more_data)
1773ce662b44SJohannes Berg {
17740ead2510SEmmanuel Grumbach 	struct ieee80211_sub_if_data *sdata = sta->sdata;
1775ce662b44SJohannes Berg 	struct ieee80211_local *local = sdata->local;
1776ce662b44SJohannes Berg 	struct ieee80211_qos_hdr *nullfunc;
1777ce662b44SJohannes Berg 	struct sk_buff *skb;
1778ce662b44SJohannes Berg 	int size = sizeof(*nullfunc);
1779ce662b44SJohannes Berg 	__le16 fc;
1780a74a8c84SJohannes Berg 	bool qos = sta->sta.wme;
1781ce662b44SJohannes Berg 	struct ieee80211_tx_info *info;
178255de908aSJohannes Berg 	struct ieee80211_chanctx_conf *chanctx_conf;
1783ce662b44SJohannes Berg 
1784ce662b44SJohannes Berg 	if (qos) {
1785ce662b44SJohannes Berg 		fc = cpu_to_le16(IEEE80211_FTYPE_DATA |
1786ce662b44SJohannes Berg 				 IEEE80211_STYPE_QOS_NULLFUNC |
1787ce662b44SJohannes Berg 				 IEEE80211_FCTL_FROMDS);
1788ce662b44SJohannes Berg 	} else {
1789ce662b44SJohannes Berg 		size -= 2;
1790ce662b44SJohannes Berg 		fc = cpu_to_le16(IEEE80211_FTYPE_DATA |
1791ce662b44SJohannes Berg 				 IEEE80211_STYPE_NULLFUNC |
1792ce662b44SJohannes Berg 				 IEEE80211_FCTL_FROMDS);
1793ce662b44SJohannes Berg 	}
1794ce662b44SJohannes Berg 
1795ce662b44SJohannes Berg 	skb = dev_alloc_skb(local->hw.extra_tx_headroom + size);
1796ce662b44SJohannes Berg 	if (!skb)
1797ce662b44SJohannes Berg 		return;
1798ce662b44SJohannes Berg 
1799ce662b44SJohannes Berg 	skb_reserve(skb, local->hw.extra_tx_headroom);
1800ce662b44SJohannes Berg 
18014df864c1SJohannes Berg 	nullfunc = skb_put(skb, size);
1802ce662b44SJohannes Berg 	nullfunc->frame_control = fc;
1803ce662b44SJohannes Berg 	nullfunc->duration_id = 0;
1804ce662b44SJohannes Berg 	memcpy(nullfunc->addr1, sta->sta.addr, ETH_ALEN);
1805ce662b44SJohannes Berg 	memcpy(nullfunc->addr2, sdata->vif.addr, ETH_ALEN);
1806ce662b44SJohannes Berg 	memcpy(nullfunc->addr3, sdata->vif.addr, ETH_ALEN);
1807864a6040SJohannes Berg 	nullfunc->seq_ctrl = 0;
1808ce662b44SJohannes Berg 
1809ce662b44SJohannes Berg 	skb->priority = tid;
1810ce662b44SJohannes Berg 	skb_set_queue_mapping(skb, ieee802_1d_to_ac[tid]);
181159b66255SJohannes Berg 	if (qos) {
1812ce662b44SJohannes Berg 		nullfunc->qos_ctrl = cpu_to_le16(tid);
1813ce662b44SJohannes Berg 
18140ead2510SEmmanuel Grumbach 		if (reason == IEEE80211_FRAME_RELEASE_UAPSD) {
1815ce662b44SJohannes Berg 			nullfunc->qos_ctrl |=
1816ce662b44SJohannes Berg 				cpu_to_le16(IEEE80211_QOS_CTL_EOSP);
18170ead2510SEmmanuel Grumbach 			if (more_data)
18180ead2510SEmmanuel Grumbach 				nullfunc->frame_control |=
18190ead2510SEmmanuel Grumbach 					cpu_to_le16(IEEE80211_FCTL_MOREDATA);
18200ead2510SEmmanuel Grumbach 		}
1821ce662b44SJohannes Berg 	}
1822ce662b44SJohannes Berg 
1823ce662b44SJohannes Berg 	info = IEEE80211_SKB_CB(skb);
1824ce662b44SJohannes Berg 
1825ce662b44SJohannes Berg 	/*
1826ce662b44SJohannes Berg 	 * Tell TX path to send this frame even though the
1827ce662b44SJohannes Berg 	 * STA may still remain is PS mode after this frame
1828deeaee19SJohannes Berg 	 * exchange. Also set EOSP to indicate this packet
1829deeaee19SJohannes Berg 	 * ends the poll/service period.
1830ce662b44SJohannes Berg 	 */
183102f2f1a9SJohannes Berg 	info->flags |= IEEE80211_TX_CTL_NO_PS_BUFFER |
1832deeaee19SJohannes Berg 		       IEEE80211_TX_STATUS_EOSP |
1833ce662b44SJohannes Berg 		       IEEE80211_TX_CTL_REQ_TX_STATUS;
1834ce662b44SJohannes Berg 
18356b127c71SSujith Manoharan 	info->control.flags |= IEEE80211_TX_CTRL_PS_RESPONSE;
18366b127c71SSujith Manoharan 
1837b77cf4f8SJohannes Berg 	if (call_driver)
1838b77cf4f8SJohannes Berg 		drv_allow_buffered_frames(local, sta, BIT(tid), 1,
1839b77cf4f8SJohannes Berg 					  reason, false);
184040b96408SJohannes Berg 
184189afe614SJohannes Berg 	skb->dev = sdata->dev;
184289afe614SJohannes Berg 
184355de908aSJohannes Berg 	rcu_read_lock();
1844d0a9123eSJohannes Berg 	chanctx_conf = rcu_dereference(sdata->vif.bss_conf.chanctx_conf);
184555de908aSJohannes Berg 	if (WARN_ON(!chanctx_conf)) {
184655de908aSJohannes Berg 		rcu_read_unlock();
184755de908aSJohannes Berg 		kfree_skb(skb);
184855de908aSJohannes Berg 		return;
184955de908aSJohannes Berg 	}
185055de908aSJohannes Berg 
185173c4e195SJohannes Berg 	info->band = chanctx_conf->def.chan->band;
185208aca29aSMathy Vanhoef 	ieee80211_xmit(sdata, sta, skb);
185355de908aSJohannes Berg 	rcu_read_unlock();
1854ce662b44SJohannes Berg }
1855ce662b44SJohannes Berg 
18560a1cb809SJohannes Berg static int find_highest_prio_tid(unsigned long tids)
18570a1cb809SJohannes Berg {
18580a1cb809SJohannes Berg 	/* lower 3 TIDs aren't ordered perfectly */
18590a1cb809SJohannes Berg 	if (tids & 0xF8)
18600a1cb809SJohannes Berg 		return fls(tids) - 1;
18610a1cb809SJohannes Berg 	/* TID 0 is BE just like TID 3 */
18620a1cb809SJohannes Berg 	if (tids & BIT(0))
18630a1cb809SJohannes Berg 		return 0;
18640a1cb809SJohannes Berg 	return fls(tids) - 1;
18650a1cb809SJohannes Berg }
18660a1cb809SJohannes Berg 
18670ead2510SEmmanuel Grumbach /* Indicates if the MORE_DATA bit should be set in the last
18680ead2510SEmmanuel Grumbach  * frame obtained by ieee80211_sta_ps_get_frames.
18690ead2510SEmmanuel Grumbach  * Note that driver_release_tids is relevant only if
18700ead2510SEmmanuel Grumbach  * reason = IEEE80211_FRAME_RELEASE_PSPOLL
18710ead2510SEmmanuel Grumbach  */
18720ead2510SEmmanuel Grumbach static bool
18730ead2510SEmmanuel Grumbach ieee80211_sta_ps_more_data(struct sta_info *sta, u8 ignored_acs,
18740ead2510SEmmanuel Grumbach 			   enum ieee80211_frame_release_type reason,
18750ead2510SEmmanuel Grumbach 			   unsigned long driver_release_tids)
18760ead2510SEmmanuel Grumbach {
18770ead2510SEmmanuel Grumbach 	int ac;
18780ead2510SEmmanuel Grumbach 
18790ead2510SEmmanuel Grumbach 	/* If the driver has data on more than one TID then
18800ead2510SEmmanuel Grumbach 	 * certainly there's more data if we release just a
18810ead2510SEmmanuel Grumbach 	 * single frame now (from a single TID). This will
18820ead2510SEmmanuel Grumbach 	 * only happen for PS-Poll.
18830ead2510SEmmanuel Grumbach 	 */
18840ead2510SEmmanuel Grumbach 	if (reason == IEEE80211_FRAME_RELEASE_PSPOLL &&
18850ead2510SEmmanuel Grumbach 	    hweight16(driver_release_tids) > 1)
18860ead2510SEmmanuel Grumbach 		return true;
18870ead2510SEmmanuel Grumbach 
18880ead2510SEmmanuel Grumbach 	for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
1889f438ceb8SEmmanuel Grumbach 		if (ignored_acs & ieee80211_ac_to_qos_mask[ac])
18900ead2510SEmmanuel Grumbach 			continue;
18910ead2510SEmmanuel Grumbach 
18920ead2510SEmmanuel Grumbach 		if (!skb_queue_empty(&sta->tx_filtered[ac]) ||
18930ead2510SEmmanuel Grumbach 		    !skb_queue_empty(&sta->ps_tx_buf[ac]))
18940ead2510SEmmanuel Grumbach 			return true;
18950ead2510SEmmanuel Grumbach 	}
18960ead2510SEmmanuel Grumbach 
18970ead2510SEmmanuel Grumbach 	return false;
18980ead2510SEmmanuel Grumbach }
18990ead2510SEmmanuel Grumbach 
190047086fc5SJohannes Berg static void
19010ead2510SEmmanuel Grumbach ieee80211_sta_ps_get_frames(struct sta_info *sta, int n_frames, u8 ignored_acs,
19020ead2510SEmmanuel Grumbach 			    enum ieee80211_frame_release_type reason,
19030ead2510SEmmanuel Grumbach 			    struct sk_buff_head *frames,
19040ead2510SEmmanuel Grumbach 			    unsigned long *driver_release_tids)
1905af818581SJohannes Berg {
1906af818581SJohannes Berg 	struct ieee80211_sub_if_data *sdata = sta->sdata;
1907af818581SJohannes Berg 	struct ieee80211_local *local = sdata->local;
1908948d887dSJohannes Berg 	int ac;
1909af818581SJohannes Berg 
1910f9f760b4SJohannes Berg 	/* Get response frame(s) and more data bit for the last one. */
1911948d887dSJohannes Berg 	for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
19124049e09aSJohannes Berg 		unsigned long tids;
19134049e09aSJohannes Berg 
1914f438ceb8SEmmanuel Grumbach 		if (ignored_acs & ieee80211_ac_to_qos_mask[ac])
1915948d887dSJohannes Berg 			continue;
1916948d887dSJohannes Berg 
19174049e09aSJohannes Berg 		tids = ieee80211_tids_for_ac(ac);
19184049e09aSJohannes Berg 
1919f9f760b4SJohannes Berg 		/* if we already have frames from software, then we can't also
1920f9f760b4SJohannes Berg 		 * release from hardware queues
1921f9f760b4SJohannes Berg 		 */
19220ead2510SEmmanuel Grumbach 		if (skb_queue_empty(frames)) {
19230ead2510SEmmanuel Grumbach 			*driver_release_tids |=
19240ead2510SEmmanuel Grumbach 				sta->driver_buffered_tids & tids;
19250ead2510SEmmanuel Grumbach 			*driver_release_tids |= sta->txq_buffered_tids & tids;
1926ba8c3d6fSFelix Fietkau 		}
1927f9f760b4SJohannes Berg 
19280ead2510SEmmanuel Grumbach 		if (!*driver_release_tids) {
192947086fc5SJohannes Berg 			struct sk_buff *skb;
193047086fc5SJohannes Berg 
193147086fc5SJohannes Berg 			while (n_frames > 0) {
1932948d887dSJohannes Berg 				skb = skb_dequeue(&sta->tx_filtered[ac]);
1933948d887dSJohannes Berg 				if (!skb) {
193447086fc5SJohannes Berg 					skb = skb_dequeue(
193547086fc5SJohannes Berg 						&sta->ps_tx_buf[ac]);
1936af818581SJohannes Berg 					if (skb)
1937af818581SJohannes Berg 						local->total_ps_buffered--;
1938af818581SJohannes Berg 				}
193947086fc5SJohannes Berg 				if (!skb)
194047086fc5SJohannes Berg 					break;
194147086fc5SJohannes Berg 				n_frames--;
19420ead2510SEmmanuel Grumbach 				__skb_queue_tail(frames, skb);
194347086fc5SJohannes Berg 			}
1944948d887dSJohannes Berg 		}
1945948d887dSJohannes Berg 
19460ead2510SEmmanuel Grumbach 		/* If we have more frames buffered on this AC, then abort the
19470ead2510SEmmanuel Grumbach 		 * loop since we can't send more data from other ACs before
19480ead2510SEmmanuel Grumbach 		 * the buffered frames from this.
19494049e09aSJohannes Berg 		 */
1950948d887dSJohannes Berg 		if (!skb_queue_empty(&sta->tx_filtered[ac]) ||
19510ead2510SEmmanuel Grumbach 		    !skb_queue_empty(&sta->ps_tx_buf[ac]))
1952948d887dSJohannes Berg 			break;
1953948d887dSJohannes Berg 	}
1954948d887dSJohannes Berg }
1955af818581SJohannes Berg 
19560ead2510SEmmanuel Grumbach static void
19570ead2510SEmmanuel Grumbach ieee80211_sta_ps_deliver_response(struct sta_info *sta,
19580ead2510SEmmanuel Grumbach 				  int n_frames, u8 ignored_acs,
19590ead2510SEmmanuel Grumbach 				  enum ieee80211_frame_release_type reason)
19600ead2510SEmmanuel Grumbach {
19610ead2510SEmmanuel Grumbach 	struct ieee80211_sub_if_data *sdata = sta->sdata;
19620ead2510SEmmanuel Grumbach 	struct ieee80211_local *local = sdata->local;
19630ead2510SEmmanuel Grumbach 	unsigned long driver_release_tids = 0;
19640ead2510SEmmanuel Grumbach 	struct sk_buff_head frames;
19650ead2510SEmmanuel Grumbach 	bool more_data;
19660ead2510SEmmanuel Grumbach 
19670ead2510SEmmanuel Grumbach 	/* Service or PS-Poll period starts */
19680ead2510SEmmanuel Grumbach 	set_sta_flag(sta, WLAN_STA_SP);
19690ead2510SEmmanuel Grumbach 
19700ead2510SEmmanuel Grumbach 	__skb_queue_head_init(&frames);
19710ead2510SEmmanuel Grumbach 
19720ead2510SEmmanuel Grumbach 	ieee80211_sta_ps_get_frames(sta, n_frames, ignored_acs, reason,
19730ead2510SEmmanuel Grumbach 				    &frames, &driver_release_tids);
19740ead2510SEmmanuel Grumbach 
19750ead2510SEmmanuel Grumbach 	more_data = ieee80211_sta_ps_more_data(sta, ignored_acs, reason, driver_release_tids);
19760ead2510SEmmanuel Grumbach 
19771a57081aSEmmanuel Grumbach 	if (driver_release_tids && reason == IEEE80211_FRAME_RELEASE_PSPOLL)
19780ead2510SEmmanuel Grumbach 		driver_release_tids =
19790ead2510SEmmanuel Grumbach 			BIT(find_highest_prio_tid(driver_release_tids));
19800ead2510SEmmanuel Grumbach 
1981f9f760b4SJohannes Berg 	if (skb_queue_empty(&frames) && !driver_release_tids) {
1982f438ceb8SEmmanuel Grumbach 		int tid, ac;
19834049e09aSJohannes Berg 
1984ce662b44SJohannes Berg 		/*
1985ce662b44SJohannes Berg 		 * For PS-Poll, this can only happen due to a race condition
1986ce662b44SJohannes Berg 		 * when we set the TIM bit and the station notices it, but
1987ce662b44SJohannes Berg 		 * before it can poll for the frame we expire it.
1988ce662b44SJohannes Berg 		 *
1989ce662b44SJohannes Berg 		 * For uAPSD, this is said in the standard (11.2.1.5 h):
1990ce662b44SJohannes Berg 		 *	At each unscheduled SP for a non-AP STA, the AP shall
1991ce662b44SJohannes Berg 		 *	attempt to transmit at least one MSDU or MMPDU, but no
1992ce662b44SJohannes Berg 		 *	more than the value specified in the Max SP Length field
1993ce662b44SJohannes Berg 		 *	in the QoS Capability element from delivery-enabled ACs,
1994ce662b44SJohannes Berg 		 *	that are destined for the non-AP STA.
1995ce662b44SJohannes Berg 		 *
1996ce662b44SJohannes Berg 		 * Since we have no other MSDU/MMPDU, transmit a QoS null frame.
1997ce662b44SJohannes Berg 		 */
1998ce662b44SJohannes Berg 
1999ce662b44SJohannes Berg 		/* This will evaluate to 1, 3, 5 or 7. */
2000f438ceb8SEmmanuel Grumbach 		for (ac = IEEE80211_AC_VO; ac < IEEE80211_NUM_ACS; ac++)
2001d7f84244SEmmanuel Grumbach 			if (!(ignored_acs & ieee80211_ac_to_qos_mask[ac]))
2002d7f84244SEmmanuel Grumbach 				break;
2003f438ceb8SEmmanuel Grumbach 		tid = 7 - 2 * ac;
2004ce662b44SJohannes Berg 
20050ead2510SEmmanuel Grumbach 		ieee80211_send_null_response(sta, tid, reason, true, false);
2006f9f760b4SJohannes Berg 	} else if (!driver_release_tids) {
200747086fc5SJohannes Berg 		struct sk_buff_head pending;
200847086fc5SJohannes Berg 		struct sk_buff *skb;
200940b96408SJohannes Berg 		int num = 0;
201040b96408SJohannes Berg 		u16 tids = 0;
2011b77cf4f8SJohannes Berg 		bool need_null = false;
201247086fc5SJohannes Berg 
201347086fc5SJohannes Berg 		skb_queue_head_init(&pending);
201447086fc5SJohannes Berg 
201547086fc5SJohannes Berg 		while ((skb = __skb_dequeue(&frames))) {
2016af818581SJohannes Berg 			struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
201747086fc5SJohannes Berg 			struct ieee80211_hdr *hdr = (void *) skb->data;
201840b96408SJohannes Berg 			u8 *qoshdr = NULL;
201940b96408SJohannes Berg 
202040b96408SJohannes Berg 			num++;
2021af818581SJohannes Berg 
2022af818581SJohannes Berg 			/*
202347086fc5SJohannes Berg 			 * Tell TX path to send this frame even though the
202447086fc5SJohannes Berg 			 * STA may still remain is PS mode after this frame
202547086fc5SJohannes Berg 			 * exchange.
2026af818581SJohannes Berg 			 */
20276b127c71SSujith Manoharan 			info->flags |= IEEE80211_TX_CTL_NO_PS_BUFFER;
20286b127c71SSujith Manoharan 			info->control.flags |= IEEE80211_TX_CTRL_PS_RESPONSE;
2029af818581SJohannes Berg 
203047086fc5SJohannes Berg 			/*
203147086fc5SJohannes Berg 			 * Use MoreData flag to indicate whether there are
203247086fc5SJohannes Berg 			 * more buffered frames for this STA
203347086fc5SJohannes Berg 			 */
203424b9c373SJanusz.Dziedzic@tieto.com 			if (more_data || !skb_queue_empty(&frames))
203547086fc5SJohannes Berg 				hdr->frame_control |=
203647086fc5SJohannes Berg 					cpu_to_le16(IEEE80211_FCTL_MOREDATA);
203724b9c373SJanusz.Dziedzic@tieto.com 			else
203824b9c373SJanusz.Dziedzic@tieto.com 				hdr->frame_control &=
203924b9c373SJanusz.Dziedzic@tieto.com 					cpu_to_le16(~IEEE80211_FCTL_MOREDATA);
2040af818581SJohannes Berg 
204140b96408SJohannes Berg 			if (ieee80211_is_data_qos(hdr->frame_control) ||
204240b96408SJohannes Berg 			    ieee80211_is_qos_nullfunc(hdr->frame_control))
204340b96408SJohannes Berg 				qoshdr = ieee80211_get_qos_ctl(hdr);
204440b96408SJohannes Berg 
2045b77cf4f8SJohannes Berg 			tids |= BIT(skb->priority);
2046b77cf4f8SJohannes Berg 
2047b77cf4f8SJohannes Berg 			__skb_queue_tail(&pending, skb);
2048b77cf4f8SJohannes Berg 
2049b77cf4f8SJohannes Berg 			/* end service period after last frame or add one */
2050b77cf4f8SJohannes Berg 			if (!skb_queue_empty(&frames))
2051b77cf4f8SJohannes Berg 				continue;
2052b77cf4f8SJohannes Berg 
2053b77cf4f8SJohannes Berg 			if (reason != IEEE80211_FRAME_RELEASE_UAPSD) {
2054b77cf4f8SJohannes Berg 				/* for PS-Poll, there's only one frame */
2055b77cf4f8SJohannes Berg 				info->flags |= IEEE80211_TX_STATUS_EOSP |
2056b77cf4f8SJohannes Berg 					       IEEE80211_TX_CTL_REQ_TX_STATUS;
2057b77cf4f8SJohannes Berg 				break;
2058b77cf4f8SJohannes Berg 			}
2059b77cf4f8SJohannes Berg 
2060b77cf4f8SJohannes Berg 			/* For uAPSD, things are a bit more complicated. If the
2061b77cf4f8SJohannes Berg 			 * last frame has a QoS header (i.e. is a QoS-data or
2062b77cf4f8SJohannes Berg 			 * QoS-nulldata frame) then just set the EOSP bit there
2063b77cf4f8SJohannes Berg 			 * and be done.
2064b77cf4f8SJohannes Berg 			 * If the frame doesn't have a QoS header (which means
2065b77cf4f8SJohannes Berg 			 * it should be a bufferable MMPDU) then we can't set
2066b77cf4f8SJohannes Berg 			 * the EOSP bit in the QoS header; add a QoS-nulldata
2067b77cf4f8SJohannes Berg 			 * frame to the list to send it after the MMPDU.
2068b77cf4f8SJohannes Berg 			 *
2069b77cf4f8SJohannes Berg 			 * Note that this code is only in the mac80211-release
2070b77cf4f8SJohannes Berg 			 * code path, we assume that the driver will not buffer
2071b77cf4f8SJohannes Berg 			 * anything but QoS-data frames, or if it does, will
2072b77cf4f8SJohannes Berg 			 * create the QoS-nulldata frame by itself if needed.
2073b77cf4f8SJohannes Berg 			 *
2074b77cf4f8SJohannes Berg 			 * Cf. 802.11-2012 10.2.1.10 (c).
2075b77cf4f8SJohannes Berg 			 */
2076b77cf4f8SJohannes Berg 			if (qoshdr) {
207740b96408SJohannes Berg 				*qoshdr |= IEEE80211_QOS_CTL_EOSP;
2078deeaee19SJohannes Berg 
207947086fc5SJohannes Berg 				info->flags |= IEEE80211_TX_STATUS_EOSP |
208047086fc5SJohannes Berg 					       IEEE80211_TX_CTL_REQ_TX_STATUS;
2081b77cf4f8SJohannes Berg 			} else {
2082b77cf4f8SJohannes Berg 				/* The standard isn't completely clear on this
2083b77cf4f8SJohannes Berg 				 * as it says the more-data bit should be set
2084b77cf4f8SJohannes Berg 				 * if there are more BUs. The QoS-Null frame
2085b77cf4f8SJohannes Berg 				 * we're about to send isn't buffered yet, we
2086b77cf4f8SJohannes Berg 				 * only create it below, but let's pretend it
2087b77cf4f8SJohannes Berg 				 * was buffered just in case some clients only
2088b77cf4f8SJohannes Berg 				 * expect more-data=0 when eosp=1.
2089b77cf4f8SJohannes Berg 				 */
2090b77cf4f8SJohannes Berg 				hdr->frame_control |=
2091b77cf4f8SJohannes Berg 					cpu_to_le16(IEEE80211_FCTL_MOREDATA);
2092b77cf4f8SJohannes Berg 				need_null = true;
2093b77cf4f8SJohannes Berg 				num++;
209452a3f20cSMarco Porsch 			}
2095b77cf4f8SJohannes Berg 			break;
209647086fc5SJohannes Berg 		}
209747086fc5SJohannes Berg 
209840b96408SJohannes Berg 		drv_allow_buffered_frames(local, sta, tids, num,
209940b96408SJohannes Berg 					  reason, more_data);
210040b96408SJohannes Berg 
210147086fc5SJohannes Berg 		ieee80211_add_pending_skbs(local, &pending);
2102af818581SJohannes Berg 
2103b77cf4f8SJohannes Berg 		if (need_null)
2104b77cf4f8SJohannes Berg 			ieee80211_send_null_response(
21050ead2510SEmmanuel Grumbach 				sta, find_highest_prio_tid(tids),
21060ead2510SEmmanuel Grumbach 				reason, false, false);
2107b77cf4f8SJohannes Berg 
2108c868cb35SJohannes Berg 		sta_info_recalc_tim(sta);
2109af818581SJohannes Berg 	} else {
2110ba8c3d6fSFelix Fietkau 		int tid;
2111ba8c3d6fSFelix Fietkau 
2112af818581SJohannes Berg 		/*
21134049e09aSJohannes Berg 		 * We need to release a frame that is buffered somewhere in the
21144049e09aSJohannes Berg 		 * driver ... it'll have to handle that.
2115f9f760b4SJohannes Berg 		 * Note that the driver also has to check the number of frames
2116f9f760b4SJohannes Berg 		 * on the TIDs we're releasing from - if there are more than
2117f9f760b4SJohannes Berg 		 * n_frames it has to set the more-data bit (if we didn't ask
2118f9f760b4SJohannes Berg 		 * it to set it anyway due to other buffered frames); if there
2119f9f760b4SJohannes Berg 		 * are fewer than n_frames it has to make sure to adjust that
2120f9f760b4SJohannes Berg 		 * to allow the service period to end properly.
2121af818581SJohannes Berg 		 */
21224049e09aSJohannes Berg 		drv_release_buffered_frames(local, sta, driver_release_tids,
212347086fc5SJohannes Berg 					    n_frames, reason, more_data);
21244049e09aSJohannes Berg 
21254049e09aSJohannes Berg 		/*
21264049e09aSJohannes Berg 		 * Note that we don't recalculate the TIM bit here as it would
21274049e09aSJohannes Berg 		 * most likely have no effect at all unless the driver told us
2128f9f760b4SJohannes Berg 		 * that the TID(s) became empty before returning here from the
21294049e09aSJohannes Berg 		 * release function.
2130f9f760b4SJohannes Berg 		 * Either way, however, when the driver tells us that the TID(s)
2131ba8c3d6fSFelix Fietkau 		 * became empty or we find that a txq became empty, we'll do the
2132ba8c3d6fSFelix Fietkau 		 * TIM recalculation.
21334049e09aSJohannes Berg 		 */
2134ba8c3d6fSFelix Fietkau 
2135ba8c3d6fSFelix Fietkau 		for (tid = 0; tid < ARRAY_SIZE(sta->sta.txq); tid++) {
2136adf8ed01SJohannes Berg 			if (!sta->sta.txq[tid] ||
2137adf8ed01SJohannes Berg 			    !(driver_release_tids & BIT(tid)) ||
21381e1430d5SJohannes Berg 			    txq_has_queue(sta->sta.txq[tid]))
2139ba8c3d6fSFelix Fietkau 				continue;
2140ba8c3d6fSFelix Fietkau 
2141ba8c3d6fSFelix Fietkau 			sta_info_recalc_tim(sta);
2142ba8c3d6fSFelix Fietkau 			break;
2143ba8c3d6fSFelix Fietkau 		}
2144af818581SJohannes Berg 	}
2145af818581SJohannes Berg }
2146af818581SJohannes Berg 
2147af818581SJohannes Berg void ieee80211_sta_ps_deliver_poll_response(struct sta_info *sta)
2148af818581SJohannes Berg {
214947086fc5SJohannes Berg 	u8 ignore_for_response = sta->sta.uapsd_queues;
2150af818581SJohannes Berg 
2151af818581SJohannes Berg 	/*
215247086fc5SJohannes Berg 	 * If all ACs are delivery-enabled then we should reply
215347086fc5SJohannes Berg 	 * from any of them, if only some are enabled we reply
215447086fc5SJohannes Berg 	 * only from the non-enabled ones.
2155af818581SJohannes Berg 	 */
215647086fc5SJohannes Berg 	if (ignore_for_response == BIT(IEEE80211_NUM_ACS) - 1)
215747086fc5SJohannes Berg 		ignore_for_response = 0;
2158af818581SJohannes Berg 
215947086fc5SJohannes Berg 	ieee80211_sta_ps_deliver_response(sta, 1, ignore_for_response,
216047086fc5SJohannes Berg 					  IEEE80211_FRAME_RELEASE_PSPOLL);
2161af818581SJohannes Berg }
216247086fc5SJohannes Berg 
216347086fc5SJohannes Berg void ieee80211_sta_ps_deliver_uapsd(struct sta_info *sta)
216447086fc5SJohannes Berg {
216547086fc5SJohannes Berg 	int n_frames = sta->sta.max_sp;
216647086fc5SJohannes Berg 	u8 delivery_enabled = sta->sta.uapsd_queues;
216747086fc5SJohannes Berg 
216847086fc5SJohannes Berg 	/*
216947086fc5SJohannes Berg 	 * If we ever grow support for TSPEC this might happen if
217047086fc5SJohannes Berg 	 * the TSPEC update from hostapd comes in between a trigger
217147086fc5SJohannes Berg 	 * frame setting WLAN_STA_UAPSD in the RX path and this
217247086fc5SJohannes Berg 	 * actually getting called.
217347086fc5SJohannes Berg 	 */
217447086fc5SJohannes Berg 	if (!delivery_enabled)
217547086fc5SJohannes Berg 		return;
217647086fc5SJohannes Berg 
217747086fc5SJohannes Berg 	switch (sta->sta.max_sp) {
217847086fc5SJohannes Berg 	case 1:
217947086fc5SJohannes Berg 		n_frames = 2;
218047086fc5SJohannes Berg 		break;
218147086fc5SJohannes Berg 	case 2:
218247086fc5SJohannes Berg 		n_frames = 4;
218347086fc5SJohannes Berg 		break;
218447086fc5SJohannes Berg 	case 3:
218547086fc5SJohannes Berg 		n_frames = 6;
218647086fc5SJohannes Berg 		break;
218747086fc5SJohannes Berg 	case 0:
218847086fc5SJohannes Berg 		/* XXX: what is a good value? */
218913a8098aSAndrei Otcheretianski 		n_frames = 128;
219047086fc5SJohannes Berg 		break;
219147086fc5SJohannes Berg 	}
219247086fc5SJohannes Berg 
219347086fc5SJohannes Berg 	ieee80211_sta_ps_deliver_response(sta, n_frames, ~delivery_enabled,
219447086fc5SJohannes Berg 					  IEEE80211_FRAME_RELEASE_UAPSD);
2195af818581SJohannes Berg }
2196af818581SJohannes Berg 
2197af818581SJohannes Berg void ieee80211_sta_block_awake(struct ieee80211_hw *hw,
2198af818581SJohannes Berg 			       struct ieee80211_sta *pubsta, bool block)
2199af818581SJohannes Berg {
2200af818581SJohannes Berg 	struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
2201af818581SJohannes Berg 
2202b5878a2dSJohannes Berg 	trace_api_sta_block_awake(sta->local, pubsta, block);
2203b5878a2dSJohannes Berg 
22045ac2e350SJohannes Berg 	if (block) {
2205c2c98fdeSJohannes Berg 		set_sta_flag(sta, WLAN_STA_PS_DRIVER);
220617c18bf8SJohannes Berg 		ieee80211_clear_fast_xmit(sta);
22075ac2e350SJohannes Berg 		return;
22085ac2e350SJohannes Berg 	}
22095ac2e350SJohannes Berg 
22105ac2e350SJohannes Berg 	if (!test_sta_flag(sta, WLAN_STA_PS_DRIVER))
22115ac2e350SJohannes Berg 		return;
22125ac2e350SJohannes Berg 
22135ac2e350SJohannes Berg 	if (!test_sta_flag(sta, WLAN_STA_PS_STA)) {
22145ac2e350SJohannes Berg 		set_sta_flag(sta, WLAN_STA_PS_DELIVER);
22155ac2e350SJohannes Berg 		clear_sta_flag(sta, WLAN_STA_PS_DRIVER);
22165ac2e350SJohannes Berg 		ieee80211_queue_work(hw, &sta->drv_deliver_wk);
22175ac2e350SJohannes Berg 	} else if (test_sta_flag(sta, WLAN_STA_PSPOLL) ||
22185ac2e350SJohannes Berg 		   test_sta_flag(sta, WLAN_STA_UAPSD)) {
22195ac2e350SJohannes Berg 		/* must be asleep in this case */
22205ac2e350SJohannes Berg 		clear_sta_flag(sta, WLAN_STA_PS_DRIVER);
22215ac2e350SJohannes Berg 		ieee80211_queue_work(hw, &sta->drv_deliver_wk);
22225ac2e350SJohannes Berg 	} else {
22235ac2e350SJohannes Berg 		clear_sta_flag(sta, WLAN_STA_PS_DRIVER);
222417c18bf8SJohannes Berg 		ieee80211_check_fast_xmit(sta);
22255ac2e350SJohannes Berg 	}
2226af818581SJohannes Berg }
2227af818581SJohannes Berg EXPORT_SYMBOL(ieee80211_sta_block_awake);
2228dcf55fb5SFelix Fietkau 
2229e943789eSJohannes Berg void ieee80211_sta_eosp(struct ieee80211_sta *pubsta)
223037fbd908SJohannes Berg {
223137fbd908SJohannes Berg 	struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
223237fbd908SJohannes Berg 	struct ieee80211_local *local = sta->local;
223337fbd908SJohannes Berg 
223437fbd908SJohannes Berg 	trace_api_eosp(local, pubsta);
223537fbd908SJohannes Berg 
223637fbd908SJohannes Berg 	clear_sta_flag(sta, WLAN_STA_SP);
223737fbd908SJohannes Berg }
2238e943789eSJohannes Berg EXPORT_SYMBOL(ieee80211_sta_eosp);
223937fbd908SJohannes Berg 
22400ead2510SEmmanuel Grumbach void ieee80211_send_eosp_nullfunc(struct ieee80211_sta *pubsta, int tid)
22410ead2510SEmmanuel Grumbach {
22420ead2510SEmmanuel Grumbach 	struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
22430ead2510SEmmanuel Grumbach 	enum ieee80211_frame_release_type reason;
22440ead2510SEmmanuel Grumbach 	bool more_data;
22450ead2510SEmmanuel Grumbach 
22460ead2510SEmmanuel Grumbach 	trace_api_send_eosp_nullfunc(sta->local, pubsta, tid);
22470ead2510SEmmanuel Grumbach 
22480ead2510SEmmanuel Grumbach 	reason = IEEE80211_FRAME_RELEASE_UAPSD;
22490ead2510SEmmanuel Grumbach 	more_data = ieee80211_sta_ps_more_data(sta, ~sta->sta.uapsd_queues,
22500ead2510SEmmanuel Grumbach 					       reason, 0);
22510ead2510SEmmanuel Grumbach 
22520ead2510SEmmanuel Grumbach 	ieee80211_send_null_response(sta, tid, reason, false, more_data);
22530ead2510SEmmanuel Grumbach }
22540ead2510SEmmanuel Grumbach EXPORT_SYMBOL(ieee80211_send_eosp_nullfunc);
22550ead2510SEmmanuel Grumbach 
2256042ec453SJohannes Berg void ieee80211_sta_set_buffered(struct ieee80211_sta *pubsta,
2257042ec453SJohannes Berg 				u8 tid, bool buffered)
2258dcf55fb5SFelix Fietkau {
2259dcf55fb5SFelix Fietkau 	struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
2260dcf55fb5SFelix Fietkau 
22615a306f58SJohannes Berg 	if (WARN_ON(tid >= IEEE80211_NUM_TIDS))
2262042ec453SJohannes Berg 		return;
2263042ec453SJohannes Berg 
22641b000789SJohannes Berg 	trace_api_sta_set_buffered(sta->local, pubsta, tid, buffered);
22651b000789SJohannes Berg 
2266948d887dSJohannes Berg 	if (buffered)
2267948d887dSJohannes Berg 		set_bit(tid, &sta->driver_buffered_tids);
2268948d887dSJohannes Berg 	else
2269948d887dSJohannes Berg 		clear_bit(tid, &sta->driver_buffered_tids);
2270948d887dSJohannes Berg 
2271c868cb35SJohannes Berg 	sta_info_recalc_tim(sta);
2272dcf55fb5SFelix Fietkau }
2273042ec453SJohannes Berg EXPORT_SYMBOL(ieee80211_sta_set_buffered);
2274d9a7ddb0SJohannes Berg 
2275b4809e94SToke Høiland-Jørgensen void ieee80211_sta_register_airtime(struct ieee80211_sta *pubsta, u8 tid,
2276b4809e94SToke Høiland-Jørgensen 				    u32 tx_airtime, u32 rx_airtime)
2277b4809e94SToke Høiland-Jørgensen {
2278942741daSFelix Fietkau 	struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
2279942741daSFelix Fietkau 	struct ieee80211_local *local = sta->sdata->local;
2280942741daSFelix Fietkau 	u8 ac = ieee80211_ac_from_tid(tid);
2281942741daSFelix Fietkau 	u32 airtime = 0;
2282c77bfab9SFelix Fietkau 	u32 diff;
2283b4809e94SToke Høiland-Jørgensen 
2284942741daSFelix Fietkau 	if (sta->local->airtime_flags & AIRTIME_USE_TX)
2285942741daSFelix Fietkau 		airtime += tx_airtime;
2286942741daSFelix Fietkau 	if (sta->local->airtime_flags & AIRTIME_USE_RX)
2287942741daSFelix Fietkau 		airtime += rx_airtime;
2288b4809e94SToke Høiland-Jørgensen 
2289942741daSFelix Fietkau 	spin_lock_bh(&local->active_txq_lock[ac]);
2290942741daSFelix Fietkau 	sta->airtime[ac].tx_airtime += tx_airtime;
2291942741daSFelix Fietkau 	sta->airtime[ac].rx_airtime += rx_airtime;
2292c77bfab9SFelix Fietkau 
2293c77bfab9SFelix Fietkau 	diff = (u32)jiffies - sta->airtime[ac].last_active;
2294c77bfab9SFelix Fietkau 	if (diff <= AIRTIME_ACTIVE_DURATION)
2295942741daSFelix Fietkau 		sta->airtime[ac].deficit -= airtime;
2296c77bfab9SFelix Fietkau 
2297942741daSFelix Fietkau 	spin_unlock_bh(&local->active_txq_lock[ac]);
2298b4809e94SToke Høiland-Jørgensen }
2299b4809e94SToke Høiland-Jørgensen EXPORT_SYMBOL(ieee80211_sta_register_airtime);
2300b4809e94SToke Høiland-Jørgensen 
23019b41a9d7SJohannes Berg void __ieee80211_sta_recalc_aggregates(struct sta_info *sta, u16 active_links)
23024c51541dSBenjamin Berg {
23034c51541dSBenjamin Berg 	bool first = true;
23049b41a9d7SJohannes Berg 	int link_id;
23054c51541dSBenjamin Berg 
23069b41a9d7SJohannes Berg 	if (!sta->sta.valid_links || !sta->sta.mlo) {
23079b41a9d7SJohannes Berg 		sta->sta.cur = &sta->sta.deflink.agg;
23084c51541dSBenjamin Berg 		return;
23094c51541dSBenjamin Berg 	}
23104c51541dSBenjamin Berg 
23114c51541dSBenjamin Berg 	rcu_read_lock();
23129b41a9d7SJohannes Berg 	for (link_id = 0; link_id < ARRAY_SIZE((sta)->link); link_id++) {
23139b41a9d7SJohannes Berg 		struct ieee80211_link_sta *link_sta;
23149b41a9d7SJohannes Berg 		int i;
23159b41a9d7SJohannes Berg 
23169b41a9d7SJohannes Berg 		if (!(active_links & BIT(link_id)))
23179b41a9d7SJohannes Berg 			continue;
23189b41a9d7SJohannes Berg 
23199b41a9d7SJohannes Berg 		link_sta = rcu_dereference(sta->sta.link[link_id]);
23209b41a9d7SJohannes Berg 		if (!link_sta)
23219b41a9d7SJohannes Berg 			continue;
23229b41a9d7SJohannes Berg 
23234c51541dSBenjamin Berg 		if (first) {
23249b41a9d7SJohannes Berg 			sta->cur = sta->sta.deflink.agg;
23254c51541dSBenjamin Berg 			first = false;
23264c51541dSBenjamin Berg 			continue;
23274c51541dSBenjamin Berg 		}
23284c51541dSBenjamin Berg 
23294c51541dSBenjamin Berg 		sta->cur.max_amsdu_len =
23304c51541dSBenjamin Berg 			min(sta->cur.max_amsdu_len,
23314c51541dSBenjamin Berg 			    link_sta->agg.max_amsdu_len);
23324c51541dSBenjamin Berg 		sta->cur.max_rc_amsdu_len =
23334c51541dSBenjamin Berg 			min(sta->cur.max_rc_amsdu_len,
23344c51541dSBenjamin Berg 			    link_sta->agg.max_rc_amsdu_len);
23354c51541dSBenjamin Berg 
23364c51541dSBenjamin Berg 		for (i = 0; i < ARRAY_SIZE(sta->cur.max_tid_amsdu_len); i++)
23374c51541dSBenjamin Berg 			sta->cur.max_tid_amsdu_len[i] =
23384c51541dSBenjamin Berg 				min(sta->cur.max_tid_amsdu_len[i],
23394c51541dSBenjamin Berg 				    link_sta->agg.max_tid_amsdu_len[i]);
23404c51541dSBenjamin Berg 	}
23414c51541dSBenjamin Berg 	rcu_read_unlock();
23424c51541dSBenjamin Berg 
23439b41a9d7SJohannes Berg 	sta->sta.cur = &sta->cur;
23449b41a9d7SJohannes Berg }
23459b41a9d7SJohannes Berg 
23469b41a9d7SJohannes Berg void ieee80211_sta_recalc_aggregates(struct ieee80211_sta *pubsta)
23479b41a9d7SJohannes Berg {
23489b41a9d7SJohannes Berg 	struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
23499b41a9d7SJohannes Berg 
23509b41a9d7SJohannes Berg 	__ieee80211_sta_recalc_aggregates(sta, sta->sdata->vif.active_links);
23514c51541dSBenjamin Berg }
23524c51541dSBenjamin Berg EXPORT_SYMBOL(ieee80211_sta_recalc_aggregates);
23534c51541dSBenjamin Berg 
23543ace10f5SKan Yan void ieee80211_sta_update_pending_airtime(struct ieee80211_local *local,
23553ace10f5SKan Yan 					  struct sta_info *sta, u8 ac,
23563ace10f5SKan Yan 					  u16 tx_airtime, bool tx_completed)
23573ace10f5SKan Yan {
23583ace10f5SKan Yan 	int tx_pending;
23593ace10f5SKan Yan 
2360911bde0fSToke Høiland-Jørgensen 	if (!wiphy_ext_feature_isset(local->hw.wiphy, NL80211_EXT_FEATURE_AQL))
2361911bde0fSToke Høiland-Jørgensen 		return;
2362911bde0fSToke Høiland-Jørgensen 
23633ace10f5SKan Yan 	if (!tx_completed) {
23643ace10f5SKan Yan 		if (sta)
23653ace10f5SKan Yan 			atomic_add(tx_airtime,
23663ace10f5SKan Yan 				   &sta->airtime[ac].aql_tx_pending);
23673ace10f5SKan Yan 
23683ace10f5SKan Yan 		atomic_add(tx_airtime, &local->aql_total_pending_airtime);
23698e4bac06SFelix Fietkau 		atomic_add(tx_airtime, &local->aql_ac_pending_airtime[ac]);
23703ace10f5SKan Yan 		return;
23713ace10f5SKan Yan 	}
23723ace10f5SKan Yan 
23733ace10f5SKan Yan 	if (sta) {
23743ace10f5SKan Yan 		tx_pending = atomic_sub_return(tx_airtime,
23753ace10f5SKan Yan 					       &sta->airtime[ac].aql_tx_pending);
237604e35caaSFelix Fietkau 		if (tx_pending < 0)
23773ace10f5SKan Yan 			atomic_cmpxchg(&sta->airtime[ac].aql_tx_pending,
23783ace10f5SKan Yan 				       tx_pending, 0);
23793ace10f5SKan Yan 	}
23803ace10f5SKan Yan 
23818e4bac06SFelix Fietkau 	atomic_sub(tx_airtime, &local->aql_total_pending_airtime);
23823ace10f5SKan Yan 	tx_pending = atomic_sub_return(tx_airtime,
23838e4bac06SFelix Fietkau 				       &local->aql_ac_pending_airtime[ac]);
23843ace10f5SKan Yan 	if (WARN_ONCE(tx_pending < 0,
23853ace10f5SKan Yan 		      "Device %s AC %d pending airtime underflow: %u, %u",
23863ace10f5SKan Yan 		      wiphy_name(local->hw.wiphy), ac, tx_pending,
23878e4bac06SFelix Fietkau 		      tx_airtime)) {
23888e4bac06SFelix Fietkau 		atomic_cmpxchg(&local->aql_ac_pending_airtime[ac],
23893ace10f5SKan Yan 			       tx_pending, 0);
23908e4bac06SFelix Fietkau 		atomic_sub(tx_pending, &local->aql_total_pending_airtime);
23918e4bac06SFelix Fietkau 	}
23923ace10f5SKan Yan }
23933ace10f5SKan Yan 
2394c9c5962bSJohannes Berg static struct ieee80211_sta_rx_stats *
2395c9c5962bSJohannes Berg sta_get_last_rx_stats(struct sta_info *sta)
2396c9c5962bSJohannes Berg {
2397046d2e7cSSriram R 	struct ieee80211_sta_rx_stats *stats = &sta->deflink.rx_stats;
2398c9c5962bSJohannes Berg 	int cpu;
2399c9c5962bSJohannes Berg 
2400046d2e7cSSriram R 	if (!sta->deflink.pcpu_rx_stats)
2401c9c5962bSJohannes Berg 		return stats;
2402c9c5962bSJohannes Berg 
2403c9c5962bSJohannes Berg 	for_each_possible_cpu(cpu) {
2404c9c5962bSJohannes Berg 		struct ieee80211_sta_rx_stats *cpustats;
2405c9c5962bSJohannes Berg 
2406046d2e7cSSriram R 		cpustats = per_cpu_ptr(sta->deflink.pcpu_rx_stats, cpu);
2407c9c5962bSJohannes Berg 
2408c9c5962bSJohannes Berg 		if (time_after(cpustats->last_rx, stats->last_rx))
2409c9c5962bSJohannes Berg 			stats = cpustats;
2410c9c5962bSJohannes Berg 	}
2411c9c5962bSJohannes Berg 
2412c9c5962bSJohannes Berg 	return stats;
2413c9c5962bSJohannes Berg }
2414c9c5962bSJohannes Berg 
241541cbb0f5SLuca Coelho static void sta_stats_decode_rate(struct ieee80211_local *local, u32 rate,
24164f6b1b3dSJohannes Berg 				  struct rate_info *rinfo)
2417fbd6ff5cSJohannes Berg {
2418dcba665bSJohannes Berg 	rinfo->bw = STA_STATS_GET(BW, rate);
2419fbd6ff5cSJohannes Berg 
2420dcba665bSJohannes Berg 	switch (STA_STATS_GET(TYPE, rate)) {
24217f406cd1SJohannes Berg 	case STA_STATS_RATE_TYPE_VHT:
24224f6b1b3dSJohannes Berg 		rinfo->flags = RATE_INFO_FLAGS_VHT_MCS;
2423dcba665bSJohannes Berg 		rinfo->mcs = STA_STATS_GET(VHT_MCS, rate);
2424dcba665bSJohannes Berg 		rinfo->nss = STA_STATS_GET(VHT_NSS, rate);
2425dcba665bSJohannes Berg 		if (STA_STATS_GET(SGI, rate))
2426dcba665bSJohannes Berg 			rinfo->flags |= RATE_INFO_FLAGS_SHORT_GI;
24277f406cd1SJohannes Berg 		break;
24287f406cd1SJohannes Berg 	case STA_STATS_RATE_TYPE_HT:
24294f6b1b3dSJohannes Berg 		rinfo->flags = RATE_INFO_FLAGS_MCS;
2430dcba665bSJohannes Berg 		rinfo->mcs = STA_STATS_GET(HT_MCS, rate);
2431dcba665bSJohannes Berg 		if (STA_STATS_GET(SGI, rate))
2432dcba665bSJohannes Berg 			rinfo->flags |= RATE_INFO_FLAGS_SHORT_GI;
24337f406cd1SJohannes Berg 		break;
24347f406cd1SJohannes Berg 	case STA_STATS_RATE_TYPE_LEGACY: {
2435fbd6ff5cSJohannes Berg 		struct ieee80211_supported_band *sband;
2436fbd6ff5cSJohannes Berg 		u16 brate;
24374f6b1b3dSJohannes Berg 		unsigned int shift;
2438dcba665bSJohannes Berg 		int band = STA_STATS_GET(LEGACY_BAND, rate);
2439dcba665bSJohannes Berg 		int rate_idx = STA_STATS_GET(LEGACY_IDX, rate);
2440fbd6ff5cSJohannes Berg 
2441dcba665bSJohannes Berg 		sband = local->hw.wiphy->bands[band];
24428b783d10SThomas Pedersen 
24438b783d10SThomas Pedersen 		if (WARN_ON_ONCE(!sband->bitrates))
24448b783d10SThomas Pedersen 			break;
24458b783d10SThomas Pedersen 
2446dcba665bSJohannes Berg 		brate = sband->bitrates[rate_idx].bitrate;
24474f6b1b3dSJohannes Berg 		if (rinfo->bw == RATE_INFO_BW_5)
24484f6b1b3dSJohannes Berg 			shift = 2;
24494f6b1b3dSJohannes Berg 		else if (rinfo->bw == RATE_INFO_BW_10)
24504f6b1b3dSJohannes Berg 			shift = 1;
24514f6b1b3dSJohannes Berg 		else
24524f6b1b3dSJohannes Berg 			shift = 0;
2453fbd6ff5cSJohannes Berg 		rinfo->legacy = DIV_ROUND_UP(brate, 1 << shift);
24547f406cd1SJohannes Berg 		break;
24557f406cd1SJohannes Berg 		}
245641cbb0f5SLuca Coelho 	case STA_STATS_RATE_TYPE_HE:
245741cbb0f5SLuca Coelho 		rinfo->flags = RATE_INFO_FLAGS_HE_MCS;
245841cbb0f5SLuca Coelho 		rinfo->mcs = STA_STATS_GET(HE_MCS, rate);
245941cbb0f5SLuca Coelho 		rinfo->nss = STA_STATS_GET(HE_NSS, rate);
246041cbb0f5SLuca Coelho 		rinfo->he_gi = STA_STATS_GET(HE_GI, rate);
246141cbb0f5SLuca Coelho 		rinfo->he_ru_alloc = STA_STATS_GET(HE_RU, rate);
246241cbb0f5SLuca Coelho 		rinfo->he_dcm = STA_STATS_GET(HE_DCM, rate);
246341cbb0f5SLuca Coelho 		break;
2464f66c48afSJohannes Berg 	case STA_STATS_RATE_TYPE_EHT:
2465f66c48afSJohannes Berg 		rinfo->flags = RATE_INFO_FLAGS_EHT_MCS;
2466f66c48afSJohannes Berg 		rinfo->mcs = STA_STATS_GET(EHT_MCS, rate);
2467f66c48afSJohannes Berg 		rinfo->nss = STA_STATS_GET(EHT_NSS, rate);
2468f66c48afSJohannes Berg 		rinfo->eht_gi = STA_STATS_GET(EHT_GI, rate);
2469f66c48afSJohannes Berg 		rinfo->eht_ru_alloc = STA_STATS_GET(EHT_RU, rate);
2470f66c48afSJohannes Berg 		break;
2471fbd6ff5cSJohannes Berg 	}
24724f6b1b3dSJohannes Berg }
2473fbd6ff5cSJohannes Berg 
2474a17d93ffSBen Greear static int sta_set_rate_info_rx(struct sta_info *sta, struct rate_info *rinfo)
24754f6b1b3dSJohannes Berg {
247659336e07SShayne Chen 	u32 rate = READ_ONCE(sta_get_last_rx_stats(sta)->last_rate);
24774f6b1b3dSJohannes Berg 
24784f6b1b3dSJohannes Berg 	if (rate == STA_STATS_RATE_INVALID)
2479a17d93ffSBen Greear 		return -EINVAL;
2480a17d93ffSBen Greear 
24814f6b1b3dSJohannes Berg 	sta_stats_decode_rate(sta->local, rate, rinfo);
2482a17d93ffSBen Greear 	return 0;
2483fbd6ff5cSJohannes Berg }
2484fbd6ff5cSJohannes Berg 
2485b255b72bSSeevalamuthu Mariappan static inline u64 sta_get_tidstats_msdu(struct ieee80211_sta_rx_stats *rxstats,
2486b255b72bSSeevalamuthu Mariappan 					int tid)
2487b255b72bSSeevalamuthu Mariappan {
2488b255b72bSSeevalamuthu Mariappan 	unsigned int start;
2489b255b72bSSeevalamuthu Mariappan 	u64 value;
2490b255b72bSSeevalamuthu Mariappan 
2491b255b72bSSeevalamuthu Mariappan 	do {
2492d120d1a6SThomas Gleixner 		start = u64_stats_fetch_begin(&rxstats->syncp);
2493b255b72bSSeevalamuthu Mariappan 		value = rxstats->msdu[tid];
2494d120d1a6SThomas Gleixner 	} while (u64_stats_fetch_retry(&rxstats->syncp, start));
2495b255b72bSSeevalamuthu Mariappan 
2496b255b72bSSeevalamuthu Mariappan 	return value;
2497b255b72bSSeevalamuthu Mariappan }
2498b255b72bSSeevalamuthu Mariappan 
24990f9c5a61SJohannes Berg static void sta_set_tidstats(struct sta_info *sta,
25000f9c5a61SJohannes Berg 			     struct cfg80211_tid_stats *tidstats,
25010f9c5a61SJohannes Berg 			     int tid)
25020f9c5a61SJohannes Berg {
25030f9c5a61SJohannes Berg 	struct ieee80211_local *local = sta->local;
2504b255b72bSSeevalamuthu Mariappan 	int cpu;
25050f9c5a61SJohannes Berg 
25060f9c5a61SJohannes Berg 	if (!(tidstats->filled & BIT(NL80211_TID_STATS_RX_MSDU))) {
2507046d2e7cSSriram R 		tidstats->rx_msdu += sta_get_tidstats_msdu(&sta->deflink.rx_stats,
2508046d2e7cSSriram R 							   tid);
25090f9c5a61SJohannes Berg 
2510046d2e7cSSriram R 		if (sta->deflink.pcpu_rx_stats) {
2511b255b72bSSeevalamuthu Mariappan 			for_each_possible_cpu(cpu) {
2512b255b72bSSeevalamuthu Mariappan 				struct ieee80211_sta_rx_stats *cpurxs;
2513b255b72bSSeevalamuthu Mariappan 
2514046d2e7cSSriram R 				cpurxs = per_cpu_ptr(sta->deflink.pcpu_rx_stats,
2515046d2e7cSSriram R 						     cpu);
2516b255b72bSSeevalamuthu Mariappan 				tidstats->rx_msdu +=
2517b255b72bSSeevalamuthu Mariappan 					sta_get_tidstats_msdu(cpurxs, tid);
2518b255b72bSSeevalamuthu Mariappan 			}
2519b255b72bSSeevalamuthu Mariappan 		}
25200f9c5a61SJohannes Berg 
25210f9c5a61SJohannes Berg 		tidstats->filled |= BIT(NL80211_TID_STATS_RX_MSDU);
25220f9c5a61SJohannes Berg 	}
25230f9c5a61SJohannes Berg 
25240f9c5a61SJohannes Berg 	if (!(tidstats->filled & BIT(NL80211_TID_STATS_TX_MSDU))) {
25250f9c5a61SJohannes Berg 		tidstats->filled |= BIT(NL80211_TID_STATS_TX_MSDU);
2526046d2e7cSSriram R 		tidstats->tx_msdu = sta->deflink.tx_stats.msdu[tid];
25270f9c5a61SJohannes Berg 	}
25280f9c5a61SJohannes Berg 
25290f9c5a61SJohannes Berg 	if (!(tidstats->filled & BIT(NL80211_TID_STATS_TX_MSDU_RETRIES)) &&
25300f9c5a61SJohannes Berg 	    ieee80211_hw_check(&local->hw, REPORTS_TX_ACK_STATUS)) {
25310f9c5a61SJohannes Berg 		tidstats->filled |= BIT(NL80211_TID_STATS_TX_MSDU_RETRIES);
2532046d2e7cSSriram R 		tidstats->tx_msdu_retries = sta->deflink.status_stats.msdu_retries[tid];
25330f9c5a61SJohannes Berg 	}
25340f9c5a61SJohannes Berg 
25350f9c5a61SJohannes Berg 	if (!(tidstats->filled & BIT(NL80211_TID_STATS_TX_MSDU_FAILED)) &&
25360f9c5a61SJohannes Berg 	    ieee80211_hw_check(&local->hw, REPORTS_TX_ACK_STATUS)) {
25370f9c5a61SJohannes Berg 		tidstats->filled |= BIT(NL80211_TID_STATS_TX_MSDU_FAILED);
2538046d2e7cSSriram R 		tidstats->tx_msdu_failed = sta->deflink.status_stats.msdu_failed[tid];
25390f9c5a61SJohannes Berg 	}
25402fe4a29aSToke Høiland-Jørgensen 
2541107395f9SAlexander Wetzel 	if (tid < IEEE80211_NUM_TIDS) {
25422fe4a29aSToke Høiland-Jørgensen 		spin_lock_bh(&local->fq.lock);
25432fe4a29aSToke Høiland-Jørgensen 		rcu_read_lock();
25442fe4a29aSToke Høiland-Jørgensen 
25452fe4a29aSToke Høiland-Jørgensen 		tidstats->filled |= BIT(NL80211_TID_STATS_TXQ_STATS);
25462fe4a29aSToke Høiland-Jørgensen 		ieee80211_fill_txq_stats(&tidstats->txq_stats,
25472fe4a29aSToke Høiland-Jørgensen 					 to_txq_info(sta->sta.txq[tid]));
25482fe4a29aSToke Høiland-Jørgensen 
25492fe4a29aSToke Høiland-Jørgensen 		rcu_read_unlock();
25502fe4a29aSToke Høiland-Jørgensen 		spin_unlock_bh(&local->fq.lock);
25512fe4a29aSToke Høiland-Jørgensen 	}
25520f9c5a61SJohannes Berg }
25530f9c5a61SJohannes Berg 
2554c9c5962bSJohannes Berg static inline u64 sta_get_stats_bytes(struct ieee80211_sta_rx_stats *rxstats)
2555c9c5962bSJohannes Berg {
2556c9c5962bSJohannes Berg 	unsigned int start;
2557c9c5962bSJohannes Berg 	u64 value;
2558c9c5962bSJohannes Berg 
2559c9c5962bSJohannes Berg 	do {
2560d120d1a6SThomas Gleixner 		start = u64_stats_fetch_begin(&rxstats->syncp);
2561c9c5962bSJohannes Berg 		value = rxstats->bytes;
2562d120d1a6SThomas Gleixner 	} while (u64_stats_fetch_retry(&rxstats->syncp, start));
2563c9c5962bSJohannes Berg 
2564c9c5962bSJohannes Berg 	return value;
2565c9c5962bSJohannes Berg }
2566c9c5962bSJohannes Berg 
25670fdf1493SJohannes Berg void sta_set_sinfo(struct sta_info *sta, struct station_info *sinfo,
25680fdf1493SJohannes Berg 		   bool tidstats)
2569b7ffbd7eSJohannes Berg {
2570b7ffbd7eSJohannes Berg 	struct ieee80211_sub_if_data *sdata = sta->sdata;
2571b7ffbd7eSJohannes Berg 	struct ieee80211_local *local = sdata->local;
2572b7ffbd7eSJohannes Berg 	u32 thr = 0;
2573c9c5962bSJohannes Berg 	int i, ac, cpu;
2574c9c5962bSJohannes Berg 	struct ieee80211_sta_rx_stats *last_rxstats;
2575c9c5962bSJohannes Berg 
2576c9c5962bSJohannes Berg 	last_rxstats = sta_get_last_rx_stats(sta);
2577b7ffbd7eSJohannes Berg 
2578b7ffbd7eSJohannes Berg 	sinfo->generation = sdata->local->sta_generation;
2579b7ffbd7eSJohannes Berg 
2580225b8189SJohannes Berg 	/* do before driver, so beacon filtering drivers have a
2581225b8189SJohannes Berg 	 * chance to e.g. just add the number of filtered beacons
2582225b8189SJohannes Berg 	 * (or just modify the value entirely, of course)
2583225b8189SJohannes Berg 	 */
2584225b8189SJohannes Berg 	if (sdata->vif.type == NL80211_IFTYPE_STATION)
2585bfd8403aSJohannes Berg 		sinfo->rx_beacon = sdata->deflink.u.mgd.count_beacon_signal;
2586225b8189SJohannes Berg 
25872b9a7e1bSJohannes Berg 	drv_sta_statistics(local, sdata, &sta->sta, sinfo);
2588a4217750SOmer Efrat 	sinfo->filled |= BIT_ULL(NL80211_STA_INFO_INACTIVE_TIME) |
2589a4217750SOmer Efrat 			 BIT_ULL(NL80211_STA_INFO_STA_FLAGS) |
2590a4217750SOmer Efrat 			 BIT_ULL(NL80211_STA_INFO_BSS_PARAM) |
2591a4217750SOmer Efrat 			 BIT_ULL(NL80211_STA_INFO_CONNECTED_TIME) |
25929cf02338SBen Greear 			 BIT_ULL(NL80211_STA_INFO_ASSOC_AT_BOOTTIME) |
2593a4217750SOmer Efrat 			 BIT_ULL(NL80211_STA_INFO_RX_DROP_MISC);
2594976bd9efSJohannes Berg 
2595976bd9efSJohannes Berg 	if (sdata->vif.type == NL80211_IFTYPE_STATION) {
2596bfd8403aSJohannes Berg 		sinfo->beacon_loss_count =
2597bfd8403aSJohannes Berg 			sdata->deflink.u.mgd.beacon_loss_count;
2598a4217750SOmer Efrat 		sinfo->filled |= BIT_ULL(NL80211_STA_INFO_BEACON_LOSS);
2599976bd9efSJohannes Berg 	}
2600b7ffbd7eSJohannes Berg 
260184b00607SArnd Bergmann 	sinfo->connected_time = ktime_get_seconds() - sta->last_connected;
26029cf02338SBen Greear 	sinfo->assoc_at = sta->assoc_at;
2603e5a9f8d0SJohannes Berg 	sinfo->inactive_time =
2604b8da6b6aSJohannes Berg 		jiffies_to_msecs(jiffies - ieee80211_sta_last_active(sta));
26052b9a7e1bSJohannes Berg 
2606a4217750SOmer Efrat 	if (!(sinfo->filled & (BIT_ULL(NL80211_STA_INFO_TX_BYTES64) |
2607a4217750SOmer Efrat 			       BIT_ULL(NL80211_STA_INFO_TX_BYTES)))) {
2608b7ffbd7eSJohannes Berg 		sinfo->tx_bytes = 0;
26092b9a7e1bSJohannes Berg 		for (ac = 0; ac < IEEE80211_NUM_ACS; ac++)
2610046d2e7cSSriram R 			sinfo->tx_bytes += sta->deflink.tx_stats.bytes[ac];
2611a4217750SOmer Efrat 		sinfo->filled |= BIT_ULL(NL80211_STA_INFO_TX_BYTES64);
2612b7ffbd7eSJohannes Berg 	}
26132b9a7e1bSJohannes Berg 
2614a4217750SOmer Efrat 	if (!(sinfo->filled & BIT_ULL(NL80211_STA_INFO_TX_PACKETS))) {
26152b9a7e1bSJohannes Berg 		sinfo->tx_packets = 0;
26162b9a7e1bSJohannes Berg 		for (ac = 0; ac < IEEE80211_NUM_ACS; ac++)
2617046d2e7cSSriram R 			sinfo->tx_packets += sta->deflink.tx_stats.packets[ac];
2618a4217750SOmer Efrat 		sinfo->filled |= BIT_ULL(NL80211_STA_INFO_TX_PACKETS);
26192b9a7e1bSJohannes Berg 	}
26202b9a7e1bSJohannes Berg 
2621a4217750SOmer Efrat 	if (!(sinfo->filled & (BIT_ULL(NL80211_STA_INFO_RX_BYTES64) |
2622a4217750SOmer Efrat 			       BIT_ULL(NL80211_STA_INFO_RX_BYTES)))) {
2623046d2e7cSSriram R 		sinfo->rx_bytes += sta_get_stats_bytes(&sta->deflink.rx_stats);
26240f9c5a61SJohannes Berg 
2625046d2e7cSSriram R 		if (sta->deflink.pcpu_rx_stats) {
2626c9c5962bSJohannes Berg 			for_each_possible_cpu(cpu) {
2627c9c5962bSJohannes Berg 				struct ieee80211_sta_rx_stats *cpurxs;
2628c9c5962bSJohannes Berg 
2629046d2e7cSSriram R 				cpurxs = per_cpu_ptr(sta->deflink.pcpu_rx_stats,
2630046d2e7cSSriram R 						     cpu);
2631c9c5962bSJohannes Berg 				sinfo->rx_bytes += sta_get_stats_bytes(cpurxs);
2632c9c5962bSJohannes Berg 			}
2633c9c5962bSJohannes Berg 		}
2634c9c5962bSJohannes Berg 
2635a4217750SOmer Efrat 		sinfo->filled |= BIT_ULL(NL80211_STA_INFO_RX_BYTES64);
26362b9a7e1bSJohannes Berg 	}
26372b9a7e1bSJohannes Berg 
2638a4217750SOmer Efrat 	if (!(sinfo->filled & BIT_ULL(NL80211_STA_INFO_RX_PACKETS))) {
2639046d2e7cSSriram R 		sinfo->rx_packets = sta->deflink.rx_stats.packets;
2640046d2e7cSSriram R 		if (sta->deflink.pcpu_rx_stats) {
2641c9c5962bSJohannes Berg 			for_each_possible_cpu(cpu) {
2642c9c5962bSJohannes Berg 				struct ieee80211_sta_rx_stats *cpurxs;
2643c9c5962bSJohannes Berg 
2644046d2e7cSSriram R 				cpurxs = per_cpu_ptr(sta->deflink.pcpu_rx_stats,
2645046d2e7cSSriram R 						     cpu);
2646c9c5962bSJohannes Berg 				sinfo->rx_packets += cpurxs->packets;
2647c9c5962bSJohannes Berg 			}
2648c9c5962bSJohannes Berg 		}
2649a4217750SOmer Efrat 		sinfo->filled |= BIT_ULL(NL80211_STA_INFO_RX_PACKETS);
26502b9a7e1bSJohannes Berg 	}
26512b9a7e1bSJohannes Berg 
2652a4217750SOmer Efrat 	if (!(sinfo->filled & BIT_ULL(NL80211_STA_INFO_TX_RETRIES))) {
2653046d2e7cSSriram R 		sinfo->tx_retries = sta->deflink.status_stats.retry_count;
2654a4217750SOmer Efrat 		sinfo->filled |= BIT_ULL(NL80211_STA_INFO_TX_RETRIES);
26552b9a7e1bSJohannes Berg 	}
26562b9a7e1bSJohannes Berg 
2657a4217750SOmer Efrat 	if (!(sinfo->filled & BIT_ULL(NL80211_STA_INFO_TX_FAILED))) {
2658046d2e7cSSriram R 		sinfo->tx_failed = sta->deflink.status_stats.retry_failed;
2659a4217750SOmer Efrat 		sinfo->filled |= BIT_ULL(NL80211_STA_INFO_TX_FAILED);
26602b9a7e1bSJohannes Berg 	}
26612b9a7e1bSJohannes Berg 
2662b4809e94SToke Høiland-Jørgensen 	if (!(sinfo->filled & BIT_ULL(NL80211_STA_INFO_RX_DURATION))) {
2663b4809e94SToke Høiland-Jørgensen 		for (ac = 0; ac < IEEE80211_NUM_ACS; ac++)
2664b4809e94SToke Høiland-Jørgensen 			sinfo->rx_duration += sta->airtime[ac].rx_airtime;
2665b4809e94SToke Høiland-Jørgensen 		sinfo->filled |= BIT_ULL(NL80211_STA_INFO_RX_DURATION);
2666b4809e94SToke Høiland-Jørgensen 	}
2667b4809e94SToke Høiland-Jørgensen 
2668b4809e94SToke Høiland-Jørgensen 	if (!(sinfo->filled & BIT_ULL(NL80211_STA_INFO_TX_DURATION))) {
2669b4809e94SToke Høiland-Jørgensen 		for (ac = 0; ac < IEEE80211_NUM_ACS; ac++)
2670b4809e94SToke Høiland-Jørgensen 			sinfo->tx_duration += sta->airtime[ac].tx_airtime;
2671b4809e94SToke Høiland-Jørgensen 		sinfo->filled |= BIT_ULL(NL80211_STA_INFO_TX_DURATION);
2672b4809e94SToke Høiland-Jørgensen 	}
2673b4809e94SToke Høiland-Jørgensen 
2674b4809e94SToke Høiland-Jørgensen 	if (!(sinfo->filled & BIT_ULL(NL80211_STA_INFO_AIRTIME_WEIGHT))) {
2675942741daSFelix Fietkau 		sinfo->airtime_weight = sta->airtime_weight;
2676b4809e94SToke Høiland-Jørgensen 		sinfo->filled |= BIT_ULL(NL80211_STA_INFO_AIRTIME_WEIGHT);
2677b4809e94SToke Høiland-Jørgensen 	}
2678b4809e94SToke Høiland-Jørgensen 
2679046d2e7cSSriram R 	sinfo->rx_dropped_misc = sta->deflink.rx_stats.dropped;
2680046d2e7cSSriram R 	if (sta->deflink.pcpu_rx_stats) {
2681c9c5962bSJohannes Berg 		for_each_possible_cpu(cpu) {
2682c9c5962bSJohannes Berg 			struct ieee80211_sta_rx_stats *cpurxs;
2683c9c5962bSJohannes Berg 
2684046d2e7cSSriram R 			cpurxs = per_cpu_ptr(sta->deflink.pcpu_rx_stats, cpu);
2685e165bc02SJohannes Berg 			sinfo->rx_dropped_misc += cpurxs->dropped;
2686c9c5962bSJohannes Berg 		}
2687c9c5962bSJohannes Berg 	}
2688b7ffbd7eSJohannes Berg 
2689225b8189SJohannes Berg 	if (sdata->vif.type == NL80211_IFTYPE_STATION &&
2690225b8189SJohannes Berg 	    !(sdata->vif.driver_flags & IEEE80211_VIF_BEACON_FILTER)) {
2691a4217750SOmer Efrat 		sinfo->filled |= BIT_ULL(NL80211_STA_INFO_BEACON_RX) |
2692a4217750SOmer Efrat 				 BIT_ULL(NL80211_STA_INFO_BEACON_SIGNAL_AVG);
2693225b8189SJohannes Berg 		sinfo->rx_beacon_signal_avg = ieee80211_ave_rssi(&sdata->vif);
2694225b8189SJohannes Berg 	}
2695225b8189SJohannes Berg 
269630686bf7SJohannes Berg 	if (ieee80211_hw_check(&sta->local->hw, SIGNAL_DBM) ||
269730686bf7SJohannes Berg 	    ieee80211_hw_check(&sta->local->hw, SIGNAL_UNSPEC)) {
2698a4217750SOmer Efrat 		if (!(sinfo->filled & BIT_ULL(NL80211_STA_INFO_SIGNAL))) {
2699c9c5962bSJohannes Berg 			sinfo->signal = (s8)last_rxstats->last_signal;
2700a4217750SOmer Efrat 			sinfo->filled |= BIT_ULL(NL80211_STA_INFO_SIGNAL);
2701b7ffbd7eSJohannes Berg 		}
27022b9a7e1bSJohannes Berg 
2703046d2e7cSSriram R 		if (!sta->deflink.pcpu_rx_stats &&
2704a4217750SOmer Efrat 		    !(sinfo->filled & BIT_ULL(NL80211_STA_INFO_SIGNAL_AVG))) {
270540d9a38aSJohannes Berg 			sinfo->signal_avg =
2706046d2e7cSSriram R 				-ewma_signal_read(&sta->deflink.rx_stats_avg.signal);
2707a4217750SOmer Efrat 			sinfo->filled |= BIT_ULL(NL80211_STA_INFO_SIGNAL_AVG);
27082b9a7e1bSJohannes Berg 		}
27092b9a7e1bSJohannes Berg 	}
27102b9a7e1bSJohannes Berg 
2711c9c5962bSJohannes Berg 	/* for the average - if pcpu_rx_stats isn't set - rxstats must point to
2712c9c5962bSJohannes Berg 	 * the sta->rx_stats struct, so the check here is fine with and without
2713c9c5962bSJohannes Berg 	 * pcpu statistics
2714c9c5962bSJohannes Berg 	 */
2715c9c5962bSJohannes Berg 	if (last_rxstats->chains &&
2716a4217750SOmer Efrat 	    !(sinfo->filled & (BIT_ULL(NL80211_STA_INFO_CHAIN_SIGNAL) |
2717a4217750SOmer Efrat 			       BIT_ULL(NL80211_STA_INFO_CHAIN_SIGNAL_AVG)))) {
2718a4217750SOmer Efrat 		sinfo->filled |= BIT_ULL(NL80211_STA_INFO_CHAIN_SIGNAL);
2719046d2e7cSSriram R 		if (!sta->deflink.pcpu_rx_stats)
2720a4217750SOmer Efrat 			sinfo->filled |= BIT_ULL(NL80211_STA_INFO_CHAIN_SIGNAL_AVG);
2721b7ffbd7eSJohannes Berg 
2722c9c5962bSJohannes Berg 		sinfo->chains = last_rxstats->chains;
2723c9c5962bSJohannes Berg 
2724b7ffbd7eSJohannes Berg 		for (i = 0; i < ARRAY_SIZE(sinfo->chain_signal); i++) {
2725e5a9f8d0SJohannes Berg 			sinfo->chain_signal[i] =
2726c9c5962bSJohannes Berg 				last_rxstats->chain_signal_last[i];
2727b7ffbd7eSJohannes Berg 			sinfo->chain_signal_avg[i] =
2728046d2e7cSSriram R 				-ewma_signal_read(&sta->deflink.rx_stats_avg.chain_signal[i]);
2729b7ffbd7eSJohannes Berg 		}
2730b7ffbd7eSJohannes Berg 	}
2731b7ffbd7eSJohannes Berg 
27328a263dcbSJohannes Berg 	if (!(sinfo->filled & BIT_ULL(NL80211_STA_INFO_TX_BITRATE)) &&
27338a263dcbSJohannes Berg 	    !sta->sta.valid_links) {
2734046d2e7cSSriram R 		sta_set_rate_info_tx(sta, &sta->deflink.tx_stats.last_rate,
2735e5a9f8d0SJohannes Berg 				     &sinfo->txrate);
2736a4217750SOmer Efrat 		sinfo->filled |= BIT_ULL(NL80211_STA_INFO_TX_BITRATE);
27372b9a7e1bSJohannes Berg 	}
27382b9a7e1bSJohannes Berg 
27398a263dcbSJohannes Berg 	if (!(sinfo->filled & BIT_ULL(NL80211_STA_INFO_RX_BITRATE)) &&
27408a263dcbSJohannes Berg 	    !sta->sta.valid_links) {
2741a17d93ffSBen Greear 		if (sta_set_rate_info_rx(sta, &sinfo->rxrate) == 0)
2742a4217750SOmer Efrat 			sinfo->filled |= BIT_ULL(NL80211_STA_INFO_RX_BITRATE);
27432b9a7e1bSJohannes Berg 	}
2744b7ffbd7eSJohannes Berg 
27450fdf1493SJohannes Berg 	if (tidstats && !cfg80211_sinfo_alloc_tid_stats(sinfo, GFP_KERNEL)) {
27466af8354fSJohannes Berg 		for (i = 0; i < IEEE80211_NUM_TIDS + 1; i++)
27476af8354fSJohannes Berg 			sta_set_tidstats(sta, &sinfo->pertid[i], i);
27488689c051SArend van Spriel 	}
274979c892b8SJohannes Berg 
2750b7ffbd7eSJohannes Berg 	if (ieee80211_vif_is_mesh(&sdata->vif)) {
2751b7ffbd7eSJohannes Berg #ifdef CONFIG_MAC80211_MESH
2752a4217750SOmer Efrat 		sinfo->filled |= BIT_ULL(NL80211_STA_INFO_LLID) |
2753a4217750SOmer Efrat 				 BIT_ULL(NL80211_STA_INFO_PLID) |
2754a4217750SOmer Efrat 				 BIT_ULL(NL80211_STA_INFO_PLINK_STATE) |
2755a4217750SOmer Efrat 				 BIT_ULL(NL80211_STA_INFO_LOCAL_PM) |
2756a4217750SOmer Efrat 				 BIT_ULL(NL80211_STA_INFO_PEER_PM) |
2757dbdaee7aSBob Copeland 				 BIT_ULL(NL80211_STA_INFO_NONPEER_PM) |
27581303a51cSMarkus Theil 				 BIT_ULL(NL80211_STA_INFO_CONNECTED_TO_GATE) |
27591303a51cSMarkus Theil 				 BIT_ULL(NL80211_STA_INFO_CONNECTED_TO_AS);
2760b7ffbd7eSJohannes Berg 
2761433f5bc1SJohannes Berg 		sinfo->llid = sta->mesh->llid;
2762433f5bc1SJohannes Berg 		sinfo->plid = sta->mesh->plid;
2763433f5bc1SJohannes Berg 		sinfo->plink_state = sta->mesh->plink_state;
2764b7ffbd7eSJohannes Berg 		if (test_sta_flag(sta, WLAN_STA_TOFFSET_KNOWN)) {
2765a4217750SOmer Efrat 			sinfo->filled |= BIT_ULL(NL80211_STA_INFO_T_OFFSET);
2766433f5bc1SJohannes Berg 			sinfo->t_offset = sta->mesh->t_offset;
2767b7ffbd7eSJohannes Berg 		}
2768433f5bc1SJohannes Berg 		sinfo->local_pm = sta->mesh->local_pm;
2769433f5bc1SJohannes Berg 		sinfo->peer_pm = sta->mesh->peer_pm;
2770433f5bc1SJohannes Berg 		sinfo->nonpeer_pm = sta->mesh->nonpeer_pm;
2771dbdaee7aSBob Copeland 		sinfo->connected_to_gate = sta->mesh->connected_to_gate;
27721303a51cSMarkus Theil 		sinfo->connected_to_as = sta->mesh->connected_to_as;
2773b7ffbd7eSJohannes Berg #endif
2774b7ffbd7eSJohannes Berg 	}
2775b7ffbd7eSJohannes Berg 
2776b7ffbd7eSJohannes Berg 	sinfo->bss_param.flags = 0;
2777b7ffbd7eSJohannes Berg 	if (sdata->vif.bss_conf.use_cts_prot)
2778b7ffbd7eSJohannes Berg 		sinfo->bss_param.flags |= BSS_PARAM_FLAGS_CTS_PROT;
2779b7ffbd7eSJohannes Berg 	if (sdata->vif.bss_conf.use_short_preamble)
2780b7ffbd7eSJohannes Berg 		sinfo->bss_param.flags |= BSS_PARAM_FLAGS_SHORT_PREAMBLE;
2781b7ffbd7eSJohannes Berg 	if (sdata->vif.bss_conf.use_short_slot)
2782b7ffbd7eSJohannes Berg 		sinfo->bss_param.flags |= BSS_PARAM_FLAGS_SHORT_SLOT_TIME;
2783785e21a8SEmmanuel Grumbach 	sinfo->bss_param.dtim_period = sdata->vif.bss_conf.dtim_period;
2784b7ffbd7eSJohannes Berg 	sinfo->bss_param.beacon_interval = sdata->vif.bss_conf.beacon_int;
2785b7ffbd7eSJohannes Berg 
2786b7ffbd7eSJohannes Berg 	sinfo->sta_flags.set = 0;
2787b7ffbd7eSJohannes Berg 	sinfo->sta_flags.mask = BIT(NL80211_STA_FLAG_AUTHORIZED) |
2788b7ffbd7eSJohannes Berg 				BIT(NL80211_STA_FLAG_SHORT_PREAMBLE) |
2789b7ffbd7eSJohannes Berg 				BIT(NL80211_STA_FLAG_WME) |
2790b7ffbd7eSJohannes Berg 				BIT(NL80211_STA_FLAG_MFP) |
2791b7ffbd7eSJohannes Berg 				BIT(NL80211_STA_FLAG_AUTHENTICATED) |
2792b7ffbd7eSJohannes Berg 				BIT(NL80211_STA_FLAG_ASSOCIATED) |
2793b7ffbd7eSJohannes Berg 				BIT(NL80211_STA_FLAG_TDLS_PEER);
2794b7ffbd7eSJohannes Berg 	if (test_sta_flag(sta, WLAN_STA_AUTHORIZED))
2795b7ffbd7eSJohannes Berg 		sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_AUTHORIZED);
2796b7ffbd7eSJohannes Berg 	if (test_sta_flag(sta, WLAN_STA_SHORT_PREAMBLE))
2797b7ffbd7eSJohannes Berg 		sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_SHORT_PREAMBLE);
2798a74a8c84SJohannes Berg 	if (sta->sta.wme)
2799b7ffbd7eSJohannes Berg 		sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_WME);
2800b7ffbd7eSJohannes Berg 	if (test_sta_flag(sta, WLAN_STA_MFP))
2801b7ffbd7eSJohannes Berg 		sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_MFP);
2802b7ffbd7eSJohannes Berg 	if (test_sta_flag(sta, WLAN_STA_AUTH))
2803b7ffbd7eSJohannes Berg 		sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_AUTHENTICATED);
2804b7ffbd7eSJohannes Berg 	if (test_sta_flag(sta, WLAN_STA_ASSOC))
2805b7ffbd7eSJohannes Berg 		sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_ASSOCIATED);
2806b7ffbd7eSJohannes Berg 	if (test_sta_flag(sta, WLAN_STA_TDLS_PEER))
2807b7ffbd7eSJohannes Berg 		sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_TDLS_PEER);
2808b7ffbd7eSJohannes Berg 
28093b17fbf8SMaxim Altshul 	thr = sta_get_expected_throughput(sta);
28103b17fbf8SMaxim Altshul 
28113b17fbf8SMaxim Altshul 	if (thr != 0) {
2812a4217750SOmer Efrat 		sinfo->filled |= BIT_ULL(NL80211_STA_INFO_EXPECTED_THROUGHPUT);
28133b17fbf8SMaxim Altshul 		sinfo->expected_throughput = thr;
28143b17fbf8SMaxim Altshul 	}
2815a78b26ffSVenkateswara Naralasetty 
2816a78b26ffSVenkateswara Naralasetty 	if (!(sinfo->filled & BIT_ULL(NL80211_STA_INFO_ACK_SIGNAL)) &&
2817046d2e7cSSriram R 	    sta->deflink.status_stats.ack_signal_filled) {
2818046d2e7cSSriram R 		sinfo->ack_signal = sta->deflink.status_stats.last_ack_signal;
2819a78b26ffSVenkateswara Naralasetty 		sinfo->filled |= BIT_ULL(NL80211_STA_INFO_ACK_SIGNAL);
2820a78b26ffSVenkateswara Naralasetty 	}
2821cc60dbbfSBalaji Pothunoori 
28229c06602bSBalaji Pothunoori 	if (!(sinfo->filled & BIT_ULL(NL80211_STA_INFO_ACK_SIGNAL_AVG)) &&
2823046d2e7cSSriram R 	    sta->deflink.status_stats.ack_signal_filled) {
2824cc60dbbfSBalaji Pothunoori 		sinfo->avg_ack_signal =
2825cc60dbbfSBalaji Pothunoori 			-(s8)ewma_avg_signal_read(
2826046d2e7cSSriram R 				&sta->deflink.status_stats.avg_ack_signal);
2827cc60dbbfSBalaji Pothunoori 		sinfo->filled |=
28289c06602bSBalaji Pothunoori 			BIT_ULL(NL80211_STA_INFO_ACK_SIGNAL_AVG);
2829cc60dbbfSBalaji Pothunoori 	}
2830ab60633cSNarayanraddi Masti 
2831ab60633cSNarayanraddi Masti 	if (ieee80211_vif_is_mesh(&sdata->vif)) {
2832ab60633cSNarayanraddi Masti 		sinfo->filled |= BIT_ULL(NL80211_STA_INFO_AIRTIME_LINK_METRIC);
2833ab60633cSNarayanraddi Masti 		sinfo->airtime_link_metric =
2834ab60633cSNarayanraddi Masti 			airtime_link_metric_get(local, sta);
2835ab60633cSNarayanraddi Masti 	}
28363b17fbf8SMaxim Altshul }
28373b17fbf8SMaxim Altshul 
28383b17fbf8SMaxim Altshul u32 sta_get_expected_throughput(struct sta_info *sta)
28393b17fbf8SMaxim Altshul {
28403b17fbf8SMaxim Altshul 	struct ieee80211_sub_if_data *sdata = sta->sdata;
28413b17fbf8SMaxim Altshul 	struct ieee80211_local *local = sdata->local;
28423b17fbf8SMaxim Altshul 	struct rate_control_ref *ref = NULL;
28433b17fbf8SMaxim Altshul 	u32 thr = 0;
28443b17fbf8SMaxim Altshul 
28453b17fbf8SMaxim Altshul 	if (test_sta_flag(sta, WLAN_STA_RATE_CONTROL))
28463b17fbf8SMaxim Altshul 		ref = local->rate_ctrl;
28473b17fbf8SMaxim Altshul 
2848b7ffbd7eSJohannes Berg 	/* check if the driver has a SW RC implementation */
2849b7ffbd7eSJohannes Berg 	if (ref && ref->ops->get_expected_throughput)
2850b7ffbd7eSJohannes Berg 		thr = ref->ops->get_expected_throughput(sta->rate_ctrl_priv);
2851b7ffbd7eSJohannes Berg 	else
28524fdbc67aSMaxim Altshul 		thr = drv_get_expected_throughput(local, sta);
2853b7ffbd7eSJohannes Berg 
28543b17fbf8SMaxim Altshul 	return thr;
2855b7ffbd7eSJohannes Berg }
2856b8da6b6aSJohannes Berg 
2857b8da6b6aSJohannes Berg unsigned long ieee80211_sta_last_active(struct sta_info *sta)
2858b8da6b6aSJohannes Berg {
2859c9c5962bSJohannes Berg 	struct ieee80211_sta_rx_stats *stats = sta_get_last_rx_stats(sta);
2860c9c5962bSJohannes Berg 
2861046d2e7cSSriram R 	if (!sta->deflink.status_stats.last_ack ||
2862046d2e7cSSriram R 	    time_after(stats->last_rx, sta->deflink.status_stats.last_ack))
2863c9c5962bSJohannes Berg 		return stats->last_rx;
2864046d2e7cSSriram R 	return sta->deflink.status_stats.last_ack;
2865b8da6b6aSJohannes Berg }
2866484a54c2SToke Høiland-Jørgensen 
2867484a54c2SToke Høiland-Jørgensen static void sta_update_codel_params(struct sta_info *sta, u32 thr)
2868484a54c2SToke Høiland-Jørgensen {
2869484a54c2SToke Høiland-Jørgensen 	if (thr && thr < STA_SLOW_THRESHOLD * sta->local->num_sta) {
2870484a54c2SToke Høiland-Jørgensen 		sta->cparams.target = MS2TIME(50);
2871484a54c2SToke Høiland-Jørgensen 		sta->cparams.interval = MS2TIME(300);
2872484a54c2SToke Høiland-Jørgensen 		sta->cparams.ecn = false;
2873484a54c2SToke Høiland-Jørgensen 	} else {
2874484a54c2SToke Høiland-Jørgensen 		sta->cparams.target = MS2TIME(20);
2875484a54c2SToke Høiland-Jørgensen 		sta->cparams.interval = MS2TIME(100);
2876484a54c2SToke Høiland-Jørgensen 		sta->cparams.ecn = true;
2877484a54c2SToke Høiland-Jørgensen 	}
2878484a54c2SToke Høiland-Jørgensen }
2879484a54c2SToke Høiland-Jørgensen 
2880484a54c2SToke Høiland-Jørgensen void ieee80211_sta_set_expected_throughput(struct ieee80211_sta *pubsta,
2881484a54c2SToke Høiland-Jørgensen 					   u32 thr)
2882484a54c2SToke Høiland-Jørgensen {
2883484a54c2SToke Høiland-Jørgensen 	struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
2884484a54c2SToke Høiland-Jørgensen 
2885484a54c2SToke Høiland-Jørgensen 	sta_update_codel_params(sta, thr);
2886484a54c2SToke Høiland-Jørgensen }
2887cb71f1d1SJohannes Berg 
2888cb71f1d1SJohannes Berg int ieee80211_sta_allocate_link(struct sta_info *sta, unsigned int link_id)
2889cb71f1d1SJohannes Berg {
2890cb71f1d1SJohannes Berg 	struct ieee80211_sub_if_data *sdata = sta->sdata;
2891cb71f1d1SJohannes Berg 	struct sta_link_alloc *alloc;
2892cb71f1d1SJohannes Berg 	int ret;
2893cb71f1d1SJohannes Berg 
2894cb71f1d1SJohannes Berg 	lockdep_assert_held(&sdata->local->sta_mtx);
2895cb71f1d1SJohannes Berg 
2896cb71f1d1SJohannes Berg 	/* must represent an MLD from the start */
2897cb71f1d1SJohannes Berg 	if (WARN_ON(!sta->sta.valid_links))
2898cb71f1d1SJohannes Berg 		return -EINVAL;
2899cb71f1d1SJohannes Berg 
2900cb71f1d1SJohannes Berg 	if (WARN_ON(sta->sta.valid_links & BIT(link_id) ||
2901cb71f1d1SJohannes Berg 		    sta->link[link_id]))
2902cb71f1d1SJohannes Berg 		return -EBUSY;
2903cb71f1d1SJohannes Berg 
2904cb71f1d1SJohannes Berg 	alloc = kzalloc(sizeof(*alloc), GFP_KERNEL);
2905cb71f1d1SJohannes Berg 	if (!alloc)
2906cb71f1d1SJohannes Berg 		return -ENOMEM;
2907cb71f1d1SJohannes Berg 
2908cb71f1d1SJohannes Berg 	ret = sta_info_alloc_link(sdata->local, &alloc->info, GFP_KERNEL);
2909cb71f1d1SJohannes Berg 	if (ret) {
2910cb71f1d1SJohannes Berg 		kfree(alloc);
2911cb71f1d1SJohannes Berg 		return ret;
2912cb71f1d1SJohannes Berg 	}
2913cb71f1d1SJohannes Berg 
2914cb71f1d1SJohannes Berg 	sta_info_add_link(sta, link_id, &alloc->info, &alloc->sta);
2915cb71f1d1SJohannes Berg 
2916d2caad52SBenjamin Berg 	ieee80211_link_sta_debugfs_add(&alloc->info);
2917d2caad52SBenjamin Berg 
2918cb71f1d1SJohannes Berg 	return 0;
2919cb71f1d1SJohannes Berg }
2920cb71f1d1SJohannes Berg 
292121476ad1SShaul Triebitz void ieee80211_sta_free_link(struct sta_info *sta, unsigned int link_id)
292221476ad1SShaul Triebitz {
292321476ad1SShaul Triebitz 	lockdep_assert_held(&sta->sdata->local->sta_mtx);
292421476ad1SShaul Triebitz 
292521476ad1SShaul Triebitz 	sta_remove_link(sta, link_id, false);
292621476ad1SShaul Triebitz }
292721476ad1SShaul Triebitz 
2928cb71f1d1SJohannes Berg int ieee80211_sta_activate_link(struct sta_info *sta, unsigned int link_id)
2929cb71f1d1SJohannes Berg {
2930cb71f1d1SJohannes Berg 	struct ieee80211_sub_if_data *sdata = sta->sdata;
2931c71420dbSJohannes Berg 	struct link_sta_info *link_sta;
2932cb71f1d1SJohannes Berg 	u16 old_links = sta->sta.valid_links;
2933cb71f1d1SJohannes Berg 	u16 new_links = old_links | BIT(link_id);
2934cb71f1d1SJohannes Berg 	int ret;
2935cb71f1d1SJohannes Berg 
2936c71420dbSJohannes Berg 	link_sta = rcu_dereference_protected(sta->link[link_id],
2937c71420dbSJohannes Berg 					     lockdep_is_held(&sdata->local->sta_mtx));
2938cb71f1d1SJohannes Berg 
2939c71420dbSJohannes Berg 	if (WARN_ON(old_links == new_links || !link_sta))
2940cb71f1d1SJohannes Berg 		return -EINVAL;
2941cb71f1d1SJohannes Berg 
2942177577dbSJohannes Berg 	rcu_read_lock();
2943177577dbSJohannes Berg 	if (link_sta_info_hash_lookup(sdata->local, link_sta->addr)) {
2944177577dbSJohannes Berg 		rcu_read_unlock();
2945177577dbSJohannes Berg 		return -EALREADY;
2946177577dbSJohannes Berg 	}
2947177577dbSJohannes Berg 	/* we only modify under the mutex so this is fine */
2948177577dbSJohannes Berg 	rcu_read_unlock();
2949177577dbSJohannes Berg 
2950cb71f1d1SJohannes Berg 	sta->sta.valid_links = new_links;
2951cb71f1d1SJohannes Berg 
295280e2b1faSLukas Bulwahn 	if (!test_sta_flag(sta, WLAN_STA_INSERTED))
2953ba6ddab9SJohannes Berg 		goto hash;
2954cb71f1d1SJohannes Berg 
2955ba7af265SJohannes Berg 	ieee80211_recalc_min_chandef(sdata, link_id);
2956ba7af265SJohannes Berg 
29574c51541dSBenjamin Berg 	/* Ensure the values are updated for the driver,
29584c51541dSBenjamin Berg 	 * redone by sta_remove_link on failure.
29594c51541dSBenjamin Berg 	 */
29604c51541dSBenjamin Berg 	ieee80211_sta_recalc_aggregates(&sta->sta);
29614c51541dSBenjamin Berg 
2962cb71f1d1SJohannes Berg 	ret = drv_change_sta_links(sdata->local, sdata, &sta->sta,
2963cb71f1d1SJohannes Berg 				   old_links, new_links);
2964cb71f1d1SJohannes Berg 	if (ret) {
2965cb71f1d1SJohannes Berg 		sta->sta.valid_links = old_links;
2966ba6ddab9SJohannes Berg 		sta_remove_link(sta, link_id, false);
2967177577dbSJohannes Berg 		return ret;
2968cb71f1d1SJohannes Berg 	}
2969cb71f1d1SJohannes Berg 
2970ba6ddab9SJohannes Berg hash:
2971177577dbSJohannes Berg 	ret = link_sta_info_hash_add(sdata->local, link_sta);
2972177577dbSJohannes Berg 	WARN_ON(ret);
2973177577dbSJohannes Berg 	return 0;
2974cb71f1d1SJohannes Berg }
2975cb71f1d1SJohannes Berg 
2976cb71f1d1SJohannes Berg void ieee80211_sta_remove_link(struct sta_info *sta, unsigned int link_id)
2977cb71f1d1SJohannes Berg {
2978cb71f1d1SJohannes Berg 	struct ieee80211_sub_if_data *sdata = sta->sdata;
2979a8f62399SShaul Triebitz 	u16 old_links = sta->sta.valid_links;
2980cb71f1d1SJohannes Berg 
2981cb71f1d1SJohannes Berg 	lockdep_assert_held(&sdata->local->sta_mtx);
2982cb71f1d1SJohannes Berg 
2983cb71f1d1SJohannes Berg 	sta->sta.valid_links &= ~BIT(link_id);
2984cb71f1d1SJohannes Berg 
2985cb71f1d1SJohannes Berg 	if (test_sta_flag(sta, WLAN_STA_INSERTED))
2986cb71f1d1SJohannes Berg 		drv_change_sta_links(sdata->local, sdata, &sta->sta,
2987a8f62399SShaul Triebitz 				     old_links, sta->sta.valid_links);
2988cb71f1d1SJohannes Berg 
2989ba6ddab9SJohannes Berg 	sta_remove_link(sta, link_id, true);
2990cb71f1d1SJohannes Berg }
2991175ad2ecSJohannes Berg 
2992175ad2ecSJohannes Berg void ieee80211_sta_set_max_amsdu_subframes(struct sta_info *sta,
2993175ad2ecSJohannes Berg 					   const u8 *ext_capab,
2994175ad2ecSJohannes Berg 					   unsigned int ext_capab_len)
2995175ad2ecSJohannes Berg {
2996175ad2ecSJohannes Berg 	u8 val;
2997175ad2ecSJohannes Berg 
2998175ad2ecSJohannes Berg 	sta->sta.max_amsdu_subframes = 0;
2999175ad2ecSJohannes Berg 
3000175ad2ecSJohannes Berg 	if (ext_capab_len < 8)
3001175ad2ecSJohannes Berg 		return;
3002175ad2ecSJohannes Berg 
3003175ad2ecSJohannes Berg 	/* The sender might not have sent the last bit, consider it to be 0 */
3004175ad2ecSJohannes Berg 	val = u8_get_bits(ext_capab[7], WLAN_EXT_CAPA8_MAX_MSDU_IN_AMSDU_LSB);
3005175ad2ecSJohannes Berg 
3006175ad2ecSJohannes Berg 	/* we did get all the bits, take the MSB as well */
3007175ad2ecSJohannes Berg 	if (ext_capab_len >= 9)
3008175ad2ecSJohannes Berg 		val |= u8_get_bits(ext_capab[8],
3009175ad2ecSJohannes Berg 				   WLAN_EXT_CAPA9_MAX_MSDU_IN_AMSDU_MSB) << 1;
3010175ad2ecSJohannes Berg 
3011175ad2ecSJohannes Berg 	if (val)
30122085a3d1SJohannes Berg 		sta->sta.max_amsdu_subframes = 4 << (4 - val);
3013175ad2ecSJohannes Berg }
301465fd846cSJohannes Berg 
301565fd846cSJohannes Berg #ifdef CONFIG_LOCKDEP
301665fd846cSJohannes Berg bool lockdep_sta_mutex_held(struct ieee80211_sta *pubsta)
301765fd846cSJohannes Berg {
301865fd846cSJohannes Berg 	struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
301965fd846cSJohannes Berg 
302065fd846cSJohannes Berg 	return lockdep_is_held(&sta->local->sta_mtx);
302165fd846cSJohannes Berg }
302265fd846cSJohannes Berg EXPORT_SYMBOL(lockdep_sta_mutex_held);
302365fd846cSJohannes Berg #endif
3024