xref: /openbmc/linux/net/mac80211/sta_info.c (revision 6d10e46be5ac1d0ae787babd3dafd52b30686db5)
1f0706e82SJiri Benc /*
2f0706e82SJiri Benc  * Copyright 2002-2005, Instant802 Networks, Inc.
3f0706e82SJiri Benc  * Copyright 2006-2007	Jiri Benc <jbenc@suse.cz>
4f0706e82SJiri Benc  *
5f0706e82SJiri Benc  * This program is free software; you can redistribute it and/or modify
6f0706e82SJiri Benc  * it under the terms of the GNU General Public License version 2 as
7f0706e82SJiri Benc  * published by the Free Software Foundation.
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 
21f0706e82SJiri Benc #include <net/mac80211.h>
22f0706e82SJiri Benc #include "ieee80211_i.h"
2324487981SJohannes Berg #include "driver-ops.h"
242c8dccc7SJohannes Berg #include "rate.h"
25f0706e82SJiri Benc #include "sta_info.h"
26e9f207f0SJiri Benc #include "debugfs_sta.h"
27ee385855SLuis Carlos Cobo #include "mesh.h"
28ce662b44SJohannes Berg #include "wme.h"
29f0706e82SJiri Benc 
30d0709a65SJohannes Berg /**
31d0709a65SJohannes Berg  * DOC: STA information lifetime rules
32d0709a65SJohannes Berg  *
33d0709a65SJohannes Berg  * STA info structures (&struct sta_info) are managed in a hash table
34d0709a65SJohannes Berg  * for faster lookup and a list for iteration. They are managed using
35d0709a65SJohannes Berg  * RCU, i.e. access to the list and hash table is protected by RCU.
36d0709a65SJohannes Berg  *
3734e89507SJohannes Berg  * Upon allocating a STA info structure with sta_info_alloc(), the caller
3834e89507SJohannes Berg  * owns that structure. It must then insert it into the hash table using
3934e89507SJohannes Berg  * either sta_info_insert() or sta_info_insert_rcu(); only in the latter
4034e89507SJohannes Berg  * case (which acquires an rcu read section but must not be called from
4134e89507SJohannes Berg  * within one) will the pointer still be valid after the call. Note that
4234e89507SJohannes Berg  * the caller may not do much with the STA info before inserting it, in
4334e89507SJohannes Berg  * particular, it may not start any mesh peer link management or add
4434e89507SJohannes Berg  * encryption keys.
4593e5deb1SJohannes Berg  *
4693e5deb1SJohannes Berg  * When the insertion fails (sta_info_insert()) returns non-zero), the
4793e5deb1SJohannes Berg  * structure will have been freed by sta_info_insert()!
48d0709a65SJohannes Berg  *
4934e89507SJohannes Berg  * Station entries are added by mac80211 when you establish a link with a
507e189a12SLuis R. Rodriguez  * peer. This means different things for the different type of interfaces
517e189a12SLuis R. Rodriguez  * we support. For a regular station this mean we add the AP sta when we
5225985edcSLucas De Marchi  * receive an association response from the AP. For IBSS this occurs when
5334e89507SJohannes Berg  * get to know about a peer on the same IBSS. For WDS we add the sta for
5425985edcSLucas De Marchi  * the peer immediately upon device open. When using AP mode we add stations
5534e89507SJohannes Berg  * for each respective station upon request from userspace through nl80211.
567e189a12SLuis R. Rodriguez  *
5734e89507SJohannes Berg  * In order to remove a STA info structure, various sta_info_destroy_*()
5834e89507SJohannes Berg  * calls are available.
59d0709a65SJohannes Berg  *
6034e89507SJohannes Berg  * There is no concept of ownership on a STA entry, each structure is
6134e89507SJohannes Berg  * owned by the global hash table/list until it is removed. All users of
6234e89507SJohannes Berg  * the structure need to be RCU protected so that the structure won't be
6334e89507SJohannes Berg  * freed before they are done using it.
64d0709a65SJohannes Berg  */
65f0706e82SJiri Benc 
664d33960bSJohannes Berg /* Caller must hold local->sta_mtx */
67be8755e1SMichael Wu static int sta_info_hash_del(struct ieee80211_local *local,
68f0706e82SJiri Benc 			     struct sta_info *sta)
69f0706e82SJiri Benc {
70f0706e82SJiri Benc 	struct sta_info *s;
71f0706e82SJiri Benc 
7240b275b6SJohannes Berg 	s = rcu_dereference_protected(local->sta_hash[STA_HASH(sta->sta.addr)],
734d33960bSJohannes Berg 				      lockdep_is_held(&local->sta_mtx));
74f0706e82SJiri Benc 	if (!s)
75be8755e1SMichael Wu 		return -ENOENT;
76be8755e1SMichael Wu 	if (s == sta) {
77cf778b00SEric Dumazet 		rcu_assign_pointer(local->sta_hash[STA_HASH(sta->sta.addr)],
78d0709a65SJohannes Berg 				   s->hnext);
79be8755e1SMichael Wu 		return 0;
80f0706e82SJiri Benc 	}
81f0706e82SJiri Benc 
8240b275b6SJohannes Berg 	while (rcu_access_pointer(s->hnext) &&
8340b275b6SJohannes Berg 	       rcu_access_pointer(s->hnext) != sta)
8440b275b6SJohannes Berg 		s = rcu_dereference_protected(s->hnext,
854d33960bSJohannes Berg 					lockdep_is_held(&local->sta_mtx));
8640b275b6SJohannes Berg 	if (rcu_access_pointer(s->hnext)) {
87cf778b00SEric Dumazet 		rcu_assign_pointer(s->hnext, sta->hnext);
88be8755e1SMichael Wu 		return 0;
89f0706e82SJiri Benc 	}
90f0706e82SJiri Benc 
91be8755e1SMichael Wu 	return -ENOENT;
92f0706e82SJiri Benc }
93f0706e82SJiri Benc 
9497f97b1fSJohannes Berg static void cleanup_single_sta(struct sta_info *sta)
95b22cfcfcSEliad Peller {
96b22cfcfcSEliad Peller 	int ac, i;
97b22cfcfcSEliad Peller 	struct tid_ampdu_tx *tid_tx;
98b22cfcfcSEliad Peller 	struct ieee80211_sub_if_data *sdata = sta->sdata;
99b22cfcfcSEliad Peller 	struct ieee80211_local *local = sdata->local;
100d012a605SMarco Porsch 	struct ps_data *ps;
101b22cfcfcSEliad Peller 
102b22cfcfcSEliad Peller 	/*
103b22cfcfcSEliad Peller 	 * At this point, when being called as call_rcu callback,
104b22cfcfcSEliad Peller 	 * neither mac80211 nor the driver can reference this
105b22cfcfcSEliad Peller 	 * sta struct any more except by still existing timers
106b22cfcfcSEliad Peller 	 * associated with this station that we clean up below.
107051007d9SJohannes Berg 	 *
108051007d9SJohannes Berg 	 * Note though that this still uses the sdata and even
109051007d9SJohannes Berg 	 * calls the driver in AP and mesh mode, so interfaces
110051007d9SJohannes Berg 	 * of those types mush use call sta_info_flush_cleanup()
111051007d9SJohannes Berg 	 * (typically via sta_info_flush()) before deconfiguring
112051007d9SJohannes Berg 	 * the driver.
113051007d9SJohannes Berg 	 *
114051007d9SJohannes Berg 	 * In station mode, nothing happens here so it doesn't
115051007d9SJohannes Berg 	 * have to (and doesn't) do that, this is intentional to
116051007d9SJohannes Berg 	 * speed up roaming.
117b22cfcfcSEliad Peller 	 */
118b22cfcfcSEliad Peller 
119b22cfcfcSEliad Peller 	if (test_sta_flag(sta, WLAN_STA_PS_STA)) {
120d012a605SMarco Porsch 		if (sta->sdata->vif.type == NL80211_IFTYPE_AP ||
121d012a605SMarco Porsch 		    sta->sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
122d012a605SMarco Porsch 			ps = &sdata->bss->ps;
1233f52b7e3SMarco Porsch 		else if (ieee80211_vif_is_mesh(&sdata->vif))
1243f52b7e3SMarco Porsch 			ps = &sdata->u.mesh.ps;
125d012a605SMarco Porsch 		else
126d012a605SMarco Porsch 			return;
127b22cfcfcSEliad Peller 
128b22cfcfcSEliad Peller 		clear_sta_flag(sta, WLAN_STA_PS_STA);
129b22cfcfcSEliad Peller 
130d012a605SMarco Porsch 		atomic_dec(&ps->num_sta_ps);
131b22cfcfcSEliad Peller 		sta_info_recalc_tim(sta);
132b22cfcfcSEliad Peller 	}
133b22cfcfcSEliad Peller 
134b22cfcfcSEliad Peller 	for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
135b22cfcfcSEliad Peller 		local->total_ps_buffered -= skb_queue_len(&sta->ps_tx_buf[ac]);
1361f98ab7fSFelix Fietkau 		ieee80211_purge_tx_queue(&local->hw, &sta->ps_tx_buf[ac]);
1371f98ab7fSFelix Fietkau 		ieee80211_purge_tx_queue(&local->hw, &sta->tx_filtered[ac]);
138b22cfcfcSEliad Peller 	}
139b22cfcfcSEliad Peller 
14045b5028eSThomas Pedersen 	if (ieee80211_vif_is_mesh(&sdata->vif))
14145b5028eSThomas Pedersen 		mesh_sta_cleanup(sta);
142b22cfcfcSEliad Peller 
143b22cfcfcSEliad Peller 	cancel_work_sync(&sta->drv_unblock_wk);
144b22cfcfcSEliad Peller 
145b22cfcfcSEliad Peller 	/*
146b22cfcfcSEliad Peller 	 * Destroy aggregation state here. It would be nice to wait for the
147b22cfcfcSEliad Peller 	 * driver to finish aggregation stop and then clean up, but for now
148b22cfcfcSEliad Peller 	 * drivers have to handle aggregation stop being requested, followed
149b22cfcfcSEliad Peller 	 * directly by station destruction.
150b22cfcfcSEliad Peller 	 */
1515a306f58SJohannes Berg 	for (i = 0; i < IEEE80211_NUM_TIDS; i++) {
152b22cfcfcSEliad Peller 		tid_tx = rcu_dereference_raw(sta->ampdu_mlme.tid_tx[i]);
153b22cfcfcSEliad Peller 		if (!tid_tx)
154b22cfcfcSEliad Peller 			continue;
1551f98ab7fSFelix Fietkau 		ieee80211_purge_tx_queue(&local->hw, &tid_tx->pending);
156b22cfcfcSEliad Peller 		kfree(tid_tx);
157b22cfcfcSEliad Peller 	}
158b22cfcfcSEliad Peller 
159b22cfcfcSEliad Peller 	sta_info_free(local, sta);
160b22cfcfcSEliad Peller }
161b22cfcfcSEliad Peller 
16297f97b1fSJohannes Berg void ieee80211_cleanup_sdata_stas(struct ieee80211_sub_if_data *sdata)
16397f97b1fSJohannes Berg {
16497f97b1fSJohannes Berg 	struct sta_info *sta;
16597f97b1fSJohannes Berg 
16697f97b1fSJohannes Berg 	spin_lock_bh(&sdata->cleanup_stations_lock);
16797f97b1fSJohannes Berg 	while (!list_empty(&sdata->cleanup_stations)) {
16897f97b1fSJohannes Berg 		sta = list_first_entry(&sdata->cleanup_stations,
16997f97b1fSJohannes Berg 				       struct sta_info, list);
17097f97b1fSJohannes Berg 		list_del(&sta->list);
17197f97b1fSJohannes Berg 		spin_unlock_bh(&sdata->cleanup_stations_lock);
17297f97b1fSJohannes Berg 
17397f97b1fSJohannes Berg 		cleanup_single_sta(sta);
17497f97b1fSJohannes Berg 
17597f97b1fSJohannes Berg 		spin_lock_bh(&sdata->cleanup_stations_lock);
17697f97b1fSJohannes Berg 	}
17797f97b1fSJohannes Berg 
17897f97b1fSJohannes Berg 	spin_unlock_bh(&sdata->cleanup_stations_lock);
17997f97b1fSJohannes Berg }
18097f97b1fSJohannes Berg 
181b22cfcfcSEliad Peller static void free_sta_rcu(struct rcu_head *h)
182b22cfcfcSEliad Peller {
183b22cfcfcSEliad Peller 	struct sta_info *sta = container_of(h, struct sta_info, rcu_head);
18497f97b1fSJohannes Berg 	struct ieee80211_sub_if_data *sdata = sta->sdata;
185b22cfcfcSEliad Peller 
18697f97b1fSJohannes Berg 	spin_lock(&sdata->cleanup_stations_lock);
18797f97b1fSJohannes Berg 	list_add_tail(&sta->list, &sdata->cleanup_stations);
18897f97b1fSJohannes Berg 	spin_unlock(&sdata->cleanup_stations_lock);
18997f97b1fSJohannes Berg 
19097f97b1fSJohannes Berg 	ieee80211_queue_work(&sdata->local->hw, &sdata->cleanup_stations_wk);
191b22cfcfcSEliad Peller }
192b22cfcfcSEliad Peller 
193d0709a65SJohannes Berg /* protected by RCU */
194abe60632SJohannes Berg struct sta_info *sta_info_get(struct ieee80211_sub_if_data *sdata,
195abe60632SJohannes Berg 			      const u8 *addr)
19643ba7e95SJohannes Berg {
197abe60632SJohannes Berg 	struct ieee80211_local *local = sdata->local;
19843ba7e95SJohannes Berg 	struct sta_info *sta;
19943ba7e95SJohannes Berg 
2000379185bSJohannes Berg 	sta = rcu_dereference_check(local->sta_hash[STA_HASH(addr)],
2010379185bSJohannes Berg 				    lockdep_is_held(&local->sta_mtx));
20243ba7e95SJohannes Berg 	while (sta) {
203abe60632SJohannes Berg 		if (sta->sdata == sdata &&
204b203ca39SJoe Perches 		    ether_addr_equal(sta->sta.addr, addr))
20543ba7e95SJohannes Berg 			break;
2060379185bSJohannes Berg 		sta = rcu_dereference_check(sta->hnext,
2070379185bSJohannes Berg 					    lockdep_is_held(&local->sta_mtx));
20843ba7e95SJohannes Berg 	}
20943ba7e95SJohannes Berg 	return sta;
21043ba7e95SJohannes Berg }
21143ba7e95SJohannes Berg 
2120e5ded5aSFelix Fietkau /*
2130e5ded5aSFelix Fietkau  * Get sta info either from the specified interface
2140e5ded5aSFelix Fietkau  * or from one of its vlans
2150e5ded5aSFelix Fietkau  */
2160e5ded5aSFelix Fietkau struct sta_info *sta_info_get_bss(struct ieee80211_sub_if_data *sdata,
2170e5ded5aSFelix Fietkau 				  const u8 *addr)
2180e5ded5aSFelix Fietkau {
2190e5ded5aSFelix Fietkau 	struct ieee80211_local *local = sdata->local;
2200e5ded5aSFelix Fietkau 	struct sta_info *sta;
2210e5ded5aSFelix Fietkau 
2220379185bSJohannes Berg 	sta = rcu_dereference_check(local->sta_hash[STA_HASH(addr)],
2230379185bSJohannes Berg 				    lockdep_is_held(&local->sta_mtx));
2240e5ded5aSFelix Fietkau 	while (sta) {
2250e5ded5aSFelix Fietkau 		if ((sta->sdata == sdata ||
226a2c1e3daSJohannes Berg 		     (sta->sdata->bss && sta->sdata->bss == sdata->bss)) &&
227b203ca39SJoe Perches 		    ether_addr_equal(sta->sta.addr, addr))
2280e5ded5aSFelix Fietkau 			break;
2290379185bSJohannes Berg 		sta = rcu_dereference_check(sta->hnext,
2300379185bSJohannes Berg 					    lockdep_is_held(&local->sta_mtx));
2310e5ded5aSFelix Fietkau 	}
2320e5ded5aSFelix Fietkau 	return sta;
2330e5ded5aSFelix Fietkau }
2340e5ded5aSFelix Fietkau 
2353b53fde8SJohannes Berg struct sta_info *sta_info_get_by_idx(struct ieee80211_sub_if_data *sdata,
2363b53fde8SJohannes Berg 				     int idx)
237ee385855SLuis Carlos Cobo {
2383b53fde8SJohannes Berg 	struct ieee80211_local *local = sdata->local;
239ee385855SLuis Carlos Cobo 	struct sta_info *sta;
240ee385855SLuis Carlos Cobo 	int i = 0;
241ee385855SLuis Carlos Cobo 
242d0709a65SJohannes Berg 	list_for_each_entry_rcu(sta, &local->sta_list, list) {
2433b53fde8SJohannes Berg 		if (sdata != sta->sdata)
2442a8ca29aSLuis Carlos Cobo 			continue;
245ee385855SLuis Carlos Cobo 		if (i < idx) {
246ee385855SLuis Carlos Cobo 			++i;
247ee385855SLuis Carlos Cobo 			continue;
248ee385855SLuis Carlos Cobo 		}
2492a8ca29aSLuis Carlos Cobo 		return sta;
250ee385855SLuis Carlos Cobo 	}
251ee385855SLuis Carlos Cobo 
252ee385855SLuis Carlos Cobo 	return NULL;
253ee385855SLuis Carlos Cobo }
254f0706e82SJiri Benc 
25593e5deb1SJohannes Berg /**
256d9a7ddb0SJohannes Berg  * sta_info_free - free STA
25793e5deb1SJohannes Berg  *
2586ef307bcSRandy Dunlap  * @local: pointer to the global information
25993e5deb1SJohannes Berg  * @sta: STA info to free
26093e5deb1SJohannes Berg  *
26193e5deb1SJohannes Berg  * This function must undo everything done by sta_info_alloc()
262d9a7ddb0SJohannes Berg  * that may happen before sta_info_insert(). It may only be
263d9a7ddb0SJohannes Berg  * called when sta_info_insert() has not been attempted (and
264d9a7ddb0SJohannes Berg  * if that fails, the station is freed anyway.)
26593e5deb1SJohannes Berg  */
266d9a7ddb0SJohannes Berg void sta_info_free(struct ieee80211_local *local, struct sta_info *sta)
26793e5deb1SJohannes Berg {
268889cbb91SJohannes Berg 	if (sta->rate_ctrl)
2694b7679a5SJohannes Berg 		rate_control_free_sta(sta);
27093e5deb1SJohannes Berg 
271bdcbd8e0SJohannes Berg 	sta_dbg(sta->sdata, "Destroyed STA %pM\n", sta->sta.addr);
27293e5deb1SJohannes Berg 
27393e5deb1SJohannes Berg 	kfree(sta);
27493e5deb1SJohannes Berg }
27593e5deb1SJohannes Berg 
2764d33960bSJohannes Berg /* Caller must hold local->sta_mtx */
277d0709a65SJohannes Berg static void sta_info_hash_add(struct ieee80211_local *local,
278d0709a65SJohannes Berg 			      struct sta_info *sta)
279f0706e82SJiri Benc {
2804d33960bSJohannes Berg 	lockdep_assert_held(&local->sta_mtx);
28117741cdcSJohannes Berg 	sta->hnext = local->sta_hash[STA_HASH(sta->sta.addr)];
282cf778b00SEric Dumazet 	rcu_assign_pointer(local->sta_hash[STA_HASH(sta->sta.addr)], sta);
283f0706e82SJiri Benc }
284f0706e82SJiri Benc 
285af818581SJohannes Berg static void sta_unblock(struct work_struct *wk)
286af818581SJohannes Berg {
287af818581SJohannes Berg 	struct sta_info *sta;
288af818581SJohannes Berg 
289af818581SJohannes Berg 	sta = container_of(wk, struct sta_info, drv_unblock_wk);
290af818581SJohannes Berg 
291af818581SJohannes Berg 	if (sta->dead)
292af818581SJohannes Berg 		return;
293af818581SJohannes Berg 
29454420473SHelmut Schaa 	if (!test_sta_flag(sta, WLAN_STA_PS_STA)) {
29554420473SHelmut Schaa 		local_bh_disable();
296af818581SJohannes Berg 		ieee80211_sta_ps_deliver_wakeup(sta);
29754420473SHelmut Schaa 		local_bh_enable();
29854420473SHelmut Schaa 	} else if (test_and_clear_sta_flag(sta, WLAN_STA_PSPOLL)) {
299c2c98fdeSJohannes Berg 		clear_sta_flag(sta, WLAN_STA_PS_DRIVER);
300ce662b44SJohannes Berg 
301ce662b44SJohannes Berg 		local_bh_disable();
302af818581SJohannes Berg 		ieee80211_sta_ps_deliver_poll_response(sta);
303ce662b44SJohannes Berg 		local_bh_enable();
304c2c98fdeSJohannes Berg 	} else if (test_and_clear_sta_flag(sta, WLAN_STA_UAPSD)) {
305c2c98fdeSJohannes Berg 		clear_sta_flag(sta, WLAN_STA_PS_DRIVER);
306ce662b44SJohannes Berg 
307ce662b44SJohannes Berg 		local_bh_disable();
30847086fc5SJohannes Berg 		ieee80211_sta_ps_deliver_uapsd(sta);
309ce662b44SJohannes Berg 		local_bh_enable();
31050a9432dSJohannes Berg 	} else
311c2c98fdeSJohannes Berg 		clear_sta_flag(sta, WLAN_STA_PS_DRIVER);
312af818581SJohannes Berg }
313af818581SJohannes Berg 
314af65cd96SJohannes Berg static int sta_prepare_rate_control(struct ieee80211_local *local,
315af65cd96SJohannes Berg 				    struct sta_info *sta, gfp_t gfp)
316af65cd96SJohannes Berg {
317af65cd96SJohannes Berg 	if (local->hw.flags & IEEE80211_HW_HAS_RATE_CONTROL)
318af65cd96SJohannes Berg 		return 0;
319af65cd96SJohannes Berg 
320889cbb91SJohannes Berg 	sta->rate_ctrl = local->rate_ctrl;
321af65cd96SJohannes Berg 	sta->rate_ctrl_priv = rate_control_alloc_sta(sta->rate_ctrl,
322af65cd96SJohannes Berg 						     &sta->sta, gfp);
323889cbb91SJohannes Berg 	if (!sta->rate_ctrl_priv)
324af65cd96SJohannes Berg 		return -ENOMEM;
325af65cd96SJohannes Berg 
326af65cd96SJohannes Berg 	return 0;
327af65cd96SJohannes Berg }
328af65cd96SJohannes Berg 
32973651ee6SJohannes Berg struct sta_info *sta_info_alloc(struct ieee80211_sub_if_data *sdata,
33056544160SJohannes Berg 				const u8 *addr, gfp_t gfp)
331f0706e82SJiri Benc {
332d0709a65SJohannes Berg 	struct ieee80211_local *local = sdata->local;
333f0706e82SJiri Benc 	struct sta_info *sta;
334ebe27c91SMohammed Shafi Shajakhan 	struct timespec uptime;
33516c5f15cSRon Rindjunsky 	int i;
336f0706e82SJiri Benc 
33717741cdcSJohannes Berg 	sta = kzalloc(sizeof(*sta) + local->hw.sta_data_size, gfp);
338f0706e82SJiri Benc 	if (!sta)
33973651ee6SJohannes Berg 		return NULL;
340f0706e82SJiri Benc 
34107346f81SJohannes Berg 	spin_lock_init(&sta->lock);
342af818581SJohannes Berg 	INIT_WORK(&sta->drv_unblock_wk, sta_unblock);
34367c282c0SJohannes Berg 	INIT_WORK(&sta->ampdu_mlme.work, ieee80211_ba_session_work);
344a93e3644SJohannes Berg 	mutex_init(&sta->ampdu_mlme.mtx);
34587f59c70SThomas Pedersen #ifdef CONFIG_MAC80211_MESH
34687f59c70SThomas Pedersen 	if (ieee80211_vif_is_mesh(&sdata->vif) &&
34787f59c70SThomas Pedersen 	    !sdata->u.mesh.user_mpm)
34887f59c70SThomas Pedersen 		init_timer(&sta->plink_timer);
34987f59c70SThomas Pedersen #endif
35007346f81SJohannes Berg 
35117741cdcSJohannes Berg 	memcpy(sta->sta.addr, addr, ETH_ALEN);
352d0709a65SJohannes Berg 	sta->local = local;
353d0709a65SJohannes Berg 	sta->sdata = sdata;
3548bc8aecdSFelix Fietkau 	sta->last_rx = jiffies;
355f0706e82SJiri Benc 
35671ec375cSJohannes Berg 	sta->sta_state = IEEE80211_STA_NONE;
35771ec375cSJohannes Berg 
358ebe27c91SMohammed Shafi Shajakhan 	do_posix_clock_monotonic_gettime(&uptime);
359ebe27c91SMohammed Shafi Shajakhan 	sta->last_connected = uptime.tv_sec;
360541a45a1SBruno Randolf 	ewma_init(&sta->avg_signal, 1024, 8);
361541a45a1SBruno Randolf 
362af65cd96SJohannes Berg 	if (sta_prepare_rate_control(local, sta, gfp)) {
363f0706e82SJiri Benc 		kfree(sta);
36473651ee6SJohannes Berg 		return NULL;
365f0706e82SJiri Benc 	}
366f0706e82SJiri Benc 
3675a306f58SJohannes Berg 	for (i = 0; i < IEEE80211_NUM_TIDS; i++) {
368a622ab72SJohannes Berg 		/*
369a622ab72SJohannes Berg 		 * timer_to_tid must be initialized with identity mapping
370a622ab72SJohannes Berg 		 * to enable session_timer's data differentiation. See
371a622ab72SJohannes Berg 		 * sta_rx_agg_session_timer_expired for usage.
372a622ab72SJohannes Berg 		 */
37316c5f15cSRon Rindjunsky 		sta->timer_to_tid[i] = i;
37416c5f15cSRon Rindjunsky 	}
375948d887dSJohannes Berg 	for (i = 0; i < IEEE80211_NUM_ACS; i++) {
376948d887dSJohannes Berg 		skb_queue_head_init(&sta->ps_tx_buf[i]);
377948d887dSJohannes Berg 		skb_queue_head_init(&sta->tx_filtered[i]);
378948d887dSJohannes Berg 	}
37973651ee6SJohannes Berg 
3805a306f58SJohannes Berg 	for (i = 0; i < IEEE80211_NUM_TIDS; i++)
3814be929beSAlexey Dobriyan 		sta->last_seq_ctrl[i] = cpu_to_le16(USHRT_MAX);
382cccaec98SSenthil Balasubramanian 
383af0ed69bSJohannes Berg 	sta->sta.smps_mode = IEEE80211_SMPS_OFF;
384af0ed69bSJohannes Berg 
385bdcbd8e0SJohannes Berg 	sta_dbg(sdata, "Allocated STA %pM\n", sta->sta.addr);
38673651ee6SJohannes Berg 
38773651ee6SJohannes Berg 	return sta;
38873651ee6SJohannes Berg }
38973651ee6SJohannes Berg 
3908c71df7aSGuy Eilam static int sta_info_insert_check(struct sta_info *sta)
39134e89507SJohannes Berg {
39234e89507SJohannes Berg 	struct ieee80211_sub_if_data *sdata = sta->sdata;
39334e89507SJohannes Berg 
39403e4497eSJohannes Berg 	/*
39503e4497eSJohannes Berg 	 * Can't be a WARN_ON because it can be triggered through a race:
39603e4497eSJohannes Berg 	 * something inserts a STA (on one CPU) without holding the RTNL
39703e4497eSJohannes Berg 	 * and another CPU turns off the net device.
39803e4497eSJohannes Berg 	 */
3998c71df7aSGuy Eilam 	if (unlikely(!ieee80211_sdata_running(sdata)))
4008c71df7aSGuy Eilam 		return -ENETDOWN;
40103e4497eSJohannes Berg 
402b203ca39SJoe Perches 	if (WARN_ON(ether_addr_equal(sta->sta.addr, sdata->vif.addr) ||
4038c71df7aSGuy Eilam 		    is_multicast_ether_addr(sta->sta.addr)))
4048c71df7aSGuy Eilam 		return -EINVAL;
4058c71df7aSGuy Eilam 
4068c71df7aSGuy Eilam 	return 0;
40793e5deb1SJohannes Berg }
40844213b5eSJohannes Berg 
409f09603a2SJohannes Berg static int sta_info_insert_drv_state(struct ieee80211_local *local,
410f09603a2SJohannes Berg 				     struct ieee80211_sub_if_data *sdata,
411f09603a2SJohannes Berg 				     struct sta_info *sta)
412f09603a2SJohannes Berg {
413f09603a2SJohannes Berg 	enum ieee80211_sta_state state;
414f09603a2SJohannes Berg 	int err = 0;
415f09603a2SJohannes Berg 
416f09603a2SJohannes Berg 	for (state = IEEE80211_STA_NOTEXIST; state < sta->sta_state; state++) {
417f09603a2SJohannes Berg 		err = drv_sta_state(local, sdata, sta, state, state + 1);
418f09603a2SJohannes Berg 		if (err)
419f09603a2SJohannes Berg 			break;
420f09603a2SJohannes Berg 	}
421f09603a2SJohannes Berg 
422f09603a2SJohannes Berg 	if (!err) {
423a4ec45a4SJohannes Berg 		/*
424a4ec45a4SJohannes Berg 		 * Drivers using legacy sta_add/sta_remove callbacks only
425a4ec45a4SJohannes Berg 		 * get uploaded set to true after sta_add is called.
426a4ec45a4SJohannes Berg 		 */
427a4ec45a4SJohannes Berg 		if (!local->ops->sta_add)
428f09603a2SJohannes Berg 			sta->uploaded = true;
429f09603a2SJohannes Berg 		return 0;
430f09603a2SJohannes Berg 	}
431f09603a2SJohannes Berg 
432f09603a2SJohannes Berg 	if (sdata->vif.type == NL80211_IFTYPE_ADHOC) {
433bdcbd8e0SJohannes Berg 		sdata_info(sdata,
434bdcbd8e0SJohannes Berg 			   "failed to move IBSS STA %pM to state %d (%d) - keeping it anyway\n",
435bdcbd8e0SJohannes Berg 			   sta->sta.addr, state + 1, err);
436f09603a2SJohannes Berg 		err = 0;
437f09603a2SJohannes Berg 	}
438f09603a2SJohannes Berg 
439f09603a2SJohannes Berg 	/* unwind on error */
440f09603a2SJohannes Berg 	for (; state > IEEE80211_STA_NOTEXIST; state--)
441f09603a2SJohannes Berg 		WARN_ON(drv_sta_state(local, sdata, sta, state, state - 1));
442f09603a2SJohannes Berg 
443f09603a2SJohannes Berg 	return err;
444f09603a2SJohannes Berg }
445f09603a2SJohannes Berg 
44634e89507SJohannes Berg /*
4478c71df7aSGuy Eilam  * should be called with sta_mtx locked
4488c71df7aSGuy Eilam  * this function replaces the mutex lock
4498c71df7aSGuy Eilam  * with a RCU lock
4508c71df7aSGuy Eilam  */
4514d33960bSJohannes Berg static int sta_info_insert_finish(struct sta_info *sta) __acquires(RCU)
4528c71df7aSGuy Eilam {
4538c71df7aSGuy Eilam 	struct ieee80211_local *local = sta->local;
4548c71df7aSGuy Eilam 	struct ieee80211_sub_if_data *sdata = sta->sdata;
4557852e361SJohannes Berg 	struct station_info sinfo;
4568c71df7aSGuy Eilam 	int err = 0;
4578c71df7aSGuy Eilam 
4588c71df7aSGuy Eilam 	lockdep_assert_held(&local->sta_mtx);
4598c71df7aSGuy Eilam 
4607852e361SJohannes Berg 	/* check if STA exists already */
4617852e361SJohannes Berg 	if (sta_info_get_bss(sdata, sta->sta.addr)) {
4624d33960bSJohannes Berg 		err = -EEXIST;
4634d33960bSJohannes Berg 		goto out_err;
46434e89507SJohannes Berg 	}
46534e89507SJohannes Berg 
4664d33960bSJohannes Berg 	/* notify driver */
467f09603a2SJohannes Berg 	err = sta_info_insert_drv_state(local, sdata, sta);
468f09603a2SJohannes Berg 	if (err)
469f09603a2SJohannes Berg 		goto out_err;
4704d33960bSJohannes Berg 
4714d33960bSJohannes Berg 	local->num_sta++;
4724d33960bSJohannes Berg 	local->sta_generation++;
4734d33960bSJohannes Berg 	smp_mb();
4744d33960bSJohannes Berg 
4754d33960bSJohannes Berg 	/* make the station visible */
4764d33960bSJohannes Berg 	sta_info_hash_add(local, sta);
4774d33960bSJohannes Berg 
478794454ceSArik Nemtsov 	list_add_rcu(&sta->list, &local->sta_list);
47983d5cc01SJohannes Berg 
48083d5cc01SJohannes Berg 	set_sta_flag(sta, WLAN_STA_INSERTED);
4814d33960bSJohannes Berg 
4824d33960bSJohannes Berg 	ieee80211_sta_debugfs_add(sta);
4834d33960bSJohannes Berg 	rate_control_add_sta_debugfs(sta);
4844d33960bSJohannes Berg 
4854d33960bSJohannes Berg 	memset(&sinfo, 0, sizeof(sinfo));
4864d33960bSJohannes Berg 	sinfo.filled = 0;
4874d33960bSJohannes Berg 	sinfo.generation = local->sta_generation;
4884d33960bSJohannes Berg 	cfg80211_new_sta(sdata->dev, sta->sta.addr, &sinfo, GFP_KERNEL);
489d0709a65SJohannes Berg 
490bdcbd8e0SJohannes Berg 	sta_dbg(sdata, "Inserted STA %pM\n", sta->sta.addr);
491f0706e82SJiri Benc 
49234e89507SJohannes Berg 	/* move reference to rcu-protected */
49334e89507SJohannes Berg 	rcu_read_lock();
49434e89507SJohannes Berg 	mutex_unlock(&local->sta_mtx);
495e9f207f0SJiri Benc 
49673651ee6SJohannes Berg 	if (ieee80211_vif_is_mesh(&sdata->vif))
49773651ee6SJohannes Berg 		mesh_accept_plinks_update(sdata);
49873651ee6SJohannes Berg 
49973651ee6SJohannes Berg 	return 0;
5004d33960bSJohannes Berg  out_err:
5014d33960bSJohannes Berg 	mutex_unlock(&local->sta_mtx);
5024d33960bSJohannes Berg 	rcu_read_lock();
5034d33960bSJohannes Berg 	return err;
5048c71df7aSGuy Eilam }
5058c71df7aSGuy Eilam 
5068c71df7aSGuy Eilam int sta_info_insert_rcu(struct sta_info *sta) __acquires(RCU)
5078c71df7aSGuy Eilam {
5088c71df7aSGuy Eilam 	struct ieee80211_local *local = sta->local;
5098c71df7aSGuy Eilam 	int err = 0;
5108c71df7aSGuy Eilam 
5114d33960bSJohannes Berg 	might_sleep();
5124d33960bSJohannes Berg 
5138c71df7aSGuy Eilam 	err = sta_info_insert_check(sta);
5148c71df7aSGuy Eilam 	if (err) {
5158c71df7aSGuy Eilam 		rcu_read_lock();
5168c71df7aSGuy Eilam 		goto out_free;
5178c71df7aSGuy Eilam 	}
5188c71df7aSGuy Eilam 
519004c872eSJohannes Berg 	mutex_lock(&local->sta_mtx);
520004c872eSJohannes Berg 
5214d33960bSJohannes Berg 	err = sta_info_insert_finish(sta);
5228c71df7aSGuy Eilam 	if (err)
523004c872eSJohannes Berg 		goto out_free;
524d0709a65SJohannes Berg 
525004c872eSJohannes Berg 	return 0;
52693e5deb1SJohannes Berg  out_free:
52793e5deb1SJohannes Berg 	BUG_ON(!err);
528d9a7ddb0SJohannes Berg 	sta_info_free(local, sta);
52993e5deb1SJohannes Berg 	return err;
530f0706e82SJiri Benc }
531f0706e82SJiri Benc 
53234e89507SJohannes Berg int sta_info_insert(struct sta_info *sta)
53334e89507SJohannes Berg {
53434e89507SJohannes Berg 	int err = sta_info_insert_rcu(sta);
53534e89507SJohannes Berg 
53634e89507SJohannes Berg 	rcu_read_unlock();
53734e89507SJohannes Berg 
53834e89507SJohannes Berg 	return err;
53934e89507SJohannes Berg }
54034e89507SJohannes Berg 
541d012a605SMarco Porsch static inline void __bss_tim_set(u8 *tim, u16 id)
542004c872eSJohannes Berg {
543004c872eSJohannes Berg 	/*
544004c872eSJohannes Berg 	 * This format has been mandated by the IEEE specifications,
545004c872eSJohannes Berg 	 * so this line may not be changed to use the __set_bit() format.
546004c872eSJohannes Berg 	 */
547d012a605SMarco Porsch 	tim[id / 8] |= (1 << (id % 8));
548004c872eSJohannes Berg }
549004c872eSJohannes Berg 
550d012a605SMarco Porsch static inline void __bss_tim_clear(u8 *tim, u16 id)
551004c872eSJohannes Berg {
552004c872eSJohannes Berg 	/*
553004c872eSJohannes Berg 	 * This format has been mandated by the IEEE specifications,
554004c872eSJohannes Berg 	 * so this line may not be changed to use the __clear_bit() format.
555004c872eSJohannes Berg 	 */
556d012a605SMarco Porsch 	tim[id / 8] &= ~(1 << (id % 8));
557004c872eSJohannes Berg }
558004c872eSJohannes Berg 
5593d5839b6SIlan Peer static inline bool __bss_tim_get(u8 *tim, u16 id)
5603d5839b6SIlan Peer {
5613d5839b6SIlan Peer 	/*
5623d5839b6SIlan Peer 	 * This format has been mandated by the IEEE specifications,
5633d5839b6SIlan Peer 	 * so this line may not be changed to use the test_bit() format.
5643d5839b6SIlan Peer 	 */
5653d5839b6SIlan Peer 	return tim[id / 8] & (1 << (id % 8));
5663d5839b6SIlan Peer }
5673d5839b6SIlan Peer 
568948d887dSJohannes Berg static unsigned long ieee80211_tids_for_ac(int ac)
569004c872eSJohannes Berg {
570948d887dSJohannes Berg 	/* If we ever support TIDs > 7, this obviously needs to be adjusted */
571948d887dSJohannes Berg 	switch (ac) {
572948d887dSJohannes Berg 	case IEEE80211_AC_VO:
573948d887dSJohannes Berg 		return BIT(6) | BIT(7);
574948d887dSJohannes Berg 	case IEEE80211_AC_VI:
575948d887dSJohannes Berg 		return BIT(4) | BIT(5);
576948d887dSJohannes Berg 	case IEEE80211_AC_BE:
577948d887dSJohannes Berg 		return BIT(0) | BIT(3);
578948d887dSJohannes Berg 	case IEEE80211_AC_BK:
579948d887dSJohannes Berg 		return BIT(1) | BIT(2);
580948d887dSJohannes Berg 	default:
581948d887dSJohannes Berg 		WARN_ON(1);
582948d887dSJohannes Berg 		return 0;
583d0709a65SJohannes Berg 	}
584004c872eSJohannes Berg }
585004c872eSJohannes Berg 
586c868cb35SJohannes Berg void sta_info_recalc_tim(struct sta_info *sta)
587004c872eSJohannes Berg {
588c868cb35SJohannes Berg 	struct ieee80211_local *local = sta->local;
589d012a605SMarco Porsch 	struct ps_data *ps;
590948d887dSJohannes Berg 	bool indicate_tim = false;
591948d887dSJohannes Berg 	u8 ignore_for_tim = sta->sta.uapsd_queues;
592948d887dSJohannes Berg 	int ac;
593d012a605SMarco Porsch 	u16 id;
594004c872eSJohannes Berg 
595d012a605SMarco Porsch 	if (sta->sdata->vif.type == NL80211_IFTYPE_AP ||
596d012a605SMarco Porsch 	    sta->sdata->vif.type == NL80211_IFTYPE_AP_VLAN) {
597c868cb35SJohannes Berg 		if (WARN_ON_ONCE(!sta->sdata->bss))
598c868cb35SJohannes Berg 			return;
5993e122be0SJohannes Berg 
600d012a605SMarco Porsch 		ps = &sta->sdata->bss->ps;
601d012a605SMarco Porsch 		id = sta->sta.aid;
6023f52b7e3SMarco Porsch #ifdef CONFIG_MAC80211_MESH
6033f52b7e3SMarco Porsch 	} else if (ieee80211_vif_is_mesh(&sta->sdata->vif)) {
6043f52b7e3SMarco Porsch 		ps = &sta->sdata->u.mesh.ps;
6053f52b7e3SMarco Porsch 		/* TIM map only for PLID <= IEEE80211_MAX_AID */
6063f52b7e3SMarco Porsch 		id = le16_to_cpu(sta->plid) % IEEE80211_MAX_AID;
6073f52b7e3SMarco Porsch #endif
608d012a605SMarco Porsch 	} else {
609d012a605SMarco Porsch 		return;
610d012a605SMarco Porsch 	}
611d012a605SMarco Porsch 
612c868cb35SJohannes Berg 	/* No need to do anything if the driver does all */
613c868cb35SJohannes Berg 	if (local->hw.flags & IEEE80211_HW_AP_LINK_PS)
614c868cb35SJohannes Berg 		return;
615004c872eSJohannes Berg 
616c868cb35SJohannes Berg 	if (sta->dead)
617c868cb35SJohannes Berg 		goto done;
6183e122be0SJohannes Berg 
619948d887dSJohannes Berg 	/*
620948d887dSJohannes Berg 	 * If all ACs are delivery-enabled then we should build
621948d887dSJohannes Berg 	 * the TIM bit for all ACs anyway; if only some are then
622948d887dSJohannes Berg 	 * we ignore those and build the TIM bit using only the
623948d887dSJohannes Berg 	 * non-enabled ones.
624948d887dSJohannes Berg 	 */
625948d887dSJohannes Berg 	if (ignore_for_tim == BIT(IEEE80211_NUM_ACS) - 1)
626948d887dSJohannes Berg 		ignore_for_tim = 0;
627948d887dSJohannes Berg 
628948d887dSJohannes Berg 	for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
629948d887dSJohannes Berg 		unsigned long tids;
630948d887dSJohannes Berg 
631948d887dSJohannes Berg 		if (ignore_for_tim & BIT(ac))
632948d887dSJohannes Berg 			continue;
633948d887dSJohannes Berg 
634948d887dSJohannes Berg 		indicate_tim |= !skb_queue_empty(&sta->tx_filtered[ac]) ||
635948d887dSJohannes Berg 				!skb_queue_empty(&sta->ps_tx_buf[ac]);
636948d887dSJohannes Berg 		if (indicate_tim)
637948d887dSJohannes Berg 			break;
638948d887dSJohannes Berg 
639948d887dSJohannes Berg 		tids = ieee80211_tids_for_ac(ac);
640948d887dSJohannes Berg 
641948d887dSJohannes Berg 		indicate_tim |=
642948d887dSJohannes Berg 			sta->driver_buffered_tids & tids;
643004c872eSJohannes Berg 	}
644004c872eSJohannes Berg 
645c868cb35SJohannes Berg  done:
64665f704a5SJohannes Berg 	spin_lock_bh(&local->tim_lock);
647004c872eSJohannes Berg 
6483d5839b6SIlan Peer 	if (indicate_tim == __bss_tim_get(ps->tim, id))
6493d5839b6SIlan Peer 		goto out_unlock;
6503d5839b6SIlan Peer 
651948d887dSJohannes Berg 	if (indicate_tim)
652d012a605SMarco Porsch 		__bss_tim_set(ps->tim, id);
653c868cb35SJohannes Berg 	else
654d012a605SMarco Porsch 		__bss_tim_clear(ps->tim, id);
6553e122be0SJohannes Berg 
656c868cb35SJohannes Berg 	if (local->ops->set_tim) {
657c868cb35SJohannes Berg 		local->tim_in_locked_section = true;
658948d887dSJohannes Berg 		drv_set_tim(local, &sta->sta, indicate_tim);
659c868cb35SJohannes Berg 		local->tim_in_locked_section = false;
660004c872eSJohannes Berg 	}
661004c872eSJohannes Berg 
6623d5839b6SIlan Peer out_unlock:
66365f704a5SJohannes Berg 	spin_unlock_bh(&local->tim_lock);
664004c872eSJohannes Berg }
665004c872eSJohannes Berg 
666cd0b8d89SJohannes Berg static bool sta_info_buffer_expired(struct sta_info *sta, struct sk_buff *skb)
667f0706e82SJiri Benc {
668e039fa4aSJohannes Berg 	struct ieee80211_tx_info *info;
669f0706e82SJiri Benc 	int timeout;
670f0706e82SJiri Benc 
671f0706e82SJiri Benc 	if (!skb)
672cd0b8d89SJohannes Berg 		return false;
673f0706e82SJiri Benc 
674e039fa4aSJohannes Berg 	info = IEEE80211_SKB_CB(skb);
675f0706e82SJiri Benc 
676f0706e82SJiri Benc 	/* Timeout: (2 * listen_interval * beacon_int * 1024 / 1000000) sec */
67757c4d7b4SJohannes Berg 	timeout = (sta->listen_interval *
67857c4d7b4SJohannes Berg 		   sta->sdata->vif.bss_conf.beacon_int *
67957c4d7b4SJohannes Berg 		   32 / 15625) * HZ;
680f0706e82SJiri Benc 	if (timeout < STA_TX_BUFFER_EXPIRE)
681f0706e82SJiri Benc 		timeout = STA_TX_BUFFER_EXPIRE;
682e039fa4aSJohannes Berg 	return time_after(jiffies, info->control.jiffies + timeout);
683f0706e82SJiri Benc }
684f0706e82SJiri Benc 
685f0706e82SJiri Benc 
686948d887dSJohannes Berg static bool sta_info_cleanup_expire_buffered_ac(struct ieee80211_local *local,
687948d887dSJohannes Berg 						struct sta_info *sta, int ac)
688f0706e82SJiri Benc {
689f0706e82SJiri Benc 	unsigned long flags;
690f0706e82SJiri Benc 	struct sk_buff *skb;
691f0706e82SJiri Benc 
69260750397SJohannes Berg 	/*
69360750397SJohannes Berg 	 * First check for frames that should expire on the filtered
69460750397SJohannes Berg 	 * queue. Frames here were rejected by the driver and are on
69560750397SJohannes Berg 	 * a separate queue to avoid reordering with normal PS-buffered
69660750397SJohannes Berg 	 * frames. They also aren't accounted for right now in the
69760750397SJohannes Berg 	 * total_ps_buffered counter.
69860750397SJohannes Berg 	 */
699f0706e82SJiri Benc 	for (;;) {
700948d887dSJohannes Berg 		spin_lock_irqsave(&sta->tx_filtered[ac].lock, flags);
701948d887dSJohannes Berg 		skb = skb_peek(&sta->tx_filtered[ac]);
70257c4d7b4SJohannes Berg 		if (sta_info_buffer_expired(sta, skb))
703948d887dSJohannes Berg 			skb = __skb_dequeue(&sta->tx_filtered[ac]);
704836341a7SJohannes Berg 		else
705f0706e82SJiri Benc 			skb = NULL;
706948d887dSJohannes Berg 		spin_unlock_irqrestore(&sta->tx_filtered[ac].lock, flags);
707f0706e82SJiri Benc 
70860750397SJohannes Berg 		/*
70960750397SJohannes Berg 		 * Frames are queued in order, so if this one
71060750397SJohannes Berg 		 * hasn't expired yet we can stop testing. If
71160750397SJohannes Berg 		 * we actually reached the end of the queue we
71260750397SJohannes Berg 		 * also need to stop, of course.
71360750397SJohannes Berg 		 */
71460750397SJohannes Berg 		if (!skb)
71560750397SJohannes Berg 			break;
716d4fa14cdSFelix Fietkau 		ieee80211_free_txskb(&local->hw, skb);
71760750397SJohannes Berg 	}
71860750397SJohannes Berg 
71960750397SJohannes Berg 	/*
72060750397SJohannes Berg 	 * Now also check the normal PS-buffered queue, this will
72160750397SJohannes Berg 	 * only find something if the filtered queue was emptied
72260750397SJohannes Berg 	 * since the filtered frames are all before the normal PS
72360750397SJohannes Berg 	 * buffered frames.
72460750397SJohannes Berg 	 */
725f0706e82SJiri Benc 	for (;;) {
726948d887dSJohannes Berg 		spin_lock_irqsave(&sta->ps_tx_buf[ac].lock, flags);
727948d887dSJohannes Berg 		skb = skb_peek(&sta->ps_tx_buf[ac]);
728f0706e82SJiri Benc 		if (sta_info_buffer_expired(sta, skb))
729948d887dSJohannes Berg 			skb = __skb_dequeue(&sta->ps_tx_buf[ac]);
730f0706e82SJiri Benc 		else
731f0706e82SJiri Benc 			skb = NULL;
732948d887dSJohannes Berg 		spin_unlock_irqrestore(&sta->ps_tx_buf[ac].lock, flags);
733f0706e82SJiri Benc 
73460750397SJohannes Berg 		/*
73560750397SJohannes Berg 		 * frames are queued in order, so if this one
73660750397SJohannes Berg 		 * hasn't expired yet (or we reached the end of
73760750397SJohannes Berg 		 * the queue) we can stop testing
73860750397SJohannes Berg 		 */
739836341a7SJohannes Berg 		if (!skb)
740836341a7SJohannes Berg 			break;
741836341a7SJohannes Berg 
742f0706e82SJiri Benc 		local->total_ps_buffered--;
743bdcbd8e0SJohannes Berg 		ps_dbg(sta->sdata, "Buffered frame expired (STA %pM)\n",
744bdcbd8e0SJohannes Berg 		       sta->sta.addr);
745d4fa14cdSFelix Fietkau 		ieee80211_free_txskb(&local->hw, skb);
746f0706e82SJiri Benc 	}
7473393a608SJuuso Oikarinen 
74860750397SJohannes Berg 	/*
74960750397SJohannes Berg 	 * Finally, recalculate the TIM bit for this station -- it might
75060750397SJohannes Berg 	 * now be clear because the station was too slow to retrieve its
75160750397SJohannes Berg 	 * frames.
75260750397SJohannes Berg 	 */
75360750397SJohannes Berg 	sta_info_recalc_tim(sta);
75460750397SJohannes Berg 
75560750397SJohannes Berg 	/*
75660750397SJohannes Berg 	 * Return whether there are any frames still buffered, this is
75760750397SJohannes Berg 	 * used to check whether the cleanup timer still needs to run,
75860750397SJohannes Berg 	 * if there are no frames we don't need to rearm the timer.
75960750397SJohannes Berg 	 */
760948d887dSJohannes Berg 	return !(skb_queue_empty(&sta->ps_tx_buf[ac]) &&
761948d887dSJohannes Berg 		 skb_queue_empty(&sta->tx_filtered[ac]));
762948d887dSJohannes Berg }
763948d887dSJohannes Berg 
764948d887dSJohannes Berg static bool sta_info_cleanup_expire_buffered(struct ieee80211_local *local,
765948d887dSJohannes Berg 					     struct sta_info *sta)
766948d887dSJohannes Berg {
767948d887dSJohannes Berg 	bool have_buffered = false;
768948d887dSJohannes Berg 	int ac;
769948d887dSJohannes Berg 
7703f52b7e3SMarco Porsch 	/* This is only necessary for stations on BSS/MBSS interfaces */
7713f52b7e3SMarco Porsch 	if (!sta->sdata->bss &&
7723f52b7e3SMarco Porsch 	    !ieee80211_vif_is_mesh(&sta->sdata->vif))
773948d887dSJohannes Berg 		return false;
774948d887dSJohannes Berg 
775948d887dSJohannes Berg 	for (ac = 0; ac < IEEE80211_NUM_ACS; ac++)
776948d887dSJohannes Berg 		have_buffered |=
777948d887dSJohannes Berg 			sta_info_cleanup_expire_buffered_ac(local, sta, ac);
778948d887dSJohannes Berg 
779948d887dSJohannes Berg 	return have_buffered;
780f0706e82SJiri Benc }
781f0706e82SJiri Benc 
78283d5cc01SJohannes Berg int __must_check __sta_info_destroy(struct sta_info *sta)
78334e89507SJohannes Berg {
78434e89507SJohannes Berg 	struct ieee80211_local *local;
78534e89507SJohannes Berg 	struct ieee80211_sub_if_data *sdata;
786*6d10e46bSJohannes Berg 	int ret;
78734e89507SJohannes Berg 
78834e89507SJohannes Berg 	might_sleep();
78934e89507SJohannes Berg 
79034e89507SJohannes Berg 	if (!sta)
79134e89507SJohannes Berg 		return -ENOENT;
79234e89507SJohannes Berg 
79334e89507SJohannes Berg 	local = sta->local;
79434e89507SJohannes Berg 	sdata = sta->sdata;
79534e89507SJohannes Berg 
79683d5cc01SJohannes Berg 	lockdep_assert_held(&local->sta_mtx);
79783d5cc01SJohannes Berg 
798098a6070SJohannes Berg 	/*
799098a6070SJohannes Berg 	 * Before removing the station from the driver and
800098a6070SJohannes Berg 	 * rate control, it might still start new aggregation
801098a6070SJohannes Berg 	 * sessions -- block that to make sure the tear-down
802098a6070SJohannes Berg 	 * will be sufficient.
803098a6070SJohannes Berg 	 */
804c2c98fdeSJohannes Berg 	set_sta_flag(sta, WLAN_STA_BLOCK_BA);
805c82c4a80SJohannes Berg 	ieee80211_sta_tear_down_BA_sessions(sta, AGG_STOP_DESTROY_STA);
806098a6070SJohannes Berg 
80734e89507SJohannes Berg 	ret = sta_info_hash_del(local, sta);
80834e89507SJohannes Berg 	if (ret)
80934e89507SJohannes Berg 		return ret;
81034e89507SJohannes Berg 
811794454ceSArik Nemtsov 	list_del_rcu(&sta->list);
8124d33960bSJohannes Berg 
813*6d10e46bSJohannes Berg 	/* this always calls synchronize_net() */
814*6d10e46bSJohannes Berg 	ieee80211_free_sta_keys(local, sta);
81534e89507SJohannes Berg 
81634e89507SJohannes Berg 	sta->dead = true;
81734e89507SJohannes Berg 
81834e89507SJohannes Berg 	local->num_sta--;
81934e89507SJohannes Berg 	local->sta_generation++;
82034e89507SJohannes Berg 
82134e89507SJohannes Berg 	if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
822a9b3cd7fSStephen Hemminger 		RCU_INIT_POINTER(sdata->u.vlan.sta, NULL);
82334e89507SJohannes Berg 
82483d5cc01SJohannes Berg 	while (sta->sta_state > IEEE80211_STA_NONE) {
825f09603a2SJohannes Berg 		ret = sta_info_move_state(sta, sta->sta_state - 1);
826f09603a2SJohannes Berg 		if (ret) {
82783d5cc01SJohannes Berg 			WARN_ON_ONCE(1);
82883d5cc01SJohannes Berg 			break;
82983d5cc01SJohannes Berg 		}
83083d5cc01SJohannes Berg 	}
831d9a7ddb0SJohannes Berg 
832f09603a2SJohannes Berg 	if (sta->uploaded) {
833f09603a2SJohannes Berg 		ret = drv_sta_state(local, sdata, sta, IEEE80211_STA_NONE,
834f09603a2SJohannes Berg 				    IEEE80211_STA_NOTEXIST);
835f09603a2SJohannes Berg 		WARN_ON_ONCE(ret != 0);
836f09603a2SJohannes Berg 	}
83734e89507SJohannes Berg 
838bdcbd8e0SJohannes Berg 	sta_dbg(sdata, "Removed STA %pM\n", sta->sta.addr);
839bdcbd8e0SJohannes Berg 
840ec15e68bSJouni Malinen 	cfg80211_del_sta(sdata->dev, sta->sta.addr, GFP_KERNEL);
841ec15e68bSJouni Malinen 
84234e89507SJohannes Berg 	rate_control_remove_sta_debugfs(sta);
84334e89507SJohannes Berg 	ieee80211_sta_debugfs_remove(sta);
84434e89507SJohannes Berg 
845b22cfcfcSEliad Peller 	call_rcu(&sta->rcu_head, free_sta_rcu);
84634e89507SJohannes Berg 
84734e89507SJohannes Berg 	return 0;
84834e89507SJohannes Berg }
84934e89507SJohannes Berg 
85034e89507SJohannes Berg int sta_info_destroy_addr(struct ieee80211_sub_if_data *sdata, const u8 *addr)
85134e89507SJohannes Berg {
85234e89507SJohannes Berg 	struct sta_info *sta;
85334e89507SJohannes Berg 	int ret;
85434e89507SJohannes Berg 
85534e89507SJohannes Berg 	mutex_lock(&sdata->local->sta_mtx);
8567852e361SJohannes Berg 	sta = sta_info_get(sdata, addr);
85734e89507SJohannes Berg 	ret = __sta_info_destroy(sta);
85834e89507SJohannes Berg 	mutex_unlock(&sdata->local->sta_mtx);
85934e89507SJohannes Berg 
86034e89507SJohannes Berg 	return ret;
86134e89507SJohannes Berg }
86234e89507SJohannes Berg 
86334e89507SJohannes Berg int sta_info_destroy_addr_bss(struct ieee80211_sub_if_data *sdata,
86434e89507SJohannes Berg 			      const u8 *addr)
86534e89507SJohannes Berg {
86634e89507SJohannes Berg 	struct sta_info *sta;
86734e89507SJohannes Berg 	int ret;
86834e89507SJohannes Berg 
86934e89507SJohannes Berg 	mutex_lock(&sdata->local->sta_mtx);
8707852e361SJohannes Berg 	sta = sta_info_get_bss(sdata, addr);
87134e89507SJohannes Berg 	ret = __sta_info_destroy(sta);
87234e89507SJohannes Berg 	mutex_unlock(&sdata->local->sta_mtx);
87334e89507SJohannes Berg 
87434e89507SJohannes Berg 	return ret;
87534e89507SJohannes Berg }
876f0706e82SJiri Benc 
877f0706e82SJiri Benc static void sta_info_cleanup(unsigned long data)
878f0706e82SJiri Benc {
879f0706e82SJiri Benc 	struct ieee80211_local *local = (struct ieee80211_local *) data;
880f0706e82SJiri Benc 	struct sta_info *sta;
8813393a608SJuuso Oikarinen 	bool timer_needed = false;
882f0706e82SJiri Benc 
883d0709a65SJohannes Berg 	rcu_read_lock();
884d0709a65SJohannes Berg 	list_for_each_entry_rcu(sta, &local->sta_list, list)
8853393a608SJuuso Oikarinen 		if (sta_info_cleanup_expire_buffered(local, sta))
8863393a608SJuuso Oikarinen 			timer_needed = true;
887d0709a65SJohannes Berg 	rcu_read_unlock();
888f0706e82SJiri Benc 
8895bb644a0SJohannes Berg 	if (local->quiescing)
8905bb644a0SJohannes Berg 		return;
8915bb644a0SJohannes Berg 
8923393a608SJuuso Oikarinen 	if (!timer_needed)
8933393a608SJuuso Oikarinen 		return;
8943393a608SJuuso Oikarinen 
89526d59535SJohannes Berg 	mod_timer(&local->sta_cleanup,
89626d59535SJohannes Berg 		  round_jiffies(jiffies + STA_INFO_CLEANUP_INTERVAL));
897f0706e82SJiri Benc }
898f0706e82SJiri Benc 
899f0706e82SJiri Benc void sta_info_init(struct ieee80211_local *local)
900f0706e82SJiri Benc {
9014d33960bSJohannes Berg 	spin_lock_init(&local->tim_lock);
90234e89507SJohannes Berg 	mutex_init(&local->sta_mtx);
903f0706e82SJiri Benc 	INIT_LIST_HEAD(&local->sta_list);
904f0706e82SJiri Benc 
905b24b8a24SPavel Emelyanov 	setup_timer(&local->sta_cleanup, sta_info_cleanup,
906b24b8a24SPavel Emelyanov 		    (unsigned long)local);
907f0706e82SJiri Benc }
908f0706e82SJiri Benc 
909f0706e82SJiri Benc void sta_info_stop(struct ieee80211_local *local)
910f0706e82SJiri Benc {
911a56f992cSJohannes Berg 	del_timer_sync(&local->sta_cleanup);
912f0706e82SJiri Benc }
913f0706e82SJiri Benc 
914051007d9SJohannes Berg 
915051007d9SJohannes Berg int sta_info_flush_defer(struct ieee80211_sub_if_data *sdata)
916f0706e82SJiri Benc {
917b998e8bbSJohannes Berg 	struct ieee80211_local *local = sdata->local;
918f0706e82SJiri Benc 	struct sta_info *sta, *tmp;
91944213b5eSJohannes Berg 	int ret = 0;
920f0706e82SJiri Benc 
921d0709a65SJohannes Berg 	might_sleep();
922d0709a65SJohannes Berg 
92334e89507SJohannes Berg 	mutex_lock(&local->sta_mtx);
92434e89507SJohannes Berg 	list_for_each_entry_safe(sta, tmp, &local->sta_list, list) {
925b998e8bbSJohannes Berg 		if (sdata == sta->sdata) {
92634e89507SJohannes Berg 			WARN_ON(__sta_info_destroy(sta));
92734316837SJohannes Berg 			ret++;
92834316837SJohannes Berg 		}
92934e89507SJohannes Berg 	}
93034e89507SJohannes Berg 	mutex_unlock(&local->sta_mtx);
93144213b5eSJohannes Berg 
932051007d9SJohannes Berg 	return ret;
933051007d9SJohannes Berg }
934051007d9SJohannes Berg 
935051007d9SJohannes Berg void sta_info_flush_cleanup(struct ieee80211_sub_if_data *sdata)
936051007d9SJohannes Berg {
93797f97b1fSJohannes Berg 	ieee80211_cleanup_sdata_stas(sdata);
93897f97b1fSJohannes Berg 	cancel_work_sync(&sdata->cleanup_stations_wk);
939f0706e82SJiri Benc }
940dc6676b7SJohannes Berg 
94124723d1bSJohannes Berg void ieee80211_sta_expire(struct ieee80211_sub_if_data *sdata,
94224723d1bSJohannes Berg 			  unsigned long exp_time)
94324723d1bSJohannes Berg {
94424723d1bSJohannes Berg 	struct ieee80211_local *local = sdata->local;
94524723d1bSJohannes Berg 	struct sta_info *sta, *tmp;
94624723d1bSJohannes Berg 
94734e89507SJohannes Berg 	mutex_lock(&local->sta_mtx);
948e46a2cf9SMohammed Shafi Shajakhan 
949e46a2cf9SMohammed Shafi Shajakhan 	list_for_each_entry_safe(sta, tmp, &local->sta_list, list) {
950ec2b774eSMarek Lindner 		if (sdata != sta->sdata)
951ec2b774eSMarek Lindner 			continue;
952ec2b774eSMarek Lindner 
95324723d1bSJohannes Berg 		if (time_after(jiffies, sta->last_rx + exp_time)) {
954eea57d42SMohammed Shafi Shajakhan 			sta_dbg(sta->sdata, "expiring inactive STA %pM\n",
955bdcbd8e0SJohannes Berg 				sta->sta.addr);
9563f52b7e3SMarco Porsch 
9573f52b7e3SMarco Porsch 			if (ieee80211_vif_is_mesh(&sdata->vif) &&
9583f52b7e3SMarco Porsch 			    test_sta_flag(sta, WLAN_STA_PS_STA))
9593f52b7e3SMarco Porsch 				atomic_dec(&sdata->u.mesh.ps.num_sta_ps);
9603f52b7e3SMarco Porsch 
96134e89507SJohannes Berg 			WARN_ON(__sta_info_destroy(sta));
96224723d1bSJohannes Berg 		}
963e46a2cf9SMohammed Shafi Shajakhan 	}
964e46a2cf9SMohammed Shafi Shajakhan 
96534e89507SJohannes Berg 	mutex_unlock(&local->sta_mtx);
96624723d1bSJohannes Berg }
96717741cdcSJohannes Berg 
968686b9cb9SBen Greear struct ieee80211_sta *ieee80211_find_sta_by_ifaddr(struct ieee80211_hw *hw,
969686b9cb9SBen Greear 					       const u8 *addr,
970686b9cb9SBen Greear 					       const u8 *localaddr)
97117741cdcSJohannes Berg {
972abe60632SJohannes Berg 	struct sta_info *sta, *nxt;
97317741cdcSJohannes Berg 
974686b9cb9SBen Greear 	/*
975686b9cb9SBen Greear 	 * Just return a random station if localaddr is NULL
976686b9cb9SBen Greear 	 * ... first in list.
977686b9cb9SBen Greear 	 */
978f7c65594SJohannes Berg 	for_each_sta_info(hw_to_local(hw), addr, sta, nxt) {
979686b9cb9SBen Greear 		if (localaddr &&
980b203ca39SJoe Perches 		    !ether_addr_equal(sta->sdata->vif.addr, localaddr))
981686b9cb9SBen Greear 			continue;
982f7c65594SJohannes Berg 		if (!sta->uploaded)
983f7c65594SJohannes Berg 			return NULL;
98417741cdcSJohannes Berg 		return &sta->sta;
985f7c65594SJohannes Berg 	}
986f7c65594SJohannes Berg 
987abe60632SJohannes Berg 	return NULL;
98817741cdcSJohannes Berg }
989686b9cb9SBen Greear EXPORT_SYMBOL_GPL(ieee80211_find_sta_by_ifaddr);
9905ed176e1SJohannes Berg 
9915ed176e1SJohannes Berg struct ieee80211_sta *ieee80211_find_sta(struct ieee80211_vif *vif,
9925ed176e1SJohannes Berg 					 const u8 *addr)
9935ed176e1SJohannes Berg {
994f7c65594SJohannes Berg 	struct sta_info *sta;
9955ed176e1SJohannes Berg 
9965ed176e1SJohannes Berg 	if (!vif)
9975ed176e1SJohannes Berg 		return NULL;
9985ed176e1SJohannes Berg 
999f7c65594SJohannes Berg 	sta = sta_info_get_bss(vif_to_sdata(vif), addr);
1000f7c65594SJohannes Berg 	if (!sta)
1001f7c65594SJohannes Berg 		return NULL;
10025ed176e1SJohannes Berg 
1003f7c65594SJohannes Berg 	if (!sta->uploaded)
1004f7c65594SJohannes Berg 		return NULL;
1005f7c65594SJohannes Berg 
1006f7c65594SJohannes Berg 	return &sta->sta;
10075ed176e1SJohannes Berg }
100817741cdcSJohannes Berg EXPORT_SYMBOL(ieee80211_find_sta);
1009af818581SJohannes Berg 
101050a9432dSJohannes Berg static void clear_sta_ps_flags(void *_sta)
101150a9432dSJohannes Berg {
101250a9432dSJohannes Berg 	struct sta_info *sta = _sta;
1013608383bfSHelmut Schaa 	struct ieee80211_sub_if_data *sdata = sta->sdata;
1014d012a605SMarco Porsch 	struct ps_data *ps;
1015d012a605SMarco Porsch 
1016d012a605SMarco Porsch 	if (sdata->vif.type == NL80211_IFTYPE_AP ||
1017d012a605SMarco Porsch 	    sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
1018d012a605SMarco Porsch 		ps = &sdata->bss->ps;
10193f52b7e3SMarco Porsch 	else if (ieee80211_vif_is_mesh(&sdata->vif))
10203f52b7e3SMarco Porsch 		ps = &sdata->u.mesh.ps;
1021d012a605SMarco Porsch 	else
1022d012a605SMarco Porsch 		return;
102350a9432dSJohannes Berg 
1024c2c98fdeSJohannes Berg 	clear_sta_flag(sta, WLAN_STA_PS_DRIVER);
1025608383bfSHelmut Schaa 	if (test_and_clear_sta_flag(sta, WLAN_STA_PS_STA))
1026d012a605SMarco Porsch 		atomic_dec(&ps->num_sta_ps);
102750a9432dSJohannes Berg }
102850a9432dSJohannes Berg 
1029af818581SJohannes Berg /* powersave support code */
1030af818581SJohannes Berg void ieee80211_sta_ps_deliver_wakeup(struct sta_info *sta)
1031af818581SJohannes Berg {
1032af818581SJohannes Berg 	struct ieee80211_sub_if_data *sdata = sta->sdata;
1033af818581SJohannes Berg 	struct ieee80211_local *local = sdata->local;
1034948d887dSJohannes Berg 	struct sk_buff_head pending;
1035948d887dSJohannes Berg 	int filtered = 0, buffered = 0, ac;
1036987c285cSArik Nemtsov 	unsigned long flags;
1037af818581SJohannes Berg 
1038c2c98fdeSJohannes Berg 	clear_sta_flag(sta, WLAN_STA_SP);
103947086fc5SJohannes Berg 
10405a306f58SJohannes Berg 	BUILD_BUG_ON(BITS_TO_LONGS(IEEE80211_NUM_TIDS) > 1);
1041948d887dSJohannes Berg 	sta->driver_buffered_tids = 0;
1042948d887dSJohannes Berg 
1043d057e5a3SArik Nemtsov 	if (!(local->hw.flags & IEEE80211_HW_AP_LINK_PS))
104412375ef9SJohannes Berg 		drv_sta_notify(local, sdata, STA_NOTIFY_AWAKE, &sta->sta);
1045af818581SJohannes Berg 
1046948d887dSJohannes Berg 	skb_queue_head_init(&pending);
1047af818581SJohannes Berg 
1048af818581SJohannes Berg 	/* Send all buffered frames to the station */
1049948d887dSJohannes Berg 	for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
1050948d887dSJohannes Berg 		int count = skb_queue_len(&pending), tmp;
1051948d887dSJohannes Berg 
1052987c285cSArik Nemtsov 		spin_lock_irqsave(&sta->tx_filtered[ac].lock, flags);
1053948d887dSJohannes Berg 		skb_queue_splice_tail_init(&sta->tx_filtered[ac], &pending);
1054987c285cSArik Nemtsov 		spin_unlock_irqrestore(&sta->tx_filtered[ac].lock, flags);
1055948d887dSJohannes Berg 		tmp = skb_queue_len(&pending);
1056948d887dSJohannes Berg 		filtered += tmp - count;
1057948d887dSJohannes Berg 		count = tmp;
1058948d887dSJohannes Berg 
1059987c285cSArik Nemtsov 		spin_lock_irqsave(&sta->ps_tx_buf[ac].lock, flags);
1060948d887dSJohannes Berg 		skb_queue_splice_tail_init(&sta->ps_tx_buf[ac], &pending);
1061987c285cSArik Nemtsov 		spin_unlock_irqrestore(&sta->ps_tx_buf[ac].lock, flags);
1062948d887dSJohannes Berg 		tmp = skb_queue_len(&pending);
1063948d887dSJohannes Berg 		buffered += tmp - count;
1064948d887dSJohannes Berg 	}
1065948d887dSJohannes Berg 
1066948d887dSJohannes Berg 	ieee80211_add_pending_skbs_fn(local, &pending, clear_sta_ps_flags, sta);
1067948d887dSJohannes Berg 
1068af818581SJohannes Berg 	local->total_ps_buffered -= buffered;
1069af818581SJohannes Berg 
1070c868cb35SJohannes Berg 	sta_info_recalc_tim(sta);
1071c868cb35SJohannes Berg 
1072bdcbd8e0SJohannes Berg 	ps_dbg(sdata,
1073bdcbd8e0SJohannes Berg 	       "STA %pM aid %d sending %d filtered/%d PS frames since STA not sleeping anymore\n",
1074bdcbd8e0SJohannes Berg 	       sta->sta.addr, sta->sta.aid, filtered, buffered);
1075af818581SJohannes Berg }
1076af818581SJohannes Berg 
1077ce662b44SJohannes Berg static void ieee80211_send_null_response(struct ieee80211_sub_if_data *sdata,
1078ce662b44SJohannes Berg 					 struct sta_info *sta, int tid,
107940b96408SJohannes Berg 					 enum ieee80211_frame_release_type reason)
1080ce662b44SJohannes Berg {
1081ce662b44SJohannes Berg 	struct ieee80211_local *local = sdata->local;
1082ce662b44SJohannes Berg 	struct ieee80211_qos_hdr *nullfunc;
1083ce662b44SJohannes Berg 	struct sk_buff *skb;
1084ce662b44SJohannes Berg 	int size = sizeof(*nullfunc);
1085ce662b44SJohannes Berg 	__le16 fc;
1086c2c98fdeSJohannes Berg 	bool qos = test_sta_flag(sta, WLAN_STA_WME);
1087ce662b44SJohannes Berg 	struct ieee80211_tx_info *info;
108855de908aSJohannes Berg 	struct ieee80211_chanctx_conf *chanctx_conf;
1089ce662b44SJohannes Berg 
1090ce662b44SJohannes Berg 	if (qos) {
1091ce662b44SJohannes Berg 		fc = cpu_to_le16(IEEE80211_FTYPE_DATA |
1092ce662b44SJohannes Berg 				 IEEE80211_STYPE_QOS_NULLFUNC |
1093ce662b44SJohannes Berg 				 IEEE80211_FCTL_FROMDS);
1094ce662b44SJohannes Berg 	} else {
1095ce662b44SJohannes Berg 		size -= 2;
1096ce662b44SJohannes Berg 		fc = cpu_to_le16(IEEE80211_FTYPE_DATA |
1097ce662b44SJohannes Berg 				 IEEE80211_STYPE_NULLFUNC |
1098ce662b44SJohannes Berg 				 IEEE80211_FCTL_FROMDS);
1099ce662b44SJohannes Berg 	}
1100ce662b44SJohannes Berg 
1101ce662b44SJohannes Berg 	skb = dev_alloc_skb(local->hw.extra_tx_headroom + size);
1102ce662b44SJohannes Berg 	if (!skb)
1103ce662b44SJohannes Berg 		return;
1104ce662b44SJohannes Berg 
1105ce662b44SJohannes Berg 	skb_reserve(skb, local->hw.extra_tx_headroom);
1106ce662b44SJohannes Berg 
1107ce662b44SJohannes Berg 	nullfunc = (void *) skb_put(skb, size);
1108ce662b44SJohannes Berg 	nullfunc->frame_control = fc;
1109ce662b44SJohannes Berg 	nullfunc->duration_id = 0;
1110ce662b44SJohannes Berg 	memcpy(nullfunc->addr1, sta->sta.addr, ETH_ALEN);
1111ce662b44SJohannes Berg 	memcpy(nullfunc->addr2, sdata->vif.addr, ETH_ALEN);
1112ce662b44SJohannes Berg 	memcpy(nullfunc->addr3, sdata->vif.addr, ETH_ALEN);
1113ce662b44SJohannes Berg 
1114ce662b44SJohannes Berg 	skb->priority = tid;
1115ce662b44SJohannes Berg 	skb_set_queue_mapping(skb, ieee802_1d_to_ac[tid]);
111659b66255SJohannes Berg 	if (qos) {
1117ce662b44SJohannes Berg 		nullfunc->qos_ctrl = cpu_to_le16(tid);
1118ce662b44SJohannes Berg 
111940b96408SJohannes Berg 		if (reason == IEEE80211_FRAME_RELEASE_UAPSD)
1120ce662b44SJohannes Berg 			nullfunc->qos_ctrl |=
1121ce662b44SJohannes Berg 				cpu_to_le16(IEEE80211_QOS_CTL_EOSP);
1122ce662b44SJohannes Berg 	}
1123ce662b44SJohannes Berg 
1124ce662b44SJohannes Berg 	info = IEEE80211_SKB_CB(skb);
1125ce662b44SJohannes Berg 
1126ce662b44SJohannes Berg 	/*
1127ce662b44SJohannes Berg 	 * Tell TX path to send this frame even though the
1128ce662b44SJohannes Berg 	 * STA may still remain is PS mode after this frame
1129deeaee19SJohannes Berg 	 * exchange. Also set EOSP to indicate this packet
1130deeaee19SJohannes Berg 	 * ends the poll/service period.
1131ce662b44SJohannes Berg 	 */
113202f2f1a9SJohannes Berg 	info->flags |= IEEE80211_TX_CTL_NO_PS_BUFFER |
1133deeaee19SJohannes Berg 		       IEEE80211_TX_STATUS_EOSP |
1134ce662b44SJohannes Berg 		       IEEE80211_TX_CTL_REQ_TX_STATUS;
1135ce662b44SJohannes Berg 
113640b96408SJohannes Berg 	drv_allow_buffered_frames(local, sta, BIT(tid), 1, reason, false);
113740b96408SJohannes Berg 
113889afe614SJohannes Berg 	skb->dev = sdata->dev;
113989afe614SJohannes Berg 
114055de908aSJohannes Berg 	rcu_read_lock();
114155de908aSJohannes Berg 	chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
114255de908aSJohannes Berg 	if (WARN_ON(!chanctx_conf)) {
114355de908aSJohannes Berg 		rcu_read_unlock();
114455de908aSJohannes Berg 		kfree_skb(skb);
114555de908aSJohannes Berg 		return;
114655de908aSJohannes Berg 	}
114755de908aSJohannes Berg 
11484bf88530SJohannes Berg 	ieee80211_xmit(sdata, skb, chanctx_conf->def.chan->band);
114955de908aSJohannes Berg 	rcu_read_unlock();
1150ce662b44SJohannes Berg }
1151ce662b44SJohannes Berg 
115247086fc5SJohannes Berg static void
115347086fc5SJohannes Berg ieee80211_sta_ps_deliver_response(struct sta_info *sta,
115447086fc5SJohannes Berg 				  int n_frames, u8 ignored_acs,
115547086fc5SJohannes Berg 				  enum ieee80211_frame_release_type reason)
1156af818581SJohannes Berg {
1157af818581SJohannes Berg 	struct ieee80211_sub_if_data *sdata = sta->sdata;
1158af818581SJohannes Berg 	struct ieee80211_local *local = sdata->local;
11594049e09aSJohannes Berg 	bool found = false;
1160948d887dSJohannes Berg 	bool more_data = false;
1161948d887dSJohannes Berg 	int ac;
11624049e09aSJohannes Berg 	unsigned long driver_release_tids = 0;
116347086fc5SJohannes Berg 	struct sk_buff_head frames;
116447086fc5SJohannes Berg 
1165deeaee19SJohannes Berg 	/* Service or PS-Poll period starts */
1166c2c98fdeSJohannes Berg 	set_sta_flag(sta, WLAN_STA_SP);
1167deeaee19SJohannes Berg 
116847086fc5SJohannes Berg 	__skb_queue_head_init(&frames);
1169af818581SJohannes Berg 
1170948d887dSJohannes Berg 	/*
117147086fc5SJohannes Berg 	 * Get response frame(s) and more data bit for it.
1172948d887dSJohannes Berg 	 */
1173948d887dSJohannes Berg 	for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
11744049e09aSJohannes Berg 		unsigned long tids;
11754049e09aSJohannes Berg 
117647086fc5SJohannes Berg 		if (ignored_acs & BIT(ac))
1177948d887dSJohannes Berg 			continue;
1178948d887dSJohannes Berg 
11794049e09aSJohannes Berg 		tids = ieee80211_tids_for_ac(ac);
11804049e09aSJohannes Berg 
11814049e09aSJohannes Berg 		if (!found) {
11824049e09aSJohannes Berg 			driver_release_tids = sta->driver_buffered_tids & tids;
11834049e09aSJohannes Berg 			if (driver_release_tids) {
11844049e09aSJohannes Berg 				found = true;
11854049e09aSJohannes Berg 			} else {
118647086fc5SJohannes Berg 				struct sk_buff *skb;
118747086fc5SJohannes Berg 
118847086fc5SJohannes Berg 				while (n_frames > 0) {
1189948d887dSJohannes Berg 					skb = skb_dequeue(&sta->tx_filtered[ac]);
1190948d887dSJohannes Berg 					if (!skb) {
119147086fc5SJohannes Berg 						skb = skb_dequeue(
119247086fc5SJohannes Berg 							&sta->ps_tx_buf[ac]);
1193af818581SJohannes Berg 						if (skb)
1194af818581SJohannes Berg 							local->total_ps_buffered--;
1195af818581SJohannes Berg 					}
119647086fc5SJohannes Berg 					if (!skb)
119747086fc5SJohannes Berg 						break;
119847086fc5SJohannes Berg 					n_frames--;
11994049e09aSJohannes Berg 					found = true;
120047086fc5SJohannes Berg 					__skb_queue_tail(&frames, skb);
120147086fc5SJohannes Berg 				}
1202948d887dSJohannes Berg 			}
1203948d887dSJohannes Berg 
12044049e09aSJohannes Berg 			/*
12054049e09aSJohannes Berg 			 * If the driver has data on more than one TID then
12064049e09aSJohannes Berg 			 * certainly there's more data if we release just a
12074049e09aSJohannes Berg 			 * single frame now (from a single TID).
12084049e09aSJohannes Berg 			 */
120947086fc5SJohannes Berg 			if (reason == IEEE80211_FRAME_RELEASE_PSPOLL &&
121047086fc5SJohannes Berg 			    hweight16(driver_release_tids) > 1) {
12114049e09aSJohannes Berg 				more_data = true;
12124049e09aSJohannes Berg 				driver_release_tids =
12134049e09aSJohannes Berg 					BIT(ffs(driver_release_tids) - 1);
12144049e09aSJohannes Berg 				break;
12154049e09aSJohannes Berg 			}
12164049e09aSJohannes Berg 		}
1217948d887dSJohannes Berg 
1218948d887dSJohannes Berg 		if (!skb_queue_empty(&sta->tx_filtered[ac]) ||
1219948d887dSJohannes Berg 		    !skb_queue_empty(&sta->ps_tx_buf[ac])) {
1220948d887dSJohannes Berg 			more_data = true;
1221948d887dSJohannes Berg 			break;
1222948d887dSJohannes Berg 		}
1223948d887dSJohannes Berg 	}
1224af818581SJohannes Berg 
12254049e09aSJohannes Berg 	if (!found) {
1226ce662b44SJohannes Berg 		int tid;
12274049e09aSJohannes Berg 
1228ce662b44SJohannes Berg 		/*
1229ce662b44SJohannes Berg 		 * For PS-Poll, this can only happen due to a race condition
1230ce662b44SJohannes Berg 		 * when we set the TIM bit and the station notices it, but
1231ce662b44SJohannes Berg 		 * before it can poll for the frame we expire it.
1232ce662b44SJohannes Berg 		 *
1233ce662b44SJohannes Berg 		 * For uAPSD, this is said in the standard (11.2.1.5 h):
1234ce662b44SJohannes Berg 		 *	At each unscheduled SP for a non-AP STA, the AP shall
1235ce662b44SJohannes Berg 		 *	attempt to transmit at least one MSDU or MMPDU, but no
1236ce662b44SJohannes Berg 		 *	more than the value specified in the Max SP Length field
1237ce662b44SJohannes Berg 		 *	in the QoS Capability element from delivery-enabled ACs,
1238ce662b44SJohannes Berg 		 *	that are destined for the non-AP STA.
1239ce662b44SJohannes Berg 		 *
1240ce662b44SJohannes Berg 		 * Since we have no other MSDU/MMPDU, transmit a QoS null frame.
1241ce662b44SJohannes Berg 		 */
1242ce662b44SJohannes Berg 
1243ce662b44SJohannes Berg 		/* This will evaluate to 1, 3, 5 or 7. */
1244ce662b44SJohannes Berg 		tid = 7 - ((ffs(~ignored_acs) - 1) << 1);
1245ce662b44SJohannes Berg 
124640b96408SJohannes Berg 		ieee80211_send_null_response(sdata, sta, tid, reason);
12474049e09aSJohannes Berg 		return;
12484049e09aSJohannes Berg 	}
12494049e09aSJohannes Berg 
125047086fc5SJohannes Berg 	if (!driver_release_tids) {
125147086fc5SJohannes Berg 		struct sk_buff_head pending;
125247086fc5SJohannes Berg 		struct sk_buff *skb;
125340b96408SJohannes Berg 		int num = 0;
125440b96408SJohannes Berg 		u16 tids = 0;
125547086fc5SJohannes Berg 
125647086fc5SJohannes Berg 		skb_queue_head_init(&pending);
125747086fc5SJohannes Berg 
125847086fc5SJohannes Berg 		while ((skb = __skb_dequeue(&frames))) {
1259af818581SJohannes Berg 			struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
126047086fc5SJohannes Berg 			struct ieee80211_hdr *hdr = (void *) skb->data;
126140b96408SJohannes Berg 			u8 *qoshdr = NULL;
126240b96408SJohannes Berg 
126340b96408SJohannes Berg 			num++;
1264af818581SJohannes Berg 
1265af818581SJohannes Berg 			/*
126647086fc5SJohannes Berg 			 * Tell TX path to send this frame even though the
126747086fc5SJohannes Berg 			 * STA may still remain is PS mode after this frame
126847086fc5SJohannes Berg 			 * exchange.
1269af818581SJohannes Berg 			 */
127002f2f1a9SJohannes Berg 			info->flags |= IEEE80211_TX_CTL_NO_PS_BUFFER;
1271af818581SJohannes Berg 
127247086fc5SJohannes Berg 			/*
127347086fc5SJohannes Berg 			 * Use MoreData flag to indicate whether there are
127447086fc5SJohannes Berg 			 * more buffered frames for this STA
127547086fc5SJohannes Berg 			 */
127624b9c373SJanusz.Dziedzic@tieto.com 			if (more_data || !skb_queue_empty(&frames))
127747086fc5SJohannes Berg 				hdr->frame_control |=
127847086fc5SJohannes Berg 					cpu_to_le16(IEEE80211_FCTL_MOREDATA);
127924b9c373SJanusz.Dziedzic@tieto.com 			else
128024b9c373SJanusz.Dziedzic@tieto.com 				hdr->frame_control &=
128124b9c373SJanusz.Dziedzic@tieto.com 					cpu_to_le16(~IEEE80211_FCTL_MOREDATA);
1282af818581SJohannes Berg 
128340b96408SJohannes Berg 			if (ieee80211_is_data_qos(hdr->frame_control) ||
128440b96408SJohannes Berg 			    ieee80211_is_qos_nullfunc(hdr->frame_control))
128540b96408SJohannes Berg 				qoshdr = ieee80211_get_qos_ctl(hdr);
128640b96408SJohannes Berg 
128752a3f20cSMarco Porsch 			/* end service period after last frame */
128852a3f20cSMarco Porsch 			if (skb_queue_empty(&frames)) {
128940b96408SJohannes Berg 				if (reason == IEEE80211_FRAME_RELEASE_UAPSD &&
129052a3f20cSMarco Porsch 				    qoshdr)
129140b96408SJohannes Berg 					*qoshdr |= IEEE80211_QOS_CTL_EOSP;
1292deeaee19SJohannes Berg 
129347086fc5SJohannes Berg 				info->flags |= IEEE80211_TX_STATUS_EOSP |
129447086fc5SJohannes Berg 					       IEEE80211_TX_CTL_REQ_TX_STATUS;
129552a3f20cSMarco Porsch 			}
129647086fc5SJohannes Berg 
129740b96408SJohannes Berg 			if (qoshdr)
129840b96408SJohannes Berg 				tids |= BIT(*qoshdr & IEEE80211_QOS_CTL_TID_MASK);
129940b96408SJohannes Berg 			else
130040b96408SJohannes Berg 				tids |= BIT(0);
130140b96408SJohannes Berg 
130247086fc5SJohannes Berg 			__skb_queue_tail(&pending, skb);
130347086fc5SJohannes Berg 		}
130447086fc5SJohannes Berg 
130540b96408SJohannes Berg 		drv_allow_buffered_frames(local, sta, tids, num,
130640b96408SJohannes Berg 					  reason, more_data);
130740b96408SJohannes Berg 
130847086fc5SJohannes Berg 		ieee80211_add_pending_skbs(local, &pending);
1309af818581SJohannes Berg 
1310c868cb35SJohannes Berg 		sta_info_recalc_tim(sta);
1311af818581SJohannes Berg 	} else {
1312af818581SJohannes Berg 		/*
13134049e09aSJohannes Berg 		 * We need to release a frame that is buffered somewhere in the
13144049e09aSJohannes Berg 		 * driver ... it'll have to handle that.
13154049e09aSJohannes Berg 		 * Note that, as per the comment above, it'll also have to see
13164049e09aSJohannes Berg 		 * if there is more than just one frame on the specific TID that
13174049e09aSJohannes Berg 		 * we're releasing from, and it needs to set the more-data bit
13184049e09aSJohannes Berg 		 * accordingly if we tell it that there's no more data. If we do
13194049e09aSJohannes Berg 		 * tell it there's more data, then of course the more-data bit
13204049e09aSJohannes Berg 		 * needs to be set anyway.
1321af818581SJohannes Berg 		 */
13224049e09aSJohannes Berg 		drv_release_buffered_frames(local, sta, driver_release_tids,
132347086fc5SJohannes Berg 					    n_frames, reason, more_data);
13244049e09aSJohannes Berg 
13254049e09aSJohannes Berg 		/*
13264049e09aSJohannes Berg 		 * Note that we don't recalculate the TIM bit here as it would
13274049e09aSJohannes Berg 		 * most likely have no effect at all unless the driver told us
13284049e09aSJohannes Berg 		 * that the TID became empty before returning here from the
13294049e09aSJohannes Berg 		 * release function.
13304049e09aSJohannes Berg 		 * Either way, however, when the driver tells us that the TID
13314049e09aSJohannes Berg 		 * became empty we'll do the TIM recalculation.
13324049e09aSJohannes Berg 		 */
1333af818581SJohannes Berg 	}
1334af818581SJohannes Berg }
1335af818581SJohannes Berg 
1336af818581SJohannes Berg void ieee80211_sta_ps_deliver_poll_response(struct sta_info *sta)
1337af818581SJohannes Berg {
133847086fc5SJohannes Berg 	u8 ignore_for_response = sta->sta.uapsd_queues;
1339af818581SJohannes Berg 
1340af818581SJohannes Berg 	/*
134147086fc5SJohannes Berg 	 * If all ACs are delivery-enabled then we should reply
134247086fc5SJohannes Berg 	 * from any of them, if only some are enabled we reply
134347086fc5SJohannes Berg 	 * only from the non-enabled ones.
1344af818581SJohannes Berg 	 */
134547086fc5SJohannes Berg 	if (ignore_for_response == BIT(IEEE80211_NUM_ACS) - 1)
134647086fc5SJohannes Berg 		ignore_for_response = 0;
1347af818581SJohannes Berg 
134847086fc5SJohannes Berg 	ieee80211_sta_ps_deliver_response(sta, 1, ignore_for_response,
134947086fc5SJohannes Berg 					  IEEE80211_FRAME_RELEASE_PSPOLL);
1350af818581SJohannes Berg }
135147086fc5SJohannes Berg 
135247086fc5SJohannes Berg void ieee80211_sta_ps_deliver_uapsd(struct sta_info *sta)
135347086fc5SJohannes Berg {
135447086fc5SJohannes Berg 	int n_frames = sta->sta.max_sp;
135547086fc5SJohannes Berg 	u8 delivery_enabled = sta->sta.uapsd_queues;
135647086fc5SJohannes Berg 
135747086fc5SJohannes Berg 	/*
135847086fc5SJohannes Berg 	 * If we ever grow support for TSPEC this might happen if
135947086fc5SJohannes Berg 	 * the TSPEC update from hostapd comes in between a trigger
136047086fc5SJohannes Berg 	 * frame setting WLAN_STA_UAPSD in the RX path and this
136147086fc5SJohannes Berg 	 * actually getting called.
136247086fc5SJohannes Berg 	 */
136347086fc5SJohannes Berg 	if (!delivery_enabled)
136447086fc5SJohannes Berg 		return;
136547086fc5SJohannes Berg 
136647086fc5SJohannes Berg 	switch (sta->sta.max_sp) {
136747086fc5SJohannes Berg 	case 1:
136847086fc5SJohannes Berg 		n_frames = 2;
136947086fc5SJohannes Berg 		break;
137047086fc5SJohannes Berg 	case 2:
137147086fc5SJohannes Berg 		n_frames = 4;
137247086fc5SJohannes Berg 		break;
137347086fc5SJohannes Berg 	case 3:
137447086fc5SJohannes Berg 		n_frames = 6;
137547086fc5SJohannes Berg 		break;
137647086fc5SJohannes Berg 	case 0:
137747086fc5SJohannes Berg 		/* XXX: what is a good value? */
137847086fc5SJohannes Berg 		n_frames = 8;
137947086fc5SJohannes Berg 		break;
138047086fc5SJohannes Berg 	}
138147086fc5SJohannes Berg 
138247086fc5SJohannes Berg 	ieee80211_sta_ps_deliver_response(sta, n_frames, ~delivery_enabled,
138347086fc5SJohannes Berg 					  IEEE80211_FRAME_RELEASE_UAPSD);
1384af818581SJohannes Berg }
1385af818581SJohannes Berg 
1386af818581SJohannes Berg void ieee80211_sta_block_awake(struct ieee80211_hw *hw,
1387af818581SJohannes Berg 			       struct ieee80211_sta *pubsta, bool block)
1388af818581SJohannes Berg {
1389af818581SJohannes Berg 	struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
1390af818581SJohannes Berg 
1391b5878a2dSJohannes Berg 	trace_api_sta_block_awake(sta->local, pubsta, block);
1392b5878a2dSJohannes Berg 
1393af818581SJohannes Berg 	if (block)
1394c2c98fdeSJohannes Berg 		set_sta_flag(sta, WLAN_STA_PS_DRIVER);
1395c2c98fdeSJohannes Berg 	else if (test_sta_flag(sta, WLAN_STA_PS_DRIVER))
1396af818581SJohannes Berg 		ieee80211_queue_work(hw, &sta->drv_unblock_wk);
1397af818581SJohannes Berg }
1398af818581SJohannes Berg EXPORT_SYMBOL(ieee80211_sta_block_awake);
1399dcf55fb5SFelix Fietkau 
1400e943789eSJohannes Berg void ieee80211_sta_eosp(struct ieee80211_sta *pubsta)
140137fbd908SJohannes Berg {
140237fbd908SJohannes Berg 	struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
140337fbd908SJohannes Berg 	struct ieee80211_local *local = sta->local;
140437fbd908SJohannes Berg 
140537fbd908SJohannes Berg 	trace_api_eosp(local, pubsta);
140637fbd908SJohannes Berg 
140737fbd908SJohannes Berg 	clear_sta_flag(sta, WLAN_STA_SP);
140837fbd908SJohannes Berg }
1409e943789eSJohannes Berg EXPORT_SYMBOL(ieee80211_sta_eosp);
141037fbd908SJohannes Berg 
1411042ec453SJohannes Berg void ieee80211_sta_set_buffered(struct ieee80211_sta *pubsta,
1412042ec453SJohannes Berg 				u8 tid, bool buffered)
1413dcf55fb5SFelix Fietkau {
1414dcf55fb5SFelix Fietkau 	struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
1415dcf55fb5SFelix Fietkau 
14165a306f58SJohannes Berg 	if (WARN_ON(tid >= IEEE80211_NUM_TIDS))
1417042ec453SJohannes Berg 		return;
1418042ec453SJohannes Berg 
1419948d887dSJohannes Berg 	if (buffered)
1420948d887dSJohannes Berg 		set_bit(tid, &sta->driver_buffered_tids);
1421948d887dSJohannes Berg 	else
1422948d887dSJohannes Berg 		clear_bit(tid, &sta->driver_buffered_tids);
1423948d887dSJohannes Berg 
1424c868cb35SJohannes Berg 	sta_info_recalc_tim(sta);
1425dcf55fb5SFelix Fietkau }
1426042ec453SJohannes Berg EXPORT_SYMBOL(ieee80211_sta_set_buffered);
1427d9a7ddb0SJohannes Berg 
142883d5cc01SJohannes Berg int sta_info_move_state(struct sta_info *sta,
1429d9a7ddb0SJohannes Berg 			enum ieee80211_sta_state new_state)
1430d9a7ddb0SJohannes Berg {
14318bf11d8dSJohannes Berg 	might_sleep();
1432d9a7ddb0SJohannes Berg 
1433d9a7ddb0SJohannes Berg 	if (sta->sta_state == new_state)
1434d9a7ddb0SJohannes Berg 		return 0;
1435d9a7ddb0SJohannes Berg 
1436f09603a2SJohannes Berg 	/* check allowed transitions first */
1437f09603a2SJohannes Berg 
1438d9a7ddb0SJohannes Berg 	switch (new_state) {
1439d9a7ddb0SJohannes Berg 	case IEEE80211_STA_NONE:
1440f09603a2SJohannes Berg 		if (sta->sta_state != IEEE80211_STA_AUTH)
1441d9a7ddb0SJohannes Berg 			return -EINVAL;
1442d9a7ddb0SJohannes Berg 		break;
1443d9a7ddb0SJohannes Berg 	case IEEE80211_STA_AUTH:
1444f09603a2SJohannes Berg 		if (sta->sta_state != IEEE80211_STA_NONE &&
1445f09603a2SJohannes Berg 		    sta->sta_state != IEEE80211_STA_ASSOC)
1446d9a7ddb0SJohannes Berg 			return -EINVAL;
1447d9a7ddb0SJohannes Berg 		break;
1448d9a7ddb0SJohannes Berg 	case IEEE80211_STA_ASSOC:
1449f09603a2SJohannes Berg 		if (sta->sta_state != IEEE80211_STA_AUTH &&
1450f09603a2SJohannes Berg 		    sta->sta_state != IEEE80211_STA_AUTHORIZED)
1451d9a7ddb0SJohannes Berg 			return -EINVAL;
1452d9a7ddb0SJohannes Berg 		break;
1453d9a7ddb0SJohannes Berg 	case IEEE80211_STA_AUTHORIZED:
1454f09603a2SJohannes Berg 		if (sta->sta_state != IEEE80211_STA_ASSOC)
1455d9a7ddb0SJohannes Berg 			return -EINVAL;
1456d9a7ddb0SJohannes Berg 		break;
1457d9a7ddb0SJohannes Berg 	default:
1458d9a7ddb0SJohannes Berg 		WARN(1, "invalid state %d", new_state);
1459d9a7ddb0SJohannes Berg 		return -EINVAL;
1460d9a7ddb0SJohannes Berg 	}
1461d9a7ddb0SJohannes Berg 
1462bdcbd8e0SJohannes Berg 	sta_dbg(sta->sdata, "moving STA %pM to state %d\n",
1463bdcbd8e0SJohannes Berg 		sta->sta.addr, new_state);
1464f09603a2SJohannes Berg 
1465f09603a2SJohannes Berg 	/*
1466f09603a2SJohannes Berg 	 * notify the driver before the actual changes so it can
1467f09603a2SJohannes Berg 	 * fail the transition
1468f09603a2SJohannes Berg 	 */
1469f09603a2SJohannes Berg 	if (test_sta_flag(sta, WLAN_STA_INSERTED)) {
1470f09603a2SJohannes Berg 		int err = drv_sta_state(sta->local, sta->sdata, sta,
1471f09603a2SJohannes Berg 					sta->sta_state, new_state);
1472f09603a2SJohannes Berg 		if (err)
1473f09603a2SJohannes Berg 			return err;
1474f09603a2SJohannes Berg 	}
1475f09603a2SJohannes Berg 
1476f09603a2SJohannes Berg 	/* reflect the change in all state variables */
1477f09603a2SJohannes Berg 
1478f09603a2SJohannes Berg 	switch (new_state) {
1479f09603a2SJohannes Berg 	case IEEE80211_STA_NONE:
1480f09603a2SJohannes Berg 		if (sta->sta_state == IEEE80211_STA_AUTH)
1481f09603a2SJohannes Berg 			clear_bit(WLAN_STA_AUTH, &sta->_flags);
1482f09603a2SJohannes Berg 		break;
1483f09603a2SJohannes Berg 	case IEEE80211_STA_AUTH:
1484f09603a2SJohannes Berg 		if (sta->sta_state == IEEE80211_STA_NONE)
1485f09603a2SJohannes Berg 			set_bit(WLAN_STA_AUTH, &sta->_flags);
1486f09603a2SJohannes Berg 		else if (sta->sta_state == IEEE80211_STA_ASSOC)
1487f09603a2SJohannes Berg 			clear_bit(WLAN_STA_ASSOC, &sta->_flags);
1488f09603a2SJohannes Berg 		break;
1489f09603a2SJohannes Berg 	case IEEE80211_STA_ASSOC:
1490f09603a2SJohannes Berg 		if (sta->sta_state == IEEE80211_STA_AUTH) {
1491f09603a2SJohannes Berg 			set_bit(WLAN_STA_ASSOC, &sta->_flags);
1492f09603a2SJohannes Berg 		} else if (sta->sta_state == IEEE80211_STA_AUTHORIZED) {
14937e3ed02cSFelix Fietkau 			if (sta->sdata->vif.type == NL80211_IFTYPE_AP ||
14947e3ed02cSFelix Fietkau 			    (sta->sdata->vif.type == NL80211_IFTYPE_AP_VLAN &&
14957e3ed02cSFelix Fietkau 			     !sta->sdata->u.vlan.sta))
14967e3ed02cSFelix Fietkau 				atomic_dec(&sta->sdata->bss->num_mcast_sta);
1497f09603a2SJohannes Berg 			clear_bit(WLAN_STA_AUTHORIZED, &sta->_flags);
1498f09603a2SJohannes Berg 		}
1499f09603a2SJohannes Berg 		break;
1500f09603a2SJohannes Berg 	case IEEE80211_STA_AUTHORIZED:
1501f09603a2SJohannes Berg 		if (sta->sta_state == IEEE80211_STA_ASSOC) {
15027e3ed02cSFelix Fietkau 			if (sta->sdata->vif.type == NL80211_IFTYPE_AP ||
15037e3ed02cSFelix Fietkau 			    (sta->sdata->vif.type == NL80211_IFTYPE_AP_VLAN &&
15047e3ed02cSFelix Fietkau 			     !sta->sdata->u.vlan.sta))
15057e3ed02cSFelix Fietkau 				atomic_inc(&sta->sdata->bss->num_mcast_sta);
1506f09603a2SJohannes Berg 			set_bit(WLAN_STA_AUTHORIZED, &sta->_flags);
1507f09603a2SJohannes Berg 		}
1508f09603a2SJohannes Berg 		break;
1509f09603a2SJohannes Berg 	default:
1510f09603a2SJohannes Berg 		break;
1511f09603a2SJohannes Berg 	}
1512f09603a2SJohannes Berg 
1513d9a7ddb0SJohannes Berg 	sta->sta_state = new_state;
1514d9a7ddb0SJohannes Berg 
1515d9a7ddb0SJohannes Berg 	return 0;
1516d9a7ddb0SJohannes Berg }
1517