blob: 62a5f0889583437203a1a580b608829997c70ad1 [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);
Emmanuel Grumbach1d147bf2014-02-20 09:22:11 +0200333 spin_lock_init(&sta->ps_lock);
Johannes Bergaf818582009-11-06 11:35:50 +0100334 INIT_WORK(&sta->drv_unblock_wk, sta_unblock);
Johannes Berg67c282c2010-06-10 10:21:43 +0200335 INIT_WORK(&sta->ampdu_mlme.work, ieee80211_ba_session_work);
Johannes Berga93e3642010-06-10 10:21:46 +0200336 mutex_init(&sta->ampdu_mlme.mtx);
Thomas Pedersen87f59c72013-03-01 22:02:52 -0800337#ifdef CONFIG_MAC80211_MESH
338 if (ieee80211_vif_is_mesh(&sdata->vif) &&
339 !sdata->u.mesh.user_mpm)
340 init_timer(&sta->plink_timer);
Thomas Pedersen6c7c4cb2013-06-20 23:50:59 -0700341 sta->nonpeer_pm = NL80211_MESH_POWER_ACTIVE;
Thomas Pedersen87f59c72013-03-01 22:02:52 -0800342#endif
Johannes Berg07346f812008-05-03 01:02:02 +0200343
Johannes Berg17741cd2008-09-11 00:02:02 +0200344 memcpy(sta->sta.addr, addr, ETH_ALEN);
Johannes Bergd0709a62008-02-25 16:27:46 +0100345 sta->local = local;
346 sta->sdata = sdata;
Felix Fietkau8bc8aec2011-03-21 20:01:00 +0100347 sta->last_rx = jiffies;
Jiri Bencf0706e82007-05-05 11:45:53 -0700348
Johannes Berg71ec3752012-01-20 13:55:20 +0100349 sta->sta_state = IEEE80211_STA_NONE;
350
Mohammed Shafi Shajakhanebe27c92011-04-08 21:24:24 +0530351 do_posix_clock_monotonic_gettime(&uptime);
352 sta->last_connected = uptime.tv_sec;
Bruno Randolf541a45a2010-12-02 19:12:43 +0900353 ewma_init(&sta->avg_signal, 1024, 8);
Felix Fietkauef0621e2013-04-22 16:29:31 +0200354 for (i = 0; i < ARRAY_SIZE(sta->chain_signal_avg); i++)
355 ewma_init(&sta->chain_signal_avg[i], 1024, 8);
Bruno Randolf541a45a2010-12-02 19:12:43 +0900356
Johannes Bergef04a292014-01-06 15:56:59 +0100357 if (sta_prepare_rate_control(local, sta, gfp))
358 goto free;
Jiri Bencf0706e82007-05-05 11:45:53 -0700359
Johannes Berg5a306f52012-11-14 23:22:21 +0100360 for (i = 0; i < IEEE80211_NUM_TIDS; i++) {
Johannes Berga622ab72010-06-10 10:21:39 +0200361 /*
362 * timer_to_tid must be initialized with identity mapping
363 * to enable session_timer's data differentiation. See
364 * sta_rx_agg_session_timer_expired for usage.
365 */
Ron Rindjunsky16c5f152007-12-25 17:00:34 +0200366 sta->timer_to_tid[i] = i;
Ron Rindjunsky16c5f152007-12-25 17:00:34 +0200367 }
Johannes Berg948d8872011-09-29 16:04:29 +0200368 for (i = 0; i < IEEE80211_NUM_ACS; i++) {
369 skb_queue_head_init(&sta->ps_tx_buf[i]);
370 skb_queue_head_init(&sta->tx_filtered[i]);
371 }
Johannes Berg73651ee2008-02-25 16:27:47 +0100372
Johannes Berg5a306f52012-11-14 23:22:21 +0100373 for (i = 0; i < IEEE80211_NUM_TIDS; i++)
Alexey Dobriyan4be929b2010-05-24 14:33:03 -0700374 sta->last_seq_ctrl[i] = cpu_to_le16(USHRT_MAX);
Senthil Balasubramaniancccaec92009-05-14 18:42:08 +0530375
Johannes Bergaf0ed692013-02-12 14:21:00 +0100376 sta->sta.smps_mode = IEEE80211_SMPS_OFF;
Emmanuel Grumbach687da132013-10-01 16:45:43 +0300377 if (sdata->vif.type == NL80211_IFTYPE_AP ||
378 sdata->vif.type == NL80211_IFTYPE_AP_VLAN) {
379 struct ieee80211_supported_band *sband =
380 local->hw.wiphy->bands[ieee80211_get_sdata_band(sdata)];
381 u8 smps = (sband->ht_cap.cap & IEEE80211_HT_CAP_SM_PS) >>
382 IEEE80211_HT_CAP_SM_PS_SHIFT;
383 /*
384 * Assume that hostapd advertises our caps in the beacon and
385 * this is the known_smps_mode for a station that just assciated
386 */
387 switch (smps) {
388 case WLAN_HT_SMPS_CONTROL_DISABLED:
389 sta->known_smps_mode = IEEE80211_SMPS_OFF;
390 break;
391 case WLAN_HT_SMPS_CONTROL_STATIC:
392 sta->known_smps_mode = IEEE80211_SMPS_STATIC;
393 break;
394 case WLAN_HT_SMPS_CONTROL_DYNAMIC:
395 sta->known_smps_mode = IEEE80211_SMPS_DYNAMIC;
396 break;
397 default:
398 WARN_ON(1);
399 }
400 }
Johannes Bergaf0ed692013-02-12 14:21:00 +0100401
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200402 sta_dbg(sdata, "Allocated STA %pM\n", sta->sta.addr);
Johannes Berg73651ee2008-02-25 16:27:47 +0100403 return sta;
Johannes Bergef04a292014-01-06 15:56:59 +0100404
405free:
406 if (sta->tx_lat) {
407 for (i = 0; i < IEEE80211_NUM_TIDS; i++)
408 kfree(sta->tx_lat[i].bins);
409 kfree(sta->tx_lat);
410 }
411 kfree(sta);
412 return NULL;
Johannes Berg73651ee2008-02-25 16:27:47 +0100413}
414
Guy Eilam8c71df72011-08-17 15:18:14 +0300415static int sta_info_insert_check(struct sta_info *sta)
Johannes Berg34e89502010-02-03 13:59:58 +0100416{
Johannes Berg34e89502010-02-03 13:59:58 +0100417 struct ieee80211_sub_if_data *sdata = sta->sdata;
Johannes Berg34e89502010-02-03 13:59:58 +0100418
Johannes Berg03e44972008-02-27 09:56:40 +0100419 /*
420 * Can't be a WARN_ON because it can be triggered through a race:
421 * something inserts a STA (on one CPU) without holding the RTNL
422 * and another CPU turns off the net device.
423 */
Guy Eilam8c71df72011-08-17 15:18:14 +0300424 if (unlikely(!ieee80211_sdata_running(sdata)))
425 return -ENETDOWN;
Johannes Berg03e44972008-02-27 09:56:40 +0100426
Joe Perchesb203ca32012-05-08 18:56:52 +0000427 if (WARN_ON(ether_addr_equal(sta->sta.addr, sdata->vif.addr) ||
Guy Eilam8c71df72011-08-17 15:18:14 +0300428 is_multicast_ether_addr(sta->sta.addr)))
429 return -EINVAL;
430
431 return 0;
432}
433
Johannes Bergf09603a2012-01-20 13:55:21 +0100434static int sta_info_insert_drv_state(struct ieee80211_local *local,
435 struct ieee80211_sub_if_data *sdata,
436 struct sta_info *sta)
437{
438 enum ieee80211_sta_state state;
439 int err = 0;
440
441 for (state = IEEE80211_STA_NOTEXIST; state < sta->sta_state; state++) {
442 err = drv_sta_state(local, sdata, sta, state, state + 1);
443 if (err)
444 break;
445 }
446
447 if (!err) {
Johannes Berga4ec45a2012-01-20 13:55:22 +0100448 /*
449 * Drivers using legacy sta_add/sta_remove callbacks only
450 * get uploaded set to true after sta_add is called.
451 */
452 if (!local->ops->sta_add)
453 sta->uploaded = true;
Johannes Bergf09603a2012-01-20 13:55:21 +0100454 return 0;
455 }
456
457 if (sdata->vif.type == NL80211_IFTYPE_ADHOC) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200458 sdata_info(sdata,
459 "failed to move IBSS STA %pM to state %d (%d) - keeping it anyway\n",
460 sta->sta.addr, state + 1, err);
Johannes Bergf09603a2012-01-20 13:55:21 +0100461 err = 0;
462 }
463
464 /* unwind on error */
465 for (; state > IEEE80211_STA_NOTEXIST; state--)
466 WARN_ON(drv_sta_state(local, sdata, sta, state, state - 1));
467
468 return err;
469}
470
Guy Eilam8c71df72011-08-17 15:18:14 +0300471/*
472 * should be called with sta_mtx locked
473 * this function replaces the mutex lock
474 * with a RCU lock
475 */
Johannes Berg4d339602011-12-15 11:24:20 +0100476static int sta_info_insert_finish(struct sta_info *sta) __acquires(RCU)
Guy Eilam8c71df72011-08-17 15:18:14 +0300477{
478 struct ieee80211_local *local = sta->local;
479 struct ieee80211_sub_if_data *sdata = sta->sdata;
Johannes Berg7852e362012-01-20 13:55:24 +0100480 struct station_info sinfo;
Guy Eilam8c71df72011-08-17 15:18:14 +0300481 int err = 0;
482
483 lockdep_assert_held(&local->sta_mtx);
Johannes Berg34e89502010-02-03 13:59:58 +0100484
Johannes Berg7852e362012-01-20 13:55:24 +0100485 /* check if STA exists already */
486 if (sta_info_get_bss(sdata, sta->sta.addr)) {
487 err = -EEXIST;
488 goto out_err;
Johannes Berg43ba7e92008-02-21 14:09:30 +0100489 }
Johannes Berg32bfd352007-12-19 01:31:26 +0100490
Johannes Berg7852e362012-01-20 13:55:24 +0100491 /* notify driver */
492 err = sta_info_insert_drv_state(local, sdata, sta);
493 if (err)
494 goto out_err;
Johannes Berg32bfd352007-12-19 01:31:26 +0100495
Johannes Berg7852e362012-01-20 13:55:24 +0100496 local->num_sta++;
497 local->sta_generation++;
498 smp_mb();
Johannes Berg4d339602011-12-15 11:24:20 +0100499
Johannes Berg7852e362012-01-20 13:55:24 +0100500 /* make the station visible */
501 sta_info_hash_add(local, sta);
Johannes Berg4d339602011-12-15 11:24:20 +0100502
Arik Nemtsov794454c2012-06-03 23:32:32 +0300503 list_add_rcu(&sta->list, &local->sta_list);
Johannes Berg83d5cc02012-01-12 09:31:10 +0100504
Johannes Berg7852e362012-01-20 13:55:24 +0100505 set_sta_flag(sta, WLAN_STA_INSERTED);
Johannes Berg4d339602011-12-15 11:24:20 +0100506
Eliad Peller21f659b2013-11-11 20:14:01 +0200507 ieee80211_recalc_min_chandef(sdata);
Johannes Berg7852e362012-01-20 13:55:24 +0100508 ieee80211_sta_debugfs_add(sta);
509 rate_control_add_sta_debugfs(sta);
Johannes Berg4d339602011-12-15 11:24:20 +0100510
Johannes Berg7852e362012-01-20 13:55:24 +0100511 memset(&sinfo, 0, sizeof(sinfo));
512 sinfo.filled = 0;
513 sinfo.generation = local->sta_generation;
514 cfg80211_new_sta(sdata->dev, sta->sta.addr, &sinfo, GFP_KERNEL);
Johannes Bergd0709a62008-02-25 16:27:46 +0100515
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200516 sta_dbg(sdata, "Inserted STA %pM\n", sta->sta.addr);
Jiri Bencf0706e82007-05-05 11:45:53 -0700517
Johannes Berg34e89502010-02-03 13:59:58 +0100518 /* move reference to rcu-protected */
519 rcu_read_lock();
520 mutex_unlock(&local->sta_mtx);
Jiri Bence9f207f2007-05-05 11:46:38 -0700521
Johannes Berg73651ee2008-02-25 16:27:47 +0100522 if (ieee80211_vif_is_mesh(&sdata->vif))
523 mesh_accept_plinks_update(sdata);
524
525 return 0;
Johannes Berg4d339602011-12-15 11:24:20 +0100526 out_err:
527 mutex_unlock(&local->sta_mtx);
528 rcu_read_lock();
529 return err;
Guy Eilam8c71df72011-08-17 15:18:14 +0300530}
531
532int sta_info_insert_rcu(struct sta_info *sta) __acquires(RCU)
533{
534 struct ieee80211_local *local = sta->local;
Guy Eilam8c71df72011-08-17 15:18:14 +0300535 int err = 0;
536
Johannes Berg4d339602011-12-15 11:24:20 +0100537 might_sleep();
538
Guy Eilam8c71df72011-08-17 15:18:14 +0300539 err = sta_info_insert_check(sta);
540 if (err) {
Jiri Bencf0706e82007-05-05 11:45:53 -0700541 rcu_read_lock();
542 goto out_free;
543 }
544
Johannes Berg004c8722008-02-20 11:21:35 +0100545 mutex_lock(&local->sta_mtx);
546
Johannes Berg4d339602011-12-15 11:24:20 +0100547 err = sta_info_insert_finish(sta);
Guy Eilam8c71df72011-08-17 15:18:14 +0300548 if (err)
Johannes Berg004c8722008-02-20 11:21:35 +0100549 goto out_free;
Johannes Bergd0709a62008-02-25 16:27:46 +0100550
Johannes Berg004c8722008-02-20 11:21:35 +0100551 return 0;
Johannes Berg93e5deb2008-04-01 15:21:00 +0200552 out_free:
553 BUG_ON(!err);
Johannes Bergd9a7ddb2011-12-14 12:35:30 +0100554 sta_info_free(local, sta);
Johannes Berg93e5deb2008-04-01 15:21:00 +0200555 return err;
Jiri Bencf0706e82007-05-05 11:45:53 -0700556}
557
Johannes Berg34e89502010-02-03 13:59:58 +0100558int sta_info_insert(struct sta_info *sta)
559{
560 int err = sta_info_insert_rcu(sta);
561
562 rcu_read_unlock();
563
564 return err;
565}
566
Marco Porschd012a602012-10-10 12:39:50 -0700567static inline void __bss_tim_set(u8 *tim, u16 id)
Johannes Berg004c8722008-02-20 11:21:35 +0100568{
569 /*
570 * This format has been mandated by the IEEE specifications,
571 * so this line may not be changed to use the __set_bit() format.
572 */
Marco Porschd012a602012-10-10 12:39:50 -0700573 tim[id / 8] |= (1 << (id % 8));
Johannes Berg004c8722008-02-20 11:21:35 +0100574}
575
Marco Porschd012a602012-10-10 12:39:50 -0700576static inline void __bss_tim_clear(u8 *tim, u16 id)
Johannes Berg004c8722008-02-20 11:21:35 +0100577{
578 /*
579 * This format has been mandated by the IEEE specifications,
580 * so this line may not be changed to use the __clear_bit() format.
581 */
Marco Porschd012a602012-10-10 12:39:50 -0700582 tim[id / 8] &= ~(1 << (id % 8));
Johannes Berg004c8722008-02-20 11:21:35 +0100583}
584
Ilan Peer3d5839b2013-03-05 15:27:20 +0200585static inline bool __bss_tim_get(u8 *tim, u16 id)
586{
587 /*
588 * This format has been mandated by the IEEE specifications,
589 * so this line may not be changed to use the test_bit() format.
590 */
591 return tim[id / 8] & (1 << (id % 8));
592}
593
Johannes Berg948d8872011-09-29 16:04:29 +0200594static unsigned long ieee80211_tids_for_ac(int ac)
Johannes Berg004c8722008-02-20 11:21:35 +0100595{
Johannes Berg948d8872011-09-29 16:04:29 +0200596 /* If we ever support TIDs > 7, this obviously needs to be adjusted */
597 switch (ac) {
598 case IEEE80211_AC_VO:
599 return BIT(6) | BIT(7);
600 case IEEE80211_AC_VI:
601 return BIT(4) | BIT(5);
602 case IEEE80211_AC_BE:
603 return BIT(0) | BIT(3);
604 case IEEE80211_AC_BK:
605 return BIT(1) | BIT(2);
606 default:
607 WARN_ON(1);
608 return 0;
Johannes Bergd0709a62008-02-25 16:27:46 +0100609 }
Johannes Berg004c8722008-02-20 11:21:35 +0100610}
611
Johannes Bergc868cb352011-09-29 16:04:27 +0200612void sta_info_recalc_tim(struct sta_info *sta)
Johannes Berg004c8722008-02-20 11:21:35 +0100613{
Johannes Bergc868cb352011-09-29 16:04:27 +0200614 struct ieee80211_local *local = sta->local;
Marco Porschd012a602012-10-10 12:39:50 -0700615 struct ps_data *ps;
Johannes Berg948d8872011-09-29 16:04:29 +0200616 bool indicate_tim = false;
617 u8 ignore_for_tim = sta->sta.uapsd_queues;
618 int ac;
Marco Porschd012a602012-10-10 12:39:50 -0700619 u16 id;
Johannes Berg004c8722008-02-20 11:21:35 +0100620
Marco Porschd012a602012-10-10 12:39:50 -0700621 if (sta->sdata->vif.type == NL80211_IFTYPE_AP ||
622 sta->sdata->vif.type == NL80211_IFTYPE_AP_VLAN) {
623 if (WARN_ON_ONCE(!sta->sdata->bss))
624 return;
625
626 ps = &sta->sdata->bss->ps;
627 id = sta->sta.aid;
Marco Porsch3f52b7e2013-01-30 18:14:08 +0100628#ifdef CONFIG_MAC80211_MESH
629 } else if (ieee80211_vif_is_mesh(&sta->sdata->vif)) {
630 ps = &sta->sdata->u.mesh.ps;
Thomas Pedersen204d1302013-11-05 11:17:05 -0800631 /* TIM map only for 1 <= PLID <= IEEE80211_MAX_AID */
Chun-Yeow Yeoh6f101ef2013-11-13 15:43:03 +0800632 id = sta->plid % (IEEE80211_MAX_AID + 1);
Marco Porsch3f52b7e2013-01-30 18:14:08 +0100633#endif
Marco Porschd012a602012-10-10 12:39:50 -0700634 } else {
Johannes Bergc868cb352011-09-29 16:04:27 +0200635 return;
Marco Porschd012a602012-10-10 12:39:50 -0700636 }
Johannes Berg3e122be2008-07-09 14:40:34 +0200637
Johannes Bergc868cb352011-09-29 16:04:27 +0200638 /* No need to do anything if the driver does all */
639 if (local->hw.flags & IEEE80211_HW_AP_LINK_PS)
640 return;
Johannes Berg004c8722008-02-20 11:21:35 +0100641
Johannes Bergc868cb352011-09-29 16:04:27 +0200642 if (sta->dead)
643 goto done;
Johannes Berg3e122be2008-07-09 14:40:34 +0200644
Johannes Berg948d8872011-09-29 16:04:29 +0200645 /*
646 * If all ACs are delivery-enabled then we should build
647 * the TIM bit for all ACs anyway; if only some are then
648 * we ignore those and build the TIM bit using only the
649 * non-enabled ones.
650 */
651 if (ignore_for_tim == BIT(IEEE80211_NUM_ACS) - 1)
652 ignore_for_tim = 0;
Johannes Berg3e122be2008-07-09 14:40:34 +0200653
Johannes Berg948d8872011-09-29 16:04:29 +0200654 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
655 unsigned long tids;
656
657 if (ignore_for_tim & BIT(ac))
658 continue;
659
660 indicate_tim |= !skb_queue_empty(&sta->tx_filtered[ac]) ||
661 !skb_queue_empty(&sta->ps_tx_buf[ac]);
662 if (indicate_tim)
663 break;
664
665 tids = ieee80211_tids_for_ac(ac);
666
667 indicate_tim |=
668 sta->driver_buffered_tids & tids;
Johannes Bergd0709a62008-02-25 16:27:46 +0100669 }
Johannes Berg004c8722008-02-20 11:21:35 +0100670
Johannes Bergc868cb352011-09-29 16:04:27 +0200671 done:
Johannes Berg65f704a2013-02-13 17:39:53 +0100672 spin_lock_bh(&local->tim_lock);
Johannes Berg004c8722008-02-20 11:21:35 +0100673
Ilan Peer3d5839b2013-03-05 15:27:20 +0200674 if (indicate_tim == __bss_tim_get(ps->tim, id))
675 goto out_unlock;
676
Johannes Berg948d8872011-09-29 16:04:29 +0200677 if (indicate_tim)
Marco Porschd012a602012-10-10 12:39:50 -0700678 __bss_tim_set(ps->tim, id);
Johannes Bergc868cb352011-09-29 16:04:27 +0200679 else
Marco Porschd012a602012-10-10 12:39:50 -0700680 __bss_tim_clear(ps->tim, id);
Johannes Berg3e122be2008-07-09 14:40:34 +0200681
Johannes Bergc868cb352011-09-29 16:04:27 +0200682 if (local->ops->set_tim) {
683 local->tim_in_locked_section = true;
Johannes Berg948d8872011-09-29 16:04:29 +0200684 drv_set_tim(local, &sta->sta, indicate_tim);
Johannes Bergc868cb352011-09-29 16:04:27 +0200685 local->tim_in_locked_section = false;
Johannes Berg004c8722008-02-20 11:21:35 +0100686 }
Johannes Berg004c8722008-02-20 11:21:35 +0100687
Ilan Peer3d5839b2013-03-05 15:27:20 +0200688out_unlock:
Johannes Berg65f704a2013-02-13 17:39:53 +0100689 spin_unlock_bh(&local->tim_lock);
Johannes Berg004c8722008-02-20 11:21:35 +0100690}
691
Johannes Bergcd0b8d82011-09-06 14:13:06 +0200692static bool sta_info_buffer_expired(struct sta_info *sta, struct sk_buff *skb)
Jiri Bencf0706e82007-05-05 11:45:53 -0700693{
Johannes Berge039fa42008-05-15 12:55:29 +0200694 struct ieee80211_tx_info *info;
Jiri Bencf0706e82007-05-05 11:45:53 -0700695 int timeout;
696
697 if (!skb)
Johannes Bergcd0b8d82011-09-06 14:13:06 +0200698 return false;
Jiri Bencf0706e82007-05-05 11:45:53 -0700699
Johannes Berge039fa42008-05-15 12:55:29 +0200700 info = IEEE80211_SKB_CB(skb);
Jiri Bencf0706e82007-05-05 11:45:53 -0700701
702 /* Timeout: (2 * listen_interval * beacon_int * 1024 / 1000000) sec */
Johannes Berg57c4d7b2009-04-23 16:10:04 +0200703 timeout = (sta->listen_interval *
704 sta->sdata->vif.bss_conf.beacon_int *
705 32 / 15625) * HZ;
Jiri Bencf0706e82007-05-05 11:45:53 -0700706 if (timeout < STA_TX_BUFFER_EXPIRE)
707 timeout = STA_TX_BUFFER_EXPIRE;
Johannes Berge039fa42008-05-15 12:55:29 +0200708 return time_after(jiffies, info->control.jiffies + timeout);
Jiri Bencf0706e82007-05-05 11:45:53 -0700709}
710
711
Johannes Berg948d8872011-09-29 16:04:29 +0200712static bool sta_info_cleanup_expire_buffered_ac(struct ieee80211_local *local,
713 struct sta_info *sta, int ac)
Jiri Bencf0706e82007-05-05 11:45:53 -0700714{
715 unsigned long flags;
716 struct sk_buff *skb;
717
Johannes Berg60750392011-09-29 16:04:28 +0200718 /*
719 * First check for frames that should expire on the filtered
720 * queue. Frames here were rejected by the driver and are on
721 * a separate queue to avoid reordering with normal PS-buffered
722 * frames. They also aren't accounted for right now in the
723 * total_ps_buffered counter.
724 */
Jiri Bencf0706e82007-05-05 11:45:53 -0700725 for (;;) {
Johannes Berg948d8872011-09-29 16:04:29 +0200726 spin_lock_irqsave(&sta->tx_filtered[ac].lock, flags);
727 skb = skb_peek(&sta->tx_filtered[ac]);
Johannes Berg57c4d7b2009-04-23 16:10:04 +0200728 if (sta_info_buffer_expired(sta, skb))
Johannes Berg948d8872011-09-29 16:04:29 +0200729 skb = __skb_dequeue(&sta->tx_filtered[ac]);
Johannes Berg836341a2008-02-20 02:07:21 +0100730 else
Jiri Bencf0706e82007-05-05 11:45:53 -0700731 skb = NULL;
Johannes Berg948d8872011-09-29 16:04:29 +0200732 spin_unlock_irqrestore(&sta->tx_filtered[ac].lock, flags);
Jiri Bencf0706e82007-05-05 11:45:53 -0700733
Johannes Berg60750392011-09-29 16:04:28 +0200734 /*
735 * Frames are queued in order, so if this one
736 * hasn't expired yet we can stop testing. If
737 * we actually reached the end of the queue we
738 * also need to stop, of course.
739 */
740 if (!skb)
741 break;
Felix Fietkaud4fa14c2012-10-10 22:40:23 +0200742 ieee80211_free_txskb(&local->hw, skb);
Johannes Berg60750392011-09-29 16:04:28 +0200743 }
744
745 /*
746 * Now also check the normal PS-buffered queue, this will
747 * only find something if the filtered queue was emptied
748 * since the filtered frames are all before the normal PS
749 * buffered frames.
750 */
Jiri Bencf0706e82007-05-05 11:45:53 -0700751 for (;;) {
Johannes Berg948d8872011-09-29 16:04:29 +0200752 spin_lock_irqsave(&sta->ps_tx_buf[ac].lock, flags);
753 skb = skb_peek(&sta->ps_tx_buf[ac]);
Jiri Bencf0706e82007-05-05 11:45:53 -0700754 if (sta_info_buffer_expired(sta, skb))
Johannes Berg948d8872011-09-29 16:04:29 +0200755 skb = __skb_dequeue(&sta->ps_tx_buf[ac]);
Jiri Bencf0706e82007-05-05 11:45:53 -0700756 else
757 skb = NULL;
Johannes Berg948d8872011-09-29 16:04:29 +0200758 spin_unlock_irqrestore(&sta->ps_tx_buf[ac].lock, flags);
Jiri Bencf0706e82007-05-05 11:45:53 -0700759
Johannes Berg60750392011-09-29 16:04:28 +0200760 /*
761 * frames are queued in order, so if this one
762 * hasn't expired yet (or we reached the end of
763 * the queue) we can stop testing
764 */
Johannes Berg836341a2008-02-20 02:07:21 +0100765 if (!skb)
Jiri Bencf0706e82007-05-05 11:45:53 -0700766 break;
Johannes Berg836341a2008-02-20 02:07:21 +0100767
Johannes Berg836341a2008-02-20 02:07:21 +0100768 local->total_ps_buffered--;
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200769 ps_dbg(sta->sdata, "Buffered frame expired (STA %pM)\n",
770 sta->sta.addr);
Felix Fietkaud4fa14c2012-10-10 22:40:23 +0200771 ieee80211_free_txskb(&local->hw, skb);
Jiri Bencf0706e82007-05-05 11:45:53 -0700772 }
Juuso Oikarinen3393a602010-04-19 10:12:52 +0300773
Johannes Berg60750392011-09-29 16:04:28 +0200774 /*
775 * Finally, recalculate the TIM bit for this station -- it might
776 * now be clear because the station was too slow to retrieve its
777 * frames.
778 */
779 sta_info_recalc_tim(sta);
780
781 /*
782 * Return whether there are any frames still buffered, this is
783 * used to check whether the cleanup timer still needs to run,
784 * if there are no frames we don't need to rearm the timer.
785 */
Johannes Berg948d8872011-09-29 16:04:29 +0200786 return !(skb_queue_empty(&sta->ps_tx_buf[ac]) &&
787 skb_queue_empty(&sta->tx_filtered[ac]));
788}
789
790static bool sta_info_cleanup_expire_buffered(struct ieee80211_local *local,
791 struct sta_info *sta)
792{
793 bool have_buffered = false;
794 int ac;
795
Marco Porsch3f52b7e2013-01-30 18:14:08 +0100796 /* This is only necessary for stations on BSS/MBSS interfaces */
797 if (!sta->sdata->bss &&
798 !ieee80211_vif_is_mesh(&sta->sdata->vif))
Johannes Berg948d8872011-09-29 16:04:29 +0200799 return false;
800
801 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++)
802 have_buffered |=
803 sta_info_cleanup_expire_buffered_ac(local, sta, ac);
804
805 return have_buffered;
Jiri Bencf0706e82007-05-05 11:45:53 -0700806}
807
Johannes Bergd7782072013-12-04 23:12:31 +0100808static int __must_check __sta_info_destroy_part1(struct sta_info *sta)
Johannes Berg34e89502010-02-03 13:59:58 +0100809{
810 struct ieee80211_local *local;
811 struct ieee80211_sub_if_data *sdata;
Johannes Berg6d10e462013-03-06 23:09:11 +0100812 int ret;
Johannes Berg34e89502010-02-03 13:59:58 +0100813
814 might_sleep();
815
816 if (!sta)
817 return -ENOENT;
818
819 local = sta->local;
820 sdata = sta->sdata;
821
Johannes Berg83d5cc02012-01-12 09:31:10 +0100822 lockdep_assert_held(&local->sta_mtx);
823
Johannes Berg098a6072010-04-06 11:18:47 +0200824 /*
825 * Before removing the station from the driver and
826 * rate control, it might still start new aggregation
827 * sessions -- block that to make sure the tear-down
828 * will be sufficient.
829 */
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200830 set_sta_flag(sta, WLAN_STA_BLOCK_BA);
Johannes Bergc82c4a82012-07-18 13:31:31 +0200831 ieee80211_sta_tear_down_BA_sessions(sta, AGG_STOP_DESTROY_STA);
Johannes Berg098a6072010-04-06 11:18:47 +0200832
Johannes Berg34e89502010-02-03 13:59:58 +0100833 ret = sta_info_hash_del(local, sta);
Johannes Bergb01711b2013-12-04 20:25:27 +0100834 if (WARN_ON(ret))
Johannes Berg34e89502010-02-03 13:59:58 +0100835 return ret;
836
Arik Nemtsov794454c2012-06-03 23:32:32 +0300837 list_del_rcu(&sta->list);
Johannes Berg4d339602011-12-15 11:24:20 +0100838
Johannes Berg6a9d1b92013-12-04 22:39:17 +0100839 drv_sta_pre_rcu_remove(local, sta->sdata, sta);
840
Johannes Berga710c812013-12-04 20:11:06 +0100841 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN &&
842 rcu_access_pointer(sdata->u.vlan.sta) == sta)
843 RCU_INIT_POINTER(sdata->u.vlan.sta, NULL);
844
Johannes Bergd7782072013-12-04 23:12:31 +0100845 return 0;
846}
847
848static void __sta_info_destroy_part2(struct sta_info *sta)
849{
850 struct ieee80211_local *local = sta->local;
851 struct ieee80211_sub_if_data *sdata = sta->sdata;
852 int ret;
853
854 /*
855 * NOTE: This assumes at least synchronize_net() was done
856 * after _part1 and before _part2!
857 */
858
859 might_sleep();
860 lockdep_assert_held(&local->sta_mtx);
861
Johannes Bergc8782072013-12-04 23:05:45 +0100862 /* now keys can no longer be reached */
Johannes Berg6d10e462013-03-06 23:09:11 +0100863 ieee80211_free_sta_keys(local, sta);
Johannes Berg34e89502010-02-03 13:59:58 +0100864
865 sta->dead = true;
866
Johannes Berg34e89502010-02-03 13:59:58 +0100867 local->num_sta--;
868 local->sta_generation++;
869
Johannes Berg83d5cc02012-01-12 09:31:10 +0100870 while (sta->sta_state > IEEE80211_STA_NONE) {
Johannes Bergf09603a2012-01-20 13:55:21 +0100871 ret = sta_info_move_state(sta, sta->sta_state - 1);
872 if (ret) {
Johannes Berg83d5cc02012-01-12 09:31:10 +0100873 WARN_ON_ONCE(1);
874 break;
875 }
876 }
Johannes Bergd9a7ddb2011-12-14 12:35:30 +0100877
Johannes Bergf09603a2012-01-20 13:55:21 +0100878 if (sta->uploaded) {
Johannes Bergf09603a2012-01-20 13:55:21 +0100879 ret = drv_sta_state(local, sdata, sta, IEEE80211_STA_NONE,
880 IEEE80211_STA_NOTEXIST);
881 WARN_ON_ONCE(ret != 0);
882 }
Johannes Berg34e89502010-02-03 13:59:58 +0100883
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200884 sta_dbg(sdata, "Removed STA %pM\n", sta->sta.addr);
885
Jouni Malinenec15e682011-03-23 15:29:52 +0200886 cfg80211_del_sta(sdata->dev, sta->sta.addr, GFP_KERNEL);
887
Johannes Berg34e89502010-02-03 13:59:58 +0100888 rate_control_remove_sta_debugfs(sta);
889 ieee80211_sta_debugfs_remove(sta);
Eliad Peller21f659b2013-11-11 20:14:01 +0200890 ieee80211_recalc_min_chandef(sdata);
Johannes Berg34e89502010-02-03 13:59:58 +0100891
Johannes Bergd34ba212013-12-04 22:46:11 +0100892 cleanup_single_sta(sta);
Johannes Bergd7782072013-12-04 23:12:31 +0100893}
894
895int __must_check __sta_info_destroy(struct sta_info *sta)
896{
897 int err = __sta_info_destroy_part1(sta);
898
899 if (err)
900 return err;
901
902 synchronize_net();
903
904 __sta_info_destroy_part2(sta);
Johannes Berg34e89502010-02-03 13:59:58 +0100905
906 return 0;
907}
908
909int sta_info_destroy_addr(struct ieee80211_sub_if_data *sdata, const u8 *addr)
910{
911 struct sta_info *sta;
912 int ret;
913
914 mutex_lock(&sdata->local->sta_mtx);
Johannes Berg7852e362012-01-20 13:55:24 +0100915 sta = sta_info_get(sdata, addr);
Johannes Berg34e89502010-02-03 13:59:58 +0100916 ret = __sta_info_destroy(sta);
917 mutex_unlock(&sdata->local->sta_mtx);
918
919 return ret;
920}
921
922int sta_info_destroy_addr_bss(struct ieee80211_sub_if_data *sdata,
923 const u8 *addr)
924{
925 struct sta_info *sta;
926 int ret;
927
928 mutex_lock(&sdata->local->sta_mtx);
Johannes Berg7852e362012-01-20 13:55:24 +0100929 sta = sta_info_get_bss(sdata, addr);
Johannes Berg34e89502010-02-03 13:59:58 +0100930 ret = __sta_info_destroy(sta);
931 mutex_unlock(&sdata->local->sta_mtx);
932
933 return ret;
934}
Jiri Bencf0706e82007-05-05 11:45:53 -0700935
936static void sta_info_cleanup(unsigned long data)
937{
938 struct ieee80211_local *local = (struct ieee80211_local *) data;
939 struct sta_info *sta;
Juuso Oikarinen3393a602010-04-19 10:12:52 +0300940 bool timer_needed = false;
Jiri Bencf0706e82007-05-05 11:45:53 -0700941
Johannes Bergd0709a62008-02-25 16:27:46 +0100942 rcu_read_lock();
943 list_for_each_entry_rcu(sta, &local->sta_list, list)
Juuso Oikarinen3393a602010-04-19 10:12:52 +0300944 if (sta_info_cleanup_expire_buffered(local, sta))
945 timer_needed = true;
Johannes Bergd0709a62008-02-25 16:27:46 +0100946 rcu_read_unlock();
Jiri Bencf0706e82007-05-05 11:45:53 -0700947
Johannes Berg5bb644a2009-05-17 11:40:42 +0200948 if (local->quiescing)
949 return;
950
Juuso Oikarinen3393a602010-04-19 10:12:52 +0300951 if (!timer_needed)
952 return;
953
Johannes Berg26d59532011-04-01 13:52:48 +0200954 mod_timer(&local->sta_cleanup,
955 round_jiffies(jiffies + STA_INFO_CLEANUP_INTERVAL));
Jiri Bencf0706e82007-05-05 11:45:53 -0700956}
957
958void sta_info_init(struct ieee80211_local *local)
959{
Johannes Berg4d339602011-12-15 11:24:20 +0100960 spin_lock_init(&local->tim_lock);
Johannes Berg34e89502010-02-03 13:59:58 +0100961 mutex_init(&local->sta_mtx);
Jiri Bencf0706e82007-05-05 11:45:53 -0700962 INIT_LIST_HEAD(&local->sta_list);
Jiri Bencf0706e82007-05-05 11:45:53 -0700963
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -0800964 setup_timer(&local->sta_cleanup, sta_info_cleanup,
965 (unsigned long)local);
Jiri Bencf0706e82007-05-05 11:45:53 -0700966}
967
968void sta_info_stop(struct ieee80211_local *local)
969{
Johannes Berga56f9922012-12-13 23:08:52 +0100970 del_timer_sync(&local->sta_cleanup);
Jiri Bencf0706e82007-05-05 11:45:53 -0700971}
972
Johannes Berg051007d2012-12-13 23:49:02 +0100973
Johannes Berge7162512013-12-04 23:18:37 +0100974int __sta_info_flush(struct ieee80211_sub_if_data *sdata, bool vlans)
Jiri Bencf0706e82007-05-05 11:45:53 -0700975{
Johannes Bergb998e8b2012-12-13 23:07:46 +0100976 struct ieee80211_local *local = sdata->local;
Jiri Bencf0706e82007-05-05 11:45:53 -0700977 struct sta_info *sta, *tmp;
Johannes Bergd7782072013-12-04 23:12:31 +0100978 LIST_HEAD(free_list);
Johannes Berg44213b52008-02-25 16:27:49 +0100979 int ret = 0;
Jiri Bencf0706e82007-05-05 11:45:53 -0700980
Johannes Bergd0709a62008-02-25 16:27:46 +0100981 might_sleep();
982
Johannes Berge7162512013-12-04 23:18:37 +0100983 WARN_ON(vlans && sdata->vif.type != NL80211_IFTYPE_AP);
984 WARN_ON(vlans && !sdata->bss);
985
Johannes Berg34e89502010-02-03 13:59:58 +0100986 mutex_lock(&local->sta_mtx);
Johannes Berg34e89502010-02-03 13:59:58 +0100987 list_for_each_entry_safe(sta, tmp, &local->sta_list, list) {
Johannes Berge7162512013-12-04 23:18:37 +0100988 if (sdata == sta->sdata ||
989 (vlans && sdata->bss == sta->sdata->bss)) {
Johannes Bergd7782072013-12-04 23:12:31 +0100990 if (!WARN_ON(__sta_info_destroy_part1(sta)))
991 list_add(&sta->free_list, &free_list);
Johannes Berg34316832012-02-25 21:40:46 +0100992 ret++;
993 }
Johannes Berg34e89502010-02-03 13:59:58 +0100994 }
Johannes Bergd7782072013-12-04 23:12:31 +0100995
996 if (!list_empty(&free_list)) {
997 synchronize_net();
998 list_for_each_entry_safe(sta, tmp, &free_list, free_list)
999 __sta_info_destroy_part2(sta);
1000 }
Johannes Berg34e89502010-02-03 13:59:58 +01001001 mutex_unlock(&local->sta_mtx);
Johannes Berg44213b52008-02-25 16:27:49 +01001002
Johannes Berg051007d2012-12-13 23:49:02 +01001003 return ret;
1004}
1005
Johannes Berg24723d12008-09-11 00:01:46 +02001006void ieee80211_sta_expire(struct ieee80211_sub_if_data *sdata,
1007 unsigned long exp_time)
1008{
1009 struct ieee80211_local *local = sdata->local;
1010 struct sta_info *sta, *tmp;
Johannes Berg24723d12008-09-11 00:01:46 +02001011
Johannes Berg34e89502010-02-03 13:59:58 +01001012 mutex_lock(&local->sta_mtx);
Mohammed Shafi Shajakhane46a2cf2011-12-26 10:43:29 +05301013
1014 list_for_each_entry_safe(sta, tmp, &local->sta_list, list) {
Marek Lindnerec2b7742011-12-20 23:16:52 +08001015 if (sdata != sta->sdata)
1016 continue;
1017
Johannes Berg24723d12008-09-11 00:01:46 +02001018 if (time_after(jiffies, sta->last_rx + exp_time)) {
Mohammed Shafi Shajakhaneea57d42012-10-08 21:33:47 +05301019 sta_dbg(sta->sdata, "expiring inactive STA %pM\n",
1020 sta->sta.addr);
Marco Porsch3f52b7e2013-01-30 18:14:08 +01001021
1022 if (ieee80211_vif_is_mesh(&sdata->vif) &&
1023 test_sta_flag(sta, WLAN_STA_PS_STA))
1024 atomic_dec(&sdata->u.mesh.ps.num_sta_ps);
1025
Johannes Berg34e89502010-02-03 13:59:58 +01001026 WARN_ON(__sta_info_destroy(sta));
Johannes Berg24723d12008-09-11 00:01:46 +02001027 }
Mohammed Shafi Shajakhane46a2cf2011-12-26 10:43:29 +05301028 }
1029
Johannes Berg34e89502010-02-03 13:59:58 +01001030 mutex_unlock(&local->sta_mtx);
Johannes Berg24723d12008-09-11 00:01:46 +02001031}
Johannes Berg17741cd2008-09-11 00:02:02 +02001032
Ben Greear686b9cb2010-09-23 09:44:36 -07001033struct ieee80211_sta *ieee80211_find_sta_by_ifaddr(struct ieee80211_hw *hw,
1034 const u8 *addr,
1035 const u8 *localaddr)
Johannes Berg17741cd2008-09-11 00:02:02 +02001036{
Johannes Bergabe60632009-11-25 17:46:18 +01001037 struct sta_info *sta, *nxt;
Johannes Berg17741cd2008-09-11 00:02:02 +02001038
Ben Greear686b9cb2010-09-23 09:44:36 -07001039 /*
1040 * Just return a random station if localaddr is NULL
1041 * ... first in list.
1042 */
Johannes Bergf7c65592010-04-30 13:48:36 +02001043 for_each_sta_info(hw_to_local(hw), addr, sta, nxt) {
Ben Greear686b9cb2010-09-23 09:44:36 -07001044 if (localaddr &&
Joe Perchesb203ca32012-05-08 18:56:52 +00001045 !ether_addr_equal(sta->sdata->vif.addr, localaddr))
Ben Greear686b9cb2010-09-23 09:44:36 -07001046 continue;
Johannes Bergf7c65592010-04-30 13:48:36 +02001047 if (!sta->uploaded)
1048 return NULL;
Johannes Bergabe60632009-11-25 17:46:18 +01001049 return &sta->sta;
Johannes Bergf7c65592010-04-30 13:48:36 +02001050 }
1051
Johannes Bergabe60632009-11-25 17:46:18 +01001052 return NULL;
Johannes Berg17741cd2008-09-11 00:02:02 +02001053}
Ben Greear686b9cb2010-09-23 09:44:36 -07001054EXPORT_SYMBOL_GPL(ieee80211_find_sta_by_ifaddr);
Johannes Berg5ed176e2009-11-04 14:42:28 +01001055
1056struct ieee80211_sta *ieee80211_find_sta(struct ieee80211_vif *vif,
1057 const u8 *addr)
1058{
Johannes Bergf7c65592010-04-30 13:48:36 +02001059 struct sta_info *sta;
Johannes Berg5ed176e2009-11-04 14:42:28 +01001060
1061 if (!vif)
1062 return NULL;
1063
Johannes Bergf7c65592010-04-30 13:48:36 +02001064 sta = sta_info_get_bss(vif_to_sdata(vif), addr);
1065 if (!sta)
1066 return NULL;
Johannes Berg5ed176e2009-11-04 14:42:28 +01001067
Johannes Bergf7c65592010-04-30 13:48:36 +02001068 if (!sta->uploaded)
1069 return NULL;
1070
1071 return &sta->sta;
Johannes Berg5ed176e2009-11-04 14:42:28 +01001072}
Johannes Berg17741cd2008-09-11 00:02:02 +02001073EXPORT_SYMBOL(ieee80211_find_sta);
Johannes Bergaf818582009-11-06 11:35:50 +01001074
Johannes Berg50a94322010-11-16 11:50:28 -08001075static void clear_sta_ps_flags(void *_sta)
1076{
1077 struct sta_info *sta = _sta;
Helmut Schaa608383b2012-01-30 15:18:00 +01001078 struct ieee80211_sub_if_data *sdata = sta->sdata;
Marco Porschd012a602012-10-10 12:39:50 -07001079 struct ps_data *ps;
1080
1081 if (sdata->vif.type == NL80211_IFTYPE_AP ||
1082 sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
1083 ps = &sdata->bss->ps;
Marco Porsch3f52b7e2013-01-30 18:14:08 +01001084 else if (ieee80211_vif_is_mesh(&sdata->vif))
1085 ps = &sdata->u.mesh.ps;
Marco Porschd012a602012-10-10 12:39:50 -07001086 else
1087 return;
Johannes Berg50a94322010-11-16 11:50:28 -08001088
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001089 clear_sta_flag(sta, WLAN_STA_PS_DRIVER);
Helmut Schaa608383b2012-01-30 15:18:00 +01001090 if (test_and_clear_sta_flag(sta, WLAN_STA_PS_STA))
Marco Porschd012a602012-10-10 12:39:50 -07001091 atomic_dec(&ps->num_sta_ps);
Johannes Berg50a94322010-11-16 11:50:28 -08001092}
1093
Johannes Bergaf818582009-11-06 11:35:50 +01001094/* powersave support code */
1095void ieee80211_sta_ps_deliver_wakeup(struct sta_info *sta)
1096{
1097 struct ieee80211_sub_if_data *sdata = sta->sdata;
1098 struct ieee80211_local *local = sdata->local;
Johannes Berg948d8872011-09-29 16:04:29 +02001099 struct sk_buff_head pending;
1100 int filtered = 0, buffered = 0, ac;
Arik Nemtsov987c2852012-11-05 10:27:52 +02001101 unsigned long flags;
Johannes Bergaf818582009-11-06 11:35:50 +01001102
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001103 clear_sta_flag(sta, WLAN_STA_SP);
Johannes Berg47086fc2011-09-29 16:04:33 +02001104
Johannes Berg5a306f52012-11-14 23:22:21 +01001105 BUILD_BUG_ON(BITS_TO_LONGS(IEEE80211_NUM_TIDS) > 1);
Johannes Berg948d8872011-09-29 16:04:29 +02001106 sta->driver_buffered_tids = 0;
1107
Arik Nemtsovd057e5a2011-01-31 22:29:13 +02001108 if (!(local->hw.flags & IEEE80211_HW_AP_LINK_PS))
1109 drv_sta_notify(local, sdata, STA_NOTIFY_AWAKE, &sta->sta);
Johannes Bergaf818582009-11-06 11:35:50 +01001110
Johannes Berg948d8872011-09-29 16:04:29 +02001111 skb_queue_head_init(&pending);
Johannes Bergaf818582009-11-06 11:35:50 +01001112
Emmanuel Grumbach1d147bf2014-02-20 09:22:11 +02001113 /* sync with ieee80211_tx_h_unicast_ps_buf */
1114 spin_lock(&sta->ps_lock);
Johannes Bergaf818582009-11-06 11:35:50 +01001115 /* Send all buffered frames to the station */
Johannes Berg948d8872011-09-29 16:04:29 +02001116 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
1117 int count = skb_queue_len(&pending), tmp;
1118
Arik Nemtsov987c2852012-11-05 10:27:52 +02001119 spin_lock_irqsave(&sta->tx_filtered[ac].lock, flags);
Johannes Berg948d8872011-09-29 16:04:29 +02001120 skb_queue_splice_tail_init(&sta->tx_filtered[ac], &pending);
Arik Nemtsov987c2852012-11-05 10:27:52 +02001121 spin_unlock_irqrestore(&sta->tx_filtered[ac].lock, flags);
Johannes Berg948d8872011-09-29 16:04:29 +02001122 tmp = skb_queue_len(&pending);
1123 filtered += tmp - count;
1124 count = tmp;
1125
Arik Nemtsov987c2852012-11-05 10:27:52 +02001126 spin_lock_irqsave(&sta->ps_tx_buf[ac].lock, flags);
Johannes Berg948d8872011-09-29 16:04:29 +02001127 skb_queue_splice_tail_init(&sta->ps_tx_buf[ac], &pending);
Arik Nemtsov987c2852012-11-05 10:27:52 +02001128 spin_unlock_irqrestore(&sta->ps_tx_buf[ac].lock, flags);
Johannes Berg948d8872011-09-29 16:04:29 +02001129 tmp = skb_queue_len(&pending);
1130 buffered += tmp - count;
1131 }
1132
1133 ieee80211_add_pending_skbs_fn(local, &pending, clear_sta_ps_flags, sta);
Emmanuel Grumbach1d147bf2014-02-20 09:22:11 +02001134 spin_unlock(&sta->ps_lock);
Johannes Berg948d8872011-09-29 16:04:29 +02001135
Emmanuel Grumbach687da132013-10-01 16:45:43 +03001136 /* This station just woke up and isn't aware of our SMPS state */
1137 if (!ieee80211_smps_is_restrictive(sta->known_smps_mode,
1138 sdata->smps_mode) &&
1139 sta->known_smps_mode != sdata->bss->req_smps &&
1140 sta_info_tx_streams(sta) != 1) {
1141 ht_dbg(sdata,
1142 "%pM just woke up and MIMO capable - update SMPS\n",
1143 sta->sta.addr);
1144 ieee80211_send_smps_action(sdata, sdata->bss->req_smps,
1145 sta->sta.addr,
1146 sdata->vif.bss_conf.bssid);
1147 }
1148
Johannes Bergaf818582009-11-06 11:35:50 +01001149 local->total_ps_buffered -= buffered;
1150
Johannes Bergc868cb352011-09-29 16:04:27 +02001151 sta_info_recalc_tim(sta);
1152
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02001153 ps_dbg(sdata,
1154 "STA %pM aid %d sending %d filtered/%d PS frames since STA not sleeping anymore\n",
1155 sta->sta.addr, sta->sta.aid, filtered, buffered);
Johannes Bergaf818582009-11-06 11:35:50 +01001156}
1157
Johannes Bergce662b442011-09-29 16:04:34 +02001158static void ieee80211_send_null_response(struct ieee80211_sub_if_data *sdata,
1159 struct sta_info *sta, int tid,
Johannes Bergb77cf4f2014-01-09 00:00:38 +01001160 enum ieee80211_frame_release_type reason,
1161 bool call_driver)
Johannes Bergce662b442011-09-29 16:04:34 +02001162{
1163 struct ieee80211_local *local = sdata->local;
1164 struct ieee80211_qos_hdr *nullfunc;
1165 struct sk_buff *skb;
1166 int size = sizeof(*nullfunc);
1167 __le16 fc;
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001168 bool qos = test_sta_flag(sta, WLAN_STA_WME);
Johannes Bergce662b442011-09-29 16:04:34 +02001169 struct ieee80211_tx_info *info;
Johannes Berg55de9082012-07-26 17:24:39 +02001170 struct ieee80211_chanctx_conf *chanctx_conf;
Johannes Bergce662b442011-09-29 16:04:34 +02001171
1172 if (qos) {
1173 fc = cpu_to_le16(IEEE80211_FTYPE_DATA |
1174 IEEE80211_STYPE_QOS_NULLFUNC |
1175 IEEE80211_FCTL_FROMDS);
1176 } else {
1177 size -= 2;
1178 fc = cpu_to_le16(IEEE80211_FTYPE_DATA |
1179 IEEE80211_STYPE_NULLFUNC |
1180 IEEE80211_FCTL_FROMDS);
1181 }
1182
1183 skb = dev_alloc_skb(local->hw.extra_tx_headroom + size);
1184 if (!skb)
1185 return;
1186
1187 skb_reserve(skb, local->hw.extra_tx_headroom);
1188
1189 nullfunc = (void *) skb_put(skb, size);
1190 nullfunc->frame_control = fc;
1191 nullfunc->duration_id = 0;
1192 memcpy(nullfunc->addr1, sta->sta.addr, ETH_ALEN);
1193 memcpy(nullfunc->addr2, sdata->vif.addr, ETH_ALEN);
1194 memcpy(nullfunc->addr3, sdata->vif.addr, ETH_ALEN);
1195
Johannes Berg59b66252011-10-13 13:19:19 +02001196 skb->priority = tid;
1197 skb_set_queue_mapping(skb, ieee802_1d_to_ac[tid]);
Johannes Bergce662b442011-09-29 16:04:34 +02001198 if (qos) {
Johannes Bergce662b442011-09-29 16:04:34 +02001199 nullfunc->qos_ctrl = cpu_to_le16(tid);
1200
Johannes Berg40b96402011-09-29 16:04:38 +02001201 if (reason == IEEE80211_FRAME_RELEASE_UAPSD)
Johannes Bergce662b442011-09-29 16:04:34 +02001202 nullfunc->qos_ctrl |=
1203 cpu_to_le16(IEEE80211_QOS_CTL_EOSP);
1204 }
1205
1206 info = IEEE80211_SKB_CB(skb);
1207
1208 /*
1209 * Tell TX path to send this frame even though the
1210 * STA may still remain is PS mode after this frame
Johannes Bergdeeaee192011-09-29 16:04:35 +02001211 * exchange. Also set EOSP to indicate this packet
1212 * ends the poll/service period.
Johannes Bergce662b442011-09-29 16:04:34 +02001213 */
Johannes Berg02f2f1a2012-02-27 12:18:30 +01001214 info->flags |= IEEE80211_TX_CTL_NO_PS_BUFFER |
Felix Fietkaud6d23de2013-06-04 12:15:42 +02001215 IEEE80211_TX_CTL_PS_RESPONSE |
Johannes Bergdeeaee192011-09-29 16:04:35 +02001216 IEEE80211_TX_STATUS_EOSP |
1217 IEEE80211_TX_CTL_REQ_TX_STATUS;
Johannes Bergce662b442011-09-29 16:04:34 +02001218
Johannes Bergb77cf4f2014-01-09 00:00:38 +01001219 if (call_driver)
1220 drv_allow_buffered_frames(local, sta, BIT(tid), 1,
1221 reason, false);
Johannes Berg40b96402011-09-29 16:04:38 +02001222
Johannes Berg89afe612013-02-13 15:39:57 +01001223 skb->dev = sdata->dev;
1224
Johannes Berg55de9082012-07-26 17:24:39 +02001225 rcu_read_lock();
1226 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
1227 if (WARN_ON(!chanctx_conf)) {
1228 rcu_read_unlock();
1229 kfree_skb(skb);
1230 return;
1231 }
1232
Johannes Berg4bf88532012-11-09 11:39:59 +01001233 ieee80211_xmit(sdata, skb, chanctx_conf->def.chan->band);
Johannes Berg55de9082012-07-26 17:24:39 +02001234 rcu_read_unlock();
Johannes Bergce662b442011-09-29 16:04:34 +02001235}
1236
Johannes Berg0a1cb802014-01-09 11:05:31 +01001237static int find_highest_prio_tid(unsigned long tids)
1238{
1239 /* lower 3 TIDs aren't ordered perfectly */
1240 if (tids & 0xF8)
1241 return fls(tids) - 1;
1242 /* TID 0 is BE just like TID 3 */
1243 if (tids & BIT(0))
1244 return 0;
1245 return fls(tids) - 1;
1246}
1247
Johannes Berg47086fc2011-09-29 16:04:33 +02001248static void
1249ieee80211_sta_ps_deliver_response(struct sta_info *sta,
1250 int n_frames, u8 ignored_acs,
1251 enum ieee80211_frame_release_type reason)
Johannes Bergaf818582009-11-06 11:35:50 +01001252{
1253 struct ieee80211_sub_if_data *sdata = sta->sdata;
1254 struct ieee80211_local *local = sdata->local;
Johannes Berg948d8872011-09-29 16:04:29 +02001255 bool more_data = false;
1256 int ac;
Johannes Berg4049e092011-09-29 16:04:32 +02001257 unsigned long driver_release_tids = 0;
Johannes Berg47086fc2011-09-29 16:04:33 +02001258 struct sk_buff_head frames;
1259
Johannes Bergdeeaee192011-09-29 16:04:35 +02001260 /* Service or PS-Poll period starts */
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001261 set_sta_flag(sta, WLAN_STA_SP);
Johannes Bergdeeaee192011-09-29 16:04:35 +02001262
Johannes Berg47086fc2011-09-29 16:04:33 +02001263 __skb_queue_head_init(&frames);
Johannes Bergaf818582009-11-06 11:35:50 +01001264
Johannes Bergf9f760b2014-01-08 17:45:07 +01001265 /* Get response frame(s) and more data bit for the last one. */
Johannes Berg948d8872011-09-29 16:04:29 +02001266 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
Johannes Berg4049e092011-09-29 16:04:32 +02001267 unsigned long tids;
1268
Johannes Berg47086fc2011-09-29 16:04:33 +02001269 if (ignored_acs & BIT(ac))
Johannes Berg948d8872011-09-29 16:04:29 +02001270 continue;
1271
Johannes Berg4049e092011-09-29 16:04:32 +02001272 tids = ieee80211_tids_for_ac(ac);
1273
Johannes Bergf9f760b2014-01-08 17:45:07 +01001274 /* if we already have frames from software, then we can't also
1275 * release from hardware queues
1276 */
1277 if (skb_queue_empty(&frames))
1278 driver_release_tids |= sta->driver_buffered_tids & tids;
Johannes Berg47086fc2011-09-29 16:04:33 +02001279
Johannes Bergf9f760b2014-01-08 17:45:07 +01001280 if (driver_release_tids) {
1281 /* If the driver has data on more than one TID then
Johannes Berg4049e092011-09-29 16:04:32 +02001282 * certainly there's more data if we release just a
Johannes Bergf9f760b2014-01-08 17:45:07 +01001283 * single frame now (from a single TID). This will
1284 * only happen for PS-Poll.
Johannes Berg4049e092011-09-29 16:04:32 +02001285 */
Johannes Berg47086fc2011-09-29 16:04:33 +02001286 if (reason == IEEE80211_FRAME_RELEASE_PSPOLL &&
1287 hweight16(driver_release_tids) > 1) {
Johannes Berg4049e092011-09-29 16:04:32 +02001288 more_data = true;
1289 driver_release_tids =
Johannes Berg0a1cb802014-01-09 11:05:31 +01001290 BIT(find_highest_prio_tid(
1291 driver_release_tids));
Johannes Berg4049e092011-09-29 16:04:32 +02001292 break;
Johannes Berg948d8872011-09-29 16:04:29 +02001293 }
Johannes Bergf9f760b2014-01-08 17:45:07 +01001294 } else {
1295 struct sk_buff *skb;
1296
1297 while (n_frames > 0) {
1298 skb = skb_dequeue(&sta->tx_filtered[ac]);
1299 if (!skb) {
1300 skb = skb_dequeue(
1301 &sta->ps_tx_buf[ac]);
1302 if (skb)
1303 local->total_ps_buffered--;
1304 }
1305 if (!skb)
1306 break;
1307 n_frames--;
1308 __skb_queue_tail(&frames, skb);
1309 }
Johannes Berg948d8872011-09-29 16:04:29 +02001310 }
1311
Johannes Bergf9f760b2014-01-08 17:45:07 +01001312 /* If we have more frames buffered on this AC, then set the
1313 * more-data bit and abort the loop since we can't send more
1314 * data from other ACs before the buffered frames from this.
1315 */
Johannes Berg948d8872011-09-29 16:04:29 +02001316 if (!skb_queue_empty(&sta->tx_filtered[ac]) ||
1317 !skb_queue_empty(&sta->ps_tx_buf[ac])) {
1318 more_data = true;
1319 break;
1320 }
Johannes Bergaf818582009-11-06 11:35:50 +01001321 }
Johannes Bergaf818582009-11-06 11:35:50 +01001322
Johannes Bergf9f760b2014-01-08 17:45:07 +01001323 if (skb_queue_empty(&frames) && !driver_release_tids) {
Johannes Bergce662b442011-09-29 16:04:34 +02001324 int tid;
Johannes Berg4049e092011-09-29 16:04:32 +02001325
Johannes Bergce662b442011-09-29 16:04:34 +02001326 /*
1327 * For PS-Poll, this can only happen due to a race condition
1328 * when we set the TIM bit and the station notices it, but
1329 * before it can poll for the frame we expire it.
1330 *
1331 * For uAPSD, this is said in the standard (11.2.1.5 h):
1332 * At each unscheduled SP for a non-AP STA, the AP shall
1333 * attempt to transmit at least one MSDU or MMPDU, but no
1334 * more than the value specified in the Max SP Length field
1335 * in the QoS Capability element from delivery-enabled ACs,
1336 * that are destined for the non-AP STA.
1337 *
1338 * Since we have no other MSDU/MMPDU, transmit a QoS null frame.
1339 */
1340
1341 /* This will evaluate to 1, 3, 5 or 7. */
1342 tid = 7 - ((ffs(~ignored_acs) - 1) << 1);
1343
Johannes Bergb77cf4f2014-01-09 00:00:38 +01001344 ieee80211_send_null_response(sdata, sta, tid, reason, true);
Johannes Bergf9f760b2014-01-08 17:45:07 +01001345 } else if (!driver_release_tids) {
Johannes Berg47086fc2011-09-29 16:04:33 +02001346 struct sk_buff_head pending;
1347 struct sk_buff *skb;
Johannes Berg40b96402011-09-29 16:04:38 +02001348 int num = 0;
1349 u16 tids = 0;
Johannes Bergb77cf4f2014-01-09 00:00:38 +01001350 bool need_null = false;
Johannes Bergaf818582009-11-06 11:35:50 +01001351
Johannes Berg47086fc2011-09-29 16:04:33 +02001352 skb_queue_head_init(&pending);
Johannes Bergaf818582009-11-06 11:35:50 +01001353
Johannes Berg47086fc2011-09-29 16:04:33 +02001354 while ((skb = __skb_dequeue(&frames))) {
1355 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1356 struct ieee80211_hdr *hdr = (void *) skb->data;
Johannes Berg40b96402011-09-29 16:04:38 +02001357 u8 *qoshdr = NULL;
1358
1359 num++;
Johannes Bergaf818582009-11-06 11:35:50 +01001360
Johannes Berg47086fc2011-09-29 16:04:33 +02001361 /*
1362 * Tell TX path to send this frame even though the
1363 * STA may still remain is PS mode after this frame
1364 * exchange.
1365 */
Felix Fietkaud6d23de2013-06-04 12:15:42 +02001366 info->flags |= IEEE80211_TX_CTL_NO_PS_BUFFER |
1367 IEEE80211_TX_CTL_PS_RESPONSE;
Johannes Bergaf818582009-11-06 11:35:50 +01001368
Johannes Berg47086fc2011-09-29 16:04:33 +02001369 /*
1370 * Use MoreData flag to indicate whether there are
1371 * more buffered frames for this STA
1372 */
Janusz.Dziedzic@tieto.com24b9c372011-11-07 09:47:47 +02001373 if (more_data || !skb_queue_empty(&frames))
Johannes Berg47086fc2011-09-29 16:04:33 +02001374 hdr->frame_control |=
1375 cpu_to_le16(IEEE80211_FCTL_MOREDATA);
Janusz.Dziedzic@tieto.com24b9c372011-11-07 09:47:47 +02001376 else
1377 hdr->frame_control &=
1378 cpu_to_le16(~IEEE80211_FCTL_MOREDATA);
Johannes Berg47086fc2011-09-29 16:04:33 +02001379
Johannes Berg40b96402011-09-29 16:04:38 +02001380 if (ieee80211_is_data_qos(hdr->frame_control) ||
1381 ieee80211_is_qos_nullfunc(hdr->frame_control))
1382 qoshdr = ieee80211_get_qos_ctl(hdr);
1383
Johannes Bergb77cf4f2014-01-09 00:00:38 +01001384 tids |= BIT(skb->priority);
1385
1386 __skb_queue_tail(&pending, skb);
1387
1388 /* end service period after last frame or add one */
1389 if (!skb_queue_empty(&frames))
1390 continue;
1391
1392 if (reason != IEEE80211_FRAME_RELEASE_UAPSD) {
1393 /* for PS-Poll, there's only one frame */
1394 info->flags |= IEEE80211_TX_STATUS_EOSP |
1395 IEEE80211_TX_CTL_REQ_TX_STATUS;
1396 break;
1397 }
1398
1399 /* For uAPSD, things are a bit more complicated. If the
1400 * last frame has a QoS header (i.e. is a QoS-data or
1401 * QoS-nulldata frame) then just set the EOSP bit there
1402 * and be done.
1403 * If the frame doesn't have a QoS header (which means
1404 * it should be a bufferable MMPDU) then we can't set
1405 * the EOSP bit in the QoS header; add a QoS-nulldata
1406 * frame to the list to send it after the MMPDU.
1407 *
1408 * Note that this code is only in the mac80211-release
1409 * code path, we assume that the driver will not buffer
1410 * anything but QoS-data frames, or if it does, will
1411 * create the QoS-nulldata frame by itself if needed.
1412 *
1413 * Cf. 802.11-2012 10.2.1.10 (c).
1414 */
1415 if (qoshdr) {
1416 *qoshdr |= IEEE80211_QOS_CTL_EOSP;
Johannes Berg47086fc2011-09-29 16:04:33 +02001417
Marco Porsch52a3f202012-03-16 15:30:26 +01001418 info->flags |= IEEE80211_TX_STATUS_EOSP |
1419 IEEE80211_TX_CTL_REQ_TX_STATUS;
Johannes Bergb77cf4f2014-01-09 00:00:38 +01001420 } else {
1421 /* The standard isn't completely clear on this
1422 * as it says the more-data bit should be set
1423 * if there are more BUs. The QoS-Null frame
1424 * we're about to send isn't buffered yet, we
1425 * only create it below, but let's pretend it
1426 * was buffered just in case some clients only
1427 * expect more-data=0 when eosp=1.
1428 */
1429 hdr->frame_control |=
1430 cpu_to_le16(IEEE80211_FCTL_MOREDATA);
1431 need_null = true;
1432 num++;
Marco Porsch52a3f202012-03-16 15:30:26 +01001433 }
Johannes Bergb77cf4f2014-01-09 00:00:38 +01001434 break;
Johannes Berg47086fc2011-09-29 16:04:33 +02001435 }
1436
Johannes Berg40b96402011-09-29 16:04:38 +02001437 drv_allow_buffered_frames(local, sta, tids, num,
1438 reason, more_data);
1439
Johannes Berg47086fc2011-09-29 16:04:33 +02001440 ieee80211_add_pending_skbs(local, &pending);
Johannes Bergaf818582009-11-06 11:35:50 +01001441
Johannes Bergb77cf4f2014-01-09 00:00:38 +01001442 if (need_null)
1443 ieee80211_send_null_response(
1444 sdata, sta, find_highest_prio_tid(tids),
1445 reason, false);
1446
Johannes Bergc868cb352011-09-29 16:04:27 +02001447 sta_info_recalc_tim(sta);
Johannes Bergaf818582009-11-06 11:35:50 +01001448 } else {
1449 /*
Johannes Berg4049e092011-09-29 16:04:32 +02001450 * We need to release a frame that is buffered somewhere in the
1451 * driver ... it'll have to handle that.
Johannes Bergf9f760b2014-01-08 17:45:07 +01001452 * Note that the driver also has to check the number of frames
1453 * on the TIDs we're releasing from - if there are more than
1454 * n_frames it has to set the more-data bit (if we didn't ask
1455 * it to set it anyway due to other buffered frames); if there
1456 * are fewer than n_frames it has to make sure to adjust that
1457 * to allow the service period to end properly.
Johannes Bergaf818582009-11-06 11:35:50 +01001458 */
Johannes Berg4049e092011-09-29 16:04:32 +02001459 drv_release_buffered_frames(local, sta, driver_release_tids,
Johannes Berg47086fc2011-09-29 16:04:33 +02001460 n_frames, reason, more_data);
Johannes Berg4049e092011-09-29 16:04:32 +02001461
1462 /*
1463 * Note that we don't recalculate the TIM bit here as it would
1464 * most likely have no effect at all unless the driver told us
Johannes Bergf9f760b2014-01-08 17:45:07 +01001465 * that the TID(s) became empty before returning here from the
Johannes Berg4049e092011-09-29 16:04:32 +02001466 * release function.
Johannes Bergf9f760b2014-01-08 17:45:07 +01001467 * Either way, however, when the driver tells us that the TID(s)
Johannes Berg4049e092011-09-29 16:04:32 +02001468 * became empty we'll do the TIM recalculation.
1469 */
Johannes Bergaf818582009-11-06 11:35:50 +01001470 }
1471}
1472
Johannes Bergaf818582009-11-06 11:35:50 +01001473void ieee80211_sta_ps_deliver_poll_response(struct sta_info *sta)
1474{
Johannes Berg47086fc2011-09-29 16:04:33 +02001475 u8 ignore_for_response = sta->sta.uapsd_queues;
Johannes Bergaf818582009-11-06 11:35:50 +01001476
Johannes Berg47086fc2011-09-29 16:04:33 +02001477 /*
1478 * If all ACs are delivery-enabled then we should reply
1479 * from any of them, if only some are enabled we reply
1480 * only from the non-enabled ones.
1481 */
1482 if (ignore_for_response == BIT(IEEE80211_NUM_ACS) - 1)
1483 ignore_for_response = 0;
1484
1485 ieee80211_sta_ps_deliver_response(sta, 1, ignore_for_response,
1486 IEEE80211_FRAME_RELEASE_PSPOLL);
1487}
1488
1489void ieee80211_sta_ps_deliver_uapsd(struct sta_info *sta)
1490{
1491 int n_frames = sta->sta.max_sp;
1492 u8 delivery_enabled = sta->sta.uapsd_queues;
1493
1494 /*
1495 * If we ever grow support for TSPEC this might happen if
1496 * the TSPEC update from hostapd comes in between a trigger
1497 * frame setting WLAN_STA_UAPSD in the RX path and this
1498 * actually getting called.
1499 */
1500 if (!delivery_enabled)
1501 return;
1502
Johannes Berg47086fc2011-09-29 16:04:33 +02001503 switch (sta->sta.max_sp) {
1504 case 1:
1505 n_frames = 2;
1506 break;
1507 case 2:
1508 n_frames = 4;
1509 break;
1510 case 3:
1511 n_frames = 6;
1512 break;
1513 case 0:
1514 /* XXX: what is a good value? */
1515 n_frames = 8;
1516 break;
Johannes Bergaf818582009-11-06 11:35:50 +01001517 }
Johannes Bergaf818582009-11-06 11:35:50 +01001518
Johannes Berg47086fc2011-09-29 16:04:33 +02001519 ieee80211_sta_ps_deliver_response(sta, n_frames, ~delivery_enabled,
1520 IEEE80211_FRAME_RELEASE_UAPSD);
Johannes Bergaf818582009-11-06 11:35:50 +01001521}
1522
1523void ieee80211_sta_block_awake(struct ieee80211_hw *hw,
1524 struct ieee80211_sta *pubsta, bool block)
1525{
1526 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
1527
Johannes Bergb5878a22010-04-07 16:48:40 +02001528 trace_api_sta_block_awake(sta->local, pubsta, block);
1529
Johannes Bergaf818582009-11-06 11:35:50 +01001530 if (block)
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001531 set_sta_flag(sta, WLAN_STA_PS_DRIVER);
1532 else if (test_sta_flag(sta, WLAN_STA_PS_DRIVER))
Johannes Bergaf818582009-11-06 11:35:50 +01001533 ieee80211_queue_work(hw, &sta->drv_unblock_wk);
1534}
1535EXPORT_SYMBOL(ieee80211_sta_block_awake);
Felix Fietkaudcf55fb2011-04-17 17:45:00 +02001536
Johannes Berge9437892013-02-15 21:38:08 +01001537void ieee80211_sta_eosp(struct ieee80211_sta *pubsta)
Johannes Berg37fbd902011-09-29 16:04:39 +02001538{
1539 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
1540 struct ieee80211_local *local = sta->local;
Johannes Berg37fbd902011-09-29 16:04:39 +02001541
1542 trace_api_eosp(local, pubsta);
1543
Johannes Berge9437892013-02-15 21:38:08 +01001544 clear_sta_flag(sta, WLAN_STA_SP);
Johannes Berg37fbd902011-09-29 16:04:39 +02001545}
Johannes Berge9437892013-02-15 21:38:08 +01001546EXPORT_SYMBOL(ieee80211_sta_eosp);
Johannes Berg37fbd902011-09-29 16:04:39 +02001547
Johannes Berg042ec452011-09-29 16:04:26 +02001548void ieee80211_sta_set_buffered(struct ieee80211_sta *pubsta,
1549 u8 tid, bool buffered)
Felix Fietkaudcf55fb2011-04-17 17:45:00 +02001550{
1551 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
1552
Johannes Berg5a306f52012-11-14 23:22:21 +01001553 if (WARN_ON(tid >= IEEE80211_NUM_TIDS))
Johannes Berg042ec452011-09-29 16:04:26 +02001554 return;
1555
Johannes Berg1b000782013-12-19 10:47:48 +01001556 trace_api_sta_set_buffered(sta->local, pubsta, tid, buffered);
1557
Johannes Berg948d8872011-09-29 16:04:29 +02001558 if (buffered)
1559 set_bit(tid, &sta->driver_buffered_tids);
1560 else
1561 clear_bit(tid, &sta->driver_buffered_tids);
1562
Johannes Bergc868cb352011-09-29 16:04:27 +02001563 sta_info_recalc_tim(sta);
Felix Fietkaudcf55fb2011-04-17 17:45:00 +02001564}
Johannes Berg042ec452011-09-29 16:04:26 +02001565EXPORT_SYMBOL(ieee80211_sta_set_buffered);
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001566
Johannes Berg83d5cc02012-01-12 09:31:10 +01001567int sta_info_move_state(struct sta_info *sta,
1568 enum ieee80211_sta_state new_state)
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001569{
Johannes Berg8bf11d82011-12-15 11:17:37 +01001570 might_sleep();
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001571
1572 if (sta->sta_state == new_state)
1573 return 0;
1574
Johannes Bergf09603a2012-01-20 13:55:21 +01001575 /* check allowed transitions first */
1576
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001577 switch (new_state) {
1578 case IEEE80211_STA_NONE:
Johannes Bergf09603a2012-01-20 13:55:21 +01001579 if (sta->sta_state != IEEE80211_STA_AUTH)
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001580 return -EINVAL;
1581 break;
1582 case IEEE80211_STA_AUTH:
Johannes Bergf09603a2012-01-20 13:55:21 +01001583 if (sta->sta_state != IEEE80211_STA_NONE &&
1584 sta->sta_state != IEEE80211_STA_ASSOC)
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001585 return -EINVAL;
1586 break;
1587 case IEEE80211_STA_ASSOC:
Johannes Bergf09603a2012-01-20 13:55:21 +01001588 if (sta->sta_state != IEEE80211_STA_AUTH &&
1589 sta->sta_state != IEEE80211_STA_AUTHORIZED)
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001590 return -EINVAL;
1591 break;
1592 case IEEE80211_STA_AUTHORIZED:
Johannes Bergf09603a2012-01-20 13:55:21 +01001593 if (sta->sta_state != IEEE80211_STA_ASSOC)
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001594 return -EINVAL;
1595 break;
1596 default:
1597 WARN(1, "invalid state %d", new_state);
1598 return -EINVAL;
1599 }
1600
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02001601 sta_dbg(sta->sdata, "moving STA %pM to state %d\n",
1602 sta->sta.addr, new_state);
Johannes Bergf09603a2012-01-20 13:55:21 +01001603
1604 /*
1605 * notify the driver before the actual changes so it can
1606 * fail the transition
1607 */
1608 if (test_sta_flag(sta, WLAN_STA_INSERTED)) {
1609 int err = drv_sta_state(sta->local, sta->sdata, sta,
1610 sta->sta_state, new_state);
1611 if (err)
1612 return err;
1613 }
1614
1615 /* reflect the change in all state variables */
1616
1617 switch (new_state) {
1618 case IEEE80211_STA_NONE:
1619 if (sta->sta_state == IEEE80211_STA_AUTH)
1620 clear_bit(WLAN_STA_AUTH, &sta->_flags);
1621 break;
1622 case IEEE80211_STA_AUTH:
1623 if (sta->sta_state == IEEE80211_STA_NONE)
1624 set_bit(WLAN_STA_AUTH, &sta->_flags);
1625 else if (sta->sta_state == IEEE80211_STA_ASSOC)
1626 clear_bit(WLAN_STA_ASSOC, &sta->_flags);
1627 break;
1628 case IEEE80211_STA_ASSOC:
1629 if (sta->sta_state == IEEE80211_STA_AUTH) {
1630 set_bit(WLAN_STA_ASSOC, &sta->_flags);
1631 } else if (sta->sta_state == IEEE80211_STA_AUTHORIZED) {
Felix Fietkau7e3ed022012-04-23 19:49:03 +02001632 if (sta->sdata->vif.type == NL80211_IFTYPE_AP ||
1633 (sta->sdata->vif.type == NL80211_IFTYPE_AP_VLAN &&
1634 !sta->sdata->u.vlan.sta))
1635 atomic_dec(&sta->sdata->bss->num_mcast_sta);
Johannes Bergf09603a2012-01-20 13:55:21 +01001636 clear_bit(WLAN_STA_AUTHORIZED, &sta->_flags);
1637 }
1638 break;
1639 case IEEE80211_STA_AUTHORIZED:
1640 if (sta->sta_state == IEEE80211_STA_ASSOC) {
Felix Fietkau7e3ed022012-04-23 19:49:03 +02001641 if (sta->sdata->vif.type == NL80211_IFTYPE_AP ||
1642 (sta->sdata->vif.type == NL80211_IFTYPE_AP_VLAN &&
1643 !sta->sdata->u.vlan.sta))
1644 atomic_inc(&sta->sdata->bss->num_mcast_sta);
Johannes Bergf09603a2012-01-20 13:55:21 +01001645 set_bit(WLAN_STA_AUTHORIZED, &sta->_flags);
1646 }
1647 break;
1648 default:
1649 break;
1650 }
1651
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001652 sta->sta_state = new_state;
1653
1654 return 0;
1655}
Emmanuel Grumbach687da132013-10-01 16:45:43 +03001656
1657u8 sta_info_tx_streams(struct sta_info *sta)
1658{
1659 struct ieee80211_sta_ht_cap *ht_cap = &sta->sta.ht_cap;
1660 u8 rx_streams;
1661
1662 if (!sta->sta.ht_cap.ht_supported)
1663 return 1;
1664
1665 if (sta->sta.vht_cap.vht_supported) {
1666 int i;
1667 u16 tx_mcs_map =
1668 le16_to_cpu(sta->sta.vht_cap.vht_mcs.tx_mcs_map);
1669
1670 for (i = 7; i >= 0; i--)
1671 if ((tx_mcs_map & (0x3 << (i * 2))) !=
1672 IEEE80211_VHT_MCS_NOT_SUPPORTED)
1673 return i + 1;
1674 }
1675
1676 if (ht_cap->mcs.rx_mask[3])
1677 rx_streams = 4;
1678 else if (ht_cap->mcs.rx_mask[2])
1679 rx_streams = 3;
1680 else if (ht_cap->mcs.rx_mask[1])
1681 rx_streams = 2;
1682 else
1683 rx_streams = 1;
1684
1685 if (!(ht_cap->mcs.tx_params & IEEE80211_HT_MCS_TX_RX_DIFF))
1686 return rx_streams;
1687
1688 return ((ht_cap->mcs.tx_params & IEEE80211_HT_MCS_TX_MAX_STREAMS_MASK)
1689 >> IEEE80211_HT_MCS_TX_MAX_STREAMS_SHIFT) + 1;
1690}