]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - net/mac80211/sta_info.c
Merge branch 'for-john' of git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi...
[mirror_ubuntu-bionic-kernel.git] / net / mac80211 / sta_info.c
CommitLineData
f0706e82
JB
1/*
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>
888d04df 12#include <linux/etherdevice.h>
f0706e82
JB
13#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>
0d174406 18#include <linux/timer.h>
d0709a65 19#include <linux/rtnetlink.h>
f0706e82
JB
20
21#include <net/mac80211.h>
22#include "ieee80211_i.h"
24487981 23#include "driver-ops.h"
2c8dccc7 24#include "rate.h"
f0706e82 25#include "sta_info.h"
e9f207f0 26#include "debugfs_sta.h"
ee385855 27#include "mesh.h"
ce662b44 28#include "wme.h"
f0706e82 29
d0709a65
JB
30/**
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 *
34e89507
JB
37 * 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.
93e5deb1
JB
45 *
46 * When the insertion fails (sta_info_insert()) returns non-zero), the
47 * structure will have been freed by sta_info_insert()!
d0709a65 48 *
34e89507 49 * Station entries are added by mac80211 when you establish a link with a
7e189a12
LR
50 * 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
25985edc 52 * receive an association response from the AP. For IBSS this occurs when
34e89507 53 * get to know about a peer on the same IBSS. For WDS we add the sta for
25985edc 54 * the peer immediately upon device open. When using AP mode we add stations
34e89507 55 * for each respective station upon request from userspace through nl80211.
7e189a12 56 *
34e89507
JB
57 * In order to remove a STA info structure, various sta_info_destroy_*()
58 * calls are available.
d0709a65 59 *
34e89507
JB
60 * 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.
d0709a65 64 */
f0706e82 65
4d33960b 66/* Caller must hold local->sta_mtx */
be8755e1
MW
67static int sta_info_hash_del(struct ieee80211_local *local,
68 struct sta_info *sta)
f0706e82
JB
69{
70 struct sta_info *s;
71
40b275b6 72 s = rcu_dereference_protected(local->sta_hash[STA_HASH(sta->sta.addr)],
4d33960b 73 lockdep_is_held(&local->sta_mtx));
f0706e82 74 if (!s)
be8755e1
MW
75 return -ENOENT;
76 if (s == sta) {
cf778b00 77 rcu_assign_pointer(local->sta_hash[STA_HASH(sta->sta.addr)],
d0709a65 78 s->hnext);
be8755e1 79 return 0;
f0706e82
JB
80 }
81
40b275b6
JB
82 while (rcu_access_pointer(s->hnext) &&
83 rcu_access_pointer(s->hnext) != sta)
84 s = rcu_dereference_protected(s->hnext,
4d33960b 85 lockdep_is_held(&local->sta_mtx));
40b275b6 86 if (rcu_access_pointer(s->hnext)) {
cf778b00 87 rcu_assign_pointer(s->hnext, sta->hnext);
be8755e1
MW
88 return 0;
89 }
f0706e82 90
be8755e1 91 return -ENOENT;
f0706e82
JB
92}
93
5108ca82 94static void __cleanup_single_sta(struct sta_info *sta)
b22cfcfc 95{
b22cfcfc
EP
96 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;
d012a605 100 struct ps_data *ps;
b22cfcfc 101
e3685e03
JB
102 if (test_sta_flag(sta, WLAN_STA_PS_STA) ||
103 test_sta_flag(sta, WLAN_STA_PS_DRIVER)) {
d012a605
MP
104 if (sta->sdata->vif.type == NL80211_IFTYPE_AP ||
105 sta->sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
106 ps = &sdata->bss->ps;
3f52b7e3
MP
107 else if (ieee80211_vif_is_mesh(&sdata->vif))
108 ps = &sdata->u.mesh.ps;
d012a605
MP
109 else
110 return;
b22cfcfc
EP
111
112 clear_sta_flag(sta, WLAN_STA_PS_STA);
e3685e03 113 clear_sta_flag(sta, WLAN_STA_PS_DRIVER);
b22cfcfc 114
d012a605 115 atomic_dec(&ps->num_sta_ps);
b22cfcfc
EP
116 sta_info_recalc_tim(sta);
117 }
118
119 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
120 local->total_ps_buffered -= skb_queue_len(&sta->ps_tx_buf[ac]);
1f98ab7f
FF
121 ieee80211_purge_tx_queue(&local->hw, &sta->ps_tx_buf[ac]);
122 ieee80211_purge_tx_queue(&local->hw, &sta->tx_filtered[ac]);
b22cfcfc
EP
123 }
124
45b5028e
TP
125 if (ieee80211_vif_is_mesh(&sdata->vif))
126 mesh_sta_cleanup(sta);
b22cfcfc
EP
127
128 cancel_work_sync(&sta->drv_unblock_wk);
129
130 /*
131 * Destroy aggregation state here. It would be nice to wait for the
132 * driver to finish aggregation stop and then clean up, but for now
133 * drivers have to handle aggregation stop being requested, followed
134 * directly by station destruction.
135 */
5a306f58 136 for (i = 0; i < IEEE80211_NUM_TIDS; i++) {
661eb381 137 kfree(sta->ampdu_mlme.tid_start_tx[i]);
b22cfcfc
EP
138 tid_tx = rcu_dereference_raw(sta->ampdu_mlme.tid_tx[i]);
139 if (!tid_tx)
140 continue;
1f98ab7f 141 ieee80211_purge_tx_queue(&local->hw, &tid_tx->pending);
b22cfcfc
EP
142 kfree(tid_tx);
143 }
5108ca82 144}
b22cfcfc 145
5108ca82
JB
146static void cleanup_single_sta(struct sta_info *sta)
147{
148 struct ieee80211_sub_if_data *sdata = sta->sdata;
149 struct ieee80211_local *local = sdata->local;
150
151 __cleanup_single_sta(sta);
b22cfcfc
EP
152 sta_info_free(local, sta);
153}
154
d0709a65 155/* protected by RCU */
abe60632
JB
156struct sta_info *sta_info_get(struct ieee80211_sub_if_data *sdata,
157 const u8 *addr)
f0706e82 158{
abe60632 159 struct ieee80211_local *local = sdata->local;
f0706e82
JB
160 struct sta_info *sta;
161
0379185b 162 sta = rcu_dereference_check(local->sta_hash[STA_HASH(addr)],
0379185b 163 lockdep_is_held(&local->sta_mtx));
f0706e82 164 while (sta) {
abe60632 165 if (sta->sdata == sdata &&
b203ca39 166 ether_addr_equal(sta->sta.addr, addr))
f0706e82 167 break;
0379185b 168 sta = rcu_dereference_check(sta->hnext,
0379185b 169 lockdep_is_held(&local->sta_mtx));
f0706e82 170 }
43ba7e95
JB
171 return sta;
172}
173
0e5ded5a
FF
174/*
175 * Get sta info either from the specified interface
176 * or from one of its vlans
177 */
178struct sta_info *sta_info_get_bss(struct ieee80211_sub_if_data *sdata,
179 const u8 *addr)
180{
181 struct ieee80211_local *local = sdata->local;
182 struct sta_info *sta;
183
0379185b 184 sta = rcu_dereference_check(local->sta_hash[STA_HASH(addr)],
0379185b 185 lockdep_is_held(&local->sta_mtx));
0e5ded5a
FF
186 while (sta) {
187 if ((sta->sdata == sdata ||
a2c1e3da 188 (sta->sdata->bss && sta->sdata->bss == sdata->bss)) &&
b203ca39 189 ether_addr_equal(sta->sta.addr, addr))
0e5ded5a 190 break;
0379185b 191 sta = rcu_dereference_check(sta->hnext,
0379185b 192 lockdep_is_held(&local->sta_mtx));
0e5ded5a
FF
193 }
194 return sta;
195}
196
3b53fde8
JB
197struct sta_info *sta_info_get_by_idx(struct ieee80211_sub_if_data *sdata,
198 int idx)
ee385855 199{
3b53fde8 200 struct ieee80211_local *local = sdata->local;
ee385855
LCC
201 struct sta_info *sta;
202 int i = 0;
203
d0709a65 204 list_for_each_entry_rcu(sta, &local->sta_list, list) {
3b53fde8 205 if (sdata != sta->sdata)
2a8ca29a 206 continue;
ee385855
LCC
207 if (i < idx) {
208 ++i;
209 continue;
ee385855 210 }
2a8ca29a 211 return sta;
ee385855 212 }
ee385855
LCC
213
214 return NULL;
215}
f0706e82 216
93e5deb1 217/**
d9a7ddb0 218 * sta_info_free - free STA
93e5deb1 219 *
6ef307bc 220 * @local: pointer to the global information
93e5deb1
JB
221 * @sta: STA info to free
222 *
223 * This function must undo everything done by sta_info_alloc()
d9a7ddb0
JB
224 * that may happen before sta_info_insert(). It may only be
225 * called when sta_info_insert() has not been attempted (and
226 * if that fails, the station is freed anyway.)
93e5deb1 227 */
d9a7ddb0 228void sta_info_free(struct ieee80211_local *local, struct sta_info *sta)
93e5deb1 229{
ad38bfc9
MG
230 int i;
231
889cbb91 232 if (sta->rate_ctrl)
af65cd96 233 rate_control_free_sta(sta);
93e5deb1 234
ad38bfc9
MG
235 if (sta->tx_lat) {
236 for (i = 0; i < IEEE80211_NUM_TIDS; i++)
237 kfree(sta->tx_lat[i].bins);
238 kfree(sta->tx_lat);
239 }
240
bdcbd8e0 241 sta_dbg(sta->sdata, "Destroyed STA %pM\n", sta->sta.addr);
93e5deb1 242
53d04525 243 kfree(rcu_dereference_raw(sta->sta.rates));
93e5deb1
JB
244 kfree(sta);
245}
246
4d33960b 247/* Caller must hold local->sta_mtx */
d0709a65
JB
248static void sta_info_hash_add(struct ieee80211_local *local,
249 struct sta_info *sta)
f0706e82 250{
4d33960b 251 lockdep_assert_held(&local->sta_mtx);
17741cdc 252 sta->hnext = local->sta_hash[STA_HASH(sta->sta.addr)];
cf778b00 253 rcu_assign_pointer(local->sta_hash[STA_HASH(sta->sta.addr)], sta);
f0706e82 254}
f0706e82 255
af818581
JB
256static void sta_unblock(struct work_struct *wk)
257{
258 struct sta_info *sta;
259
260 sta = container_of(wk, struct sta_info, drv_unblock_wk);
261
262 if (sta->dead)
263 return;
264
54420473
HS
265 if (!test_sta_flag(sta, WLAN_STA_PS_STA)) {
266 local_bh_disable();
af818581 267 ieee80211_sta_ps_deliver_wakeup(sta);
54420473
HS
268 local_bh_enable();
269 } else if (test_and_clear_sta_flag(sta, WLAN_STA_PSPOLL)) {
c2c98fde 270 clear_sta_flag(sta, WLAN_STA_PS_DRIVER);
ce662b44
JB
271
272 local_bh_disable();
af818581 273 ieee80211_sta_ps_deliver_poll_response(sta);
ce662b44 274 local_bh_enable();
c2c98fde
JB
275 } else if (test_and_clear_sta_flag(sta, WLAN_STA_UAPSD)) {
276 clear_sta_flag(sta, WLAN_STA_PS_DRIVER);
ce662b44
JB
277
278 local_bh_disable();
47086fc5 279 ieee80211_sta_ps_deliver_uapsd(sta);
ce662b44 280 local_bh_enable();
50a9432d 281 } else
c2c98fde 282 clear_sta_flag(sta, WLAN_STA_PS_DRIVER);
af818581
JB
283}
284
af65cd96
JB
285static int sta_prepare_rate_control(struct ieee80211_local *local,
286 struct sta_info *sta, gfp_t gfp)
287{
288 if (local->hw.flags & IEEE80211_HW_HAS_RATE_CONTROL)
289 return 0;
290
889cbb91 291 sta->rate_ctrl = local->rate_ctrl;
af65cd96
JB
292 sta->rate_ctrl_priv = rate_control_alloc_sta(sta->rate_ctrl,
293 &sta->sta, gfp);
889cbb91 294 if (!sta->rate_ctrl_priv)
af65cd96 295 return -ENOMEM;
af65cd96
JB
296
297 return 0;
298}
299
73651ee6 300struct sta_info *sta_info_alloc(struct ieee80211_sub_if_data *sdata,
56544160 301 const u8 *addr, gfp_t gfp)
f0706e82 302{
d0709a65 303 struct ieee80211_local *local = sdata->local;
f0706e82 304 struct sta_info *sta;
ebe27c91 305 struct timespec uptime;
ad38bfc9 306 struct ieee80211_tx_latency_bin_ranges *tx_latency;
16c5f15c 307 int i;
f0706e82 308
17741cdc 309 sta = kzalloc(sizeof(*sta) + local->hw.sta_data_size, gfp);
f0706e82 310 if (!sta)
73651ee6 311 return NULL;
f0706e82 312
ef04a297
JB
313 rcu_read_lock();
314 tx_latency = rcu_dereference(local->tx_latency);
315 /* init stations Tx latency statistics && TID bins */
316 if (tx_latency) {
317 sta->tx_lat = kzalloc(IEEE80211_NUM_TIDS *
318 sizeof(struct ieee80211_tx_latency_stat),
319 GFP_ATOMIC);
320 if (!sta->tx_lat) {
321 rcu_read_unlock();
322 goto free;
323 }
324
325 if (tx_latency->n_ranges) {
326 for (i = 0; i < IEEE80211_NUM_TIDS; i++) {
327 /* size of bins is size of the ranges +1 */
328 sta->tx_lat[i].bin_count =
329 tx_latency->n_ranges + 1;
330 sta->tx_lat[i].bins =
331 kcalloc(sta->tx_lat[i].bin_count,
332 sizeof(u32), GFP_ATOMIC);
333 if (!sta->tx_lat[i].bins) {
334 rcu_read_unlock();
335 goto free;
336 }
337 }
338 }
339 }
340 rcu_read_unlock();
341
07346f81 342 spin_lock_init(&sta->lock);
1d147bfa 343 spin_lock_init(&sta->ps_lock);
af818581 344 INIT_WORK(&sta->drv_unblock_wk, sta_unblock);
67c282c0 345 INIT_WORK(&sta->ampdu_mlme.work, ieee80211_ba_session_work);
a93e3644 346 mutex_init(&sta->ampdu_mlme.mtx);
87f59c70
TP
347#ifdef CONFIG_MAC80211_MESH
348 if (ieee80211_vif_is_mesh(&sdata->vif) &&
349 !sdata->u.mesh.user_mpm)
350 init_timer(&sta->plink_timer);
6c7c4cbf 351 sta->nonpeer_pm = NL80211_MESH_POWER_ACTIVE;
87f59c70 352#endif
07346f81 353
17741cdc 354 memcpy(sta->sta.addr, addr, ETH_ALEN);
d0709a65
JB
355 sta->local = local;
356 sta->sdata = sdata;
8bc8aecd 357 sta->last_rx = jiffies;
f0706e82 358
71ec375c
JB
359 sta->sta_state = IEEE80211_STA_NONE;
360
ebe27c91
MSS
361 do_posix_clock_monotonic_gettime(&uptime);
362 sta->last_connected = uptime.tv_sec;
541a45a1 363 ewma_init(&sta->avg_signal, 1024, 8);
ef0621e8
FF
364 for (i = 0; i < ARRAY_SIZE(sta->chain_signal_avg); i++)
365 ewma_init(&sta->chain_signal_avg[i], 1024, 8);
541a45a1 366
ef04a297
JB
367 if (sta_prepare_rate_control(local, sta, gfp))
368 goto free;
f0706e82 369
5a306f58 370 for (i = 0; i < IEEE80211_NUM_TIDS; i++) {
a622ab72
JB
371 /*
372 * timer_to_tid must be initialized with identity mapping
373 * to enable session_timer's data differentiation. See
374 * sta_rx_agg_session_timer_expired for usage.
375 */
16c5f15c 376 sta->timer_to_tid[i] = i;
16c5f15c 377 }
948d887d
JB
378 for (i = 0; i < IEEE80211_NUM_ACS; i++) {
379 skb_queue_head_init(&sta->ps_tx_buf[i]);
380 skb_queue_head_init(&sta->tx_filtered[i]);
381 }
73651ee6 382
5a306f58 383 for (i = 0; i < IEEE80211_NUM_TIDS; i++)
4be929be 384 sta->last_seq_ctrl[i] = cpu_to_le16(USHRT_MAX);
cccaec98 385
af0ed69b 386 sta->sta.smps_mode = IEEE80211_SMPS_OFF;
687da132
EG
387 if (sdata->vif.type == NL80211_IFTYPE_AP ||
388 sdata->vif.type == NL80211_IFTYPE_AP_VLAN) {
389 struct ieee80211_supported_band *sband =
390 local->hw.wiphy->bands[ieee80211_get_sdata_band(sdata)];
391 u8 smps = (sband->ht_cap.cap & IEEE80211_HT_CAP_SM_PS) >>
392 IEEE80211_HT_CAP_SM_PS_SHIFT;
393 /*
394 * Assume that hostapd advertises our caps in the beacon and
395 * this is the known_smps_mode for a station that just assciated
396 */
397 switch (smps) {
398 case WLAN_HT_SMPS_CONTROL_DISABLED:
399 sta->known_smps_mode = IEEE80211_SMPS_OFF;
400 break;
401 case WLAN_HT_SMPS_CONTROL_STATIC:
402 sta->known_smps_mode = IEEE80211_SMPS_STATIC;
403 break;
404 case WLAN_HT_SMPS_CONTROL_DYNAMIC:
405 sta->known_smps_mode = IEEE80211_SMPS_DYNAMIC;
406 break;
407 default:
408 WARN_ON(1);
409 }
410 }
af0ed69b 411
bdcbd8e0 412 sta_dbg(sdata, "Allocated STA %pM\n", sta->sta.addr);
73651ee6 413 return sta;
ef04a297
JB
414
415free:
416 if (sta->tx_lat) {
417 for (i = 0; i < IEEE80211_NUM_TIDS; i++)
418 kfree(sta->tx_lat[i].bins);
419 kfree(sta->tx_lat);
420 }
421 kfree(sta);
422 return NULL;
73651ee6
JB
423}
424
8c71df7a 425static int sta_info_insert_check(struct sta_info *sta)
34e89507 426{
34e89507 427 struct ieee80211_sub_if_data *sdata = sta->sdata;
34e89507 428
03e4497e
JB
429 /*
430 * Can't be a WARN_ON because it can be triggered through a race:
431 * something inserts a STA (on one CPU) without holding the RTNL
432 * and another CPU turns off the net device.
433 */
8c71df7a
GE
434 if (unlikely(!ieee80211_sdata_running(sdata)))
435 return -ENETDOWN;
03e4497e 436
b203ca39 437 if (WARN_ON(ether_addr_equal(sta->sta.addr, sdata->vif.addr) ||
8c71df7a
GE
438 is_multicast_ether_addr(sta->sta.addr)))
439 return -EINVAL;
440
441 return 0;
442}
443
f09603a2
JB
444static int sta_info_insert_drv_state(struct ieee80211_local *local,
445 struct ieee80211_sub_if_data *sdata,
446 struct sta_info *sta)
447{
448 enum ieee80211_sta_state state;
449 int err = 0;
450
451 for (state = IEEE80211_STA_NOTEXIST; state < sta->sta_state; state++) {
452 err = drv_sta_state(local, sdata, sta, state, state + 1);
453 if (err)
454 break;
455 }
456
457 if (!err) {
a4ec45a4
JB
458 /*
459 * Drivers using legacy sta_add/sta_remove callbacks only
460 * get uploaded set to true after sta_add is called.
461 */
462 if (!local->ops->sta_add)
463 sta->uploaded = true;
f09603a2
JB
464 return 0;
465 }
466
467 if (sdata->vif.type == NL80211_IFTYPE_ADHOC) {
bdcbd8e0
JB
468 sdata_info(sdata,
469 "failed to move IBSS STA %pM to state %d (%d) - keeping it anyway\n",
470 sta->sta.addr, state + 1, err);
f09603a2
JB
471 err = 0;
472 }
473
474 /* unwind on error */
475 for (; state > IEEE80211_STA_NOTEXIST; state--)
476 WARN_ON(drv_sta_state(local, sdata, sta, state, state - 1));
477
478 return err;
479}
480
8c71df7a
GE
481/*
482 * should be called with sta_mtx locked
483 * this function replaces the mutex lock
484 * with a RCU lock
485 */
4d33960b 486static int sta_info_insert_finish(struct sta_info *sta) __acquires(RCU)
8c71df7a
GE
487{
488 struct ieee80211_local *local = sta->local;
489 struct ieee80211_sub_if_data *sdata = sta->sdata;
7852e361 490 struct station_info sinfo;
8c71df7a
GE
491 int err = 0;
492
493 lockdep_assert_held(&local->sta_mtx);
34e89507 494
7852e361
JB
495 /* check if STA exists already */
496 if (sta_info_get_bss(sdata, sta->sta.addr)) {
497 err = -EEXIST;
498 goto out_err;
4d33960b 499 }
32bfd35d 500
7852e361
JB
501 local->num_sta++;
502 local->sta_generation++;
503 smp_mb();
4d33960b 504
5108ca82
JB
505 /* simplify things and don't accept BA sessions yet */
506 set_sta_flag(sta, WLAN_STA_BLOCK_BA);
507
7852e361
JB
508 /* make the station visible */
509 sta_info_hash_add(local, sta);
83d5cc01 510
794454ce 511 list_add_rcu(&sta->list, &local->sta_list);
4d33960b 512
5108ca82
JB
513 /* notify driver */
514 err = sta_info_insert_drv_state(local, sdata, sta);
515 if (err)
516 goto out_remove;
517
7852e361 518 set_sta_flag(sta, WLAN_STA_INSERTED);
5108ca82
JB
519 /* accept BA sessions now */
520 clear_sta_flag(sta, WLAN_STA_BLOCK_BA);
4d33960b 521
21f659bf 522 ieee80211_recalc_min_chandef(sdata);
7852e361
JB
523 ieee80211_sta_debugfs_add(sta);
524 rate_control_add_sta_debugfs(sta);
4d33960b 525
7852e361
JB
526 memset(&sinfo, 0, sizeof(sinfo));
527 sinfo.filled = 0;
528 sinfo.generation = local->sta_generation;
529 cfg80211_new_sta(sdata->dev, sta->sta.addr, &sinfo, GFP_KERNEL);
d0709a65 530
bdcbd8e0 531 sta_dbg(sdata, "Inserted STA %pM\n", sta->sta.addr);
f0706e82 532
34e89507
JB
533 /* move reference to rcu-protected */
534 rcu_read_lock();
535 mutex_unlock(&local->sta_mtx);
e9f207f0 536
73651ee6
JB
537 if (ieee80211_vif_is_mesh(&sdata->vif))
538 mesh_accept_plinks_update(sdata);
539
8c71df7a 540 return 0;
5108ca82
JB
541 out_remove:
542 sta_info_hash_del(local, sta);
543 list_del_rcu(&sta->list);
544 local->num_sta--;
545 synchronize_net();
546 __cleanup_single_sta(sta);
4d33960b
JB
547 out_err:
548 mutex_unlock(&local->sta_mtx);
549 rcu_read_lock();
550 return err;
8c71df7a
GE
551}
552
553int sta_info_insert_rcu(struct sta_info *sta) __acquires(RCU)
554{
555 struct ieee80211_local *local = sta->local;
308f7fcf 556 int err;
8c71df7a 557
4d33960b
JB
558 might_sleep();
559
8c71df7a
GE
560 err = sta_info_insert_check(sta);
561 if (err) {
562 rcu_read_lock();
563 goto out_free;
564 }
565
8c71df7a
GE
566 mutex_lock(&local->sta_mtx);
567
4d33960b 568 err = sta_info_insert_finish(sta);
8c71df7a
GE
569 if (err)
570 goto out_free;
571
73651ee6 572 return 0;
93e5deb1 573 out_free:
d9a7ddb0 574 sta_info_free(local, sta);
93e5deb1 575 return err;
f0706e82
JB
576}
577
34e89507
JB
578int sta_info_insert(struct sta_info *sta)
579{
580 int err = sta_info_insert_rcu(sta);
581
582 rcu_read_unlock();
583
584 return err;
585}
586
d012a605 587static inline void __bss_tim_set(u8 *tim, u16 id)
004c872e
JB
588{
589 /*
590 * This format has been mandated by the IEEE specifications,
591 * so this line may not be changed to use the __set_bit() format.
592 */
d012a605 593 tim[id / 8] |= (1 << (id % 8));
004c872e
JB
594}
595
d012a605 596static inline void __bss_tim_clear(u8 *tim, u16 id)
004c872e
JB
597{
598 /*
599 * This format has been mandated by the IEEE specifications,
600 * so this line may not be changed to use the __clear_bit() format.
601 */
d012a605 602 tim[id / 8] &= ~(1 << (id % 8));
004c872e
JB
603}
604
3d5839b6
IP
605static inline bool __bss_tim_get(u8 *tim, u16 id)
606{
607 /*
608 * This format has been mandated by the IEEE specifications,
609 * so this line may not be changed to use the test_bit() format.
610 */
611 return tim[id / 8] & (1 << (id % 8));
612}
613
948d887d 614static unsigned long ieee80211_tids_for_ac(int ac)
004c872e 615{
948d887d
JB
616 /* If we ever support TIDs > 7, this obviously needs to be adjusted */
617 switch (ac) {
618 case IEEE80211_AC_VO:
619 return BIT(6) | BIT(7);
620 case IEEE80211_AC_VI:
621 return BIT(4) | BIT(5);
622 case IEEE80211_AC_BE:
623 return BIT(0) | BIT(3);
624 case IEEE80211_AC_BK:
625 return BIT(1) | BIT(2);
626 default:
627 WARN_ON(1);
628 return 0;
d0709a65 629 }
004c872e
JB
630}
631
c868cb35 632void sta_info_recalc_tim(struct sta_info *sta)
004c872e 633{
c868cb35 634 struct ieee80211_local *local = sta->local;
d012a605 635 struct ps_data *ps;
948d887d
JB
636 bool indicate_tim = false;
637 u8 ignore_for_tim = sta->sta.uapsd_queues;
638 int ac;
d012a605
MP
639 u16 id;
640
641 if (sta->sdata->vif.type == NL80211_IFTYPE_AP ||
642 sta->sdata->vif.type == NL80211_IFTYPE_AP_VLAN) {
643 if (WARN_ON_ONCE(!sta->sdata->bss))
644 return;
004c872e 645
d012a605
MP
646 ps = &sta->sdata->bss->ps;
647 id = sta->sta.aid;
3f52b7e3
MP
648#ifdef CONFIG_MAC80211_MESH
649 } else if (ieee80211_vif_is_mesh(&sta->sdata->vif)) {
650 ps = &sta->sdata->u.mesh.ps;
204d1304 651 /* TIM map only for 1 <= PLID <= IEEE80211_MAX_AID */
6f101ef0 652 id = sta->plid % (IEEE80211_MAX_AID + 1);
3f52b7e3 653#endif
d012a605 654 } else {
c868cb35 655 return;
d012a605 656 }
3e122be0 657
c868cb35
JB
658 /* No need to do anything if the driver does all */
659 if (local->hw.flags & IEEE80211_HW_AP_LINK_PS)
660 return;
004c872e 661
c868cb35
JB
662 if (sta->dead)
663 goto done;
3e122be0 664
948d887d
JB
665 /*
666 * If all ACs are delivery-enabled then we should build
667 * the TIM bit for all ACs anyway; if only some are then
668 * we ignore those and build the TIM bit using only the
669 * non-enabled ones.
670 */
671 if (ignore_for_tim == BIT(IEEE80211_NUM_ACS) - 1)
672 ignore_for_tim = 0;
673
674 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
675 unsigned long tids;
3e122be0 676
948d887d
JB
677 if (ignore_for_tim & BIT(ac))
678 continue;
679
680 indicate_tim |= !skb_queue_empty(&sta->tx_filtered[ac]) ||
681 !skb_queue_empty(&sta->ps_tx_buf[ac]);
682 if (indicate_tim)
683 break;
3e122be0 684
948d887d
JB
685 tids = ieee80211_tids_for_ac(ac);
686
687 indicate_tim |=
688 sta->driver_buffered_tids & tids;
d0709a65 689 }
004c872e 690
c868cb35 691 done:
65f704a5 692 spin_lock_bh(&local->tim_lock);
004c872e 693
3d5839b6
IP
694 if (indicate_tim == __bss_tim_get(ps->tim, id))
695 goto out_unlock;
696
948d887d 697 if (indicate_tim)
d012a605 698 __bss_tim_set(ps->tim, id);
c868cb35 699 else
d012a605 700 __bss_tim_clear(ps->tim, id);
004c872e 701
c868cb35
JB
702 if (local->ops->set_tim) {
703 local->tim_in_locked_section = true;
948d887d 704 drv_set_tim(local, &sta->sta, indicate_tim);
c868cb35
JB
705 local->tim_in_locked_section = false;
706 }
3e122be0 707
3d5839b6 708out_unlock:
65f704a5 709 spin_unlock_bh(&local->tim_lock);
004c872e
JB
710}
711
cd0b8d89 712static bool sta_info_buffer_expired(struct sta_info *sta, struct sk_buff *skb)
f0706e82 713{
e039fa4a 714 struct ieee80211_tx_info *info;
f0706e82
JB
715 int timeout;
716
717 if (!skb)
cd0b8d89 718 return false;
f0706e82 719
e039fa4a 720 info = IEEE80211_SKB_CB(skb);
f0706e82
JB
721
722 /* Timeout: (2 * listen_interval * beacon_int * 1024 / 1000000) sec */
57c4d7b4
JB
723 timeout = (sta->listen_interval *
724 sta->sdata->vif.bss_conf.beacon_int *
725 32 / 15625) * HZ;
f0706e82
JB
726 if (timeout < STA_TX_BUFFER_EXPIRE)
727 timeout = STA_TX_BUFFER_EXPIRE;
e039fa4a 728 return time_after(jiffies, info->control.jiffies + timeout);
f0706e82
JB
729}
730
731
948d887d
JB
732static bool sta_info_cleanup_expire_buffered_ac(struct ieee80211_local *local,
733 struct sta_info *sta, int ac)
f0706e82
JB
734{
735 unsigned long flags;
736 struct sk_buff *skb;
737
60750397
JB
738 /*
739 * First check for frames that should expire on the filtered
740 * queue. Frames here were rejected by the driver and are on
741 * a separate queue to avoid reordering with normal PS-buffered
742 * frames. They also aren't accounted for right now in the
743 * total_ps_buffered counter.
744 */
745 for (;;) {
948d887d
JB
746 spin_lock_irqsave(&sta->tx_filtered[ac].lock, flags);
747 skb = skb_peek(&sta->tx_filtered[ac]);
60750397 748 if (sta_info_buffer_expired(sta, skb))
948d887d 749 skb = __skb_dequeue(&sta->tx_filtered[ac]);
60750397
JB
750 else
751 skb = NULL;
948d887d 752 spin_unlock_irqrestore(&sta->tx_filtered[ac].lock, flags);
60750397
JB
753
754 /*
755 * Frames are queued in order, so if this one
756 * hasn't expired yet we can stop testing. If
757 * we actually reached the end of the queue we
758 * also need to stop, of course.
759 */
760 if (!skb)
761 break;
d4fa14cd 762 ieee80211_free_txskb(&local->hw, skb);
60750397
JB
763 }
764
765 /*
766 * Now also check the normal PS-buffered queue, this will
767 * only find something if the filtered queue was emptied
768 * since the filtered frames are all before the normal PS
769 * buffered frames.
770 */
f0706e82 771 for (;;) {
948d887d
JB
772 spin_lock_irqsave(&sta->ps_tx_buf[ac].lock, flags);
773 skb = skb_peek(&sta->ps_tx_buf[ac]);
57c4d7b4 774 if (sta_info_buffer_expired(sta, skb))
948d887d 775 skb = __skb_dequeue(&sta->ps_tx_buf[ac]);
836341a7 776 else
f0706e82 777 skb = NULL;
948d887d 778 spin_unlock_irqrestore(&sta->ps_tx_buf[ac].lock, flags);
f0706e82 779
60750397
JB
780 /*
781 * frames are queued in order, so if this one
782 * hasn't expired yet (or we reached the end of
783 * the queue) we can stop testing
784 */
836341a7 785 if (!skb)
f0706e82 786 break;
836341a7 787
836341a7 788 local->total_ps_buffered--;
bdcbd8e0
JB
789 ps_dbg(sta->sdata, "Buffered frame expired (STA %pM)\n",
790 sta->sta.addr);
d4fa14cd 791 ieee80211_free_txskb(&local->hw, skb);
f0706e82 792 }
3393a608 793
60750397
JB
794 /*
795 * Finally, recalculate the TIM bit for this station -- it might
796 * now be clear because the station was too slow to retrieve its
797 * frames.
798 */
799 sta_info_recalc_tim(sta);
800
801 /*
802 * Return whether there are any frames still buffered, this is
803 * used to check whether the cleanup timer still needs to run,
804 * if there are no frames we don't need to rearm the timer.
805 */
948d887d
JB
806 return !(skb_queue_empty(&sta->ps_tx_buf[ac]) &&
807 skb_queue_empty(&sta->tx_filtered[ac]));
808}
809
810static bool sta_info_cleanup_expire_buffered(struct ieee80211_local *local,
811 struct sta_info *sta)
812{
813 bool have_buffered = false;
814 int ac;
815
3f52b7e3
MP
816 /* This is only necessary for stations on BSS/MBSS interfaces */
817 if (!sta->sdata->bss &&
818 !ieee80211_vif_is_mesh(&sta->sdata->vif))
948d887d
JB
819 return false;
820
821 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++)
822 have_buffered |=
823 sta_info_cleanup_expire_buffered_ac(local, sta, ac);
824
825 return have_buffered;
f0706e82
JB
826}
827
d778207b 828static int __must_check __sta_info_destroy_part1(struct sta_info *sta)
f0706e82 829{
34e89507
JB
830 struct ieee80211_local *local;
831 struct ieee80211_sub_if_data *sdata;
6d10e46b 832 int ret;
f0706e82 833
34e89507 834 might_sleep();
f0706e82 835
34e89507
JB
836 if (!sta)
837 return -ENOENT;
5bb644a0 838
34e89507
JB
839 local = sta->local;
840 sdata = sta->sdata;
f0706e82 841
83d5cc01
JB
842 lockdep_assert_held(&local->sta_mtx);
843
098a6070
JB
844 /*
845 * Before removing the station from the driver and
846 * rate control, it might still start new aggregation
847 * sessions -- block that to make sure the tear-down
848 * will be sufficient.
849 */
c2c98fde 850 set_sta_flag(sta, WLAN_STA_BLOCK_BA);
c82c4a80 851 ieee80211_sta_tear_down_BA_sessions(sta, AGG_STOP_DESTROY_STA);
098a6070 852
34e89507 853 ret = sta_info_hash_del(local, sta);
b01711be 854 if (WARN_ON(ret))
34e89507
JB
855 return ret;
856
794454ce 857 list_del_rcu(&sta->list);
4d33960b 858
6a9d1b91
JB
859 drv_sta_pre_rcu_remove(local, sta->sdata, sta);
860
a710c816
JB
861 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN &&
862 rcu_access_pointer(sdata->u.vlan.sta) == sta)
863 RCU_INIT_POINTER(sdata->u.vlan.sta, NULL);
864
d778207b
JB
865 return 0;
866}
867
868static void __sta_info_destroy_part2(struct sta_info *sta)
869{
870 struct ieee80211_local *local = sta->local;
871 struct ieee80211_sub_if_data *sdata = sta->sdata;
872 int ret;
873
874 /*
875 * NOTE: This assumes at least synchronize_net() was done
876 * after _part1 and before _part2!
877 */
878
879 might_sleep();
880 lockdep_assert_held(&local->sta_mtx);
881
c8782078 882 /* now keys can no longer be reached */
6d10e46b 883 ieee80211_free_sta_keys(local, sta);
34e89507
JB
884
885 sta->dead = true;
886
34e89507
JB
887 local->num_sta--;
888 local->sta_generation++;
889
83d5cc01 890 while (sta->sta_state > IEEE80211_STA_NONE) {
f09603a2
JB
891 ret = sta_info_move_state(sta, sta->sta_state - 1);
892 if (ret) {
83d5cc01
JB
893 WARN_ON_ONCE(1);
894 break;
895 }
896 }
d9a7ddb0 897
f09603a2 898 if (sta->uploaded) {
f09603a2
JB
899 ret = drv_sta_state(local, sdata, sta, IEEE80211_STA_NONE,
900 IEEE80211_STA_NOTEXIST);
901 WARN_ON_ONCE(ret != 0);
902 }
34e89507 903
bdcbd8e0
JB
904 sta_dbg(sdata, "Removed STA %pM\n", sta->sta.addr);
905
ec15e68b
JM
906 cfg80211_del_sta(sdata->dev, sta->sta.addr, GFP_KERNEL);
907
34e89507
JB
908 rate_control_remove_sta_debugfs(sta);
909 ieee80211_sta_debugfs_remove(sta);
21f659bf 910 ieee80211_recalc_min_chandef(sdata);
34e89507 911
d34ba216 912 cleanup_single_sta(sta);
d778207b
JB
913}
914
915int __must_check __sta_info_destroy(struct sta_info *sta)
916{
917 int err = __sta_info_destroy_part1(sta);
918
919 if (err)
920 return err;
921
922 synchronize_net();
923
924 __sta_info_destroy_part2(sta);
34e89507
JB
925
926 return 0;
4d6141c3
JS
927}
928
34e89507 929int sta_info_destroy_addr(struct ieee80211_sub_if_data *sdata, const u8 *addr)
4d6141c3 930{
34e89507
JB
931 struct sta_info *sta;
932 int ret;
4d6141c3 933
34e89507 934 mutex_lock(&sdata->local->sta_mtx);
7852e361 935 sta = sta_info_get(sdata, addr);
34e89507
JB
936 ret = __sta_info_destroy(sta);
937 mutex_unlock(&sdata->local->sta_mtx);
4d6141c3
JS
938
939 return ret;
940}
941
34e89507
JB
942int sta_info_destroy_addr_bss(struct ieee80211_sub_if_data *sdata,
943 const u8 *addr)
e9f207f0 944{
34e89507
JB
945 struct sta_info *sta;
946 int ret;
e9f207f0 947
34e89507 948 mutex_lock(&sdata->local->sta_mtx);
7852e361 949 sta = sta_info_get_bss(sdata, addr);
34e89507
JB
950 ret = __sta_info_destroy(sta);
951 mutex_unlock(&sdata->local->sta_mtx);
d0709a65 952
34e89507
JB
953 return ret;
954}
e9f207f0 955
34e89507
JB
956static void sta_info_cleanup(unsigned long data)
957{
958 struct ieee80211_local *local = (struct ieee80211_local *) data;
959 struct sta_info *sta;
3393a608 960 bool timer_needed = false;
34e89507
JB
961
962 rcu_read_lock();
963 list_for_each_entry_rcu(sta, &local->sta_list, list)
3393a608
JO
964 if (sta_info_cleanup_expire_buffered(local, sta))
965 timer_needed = true;
34e89507 966 rcu_read_unlock();
e9f207f0 967
34e89507
JB
968 if (local->quiescing)
969 return;
d0709a65 970
3393a608
JO
971 if (!timer_needed)
972 return;
973
26d59535
JB
974 mod_timer(&local->sta_cleanup,
975 round_jiffies(jiffies + STA_INFO_CLEANUP_INTERVAL));
e9f207f0 976}
e9f207f0 977
f0706e82
JB
978void sta_info_init(struct ieee80211_local *local)
979{
4d33960b 980 spin_lock_init(&local->tim_lock);
34e89507 981 mutex_init(&local->sta_mtx);
f0706e82 982 INIT_LIST_HEAD(&local->sta_list);
f0706e82 983
b24b8a24
PE
984 setup_timer(&local->sta_cleanup, sta_info_cleanup,
985 (unsigned long)local);
f0706e82
JB
986}
987
988void sta_info_stop(struct ieee80211_local *local)
989{
a56f992c 990 del_timer_sync(&local->sta_cleanup);
f0706e82
JB
991}
992
051007d9 993
e716251d 994int __sta_info_flush(struct ieee80211_sub_if_data *sdata, bool vlans)
f0706e82 995{
b998e8bb 996 struct ieee80211_local *local = sdata->local;
f0706e82 997 struct sta_info *sta, *tmp;
d778207b 998 LIST_HEAD(free_list);
44213b5e 999 int ret = 0;
f0706e82 1000
d0709a65 1001 might_sleep();
be8755e1 1002
e716251d
JB
1003 WARN_ON(vlans && sdata->vif.type != NL80211_IFTYPE_AP);
1004 WARN_ON(vlans && !sdata->bss);
1005
34e89507 1006 mutex_lock(&local->sta_mtx);
d0709a65 1007 list_for_each_entry_safe(sta, tmp, &local->sta_list, list) {
e716251d
JB
1008 if (sdata == sta->sdata ||
1009 (vlans && sdata->bss == sta->sdata->bss)) {
d778207b
JB
1010 if (!WARN_ON(__sta_info_destroy_part1(sta)))
1011 list_add(&sta->free_list, &free_list);
34316837
JB
1012 ret++;
1013 }
be8755e1 1014 }
d778207b
JB
1015
1016 if (!list_empty(&free_list)) {
1017 synchronize_net();
1018 list_for_each_entry_safe(sta, tmp, &free_list, free_list)
1019 __sta_info_destroy_part2(sta);
1020 }
34e89507 1021 mutex_unlock(&local->sta_mtx);
44213b5e 1022
051007d9
JB
1023 return ret;
1024}
1025
24723d1b
JB
1026void ieee80211_sta_expire(struct ieee80211_sub_if_data *sdata,
1027 unsigned long exp_time)
1028{
1029 struct ieee80211_local *local = sdata->local;
1030 struct sta_info *sta, *tmp;
24723d1b 1031
34e89507 1032 mutex_lock(&local->sta_mtx);
e46a2cf9
MSS
1033
1034 list_for_each_entry_safe(sta, tmp, &local->sta_list, list) {
ec2b774e
ML
1035 if (sdata != sta->sdata)
1036 continue;
1037
24723d1b 1038 if (time_after(jiffies, sta->last_rx + exp_time)) {
eea57d42
MSS
1039 sta_dbg(sta->sdata, "expiring inactive STA %pM\n",
1040 sta->sta.addr);
3f52b7e3
MP
1041
1042 if (ieee80211_vif_is_mesh(&sdata->vif) &&
1043 test_sta_flag(sta, WLAN_STA_PS_STA))
1044 atomic_dec(&sdata->u.mesh.ps.num_sta_ps);
1045
34e89507 1046 WARN_ON(__sta_info_destroy(sta));
24723d1b 1047 }
e46a2cf9
MSS
1048 }
1049
34e89507 1050 mutex_unlock(&local->sta_mtx);
24723d1b 1051}
17741cdc 1052
686b9cb9
BG
1053struct ieee80211_sta *ieee80211_find_sta_by_ifaddr(struct ieee80211_hw *hw,
1054 const u8 *addr,
1055 const u8 *localaddr)
17741cdc 1056{
abe60632 1057 struct sta_info *sta, *nxt;
17741cdc 1058
686b9cb9
BG
1059 /*
1060 * Just return a random station if localaddr is NULL
1061 * ... first in list.
1062 */
f7c65594 1063 for_each_sta_info(hw_to_local(hw), addr, sta, nxt) {
686b9cb9 1064 if (localaddr &&
b203ca39 1065 !ether_addr_equal(sta->sdata->vif.addr, localaddr))
686b9cb9 1066 continue;
f7c65594
JB
1067 if (!sta->uploaded)
1068 return NULL;
abe60632 1069 return &sta->sta;
f7c65594
JB
1070 }
1071
abe60632 1072 return NULL;
17741cdc 1073}
686b9cb9 1074EXPORT_SYMBOL_GPL(ieee80211_find_sta_by_ifaddr);
5ed176e1
JB
1075
1076struct ieee80211_sta *ieee80211_find_sta(struct ieee80211_vif *vif,
1077 const u8 *addr)
1078{
f7c65594 1079 struct sta_info *sta;
5ed176e1
JB
1080
1081 if (!vif)
1082 return NULL;
1083
f7c65594
JB
1084 sta = sta_info_get_bss(vif_to_sdata(vif), addr);
1085 if (!sta)
1086 return NULL;
1087
1088 if (!sta->uploaded)
1089 return NULL;
5ed176e1 1090
f7c65594 1091 return &sta->sta;
5ed176e1 1092}
17741cdc 1093EXPORT_SYMBOL(ieee80211_find_sta);
af818581 1094
e3685e03
JB
1095/* powersave support code */
1096void ieee80211_sta_ps_deliver_wakeup(struct sta_info *sta)
50a9432d 1097{
608383bf 1098 struct ieee80211_sub_if_data *sdata = sta->sdata;
e3685e03
JB
1099 struct ieee80211_local *local = sdata->local;
1100 struct sk_buff_head pending;
1101 int filtered = 0, buffered = 0, ac;
1102 unsigned long flags;
d012a605
MP
1103 struct ps_data *ps;
1104
1105 if (sdata->vif.type == NL80211_IFTYPE_AP ||
1106 sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
1107 ps = &sdata->bss->ps;
3f52b7e3
MP
1108 else if (ieee80211_vif_is_mesh(&sdata->vif))
1109 ps = &sdata->u.mesh.ps;
d012a605
MP
1110 else
1111 return;
50a9432d 1112
c2c98fde 1113 clear_sta_flag(sta, WLAN_STA_SP);
47086fc5 1114
5a306f58 1115 BUILD_BUG_ON(BITS_TO_LONGS(IEEE80211_NUM_TIDS) > 1);
948d887d 1116 sta->driver_buffered_tids = 0;
af818581 1117
d057e5a3
AN
1118 if (!(local->hw.flags & IEEE80211_HW_AP_LINK_PS))
1119 drv_sta_notify(local, sdata, STA_NOTIFY_AWAKE, &sta->sta);
af818581 1120
948d887d 1121 skb_queue_head_init(&pending);
af818581 1122
1d147bfa
EG
1123 /* sync with ieee80211_tx_h_unicast_ps_buf */
1124 spin_lock(&sta->ps_lock);
af818581 1125 /* Send all buffered frames to the station */
948d887d
JB
1126 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
1127 int count = skb_queue_len(&pending), tmp;
1128
987c285c 1129 spin_lock_irqsave(&sta->tx_filtered[ac].lock, flags);
948d887d 1130 skb_queue_splice_tail_init(&sta->tx_filtered[ac], &pending);
987c285c 1131 spin_unlock_irqrestore(&sta->tx_filtered[ac].lock, flags);
948d887d
JB
1132 tmp = skb_queue_len(&pending);
1133 filtered += tmp - count;
1134 count = tmp;
1135
987c285c 1136 spin_lock_irqsave(&sta->ps_tx_buf[ac].lock, flags);
948d887d 1137 skb_queue_splice_tail_init(&sta->ps_tx_buf[ac], &pending);
987c285c 1138 spin_unlock_irqrestore(&sta->ps_tx_buf[ac].lock, flags);
948d887d
JB
1139 tmp = skb_queue_len(&pending);
1140 buffered += tmp - count;
1141 }
1142
e3685e03
JB
1143 ieee80211_add_pending_skbs(local, &pending);
1144 clear_sta_flag(sta, WLAN_STA_PS_DRIVER);
1145 clear_sta_flag(sta, WLAN_STA_PS_STA);
1d147bfa 1146 spin_unlock(&sta->ps_lock);
948d887d 1147
e3685e03
JB
1148 atomic_dec(&ps->num_sta_ps);
1149
687da132 1150 /* This station just woke up and isn't aware of our SMPS state */
062f1d6d
CYY
1151 if (!ieee80211_vif_is_mesh(&sdata->vif) &&
1152 !ieee80211_smps_is_restrictive(sta->known_smps_mode,
687da132
EG
1153 sdata->smps_mode) &&
1154 sta->known_smps_mode != sdata->bss->req_smps &&
1155 sta_info_tx_streams(sta) != 1) {
1156 ht_dbg(sdata,
1157 "%pM just woke up and MIMO capable - update SMPS\n",
1158 sta->sta.addr);
1159 ieee80211_send_smps_action(sdata, sdata->bss->req_smps,
1160 sta->sta.addr,
1161 sdata->vif.bss_conf.bssid);
1162 }
1163
af818581
JB
1164 local->total_ps_buffered -= buffered;
1165
c868cb35
JB
1166 sta_info_recalc_tim(sta);
1167
bdcbd8e0
JB
1168 ps_dbg(sdata,
1169 "STA %pM aid %d sending %d filtered/%d PS frames since STA not sleeping anymore\n",
1170 sta->sta.addr, sta->sta.aid, filtered, buffered);
af818581
JB
1171}
1172
ce662b44
JB
1173static void ieee80211_send_null_response(struct ieee80211_sub_if_data *sdata,
1174 struct sta_info *sta, int tid,
b77cf4f8
JB
1175 enum ieee80211_frame_release_type reason,
1176 bool call_driver)
af818581 1177{
af818581 1178 struct ieee80211_local *local = sdata->local;
ce662b44 1179 struct ieee80211_qos_hdr *nullfunc;
af818581 1180 struct sk_buff *skb;
ce662b44
JB
1181 int size = sizeof(*nullfunc);
1182 __le16 fc;
c2c98fde 1183 bool qos = test_sta_flag(sta, WLAN_STA_WME);
ce662b44 1184 struct ieee80211_tx_info *info;
55de908a 1185 struct ieee80211_chanctx_conf *chanctx_conf;
af818581 1186
ce662b44
JB
1187 if (qos) {
1188 fc = cpu_to_le16(IEEE80211_FTYPE_DATA |
1189 IEEE80211_STYPE_QOS_NULLFUNC |
1190 IEEE80211_FCTL_FROMDS);
1191 } else {
1192 size -= 2;
1193 fc = cpu_to_le16(IEEE80211_FTYPE_DATA |
1194 IEEE80211_STYPE_NULLFUNC |
1195 IEEE80211_FCTL_FROMDS);
af818581 1196 }
af818581 1197
ce662b44
JB
1198 skb = dev_alloc_skb(local->hw.extra_tx_headroom + size);
1199 if (!skb)
1200 return;
1201
1202 skb_reserve(skb, local->hw.extra_tx_headroom);
1203
1204 nullfunc = (void *) skb_put(skb, size);
1205 nullfunc->frame_control = fc;
1206 nullfunc->duration_id = 0;
1207 memcpy(nullfunc->addr1, sta->sta.addr, ETH_ALEN);
1208 memcpy(nullfunc->addr2, sdata->vif.addr, ETH_ALEN);
1209 memcpy(nullfunc->addr3, sdata->vif.addr, ETH_ALEN);
864a6040 1210 nullfunc->seq_ctrl = 0;
ce662b44 1211
59b66255
JB
1212 skb->priority = tid;
1213 skb_set_queue_mapping(skb, ieee802_1d_to_ac[tid]);
ce662b44 1214 if (qos) {
ce662b44
JB
1215 nullfunc->qos_ctrl = cpu_to_le16(tid);
1216
40b96408 1217 if (reason == IEEE80211_FRAME_RELEASE_UAPSD)
ce662b44
JB
1218 nullfunc->qos_ctrl |=
1219 cpu_to_le16(IEEE80211_QOS_CTL_EOSP);
1220 }
1221
1222 info = IEEE80211_SKB_CB(skb);
1223
1224 /*
1225 * Tell TX path to send this frame even though the
1226 * STA may still remain is PS mode after this frame
deeaee19
JB
1227 * exchange. Also set EOSP to indicate this packet
1228 * ends the poll/service period.
ce662b44 1229 */
02f2f1a9 1230 info->flags |= IEEE80211_TX_CTL_NO_PS_BUFFER |
d6d23de2 1231 IEEE80211_TX_CTL_PS_RESPONSE |
deeaee19
JB
1232 IEEE80211_TX_STATUS_EOSP |
1233 IEEE80211_TX_CTL_REQ_TX_STATUS;
ce662b44 1234
b77cf4f8
JB
1235 if (call_driver)
1236 drv_allow_buffered_frames(local, sta, BIT(tid), 1,
1237 reason, false);
40b96408 1238
89afe614
JB
1239 skb->dev = sdata->dev;
1240
55de908a
JB
1241 rcu_read_lock();
1242 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
1243 if (WARN_ON(!chanctx_conf)) {
1244 rcu_read_unlock();
1245 kfree_skb(skb);
1246 return;
1247 }
1248
4bf88530 1249 ieee80211_xmit(sdata, skb, chanctx_conf->def.chan->band);
55de908a 1250 rcu_read_unlock();
ce662b44
JB
1251}
1252
0a1cb809
JB
1253static int find_highest_prio_tid(unsigned long tids)
1254{
1255 /* lower 3 TIDs aren't ordered perfectly */
1256 if (tids & 0xF8)
1257 return fls(tids) - 1;
1258 /* TID 0 is BE just like TID 3 */
1259 if (tids & BIT(0))
1260 return 0;
1261 return fls(tids) - 1;
1262}
1263
47086fc5
JB
1264static void
1265ieee80211_sta_ps_deliver_response(struct sta_info *sta,
1266 int n_frames, u8 ignored_acs,
1267 enum ieee80211_frame_release_type reason)
af818581
JB
1268{
1269 struct ieee80211_sub_if_data *sdata = sta->sdata;
1270 struct ieee80211_local *local = sdata->local;
948d887d
JB
1271 bool more_data = false;
1272 int ac;
4049e09a 1273 unsigned long driver_release_tids = 0;
47086fc5 1274 struct sk_buff_head frames;
af818581 1275
deeaee19 1276 /* Service or PS-Poll period starts */
c2c98fde 1277 set_sta_flag(sta, WLAN_STA_SP);
deeaee19 1278
47086fc5 1279 __skb_queue_head_init(&frames);
948d887d 1280
f9f760b4 1281 /* Get response frame(s) and more data bit for the last one. */
948d887d 1282 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
4049e09a
JB
1283 unsigned long tids;
1284
47086fc5 1285 if (ignored_acs & BIT(ac))
948d887d
JB
1286 continue;
1287
4049e09a
JB
1288 tids = ieee80211_tids_for_ac(ac);
1289
f9f760b4
JB
1290 /* if we already have frames from software, then we can't also
1291 * release from hardware queues
1292 */
1293 if (skb_queue_empty(&frames))
1294 driver_release_tids |= sta->driver_buffered_tids & tids;
948d887d 1295
f9f760b4
JB
1296 if (driver_release_tids) {
1297 /* If the driver has data on more than one TID then
4049e09a 1298 * certainly there's more data if we release just a
f9f760b4
JB
1299 * single frame now (from a single TID). This will
1300 * only happen for PS-Poll.
4049e09a 1301 */
47086fc5
JB
1302 if (reason == IEEE80211_FRAME_RELEASE_PSPOLL &&
1303 hweight16(driver_release_tids) > 1) {
4049e09a
JB
1304 more_data = true;
1305 driver_release_tids =
0a1cb809
JB
1306 BIT(find_highest_prio_tid(
1307 driver_release_tids));
4049e09a
JB
1308 break;
1309 }
f9f760b4
JB
1310 } else {
1311 struct sk_buff *skb;
1312
1313 while (n_frames > 0) {
1314 skb = skb_dequeue(&sta->tx_filtered[ac]);
1315 if (!skb) {
1316 skb = skb_dequeue(
1317 &sta->ps_tx_buf[ac]);
1318 if (skb)
1319 local->total_ps_buffered--;
1320 }
1321 if (!skb)
1322 break;
1323 n_frames--;
1324 __skb_queue_tail(&frames, skb);
1325 }
4049e09a 1326 }
948d887d 1327
f9f760b4
JB
1328 /* If we have more frames buffered on this AC, then set the
1329 * more-data bit and abort the loop since we can't send more
1330 * data from other ACs before the buffered frames from this.
1331 */
948d887d
JB
1332 if (!skb_queue_empty(&sta->tx_filtered[ac]) ||
1333 !skb_queue_empty(&sta->ps_tx_buf[ac])) {
1334 more_data = true;
1335 break;
1336 }
af818581 1337 }
af818581 1338
f9f760b4 1339 if (skb_queue_empty(&frames) && !driver_release_tids) {
ce662b44 1340 int tid;
af818581
JB
1341
1342 /*
ce662b44
JB
1343 * For PS-Poll, this can only happen due to a race condition
1344 * when we set the TIM bit and the station notices it, but
1345 * before it can poll for the frame we expire it.
1346 *
1347 * For uAPSD, this is said in the standard (11.2.1.5 h):
1348 * At each unscheduled SP for a non-AP STA, the AP shall
1349 * attempt to transmit at least one MSDU or MMPDU, but no
1350 * more than the value specified in the Max SP Length field
1351 * in the QoS Capability element from delivery-enabled ACs,
1352 * that are destined for the non-AP STA.
1353 *
1354 * Since we have no other MSDU/MMPDU, transmit a QoS null frame.
af818581 1355 */
af818581 1356
ce662b44
JB
1357 /* This will evaluate to 1, 3, 5 or 7. */
1358 tid = 7 - ((ffs(~ignored_acs) - 1) << 1);
af818581 1359
b77cf4f8 1360 ieee80211_send_null_response(sdata, sta, tid, reason, true);
f9f760b4 1361 } else if (!driver_release_tids) {
47086fc5
JB
1362 struct sk_buff_head pending;
1363 struct sk_buff *skb;
40b96408
JB
1364 int num = 0;
1365 u16 tids = 0;
b77cf4f8 1366 bool need_null = false;
af818581 1367
47086fc5 1368 skb_queue_head_init(&pending);
af818581 1369
47086fc5
JB
1370 while ((skb = __skb_dequeue(&frames))) {
1371 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1372 struct ieee80211_hdr *hdr = (void *) skb->data;
40b96408
JB
1373 u8 *qoshdr = NULL;
1374
1375 num++;
af818581 1376
47086fc5
JB
1377 /*
1378 * Tell TX path to send this frame even though the
1379 * STA may still remain is PS mode after this frame
1380 * exchange.
1381 */
d6d23de2
FF
1382 info->flags |= IEEE80211_TX_CTL_NO_PS_BUFFER |
1383 IEEE80211_TX_CTL_PS_RESPONSE;
47086fc5
JB
1384
1385 /*
1386 * Use MoreData flag to indicate whether there are
1387 * more buffered frames for this STA
1388 */
24b9c373 1389 if (more_data || !skb_queue_empty(&frames))
47086fc5
JB
1390 hdr->frame_control |=
1391 cpu_to_le16(IEEE80211_FCTL_MOREDATA);
24b9c373
JD
1392 else
1393 hdr->frame_control &=
1394 cpu_to_le16(~IEEE80211_FCTL_MOREDATA);
47086fc5 1395
40b96408
JB
1396 if (ieee80211_is_data_qos(hdr->frame_control) ||
1397 ieee80211_is_qos_nullfunc(hdr->frame_control))
1398 qoshdr = ieee80211_get_qos_ctl(hdr);
1399
b77cf4f8 1400 tids |= BIT(skb->priority);
52a3f20c 1401
b77cf4f8
JB
1402 __skb_queue_tail(&pending, skb);
1403
1404 /* end service period after last frame or add one */
1405 if (!skb_queue_empty(&frames))
1406 continue;
1407
1408 if (reason != IEEE80211_FRAME_RELEASE_UAPSD) {
1409 /* for PS-Poll, there's only one frame */
52a3f20c
MP
1410 info->flags |= IEEE80211_TX_STATUS_EOSP |
1411 IEEE80211_TX_CTL_REQ_TX_STATUS;
b77cf4f8 1412 break;
52a3f20c 1413 }
deeaee19 1414
b77cf4f8
JB
1415 /* For uAPSD, things are a bit more complicated. If the
1416 * last frame has a QoS header (i.e. is a QoS-data or
1417 * QoS-nulldata frame) then just set the EOSP bit there
1418 * and be done.
1419 * If the frame doesn't have a QoS header (which means
1420 * it should be a bufferable MMPDU) then we can't set
1421 * the EOSP bit in the QoS header; add a QoS-nulldata
1422 * frame to the list to send it after the MMPDU.
1423 *
1424 * Note that this code is only in the mac80211-release
1425 * code path, we assume that the driver will not buffer
1426 * anything but QoS-data frames, or if it does, will
1427 * create the QoS-nulldata frame by itself if needed.
1428 *
1429 * Cf. 802.11-2012 10.2.1.10 (c).
1430 */
1431 if (qoshdr) {
1432 *qoshdr |= IEEE80211_QOS_CTL_EOSP;
40b96408 1433
b77cf4f8
JB
1434 info->flags |= IEEE80211_TX_STATUS_EOSP |
1435 IEEE80211_TX_CTL_REQ_TX_STATUS;
1436 } else {
1437 /* The standard isn't completely clear on this
1438 * as it says the more-data bit should be set
1439 * if there are more BUs. The QoS-Null frame
1440 * we're about to send isn't buffered yet, we
1441 * only create it below, but let's pretend it
1442 * was buffered just in case some clients only
1443 * expect more-data=0 when eosp=1.
1444 */
1445 hdr->frame_control |=
1446 cpu_to_le16(IEEE80211_FCTL_MOREDATA);
1447 need_null = true;
1448 num++;
1449 }
1450 break;
47086fc5 1451 }
af818581 1452
40b96408
JB
1453 drv_allow_buffered_frames(local, sta, tids, num,
1454 reason, more_data);
1455
47086fc5 1456 ieee80211_add_pending_skbs(local, &pending);
af818581 1457
b77cf4f8
JB
1458 if (need_null)
1459 ieee80211_send_null_response(
1460 sdata, sta, find_highest_prio_tid(tids),
1461 reason, false);
1462
c868cb35 1463 sta_info_recalc_tim(sta);
af818581
JB
1464 } else {
1465 /*
4049e09a
JB
1466 * We need to release a frame that is buffered somewhere in the
1467 * driver ... it'll have to handle that.
f9f760b4
JB
1468 * Note that the driver also has to check the number of frames
1469 * on the TIDs we're releasing from - if there are more than
1470 * n_frames it has to set the more-data bit (if we didn't ask
1471 * it to set it anyway due to other buffered frames); if there
1472 * are fewer than n_frames it has to make sure to adjust that
1473 * to allow the service period to end properly.
4049e09a
JB
1474 */
1475 drv_release_buffered_frames(local, sta, driver_release_tids,
47086fc5 1476 n_frames, reason, more_data);
4049e09a
JB
1477
1478 /*
1479 * Note that we don't recalculate the TIM bit here as it would
1480 * most likely have no effect at all unless the driver told us
f9f760b4 1481 * that the TID(s) became empty before returning here from the
4049e09a 1482 * release function.
f9f760b4 1483 * Either way, however, when the driver tells us that the TID(s)
4049e09a 1484 * became empty we'll do the TIM recalculation.
af818581 1485 */
af818581
JB
1486 }
1487}
1488
47086fc5
JB
1489void ieee80211_sta_ps_deliver_poll_response(struct sta_info *sta)
1490{
1491 u8 ignore_for_response = sta->sta.uapsd_queues;
1492
1493 /*
1494 * If all ACs are delivery-enabled then we should reply
1495 * from any of them, if only some are enabled we reply
1496 * only from the non-enabled ones.
1497 */
1498 if (ignore_for_response == BIT(IEEE80211_NUM_ACS) - 1)
1499 ignore_for_response = 0;
1500
1501 ieee80211_sta_ps_deliver_response(sta, 1, ignore_for_response,
1502 IEEE80211_FRAME_RELEASE_PSPOLL);
1503}
1504
1505void ieee80211_sta_ps_deliver_uapsd(struct sta_info *sta)
1506{
1507 int n_frames = sta->sta.max_sp;
1508 u8 delivery_enabled = sta->sta.uapsd_queues;
1509
1510 /*
1511 * If we ever grow support for TSPEC this might happen if
1512 * the TSPEC update from hostapd comes in between a trigger
1513 * frame setting WLAN_STA_UAPSD in the RX path and this
1514 * actually getting called.
1515 */
1516 if (!delivery_enabled)
1517 return;
1518
47086fc5
JB
1519 switch (sta->sta.max_sp) {
1520 case 1:
1521 n_frames = 2;
1522 break;
1523 case 2:
1524 n_frames = 4;
1525 break;
1526 case 3:
1527 n_frames = 6;
1528 break;
1529 case 0:
1530 /* XXX: what is a good value? */
1531 n_frames = 8;
1532 break;
1533 }
1534
1535 ieee80211_sta_ps_deliver_response(sta, n_frames, ~delivery_enabled,
1536 IEEE80211_FRAME_RELEASE_UAPSD);
1537}
1538
af818581
JB
1539void ieee80211_sta_block_awake(struct ieee80211_hw *hw,
1540 struct ieee80211_sta *pubsta, bool block)
1541{
1542 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
1543
b5878a2d
JB
1544 trace_api_sta_block_awake(sta->local, pubsta, block);
1545
af818581 1546 if (block)
c2c98fde
JB
1547 set_sta_flag(sta, WLAN_STA_PS_DRIVER);
1548 else if (test_sta_flag(sta, WLAN_STA_PS_DRIVER))
af818581
JB
1549 ieee80211_queue_work(hw, &sta->drv_unblock_wk);
1550}
1551EXPORT_SYMBOL(ieee80211_sta_block_awake);
dcf55fb5 1552
e943789e 1553void ieee80211_sta_eosp(struct ieee80211_sta *pubsta)
37fbd908
JB
1554{
1555 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
1556 struct ieee80211_local *local = sta->local;
37fbd908
JB
1557
1558 trace_api_eosp(local, pubsta);
1559
e943789e 1560 clear_sta_flag(sta, WLAN_STA_SP);
37fbd908 1561}
e943789e 1562EXPORT_SYMBOL(ieee80211_sta_eosp);
37fbd908 1563
042ec453
JB
1564void ieee80211_sta_set_buffered(struct ieee80211_sta *pubsta,
1565 u8 tid, bool buffered)
dcf55fb5
FF
1566{
1567 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
1568
5a306f58 1569 if (WARN_ON(tid >= IEEE80211_NUM_TIDS))
042ec453
JB
1570 return;
1571
1b000789
JB
1572 trace_api_sta_set_buffered(sta->local, pubsta, tid, buffered);
1573
948d887d
JB
1574 if (buffered)
1575 set_bit(tid, &sta->driver_buffered_tids);
1576 else
1577 clear_bit(tid, &sta->driver_buffered_tids);
1578
c868cb35 1579 sta_info_recalc_tim(sta);
dcf55fb5 1580}
042ec453 1581EXPORT_SYMBOL(ieee80211_sta_set_buffered);
d9a7ddb0 1582
83d5cc01
JB
1583int sta_info_move_state(struct sta_info *sta,
1584 enum ieee80211_sta_state new_state)
d9a7ddb0 1585{
8bf11d8d 1586 might_sleep();
d9a7ddb0
JB
1587
1588 if (sta->sta_state == new_state)
1589 return 0;
1590
f09603a2
JB
1591 /* check allowed transitions first */
1592
1593 switch (new_state) {
1594 case IEEE80211_STA_NONE:
1595 if (sta->sta_state != IEEE80211_STA_AUTH)
1596 return -EINVAL;
1597 break;
1598 case IEEE80211_STA_AUTH:
1599 if (sta->sta_state != IEEE80211_STA_NONE &&
1600 sta->sta_state != IEEE80211_STA_ASSOC)
1601 return -EINVAL;
1602 break;
1603 case IEEE80211_STA_ASSOC:
1604 if (sta->sta_state != IEEE80211_STA_AUTH &&
1605 sta->sta_state != IEEE80211_STA_AUTHORIZED)
1606 return -EINVAL;
1607 break;
1608 case IEEE80211_STA_AUTHORIZED:
1609 if (sta->sta_state != IEEE80211_STA_ASSOC)
1610 return -EINVAL;
1611 break;
1612 default:
1613 WARN(1, "invalid state %d", new_state);
1614 return -EINVAL;
1615 }
1616
bdcbd8e0
JB
1617 sta_dbg(sta->sdata, "moving STA %pM to state %d\n",
1618 sta->sta.addr, new_state);
f09603a2
JB
1619
1620 /*
1621 * notify the driver before the actual changes so it can
1622 * fail the transition
1623 */
1624 if (test_sta_flag(sta, WLAN_STA_INSERTED)) {
1625 int err = drv_sta_state(sta->local, sta->sdata, sta,
1626 sta->sta_state, new_state);
1627 if (err)
1628 return err;
1629 }
1630
1631 /* reflect the change in all state variables */
1632
d9a7ddb0
JB
1633 switch (new_state) {
1634 case IEEE80211_STA_NONE:
1635 if (sta->sta_state == IEEE80211_STA_AUTH)
1636 clear_bit(WLAN_STA_AUTH, &sta->_flags);
d9a7ddb0
JB
1637 break;
1638 case IEEE80211_STA_AUTH:
1639 if (sta->sta_state == IEEE80211_STA_NONE)
1640 set_bit(WLAN_STA_AUTH, &sta->_flags);
1641 else if (sta->sta_state == IEEE80211_STA_ASSOC)
1642 clear_bit(WLAN_STA_ASSOC, &sta->_flags);
d9a7ddb0
JB
1643 break;
1644 case IEEE80211_STA_ASSOC:
29623892 1645 if (sta->sta_state == IEEE80211_STA_AUTH) {
d9a7ddb0 1646 set_bit(WLAN_STA_ASSOC, &sta->_flags);
29623892 1647 } else if (sta->sta_state == IEEE80211_STA_AUTHORIZED) {
7e3ed02c
FF
1648 if (sta->sdata->vif.type == NL80211_IFTYPE_AP ||
1649 (sta->sdata->vif.type == NL80211_IFTYPE_AP_VLAN &&
1650 !sta->sdata->u.vlan.sta))
1651 atomic_dec(&sta->sdata->bss->num_mcast_sta);
d9a7ddb0 1652 clear_bit(WLAN_STA_AUTHORIZED, &sta->_flags);
f09603a2 1653 }
d9a7ddb0
JB
1654 break;
1655 case IEEE80211_STA_AUTHORIZED:
29623892 1656 if (sta->sta_state == IEEE80211_STA_ASSOC) {
7e3ed02c
FF
1657 if (sta->sdata->vif.type == NL80211_IFTYPE_AP ||
1658 (sta->sdata->vif.type == NL80211_IFTYPE_AP_VLAN &&
1659 !sta->sdata->u.vlan.sta))
1660 atomic_inc(&sta->sdata->bss->num_mcast_sta);
d9a7ddb0 1661 set_bit(WLAN_STA_AUTHORIZED, &sta->_flags);
f09603a2 1662 }
d9a7ddb0
JB
1663 break;
1664 default:
f09603a2 1665 break;
d9a7ddb0
JB
1666 }
1667
d9a7ddb0
JB
1668 sta->sta_state = new_state;
1669
1670 return 0;
1671}
687da132
EG
1672
1673u8 sta_info_tx_streams(struct sta_info *sta)
1674{
1675 struct ieee80211_sta_ht_cap *ht_cap = &sta->sta.ht_cap;
1676 u8 rx_streams;
1677
1678 if (!sta->sta.ht_cap.ht_supported)
1679 return 1;
1680
1681 if (sta->sta.vht_cap.vht_supported) {
1682 int i;
1683 u16 tx_mcs_map =
1684 le16_to_cpu(sta->sta.vht_cap.vht_mcs.tx_mcs_map);
1685
1686 for (i = 7; i >= 0; i--)
1687 if ((tx_mcs_map & (0x3 << (i * 2))) !=
1688 IEEE80211_VHT_MCS_NOT_SUPPORTED)
1689 return i + 1;
1690 }
1691
1692 if (ht_cap->mcs.rx_mask[3])
1693 rx_streams = 4;
1694 else if (ht_cap->mcs.rx_mask[2])
1695 rx_streams = 3;
1696 else if (ht_cap->mcs.rx_mask[1])
1697 rx_streams = 2;
1698 else
1699 rx_streams = 1;
1700
1701 if (!(ht_cap->mcs.tx_params & IEEE80211_HT_MCS_TX_RX_DIFF))
1702 return rx_streams;
1703
1704 return ((ht_cap->mcs.tx_params & IEEE80211_HT_MCS_TX_MAX_STREAMS_MASK)
1705 >> IEEE80211_HT_MCS_TX_MAX_STREAMS_SHIFT) + 1;
1706}