blob: decd30c1e29053d9a5e3ea56c7ccb66a7407578d [file] [log] [blame]
Jiri Bencf0706e82007-05-05 11:45:53 -07001/*
2 * Copyright 2002-2005, Instant802 Networks, Inc.
3 * Copyright 2006-2007 Jiri Benc <jbenc@suse.cz>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
8 */
9
10#include <linux/module.h>
11#include <linux/init.h>
Felix Fietkau888d04d2012-03-01 15:22:09 +010012#include <linux/etherdevice.h>
Jiri Bencf0706e82007-05-05 11:45:53 -070013#include <linux/netdevice.h>
14#include <linux/types.h>
15#include <linux/slab.h>
16#include <linux/skbuff.h>
17#include <linux/if_arp.h>
Johannes Berg0d174402007-12-17 15:07:43 +010018#include <linux/timer.h>
Johannes Bergd0709a62008-02-25 16:27:46 +010019#include <linux/rtnetlink.h>
Jiri Bencf0706e82007-05-05 11:45:53 -070020
21#include <net/mac80211.h>
22#include "ieee80211_i.h"
Johannes Berg24487982009-04-23 18:52:52 +020023#include "driver-ops.h"
Johannes Berg2c8dccc2008-04-08 15:14:40 -040024#include "rate.h"
Jiri Bencf0706e82007-05-05 11:45:53 -070025#include "sta_info.h"
Jiri Bence9f207f2007-05-05 11:46:38 -070026#include "debugfs_sta.h"
Luis Carlos Coboee385852008-02-23 15:17:11 +010027#include "mesh.h"
Johannes Bergce662b442011-09-29 16:04:34 +020028#include "wme.h"
Jiri Bencf0706e82007-05-05 11:45:53 -070029
Johannes Bergd0709a62008-02-25 16:27:46 +010030/**
31 * DOC: STA information lifetime rules
32 *
33 * STA info structures (&struct sta_info) are managed in a hash table
34 * for faster lookup and a list for iteration. They are managed using
35 * RCU, i.e. access to the list and hash table is protected by RCU.
36 *
Johannes Berg34e89502010-02-03 13:59:58 +010037 * Upon allocating a STA info structure with sta_info_alloc(), the caller
38 * owns that structure. It must then insert it into the hash table using
39 * either sta_info_insert() or sta_info_insert_rcu(); only in the latter
40 * case (which acquires an rcu read section but must not be called from
41 * within one) will the pointer still be valid after the call. Note that
42 * the caller may not do much with the STA info before inserting it, in
43 * particular, it may not start any mesh peer link management or add
44 * encryption keys.
Johannes Berg93e5deb2008-04-01 15:21:00 +020045 *
46 * When the insertion fails (sta_info_insert()) returns non-zero), the
47 * structure will have been freed by sta_info_insert()!
Johannes Bergd0709a62008-02-25 16:27:46 +010048 *
Johannes Berg34e89502010-02-03 13:59:58 +010049 * Station entries are added by mac80211 when you establish a link with a
Luis R. Rodriguez7e189a12009-06-02 18:38:14 -040050 * peer. This means different things for the different type of interfaces
51 * we support. For a regular station this mean we add the AP sta when we
Lucas De Marchi25985ed2011-03-30 22:57:33 -030052 * receive an association response from the AP. For IBSS this occurs when
Johannes Berg34e89502010-02-03 13:59:58 +010053 * get to know about a peer on the same IBSS. For WDS we add the sta for
Lucas De Marchi25985ed2011-03-30 22:57:33 -030054 * the peer immediately upon device open. When using AP mode we add stations
Johannes Berg34e89502010-02-03 13:59:58 +010055 * for each respective station upon request from userspace through nl80211.
Luis R. Rodriguez7e189a12009-06-02 18:38:14 -040056 *
Johannes Berg34e89502010-02-03 13:59:58 +010057 * In order to remove a STA info structure, various sta_info_destroy_*()
58 * calls are available.
Johannes Bergd0709a62008-02-25 16:27:46 +010059 *
Johannes Berg34e89502010-02-03 13:59:58 +010060 * There is no concept of ownership on a STA entry, each structure is
61 * owned by the global hash table/list until it is removed. All users of
62 * the structure need to be RCU protected so that the structure won't be
63 * freed before they are done using it.
Johannes Bergd0709a62008-02-25 16:27:46 +010064 */
Jiri Bencf0706e82007-05-05 11:45:53 -070065
Johannes Berg4d339602011-12-15 11:24:20 +010066/* Caller must hold local->sta_mtx */
Michael Wube8755e2007-07-27 15:43:23 +020067static int sta_info_hash_del(struct ieee80211_local *local,
68 struct sta_info *sta)
Jiri Bencf0706e82007-05-05 11:45:53 -070069{
70 struct sta_info *s;
71
Johannes Berg40b275b2011-05-13 14:15:49 +020072 s = rcu_dereference_protected(local->sta_hash[STA_HASH(sta->sta.addr)],
Johannes Berg4d339602011-12-15 11:24:20 +010073 lockdep_is_held(&local->sta_mtx));
Jiri Bencf0706e82007-05-05 11:45:53 -070074 if (!s)
Michael Wube8755e2007-07-27 15:43:23 +020075 return -ENOENT;
76 if (s == sta) {
Eric Dumazetcf778b02012-01-12 04:41:32 +000077 rcu_assign_pointer(local->sta_hash[STA_HASH(sta->sta.addr)],
Johannes Bergd0709a62008-02-25 16:27:46 +010078 s->hnext);
Michael Wube8755e2007-07-27 15:43:23 +020079 return 0;
Jiri Bencf0706e82007-05-05 11:45:53 -070080 }
81
Johannes Berg40b275b2011-05-13 14:15:49 +020082 while (rcu_access_pointer(s->hnext) &&
83 rcu_access_pointer(s->hnext) != sta)
84 s = rcu_dereference_protected(s->hnext,
Johannes Berg4d339602011-12-15 11:24:20 +010085 lockdep_is_held(&local->sta_mtx));
Johannes Berg40b275b2011-05-13 14:15:49 +020086 if (rcu_access_pointer(s->hnext)) {
Eric Dumazetcf778b02012-01-12 04:41:32 +000087 rcu_assign_pointer(s->hnext, sta->hnext);
Michael Wube8755e2007-07-27 15:43:23 +020088 return 0;
89 }
Jiri Bencf0706e82007-05-05 11:45:53 -070090
Michael Wube8755e2007-07-27 15:43:23 +020091 return -ENOENT;
Jiri Bencf0706e82007-05-05 11:45:53 -070092}
93
Johannes Berg97f97b12012-12-13 22:54:58 +010094static void cleanup_single_sta(struct sta_info *sta)
Eliad Pellerb22cfcf2012-09-09 14:43:51 +030095{
Eliad Pellerb22cfcf2012-09-09 14:43:51 +030096 int ac, i;
97 struct tid_ampdu_tx *tid_tx;
98 struct ieee80211_sub_if_data *sdata = sta->sdata;
99 struct ieee80211_local *local = sdata->local;
Marco Porschd012a602012-10-10 12:39:50 -0700100 struct ps_data *ps;
Eliad Pellerb22cfcf2012-09-09 14:43:51 +0300101
Eliad Pellerb22cfcf2012-09-09 14:43:51 +0300102 if (test_sta_flag(sta, WLAN_STA_PS_STA)) {
Marco Porschd012a602012-10-10 12:39:50 -0700103 if (sta->sdata->vif.type == NL80211_IFTYPE_AP ||
104 sta->sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
105 ps = &sdata->bss->ps;
Marco Porsch3f52b7e2013-01-30 18:14:08 +0100106 else if (ieee80211_vif_is_mesh(&sdata->vif))
107 ps = &sdata->u.mesh.ps;
Marco Porschd012a602012-10-10 12:39:50 -0700108 else
109 return;
Eliad Pellerb22cfcf2012-09-09 14:43:51 +0300110
111 clear_sta_flag(sta, WLAN_STA_PS_STA);
112
Marco Porschd012a602012-10-10 12:39:50 -0700113 atomic_dec(&ps->num_sta_ps);
Eliad Pellerb22cfcf2012-09-09 14:43:51 +0300114 sta_info_recalc_tim(sta);
115 }
116
117 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
118 local->total_ps_buffered -= skb_queue_len(&sta->ps_tx_buf[ac]);
Felix Fietkau1f98ab72012-11-10 03:44:14 +0100119 ieee80211_purge_tx_queue(&local->hw, &sta->ps_tx_buf[ac]);
120 ieee80211_purge_tx_queue(&local->hw, &sta->tx_filtered[ac]);
Eliad Pellerb22cfcf2012-09-09 14:43:51 +0300121 }
122
Thomas Pedersen45b50282013-02-06 10:17:21 -0800123 if (ieee80211_vif_is_mesh(&sdata->vif))
124 mesh_sta_cleanup(sta);
Eliad Pellerb22cfcf2012-09-09 14:43:51 +0300125
126 cancel_work_sync(&sta->drv_unblock_wk);
127
128 /*
129 * Destroy aggregation state here. It would be nice to wait for the
130 * driver to finish aggregation stop and then clean up, but for now
131 * drivers have to handle aggregation stop being requested, followed
132 * directly by station destruction.
133 */
Johannes Berg5a306f52012-11-14 23:22:21 +0100134 for (i = 0; i < IEEE80211_NUM_TIDS; i++) {
Johannes Berg661eb382013-06-12 22:47:56 +0200135 kfree(sta->ampdu_mlme.tid_start_tx[i]);
Eliad Pellerb22cfcf2012-09-09 14:43:51 +0300136 tid_tx = rcu_dereference_raw(sta->ampdu_mlme.tid_tx[i]);
137 if (!tid_tx)
138 continue;
Felix Fietkau1f98ab72012-11-10 03:44:14 +0100139 ieee80211_purge_tx_queue(&local->hw, &tid_tx->pending);
Eliad Pellerb22cfcf2012-09-09 14:43:51 +0300140 kfree(tid_tx);
141 }
142
143 sta_info_free(local, sta);
144}
145
Johannes Bergd0709a62008-02-25 16:27:46 +0100146/* protected by RCU */
Johannes Bergabe60632009-11-25 17:46:18 +0100147struct sta_info *sta_info_get(struct ieee80211_sub_if_data *sdata,
148 const u8 *addr)
Johannes Berg43ba7e92008-02-21 14:09:30 +0100149{
Johannes Bergabe60632009-11-25 17:46:18 +0100150 struct ieee80211_local *local = sdata->local;
Johannes Berg43ba7e92008-02-21 14:09:30 +0100151 struct sta_info *sta;
152
Johannes Berg03791852010-04-06 11:18:42 +0200153 sta = rcu_dereference_check(local->sta_hash[STA_HASH(addr)],
Johannes Berg03791852010-04-06 11:18:42 +0200154 lockdep_is_held(&local->sta_mtx));
Johannes Berg43ba7e92008-02-21 14:09:30 +0100155 while (sta) {
Johannes Bergabe60632009-11-25 17:46:18 +0100156 if (sta->sdata == sdata &&
Joe Perchesb203ca32012-05-08 18:56:52 +0000157 ether_addr_equal(sta->sta.addr, addr))
Johannes Berg43ba7e92008-02-21 14:09:30 +0100158 break;
Johannes Berg03791852010-04-06 11:18:42 +0200159 sta = rcu_dereference_check(sta->hnext,
Johannes Berg03791852010-04-06 11:18:42 +0200160 lockdep_is_held(&local->sta_mtx));
Johannes Berg43ba7e92008-02-21 14:09:30 +0100161 }
162 return sta;
163}
164
Felix Fietkau0e5ded52010-01-08 18:10:58 +0100165/*
166 * Get sta info either from the specified interface
167 * or from one of its vlans
168 */
169struct sta_info *sta_info_get_bss(struct ieee80211_sub_if_data *sdata,
170 const u8 *addr)
171{
172 struct ieee80211_local *local = sdata->local;
173 struct sta_info *sta;
174
Johannes Berg03791852010-04-06 11:18:42 +0200175 sta = rcu_dereference_check(local->sta_hash[STA_HASH(addr)],
Johannes Berg03791852010-04-06 11:18:42 +0200176 lockdep_is_held(&local->sta_mtx));
Felix Fietkau0e5ded52010-01-08 18:10:58 +0100177 while (sta) {
178 if ((sta->sdata == sdata ||
Johannes Berga2c1e3d2010-09-14 21:34:14 +0200179 (sta->sdata->bss && sta->sdata->bss == sdata->bss)) &&
Joe Perchesb203ca32012-05-08 18:56:52 +0000180 ether_addr_equal(sta->sta.addr, addr))
Felix Fietkau0e5ded52010-01-08 18:10:58 +0100181 break;
Johannes Berg03791852010-04-06 11:18:42 +0200182 sta = rcu_dereference_check(sta->hnext,
Johannes Berg03791852010-04-06 11:18:42 +0200183 lockdep_is_held(&local->sta_mtx));
Felix Fietkau0e5ded52010-01-08 18:10:58 +0100184 }
185 return sta;
186}
187
Johannes Berg3b53fde82009-11-16 12:00:37 +0100188struct sta_info *sta_info_get_by_idx(struct ieee80211_sub_if_data *sdata,
189 int idx)
Luis Carlos Coboee385852008-02-23 15:17:11 +0100190{
Johannes Berg3b53fde82009-11-16 12:00:37 +0100191 struct ieee80211_local *local = sdata->local;
Luis Carlos Coboee385852008-02-23 15:17:11 +0100192 struct sta_info *sta;
193 int i = 0;
194
Johannes Bergd0709a62008-02-25 16:27:46 +0100195 list_for_each_entry_rcu(sta, &local->sta_list, list) {
Johannes Berg3b53fde82009-11-16 12:00:37 +0100196 if (sdata != sta->sdata)
Luis Carlos Cobo2a8ca292008-02-29 17:51:25 -0800197 continue;
Luis Carlos Coboee385852008-02-23 15:17:11 +0100198 if (i < idx) {
199 ++i;
200 continue;
Luis Carlos Coboee385852008-02-23 15:17:11 +0100201 }
Luis Carlos Cobo2a8ca292008-02-29 17:51:25 -0800202 return sta;
Luis Carlos Coboee385852008-02-23 15:17:11 +0100203 }
Luis Carlos Coboee385852008-02-23 15:17:11 +0100204
205 return NULL;
206}
Jiri Bencf0706e82007-05-05 11:45:53 -0700207
Johannes Berg93e5deb2008-04-01 15:21:00 +0200208/**
Johannes Bergd9a7ddb2011-12-14 12:35:30 +0100209 * sta_info_free - free STA
Johannes Berg93e5deb2008-04-01 15:21:00 +0200210 *
Randy Dunlap6ef307b2008-07-03 13:52:18 -0700211 * @local: pointer to the global information
Johannes Berg93e5deb2008-04-01 15:21:00 +0200212 * @sta: STA info to free
213 *
214 * This function must undo everything done by sta_info_alloc()
Johannes Bergd9a7ddb2011-12-14 12:35:30 +0100215 * that may happen before sta_info_insert(). It may only be
216 * called when sta_info_insert() has not been attempted (and
217 * if that fails, the station is freed anyway.)
Johannes Berg93e5deb2008-04-01 15:21:00 +0200218 */
Johannes Bergd9a7ddb2011-12-14 12:35:30 +0100219void sta_info_free(struct ieee80211_local *local, struct sta_info *sta)
Johannes Berg93e5deb2008-04-01 15:21:00 +0200220{
Matti Gottliebad38bfc2013-11-18 19:06:45 +0200221 int i;
222
Johannes Berg889cbb92012-01-17 10:33:29 +0100223 if (sta->rate_ctrl)
Johannes Bergaf65cd962009-11-17 18:18:36 +0100224 rate_control_free_sta(sta);
Johannes Berg93e5deb2008-04-01 15:21:00 +0200225
Matti Gottliebad38bfc2013-11-18 19:06:45 +0200226 if (sta->tx_lat) {
227 for (i = 0; i < IEEE80211_NUM_TIDS; i++)
228 kfree(sta->tx_lat[i].bins);
229 kfree(sta->tx_lat);
230 }
231
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200232 sta_dbg(sta->sdata, "Destroyed STA %pM\n", sta->sta.addr);
Johannes Berg93e5deb2008-04-01 15:21:00 +0200233
234 kfree(sta);
235}
236
Johannes Berg4d339602011-12-15 11:24:20 +0100237/* Caller must hold local->sta_mtx */
Johannes Bergd0709a62008-02-25 16:27:46 +0100238static void sta_info_hash_add(struct ieee80211_local *local,
239 struct sta_info *sta)
Jiri Bencf0706e82007-05-05 11:45:53 -0700240{
Johannes Berg4d339602011-12-15 11:24:20 +0100241 lockdep_assert_held(&local->sta_mtx);
Johannes Berg17741cd2008-09-11 00:02:02 +0200242 sta->hnext = local->sta_hash[STA_HASH(sta->sta.addr)];
Eric Dumazetcf778b02012-01-12 04:41:32 +0000243 rcu_assign_pointer(local->sta_hash[STA_HASH(sta->sta.addr)], sta);
Jiri Bencf0706e82007-05-05 11:45:53 -0700244}
Jiri Bencf0706e82007-05-05 11:45:53 -0700245
Johannes Bergaf818582009-11-06 11:35:50 +0100246static void sta_unblock(struct work_struct *wk)
247{
248 struct sta_info *sta;
249
250 sta = container_of(wk, struct sta_info, drv_unblock_wk);
251
252 if (sta->dead)
253 return;
254
Helmut Schaa54420472012-01-17 09:22:49 +0100255 if (!test_sta_flag(sta, WLAN_STA_PS_STA)) {
256 local_bh_disable();
Johannes Bergaf818582009-11-06 11:35:50 +0100257 ieee80211_sta_ps_deliver_wakeup(sta);
Helmut Schaa54420472012-01-17 09:22:49 +0100258 local_bh_enable();
259 } else if (test_and_clear_sta_flag(sta, WLAN_STA_PSPOLL)) {
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200260 clear_sta_flag(sta, WLAN_STA_PS_DRIVER);
Johannes Bergce662b442011-09-29 16:04:34 +0200261
262 local_bh_disable();
Johannes Bergaf818582009-11-06 11:35:50 +0100263 ieee80211_sta_ps_deliver_poll_response(sta);
Johannes Bergce662b442011-09-29 16:04:34 +0200264 local_bh_enable();
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200265 } else if (test_and_clear_sta_flag(sta, WLAN_STA_UAPSD)) {
266 clear_sta_flag(sta, WLAN_STA_PS_DRIVER);
Johannes Bergce662b442011-09-29 16:04:34 +0200267
268 local_bh_disable();
Johannes Berg47086fc2011-09-29 16:04:33 +0200269 ieee80211_sta_ps_deliver_uapsd(sta);
Johannes Bergce662b442011-09-29 16:04:34 +0200270 local_bh_enable();
Johannes Berg50a94322010-11-16 11:50:28 -0800271 } else
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200272 clear_sta_flag(sta, WLAN_STA_PS_DRIVER);
Johannes Bergaf818582009-11-06 11:35:50 +0100273}
274
Johannes Bergaf65cd962009-11-17 18:18:36 +0100275static int sta_prepare_rate_control(struct ieee80211_local *local,
276 struct sta_info *sta, gfp_t gfp)
277{
278 if (local->hw.flags & IEEE80211_HW_HAS_RATE_CONTROL)
279 return 0;
280
Johannes Berg889cbb92012-01-17 10:33:29 +0100281 sta->rate_ctrl = local->rate_ctrl;
Johannes Bergaf65cd962009-11-17 18:18:36 +0100282 sta->rate_ctrl_priv = rate_control_alloc_sta(sta->rate_ctrl,
283 &sta->sta, gfp);
Johannes Berg889cbb92012-01-17 10:33:29 +0100284 if (!sta->rate_ctrl_priv)
Johannes Bergaf65cd962009-11-17 18:18:36 +0100285 return -ENOMEM;
Johannes Bergaf65cd962009-11-17 18:18:36 +0100286
287 return 0;
288}
289
Johannes Berg73651ee2008-02-25 16:27:47 +0100290struct sta_info *sta_info_alloc(struct ieee80211_sub_if_data *sdata,
Johannes Berg56544162011-12-14 13:28:46 +0100291 const u8 *addr, gfp_t gfp)
Jiri Bencf0706e82007-05-05 11:45:53 -0700292{
Johannes Bergd0709a62008-02-25 16:27:46 +0100293 struct ieee80211_local *local = sdata->local;
Jiri Bencf0706e82007-05-05 11:45:53 -0700294 struct sta_info *sta;
Mohammed Shafi Shajakhanebe27c92011-04-08 21:24:24 +0530295 struct timespec uptime;
Matti Gottliebad38bfc2013-11-18 19:06:45 +0200296 struct ieee80211_tx_latency_bin_ranges *tx_latency;
Ron Rindjunsky16c5f152007-12-25 17:00:34 +0200297 int i;
Jiri Bencf0706e82007-05-05 11:45:53 -0700298
Johannes Berg17741cd2008-09-11 00:02:02 +0200299 sta = kzalloc(sizeof(*sta) + local->hw.sta_data_size, gfp);
Jiri Bencf0706e82007-05-05 11:45:53 -0700300 if (!sta)
Johannes Berg73651ee2008-02-25 16:27:47 +0100301 return NULL;
Jiri Bencf0706e82007-05-05 11:45:53 -0700302
Johannes Bergef04a292014-01-06 15:56:59 +0100303 rcu_read_lock();
304 tx_latency = rcu_dereference(local->tx_latency);
305 /* init stations Tx latency statistics && TID bins */
306 if (tx_latency) {
307 sta->tx_lat = kzalloc(IEEE80211_NUM_TIDS *
308 sizeof(struct ieee80211_tx_latency_stat),
309 GFP_ATOMIC);
310 if (!sta->tx_lat) {
311 rcu_read_unlock();
312 goto free;
313 }
314
315 if (tx_latency->n_ranges) {
316 for (i = 0; i < IEEE80211_NUM_TIDS; i++) {
317 /* size of bins is size of the ranges +1 */
318 sta->tx_lat[i].bin_count =
319 tx_latency->n_ranges + 1;
320 sta->tx_lat[i].bins =
321 kcalloc(sta->tx_lat[i].bin_count,
322 sizeof(u32), GFP_ATOMIC);
323 if (!sta->tx_lat[i].bins) {
324 rcu_read_unlock();
325 goto free;
326 }
327 }
328 }
329 }
330 rcu_read_unlock();
331
Johannes Berg07346f812008-05-03 01:02:02 +0200332 spin_lock_init(&sta->lock);
Johannes Bergaf818582009-11-06 11:35:50 +0100333 INIT_WORK(&sta->drv_unblock_wk, sta_unblock);
Johannes Berg67c282c2010-06-10 10:21:43 +0200334 INIT_WORK(&sta->ampdu_mlme.work, ieee80211_ba_session_work);
Johannes Berga93e3642010-06-10 10:21:46 +0200335 mutex_init(&sta->ampdu_mlme.mtx);
Thomas Pedersen87f59c72013-03-01 22:02:52 -0800336#ifdef CONFIG_MAC80211_MESH
337 if (ieee80211_vif_is_mesh(&sdata->vif) &&
338 !sdata->u.mesh.user_mpm)
339 init_timer(&sta->plink_timer);
Thomas Pedersen6c7c4cb2013-06-20 23:50:59 -0700340 sta->nonpeer_pm = NL80211_MESH_POWER_ACTIVE;
Thomas Pedersen87f59c72013-03-01 22:02:52 -0800341#endif
Johannes Berg07346f812008-05-03 01:02:02 +0200342
Johannes Berg17741cd2008-09-11 00:02:02 +0200343 memcpy(sta->sta.addr, addr, ETH_ALEN);
Johannes Bergd0709a62008-02-25 16:27:46 +0100344 sta->local = local;
345 sta->sdata = sdata;
Felix Fietkau8bc8aec2011-03-21 20:01:00 +0100346 sta->last_rx = jiffies;
Jiri Bencf0706e82007-05-05 11:45:53 -0700347
Johannes Berg71ec3752012-01-20 13:55:20 +0100348 sta->sta_state = IEEE80211_STA_NONE;
349
Mohammed Shafi Shajakhanebe27c92011-04-08 21:24:24 +0530350 do_posix_clock_monotonic_gettime(&uptime);
351 sta->last_connected = uptime.tv_sec;
Bruno Randolf541a45a2010-12-02 19:12:43 +0900352 ewma_init(&sta->avg_signal, 1024, 8);
Felix Fietkauef0621e2013-04-22 16:29:31 +0200353 for (i = 0; i < ARRAY_SIZE(sta->chain_signal_avg); i++)
354 ewma_init(&sta->chain_signal_avg[i], 1024, 8);
Bruno Randolf541a45a2010-12-02 19:12:43 +0900355
Johannes Bergef04a292014-01-06 15:56:59 +0100356 if (sta_prepare_rate_control(local, sta, gfp))
357 goto free;
Jiri Bencf0706e82007-05-05 11:45:53 -0700358
Johannes Berg5a306f52012-11-14 23:22:21 +0100359 for (i = 0; i < IEEE80211_NUM_TIDS; i++) {
Johannes Berga622ab72010-06-10 10:21:39 +0200360 /*
361 * timer_to_tid must be initialized with identity mapping
362 * to enable session_timer's data differentiation. See
363 * sta_rx_agg_session_timer_expired for usage.
364 */
Ron Rindjunsky16c5f152007-12-25 17:00:34 +0200365 sta->timer_to_tid[i] = i;
Ron Rindjunsky16c5f152007-12-25 17:00:34 +0200366 }
Johannes Berg948d8872011-09-29 16:04:29 +0200367 for (i = 0; i < IEEE80211_NUM_ACS; i++) {
368 skb_queue_head_init(&sta->ps_tx_buf[i]);
369 skb_queue_head_init(&sta->tx_filtered[i]);
370 }
Johannes Berg73651ee2008-02-25 16:27:47 +0100371
Johannes Berg5a306f52012-11-14 23:22:21 +0100372 for (i = 0; i < IEEE80211_NUM_TIDS; i++)
Alexey Dobriyan4be929b2010-05-24 14:33:03 -0700373 sta->last_seq_ctrl[i] = cpu_to_le16(USHRT_MAX);
Senthil Balasubramaniancccaec92009-05-14 18:42:08 +0530374
Johannes Bergaf0ed692013-02-12 14:21:00 +0100375 sta->sta.smps_mode = IEEE80211_SMPS_OFF;
Emmanuel Grumbach687da132013-10-01 16:45:43 +0300376 if (sdata->vif.type == NL80211_IFTYPE_AP ||
377 sdata->vif.type == NL80211_IFTYPE_AP_VLAN) {
378 struct ieee80211_supported_band *sband =
379 local->hw.wiphy->bands[ieee80211_get_sdata_band(sdata)];
380 u8 smps = (sband->ht_cap.cap & IEEE80211_HT_CAP_SM_PS) >>
381 IEEE80211_HT_CAP_SM_PS_SHIFT;
382 /*
383 * Assume that hostapd advertises our caps in the beacon and
384 * this is the known_smps_mode for a station that just assciated
385 */
386 switch (smps) {
387 case WLAN_HT_SMPS_CONTROL_DISABLED:
388 sta->known_smps_mode = IEEE80211_SMPS_OFF;
389 break;
390 case WLAN_HT_SMPS_CONTROL_STATIC:
391 sta->known_smps_mode = IEEE80211_SMPS_STATIC;
392 break;
393 case WLAN_HT_SMPS_CONTROL_DYNAMIC:
394 sta->known_smps_mode = IEEE80211_SMPS_DYNAMIC;
395 break;
396 default:
397 WARN_ON(1);
398 }
399 }
Johannes Bergaf0ed692013-02-12 14:21:00 +0100400
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200401 sta_dbg(sdata, "Allocated STA %pM\n", sta->sta.addr);
Johannes Berg73651ee2008-02-25 16:27:47 +0100402 return sta;
Johannes Bergef04a292014-01-06 15:56:59 +0100403
404free:
405 if (sta->tx_lat) {
406 for (i = 0; i < IEEE80211_NUM_TIDS; i++)
407 kfree(sta->tx_lat[i].bins);
408 kfree(sta->tx_lat);
409 }
410 kfree(sta);
411 return NULL;
Johannes Berg73651ee2008-02-25 16:27:47 +0100412}
413
Guy Eilam8c71df72011-08-17 15:18:14 +0300414static int sta_info_insert_check(struct sta_info *sta)
Johannes Berg34e89502010-02-03 13:59:58 +0100415{
Johannes Berg34e89502010-02-03 13:59:58 +0100416 struct ieee80211_sub_if_data *sdata = sta->sdata;
Johannes Berg34e89502010-02-03 13:59:58 +0100417
Johannes Berg03e44972008-02-27 09:56:40 +0100418 /*
419 * Can't be a WARN_ON because it can be triggered through a race:
420 * something inserts a STA (on one CPU) without holding the RTNL
421 * and another CPU turns off the net device.
422 */
Guy Eilam8c71df72011-08-17 15:18:14 +0300423 if (unlikely(!ieee80211_sdata_running(sdata)))
424 return -ENETDOWN;
Johannes Berg03e44972008-02-27 09:56:40 +0100425
Joe Perchesb203ca32012-05-08 18:56:52 +0000426 if (WARN_ON(ether_addr_equal(sta->sta.addr, sdata->vif.addr) ||
Guy Eilam8c71df72011-08-17 15:18:14 +0300427 is_multicast_ether_addr(sta->sta.addr)))
428 return -EINVAL;
429
430 return 0;
431}
432
Johannes Bergf09603a2012-01-20 13:55:21 +0100433static int sta_info_insert_drv_state(struct ieee80211_local *local,
434 struct ieee80211_sub_if_data *sdata,
435 struct sta_info *sta)
436{
437 enum ieee80211_sta_state state;
438 int err = 0;
439
440 for (state = IEEE80211_STA_NOTEXIST; state < sta->sta_state; state++) {
441 err = drv_sta_state(local, sdata, sta, state, state + 1);
442 if (err)
443 break;
444 }
445
446 if (!err) {
Johannes Berga4ec45a2012-01-20 13:55:22 +0100447 /*
448 * Drivers using legacy sta_add/sta_remove callbacks only
449 * get uploaded set to true after sta_add is called.
450 */
451 if (!local->ops->sta_add)
452 sta->uploaded = true;
Johannes Bergf09603a2012-01-20 13:55:21 +0100453 return 0;
454 }
455
456 if (sdata->vif.type == NL80211_IFTYPE_ADHOC) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200457 sdata_info(sdata,
458 "failed to move IBSS STA %pM to state %d (%d) - keeping it anyway\n",
459 sta->sta.addr, state + 1, err);
Johannes Bergf09603a2012-01-20 13:55:21 +0100460 err = 0;
461 }
462
463 /* unwind on error */
464 for (; state > IEEE80211_STA_NOTEXIST; state--)
465 WARN_ON(drv_sta_state(local, sdata, sta, state, state - 1));
466
467 return err;
468}
469
Guy Eilam8c71df72011-08-17 15:18:14 +0300470/*
471 * should be called with sta_mtx locked
472 * this function replaces the mutex lock
473 * with a RCU lock
474 */
Johannes Berg4d339602011-12-15 11:24:20 +0100475static int sta_info_insert_finish(struct sta_info *sta) __acquires(RCU)
Guy Eilam8c71df72011-08-17 15:18:14 +0300476{
477 struct ieee80211_local *local = sta->local;
478 struct ieee80211_sub_if_data *sdata = sta->sdata;
Johannes Berg7852e362012-01-20 13:55:24 +0100479 struct station_info sinfo;
Guy Eilam8c71df72011-08-17 15:18:14 +0300480 int err = 0;
481
482 lockdep_assert_held(&local->sta_mtx);
Johannes Berg34e89502010-02-03 13:59:58 +0100483
Johannes Berg7852e362012-01-20 13:55:24 +0100484 /* check if STA exists already */
485 if (sta_info_get_bss(sdata, sta->sta.addr)) {
486 err = -EEXIST;
487 goto out_err;
Johannes Berg43ba7e92008-02-21 14:09:30 +0100488 }
Johannes Berg32bfd352007-12-19 01:31:26 +0100489
Johannes Berg7852e362012-01-20 13:55:24 +0100490 /* notify driver */
491 err = sta_info_insert_drv_state(local, sdata, sta);
492 if (err)
493 goto out_err;
Johannes Berg32bfd352007-12-19 01:31:26 +0100494
Johannes Berg7852e362012-01-20 13:55:24 +0100495 local->num_sta++;
496 local->sta_generation++;
497 smp_mb();
Johannes Berg4d339602011-12-15 11:24:20 +0100498
Johannes Berg7852e362012-01-20 13:55:24 +0100499 /* make the station visible */
500 sta_info_hash_add(local, sta);
Johannes Berg4d339602011-12-15 11:24:20 +0100501
Arik Nemtsov794454c2012-06-03 23:32:32 +0300502 list_add_rcu(&sta->list, &local->sta_list);
Johannes Berg83d5cc02012-01-12 09:31:10 +0100503
Johannes Berg7852e362012-01-20 13:55:24 +0100504 set_sta_flag(sta, WLAN_STA_INSERTED);
Johannes Berg4d339602011-12-15 11:24:20 +0100505
Eliad Peller21f659b2013-11-11 20:14:01 +0200506 ieee80211_recalc_min_chandef(sdata);
Johannes Berg7852e362012-01-20 13:55:24 +0100507 ieee80211_sta_debugfs_add(sta);
508 rate_control_add_sta_debugfs(sta);
Johannes Berg4d339602011-12-15 11:24:20 +0100509
Johannes Berg7852e362012-01-20 13:55:24 +0100510 memset(&sinfo, 0, sizeof(sinfo));
511 sinfo.filled = 0;
512 sinfo.generation = local->sta_generation;
513 cfg80211_new_sta(sdata->dev, sta->sta.addr, &sinfo, GFP_KERNEL);
Johannes Bergd0709a62008-02-25 16:27:46 +0100514
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200515 sta_dbg(sdata, "Inserted STA %pM\n", sta->sta.addr);
Jiri Bencf0706e82007-05-05 11:45:53 -0700516
Johannes Berg34e89502010-02-03 13:59:58 +0100517 /* move reference to rcu-protected */
518 rcu_read_lock();
519 mutex_unlock(&local->sta_mtx);
Jiri Bence9f207f2007-05-05 11:46:38 -0700520
Johannes Berg73651ee2008-02-25 16:27:47 +0100521 if (ieee80211_vif_is_mesh(&sdata->vif))
522 mesh_accept_plinks_update(sdata);
523
524 return 0;
Johannes Berg4d339602011-12-15 11:24:20 +0100525 out_err:
526 mutex_unlock(&local->sta_mtx);
527 rcu_read_lock();
528 return err;
Guy Eilam8c71df72011-08-17 15:18:14 +0300529}
530
531int sta_info_insert_rcu(struct sta_info *sta) __acquires(RCU)
532{
533 struct ieee80211_local *local = sta->local;
Guy Eilam8c71df72011-08-17 15:18:14 +0300534 int err = 0;
535
Johannes Berg4d339602011-12-15 11:24:20 +0100536 might_sleep();
537
Guy Eilam8c71df72011-08-17 15:18:14 +0300538 err = sta_info_insert_check(sta);
539 if (err) {
Jiri Bencf0706e82007-05-05 11:45:53 -0700540 rcu_read_lock();
541 goto out_free;
542 }
543
Johannes Berg004c8722008-02-20 11:21:35 +0100544 mutex_lock(&local->sta_mtx);
545
Johannes Berg4d339602011-12-15 11:24:20 +0100546 err = sta_info_insert_finish(sta);
Guy Eilam8c71df72011-08-17 15:18:14 +0300547 if (err)
Johannes Berg004c8722008-02-20 11:21:35 +0100548 goto out_free;
Johannes Bergd0709a62008-02-25 16:27:46 +0100549
Johannes Berg004c8722008-02-20 11:21:35 +0100550 return 0;
Johannes Berg93e5deb2008-04-01 15:21:00 +0200551 out_free:
552 BUG_ON(!err);
Johannes Bergd9a7ddb2011-12-14 12:35:30 +0100553 sta_info_free(local, sta);
Johannes Berg93e5deb2008-04-01 15:21:00 +0200554 return err;
Jiri Bencf0706e82007-05-05 11:45:53 -0700555}
556
Johannes Berg34e89502010-02-03 13:59:58 +0100557int sta_info_insert(struct sta_info *sta)
558{
559 int err = sta_info_insert_rcu(sta);
560
561 rcu_read_unlock();
562
563 return err;
564}
565
Marco Porschd012a602012-10-10 12:39:50 -0700566static inline void __bss_tim_set(u8 *tim, u16 id)
Johannes Berg004c8722008-02-20 11:21:35 +0100567{
568 /*
569 * This format has been mandated by the IEEE specifications,
570 * so this line may not be changed to use the __set_bit() format.
571 */
Marco Porschd012a602012-10-10 12:39:50 -0700572 tim[id / 8] |= (1 << (id % 8));
Johannes Berg004c8722008-02-20 11:21:35 +0100573}
574
Marco Porschd012a602012-10-10 12:39:50 -0700575static inline void __bss_tim_clear(u8 *tim, u16 id)
Johannes Berg004c8722008-02-20 11:21:35 +0100576{
577 /*
578 * This format has been mandated by the IEEE specifications,
579 * so this line may not be changed to use the __clear_bit() format.
580 */
Marco Porschd012a602012-10-10 12:39:50 -0700581 tim[id / 8] &= ~(1 << (id % 8));
Johannes Berg004c8722008-02-20 11:21:35 +0100582}
583
Ilan Peer3d5839b2013-03-05 15:27:20 +0200584static inline bool __bss_tim_get(u8 *tim, u16 id)
585{
586 /*
587 * This format has been mandated by the IEEE specifications,
588 * so this line may not be changed to use the test_bit() format.
589 */
590 return tim[id / 8] & (1 << (id % 8));
591}
592
Johannes Berg948d8872011-09-29 16:04:29 +0200593static unsigned long ieee80211_tids_for_ac(int ac)
Johannes Berg004c8722008-02-20 11:21:35 +0100594{
Johannes Berg948d8872011-09-29 16:04:29 +0200595 /* If we ever support TIDs > 7, this obviously needs to be adjusted */
596 switch (ac) {
597 case IEEE80211_AC_VO:
598 return BIT(6) | BIT(7);
599 case IEEE80211_AC_VI:
600 return BIT(4) | BIT(5);
601 case IEEE80211_AC_BE:
602 return BIT(0) | BIT(3);
603 case IEEE80211_AC_BK:
604 return BIT(1) | BIT(2);
605 default:
606 WARN_ON(1);
607 return 0;
Johannes Bergd0709a62008-02-25 16:27:46 +0100608 }
Johannes Berg004c8722008-02-20 11:21:35 +0100609}
610
Johannes Bergc868cb352011-09-29 16:04:27 +0200611void sta_info_recalc_tim(struct sta_info *sta)
Johannes Berg004c8722008-02-20 11:21:35 +0100612{
Johannes Bergc868cb352011-09-29 16:04:27 +0200613 struct ieee80211_local *local = sta->local;
Marco Porschd012a602012-10-10 12:39:50 -0700614 struct ps_data *ps;
Johannes Berg948d8872011-09-29 16:04:29 +0200615 bool indicate_tim = false;
616 u8 ignore_for_tim = sta->sta.uapsd_queues;
617 int ac;
Marco Porschd012a602012-10-10 12:39:50 -0700618 u16 id;
Johannes Berg004c8722008-02-20 11:21:35 +0100619
Marco Porschd012a602012-10-10 12:39:50 -0700620 if (sta->sdata->vif.type == NL80211_IFTYPE_AP ||
621 sta->sdata->vif.type == NL80211_IFTYPE_AP_VLAN) {
622 if (WARN_ON_ONCE(!sta->sdata->bss))
623 return;
624
625 ps = &sta->sdata->bss->ps;
626 id = sta->sta.aid;
Marco Porsch3f52b7e2013-01-30 18:14:08 +0100627#ifdef CONFIG_MAC80211_MESH
628 } else if (ieee80211_vif_is_mesh(&sta->sdata->vif)) {
629 ps = &sta->sdata->u.mesh.ps;
Thomas Pedersen204d1302013-11-05 11:17:05 -0800630 /* TIM map only for 1 <= PLID <= IEEE80211_MAX_AID */
Chun-Yeow Yeoh6f101ef2013-11-13 15:43:03 +0800631 id = sta->plid % (IEEE80211_MAX_AID + 1);
Marco Porsch3f52b7e2013-01-30 18:14:08 +0100632#endif
Marco Porschd012a602012-10-10 12:39:50 -0700633 } else {
Johannes Bergc868cb352011-09-29 16:04:27 +0200634 return;
Marco Porschd012a602012-10-10 12:39:50 -0700635 }
Johannes Berg3e122be2008-07-09 14:40:34 +0200636
Johannes Bergc868cb352011-09-29 16:04:27 +0200637 /* No need to do anything if the driver does all */
638 if (local->hw.flags & IEEE80211_HW_AP_LINK_PS)
639 return;
Johannes Berg004c8722008-02-20 11:21:35 +0100640
Johannes Bergc868cb352011-09-29 16:04:27 +0200641 if (sta->dead)
642 goto done;
Johannes Berg3e122be2008-07-09 14:40:34 +0200643
Johannes Berg948d8872011-09-29 16:04:29 +0200644 /*
645 * If all ACs are delivery-enabled then we should build
646 * the TIM bit for all ACs anyway; if only some are then
647 * we ignore those and build the TIM bit using only the
648 * non-enabled ones.
649 */
650 if (ignore_for_tim == BIT(IEEE80211_NUM_ACS) - 1)
651 ignore_for_tim = 0;
Johannes Berg3e122be2008-07-09 14:40:34 +0200652
Johannes Berg948d8872011-09-29 16:04:29 +0200653 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
654 unsigned long tids;
655
656 if (ignore_for_tim & BIT(ac))
657 continue;
658
659 indicate_tim |= !skb_queue_empty(&sta->tx_filtered[ac]) ||
660 !skb_queue_empty(&sta->ps_tx_buf[ac]);
661 if (indicate_tim)
662 break;
663
664 tids = ieee80211_tids_for_ac(ac);
665
666 indicate_tim |=
667 sta->driver_buffered_tids & tids;
Johannes Bergd0709a62008-02-25 16:27:46 +0100668 }
Johannes Berg004c8722008-02-20 11:21:35 +0100669
Johannes Bergc868cb352011-09-29 16:04:27 +0200670 done:
Johannes Berg65f704a2013-02-13 17:39:53 +0100671 spin_lock_bh(&local->tim_lock);
Johannes Berg004c8722008-02-20 11:21:35 +0100672
Ilan Peer3d5839b2013-03-05 15:27:20 +0200673 if (indicate_tim == __bss_tim_get(ps->tim, id))
674 goto out_unlock;
675
Johannes Berg948d8872011-09-29 16:04:29 +0200676 if (indicate_tim)
Marco Porschd012a602012-10-10 12:39:50 -0700677 __bss_tim_set(ps->tim, id);
Johannes Bergc868cb352011-09-29 16:04:27 +0200678 else
Marco Porschd012a602012-10-10 12:39:50 -0700679 __bss_tim_clear(ps->tim, id);
Johannes Berg3e122be2008-07-09 14:40:34 +0200680
Johannes Bergc868cb352011-09-29 16:04:27 +0200681 if (local->ops->set_tim) {
682 local->tim_in_locked_section = true;
Johannes Berg948d8872011-09-29 16:04:29 +0200683 drv_set_tim(local, &sta->sta, indicate_tim);
Johannes Bergc868cb352011-09-29 16:04:27 +0200684 local->tim_in_locked_section = false;
Johannes Berg004c8722008-02-20 11:21:35 +0100685 }
Johannes Berg004c8722008-02-20 11:21:35 +0100686
Ilan Peer3d5839b2013-03-05 15:27:20 +0200687out_unlock:
Johannes Berg65f704a2013-02-13 17:39:53 +0100688 spin_unlock_bh(&local->tim_lock);
Johannes Berg004c8722008-02-20 11:21:35 +0100689}
690
Johannes Bergcd0b8d82011-09-06 14:13:06 +0200691static bool sta_info_buffer_expired(struct sta_info *sta, struct sk_buff *skb)
Jiri Bencf0706e82007-05-05 11:45:53 -0700692{
Johannes Berge039fa42008-05-15 12:55:29 +0200693 struct ieee80211_tx_info *info;
Jiri Bencf0706e82007-05-05 11:45:53 -0700694 int timeout;
695
696 if (!skb)
Johannes Bergcd0b8d82011-09-06 14:13:06 +0200697 return false;
Jiri Bencf0706e82007-05-05 11:45:53 -0700698
Johannes Berge039fa42008-05-15 12:55:29 +0200699 info = IEEE80211_SKB_CB(skb);
Jiri Bencf0706e82007-05-05 11:45:53 -0700700
701 /* Timeout: (2 * listen_interval * beacon_int * 1024 / 1000000) sec */
Johannes Berg57c4d7b2009-04-23 16:10:04 +0200702 timeout = (sta->listen_interval *
703 sta->sdata->vif.bss_conf.beacon_int *
704 32 / 15625) * HZ;
Jiri Bencf0706e82007-05-05 11:45:53 -0700705 if (timeout < STA_TX_BUFFER_EXPIRE)
706 timeout = STA_TX_BUFFER_EXPIRE;
Johannes Berge039fa42008-05-15 12:55:29 +0200707 return time_after(jiffies, info->control.jiffies + timeout);
Jiri Bencf0706e82007-05-05 11:45:53 -0700708}
709
710
Johannes Berg948d8872011-09-29 16:04:29 +0200711static bool sta_info_cleanup_expire_buffered_ac(struct ieee80211_local *local,
712 struct sta_info *sta, int ac)
Jiri Bencf0706e82007-05-05 11:45:53 -0700713{
714 unsigned long flags;
715 struct sk_buff *skb;
716
Johannes Berg60750392011-09-29 16:04:28 +0200717 /*
718 * First check for frames that should expire on the filtered
719 * queue. Frames here were rejected by the driver and are on
720 * a separate queue to avoid reordering with normal PS-buffered
721 * frames. They also aren't accounted for right now in the
722 * total_ps_buffered counter.
723 */
Jiri Bencf0706e82007-05-05 11:45:53 -0700724 for (;;) {
Johannes Berg948d8872011-09-29 16:04:29 +0200725 spin_lock_irqsave(&sta->tx_filtered[ac].lock, flags);
726 skb = skb_peek(&sta->tx_filtered[ac]);
Johannes Berg57c4d7b2009-04-23 16:10:04 +0200727 if (sta_info_buffer_expired(sta, skb))
Johannes Berg948d8872011-09-29 16:04:29 +0200728 skb = __skb_dequeue(&sta->tx_filtered[ac]);
Johannes Berg836341a2008-02-20 02:07:21 +0100729 else
Jiri Bencf0706e82007-05-05 11:45:53 -0700730 skb = NULL;
Johannes Berg948d8872011-09-29 16:04:29 +0200731 spin_unlock_irqrestore(&sta->tx_filtered[ac].lock, flags);
Jiri Bencf0706e82007-05-05 11:45:53 -0700732
Johannes Berg60750392011-09-29 16:04:28 +0200733 /*
734 * Frames are queued in order, so if this one
735 * hasn't expired yet we can stop testing. If
736 * we actually reached the end of the queue we
737 * also need to stop, of course.
738 */
739 if (!skb)
740 break;
Felix Fietkaud4fa14c2012-10-10 22:40:23 +0200741 ieee80211_free_txskb(&local->hw, skb);
Johannes Berg60750392011-09-29 16:04:28 +0200742 }
743
744 /*
745 * Now also check the normal PS-buffered queue, this will
746 * only find something if the filtered queue was emptied
747 * since the filtered frames are all before the normal PS
748 * buffered frames.
749 */
Jiri Bencf0706e82007-05-05 11:45:53 -0700750 for (;;) {
Johannes Berg948d8872011-09-29 16:04:29 +0200751 spin_lock_irqsave(&sta->ps_tx_buf[ac].lock, flags);
752 skb = skb_peek(&sta->ps_tx_buf[ac]);
Jiri Bencf0706e82007-05-05 11:45:53 -0700753 if (sta_info_buffer_expired(sta, skb))
Johannes Berg948d8872011-09-29 16:04:29 +0200754 skb = __skb_dequeue(&sta->ps_tx_buf[ac]);
Jiri Bencf0706e82007-05-05 11:45:53 -0700755 else
756 skb = NULL;
Johannes Berg948d8872011-09-29 16:04:29 +0200757 spin_unlock_irqrestore(&sta->ps_tx_buf[ac].lock, flags);
Jiri Bencf0706e82007-05-05 11:45:53 -0700758
Johannes Berg60750392011-09-29 16:04:28 +0200759 /*
760 * frames are queued in order, so if this one
761 * hasn't expired yet (or we reached the end of
762 * the queue) we can stop testing
763 */
Johannes Berg836341a2008-02-20 02:07:21 +0100764 if (!skb)
Jiri Bencf0706e82007-05-05 11:45:53 -0700765 break;
Johannes Berg836341a2008-02-20 02:07:21 +0100766
Johannes Berg836341a2008-02-20 02:07:21 +0100767 local->total_ps_buffered--;
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200768 ps_dbg(sta->sdata, "Buffered frame expired (STA %pM)\n",
769 sta->sta.addr);
Felix Fietkaud4fa14c2012-10-10 22:40:23 +0200770 ieee80211_free_txskb(&local->hw, skb);
Jiri Bencf0706e82007-05-05 11:45:53 -0700771 }
Juuso Oikarinen3393a602010-04-19 10:12:52 +0300772
Johannes Berg60750392011-09-29 16:04:28 +0200773 /*
774 * Finally, recalculate the TIM bit for this station -- it might
775 * now be clear because the station was too slow to retrieve its
776 * frames.
777 */
778 sta_info_recalc_tim(sta);
779
780 /*
781 * Return whether there are any frames still buffered, this is
782 * used to check whether the cleanup timer still needs to run,
783 * if there are no frames we don't need to rearm the timer.
784 */
Johannes Berg948d8872011-09-29 16:04:29 +0200785 return !(skb_queue_empty(&sta->ps_tx_buf[ac]) &&
786 skb_queue_empty(&sta->tx_filtered[ac]));
787}
788
789static bool sta_info_cleanup_expire_buffered(struct ieee80211_local *local,
790 struct sta_info *sta)
791{
792 bool have_buffered = false;
793 int ac;
794
Marco Porsch3f52b7e2013-01-30 18:14:08 +0100795 /* This is only necessary for stations on BSS/MBSS interfaces */
796 if (!sta->sdata->bss &&
797 !ieee80211_vif_is_mesh(&sta->sdata->vif))
Johannes Berg948d8872011-09-29 16:04:29 +0200798 return false;
799
800 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++)
801 have_buffered |=
802 sta_info_cleanup_expire_buffered_ac(local, sta, ac);
803
804 return have_buffered;
Jiri Bencf0706e82007-05-05 11:45:53 -0700805}
806
Johannes Bergd7782072013-12-04 23:12:31 +0100807static int __must_check __sta_info_destroy_part1(struct sta_info *sta)
Johannes Berg34e89502010-02-03 13:59:58 +0100808{
809 struct ieee80211_local *local;
810 struct ieee80211_sub_if_data *sdata;
Johannes Berg6d10e462013-03-06 23:09:11 +0100811 int ret;
Johannes Berg34e89502010-02-03 13:59:58 +0100812
813 might_sleep();
814
815 if (!sta)
816 return -ENOENT;
817
818 local = sta->local;
819 sdata = sta->sdata;
820
Johannes Berg83d5cc02012-01-12 09:31:10 +0100821 lockdep_assert_held(&local->sta_mtx);
822
Johannes Berg098a6072010-04-06 11:18:47 +0200823 /*
824 * Before removing the station from the driver and
825 * rate control, it might still start new aggregation
826 * sessions -- block that to make sure the tear-down
827 * will be sufficient.
828 */
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200829 set_sta_flag(sta, WLAN_STA_BLOCK_BA);
Johannes Bergc82c4a82012-07-18 13:31:31 +0200830 ieee80211_sta_tear_down_BA_sessions(sta, AGG_STOP_DESTROY_STA);
Johannes Berg098a6072010-04-06 11:18:47 +0200831
Johannes Berg34e89502010-02-03 13:59:58 +0100832 ret = sta_info_hash_del(local, sta);
Johannes Bergb01711b2013-12-04 20:25:27 +0100833 if (WARN_ON(ret))
Johannes Berg34e89502010-02-03 13:59:58 +0100834 return ret;
835
Arik Nemtsov794454c2012-06-03 23:32:32 +0300836 list_del_rcu(&sta->list);
Johannes Berg4d339602011-12-15 11:24:20 +0100837
Johannes Berg6a9d1b92013-12-04 22:39:17 +0100838 drv_sta_pre_rcu_remove(local, sta->sdata, sta);
839
Johannes Berga710c812013-12-04 20:11:06 +0100840 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN &&
841 rcu_access_pointer(sdata->u.vlan.sta) == sta)
842 RCU_INIT_POINTER(sdata->u.vlan.sta, NULL);
843
Johannes Bergd7782072013-12-04 23:12:31 +0100844 return 0;
845}
846
847static void __sta_info_destroy_part2(struct sta_info *sta)
848{
849 struct ieee80211_local *local = sta->local;
850 struct ieee80211_sub_if_data *sdata = sta->sdata;
851 int ret;
852
853 /*
854 * NOTE: This assumes at least synchronize_net() was done
855 * after _part1 and before _part2!
856 */
857
858 might_sleep();
859 lockdep_assert_held(&local->sta_mtx);
860
Johannes Bergc8782072013-12-04 23:05:45 +0100861 /* now keys can no longer be reached */
Johannes Berg6d10e462013-03-06 23:09:11 +0100862 ieee80211_free_sta_keys(local, sta);
Johannes Berg34e89502010-02-03 13:59:58 +0100863
864 sta->dead = true;
865
Johannes Berg34e89502010-02-03 13:59:58 +0100866 local->num_sta--;
867 local->sta_generation++;
868
Johannes Berg83d5cc02012-01-12 09:31:10 +0100869 while (sta->sta_state > IEEE80211_STA_NONE) {
Johannes Bergf09603a2012-01-20 13:55:21 +0100870 ret = sta_info_move_state(sta, sta->sta_state - 1);
871 if (ret) {
Johannes Berg83d5cc02012-01-12 09:31:10 +0100872 WARN_ON_ONCE(1);
873 break;
874 }
875 }
Johannes Bergd9a7ddb2011-12-14 12:35:30 +0100876
Johannes Bergf09603a2012-01-20 13:55:21 +0100877 if (sta->uploaded) {
Johannes Bergf09603a2012-01-20 13:55:21 +0100878 ret = drv_sta_state(local, sdata, sta, IEEE80211_STA_NONE,
879 IEEE80211_STA_NOTEXIST);
880 WARN_ON_ONCE(ret != 0);
881 }
Johannes Berg34e89502010-02-03 13:59:58 +0100882
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200883 sta_dbg(sdata, "Removed STA %pM\n", sta->sta.addr);
884
Jouni Malinenec15e682011-03-23 15:29:52 +0200885 cfg80211_del_sta(sdata->dev, sta->sta.addr, GFP_KERNEL);
886
Johannes Berg34e89502010-02-03 13:59:58 +0100887 rate_control_remove_sta_debugfs(sta);
888 ieee80211_sta_debugfs_remove(sta);
Eliad Peller21f659b2013-11-11 20:14:01 +0200889 ieee80211_recalc_min_chandef(sdata);
Johannes Berg34e89502010-02-03 13:59:58 +0100890
Johannes Bergd34ba212013-12-04 22:46:11 +0100891 cleanup_single_sta(sta);
Johannes Bergd7782072013-12-04 23:12:31 +0100892}
893
894int __must_check __sta_info_destroy(struct sta_info *sta)
895{
896 int err = __sta_info_destroy_part1(sta);
897
898 if (err)
899 return err;
900
901 synchronize_net();
902
903 __sta_info_destroy_part2(sta);
Johannes Berg34e89502010-02-03 13:59:58 +0100904
905 return 0;
906}
907
908int sta_info_destroy_addr(struct ieee80211_sub_if_data *sdata, const u8 *addr)
909{
910 struct sta_info *sta;
911 int ret;
912
913 mutex_lock(&sdata->local->sta_mtx);
Johannes Berg7852e362012-01-20 13:55:24 +0100914 sta = sta_info_get(sdata, addr);
Johannes Berg34e89502010-02-03 13:59:58 +0100915 ret = __sta_info_destroy(sta);
916 mutex_unlock(&sdata->local->sta_mtx);
917
918 return ret;
919}
920
921int sta_info_destroy_addr_bss(struct ieee80211_sub_if_data *sdata,
922 const u8 *addr)
923{
924 struct sta_info *sta;
925 int ret;
926
927 mutex_lock(&sdata->local->sta_mtx);
Johannes Berg7852e362012-01-20 13:55:24 +0100928 sta = sta_info_get_bss(sdata, addr);
Johannes Berg34e89502010-02-03 13:59:58 +0100929 ret = __sta_info_destroy(sta);
930 mutex_unlock(&sdata->local->sta_mtx);
931
932 return ret;
933}
Jiri Bencf0706e82007-05-05 11:45:53 -0700934
935static void sta_info_cleanup(unsigned long data)
936{
937 struct ieee80211_local *local = (struct ieee80211_local *) data;
938 struct sta_info *sta;
Juuso Oikarinen3393a602010-04-19 10:12:52 +0300939 bool timer_needed = false;
Jiri Bencf0706e82007-05-05 11:45:53 -0700940
Johannes Bergd0709a62008-02-25 16:27:46 +0100941 rcu_read_lock();
942 list_for_each_entry_rcu(sta, &local->sta_list, list)
Juuso Oikarinen3393a602010-04-19 10:12:52 +0300943 if (sta_info_cleanup_expire_buffered(local, sta))
944 timer_needed = true;
Johannes Bergd0709a62008-02-25 16:27:46 +0100945 rcu_read_unlock();
Jiri Bencf0706e82007-05-05 11:45:53 -0700946
Johannes Berg5bb644a2009-05-17 11:40:42 +0200947 if (local->quiescing)
948 return;
949
Juuso Oikarinen3393a602010-04-19 10:12:52 +0300950 if (!timer_needed)
951 return;
952
Johannes Berg26d59532011-04-01 13:52:48 +0200953 mod_timer(&local->sta_cleanup,
954 round_jiffies(jiffies + STA_INFO_CLEANUP_INTERVAL));
Jiri Bencf0706e82007-05-05 11:45:53 -0700955}
956
957void sta_info_init(struct ieee80211_local *local)
958{
Johannes Berg4d339602011-12-15 11:24:20 +0100959 spin_lock_init(&local->tim_lock);
Johannes Berg34e89502010-02-03 13:59:58 +0100960 mutex_init(&local->sta_mtx);
Jiri Bencf0706e82007-05-05 11:45:53 -0700961 INIT_LIST_HEAD(&local->sta_list);
Jiri Bencf0706e82007-05-05 11:45:53 -0700962
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -0800963 setup_timer(&local->sta_cleanup, sta_info_cleanup,
964 (unsigned long)local);
Jiri Bencf0706e82007-05-05 11:45:53 -0700965}
966
967void sta_info_stop(struct ieee80211_local *local)
968{
Johannes Berga56f9922012-12-13 23:08:52 +0100969 del_timer_sync(&local->sta_cleanup);
Jiri Bencf0706e82007-05-05 11:45:53 -0700970}
971
Johannes Berg051007d2012-12-13 23:49:02 +0100972
Johannes Berge7162512013-12-04 23:18:37 +0100973int __sta_info_flush(struct ieee80211_sub_if_data *sdata, bool vlans)
Jiri Bencf0706e82007-05-05 11:45:53 -0700974{
Johannes Bergb998e8b2012-12-13 23:07:46 +0100975 struct ieee80211_local *local = sdata->local;
Jiri Bencf0706e82007-05-05 11:45:53 -0700976 struct sta_info *sta, *tmp;
Johannes Bergd7782072013-12-04 23:12:31 +0100977 LIST_HEAD(free_list);
Johannes Berg44213b52008-02-25 16:27:49 +0100978 int ret = 0;
Jiri Bencf0706e82007-05-05 11:45:53 -0700979
Johannes Bergd0709a62008-02-25 16:27:46 +0100980 might_sleep();
981
Johannes Berge7162512013-12-04 23:18:37 +0100982 WARN_ON(vlans && sdata->vif.type != NL80211_IFTYPE_AP);
983 WARN_ON(vlans && !sdata->bss);
984
Johannes Berg34e89502010-02-03 13:59:58 +0100985 mutex_lock(&local->sta_mtx);
Johannes Berg34e89502010-02-03 13:59:58 +0100986 list_for_each_entry_safe(sta, tmp, &local->sta_list, list) {
Johannes Berge7162512013-12-04 23:18:37 +0100987 if (sdata == sta->sdata ||
988 (vlans && sdata->bss == sta->sdata->bss)) {
Johannes Bergd7782072013-12-04 23:12:31 +0100989 if (!WARN_ON(__sta_info_destroy_part1(sta)))
990 list_add(&sta->free_list, &free_list);
Johannes Berg34316832012-02-25 21:40:46 +0100991 ret++;
992 }
Johannes Berg34e89502010-02-03 13:59:58 +0100993 }
Johannes Bergd7782072013-12-04 23:12:31 +0100994
995 if (!list_empty(&free_list)) {
996 synchronize_net();
997 list_for_each_entry_safe(sta, tmp, &free_list, free_list)
998 __sta_info_destroy_part2(sta);
999 }
Johannes Berg34e89502010-02-03 13:59:58 +01001000 mutex_unlock(&local->sta_mtx);
Johannes Berg44213b52008-02-25 16:27:49 +01001001
Johannes Berg051007d2012-12-13 23:49:02 +01001002 return ret;
1003}
1004
Johannes Berg24723d12008-09-11 00:01:46 +02001005void ieee80211_sta_expire(struct ieee80211_sub_if_data *sdata,
1006 unsigned long exp_time)
1007{
1008 struct ieee80211_local *local = sdata->local;
1009 struct sta_info *sta, *tmp;
Johannes Berg24723d12008-09-11 00:01:46 +02001010
Johannes Berg34e89502010-02-03 13:59:58 +01001011 mutex_lock(&local->sta_mtx);
Mohammed Shafi Shajakhane46a2cf2011-12-26 10:43:29 +05301012
1013 list_for_each_entry_safe(sta, tmp, &local->sta_list, list) {
Marek Lindnerec2b7742011-12-20 23:16:52 +08001014 if (sdata != sta->sdata)
1015 continue;
1016
Johannes Berg24723d12008-09-11 00:01:46 +02001017 if (time_after(jiffies, sta->last_rx + exp_time)) {
Mohammed Shafi Shajakhaneea57d42012-10-08 21:33:47 +05301018 sta_dbg(sta->sdata, "expiring inactive STA %pM\n",
1019 sta->sta.addr);
Marco Porsch3f52b7e2013-01-30 18:14:08 +01001020
1021 if (ieee80211_vif_is_mesh(&sdata->vif) &&
1022 test_sta_flag(sta, WLAN_STA_PS_STA))
1023 atomic_dec(&sdata->u.mesh.ps.num_sta_ps);
1024
Johannes Berg34e89502010-02-03 13:59:58 +01001025 WARN_ON(__sta_info_destroy(sta));
Johannes Berg24723d12008-09-11 00:01:46 +02001026 }
Mohammed Shafi Shajakhane46a2cf2011-12-26 10:43:29 +05301027 }
1028
Johannes Berg34e89502010-02-03 13:59:58 +01001029 mutex_unlock(&local->sta_mtx);
Johannes Berg24723d12008-09-11 00:01:46 +02001030}
Johannes Berg17741cd2008-09-11 00:02:02 +02001031
Ben Greear686b9cb2010-09-23 09:44:36 -07001032struct ieee80211_sta *ieee80211_find_sta_by_ifaddr(struct ieee80211_hw *hw,
1033 const u8 *addr,
1034 const u8 *localaddr)
Johannes Berg17741cd2008-09-11 00:02:02 +02001035{
Johannes Bergabe60632009-11-25 17:46:18 +01001036 struct sta_info *sta, *nxt;
Johannes Berg17741cd2008-09-11 00:02:02 +02001037
Ben Greear686b9cb2010-09-23 09:44:36 -07001038 /*
1039 * Just return a random station if localaddr is NULL
1040 * ... first in list.
1041 */
Johannes Bergf7c65592010-04-30 13:48:36 +02001042 for_each_sta_info(hw_to_local(hw), addr, sta, nxt) {
Ben Greear686b9cb2010-09-23 09:44:36 -07001043 if (localaddr &&
Joe Perchesb203ca32012-05-08 18:56:52 +00001044 !ether_addr_equal(sta->sdata->vif.addr, localaddr))
Ben Greear686b9cb2010-09-23 09:44:36 -07001045 continue;
Johannes Bergf7c65592010-04-30 13:48:36 +02001046 if (!sta->uploaded)
1047 return NULL;
Johannes Bergabe60632009-11-25 17:46:18 +01001048 return &sta->sta;
Johannes Bergf7c65592010-04-30 13:48:36 +02001049 }
1050
Johannes Bergabe60632009-11-25 17:46:18 +01001051 return NULL;
Johannes Berg17741cd2008-09-11 00:02:02 +02001052}
Ben Greear686b9cb2010-09-23 09:44:36 -07001053EXPORT_SYMBOL_GPL(ieee80211_find_sta_by_ifaddr);
Johannes Berg5ed176e2009-11-04 14:42:28 +01001054
1055struct ieee80211_sta *ieee80211_find_sta(struct ieee80211_vif *vif,
1056 const u8 *addr)
1057{
Johannes Bergf7c65592010-04-30 13:48:36 +02001058 struct sta_info *sta;
Johannes Berg5ed176e2009-11-04 14:42:28 +01001059
1060 if (!vif)
1061 return NULL;
1062
Johannes Bergf7c65592010-04-30 13:48:36 +02001063 sta = sta_info_get_bss(vif_to_sdata(vif), addr);
1064 if (!sta)
1065 return NULL;
Johannes Berg5ed176e2009-11-04 14:42:28 +01001066
Johannes Bergf7c65592010-04-30 13:48:36 +02001067 if (!sta->uploaded)
1068 return NULL;
1069
1070 return &sta->sta;
Johannes Berg5ed176e2009-11-04 14:42:28 +01001071}
Johannes Berg17741cd2008-09-11 00:02:02 +02001072EXPORT_SYMBOL(ieee80211_find_sta);
Johannes Bergaf818582009-11-06 11:35:50 +01001073
Johannes Berg50a94322010-11-16 11:50:28 -08001074static void clear_sta_ps_flags(void *_sta)
1075{
1076 struct sta_info *sta = _sta;
Helmut Schaa608383b2012-01-30 15:18:00 +01001077 struct ieee80211_sub_if_data *sdata = sta->sdata;
Marco Porschd012a602012-10-10 12:39:50 -07001078 struct ps_data *ps;
1079
1080 if (sdata->vif.type == NL80211_IFTYPE_AP ||
1081 sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
1082 ps = &sdata->bss->ps;
Marco Porsch3f52b7e2013-01-30 18:14:08 +01001083 else if (ieee80211_vif_is_mesh(&sdata->vif))
1084 ps = &sdata->u.mesh.ps;
Marco Porschd012a602012-10-10 12:39:50 -07001085 else
1086 return;
Johannes Berg50a94322010-11-16 11:50:28 -08001087
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001088 clear_sta_flag(sta, WLAN_STA_PS_DRIVER);
Helmut Schaa608383b2012-01-30 15:18:00 +01001089 if (test_and_clear_sta_flag(sta, WLAN_STA_PS_STA))
Marco Porschd012a602012-10-10 12:39:50 -07001090 atomic_dec(&ps->num_sta_ps);
Johannes Berg50a94322010-11-16 11:50:28 -08001091}
1092
Johannes Bergaf818582009-11-06 11:35:50 +01001093/* powersave support code */
1094void ieee80211_sta_ps_deliver_wakeup(struct sta_info *sta)
1095{
1096 struct ieee80211_sub_if_data *sdata = sta->sdata;
1097 struct ieee80211_local *local = sdata->local;
Johannes Berg948d8872011-09-29 16:04:29 +02001098 struct sk_buff_head pending;
1099 int filtered = 0, buffered = 0, ac;
Arik Nemtsov987c2852012-11-05 10:27:52 +02001100 unsigned long flags;
Johannes Bergaf818582009-11-06 11:35:50 +01001101
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001102 clear_sta_flag(sta, WLAN_STA_SP);
Johannes Berg47086fc2011-09-29 16:04:33 +02001103
Johannes Berg5a306f52012-11-14 23:22:21 +01001104 BUILD_BUG_ON(BITS_TO_LONGS(IEEE80211_NUM_TIDS) > 1);
Johannes Berg948d8872011-09-29 16:04:29 +02001105 sta->driver_buffered_tids = 0;
1106
Arik Nemtsovd057e5a2011-01-31 22:29:13 +02001107 if (!(local->hw.flags & IEEE80211_HW_AP_LINK_PS))
1108 drv_sta_notify(local, sdata, STA_NOTIFY_AWAKE, &sta->sta);
Johannes Bergaf818582009-11-06 11:35:50 +01001109
Johannes Berg948d8872011-09-29 16:04:29 +02001110 skb_queue_head_init(&pending);
Johannes Bergaf818582009-11-06 11:35:50 +01001111
1112 /* Send all buffered frames to the station */
Johannes Berg948d8872011-09-29 16:04:29 +02001113 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
1114 int count = skb_queue_len(&pending), tmp;
1115
Arik Nemtsov987c2852012-11-05 10:27:52 +02001116 spin_lock_irqsave(&sta->tx_filtered[ac].lock, flags);
Johannes Berg948d8872011-09-29 16:04:29 +02001117 skb_queue_splice_tail_init(&sta->tx_filtered[ac], &pending);
Arik Nemtsov987c2852012-11-05 10:27:52 +02001118 spin_unlock_irqrestore(&sta->tx_filtered[ac].lock, flags);
Johannes Berg948d8872011-09-29 16:04:29 +02001119 tmp = skb_queue_len(&pending);
1120 filtered += tmp - count;
1121 count = tmp;
1122
Arik Nemtsov987c2852012-11-05 10:27:52 +02001123 spin_lock_irqsave(&sta->ps_tx_buf[ac].lock, flags);
Johannes Berg948d8872011-09-29 16:04:29 +02001124 skb_queue_splice_tail_init(&sta->ps_tx_buf[ac], &pending);
Arik Nemtsov987c2852012-11-05 10:27:52 +02001125 spin_unlock_irqrestore(&sta->ps_tx_buf[ac].lock, flags);
Johannes Berg948d8872011-09-29 16:04:29 +02001126 tmp = skb_queue_len(&pending);
1127 buffered += tmp - count;
1128 }
1129
1130 ieee80211_add_pending_skbs_fn(local, &pending, clear_sta_ps_flags, sta);
1131
Emmanuel Grumbach687da132013-10-01 16:45:43 +03001132 /* This station just woke up and isn't aware of our SMPS state */
1133 if (!ieee80211_smps_is_restrictive(sta->known_smps_mode,
1134 sdata->smps_mode) &&
1135 sta->known_smps_mode != sdata->bss->req_smps &&
1136 sta_info_tx_streams(sta) != 1) {
1137 ht_dbg(sdata,
1138 "%pM just woke up and MIMO capable - update SMPS\n",
1139 sta->sta.addr);
1140 ieee80211_send_smps_action(sdata, sdata->bss->req_smps,
1141 sta->sta.addr,
1142 sdata->vif.bss_conf.bssid);
1143 }
1144
Johannes Bergaf818582009-11-06 11:35:50 +01001145 local->total_ps_buffered -= buffered;
1146
Johannes Bergc868cb352011-09-29 16:04:27 +02001147 sta_info_recalc_tim(sta);
1148
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02001149 ps_dbg(sdata,
1150 "STA %pM aid %d sending %d filtered/%d PS frames since STA not sleeping anymore\n",
1151 sta->sta.addr, sta->sta.aid, filtered, buffered);
Johannes Bergaf818582009-11-06 11:35:50 +01001152}
1153
Johannes Bergce662b442011-09-29 16:04:34 +02001154static void ieee80211_send_null_response(struct ieee80211_sub_if_data *sdata,
1155 struct sta_info *sta, int tid,
Johannes Bergb77cf4f2014-01-09 00:00:38 +01001156 enum ieee80211_frame_release_type reason,
1157 bool call_driver)
Johannes Bergce662b442011-09-29 16:04:34 +02001158{
1159 struct ieee80211_local *local = sdata->local;
1160 struct ieee80211_qos_hdr *nullfunc;
1161 struct sk_buff *skb;
1162 int size = sizeof(*nullfunc);
1163 __le16 fc;
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001164 bool qos = test_sta_flag(sta, WLAN_STA_WME);
Johannes Bergce662b442011-09-29 16:04:34 +02001165 struct ieee80211_tx_info *info;
Johannes Berg55de9082012-07-26 17:24:39 +02001166 struct ieee80211_chanctx_conf *chanctx_conf;
Johannes Bergce662b442011-09-29 16:04:34 +02001167
1168 if (qos) {
1169 fc = cpu_to_le16(IEEE80211_FTYPE_DATA |
1170 IEEE80211_STYPE_QOS_NULLFUNC |
1171 IEEE80211_FCTL_FROMDS);
1172 } else {
1173 size -= 2;
1174 fc = cpu_to_le16(IEEE80211_FTYPE_DATA |
1175 IEEE80211_STYPE_NULLFUNC |
1176 IEEE80211_FCTL_FROMDS);
1177 }
1178
1179 skb = dev_alloc_skb(local->hw.extra_tx_headroom + size);
1180 if (!skb)
1181 return;
1182
1183 skb_reserve(skb, local->hw.extra_tx_headroom);
1184
1185 nullfunc = (void *) skb_put(skb, size);
1186 nullfunc->frame_control = fc;
1187 nullfunc->duration_id = 0;
1188 memcpy(nullfunc->addr1, sta->sta.addr, ETH_ALEN);
1189 memcpy(nullfunc->addr2, sdata->vif.addr, ETH_ALEN);
1190 memcpy(nullfunc->addr3, sdata->vif.addr, ETH_ALEN);
1191
Johannes Berg59b66252011-10-13 13:19:19 +02001192 skb->priority = tid;
1193 skb_set_queue_mapping(skb, ieee802_1d_to_ac[tid]);
Johannes Bergce662b442011-09-29 16:04:34 +02001194 if (qos) {
Johannes Bergce662b442011-09-29 16:04:34 +02001195 nullfunc->qos_ctrl = cpu_to_le16(tid);
1196
Johannes Berg40b96402011-09-29 16:04:38 +02001197 if (reason == IEEE80211_FRAME_RELEASE_UAPSD)
Johannes Bergce662b442011-09-29 16:04:34 +02001198 nullfunc->qos_ctrl |=
1199 cpu_to_le16(IEEE80211_QOS_CTL_EOSP);
1200 }
1201
1202 info = IEEE80211_SKB_CB(skb);
1203
1204 /*
1205 * Tell TX path to send this frame even though the
1206 * STA may still remain is PS mode after this frame
Johannes Bergdeeaee12011-09-29 16:04:35 +02001207 * exchange. Also set EOSP to indicate this packet
1208 * ends the poll/service period.
Johannes Bergce662b442011-09-29 16:04:34 +02001209 */
Johannes Berg02f2f1a2012-02-27 12:18:30 +01001210 info->flags |= IEEE80211_TX_CTL_NO_PS_BUFFER |
Felix Fietkaud6d23de22013-06-04 12:15:42 +02001211 IEEE80211_TX_CTL_PS_RESPONSE |
Johannes Bergdeeaee12011-09-29 16:04:35 +02001212 IEEE80211_TX_STATUS_EOSP |
1213 IEEE80211_TX_CTL_REQ_TX_STATUS;
Johannes Bergce662b442011-09-29 16:04:34 +02001214
Johannes Bergb77cf4f2014-01-09 00:00:38 +01001215 if (call_driver)
1216 drv_allow_buffered_frames(local, sta, BIT(tid), 1,
1217 reason, false);
Johannes Berg40b96402011-09-29 16:04:38 +02001218
Johannes Berg89afe612013-02-13 15:39:57 +01001219 skb->dev = sdata->dev;
1220
Johannes Berg55de9082012-07-26 17:24:39 +02001221 rcu_read_lock();
1222 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
1223 if (WARN_ON(!chanctx_conf)) {
1224 rcu_read_unlock();
1225 kfree_skb(skb);
1226 return;
1227 }
1228
Johannes Berg4bf88532012-11-09 11:39:59 +01001229 ieee80211_xmit(sdata, skb, chanctx_conf->def.chan->band);
Johannes Berg55de9082012-07-26 17:24:39 +02001230 rcu_read_unlock();
Johannes Bergce662b442011-09-29 16:04:34 +02001231}
1232
Johannes Berg0a1cb802014-01-09 11:05:31 +01001233static int find_highest_prio_tid(unsigned long tids)
1234{
1235 /* lower 3 TIDs aren't ordered perfectly */
1236 if (tids & 0xF8)
1237 return fls(tids) - 1;
1238 /* TID 0 is BE just like TID 3 */
1239 if (tids & BIT(0))
1240 return 0;
1241 return fls(tids) - 1;
1242}
1243
Johannes Berg47086fc2011-09-29 16:04:33 +02001244static void
1245ieee80211_sta_ps_deliver_response(struct sta_info *sta,
1246 int n_frames, u8 ignored_acs,
1247 enum ieee80211_frame_release_type reason)
Johannes Bergaf818582009-11-06 11:35:50 +01001248{
1249 struct ieee80211_sub_if_data *sdata = sta->sdata;
1250 struct ieee80211_local *local = sdata->local;
Johannes Berg948d8872011-09-29 16:04:29 +02001251 bool more_data = false;
1252 int ac;
Johannes Berg4049e092011-09-29 16:04:32 +02001253 unsigned long driver_release_tids = 0;
Johannes Berg47086fc2011-09-29 16:04:33 +02001254 struct sk_buff_head frames;
1255
Johannes Bergdeeaee12011-09-29 16:04:35 +02001256 /* Service or PS-Poll period starts */
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001257 set_sta_flag(sta, WLAN_STA_SP);
Johannes Bergdeeaee12011-09-29 16:04:35 +02001258
Johannes Berg47086fc2011-09-29 16:04:33 +02001259 __skb_queue_head_init(&frames);
Johannes Bergaf818582009-11-06 11:35:50 +01001260
Johannes Bergf9f760b2014-01-08 17:45:07 +01001261 /* Get response frame(s) and more data bit for the last one. */
Johannes Berg948d8872011-09-29 16:04:29 +02001262 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
Johannes Berg4049e092011-09-29 16:04:32 +02001263 unsigned long tids;
1264
Johannes Berg47086fc2011-09-29 16:04:33 +02001265 if (ignored_acs & BIT(ac))
Johannes Berg948d8872011-09-29 16:04:29 +02001266 continue;
1267
Johannes Berg4049e092011-09-29 16:04:32 +02001268 tids = ieee80211_tids_for_ac(ac);
1269
Johannes Bergf9f760b2014-01-08 17:45:07 +01001270 /* if we already have frames from software, then we can't also
1271 * release from hardware queues
1272 */
1273 if (skb_queue_empty(&frames))
1274 driver_release_tids |= sta->driver_buffered_tids & tids;
Johannes Berg47086fc2011-09-29 16:04:33 +02001275
Johannes Bergf9f760b2014-01-08 17:45:07 +01001276 if (driver_release_tids) {
1277 /* If the driver has data on more than one TID then
Johannes Berg4049e092011-09-29 16:04:32 +02001278 * certainly there's more data if we release just a
Johannes Bergf9f760b2014-01-08 17:45:07 +01001279 * single frame now (from a single TID). This will
1280 * only happen for PS-Poll.
Johannes Berg4049e092011-09-29 16:04:32 +02001281 */
Johannes Berg47086fc2011-09-29 16:04:33 +02001282 if (reason == IEEE80211_FRAME_RELEASE_PSPOLL &&
1283 hweight16(driver_release_tids) > 1) {
Johannes Berg4049e092011-09-29 16:04:32 +02001284 more_data = true;
1285 driver_release_tids =
Johannes Berg0a1cb802014-01-09 11:05:31 +01001286 BIT(find_highest_prio_tid(
1287 driver_release_tids));
Johannes Berg4049e092011-09-29 16:04:32 +02001288 break;
Johannes Berg948d8872011-09-29 16:04:29 +02001289 }
Johannes Bergf9f760b2014-01-08 17:45:07 +01001290 } else {
1291 struct sk_buff *skb;
1292
1293 while (n_frames > 0) {
1294 skb = skb_dequeue(&sta->tx_filtered[ac]);
1295 if (!skb) {
1296 skb = skb_dequeue(
1297 &sta->ps_tx_buf[ac]);
1298 if (skb)
1299 local->total_ps_buffered--;
1300 }
1301 if (!skb)
1302 break;
1303 n_frames--;
1304 __skb_queue_tail(&frames, skb);
1305 }
Johannes Berg948d8872011-09-29 16:04:29 +02001306 }
1307
Johannes Bergf9f760b2014-01-08 17:45:07 +01001308 /* If we have more frames buffered on this AC, then set the
1309 * more-data bit and abort the loop since we can't send more
1310 * data from other ACs before the buffered frames from this.
1311 */
Johannes Berg948d8872011-09-29 16:04:29 +02001312 if (!skb_queue_empty(&sta->tx_filtered[ac]) ||
1313 !skb_queue_empty(&sta->ps_tx_buf[ac])) {
1314 more_data = true;
1315 break;
1316 }
Johannes Bergaf818582009-11-06 11:35:50 +01001317 }
Johannes Bergaf818582009-11-06 11:35:50 +01001318
Johannes Bergf9f760b2014-01-08 17:45:07 +01001319 if (skb_queue_empty(&frames) && !driver_release_tids) {
Johannes Bergce662b442011-09-29 16:04:34 +02001320 int tid;
Johannes Berg4049e092011-09-29 16:04:32 +02001321
Johannes Bergce662b442011-09-29 16:04:34 +02001322 /*
1323 * For PS-Poll, this can only happen due to a race condition
1324 * when we set the TIM bit and the station notices it, but
1325 * before it can poll for the frame we expire it.
1326 *
1327 * For uAPSD, this is said in the standard (11.2.1.5 h):
1328 * At each unscheduled SP for a non-AP STA, the AP shall
1329 * attempt to transmit at least one MSDU or MMPDU, but no
1330 * more than the value specified in the Max SP Length field
1331 * in the QoS Capability element from delivery-enabled ACs,
1332 * that are destined for the non-AP STA.
1333 *
1334 * Since we have no other MSDU/MMPDU, transmit a QoS null frame.
1335 */
1336
1337 /* This will evaluate to 1, 3, 5 or 7. */
1338 tid = 7 - ((ffs(~ignored_acs) - 1) << 1);
1339
Johannes Bergb77cf4f2014-01-09 00:00:38 +01001340 ieee80211_send_null_response(sdata, sta, tid, reason, true);
Johannes Bergf9f760b2014-01-08 17:45:07 +01001341 } else if (!driver_release_tids) {
Johannes Berg47086fc2011-09-29 16:04:33 +02001342 struct sk_buff_head pending;
1343 struct sk_buff *skb;
Johannes Berg40b96402011-09-29 16:04:38 +02001344 int num = 0;
1345 u16 tids = 0;
Johannes Bergb77cf4f2014-01-09 00:00:38 +01001346 bool need_null = false;
Johannes Bergaf818582009-11-06 11:35:50 +01001347
Johannes Berg47086fc2011-09-29 16:04:33 +02001348 skb_queue_head_init(&pending);
Johannes Bergaf818582009-11-06 11:35:50 +01001349
Johannes Berg47086fc2011-09-29 16:04:33 +02001350 while ((skb = __skb_dequeue(&frames))) {
1351 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1352 struct ieee80211_hdr *hdr = (void *) skb->data;
Johannes Berg40b96402011-09-29 16:04:38 +02001353 u8 *qoshdr = NULL;
1354
1355 num++;
Johannes Bergaf818582009-11-06 11:35:50 +01001356
Johannes Berg47086fc2011-09-29 16:04:33 +02001357 /*
1358 * Tell TX path to send this frame even though the
1359 * STA may still remain is PS mode after this frame
1360 * exchange.
1361 */
Felix Fietkaud6d23de22013-06-04 12:15:42 +02001362 info->flags |= IEEE80211_TX_CTL_NO_PS_BUFFER |
1363 IEEE80211_TX_CTL_PS_RESPONSE;
Johannes Bergaf818582009-11-06 11:35:50 +01001364
Johannes Berg47086fc2011-09-29 16:04:33 +02001365 /*
1366 * Use MoreData flag to indicate whether there are
1367 * more buffered frames for this STA
1368 */
Janusz.Dziedzic@tieto.com24b9c372011-11-07 09:47:47 +02001369 if (more_data || !skb_queue_empty(&frames))
Johannes Berg47086fc2011-09-29 16:04:33 +02001370 hdr->frame_control |=
1371 cpu_to_le16(IEEE80211_FCTL_MOREDATA);
Janusz.Dziedzic@tieto.com24b9c372011-11-07 09:47:47 +02001372 else
1373 hdr->frame_control &=
1374 cpu_to_le16(~IEEE80211_FCTL_MOREDATA);
Johannes Berg47086fc2011-09-29 16:04:33 +02001375
Johannes Berg40b96402011-09-29 16:04:38 +02001376 if (ieee80211_is_data_qos(hdr->frame_control) ||
1377 ieee80211_is_qos_nullfunc(hdr->frame_control))
1378 qoshdr = ieee80211_get_qos_ctl(hdr);
1379
Johannes Bergb77cf4f2014-01-09 00:00:38 +01001380 tids |= BIT(skb->priority);
1381
1382 __skb_queue_tail(&pending, skb);
1383
1384 /* end service period after last frame or add one */
1385 if (!skb_queue_empty(&frames))
1386 continue;
1387
1388 if (reason != IEEE80211_FRAME_RELEASE_UAPSD) {
1389 /* for PS-Poll, there's only one frame */
1390 info->flags |= IEEE80211_TX_STATUS_EOSP |
1391 IEEE80211_TX_CTL_REQ_TX_STATUS;
1392 break;
1393 }
1394
1395 /* For uAPSD, things are a bit more complicated. If the
1396 * last frame has a QoS header (i.e. is a QoS-data or
1397 * QoS-nulldata frame) then just set the EOSP bit there
1398 * and be done.
1399 * If the frame doesn't have a QoS header (which means
1400 * it should be a bufferable MMPDU) then we can't set
1401 * the EOSP bit in the QoS header; add a QoS-nulldata
1402 * frame to the list to send it after the MMPDU.
1403 *
1404 * Note that this code is only in the mac80211-release
1405 * code path, we assume that the driver will not buffer
1406 * anything but QoS-data frames, or if it does, will
1407 * create the QoS-nulldata frame by itself if needed.
1408 *
1409 * Cf. 802.11-2012 10.2.1.10 (c).
1410 */
1411 if (qoshdr) {
1412 *qoshdr |= IEEE80211_QOS_CTL_EOSP;
Johannes Berg47086fc2011-09-29 16:04:33 +02001413
Marco Porsch52a3f202012-03-16 15:30:26 +01001414 info->flags |= IEEE80211_TX_STATUS_EOSP |
1415 IEEE80211_TX_CTL_REQ_TX_STATUS;
Johannes Bergb77cf4f2014-01-09 00:00:38 +01001416 } else {
1417 /* The standard isn't completely clear on this
1418 * as it says the more-data bit should be set
1419 * if there are more BUs. The QoS-Null frame
1420 * we're about to send isn't buffered yet, we
1421 * only create it below, but let's pretend it
1422 * was buffered just in case some clients only
1423 * expect more-data=0 when eosp=1.
1424 */
1425 hdr->frame_control |=
1426 cpu_to_le16(IEEE80211_FCTL_MOREDATA);
1427 need_null = true;
1428 num++;
Marco Porsch52a3f202012-03-16 15:30:26 +01001429 }
Johannes Bergb77cf4f2014-01-09 00:00:38 +01001430 break;
Johannes Berg47086fc2011-09-29 16:04:33 +02001431 }
1432
Johannes Berg40b96402011-09-29 16:04:38 +02001433 drv_allow_buffered_frames(local, sta, tids, num,
1434 reason, more_data);
1435
Johannes Berg47086fc2011-09-29 16:04:33 +02001436 ieee80211_add_pending_skbs(local, &pending);
Johannes Bergaf818582009-11-06 11:35:50 +01001437
Johannes Bergb77cf4f2014-01-09 00:00:38 +01001438 if (need_null)
1439 ieee80211_send_null_response(
1440 sdata, sta, find_highest_prio_tid(tids),
1441 reason, false);
1442
Johannes Bergc868cb352011-09-29 16:04:27 +02001443 sta_info_recalc_tim(sta);
Johannes Bergaf818582009-11-06 11:35:50 +01001444 } else {
1445 /*
Johannes Berg4049e092011-09-29 16:04:32 +02001446 * We need to release a frame that is buffered somewhere in the
1447 * driver ... it'll have to handle that.
Johannes Bergf9f760b2014-01-08 17:45:07 +01001448 * Note that the driver also has to check the number of frames
1449 * on the TIDs we're releasing from - if there are more than
1450 * n_frames it has to set the more-data bit (if we didn't ask
1451 * it to set it anyway due to other buffered frames); if there
1452 * are fewer than n_frames it has to make sure to adjust that
1453 * to allow the service period to end properly.
Johannes Bergaf818582009-11-06 11:35:50 +01001454 */
Johannes Berg4049e092011-09-29 16:04:32 +02001455 drv_release_buffered_frames(local, sta, driver_release_tids,
Johannes Berg47086fc2011-09-29 16:04:33 +02001456 n_frames, reason, more_data);
Johannes Berg4049e092011-09-29 16:04:32 +02001457
1458 /*
1459 * Note that we don't recalculate the TIM bit here as it would
1460 * most likely have no effect at all unless the driver told us
Johannes Bergf9f760b2014-01-08 17:45:07 +01001461 * that the TID(s) became empty before returning here from the
Johannes Berg4049e092011-09-29 16:04:32 +02001462 * release function.
Johannes Bergf9f760b2014-01-08 17:45:07 +01001463 * Either way, however, when the driver tells us that the TID(s)
Johannes Berg4049e092011-09-29 16:04:32 +02001464 * became empty we'll do the TIM recalculation.
1465 */
Johannes Bergaf818582009-11-06 11:35:50 +01001466 }
1467}
1468
Johannes Bergaf818582009-11-06 11:35:50 +01001469void ieee80211_sta_ps_deliver_poll_response(struct sta_info *sta)
1470{
Johannes Berg47086fc2011-09-29 16:04:33 +02001471 u8 ignore_for_response = sta->sta.uapsd_queues;
Johannes Bergaf818582009-11-06 11:35:50 +01001472
Johannes Berg47086fc2011-09-29 16:04:33 +02001473 /*
1474 * If all ACs are delivery-enabled then we should reply
1475 * from any of them, if only some are enabled we reply
1476 * only from the non-enabled ones.
1477 */
1478 if (ignore_for_response == BIT(IEEE80211_NUM_ACS) - 1)
1479 ignore_for_response = 0;
1480
1481 ieee80211_sta_ps_deliver_response(sta, 1, ignore_for_response,
1482 IEEE80211_FRAME_RELEASE_PSPOLL);
1483}
1484
1485void ieee80211_sta_ps_deliver_uapsd(struct sta_info *sta)
1486{
1487 int n_frames = sta->sta.max_sp;
1488 u8 delivery_enabled = sta->sta.uapsd_queues;
1489
1490 /*
1491 * If we ever grow support for TSPEC this might happen if
1492 * the TSPEC update from hostapd comes in between a trigger
1493 * frame setting WLAN_STA_UAPSD in the RX path and this
1494 * actually getting called.
1495 */
1496 if (!delivery_enabled)
1497 return;
1498
Johannes Berg47086fc2011-09-29 16:04:33 +02001499 switch (sta->sta.max_sp) {
1500 case 1:
1501 n_frames = 2;
1502 break;
1503 case 2:
1504 n_frames = 4;
1505 break;
1506 case 3:
1507 n_frames = 6;
1508 break;
1509 case 0:
1510 /* XXX: what is a good value? */
1511 n_frames = 8;
1512 break;
Johannes Bergaf818582009-11-06 11:35:50 +01001513 }
Johannes Bergaf818582009-11-06 11:35:50 +01001514
Johannes Berg47086fc2011-09-29 16:04:33 +02001515 ieee80211_sta_ps_deliver_response(sta, n_frames, ~delivery_enabled,
1516 IEEE80211_FRAME_RELEASE_UAPSD);
Johannes Bergaf818582009-11-06 11:35:50 +01001517}
1518
1519void ieee80211_sta_block_awake(struct ieee80211_hw *hw,
1520 struct ieee80211_sta *pubsta, bool block)
1521{
1522 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
1523
Johannes Bergb5878a22010-04-07 16:48:40 +02001524 trace_api_sta_block_awake(sta->local, pubsta, block);
1525
Johannes Bergaf818582009-11-06 11:35:50 +01001526 if (block)
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001527 set_sta_flag(sta, WLAN_STA_PS_DRIVER);
1528 else if (test_sta_flag(sta, WLAN_STA_PS_DRIVER))
Johannes Bergaf818582009-11-06 11:35:50 +01001529 ieee80211_queue_work(hw, &sta->drv_unblock_wk);
1530}
1531EXPORT_SYMBOL(ieee80211_sta_block_awake);
Felix Fietkaudcf55fb2011-04-17 17:45:00 +02001532
Johannes Berge9437892013-02-15 21:38:08 +01001533void ieee80211_sta_eosp(struct ieee80211_sta *pubsta)
Johannes Berg37fbd902011-09-29 16:04:39 +02001534{
1535 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
1536 struct ieee80211_local *local = sta->local;
Johannes Berg37fbd902011-09-29 16:04:39 +02001537
1538 trace_api_eosp(local, pubsta);
1539
Johannes Berge9437892013-02-15 21:38:08 +01001540 clear_sta_flag(sta, WLAN_STA_SP);
Johannes Berg37fbd902011-09-29 16:04:39 +02001541}
Johannes Berge9437892013-02-15 21:38:08 +01001542EXPORT_SYMBOL(ieee80211_sta_eosp);
Johannes Berg37fbd902011-09-29 16:04:39 +02001543
Johannes Berg042ec452011-09-29 16:04:26 +02001544void ieee80211_sta_set_buffered(struct ieee80211_sta *pubsta,
1545 u8 tid, bool buffered)
Felix Fietkaudcf55fb2011-04-17 17:45:00 +02001546{
1547 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
1548
Johannes Berg5a306f52012-11-14 23:22:21 +01001549 if (WARN_ON(tid >= IEEE80211_NUM_TIDS))
Johannes Berg042ec452011-09-29 16:04:26 +02001550 return;
1551
Johannes Berg1b000782013-12-19 10:47:48 +01001552 trace_api_sta_set_buffered(sta->local, pubsta, tid, buffered);
1553
Johannes Berg948d8872011-09-29 16:04:29 +02001554 if (buffered)
1555 set_bit(tid, &sta->driver_buffered_tids);
1556 else
1557 clear_bit(tid, &sta->driver_buffered_tids);
1558
Johannes Bergc868cb352011-09-29 16:04:27 +02001559 sta_info_recalc_tim(sta);
Felix Fietkaudcf55fb2011-04-17 17:45:00 +02001560}
Johannes Berg042ec452011-09-29 16:04:26 +02001561EXPORT_SYMBOL(ieee80211_sta_set_buffered);
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001562
Johannes Berg83d5cc02012-01-12 09:31:10 +01001563int sta_info_move_state(struct sta_info *sta,
1564 enum ieee80211_sta_state new_state)
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001565{
Johannes Berg8bf11d82011-12-15 11:17:37 +01001566 might_sleep();
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001567
1568 if (sta->sta_state == new_state)
1569 return 0;
1570
Johannes Bergf09603a2012-01-20 13:55:21 +01001571 /* check allowed transitions first */
1572
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001573 switch (new_state) {
1574 case IEEE80211_STA_NONE:
Johannes Bergf09603a2012-01-20 13:55:21 +01001575 if (sta->sta_state != IEEE80211_STA_AUTH)
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001576 return -EINVAL;
1577 break;
1578 case IEEE80211_STA_AUTH:
Johannes Bergf09603a2012-01-20 13:55:21 +01001579 if (sta->sta_state != IEEE80211_STA_NONE &&
1580 sta->sta_state != IEEE80211_STA_ASSOC)
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001581 return -EINVAL;
1582 break;
1583 case IEEE80211_STA_ASSOC:
Johannes Bergf09603a2012-01-20 13:55:21 +01001584 if (sta->sta_state != IEEE80211_STA_AUTH &&
1585 sta->sta_state != IEEE80211_STA_AUTHORIZED)
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001586 return -EINVAL;
1587 break;
1588 case IEEE80211_STA_AUTHORIZED:
Johannes Bergf09603a2012-01-20 13:55:21 +01001589 if (sta->sta_state != IEEE80211_STA_ASSOC)
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001590 return -EINVAL;
1591 break;
1592 default:
1593 WARN(1, "invalid state %d", new_state);
1594 return -EINVAL;
1595 }
1596
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02001597 sta_dbg(sta->sdata, "moving STA %pM to state %d\n",
1598 sta->sta.addr, new_state);
Johannes Bergf09603a2012-01-20 13:55:21 +01001599
1600 /*
1601 * notify the driver before the actual changes so it can
1602 * fail the transition
1603 */
1604 if (test_sta_flag(sta, WLAN_STA_INSERTED)) {
1605 int err = drv_sta_state(sta->local, sta->sdata, sta,
1606 sta->sta_state, new_state);
1607 if (err)
1608 return err;
1609 }
1610
1611 /* reflect the change in all state variables */
1612
1613 switch (new_state) {
1614 case IEEE80211_STA_NONE:
1615 if (sta->sta_state == IEEE80211_STA_AUTH)
1616 clear_bit(WLAN_STA_AUTH, &sta->_flags);
1617 break;
1618 case IEEE80211_STA_AUTH:
1619 if (sta->sta_state == IEEE80211_STA_NONE)
1620 set_bit(WLAN_STA_AUTH, &sta->_flags);
1621 else if (sta->sta_state == IEEE80211_STA_ASSOC)
1622 clear_bit(WLAN_STA_ASSOC, &sta->_flags);
1623 break;
1624 case IEEE80211_STA_ASSOC:
1625 if (sta->sta_state == IEEE80211_STA_AUTH) {
1626 set_bit(WLAN_STA_ASSOC, &sta->_flags);
1627 } else if (sta->sta_state == IEEE80211_STA_AUTHORIZED) {
Felix Fietkau7e3ed022012-04-23 19:49:03 +02001628 if (sta->sdata->vif.type == NL80211_IFTYPE_AP ||
1629 (sta->sdata->vif.type == NL80211_IFTYPE_AP_VLAN &&
1630 !sta->sdata->u.vlan.sta))
1631 atomic_dec(&sta->sdata->bss->num_mcast_sta);
Johannes Bergf09603a2012-01-20 13:55:21 +01001632 clear_bit(WLAN_STA_AUTHORIZED, &sta->_flags);
1633 }
1634 break;
1635 case IEEE80211_STA_AUTHORIZED:
1636 if (sta->sta_state == IEEE80211_STA_ASSOC) {
Felix Fietkau7e3ed022012-04-23 19:49:03 +02001637 if (sta->sdata->vif.type == NL80211_IFTYPE_AP ||
1638 (sta->sdata->vif.type == NL80211_IFTYPE_AP_VLAN &&
1639 !sta->sdata->u.vlan.sta))
1640 atomic_inc(&sta->sdata->bss->num_mcast_sta);
Johannes Bergf09603a2012-01-20 13:55:21 +01001641 set_bit(WLAN_STA_AUTHORIZED, &sta->_flags);
1642 }
1643 break;
1644 default:
1645 break;
1646 }
1647
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001648 sta->sta_state = new_state;
1649
1650 return 0;
1651}
Emmanuel Grumbach687da132013-10-01 16:45:43 +03001652
1653u8 sta_info_tx_streams(struct sta_info *sta)
1654{
1655 struct ieee80211_sta_ht_cap *ht_cap = &sta->sta.ht_cap;
1656 u8 rx_streams;
1657
1658 if (!sta->sta.ht_cap.ht_supported)
1659 return 1;
1660
1661 if (sta->sta.vht_cap.vht_supported) {
1662 int i;
1663 u16 tx_mcs_map =
1664 le16_to_cpu(sta->sta.vht_cap.vht_mcs.tx_mcs_map);
1665
1666 for (i = 7; i >= 0; i--)
1667 if ((tx_mcs_map & (0x3 << (i * 2))) !=
1668 IEEE80211_VHT_MCS_NOT_SUPPORTED)
1669 return i + 1;
1670 }
1671
1672 if (ht_cap->mcs.rx_mask[3])
1673 rx_streams = 4;
1674 else if (ht_cap->mcs.rx_mask[2])
1675 rx_streams = 3;
1676 else if (ht_cap->mcs.rx_mask[1])
1677 rx_streams = 2;
1678 else
1679 rx_streams = 1;
1680
1681 if (!(ht_cap->mcs.tx_params & IEEE80211_HT_MCS_TX_RX_DIFF))
1682 return rx_streams;
1683
1684 return ((ht_cap->mcs.tx_params & IEEE80211_HT_MCS_TX_MAX_STREAMS_MASK)
1685 >> IEEE80211_HT_MCS_TX_MAX_STREAMS_SHIFT) + 1;
1686}