blob: 64b53b943d98e42ef33c25b3acf54c8f1347f786 [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 sta_info_recalc_tim(sta);
120 }
121
122 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
123 local->total_ps_buffered -= skb_queue_len(&sta->ps_tx_buf[ac]);
Felix Fietkau1f98ab72012-11-10 03:44:14 +0100124 ieee80211_purge_tx_queue(&local->hw, &sta->ps_tx_buf[ac]);
125 ieee80211_purge_tx_queue(&local->hw, &sta->tx_filtered[ac]);
Eliad Pellerb22cfcf2012-09-09 14:43:51 +0300126 }
127
Thomas Pedersen45b50282013-02-06 10:17:21 -0800128 if (ieee80211_vif_is_mesh(&sdata->vif))
129 mesh_sta_cleanup(sta);
Eliad Pellerb22cfcf2012-09-09 14:43:51 +0300130
Johannes Berg5ac2e352014-05-27 16:32:27 +0200131 cancel_work_sync(&sta->drv_deliver_wk);
Eliad Pellerb22cfcf2012-09-09 14:43:51 +0300132
133 /*
134 * Destroy aggregation state here. It would be nice to wait for the
135 * driver to finish aggregation stop and then clean up, but for now
136 * drivers have to handle aggregation stop being requested, followed
137 * directly by station destruction.
138 */
Johannes Berg5a306f52012-11-14 23:22:21 +0100139 for (i = 0; i < IEEE80211_NUM_TIDS; i++) {
Johannes Berg661eb382013-06-12 22:47:56 +0200140 kfree(sta->ampdu_mlme.tid_start_tx[i]);
Eliad Pellerb22cfcf2012-09-09 14:43:51 +0300141 tid_tx = rcu_dereference_raw(sta->ampdu_mlme.tid_tx[i]);
142 if (!tid_tx)
143 continue;
Felix Fietkau1f98ab72012-11-10 03:44:14 +0100144 ieee80211_purge_tx_queue(&local->hw, &tid_tx->pending);
Eliad Pellerb22cfcf2012-09-09 14:43:51 +0300145 kfree(tid_tx);
146 }
Johannes Berg5108ca82014-02-17 20:49:03 +0100147}
Eliad Pellerb22cfcf2012-09-09 14:43:51 +0300148
Johannes Berg5108ca82014-02-17 20:49:03 +0100149static void cleanup_single_sta(struct sta_info *sta)
150{
151 struct ieee80211_sub_if_data *sdata = sta->sdata;
152 struct ieee80211_local *local = sdata->local;
153
154 __cleanup_single_sta(sta);
Eliad Pellerb22cfcf2012-09-09 14:43:51 +0300155 sta_info_free(local, sta);
156}
157
Johannes Bergd0709a62008-02-25 16:27:46 +0100158/* protected by RCU */
Johannes Bergabe60632009-11-25 17:46:18 +0100159struct sta_info *sta_info_get(struct ieee80211_sub_if_data *sdata,
160 const u8 *addr)
Johannes Berg43ba7e92008-02-21 14:09:30 +0100161{
Johannes Bergabe60632009-11-25 17:46:18 +0100162 struct ieee80211_local *local = sdata->local;
Johannes Berg43ba7e92008-02-21 14:09:30 +0100163 struct sta_info *sta;
164
Johannes Berg03791852010-04-06 11:18:42 +0200165 sta = rcu_dereference_check(local->sta_hash[STA_HASH(addr)],
Johannes Berg03791852010-04-06 11:18:42 +0200166 lockdep_is_held(&local->sta_mtx));
Johannes Berg43ba7e92008-02-21 14:09:30 +0100167 while (sta) {
Johannes Bergabe60632009-11-25 17:46:18 +0100168 if (sta->sdata == sdata &&
Joe Perchesb203ca32012-05-08 18:56:52 +0000169 ether_addr_equal(sta->sta.addr, addr))
Johannes Berg43ba7e92008-02-21 14:09:30 +0100170 break;
Johannes Berg03791852010-04-06 11:18:42 +0200171 sta = rcu_dereference_check(sta->hnext,
Johannes Berg03791852010-04-06 11:18:42 +0200172 lockdep_is_held(&local->sta_mtx));
Johannes Berg43ba7e92008-02-21 14:09:30 +0100173 }
174 return sta;
175}
176
Felix Fietkau0e5ded52010-01-08 18:10:58 +0100177/*
178 * Get sta info either from the specified interface
179 * or from one of its vlans
180 */
181struct sta_info *sta_info_get_bss(struct ieee80211_sub_if_data *sdata,
182 const u8 *addr)
183{
184 struct ieee80211_local *local = sdata->local;
185 struct sta_info *sta;
186
Johannes Berg03791852010-04-06 11:18:42 +0200187 sta = rcu_dereference_check(local->sta_hash[STA_HASH(addr)],
Johannes Berg03791852010-04-06 11:18:42 +0200188 lockdep_is_held(&local->sta_mtx));
Felix Fietkau0e5ded52010-01-08 18:10:58 +0100189 while (sta) {
190 if ((sta->sdata == sdata ||
Johannes Berga2c1e3d2010-09-14 21:34:14 +0200191 (sta->sdata->bss && sta->sdata->bss == sdata->bss)) &&
Joe Perchesb203ca32012-05-08 18:56:52 +0000192 ether_addr_equal(sta->sta.addr, addr))
Felix Fietkau0e5ded52010-01-08 18:10:58 +0100193 break;
Johannes Berg03791852010-04-06 11:18:42 +0200194 sta = rcu_dereference_check(sta->hnext,
Johannes Berg03791852010-04-06 11:18:42 +0200195 lockdep_is_held(&local->sta_mtx));
Felix Fietkau0e5ded52010-01-08 18:10:58 +0100196 }
197 return sta;
198}
199
Johannes Berg3b53fde82009-11-16 12:00:37 +0100200struct sta_info *sta_info_get_by_idx(struct ieee80211_sub_if_data *sdata,
201 int idx)
Luis Carlos Coboee385852008-02-23 15:17:11 +0100202{
Johannes Berg3b53fde82009-11-16 12:00:37 +0100203 struct ieee80211_local *local = sdata->local;
Luis Carlos Coboee385852008-02-23 15:17:11 +0100204 struct sta_info *sta;
205 int i = 0;
206
Johannes Bergd0709a62008-02-25 16:27:46 +0100207 list_for_each_entry_rcu(sta, &local->sta_list, list) {
Johannes Berg3b53fde82009-11-16 12:00:37 +0100208 if (sdata != sta->sdata)
Luis Carlos Cobo2a8ca292008-02-29 17:51:25 -0800209 continue;
Luis Carlos Coboee385852008-02-23 15:17:11 +0100210 if (i < idx) {
211 ++i;
212 continue;
Luis Carlos Coboee385852008-02-23 15:17:11 +0100213 }
Luis Carlos Cobo2a8ca292008-02-29 17:51:25 -0800214 return sta;
Luis Carlos Coboee385852008-02-23 15:17:11 +0100215 }
Luis Carlos Coboee385852008-02-23 15:17:11 +0100216
217 return NULL;
218}
Jiri Bencf0706e82007-05-05 11:45:53 -0700219
Johannes Berg93e5deb2008-04-01 15:21:00 +0200220/**
Johannes Bergd9a7ddb2011-12-14 12:35:30 +0100221 * sta_info_free - free STA
Johannes Berg93e5deb2008-04-01 15:21:00 +0200222 *
Randy Dunlap6ef307b2008-07-03 13:52:18 -0700223 * @local: pointer to the global information
Johannes Berg93e5deb2008-04-01 15:21:00 +0200224 * @sta: STA info to free
225 *
226 * This function must undo everything done by sta_info_alloc()
Johannes Bergd9a7ddb2011-12-14 12:35:30 +0100227 * that may happen before sta_info_insert(). It may only be
228 * called when sta_info_insert() has not been attempted (and
229 * if that fails, the station is freed anyway.)
Johannes Berg93e5deb2008-04-01 15:21:00 +0200230 */
Johannes Bergd9a7ddb2011-12-14 12:35:30 +0100231void sta_info_free(struct ieee80211_local *local, struct sta_info *sta)
Johannes Berg93e5deb2008-04-01 15:21:00 +0200232{
Matti Gottliebad38bfc2013-11-18 19:06:45 +0200233 int i;
234
Johannes Berg889cbb92012-01-17 10:33:29 +0100235 if (sta->rate_ctrl)
Johannes Bergaf65cd962009-11-17 18:18:36 +0100236 rate_control_free_sta(sta);
Johannes Berg93e5deb2008-04-01 15:21:00 +0200237
Matti Gottliebad38bfc2013-11-18 19:06:45 +0200238 if (sta->tx_lat) {
239 for (i = 0; i < IEEE80211_NUM_TIDS; i++)
240 kfree(sta->tx_lat[i].bins);
241 kfree(sta->tx_lat);
242 }
243
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200244 sta_dbg(sta->sdata, "Destroyed STA %pM\n", sta->sta.addr);
Johannes Berg93e5deb2008-04-01 15:21:00 +0200245
Felix Fietkau53d04522014-05-27 22:33:57 +0200246 kfree(rcu_dereference_raw(sta->sta.rates));
Johannes Berg93e5deb2008-04-01 15:21:00 +0200247 kfree(sta);
248}
249
Johannes Berg4d339602011-12-15 11:24:20 +0100250/* Caller must hold local->sta_mtx */
Johannes Bergd0709a62008-02-25 16:27:46 +0100251static void sta_info_hash_add(struct ieee80211_local *local,
252 struct sta_info *sta)
Jiri Bencf0706e82007-05-05 11:45:53 -0700253{
Johannes Berg4d339602011-12-15 11:24:20 +0100254 lockdep_assert_held(&local->sta_mtx);
Johannes Berg17741cd2008-09-11 00:02:02 +0200255 sta->hnext = local->sta_hash[STA_HASH(sta->sta.addr)];
Eric Dumazetcf778b02012-01-12 04:41:32 +0000256 rcu_assign_pointer(local->sta_hash[STA_HASH(sta->sta.addr)], sta);
Jiri Bencf0706e82007-05-05 11:45:53 -0700257}
Jiri Bencf0706e82007-05-05 11:45:53 -0700258
Johannes Berg5ac2e352014-05-27 16:32:27 +0200259static void sta_deliver_ps_frames(struct work_struct *wk)
Johannes Bergaf818582009-11-06 11:35:50 +0100260{
261 struct sta_info *sta;
262
Johannes Berg5ac2e352014-05-27 16:32:27 +0200263 sta = container_of(wk, struct sta_info, drv_deliver_wk);
Johannes Bergaf818582009-11-06 11:35:50 +0100264
265 if (sta->dead)
266 return;
267
Johannes Berg5ac2e352014-05-27 16:32:27 +0200268 local_bh_disable();
269 if (!test_sta_flag(sta, WLAN_STA_PS_STA))
Johannes Bergaf818582009-11-06 11:35:50 +0100270 ieee80211_sta_ps_deliver_wakeup(sta);
Johannes Berg5ac2e352014-05-27 16:32:27 +0200271 else if (test_and_clear_sta_flag(sta, WLAN_STA_PSPOLL))
Johannes Bergaf818582009-11-06 11:35:50 +0100272 ieee80211_sta_ps_deliver_poll_response(sta);
Johannes Berg5ac2e352014-05-27 16:32:27 +0200273 else if (test_and_clear_sta_flag(sta, WLAN_STA_UAPSD))
Johannes Berg47086fc2011-09-29 16:04:33 +0200274 ieee80211_sta_ps_deliver_uapsd(sta);
Johannes Berg5ac2e352014-05-27 16:32:27 +0200275 local_bh_enable();
Johannes Bergaf818582009-11-06 11:35:50 +0100276}
277
Johannes Bergaf65cd962009-11-17 18:18:36 +0100278static int sta_prepare_rate_control(struct ieee80211_local *local,
279 struct sta_info *sta, gfp_t gfp)
280{
281 if (local->hw.flags & IEEE80211_HW_HAS_RATE_CONTROL)
282 return 0;
283
Johannes Berg889cbb92012-01-17 10:33:29 +0100284 sta->rate_ctrl = local->rate_ctrl;
Johannes Bergaf65cd962009-11-17 18:18:36 +0100285 sta->rate_ctrl_priv = rate_control_alloc_sta(sta->rate_ctrl,
286 &sta->sta, gfp);
Johannes Berg889cbb92012-01-17 10:33:29 +0100287 if (!sta->rate_ctrl_priv)
Johannes Bergaf65cd962009-11-17 18:18:36 +0100288 return -ENOMEM;
Johannes Bergaf65cd962009-11-17 18:18:36 +0100289
290 return 0;
291}
292
Johannes Berg73651ee2008-02-25 16:27:47 +0100293struct sta_info *sta_info_alloc(struct ieee80211_sub_if_data *sdata,
Johannes Berg56544162011-12-14 13:28:46 +0100294 const u8 *addr, gfp_t gfp)
Jiri Bencf0706e82007-05-05 11:45:53 -0700295{
Johannes Bergd0709a62008-02-25 16:27:46 +0100296 struct ieee80211_local *local = sdata->local;
Jiri Bencf0706e82007-05-05 11:45:53 -0700297 struct sta_info *sta;
Mohammed Shafi Shajakhanebe27c92011-04-08 21:24:24 +0530298 struct timespec uptime;
Matti Gottliebad38bfc2013-11-18 19:06:45 +0200299 struct ieee80211_tx_latency_bin_ranges *tx_latency;
Ron Rindjunsky16c5f152007-12-25 17:00:34 +0200300 int i;
Jiri Bencf0706e82007-05-05 11:45:53 -0700301
Johannes Berg17741cd2008-09-11 00:02:02 +0200302 sta = kzalloc(sizeof(*sta) + local->hw.sta_data_size, gfp);
Jiri Bencf0706e82007-05-05 11:45:53 -0700303 if (!sta)
Johannes Berg73651ee2008-02-25 16:27:47 +0100304 return NULL;
Jiri Bencf0706e82007-05-05 11:45:53 -0700305
Johannes Bergef04a292014-01-06 15:56:59 +0100306 rcu_read_lock();
307 tx_latency = rcu_dereference(local->tx_latency);
308 /* init stations Tx latency statistics && TID bins */
309 if (tx_latency) {
310 sta->tx_lat = kzalloc(IEEE80211_NUM_TIDS *
311 sizeof(struct ieee80211_tx_latency_stat),
312 GFP_ATOMIC);
313 if (!sta->tx_lat) {
314 rcu_read_unlock();
315 goto free;
316 }
317
318 if (tx_latency->n_ranges) {
319 for (i = 0; i < IEEE80211_NUM_TIDS; i++) {
320 /* size of bins is size of the ranges +1 */
321 sta->tx_lat[i].bin_count =
322 tx_latency->n_ranges + 1;
323 sta->tx_lat[i].bins =
324 kcalloc(sta->tx_lat[i].bin_count,
325 sizeof(u32), GFP_ATOMIC);
326 if (!sta->tx_lat[i].bins) {
327 rcu_read_unlock();
328 goto free;
329 }
330 }
331 }
332 }
333 rcu_read_unlock();
334
Johannes Berg07346f812008-05-03 01:02:02 +0200335 spin_lock_init(&sta->lock);
Emmanuel Grumbach1d147bf2014-02-20 09:22:11 +0200336 spin_lock_init(&sta->ps_lock);
Johannes Berg5ac2e352014-05-27 16:32:27 +0200337 INIT_WORK(&sta->drv_deliver_wk, sta_deliver_ps_frames);
Johannes Berg67c282c2010-06-10 10:21:43 +0200338 INIT_WORK(&sta->ampdu_mlme.work, ieee80211_ba_session_work);
Johannes Berga93e3642010-06-10 10:21:46 +0200339 mutex_init(&sta->ampdu_mlme.mtx);
Thomas Pedersen87f59c72013-03-01 22:02:52 -0800340#ifdef CONFIG_MAC80211_MESH
341 if (ieee80211_vif_is_mesh(&sdata->vif) &&
342 !sdata->u.mesh.user_mpm)
343 init_timer(&sta->plink_timer);
Thomas Pedersen6c7c4cb2013-06-20 23:50:59 -0700344 sta->nonpeer_pm = NL80211_MESH_POWER_ACTIVE;
Thomas Pedersen87f59c72013-03-01 22:02:52 -0800345#endif
Johannes Berg07346f812008-05-03 01:02:02 +0200346
Johannes Berg17741cd2008-09-11 00:02:02 +0200347 memcpy(sta->sta.addr, addr, ETH_ALEN);
Johannes Bergd0709a62008-02-25 16:27:46 +0100348 sta->local = local;
349 sta->sdata = sdata;
Felix Fietkau8bc8aec2011-03-21 20:01:00 +0100350 sta->last_rx = jiffies;
Jiri Bencf0706e82007-05-05 11:45:53 -0700351
Johannes Berg71ec3752012-01-20 13:55:20 +0100352 sta->sta_state = IEEE80211_STA_NONE;
353
Liad Kaufmanb6da9112014-11-19 13:47:38 +0200354 /* Mark TID as unreserved */
355 sta->reserved_tid = IEEE80211_TID_UNRESERVED;
356
Thomas Gleixner18171522014-06-11 23:59:14 +0000357 ktime_get_ts(&uptime);
Mohammed Shafi Shajakhanebe27c92011-04-08 21:24:24 +0530358 sta->last_connected = uptime.tv_sec;
Bruno Randolf541a45a2010-12-02 19:12:43 +0900359 ewma_init(&sta->avg_signal, 1024, 8);
Felix Fietkauef0621e2013-04-22 16:29:31 +0200360 for (i = 0; i < ARRAY_SIZE(sta->chain_signal_avg); i++)
361 ewma_init(&sta->chain_signal_avg[i], 1024, 8);
Bruno Randolf541a45a2010-12-02 19:12:43 +0900362
Johannes Bergef04a292014-01-06 15:56:59 +0100363 if (sta_prepare_rate_control(local, sta, gfp))
364 goto free;
Jiri Bencf0706e82007-05-05 11:45:53 -0700365
Johannes Berg5a306f52012-11-14 23:22:21 +0100366 for (i = 0; i < IEEE80211_NUM_TIDS; i++) {
Johannes Berga622ab72010-06-10 10:21:39 +0200367 /*
368 * timer_to_tid must be initialized with identity mapping
369 * to enable session_timer's data differentiation. See
370 * sta_rx_agg_session_timer_expired for usage.
371 */
Ron Rindjunsky16c5f152007-12-25 17:00:34 +0200372 sta->timer_to_tid[i] = i;
Ron Rindjunsky16c5f152007-12-25 17:00:34 +0200373 }
Johannes Berg948d8872011-09-29 16:04:29 +0200374 for (i = 0; i < IEEE80211_NUM_ACS; i++) {
375 skb_queue_head_init(&sta->ps_tx_buf[i]);
376 skb_queue_head_init(&sta->tx_filtered[i]);
377 }
Johannes Berg73651ee2008-02-25 16:27:47 +0100378
Johannes Berg5a306f52012-11-14 23:22:21 +0100379 for (i = 0; i < IEEE80211_NUM_TIDS; i++)
Alexey Dobriyan4be929b2010-05-24 14:33:03 -0700380 sta->last_seq_ctrl[i] = cpu_to_le16(USHRT_MAX);
Senthil Balasubramaniancccaec92009-05-14 18:42:08 +0530381
Johannes Bergaf0ed692013-02-12 14:21:00 +0100382 sta->sta.smps_mode = IEEE80211_SMPS_OFF;
Emmanuel Grumbach687da132013-10-01 16:45:43 +0300383 if (sdata->vif.type == NL80211_IFTYPE_AP ||
384 sdata->vif.type == NL80211_IFTYPE_AP_VLAN) {
385 struct ieee80211_supported_band *sband =
386 local->hw.wiphy->bands[ieee80211_get_sdata_band(sdata)];
387 u8 smps = (sband->ht_cap.cap & IEEE80211_HT_CAP_SM_PS) >>
388 IEEE80211_HT_CAP_SM_PS_SHIFT;
389 /*
390 * Assume that hostapd advertises our caps in the beacon and
391 * this is the known_smps_mode for a station that just assciated
392 */
393 switch (smps) {
394 case WLAN_HT_SMPS_CONTROL_DISABLED:
395 sta->known_smps_mode = IEEE80211_SMPS_OFF;
396 break;
397 case WLAN_HT_SMPS_CONTROL_STATIC:
398 sta->known_smps_mode = IEEE80211_SMPS_STATIC;
399 break;
400 case WLAN_HT_SMPS_CONTROL_DYNAMIC:
401 sta->known_smps_mode = IEEE80211_SMPS_DYNAMIC;
402 break;
403 default:
404 WARN_ON(1);
405 }
406 }
Johannes Bergaf0ed692013-02-12 14:21:00 +0100407
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200408 sta_dbg(sdata, "Allocated STA %pM\n", sta->sta.addr);
Johannes Berg73651ee2008-02-25 16:27:47 +0100409 return sta;
Johannes Bergef04a292014-01-06 15:56:59 +0100410
411free:
412 if (sta->tx_lat) {
413 for (i = 0; i < IEEE80211_NUM_TIDS; i++)
414 kfree(sta->tx_lat[i].bins);
415 kfree(sta->tx_lat);
416 }
417 kfree(sta);
418 return NULL;
Johannes Berg73651ee2008-02-25 16:27:47 +0100419}
420
Guy Eilam8c71df72011-08-17 15:18:14 +0300421static int sta_info_insert_check(struct sta_info *sta)
Johannes Berg34e89502010-02-03 13:59:58 +0100422{
Johannes Berg34e89502010-02-03 13:59:58 +0100423 struct ieee80211_sub_if_data *sdata = sta->sdata;
Johannes Berg34e89502010-02-03 13:59:58 +0100424
Johannes Berg03e44972008-02-27 09:56:40 +0100425 /*
426 * Can't be a WARN_ON because it can be triggered through a race:
427 * something inserts a STA (on one CPU) without holding the RTNL
428 * and another CPU turns off the net device.
429 */
Guy Eilam8c71df72011-08-17 15:18:14 +0300430 if (unlikely(!ieee80211_sdata_running(sdata)))
431 return -ENETDOWN;
Johannes Berg03e44972008-02-27 09:56:40 +0100432
Joe Perchesb203ca32012-05-08 18:56:52 +0000433 if (WARN_ON(ether_addr_equal(sta->sta.addr, sdata->vif.addr) ||
Guy Eilam8c71df72011-08-17 15:18:14 +0300434 is_multicast_ether_addr(sta->sta.addr)))
435 return -EINVAL;
436
437 return 0;
438}
439
Johannes Bergf09603a2012-01-20 13:55:21 +0100440static int sta_info_insert_drv_state(struct ieee80211_local *local,
441 struct ieee80211_sub_if_data *sdata,
442 struct sta_info *sta)
443{
444 enum ieee80211_sta_state state;
445 int err = 0;
446
447 for (state = IEEE80211_STA_NOTEXIST; state < sta->sta_state; state++) {
448 err = drv_sta_state(local, sdata, sta, state, state + 1);
449 if (err)
450 break;
451 }
452
453 if (!err) {
Johannes Berga4ec45a2012-01-20 13:55:22 +0100454 /*
455 * Drivers using legacy sta_add/sta_remove callbacks only
456 * get uploaded set to true after sta_add is called.
457 */
458 if (!local->ops->sta_add)
459 sta->uploaded = true;
Johannes Bergf09603a2012-01-20 13:55:21 +0100460 return 0;
461 }
462
463 if (sdata->vif.type == NL80211_IFTYPE_ADHOC) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200464 sdata_info(sdata,
465 "failed to move IBSS STA %pM to state %d (%d) - keeping it anyway\n",
466 sta->sta.addr, state + 1, err);
Johannes Bergf09603a2012-01-20 13:55:21 +0100467 err = 0;
468 }
469
470 /* unwind on error */
471 for (; state > IEEE80211_STA_NOTEXIST; state--)
472 WARN_ON(drv_sta_state(local, sdata, sta, state, state - 1));
473
474 return err;
475}
476
Guy Eilam8c71df72011-08-17 15:18:14 +0300477/*
478 * should be called with sta_mtx locked
479 * this function replaces the mutex lock
480 * with a RCU lock
481 */
Johannes Berg4d339602011-12-15 11:24:20 +0100482static int sta_info_insert_finish(struct sta_info *sta) __acquires(RCU)
Guy Eilam8c71df72011-08-17 15:18:14 +0300483{
484 struct ieee80211_local *local = sta->local;
485 struct ieee80211_sub_if_data *sdata = sta->sdata;
Johannes Berg7852e362012-01-20 13:55:24 +0100486 struct station_info sinfo;
Guy Eilam8c71df72011-08-17 15:18:14 +0300487 int err = 0;
488
489 lockdep_assert_held(&local->sta_mtx);
Johannes Berg34e89502010-02-03 13:59:58 +0100490
Johannes Berg7852e362012-01-20 13:55:24 +0100491 /* check if STA exists already */
492 if (sta_info_get_bss(sdata, sta->sta.addr)) {
493 err = -EEXIST;
494 goto out_err;
Johannes Berg43ba7e92008-02-21 14:09:30 +0100495 }
Johannes Berg32bfd352007-12-19 01:31:26 +0100496
Johannes Berg7852e362012-01-20 13:55:24 +0100497 local->num_sta++;
498 local->sta_generation++;
499 smp_mb();
Johannes Berg4d339602011-12-15 11:24:20 +0100500
Johannes Berg5108ca82014-02-17 20:49:03 +0100501 /* simplify things and don't accept BA sessions yet */
502 set_sta_flag(sta, WLAN_STA_BLOCK_BA);
503
Johannes Berg7852e362012-01-20 13:55:24 +0100504 /* make the station visible */
505 sta_info_hash_add(local, sta);
Johannes Berg4d339602011-12-15 11:24:20 +0100506
Arik Nemtsov2bad77482014-10-22 12:32:16 +0300507 list_add_tail_rcu(&sta->list, &local->sta_list);
Johannes Berg83d5cc02012-01-12 09:31:10 +0100508
Johannes Berg5108ca82014-02-17 20:49:03 +0100509 /* notify driver */
510 err = sta_info_insert_drv_state(local, sdata, sta);
511 if (err)
512 goto out_remove;
513
Johannes Berg7852e362012-01-20 13:55:24 +0100514 set_sta_flag(sta, WLAN_STA_INSERTED);
Johannes Berg5108ca82014-02-17 20:49:03 +0100515 /* accept BA sessions now */
516 clear_sta_flag(sta, WLAN_STA_BLOCK_BA);
Johannes Berg4d339602011-12-15 11:24:20 +0100517
Eliad Peller21f659b2013-11-11 20:14:01 +0200518 ieee80211_recalc_min_chandef(sdata);
Johannes Berg7852e362012-01-20 13:55:24 +0100519 ieee80211_sta_debugfs_add(sta);
520 rate_control_add_sta_debugfs(sta);
Johannes Berg4d339602011-12-15 11:24:20 +0100521
Johannes Berg7852e362012-01-20 13:55:24 +0100522 memset(&sinfo, 0, sizeof(sinfo));
523 sinfo.filled = 0;
524 sinfo.generation = local->sta_generation;
525 cfg80211_new_sta(sdata->dev, sta->sta.addr, &sinfo, GFP_KERNEL);
Johannes Bergd0709a62008-02-25 16:27:46 +0100526
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200527 sta_dbg(sdata, "Inserted STA %pM\n", sta->sta.addr);
Jiri Bencf0706e82007-05-05 11:45:53 -0700528
Johannes Berg34e89502010-02-03 13:59:58 +0100529 /* move reference to rcu-protected */
530 rcu_read_lock();
531 mutex_unlock(&local->sta_mtx);
Jiri Bence9f207f2007-05-05 11:46:38 -0700532
Johannes Berg73651ee2008-02-25 16:27:47 +0100533 if (ieee80211_vif_is_mesh(&sdata->vif))
534 mesh_accept_plinks_update(sdata);
535
536 return 0;
Johannes Berg5108ca82014-02-17 20:49:03 +0100537 out_remove:
538 sta_info_hash_del(local, sta);
539 list_del_rcu(&sta->list);
540 local->num_sta--;
541 synchronize_net();
542 __cleanup_single_sta(sta);
Johannes Berg4d339602011-12-15 11:24:20 +0100543 out_err:
544 mutex_unlock(&local->sta_mtx);
545 rcu_read_lock();
546 return err;
Guy Eilam8c71df72011-08-17 15:18:14 +0300547}
548
549int sta_info_insert_rcu(struct sta_info *sta) __acquires(RCU)
550{
551 struct ieee80211_local *local = sta->local;
Zhao, Gang308f7fc2014-04-21 12:53:00 +0800552 int err;
Guy Eilam8c71df72011-08-17 15:18:14 +0300553
Johannes Berg4d339602011-12-15 11:24:20 +0100554 might_sleep();
555
Guy Eilam8c71df72011-08-17 15:18:14 +0300556 err = sta_info_insert_check(sta);
557 if (err) {
Jiri Bencf0706e82007-05-05 11:45:53 -0700558 rcu_read_lock();
559 goto out_free;
560 }
561
Johannes Berg004c8722008-02-20 11:21:35 +0100562 mutex_lock(&local->sta_mtx);
563
Johannes Berg4d339602011-12-15 11:24:20 +0100564 err = sta_info_insert_finish(sta);
Guy Eilam8c71df72011-08-17 15:18:14 +0300565 if (err)
Johannes Berg004c8722008-02-20 11:21:35 +0100566 goto out_free;
Johannes Bergd0709a62008-02-25 16:27:46 +0100567
Johannes Berg004c8722008-02-20 11:21:35 +0100568 return 0;
Johannes Berg93e5deb2008-04-01 15:21:00 +0200569 out_free:
Johannes Bergd9a7ddb2011-12-14 12:35:30 +0100570 sta_info_free(local, sta);
Johannes Berg93e5deb2008-04-01 15:21:00 +0200571 return err;
Jiri Bencf0706e82007-05-05 11:45:53 -0700572}
573
Johannes Berg34e89502010-02-03 13:59:58 +0100574int sta_info_insert(struct sta_info *sta)
575{
576 int err = sta_info_insert_rcu(sta);
577
578 rcu_read_unlock();
579
580 return err;
581}
582
Marco Porschd012a602012-10-10 12:39:50 -0700583static inline void __bss_tim_set(u8 *tim, u16 id)
Johannes Berg004c8722008-02-20 11:21:35 +0100584{
585 /*
586 * This format has been mandated by the IEEE specifications,
587 * so this line may not be changed to use the __set_bit() format.
588 */
Marco Porschd012a602012-10-10 12:39:50 -0700589 tim[id / 8] |= (1 << (id % 8));
Johannes Berg004c8722008-02-20 11:21:35 +0100590}
591
Marco Porschd012a602012-10-10 12:39:50 -0700592static inline void __bss_tim_clear(u8 *tim, u16 id)
Johannes Berg004c8722008-02-20 11:21:35 +0100593{
594 /*
595 * This format has been mandated by the IEEE specifications,
596 * so this line may not be changed to use the __clear_bit() format.
597 */
Marco Porschd012a602012-10-10 12:39:50 -0700598 tim[id / 8] &= ~(1 << (id % 8));
Johannes Berg004c8722008-02-20 11:21:35 +0100599}
600
Ilan Peer3d5839b2013-03-05 15:27:20 +0200601static inline bool __bss_tim_get(u8 *tim, u16 id)
602{
603 /*
604 * This format has been mandated by the IEEE specifications,
605 * so this line may not be changed to use the test_bit() format.
606 */
607 return tim[id / 8] & (1 << (id % 8));
608}
609
Johannes Berg948d8872011-09-29 16:04:29 +0200610static unsigned long ieee80211_tids_for_ac(int ac)
Johannes Berg004c8722008-02-20 11:21:35 +0100611{
Johannes Berg948d8872011-09-29 16:04:29 +0200612 /* If we ever support TIDs > 7, this obviously needs to be adjusted */
613 switch (ac) {
614 case IEEE80211_AC_VO:
615 return BIT(6) | BIT(7);
616 case IEEE80211_AC_VI:
617 return BIT(4) | BIT(5);
618 case IEEE80211_AC_BE:
619 return BIT(0) | BIT(3);
620 case IEEE80211_AC_BK:
621 return BIT(1) | BIT(2);
622 default:
623 WARN_ON(1);
624 return 0;
Johannes Bergd0709a62008-02-25 16:27:46 +0100625 }
Johannes Berg004c8722008-02-20 11:21:35 +0100626}
627
Johannes Bergc868cb352011-09-29 16:04:27 +0200628void sta_info_recalc_tim(struct sta_info *sta)
Johannes Berg004c8722008-02-20 11:21:35 +0100629{
Johannes Bergc868cb352011-09-29 16:04:27 +0200630 struct ieee80211_local *local = sta->local;
Marco Porschd012a602012-10-10 12:39:50 -0700631 struct ps_data *ps;
Johannes Berg948d8872011-09-29 16:04:29 +0200632 bool indicate_tim = false;
633 u8 ignore_for_tim = sta->sta.uapsd_queues;
634 int ac;
Marco Porschd012a602012-10-10 12:39:50 -0700635 u16 id;
Johannes Berg004c8722008-02-20 11:21:35 +0100636
Marco Porschd012a602012-10-10 12:39:50 -0700637 if (sta->sdata->vif.type == NL80211_IFTYPE_AP ||
638 sta->sdata->vif.type == NL80211_IFTYPE_AP_VLAN) {
639 if (WARN_ON_ONCE(!sta->sdata->bss))
640 return;
641
642 ps = &sta->sdata->bss->ps;
643 id = sta->sta.aid;
Marco Porsch3f52b7e2013-01-30 18:14:08 +0100644#ifdef CONFIG_MAC80211_MESH
645 } else if (ieee80211_vif_is_mesh(&sta->sdata->vif)) {
646 ps = &sta->sdata->u.mesh.ps;
Thomas Pedersen204d1302013-11-05 11:17:05 -0800647 /* TIM map only for 1 <= PLID <= IEEE80211_MAX_AID */
Chun-Yeow Yeoh6f101ef2013-11-13 15:43:03 +0800648 id = sta->plid % (IEEE80211_MAX_AID + 1);
Marco Porsch3f52b7e2013-01-30 18:14:08 +0100649#endif
Marco Porschd012a602012-10-10 12:39:50 -0700650 } else {
Johannes Bergc868cb352011-09-29 16:04:27 +0200651 return;
Marco Porschd012a602012-10-10 12:39:50 -0700652 }
Johannes Berg3e122be2008-07-09 14:40:34 +0200653
Johannes Bergc868cb352011-09-29 16:04:27 +0200654 /* No need to do anything if the driver does all */
655 if (local->hw.flags & IEEE80211_HW_AP_LINK_PS)
656 return;
Johannes Berg004c8722008-02-20 11:21:35 +0100657
Johannes Bergc868cb352011-09-29 16:04:27 +0200658 if (sta->dead)
659 goto done;
Johannes Berg3e122be2008-07-09 14:40:34 +0200660
Johannes Berg948d8872011-09-29 16:04:29 +0200661 /*
662 * If all ACs are delivery-enabled then we should build
663 * the TIM bit for all ACs anyway; if only some are then
664 * we ignore those and build the TIM bit using only the
665 * non-enabled ones.
666 */
667 if (ignore_for_tim == BIT(IEEE80211_NUM_ACS) - 1)
668 ignore_for_tim = 0;
Johannes Berg3e122be2008-07-09 14:40:34 +0200669
Johannes Berg948d8872011-09-29 16:04:29 +0200670 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
671 unsigned long tids;
672
673 if (ignore_for_tim & BIT(ac))
674 continue;
675
676 indicate_tim |= !skb_queue_empty(&sta->tx_filtered[ac]) ||
677 !skb_queue_empty(&sta->ps_tx_buf[ac]);
678 if (indicate_tim)
679 break;
680
681 tids = ieee80211_tids_for_ac(ac);
682
683 indicate_tim |=
684 sta->driver_buffered_tids & tids;
Johannes Bergd0709a62008-02-25 16:27:46 +0100685 }
Johannes Berg004c8722008-02-20 11:21:35 +0100686
Johannes Bergc868cb352011-09-29 16:04:27 +0200687 done:
Johannes Berg65f704a2013-02-13 17:39:53 +0100688 spin_lock_bh(&local->tim_lock);
Johannes Berg004c8722008-02-20 11:21:35 +0100689
Ilan Peer3d5839b2013-03-05 15:27:20 +0200690 if (indicate_tim == __bss_tim_get(ps->tim, id))
691 goto out_unlock;
692
Johannes Berg948d8872011-09-29 16:04:29 +0200693 if (indicate_tim)
Marco Porschd012a602012-10-10 12:39:50 -0700694 __bss_tim_set(ps->tim, id);
Johannes Bergc868cb352011-09-29 16:04:27 +0200695 else
Marco Porschd012a602012-10-10 12:39:50 -0700696 __bss_tim_clear(ps->tim, id);
Johannes Berg3e122be2008-07-09 14:40:34 +0200697
Johannes Bergc868cb352011-09-29 16:04:27 +0200698 if (local->ops->set_tim) {
699 local->tim_in_locked_section = true;
Johannes Berg948d8872011-09-29 16:04:29 +0200700 drv_set_tim(local, &sta->sta, indicate_tim);
Johannes Bergc868cb352011-09-29 16:04:27 +0200701 local->tim_in_locked_section = false;
Johannes Berg004c8722008-02-20 11:21:35 +0100702 }
Johannes Berg004c8722008-02-20 11:21:35 +0100703
Ilan Peer3d5839b2013-03-05 15:27:20 +0200704out_unlock:
Johannes Berg65f704a2013-02-13 17:39:53 +0100705 spin_unlock_bh(&local->tim_lock);
Johannes Berg004c8722008-02-20 11:21:35 +0100706}
707
Johannes Bergcd0b8d82011-09-06 14:13:06 +0200708static bool sta_info_buffer_expired(struct sta_info *sta, struct sk_buff *skb)
Jiri Bencf0706e82007-05-05 11:45:53 -0700709{
Johannes Berge039fa42008-05-15 12:55:29 +0200710 struct ieee80211_tx_info *info;
Jiri Bencf0706e82007-05-05 11:45:53 -0700711 int timeout;
712
713 if (!skb)
Johannes Bergcd0b8d82011-09-06 14:13:06 +0200714 return false;
Jiri Bencf0706e82007-05-05 11:45:53 -0700715
Johannes Berge039fa42008-05-15 12:55:29 +0200716 info = IEEE80211_SKB_CB(skb);
Jiri Bencf0706e82007-05-05 11:45:53 -0700717
718 /* Timeout: (2 * listen_interval * beacon_int * 1024 / 1000000) sec */
Johannes Berg57c4d7b2009-04-23 16:10:04 +0200719 timeout = (sta->listen_interval *
720 sta->sdata->vif.bss_conf.beacon_int *
721 32 / 15625) * HZ;
Jiri Bencf0706e82007-05-05 11:45:53 -0700722 if (timeout < STA_TX_BUFFER_EXPIRE)
723 timeout = STA_TX_BUFFER_EXPIRE;
Johannes Berge039fa42008-05-15 12:55:29 +0200724 return time_after(jiffies, info->control.jiffies + timeout);
Jiri Bencf0706e82007-05-05 11:45:53 -0700725}
726
727
Johannes Berg948d8872011-09-29 16:04:29 +0200728static bool sta_info_cleanup_expire_buffered_ac(struct ieee80211_local *local,
729 struct sta_info *sta, int ac)
Jiri Bencf0706e82007-05-05 11:45:53 -0700730{
731 unsigned long flags;
732 struct sk_buff *skb;
733
Johannes Berg60750392011-09-29 16:04:28 +0200734 /*
735 * First check for frames that should expire on the filtered
736 * queue. Frames here were rejected by the driver and are on
737 * a separate queue to avoid reordering with normal PS-buffered
738 * frames. They also aren't accounted for right now in the
739 * total_ps_buffered counter.
740 */
Jiri Bencf0706e82007-05-05 11:45:53 -0700741 for (;;) {
Johannes Berg948d8872011-09-29 16:04:29 +0200742 spin_lock_irqsave(&sta->tx_filtered[ac].lock, flags);
743 skb = skb_peek(&sta->tx_filtered[ac]);
Johannes Berg57c4d7b2009-04-23 16:10:04 +0200744 if (sta_info_buffer_expired(sta, skb))
Johannes Berg948d8872011-09-29 16:04:29 +0200745 skb = __skb_dequeue(&sta->tx_filtered[ac]);
Johannes Berg836341a2008-02-20 02:07:21 +0100746 else
Jiri Bencf0706e82007-05-05 11:45:53 -0700747 skb = NULL;
Johannes Berg948d8872011-09-29 16:04:29 +0200748 spin_unlock_irqrestore(&sta->tx_filtered[ac].lock, flags);
Jiri Bencf0706e82007-05-05 11:45:53 -0700749
Johannes Berg60750392011-09-29 16:04:28 +0200750 /*
751 * Frames are queued in order, so if this one
752 * hasn't expired yet we can stop testing. If
753 * we actually reached the end of the queue we
754 * also need to stop, of course.
755 */
756 if (!skb)
757 break;
Felix Fietkaud4fa14c2012-10-10 22:40:23 +0200758 ieee80211_free_txskb(&local->hw, skb);
Johannes Berg60750392011-09-29 16:04:28 +0200759 }
760
761 /*
762 * Now also check the normal PS-buffered queue, this will
763 * only find something if the filtered queue was emptied
764 * since the filtered frames are all before the normal PS
765 * buffered frames.
766 */
Jiri Bencf0706e82007-05-05 11:45:53 -0700767 for (;;) {
Johannes Berg948d8872011-09-29 16:04:29 +0200768 spin_lock_irqsave(&sta->ps_tx_buf[ac].lock, flags);
769 skb = skb_peek(&sta->ps_tx_buf[ac]);
Jiri Bencf0706e82007-05-05 11:45:53 -0700770 if (sta_info_buffer_expired(sta, skb))
Johannes Berg948d8872011-09-29 16:04:29 +0200771 skb = __skb_dequeue(&sta->ps_tx_buf[ac]);
Jiri Bencf0706e82007-05-05 11:45:53 -0700772 else
773 skb = NULL;
Johannes Berg948d8872011-09-29 16:04:29 +0200774 spin_unlock_irqrestore(&sta->ps_tx_buf[ac].lock, flags);
Jiri Bencf0706e82007-05-05 11:45:53 -0700775
Johannes Berg60750392011-09-29 16:04:28 +0200776 /*
777 * frames are queued in order, so if this one
778 * hasn't expired yet (or we reached the end of
779 * the queue) we can stop testing
780 */
Johannes Berg836341a2008-02-20 02:07:21 +0100781 if (!skb)
Jiri Bencf0706e82007-05-05 11:45:53 -0700782 break;
Johannes Berg836341a2008-02-20 02:07:21 +0100783
Johannes Berg836341a2008-02-20 02:07:21 +0100784 local->total_ps_buffered--;
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200785 ps_dbg(sta->sdata, "Buffered frame expired (STA %pM)\n",
786 sta->sta.addr);
Felix Fietkaud4fa14c2012-10-10 22:40:23 +0200787 ieee80211_free_txskb(&local->hw, skb);
Jiri Bencf0706e82007-05-05 11:45:53 -0700788 }
Juuso Oikarinen3393a602010-04-19 10:12:52 +0300789
Johannes Berg60750392011-09-29 16:04:28 +0200790 /*
791 * Finally, recalculate the TIM bit for this station -- it might
792 * now be clear because the station was too slow to retrieve its
793 * frames.
794 */
795 sta_info_recalc_tim(sta);
796
797 /*
798 * Return whether there are any frames still buffered, this is
799 * used to check whether the cleanup timer still needs to run,
800 * if there are no frames we don't need to rearm the timer.
801 */
Johannes Berg948d8872011-09-29 16:04:29 +0200802 return !(skb_queue_empty(&sta->ps_tx_buf[ac]) &&
803 skb_queue_empty(&sta->tx_filtered[ac]));
804}
805
806static bool sta_info_cleanup_expire_buffered(struct ieee80211_local *local,
807 struct sta_info *sta)
808{
809 bool have_buffered = false;
810 int ac;
811
Marco Porsch3f52b7e2013-01-30 18:14:08 +0100812 /* This is only necessary for stations on BSS/MBSS interfaces */
813 if (!sta->sdata->bss &&
814 !ieee80211_vif_is_mesh(&sta->sdata->vif))
Johannes Berg948d8872011-09-29 16:04:29 +0200815 return false;
816
817 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++)
818 have_buffered |=
819 sta_info_cleanup_expire_buffered_ac(local, sta, ac);
820
821 return have_buffered;
Jiri Bencf0706e82007-05-05 11:45:53 -0700822}
823
Johannes Bergd7782072013-12-04 23:12:31 +0100824static int __must_check __sta_info_destroy_part1(struct sta_info *sta)
Johannes Berg34e89502010-02-03 13:59:58 +0100825{
826 struct ieee80211_local *local;
827 struct ieee80211_sub_if_data *sdata;
Johannes Berg6d10e462013-03-06 23:09:11 +0100828 int ret;
Johannes Berg34e89502010-02-03 13:59:58 +0100829
830 might_sleep();
831
832 if (!sta)
833 return -ENOENT;
834
835 local = sta->local;
836 sdata = sta->sdata;
837
Johannes Berg83d5cc02012-01-12 09:31:10 +0100838 lockdep_assert_held(&local->sta_mtx);
839
Johannes Berg098a6072010-04-06 11:18:47 +0200840 /*
841 * Before removing the station from the driver and
842 * rate control, it might still start new aggregation
843 * sessions -- block that to make sure the tear-down
844 * will be sufficient.
845 */
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200846 set_sta_flag(sta, WLAN_STA_BLOCK_BA);
Johannes Bergc82c4a82012-07-18 13:31:31 +0200847 ieee80211_sta_tear_down_BA_sessions(sta, AGG_STOP_DESTROY_STA);
Johannes Berg098a6072010-04-06 11:18:47 +0200848
Johannes Berg34e89502010-02-03 13:59:58 +0100849 ret = sta_info_hash_del(local, sta);
Johannes Bergb01711b2013-12-04 20:25:27 +0100850 if (WARN_ON(ret))
Johannes Berg34e89502010-02-03 13:59:58 +0100851 return ret;
852
Arik Nemtsova7a6bdd2014-11-09 18:50:19 +0200853 /*
854 * for TDLS peers, make sure to return to the base channel before
855 * removal.
856 */
857 if (test_sta_flag(sta, WLAN_STA_TDLS_OFF_CHANNEL)) {
858 drv_tdls_cancel_channel_switch(local, sdata, &sta->sta);
859 clear_sta_flag(sta, WLAN_STA_TDLS_OFF_CHANNEL);
860 }
861
Arik Nemtsov794454c2012-06-03 23:32:32 +0300862 list_del_rcu(&sta->list);
Johannes Berg4d339602011-12-15 11:24:20 +0100863
Johannes Berg6a9d1b92013-12-04 22:39:17 +0100864 drv_sta_pre_rcu_remove(local, sta->sdata, sta);
865
Johannes Berga710c812013-12-04 20:11:06 +0100866 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN &&
867 rcu_access_pointer(sdata->u.vlan.sta) == sta)
868 RCU_INIT_POINTER(sdata->u.vlan.sta, NULL);
869
Johannes Bergd7782072013-12-04 23:12:31 +0100870 return 0;
871}
872
873static void __sta_info_destroy_part2(struct sta_info *sta)
874{
875 struct ieee80211_local *local = sta->local;
876 struct ieee80211_sub_if_data *sdata = sta->sdata;
Johannes Berg6f7a8d22014-11-14 20:32:57 +0100877 struct station_info sinfo = {};
Johannes Bergd7782072013-12-04 23:12:31 +0100878 int ret;
879
880 /*
881 * NOTE: This assumes at least synchronize_net() was done
882 * after _part1 and before _part2!
883 */
884
885 might_sleep();
886 lockdep_assert_held(&local->sta_mtx);
887
Johannes Bergc8782072013-12-04 23:05:45 +0100888 /* now keys can no longer be reached */
Johannes Berg6d10e462013-03-06 23:09:11 +0100889 ieee80211_free_sta_keys(local, sta);
Johannes Berg34e89502010-02-03 13:59:58 +0100890
891 sta->dead = true;
892
Johannes Berg34e89502010-02-03 13:59:58 +0100893 local->num_sta--;
894 local->sta_generation++;
895
Johannes Berg83d5cc02012-01-12 09:31:10 +0100896 while (sta->sta_state > IEEE80211_STA_NONE) {
Johannes Bergf09603a2012-01-20 13:55:21 +0100897 ret = sta_info_move_state(sta, sta->sta_state - 1);
898 if (ret) {
Johannes Berg83d5cc02012-01-12 09:31:10 +0100899 WARN_ON_ONCE(1);
900 break;
901 }
902 }
Johannes Bergd9a7ddb2011-12-14 12:35:30 +0100903
Johannes Bergf09603a2012-01-20 13:55:21 +0100904 if (sta->uploaded) {
Johannes Bergf09603a2012-01-20 13:55:21 +0100905 ret = drv_sta_state(local, sdata, sta, IEEE80211_STA_NONE,
906 IEEE80211_STA_NOTEXIST);
907 WARN_ON_ONCE(ret != 0);
908 }
Johannes Berg34e89502010-02-03 13:59:58 +0100909
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200910 sta_dbg(sdata, "Removed STA %pM\n", sta->sta.addr);
911
Johannes Berg6f7a8d22014-11-14 20:32:57 +0100912 sta_set_sinfo(sta, &sinfo);
913 cfg80211_del_sta_sinfo(sdata->dev, sta->sta.addr, &sinfo, GFP_KERNEL);
Jouni Malinenec15e682011-03-23 15:29:52 +0200914
Johannes Berg34e89502010-02-03 13:59:58 +0100915 rate_control_remove_sta_debugfs(sta);
916 ieee80211_sta_debugfs_remove(sta);
Eliad Peller21f659b2013-11-11 20:14:01 +0200917 ieee80211_recalc_min_chandef(sdata);
Johannes Berg34e89502010-02-03 13:59:58 +0100918
Johannes Bergd34ba212013-12-04 22:46:11 +0100919 cleanup_single_sta(sta);
Johannes Bergd7782072013-12-04 23:12:31 +0100920}
921
922int __must_check __sta_info_destroy(struct sta_info *sta)
923{
924 int err = __sta_info_destroy_part1(sta);
925
926 if (err)
927 return err;
928
929 synchronize_net();
930
931 __sta_info_destroy_part2(sta);
Johannes Berg34e89502010-02-03 13:59:58 +0100932
933 return 0;
934}
935
936int sta_info_destroy_addr(struct ieee80211_sub_if_data *sdata, const u8 *addr)
937{
938 struct sta_info *sta;
939 int ret;
940
941 mutex_lock(&sdata->local->sta_mtx);
Johannes Berg7852e362012-01-20 13:55:24 +0100942 sta = sta_info_get(sdata, addr);
Johannes Berg34e89502010-02-03 13:59:58 +0100943 ret = __sta_info_destroy(sta);
944 mutex_unlock(&sdata->local->sta_mtx);
945
946 return ret;
947}
948
949int sta_info_destroy_addr_bss(struct ieee80211_sub_if_data *sdata,
950 const u8 *addr)
951{
952 struct sta_info *sta;
953 int ret;
954
955 mutex_lock(&sdata->local->sta_mtx);
Johannes Berg7852e362012-01-20 13:55:24 +0100956 sta = sta_info_get_bss(sdata, addr);
Johannes Berg34e89502010-02-03 13:59:58 +0100957 ret = __sta_info_destroy(sta);
958 mutex_unlock(&sdata->local->sta_mtx);
959
960 return ret;
961}
Jiri Bencf0706e82007-05-05 11:45:53 -0700962
963static void sta_info_cleanup(unsigned long data)
964{
965 struct ieee80211_local *local = (struct ieee80211_local *) data;
966 struct sta_info *sta;
Juuso Oikarinen3393a602010-04-19 10:12:52 +0300967 bool timer_needed = false;
Jiri Bencf0706e82007-05-05 11:45:53 -0700968
Johannes Bergd0709a62008-02-25 16:27:46 +0100969 rcu_read_lock();
970 list_for_each_entry_rcu(sta, &local->sta_list, list)
Juuso Oikarinen3393a602010-04-19 10:12:52 +0300971 if (sta_info_cleanup_expire_buffered(local, sta))
972 timer_needed = true;
Johannes Bergd0709a62008-02-25 16:27:46 +0100973 rcu_read_unlock();
Jiri Bencf0706e82007-05-05 11:45:53 -0700974
Johannes Berg5bb644a2009-05-17 11:40:42 +0200975 if (local->quiescing)
976 return;
977
Juuso Oikarinen3393a602010-04-19 10:12:52 +0300978 if (!timer_needed)
979 return;
980
Johannes Berg26d59532011-04-01 13:52:48 +0200981 mod_timer(&local->sta_cleanup,
982 round_jiffies(jiffies + STA_INFO_CLEANUP_INTERVAL));
Jiri Bencf0706e82007-05-05 11:45:53 -0700983}
984
985void sta_info_init(struct ieee80211_local *local)
986{
Johannes Berg4d339602011-12-15 11:24:20 +0100987 spin_lock_init(&local->tim_lock);
Johannes Berg34e89502010-02-03 13:59:58 +0100988 mutex_init(&local->sta_mtx);
Jiri Bencf0706e82007-05-05 11:45:53 -0700989 INIT_LIST_HEAD(&local->sta_list);
Jiri Bencf0706e82007-05-05 11:45:53 -0700990
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -0800991 setup_timer(&local->sta_cleanup, sta_info_cleanup,
992 (unsigned long)local);
Jiri Bencf0706e82007-05-05 11:45:53 -0700993}
994
995void sta_info_stop(struct ieee80211_local *local)
996{
Johannes Berga56f9922012-12-13 23:08:52 +0100997 del_timer_sync(&local->sta_cleanup);
Jiri Bencf0706e82007-05-05 11:45:53 -0700998}
999
Johannes Berg051007d2012-12-13 23:49:02 +01001000
Johannes Berge7162512013-12-04 23:18:37 +01001001int __sta_info_flush(struct ieee80211_sub_if_data *sdata, bool vlans)
Jiri Bencf0706e82007-05-05 11:45:53 -07001002{
Johannes Bergb998e8b2012-12-13 23:07:46 +01001003 struct ieee80211_local *local = sdata->local;
Jiri Bencf0706e82007-05-05 11:45:53 -07001004 struct sta_info *sta, *tmp;
Johannes Bergd7782072013-12-04 23:12:31 +01001005 LIST_HEAD(free_list);
Johannes Berg44213b52008-02-25 16:27:49 +01001006 int ret = 0;
Jiri Bencf0706e82007-05-05 11:45:53 -07001007
Johannes Bergd0709a62008-02-25 16:27:46 +01001008 might_sleep();
1009
Johannes Berge7162512013-12-04 23:18:37 +01001010 WARN_ON(vlans && sdata->vif.type != NL80211_IFTYPE_AP);
1011 WARN_ON(vlans && !sdata->bss);
1012
Johannes Berg34e89502010-02-03 13:59:58 +01001013 mutex_lock(&local->sta_mtx);
Johannes Berg34e89502010-02-03 13:59:58 +01001014 list_for_each_entry_safe(sta, tmp, &local->sta_list, list) {
Johannes Berge7162512013-12-04 23:18:37 +01001015 if (sdata == sta->sdata ||
1016 (vlans && sdata->bss == sta->sdata->bss)) {
Johannes Bergd7782072013-12-04 23:12:31 +01001017 if (!WARN_ON(__sta_info_destroy_part1(sta)))
1018 list_add(&sta->free_list, &free_list);
Johannes Berg34316832012-02-25 21:40:46 +01001019 ret++;
1020 }
Johannes Berg34e89502010-02-03 13:59:58 +01001021 }
Johannes Bergd7782072013-12-04 23:12:31 +01001022
1023 if (!list_empty(&free_list)) {
1024 synchronize_net();
1025 list_for_each_entry_safe(sta, tmp, &free_list, free_list)
1026 __sta_info_destroy_part2(sta);
1027 }
Johannes Berg34e89502010-02-03 13:59:58 +01001028 mutex_unlock(&local->sta_mtx);
Johannes Berg44213b52008-02-25 16:27:49 +01001029
Johannes Berg051007d2012-12-13 23:49:02 +01001030 return ret;
1031}
1032
Johannes Berg24723d12008-09-11 00:01:46 +02001033void ieee80211_sta_expire(struct ieee80211_sub_if_data *sdata,
1034 unsigned long exp_time)
1035{
1036 struct ieee80211_local *local = sdata->local;
1037 struct sta_info *sta, *tmp;
Johannes Berg24723d12008-09-11 00:01:46 +02001038
Johannes Berg34e89502010-02-03 13:59:58 +01001039 mutex_lock(&local->sta_mtx);
Mohammed Shafi Shajakhane46a2cf2011-12-26 10:43:29 +05301040
1041 list_for_each_entry_safe(sta, tmp, &local->sta_list, list) {
Marek Lindnerec2b7742011-12-20 23:16:52 +08001042 if (sdata != sta->sdata)
1043 continue;
1044
Johannes Berg24723d12008-09-11 00:01:46 +02001045 if (time_after(jiffies, sta->last_rx + exp_time)) {
Mohammed Shafi Shajakhaneea57d42012-10-08 21:33:47 +05301046 sta_dbg(sta->sdata, "expiring inactive STA %pM\n",
1047 sta->sta.addr);
Marco Porsch3f52b7e2013-01-30 18:14:08 +01001048
1049 if (ieee80211_vif_is_mesh(&sdata->vif) &&
1050 test_sta_flag(sta, WLAN_STA_PS_STA))
1051 atomic_dec(&sdata->u.mesh.ps.num_sta_ps);
1052
Johannes Berg34e89502010-02-03 13:59:58 +01001053 WARN_ON(__sta_info_destroy(sta));
Johannes Berg24723d12008-09-11 00:01:46 +02001054 }
Mohammed Shafi Shajakhane46a2cf2011-12-26 10:43:29 +05301055 }
1056
Johannes Berg34e89502010-02-03 13:59:58 +01001057 mutex_unlock(&local->sta_mtx);
Johannes Berg24723d12008-09-11 00:01:46 +02001058}
Johannes Berg17741cd2008-09-11 00:02:02 +02001059
Ben Greear686b9cb2010-09-23 09:44:36 -07001060struct ieee80211_sta *ieee80211_find_sta_by_ifaddr(struct ieee80211_hw *hw,
1061 const u8 *addr,
1062 const u8 *localaddr)
Johannes Berg17741cd2008-09-11 00:02:02 +02001063{
Johannes Bergabe60632009-11-25 17:46:18 +01001064 struct sta_info *sta, *nxt;
Johannes Berg17741cd2008-09-11 00:02:02 +02001065
Ben Greear686b9cb2010-09-23 09:44:36 -07001066 /*
1067 * Just return a random station if localaddr is NULL
1068 * ... first in list.
1069 */
Johannes Bergf7c65592010-04-30 13:48:36 +02001070 for_each_sta_info(hw_to_local(hw), addr, sta, nxt) {
Ben Greear686b9cb2010-09-23 09:44:36 -07001071 if (localaddr &&
Joe Perchesb203ca32012-05-08 18:56:52 +00001072 !ether_addr_equal(sta->sdata->vif.addr, localaddr))
Ben Greear686b9cb2010-09-23 09:44:36 -07001073 continue;
Johannes Bergf7c65592010-04-30 13:48:36 +02001074 if (!sta->uploaded)
1075 return NULL;
Johannes Bergabe60632009-11-25 17:46:18 +01001076 return &sta->sta;
Johannes Bergf7c65592010-04-30 13:48:36 +02001077 }
1078
Johannes Bergabe60632009-11-25 17:46:18 +01001079 return NULL;
Johannes Berg17741cd2008-09-11 00:02:02 +02001080}
Ben Greear686b9cb2010-09-23 09:44:36 -07001081EXPORT_SYMBOL_GPL(ieee80211_find_sta_by_ifaddr);
Johannes Berg5ed176e2009-11-04 14:42:28 +01001082
1083struct ieee80211_sta *ieee80211_find_sta(struct ieee80211_vif *vif,
1084 const u8 *addr)
1085{
Johannes Bergf7c65592010-04-30 13:48:36 +02001086 struct sta_info *sta;
Johannes Berg5ed176e2009-11-04 14:42:28 +01001087
1088 if (!vif)
1089 return NULL;
1090
Johannes Bergf7c65592010-04-30 13:48:36 +02001091 sta = sta_info_get_bss(vif_to_sdata(vif), addr);
1092 if (!sta)
1093 return NULL;
Johannes Berg5ed176e2009-11-04 14:42:28 +01001094
Johannes Bergf7c65592010-04-30 13:48:36 +02001095 if (!sta->uploaded)
1096 return NULL;
1097
1098 return &sta->sta;
Johannes Berg5ed176e2009-11-04 14:42:28 +01001099}
Johannes Berg17741cd2008-09-11 00:02:02 +02001100EXPORT_SYMBOL(ieee80211_find_sta);
Johannes Bergaf818582009-11-06 11:35:50 +01001101
Johannes Berge3685e02014-02-20 11:19:58 +01001102/* powersave support code */
1103void ieee80211_sta_ps_deliver_wakeup(struct sta_info *sta)
Johannes Berg50a94322010-11-16 11:50:28 -08001104{
Helmut Schaa608383b2012-01-30 15:18:00 +01001105 struct ieee80211_sub_if_data *sdata = sta->sdata;
Johannes Berge3685e02014-02-20 11:19:58 +01001106 struct ieee80211_local *local = sdata->local;
1107 struct sk_buff_head pending;
1108 int filtered = 0, buffered = 0, ac;
1109 unsigned long flags;
Marco Porschd012a602012-10-10 12:39:50 -07001110 struct ps_data *ps;
1111
Felix Fietkau3918edb2014-07-25 16:20:23 +02001112 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
1113 sdata = container_of(sdata->bss, struct ieee80211_sub_if_data,
1114 u.ap);
1115
1116 if (sdata->vif.type == NL80211_IFTYPE_AP)
Marco Porschd012a602012-10-10 12:39:50 -07001117 ps = &sdata->bss->ps;
Marco Porsch3f52b7e2013-01-30 18:14:08 +01001118 else if (ieee80211_vif_is_mesh(&sdata->vif))
1119 ps = &sdata->u.mesh.ps;
Marco Porschd012a602012-10-10 12:39:50 -07001120 else
1121 return;
Johannes Berg50a94322010-11-16 11:50:28 -08001122
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001123 clear_sta_flag(sta, WLAN_STA_SP);
Johannes Berg47086fc2011-09-29 16:04:33 +02001124
Johannes Berg5a306f52012-11-14 23:22:21 +01001125 BUILD_BUG_ON(BITS_TO_LONGS(IEEE80211_NUM_TIDS) > 1);
Johannes Berg948d8872011-09-29 16:04:29 +02001126 sta->driver_buffered_tids = 0;
1127
Arik Nemtsovd057e5a2011-01-31 22:29:13 +02001128 if (!(local->hw.flags & IEEE80211_HW_AP_LINK_PS))
1129 drv_sta_notify(local, sdata, STA_NOTIFY_AWAKE, &sta->sta);
Johannes Bergaf818582009-11-06 11:35:50 +01001130
Johannes Berg948d8872011-09-29 16:04:29 +02001131 skb_queue_head_init(&pending);
Johannes Bergaf818582009-11-06 11:35:50 +01001132
Emmanuel Grumbach1d147bf2014-02-20 09:22:11 +02001133 /* sync with ieee80211_tx_h_unicast_ps_buf */
1134 spin_lock(&sta->ps_lock);
Johannes Bergaf818582009-11-06 11:35:50 +01001135 /* Send all buffered frames to the station */
Johannes Berg948d8872011-09-29 16:04:29 +02001136 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
1137 int count = skb_queue_len(&pending), tmp;
1138
Arik Nemtsov987c2852012-11-05 10:27:52 +02001139 spin_lock_irqsave(&sta->tx_filtered[ac].lock, flags);
Johannes Berg948d8872011-09-29 16:04:29 +02001140 skb_queue_splice_tail_init(&sta->tx_filtered[ac], &pending);
Arik Nemtsov987c2852012-11-05 10:27:52 +02001141 spin_unlock_irqrestore(&sta->tx_filtered[ac].lock, flags);
Johannes Berg948d8872011-09-29 16:04:29 +02001142 tmp = skb_queue_len(&pending);
1143 filtered += tmp - count;
1144 count = tmp;
1145
Arik Nemtsov987c2852012-11-05 10:27:52 +02001146 spin_lock_irqsave(&sta->ps_tx_buf[ac].lock, flags);
Johannes Berg948d8872011-09-29 16:04:29 +02001147 skb_queue_splice_tail_init(&sta->ps_tx_buf[ac], &pending);
Arik Nemtsov987c2852012-11-05 10:27:52 +02001148 spin_unlock_irqrestore(&sta->ps_tx_buf[ac].lock, flags);
Johannes Berg948d8872011-09-29 16:04:29 +02001149 tmp = skb_queue_len(&pending);
1150 buffered += tmp - count;
1151 }
1152
Johannes Berge3685e02014-02-20 11:19:58 +01001153 ieee80211_add_pending_skbs(local, &pending);
Johannes Berg5ac2e352014-05-27 16:32:27 +02001154
1155 /* now we're no longer in the deliver code */
1156 clear_sta_flag(sta, WLAN_STA_PS_DELIVER);
1157
1158 /* The station might have polled and then woken up before we responded,
1159 * so clear these flags now to avoid them sticking around.
1160 */
1161 clear_sta_flag(sta, WLAN_STA_PSPOLL);
1162 clear_sta_flag(sta, WLAN_STA_UAPSD);
Emmanuel Grumbach1d147bf2014-02-20 09:22:11 +02001163 spin_unlock(&sta->ps_lock);
Johannes Berg948d8872011-09-29 16:04:29 +02001164
Johannes Berge3685e02014-02-20 11:19:58 +01001165 atomic_dec(&ps->num_sta_ps);
1166
Emmanuel Grumbach687da132013-10-01 16:45:43 +03001167 /* This station just woke up and isn't aware of our SMPS state */
Chun-Yeow Yeoh062f1d62014-04-22 18:19:25 +08001168 if (!ieee80211_vif_is_mesh(&sdata->vif) &&
1169 !ieee80211_smps_is_restrictive(sta->known_smps_mode,
Emmanuel Grumbach687da132013-10-01 16:45:43 +03001170 sdata->smps_mode) &&
1171 sta->known_smps_mode != sdata->bss->req_smps &&
1172 sta_info_tx_streams(sta) != 1) {
1173 ht_dbg(sdata,
1174 "%pM just woke up and MIMO capable - update SMPS\n",
1175 sta->sta.addr);
1176 ieee80211_send_smps_action(sdata, sdata->bss->req_smps,
1177 sta->sta.addr,
1178 sdata->vif.bss_conf.bssid);
1179 }
1180
Johannes Bergaf818582009-11-06 11:35:50 +01001181 local->total_ps_buffered -= buffered;
1182
Johannes Bergc868cb352011-09-29 16:04:27 +02001183 sta_info_recalc_tim(sta);
1184
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02001185 ps_dbg(sdata,
1186 "STA %pM aid %d sending %d filtered/%d PS frames since STA not sleeping anymore\n",
1187 sta->sta.addr, sta->sta.aid, filtered, buffered);
Johannes Bergaf818582009-11-06 11:35:50 +01001188}
1189
Johannes Bergce662b442011-09-29 16:04:34 +02001190static void ieee80211_send_null_response(struct ieee80211_sub_if_data *sdata,
1191 struct sta_info *sta, int tid,
Johannes Bergb77cf4f2014-01-09 00:00:38 +01001192 enum ieee80211_frame_release_type reason,
1193 bool call_driver)
Johannes Bergce662b442011-09-29 16:04:34 +02001194{
1195 struct ieee80211_local *local = sdata->local;
1196 struct ieee80211_qos_hdr *nullfunc;
1197 struct sk_buff *skb;
1198 int size = sizeof(*nullfunc);
1199 __le16 fc;
Johannes Berga74a8c82014-07-22 14:50:47 +02001200 bool qos = sta->sta.wme;
Johannes Bergce662b442011-09-29 16:04:34 +02001201 struct ieee80211_tx_info *info;
Johannes Berg55de9082012-07-26 17:24:39 +02001202 struct ieee80211_chanctx_conf *chanctx_conf;
Johannes Bergce662b442011-09-29 16:04:34 +02001203
1204 if (qos) {
1205 fc = cpu_to_le16(IEEE80211_FTYPE_DATA |
1206 IEEE80211_STYPE_QOS_NULLFUNC |
1207 IEEE80211_FCTL_FROMDS);
1208 } else {
1209 size -= 2;
1210 fc = cpu_to_le16(IEEE80211_FTYPE_DATA |
1211 IEEE80211_STYPE_NULLFUNC |
1212 IEEE80211_FCTL_FROMDS);
1213 }
1214
1215 skb = dev_alloc_skb(local->hw.extra_tx_headroom + size);
1216 if (!skb)
1217 return;
1218
1219 skb_reserve(skb, local->hw.extra_tx_headroom);
1220
1221 nullfunc = (void *) skb_put(skb, size);
1222 nullfunc->frame_control = fc;
1223 nullfunc->duration_id = 0;
1224 memcpy(nullfunc->addr1, sta->sta.addr, ETH_ALEN);
1225 memcpy(nullfunc->addr2, sdata->vif.addr, ETH_ALEN);
1226 memcpy(nullfunc->addr3, sdata->vif.addr, ETH_ALEN);
Johannes Berg864a6042014-03-04 13:46:53 +01001227 nullfunc->seq_ctrl = 0;
Johannes Bergce662b442011-09-29 16:04:34 +02001228
Johannes Berg59b66252011-10-13 13:19:19 +02001229 skb->priority = tid;
1230 skb_set_queue_mapping(skb, ieee802_1d_to_ac[tid]);
Johannes Bergce662b442011-09-29 16:04:34 +02001231 if (qos) {
Johannes Bergce662b442011-09-29 16:04:34 +02001232 nullfunc->qos_ctrl = cpu_to_le16(tid);
1233
Johannes Berg40b96402011-09-29 16:04:38 +02001234 if (reason == IEEE80211_FRAME_RELEASE_UAPSD)
Johannes Bergce662b442011-09-29 16:04:34 +02001235 nullfunc->qos_ctrl |=
1236 cpu_to_le16(IEEE80211_QOS_CTL_EOSP);
1237 }
1238
1239 info = IEEE80211_SKB_CB(skb);
1240
1241 /*
1242 * Tell TX path to send this frame even though the
1243 * STA may still remain is PS mode after this frame
Johannes Bergdeeaee12011-09-29 16:04:35 +02001244 * exchange. Also set EOSP to indicate this packet
1245 * ends the poll/service period.
Johannes Bergce662b442011-09-29 16:04:34 +02001246 */
Johannes Berg02f2f1a2012-02-27 12:18:30 +01001247 info->flags |= IEEE80211_TX_CTL_NO_PS_BUFFER |
Johannes Bergdeeaee12011-09-29 16:04:35 +02001248 IEEE80211_TX_STATUS_EOSP |
1249 IEEE80211_TX_CTL_REQ_TX_STATUS;
Johannes Bergce662b442011-09-29 16:04:34 +02001250
Sujith Manoharan6b127c72014-12-10 21:26:10 +05301251 info->control.flags |= IEEE80211_TX_CTRL_PS_RESPONSE;
1252
Johannes Bergb77cf4f2014-01-09 00:00:38 +01001253 if (call_driver)
1254 drv_allow_buffered_frames(local, sta, BIT(tid), 1,
1255 reason, false);
Johannes Berg40b96402011-09-29 16:04:38 +02001256
Johannes Berg89afe612013-02-13 15:39:57 +01001257 skb->dev = sdata->dev;
1258
Johannes Berg55de9082012-07-26 17:24:39 +02001259 rcu_read_lock();
1260 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
1261 if (WARN_ON(!chanctx_conf)) {
1262 rcu_read_unlock();
1263 kfree_skb(skb);
1264 return;
1265 }
1266
Johannes Berg73c4e192014-11-09 18:50:09 +02001267 info->band = chanctx_conf->def.chan->band;
1268 ieee80211_xmit(sdata, skb);
Johannes Berg55de9082012-07-26 17:24:39 +02001269 rcu_read_unlock();
Johannes Bergce662b442011-09-29 16:04:34 +02001270}
1271
Johannes Berg0a1cb802014-01-09 11:05:31 +01001272static int find_highest_prio_tid(unsigned long tids)
1273{
1274 /* lower 3 TIDs aren't ordered perfectly */
1275 if (tids & 0xF8)
1276 return fls(tids) - 1;
1277 /* TID 0 is BE just like TID 3 */
1278 if (tids & BIT(0))
1279 return 0;
1280 return fls(tids) - 1;
1281}
1282
Johannes Berg47086fc2011-09-29 16:04:33 +02001283static void
1284ieee80211_sta_ps_deliver_response(struct sta_info *sta,
1285 int n_frames, u8 ignored_acs,
1286 enum ieee80211_frame_release_type reason)
Johannes Bergaf818582009-11-06 11:35:50 +01001287{
1288 struct ieee80211_sub_if_data *sdata = sta->sdata;
1289 struct ieee80211_local *local = sdata->local;
Johannes Berg948d8872011-09-29 16:04:29 +02001290 bool more_data = false;
1291 int ac;
Johannes Berg4049e092011-09-29 16:04:32 +02001292 unsigned long driver_release_tids = 0;
Johannes Berg47086fc2011-09-29 16:04:33 +02001293 struct sk_buff_head frames;
1294
Johannes Bergdeeaee12011-09-29 16:04:35 +02001295 /* Service or PS-Poll period starts */
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001296 set_sta_flag(sta, WLAN_STA_SP);
Johannes Bergdeeaee12011-09-29 16:04:35 +02001297
Johannes Berg47086fc2011-09-29 16:04:33 +02001298 __skb_queue_head_init(&frames);
Johannes Bergaf818582009-11-06 11:35:50 +01001299
Johannes Bergf9f760b2014-01-08 17:45:07 +01001300 /* Get response frame(s) and more data bit for the last one. */
Johannes Berg948d8872011-09-29 16:04:29 +02001301 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
Johannes Berg4049e092011-09-29 16:04:32 +02001302 unsigned long tids;
1303
Johannes Berg47086fc2011-09-29 16:04:33 +02001304 if (ignored_acs & BIT(ac))
Johannes Berg948d8872011-09-29 16:04:29 +02001305 continue;
1306
Johannes Berg4049e092011-09-29 16:04:32 +02001307 tids = ieee80211_tids_for_ac(ac);
1308
Johannes Bergf9f760b2014-01-08 17:45:07 +01001309 /* if we already have frames from software, then we can't also
1310 * release from hardware queues
1311 */
1312 if (skb_queue_empty(&frames))
1313 driver_release_tids |= sta->driver_buffered_tids & tids;
Johannes Berg47086fc2011-09-29 16:04:33 +02001314
Johannes Bergf9f760b2014-01-08 17:45:07 +01001315 if (driver_release_tids) {
1316 /* If the driver has data on more than one TID then
Johannes Berg4049e092011-09-29 16:04:32 +02001317 * certainly there's more data if we release just a
Johannes Bergf9f760b2014-01-08 17:45:07 +01001318 * single frame now (from a single TID). This will
1319 * only happen for PS-Poll.
Johannes Berg4049e092011-09-29 16:04:32 +02001320 */
Johannes Berg47086fc2011-09-29 16:04:33 +02001321 if (reason == IEEE80211_FRAME_RELEASE_PSPOLL &&
1322 hweight16(driver_release_tids) > 1) {
Johannes Berg4049e092011-09-29 16:04:32 +02001323 more_data = true;
1324 driver_release_tids =
Johannes Berg0a1cb802014-01-09 11:05:31 +01001325 BIT(find_highest_prio_tid(
1326 driver_release_tids));
Johannes Berg4049e092011-09-29 16:04:32 +02001327 break;
Johannes Berg948d8872011-09-29 16:04:29 +02001328 }
Johannes Bergf9f760b2014-01-08 17:45:07 +01001329 } else {
1330 struct sk_buff *skb;
1331
1332 while (n_frames > 0) {
1333 skb = skb_dequeue(&sta->tx_filtered[ac]);
1334 if (!skb) {
1335 skb = skb_dequeue(
1336 &sta->ps_tx_buf[ac]);
1337 if (skb)
1338 local->total_ps_buffered--;
1339 }
1340 if (!skb)
1341 break;
1342 n_frames--;
1343 __skb_queue_tail(&frames, skb);
1344 }
Johannes Berg948d8872011-09-29 16:04:29 +02001345 }
1346
Johannes Bergf9f760b2014-01-08 17:45:07 +01001347 /* If we have more frames buffered on this AC, then set the
1348 * more-data bit and abort the loop since we can't send more
1349 * data from other ACs before the buffered frames from this.
1350 */
Johannes Berg948d8872011-09-29 16:04:29 +02001351 if (!skb_queue_empty(&sta->tx_filtered[ac]) ||
1352 !skb_queue_empty(&sta->ps_tx_buf[ac])) {
1353 more_data = true;
1354 break;
1355 }
Johannes Bergaf818582009-11-06 11:35:50 +01001356 }
Johannes Bergaf818582009-11-06 11:35:50 +01001357
Johannes Bergf9f760b2014-01-08 17:45:07 +01001358 if (skb_queue_empty(&frames) && !driver_release_tids) {
Johannes Bergce662b442011-09-29 16:04:34 +02001359 int tid;
Johannes Berg4049e092011-09-29 16:04:32 +02001360
Johannes Bergce662b442011-09-29 16:04:34 +02001361 /*
1362 * For PS-Poll, this can only happen due to a race condition
1363 * when we set the TIM bit and the station notices it, but
1364 * before it can poll for the frame we expire it.
1365 *
1366 * For uAPSD, this is said in the standard (11.2.1.5 h):
1367 * At each unscheduled SP for a non-AP STA, the AP shall
1368 * attempt to transmit at least one MSDU or MMPDU, but no
1369 * more than the value specified in the Max SP Length field
1370 * in the QoS Capability element from delivery-enabled ACs,
1371 * that are destined for the non-AP STA.
1372 *
1373 * Since we have no other MSDU/MMPDU, transmit a QoS null frame.
1374 */
1375
1376 /* This will evaluate to 1, 3, 5 or 7. */
1377 tid = 7 - ((ffs(~ignored_acs) - 1) << 1);
1378
Johannes Bergb77cf4f2014-01-09 00:00:38 +01001379 ieee80211_send_null_response(sdata, sta, tid, reason, true);
Johannes Bergf9f760b2014-01-08 17:45:07 +01001380 } else if (!driver_release_tids) {
Johannes Berg47086fc2011-09-29 16:04:33 +02001381 struct sk_buff_head pending;
1382 struct sk_buff *skb;
Johannes Berg40b96402011-09-29 16:04:38 +02001383 int num = 0;
1384 u16 tids = 0;
Johannes Bergb77cf4f2014-01-09 00:00:38 +01001385 bool need_null = false;
Johannes Bergaf818582009-11-06 11:35:50 +01001386
Johannes Berg47086fc2011-09-29 16:04:33 +02001387 skb_queue_head_init(&pending);
Johannes Bergaf818582009-11-06 11:35:50 +01001388
Johannes Berg47086fc2011-09-29 16:04:33 +02001389 while ((skb = __skb_dequeue(&frames))) {
1390 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1391 struct ieee80211_hdr *hdr = (void *) skb->data;
Johannes Berg40b96402011-09-29 16:04:38 +02001392 u8 *qoshdr = NULL;
1393
1394 num++;
Johannes Bergaf818582009-11-06 11:35:50 +01001395
Johannes Berg47086fc2011-09-29 16:04:33 +02001396 /*
1397 * Tell TX path to send this frame even though the
1398 * STA may still remain is PS mode after this frame
1399 * exchange.
1400 */
Sujith Manoharan6b127c72014-12-10 21:26:10 +05301401 info->flags |= IEEE80211_TX_CTL_NO_PS_BUFFER;
1402 info->control.flags |= IEEE80211_TX_CTRL_PS_RESPONSE;
Johannes Bergaf818582009-11-06 11:35:50 +01001403
Johannes Berg47086fc2011-09-29 16:04:33 +02001404 /*
1405 * Use MoreData flag to indicate whether there are
1406 * more buffered frames for this STA
1407 */
Janusz.Dziedzic@tieto.com24b9c372011-11-07 09:47:47 +02001408 if (more_data || !skb_queue_empty(&frames))
Johannes Berg47086fc2011-09-29 16:04:33 +02001409 hdr->frame_control |=
1410 cpu_to_le16(IEEE80211_FCTL_MOREDATA);
Janusz.Dziedzic@tieto.com24b9c372011-11-07 09:47:47 +02001411 else
1412 hdr->frame_control &=
1413 cpu_to_le16(~IEEE80211_FCTL_MOREDATA);
Johannes Berg47086fc2011-09-29 16:04:33 +02001414
Johannes Berg40b96402011-09-29 16:04:38 +02001415 if (ieee80211_is_data_qos(hdr->frame_control) ||
1416 ieee80211_is_qos_nullfunc(hdr->frame_control))
1417 qoshdr = ieee80211_get_qos_ctl(hdr);
1418
Johannes Bergb77cf4f2014-01-09 00:00:38 +01001419 tids |= BIT(skb->priority);
1420
1421 __skb_queue_tail(&pending, skb);
1422
1423 /* end service period after last frame or add one */
1424 if (!skb_queue_empty(&frames))
1425 continue;
1426
1427 if (reason != IEEE80211_FRAME_RELEASE_UAPSD) {
1428 /* for PS-Poll, there's only one frame */
1429 info->flags |= IEEE80211_TX_STATUS_EOSP |
1430 IEEE80211_TX_CTL_REQ_TX_STATUS;
1431 break;
1432 }
1433
1434 /* For uAPSD, things are a bit more complicated. If the
1435 * last frame has a QoS header (i.e. is a QoS-data or
1436 * QoS-nulldata frame) then just set the EOSP bit there
1437 * and be done.
1438 * If the frame doesn't have a QoS header (which means
1439 * it should be a bufferable MMPDU) then we can't set
1440 * the EOSP bit in the QoS header; add a QoS-nulldata
1441 * frame to the list to send it after the MMPDU.
1442 *
1443 * Note that this code is only in the mac80211-release
1444 * code path, we assume that the driver will not buffer
1445 * anything but QoS-data frames, or if it does, will
1446 * create the QoS-nulldata frame by itself if needed.
1447 *
1448 * Cf. 802.11-2012 10.2.1.10 (c).
1449 */
1450 if (qoshdr) {
1451 *qoshdr |= IEEE80211_QOS_CTL_EOSP;
Johannes Berg47086fc2011-09-29 16:04:33 +02001452
Marco Porsch52a3f202012-03-16 15:30:26 +01001453 info->flags |= IEEE80211_TX_STATUS_EOSP |
1454 IEEE80211_TX_CTL_REQ_TX_STATUS;
Johannes Bergb77cf4f2014-01-09 00:00:38 +01001455 } else {
1456 /* The standard isn't completely clear on this
1457 * as it says the more-data bit should be set
1458 * if there are more BUs. The QoS-Null frame
1459 * we're about to send isn't buffered yet, we
1460 * only create it below, but let's pretend it
1461 * was buffered just in case some clients only
1462 * expect more-data=0 when eosp=1.
1463 */
1464 hdr->frame_control |=
1465 cpu_to_le16(IEEE80211_FCTL_MOREDATA);
1466 need_null = true;
1467 num++;
Marco Porsch52a3f202012-03-16 15:30:26 +01001468 }
Johannes Bergb77cf4f2014-01-09 00:00:38 +01001469 break;
Johannes Berg47086fc2011-09-29 16:04:33 +02001470 }
1471
Johannes Berg40b96402011-09-29 16:04:38 +02001472 drv_allow_buffered_frames(local, sta, tids, num,
1473 reason, more_data);
1474
Johannes Berg47086fc2011-09-29 16:04:33 +02001475 ieee80211_add_pending_skbs(local, &pending);
Johannes Bergaf818582009-11-06 11:35:50 +01001476
Johannes Bergb77cf4f2014-01-09 00:00:38 +01001477 if (need_null)
1478 ieee80211_send_null_response(
1479 sdata, sta, find_highest_prio_tid(tids),
1480 reason, false);
1481
Johannes Bergc868cb352011-09-29 16:04:27 +02001482 sta_info_recalc_tim(sta);
Johannes Bergaf818582009-11-06 11:35:50 +01001483 } else {
1484 /*
Johannes Berg4049e092011-09-29 16:04:32 +02001485 * We need to release a frame that is buffered somewhere in the
1486 * driver ... it'll have to handle that.
Johannes Bergf9f760b2014-01-08 17:45:07 +01001487 * Note that the driver also has to check the number of frames
1488 * on the TIDs we're releasing from - if there are more than
1489 * n_frames it has to set the more-data bit (if we didn't ask
1490 * it to set it anyway due to other buffered frames); if there
1491 * are fewer than n_frames it has to make sure to adjust that
1492 * to allow the service period to end properly.
Johannes Bergaf818582009-11-06 11:35:50 +01001493 */
Johannes Berg4049e092011-09-29 16:04:32 +02001494 drv_release_buffered_frames(local, sta, driver_release_tids,
Johannes Berg47086fc2011-09-29 16:04:33 +02001495 n_frames, reason, more_data);
Johannes Berg4049e092011-09-29 16:04:32 +02001496
1497 /*
1498 * Note that we don't recalculate the TIM bit here as it would
1499 * most likely have no effect at all unless the driver told us
Johannes Bergf9f760b2014-01-08 17:45:07 +01001500 * that the TID(s) became empty before returning here from the
Johannes Berg4049e092011-09-29 16:04:32 +02001501 * release function.
Johannes Bergf9f760b2014-01-08 17:45:07 +01001502 * Either way, however, when the driver tells us that the TID(s)
Johannes Berg4049e092011-09-29 16:04:32 +02001503 * became empty we'll do the TIM recalculation.
1504 */
Johannes Bergaf818582009-11-06 11:35:50 +01001505 }
1506}
1507
Johannes Bergaf818582009-11-06 11:35:50 +01001508void ieee80211_sta_ps_deliver_poll_response(struct sta_info *sta)
1509{
Johannes Berg47086fc2011-09-29 16:04:33 +02001510 u8 ignore_for_response = sta->sta.uapsd_queues;
Johannes Bergaf818582009-11-06 11:35:50 +01001511
Johannes Berg47086fc2011-09-29 16:04:33 +02001512 /*
1513 * If all ACs are delivery-enabled then we should reply
1514 * from any of them, if only some are enabled we reply
1515 * only from the non-enabled ones.
1516 */
1517 if (ignore_for_response == BIT(IEEE80211_NUM_ACS) - 1)
1518 ignore_for_response = 0;
1519
1520 ieee80211_sta_ps_deliver_response(sta, 1, ignore_for_response,
1521 IEEE80211_FRAME_RELEASE_PSPOLL);
1522}
1523
1524void ieee80211_sta_ps_deliver_uapsd(struct sta_info *sta)
1525{
1526 int n_frames = sta->sta.max_sp;
1527 u8 delivery_enabled = sta->sta.uapsd_queues;
1528
1529 /*
1530 * If we ever grow support for TSPEC this might happen if
1531 * the TSPEC update from hostapd comes in between a trigger
1532 * frame setting WLAN_STA_UAPSD in the RX path and this
1533 * actually getting called.
1534 */
1535 if (!delivery_enabled)
1536 return;
1537
Johannes Berg47086fc2011-09-29 16:04:33 +02001538 switch (sta->sta.max_sp) {
1539 case 1:
1540 n_frames = 2;
1541 break;
1542 case 2:
1543 n_frames = 4;
1544 break;
1545 case 3:
1546 n_frames = 6;
1547 break;
1548 case 0:
1549 /* XXX: what is a good value? */
Andrei Otcheretianski13a80982014-11-04 11:33:04 +02001550 n_frames = 128;
Johannes Berg47086fc2011-09-29 16:04:33 +02001551 break;
Johannes Bergaf818582009-11-06 11:35:50 +01001552 }
Johannes Bergaf818582009-11-06 11:35:50 +01001553
Johannes Berg47086fc2011-09-29 16:04:33 +02001554 ieee80211_sta_ps_deliver_response(sta, n_frames, ~delivery_enabled,
1555 IEEE80211_FRAME_RELEASE_UAPSD);
Johannes Bergaf818582009-11-06 11:35:50 +01001556}
1557
1558void ieee80211_sta_block_awake(struct ieee80211_hw *hw,
1559 struct ieee80211_sta *pubsta, bool block)
1560{
1561 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
1562
Johannes Bergb5878a22010-04-07 16:48:40 +02001563 trace_api_sta_block_awake(sta->local, pubsta, block);
1564
Johannes Berg5ac2e352014-05-27 16:32:27 +02001565 if (block) {
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001566 set_sta_flag(sta, WLAN_STA_PS_DRIVER);
Johannes Berg5ac2e352014-05-27 16:32:27 +02001567 return;
1568 }
1569
1570 if (!test_sta_flag(sta, WLAN_STA_PS_DRIVER))
1571 return;
1572
1573 if (!test_sta_flag(sta, WLAN_STA_PS_STA)) {
1574 set_sta_flag(sta, WLAN_STA_PS_DELIVER);
1575 clear_sta_flag(sta, WLAN_STA_PS_DRIVER);
1576 ieee80211_queue_work(hw, &sta->drv_deliver_wk);
1577 } else if (test_sta_flag(sta, WLAN_STA_PSPOLL) ||
1578 test_sta_flag(sta, WLAN_STA_UAPSD)) {
1579 /* must be asleep in this case */
1580 clear_sta_flag(sta, WLAN_STA_PS_DRIVER);
1581 ieee80211_queue_work(hw, &sta->drv_deliver_wk);
1582 } else {
1583 clear_sta_flag(sta, WLAN_STA_PS_DRIVER);
1584 }
Johannes Bergaf818582009-11-06 11:35:50 +01001585}
1586EXPORT_SYMBOL(ieee80211_sta_block_awake);
Felix Fietkaudcf55fb2011-04-17 17:45:00 +02001587
Johannes Berge9437892013-02-15 21:38:08 +01001588void ieee80211_sta_eosp(struct ieee80211_sta *pubsta)
Johannes Berg37fbd902011-09-29 16:04:39 +02001589{
1590 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
1591 struct ieee80211_local *local = sta->local;
Johannes Berg37fbd902011-09-29 16:04:39 +02001592
1593 trace_api_eosp(local, pubsta);
1594
Johannes Berge9437892013-02-15 21:38:08 +01001595 clear_sta_flag(sta, WLAN_STA_SP);
Johannes Berg37fbd902011-09-29 16:04:39 +02001596}
Johannes Berge9437892013-02-15 21:38:08 +01001597EXPORT_SYMBOL(ieee80211_sta_eosp);
Johannes Berg37fbd902011-09-29 16:04:39 +02001598
Johannes Berg042ec452011-09-29 16:04:26 +02001599void ieee80211_sta_set_buffered(struct ieee80211_sta *pubsta,
1600 u8 tid, bool buffered)
Felix Fietkaudcf55fb2011-04-17 17:45:00 +02001601{
1602 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
1603
Johannes Berg5a306f52012-11-14 23:22:21 +01001604 if (WARN_ON(tid >= IEEE80211_NUM_TIDS))
Johannes Berg042ec452011-09-29 16:04:26 +02001605 return;
1606
Johannes Berg1b000782013-12-19 10:47:48 +01001607 trace_api_sta_set_buffered(sta->local, pubsta, tid, buffered);
1608
Johannes Berg948d8872011-09-29 16:04:29 +02001609 if (buffered)
1610 set_bit(tid, &sta->driver_buffered_tids);
1611 else
1612 clear_bit(tid, &sta->driver_buffered_tids);
1613
Johannes Bergc868cb352011-09-29 16:04:27 +02001614 sta_info_recalc_tim(sta);
Felix Fietkaudcf55fb2011-04-17 17:45:00 +02001615}
Johannes Berg042ec452011-09-29 16:04:26 +02001616EXPORT_SYMBOL(ieee80211_sta_set_buffered);
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001617
Johannes Berg83d5cc02012-01-12 09:31:10 +01001618int sta_info_move_state(struct sta_info *sta,
1619 enum ieee80211_sta_state new_state)
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001620{
Johannes Berg8bf11d82011-12-15 11:17:37 +01001621 might_sleep();
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001622
1623 if (sta->sta_state == new_state)
1624 return 0;
1625
Johannes Bergf09603a2012-01-20 13:55:21 +01001626 /* check allowed transitions first */
1627
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001628 switch (new_state) {
1629 case IEEE80211_STA_NONE:
Johannes Bergf09603a2012-01-20 13:55:21 +01001630 if (sta->sta_state != IEEE80211_STA_AUTH)
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001631 return -EINVAL;
1632 break;
1633 case IEEE80211_STA_AUTH:
Johannes Bergf09603a2012-01-20 13:55:21 +01001634 if (sta->sta_state != IEEE80211_STA_NONE &&
1635 sta->sta_state != IEEE80211_STA_ASSOC)
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001636 return -EINVAL;
1637 break;
1638 case IEEE80211_STA_ASSOC:
Johannes Bergf09603a2012-01-20 13:55:21 +01001639 if (sta->sta_state != IEEE80211_STA_AUTH &&
1640 sta->sta_state != IEEE80211_STA_AUTHORIZED)
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001641 return -EINVAL;
1642 break;
1643 case IEEE80211_STA_AUTHORIZED:
Johannes Bergf09603a2012-01-20 13:55:21 +01001644 if (sta->sta_state != IEEE80211_STA_ASSOC)
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001645 return -EINVAL;
1646 break;
1647 default:
1648 WARN(1, "invalid state %d", new_state);
1649 return -EINVAL;
1650 }
1651
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02001652 sta_dbg(sta->sdata, "moving STA %pM to state %d\n",
1653 sta->sta.addr, new_state);
Johannes Bergf09603a2012-01-20 13:55:21 +01001654
1655 /*
1656 * notify the driver before the actual changes so it can
1657 * fail the transition
1658 */
1659 if (test_sta_flag(sta, WLAN_STA_INSERTED)) {
1660 int err = drv_sta_state(sta->local, sta->sdata, sta,
1661 sta->sta_state, new_state);
1662 if (err)
1663 return err;
1664 }
1665
1666 /* reflect the change in all state variables */
1667
1668 switch (new_state) {
1669 case IEEE80211_STA_NONE:
1670 if (sta->sta_state == IEEE80211_STA_AUTH)
1671 clear_bit(WLAN_STA_AUTH, &sta->_flags);
1672 break;
1673 case IEEE80211_STA_AUTH:
1674 if (sta->sta_state == IEEE80211_STA_NONE)
1675 set_bit(WLAN_STA_AUTH, &sta->_flags);
1676 else if (sta->sta_state == IEEE80211_STA_ASSOC)
1677 clear_bit(WLAN_STA_ASSOC, &sta->_flags);
1678 break;
1679 case IEEE80211_STA_ASSOC:
1680 if (sta->sta_state == IEEE80211_STA_AUTH) {
1681 set_bit(WLAN_STA_ASSOC, &sta->_flags);
1682 } else if (sta->sta_state == IEEE80211_STA_AUTHORIZED) {
Felix Fietkau7e3ed022012-04-23 19:49:03 +02001683 if (sta->sdata->vif.type == NL80211_IFTYPE_AP ||
1684 (sta->sdata->vif.type == NL80211_IFTYPE_AP_VLAN &&
1685 !sta->sdata->u.vlan.sta))
1686 atomic_dec(&sta->sdata->bss->num_mcast_sta);
Johannes Bergf09603a2012-01-20 13:55:21 +01001687 clear_bit(WLAN_STA_AUTHORIZED, &sta->_flags);
1688 }
1689 break;
1690 case IEEE80211_STA_AUTHORIZED:
1691 if (sta->sta_state == IEEE80211_STA_ASSOC) {
Felix Fietkau7e3ed022012-04-23 19:49:03 +02001692 if (sta->sdata->vif.type == NL80211_IFTYPE_AP ||
1693 (sta->sdata->vif.type == NL80211_IFTYPE_AP_VLAN &&
1694 !sta->sdata->u.vlan.sta))
1695 atomic_inc(&sta->sdata->bss->num_mcast_sta);
Johannes Bergf09603a2012-01-20 13:55:21 +01001696 set_bit(WLAN_STA_AUTHORIZED, &sta->_flags);
1697 }
1698 break;
1699 default:
1700 break;
1701 }
1702
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001703 sta->sta_state = new_state;
1704
1705 return 0;
1706}
Emmanuel Grumbach687da132013-10-01 16:45:43 +03001707
1708u8 sta_info_tx_streams(struct sta_info *sta)
1709{
1710 struct ieee80211_sta_ht_cap *ht_cap = &sta->sta.ht_cap;
1711 u8 rx_streams;
1712
1713 if (!sta->sta.ht_cap.ht_supported)
1714 return 1;
1715
1716 if (sta->sta.vht_cap.vht_supported) {
1717 int i;
1718 u16 tx_mcs_map =
1719 le16_to_cpu(sta->sta.vht_cap.vht_mcs.tx_mcs_map);
1720
1721 for (i = 7; i >= 0; i--)
1722 if ((tx_mcs_map & (0x3 << (i * 2))) !=
1723 IEEE80211_VHT_MCS_NOT_SUPPORTED)
1724 return i + 1;
1725 }
1726
1727 if (ht_cap->mcs.rx_mask[3])
1728 rx_streams = 4;
1729 else if (ht_cap->mcs.rx_mask[2])
1730 rx_streams = 3;
1731 else if (ht_cap->mcs.rx_mask[1])
1732 rx_streams = 2;
1733 else
1734 rx_streams = 1;
1735
1736 if (!(ht_cap->mcs.tx_params & IEEE80211_HT_MCS_TX_RX_DIFF))
1737 return rx_streams;
1738
1739 return ((ht_cap->mcs.tx_params & IEEE80211_HT_MCS_TX_MAX_STREAMS_MASK)
1740 >> IEEE80211_HT_MCS_TX_MAX_STREAMS_SHIFT) + 1;
1741}
Johannes Bergb7ffbd72014-06-04 17:31:56 +02001742
1743void sta_set_sinfo(struct sta_info *sta, struct station_info *sinfo)
1744{
1745 struct ieee80211_sub_if_data *sdata = sta->sdata;
1746 struct ieee80211_local *local = sdata->local;
John W. Linville9a244402014-07-25 10:22:36 -04001747 struct rate_control_ref *ref = NULL;
Johannes Bergb7ffbd72014-06-04 17:31:56 +02001748 struct timespec uptime;
Johannes Bergb7ffbd72014-06-04 17:31:56 +02001749 u32 thr = 0;
1750 int i, ac;
1751
John W. Linville9a244402014-07-25 10:22:36 -04001752 if (test_sta_flag(sta, WLAN_STA_RATE_CONTROL))
1753 ref = local->rate_ctrl;
1754
Johannes Bergb7ffbd72014-06-04 17:31:56 +02001755 sinfo->generation = sdata->local->sta_generation;
1756
Johannes Berg2b9a7e12014-11-17 11:35:23 +01001757 drv_sta_statistics(local, sdata, &sta->sta, sinfo);
1758
Johannes Berg319090b2014-11-17 14:08:11 +01001759 sinfo->filled |= BIT(NL80211_STA_INFO_INACTIVE_TIME) |
1760 BIT(NL80211_STA_INFO_STA_FLAGS) |
1761 BIT(NL80211_STA_INFO_BSS_PARAM) |
1762 BIT(NL80211_STA_INFO_CONNECTED_TIME) |
1763 BIT(NL80211_STA_INFO_RX_DROP_MISC) |
1764 BIT(NL80211_STA_INFO_BEACON_LOSS);
Johannes Bergb7ffbd72014-06-04 17:31:56 +02001765
Thomas Gleixner18171522014-06-11 23:59:14 +00001766 ktime_get_ts(&uptime);
Johannes Bergb7ffbd72014-06-04 17:31:56 +02001767 sinfo->connected_time = uptime.tv_sec - sta->last_connected;
Johannes Bergb7ffbd72014-06-04 17:31:56 +02001768 sinfo->inactive_time = jiffies_to_msecs(jiffies - sta->last_rx);
Johannes Berg2b9a7e12014-11-17 11:35:23 +01001769
Johannes Berg319090b2014-11-17 14:08:11 +01001770 if (!(sinfo->filled & (BIT(NL80211_STA_INFO_TX_BYTES64) |
1771 BIT(NL80211_STA_INFO_TX_BYTES)))) {
Johannes Berg2b9a7e12014-11-17 11:35:23 +01001772 sinfo->tx_bytes = 0;
1773 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++)
1774 sinfo->tx_bytes += sta->tx_bytes[ac];
Johannes Berg319090b2014-11-17 14:08:11 +01001775 sinfo->filled |= BIT(NL80211_STA_INFO_TX_BYTES64);
Johannes Bergb7ffbd72014-06-04 17:31:56 +02001776 }
Johannes Berg2b9a7e12014-11-17 11:35:23 +01001777
Johannes Berg319090b2014-11-17 14:08:11 +01001778 if (!(sinfo->filled & BIT(NL80211_STA_INFO_TX_PACKETS))) {
Johannes Berg2b9a7e12014-11-17 11:35:23 +01001779 sinfo->tx_packets = 0;
1780 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++)
1781 sinfo->tx_packets += sta->tx_packets[ac];
Johannes Berg319090b2014-11-17 14:08:11 +01001782 sinfo->filled |= BIT(NL80211_STA_INFO_TX_PACKETS);
Johannes Berg2b9a7e12014-11-17 11:35:23 +01001783 }
1784
Johannes Berg319090b2014-11-17 14:08:11 +01001785 if (!(sinfo->filled & (BIT(NL80211_STA_INFO_RX_BYTES64) |
1786 BIT(NL80211_STA_INFO_RX_BYTES)))) {
Johannes Berg2b9a7e12014-11-17 11:35:23 +01001787 sinfo->rx_bytes = sta->rx_bytes;
Johannes Berg319090b2014-11-17 14:08:11 +01001788 sinfo->filled |= BIT(NL80211_STA_INFO_RX_BYTES64);
Johannes Berg2b9a7e12014-11-17 11:35:23 +01001789 }
1790
Johannes Berg319090b2014-11-17 14:08:11 +01001791 if (!(sinfo->filled & BIT(NL80211_STA_INFO_RX_PACKETS))) {
Johannes Berg2b9a7e12014-11-17 11:35:23 +01001792 sinfo->rx_packets = sta->rx_packets;
Johannes Berg319090b2014-11-17 14:08:11 +01001793 sinfo->filled |= BIT(NL80211_STA_INFO_RX_PACKETS);
Johannes Berg2b9a7e12014-11-17 11:35:23 +01001794 }
1795
Johannes Berg319090b2014-11-17 14:08:11 +01001796 if (!(sinfo->filled & BIT(NL80211_STA_INFO_TX_RETRIES))) {
Johannes Berg2b9a7e12014-11-17 11:35:23 +01001797 sinfo->tx_retries = sta->tx_retry_count;
Johannes Berg319090b2014-11-17 14:08:11 +01001798 sinfo->filled |= BIT(NL80211_STA_INFO_TX_RETRIES);
Johannes Berg2b9a7e12014-11-17 11:35:23 +01001799 }
1800
Johannes Berg319090b2014-11-17 14:08:11 +01001801 if (!(sinfo->filled & BIT(NL80211_STA_INFO_TX_FAILED))) {
Johannes Berg2b9a7e12014-11-17 11:35:23 +01001802 sinfo->tx_failed = sta->tx_retry_failed;
Johannes Berg319090b2014-11-17 14:08:11 +01001803 sinfo->filled |= BIT(NL80211_STA_INFO_TX_FAILED);
Johannes Berg2b9a7e12014-11-17 11:35:23 +01001804 }
1805
Johannes Bergb7ffbd72014-06-04 17:31:56 +02001806 sinfo->rx_dropped_misc = sta->rx_dropped;
1807 sinfo->beacon_loss_count = sta->beacon_loss_count;
1808
1809 if ((sta->local->hw.flags & IEEE80211_HW_SIGNAL_DBM) ||
1810 (sta->local->hw.flags & IEEE80211_HW_SIGNAL_UNSPEC)) {
Johannes Berg319090b2014-11-17 14:08:11 +01001811 if (!(sinfo->filled & BIT(NL80211_STA_INFO_SIGNAL))) {
Johannes Bergb7ffbd72014-06-04 17:31:56 +02001812 sinfo->signal = (s8)sta->last_signal;
Johannes Berg319090b2014-11-17 14:08:11 +01001813 sinfo->filled |= BIT(NL80211_STA_INFO_SIGNAL);
Johannes Berg2b9a7e12014-11-17 11:35:23 +01001814 }
1815
Johannes Berg319090b2014-11-17 14:08:11 +01001816 if (!(sinfo->filled & BIT(NL80211_STA_INFO_SIGNAL_AVG))) {
Johannes Berg2b9a7e12014-11-17 11:35:23 +01001817 sinfo->signal_avg = (s8) -ewma_read(&sta->avg_signal);
Johannes Berg319090b2014-11-17 14:08:11 +01001818 sinfo->filled |= BIT(NL80211_STA_INFO_SIGNAL_AVG);
Johannes Berg2b9a7e12014-11-17 11:35:23 +01001819 }
Johannes Bergb7ffbd72014-06-04 17:31:56 +02001820 }
Johannes Berg2b9a7e12014-11-17 11:35:23 +01001821
1822 if (sta->chains &&
Johannes Berg319090b2014-11-17 14:08:11 +01001823 !(sinfo->filled & (BIT(NL80211_STA_INFO_CHAIN_SIGNAL) |
1824 BIT(NL80211_STA_INFO_CHAIN_SIGNAL_AVG)))) {
1825 sinfo->filled |= BIT(NL80211_STA_INFO_CHAIN_SIGNAL) |
1826 BIT(NL80211_STA_INFO_CHAIN_SIGNAL_AVG);
Johannes Bergb7ffbd72014-06-04 17:31:56 +02001827
1828 sinfo->chains = sta->chains;
1829 for (i = 0; i < ARRAY_SIZE(sinfo->chain_signal); i++) {
1830 sinfo->chain_signal[i] = sta->chain_signal_last[i];
1831 sinfo->chain_signal_avg[i] =
1832 (s8) -ewma_read(&sta->chain_signal_avg[i]);
1833 }
1834 }
1835
Johannes Berg319090b2014-11-17 14:08:11 +01001836 if (!(sinfo->filled & BIT(NL80211_STA_INFO_TX_BITRATE))) {
Johannes Berg2b9a7e12014-11-17 11:35:23 +01001837 sta_set_rate_info_tx(sta, &sta->last_tx_rate, &sinfo->txrate);
Johannes Berg319090b2014-11-17 14:08:11 +01001838 sinfo->filled |= BIT(NL80211_STA_INFO_TX_BITRATE);
Johannes Berg2b9a7e12014-11-17 11:35:23 +01001839 }
1840
Johannes Berg319090b2014-11-17 14:08:11 +01001841 if (!(sinfo->filled & BIT(NL80211_STA_INFO_RX_BITRATE))) {
Johannes Berg2b9a7e12014-11-17 11:35:23 +01001842 sta_set_rate_info_rx(sta, &sinfo->rxrate);
Johannes Berg319090b2014-11-17 14:08:11 +01001843 sinfo->filled |= BIT(NL80211_STA_INFO_RX_BITRATE);
Johannes Berg2b9a7e12014-11-17 11:35:23 +01001844 }
Johannes Bergb7ffbd72014-06-04 17:31:56 +02001845
1846 if (ieee80211_vif_is_mesh(&sdata->vif)) {
1847#ifdef CONFIG_MAC80211_MESH
Johannes Berg319090b2014-11-17 14:08:11 +01001848 sinfo->filled |= BIT(NL80211_STA_INFO_LLID) |
1849 BIT(NL80211_STA_INFO_PLID) |
1850 BIT(NL80211_STA_INFO_PLINK_STATE) |
1851 BIT(NL80211_STA_INFO_LOCAL_PM) |
1852 BIT(NL80211_STA_INFO_PEER_PM) |
1853 BIT(NL80211_STA_INFO_NONPEER_PM);
Johannes Bergb7ffbd72014-06-04 17:31:56 +02001854
1855 sinfo->llid = sta->llid;
1856 sinfo->plid = sta->plid;
1857 sinfo->plink_state = sta->plink_state;
1858 if (test_sta_flag(sta, WLAN_STA_TOFFSET_KNOWN)) {
Johannes Berg319090b2014-11-17 14:08:11 +01001859 sinfo->filled |= BIT(NL80211_STA_INFO_T_OFFSET);
Johannes Bergb7ffbd72014-06-04 17:31:56 +02001860 sinfo->t_offset = sta->t_offset;
1861 }
1862 sinfo->local_pm = sta->local_pm;
1863 sinfo->peer_pm = sta->peer_pm;
1864 sinfo->nonpeer_pm = sta->nonpeer_pm;
1865#endif
1866 }
1867
1868 sinfo->bss_param.flags = 0;
1869 if (sdata->vif.bss_conf.use_cts_prot)
1870 sinfo->bss_param.flags |= BSS_PARAM_FLAGS_CTS_PROT;
1871 if (sdata->vif.bss_conf.use_short_preamble)
1872 sinfo->bss_param.flags |= BSS_PARAM_FLAGS_SHORT_PREAMBLE;
1873 if (sdata->vif.bss_conf.use_short_slot)
1874 sinfo->bss_param.flags |= BSS_PARAM_FLAGS_SHORT_SLOT_TIME;
Emmanuel Grumbach785e21a2014-09-03 15:25:04 +03001875 sinfo->bss_param.dtim_period = sdata->vif.bss_conf.dtim_period;
Johannes Bergb7ffbd72014-06-04 17:31:56 +02001876 sinfo->bss_param.beacon_interval = sdata->vif.bss_conf.beacon_int;
1877
1878 sinfo->sta_flags.set = 0;
1879 sinfo->sta_flags.mask = BIT(NL80211_STA_FLAG_AUTHORIZED) |
1880 BIT(NL80211_STA_FLAG_SHORT_PREAMBLE) |
1881 BIT(NL80211_STA_FLAG_WME) |
1882 BIT(NL80211_STA_FLAG_MFP) |
1883 BIT(NL80211_STA_FLAG_AUTHENTICATED) |
1884 BIT(NL80211_STA_FLAG_ASSOCIATED) |
1885 BIT(NL80211_STA_FLAG_TDLS_PEER);
1886 if (test_sta_flag(sta, WLAN_STA_AUTHORIZED))
1887 sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_AUTHORIZED);
1888 if (test_sta_flag(sta, WLAN_STA_SHORT_PREAMBLE))
1889 sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_SHORT_PREAMBLE);
Johannes Berga74a8c82014-07-22 14:50:47 +02001890 if (sta->sta.wme)
Johannes Bergb7ffbd72014-06-04 17:31:56 +02001891 sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_WME);
1892 if (test_sta_flag(sta, WLAN_STA_MFP))
1893 sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_MFP);
1894 if (test_sta_flag(sta, WLAN_STA_AUTH))
1895 sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_AUTHENTICATED);
1896 if (test_sta_flag(sta, WLAN_STA_ASSOC))
1897 sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_ASSOCIATED);
1898 if (test_sta_flag(sta, WLAN_STA_TDLS_PEER))
1899 sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_TDLS_PEER);
1900
1901 /* check if the driver has a SW RC implementation */
1902 if (ref && ref->ops->get_expected_throughput)
1903 thr = ref->ops->get_expected_throughput(sta->rate_ctrl_priv);
1904 else
1905 thr = drv_get_expected_throughput(local, &sta->sta);
1906
1907 if (thr != 0) {
Johannes Berg319090b2014-11-17 14:08:11 +01001908 sinfo->filled |= BIT(NL80211_STA_INFO_EXPECTED_THROUGHPUT);
Johannes Bergb7ffbd72014-06-04 17:31:56 +02001909 sinfo->expected_throughput = thr;
1910 }
1911}