mwifiex: remove unnecessary enum MWIFIEX_802_11_WEP_STATUS
[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>
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>
12#include <linux/netdevice.h>
13#include <linux/types.h>
14#include <linux/slab.h>
15#include <linux/skbuff.h>
16#include <linux/if_arp.h>
0d174406 17#include <linux/timer.h>
d0709a65 18#include <linux/rtnetlink.h>
f0706e82
JB
19
20#include <net/mac80211.h>
21#include "ieee80211_i.h"
24487981 22#include "driver-ops.h"
2c8dccc7 23#include "rate.h"
f0706e82 24#include "sta_info.h"
e9f207f0 25#include "debugfs_sta.h"
ee385855 26#include "mesh.h"
ce662b44 27#include "wme.h"
f0706e82 28
d0709a65
JB
29/**
30 * DOC: STA information lifetime rules
31 *
32 * STA info structures (&struct sta_info) are managed in a hash table
33 * for faster lookup and a list for iteration. They are managed using
34 * RCU, i.e. access to the list and hash table is protected by RCU.
35 *
34e89507
JB
36 * Upon allocating a STA info structure with sta_info_alloc(), the caller
37 * owns that structure. It must then insert it into the hash table using
38 * either sta_info_insert() or sta_info_insert_rcu(); only in the latter
39 * case (which acquires an rcu read section but must not be called from
40 * within one) will the pointer still be valid after the call. Note that
41 * the caller may not do much with the STA info before inserting it, in
42 * particular, it may not start any mesh peer link management or add
43 * encryption keys.
93e5deb1
JB
44 *
45 * When the insertion fails (sta_info_insert()) returns non-zero), the
46 * structure will have been freed by sta_info_insert()!
d0709a65 47 *
34e89507 48 * Station entries are added by mac80211 when you establish a link with a
7e189a12
LR
49 * peer. This means different things for the different type of interfaces
50 * we support. For a regular station this mean we add the AP sta when we
25985edc 51 * receive an association response from the AP. For IBSS this occurs when
34e89507 52 * get to know about a peer on the same IBSS. For WDS we add the sta for
25985edc 53 * the peer immediately upon device open. When using AP mode we add stations
34e89507 54 * for each respective station upon request from userspace through nl80211.
7e189a12 55 *
34e89507
JB
56 * In order to remove a STA info structure, various sta_info_destroy_*()
57 * calls are available.
d0709a65 58 *
34e89507
JB
59 * There is no concept of ownership on a STA entry, each structure is
60 * owned by the global hash table/list until it is removed. All users of
61 * the structure need to be RCU protected so that the structure won't be
62 * freed before they are done using it.
d0709a65 63 */
f0706e82 64
4d33960b 65/* Caller must hold local->sta_mtx */
be8755e1
MW
66static int sta_info_hash_del(struct ieee80211_local *local,
67 struct sta_info *sta)
f0706e82
JB
68{
69 struct sta_info *s;
70
40b275b6 71 s = rcu_dereference_protected(local->sta_hash[STA_HASH(sta->sta.addr)],
4d33960b 72 lockdep_is_held(&local->sta_mtx));
f0706e82 73 if (!s)
be8755e1
MW
74 return -ENOENT;
75 if (s == sta) {
cf778b00 76 rcu_assign_pointer(local->sta_hash[STA_HASH(sta->sta.addr)],
d0709a65 77 s->hnext);
be8755e1 78 return 0;
f0706e82
JB
79 }
80
40b275b6
JB
81 while (rcu_access_pointer(s->hnext) &&
82 rcu_access_pointer(s->hnext) != sta)
83 s = rcu_dereference_protected(s->hnext,
4d33960b 84 lockdep_is_held(&local->sta_mtx));
40b275b6 85 if (rcu_access_pointer(s->hnext)) {
cf778b00 86 rcu_assign_pointer(s->hnext, sta->hnext);
be8755e1
MW
87 return 0;
88 }
f0706e82 89
be8755e1 90 return -ENOENT;
f0706e82
JB
91}
92
d0709a65 93/* protected by RCU */
abe60632
JB
94struct sta_info *sta_info_get(struct ieee80211_sub_if_data *sdata,
95 const u8 *addr)
f0706e82 96{
abe60632 97 struct ieee80211_local *local = sdata->local;
f0706e82
JB
98 struct sta_info *sta;
99
0379185b 100 sta = rcu_dereference_check(local->sta_hash[STA_HASH(addr)],
0379185b 101 lockdep_is_held(&local->sta_mtx));
f0706e82 102 while (sta) {
abe60632
JB
103 if (sta->sdata == sdata &&
104 memcmp(sta->sta.addr, addr, ETH_ALEN) == 0)
f0706e82 105 break;
0379185b 106 sta = rcu_dereference_check(sta->hnext,
0379185b 107 lockdep_is_held(&local->sta_mtx));
f0706e82 108 }
43ba7e95
JB
109 return sta;
110}
111
0e5ded5a
FF
112/*
113 * Get sta info either from the specified interface
114 * or from one of its vlans
115 */
116struct sta_info *sta_info_get_bss(struct ieee80211_sub_if_data *sdata,
117 const u8 *addr)
118{
119 struct ieee80211_local *local = sdata->local;
120 struct sta_info *sta;
121
0379185b 122 sta = rcu_dereference_check(local->sta_hash[STA_HASH(addr)],
0379185b 123 lockdep_is_held(&local->sta_mtx));
0e5ded5a
FF
124 while (sta) {
125 if ((sta->sdata == sdata ||
a2c1e3da 126 (sta->sdata->bss && sta->sdata->bss == sdata->bss)) &&
0e5ded5a
FF
127 memcmp(sta->sta.addr, addr, ETH_ALEN) == 0)
128 break;
0379185b 129 sta = rcu_dereference_check(sta->hnext,
0379185b 130 lockdep_is_held(&local->sta_mtx));
0e5ded5a
FF
131 }
132 return sta;
133}
134
3b53fde8
JB
135struct sta_info *sta_info_get_by_idx(struct ieee80211_sub_if_data *sdata,
136 int idx)
ee385855 137{
3b53fde8 138 struct ieee80211_local *local = sdata->local;
ee385855
LCC
139 struct sta_info *sta;
140 int i = 0;
141
d0709a65 142 list_for_each_entry_rcu(sta, &local->sta_list, list) {
3b53fde8 143 if (sdata != sta->sdata)
2a8ca29a 144 continue;
ee385855
LCC
145 if (i < idx) {
146 ++i;
147 continue;
ee385855 148 }
2a8ca29a 149 return sta;
ee385855 150 }
ee385855
LCC
151
152 return NULL;
153}
f0706e82 154
93e5deb1 155/**
d9a7ddb0 156 * sta_info_free - free STA
93e5deb1 157 *
6ef307bc 158 * @local: pointer to the global information
93e5deb1
JB
159 * @sta: STA info to free
160 *
161 * This function must undo everything done by sta_info_alloc()
d9a7ddb0
JB
162 * that may happen before sta_info_insert(). It may only be
163 * called when sta_info_insert() has not been attempted (and
164 * if that fails, the station is freed anyway.)
93e5deb1 165 */
d9a7ddb0 166void sta_info_free(struct ieee80211_local *local, struct sta_info *sta)
93e5deb1 167{
889cbb91 168 if (sta->rate_ctrl)
af65cd96 169 rate_control_free_sta(sta);
93e5deb1
JB
170
171#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
0fb9a9ec 172 wiphy_debug(local->hw.wiphy, "Destroyed STA %pM\n", sta->sta.addr);
93e5deb1
JB
173#endif /* CONFIG_MAC80211_VERBOSE_DEBUG */
174
175 kfree(sta);
176}
177
4d33960b 178/* Caller must hold local->sta_mtx */
d0709a65
JB
179static void sta_info_hash_add(struct ieee80211_local *local,
180 struct sta_info *sta)
f0706e82 181{
4d33960b 182 lockdep_assert_held(&local->sta_mtx);
17741cdc 183 sta->hnext = local->sta_hash[STA_HASH(sta->sta.addr)];
cf778b00 184 rcu_assign_pointer(local->sta_hash[STA_HASH(sta->sta.addr)], sta);
f0706e82 185}
f0706e82 186
af818581
JB
187static void sta_unblock(struct work_struct *wk)
188{
189 struct sta_info *sta;
190
191 sta = container_of(wk, struct sta_info, drv_unblock_wk);
192
193 if (sta->dead)
194 return;
195
54420473
HS
196 if (!test_sta_flag(sta, WLAN_STA_PS_STA)) {
197 local_bh_disable();
af818581 198 ieee80211_sta_ps_deliver_wakeup(sta);
54420473
HS
199 local_bh_enable();
200 } else if (test_and_clear_sta_flag(sta, WLAN_STA_PSPOLL)) {
c2c98fde 201 clear_sta_flag(sta, WLAN_STA_PS_DRIVER);
ce662b44
JB
202
203 local_bh_disable();
af818581 204 ieee80211_sta_ps_deliver_poll_response(sta);
ce662b44 205 local_bh_enable();
c2c98fde
JB
206 } else if (test_and_clear_sta_flag(sta, WLAN_STA_UAPSD)) {
207 clear_sta_flag(sta, WLAN_STA_PS_DRIVER);
ce662b44
JB
208
209 local_bh_disable();
47086fc5 210 ieee80211_sta_ps_deliver_uapsd(sta);
ce662b44 211 local_bh_enable();
50a9432d 212 } else
c2c98fde 213 clear_sta_flag(sta, WLAN_STA_PS_DRIVER);
af818581
JB
214}
215
af65cd96
JB
216static int sta_prepare_rate_control(struct ieee80211_local *local,
217 struct sta_info *sta, gfp_t gfp)
218{
219 if (local->hw.flags & IEEE80211_HW_HAS_RATE_CONTROL)
220 return 0;
221
889cbb91 222 sta->rate_ctrl = local->rate_ctrl;
af65cd96
JB
223 sta->rate_ctrl_priv = rate_control_alloc_sta(sta->rate_ctrl,
224 &sta->sta, gfp);
889cbb91 225 if (!sta->rate_ctrl_priv)
af65cd96 226 return -ENOMEM;
af65cd96
JB
227
228 return 0;
229}
230
73651ee6 231struct sta_info *sta_info_alloc(struct ieee80211_sub_if_data *sdata,
56544160 232 const u8 *addr, gfp_t gfp)
f0706e82 233{
d0709a65 234 struct ieee80211_local *local = sdata->local;
f0706e82 235 struct sta_info *sta;
ebe27c91 236 struct timespec uptime;
16c5f15c 237 int i;
f0706e82 238
17741cdc 239 sta = kzalloc(sizeof(*sta) + local->hw.sta_data_size, gfp);
f0706e82 240 if (!sta)
73651ee6 241 return NULL;
f0706e82 242
07346f81 243 spin_lock_init(&sta->lock);
af818581 244 INIT_WORK(&sta->drv_unblock_wk, sta_unblock);
67c282c0 245 INIT_WORK(&sta->ampdu_mlme.work, ieee80211_ba_session_work);
a93e3644 246 mutex_init(&sta->ampdu_mlme.mtx);
07346f81 247
17741cdc 248 memcpy(sta->sta.addr, addr, ETH_ALEN);
d0709a65
JB
249 sta->local = local;
250 sta->sdata = sdata;
8bc8aecd 251 sta->last_rx = jiffies;
f0706e82 252
71ec375c
JB
253 sta->sta_state = IEEE80211_STA_NONE;
254
ebe27c91
MSS
255 do_posix_clock_monotonic_gettime(&uptime);
256 sta->last_connected = uptime.tv_sec;
541a45a1
BR
257 ewma_init(&sta->avg_signal, 1024, 8);
258
af65cd96 259 if (sta_prepare_rate_control(local, sta, gfp)) {
f0706e82 260 kfree(sta);
73651ee6 261 return NULL;
f0706e82
JB
262 }
263
16c5f15c 264 for (i = 0; i < STA_TID_NUM; i++) {
a622ab72
JB
265 /*
266 * timer_to_tid must be initialized with identity mapping
267 * to enable session_timer's data differentiation. See
268 * sta_rx_agg_session_timer_expired for usage.
269 */
16c5f15c 270 sta->timer_to_tid[i] = i;
16c5f15c 271 }
948d887d
JB
272 for (i = 0; i < IEEE80211_NUM_ACS; i++) {
273 skb_queue_head_init(&sta->ps_tx_buf[i]);
274 skb_queue_head_init(&sta->tx_filtered[i]);
275 }
73651ee6 276
cccaec98 277 for (i = 0; i < NUM_RX_DATA_QUEUES; i++)
4be929be 278 sta->last_seq_ctrl[i] = cpu_to_le16(USHRT_MAX);
cccaec98 279
73651ee6 280#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
0fb9a9ec 281 wiphy_debug(local->hw.wiphy, "Allocated STA %pM\n", sta->sta.addr);
73651ee6
JB
282#endif /* CONFIG_MAC80211_VERBOSE_DEBUG */
283
03e4497e 284#ifdef CONFIG_MAC80211_MESH
57cf8043 285 sta->plink_state = NL80211_PLINK_LISTEN;
03e4497e
JB
286 init_timer(&sta->plink_timer);
287#endif
288
73651ee6
JB
289 return sta;
290}
291
8c71df7a 292static int sta_info_insert_check(struct sta_info *sta)
34e89507 293{
34e89507 294 struct ieee80211_sub_if_data *sdata = sta->sdata;
34e89507 295
03e4497e
JB
296 /*
297 * Can't be a WARN_ON because it can be triggered through a race:
298 * something inserts a STA (on one CPU) without holding the RTNL
299 * and another CPU turns off the net device.
300 */
8c71df7a
GE
301 if (unlikely(!ieee80211_sdata_running(sdata)))
302 return -ENETDOWN;
03e4497e 303
47846c9b 304 if (WARN_ON(compare_ether_addr(sta->sta.addr, sdata->vif.addr) == 0 ||
8c71df7a
GE
305 is_multicast_ether_addr(sta->sta.addr)))
306 return -EINVAL;
307
308 return 0;
309}
310
f09603a2
JB
311static int sta_info_insert_drv_state(struct ieee80211_local *local,
312 struct ieee80211_sub_if_data *sdata,
313 struct sta_info *sta)
314{
315 enum ieee80211_sta_state state;
316 int err = 0;
317
318 for (state = IEEE80211_STA_NOTEXIST; state < sta->sta_state; state++) {
319 err = drv_sta_state(local, sdata, sta, state, state + 1);
320 if (err)
321 break;
322 }
323
324 if (!err) {
a4ec45a4
JB
325 /*
326 * Drivers using legacy sta_add/sta_remove callbacks only
327 * get uploaded set to true after sta_add is called.
328 */
329 if (!local->ops->sta_add)
330 sta->uploaded = true;
f09603a2
JB
331 return 0;
332 }
333
334 if (sdata->vif.type == NL80211_IFTYPE_ADHOC) {
335 printk(KERN_DEBUG
336 "%s: failed to move IBSS STA %pM to state %d (%d) - keeping it anyway.\n",
337 sdata->name, sta->sta.addr, state + 1, err);
338 err = 0;
339 }
340
341 /* unwind on error */
342 for (; state > IEEE80211_STA_NOTEXIST; state--)
343 WARN_ON(drv_sta_state(local, sdata, sta, state, state - 1));
344
345 return err;
346}
347
8c71df7a
GE
348/*
349 * should be called with sta_mtx locked
350 * this function replaces the mutex lock
351 * with a RCU lock
352 */
4d33960b 353static int sta_info_insert_finish(struct sta_info *sta) __acquires(RCU)
8c71df7a
GE
354{
355 struct ieee80211_local *local = sta->local;
356 struct ieee80211_sub_if_data *sdata = sta->sdata;
7852e361 357 struct station_info sinfo;
8c71df7a
GE
358 int err = 0;
359
360 lockdep_assert_held(&local->sta_mtx);
34e89507 361
7852e361
JB
362 /* check if STA exists already */
363 if (sta_info_get_bss(sdata, sta->sta.addr)) {
364 err = -EEXIST;
365 goto out_err;
4d33960b 366 }
32bfd35d 367
7852e361
JB
368 /* notify driver */
369 err = sta_info_insert_drv_state(local, sdata, sta);
370 if (err)
371 goto out_err;
4d33960b 372
7852e361
JB
373 local->num_sta++;
374 local->sta_generation++;
375 smp_mb();
4d33960b 376
7852e361
JB
377 /* make the station visible */
378 sta_info_hash_add(local, sta);
83d5cc01 379
7852e361 380 list_add(&sta->list, &local->sta_list);
4d33960b 381
7852e361 382 set_sta_flag(sta, WLAN_STA_INSERTED);
4d33960b 383
7852e361
JB
384 ieee80211_sta_debugfs_add(sta);
385 rate_control_add_sta_debugfs(sta);
4d33960b 386
7852e361
JB
387 memset(&sinfo, 0, sizeof(sinfo));
388 sinfo.filled = 0;
389 sinfo.generation = local->sta_generation;
390 cfg80211_new_sta(sdata->dev, sta->sta.addr, &sinfo, GFP_KERNEL);
d0709a65 391
f0706e82 392#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
7852e361 393 wiphy_debug(local->hw.wiphy, "Inserted STA %pM\n", sta->sta.addr);
f0706e82
JB
394#endif /* CONFIG_MAC80211_VERBOSE_DEBUG */
395
34e89507
JB
396 /* move reference to rcu-protected */
397 rcu_read_lock();
398 mutex_unlock(&local->sta_mtx);
e9f207f0 399
73651ee6
JB
400 if (ieee80211_vif_is_mesh(&sdata->vif))
401 mesh_accept_plinks_update(sdata);
402
8c71df7a 403 return 0;
4d33960b
JB
404 out_err:
405 mutex_unlock(&local->sta_mtx);
406 rcu_read_lock();
407 return err;
8c71df7a
GE
408}
409
410int sta_info_insert_rcu(struct sta_info *sta) __acquires(RCU)
411{
412 struct ieee80211_local *local = sta->local;
8c71df7a
GE
413 int err = 0;
414
4d33960b
JB
415 might_sleep();
416
8c71df7a
GE
417 err = sta_info_insert_check(sta);
418 if (err) {
419 rcu_read_lock();
420 goto out_free;
421 }
422
8c71df7a
GE
423 mutex_lock(&local->sta_mtx);
424
4d33960b 425 err = sta_info_insert_finish(sta);
8c71df7a
GE
426 if (err)
427 goto out_free;
428
73651ee6 429 return 0;
93e5deb1
JB
430 out_free:
431 BUG_ON(!err);
d9a7ddb0 432 sta_info_free(local, sta);
93e5deb1 433 return err;
f0706e82
JB
434}
435
34e89507
JB
436int sta_info_insert(struct sta_info *sta)
437{
438 int err = sta_info_insert_rcu(sta);
439
440 rcu_read_unlock();
441
442 return err;
443}
444
004c872e
JB
445static inline void __bss_tim_set(struct ieee80211_if_ap *bss, u16 aid)
446{
447 /*
448 * This format has been mandated by the IEEE specifications,
449 * so this line may not be changed to use the __set_bit() format.
450 */
451 bss->tim[aid / 8] |= (1 << (aid % 8));
452}
453
454static inline void __bss_tim_clear(struct ieee80211_if_ap *bss, u16 aid)
455{
456 /*
457 * This format has been mandated by the IEEE specifications,
458 * so this line may not be changed to use the __clear_bit() format.
459 */
460 bss->tim[aid / 8] &= ~(1 << (aid % 8));
461}
462
948d887d 463static unsigned long ieee80211_tids_for_ac(int ac)
004c872e 464{
948d887d
JB
465 /* If we ever support TIDs > 7, this obviously needs to be adjusted */
466 switch (ac) {
467 case IEEE80211_AC_VO:
468 return BIT(6) | BIT(7);
469 case IEEE80211_AC_VI:
470 return BIT(4) | BIT(5);
471 case IEEE80211_AC_BE:
472 return BIT(0) | BIT(3);
473 case IEEE80211_AC_BK:
474 return BIT(1) | BIT(2);
475 default:
476 WARN_ON(1);
477 return 0;
d0709a65 478 }
004c872e
JB
479}
480
c868cb35 481void sta_info_recalc_tim(struct sta_info *sta)
004c872e 482{
c868cb35
JB
483 struct ieee80211_local *local = sta->local;
484 struct ieee80211_if_ap *bss = sta->sdata->bss;
d0709a65 485 unsigned long flags;
948d887d
JB
486 bool indicate_tim = false;
487 u8 ignore_for_tim = sta->sta.uapsd_queues;
488 int ac;
004c872e 489
c868cb35
JB
490 if (WARN_ON_ONCE(!sta->sdata->bss))
491 return;
3e122be0 492
c868cb35
JB
493 /* No need to do anything if the driver does all */
494 if (local->hw.flags & IEEE80211_HW_AP_LINK_PS)
495 return;
004c872e 496
c868cb35
JB
497 if (sta->dead)
498 goto done;
3e122be0 499
948d887d
JB
500 /*
501 * If all ACs are delivery-enabled then we should build
502 * the TIM bit for all ACs anyway; if only some are then
503 * we ignore those and build the TIM bit using only the
504 * non-enabled ones.
505 */
506 if (ignore_for_tim == BIT(IEEE80211_NUM_ACS) - 1)
507 ignore_for_tim = 0;
508
509 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
510 unsigned long tids;
3e122be0 511
948d887d
JB
512 if (ignore_for_tim & BIT(ac))
513 continue;
514
515 indicate_tim |= !skb_queue_empty(&sta->tx_filtered[ac]) ||
516 !skb_queue_empty(&sta->ps_tx_buf[ac]);
517 if (indicate_tim)
518 break;
3e122be0 519
948d887d
JB
520 tids = ieee80211_tids_for_ac(ac);
521
522 indicate_tim |=
523 sta->driver_buffered_tids & tids;
d0709a65 524 }
004c872e 525
c868cb35 526 done:
4d33960b 527 spin_lock_irqsave(&local->tim_lock, flags);
004c872e 528
948d887d 529 if (indicate_tim)
c868cb35
JB
530 __bss_tim_set(bss, sta->sta.aid);
531 else
532 __bss_tim_clear(bss, sta->sta.aid);
004c872e 533
c868cb35
JB
534 if (local->ops->set_tim) {
535 local->tim_in_locked_section = true;
948d887d 536 drv_set_tim(local, &sta->sta, indicate_tim);
c868cb35
JB
537 local->tim_in_locked_section = false;
538 }
3e122be0 539
4d33960b 540 spin_unlock_irqrestore(&local->tim_lock, flags);
004c872e
JB
541}
542
cd0b8d89 543static bool sta_info_buffer_expired(struct sta_info *sta, struct sk_buff *skb)
f0706e82 544{
e039fa4a 545 struct ieee80211_tx_info *info;
f0706e82
JB
546 int timeout;
547
548 if (!skb)
cd0b8d89 549 return false;
f0706e82 550
e039fa4a 551 info = IEEE80211_SKB_CB(skb);
f0706e82
JB
552
553 /* Timeout: (2 * listen_interval * beacon_int * 1024 / 1000000) sec */
57c4d7b4
JB
554 timeout = (sta->listen_interval *
555 sta->sdata->vif.bss_conf.beacon_int *
556 32 / 15625) * HZ;
f0706e82
JB
557 if (timeout < STA_TX_BUFFER_EXPIRE)
558 timeout = STA_TX_BUFFER_EXPIRE;
e039fa4a 559 return time_after(jiffies, info->control.jiffies + timeout);
f0706e82
JB
560}
561
562
948d887d
JB
563static bool sta_info_cleanup_expire_buffered_ac(struct ieee80211_local *local,
564 struct sta_info *sta, int ac)
f0706e82
JB
565{
566 unsigned long flags;
567 struct sk_buff *skb;
568
60750397
JB
569 /*
570 * First check for frames that should expire on the filtered
571 * queue. Frames here were rejected by the driver and are on
572 * a separate queue to avoid reordering with normal PS-buffered
573 * frames. They also aren't accounted for right now in the
574 * total_ps_buffered counter.
575 */
576 for (;;) {
948d887d
JB
577 spin_lock_irqsave(&sta->tx_filtered[ac].lock, flags);
578 skb = skb_peek(&sta->tx_filtered[ac]);
60750397 579 if (sta_info_buffer_expired(sta, skb))
948d887d 580 skb = __skb_dequeue(&sta->tx_filtered[ac]);
60750397
JB
581 else
582 skb = NULL;
948d887d 583 spin_unlock_irqrestore(&sta->tx_filtered[ac].lock, flags);
60750397
JB
584
585 /*
586 * Frames are queued in order, so if this one
587 * hasn't expired yet we can stop testing. If
588 * we actually reached the end of the queue we
589 * also need to stop, of course.
590 */
591 if (!skb)
592 break;
593 dev_kfree_skb(skb);
594 }
595
596 /*
597 * Now also check the normal PS-buffered queue, this will
598 * only find something if the filtered queue was emptied
599 * since the filtered frames are all before the normal PS
600 * buffered frames.
601 */
f0706e82 602 for (;;) {
948d887d
JB
603 spin_lock_irqsave(&sta->ps_tx_buf[ac].lock, flags);
604 skb = skb_peek(&sta->ps_tx_buf[ac]);
57c4d7b4 605 if (sta_info_buffer_expired(sta, skb))
948d887d 606 skb = __skb_dequeue(&sta->ps_tx_buf[ac]);
836341a7 607 else
f0706e82 608 skb = NULL;
948d887d 609 spin_unlock_irqrestore(&sta->ps_tx_buf[ac].lock, flags);
f0706e82 610
60750397
JB
611 /*
612 * frames are queued in order, so if this one
613 * hasn't expired yet (or we reached the end of
614 * the queue) we can stop testing
615 */
836341a7 616 if (!skb)
f0706e82 617 break;
836341a7 618
836341a7 619 local->total_ps_buffered--;
f4ea83dd 620#ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
0c68ae26
JB
621 printk(KERN_DEBUG "Buffered frame expired (STA %pM)\n",
622 sta->sta.addr);
f4ea83dd 623#endif
836341a7 624 dev_kfree_skb(skb);
f0706e82 625 }
3393a608 626
60750397
JB
627 /*
628 * Finally, recalculate the TIM bit for this station -- it might
629 * now be clear because the station was too slow to retrieve its
630 * frames.
631 */
632 sta_info_recalc_tim(sta);
633
634 /*
635 * Return whether there are any frames still buffered, this is
636 * used to check whether the cleanup timer still needs to run,
637 * if there are no frames we don't need to rearm the timer.
638 */
948d887d
JB
639 return !(skb_queue_empty(&sta->ps_tx_buf[ac]) &&
640 skb_queue_empty(&sta->tx_filtered[ac]));
641}
642
643static bool sta_info_cleanup_expire_buffered(struct ieee80211_local *local,
644 struct sta_info *sta)
645{
646 bool have_buffered = false;
647 int ac;
648
649 /* This is only necessary for stations on BSS interfaces */
650 if (!sta->sdata->bss)
651 return false;
652
653 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++)
654 have_buffered |=
655 sta_info_cleanup_expire_buffered_ac(local, sta, ac);
656
657 return have_buffered;
f0706e82
JB
658}
659
83d5cc01 660int __must_check __sta_info_destroy(struct sta_info *sta)
f0706e82 661{
34e89507
JB
662 struct ieee80211_local *local;
663 struct ieee80211_sub_if_data *sdata;
948d887d 664 int ret, i, ac;
42624d49 665 struct tid_ampdu_tx *tid_tx;
f0706e82 666
34e89507 667 might_sleep();
f0706e82 668
34e89507
JB
669 if (!sta)
670 return -ENOENT;
5bb644a0 671
34e89507
JB
672 local = sta->local;
673 sdata = sta->sdata;
f0706e82 674
83d5cc01
JB
675 lockdep_assert_held(&local->sta_mtx);
676
098a6070
JB
677 /*
678 * Before removing the station from the driver and
679 * rate control, it might still start new aggregation
680 * sessions -- block that to make sure the tear-down
681 * will be sufficient.
682 */
c2c98fde 683 set_sta_flag(sta, WLAN_STA_BLOCK_BA);
53f73c09 684 ieee80211_sta_tear_down_BA_sessions(sta, true);
098a6070 685
34e89507 686 ret = sta_info_hash_del(local, sta);
34e89507
JB
687 if (ret)
688 return ret;
689
4d33960b
JB
690 list_del(&sta->list);
691
8cb23153 692 mutex_lock(&local->key_mtx);
e31b8213 693 for (i = 0; i < NUM_DEFAULT_KEYS; i++)
40b275b6 694 __ieee80211_key_free(key_mtx_dereference(local, sta->gtk[i]));
e31b8213 695 if (sta->ptk)
40b275b6 696 __ieee80211_key_free(key_mtx_dereference(local, sta->ptk));
8cb23153 697 mutex_unlock(&local->key_mtx);
34e89507
JB
698
699 sta->dead = true;
700
34e89507
JB
701 local->num_sta--;
702 local->sta_generation++;
703
704 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
a9b3cd7f 705 RCU_INIT_POINTER(sdata->u.vlan.sta, NULL);
34e89507 706
83d5cc01 707 while (sta->sta_state > IEEE80211_STA_NONE) {
f09603a2
JB
708 ret = sta_info_move_state(sta, sta->sta_state - 1);
709 if (ret) {
83d5cc01
JB
710 WARN_ON_ONCE(1);
711 break;
712 }
713 }
d9a7ddb0 714
f09603a2 715 if (sta->uploaded) {
f09603a2
JB
716 ret = drv_sta_state(local, sdata, sta, IEEE80211_STA_NONE,
717 IEEE80211_STA_NOTEXIST);
718 WARN_ON_ONCE(ret != 0);
719 }
34e89507 720
e64b3795
JB
721 /*
722 * At this point, after we wait for an RCU grace period,
723 * neither mac80211 nor the driver can reference this
724 * sta struct any more except by still existing timers
725 * associated with this station that we clean up below.
726 */
727 synchronize_rcu();
728
4f3eb0ba
HS
729 if (test_sta_flag(sta, WLAN_STA_PS_STA)) {
730 BUG_ON(!sdata->bss);
731
732 clear_sta_flag(sta, WLAN_STA_PS_STA);
733
734 atomic_dec(&sdata->bss->num_sta_ps);
735 sta_info_recalc_tim(sta);
736 }
737
948d887d
JB
738 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
739 local->total_ps_buffered -= skb_queue_len(&sta->ps_tx_buf[ac]);
740 __skb_queue_purge(&sta->ps_tx_buf[ac]);
741 __skb_queue_purge(&sta->tx_filtered[ac]);
742 }
c868cb35 743
34e89507 744#ifdef CONFIG_MAC80211_MESH
e64b3795 745 if (ieee80211_vif_is_mesh(&sdata->vif))
34e89507 746 mesh_accept_plinks_update(sdata);
34e89507
JB
747#endif
748
749#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
0fb9a9ec 750 wiphy_debug(local->hw.wiphy, "Removed STA %pM\n", sta->sta.addr);
34e89507
JB
751#endif /* CONFIG_MAC80211_VERBOSE_DEBUG */
752 cancel_work_sync(&sta->drv_unblock_wk);
753
ec15e68b
JM
754 cfg80211_del_sta(sdata->dev, sta->sta.addr, GFP_KERNEL);
755
34e89507
JB
756 rate_control_remove_sta_debugfs(sta);
757 ieee80211_sta_debugfs_remove(sta);
758
759#ifdef CONFIG_MAC80211_MESH
760 if (ieee80211_vif_is_mesh(&sta->sdata->vif)) {
761 mesh_plink_deactivate(sta);
762 del_timer_sync(&sta->plink_timer);
763 }
764#endif
765
151a02f6
JB
766 /*
767 * Destroy aggregation state here. It would be nice to wait for the
768 * driver to finish aggregation stop and then clean up, but for now
769 * drivers have to handle aggregation stop being requested, followed
770 * directly by station destruction.
42624d49
YAP
771 */
772 for (i = 0; i < STA_TID_NUM; i++) {
151a02f6 773 tid_tx = rcu_dereference_raw(sta->ampdu_mlme.tid_tx[i]);
27bf8882 774 if (!tid_tx)
42624d49 775 continue;
151a02f6
JB
776 __skb_queue_purge(&tid_tx->pending);
777 kfree(tid_tx);
42624d49
YAP
778 }
779
d9a7ddb0 780 sta_info_free(local, sta);
34e89507
JB
781
782 return 0;
4d6141c3
JS
783}
784
34e89507 785int sta_info_destroy_addr(struct ieee80211_sub_if_data *sdata, const u8 *addr)
4d6141c3 786{
34e89507
JB
787 struct sta_info *sta;
788 int ret;
4d6141c3 789
34e89507 790 mutex_lock(&sdata->local->sta_mtx);
7852e361 791 sta = sta_info_get(sdata, addr);
34e89507
JB
792 ret = __sta_info_destroy(sta);
793 mutex_unlock(&sdata->local->sta_mtx);
4d6141c3
JS
794
795 return ret;
796}
797
34e89507
JB
798int sta_info_destroy_addr_bss(struct ieee80211_sub_if_data *sdata,
799 const u8 *addr)
e9f207f0 800{
34e89507
JB
801 struct sta_info *sta;
802 int ret;
e9f207f0 803
34e89507 804 mutex_lock(&sdata->local->sta_mtx);
7852e361 805 sta = sta_info_get_bss(sdata, addr);
34e89507
JB
806 ret = __sta_info_destroy(sta);
807 mutex_unlock(&sdata->local->sta_mtx);
d0709a65 808
34e89507
JB
809 return ret;
810}
e9f207f0 811
34e89507
JB
812static void sta_info_cleanup(unsigned long data)
813{
814 struct ieee80211_local *local = (struct ieee80211_local *) data;
815 struct sta_info *sta;
3393a608 816 bool timer_needed = false;
34e89507
JB
817
818 rcu_read_lock();
819 list_for_each_entry_rcu(sta, &local->sta_list, list)
3393a608
JO
820 if (sta_info_cleanup_expire_buffered(local, sta))
821 timer_needed = true;
34e89507 822 rcu_read_unlock();
e9f207f0 823
34e89507
JB
824 if (local->quiescing)
825 return;
d0709a65 826
3393a608
JO
827 if (!timer_needed)
828 return;
829
26d59535
JB
830 mod_timer(&local->sta_cleanup,
831 round_jiffies(jiffies + STA_INFO_CLEANUP_INTERVAL));
e9f207f0 832}
e9f207f0 833
f0706e82
JB
834void sta_info_init(struct ieee80211_local *local)
835{
4d33960b 836 spin_lock_init(&local->tim_lock);
34e89507 837 mutex_init(&local->sta_mtx);
f0706e82 838 INIT_LIST_HEAD(&local->sta_list);
f0706e82 839
b24b8a24
PE
840 setup_timer(&local->sta_cleanup, sta_info_cleanup,
841 (unsigned long)local);
f0706e82
JB
842}
843
844void sta_info_stop(struct ieee80211_local *local)
845{
f0706e82 846 del_timer(&local->sta_cleanup);
be8755e1 847 sta_info_flush(local, NULL);
f0706e82
JB
848}
849
f0706e82
JB
850/**
851 * sta_info_flush - flush matching STA entries from the STA table
44213b5e
JB
852 *
853 * Returns the number of removed STA entries.
854 *
f0706e82 855 * @local: local interface data
d0709a65 856 * @sdata: matching rule for the net device (sta->dev) or %NULL to match all STAs
f0706e82 857 */
44213b5e 858int sta_info_flush(struct ieee80211_local *local,
af8cdcd8 859 struct ieee80211_sub_if_data *sdata)
f0706e82
JB
860{
861 struct sta_info *sta, *tmp;
44213b5e 862 int ret = 0;
f0706e82 863
d0709a65 864 might_sleep();
be8755e1 865
34e89507 866 mutex_lock(&local->sta_mtx);
d0709a65 867 list_for_each_entry_safe(sta, tmp, &local->sta_list, list) {
34316837 868 if (!sdata || sdata == sta->sdata) {
34e89507 869 WARN_ON(__sta_info_destroy(sta));
34316837
JB
870 ret++;
871 }
be8755e1 872 }
34e89507 873 mutex_unlock(&local->sta_mtx);
44213b5e
JB
874
875 return ret;
f0706e82 876}
dc6676b7 877
24723d1b
JB
878void ieee80211_sta_expire(struct ieee80211_sub_if_data *sdata,
879 unsigned long exp_time)
880{
881 struct ieee80211_local *local = sdata->local;
882 struct sta_info *sta, *tmp;
24723d1b 883
34e89507 884 mutex_lock(&local->sta_mtx);
e46a2cf9
MSS
885
886 list_for_each_entry_safe(sta, tmp, &local->sta_list, list) {
ec2b774e
ML
887 if (sdata != sta->sdata)
888 continue;
889
24723d1b
JB
890 if (time_after(jiffies, sta->last_rx + exp_time)) {
891#ifdef CONFIG_MAC80211_IBSS_DEBUG
0c68ae26 892 printk(KERN_DEBUG "%s: expiring inactive STA %pM\n",
47846c9b 893 sdata->name, sta->sta.addr);
24723d1b 894#endif
34e89507 895 WARN_ON(__sta_info_destroy(sta));
24723d1b 896 }
e46a2cf9
MSS
897 }
898
34e89507 899 mutex_unlock(&local->sta_mtx);
24723d1b 900}
17741cdc 901
686b9cb9
BG
902struct ieee80211_sta *ieee80211_find_sta_by_ifaddr(struct ieee80211_hw *hw,
903 const u8 *addr,
904 const u8 *localaddr)
17741cdc 905{
abe60632 906 struct sta_info *sta, *nxt;
17741cdc 907
686b9cb9
BG
908 /*
909 * Just return a random station if localaddr is NULL
910 * ... first in list.
911 */
f7c65594 912 for_each_sta_info(hw_to_local(hw), addr, sta, nxt) {
686b9cb9
BG
913 if (localaddr &&
914 compare_ether_addr(sta->sdata->vif.addr, localaddr) != 0)
915 continue;
f7c65594
JB
916 if (!sta->uploaded)
917 return NULL;
abe60632 918 return &sta->sta;
f7c65594
JB
919 }
920
abe60632 921 return NULL;
17741cdc 922}
686b9cb9 923EXPORT_SYMBOL_GPL(ieee80211_find_sta_by_ifaddr);
5ed176e1
JB
924
925struct ieee80211_sta *ieee80211_find_sta(struct ieee80211_vif *vif,
926 const u8 *addr)
927{
f7c65594 928 struct sta_info *sta;
5ed176e1
JB
929
930 if (!vif)
931 return NULL;
932
f7c65594
JB
933 sta = sta_info_get_bss(vif_to_sdata(vif), addr);
934 if (!sta)
935 return NULL;
936
937 if (!sta->uploaded)
938 return NULL;
5ed176e1 939
f7c65594 940 return &sta->sta;
5ed176e1 941}
17741cdc 942EXPORT_SYMBOL(ieee80211_find_sta);
af818581 943
50a9432d
JB
944static void clear_sta_ps_flags(void *_sta)
945{
946 struct sta_info *sta = _sta;
608383bf 947 struct ieee80211_sub_if_data *sdata = sta->sdata;
50a9432d 948
c2c98fde 949 clear_sta_flag(sta, WLAN_STA_PS_DRIVER);
608383bf
HS
950 if (test_and_clear_sta_flag(sta, WLAN_STA_PS_STA))
951 atomic_dec(&sdata->bss->num_sta_ps);
50a9432d
JB
952}
953
af818581
JB
954/* powersave support code */
955void ieee80211_sta_ps_deliver_wakeup(struct sta_info *sta)
956{
957 struct ieee80211_sub_if_data *sdata = sta->sdata;
958 struct ieee80211_local *local = sdata->local;
948d887d
JB
959 struct sk_buff_head pending;
960 int filtered = 0, buffered = 0, ac;
961
c2c98fde 962 clear_sta_flag(sta, WLAN_STA_SP);
47086fc5 963
948d887d
JB
964 BUILD_BUG_ON(BITS_TO_LONGS(STA_TID_NUM) > 1);
965 sta->driver_buffered_tids = 0;
af818581 966
d057e5a3
AN
967 if (!(local->hw.flags & IEEE80211_HW_AP_LINK_PS))
968 drv_sta_notify(local, sdata, STA_NOTIFY_AWAKE, &sta->sta);
af818581 969
948d887d 970 skb_queue_head_init(&pending);
af818581
JB
971
972 /* Send all buffered frames to the station */
948d887d
JB
973 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
974 int count = skb_queue_len(&pending), tmp;
975
976 skb_queue_splice_tail_init(&sta->tx_filtered[ac], &pending);
977 tmp = skb_queue_len(&pending);
978 filtered += tmp - count;
979 count = tmp;
980
981 skb_queue_splice_tail_init(&sta->ps_tx_buf[ac], &pending);
982 tmp = skb_queue_len(&pending);
983 buffered += tmp - count;
984 }
985
986 ieee80211_add_pending_skbs_fn(local, &pending, clear_sta_ps_flags, sta);
987
af818581
JB
988 local->total_ps_buffered -= buffered;
989
c868cb35
JB
990 sta_info_recalc_tim(sta);
991
af818581
JB
992#ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
993 printk(KERN_DEBUG "%s: STA %pM aid %d sending %d filtered/%d PS frames "
47846c9b 994 "since STA not sleeping anymore\n", sdata->name,
948d887d 995 sta->sta.addr, sta->sta.aid, filtered, buffered);
af818581
JB
996#endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */
997}
998
ce662b44
JB
999static void ieee80211_send_null_response(struct ieee80211_sub_if_data *sdata,
1000 struct sta_info *sta, int tid,
40b96408 1001 enum ieee80211_frame_release_type reason)
af818581 1002{
af818581 1003 struct ieee80211_local *local = sdata->local;
ce662b44 1004 struct ieee80211_qos_hdr *nullfunc;
af818581 1005 struct sk_buff *skb;
ce662b44
JB
1006 int size = sizeof(*nullfunc);
1007 __le16 fc;
c2c98fde 1008 bool qos = test_sta_flag(sta, WLAN_STA_WME);
ce662b44 1009 struct ieee80211_tx_info *info;
af818581 1010
ce662b44
JB
1011 if (qos) {
1012 fc = cpu_to_le16(IEEE80211_FTYPE_DATA |
1013 IEEE80211_STYPE_QOS_NULLFUNC |
1014 IEEE80211_FCTL_FROMDS);
1015 } else {
1016 size -= 2;
1017 fc = cpu_to_le16(IEEE80211_FTYPE_DATA |
1018 IEEE80211_STYPE_NULLFUNC |
1019 IEEE80211_FCTL_FROMDS);
af818581 1020 }
af818581 1021
ce662b44
JB
1022 skb = dev_alloc_skb(local->hw.extra_tx_headroom + size);
1023 if (!skb)
1024 return;
1025
1026 skb_reserve(skb, local->hw.extra_tx_headroom);
1027
1028 nullfunc = (void *) skb_put(skb, size);
1029 nullfunc->frame_control = fc;
1030 nullfunc->duration_id = 0;
1031 memcpy(nullfunc->addr1, sta->sta.addr, ETH_ALEN);
1032 memcpy(nullfunc->addr2, sdata->vif.addr, ETH_ALEN);
1033 memcpy(nullfunc->addr3, sdata->vif.addr, ETH_ALEN);
1034
59b66255
JB
1035 skb->priority = tid;
1036 skb_set_queue_mapping(skb, ieee802_1d_to_ac[tid]);
ce662b44 1037 if (qos) {
ce662b44
JB
1038 nullfunc->qos_ctrl = cpu_to_le16(tid);
1039
40b96408 1040 if (reason == IEEE80211_FRAME_RELEASE_UAPSD)
ce662b44
JB
1041 nullfunc->qos_ctrl |=
1042 cpu_to_le16(IEEE80211_QOS_CTL_EOSP);
1043 }
1044
1045 info = IEEE80211_SKB_CB(skb);
1046
1047 /*
1048 * Tell TX path to send this frame even though the
1049 * STA may still remain is PS mode after this frame
deeaee19
JB
1050 * exchange. Also set EOSP to indicate this packet
1051 * ends the poll/service period.
ce662b44 1052 */
deeaee19
JB
1053 info->flags |= IEEE80211_TX_CTL_POLL_RESPONSE |
1054 IEEE80211_TX_STATUS_EOSP |
1055 IEEE80211_TX_CTL_REQ_TX_STATUS;
ce662b44 1056
40b96408
JB
1057 drv_allow_buffered_frames(local, sta, BIT(tid), 1, reason, false);
1058
ce662b44
JB
1059 ieee80211_xmit(sdata, skb);
1060}
1061
47086fc5
JB
1062static void
1063ieee80211_sta_ps_deliver_response(struct sta_info *sta,
1064 int n_frames, u8 ignored_acs,
1065 enum ieee80211_frame_release_type reason)
af818581
JB
1066{
1067 struct ieee80211_sub_if_data *sdata = sta->sdata;
1068 struct ieee80211_local *local = sdata->local;
4049e09a 1069 bool found = false;
948d887d
JB
1070 bool more_data = false;
1071 int ac;
4049e09a 1072 unsigned long driver_release_tids = 0;
47086fc5 1073 struct sk_buff_head frames;
af818581 1074
deeaee19 1075 /* Service or PS-Poll period starts */
c2c98fde 1076 set_sta_flag(sta, WLAN_STA_SP);
deeaee19 1077
47086fc5 1078 __skb_queue_head_init(&frames);
948d887d
JB
1079
1080 /*
47086fc5 1081 * Get response frame(s) and more data bit for it.
948d887d
JB
1082 */
1083 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
4049e09a
JB
1084 unsigned long tids;
1085
47086fc5 1086 if (ignored_acs & BIT(ac))
948d887d
JB
1087 continue;
1088
4049e09a
JB
1089 tids = ieee80211_tids_for_ac(ac);
1090
1091 if (!found) {
1092 driver_release_tids = sta->driver_buffered_tids & tids;
1093 if (driver_release_tids) {
1094 found = true;
1095 } else {
47086fc5
JB
1096 struct sk_buff *skb;
1097
1098 while (n_frames > 0) {
1099 skb = skb_dequeue(&sta->tx_filtered[ac]);
1100 if (!skb) {
1101 skb = skb_dequeue(
1102 &sta->ps_tx_buf[ac]);
1103 if (skb)
1104 local->total_ps_buffered--;
1105 }
1106 if (!skb)
1107 break;
1108 n_frames--;
4049e09a 1109 found = true;
47086fc5
JB
1110 __skb_queue_tail(&frames, skb);
1111 }
948d887d 1112 }
948d887d 1113
4049e09a
JB
1114 /*
1115 * If the driver has data on more than one TID then
1116 * certainly there's more data if we release just a
1117 * single frame now (from a single TID).
1118 */
47086fc5
JB
1119 if (reason == IEEE80211_FRAME_RELEASE_PSPOLL &&
1120 hweight16(driver_release_tids) > 1) {
4049e09a
JB
1121 more_data = true;
1122 driver_release_tids =
1123 BIT(ffs(driver_release_tids) - 1);
1124 break;
1125 }
1126 }
948d887d
JB
1127
1128 if (!skb_queue_empty(&sta->tx_filtered[ac]) ||
1129 !skb_queue_empty(&sta->ps_tx_buf[ac])) {
1130 more_data = true;
1131 break;
1132 }
af818581 1133 }
af818581 1134
4049e09a 1135 if (!found) {
ce662b44 1136 int tid;
af818581
JB
1137
1138 /*
ce662b44
JB
1139 * For PS-Poll, this can only happen due to a race condition
1140 * when we set the TIM bit and the station notices it, but
1141 * before it can poll for the frame we expire it.
1142 *
1143 * For uAPSD, this is said in the standard (11.2.1.5 h):
1144 * At each unscheduled SP for a non-AP STA, the AP shall
1145 * attempt to transmit at least one MSDU or MMPDU, but no
1146 * more than the value specified in the Max SP Length field
1147 * in the QoS Capability element from delivery-enabled ACs,
1148 * that are destined for the non-AP STA.
1149 *
1150 * Since we have no other MSDU/MMPDU, transmit a QoS null frame.
af818581 1151 */
af818581 1152
ce662b44
JB
1153 /* This will evaluate to 1, 3, 5 or 7. */
1154 tid = 7 - ((ffs(~ignored_acs) - 1) << 1);
af818581 1155
40b96408 1156 ieee80211_send_null_response(sdata, sta, tid, reason);
4049e09a
JB
1157 return;
1158 }
af818581 1159
47086fc5
JB
1160 if (!driver_release_tids) {
1161 struct sk_buff_head pending;
1162 struct sk_buff *skb;
40b96408
JB
1163 int num = 0;
1164 u16 tids = 0;
af818581 1165
47086fc5 1166 skb_queue_head_init(&pending);
af818581 1167
47086fc5
JB
1168 while ((skb = __skb_dequeue(&frames))) {
1169 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1170 struct ieee80211_hdr *hdr = (void *) skb->data;
40b96408
JB
1171 u8 *qoshdr = NULL;
1172
1173 num++;
af818581 1174
47086fc5
JB
1175 /*
1176 * Tell TX path to send this frame even though the
1177 * STA may still remain is PS mode after this frame
1178 * exchange.
1179 */
1180 info->flags |= IEEE80211_TX_CTL_POLL_RESPONSE;
1181
1182 /*
1183 * Use MoreData flag to indicate whether there are
1184 * more buffered frames for this STA
1185 */
24b9c373 1186 if (more_data || !skb_queue_empty(&frames))
47086fc5
JB
1187 hdr->frame_control |=
1188 cpu_to_le16(IEEE80211_FCTL_MOREDATA);
24b9c373
JD
1189 else
1190 hdr->frame_control &=
1191 cpu_to_le16(~IEEE80211_FCTL_MOREDATA);
47086fc5 1192
40b96408
JB
1193 if (ieee80211_is_data_qos(hdr->frame_control) ||
1194 ieee80211_is_qos_nullfunc(hdr->frame_control))
1195 qoshdr = ieee80211_get_qos_ctl(hdr);
1196
1197 /* set EOSP for the frame */
47086fc5 1198 if (reason == IEEE80211_FRAME_RELEASE_UAPSD &&
40b96408
JB
1199 qoshdr && skb_queue_empty(&frames))
1200 *qoshdr |= IEEE80211_QOS_CTL_EOSP;
af818581 1201
deeaee19
JB
1202 info->flags |= IEEE80211_TX_STATUS_EOSP |
1203 IEEE80211_TX_CTL_REQ_TX_STATUS;
1204
40b96408
JB
1205 if (qoshdr)
1206 tids |= BIT(*qoshdr & IEEE80211_QOS_CTL_TID_MASK);
1207 else
1208 tids |= BIT(0);
1209
47086fc5
JB
1210 __skb_queue_tail(&pending, skb);
1211 }
af818581 1212
40b96408
JB
1213 drv_allow_buffered_frames(local, sta, tids, num,
1214 reason, more_data);
1215
47086fc5 1216 ieee80211_add_pending_skbs(local, &pending);
af818581 1217
c868cb35 1218 sta_info_recalc_tim(sta);
af818581
JB
1219 } else {
1220 /*
4049e09a
JB
1221 * We need to release a frame that is buffered somewhere in the
1222 * driver ... it'll have to handle that.
1223 * Note that, as per the comment above, it'll also have to see
1224 * if there is more than just one frame on the specific TID that
1225 * we're releasing from, and it needs to set the more-data bit
1226 * accordingly if we tell it that there's no more data. If we do
1227 * tell it there's more data, then of course the more-data bit
1228 * needs to be set anyway.
1229 */
1230 drv_release_buffered_frames(local, sta, driver_release_tids,
47086fc5 1231 n_frames, reason, more_data);
4049e09a
JB
1232
1233 /*
1234 * Note that we don't recalculate the TIM bit here as it would
1235 * most likely have no effect at all unless the driver told us
1236 * that the TID became empty before returning here from the
1237 * release function.
1238 * Either way, however, when the driver tells us that the TID
1239 * became empty we'll do the TIM recalculation.
af818581 1240 */
af818581
JB
1241 }
1242}
1243
47086fc5
JB
1244void ieee80211_sta_ps_deliver_poll_response(struct sta_info *sta)
1245{
1246 u8 ignore_for_response = sta->sta.uapsd_queues;
1247
1248 /*
1249 * If all ACs are delivery-enabled then we should reply
1250 * from any of them, if only some are enabled we reply
1251 * only from the non-enabled ones.
1252 */
1253 if (ignore_for_response == BIT(IEEE80211_NUM_ACS) - 1)
1254 ignore_for_response = 0;
1255
1256 ieee80211_sta_ps_deliver_response(sta, 1, ignore_for_response,
1257 IEEE80211_FRAME_RELEASE_PSPOLL);
1258}
1259
1260void ieee80211_sta_ps_deliver_uapsd(struct sta_info *sta)
1261{
1262 int n_frames = sta->sta.max_sp;
1263 u8 delivery_enabled = sta->sta.uapsd_queues;
1264
1265 /*
1266 * If we ever grow support for TSPEC this might happen if
1267 * the TSPEC update from hostapd comes in between a trigger
1268 * frame setting WLAN_STA_UAPSD in the RX path and this
1269 * actually getting called.
1270 */
1271 if (!delivery_enabled)
1272 return;
1273
47086fc5
JB
1274 switch (sta->sta.max_sp) {
1275 case 1:
1276 n_frames = 2;
1277 break;
1278 case 2:
1279 n_frames = 4;
1280 break;
1281 case 3:
1282 n_frames = 6;
1283 break;
1284 case 0:
1285 /* XXX: what is a good value? */
1286 n_frames = 8;
1287 break;
1288 }
1289
1290 ieee80211_sta_ps_deliver_response(sta, n_frames, ~delivery_enabled,
1291 IEEE80211_FRAME_RELEASE_UAPSD);
1292}
1293
af818581
JB
1294void ieee80211_sta_block_awake(struct ieee80211_hw *hw,
1295 struct ieee80211_sta *pubsta, bool block)
1296{
1297 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
1298
b5878a2d
JB
1299 trace_api_sta_block_awake(sta->local, pubsta, block);
1300
af818581 1301 if (block)
c2c98fde
JB
1302 set_sta_flag(sta, WLAN_STA_PS_DRIVER);
1303 else if (test_sta_flag(sta, WLAN_STA_PS_DRIVER))
af818581
JB
1304 ieee80211_queue_work(hw, &sta->drv_unblock_wk);
1305}
1306EXPORT_SYMBOL(ieee80211_sta_block_awake);
dcf55fb5 1307
37fbd908
JB
1308void ieee80211_sta_eosp_irqsafe(struct ieee80211_sta *pubsta)
1309{
1310 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
1311 struct ieee80211_local *local = sta->local;
1312 struct sk_buff *skb;
1313 struct skb_eosp_msg_data *data;
1314
1315 trace_api_eosp(local, pubsta);
1316
1317 skb = alloc_skb(0, GFP_ATOMIC);
1318 if (!skb) {
1319 /* too bad ... but race is better than loss */
1320 clear_sta_flag(sta, WLAN_STA_SP);
1321 return;
1322 }
1323
1324 data = (void *)skb->cb;
1325 memcpy(data->sta, pubsta->addr, ETH_ALEN);
1326 memcpy(data->iface, sta->sdata->vif.addr, ETH_ALEN);
1327 skb->pkt_type = IEEE80211_EOSP_MSG;
1328 skb_queue_tail(&local->skb_queue, skb);
1329 tasklet_schedule(&local->tasklet);
1330}
1331EXPORT_SYMBOL(ieee80211_sta_eosp_irqsafe);
1332
042ec453
JB
1333void ieee80211_sta_set_buffered(struct ieee80211_sta *pubsta,
1334 u8 tid, bool buffered)
dcf55fb5
FF
1335{
1336 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
1337
948d887d 1338 if (WARN_ON(tid >= STA_TID_NUM))
042ec453
JB
1339 return;
1340
948d887d
JB
1341 if (buffered)
1342 set_bit(tid, &sta->driver_buffered_tids);
1343 else
1344 clear_bit(tid, &sta->driver_buffered_tids);
1345
c868cb35 1346 sta_info_recalc_tim(sta);
dcf55fb5 1347}
042ec453 1348EXPORT_SYMBOL(ieee80211_sta_set_buffered);
d9a7ddb0 1349
83d5cc01
JB
1350int sta_info_move_state(struct sta_info *sta,
1351 enum ieee80211_sta_state new_state)
d9a7ddb0 1352{
8bf11d8d 1353 might_sleep();
d9a7ddb0
JB
1354
1355 if (sta->sta_state == new_state)
1356 return 0;
1357
f09603a2
JB
1358 /* check allowed transitions first */
1359
1360 switch (new_state) {
1361 case IEEE80211_STA_NONE:
1362 if (sta->sta_state != IEEE80211_STA_AUTH)
1363 return -EINVAL;
1364 break;
1365 case IEEE80211_STA_AUTH:
1366 if (sta->sta_state != IEEE80211_STA_NONE &&
1367 sta->sta_state != IEEE80211_STA_ASSOC)
1368 return -EINVAL;
1369 break;
1370 case IEEE80211_STA_ASSOC:
1371 if (sta->sta_state != IEEE80211_STA_AUTH &&
1372 sta->sta_state != IEEE80211_STA_AUTHORIZED)
1373 return -EINVAL;
1374 break;
1375 case IEEE80211_STA_AUTHORIZED:
1376 if (sta->sta_state != IEEE80211_STA_ASSOC)
1377 return -EINVAL;
1378 break;
1379 default:
1380 WARN(1, "invalid state %d", new_state);
1381 return -EINVAL;
1382 }
1383
79027596 1384#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
f09603a2
JB
1385 printk(KERN_DEBUG "%s: moving STA %pM to state %d\n",
1386 sta->sdata->name, sta->sta.addr, new_state);
79027596 1387#endif
f09603a2
JB
1388
1389 /*
1390 * notify the driver before the actual changes so it can
1391 * fail the transition
1392 */
1393 if (test_sta_flag(sta, WLAN_STA_INSERTED)) {
1394 int err = drv_sta_state(sta->local, sta->sdata, sta,
1395 sta->sta_state, new_state);
1396 if (err)
1397 return err;
1398 }
1399
1400 /* reflect the change in all state variables */
1401
d9a7ddb0
JB
1402 switch (new_state) {
1403 case IEEE80211_STA_NONE:
1404 if (sta->sta_state == IEEE80211_STA_AUTH)
1405 clear_bit(WLAN_STA_AUTH, &sta->_flags);
d9a7ddb0
JB
1406 break;
1407 case IEEE80211_STA_AUTH:
1408 if (sta->sta_state == IEEE80211_STA_NONE)
1409 set_bit(WLAN_STA_AUTH, &sta->_flags);
1410 else if (sta->sta_state == IEEE80211_STA_ASSOC)
1411 clear_bit(WLAN_STA_ASSOC, &sta->_flags);
d9a7ddb0
JB
1412 break;
1413 case IEEE80211_STA_ASSOC:
29623892 1414 if (sta->sta_state == IEEE80211_STA_AUTH) {
d9a7ddb0 1415 set_bit(WLAN_STA_ASSOC, &sta->_flags);
29623892
JB
1416 } else if (sta->sta_state == IEEE80211_STA_AUTHORIZED) {
1417 if (sta->sdata->vif.type == NL80211_IFTYPE_AP)
1418 atomic_dec(&sta->sdata->u.ap.num_sta_authorized);
d9a7ddb0 1419 clear_bit(WLAN_STA_AUTHORIZED, &sta->_flags);
f09603a2 1420 }
d9a7ddb0
JB
1421 break;
1422 case IEEE80211_STA_AUTHORIZED:
29623892
JB
1423 if (sta->sta_state == IEEE80211_STA_ASSOC) {
1424 if (sta->sdata->vif.type == NL80211_IFTYPE_AP)
1425 atomic_inc(&sta->sdata->u.ap.num_sta_authorized);
d9a7ddb0 1426 set_bit(WLAN_STA_AUTHORIZED, &sta->_flags);
f09603a2 1427 }
d9a7ddb0
JB
1428 break;
1429 default:
f09603a2 1430 break;
d9a7ddb0
JB
1431 }
1432
d9a7ddb0
JB
1433 sta->sta_state = new_state;
1434
1435 return 0;
1436}
This page took 0.757063 seconds and 5 git commands to generate.