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