blob: d94004e7ce377aadeaee97edce57d256abc6d580 [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>
Johannes Bergd98ad832014-09-03 15:24:57 +03004 * Copyright 2013-2014 Intel Mobile Communications GmbH
Jiri Bencf0706e82007-05-05 11:45:53 -07005 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10
11#include <linux/module.h>
12#include <linux/init.h>
Felix Fietkau888d04d2012-03-01 15:22:09 +010013#include <linux/etherdevice.h>
Jiri Bencf0706e82007-05-05 11:45:53 -070014#include <linux/netdevice.h>
15#include <linux/types.h>
16#include <linux/slab.h>
17#include <linux/skbuff.h>
18#include <linux/if_arp.h>
Johannes Berg0d174402007-12-17 15:07:43 +010019#include <linux/timer.h>
Johannes Bergd0709a62008-02-25 16:27:46 +010020#include <linux/rtnetlink.h>
Jiri Bencf0706e82007-05-05 11:45:53 -070021
22#include <net/mac80211.h>
23#include "ieee80211_i.h"
Johannes Berg24487982009-04-23 18:52:52 +020024#include "driver-ops.h"
Johannes Berg2c8dccc2008-04-08 15:14:40 -040025#include "rate.h"
Jiri Bencf0706e82007-05-05 11:45:53 -070026#include "sta_info.h"
Jiri Bence9f207f2007-05-05 11:46:38 -070027#include "debugfs_sta.h"
Luis Carlos Coboee385852008-02-23 15:17:11 +010028#include "mesh.h"
Johannes Bergce662b442011-09-29 16:04:34 +020029#include "wme.h"
Jiri Bencf0706e82007-05-05 11:45:53 -070030
Johannes Bergd0709a62008-02-25 16:27:46 +010031/**
32 * DOC: STA information lifetime rules
33 *
34 * STA info structures (&struct sta_info) are managed in a hash table
35 * for faster lookup and a list for iteration. They are managed using
36 * RCU, i.e. access to the list and hash table is protected by RCU.
37 *
Johannes Berg34e89502010-02-03 13:59:58 +010038 * Upon allocating a STA info structure with sta_info_alloc(), the caller
39 * owns that structure. It must then insert it into the hash table using
40 * either sta_info_insert() or sta_info_insert_rcu(); only in the latter
41 * case (which acquires an rcu read section but must not be called from
42 * within one) will the pointer still be valid after the call. Note that
43 * the caller may not do much with the STA info before inserting it, in
44 * particular, it may not start any mesh peer link management or add
45 * encryption keys.
Johannes Berg93e5deb2008-04-01 15:21:00 +020046 *
47 * When the insertion fails (sta_info_insert()) returns non-zero), the
48 * structure will have been freed by sta_info_insert()!
Johannes Bergd0709a62008-02-25 16:27:46 +010049 *
Johannes Berg34e89502010-02-03 13:59:58 +010050 * Station entries are added by mac80211 when you establish a link with a
Luis R. Rodriguez7e189a12009-06-02 18:38:14 -040051 * peer. This means different things for the different type of interfaces
52 * we support. For a regular station this mean we add the AP sta when we
Lucas De Marchi25985ed2011-03-30 22:57:33 -030053 * receive an association response from the AP. For IBSS this occurs when
Johannes Berg34e89502010-02-03 13:59:58 +010054 * 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 -030055 * the peer immediately upon device open. When using AP mode we add stations
Johannes Berg34e89502010-02-03 13:59:58 +010056 * for each respective station upon request from userspace through nl80211.
Luis R. Rodriguez7e189a12009-06-02 18:38:14 -040057 *
Johannes Berg34e89502010-02-03 13:59:58 +010058 * In order to remove a STA info structure, various sta_info_destroy_*()
59 * calls are available.
Johannes Bergd0709a62008-02-25 16:27:46 +010060 *
Johannes Berg34e89502010-02-03 13:59:58 +010061 * There is no concept of ownership on a STA entry, each structure is
62 * owned by the global hash table/list until it is removed. All users of
63 * the structure need to be RCU protected so that the structure won't be
64 * freed before they are done using it.
Johannes Bergd0709a62008-02-25 16:27:46 +010065 */
Jiri Bencf0706e82007-05-05 11:45:53 -070066
Johannes Berg4d339602011-12-15 11:24:20 +010067/* Caller must hold local->sta_mtx */
Michael Wube8755e2007-07-27 15:43:23 +020068static int sta_info_hash_del(struct ieee80211_local *local,
69 struct sta_info *sta)
Jiri Bencf0706e82007-05-05 11:45:53 -070070{
71 struct sta_info *s;
72
Johannes Berg40b275b2011-05-13 14:15:49 +020073 s = rcu_dereference_protected(local->sta_hash[STA_HASH(sta->sta.addr)],
Johannes Berg4d339602011-12-15 11:24:20 +010074 lockdep_is_held(&local->sta_mtx));
Jiri Bencf0706e82007-05-05 11:45:53 -070075 if (!s)
Michael Wube8755e2007-07-27 15:43:23 +020076 return -ENOENT;
77 if (s == sta) {
Eric Dumazetcf778b02012-01-12 04:41:32 +000078 rcu_assign_pointer(local->sta_hash[STA_HASH(sta->sta.addr)],
Johannes Bergd0709a62008-02-25 16:27:46 +010079 s->hnext);
Michael Wube8755e2007-07-27 15:43:23 +020080 return 0;
Jiri Bencf0706e82007-05-05 11:45:53 -070081 }
82
Johannes Berg40b275b2011-05-13 14:15:49 +020083 while (rcu_access_pointer(s->hnext) &&
84 rcu_access_pointer(s->hnext) != sta)
85 s = rcu_dereference_protected(s->hnext,
Johannes Berg4d339602011-12-15 11:24:20 +010086 lockdep_is_held(&local->sta_mtx));
Johannes Berg40b275b2011-05-13 14:15:49 +020087 if (rcu_access_pointer(s->hnext)) {
Eric Dumazetcf778b02012-01-12 04:41:32 +000088 rcu_assign_pointer(s->hnext, sta->hnext);
Michael Wube8755e2007-07-27 15:43:23 +020089 return 0;
90 }
Jiri Bencf0706e82007-05-05 11:45:53 -070091
Michael Wube8755e2007-07-27 15:43:23 +020092 return -ENOENT;
Jiri Bencf0706e82007-05-05 11:45:53 -070093}
94
Johannes Berg5108ca82014-02-17 20:49:03 +010095static void __cleanup_single_sta(struct sta_info *sta)
Eliad Pellerb22cfcf2012-09-09 14:43:51 +030096{
Eliad Pellerb22cfcf2012-09-09 14:43:51 +030097 int ac, i;
98 struct tid_ampdu_tx *tid_tx;
99 struct ieee80211_sub_if_data *sdata = sta->sdata;
100 struct ieee80211_local *local = sdata->local;
Marco Porschd012a602012-10-10 12:39:50 -0700101 struct ps_data *ps;
Eliad Pellerb22cfcf2012-09-09 14:43:51 +0300102
Johannes Berge3685e02014-02-20 11:19:58 +0100103 if (test_sta_flag(sta, WLAN_STA_PS_STA) ||
Johannes Berg5ac2e352014-05-27 16:32:27 +0200104 test_sta_flag(sta, WLAN_STA_PS_DRIVER) ||
105 test_sta_flag(sta, WLAN_STA_PS_DELIVER)) {
Marco Porschd012a602012-10-10 12:39:50 -0700106 if (sta->sdata->vif.type == NL80211_IFTYPE_AP ||
107 sta->sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
108 ps = &sdata->bss->ps;
Marco Porsch3f52b7e2013-01-30 18:14:08 +0100109 else if (ieee80211_vif_is_mesh(&sdata->vif))
110 ps = &sdata->u.mesh.ps;
Marco Porschd012a602012-10-10 12:39:50 -0700111 else
112 return;
Eliad Pellerb22cfcf2012-09-09 14:43:51 +0300113
114 clear_sta_flag(sta, WLAN_STA_PS_STA);
Johannes Berge3685e02014-02-20 11:19:58 +0100115 clear_sta_flag(sta, WLAN_STA_PS_DRIVER);
Johannes Berg5ac2e352014-05-27 16:32:27 +0200116 clear_sta_flag(sta, WLAN_STA_PS_DELIVER);
Eliad Pellerb22cfcf2012-09-09 14:43:51 +0300117
Marco Porschd012a602012-10-10 12:39:50 -0700118 atomic_dec(&ps->num_sta_ps);
Eliad Pellerb22cfcf2012-09-09 14:43:51 +0300119 }
120
121 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
122 local->total_ps_buffered -= skb_queue_len(&sta->ps_tx_buf[ac]);
Felix Fietkau1f98ab72012-11-10 03:44:14 +0100123 ieee80211_purge_tx_queue(&local->hw, &sta->ps_tx_buf[ac]);
124 ieee80211_purge_tx_queue(&local->hw, &sta->tx_filtered[ac]);
Eliad Pellerb22cfcf2012-09-09 14:43:51 +0300125 }
126
Thomas Pedersen45b50282013-02-06 10:17:21 -0800127 if (ieee80211_vif_is_mesh(&sdata->vif))
128 mesh_sta_cleanup(sta);
Eliad Pellerb22cfcf2012-09-09 14:43:51 +0300129
Johannes Berg5ac2e352014-05-27 16:32:27 +0200130 cancel_work_sync(&sta->drv_deliver_wk);
Eliad Pellerb22cfcf2012-09-09 14:43:51 +0300131
132 /*
133 * Destroy aggregation state here. It would be nice to wait for the
134 * driver to finish aggregation stop and then clean up, but for now
135 * drivers have to handle aggregation stop being requested, followed
136 * directly by station destruction.
137 */
Johannes Berg5a306f52012-11-14 23:22:21 +0100138 for (i = 0; i < IEEE80211_NUM_TIDS; i++) {
Johannes Berg661eb382013-06-12 22:47:56 +0200139 kfree(sta->ampdu_mlme.tid_start_tx[i]);
Eliad Pellerb22cfcf2012-09-09 14:43:51 +0300140 tid_tx = rcu_dereference_raw(sta->ampdu_mlme.tid_tx[i]);
141 if (!tid_tx)
142 continue;
Felix Fietkau1f98ab72012-11-10 03:44:14 +0100143 ieee80211_purge_tx_queue(&local->hw, &tid_tx->pending);
Eliad Pellerb22cfcf2012-09-09 14:43:51 +0300144 kfree(tid_tx);
145 }
Johannes Berg5108ca82014-02-17 20:49:03 +0100146}
Eliad Pellerb22cfcf2012-09-09 14:43:51 +0300147
Johannes Berg5108ca82014-02-17 20:49:03 +0100148static void cleanup_single_sta(struct sta_info *sta)
149{
150 struct ieee80211_sub_if_data *sdata = sta->sdata;
151 struct ieee80211_local *local = sdata->local;
152
153 __cleanup_single_sta(sta);
Eliad Pellerb22cfcf2012-09-09 14:43:51 +0300154 sta_info_free(local, sta);
155}
156
Johannes Bergd0709a62008-02-25 16:27:46 +0100157/* protected by RCU */
Johannes Bergabe60632009-11-25 17:46:18 +0100158struct sta_info *sta_info_get(struct ieee80211_sub_if_data *sdata,
159 const u8 *addr)
Johannes Berg43ba7e92008-02-21 14:09:30 +0100160{
Johannes Bergabe60632009-11-25 17:46:18 +0100161 struct ieee80211_local *local = sdata->local;
Johannes Berg43ba7e92008-02-21 14:09:30 +0100162 struct sta_info *sta;
163
Johannes Berg03791852010-04-06 11:18:42 +0200164 sta = rcu_dereference_check(local->sta_hash[STA_HASH(addr)],
Johannes Berg03791852010-04-06 11:18:42 +0200165 lockdep_is_held(&local->sta_mtx));
Johannes Berg43ba7e92008-02-21 14:09:30 +0100166 while (sta) {
Johannes Bergabe60632009-11-25 17:46:18 +0100167 if (sta->sdata == sdata &&
Joe Perchesb203ca32012-05-08 18:56:52 +0000168 ether_addr_equal(sta->sta.addr, addr))
Johannes Berg43ba7e92008-02-21 14:09:30 +0100169 break;
Johannes Berg03791852010-04-06 11:18:42 +0200170 sta = rcu_dereference_check(sta->hnext,
Johannes Berg03791852010-04-06 11:18:42 +0200171 lockdep_is_held(&local->sta_mtx));
Johannes Berg43ba7e92008-02-21 14:09:30 +0100172 }
173 return sta;
174}
175
Felix Fietkau0e5ded52010-01-08 18:10:58 +0100176/*
177 * Get sta info either from the specified interface
178 * or from one of its vlans
179 */
180struct sta_info *sta_info_get_bss(struct ieee80211_sub_if_data *sdata,
181 const u8 *addr)
182{
183 struct ieee80211_local *local = sdata->local;
184 struct sta_info *sta;
185
Johannes Berg03791852010-04-06 11:18:42 +0200186 sta = rcu_dereference_check(local->sta_hash[STA_HASH(addr)],
Johannes Berg03791852010-04-06 11:18:42 +0200187 lockdep_is_held(&local->sta_mtx));
Felix Fietkau0e5ded52010-01-08 18:10:58 +0100188 while (sta) {
189 if ((sta->sdata == sdata ||
Johannes Berga2c1e3d2010-09-14 21:34:14 +0200190 (sta->sdata->bss && sta->sdata->bss == sdata->bss)) &&
Joe Perchesb203ca32012-05-08 18:56:52 +0000191 ether_addr_equal(sta->sta.addr, addr))
Felix Fietkau0e5ded52010-01-08 18:10:58 +0100192 break;
Johannes Berg03791852010-04-06 11:18:42 +0200193 sta = rcu_dereference_check(sta->hnext,
Johannes Berg03791852010-04-06 11:18:42 +0200194 lockdep_is_held(&local->sta_mtx));
Felix Fietkau0e5ded52010-01-08 18:10:58 +0100195 }
196 return sta;
197}
198
Johannes Berg3b53fde82009-11-16 12:00:37 +0100199struct sta_info *sta_info_get_by_idx(struct ieee80211_sub_if_data *sdata,
200 int idx)
Luis Carlos Coboee385852008-02-23 15:17:11 +0100201{
Johannes Berg3b53fde82009-11-16 12:00:37 +0100202 struct ieee80211_local *local = sdata->local;
Luis Carlos Coboee385852008-02-23 15:17:11 +0100203 struct sta_info *sta;
204 int i = 0;
205
Johannes Bergd0709a62008-02-25 16:27:46 +0100206 list_for_each_entry_rcu(sta, &local->sta_list, list) {
Johannes Berg3b53fde82009-11-16 12:00:37 +0100207 if (sdata != sta->sdata)
Luis Carlos Cobo2a8ca292008-02-29 17:51:25 -0800208 continue;
Luis Carlos Coboee385852008-02-23 15:17:11 +0100209 if (i < idx) {
210 ++i;
211 continue;
Luis Carlos Coboee385852008-02-23 15:17:11 +0100212 }
Luis Carlos Cobo2a8ca292008-02-29 17:51:25 -0800213 return sta;
Luis Carlos Coboee385852008-02-23 15:17:11 +0100214 }
Luis Carlos Coboee385852008-02-23 15:17:11 +0100215
216 return NULL;
217}
Jiri Bencf0706e82007-05-05 11:45:53 -0700218
Johannes Berg93e5deb2008-04-01 15:21:00 +0200219/**
Johannes Bergd9a7ddb2011-12-14 12:35:30 +0100220 * sta_info_free - free STA
Johannes Berg93e5deb2008-04-01 15:21:00 +0200221 *
Randy Dunlap6ef307b2008-07-03 13:52:18 -0700222 * @local: pointer to the global information
Johannes Berg93e5deb2008-04-01 15:21:00 +0200223 * @sta: STA info to free
224 *
225 * This function must undo everything done by sta_info_alloc()
Johannes Bergd9a7ddb2011-12-14 12:35:30 +0100226 * that may happen before sta_info_insert(). It may only be
227 * called when sta_info_insert() has not been attempted (and
228 * if that fails, the station is freed anyway.)
Johannes Berg93e5deb2008-04-01 15:21:00 +0200229 */
Johannes Bergd9a7ddb2011-12-14 12:35:30 +0100230void sta_info_free(struct ieee80211_local *local, struct sta_info *sta)
Johannes Berg93e5deb2008-04-01 15:21:00 +0200231{
Johannes Berg889cbb92012-01-17 10:33:29 +0100232 if (sta->rate_ctrl)
Johannes Bergaf65cd962009-11-17 18:18:36 +0100233 rate_control_free_sta(sta);
Johannes Berg93e5deb2008-04-01 15:21:00 +0200234
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200235 sta_dbg(sta->sdata, "Destroyed STA %pM\n", sta->sta.addr);
Johannes Berg93e5deb2008-04-01 15:21:00 +0200236
Felix Fietkau53d04522014-05-27 22:33:57 +0200237 kfree(rcu_dereference_raw(sta->sta.rates));
Johannes Berg93e5deb2008-04-01 15:21:00 +0200238 kfree(sta);
239}
240
Johannes Berg4d339602011-12-15 11:24:20 +0100241/* Caller must hold local->sta_mtx */
Johannes Bergd0709a62008-02-25 16:27:46 +0100242static void sta_info_hash_add(struct ieee80211_local *local,
243 struct sta_info *sta)
Jiri Bencf0706e82007-05-05 11:45:53 -0700244{
Johannes Berg4d339602011-12-15 11:24:20 +0100245 lockdep_assert_held(&local->sta_mtx);
Johannes Berg17741cd2008-09-11 00:02:02 +0200246 sta->hnext = local->sta_hash[STA_HASH(sta->sta.addr)];
Eric Dumazetcf778b02012-01-12 04:41:32 +0000247 rcu_assign_pointer(local->sta_hash[STA_HASH(sta->sta.addr)], sta);
Jiri Bencf0706e82007-05-05 11:45:53 -0700248}
Jiri Bencf0706e82007-05-05 11:45:53 -0700249
Johannes Berg5ac2e352014-05-27 16:32:27 +0200250static void sta_deliver_ps_frames(struct work_struct *wk)
Johannes Bergaf818582009-11-06 11:35:50 +0100251{
252 struct sta_info *sta;
253
Johannes Berg5ac2e352014-05-27 16:32:27 +0200254 sta = container_of(wk, struct sta_info, drv_deliver_wk);
Johannes Bergaf818582009-11-06 11:35:50 +0100255
256 if (sta->dead)
257 return;
258
Johannes Berg5ac2e352014-05-27 16:32:27 +0200259 local_bh_disable();
260 if (!test_sta_flag(sta, WLAN_STA_PS_STA))
Johannes Bergaf818582009-11-06 11:35:50 +0100261 ieee80211_sta_ps_deliver_wakeup(sta);
Johannes Berg5ac2e352014-05-27 16:32:27 +0200262 else if (test_and_clear_sta_flag(sta, WLAN_STA_PSPOLL))
Johannes Bergaf818582009-11-06 11:35:50 +0100263 ieee80211_sta_ps_deliver_poll_response(sta);
Johannes Berg5ac2e352014-05-27 16:32:27 +0200264 else if (test_and_clear_sta_flag(sta, WLAN_STA_UAPSD))
Johannes Berg47086fc2011-09-29 16:04:33 +0200265 ieee80211_sta_ps_deliver_uapsd(sta);
Johannes Berg5ac2e352014-05-27 16:32:27 +0200266 local_bh_enable();
Johannes Bergaf818582009-11-06 11:35:50 +0100267}
268
Johannes Bergaf65cd962009-11-17 18:18:36 +0100269static int sta_prepare_rate_control(struct ieee80211_local *local,
270 struct sta_info *sta, gfp_t gfp)
271{
272 if (local->hw.flags & IEEE80211_HW_HAS_RATE_CONTROL)
273 return 0;
274
Johannes Berg889cbb92012-01-17 10:33:29 +0100275 sta->rate_ctrl = local->rate_ctrl;
Johannes Bergaf65cd962009-11-17 18:18:36 +0100276 sta->rate_ctrl_priv = rate_control_alloc_sta(sta->rate_ctrl,
277 &sta->sta, gfp);
Johannes Berg889cbb92012-01-17 10:33:29 +0100278 if (!sta->rate_ctrl_priv)
Johannes Bergaf65cd962009-11-17 18:18:36 +0100279 return -ENOMEM;
Johannes Bergaf65cd962009-11-17 18:18:36 +0100280
281 return 0;
282}
283
Johannes Berg73651ee2008-02-25 16:27:47 +0100284struct sta_info *sta_info_alloc(struct ieee80211_sub_if_data *sdata,
Johannes Berg56544162011-12-14 13:28:46 +0100285 const u8 *addr, gfp_t gfp)
Jiri Bencf0706e82007-05-05 11:45:53 -0700286{
Johannes Bergd0709a62008-02-25 16:27:46 +0100287 struct ieee80211_local *local = sdata->local;
Jiri Bencf0706e82007-05-05 11:45:53 -0700288 struct sta_info *sta;
Mohammed Shafi Shajakhanebe27c92011-04-08 21:24:24 +0530289 struct timespec uptime;
Ron Rindjunsky16c5f152007-12-25 17:00:34 +0200290 int i;
Jiri Bencf0706e82007-05-05 11:45:53 -0700291
Johannes Berg17741cd2008-09-11 00:02:02 +0200292 sta = kzalloc(sizeof(*sta) + local->hw.sta_data_size, gfp);
Jiri Bencf0706e82007-05-05 11:45:53 -0700293 if (!sta)
Johannes Berg73651ee2008-02-25 16:27:47 +0100294 return NULL;
Jiri Bencf0706e82007-05-05 11:45:53 -0700295
Johannes Berg07346f812008-05-03 01:02:02 +0200296 spin_lock_init(&sta->lock);
Emmanuel Grumbach1d147bf2014-02-20 09:22:11 +0200297 spin_lock_init(&sta->ps_lock);
Johannes Berg5ac2e352014-05-27 16:32:27 +0200298 INIT_WORK(&sta->drv_deliver_wk, sta_deliver_ps_frames);
Johannes Berg67c282c2010-06-10 10:21:43 +0200299 INIT_WORK(&sta->ampdu_mlme.work, ieee80211_ba_session_work);
Johannes Berga93e3642010-06-10 10:21:46 +0200300 mutex_init(&sta->ampdu_mlme.mtx);
Thomas Pedersen87f59c72013-03-01 22:02:52 -0800301#ifdef CONFIG_MAC80211_MESH
302 if (ieee80211_vif_is_mesh(&sdata->vif) &&
303 !sdata->u.mesh.user_mpm)
304 init_timer(&sta->plink_timer);
Thomas Pedersen6c7c4cb2013-06-20 23:50:59 -0700305 sta->nonpeer_pm = NL80211_MESH_POWER_ACTIVE;
Thomas Pedersen87f59c72013-03-01 22:02:52 -0800306#endif
Johannes Berg07346f812008-05-03 01:02:02 +0200307
Johannes Berg17741cd2008-09-11 00:02:02 +0200308 memcpy(sta->sta.addr, addr, ETH_ALEN);
Johannes Bergd0709a62008-02-25 16:27:46 +0100309 sta->local = local;
310 sta->sdata = sdata;
Felix Fietkau8bc8aec2011-03-21 20:01:00 +0100311 sta->last_rx = jiffies;
Jiri Bencf0706e82007-05-05 11:45:53 -0700312
Johannes Berg71ec3752012-01-20 13:55:20 +0100313 sta->sta_state = IEEE80211_STA_NONE;
314
Liad Kaufmanb6da9112014-11-19 13:47:38 +0200315 /* Mark TID as unreserved */
316 sta->reserved_tid = IEEE80211_TID_UNRESERVED;
317
Thomas Gleixner18171522014-06-11 23:59:14 +0000318 ktime_get_ts(&uptime);
Mohammed Shafi Shajakhanebe27c92011-04-08 21:24:24 +0530319 sta->last_connected = uptime.tv_sec;
Bruno Randolf541a45a2010-12-02 19:12:43 +0900320 ewma_init(&sta->avg_signal, 1024, 8);
Felix Fietkauef0621e2013-04-22 16:29:31 +0200321 for (i = 0; i < ARRAY_SIZE(sta->chain_signal_avg); i++)
322 ewma_init(&sta->chain_signal_avg[i], 1024, 8);
Bruno Randolf541a45a2010-12-02 19:12:43 +0900323
Johannes Bergabfbc3a2015-02-25 10:03:25 +0100324 if (sta_prepare_rate_control(local, sta, gfp)) {
325 kfree(sta);
326 return NULL;
327 }
Jiri Bencf0706e82007-05-05 11:45:53 -0700328
Johannes Berg5a306f52012-11-14 23:22:21 +0100329 for (i = 0; i < IEEE80211_NUM_TIDS; i++) {
Johannes Berga622ab72010-06-10 10:21:39 +0200330 /*
331 * timer_to_tid must be initialized with identity mapping
332 * to enable session_timer's data differentiation. See
333 * sta_rx_agg_session_timer_expired for usage.
334 */
Ron Rindjunsky16c5f152007-12-25 17:00:34 +0200335 sta->timer_to_tid[i] = i;
Ron Rindjunsky16c5f152007-12-25 17:00:34 +0200336 }
Johannes Berg948d8872011-09-29 16:04:29 +0200337 for (i = 0; i < IEEE80211_NUM_ACS; i++) {
338 skb_queue_head_init(&sta->ps_tx_buf[i]);
339 skb_queue_head_init(&sta->tx_filtered[i]);
340 }
Johannes Berg73651ee2008-02-25 16:27:47 +0100341
Johannes Berg5a306f52012-11-14 23:22:21 +0100342 for (i = 0; i < IEEE80211_NUM_TIDS; i++)
Alexey Dobriyan4be929b2010-05-24 14:33:03 -0700343 sta->last_seq_ctrl[i] = cpu_to_le16(USHRT_MAX);
Senthil Balasubramaniancccaec92009-05-14 18:42:08 +0530344
Johannes Bergaf0ed692013-02-12 14:21:00 +0100345 sta->sta.smps_mode = IEEE80211_SMPS_OFF;
Emmanuel Grumbach687da132013-10-01 16:45:43 +0300346 if (sdata->vif.type == NL80211_IFTYPE_AP ||
347 sdata->vif.type == NL80211_IFTYPE_AP_VLAN) {
348 struct ieee80211_supported_band *sband =
349 local->hw.wiphy->bands[ieee80211_get_sdata_band(sdata)];
350 u8 smps = (sband->ht_cap.cap & IEEE80211_HT_CAP_SM_PS) >>
351 IEEE80211_HT_CAP_SM_PS_SHIFT;
352 /*
353 * Assume that hostapd advertises our caps in the beacon and
354 * this is the known_smps_mode for a station that just assciated
355 */
356 switch (smps) {
357 case WLAN_HT_SMPS_CONTROL_DISABLED:
358 sta->known_smps_mode = IEEE80211_SMPS_OFF;
359 break;
360 case WLAN_HT_SMPS_CONTROL_STATIC:
361 sta->known_smps_mode = IEEE80211_SMPS_STATIC;
362 break;
363 case WLAN_HT_SMPS_CONTROL_DYNAMIC:
364 sta->known_smps_mode = IEEE80211_SMPS_DYNAMIC;
365 break;
366 default:
367 WARN_ON(1);
368 }
369 }
Johannes Bergaf0ed692013-02-12 14:21:00 +0100370
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200371 sta_dbg(sdata, "Allocated STA %pM\n", sta->sta.addr);
Johannes Bergef04a292014-01-06 15:56:59 +0100372
Johannes Bergabfbc3a2015-02-25 10:03:25 +0100373 return sta;
Johannes Berg73651ee2008-02-25 16:27:47 +0100374}
375
Guy Eilam8c71df72011-08-17 15:18:14 +0300376static int sta_info_insert_check(struct sta_info *sta)
Johannes Berg34e89502010-02-03 13:59:58 +0100377{
Johannes Berg34e89502010-02-03 13:59:58 +0100378 struct ieee80211_sub_if_data *sdata = sta->sdata;
Johannes Berg34e89502010-02-03 13:59:58 +0100379
Johannes Berg03e44972008-02-27 09:56:40 +0100380 /*
381 * Can't be a WARN_ON because it can be triggered through a race:
382 * something inserts a STA (on one CPU) without holding the RTNL
383 * and another CPU turns off the net device.
384 */
Guy Eilam8c71df72011-08-17 15:18:14 +0300385 if (unlikely(!ieee80211_sdata_running(sdata)))
386 return -ENETDOWN;
Johannes Berg03e44972008-02-27 09:56:40 +0100387
Joe Perchesb203ca32012-05-08 18:56:52 +0000388 if (WARN_ON(ether_addr_equal(sta->sta.addr, sdata->vif.addr) ||
Guy Eilam8c71df72011-08-17 15:18:14 +0300389 is_multicast_ether_addr(sta->sta.addr)))
390 return -EINVAL;
391
392 return 0;
393}
394
Johannes Bergf09603a2012-01-20 13:55:21 +0100395static int sta_info_insert_drv_state(struct ieee80211_local *local,
396 struct ieee80211_sub_if_data *sdata,
397 struct sta_info *sta)
398{
399 enum ieee80211_sta_state state;
400 int err = 0;
401
402 for (state = IEEE80211_STA_NOTEXIST; state < sta->sta_state; state++) {
403 err = drv_sta_state(local, sdata, sta, state, state + 1);
404 if (err)
405 break;
406 }
407
408 if (!err) {
Johannes Berga4ec45a2012-01-20 13:55:22 +0100409 /*
410 * Drivers using legacy sta_add/sta_remove callbacks only
411 * get uploaded set to true after sta_add is called.
412 */
413 if (!local->ops->sta_add)
414 sta->uploaded = true;
Johannes Bergf09603a2012-01-20 13:55:21 +0100415 return 0;
416 }
417
418 if (sdata->vif.type == NL80211_IFTYPE_ADHOC) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200419 sdata_info(sdata,
420 "failed to move IBSS STA %pM to state %d (%d) - keeping it anyway\n",
421 sta->sta.addr, state + 1, err);
Johannes Bergf09603a2012-01-20 13:55:21 +0100422 err = 0;
423 }
424
425 /* unwind on error */
426 for (; state > IEEE80211_STA_NOTEXIST; state--)
427 WARN_ON(drv_sta_state(local, sdata, sta, state, state - 1));
428
429 return err;
430}
431
Guy Eilam8c71df72011-08-17 15:18:14 +0300432/*
433 * should be called with sta_mtx locked
434 * this function replaces the mutex lock
435 * with a RCU lock
436 */
Johannes Berg4d339602011-12-15 11:24:20 +0100437static int sta_info_insert_finish(struct sta_info *sta) __acquires(RCU)
Guy Eilam8c71df72011-08-17 15:18:14 +0300438{
439 struct ieee80211_local *local = sta->local;
440 struct ieee80211_sub_if_data *sdata = sta->sdata;
Johannes Berg7852e362012-01-20 13:55:24 +0100441 struct station_info sinfo;
Guy Eilam8c71df72011-08-17 15:18:14 +0300442 int err = 0;
443
444 lockdep_assert_held(&local->sta_mtx);
Johannes Berg34e89502010-02-03 13:59:58 +0100445
Johannes Berg7852e362012-01-20 13:55:24 +0100446 /* check if STA exists already */
447 if (sta_info_get_bss(sdata, sta->sta.addr)) {
448 err = -EEXIST;
449 goto out_err;
Johannes Berg43ba7e92008-02-21 14:09:30 +0100450 }
Johannes Berg32bfd352007-12-19 01:31:26 +0100451
Johannes Berg7852e362012-01-20 13:55:24 +0100452 local->num_sta++;
453 local->sta_generation++;
454 smp_mb();
Johannes Berg4d339602011-12-15 11:24:20 +0100455
Johannes Berg5108ca82014-02-17 20:49:03 +0100456 /* simplify things and don't accept BA sessions yet */
457 set_sta_flag(sta, WLAN_STA_BLOCK_BA);
458
Johannes Berg7852e362012-01-20 13:55:24 +0100459 /* make the station visible */
460 sta_info_hash_add(local, sta);
Johannes Berg4d339602011-12-15 11:24:20 +0100461
Arik Nemtsov2bad77482014-10-22 12:32:16 +0300462 list_add_tail_rcu(&sta->list, &local->sta_list);
Johannes Berg83d5cc02012-01-12 09:31:10 +0100463
Johannes Berg5108ca82014-02-17 20:49:03 +0100464 /* notify driver */
465 err = sta_info_insert_drv_state(local, sdata, sta);
466 if (err)
467 goto out_remove;
468
Johannes Berg7852e362012-01-20 13:55:24 +0100469 set_sta_flag(sta, WLAN_STA_INSERTED);
Johannes Berg5108ca82014-02-17 20:49:03 +0100470 /* accept BA sessions now */
471 clear_sta_flag(sta, WLAN_STA_BLOCK_BA);
Johannes Berg4d339602011-12-15 11:24:20 +0100472
Eliad Peller21f659b2013-11-11 20:14:01 +0200473 ieee80211_recalc_min_chandef(sdata);
Johannes Berg7852e362012-01-20 13:55:24 +0100474 ieee80211_sta_debugfs_add(sta);
475 rate_control_add_sta_debugfs(sta);
Johannes Berg4d339602011-12-15 11:24:20 +0100476
Johannes Berg7852e362012-01-20 13:55:24 +0100477 memset(&sinfo, 0, sizeof(sinfo));
478 sinfo.filled = 0;
479 sinfo.generation = local->sta_generation;
480 cfg80211_new_sta(sdata->dev, sta->sta.addr, &sinfo, GFP_KERNEL);
Johannes Bergd0709a62008-02-25 16:27:46 +0100481
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200482 sta_dbg(sdata, "Inserted STA %pM\n", sta->sta.addr);
Jiri Bencf0706e82007-05-05 11:45:53 -0700483
Johannes Berg34e89502010-02-03 13:59:58 +0100484 /* move reference to rcu-protected */
485 rcu_read_lock();
486 mutex_unlock(&local->sta_mtx);
Jiri Bence9f207f2007-05-05 11:46:38 -0700487
Johannes Berg73651ee2008-02-25 16:27:47 +0100488 if (ieee80211_vif_is_mesh(&sdata->vif))
489 mesh_accept_plinks_update(sdata);
490
491 return 0;
Johannes Berg5108ca82014-02-17 20:49:03 +0100492 out_remove:
493 sta_info_hash_del(local, sta);
494 list_del_rcu(&sta->list);
495 local->num_sta--;
496 synchronize_net();
497 __cleanup_single_sta(sta);
Johannes Berg4d339602011-12-15 11:24:20 +0100498 out_err:
499 mutex_unlock(&local->sta_mtx);
500 rcu_read_lock();
501 return err;
Guy Eilam8c71df72011-08-17 15:18:14 +0300502}
503
504int sta_info_insert_rcu(struct sta_info *sta) __acquires(RCU)
505{
506 struct ieee80211_local *local = sta->local;
Zhao, Gang308f7fc2014-04-21 12:53:00 +0800507 int err;
Guy Eilam8c71df72011-08-17 15:18:14 +0300508
Johannes Berg4d339602011-12-15 11:24:20 +0100509 might_sleep();
510
Guy Eilam8c71df72011-08-17 15:18:14 +0300511 err = sta_info_insert_check(sta);
512 if (err) {
Jiri Bencf0706e82007-05-05 11:45:53 -0700513 rcu_read_lock();
514 goto out_free;
515 }
516
Johannes Berg004c8722008-02-20 11:21:35 +0100517 mutex_lock(&local->sta_mtx);
518
Johannes Berg4d339602011-12-15 11:24:20 +0100519 err = sta_info_insert_finish(sta);
Guy Eilam8c71df72011-08-17 15:18:14 +0300520 if (err)
Johannes Berg004c8722008-02-20 11:21:35 +0100521 goto out_free;
Johannes Bergd0709a62008-02-25 16:27:46 +0100522
Johannes Berg004c8722008-02-20 11:21:35 +0100523 return 0;
Johannes Berg93e5deb2008-04-01 15:21:00 +0200524 out_free:
Johannes Bergd9a7ddb2011-12-14 12:35:30 +0100525 sta_info_free(local, sta);
Johannes Berg93e5deb2008-04-01 15:21:00 +0200526 return err;
Jiri Bencf0706e82007-05-05 11:45:53 -0700527}
528
Johannes Berg34e89502010-02-03 13:59:58 +0100529int sta_info_insert(struct sta_info *sta)
530{
531 int err = sta_info_insert_rcu(sta);
532
533 rcu_read_unlock();
534
535 return err;
536}
537
Marco Porschd012a602012-10-10 12:39:50 -0700538static inline void __bss_tim_set(u8 *tim, u16 id)
Johannes Berg004c8722008-02-20 11:21:35 +0100539{
540 /*
541 * This format has been mandated by the IEEE specifications,
542 * so this line may not be changed to use the __set_bit() format.
543 */
Marco Porschd012a602012-10-10 12:39:50 -0700544 tim[id / 8] |= (1 << (id % 8));
Johannes Berg004c8722008-02-20 11:21:35 +0100545}
546
Marco Porschd012a602012-10-10 12:39:50 -0700547static inline void __bss_tim_clear(u8 *tim, u16 id)
Johannes Berg004c8722008-02-20 11:21:35 +0100548{
549 /*
550 * This format has been mandated by the IEEE specifications,
551 * so this line may not be changed to use the __clear_bit() format.
552 */
Marco Porschd012a602012-10-10 12:39:50 -0700553 tim[id / 8] &= ~(1 << (id % 8));
Johannes Berg004c8722008-02-20 11:21:35 +0100554}
555
Ilan Peer3d5839b2013-03-05 15:27:20 +0200556static inline bool __bss_tim_get(u8 *tim, u16 id)
557{
558 /*
559 * This format has been mandated by the IEEE specifications,
560 * so this line may not be changed to use the test_bit() format.
561 */
562 return tim[id / 8] & (1 << (id % 8));
563}
564
Johannes Berg948d8872011-09-29 16:04:29 +0200565static unsigned long ieee80211_tids_for_ac(int ac)
Johannes Berg004c8722008-02-20 11:21:35 +0100566{
Johannes Berg948d8872011-09-29 16:04:29 +0200567 /* If we ever support TIDs > 7, this obviously needs to be adjusted */
568 switch (ac) {
569 case IEEE80211_AC_VO:
570 return BIT(6) | BIT(7);
571 case IEEE80211_AC_VI:
572 return BIT(4) | BIT(5);
573 case IEEE80211_AC_BE:
574 return BIT(0) | BIT(3);
575 case IEEE80211_AC_BK:
576 return BIT(1) | BIT(2);
577 default:
578 WARN_ON(1);
579 return 0;
Johannes Bergd0709a62008-02-25 16:27:46 +0100580 }
Johannes Berg004c8722008-02-20 11:21:35 +0100581}
582
Johannes Berg9b7a86f2015-01-09 11:40:39 +0100583static void __sta_info_recalc_tim(struct sta_info *sta, bool ignore_pending)
Johannes Berg004c8722008-02-20 11:21:35 +0100584{
Johannes Bergc868cb352011-09-29 16:04:27 +0200585 struct ieee80211_local *local = sta->local;
Marco Porschd012a602012-10-10 12:39:50 -0700586 struct ps_data *ps;
Johannes Berg948d8872011-09-29 16:04:29 +0200587 bool indicate_tim = false;
588 u8 ignore_for_tim = sta->sta.uapsd_queues;
589 int ac;
Marco Porschd012a602012-10-10 12:39:50 -0700590 u16 id;
Johannes Berg004c8722008-02-20 11:21:35 +0100591
Marco Porschd012a602012-10-10 12:39:50 -0700592 if (sta->sdata->vif.type == NL80211_IFTYPE_AP ||
593 sta->sdata->vif.type == NL80211_IFTYPE_AP_VLAN) {
594 if (WARN_ON_ONCE(!sta->sdata->bss))
595 return;
596
597 ps = &sta->sdata->bss->ps;
598 id = sta->sta.aid;
Marco Porsch3f52b7e2013-01-30 18:14:08 +0100599#ifdef CONFIG_MAC80211_MESH
600 } else if (ieee80211_vif_is_mesh(&sta->sdata->vif)) {
601 ps = &sta->sdata->u.mesh.ps;
Thomas Pedersen204d1302013-11-05 11:17:05 -0800602 /* TIM map only for 1 <= PLID <= IEEE80211_MAX_AID */
Chun-Yeow Yeoh6f101ef2013-11-13 15:43:03 +0800603 id = sta->plid % (IEEE80211_MAX_AID + 1);
Marco Porsch3f52b7e2013-01-30 18:14:08 +0100604#endif
Marco Porschd012a602012-10-10 12:39:50 -0700605 } else {
Johannes Bergc868cb352011-09-29 16:04:27 +0200606 return;
Marco Porschd012a602012-10-10 12:39:50 -0700607 }
Johannes Berg3e122be2008-07-09 14:40:34 +0200608
Johannes Bergc868cb352011-09-29 16:04:27 +0200609 /* No need to do anything if the driver does all */
610 if (local->hw.flags & IEEE80211_HW_AP_LINK_PS)
611 return;
Johannes Berg004c8722008-02-20 11:21:35 +0100612
Johannes Bergc868cb352011-09-29 16:04:27 +0200613 if (sta->dead)
614 goto done;
Johannes Berg3e122be2008-07-09 14:40:34 +0200615
Johannes Berg948d8872011-09-29 16:04:29 +0200616 /*
617 * If all ACs are delivery-enabled then we should build
618 * the TIM bit for all ACs anyway; if only some are then
619 * we ignore those and build the TIM bit using only the
620 * non-enabled ones.
621 */
622 if (ignore_for_tim == BIT(IEEE80211_NUM_ACS) - 1)
623 ignore_for_tim = 0;
Johannes Berg3e122be2008-07-09 14:40:34 +0200624
Johannes Berg9b7a86f2015-01-09 11:40:39 +0100625 if (ignore_pending)
626 ignore_for_tim = BIT(IEEE80211_NUM_ACS) - 1;
627
Johannes Berg948d8872011-09-29 16:04:29 +0200628 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
629 unsigned long tids;
630
631 if (ignore_for_tim & BIT(ac))
632 continue;
633
634 indicate_tim |= !skb_queue_empty(&sta->tx_filtered[ac]) ||
635 !skb_queue_empty(&sta->ps_tx_buf[ac]);
636 if (indicate_tim)
637 break;
638
639 tids = ieee80211_tids_for_ac(ac);
640
641 indicate_tim |=
642 sta->driver_buffered_tids & tids;
Johannes Bergd0709a62008-02-25 16:27:46 +0100643 }
Johannes Berg004c8722008-02-20 11:21:35 +0100644
Johannes Bergc868cb352011-09-29 16:04:27 +0200645 done:
Johannes Berg65f704a2013-02-13 17:39:53 +0100646 spin_lock_bh(&local->tim_lock);
Johannes Berg004c8722008-02-20 11:21:35 +0100647
Ilan Peer3d5839b2013-03-05 15:27:20 +0200648 if (indicate_tim == __bss_tim_get(ps->tim, id))
649 goto out_unlock;
650
Johannes Berg948d8872011-09-29 16:04:29 +0200651 if (indicate_tim)
Marco Porschd012a602012-10-10 12:39:50 -0700652 __bss_tim_set(ps->tim, id);
Johannes Bergc868cb352011-09-29 16:04:27 +0200653 else
Marco Porschd012a602012-10-10 12:39:50 -0700654 __bss_tim_clear(ps->tim, id);
Johannes Berg3e122be2008-07-09 14:40:34 +0200655
Johannes Berg9b7a86f2015-01-09 11:40:39 +0100656 if (local->ops->set_tim && !WARN_ON(sta->dead)) {
Johannes Bergc868cb352011-09-29 16:04:27 +0200657 local->tim_in_locked_section = true;
Johannes Berg948d8872011-09-29 16:04:29 +0200658 drv_set_tim(local, &sta->sta, indicate_tim);
Johannes Bergc868cb352011-09-29 16:04:27 +0200659 local->tim_in_locked_section = false;
Johannes Berg004c8722008-02-20 11:21:35 +0100660 }
Johannes Berg004c8722008-02-20 11:21:35 +0100661
Ilan Peer3d5839b2013-03-05 15:27:20 +0200662out_unlock:
Johannes Berg65f704a2013-02-13 17:39:53 +0100663 spin_unlock_bh(&local->tim_lock);
Johannes Berg004c8722008-02-20 11:21:35 +0100664}
665
Johannes Berg9b7a86f2015-01-09 11:40:39 +0100666void sta_info_recalc_tim(struct sta_info *sta)
667{
668 __sta_info_recalc_tim(sta, false);
669}
670
Johannes Bergcd0b8d82011-09-06 14:13:06 +0200671static bool sta_info_buffer_expired(struct sta_info *sta, struct sk_buff *skb)
Jiri Bencf0706e82007-05-05 11:45:53 -0700672{
Johannes Berge039fa42008-05-15 12:55:29 +0200673 struct ieee80211_tx_info *info;
Jiri Bencf0706e82007-05-05 11:45:53 -0700674 int timeout;
675
676 if (!skb)
Johannes Bergcd0b8d82011-09-06 14:13:06 +0200677 return false;
Jiri Bencf0706e82007-05-05 11:45:53 -0700678
Johannes Berge039fa42008-05-15 12:55:29 +0200679 info = IEEE80211_SKB_CB(skb);
Jiri Bencf0706e82007-05-05 11:45:53 -0700680
681 /* Timeout: (2 * listen_interval * beacon_int * 1024 / 1000000) sec */
Johannes Berg57c4d7b2009-04-23 16:10:04 +0200682 timeout = (sta->listen_interval *
683 sta->sdata->vif.bss_conf.beacon_int *
684 32 / 15625) * HZ;
Jiri Bencf0706e82007-05-05 11:45:53 -0700685 if (timeout < STA_TX_BUFFER_EXPIRE)
686 timeout = STA_TX_BUFFER_EXPIRE;
Johannes Berge039fa42008-05-15 12:55:29 +0200687 return time_after(jiffies, info->control.jiffies + timeout);
Jiri Bencf0706e82007-05-05 11:45:53 -0700688}
689
690
Johannes Berg948d8872011-09-29 16:04:29 +0200691static bool sta_info_cleanup_expire_buffered_ac(struct ieee80211_local *local,
692 struct sta_info *sta, int ac)
Jiri Bencf0706e82007-05-05 11:45:53 -0700693{
694 unsigned long flags;
695 struct sk_buff *skb;
696
Johannes Berg60750392011-09-29 16:04:28 +0200697 /*
698 * First check for frames that should expire on the filtered
699 * queue. Frames here were rejected by the driver and are on
700 * a separate queue to avoid reordering with normal PS-buffered
701 * frames. They also aren't accounted for right now in the
702 * total_ps_buffered counter.
703 */
Jiri Bencf0706e82007-05-05 11:45:53 -0700704 for (;;) {
Johannes Berg948d8872011-09-29 16:04:29 +0200705 spin_lock_irqsave(&sta->tx_filtered[ac].lock, flags);
706 skb = skb_peek(&sta->tx_filtered[ac]);
Johannes Berg57c4d7b2009-04-23 16:10:04 +0200707 if (sta_info_buffer_expired(sta, skb))
Johannes Berg948d8872011-09-29 16:04:29 +0200708 skb = __skb_dequeue(&sta->tx_filtered[ac]);
Johannes Berg836341a2008-02-20 02:07:21 +0100709 else
Jiri Bencf0706e82007-05-05 11:45:53 -0700710 skb = NULL;
Johannes Berg948d8872011-09-29 16:04:29 +0200711 spin_unlock_irqrestore(&sta->tx_filtered[ac].lock, flags);
Jiri Bencf0706e82007-05-05 11:45:53 -0700712
Johannes Berg60750392011-09-29 16:04:28 +0200713 /*
714 * Frames are queued in order, so if this one
715 * hasn't expired yet we can stop testing. If
716 * we actually reached the end of the queue we
717 * also need to stop, of course.
718 */
719 if (!skb)
720 break;
Felix Fietkaud4fa14c2012-10-10 22:40:23 +0200721 ieee80211_free_txskb(&local->hw, skb);
Johannes Berg60750392011-09-29 16:04:28 +0200722 }
723
724 /*
725 * Now also check the normal PS-buffered queue, this will
726 * only find something if the filtered queue was emptied
727 * since the filtered frames are all before the normal PS
728 * buffered frames.
729 */
Jiri Bencf0706e82007-05-05 11:45:53 -0700730 for (;;) {
Johannes Berg948d8872011-09-29 16:04:29 +0200731 spin_lock_irqsave(&sta->ps_tx_buf[ac].lock, flags);
732 skb = skb_peek(&sta->ps_tx_buf[ac]);
Jiri Bencf0706e82007-05-05 11:45:53 -0700733 if (sta_info_buffer_expired(sta, skb))
Johannes Berg948d8872011-09-29 16:04:29 +0200734 skb = __skb_dequeue(&sta->ps_tx_buf[ac]);
Jiri Bencf0706e82007-05-05 11:45:53 -0700735 else
736 skb = NULL;
Johannes Berg948d8872011-09-29 16:04:29 +0200737 spin_unlock_irqrestore(&sta->ps_tx_buf[ac].lock, flags);
Jiri Bencf0706e82007-05-05 11:45:53 -0700738
Johannes Berg60750392011-09-29 16:04:28 +0200739 /*
740 * frames are queued in order, so if this one
741 * hasn't expired yet (or we reached the end of
742 * the queue) we can stop testing
743 */
Johannes Berg836341a2008-02-20 02:07:21 +0100744 if (!skb)
Jiri Bencf0706e82007-05-05 11:45:53 -0700745 break;
Johannes Berg836341a2008-02-20 02:07:21 +0100746
Johannes Berg836341a2008-02-20 02:07:21 +0100747 local->total_ps_buffered--;
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200748 ps_dbg(sta->sdata, "Buffered frame expired (STA %pM)\n",
749 sta->sta.addr);
Felix Fietkaud4fa14c2012-10-10 22:40:23 +0200750 ieee80211_free_txskb(&local->hw, skb);
Jiri Bencf0706e82007-05-05 11:45:53 -0700751 }
Juuso Oikarinen3393a602010-04-19 10:12:52 +0300752
Johannes Berg60750392011-09-29 16:04:28 +0200753 /*
754 * Finally, recalculate the TIM bit for this station -- it might
755 * now be clear because the station was too slow to retrieve its
756 * frames.
757 */
758 sta_info_recalc_tim(sta);
759
760 /*
761 * Return whether there are any frames still buffered, this is
762 * used to check whether the cleanup timer still needs to run,
763 * if there are no frames we don't need to rearm the timer.
764 */
Johannes Berg948d8872011-09-29 16:04:29 +0200765 return !(skb_queue_empty(&sta->ps_tx_buf[ac]) &&
766 skb_queue_empty(&sta->tx_filtered[ac]));
767}
768
769static bool sta_info_cleanup_expire_buffered(struct ieee80211_local *local,
770 struct sta_info *sta)
771{
772 bool have_buffered = false;
773 int ac;
774
Marco Porsch3f52b7e2013-01-30 18:14:08 +0100775 /* This is only necessary for stations on BSS/MBSS interfaces */
776 if (!sta->sdata->bss &&
777 !ieee80211_vif_is_mesh(&sta->sdata->vif))
Johannes Berg948d8872011-09-29 16:04:29 +0200778 return false;
779
780 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++)
781 have_buffered |=
782 sta_info_cleanup_expire_buffered_ac(local, sta, ac);
783
784 return have_buffered;
Jiri Bencf0706e82007-05-05 11:45:53 -0700785}
786
Johannes Bergd7782072013-12-04 23:12:31 +0100787static int __must_check __sta_info_destroy_part1(struct sta_info *sta)
Johannes Berg34e89502010-02-03 13:59:58 +0100788{
789 struct ieee80211_local *local;
790 struct ieee80211_sub_if_data *sdata;
Johannes Berg6d10e462013-03-06 23:09:11 +0100791 int ret;
Johannes Berg34e89502010-02-03 13:59:58 +0100792
793 might_sleep();
794
795 if (!sta)
796 return -ENOENT;
797
798 local = sta->local;
799 sdata = sta->sdata;
800
Johannes Berg83d5cc02012-01-12 09:31:10 +0100801 lockdep_assert_held(&local->sta_mtx);
802
Johannes Berg098a6072010-04-06 11:18:47 +0200803 /*
804 * Before removing the station from the driver and
805 * rate control, it might still start new aggregation
806 * sessions -- block that to make sure the tear-down
807 * will be sufficient.
808 */
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200809 set_sta_flag(sta, WLAN_STA_BLOCK_BA);
Johannes Bergc82c4a82012-07-18 13:31:31 +0200810 ieee80211_sta_tear_down_BA_sessions(sta, AGG_STOP_DESTROY_STA);
Johannes Berg098a6072010-04-06 11:18:47 +0200811
Johannes Berg34e89502010-02-03 13:59:58 +0100812 ret = sta_info_hash_del(local, sta);
Johannes Bergb01711b2013-12-04 20:25:27 +0100813 if (WARN_ON(ret))
Johannes Berg34e89502010-02-03 13:59:58 +0100814 return ret;
815
Arik Nemtsova7a6bdd2014-11-09 18:50:19 +0200816 /*
817 * for TDLS peers, make sure to return to the base channel before
818 * removal.
819 */
820 if (test_sta_flag(sta, WLAN_STA_TDLS_OFF_CHANNEL)) {
821 drv_tdls_cancel_channel_switch(local, sdata, &sta->sta);
822 clear_sta_flag(sta, WLAN_STA_TDLS_OFF_CHANNEL);
823 }
824
Arik Nemtsov794454c2012-06-03 23:32:32 +0300825 list_del_rcu(&sta->list);
Johannes Berg4d339602011-12-15 11:24:20 +0100826
Johannes Berg6a9d1b92013-12-04 22:39:17 +0100827 drv_sta_pre_rcu_remove(local, sta->sdata, sta);
828
Johannes Berga710c812013-12-04 20:11:06 +0100829 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN &&
830 rcu_access_pointer(sdata->u.vlan.sta) == sta)
831 RCU_INIT_POINTER(sdata->u.vlan.sta, NULL);
832
Johannes Bergd7782072013-12-04 23:12:31 +0100833 return 0;
834}
835
836static void __sta_info_destroy_part2(struct sta_info *sta)
837{
838 struct ieee80211_local *local = sta->local;
839 struct ieee80211_sub_if_data *sdata = sta->sdata;
Johannes Berg6f7a8d22014-11-14 20:32:57 +0100840 struct station_info sinfo = {};
Johannes Bergd7782072013-12-04 23:12:31 +0100841 int ret;
842
843 /*
844 * NOTE: This assumes at least synchronize_net() was done
845 * after _part1 and before _part2!
846 */
847
848 might_sleep();
849 lockdep_assert_held(&local->sta_mtx);
850
Johannes Bergc8782072013-12-04 23:05:45 +0100851 /* now keys can no longer be reached */
Johannes Berg6d10e462013-03-06 23:09:11 +0100852 ieee80211_free_sta_keys(local, sta);
Johannes Berg34e89502010-02-03 13:59:58 +0100853
Johannes Berg9b7a86f2015-01-09 11:40:39 +0100854 /* disable TIM bit - last chance to tell driver */
855 __sta_info_recalc_tim(sta, true);
856
Johannes Berg34e89502010-02-03 13:59:58 +0100857 sta->dead = true;
858
Johannes Berg34e89502010-02-03 13:59:58 +0100859 local->num_sta--;
860 local->sta_generation++;
861
Johannes Berg83d5cc02012-01-12 09:31:10 +0100862 while (sta->sta_state > IEEE80211_STA_NONE) {
Johannes Bergf09603a2012-01-20 13:55:21 +0100863 ret = sta_info_move_state(sta, sta->sta_state - 1);
864 if (ret) {
Johannes Berg83d5cc02012-01-12 09:31:10 +0100865 WARN_ON_ONCE(1);
866 break;
867 }
868 }
Johannes Bergd9a7ddb2011-12-14 12:35:30 +0100869
Johannes Bergf09603a2012-01-20 13:55:21 +0100870 if (sta->uploaded) {
Johannes Bergf09603a2012-01-20 13:55:21 +0100871 ret = drv_sta_state(local, sdata, sta, IEEE80211_STA_NONE,
872 IEEE80211_STA_NOTEXIST);
873 WARN_ON_ONCE(ret != 0);
874 }
Johannes Berg34e89502010-02-03 13:59:58 +0100875
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200876 sta_dbg(sdata, "Removed STA %pM\n", sta->sta.addr);
877
Johannes Berg6f7a8d22014-11-14 20:32:57 +0100878 sta_set_sinfo(sta, &sinfo);
879 cfg80211_del_sta_sinfo(sdata->dev, sta->sta.addr, &sinfo, GFP_KERNEL);
Jouni Malinenec15e682011-03-23 15:29:52 +0200880
Johannes Berg34e89502010-02-03 13:59:58 +0100881 rate_control_remove_sta_debugfs(sta);
882 ieee80211_sta_debugfs_remove(sta);
Eliad Peller21f659b2013-11-11 20:14:01 +0200883 ieee80211_recalc_min_chandef(sdata);
Johannes Berg34e89502010-02-03 13:59:58 +0100884
Johannes Bergd34ba212013-12-04 22:46:11 +0100885 cleanup_single_sta(sta);
Johannes Bergd7782072013-12-04 23:12:31 +0100886}
887
888int __must_check __sta_info_destroy(struct sta_info *sta)
889{
890 int err = __sta_info_destroy_part1(sta);
891
892 if (err)
893 return err;
894
895 synchronize_net();
896
897 __sta_info_destroy_part2(sta);
Johannes Berg34e89502010-02-03 13:59:58 +0100898
899 return 0;
900}
901
902int sta_info_destroy_addr(struct ieee80211_sub_if_data *sdata, const u8 *addr)
903{
904 struct sta_info *sta;
905 int ret;
906
907 mutex_lock(&sdata->local->sta_mtx);
Johannes Berg7852e362012-01-20 13:55:24 +0100908 sta = sta_info_get(sdata, addr);
Johannes Berg34e89502010-02-03 13:59:58 +0100909 ret = __sta_info_destroy(sta);
910 mutex_unlock(&sdata->local->sta_mtx);
911
912 return ret;
913}
914
915int sta_info_destroy_addr_bss(struct ieee80211_sub_if_data *sdata,
916 const u8 *addr)
917{
918 struct sta_info *sta;
919 int ret;
920
921 mutex_lock(&sdata->local->sta_mtx);
Johannes Berg7852e362012-01-20 13:55:24 +0100922 sta = sta_info_get_bss(sdata, addr);
Johannes Berg34e89502010-02-03 13:59:58 +0100923 ret = __sta_info_destroy(sta);
924 mutex_unlock(&sdata->local->sta_mtx);
925
926 return ret;
927}
Jiri Bencf0706e82007-05-05 11:45:53 -0700928
929static void sta_info_cleanup(unsigned long data)
930{
931 struct ieee80211_local *local = (struct ieee80211_local *) data;
932 struct sta_info *sta;
Juuso Oikarinen3393a602010-04-19 10:12:52 +0300933 bool timer_needed = false;
Jiri Bencf0706e82007-05-05 11:45:53 -0700934
Johannes Bergd0709a62008-02-25 16:27:46 +0100935 rcu_read_lock();
936 list_for_each_entry_rcu(sta, &local->sta_list, list)
Juuso Oikarinen3393a602010-04-19 10:12:52 +0300937 if (sta_info_cleanup_expire_buffered(local, sta))
938 timer_needed = true;
Johannes Bergd0709a62008-02-25 16:27:46 +0100939 rcu_read_unlock();
Jiri Bencf0706e82007-05-05 11:45:53 -0700940
Johannes Berg5bb644a2009-05-17 11:40:42 +0200941 if (local->quiescing)
942 return;
943
Juuso Oikarinen3393a602010-04-19 10:12:52 +0300944 if (!timer_needed)
945 return;
946
Johannes Berg26d59532011-04-01 13:52:48 +0200947 mod_timer(&local->sta_cleanup,
948 round_jiffies(jiffies + STA_INFO_CLEANUP_INTERVAL));
Jiri Bencf0706e82007-05-05 11:45:53 -0700949}
950
951void sta_info_init(struct ieee80211_local *local)
952{
Johannes Berg4d339602011-12-15 11:24:20 +0100953 spin_lock_init(&local->tim_lock);
Johannes Berg34e89502010-02-03 13:59:58 +0100954 mutex_init(&local->sta_mtx);
Jiri Bencf0706e82007-05-05 11:45:53 -0700955 INIT_LIST_HEAD(&local->sta_list);
Jiri Bencf0706e82007-05-05 11:45:53 -0700956
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -0800957 setup_timer(&local->sta_cleanup, sta_info_cleanup,
958 (unsigned long)local);
Jiri Bencf0706e82007-05-05 11:45:53 -0700959}
960
961void sta_info_stop(struct ieee80211_local *local)
962{
Johannes Berga56f9922012-12-13 23:08:52 +0100963 del_timer_sync(&local->sta_cleanup);
Jiri Bencf0706e82007-05-05 11:45:53 -0700964}
965
Johannes Berg051007d2012-12-13 23:49:02 +0100966
Johannes Berge7162512013-12-04 23:18:37 +0100967int __sta_info_flush(struct ieee80211_sub_if_data *sdata, bool vlans)
Jiri Bencf0706e82007-05-05 11:45:53 -0700968{
Johannes Bergb998e8b2012-12-13 23:07:46 +0100969 struct ieee80211_local *local = sdata->local;
Jiri Bencf0706e82007-05-05 11:45:53 -0700970 struct sta_info *sta, *tmp;
Johannes Bergd7782072013-12-04 23:12:31 +0100971 LIST_HEAD(free_list);
Johannes Berg44213b52008-02-25 16:27:49 +0100972 int ret = 0;
Jiri Bencf0706e82007-05-05 11:45:53 -0700973
Johannes Bergd0709a62008-02-25 16:27:46 +0100974 might_sleep();
975
Johannes Berge7162512013-12-04 23:18:37 +0100976 WARN_ON(vlans && sdata->vif.type != NL80211_IFTYPE_AP);
977 WARN_ON(vlans && !sdata->bss);
978
Johannes Berg34e89502010-02-03 13:59:58 +0100979 mutex_lock(&local->sta_mtx);
Johannes Berg34e89502010-02-03 13:59:58 +0100980 list_for_each_entry_safe(sta, tmp, &local->sta_list, list) {
Johannes Berge7162512013-12-04 23:18:37 +0100981 if (sdata == sta->sdata ||
982 (vlans && sdata->bss == sta->sdata->bss)) {
Johannes Bergd7782072013-12-04 23:12:31 +0100983 if (!WARN_ON(__sta_info_destroy_part1(sta)))
984 list_add(&sta->free_list, &free_list);
Johannes Berg34316832012-02-25 21:40:46 +0100985 ret++;
986 }
Johannes Berg34e89502010-02-03 13:59:58 +0100987 }
Johannes Bergd7782072013-12-04 23:12:31 +0100988
989 if (!list_empty(&free_list)) {
990 synchronize_net();
991 list_for_each_entry_safe(sta, tmp, &free_list, free_list)
992 __sta_info_destroy_part2(sta);
993 }
Johannes Berg34e89502010-02-03 13:59:58 +0100994 mutex_unlock(&local->sta_mtx);
Johannes Berg44213b52008-02-25 16:27:49 +0100995
Johannes Berg051007d2012-12-13 23:49:02 +0100996 return ret;
997}
998
Johannes Berg24723d12008-09-11 00:01:46 +0200999void ieee80211_sta_expire(struct ieee80211_sub_if_data *sdata,
1000 unsigned long exp_time)
1001{
1002 struct ieee80211_local *local = sdata->local;
1003 struct sta_info *sta, *tmp;
Johannes Berg24723d12008-09-11 00:01:46 +02001004
Johannes Berg34e89502010-02-03 13:59:58 +01001005 mutex_lock(&local->sta_mtx);
Mohammed Shafi Shajakhane46a2cf2011-12-26 10:43:29 +05301006
1007 list_for_each_entry_safe(sta, tmp, &local->sta_list, list) {
Marek Lindnerec2b7742011-12-20 23:16:52 +08001008 if (sdata != sta->sdata)
1009 continue;
1010
Johannes Berg24723d12008-09-11 00:01:46 +02001011 if (time_after(jiffies, sta->last_rx + exp_time)) {
Mohammed Shafi Shajakhaneea57d42012-10-08 21:33:47 +05301012 sta_dbg(sta->sdata, "expiring inactive STA %pM\n",
1013 sta->sta.addr);
Marco Porsch3f52b7e2013-01-30 18:14:08 +01001014
1015 if (ieee80211_vif_is_mesh(&sdata->vif) &&
1016 test_sta_flag(sta, WLAN_STA_PS_STA))
1017 atomic_dec(&sdata->u.mesh.ps.num_sta_ps);
1018
Johannes Berg34e89502010-02-03 13:59:58 +01001019 WARN_ON(__sta_info_destroy(sta));
Johannes Berg24723d12008-09-11 00:01:46 +02001020 }
Mohammed Shafi Shajakhane46a2cf2011-12-26 10:43:29 +05301021 }
1022
Johannes Berg34e89502010-02-03 13:59:58 +01001023 mutex_unlock(&local->sta_mtx);
Johannes Berg24723d12008-09-11 00:01:46 +02001024}
Johannes Berg17741cd2008-09-11 00:02:02 +02001025
Ben Greear686b9cb2010-09-23 09:44:36 -07001026struct ieee80211_sta *ieee80211_find_sta_by_ifaddr(struct ieee80211_hw *hw,
1027 const u8 *addr,
1028 const u8 *localaddr)
Johannes Berg17741cd2008-09-11 00:02:02 +02001029{
Johannes Bergabe60632009-11-25 17:46:18 +01001030 struct sta_info *sta, *nxt;
Johannes Berg17741cd2008-09-11 00:02:02 +02001031
Ben Greear686b9cb2010-09-23 09:44:36 -07001032 /*
1033 * Just return a random station if localaddr is NULL
1034 * ... first in list.
1035 */
Johannes Bergf7c65592010-04-30 13:48:36 +02001036 for_each_sta_info(hw_to_local(hw), addr, sta, nxt) {
Ben Greear686b9cb2010-09-23 09:44:36 -07001037 if (localaddr &&
Joe Perchesb203ca32012-05-08 18:56:52 +00001038 !ether_addr_equal(sta->sdata->vif.addr, localaddr))
Ben Greear686b9cb2010-09-23 09:44:36 -07001039 continue;
Johannes Bergf7c65592010-04-30 13:48:36 +02001040 if (!sta->uploaded)
1041 return NULL;
Johannes Bergabe60632009-11-25 17:46:18 +01001042 return &sta->sta;
Johannes Bergf7c65592010-04-30 13:48:36 +02001043 }
1044
Johannes Bergabe60632009-11-25 17:46:18 +01001045 return NULL;
Johannes Berg17741cd2008-09-11 00:02:02 +02001046}
Ben Greear686b9cb2010-09-23 09:44:36 -07001047EXPORT_SYMBOL_GPL(ieee80211_find_sta_by_ifaddr);
Johannes Berg5ed176e2009-11-04 14:42:28 +01001048
1049struct ieee80211_sta *ieee80211_find_sta(struct ieee80211_vif *vif,
1050 const u8 *addr)
1051{
Johannes Bergf7c65592010-04-30 13:48:36 +02001052 struct sta_info *sta;
Johannes Berg5ed176e2009-11-04 14:42:28 +01001053
1054 if (!vif)
1055 return NULL;
1056
Johannes Bergf7c65592010-04-30 13:48:36 +02001057 sta = sta_info_get_bss(vif_to_sdata(vif), addr);
1058 if (!sta)
1059 return NULL;
Johannes Berg5ed176e2009-11-04 14:42:28 +01001060
Johannes Bergf7c65592010-04-30 13:48:36 +02001061 if (!sta->uploaded)
1062 return NULL;
1063
1064 return &sta->sta;
Johannes Berg5ed176e2009-11-04 14:42:28 +01001065}
Johannes Berg17741cd2008-09-11 00:02:02 +02001066EXPORT_SYMBOL(ieee80211_find_sta);
Johannes Bergaf818582009-11-06 11:35:50 +01001067
Johannes Berge3685e02014-02-20 11:19:58 +01001068/* powersave support code */
1069void ieee80211_sta_ps_deliver_wakeup(struct sta_info *sta)
Johannes Berg50a94322010-11-16 11:50:28 -08001070{
Helmut Schaa608383b2012-01-30 15:18:00 +01001071 struct ieee80211_sub_if_data *sdata = sta->sdata;
Johannes Berge3685e02014-02-20 11:19:58 +01001072 struct ieee80211_local *local = sdata->local;
1073 struct sk_buff_head pending;
1074 int filtered = 0, buffered = 0, ac;
1075 unsigned long flags;
Marco Porschd012a602012-10-10 12:39:50 -07001076 struct ps_data *ps;
1077
Felix Fietkau3918edb2014-07-25 16:20:23 +02001078 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
1079 sdata = container_of(sdata->bss, struct ieee80211_sub_if_data,
1080 u.ap);
1081
1082 if (sdata->vif.type == NL80211_IFTYPE_AP)
Marco Porschd012a602012-10-10 12:39:50 -07001083 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_SP);
Johannes Berg47086fc2011-09-29 16:04:33 +02001090
Johannes Berg5a306f52012-11-14 23:22:21 +01001091 BUILD_BUG_ON(BITS_TO_LONGS(IEEE80211_NUM_TIDS) > 1);
Johannes Berg948d8872011-09-29 16:04:29 +02001092 sta->driver_buffered_tids = 0;
1093
Arik Nemtsovd057e5a2011-01-31 22:29:13 +02001094 if (!(local->hw.flags & IEEE80211_HW_AP_LINK_PS))
1095 drv_sta_notify(local, sdata, STA_NOTIFY_AWAKE, &sta->sta);
Johannes Bergaf818582009-11-06 11:35:50 +01001096
Johannes Berg948d8872011-09-29 16:04:29 +02001097 skb_queue_head_init(&pending);
Johannes Bergaf818582009-11-06 11:35:50 +01001098
Emmanuel Grumbach1d147bf2014-02-20 09:22:11 +02001099 /* sync with ieee80211_tx_h_unicast_ps_buf */
1100 spin_lock(&sta->ps_lock);
Johannes Bergaf818582009-11-06 11:35:50 +01001101 /* Send all buffered frames to the station */
Johannes Berg948d8872011-09-29 16:04:29 +02001102 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
1103 int count = skb_queue_len(&pending), tmp;
1104
Arik Nemtsov987c2852012-11-05 10:27:52 +02001105 spin_lock_irqsave(&sta->tx_filtered[ac].lock, flags);
Johannes Berg948d8872011-09-29 16:04:29 +02001106 skb_queue_splice_tail_init(&sta->tx_filtered[ac], &pending);
Arik Nemtsov987c2852012-11-05 10:27:52 +02001107 spin_unlock_irqrestore(&sta->tx_filtered[ac].lock, flags);
Johannes Berg948d8872011-09-29 16:04:29 +02001108 tmp = skb_queue_len(&pending);
1109 filtered += tmp - count;
1110 count = tmp;
1111
Arik Nemtsov987c2852012-11-05 10:27:52 +02001112 spin_lock_irqsave(&sta->ps_tx_buf[ac].lock, flags);
Johannes Berg948d8872011-09-29 16:04:29 +02001113 skb_queue_splice_tail_init(&sta->ps_tx_buf[ac], &pending);
Arik Nemtsov987c2852012-11-05 10:27:52 +02001114 spin_unlock_irqrestore(&sta->ps_tx_buf[ac].lock, flags);
Johannes Berg948d8872011-09-29 16:04:29 +02001115 tmp = skb_queue_len(&pending);
1116 buffered += tmp - count;
1117 }
1118
Johannes Berge3685e02014-02-20 11:19:58 +01001119 ieee80211_add_pending_skbs(local, &pending);
Johannes Berg5ac2e352014-05-27 16:32:27 +02001120
1121 /* now we're no longer in the deliver code */
1122 clear_sta_flag(sta, WLAN_STA_PS_DELIVER);
1123
1124 /* The station might have polled and then woken up before we responded,
1125 * so clear these flags now to avoid them sticking around.
1126 */
1127 clear_sta_flag(sta, WLAN_STA_PSPOLL);
1128 clear_sta_flag(sta, WLAN_STA_UAPSD);
Emmanuel Grumbach1d147bf2014-02-20 09:22:11 +02001129 spin_unlock(&sta->ps_lock);
Johannes Berg948d8872011-09-29 16:04:29 +02001130
Johannes Berge3685e02014-02-20 11:19:58 +01001131 atomic_dec(&ps->num_sta_ps);
1132
Emmanuel Grumbach687da132013-10-01 16:45:43 +03001133 /* This station just woke up and isn't aware of our SMPS state */
Chun-Yeow Yeoh062f1d62014-04-22 18:19:25 +08001134 if (!ieee80211_vif_is_mesh(&sdata->vif) &&
1135 !ieee80211_smps_is_restrictive(sta->known_smps_mode,
Emmanuel Grumbach687da132013-10-01 16:45:43 +03001136 sdata->smps_mode) &&
1137 sta->known_smps_mode != sdata->bss->req_smps &&
1138 sta_info_tx_streams(sta) != 1) {
1139 ht_dbg(sdata,
1140 "%pM just woke up and MIMO capable - update SMPS\n",
1141 sta->sta.addr);
1142 ieee80211_send_smps_action(sdata, sdata->bss->req_smps,
1143 sta->sta.addr,
1144 sdata->vif.bss_conf.bssid);
1145 }
1146
Johannes Bergaf818582009-11-06 11:35:50 +01001147 local->total_ps_buffered -= buffered;
1148
Johannes Bergc868cb352011-09-29 16:04:27 +02001149 sta_info_recalc_tim(sta);
1150
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02001151 ps_dbg(sdata,
1152 "STA %pM aid %d sending %d filtered/%d PS frames since STA not sleeping anymore\n",
1153 sta->sta.addr, sta->sta.aid, filtered, buffered);
Johannes Bergaf818582009-11-06 11:35:50 +01001154}
1155
Johannes Bergce662b442011-09-29 16:04:34 +02001156static void ieee80211_send_null_response(struct ieee80211_sub_if_data *sdata,
1157 struct sta_info *sta, int tid,
Johannes Bergb77cf4f2014-01-09 00:00:38 +01001158 enum ieee80211_frame_release_type reason,
1159 bool call_driver)
Johannes Bergce662b442011-09-29 16:04:34 +02001160{
1161 struct ieee80211_local *local = sdata->local;
1162 struct ieee80211_qos_hdr *nullfunc;
1163 struct sk_buff *skb;
1164 int size = sizeof(*nullfunc);
1165 __le16 fc;
Johannes Berga74a8c82014-07-22 14:50:47 +02001166 bool qos = sta->sta.wme;
Johannes Bergce662b442011-09-29 16:04:34 +02001167 struct ieee80211_tx_info *info;
Johannes Berg55de9082012-07-26 17:24:39 +02001168 struct ieee80211_chanctx_conf *chanctx_conf;
Johannes Bergce662b442011-09-29 16:04:34 +02001169
1170 if (qos) {
1171 fc = cpu_to_le16(IEEE80211_FTYPE_DATA |
1172 IEEE80211_STYPE_QOS_NULLFUNC |
1173 IEEE80211_FCTL_FROMDS);
1174 } else {
1175 size -= 2;
1176 fc = cpu_to_le16(IEEE80211_FTYPE_DATA |
1177 IEEE80211_STYPE_NULLFUNC |
1178 IEEE80211_FCTL_FROMDS);
1179 }
1180
1181 skb = dev_alloc_skb(local->hw.extra_tx_headroom + size);
1182 if (!skb)
1183 return;
1184
1185 skb_reserve(skb, local->hw.extra_tx_headroom);
1186
1187 nullfunc = (void *) skb_put(skb, size);
1188 nullfunc->frame_control = fc;
1189 nullfunc->duration_id = 0;
1190 memcpy(nullfunc->addr1, sta->sta.addr, ETH_ALEN);
1191 memcpy(nullfunc->addr2, sdata->vif.addr, ETH_ALEN);
1192 memcpy(nullfunc->addr3, sdata->vif.addr, ETH_ALEN);
Johannes Berg864a6042014-03-04 13:46:53 +01001193 nullfunc->seq_ctrl = 0;
Johannes Bergce662b442011-09-29 16:04:34 +02001194
Johannes Berg59b66252011-10-13 13:19:19 +02001195 skb->priority = tid;
1196 skb_set_queue_mapping(skb, ieee802_1d_to_ac[tid]);
Johannes Bergce662b442011-09-29 16:04:34 +02001197 if (qos) {
Johannes Bergce662b442011-09-29 16:04:34 +02001198 nullfunc->qos_ctrl = cpu_to_le16(tid);
1199
Johannes Berg40b96402011-09-29 16:04:38 +02001200 if (reason == IEEE80211_FRAME_RELEASE_UAPSD)
Johannes Bergce662b442011-09-29 16:04:34 +02001201 nullfunc->qos_ctrl |=
1202 cpu_to_le16(IEEE80211_QOS_CTL_EOSP);
1203 }
1204
1205 info = IEEE80211_SKB_CB(skb);
1206
1207 /*
1208 * Tell TX path to send this frame even though the
1209 * STA may still remain is PS mode after this frame
Johannes Bergdeeaee192011-09-29 16:04:35 +02001210 * exchange. Also set EOSP to indicate this packet
1211 * ends the poll/service period.
Johannes Bergce662b442011-09-29 16:04:34 +02001212 */
Johannes Berg02f2f1a2012-02-27 12:18:30 +01001213 info->flags |= IEEE80211_TX_CTL_NO_PS_BUFFER |
Johannes Bergdeeaee192011-09-29 16:04:35 +02001214 IEEE80211_TX_STATUS_EOSP |
1215 IEEE80211_TX_CTL_REQ_TX_STATUS;
Johannes Bergce662b442011-09-29 16:04:34 +02001216
Sujith Manoharan6b127c72014-12-10 21:26:10 +05301217 info->control.flags |= IEEE80211_TX_CTRL_PS_RESPONSE;
1218
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 Berg73c4e192014-11-09 18:50:09 +02001233 info->band = chanctx_conf->def.chan->band;
1234 ieee80211_xmit(sdata, skb);
Johannes Berg55de9082012-07-26 17:24:39 +02001235 rcu_read_unlock();
Johannes Bergce662b442011-09-29 16:04:34 +02001236}
1237
Johannes Berg0a1cb802014-01-09 11:05:31 +01001238static int find_highest_prio_tid(unsigned long tids)
1239{
1240 /* lower 3 TIDs aren't ordered perfectly */
1241 if (tids & 0xF8)
1242 return fls(tids) - 1;
1243 /* TID 0 is BE just like TID 3 */
1244 if (tids & BIT(0))
1245 return 0;
1246 return fls(tids) - 1;
1247}
1248
Johannes Berg47086fc2011-09-29 16:04:33 +02001249static void
1250ieee80211_sta_ps_deliver_response(struct sta_info *sta,
1251 int n_frames, u8 ignored_acs,
1252 enum ieee80211_frame_release_type reason)
Johannes Bergaf818582009-11-06 11:35:50 +01001253{
1254 struct ieee80211_sub_if_data *sdata = sta->sdata;
1255 struct ieee80211_local *local = sdata->local;
Johannes Berg948d8872011-09-29 16:04:29 +02001256 bool more_data = false;
1257 int ac;
Johannes Berg4049e092011-09-29 16:04:32 +02001258 unsigned long driver_release_tids = 0;
Johannes Berg47086fc2011-09-29 16:04:33 +02001259 struct sk_buff_head frames;
1260
Johannes Bergdeeaee192011-09-29 16:04:35 +02001261 /* Service or PS-Poll period starts */
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001262 set_sta_flag(sta, WLAN_STA_SP);
Johannes Bergdeeaee192011-09-29 16:04:35 +02001263
Johannes Berg47086fc2011-09-29 16:04:33 +02001264 __skb_queue_head_init(&frames);
Johannes Bergaf818582009-11-06 11:35:50 +01001265
Johannes Bergf9f760b2014-01-08 17:45:07 +01001266 /* Get response frame(s) and more data bit for the last one. */
Johannes Berg948d8872011-09-29 16:04:29 +02001267 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
Johannes Berg4049e092011-09-29 16:04:32 +02001268 unsigned long tids;
1269
Johannes Berg47086fc2011-09-29 16:04:33 +02001270 if (ignored_acs & BIT(ac))
Johannes Berg948d8872011-09-29 16:04:29 +02001271 continue;
1272
Johannes Berg4049e092011-09-29 16:04:32 +02001273 tids = ieee80211_tids_for_ac(ac);
1274
Johannes Bergf9f760b2014-01-08 17:45:07 +01001275 /* if we already have frames from software, then we can't also
1276 * release from hardware queues
1277 */
1278 if (skb_queue_empty(&frames))
1279 driver_release_tids |= sta->driver_buffered_tids & tids;
Johannes Berg47086fc2011-09-29 16:04:33 +02001280
Johannes Bergf9f760b2014-01-08 17:45:07 +01001281 if (driver_release_tids) {
1282 /* If the driver has data on more than one TID then
Johannes Berg4049e092011-09-29 16:04:32 +02001283 * certainly there's more data if we release just a
Johannes Bergf9f760b2014-01-08 17:45:07 +01001284 * single frame now (from a single TID). This will
1285 * only happen for PS-Poll.
Johannes Berg4049e092011-09-29 16:04:32 +02001286 */
Johannes Berg47086fc2011-09-29 16:04:33 +02001287 if (reason == IEEE80211_FRAME_RELEASE_PSPOLL &&
1288 hweight16(driver_release_tids) > 1) {
Johannes Berg4049e092011-09-29 16:04:32 +02001289 more_data = true;
1290 driver_release_tids =
Johannes Berg0a1cb802014-01-09 11:05:31 +01001291 BIT(find_highest_prio_tid(
1292 driver_release_tids));
Johannes Berg4049e092011-09-29 16:04:32 +02001293 break;
Johannes Berg948d8872011-09-29 16:04:29 +02001294 }
Johannes Bergf9f760b2014-01-08 17:45:07 +01001295 } else {
1296 struct sk_buff *skb;
1297
1298 while (n_frames > 0) {
1299 skb = skb_dequeue(&sta->tx_filtered[ac]);
1300 if (!skb) {
1301 skb = skb_dequeue(
1302 &sta->ps_tx_buf[ac]);
1303 if (skb)
1304 local->total_ps_buffered--;
1305 }
1306 if (!skb)
1307 break;
1308 n_frames--;
1309 __skb_queue_tail(&frames, skb);
1310 }
Johannes Berg948d8872011-09-29 16:04:29 +02001311 }
1312
Johannes Bergf9f760b2014-01-08 17:45:07 +01001313 /* If we have more frames buffered on this AC, then set the
1314 * more-data bit and abort the loop since we can't send more
1315 * data from other ACs before the buffered frames from this.
1316 */
Johannes Berg948d8872011-09-29 16:04:29 +02001317 if (!skb_queue_empty(&sta->tx_filtered[ac]) ||
1318 !skb_queue_empty(&sta->ps_tx_buf[ac])) {
1319 more_data = true;
1320 break;
1321 }
Johannes Bergaf818582009-11-06 11:35:50 +01001322 }
Johannes Bergaf818582009-11-06 11:35:50 +01001323
Johannes Bergf9f760b2014-01-08 17:45:07 +01001324 if (skb_queue_empty(&frames) && !driver_release_tids) {
Johannes Bergce662b442011-09-29 16:04:34 +02001325 int tid;
Johannes Berg4049e092011-09-29 16:04:32 +02001326
Johannes Bergce662b442011-09-29 16:04:34 +02001327 /*
1328 * For PS-Poll, this can only happen due to a race condition
1329 * when we set the TIM bit and the station notices it, but
1330 * before it can poll for the frame we expire it.
1331 *
1332 * For uAPSD, this is said in the standard (11.2.1.5 h):
1333 * At each unscheduled SP for a non-AP STA, the AP shall
1334 * attempt to transmit at least one MSDU or MMPDU, but no
1335 * more than the value specified in the Max SP Length field
1336 * in the QoS Capability element from delivery-enabled ACs,
1337 * that are destined for the non-AP STA.
1338 *
1339 * Since we have no other MSDU/MMPDU, transmit a QoS null frame.
1340 */
1341
1342 /* This will evaluate to 1, 3, 5 or 7. */
1343 tid = 7 - ((ffs(~ignored_acs) - 1) << 1);
1344
Johannes Bergb77cf4f2014-01-09 00:00:38 +01001345 ieee80211_send_null_response(sdata, sta, tid, reason, true);
Johannes Bergf9f760b2014-01-08 17:45:07 +01001346 } else if (!driver_release_tids) {
Johannes Berg47086fc2011-09-29 16:04:33 +02001347 struct sk_buff_head pending;
1348 struct sk_buff *skb;
Johannes Berg40b96402011-09-29 16:04:38 +02001349 int num = 0;
1350 u16 tids = 0;
Johannes Bergb77cf4f2014-01-09 00:00:38 +01001351 bool need_null = false;
Johannes Bergaf818582009-11-06 11:35:50 +01001352
Johannes Berg47086fc2011-09-29 16:04:33 +02001353 skb_queue_head_init(&pending);
Johannes Bergaf818582009-11-06 11:35:50 +01001354
Johannes Berg47086fc2011-09-29 16:04:33 +02001355 while ((skb = __skb_dequeue(&frames))) {
1356 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1357 struct ieee80211_hdr *hdr = (void *) skb->data;
Johannes Berg40b96402011-09-29 16:04:38 +02001358 u8 *qoshdr = NULL;
1359
1360 num++;
Johannes Bergaf818582009-11-06 11:35:50 +01001361
Johannes Berg47086fc2011-09-29 16:04:33 +02001362 /*
1363 * Tell TX path to send this frame even though the
1364 * STA may still remain is PS mode after this frame
1365 * exchange.
1366 */
Sujith Manoharan6b127c72014-12-10 21:26:10 +05301367 info->flags |= IEEE80211_TX_CTL_NO_PS_BUFFER;
1368 info->control.flags |= IEEE80211_TX_CTRL_PS_RESPONSE;
Johannes Bergaf818582009-11-06 11:35:50 +01001369
Johannes Berg47086fc2011-09-29 16:04:33 +02001370 /*
1371 * Use MoreData flag to indicate whether there are
1372 * more buffered frames for this STA
1373 */
Janusz.Dziedzic@tieto.com24b9c372011-11-07 09:47:47 +02001374 if (more_data || !skb_queue_empty(&frames))
Johannes Berg47086fc2011-09-29 16:04:33 +02001375 hdr->frame_control |=
1376 cpu_to_le16(IEEE80211_FCTL_MOREDATA);
Janusz.Dziedzic@tieto.com24b9c372011-11-07 09:47:47 +02001377 else
1378 hdr->frame_control &=
1379 cpu_to_le16(~IEEE80211_FCTL_MOREDATA);
Johannes Berg47086fc2011-09-29 16:04:33 +02001380
Johannes Berg40b96402011-09-29 16:04:38 +02001381 if (ieee80211_is_data_qos(hdr->frame_control) ||
1382 ieee80211_is_qos_nullfunc(hdr->frame_control))
1383 qoshdr = ieee80211_get_qos_ctl(hdr);
1384
Johannes Bergb77cf4f2014-01-09 00:00:38 +01001385 tids |= BIT(skb->priority);
1386
1387 __skb_queue_tail(&pending, skb);
1388
1389 /* end service period after last frame or add one */
1390 if (!skb_queue_empty(&frames))
1391 continue;
1392
1393 if (reason != IEEE80211_FRAME_RELEASE_UAPSD) {
1394 /* for PS-Poll, there's only one frame */
1395 info->flags |= IEEE80211_TX_STATUS_EOSP |
1396 IEEE80211_TX_CTL_REQ_TX_STATUS;
1397 break;
1398 }
1399
1400 /* For uAPSD, things are a bit more complicated. If the
1401 * last frame has a QoS header (i.e. is a QoS-data or
1402 * QoS-nulldata frame) then just set the EOSP bit there
1403 * and be done.
1404 * If the frame doesn't have a QoS header (which means
1405 * it should be a bufferable MMPDU) then we can't set
1406 * the EOSP bit in the QoS header; add a QoS-nulldata
1407 * frame to the list to send it after the MMPDU.
1408 *
1409 * Note that this code is only in the mac80211-release
1410 * code path, we assume that the driver will not buffer
1411 * anything but QoS-data frames, or if it does, will
1412 * create the QoS-nulldata frame by itself if needed.
1413 *
1414 * Cf. 802.11-2012 10.2.1.10 (c).
1415 */
1416 if (qoshdr) {
1417 *qoshdr |= IEEE80211_QOS_CTL_EOSP;
Johannes Berg47086fc2011-09-29 16:04:33 +02001418
Marco Porsch52a3f202012-03-16 15:30:26 +01001419 info->flags |= IEEE80211_TX_STATUS_EOSP |
1420 IEEE80211_TX_CTL_REQ_TX_STATUS;
Johannes Bergb77cf4f2014-01-09 00:00:38 +01001421 } else {
1422 /* The standard isn't completely clear on this
1423 * as it says the more-data bit should be set
1424 * if there are more BUs. The QoS-Null frame
1425 * we're about to send isn't buffered yet, we
1426 * only create it below, but let's pretend it
1427 * was buffered just in case some clients only
1428 * expect more-data=0 when eosp=1.
1429 */
1430 hdr->frame_control |=
1431 cpu_to_le16(IEEE80211_FCTL_MOREDATA);
1432 need_null = true;
1433 num++;
Marco Porsch52a3f202012-03-16 15:30:26 +01001434 }
Johannes Bergb77cf4f2014-01-09 00:00:38 +01001435 break;
Johannes Berg47086fc2011-09-29 16:04:33 +02001436 }
1437
Johannes Berg40b96402011-09-29 16:04:38 +02001438 drv_allow_buffered_frames(local, sta, tids, num,
1439 reason, more_data);
1440
Johannes Berg47086fc2011-09-29 16:04:33 +02001441 ieee80211_add_pending_skbs(local, &pending);
Johannes Bergaf818582009-11-06 11:35:50 +01001442
Johannes Bergb77cf4f2014-01-09 00:00:38 +01001443 if (need_null)
1444 ieee80211_send_null_response(
1445 sdata, sta, find_highest_prio_tid(tids),
1446 reason, false);
1447
Johannes Bergc868cb352011-09-29 16:04:27 +02001448 sta_info_recalc_tim(sta);
Johannes Bergaf818582009-11-06 11:35:50 +01001449 } else {
1450 /*
Johannes Berg4049e092011-09-29 16:04:32 +02001451 * We need to release a frame that is buffered somewhere in the
1452 * driver ... it'll have to handle that.
Johannes Bergf9f760b2014-01-08 17:45:07 +01001453 * Note that the driver also has to check the number of frames
1454 * on the TIDs we're releasing from - if there are more than
1455 * n_frames it has to set the more-data bit (if we didn't ask
1456 * it to set it anyway due to other buffered frames); if there
1457 * are fewer than n_frames it has to make sure to adjust that
1458 * to allow the service period to end properly.
Johannes Bergaf818582009-11-06 11:35:50 +01001459 */
Johannes Berg4049e092011-09-29 16:04:32 +02001460 drv_release_buffered_frames(local, sta, driver_release_tids,
Johannes Berg47086fc2011-09-29 16:04:33 +02001461 n_frames, reason, more_data);
Johannes Berg4049e092011-09-29 16:04:32 +02001462
1463 /*
1464 * Note that we don't recalculate the TIM bit here as it would
1465 * most likely have no effect at all unless the driver told us
Johannes Bergf9f760b2014-01-08 17:45:07 +01001466 * that the TID(s) became empty before returning here from the
Johannes Berg4049e092011-09-29 16:04:32 +02001467 * release function.
Johannes Bergf9f760b2014-01-08 17:45:07 +01001468 * Either way, however, when the driver tells us that the TID(s)
Johannes Berg4049e092011-09-29 16:04:32 +02001469 * became empty we'll do the TIM recalculation.
1470 */
Johannes Bergaf818582009-11-06 11:35:50 +01001471 }
1472}
1473
Johannes Bergaf818582009-11-06 11:35:50 +01001474void ieee80211_sta_ps_deliver_poll_response(struct sta_info *sta)
1475{
Johannes Berg47086fc2011-09-29 16:04:33 +02001476 u8 ignore_for_response = sta->sta.uapsd_queues;
Johannes Bergaf818582009-11-06 11:35:50 +01001477
Johannes Berg47086fc2011-09-29 16:04:33 +02001478 /*
1479 * If all ACs are delivery-enabled then we should reply
1480 * from any of them, if only some are enabled we reply
1481 * only from the non-enabled ones.
1482 */
1483 if (ignore_for_response == BIT(IEEE80211_NUM_ACS) - 1)
1484 ignore_for_response = 0;
1485
1486 ieee80211_sta_ps_deliver_response(sta, 1, ignore_for_response,
1487 IEEE80211_FRAME_RELEASE_PSPOLL);
1488}
1489
1490void ieee80211_sta_ps_deliver_uapsd(struct sta_info *sta)
1491{
1492 int n_frames = sta->sta.max_sp;
1493 u8 delivery_enabled = sta->sta.uapsd_queues;
1494
1495 /*
1496 * If we ever grow support for TSPEC this might happen if
1497 * the TSPEC update from hostapd comes in between a trigger
1498 * frame setting WLAN_STA_UAPSD in the RX path and this
1499 * actually getting called.
1500 */
1501 if (!delivery_enabled)
1502 return;
1503
Johannes Berg47086fc2011-09-29 16:04:33 +02001504 switch (sta->sta.max_sp) {
1505 case 1:
1506 n_frames = 2;
1507 break;
1508 case 2:
1509 n_frames = 4;
1510 break;
1511 case 3:
1512 n_frames = 6;
1513 break;
1514 case 0:
1515 /* XXX: what is a good value? */
Andrei Otcheretianski13a80982014-11-04 11:33:04 +02001516 n_frames = 128;
Johannes Berg47086fc2011-09-29 16:04:33 +02001517 break;
Johannes Bergaf818582009-11-06 11:35:50 +01001518 }
Johannes Bergaf818582009-11-06 11:35:50 +01001519
Johannes Berg47086fc2011-09-29 16:04:33 +02001520 ieee80211_sta_ps_deliver_response(sta, n_frames, ~delivery_enabled,
1521 IEEE80211_FRAME_RELEASE_UAPSD);
Johannes Bergaf818582009-11-06 11:35:50 +01001522}
1523
1524void ieee80211_sta_block_awake(struct ieee80211_hw *hw,
1525 struct ieee80211_sta *pubsta, bool block)
1526{
1527 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
1528
Johannes Bergb5878a22010-04-07 16:48:40 +02001529 trace_api_sta_block_awake(sta->local, pubsta, block);
1530
Johannes Berg5ac2e352014-05-27 16:32:27 +02001531 if (block) {
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001532 set_sta_flag(sta, WLAN_STA_PS_DRIVER);
Johannes Berg5ac2e352014-05-27 16:32:27 +02001533 return;
1534 }
1535
1536 if (!test_sta_flag(sta, WLAN_STA_PS_DRIVER))
1537 return;
1538
1539 if (!test_sta_flag(sta, WLAN_STA_PS_STA)) {
1540 set_sta_flag(sta, WLAN_STA_PS_DELIVER);
1541 clear_sta_flag(sta, WLAN_STA_PS_DRIVER);
1542 ieee80211_queue_work(hw, &sta->drv_deliver_wk);
1543 } else if (test_sta_flag(sta, WLAN_STA_PSPOLL) ||
1544 test_sta_flag(sta, WLAN_STA_UAPSD)) {
1545 /* must be asleep in this case */
1546 clear_sta_flag(sta, WLAN_STA_PS_DRIVER);
1547 ieee80211_queue_work(hw, &sta->drv_deliver_wk);
1548 } else {
1549 clear_sta_flag(sta, WLAN_STA_PS_DRIVER);
1550 }
Johannes Bergaf818582009-11-06 11:35:50 +01001551}
1552EXPORT_SYMBOL(ieee80211_sta_block_awake);
Felix Fietkaudcf55fb2011-04-17 17:45:00 +02001553
Johannes Berge9437892013-02-15 21:38:08 +01001554void ieee80211_sta_eosp(struct ieee80211_sta *pubsta)
Johannes Berg37fbd902011-09-29 16:04:39 +02001555{
1556 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
1557 struct ieee80211_local *local = sta->local;
Johannes Berg37fbd902011-09-29 16:04:39 +02001558
1559 trace_api_eosp(local, pubsta);
1560
Johannes Berge9437892013-02-15 21:38:08 +01001561 clear_sta_flag(sta, WLAN_STA_SP);
Johannes Berg37fbd902011-09-29 16:04:39 +02001562}
Johannes Berge9437892013-02-15 21:38:08 +01001563EXPORT_SYMBOL(ieee80211_sta_eosp);
Johannes Berg37fbd902011-09-29 16:04:39 +02001564
Johannes Berg042ec452011-09-29 16:04:26 +02001565void ieee80211_sta_set_buffered(struct ieee80211_sta *pubsta,
1566 u8 tid, bool buffered)
Felix Fietkaudcf55fb2011-04-17 17:45:00 +02001567{
1568 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
1569
Johannes Berg5a306f52012-11-14 23:22:21 +01001570 if (WARN_ON(tid >= IEEE80211_NUM_TIDS))
Johannes Berg042ec452011-09-29 16:04:26 +02001571 return;
1572
Johannes Berg1b000782013-12-19 10:47:48 +01001573 trace_api_sta_set_buffered(sta->local, pubsta, tid, buffered);
1574
Johannes Berg948d8872011-09-29 16:04:29 +02001575 if (buffered)
1576 set_bit(tid, &sta->driver_buffered_tids);
1577 else
1578 clear_bit(tid, &sta->driver_buffered_tids);
1579
Johannes Bergc868cb352011-09-29 16:04:27 +02001580 sta_info_recalc_tim(sta);
Felix Fietkaudcf55fb2011-04-17 17:45:00 +02001581}
Johannes Berg042ec452011-09-29 16:04:26 +02001582EXPORT_SYMBOL(ieee80211_sta_set_buffered);
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001583
Johannes Berg83d5cc02012-01-12 09:31:10 +01001584int sta_info_move_state(struct sta_info *sta,
1585 enum ieee80211_sta_state new_state)
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001586{
Johannes Berg8bf11d82011-12-15 11:17:37 +01001587 might_sleep();
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001588
1589 if (sta->sta_state == new_state)
1590 return 0;
1591
Johannes Bergf09603a2012-01-20 13:55:21 +01001592 /* check allowed transitions first */
1593
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001594 switch (new_state) {
1595 case IEEE80211_STA_NONE:
Johannes Bergf09603a2012-01-20 13:55:21 +01001596 if (sta->sta_state != IEEE80211_STA_AUTH)
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001597 return -EINVAL;
1598 break;
1599 case IEEE80211_STA_AUTH:
Johannes Bergf09603a2012-01-20 13:55:21 +01001600 if (sta->sta_state != IEEE80211_STA_NONE &&
1601 sta->sta_state != IEEE80211_STA_ASSOC)
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001602 return -EINVAL;
1603 break;
1604 case IEEE80211_STA_ASSOC:
Johannes Bergf09603a2012-01-20 13:55:21 +01001605 if (sta->sta_state != IEEE80211_STA_AUTH &&
1606 sta->sta_state != IEEE80211_STA_AUTHORIZED)
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001607 return -EINVAL;
1608 break;
1609 case IEEE80211_STA_AUTHORIZED:
Johannes Bergf09603a2012-01-20 13:55:21 +01001610 if (sta->sta_state != IEEE80211_STA_ASSOC)
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001611 return -EINVAL;
1612 break;
1613 default:
1614 WARN(1, "invalid state %d", new_state);
1615 return -EINVAL;
1616 }
1617
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02001618 sta_dbg(sta->sdata, "moving STA %pM to state %d\n",
1619 sta->sta.addr, new_state);
Johannes Bergf09603a2012-01-20 13:55:21 +01001620
1621 /*
1622 * notify the driver before the actual changes so it can
1623 * fail the transition
1624 */
1625 if (test_sta_flag(sta, WLAN_STA_INSERTED)) {
1626 int err = drv_sta_state(sta->local, sta->sdata, sta,
1627 sta->sta_state, new_state);
1628 if (err)
1629 return err;
1630 }
1631
1632 /* reflect the change in all state variables */
1633
1634 switch (new_state) {
1635 case IEEE80211_STA_NONE:
1636 if (sta->sta_state == IEEE80211_STA_AUTH)
1637 clear_bit(WLAN_STA_AUTH, &sta->_flags);
1638 break;
1639 case IEEE80211_STA_AUTH:
1640 if (sta->sta_state == IEEE80211_STA_NONE)
1641 set_bit(WLAN_STA_AUTH, &sta->_flags);
1642 else if (sta->sta_state == IEEE80211_STA_ASSOC)
1643 clear_bit(WLAN_STA_ASSOC, &sta->_flags);
1644 break;
1645 case IEEE80211_STA_ASSOC:
1646 if (sta->sta_state == IEEE80211_STA_AUTH) {
1647 set_bit(WLAN_STA_ASSOC, &sta->_flags);
1648 } else if (sta->sta_state == IEEE80211_STA_AUTHORIZED) {
Felix Fietkau7e3ed022012-04-23 19:49:03 +02001649 if (sta->sdata->vif.type == NL80211_IFTYPE_AP ||
1650 (sta->sdata->vif.type == NL80211_IFTYPE_AP_VLAN &&
1651 !sta->sdata->u.vlan.sta))
1652 atomic_dec(&sta->sdata->bss->num_mcast_sta);
Johannes Bergf09603a2012-01-20 13:55:21 +01001653 clear_bit(WLAN_STA_AUTHORIZED, &sta->_flags);
1654 }
1655 break;
1656 case IEEE80211_STA_AUTHORIZED:
1657 if (sta->sta_state == IEEE80211_STA_ASSOC) {
Felix Fietkau7e3ed022012-04-23 19:49:03 +02001658 if (sta->sdata->vif.type == NL80211_IFTYPE_AP ||
1659 (sta->sdata->vif.type == NL80211_IFTYPE_AP_VLAN &&
1660 !sta->sdata->u.vlan.sta))
1661 atomic_inc(&sta->sdata->bss->num_mcast_sta);
Johannes Bergf09603a2012-01-20 13:55:21 +01001662 set_bit(WLAN_STA_AUTHORIZED, &sta->_flags);
1663 }
1664 break;
1665 default:
1666 break;
1667 }
1668
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001669 sta->sta_state = new_state;
1670
1671 return 0;
1672}
Emmanuel Grumbach687da132013-10-01 16:45:43 +03001673
1674u8 sta_info_tx_streams(struct sta_info *sta)
1675{
1676 struct ieee80211_sta_ht_cap *ht_cap = &sta->sta.ht_cap;
1677 u8 rx_streams;
1678
1679 if (!sta->sta.ht_cap.ht_supported)
1680 return 1;
1681
1682 if (sta->sta.vht_cap.vht_supported) {
1683 int i;
1684 u16 tx_mcs_map =
1685 le16_to_cpu(sta->sta.vht_cap.vht_mcs.tx_mcs_map);
1686
1687 for (i = 7; i >= 0; i--)
1688 if ((tx_mcs_map & (0x3 << (i * 2))) !=
1689 IEEE80211_VHT_MCS_NOT_SUPPORTED)
1690 return i + 1;
1691 }
1692
1693 if (ht_cap->mcs.rx_mask[3])
1694 rx_streams = 4;
1695 else if (ht_cap->mcs.rx_mask[2])
1696 rx_streams = 3;
1697 else if (ht_cap->mcs.rx_mask[1])
1698 rx_streams = 2;
1699 else
1700 rx_streams = 1;
1701
1702 if (!(ht_cap->mcs.tx_params & IEEE80211_HT_MCS_TX_RX_DIFF))
1703 return rx_streams;
1704
1705 return ((ht_cap->mcs.tx_params & IEEE80211_HT_MCS_TX_MAX_STREAMS_MASK)
1706 >> IEEE80211_HT_MCS_TX_MAX_STREAMS_SHIFT) + 1;
1707}
Johannes Bergb7ffbd72014-06-04 17:31:56 +02001708
1709void sta_set_sinfo(struct sta_info *sta, struct station_info *sinfo)
1710{
1711 struct ieee80211_sub_if_data *sdata = sta->sdata;
1712 struct ieee80211_local *local = sdata->local;
John W. Linville9a244402014-07-25 10:22:36 -04001713 struct rate_control_ref *ref = NULL;
Johannes Bergb7ffbd72014-06-04 17:31:56 +02001714 struct timespec uptime;
Johannes Bergb7ffbd72014-06-04 17:31:56 +02001715 u32 thr = 0;
1716 int i, ac;
1717
John W. Linville9a244402014-07-25 10:22:36 -04001718 if (test_sta_flag(sta, WLAN_STA_RATE_CONTROL))
1719 ref = local->rate_ctrl;
1720
Johannes Bergb7ffbd72014-06-04 17:31:56 +02001721 sinfo->generation = sdata->local->sta_generation;
1722
Johannes Berg225b8182015-01-21 21:09:02 +01001723 /* do before driver, so beacon filtering drivers have a
1724 * chance to e.g. just add the number of filtered beacons
1725 * (or just modify the value entirely, of course)
1726 */
1727 if (sdata->vif.type == NL80211_IFTYPE_STATION)
1728 sinfo->rx_beacon = sdata->u.mgd.count_beacon_signal;
1729
Johannes Berg2b9a7e12014-11-17 11:35:23 +01001730 drv_sta_statistics(local, sdata, &sta->sta, sinfo);
1731
Johannes Berg319090b2014-11-17 14:08:11 +01001732 sinfo->filled |= BIT(NL80211_STA_INFO_INACTIVE_TIME) |
1733 BIT(NL80211_STA_INFO_STA_FLAGS) |
1734 BIT(NL80211_STA_INFO_BSS_PARAM) |
1735 BIT(NL80211_STA_INFO_CONNECTED_TIME) |
1736 BIT(NL80211_STA_INFO_RX_DROP_MISC) |
1737 BIT(NL80211_STA_INFO_BEACON_LOSS);
Johannes Bergb7ffbd72014-06-04 17:31:56 +02001738
Thomas Gleixner18171522014-06-11 23:59:14 +00001739 ktime_get_ts(&uptime);
Johannes Bergb7ffbd72014-06-04 17:31:56 +02001740 sinfo->connected_time = uptime.tv_sec - sta->last_connected;
Johannes Bergb7ffbd72014-06-04 17:31:56 +02001741 sinfo->inactive_time = jiffies_to_msecs(jiffies - sta->last_rx);
Johannes Berg2b9a7e12014-11-17 11:35:23 +01001742
Johannes Berg319090b2014-11-17 14:08:11 +01001743 if (!(sinfo->filled & (BIT(NL80211_STA_INFO_TX_BYTES64) |
1744 BIT(NL80211_STA_INFO_TX_BYTES)))) {
Johannes Berg2b9a7e12014-11-17 11:35:23 +01001745 sinfo->tx_bytes = 0;
1746 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++)
1747 sinfo->tx_bytes += sta->tx_bytes[ac];
Johannes Berg319090b2014-11-17 14:08:11 +01001748 sinfo->filled |= BIT(NL80211_STA_INFO_TX_BYTES64);
Johannes Bergb7ffbd72014-06-04 17:31:56 +02001749 }
Johannes Berg2b9a7e12014-11-17 11:35:23 +01001750
Johannes Berg319090b2014-11-17 14:08:11 +01001751 if (!(sinfo->filled & BIT(NL80211_STA_INFO_TX_PACKETS))) {
Johannes Berg2b9a7e12014-11-17 11:35:23 +01001752 sinfo->tx_packets = 0;
1753 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++)
1754 sinfo->tx_packets += sta->tx_packets[ac];
Johannes Berg319090b2014-11-17 14:08:11 +01001755 sinfo->filled |= BIT(NL80211_STA_INFO_TX_PACKETS);
Johannes Berg2b9a7e12014-11-17 11:35:23 +01001756 }
1757
Johannes Berg319090b2014-11-17 14:08:11 +01001758 if (!(sinfo->filled & (BIT(NL80211_STA_INFO_RX_BYTES64) |
1759 BIT(NL80211_STA_INFO_RX_BYTES)))) {
Johannes Berg2b9a7e12014-11-17 11:35:23 +01001760 sinfo->rx_bytes = sta->rx_bytes;
Johannes Berg319090b2014-11-17 14:08:11 +01001761 sinfo->filled |= BIT(NL80211_STA_INFO_RX_BYTES64);
Johannes Berg2b9a7e12014-11-17 11:35:23 +01001762 }
1763
Johannes Berg319090b2014-11-17 14:08:11 +01001764 if (!(sinfo->filled & BIT(NL80211_STA_INFO_RX_PACKETS))) {
Johannes Berg2b9a7e12014-11-17 11:35:23 +01001765 sinfo->rx_packets = sta->rx_packets;
Johannes Berg319090b2014-11-17 14:08:11 +01001766 sinfo->filled |= BIT(NL80211_STA_INFO_RX_PACKETS);
Johannes Berg2b9a7e12014-11-17 11:35:23 +01001767 }
1768
Johannes Berg319090b2014-11-17 14:08:11 +01001769 if (!(sinfo->filled & BIT(NL80211_STA_INFO_TX_RETRIES))) {
Johannes Berg2b9a7e12014-11-17 11:35:23 +01001770 sinfo->tx_retries = sta->tx_retry_count;
Johannes Berg319090b2014-11-17 14:08:11 +01001771 sinfo->filled |= BIT(NL80211_STA_INFO_TX_RETRIES);
Johannes Berg2b9a7e12014-11-17 11:35:23 +01001772 }
1773
Johannes Berg319090b2014-11-17 14:08:11 +01001774 if (!(sinfo->filled & BIT(NL80211_STA_INFO_TX_FAILED))) {
Johannes Berg2b9a7e12014-11-17 11:35:23 +01001775 sinfo->tx_failed = sta->tx_retry_failed;
Johannes Berg319090b2014-11-17 14:08:11 +01001776 sinfo->filled |= BIT(NL80211_STA_INFO_TX_FAILED);
Johannes Berg2b9a7e12014-11-17 11:35:23 +01001777 }
1778
Johannes Bergb7ffbd72014-06-04 17:31:56 +02001779 sinfo->rx_dropped_misc = sta->rx_dropped;
1780 sinfo->beacon_loss_count = sta->beacon_loss_count;
1781
Johannes Berg225b8182015-01-21 21:09:02 +01001782 if (sdata->vif.type == NL80211_IFTYPE_STATION &&
1783 !(sdata->vif.driver_flags & IEEE80211_VIF_BEACON_FILTER)) {
1784 sinfo->filled |= BIT(NL80211_STA_INFO_BEACON_RX) |
1785 BIT(NL80211_STA_INFO_BEACON_SIGNAL_AVG);
1786 sinfo->rx_beacon_signal_avg = ieee80211_ave_rssi(&sdata->vif);
1787 }
1788
Johannes Bergb7ffbd72014-06-04 17:31:56 +02001789 if ((sta->local->hw.flags & IEEE80211_HW_SIGNAL_DBM) ||
1790 (sta->local->hw.flags & IEEE80211_HW_SIGNAL_UNSPEC)) {
Johannes Berg319090b2014-11-17 14:08:11 +01001791 if (!(sinfo->filled & BIT(NL80211_STA_INFO_SIGNAL))) {
Johannes Bergb7ffbd72014-06-04 17:31:56 +02001792 sinfo->signal = (s8)sta->last_signal;
Johannes Berg319090b2014-11-17 14:08:11 +01001793 sinfo->filled |= BIT(NL80211_STA_INFO_SIGNAL);
Johannes Berg2b9a7e12014-11-17 11:35:23 +01001794 }
1795
Johannes Berg319090b2014-11-17 14:08:11 +01001796 if (!(sinfo->filled & BIT(NL80211_STA_INFO_SIGNAL_AVG))) {
Johannes Berg2b9a7e12014-11-17 11:35:23 +01001797 sinfo->signal_avg = (s8) -ewma_read(&sta->avg_signal);
Johannes Berg319090b2014-11-17 14:08:11 +01001798 sinfo->filled |= BIT(NL80211_STA_INFO_SIGNAL_AVG);
Johannes Berg2b9a7e12014-11-17 11:35:23 +01001799 }
Johannes Bergb7ffbd72014-06-04 17:31:56 +02001800 }
Johannes Berg2b9a7e12014-11-17 11:35:23 +01001801
1802 if (sta->chains &&
Johannes Berg319090b2014-11-17 14:08:11 +01001803 !(sinfo->filled & (BIT(NL80211_STA_INFO_CHAIN_SIGNAL) |
1804 BIT(NL80211_STA_INFO_CHAIN_SIGNAL_AVG)))) {
1805 sinfo->filled |= BIT(NL80211_STA_INFO_CHAIN_SIGNAL) |
1806 BIT(NL80211_STA_INFO_CHAIN_SIGNAL_AVG);
Johannes Bergb7ffbd72014-06-04 17:31:56 +02001807
1808 sinfo->chains = sta->chains;
1809 for (i = 0; i < ARRAY_SIZE(sinfo->chain_signal); i++) {
1810 sinfo->chain_signal[i] = sta->chain_signal_last[i];
1811 sinfo->chain_signal_avg[i] =
1812 (s8) -ewma_read(&sta->chain_signal_avg[i]);
1813 }
1814 }
1815
Johannes Berg319090b2014-11-17 14:08:11 +01001816 if (!(sinfo->filled & BIT(NL80211_STA_INFO_TX_BITRATE))) {
Johannes Berg2b9a7e12014-11-17 11:35:23 +01001817 sta_set_rate_info_tx(sta, &sta->last_tx_rate, &sinfo->txrate);
Johannes Berg319090b2014-11-17 14:08:11 +01001818 sinfo->filled |= BIT(NL80211_STA_INFO_TX_BITRATE);
Johannes Berg2b9a7e12014-11-17 11:35:23 +01001819 }
1820
Johannes Berg319090b2014-11-17 14:08:11 +01001821 if (!(sinfo->filled & BIT(NL80211_STA_INFO_RX_BITRATE))) {
Johannes Berg2b9a7e12014-11-17 11:35:23 +01001822 sta_set_rate_info_rx(sta, &sinfo->rxrate);
Johannes Berg319090b2014-11-17 14:08:11 +01001823 sinfo->filled |= BIT(NL80211_STA_INFO_RX_BITRATE);
Johannes Berg2b9a7e12014-11-17 11:35:23 +01001824 }
Johannes Bergb7ffbd72014-06-04 17:31:56 +02001825
Johannes Berg79c892b2014-11-21 14:26:31 +01001826 sinfo->filled |= BIT(NL80211_STA_INFO_TID_STATS);
1827 for (i = 0; i < IEEE80211_NUM_TIDS + 1; i++) {
1828 struct cfg80211_tid_stats *tidstats = &sinfo->pertid[i];
1829
1830 if (!(tidstats->filled & BIT(NL80211_TID_STATS_RX_MSDU))) {
1831 tidstats->filled |= BIT(NL80211_TID_STATS_RX_MSDU);
1832 tidstats->rx_msdu = sta->rx_msdu[i];
1833 }
1834
1835 if (!(tidstats->filled & BIT(NL80211_TID_STATS_TX_MSDU))) {
1836 tidstats->filled |= BIT(NL80211_TID_STATS_TX_MSDU);
1837 tidstats->tx_msdu = sta->tx_msdu[i];
1838 }
1839
1840 if (!(tidstats->filled &
1841 BIT(NL80211_TID_STATS_TX_MSDU_RETRIES)) &&
1842 local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS) {
1843 tidstats->filled |=
1844 BIT(NL80211_TID_STATS_TX_MSDU_RETRIES);
1845 tidstats->tx_msdu_retries = sta->tx_msdu_retries[i];
1846 }
1847
1848 if (!(tidstats->filled &
1849 BIT(NL80211_TID_STATS_TX_MSDU_FAILED)) &&
1850 local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS) {
1851 tidstats->filled |=
1852 BIT(NL80211_TID_STATS_TX_MSDU_FAILED);
1853 tidstats->tx_msdu_failed = sta->tx_msdu_failed[i];
1854 }
1855 }
1856
Johannes Bergb7ffbd72014-06-04 17:31:56 +02001857 if (ieee80211_vif_is_mesh(&sdata->vif)) {
1858#ifdef CONFIG_MAC80211_MESH
Johannes Berg319090b2014-11-17 14:08:11 +01001859 sinfo->filled |= BIT(NL80211_STA_INFO_LLID) |
1860 BIT(NL80211_STA_INFO_PLID) |
1861 BIT(NL80211_STA_INFO_PLINK_STATE) |
1862 BIT(NL80211_STA_INFO_LOCAL_PM) |
1863 BIT(NL80211_STA_INFO_PEER_PM) |
1864 BIT(NL80211_STA_INFO_NONPEER_PM);
Johannes Bergb7ffbd72014-06-04 17:31:56 +02001865
1866 sinfo->llid = sta->llid;
1867 sinfo->plid = sta->plid;
1868 sinfo->plink_state = sta->plink_state;
1869 if (test_sta_flag(sta, WLAN_STA_TOFFSET_KNOWN)) {
Johannes Berg319090b2014-11-17 14:08:11 +01001870 sinfo->filled |= BIT(NL80211_STA_INFO_T_OFFSET);
Johannes Bergb7ffbd72014-06-04 17:31:56 +02001871 sinfo->t_offset = sta->t_offset;
1872 }
1873 sinfo->local_pm = sta->local_pm;
1874 sinfo->peer_pm = sta->peer_pm;
1875 sinfo->nonpeer_pm = sta->nonpeer_pm;
1876#endif
1877 }
1878
1879 sinfo->bss_param.flags = 0;
1880 if (sdata->vif.bss_conf.use_cts_prot)
1881 sinfo->bss_param.flags |= BSS_PARAM_FLAGS_CTS_PROT;
1882 if (sdata->vif.bss_conf.use_short_preamble)
1883 sinfo->bss_param.flags |= BSS_PARAM_FLAGS_SHORT_PREAMBLE;
1884 if (sdata->vif.bss_conf.use_short_slot)
1885 sinfo->bss_param.flags |= BSS_PARAM_FLAGS_SHORT_SLOT_TIME;
Emmanuel Grumbach785e21a2014-09-03 15:25:04 +03001886 sinfo->bss_param.dtim_period = sdata->vif.bss_conf.dtim_period;
Johannes Bergb7ffbd72014-06-04 17:31:56 +02001887 sinfo->bss_param.beacon_interval = sdata->vif.bss_conf.beacon_int;
1888
1889 sinfo->sta_flags.set = 0;
1890 sinfo->sta_flags.mask = BIT(NL80211_STA_FLAG_AUTHORIZED) |
1891 BIT(NL80211_STA_FLAG_SHORT_PREAMBLE) |
1892 BIT(NL80211_STA_FLAG_WME) |
1893 BIT(NL80211_STA_FLAG_MFP) |
1894 BIT(NL80211_STA_FLAG_AUTHENTICATED) |
1895 BIT(NL80211_STA_FLAG_ASSOCIATED) |
1896 BIT(NL80211_STA_FLAG_TDLS_PEER);
1897 if (test_sta_flag(sta, WLAN_STA_AUTHORIZED))
1898 sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_AUTHORIZED);
1899 if (test_sta_flag(sta, WLAN_STA_SHORT_PREAMBLE))
1900 sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_SHORT_PREAMBLE);
Johannes Berga74a8c82014-07-22 14:50:47 +02001901 if (sta->sta.wme)
Johannes Bergb7ffbd72014-06-04 17:31:56 +02001902 sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_WME);
1903 if (test_sta_flag(sta, WLAN_STA_MFP))
1904 sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_MFP);
1905 if (test_sta_flag(sta, WLAN_STA_AUTH))
1906 sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_AUTHENTICATED);
1907 if (test_sta_flag(sta, WLAN_STA_ASSOC))
1908 sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_ASSOCIATED);
1909 if (test_sta_flag(sta, WLAN_STA_TDLS_PEER))
1910 sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_TDLS_PEER);
1911
1912 /* check if the driver has a SW RC implementation */
1913 if (ref && ref->ops->get_expected_throughput)
1914 thr = ref->ops->get_expected_throughput(sta->rate_ctrl_priv);
1915 else
1916 thr = drv_get_expected_throughput(local, &sta->sta);
1917
1918 if (thr != 0) {
Johannes Berg319090b2014-11-17 14:08:11 +01001919 sinfo->filled |= BIT(NL80211_STA_INFO_EXPECTED_THROUGHPUT);
Johannes Bergb7ffbd72014-06-04 17:31:56 +02001920 sinfo->expected_throughput = thr;
1921 }
1922}