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