blob: 08e50760e092911f1933b92d0bac27f0a3efd410 [file] [log] [blame]
Jiri Bencf0706e82007-05-05 11:45:53 -07001/*
2 * Copyright 2002-2005, Instant802 Networks, Inc.
3 * Copyright 2006-2007 Jiri Benc <jbenc@suse.cz>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
8 */
9
10#include <linux/module.h>
11#include <linux/init.h>
Felix Fietkau888d04d2012-03-01 15:22:09 +010012#include <linux/etherdevice.h>
Jiri Bencf0706e82007-05-05 11:45:53 -070013#include <linux/netdevice.h>
14#include <linux/types.h>
15#include <linux/slab.h>
16#include <linux/skbuff.h>
17#include <linux/if_arp.h>
Johannes Berg0d174402007-12-17 15:07:43 +010018#include <linux/timer.h>
Johannes Bergd0709a62008-02-25 16:27:46 +010019#include <linux/rtnetlink.h>
Jiri Bencf0706e82007-05-05 11:45:53 -070020
21#include <net/mac80211.h>
22#include "ieee80211_i.h"
Johannes Berg24487982009-04-23 18:52:52 +020023#include "driver-ops.h"
Johannes Berg2c8dccc2008-04-08 15:14:40 -040024#include "rate.h"
Jiri Bencf0706e82007-05-05 11:45:53 -070025#include "sta_info.h"
Jiri Bence9f207f2007-05-05 11:46:38 -070026#include "debugfs_sta.h"
Luis Carlos Coboee385852008-02-23 15:17:11 +010027#include "mesh.h"
Johannes Bergce662b442011-09-29 16:04:34 +020028#include "wme.h"
Jiri Bencf0706e82007-05-05 11:45:53 -070029
Johannes Bergd0709a62008-02-25 16:27:46 +010030/**
31 * DOC: STA information lifetime rules
32 *
33 * STA info structures (&struct sta_info) are managed in a hash table
34 * for faster lookup and a list for iteration. They are managed using
35 * RCU, i.e. access to the list and hash table is protected by RCU.
36 *
Johannes Berg34e89502010-02-03 13:59:58 +010037 * Upon allocating a STA info structure with sta_info_alloc(), the caller
38 * owns that structure. It must then insert it into the hash table using
39 * either sta_info_insert() or sta_info_insert_rcu(); only in the latter
40 * case (which acquires an rcu read section but must not be called from
41 * within one) will the pointer still be valid after the call. Note that
42 * the caller may not do much with the STA info before inserting it, in
43 * particular, it may not start any mesh peer link management or add
44 * encryption keys.
Johannes Berg93e5deb2008-04-01 15:21:00 +020045 *
46 * When the insertion fails (sta_info_insert()) returns non-zero), the
47 * structure will have been freed by sta_info_insert()!
Johannes Bergd0709a62008-02-25 16:27:46 +010048 *
Johannes Berg34e89502010-02-03 13:59:58 +010049 * Station entries are added by mac80211 when you establish a link with a
Luis R. Rodriguez7e189a12009-06-02 18:38:14 -040050 * peer. This means different things for the different type of interfaces
51 * we support. For a regular station this mean we add the AP sta when we
Lucas De Marchi25985ed2011-03-30 22:57:33 -030052 * receive an association response from the AP. For IBSS this occurs when
Johannes Berg34e89502010-02-03 13:59:58 +010053 * get to know about a peer on the same IBSS. For WDS we add the sta for
Lucas De Marchi25985ed2011-03-30 22:57:33 -030054 * the peer immediately upon device open. When using AP mode we add stations
Johannes Berg34e89502010-02-03 13:59:58 +010055 * for each respective station upon request from userspace through nl80211.
Luis R. Rodriguez7e189a12009-06-02 18:38:14 -040056 *
Johannes Berg34e89502010-02-03 13:59:58 +010057 * In order to remove a STA info structure, various sta_info_destroy_*()
58 * calls are available.
Johannes Bergd0709a62008-02-25 16:27:46 +010059 *
Johannes Berg34e89502010-02-03 13:59:58 +010060 * There is no concept of ownership on a STA entry, each structure is
61 * owned by the global hash table/list until it is removed. All users of
62 * the structure need to be RCU protected so that the structure won't be
63 * freed before they are done using it.
Johannes Bergd0709a62008-02-25 16:27:46 +010064 */
Jiri Bencf0706e82007-05-05 11:45:53 -070065
Johannes Berg4d339602011-12-15 11:24:20 +010066/* Caller must hold local->sta_mtx */
Michael Wube8755e2007-07-27 15:43:23 +020067static int sta_info_hash_del(struct ieee80211_local *local,
68 struct sta_info *sta)
Jiri Bencf0706e82007-05-05 11:45:53 -070069{
70 struct sta_info *s;
71
Johannes Berg40b275b2011-05-13 14:15:49 +020072 s = rcu_dereference_protected(local->sta_hash[STA_HASH(sta->sta.addr)],
Johannes Berg4d339602011-12-15 11:24:20 +010073 lockdep_is_held(&local->sta_mtx));
Jiri Bencf0706e82007-05-05 11:45:53 -070074 if (!s)
Michael Wube8755e2007-07-27 15:43:23 +020075 return -ENOENT;
76 if (s == sta) {
Eric Dumazetcf778b02012-01-12 04:41:32 +000077 rcu_assign_pointer(local->sta_hash[STA_HASH(sta->sta.addr)],
Johannes Bergd0709a62008-02-25 16:27:46 +010078 s->hnext);
Michael Wube8755e2007-07-27 15:43:23 +020079 return 0;
Jiri Bencf0706e82007-05-05 11:45:53 -070080 }
81
Johannes Berg40b275b2011-05-13 14:15:49 +020082 while (rcu_access_pointer(s->hnext) &&
83 rcu_access_pointer(s->hnext) != sta)
84 s = rcu_dereference_protected(s->hnext,
Johannes Berg4d339602011-12-15 11:24:20 +010085 lockdep_is_held(&local->sta_mtx));
Johannes Berg40b275b2011-05-13 14:15:49 +020086 if (rcu_access_pointer(s->hnext)) {
Eric Dumazetcf778b02012-01-12 04:41:32 +000087 rcu_assign_pointer(s->hnext, sta->hnext);
Michael Wube8755e2007-07-27 15:43:23 +020088 return 0;
89 }
Jiri Bencf0706e82007-05-05 11:45:53 -070090
Michael Wube8755e2007-07-27 15:43:23 +020091 return -ENOENT;
Jiri Bencf0706e82007-05-05 11:45:53 -070092}
93
Johannes Berg97f97b12012-12-13 22:54:58 +010094static void cleanup_single_sta(struct sta_info *sta)
Eliad Pellerb22cfcf2012-09-09 14:43:51 +030095{
Eliad Pellerb22cfcf2012-09-09 14:43:51 +030096 int ac, i;
97 struct tid_ampdu_tx *tid_tx;
98 struct ieee80211_sub_if_data *sdata = sta->sdata;
99 struct ieee80211_local *local = sdata->local;
Marco Porschd012a602012-10-10 12:39:50 -0700100 struct ps_data *ps;
Eliad Pellerb22cfcf2012-09-09 14:43:51 +0300101
Eliad Pellerb22cfcf2012-09-09 14:43:51 +0300102 if (test_sta_flag(sta, WLAN_STA_PS_STA)) {
Marco Porschd012a602012-10-10 12:39:50 -0700103 if (sta->sdata->vif.type == NL80211_IFTYPE_AP ||
104 sta->sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
105 ps = &sdata->bss->ps;
Marco Porsch3f52b7e2013-01-30 18:14:08 +0100106 else if (ieee80211_vif_is_mesh(&sdata->vif))
107 ps = &sdata->u.mesh.ps;
Marco Porschd012a602012-10-10 12:39:50 -0700108 else
109 return;
Eliad Pellerb22cfcf2012-09-09 14:43:51 +0300110
111 clear_sta_flag(sta, WLAN_STA_PS_STA);
112
Marco Porschd012a602012-10-10 12:39:50 -0700113 atomic_dec(&ps->num_sta_ps);
Eliad Pellerb22cfcf2012-09-09 14:43:51 +0300114 sta_info_recalc_tim(sta);
115 }
116
117 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
118 local->total_ps_buffered -= skb_queue_len(&sta->ps_tx_buf[ac]);
Felix Fietkau1f98ab72012-11-10 03:44:14 +0100119 ieee80211_purge_tx_queue(&local->hw, &sta->ps_tx_buf[ac]);
120 ieee80211_purge_tx_queue(&local->hw, &sta->tx_filtered[ac]);
Eliad Pellerb22cfcf2012-09-09 14:43:51 +0300121 }
122
Thomas Pedersen45b50282013-02-06 10:17:21 -0800123 if (ieee80211_vif_is_mesh(&sdata->vif))
124 mesh_sta_cleanup(sta);
Eliad Pellerb22cfcf2012-09-09 14:43:51 +0300125
126 cancel_work_sync(&sta->drv_unblock_wk);
127
128 /*
129 * Destroy aggregation state here. It would be nice to wait for the
130 * driver to finish aggregation stop and then clean up, but for now
131 * drivers have to handle aggregation stop being requested, followed
132 * directly by station destruction.
133 */
Johannes Berg5a306f52012-11-14 23:22:21 +0100134 for (i = 0; i < IEEE80211_NUM_TIDS; i++) {
Johannes Berg661eb382013-06-12 22:47:56 +0200135 kfree(sta->ampdu_mlme.tid_start_tx[i]);
Eliad Pellerb22cfcf2012-09-09 14:43:51 +0300136 tid_tx = rcu_dereference_raw(sta->ampdu_mlme.tid_tx[i]);
137 if (!tid_tx)
138 continue;
Felix Fietkau1f98ab72012-11-10 03:44:14 +0100139 ieee80211_purge_tx_queue(&local->hw, &tid_tx->pending);
Eliad Pellerb22cfcf2012-09-09 14:43:51 +0300140 kfree(tid_tx);
141 }
142
143 sta_info_free(local, sta);
144}
145
Johannes Bergd0709a62008-02-25 16:27:46 +0100146/* protected by RCU */
Johannes Bergabe60632009-11-25 17:46:18 +0100147struct sta_info *sta_info_get(struct ieee80211_sub_if_data *sdata,
148 const u8 *addr)
Johannes Berg43ba7e92008-02-21 14:09:30 +0100149{
Johannes Bergabe60632009-11-25 17:46:18 +0100150 struct ieee80211_local *local = sdata->local;
Johannes Berg43ba7e92008-02-21 14:09:30 +0100151 struct sta_info *sta;
152
Johannes Berg03791852010-04-06 11:18:42 +0200153 sta = rcu_dereference_check(local->sta_hash[STA_HASH(addr)],
Johannes Berg03791852010-04-06 11:18:42 +0200154 lockdep_is_held(&local->sta_mtx));
Johannes Berg43ba7e92008-02-21 14:09:30 +0100155 while (sta) {
Johannes Bergabe60632009-11-25 17:46:18 +0100156 if (sta->sdata == sdata &&
Joe Perchesb203ca32012-05-08 18:56:52 +0000157 ether_addr_equal(sta->sta.addr, addr))
Johannes Berg43ba7e92008-02-21 14:09:30 +0100158 break;
Johannes Berg03791852010-04-06 11:18:42 +0200159 sta = rcu_dereference_check(sta->hnext,
Johannes Berg03791852010-04-06 11:18:42 +0200160 lockdep_is_held(&local->sta_mtx));
Johannes Berg43ba7e92008-02-21 14:09:30 +0100161 }
162 return sta;
163}
164
Felix Fietkau0e5ded52010-01-08 18:10:58 +0100165/*
166 * Get sta info either from the specified interface
167 * or from one of its vlans
168 */
169struct sta_info *sta_info_get_bss(struct ieee80211_sub_if_data *sdata,
170 const u8 *addr)
171{
172 struct ieee80211_local *local = sdata->local;
173 struct sta_info *sta;
174
Johannes Berg03791852010-04-06 11:18:42 +0200175 sta = rcu_dereference_check(local->sta_hash[STA_HASH(addr)],
Johannes Berg03791852010-04-06 11:18:42 +0200176 lockdep_is_held(&local->sta_mtx));
Felix Fietkau0e5ded52010-01-08 18:10:58 +0100177 while (sta) {
178 if ((sta->sdata == sdata ||
Johannes Berga2c1e3d2010-09-14 21:34:14 +0200179 (sta->sdata->bss && sta->sdata->bss == sdata->bss)) &&
Joe Perchesb203ca32012-05-08 18:56:52 +0000180 ether_addr_equal(sta->sta.addr, addr))
Felix Fietkau0e5ded52010-01-08 18:10:58 +0100181 break;
Johannes Berg03791852010-04-06 11:18:42 +0200182 sta = rcu_dereference_check(sta->hnext,
Johannes Berg03791852010-04-06 11:18:42 +0200183 lockdep_is_held(&local->sta_mtx));
Felix Fietkau0e5ded52010-01-08 18:10:58 +0100184 }
185 return sta;
186}
187
Johannes Berg3b53fde82009-11-16 12:00:37 +0100188struct sta_info *sta_info_get_by_idx(struct ieee80211_sub_if_data *sdata,
189 int idx)
Luis Carlos Coboee385852008-02-23 15:17:11 +0100190{
Johannes Berg3b53fde82009-11-16 12:00:37 +0100191 struct ieee80211_local *local = sdata->local;
Luis Carlos Coboee385852008-02-23 15:17:11 +0100192 struct sta_info *sta;
193 int i = 0;
194
Johannes Bergd0709a62008-02-25 16:27:46 +0100195 list_for_each_entry_rcu(sta, &local->sta_list, list) {
Johannes Berg3b53fde82009-11-16 12:00:37 +0100196 if (sdata != sta->sdata)
Luis Carlos Cobo2a8ca292008-02-29 17:51:25 -0800197 continue;
Luis Carlos Coboee385852008-02-23 15:17:11 +0100198 if (i < idx) {
199 ++i;
200 continue;
Luis Carlos Coboee385852008-02-23 15:17:11 +0100201 }
Luis Carlos Cobo2a8ca292008-02-29 17:51:25 -0800202 return sta;
Luis Carlos Coboee385852008-02-23 15:17:11 +0100203 }
Luis Carlos Coboee385852008-02-23 15:17:11 +0100204
205 return NULL;
206}
Jiri Bencf0706e82007-05-05 11:45:53 -0700207
Johannes Berg93e5deb2008-04-01 15:21:00 +0200208/**
Johannes Bergd9a7ddb2011-12-14 12:35:30 +0100209 * sta_info_free - free STA
Johannes Berg93e5deb2008-04-01 15:21:00 +0200210 *
Randy Dunlap6ef307b2008-07-03 13:52:18 -0700211 * @local: pointer to the global information
Johannes Berg93e5deb2008-04-01 15:21:00 +0200212 * @sta: STA info to free
213 *
214 * This function must undo everything done by sta_info_alloc()
Johannes Bergd9a7ddb2011-12-14 12:35:30 +0100215 * that may happen before sta_info_insert(). It may only be
216 * called when sta_info_insert() has not been attempted (and
217 * if that fails, the station is freed anyway.)
Johannes Berg93e5deb2008-04-01 15:21:00 +0200218 */
Johannes Bergd9a7ddb2011-12-14 12:35:30 +0100219void sta_info_free(struct ieee80211_local *local, struct sta_info *sta)
Johannes Berg93e5deb2008-04-01 15:21:00 +0200220{
Matti Gottliebad38bfc2013-11-18 19:06:45 +0200221 int i;
222
Johannes Berg889cbb92012-01-17 10:33:29 +0100223 if (sta->rate_ctrl)
Johannes Bergaf65cd962009-11-17 18:18:36 +0100224 rate_control_free_sta(sta);
Johannes Berg93e5deb2008-04-01 15:21:00 +0200225
Matti Gottliebad38bfc2013-11-18 19:06:45 +0200226 if (sta->tx_lat) {
227 for (i = 0; i < IEEE80211_NUM_TIDS; i++)
228 kfree(sta->tx_lat[i].bins);
229 kfree(sta->tx_lat);
230 }
231
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200232 sta_dbg(sta->sdata, "Destroyed STA %pM\n", sta->sta.addr);
Johannes Berg93e5deb2008-04-01 15:21:00 +0200233
234 kfree(sta);
235}
236
Johannes Berg4d339602011-12-15 11:24:20 +0100237/* Caller must hold local->sta_mtx */
Johannes Bergd0709a62008-02-25 16:27:46 +0100238static void sta_info_hash_add(struct ieee80211_local *local,
239 struct sta_info *sta)
Jiri Bencf0706e82007-05-05 11:45:53 -0700240{
Johannes Berg4d339602011-12-15 11:24:20 +0100241 lockdep_assert_held(&local->sta_mtx);
Johannes Berg17741cd2008-09-11 00:02:02 +0200242 sta->hnext = local->sta_hash[STA_HASH(sta->sta.addr)];
Eric Dumazetcf778b02012-01-12 04:41:32 +0000243 rcu_assign_pointer(local->sta_hash[STA_HASH(sta->sta.addr)], sta);
Jiri Bencf0706e82007-05-05 11:45:53 -0700244}
Jiri Bencf0706e82007-05-05 11:45:53 -0700245
Johannes Bergaf818582009-11-06 11:35:50 +0100246static void sta_unblock(struct work_struct *wk)
247{
248 struct sta_info *sta;
249
250 sta = container_of(wk, struct sta_info, drv_unblock_wk);
251
252 if (sta->dead)
253 return;
254
Helmut Schaa54420472012-01-17 09:22:49 +0100255 if (!test_sta_flag(sta, WLAN_STA_PS_STA)) {
256 local_bh_disable();
Johannes Bergaf818582009-11-06 11:35:50 +0100257 ieee80211_sta_ps_deliver_wakeup(sta);
Helmut Schaa54420472012-01-17 09:22:49 +0100258 local_bh_enable();
259 } else if (test_and_clear_sta_flag(sta, WLAN_STA_PSPOLL)) {
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200260 clear_sta_flag(sta, WLAN_STA_PS_DRIVER);
Johannes Bergce662b442011-09-29 16:04:34 +0200261
262 local_bh_disable();
Johannes Bergaf818582009-11-06 11:35:50 +0100263 ieee80211_sta_ps_deliver_poll_response(sta);
Johannes Bergce662b442011-09-29 16:04:34 +0200264 local_bh_enable();
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200265 } else if (test_and_clear_sta_flag(sta, WLAN_STA_UAPSD)) {
266 clear_sta_flag(sta, WLAN_STA_PS_DRIVER);
Johannes Bergce662b442011-09-29 16:04:34 +0200267
268 local_bh_disable();
Johannes Berg47086fc2011-09-29 16:04:33 +0200269 ieee80211_sta_ps_deliver_uapsd(sta);
Johannes Bergce662b442011-09-29 16:04:34 +0200270 local_bh_enable();
Johannes Berg50a94322010-11-16 11:50:28 -0800271 } else
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200272 clear_sta_flag(sta, WLAN_STA_PS_DRIVER);
Johannes Bergaf818582009-11-06 11:35:50 +0100273}
274
Johannes Bergaf65cd962009-11-17 18:18:36 +0100275static int sta_prepare_rate_control(struct ieee80211_local *local,
276 struct sta_info *sta, gfp_t gfp)
277{
278 if (local->hw.flags & IEEE80211_HW_HAS_RATE_CONTROL)
279 return 0;
280
Johannes Berg889cbb92012-01-17 10:33:29 +0100281 sta->rate_ctrl = local->rate_ctrl;
Johannes Bergaf65cd962009-11-17 18:18:36 +0100282 sta->rate_ctrl_priv = rate_control_alloc_sta(sta->rate_ctrl,
283 &sta->sta, gfp);
Johannes Berg889cbb92012-01-17 10:33:29 +0100284 if (!sta->rate_ctrl_priv)
Johannes Bergaf65cd962009-11-17 18:18:36 +0100285 return -ENOMEM;
Johannes Bergaf65cd962009-11-17 18:18:36 +0100286
287 return 0;
288}
289
Johannes Berg73651ee2008-02-25 16:27:47 +0100290struct sta_info *sta_info_alloc(struct ieee80211_sub_if_data *sdata,
Johannes Berg56544162011-12-14 13:28:46 +0100291 const u8 *addr, gfp_t gfp)
Jiri Bencf0706e82007-05-05 11:45:53 -0700292{
Johannes Bergd0709a62008-02-25 16:27:46 +0100293 struct ieee80211_local *local = sdata->local;
Jiri Bencf0706e82007-05-05 11:45:53 -0700294 struct sta_info *sta;
Mohammed Shafi Shajakhanebe27c92011-04-08 21:24:24 +0530295 struct timespec uptime;
Matti Gottliebad38bfc2013-11-18 19:06:45 +0200296 struct ieee80211_tx_latency_bin_ranges *tx_latency;
Ron Rindjunsky16c5f152007-12-25 17:00:34 +0200297 int i;
Jiri Bencf0706e82007-05-05 11:45:53 -0700298
Johannes Berg17741cd2008-09-11 00:02:02 +0200299 sta = kzalloc(sizeof(*sta) + local->hw.sta_data_size, gfp);
Jiri Bencf0706e82007-05-05 11:45:53 -0700300 if (!sta)
Johannes Berg73651ee2008-02-25 16:27:47 +0100301 return NULL;
Jiri Bencf0706e82007-05-05 11:45:53 -0700302
Johannes Berg07346f812008-05-03 01:02:02 +0200303 spin_lock_init(&sta->lock);
Johannes Bergaf818582009-11-06 11:35:50 +0100304 INIT_WORK(&sta->drv_unblock_wk, sta_unblock);
Johannes Berg67c282c2010-06-10 10:21:43 +0200305 INIT_WORK(&sta->ampdu_mlme.work, ieee80211_ba_session_work);
Johannes Berga93e3642010-06-10 10:21:46 +0200306 mutex_init(&sta->ampdu_mlme.mtx);
Thomas Pedersen87f59c72013-03-01 22:02:52 -0800307#ifdef CONFIG_MAC80211_MESH
308 if (ieee80211_vif_is_mesh(&sdata->vif) &&
309 !sdata->u.mesh.user_mpm)
310 init_timer(&sta->plink_timer);
Thomas Pedersen6c7c4cb2013-06-20 23:50:59 -0700311 sta->nonpeer_pm = NL80211_MESH_POWER_ACTIVE;
Thomas Pedersen87f59c72013-03-01 22:02:52 -0800312#endif
Johannes Berg07346f812008-05-03 01:02:02 +0200313
Johannes Berg17741cd2008-09-11 00:02:02 +0200314 memcpy(sta->sta.addr, addr, ETH_ALEN);
Johannes Bergd0709a62008-02-25 16:27:46 +0100315 sta->local = local;
316 sta->sdata = sdata;
Felix Fietkau8bc8aec2011-03-21 20:01:00 +0100317 sta->last_rx = jiffies;
Jiri Bencf0706e82007-05-05 11:45:53 -0700318
Johannes Berg71ec3752012-01-20 13:55:20 +0100319 sta->sta_state = IEEE80211_STA_NONE;
320
Mohammed Shafi Shajakhanebe27c92011-04-08 21:24:24 +0530321 do_posix_clock_monotonic_gettime(&uptime);
322 sta->last_connected = uptime.tv_sec;
Bruno Randolf541a45a2010-12-02 19:12:43 +0900323 ewma_init(&sta->avg_signal, 1024, 8);
Felix Fietkauef0621e2013-04-22 16:29:31 +0200324 for (i = 0; i < ARRAY_SIZE(sta->chain_signal_avg); i++)
325 ewma_init(&sta->chain_signal_avg[i], 1024, 8);
Bruno Randolf541a45a2010-12-02 19:12:43 +0900326
Johannes Bergaf65cd962009-11-17 18:18:36 +0100327 if (sta_prepare_rate_control(local, sta, gfp)) {
Jiri Bencf0706e82007-05-05 11:45:53 -0700328 kfree(sta);
Johannes Berg73651ee2008-02-25 16:27:47 +0100329 return NULL;
Jiri Bencf0706e82007-05-05 11:45:53 -0700330 }
331
Johannes Berg5a306f52012-11-14 23:22:21 +0100332 for (i = 0; i < IEEE80211_NUM_TIDS; i++) {
Johannes Berga622ab72010-06-10 10:21:39 +0200333 /*
334 * timer_to_tid must be initialized with identity mapping
335 * to enable session_timer's data differentiation. See
336 * sta_rx_agg_session_timer_expired for usage.
337 */
Ron Rindjunsky16c5f152007-12-25 17:00:34 +0200338 sta->timer_to_tid[i] = i;
Ron Rindjunsky16c5f152007-12-25 17:00:34 +0200339 }
Johannes Berg948d8872011-09-29 16:04:29 +0200340 for (i = 0; i < IEEE80211_NUM_ACS; i++) {
341 skb_queue_head_init(&sta->ps_tx_buf[i]);
342 skb_queue_head_init(&sta->tx_filtered[i]);
343 }
Johannes Berg73651ee2008-02-25 16:27:47 +0100344
Johannes Berg5a306f52012-11-14 23:22:21 +0100345 for (i = 0; i < IEEE80211_NUM_TIDS; i++)
Alexey Dobriyan4be929b2010-05-24 14:33:03 -0700346 sta->last_seq_ctrl[i] = cpu_to_le16(USHRT_MAX);
Senthil Balasubramaniancccaec92009-05-14 18:42:08 +0530347
Johannes Bergaf0ed692013-02-12 14:21:00 +0100348 sta->sta.smps_mode = IEEE80211_SMPS_OFF;
Emmanuel Grumbach687da132013-10-01 16:45:43 +0300349 if (sdata->vif.type == NL80211_IFTYPE_AP ||
350 sdata->vif.type == NL80211_IFTYPE_AP_VLAN) {
351 struct ieee80211_supported_band *sband =
352 local->hw.wiphy->bands[ieee80211_get_sdata_band(sdata)];
353 u8 smps = (sband->ht_cap.cap & IEEE80211_HT_CAP_SM_PS) >>
354 IEEE80211_HT_CAP_SM_PS_SHIFT;
355 /*
356 * Assume that hostapd advertises our caps in the beacon and
357 * this is the known_smps_mode for a station that just assciated
358 */
359 switch (smps) {
360 case WLAN_HT_SMPS_CONTROL_DISABLED:
361 sta->known_smps_mode = IEEE80211_SMPS_OFF;
362 break;
363 case WLAN_HT_SMPS_CONTROL_STATIC:
364 sta->known_smps_mode = IEEE80211_SMPS_STATIC;
365 break;
366 case WLAN_HT_SMPS_CONTROL_DYNAMIC:
367 sta->known_smps_mode = IEEE80211_SMPS_DYNAMIC;
368 break;
369 default:
370 WARN_ON(1);
371 }
372 }
Johannes Bergaf0ed692013-02-12 14:21:00 +0100373
Matti Gottliebad38bfc2013-11-18 19:06:45 +0200374 rcu_read_lock();
375
376 tx_latency = rcu_dereference(local->tx_latency);
377 /* init stations Tx latency statistics && TID bins */
378 if (tx_latency)
379 sta->tx_lat = kzalloc(IEEE80211_NUM_TIDS *
380 sizeof(struct ieee80211_tx_latency_stat),
381 GFP_ATOMIC);
382
383 /*
384 * if Tx latency and bins are enabled and the previous allocation
385 * succeeded
386 */
387 if (tx_latency && tx_latency->n_ranges && sta->tx_lat)
388 for (i = 0; i < IEEE80211_NUM_TIDS; i++) {
389 /* size of bins is size of the ranges +1 */
390 sta->tx_lat[i].bin_count =
391 tx_latency->n_ranges + 1;
392 sta->tx_lat[i].bins = kcalloc(sta->tx_lat[i].bin_count,
393 sizeof(u32),
394 GFP_ATOMIC);
395 }
396
397 rcu_read_unlock();
398
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200399 sta_dbg(sdata, "Allocated STA %pM\n", sta->sta.addr);
Johannes Berg73651ee2008-02-25 16:27:47 +0100400
401 return sta;
402}
403
Guy Eilam8c71df72011-08-17 15:18:14 +0300404static int sta_info_insert_check(struct sta_info *sta)
Johannes Berg34e89502010-02-03 13:59:58 +0100405{
Johannes Berg34e89502010-02-03 13:59:58 +0100406 struct ieee80211_sub_if_data *sdata = sta->sdata;
Johannes Berg34e89502010-02-03 13:59:58 +0100407
Johannes Berg03e44972008-02-27 09:56:40 +0100408 /*
409 * Can't be a WARN_ON because it can be triggered through a race:
410 * something inserts a STA (on one CPU) without holding the RTNL
411 * and another CPU turns off the net device.
412 */
Guy Eilam8c71df72011-08-17 15:18:14 +0300413 if (unlikely(!ieee80211_sdata_running(sdata)))
414 return -ENETDOWN;
Johannes Berg03e44972008-02-27 09:56:40 +0100415
Joe Perchesb203ca32012-05-08 18:56:52 +0000416 if (WARN_ON(ether_addr_equal(sta->sta.addr, sdata->vif.addr) ||
Guy Eilam8c71df72011-08-17 15:18:14 +0300417 is_multicast_ether_addr(sta->sta.addr)))
418 return -EINVAL;
419
420 return 0;
421}
422
Johannes Bergf09603a2012-01-20 13:55:21 +0100423static int sta_info_insert_drv_state(struct ieee80211_local *local,
424 struct ieee80211_sub_if_data *sdata,
425 struct sta_info *sta)
426{
427 enum ieee80211_sta_state state;
428 int err = 0;
429
430 for (state = IEEE80211_STA_NOTEXIST; state < sta->sta_state; state++) {
431 err = drv_sta_state(local, sdata, sta, state, state + 1);
432 if (err)
433 break;
434 }
435
436 if (!err) {
Johannes Berga4ec45a2012-01-20 13:55:22 +0100437 /*
438 * Drivers using legacy sta_add/sta_remove callbacks only
439 * get uploaded set to true after sta_add is called.
440 */
441 if (!local->ops->sta_add)
442 sta->uploaded = true;
Johannes Bergf09603a2012-01-20 13:55:21 +0100443 return 0;
444 }
445
446 if (sdata->vif.type == NL80211_IFTYPE_ADHOC) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200447 sdata_info(sdata,
448 "failed to move IBSS STA %pM to state %d (%d) - keeping it anyway\n",
449 sta->sta.addr, state + 1, err);
Johannes Bergf09603a2012-01-20 13:55:21 +0100450 err = 0;
451 }
452
453 /* unwind on error */
454 for (; state > IEEE80211_STA_NOTEXIST; state--)
455 WARN_ON(drv_sta_state(local, sdata, sta, state, state - 1));
456
457 return err;
458}
459
Guy Eilam8c71df72011-08-17 15:18:14 +0300460/*
461 * should be called with sta_mtx locked
462 * this function replaces the mutex lock
463 * with a RCU lock
464 */
Johannes Berg4d339602011-12-15 11:24:20 +0100465static int sta_info_insert_finish(struct sta_info *sta) __acquires(RCU)
Guy Eilam8c71df72011-08-17 15:18:14 +0300466{
467 struct ieee80211_local *local = sta->local;
468 struct ieee80211_sub_if_data *sdata = sta->sdata;
Johannes Berg7852e362012-01-20 13:55:24 +0100469 struct station_info sinfo;
Guy Eilam8c71df72011-08-17 15:18:14 +0300470 int err = 0;
471
472 lockdep_assert_held(&local->sta_mtx);
Johannes Berg34e89502010-02-03 13:59:58 +0100473
Johannes Berg7852e362012-01-20 13:55:24 +0100474 /* check if STA exists already */
475 if (sta_info_get_bss(sdata, sta->sta.addr)) {
476 err = -EEXIST;
477 goto out_err;
Johannes Berg43ba7e92008-02-21 14:09:30 +0100478 }
Johannes Berg32bfd352007-12-19 01:31:26 +0100479
Johannes Berg7852e362012-01-20 13:55:24 +0100480 /* notify driver */
481 err = sta_info_insert_drv_state(local, sdata, sta);
482 if (err)
483 goto out_err;
Johannes Berg32bfd352007-12-19 01:31:26 +0100484
Johannes Berg7852e362012-01-20 13:55:24 +0100485 local->num_sta++;
486 local->sta_generation++;
487 smp_mb();
Johannes Berg4d339602011-12-15 11:24:20 +0100488
Johannes Berg7852e362012-01-20 13:55:24 +0100489 /* make the station visible */
490 sta_info_hash_add(local, sta);
Johannes Berg4d339602011-12-15 11:24:20 +0100491
Arik Nemtsov794454c2012-06-03 23:32:32 +0300492 list_add_rcu(&sta->list, &local->sta_list);
Johannes Berg83d5cc02012-01-12 09:31:10 +0100493
Johannes Berg7852e362012-01-20 13:55:24 +0100494 set_sta_flag(sta, WLAN_STA_INSERTED);
Johannes Berg4d339602011-12-15 11:24:20 +0100495
Eliad Peller21f659b2013-11-11 20:14:01 +0200496 ieee80211_recalc_min_chandef(sdata);
Johannes Berg7852e362012-01-20 13:55:24 +0100497 ieee80211_sta_debugfs_add(sta);
498 rate_control_add_sta_debugfs(sta);
Johannes Berg4d339602011-12-15 11:24:20 +0100499
Johannes Berg7852e362012-01-20 13:55:24 +0100500 memset(&sinfo, 0, sizeof(sinfo));
501 sinfo.filled = 0;
502 sinfo.generation = local->sta_generation;
503 cfg80211_new_sta(sdata->dev, sta->sta.addr, &sinfo, GFP_KERNEL);
Johannes Bergd0709a62008-02-25 16:27:46 +0100504
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200505 sta_dbg(sdata, "Inserted STA %pM\n", sta->sta.addr);
Jiri Bencf0706e82007-05-05 11:45:53 -0700506
Johannes Berg34e89502010-02-03 13:59:58 +0100507 /* move reference to rcu-protected */
508 rcu_read_lock();
509 mutex_unlock(&local->sta_mtx);
Jiri Bence9f207f2007-05-05 11:46:38 -0700510
Johannes Berg73651ee2008-02-25 16:27:47 +0100511 if (ieee80211_vif_is_mesh(&sdata->vif))
512 mesh_accept_plinks_update(sdata);
513
514 return 0;
Johannes Berg4d339602011-12-15 11:24:20 +0100515 out_err:
516 mutex_unlock(&local->sta_mtx);
517 rcu_read_lock();
518 return err;
Guy Eilam8c71df72011-08-17 15:18:14 +0300519}
520
521int sta_info_insert_rcu(struct sta_info *sta) __acquires(RCU)
522{
523 struct ieee80211_local *local = sta->local;
Guy Eilam8c71df72011-08-17 15:18:14 +0300524 int err = 0;
525
Johannes Berg4d339602011-12-15 11:24:20 +0100526 might_sleep();
527
Guy Eilam8c71df72011-08-17 15:18:14 +0300528 err = sta_info_insert_check(sta);
529 if (err) {
Jiri Bencf0706e82007-05-05 11:45:53 -0700530 rcu_read_lock();
531 goto out_free;
532 }
533
Johannes Berg004c8722008-02-20 11:21:35 +0100534 mutex_lock(&local->sta_mtx);
535
Johannes Berg4d339602011-12-15 11:24:20 +0100536 err = sta_info_insert_finish(sta);
Guy Eilam8c71df72011-08-17 15:18:14 +0300537 if (err)
Johannes Berg004c8722008-02-20 11:21:35 +0100538 goto out_free;
Johannes Bergd0709a62008-02-25 16:27:46 +0100539
Johannes Berg004c8722008-02-20 11:21:35 +0100540 return 0;
Johannes Berg93e5deb2008-04-01 15:21:00 +0200541 out_free:
542 BUG_ON(!err);
Johannes Bergd9a7ddb2011-12-14 12:35:30 +0100543 sta_info_free(local, sta);
Johannes Berg93e5deb2008-04-01 15:21:00 +0200544 return err;
Jiri Bencf0706e82007-05-05 11:45:53 -0700545}
546
Johannes Berg34e89502010-02-03 13:59:58 +0100547int sta_info_insert(struct sta_info *sta)
548{
549 int err = sta_info_insert_rcu(sta);
550
551 rcu_read_unlock();
552
553 return err;
554}
555
Marco Porschd012a602012-10-10 12:39:50 -0700556static inline void __bss_tim_set(u8 *tim, u16 id)
Johannes Berg004c8722008-02-20 11:21:35 +0100557{
558 /*
559 * This format has been mandated by the IEEE specifications,
560 * so this line may not be changed to use the __set_bit() format.
561 */
Marco Porschd012a602012-10-10 12:39:50 -0700562 tim[id / 8] |= (1 << (id % 8));
Johannes Berg004c8722008-02-20 11:21:35 +0100563}
564
Marco Porschd012a602012-10-10 12:39:50 -0700565static inline void __bss_tim_clear(u8 *tim, u16 id)
Johannes Berg004c8722008-02-20 11:21:35 +0100566{
567 /*
568 * This format has been mandated by the IEEE specifications,
569 * so this line may not be changed to use the __clear_bit() format.
570 */
Marco Porschd012a602012-10-10 12:39:50 -0700571 tim[id / 8] &= ~(1 << (id % 8));
Johannes Berg004c8722008-02-20 11:21:35 +0100572}
573
Ilan Peer3d5839b2013-03-05 15:27:20 +0200574static inline bool __bss_tim_get(u8 *tim, u16 id)
575{
576 /*
577 * This format has been mandated by the IEEE specifications,
578 * so this line may not be changed to use the test_bit() format.
579 */
580 return tim[id / 8] & (1 << (id % 8));
581}
582
Johannes Berg948d8872011-09-29 16:04:29 +0200583static unsigned long ieee80211_tids_for_ac(int ac)
Johannes Berg004c8722008-02-20 11:21:35 +0100584{
Johannes Berg948d8872011-09-29 16:04:29 +0200585 /* If we ever support TIDs > 7, this obviously needs to be adjusted */
586 switch (ac) {
587 case IEEE80211_AC_VO:
588 return BIT(6) | BIT(7);
589 case IEEE80211_AC_VI:
590 return BIT(4) | BIT(5);
591 case IEEE80211_AC_BE:
592 return BIT(0) | BIT(3);
593 case IEEE80211_AC_BK:
594 return BIT(1) | BIT(2);
595 default:
596 WARN_ON(1);
597 return 0;
Johannes Bergd0709a62008-02-25 16:27:46 +0100598 }
Johannes Berg004c8722008-02-20 11:21:35 +0100599}
600
Johannes Bergc868cb352011-09-29 16:04:27 +0200601void sta_info_recalc_tim(struct sta_info *sta)
Johannes Berg004c8722008-02-20 11:21:35 +0100602{
Johannes Bergc868cb352011-09-29 16:04:27 +0200603 struct ieee80211_local *local = sta->local;
Marco Porschd012a602012-10-10 12:39:50 -0700604 struct ps_data *ps;
Johannes Berg948d8872011-09-29 16:04:29 +0200605 bool indicate_tim = false;
606 u8 ignore_for_tim = sta->sta.uapsd_queues;
607 int ac;
Marco Porschd012a602012-10-10 12:39:50 -0700608 u16 id;
Johannes Berg004c8722008-02-20 11:21:35 +0100609
Marco Porschd012a602012-10-10 12:39:50 -0700610 if (sta->sdata->vif.type == NL80211_IFTYPE_AP ||
611 sta->sdata->vif.type == NL80211_IFTYPE_AP_VLAN) {
612 if (WARN_ON_ONCE(!sta->sdata->bss))
613 return;
614
615 ps = &sta->sdata->bss->ps;
616 id = sta->sta.aid;
Marco Porsch3f52b7e2013-01-30 18:14:08 +0100617#ifdef CONFIG_MAC80211_MESH
618 } else if (ieee80211_vif_is_mesh(&sta->sdata->vif)) {
619 ps = &sta->sdata->u.mesh.ps;
Thomas Pedersen204d1302013-11-05 11:17:05 -0800620 /* TIM map only for 1 <= PLID <= IEEE80211_MAX_AID */
Chun-Yeow Yeoh6f101ef2013-11-13 15:43:03 +0800621 id = sta->plid % (IEEE80211_MAX_AID + 1);
Marco Porsch3f52b7e2013-01-30 18:14:08 +0100622#endif
Marco Porschd012a602012-10-10 12:39:50 -0700623 } else {
Johannes Bergc868cb352011-09-29 16:04:27 +0200624 return;
Marco Porschd012a602012-10-10 12:39:50 -0700625 }
Johannes Berg3e122be2008-07-09 14:40:34 +0200626
Johannes Bergc868cb352011-09-29 16:04:27 +0200627 /* No need to do anything if the driver does all */
628 if (local->hw.flags & IEEE80211_HW_AP_LINK_PS)
629 return;
Johannes Berg004c8722008-02-20 11:21:35 +0100630
Johannes Bergc868cb352011-09-29 16:04:27 +0200631 if (sta->dead)
632 goto done;
Johannes Berg3e122be2008-07-09 14:40:34 +0200633
Johannes Berg948d8872011-09-29 16:04:29 +0200634 /*
635 * If all ACs are delivery-enabled then we should build
636 * the TIM bit for all ACs anyway; if only some are then
637 * we ignore those and build the TIM bit using only the
638 * non-enabled ones.
639 */
640 if (ignore_for_tim == BIT(IEEE80211_NUM_ACS) - 1)
641 ignore_for_tim = 0;
Johannes Berg3e122be2008-07-09 14:40:34 +0200642
Johannes Berg948d8872011-09-29 16:04:29 +0200643 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
644 unsigned long tids;
645
646 if (ignore_for_tim & BIT(ac))
647 continue;
648
649 indicate_tim |= !skb_queue_empty(&sta->tx_filtered[ac]) ||
650 !skb_queue_empty(&sta->ps_tx_buf[ac]);
651 if (indicate_tim)
652 break;
653
654 tids = ieee80211_tids_for_ac(ac);
655
656 indicate_tim |=
657 sta->driver_buffered_tids & tids;
Johannes Bergd0709a62008-02-25 16:27:46 +0100658 }
Johannes Berg004c8722008-02-20 11:21:35 +0100659
Johannes Bergc868cb352011-09-29 16:04:27 +0200660 done:
Johannes Berg65f704a2013-02-13 17:39:53 +0100661 spin_lock_bh(&local->tim_lock);
Johannes Berg004c8722008-02-20 11:21:35 +0100662
Ilan Peer3d5839b2013-03-05 15:27:20 +0200663 if (indicate_tim == __bss_tim_get(ps->tim, id))
664 goto out_unlock;
665
Johannes Berg948d8872011-09-29 16:04:29 +0200666 if (indicate_tim)
Marco Porschd012a602012-10-10 12:39:50 -0700667 __bss_tim_set(ps->tim, id);
Johannes Bergc868cb352011-09-29 16:04:27 +0200668 else
Marco Porschd012a602012-10-10 12:39:50 -0700669 __bss_tim_clear(ps->tim, id);
Johannes Berg3e122be2008-07-09 14:40:34 +0200670
Johannes Bergc868cb352011-09-29 16:04:27 +0200671 if (local->ops->set_tim) {
672 local->tim_in_locked_section = true;
Johannes Berg948d8872011-09-29 16:04:29 +0200673 drv_set_tim(local, &sta->sta, indicate_tim);
Johannes Bergc868cb352011-09-29 16:04:27 +0200674 local->tim_in_locked_section = false;
Johannes Berg004c8722008-02-20 11:21:35 +0100675 }
Johannes Berg004c8722008-02-20 11:21:35 +0100676
Ilan Peer3d5839b2013-03-05 15:27:20 +0200677out_unlock:
Johannes Berg65f704a2013-02-13 17:39:53 +0100678 spin_unlock_bh(&local->tim_lock);
Johannes Berg004c8722008-02-20 11:21:35 +0100679}
680
Johannes Bergcd0b8d82011-09-06 14:13:06 +0200681static bool sta_info_buffer_expired(struct sta_info *sta, struct sk_buff *skb)
Jiri Bencf0706e82007-05-05 11:45:53 -0700682{
Johannes Berge039fa42008-05-15 12:55:29 +0200683 struct ieee80211_tx_info *info;
Jiri Bencf0706e82007-05-05 11:45:53 -0700684 int timeout;
685
686 if (!skb)
Johannes Bergcd0b8d82011-09-06 14:13:06 +0200687 return false;
Jiri Bencf0706e82007-05-05 11:45:53 -0700688
Johannes Berge039fa42008-05-15 12:55:29 +0200689 info = IEEE80211_SKB_CB(skb);
Jiri Bencf0706e82007-05-05 11:45:53 -0700690
691 /* Timeout: (2 * listen_interval * beacon_int * 1024 / 1000000) sec */
Johannes Berg57c4d7b2009-04-23 16:10:04 +0200692 timeout = (sta->listen_interval *
693 sta->sdata->vif.bss_conf.beacon_int *
694 32 / 15625) * HZ;
Jiri Bencf0706e82007-05-05 11:45:53 -0700695 if (timeout < STA_TX_BUFFER_EXPIRE)
696 timeout = STA_TX_BUFFER_EXPIRE;
Johannes Berge039fa42008-05-15 12:55:29 +0200697 return time_after(jiffies, info->control.jiffies + timeout);
Jiri Bencf0706e82007-05-05 11:45:53 -0700698}
699
700
Johannes Berg948d8872011-09-29 16:04:29 +0200701static bool sta_info_cleanup_expire_buffered_ac(struct ieee80211_local *local,
702 struct sta_info *sta, int ac)
Jiri Bencf0706e82007-05-05 11:45:53 -0700703{
704 unsigned long flags;
705 struct sk_buff *skb;
706
Johannes Berg60750392011-09-29 16:04:28 +0200707 /*
708 * First check for frames that should expire on the filtered
709 * queue. Frames here were rejected by the driver and are on
710 * a separate queue to avoid reordering with normal PS-buffered
711 * frames. They also aren't accounted for right now in the
712 * total_ps_buffered counter.
713 */
Jiri Bencf0706e82007-05-05 11:45:53 -0700714 for (;;) {
Johannes Berg948d8872011-09-29 16:04:29 +0200715 spin_lock_irqsave(&sta->tx_filtered[ac].lock, flags);
716 skb = skb_peek(&sta->tx_filtered[ac]);
Johannes Berg57c4d7b2009-04-23 16:10:04 +0200717 if (sta_info_buffer_expired(sta, skb))
Johannes Berg948d8872011-09-29 16:04:29 +0200718 skb = __skb_dequeue(&sta->tx_filtered[ac]);
Johannes Berg836341a2008-02-20 02:07:21 +0100719 else
Jiri Bencf0706e82007-05-05 11:45:53 -0700720 skb = NULL;
Johannes Berg948d8872011-09-29 16:04:29 +0200721 spin_unlock_irqrestore(&sta->tx_filtered[ac].lock, flags);
Jiri Bencf0706e82007-05-05 11:45:53 -0700722
Johannes Berg60750392011-09-29 16:04:28 +0200723 /*
724 * Frames are queued in order, so if this one
725 * hasn't expired yet we can stop testing. If
726 * we actually reached the end of the queue we
727 * also need to stop, of course.
728 */
729 if (!skb)
730 break;
Felix Fietkaud4fa14c2012-10-10 22:40:23 +0200731 ieee80211_free_txskb(&local->hw, skb);
Johannes Berg60750392011-09-29 16:04:28 +0200732 }
733
734 /*
735 * Now also check the normal PS-buffered queue, this will
736 * only find something if the filtered queue was emptied
737 * since the filtered frames are all before the normal PS
738 * buffered frames.
739 */
Jiri Bencf0706e82007-05-05 11:45:53 -0700740 for (;;) {
Johannes Berg948d8872011-09-29 16:04:29 +0200741 spin_lock_irqsave(&sta->ps_tx_buf[ac].lock, flags);
742 skb = skb_peek(&sta->ps_tx_buf[ac]);
Jiri Bencf0706e82007-05-05 11:45:53 -0700743 if (sta_info_buffer_expired(sta, skb))
Johannes Berg948d8872011-09-29 16:04:29 +0200744 skb = __skb_dequeue(&sta->ps_tx_buf[ac]);
Jiri Bencf0706e82007-05-05 11:45:53 -0700745 else
746 skb = NULL;
Johannes Berg948d8872011-09-29 16:04:29 +0200747 spin_unlock_irqrestore(&sta->ps_tx_buf[ac].lock, flags);
Jiri Bencf0706e82007-05-05 11:45:53 -0700748
Johannes Berg60750392011-09-29 16:04:28 +0200749 /*
750 * frames are queued in order, so if this one
751 * hasn't expired yet (or we reached the end of
752 * the queue) we can stop testing
753 */
Johannes Berg836341a2008-02-20 02:07:21 +0100754 if (!skb)
Jiri Bencf0706e82007-05-05 11:45:53 -0700755 break;
Johannes Berg836341a2008-02-20 02:07:21 +0100756
Johannes Berg836341a2008-02-20 02:07:21 +0100757 local->total_ps_buffered--;
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200758 ps_dbg(sta->sdata, "Buffered frame expired (STA %pM)\n",
759 sta->sta.addr);
Felix Fietkaud4fa14c2012-10-10 22:40:23 +0200760 ieee80211_free_txskb(&local->hw, skb);
Jiri Bencf0706e82007-05-05 11:45:53 -0700761 }
Juuso Oikarinen3393a602010-04-19 10:12:52 +0300762
Johannes Berg60750392011-09-29 16:04:28 +0200763 /*
764 * Finally, recalculate the TIM bit for this station -- it might
765 * now be clear because the station was too slow to retrieve its
766 * frames.
767 */
768 sta_info_recalc_tim(sta);
769
770 /*
771 * Return whether there are any frames still buffered, this is
772 * used to check whether the cleanup timer still needs to run,
773 * if there are no frames we don't need to rearm the timer.
774 */
Johannes Berg948d8872011-09-29 16:04:29 +0200775 return !(skb_queue_empty(&sta->ps_tx_buf[ac]) &&
776 skb_queue_empty(&sta->tx_filtered[ac]));
777}
778
779static bool sta_info_cleanup_expire_buffered(struct ieee80211_local *local,
780 struct sta_info *sta)
781{
782 bool have_buffered = false;
783 int ac;
784
Marco Porsch3f52b7e2013-01-30 18:14:08 +0100785 /* This is only necessary for stations on BSS/MBSS interfaces */
786 if (!sta->sdata->bss &&
787 !ieee80211_vif_is_mesh(&sta->sdata->vif))
Johannes Berg948d8872011-09-29 16:04:29 +0200788 return false;
789
790 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++)
791 have_buffered |=
792 sta_info_cleanup_expire_buffered_ac(local, sta, ac);
793
794 return have_buffered;
Jiri Bencf0706e82007-05-05 11:45:53 -0700795}
796
Johannes Berg83d5cc02012-01-12 09:31:10 +0100797int __must_check __sta_info_destroy(struct sta_info *sta)
Johannes Berg34e89502010-02-03 13:59:58 +0100798{
799 struct ieee80211_local *local;
800 struct ieee80211_sub_if_data *sdata;
Johannes Berg6d10e462013-03-06 23:09:11 +0100801 int ret;
Johannes Berg34e89502010-02-03 13:59:58 +0100802
803 might_sleep();
804
805 if (!sta)
806 return -ENOENT;
807
808 local = sta->local;
809 sdata = sta->sdata;
810
Johannes Berg83d5cc02012-01-12 09:31:10 +0100811 lockdep_assert_held(&local->sta_mtx);
812
Johannes Berg098a6072010-04-06 11:18:47 +0200813 /*
814 * Before removing the station from the driver and
815 * rate control, it might still start new aggregation
816 * sessions -- block that to make sure the tear-down
817 * will be sufficient.
818 */
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200819 set_sta_flag(sta, WLAN_STA_BLOCK_BA);
Johannes Bergc82c4a82012-07-18 13:31:31 +0200820 ieee80211_sta_tear_down_BA_sessions(sta, AGG_STOP_DESTROY_STA);
Johannes Berg098a6072010-04-06 11:18:47 +0200821
Johannes Berg34e89502010-02-03 13:59:58 +0100822 ret = sta_info_hash_del(local, sta);
Johannes Bergb01711b2013-12-04 20:25:27 +0100823 if (WARN_ON(ret))
Johannes Berg34e89502010-02-03 13:59:58 +0100824 return ret;
825
Arik Nemtsov794454c2012-06-03 23:32:32 +0300826 list_del_rcu(&sta->list);
Johannes Berg4d339602011-12-15 11:24:20 +0100827
Johannes Berg6a9d1b92013-12-04 22:39:17 +0100828 drv_sta_pre_rcu_remove(local, sta->sdata, sta);
829
Johannes Berga710c812013-12-04 20:11:06 +0100830 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN &&
831 rcu_access_pointer(sdata->u.vlan.sta) == sta)
832 RCU_INIT_POINTER(sdata->u.vlan.sta, NULL);
833
Johannes Bergc8782072013-12-04 23:05:45 +0100834 synchronize_net();
835 /* now keys can no longer be reached */
Johannes Berg6d10e462013-03-06 23:09:11 +0100836 ieee80211_free_sta_keys(local, sta);
Johannes Berg34e89502010-02-03 13:59:58 +0100837
838 sta->dead = true;
839
Johannes Berg34e89502010-02-03 13:59:58 +0100840 local->num_sta--;
841 local->sta_generation++;
842
Johannes Berg83d5cc02012-01-12 09:31:10 +0100843 while (sta->sta_state > IEEE80211_STA_NONE) {
Johannes Bergf09603a2012-01-20 13:55:21 +0100844 ret = sta_info_move_state(sta, sta->sta_state - 1);
845 if (ret) {
Johannes Berg83d5cc02012-01-12 09:31:10 +0100846 WARN_ON_ONCE(1);
847 break;
848 }
849 }
Johannes Bergd9a7ddb2011-12-14 12:35:30 +0100850
Johannes Bergf09603a2012-01-20 13:55:21 +0100851 if (sta->uploaded) {
Johannes Bergf09603a2012-01-20 13:55:21 +0100852 ret = drv_sta_state(local, sdata, sta, IEEE80211_STA_NONE,
853 IEEE80211_STA_NOTEXIST);
854 WARN_ON_ONCE(ret != 0);
855 }
Johannes Berg34e89502010-02-03 13:59:58 +0100856
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200857 sta_dbg(sdata, "Removed STA %pM\n", sta->sta.addr);
858
Jouni Malinenec15e682011-03-23 15:29:52 +0200859 cfg80211_del_sta(sdata->dev, sta->sta.addr, GFP_KERNEL);
860
Johannes Berg34e89502010-02-03 13:59:58 +0100861 rate_control_remove_sta_debugfs(sta);
862 ieee80211_sta_debugfs_remove(sta);
Eliad Peller21f659b2013-11-11 20:14:01 +0200863 ieee80211_recalc_min_chandef(sdata);
Johannes Berg34e89502010-02-03 13:59:58 +0100864
Johannes Bergd34ba212013-12-04 22:46:11 +0100865 cleanup_single_sta(sta);
Johannes Berg34e89502010-02-03 13:59:58 +0100866
867 return 0;
868}
869
870int sta_info_destroy_addr(struct ieee80211_sub_if_data *sdata, const u8 *addr)
871{
872 struct sta_info *sta;
873 int ret;
874
875 mutex_lock(&sdata->local->sta_mtx);
Johannes Berg7852e362012-01-20 13:55:24 +0100876 sta = sta_info_get(sdata, addr);
Johannes Berg34e89502010-02-03 13:59:58 +0100877 ret = __sta_info_destroy(sta);
878 mutex_unlock(&sdata->local->sta_mtx);
879
880 return ret;
881}
882
883int sta_info_destroy_addr_bss(struct ieee80211_sub_if_data *sdata,
884 const u8 *addr)
885{
886 struct sta_info *sta;
887 int ret;
888
889 mutex_lock(&sdata->local->sta_mtx);
Johannes Berg7852e362012-01-20 13:55:24 +0100890 sta = sta_info_get_bss(sdata, addr);
Johannes Berg34e89502010-02-03 13:59:58 +0100891 ret = __sta_info_destroy(sta);
892 mutex_unlock(&sdata->local->sta_mtx);
893
894 return ret;
895}
Jiri Bencf0706e82007-05-05 11:45:53 -0700896
897static void sta_info_cleanup(unsigned long data)
898{
899 struct ieee80211_local *local = (struct ieee80211_local *) data;
900 struct sta_info *sta;
Juuso Oikarinen3393a602010-04-19 10:12:52 +0300901 bool timer_needed = false;
Jiri Bencf0706e82007-05-05 11:45:53 -0700902
Johannes Bergd0709a62008-02-25 16:27:46 +0100903 rcu_read_lock();
904 list_for_each_entry_rcu(sta, &local->sta_list, list)
Juuso Oikarinen3393a602010-04-19 10:12:52 +0300905 if (sta_info_cleanup_expire_buffered(local, sta))
906 timer_needed = true;
Johannes Bergd0709a62008-02-25 16:27:46 +0100907 rcu_read_unlock();
Jiri Bencf0706e82007-05-05 11:45:53 -0700908
Johannes Berg5bb644a2009-05-17 11:40:42 +0200909 if (local->quiescing)
910 return;
911
Juuso Oikarinen3393a602010-04-19 10:12:52 +0300912 if (!timer_needed)
913 return;
914
Johannes Berg26d59532011-04-01 13:52:48 +0200915 mod_timer(&local->sta_cleanup,
916 round_jiffies(jiffies + STA_INFO_CLEANUP_INTERVAL));
Jiri Bencf0706e82007-05-05 11:45:53 -0700917}
918
919void sta_info_init(struct ieee80211_local *local)
920{
Johannes Berg4d339602011-12-15 11:24:20 +0100921 spin_lock_init(&local->tim_lock);
Johannes Berg34e89502010-02-03 13:59:58 +0100922 mutex_init(&local->sta_mtx);
Jiri Bencf0706e82007-05-05 11:45:53 -0700923 INIT_LIST_HEAD(&local->sta_list);
Jiri Bencf0706e82007-05-05 11:45:53 -0700924
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -0800925 setup_timer(&local->sta_cleanup, sta_info_cleanup,
926 (unsigned long)local);
Jiri Bencf0706e82007-05-05 11:45:53 -0700927}
928
929void sta_info_stop(struct ieee80211_local *local)
930{
Johannes Berga56f9922012-12-13 23:08:52 +0100931 del_timer_sync(&local->sta_cleanup);
Jiri Bencf0706e82007-05-05 11:45:53 -0700932}
933
Johannes Berg051007d2012-12-13 23:49:02 +0100934
Johannes Bergd34ba212013-12-04 22:46:11 +0100935int sta_info_flush(struct ieee80211_sub_if_data *sdata)
Jiri Bencf0706e82007-05-05 11:45:53 -0700936{
Johannes Bergb998e8b2012-12-13 23:07:46 +0100937 struct ieee80211_local *local = sdata->local;
Jiri Bencf0706e82007-05-05 11:45:53 -0700938 struct sta_info *sta, *tmp;
Johannes Berg44213b52008-02-25 16:27:49 +0100939 int ret = 0;
Jiri Bencf0706e82007-05-05 11:45:53 -0700940
Johannes Bergd0709a62008-02-25 16:27:46 +0100941 might_sleep();
942
Johannes Berg34e89502010-02-03 13:59:58 +0100943 mutex_lock(&local->sta_mtx);
Johannes Berg34e89502010-02-03 13:59:58 +0100944 list_for_each_entry_safe(sta, tmp, &local->sta_list, list) {
Johannes Bergb998e8b2012-12-13 23:07:46 +0100945 if (sdata == sta->sdata) {
Johannes Berg34e89502010-02-03 13:59:58 +0100946 WARN_ON(__sta_info_destroy(sta));
Johannes Berg34316832012-02-25 21:40:46 +0100947 ret++;
948 }
Johannes Berg34e89502010-02-03 13:59:58 +0100949 }
950 mutex_unlock(&local->sta_mtx);
Johannes Berg44213b52008-02-25 16:27:49 +0100951
Johannes Berg051007d2012-12-13 23:49:02 +0100952 return ret;
953}
954
Johannes Berg24723d12008-09-11 00:01:46 +0200955void ieee80211_sta_expire(struct ieee80211_sub_if_data *sdata,
956 unsigned long exp_time)
957{
958 struct ieee80211_local *local = sdata->local;
959 struct sta_info *sta, *tmp;
Johannes Berg24723d12008-09-11 00:01:46 +0200960
Johannes Berg34e89502010-02-03 13:59:58 +0100961 mutex_lock(&local->sta_mtx);
Mohammed Shafi Shajakhane46a2cf2011-12-26 10:43:29 +0530962
963 list_for_each_entry_safe(sta, tmp, &local->sta_list, list) {
Marek Lindnerec2b7742011-12-20 23:16:52 +0800964 if (sdata != sta->sdata)
965 continue;
966
Johannes Berg24723d12008-09-11 00:01:46 +0200967 if (time_after(jiffies, sta->last_rx + exp_time)) {
Mohammed Shafi Shajakhaneea57d42012-10-08 21:33:47 +0530968 sta_dbg(sta->sdata, "expiring inactive STA %pM\n",
969 sta->sta.addr);
Marco Porsch3f52b7e2013-01-30 18:14:08 +0100970
971 if (ieee80211_vif_is_mesh(&sdata->vif) &&
972 test_sta_flag(sta, WLAN_STA_PS_STA))
973 atomic_dec(&sdata->u.mesh.ps.num_sta_ps);
974
Johannes Berg34e89502010-02-03 13:59:58 +0100975 WARN_ON(__sta_info_destroy(sta));
Johannes Berg24723d12008-09-11 00:01:46 +0200976 }
Mohammed Shafi Shajakhane46a2cf2011-12-26 10:43:29 +0530977 }
978
Johannes Berg34e89502010-02-03 13:59:58 +0100979 mutex_unlock(&local->sta_mtx);
Johannes Berg24723d12008-09-11 00:01:46 +0200980}
Johannes Berg17741cd2008-09-11 00:02:02 +0200981
Ben Greear686b9cb2010-09-23 09:44:36 -0700982struct ieee80211_sta *ieee80211_find_sta_by_ifaddr(struct ieee80211_hw *hw,
983 const u8 *addr,
984 const u8 *localaddr)
Johannes Berg17741cd2008-09-11 00:02:02 +0200985{
Johannes Bergabe60632009-11-25 17:46:18 +0100986 struct sta_info *sta, *nxt;
Johannes Berg17741cd2008-09-11 00:02:02 +0200987
Ben Greear686b9cb2010-09-23 09:44:36 -0700988 /*
989 * Just return a random station if localaddr is NULL
990 * ... first in list.
991 */
Johannes Bergf7c65592010-04-30 13:48:36 +0200992 for_each_sta_info(hw_to_local(hw), addr, sta, nxt) {
Ben Greear686b9cb2010-09-23 09:44:36 -0700993 if (localaddr &&
Joe Perchesb203ca32012-05-08 18:56:52 +0000994 !ether_addr_equal(sta->sdata->vif.addr, localaddr))
Ben Greear686b9cb2010-09-23 09:44:36 -0700995 continue;
Johannes Bergf7c65592010-04-30 13:48:36 +0200996 if (!sta->uploaded)
997 return NULL;
Johannes Bergabe60632009-11-25 17:46:18 +0100998 return &sta->sta;
Johannes Bergf7c65592010-04-30 13:48:36 +0200999 }
1000
Johannes Bergabe60632009-11-25 17:46:18 +01001001 return NULL;
Johannes Berg17741cd2008-09-11 00:02:02 +02001002}
Ben Greear686b9cb2010-09-23 09:44:36 -07001003EXPORT_SYMBOL_GPL(ieee80211_find_sta_by_ifaddr);
Johannes Berg5ed176e2009-11-04 14:42:28 +01001004
1005struct ieee80211_sta *ieee80211_find_sta(struct ieee80211_vif *vif,
1006 const u8 *addr)
1007{
Johannes Bergf7c65592010-04-30 13:48:36 +02001008 struct sta_info *sta;
Johannes Berg5ed176e2009-11-04 14:42:28 +01001009
1010 if (!vif)
1011 return NULL;
1012
Johannes Bergf7c65592010-04-30 13:48:36 +02001013 sta = sta_info_get_bss(vif_to_sdata(vif), addr);
1014 if (!sta)
1015 return NULL;
Johannes Berg5ed176e2009-11-04 14:42:28 +01001016
Johannes Bergf7c65592010-04-30 13:48:36 +02001017 if (!sta->uploaded)
1018 return NULL;
1019
1020 return &sta->sta;
Johannes Berg5ed176e2009-11-04 14:42:28 +01001021}
Johannes Berg17741cd2008-09-11 00:02:02 +02001022EXPORT_SYMBOL(ieee80211_find_sta);
Johannes Bergaf818582009-11-06 11:35:50 +01001023
Johannes Berg50a94322010-11-16 11:50:28 -08001024static void clear_sta_ps_flags(void *_sta)
1025{
1026 struct sta_info *sta = _sta;
Helmut Schaa608383b2012-01-30 15:18:00 +01001027 struct ieee80211_sub_if_data *sdata = sta->sdata;
Marco Porschd012a602012-10-10 12:39:50 -07001028 struct ps_data *ps;
1029
1030 if (sdata->vif.type == NL80211_IFTYPE_AP ||
1031 sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
1032 ps = &sdata->bss->ps;
Marco Porsch3f52b7e2013-01-30 18:14:08 +01001033 else if (ieee80211_vif_is_mesh(&sdata->vif))
1034 ps = &sdata->u.mesh.ps;
Marco Porschd012a602012-10-10 12:39:50 -07001035 else
1036 return;
Johannes Berg50a94322010-11-16 11:50:28 -08001037
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001038 clear_sta_flag(sta, WLAN_STA_PS_DRIVER);
Helmut Schaa608383b2012-01-30 15:18:00 +01001039 if (test_and_clear_sta_flag(sta, WLAN_STA_PS_STA))
Marco Porschd012a602012-10-10 12:39:50 -07001040 atomic_dec(&ps->num_sta_ps);
Johannes Berg50a94322010-11-16 11:50:28 -08001041}
1042
Johannes Bergaf818582009-11-06 11:35:50 +01001043/* powersave support code */
1044void ieee80211_sta_ps_deliver_wakeup(struct sta_info *sta)
1045{
1046 struct ieee80211_sub_if_data *sdata = sta->sdata;
1047 struct ieee80211_local *local = sdata->local;
Johannes Berg948d8872011-09-29 16:04:29 +02001048 struct sk_buff_head pending;
1049 int filtered = 0, buffered = 0, ac;
Arik Nemtsov987c2852012-11-05 10:27:52 +02001050 unsigned long flags;
Johannes Bergaf818582009-11-06 11:35:50 +01001051
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001052 clear_sta_flag(sta, WLAN_STA_SP);
Johannes Berg47086fc2011-09-29 16:04:33 +02001053
Johannes Berg5a306f52012-11-14 23:22:21 +01001054 BUILD_BUG_ON(BITS_TO_LONGS(IEEE80211_NUM_TIDS) > 1);
Johannes Berg948d8872011-09-29 16:04:29 +02001055 sta->driver_buffered_tids = 0;
1056
Arik Nemtsovd057e5a2011-01-31 22:29:13 +02001057 if (!(local->hw.flags & IEEE80211_HW_AP_LINK_PS))
1058 drv_sta_notify(local, sdata, STA_NOTIFY_AWAKE, &sta->sta);
Johannes Bergaf818582009-11-06 11:35:50 +01001059
Johannes Berg948d8872011-09-29 16:04:29 +02001060 skb_queue_head_init(&pending);
Johannes Bergaf818582009-11-06 11:35:50 +01001061
1062 /* Send all buffered frames to the station */
Johannes Berg948d8872011-09-29 16:04:29 +02001063 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
1064 int count = skb_queue_len(&pending), tmp;
1065
Arik Nemtsov987c2852012-11-05 10:27:52 +02001066 spin_lock_irqsave(&sta->tx_filtered[ac].lock, flags);
Johannes Berg948d8872011-09-29 16:04:29 +02001067 skb_queue_splice_tail_init(&sta->tx_filtered[ac], &pending);
Arik Nemtsov987c2852012-11-05 10:27:52 +02001068 spin_unlock_irqrestore(&sta->tx_filtered[ac].lock, flags);
Johannes Berg948d8872011-09-29 16:04:29 +02001069 tmp = skb_queue_len(&pending);
1070 filtered += tmp - count;
1071 count = tmp;
1072
Arik Nemtsov987c2852012-11-05 10:27:52 +02001073 spin_lock_irqsave(&sta->ps_tx_buf[ac].lock, flags);
Johannes Berg948d8872011-09-29 16:04:29 +02001074 skb_queue_splice_tail_init(&sta->ps_tx_buf[ac], &pending);
Arik Nemtsov987c2852012-11-05 10:27:52 +02001075 spin_unlock_irqrestore(&sta->ps_tx_buf[ac].lock, flags);
Johannes Berg948d8872011-09-29 16:04:29 +02001076 tmp = skb_queue_len(&pending);
1077 buffered += tmp - count;
1078 }
1079
1080 ieee80211_add_pending_skbs_fn(local, &pending, clear_sta_ps_flags, sta);
1081
Emmanuel Grumbach687da132013-10-01 16:45:43 +03001082 /* This station just woke up and isn't aware of our SMPS state */
1083 if (!ieee80211_smps_is_restrictive(sta->known_smps_mode,
1084 sdata->smps_mode) &&
1085 sta->known_smps_mode != sdata->bss->req_smps &&
1086 sta_info_tx_streams(sta) != 1) {
1087 ht_dbg(sdata,
1088 "%pM just woke up and MIMO capable - update SMPS\n",
1089 sta->sta.addr);
1090 ieee80211_send_smps_action(sdata, sdata->bss->req_smps,
1091 sta->sta.addr,
1092 sdata->vif.bss_conf.bssid);
1093 }
1094
Johannes Bergaf818582009-11-06 11:35:50 +01001095 local->total_ps_buffered -= buffered;
1096
Johannes Bergc868cb352011-09-29 16:04:27 +02001097 sta_info_recalc_tim(sta);
1098
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02001099 ps_dbg(sdata,
1100 "STA %pM aid %d sending %d filtered/%d PS frames since STA not sleeping anymore\n",
1101 sta->sta.addr, sta->sta.aid, filtered, buffered);
Johannes Bergaf818582009-11-06 11:35:50 +01001102}
1103
Johannes Bergce662b442011-09-29 16:04:34 +02001104static void ieee80211_send_null_response(struct ieee80211_sub_if_data *sdata,
1105 struct sta_info *sta, int tid,
Johannes Berg40b96402011-09-29 16:04:38 +02001106 enum ieee80211_frame_release_type reason)
Johannes Bergce662b442011-09-29 16:04:34 +02001107{
1108 struct ieee80211_local *local = sdata->local;
1109 struct ieee80211_qos_hdr *nullfunc;
1110 struct sk_buff *skb;
1111 int size = sizeof(*nullfunc);
1112 __le16 fc;
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001113 bool qos = test_sta_flag(sta, WLAN_STA_WME);
Johannes Bergce662b442011-09-29 16:04:34 +02001114 struct ieee80211_tx_info *info;
Johannes Berg55de9082012-07-26 17:24:39 +02001115 struct ieee80211_chanctx_conf *chanctx_conf;
Johannes Bergce662b442011-09-29 16:04:34 +02001116
1117 if (qos) {
1118 fc = cpu_to_le16(IEEE80211_FTYPE_DATA |
1119 IEEE80211_STYPE_QOS_NULLFUNC |
1120 IEEE80211_FCTL_FROMDS);
1121 } else {
1122 size -= 2;
1123 fc = cpu_to_le16(IEEE80211_FTYPE_DATA |
1124 IEEE80211_STYPE_NULLFUNC |
1125 IEEE80211_FCTL_FROMDS);
1126 }
1127
1128 skb = dev_alloc_skb(local->hw.extra_tx_headroom + size);
1129 if (!skb)
1130 return;
1131
1132 skb_reserve(skb, local->hw.extra_tx_headroom);
1133
1134 nullfunc = (void *) skb_put(skb, size);
1135 nullfunc->frame_control = fc;
1136 nullfunc->duration_id = 0;
1137 memcpy(nullfunc->addr1, sta->sta.addr, ETH_ALEN);
1138 memcpy(nullfunc->addr2, sdata->vif.addr, ETH_ALEN);
1139 memcpy(nullfunc->addr3, sdata->vif.addr, ETH_ALEN);
1140
Johannes Berg59b66252011-10-13 13:19:19 +02001141 skb->priority = tid;
1142 skb_set_queue_mapping(skb, ieee802_1d_to_ac[tid]);
Johannes Bergce662b442011-09-29 16:04:34 +02001143 if (qos) {
Johannes Bergce662b442011-09-29 16:04:34 +02001144 nullfunc->qos_ctrl = cpu_to_le16(tid);
1145
Johannes Berg40b96402011-09-29 16:04:38 +02001146 if (reason == IEEE80211_FRAME_RELEASE_UAPSD)
Johannes Bergce662b442011-09-29 16:04:34 +02001147 nullfunc->qos_ctrl |=
1148 cpu_to_le16(IEEE80211_QOS_CTL_EOSP);
1149 }
1150
1151 info = IEEE80211_SKB_CB(skb);
1152
1153 /*
1154 * Tell TX path to send this frame even though the
1155 * STA may still remain is PS mode after this frame
Johannes Bergdeeaee12011-09-29 16:04:35 +02001156 * exchange. Also set EOSP to indicate this packet
1157 * ends the poll/service period.
Johannes Bergce662b442011-09-29 16:04:34 +02001158 */
Johannes Berg02f2f1a2012-02-27 12:18:30 +01001159 info->flags |= IEEE80211_TX_CTL_NO_PS_BUFFER |
Felix Fietkaud6d23de22013-06-04 12:15:42 +02001160 IEEE80211_TX_CTL_PS_RESPONSE |
Johannes Bergdeeaee12011-09-29 16:04:35 +02001161 IEEE80211_TX_STATUS_EOSP |
1162 IEEE80211_TX_CTL_REQ_TX_STATUS;
Johannes Bergce662b442011-09-29 16:04:34 +02001163
Johannes Berg40b96402011-09-29 16:04:38 +02001164 drv_allow_buffered_frames(local, sta, BIT(tid), 1, reason, false);
1165
Johannes Berg89afe612013-02-13 15:39:57 +01001166 skb->dev = sdata->dev;
1167
Johannes Berg55de9082012-07-26 17:24:39 +02001168 rcu_read_lock();
1169 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
1170 if (WARN_ON(!chanctx_conf)) {
1171 rcu_read_unlock();
1172 kfree_skb(skb);
1173 return;
1174 }
1175
Johannes Berg4bf88532012-11-09 11:39:59 +01001176 ieee80211_xmit(sdata, skb, chanctx_conf->def.chan->band);
Johannes Berg55de9082012-07-26 17:24:39 +02001177 rcu_read_unlock();
Johannes Bergce662b442011-09-29 16:04:34 +02001178}
1179
Johannes Berg47086fc2011-09-29 16:04:33 +02001180static void
1181ieee80211_sta_ps_deliver_response(struct sta_info *sta,
1182 int n_frames, u8 ignored_acs,
1183 enum ieee80211_frame_release_type reason)
Johannes Bergaf818582009-11-06 11:35:50 +01001184{
1185 struct ieee80211_sub_if_data *sdata = sta->sdata;
1186 struct ieee80211_local *local = sdata->local;
Johannes Berg4049e092011-09-29 16:04:32 +02001187 bool found = false;
Johannes Berg948d8872011-09-29 16:04:29 +02001188 bool more_data = false;
1189 int ac;
Johannes Berg4049e092011-09-29 16:04:32 +02001190 unsigned long driver_release_tids = 0;
Johannes Berg47086fc2011-09-29 16:04:33 +02001191 struct sk_buff_head frames;
1192
Johannes Bergdeeaee12011-09-29 16:04:35 +02001193 /* Service or PS-Poll period starts */
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001194 set_sta_flag(sta, WLAN_STA_SP);
Johannes Bergdeeaee12011-09-29 16:04:35 +02001195
Johannes Berg47086fc2011-09-29 16:04:33 +02001196 __skb_queue_head_init(&frames);
Johannes Bergaf818582009-11-06 11:35:50 +01001197
Johannes Berg948d8872011-09-29 16:04:29 +02001198 /*
Johannes Berg47086fc2011-09-29 16:04:33 +02001199 * Get response frame(s) and more data bit for it.
Johannes Berg948d8872011-09-29 16:04:29 +02001200 */
1201 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
Johannes Berg4049e092011-09-29 16:04:32 +02001202 unsigned long tids;
1203
Johannes Berg47086fc2011-09-29 16:04:33 +02001204 if (ignored_acs & BIT(ac))
Johannes Berg948d8872011-09-29 16:04:29 +02001205 continue;
1206
Johannes Berg4049e092011-09-29 16:04:32 +02001207 tids = ieee80211_tids_for_ac(ac);
1208
1209 if (!found) {
1210 driver_release_tids = sta->driver_buffered_tids & tids;
1211 if (driver_release_tids) {
1212 found = true;
1213 } else {
Johannes Berg47086fc2011-09-29 16:04:33 +02001214 struct sk_buff *skb;
1215
1216 while (n_frames > 0) {
1217 skb = skb_dequeue(&sta->tx_filtered[ac]);
1218 if (!skb) {
1219 skb = skb_dequeue(
1220 &sta->ps_tx_buf[ac]);
1221 if (skb)
1222 local->total_ps_buffered--;
1223 }
1224 if (!skb)
1225 break;
1226 n_frames--;
Johannes Berg4049e092011-09-29 16:04:32 +02001227 found = true;
Johannes Berg47086fc2011-09-29 16:04:33 +02001228 __skb_queue_tail(&frames, skb);
1229 }
Johannes Berg4049e092011-09-29 16:04:32 +02001230 }
1231
1232 /*
1233 * If the driver has data on more than one TID then
1234 * certainly there's more data if we release just a
1235 * single frame now (from a single TID).
1236 */
Johannes Berg47086fc2011-09-29 16:04:33 +02001237 if (reason == IEEE80211_FRAME_RELEASE_PSPOLL &&
1238 hweight16(driver_release_tids) > 1) {
Johannes Berg4049e092011-09-29 16:04:32 +02001239 more_data = true;
1240 driver_release_tids =
1241 BIT(ffs(driver_release_tids) - 1);
1242 break;
Johannes Berg948d8872011-09-29 16:04:29 +02001243 }
1244 }
1245
Johannes Berg948d8872011-09-29 16:04:29 +02001246 if (!skb_queue_empty(&sta->tx_filtered[ac]) ||
1247 !skb_queue_empty(&sta->ps_tx_buf[ac])) {
1248 more_data = true;
1249 break;
1250 }
Johannes Bergaf818582009-11-06 11:35:50 +01001251 }
Johannes Bergaf818582009-11-06 11:35:50 +01001252
Johannes Berg4049e092011-09-29 16:04:32 +02001253 if (!found) {
Johannes Bergce662b442011-09-29 16:04:34 +02001254 int tid;
Johannes Berg4049e092011-09-29 16:04:32 +02001255
Johannes Bergce662b442011-09-29 16:04:34 +02001256 /*
1257 * For PS-Poll, this can only happen due to a race condition
1258 * when we set the TIM bit and the station notices it, but
1259 * before it can poll for the frame we expire it.
1260 *
1261 * For uAPSD, this is said in the standard (11.2.1.5 h):
1262 * At each unscheduled SP for a non-AP STA, the AP shall
1263 * attempt to transmit at least one MSDU or MMPDU, but no
1264 * more than the value specified in the Max SP Length field
1265 * in the QoS Capability element from delivery-enabled ACs,
1266 * that are destined for the non-AP STA.
1267 *
1268 * Since we have no other MSDU/MMPDU, transmit a QoS null frame.
1269 */
1270
1271 /* This will evaluate to 1, 3, 5 or 7. */
1272 tid = 7 - ((ffs(~ignored_acs) - 1) << 1);
1273
Johannes Berg40b96402011-09-29 16:04:38 +02001274 ieee80211_send_null_response(sdata, sta, tid, reason);
Johannes Berg4049e092011-09-29 16:04:32 +02001275 return;
1276 }
1277
Johannes Berg47086fc2011-09-29 16:04:33 +02001278 if (!driver_release_tids) {
1279 struct sk_buff_head pending;
1280 struct sk_buff *skb;
Johannes Berg40b96402011-09-29 16:04:38 +02001281 int num = 0;
1282 u16 tids = 0;
Johannes Bergaf818582009-11-06 11:35:50 +01001283
Johannes Berg47086fc2011-09-29 16:04:33 +02001284 skb_queue_head_init(&pending);
Johannes Bergaf818582009-11-06 11:35:50 +01001285
Johannes Berg47086fc2011-09-29 16:04:33 +02001286 while ((skb = __skb_dequeue(&frames))) {
1287 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1288 struct ieee80211_hdr *hdr = (void *) skb->data;
Johannes Berg40b96402011-09-29 16:04:38 +02001289 u8 *qoshdr = NULL;
1290
1291 num++;
Johannes Bergaf818582009-11-06 11:35:50 +01001292
Johannes Berg47086fc2011-09-29 16:04:33 +02001293 /*
1294 * Tell TX path to send this frame even though the
1295 * STA may still remain is PS mode after this frame
1296 * exchange.
1297 */
Felix Fietkaud6d23de22013-06-04 12:15:42 +02001298 info->flags |= IEEE80211_TX_CTL_NO_PS_BUFFER |
1299 IEEE80211_TX_CTL_PS_RESPONSE;
Johannes Bergaf818582009-11-06 11:35:50 +01001300
Johannes Berg47086fc2011-09-29 16:04:33 +02001301 /*
1302 * Use MoreData flag to indicate whether there are
1303 * more buffered frames for this STA
1304 */
Janusz.Dziedzic@tieto.com24b9c372011-11-07 09:47:47 +02001305 if (more_data || !skb_queue_empty(&frames))
Johannes Berg47086fc2011-09-29 16:04:33 +02001306 hdr->frame_control |=
1307 cpu_to_le16(IEEE80211_FCTL_MOREDATA);
Janusz.Dziedzic@tieto.com24b9c372011-11-07 09:47:47 +02001308 else
1309 hdr->frame_control &=
1310 cpu_to_le16(~IEEE80211_FCTL_MOREDATA);
Johannes Berg47086fc2011-09-29 16:04:33 +02001311
Johannes Berg40b96402011-09-29 16:04:38 +02001312 if (ieee80211_is_data_qos(hdr->frame_control) ||
1313 ieee80211_is_qos_nullfunc(hdr->frame_control))
1314 qoshdr = ieee80211_get_qos_ctl(hdr);
1315
Marco Porsch52a3f202012-03-16 15:30:26 +01001316 /* end service period after last frame */
1317 if (skb_queue_empty(&frames)) {
1318 if (reason == IEEE80211_FRAME_RELEASE_UAPSD &&
1319 qoshdr)
1320 *qoshdr |= IEEE80211_QOS_CTL_EOSP;
Johannes Berg47086fc2011-09-29 16:04:33 +02001321
Marco Porsch52a3f202012-03-16 15:30:26 +01001322 info->flags |= IEEE80211_TX_STATUS_EOSP |
1323 IEEE80211_TX_CTL_REQ_TX_STATUS;
1324 }
Johannes Bergdeeaee12011-09-29 16:04:35 +02001325
Johannes Berg40b96402011-09-29 16:04:38 +02001326 if (qoshdr)
1327 tids |= BIT(*qoshdr & IEEE80211_QOS_CTL_TID_MASK);
1328 else
1329 tids |= BIT(0);
1330
Johannes Berg47086fc2011-09-29 16:04:33 +02001331 __skb_queue_tail(&pending, skb);
1332 }
1333
Johannes Berg40b96402011-09-29 16:04:38 +02001334 drv_allow_buffered_frames(local, sta, tids, num,
1335 reason, more_data);
1336
Johannes Berg47086fc2011-09-29 16:04:33 +02001337 ieee80211_add_pending_skbs(local, &pending);
Johannes Bergaf818582009-11-06 11:35:50 +01001338
Johannes Bergc868cb352011-09-29 16:04:27 +02001339 sta_info_recalc_tim(sta);
Johannes Bergaf818582009-11-06 11:35:50 +01001340 } else {
1341 /*
Johannes Berg4049e092011-09-29 16:04:32 +02001342 * We need to release a frame that is buffered somewhere in the
1343 * driver ... it'll have to handle that.
1344 * Note that, as per the comment above, it'll also have to see
1345 * if there is more than just one frame on the specific TID that
1346 * we're releasing from, and it needs to set the more-data bit
1347 * accordingly if we tell it that there's no more data. If we do
1348 * tell it there's more data, then of course the more-data bit
1349 * needs to be set anyway.
Johannes Bergaf818582009-11-06 11:35:50 +01001350 */
Johannes Berg4049e092011-09-29 16:04:32 +02001351 drv_release_buffered_frames(local, sta, driver_release_tids,
Johannes Berg47086fc2011-09-29 16:04:33 +02001352 n_frames, reason, more_data);
Johannes Berg4049e092011-09-29 16:04:32 +02001353
1354 /*
1355 * Note that we don't recalculate the TIM bit here as it would
1356 * most likely have no effect at all unless the driver told us
1357 * that the TID became empty before returning here from the
1358 * release function.
1359 * Either way, however, when the driver tells us that the TID
1360 * became empty we'll do the TIM recalculation.
1361 */
Johannes Bergaf818582009-11-06 11:35:50 +01001362 }
1363}
1364
Johannes Bergaf818582009-11-06 11:35:50 +01001365void ieee80211_sta_ps_deliver_poll_response(struct sta_info *sta)
1366{
Johannes Berg47086fc2011-09-29 16:04:33 +02001367 u8 ignore_for_response = sta->sta.uapsd_queues;
Johannes Bergaf818582009-11-06 11:35:50 +01001368
Johannes Berg47086fc2011-09-29 16:04:33 +02001369 /*
1370 * If all ACs are delivery-enabled then we should reply
1371 * from any of them, if only some are enabled we reply
1372 * only from the non-enabled ones.
1373 */
1374 if (ignore_for_response == BIT(IEEE80211_NUM_ACS) - 1)
1375 ignore_for_response = 0;
1376
1377 ieee80211_sta_ps_deliver_response(sta, 1, ignore_for_response,
1378 IEEE80211_FRAME_RELEASE_PSPOLL);
1379}
1380
1381void ieee80211_sta_ps_deliver_uapsd(struct sta_info *sta)
1382{
1383 int n_frames = sta->sta.max_sp;
1384 u8 delivery_enabled = sta->sta.uapsd_queues;
1385
1386 /*
1387 * If we ever grow support for TSPEC this might happen if
1388 * the TSPEC update from hostapd comes in between a trigger
1389 * frame setting WLAN_STA_UAPSD in the RX path and this
1390 * actually getting called.
1391 */
1392 if (!delivery_enabled)
1393 return;
1394
Johannes Berg47086fc2011-09-29 16:04:33 +02001395 switch (sta->sta.max_sp) {
1396 case 1:
1397 n_frames = 2;
1398 break;
1399 case 2:
1400 n_frames = 4;
1401 break;
1402 case 3:
1403 n_frames = 6;
1404 break;
1405 case 0:
1406 /* XXX: what is a good value? */
1407 n_frames = 8;
1408 break;
Johannes Bergaf818582009-11-06 11:35:50 +01001409 }
Johannes Bergaf818582009-11-06 11:35:50 +01001410
Johannes Berg47086fc2011-09-29 16:04:33 +02001411 ieee80211_sta_ps_deliver_response(sta, n_frames, ~delivery_enabled,
1412 IEEE80211_FRAME_RELEASE_UAPSD);
Johannes Bergaf818582009-11-06 11:35:50 +01001413}
1414
1415void ieee80211_sta_block_awake(struct ieee80211_hw *hw,
1416 struct ieee80211_sta *pubsta, bool block)
1417{
1418 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
1419
Johannes Bergb5878a22010-04-07 16:48:40 +02001420 trace_api_sta_block_awake(sta->local, pubsta, block);
1421
Johannes Bergaf818582009-11-06 11:35:50 +01001422 if (block)
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001423 set_sta_flag(sta, WLAN_STA_PS_DRIVER);
1424 else if (test_sta_flag(sta, WLAN_STA_PS_DRIVER))
Johannes Bergaf818582009-11-06 11:35:50 +01001425 ieee80211_queue_work(hw, &sta->drv_unblock_wk);
1426}
1427EXPORT_SYMBOL(ieee80211_sta_block_awake);
Felix Fietkaudcf55fb2011-04-17 17:45:00 +02001428
Johannes Berge9437892013-02-15 21:38:08 +01001429void ieee80211_sta_eosp(struct ieee80211_sta *pubsta)
Johannes Berg37fbd902011-09-29 16:04:39 +02001430{
1431 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
1432 struct ieee80211_local *local = sta->local;
Johannes Berg37fbd902011-09-29 16:04:39 +02001433
1434 trace_api_eosp(local, pubsta);
1435
Johannes Berge9437892013-02-15 21:38:08 +01001436 clear_sta_flag(sta, WLAN_STA_SP);
Johannes Berg37fbd902011-09-29 16:04:39 +02001437}
Johannes Berge9437892013-02-15 21:38:08 +01001438EXPORT_SYMBOL(ieee80211_sta_eosp);
Johannes Berg37fbd902011-09-29 16:04:39 +02001439
Johannes Berg042ec452011-09-29 16:04:26 +02001440void ieee80211_sta_set_buffered(struct ieee80211_sta *pubsta,
1441 u8 tid, bool buffered)
Felix Fietkaudcf55fb2011-04-17 17:45:00 +02001442{
1443 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
1444
Johannes Berg5a306f52012-11-14 23:22:21 +01001445 if (WARN_ON(tid >= IEEE80211_NUM_TIDS))
Johannes Berg042ec452011-09-29 16:04:26 +02001446 return;
1447
Johannes Berg948d8872011-09-29 16:04:29 +02001448 if (buffered)
1449 set_bit(tid, &sta->driver_buffered_tids);
1450 else
1451 clear_bit(tid, &sta->driver_buffered_tids);
1452
Johannes Bergc868cb352011-09-29 16:04:27 +02001453 sta_info_recalc_tim(sta);
Felix Fietkaudcf55fb2011-04-17 17:45:00 +02001454}
Johannes Berg042ec452011-09-29 16:04:26 +02001455EXPORT_SYMBOL(ieee80211_sta_set_buffered);
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001456
Johannes Berg83d5cc02012-01-12 09:31:10 +01001457int sta_info_move_state(struct sta_info *sta,
1458 enum ieee80211_sta_state new_state)
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001459{
Johannes Berg8bf11d82011-12-15 11:17:37 +01001460 might_sleep();
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001461
1462 if (sta->sta_state == new_state)
1463 return 0;
1464
Johannes Bergf09603a2012-01-20 13:55:21 +01001465 /* check allowed transitions first */
1466
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001467 switch (new_state) {
1468 case IEEE80211_STA_NONE:
Johannes Bergf09603a2012-01-20 13:55:21 +01001469 if (sta->sta_state != IEEE80211_STA_AUTH)
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001470 return -EINVAL;
1471 break;
1472 case IEEE80211_STA_AUTH:
Johannes Bergf09603a2012-01-20 13:55:21 +01001473 if (sta->sta_state != IEEE80211_STA_NONE &&
1474 sta->sta_state != IEEE80211_STA_ASSOC)
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001475 return -EINVAL;
1476 break;
1477 case IEEE80211_STA_ASSOC:
Johannes Bergf09603a2012-01-20 13:55:21 +01001478 if (sta->sta_state != IEEE80211_STA_AUTH &&
1479 sta->sta_state != IEEE80211_STA_AUTHORIZED)
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001480 return -EINVAL;
1481 break;
1482 case IEEE80211_STA_AUTHORIZED:
Johannes Bergf09603a2012-01-20 13:55:21 +01001483 if (sta->sta_state != IEEE80211_STA_ASSOC)
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001484 return -EINVAL;
1485 break;
1486 default:
1487 WARN(1, "invalid state %d", new_state);
1488 return -EINVAL;
1489 }
1490
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02001491 sta_dbg(sta->sdata, "moving STA %pM to state %d\n",
1492 sta->sta.addr, new_state);
Johannes Bergf09603a2012-01-20 13:55:21 +01001493
1494 /*
1495 * notify the driver before the actual changes so it can
1496 * fail the transition
1497 */
1498 if (test_sta_flag(sta, WLAN_STA_INSERTED)) {
1499 int err = drv_sta_state(sta->local, sta->sdata, sta,
1500 sta->sta_state, new_state);
1501 if (err)
1502 return err;
1503 }
1504
1505 /* reflect the change in all state variables */
1506
1507 switch (new_state) {
1508 case IEEE80211_STA_NONE:
1509 if (sta->sta_state == IEEE80211_STA_AUTH)
1510 clear_bit(WLAN_STA_AUTH, &sta->_flags);
1511 break;
1512 case IEEE80211_STA_AUTH:
1513 if (sta->sta_state == IEEE80211_STA_NONE)
1514 set_bit(WLAN_STA_AUTH, &sta->_flags);
1515 else if (sta->sta_state == IEEE80211_STA_ASSOC)
1516 clear_bit(WLAN_STA_ASSOC, &sta->_flags);
1517 break;
1518 case IEEE80211_STA_ASSOC:
1519 if (sta->sta_state == IEEE80211_STA_AUTH) {
1520 set_bit(WLAN_STA_ASSOC, &sta->_flags);
1521 } else if (sta->sta_state == IEEE80211_STA_AUTHORIZED) {
Felix Fietkau7e3ed022012-04-23 19:49:03 +02001522 if (sta->sdata->vif.type == NL80211_IFTYPE_AP ||
1523 (sta->sdata->vif.type == NL80211_IFTYPE_AP_VLAN &&
1524 !sta->sdata->u.vlan.sta))
1525 atomic_dec(&sta->sdata->bss->num_mcast_sta);
Johannes Bergf09603a2012-01-20 13:55:21 +01001526 clear_bit(WLAN_STA_AUTHORIZED, &sta->_flags);
1527 }
1528 break;
1529 case IEEE80211_STA_AUTHORIZED:
1530 if (sta->sta_state == IEEE80211_STA_ASSOC) {
Felix Fietkau7e3ed022012-04-23 19:49:03 +02001531 if (sta->sdata->vif.type == NL80211_IFTYPE_AP ||
1532 (sta->sdata->vif.type == NL80211_IFTYPE_AP_VLAN &&
1533 !sta->sdata->u.vlan.sta))
1534 atomic_inc(&sta->sdata->bss->num_mcast_sta);
Johannes Bergf09603a2012-01-20 13:55:21 +01001535 set_bit(WLAN_STA_AUTHORIZED, &sta->_flags);
1536 }
1537 break;
1538 default:
1539 break;
1540 }
1541
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001542 sta->sta_state = new_state;
1543
1544 return 0;
1545}
Emmanuel Grumbach687da132013-10-01 16:45:43 +03001546
1547u8 sta_info_tx_streams(struct sta_info *sta)
1548{
1549 struct ieee80211_sta_ht_cap *ht_cap = &sta->sta.ht_cap;
1550 u8 rx_streams;
1551
1552 if (!sta->sta.ht_cap.ht_supported)
1553 return 1;
1554
1555 if (sta->sta.vht_cap.vht_supported) {
1556 int i;
1557 u16 tx_mcs_map =
1558 le16_to_cpu(sta->sta.vht_cap.vht_mcs.tx_mcs_map);
1559
1560 for (i = 7; i >= 0; i--)
1561 if ((tx_mcs_map & (0x3 << (i * 2))) !=
1562 IEEE80211_VHT_MCS_NOT_SUPPORTED)
1563 return i + 1;
1564 }
1565
1566 if (ht_cap->mcs.rx_mask[3])
1567 rx_streams = 4;
1568 else if (ht_cap->mcs.rx_mask[2])
1569 rx_streams = 3;
1570 else if (ht_cap->mcs.rx_mask[1])
1571 rx_streams = 2;
1572 else
1573 rx_streams = 1;
1574
1575 if (!(ht_cap->mcs.tx_params & IEEE80211_HT_MCS_TX_RX_DIFF))
1576 return rx_streams;
1577
1578 return ((ht_cap->mcs.tx_params & IEEE80211_HT_MCS_TX_MAX_STREAMS_MASK)
1579 >> IEEE80211_HT_MCS_TX_MAX_STREAMS_SHIFT) + 1;
1580}