GNU Linux-libre 4.14.254-gnu1
[releases.git] / net / mac80211 / sta_info.c
1 /*
2  * Copyright 2002-2005, Instant802 Networks, Inc.
3  * Copyright 2006-2007  Jiri Benc <jbenc@suse.cz>
4  * Copyright 2013-2014  Intel Mobile Communications GmbH
5  * Copyright (C) 2015 - 2017 Intel Deutschland GmbH
6  * Copyright (C) 2018-2020 Intel Corporation
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 as
10  * published by the Free Software Foundation.
11  */
12
13 #include <linux/module.h>
14 #include <linux/init.h>
15 #include <linux/etherdevice.h>
16 #include <linux/netdevice.h>
17 #include <linux/types.h>
18 #include <linux/slab.h>
19 #include <linux/skbuff.h>
20 #include <linux/if_arp.h>
21 #include <linux/timer.h>
22 #include <linux/rtnetlink.h>
23
24 #include <net/codel.h>
25 #include <net/mac80211.h>
26 #include "ieee80211_i.h"
27 #include "driver-ops.h"
28 #include "rate.h"
29 #include "sta_info.h"
30 #include "debugfs_sta.h"
31 #include "mesh.h"
32 #include "wme.h"
33
34 /**
35  * DOC: STA information lifetime rules
36  *
37  * STA info structures (&struct sta_info) are managed in a hash table
38  * for faster lookup and a list for iteration. They are managed using
39  * RCU, i.e. access to the list and hash table is protected by RCU.
40  *
41  * Upon allocating a STA info structure with sta_info_alloc(), the caller
42  * owns that structure. It must then insert it into the hash table using
43  * either sta_info_insert() or sta_info_insert_rcu(); only in the latter
44  * case (which acquires an rcu read section but must not be called from
45  * within one) will the pointer still be valid after the call. Note that
46  * the caller may not do much with the STA info before inserting it, in
47  * particular, it may not start any mesh peer link management or add
48  * encryption keys.
49  *
50  * When the insertion fails (sta_info_insert()) returns non-zero), the
51  * structure will have been freed by sta_info_insert()!
52  *
53  * Station entries are added by mac80211 when you establish a link with a
54  * peer. This means different things for the different type of interfaces
55  * we support. For a regular station this mean we add the AP sta when we
56  * receive an association response from the AP. For IBSS this occurs when
57  * get to know about a peer on the same IBSS. For WDS we add the sta for
58  * the peer immediately upon device open. When using AP mode we add stations
59  * for each respective station upon request from userspace through nl80211.
60  *
61  * In order to remove a STA info structure, various sta_info_destroy_*()
62  * calls are available.
63  *
64  * There is no concept of ownership on a STA entry, each structure is
65  * owned by the global hash table/list until it is removed. All users of
66  * the structure need to be RCU protected so that the structure won't be
67  * freed before they are done using it.
68  */
69
70 static const struct rhashtable_params sta_rht_params = {
71         .nelem_hint = 3, /* start small */
72         .automatic_shrinking = true,
73         .head_offset = offsetof(struct sta_info, hash_node),
74         .key_offset = offsetof(struct sta_info, addr),
75         .key_len = ETH_ALEN,
76         .max_size = CONFIG_MAC80211_STA_HASH_MAX_SIZE,
77 };
78
79 /* Caller must hold local->sta_mtx */
80 static int sta_info_hash_del(struct ieee80211_local *local,
81                              struct sta_info *sta)
82 {
83         return rhltable_remove(&local->sta_hash, &sta->hash_node,
84                                sta_rht_params);
85 }
86
87 static void __cleanup_single_sta(struct sta_info *sta)
88 {
89         int ac, i;
90         struct tid_ampdu_tx *tid_tx;
91         struct ieee80211_sub_if_data *sdata = sta->sdata;
92         struct ieee80211_local *local = sdata->local;
93         struct fq *fq = &local->fq;
94         struct ps_data *ps;
95
96         if (test_sta_flag(sta, WLAN_STA_PS_STA) ||
97             test_sta_flag(sta, WLAN_STA_PS_DRIVER) ||
98             test_sta_flag(sta, WLAN_STA_PS_DELIVER)) {
99                 if (sta->sdata->vif.type == NL80211_IFTYPE_AP ||
100                     sta->sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
101                         ps = &sdata->bss->ps;
102                 else if (ieee80211_vif_is_mesh(&sdata->vif))
103                         ps = &sdata->u.mesh.ps;
104                 else
105                         return;
106
107                 clear_sta_flag(sta, WLAN_STA_PS_STA);
108                 clear_sta_flag(sta, WLAN_STA_PS_DRIVER);
109                 clear_sta_flag(sta, WLAN_STA_PS_DELIVER);
110
111                 atomic_dec(&ps->num_sta_ps);
112         }
113
114         if (sta->sta.txq[0]) {
115                 for (i = 0; i < ARRAY_SIZE(sta->sta.txq); i++) {
116                         struct txq_info *txqi = to_txq_info(sta->sta.txq[i]);
117
118                         spin_lock_bh(&fq->lock);
119                         ieee80211_txq_purge(local, txqi);
120                         spin_unlock_bh(&fq->lock);
121                 }
122         }
123
124         for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
125                 local->total_ps_buffered -= skb_queue_len(&sta->ps_tx_buf[ac]);
126                 ieee80211_purge_tx_queue(&local->hw, &sta->ps_tx_buf[ac]);
127                 ieee80211_purge_tx_queue(&local->hw, &sta->tx_filtered[ac]);
128         }
129
130         if (ieee80211_vif_is_mesh(&sdata->vif))
131                 mesh_sta_cleanup(sta);
132
133         cancel_work_sync(&sta->drv_deliver_wk);
134
135         /*
136          * Destroy aggregation state here. It would be nice to wait for the
137          * driver to finish aggregation stop and then clean up, but for now
138          * drivers have to handle aggregation stop being requested, followed
139          * directly by station destruction.
140          */
141         for (i = 0; i < IEEE80211_NUM_TIDS; i++) {
142                 kfree(sta->ampdu_mlme.tid_start_tx[i]);
143                 tid_tx = rcu_dereference_raw(sta->ampdu_mlme.tid_tx[i]);
144                 if (!tid_tx)
145                         continue;
146                 ieee80211_purge_tx_queue(&local->hw, &tid_tx->pending);
147                 kfree(tid_tx);
148         }
149 }
150
151 static void cleanup_single_sta(struct sta_info *sta)
152 {
153         struct ieee80211_sub_if_data *sdata = sta->sdata;
154         struct ieee80211_local *local = sdata->local;
155
156         __cleanup_single_sta(sta);
157         sta_info_free(local, sta);
158 }
159
160 struct rhlist_head *sta_info_hash_lookup(struct ieee80211_local *local,
161                                          const u8 *addr)
162 {
163         return rhltable_lookup(&local->sta_hash, addr, sta_rht_params);
164 }
165
166 /* protected by RCU */
167 struct sta_info *sta_info_get(struct ieee80211_sub_if_data *sdata,
168                               const u8 *addr)
169 {
170         struct ieee80211_local *local = sdata->local;
171         struct rhlist_head *tmp;
172         struct sta_info *sta;
173
174         rcu_read_lock();
175         for_each_sta_info(local, addr, sta, tmp) {
176                 if (sta->sdata == sdata) {
177                         rcu_read_unlock();
178                         /* this is safe as the caller must already hold
179                          * another rcu read section or the mutex
180                          */
181                         return sta;
182                 }
183         }
184         rcu_read_unlock();
185         return NULL;
186 }
187
188 /*
189  * Get sta info either from the specified interface
190  * or from one of its vlans
191  */
192 struct sta_info *sta_info_get_bss(struct ieee80211_sub_if_data *sdata,
193                                   const u8 *addr)
194 {
195         struct ieee80211_local *local = sdata->local;
196         struct rhlist_head *tmp;
197         struct sta_info *sta;
198
199         rcu_read_lock();
200         for_each_sta_info(local, addr, sta, tmp) {
201                 if (sta->sdata == sdata ||
202                     (sta->sdata->bss && sta->sdata->bss == sdata->bss)) {
203                         rcu_read_unlock();
204                         /* this is safe as the caller must already hold
205                          * another rcu read section or the mutex
206                          */
207                         return sta;
208                 }
209         }
210         rcu_read_unlock();
211         return NULL;
212 }
213
214 struct sta_info *sta_info_get_by_idx(struct ieee80211_sub_if_data *sdata,
215                                      int idx)
216 {
217         struct ieee80211_local *local = sdata->local;
218         struct sta_info *sta;
219         int i = 0;
220
221         list_for_each_entry_rcu(sta, &local->sta_list, list) {
222                 if (sdata != sta->sdata)
223                         continue;
224                 if (i < idx) {
225                         ++i;
226                         continue;
227                 }
228                 return sta;
229         }
230
231         return NULL;
232 }
233
234 /**
235  * sta_info_free - free STA
236  *
237  * @local: pointer to the global information
238  * @sta: STA info to free
239  *
240  * This function must undo everything done by sta_info_alloc()
241  * that may happen before sta_info_insert(). It may only be
242  * called when sta_info_insert() has not been attempted (and
243  * if that fails, the station is freed anyway.)
244  */
245 void sta_info_free(struct ieee80211_local *local, struct sta_info *sta)
246 {
247         /*
248          * If we had used sta_info_pre_move_state() then we might not
249          * have gone through the state transitions down again, so do
250          * it here now (and warn if it's inserted).
251          *
252          * This will clear state such as fast TX/RX that may have been
253          * allocated during state transitions.
254          */
255         while (sta->sta_state > IEEE80211_STA_NONE) {
256                 int ret;
257
258                 WARN_ON_ONCE(test_sta_flag(sta, WLAN_STA_INSERTED));
259
260                 ret = sta_info_move_state(sta, sta->sta_state - 1);
261                 if (WARN_ONCE(ret, "sta_info_move_state() returned %d\n", ret))
262                         break;
263         }
264
265         if (sta->rate_ctrl)
266                 rate_control_free_sta(sta);
267
268         sta_dbg(sta->sdata, "Destroyed STA %pM\n", sta->sta.addr);
269
270         if (sta->sta.txq[0])
271                 kfree(to_txq_info(sta->sta.txq[0]));
272         kfree(rcu_dereference_raw(sta->sta.rates));
273 #ifdef CONFIG_MAC80211_MESH
274         kfree(sta->mesh);
275 #endif
276         free_percpu(sta->pcpu_rx_stats);
277         kfree(sta);
278 }
279
280 /* Caller must hold local->sta_mtx */
281 static int sta_info_hash_add(struct ieee80211_local *local,
282                              struct sta_info *sta)
283 {
284         return rhltable_insert(&local->sta_hash, &sta->hash_node,
285                                sta_rht_params);
286 }
287
288 static void sta_deliver_ps_frames(struct work_struct *wk)
289 {
290         struct sta_info *sta;
291
292         sta = container_of(wk, struct sta_info, drv_deliver_wk);
293
294         if (sta->dead)
295                 return;
296
297         local_bh_disable();
298         if (!test_sta_flag(sta, WLAN_STA_PS_STA))
299                 ieee80211_sta_ps_deliver_wakeup(sta);
300         else if (test_and_clear_sta_flag(sta, WLAN_STA_PSPOLL))
301                 ieee80211_sta_ps_deliver_poll_response(sta);
302         else if (test_and_clear_sta_flag(sta, WLAN_STA_UAPSD))
303                 ieee80211_sta_ps_deliver_uapsd(sta);
304         local_bh_enable();
305 }
306
307 static int sta_prepare_rate_control(struct ieee80211_local *local,
308                                     struct sta_info *sta, gfp_t gfp)
309 {
310         if (ieee80211_hw_check(&local->hw, HAS_RATE_CONTROL))
311                 return 0;
312
313         sta->rate_ctrl = local->rate_ctrl;
314         sta->rate_ctrl_priv = rate_control_alloc_sta(sta->rate_ctrl,
315                                                      sta, gfp);
316         if (!sta->rate_ctrl_priv)
317                 return -ENOMEM;
318
319         return 0;
320 }
321
322 struct sta_info *sta_info_alloc(struct ieee80211_sub_if_data *sdata,
323                                 const u8 *addr, gfp_t gfp)
324 {
325         struct ieee80211_local *local = sdata->local;
326         struct ieee80211_hw *hw = &local->hw;
327         struct sta_info *sta;
328         int i;
329
330         sta = kzalloc(sizeof(*sta) + hw->sta_data_size, gfp);
331         if (!sta)
332                 return NULL;
333
334         if (ieee80211_hw_check(hw, USES_RSS)) {
335                 sta->pcpu_rx_stats =
336                         alloc_percpu_gfp(struct ieee80211_sta_rx_stats, gfp);
337                 if (!sta->pcpu_rx_stats)
338                         goto free;
339         }
340
341         spin_lock_init(&sta->lock);
342         spin_lock_init(&sta->ps_lock);
343         INIT_WORK(&sta->drv_deliver_wk, sta_deliver_ps_frames);
344         INIT_WORK(&sta->ampdu_mlme.work, ieee80211_ba_session_work);
345         mutex_init(&sta->ampdu_mlme.mtx);
346 #ifdef CONFIG_MAC80211_MESH
347         if (ieee80211_vif_is_mesh(&sdata->vif)) {
348                 sta->mesh = kzalloc(sizeof(*sta->mesh), gfp);
349                 if (!sta->mesh)
350                         goto free;
351                 spin_lock_init(&sta->mesh->plink_lock);
352                 if (ieee80211_vif_is_mesh(&sdata->vif) &&
353                     !sdata->u.mesh.user_mpm)
354                         init_timer(&sta->mesh->plink_timer);
355                 sta->mesh->nonpeer_pm = NL80211_MESH_POWER_ACTIVE;
356         }
357 #endif
358
359         memcpy(sta->addr, addr, ETH_ALEN);
360         memcpy(sta->sta.addr, addr, ETH_ALEN);
361         sta->sta.max_rx_aggregation_subframes =
362                 local->hw.max_rx_aggregation_subframes;
363
364         sta->local = local;
365         sta->sdata = sdata;
366         sta->rx_stats.last_rx = jiffies;
367
368         u64_stats_init(&sta->rx_stats.syncp);
369
370         ieee80211_init_frag_cache(&sta->frags);
371
372         sta->sta_state = IEEE80211_STA_NONE;
373
374         /* Mark TID as unreserved */
375         sta->reserved_tid = IEEE80211_TID_UNRESERVED;
376
377         sta->last_connected = ktime_get_seconds();
378         ewma_signal_init(&sta->rx_stats_avg.signal);
379         for (i = 0; i < ARRAY_SIZE(sta->rx_stats_avg.chain_signal); i++)
380                 ewma_signal_init(&sta->rx_stats_avg.chain_signal[i]);
381
382         if (local->ops->wake_tx_queue) {
383                 void *txq_data;
384                 int size = sizeof(struct txq_info) +
385                            ALIGN(hw->txq_data_size, sizeof(void *));
386
387                 txq_data = kcalloc(ARRAY_SIZE(sta->sta.txq), size, gfp);
388                 if (!txq_data)
389                         goto free;
390
391                 for (i = 0; i < ARRAY_SIZE(sta->sta.txq); i++) {
392                         struct txq_info *txq = txq_data + i * size;
393
394                         ieee80211_txq_init(sdata, sta, txq, i);
395                 }
396         }
397
398         if (sta_prepare_rate_control(local, sta, gfp))
399                 goto free_txq;
400
401         for (i = 0; i < IEEE80211_NUM_TIDS; i++) {
402                 /*
403                  * timer_to_tid must be initialized with identity mapping
404                  * to enable session_timer's data differentiation. See
405                  * sta_rx_agg_session_timer_expired for usage.
406                  */
407                 sta->timer_to_tid[i] = i;
408         }
409         for (i = 0; i < IEEE80211_NUM_ACS; i++) {
410                 skb_queue_head_init(&sta->ps_tx_buf[i]);
411                 skb_queue_head_init(&sta->tx_filtered[i]);
412         }
413
414         for (i = 0; i < IEEE80211_NUM_TIDS; i++)
415                 sta->last_seq_ctrl[i] = cpu_to_le16(USHRT_MAX);
416
417         sta->sta.smps_mode = IEEE80211_SMPS_OFF;
418         if (sdata->vif.type == NL80211_IFTYPE_AP ||
419             sdata->vif.type == NL80211_IFTYPE_AP_VLAN) {
420                 struct ieee80211_supported_band *sband;
421                 u8 smps;
422
423                 sband = ieee80211_get_sband(sdata);
424                 if (!sband)
425                         goto free_txq;
426
427                 smps = (sband->ht_cap.cap & IEEE80211_HT_CAP_SM_PS) >>
428                         IEEE80211_HT_CAP_SM_PS_SHIFT;
429                 /*
430                  * Assume that hostapd advertises our caps in the beacon and
431                  * this is the known_smps_mode for a station that just assciated
432                  */
433                 switch (smps) {
434                 case WLAN_HT_SMPS_CONTROL_DISABLED:
435                         sta->known_smps_mode = IEEE80211_SMPS_OFF;
436                         break;
437                 case WLAN_HT_SMPS_CONTROL_STATIC:
438                         sta->known_smps_mode = IEEE80211_SMPS_STATIC;
439                         break;
440                 case WLAN_HT_SMPS_CONTROL_DYNAMIC:
441                         sta->known_smps_mode = IEEE80211_SMPS_DYNAMIC;
442                         break;
443                 default:
444                         WARN_ON(1);
445                 }
446         }
447
448         sta->sta.max_rc_amsdu_len = IEEE80211_MAX_MPDU_LEN_HT_BA;
449
450         sta->cparams.ce_threshold = CODEL_DISABLED_THRESHOLD;
451         sta->cparams.target = MS2TIME(20);
452         sta->cparams.interval = MS2TIME(100);
453         sta->cparams.ecn = true;
454
455         sta_dbg(sdata, "Allocated STA %pM\n", sta->sta.addr);
456
457         return sta;
458
459 free_txq:
460         if (sta->sta.txq[0])
461                 kfree(to_txq_info(sta->sta.txq[0]));
462 free:
463         free_percpu(sta->pcpu_rx_stats);
464 #ifdef CONFIG_MAC80211_MESH
465         kfree(sta->mesh);
466 #endif
467         kfree(sta);
468         return NULL;
469 }
470
471 static int sta_info_insert_check(struct sta_info *sta)
472 {
473         struct ieee80211_sub_if_data *sdata = sta->sdata;
474
475         /*
476          * Can't be a WARN_ON because it can be triggered through a race:
477          * something inserts a STA (on one CPU) without holding the RTNL
478          * and another CPU turns off the net device.
479          */
480         if (unlikely(!ieee80211_sdata_running(sdata)))
481                 return -ENETDOWN;
482
483         if (WARN_ON(ether_addr_equal(sta->sta.addr, sdata->vif.addr) ||
484                     is_multicast_ether_addr(sta->sta.addr)))
485                 return -EINVAL;
486
487         /* The RCU read lock is required by rhashtable due to
488          * asynchronous resize/rehash.  We also require the mutex
489          * for correctness.
490          */
491         rcu_read_lock();
492         lockdep_assert_held(&sdata->local->sta_mtx);
493         if (ieee80211_hw_check(&sdata->local->hw, NEEDS_UNIQUE_STA_ADDR) &&
494             ieee80211_find_sta_by_ifaddr(&sdata->local->hw, sta->addr, NULL)) {
495                 rcu_read_unlock();
496                 return -ENOTUNIQ;
497         }
498         rcu_read_unlock();
499
500         return 0;
501 }
502
503 static int sta_info_insert_drv_state(struct ieee80211_local *local,
504                                      struct ieee80211_sub_if_data *sdata,
505                                      struct sta_info *sta)
506 {
507         enum ieee80211_sta_state state;
508         int err = 0;
509
510         for (state = IEEE80211_STA_NOTEXIST; state < sta->sta_state; state++) {
511                 err = drv_sta_state(local, sdata, sta, state, state + 1);
512                 if (err)
513                         break;
514         }
515
516         if (!err) {
517                 /*
518                  * Drivers using legacy sta_add/sta_remove callbacks only
519                  * get uploaded set to true after sta_add is called.
520                  */
521                 if (!local->ops->sta_add)
522                         sta->uploaded = true;
523                 return 0;
524         }
525
526         if (sdata->vif.type == NL80211_IFTYPE_ADHOC) {
527                 sdata_info(sdata,
528                            "failed to move IBSS STA %pM to state %d (%d) - keeping it anyway\n",
529                            sta->sta.addr, state + 1, err);
530                 err = 0;
531         }
532
533         /* unwind on error */
534         for (; state > IEEE80211_STA_NOTEXIST; state--)
535                 WARN_ON(drv_sta_state(local, sdata, sta, state, state - 1));
536
537         return err;
538 }
539
540 /*
541  * should be called with sta_mtx locked
542  * this function replaces the mutex lock
543  * with a RCU lock
544  */
545 static int sta_info_insert_finish(struct sta_info *sta) __acquires(RCU)
546 {
547         struct ieee80211_local *local = sta->local;
548         struct ieee80211_sub_if_data *sdata = sta->sdata;
549         struct station_info *sinfo = NULL;
550         int err = 0;
551
552         lockdep_assert_held(&local->sta_mtx);
553
554         /* check if STA exists already */
555         if (sta_info_get_bss(sdata, sta->sta.addr)) {
556                 err = -EEXIST;
557                 goto out_err;
558         }
559
560         sinfo = kzalloc(sizeof(struct station_info), GFP_KERNEL);
561         if (!sinfo) {
562                 err = -ENOMEM;
563                 goto out_err;
564         }
565
566         local->num_sta++;
567         local->sta_generation++;
568         smp_mb();
569
570         /* simplify things and don't accept BA sessions yet */
571         set_sta_flag(sta, WLAN_STA_BLOCK_BA);
572
573         /* make the station visible */
574         err = sta_info_hash_add(local, sta);
575         if (err)
576                 goto out_drop_sta;
577
578         list_add_tail_rcu(&sta->list, &local->sta_list);
579
580         /* notify driver */
581         err = sta_info_insert_drv_state(local, sdata, sta);
582         if (err)
583                 goto out_remove;
584
585         set_sta_flag(sta, WLAN_STA_INSERTED);
586         /* accept BA sessions now */
587         clear_sta_flag(sta, WLAN_STA_BLOCK_BA);
588
589         ieee80211_sta_debugfs_add(sta);
590         rate_control_add_sta_debugfs(sta);
591
592         sinfo->generation = local->sta_generation;
593         cfg80211_new_sta(sdata->dev, sta->sta.addr, sinfo, GFP_KERNEL);
594         kfree(sinfo);
595
596         sta_dbg(sdata, "Inserted STA %pM\n", sta->sta.addr);
597
598         /* move reference to rcu-protected */
599         rcu_read_lock();
600         mutex_unlock(&local->sta_mtx);
601
602         if (ieee80211_vif_is_mesh(&sdata->vif))
603                 mesh_accept_plinks_update(sdata);
604
605         return 0;
606  out_remove:
607         sta_info_hash_del(local, sta);
608         list_del_rcu(&sta->list);
609  out_drop_sta:
610         local->num_sta--;
611         synchronize_net();
612         cleanup_single_sta(sta);
613  out_err:
614         mutex_unlock(&local->sta_mtx);
615         kfree(sinfo);
616         rcu_read_lock();
617         return err;
618 }
619
620 int sta_info_insert_rcu(struct sta_info *sta) __acquires(RCU)
621 {
622         struct ieee80211_local *local = sta->local;
623         int err;
624
625         might_sleep();
626
627         mutex_lock(&local->sta_mtx);
628
629         err = sta_info_insert_check(sta);
630         if (err) {
631                 sta_info_free(local, sta);
632                 mutex_unlock(&local->sta_mtx);
633                 rcu_read_lock();
634                 return err;
635         }
636
637         return sta_info_insert_finish(sta);
638 }
639
640 int sta_info_insert(struct sta_info *sta)
641 {
642         int err = sta_info_insert_rcu(sta);
643
644         rcu_read_unlock();
645
646         return err;
647 }
648
649 static inline void __bss_tim_set(u8 *tim, u16 id)
650 {
651         /*
652          * This format has been mandated by the IEEE specifications,
653          * so this line may not be changed to use the __set_bit() format.
654          */
655         tim[id / 8] |= (1 << (id % 8));
656 }
657
658 static inline void __bss_tim_clear(u8 *tim, u16 id)
659 {
660         /*
661          * This format has been mandated by the IEEE specifications,
662          * so this line may not be changed to use the __clear_bit() format.
663          */
664         tim[id / 8] &= ~(1 << (id % 8));
665 }
666
667 static inline bool __bss_tim_get(u8 *tim, u16 id)
668 {
669         /*
670          * This format has been mandated by the IEEE specifications,
671          * so this line may not be changed to use the test_bit() format.
672          */
673         return tim[id / 8] & (1 << (id % 8));
674 }
675
676 static unsigned long ieee80211_tids_for_ac(int ac)
677 {
678         /* If we ever support TIDs > 7, this obviously needs to be adjusted */
679         switch (ac) {
680         case IEEE80211_AC_VO:
681                 return BIT(6) | BIT(7);
682         case IEEE80211_AC_VI:
683                 return BIT(4) | BIT(5);
684         case IEEE80211_AC_BE:
685                 return BIT(0) | BIT(3);
686         case IEEE80211_AC_BK:
687                 return BIT(1) | BIT(2);
688         default:
689                 WARN_ON(1);
690                 return 0;
691         }
692 }
693
694 static void __sta_info_recalc_tim(struct sta_info *sta, bool ignore_pending)
695 {
696         struct ieee80211_local *local = sta->local;
697         struct ps_data *ps;
698         bool indicate_tim = false;
699         u8 ignore_for_tim = sta->sta.uapsd_queues;
700         int ac;
701         u16 id = sta->sta.aid;
702
703         if (sta->sdata->vif.type == NL80211_IFTYPE_AP ||
704             sta->sdata->vif.type == NL80211_IFTYPE_AP_VLAN) {
705                 if (WARN_ON_ONCE(!sta->sdata->bss))
706                         return;
707
708                 ps = &sta->sdata->bss->ps;
709 #ifdef CONFIG_MAC80211_MESH
710         } else if (ieee80211_vif_is_mesh(&sta->sdata->vif)) {
711                 ps = &sta->sdata->u.mesh.ps;
712 #endif
713         } else {
714                 return;
715         }
716
717         /* No need to do anything if the driver does all */
718         if (ieee80211_hw_check(&local->hw, AP_LINK_PS) && !local->ops->set_tim)
719                 return;
720
721         if (sta->dead)
722                 goto done;
723
724         /*
725          * If all ACs are delivery-enabled then we should build
726          * the TIM bit for all ACs anyway; if only some are then
727          * we ignore those and build the TIM bit using only the
728          * non-enabled ones.
729          */
730         if (ignore_for_tim == BIT(IEEE80211_NUM_ACS) - 1)
731                 ignore_for_tim = 0;
732
733         if (ignore_pending)
734                 ignore_for_tim = BIT(IEEE80211_NUM_ACS) - 1;
735
736         for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
737                 unsigned long tids;
738
739                 if (ignore_for_tim & ieee80211_ac_to_qos_mask[ac])
740                         continue;
741
742                 indicate_tim |= !skb_queue_empty(&sta->tx_filtered[ac]) ||
743                                 !skb_queue_empty(&sta->ps_tx_buf[ac]);
744                 if (indicate_tim)
745                         break;
746
747                 tids = ieee80211_tids_for_ac(ac);
748
749                 indicate_tim |=
750                         sta->driver_buffered_tids & tids;
751                 indicate_tim |=
752                         sta->txq_buffered_tids & tids;
753         }
754
755  done:
756         spin_lock_bh(&local->tim_lock);
757
758         if (indicate_tim == __bss_tim_get(ps->tim, id))
759                 goto out_unlock;
760
761         if (indicate_tim)
762                 __bss_tim_set(ps->tim, id);
763         else
764                 __bss_tim_clear(ps->tim, id);
765
766         if (local->ops->set_tim && !WARN_ON(sta->dead)) {
767                 local->tim_in_locked_section = true;
768                 drv_set_tim(local, &sta->sta, indicate_tim);
769                 local->tim_in_locked_section = false;
770         }
771
772 out_unlock:
773         spin_unlock_bh(&local->tim_lock);
774 }
775
776 void sta_info_recalc_tim(struct sta_info *sta)
777 {
778         __sta_info_recalc_tim(sta, false);
779 }
780
781 static bool sta_info_buffer_expired(struct sta_info *sta, struct sk_buff *skb)
782 {
783         struct ieee80211_tx_info *info;
784         int timeout;
785
786         if (!skb)
787                 return false;
788
789         info = IEEE80211_SKB_CB(skb);
790
791         /* Timeout: (2 * listen_interval * beacon_int * 1024 / 1000000) sec */
792         timeout = (sta->listen_interval *
793                    sta->sdata->vif.bss_conf.beacon_int *
794                    32 / 15625) * HZ;
795         if (timeout < STA_TX_BUFFER_EXPIRE)
796                 timeout = STA_TX_BUFFER_EXPIRE;
797         return time_after(jiffies, info->control.jiffies + timeout);
798 }
799
800
801 static bool sta_info_cleanup_expire_buffered_ac(struct ieee80211_local *local,
802                                                 struct sta_info *sta, int ac)
803 {
804         unsigned long flags;
805         struct sk_buff *skb;
806
807         /*
808          * First check for frames that should expire on the filtered
809          * queue. Frames here were rejected by the driver and are on
810          * a separate queue to avoid reordering with normal PS-buffered
811          * frames. They also aren't accounted for right now in the
812          * total_ps_buffered counter.
813          */
814         for (;;) {
815                 spin_lock_irqsave(&sta->tx_filtered[ac].lock, flags);
816                 skb = skb_peek(&sta->tx_filtered[ac]);
817                 if (sta_info_buffer_expired(sta, skb))
818                         skb = __skb_dequeue(&sta->tx_filtered[ac]);
819                 else
820                         skb = NULL;
821                 spin_unlock_irqrestore(&sta->tx_filtered[ac].lock, flags);
822
823                 /*
824                  * Frames are queued in order, so if this one
825                  * hasn't expired yet we can stop testing. If
826                  * we actually reached the end of the queue we
827                  * also need to stop, of course.
828                  */
829                 if (!skb)
830                         break;
831                 ieee80211_free_txskb(&local->hw, skb);
832         }
833
834         /*
835          * Now also check the normal PS-buffered queue, this will
836          * only find something if the filtered queue was emptied
837          * since the filtered frames are all before the normal PS
838          * buffered frames.
839          */
840         for (;;) {
841                 spin_lock_irqsave(&sta->ps_tx_buf[ac].lock, flags);
842                 skb = skb_peek(&sta->ps_tx_buf[ac]);
843                 if (sta_info_buffer_expired(sta, skb))
844                         skb = __skb_dequeue(&sta->ps_tx_buf[ac]);
845                 else
846                         skb = NULL;
847                 spin_unlock_irqrestore(&sta->ps_tx_buf[ac].lock, flags);
848
849                 /*
850                  * frames are queued in order, so if this one
851                  * hasn't expired yet (or we reached the end of
852                  * the queue) we can stop testing
853                  */
854                 if (!skb)
855                         break;
856
857                 local->total_ps_buffered--;
858                 ps_dbg(sta->sdata, "Buffered frame expired (STA %pM)\n",
859                        sta->sta.addr);
860                 ieee80211_free_txskb(&local->hw, skb);
861         }
862
863         /*
864          * Finally, recalculate the TIM bit for this station -- it might
865          * now be clear because the station was too slow to retrieve its
866          * frames.
867          */
868         sta_info_recalc_tim(sta);
869
870         /*
871          * Return whether there are any frames still buffered, this is
872          * used to check whether the cleanup timer still needs to run,
873          * if there are no frames we don't need to rearm the timer.
874          */
875         return !(skb_queue_empty(&sta->ps_tx_buf[ac]) &&
876                  skb_queue_empty(&sta->tx_filtered[ac]));
877 }
878
879 static bool sta_info_cleanup_expire_buffered(struct ieee80211_local *local,
880                                              struct sta_info *sta)
881 {
882         bool have_buffered = false;
883         int ac;
884
885         /* This is only necessary for stations on BSS/MBSS interfaces */
886         if (!sta->sdata->bss &&
887             !ieee80211_vif_is_mesh(&sta->sdata->vif))
888                 return false;
889
890         for (ac = 0; ac < IEEE80211_NUM_ACS; ac++)
891                 have_buffered |=
892                         sta_info_cleanup_expire_buffered_ac(local, sta, ac);
893
894         return have_buffered;
895 }
896
897 static int __must_check __sta_info_destroy_part1(struct sta_info *sta)
898 {
899         struct ieee80211_local *local;
900         struct ieee80211_sub_if_data *sdata;
901         int ret;
902
903         might_sleep();
904
905         if (!sta)
906                 return -ENOENT;
907
908         local = sta->local;
909         sdata = sta->sdata;
910
911         lockdep_assert_held(&local->sta_mtx);
912
913         /*
914          * Before removing the station from the driver and
915          * rate control, it might still start new aggregation
916          * sessions -- block that to make sure the tear-down
917          * will be sufficient.
918          */
919         set_sta_flag(sta, WLAN_STA_BLOCK_BA);
920         ieee80211_sta_tear_down_BA_sessions(sta, AGG_STOP_DESTROY_STA);
921
922         /*
923          * Before removing the station from the driver there might be pending
924          * rx frames on RSS queues sent prior to the disassociation - wait for
925          * all such frames to be processed.
926          */
927         drv_sync_rx_queues(local, sta);
928
929         ret = sta_info_hash_del(local, sta);
930         if (WARN_ON(ret))
931                 return ret;
932
933         /*
934          * for TDLS peers, make sure to return to the base channel before
935          * removal.
936          */
937         if (test_sta_flag(sta, WLAN_STA_TDLS_OFF_CHANNEL)) {
938                 drv_tdls_cancel_channel_switch(local, sdata, &sta->sta);
939                 clear_sta_flag(sta, WLAN_STA_TDLS_OFF_CHANNEL);
940         }
941
942         list_del_rcu(&sta->list);
943         sta->removed = true;
944
945         drv_sta_pre_rcu_remove(local, sta->sdata, sta);
946
947         if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN &&
948             rcu_access_pointer(sdata->u.vlan.sta) == sta)
949                 RCU_INIT_POINTER(sdata->u.vlan.sta, NULL);
950
951         return 0;
952 }
953
954 static void __sta_info_destroy_part2(struct sta_info *sta)
955 {
956         struct ieee80211_local *local = sta->local;
957         struct ieee80211_sub_if_data *sdata = sta->sdata;
958         struct station_info *sinfo;
959         int ret;
960
961         /*
962          * NOTE: This assumes at least synchronize_net() was done
963          *       after _part1 and before _part2!
964          */
965
966         might_sleep();
967         lockdep_assert_held(&local->sta_mtx);
968
969         if (sta->sta_state == IEEE80211_STA_AUTHORIZED) {
970                 ret = sta_info_move_state(sta, IEEE80211_STA_ASSOC);
971                 WARN_ON_ONCE(ret);
972         }
973
974         /* now keys can no longer be reached */
975         ieee80211_free_sta_keys(local, sta);
976
977         /* disable TIM bit - last chance to tell driver */
978         __sta_info_recalc_tim(sta, true);
979
980         sta->dead = true;
981
982         local->num_sta--;
983         local->sta_generation++;
984
985         while (sta->sta_state > IEEE80211_STA_NONE) {
986                 ret = sta_info_move_state(sta, sta->sta_state - 1);
987                 if (ret) {
988                         WARN_ON_ONCE(1);
989                         break;
990                 }
991         }
992
993         if (sta->uploaded) {
994                 ret = drv_sta_state(local, sdata, sta, IEEE80211_STA_NONE,
995                                     IEEE80211_STA_NOTEXIST);
996                 WARN_ON_ONCE(ret != 0);
997         }
998
999         sta_dbg(sdata, "Removed STA %pM\n", sta->sta.addr);
1000
1001         sinfo = kzalloc(sizeof(*sinfo), GFP_KERNEL);
1002         if (sinfo)
1003                 sta_set_sinfo(sta, sinfo);
1004         cfg80211_del_sta_sinfo(sdata->dev, sta->sta.addr, sinfo, GFP_KERNEL);
1005         kfree(sinfo);
1006
1007         rate_control_remove_sta_debugfs(sta);
1008         ieee80211_sta_debugfs_remove(sta);
1009
1010         ieee80211_destroy_frag_cache(&sta->frags);
1011
1012         cleanup_single_sta(sta);
1013 }
1014
1015 int __must_check __sta_info_destroy(struct sta_info *sta)
1016 {
1017         int err = __sta_info_destroy_part1(sta);
1018
1019         if (err)
1020                 return err;
1021
1022         synchronize_net();
1023
1024         __sta_info_destroy_part2(sta);
1025
1026         return 0;
1027 }
1028
1029 int sta_info_destroy_addr(struct ieee80211_sub_if_data *sdata, const u8 *addr)
1030 {
1031         struct sta_info *sta;
1032         int ret;
1033
1034         mutex_lock(&sdata->local->sta_mtx);
1035         sta = sta_info_get(sdata, addr);
1036         ret = __sta_info_destroy(sta);
1037         mutex_unlock(&sdata->local->sta_mtx);
1038
1039         return ret;
1040 }
1041
1042 int sta_info_destroy_addr_bss(struct ieee80211_sub_if_data *sdata,
1043                               const u8 *addr)
1044 {
1045         struct sta_info *sta;
1046         int ret;
1047
1048         mutex_lock(&sdata->local->sta_mtx);
1049         sta = sta_info_get_bss(sdata, addr);
1050         ret = __sta_info_destroy(sta);
1051         mutex_unlock(&sdata->local->sta_mtx);
1052
1053         return ret;
1054 }
1055
1056 static void sta_info_cleanup(unsigned long data)
1057 {
1058         struct ieee80211_local *local = (struct ieee80211_local *) data;
1059         struct sta_info *sta;
1060         bool timer_needed = false;
1061
1062         rcu_read_lock();
1063         list_for_each_entry_rcu(sta, &local->sta_list, list)
1064                 if (sta_info_cleanup_expire_buffered(local, sta))
1065                         timer_needed = true;
1066         rcu_read_unlock();
1067
1068         if (local->quiescing)
1069                 return;
1070
1071         if (!timer_needed)
1072                 return;
1073
1074         mod_timer(&local->sta_cleanup,
1075                   round_jiffies(jiffies + STA_INFO_CLEANUP_INTERVAL));
1076 }
1077
1078 int sta_info_init(struct ieee80211_local *local)
1079 {
1080         int err;
1081
1082         err = rhltable_init(&local->sta_hash, &sta_rht_params);
1083         if (err)
1084                 return err;
1085
1086         spin_lock_init(&local->tim_lock);
1087         mutex_init(&local->sta_mtx);
1088         INIT_LIST_HEAD(&local->sta_list);
1089
1090         setup_timer(&local->sta_cleanup, sta_info_cleanup,
1091                     (unsigned long)local);
1092         return 0;
1093 }
1094
1095 void sta_info_stop(struct ieee80211_local *local)
1096 {
1097         del_timer_sync(&local->sta_cleanup);
1098         rhltable_destroy(&local->sta_hash);
1099 }
1100
1101
1102 int __sta_info_flush(struct ieee80211_sub_if_data *sdata, bool vlans)
1103 {
1104         struct ieee80211_local *local = sdata->local;
1105         struct sta_info *sta, *tmp;
1106         LIST_HEAD(free_list);
1107         int ret = 0;
1108
1109         might_sleep();
1110
1111         WARN_ON(vlans && sdata->vif.type != NL80211_IFTYPE_AP);
1112         WARN_ON(vlans && !sdata->bss);
1113
1114         mutex_lock(&local->sta_mtx);
1115         list_for_each_entry_safe(sta, tmp, &local->sta_list, list) {
1116                 if (sdata == sta->sdata ||
1117                     (vlans && sdata->bss == sta->sdata->bss)) {
1118                         if (!WARN_ON(__sta_info_destroy_part1(sta)))
1119                                 list_add(&sta->free_list, &free_list);
1120                         ret++;
1121                 }
1122         }
1123
1124         if (!list_empty(&free_list)) {
1125                 synchronize_net();
1126                 list_for_each_entry_safe(sta, tmp, &free_list, free_list)
1127                         __sta_info_destroy_part2(sta);
1128         }
1129         mutex_unlock(&local->sta_mtx);
1130
1131         return ret;
1132 }
1133
1134 void ieee80211_sta_expire(struct ieee80211_sub_if_data *sdata,
1135                           unsigned long exp_time)
1136 {
1137         struct ieee80211_local *local = sdata->local;
1138         struct sta_info *sta, *tmp;
1139
1140         mutex_lock(&local->sta_mtx);
1141
1142         list_for_each_entry_safe(sta, tmp, &local->sta_list, list) {
1143                 unsigned long last_active = ieee80211_sta_last_active(sta);
1144
1145                 if (sdata != sta->sdata)
1146                         continue;
1147
1148                 if (time_is_before_jiffies(last_active + exp_time)) {
1149                         sta_dbg(sta->sdata, "expiring inactive STA %pM\n",
1150                                 sta->sta.addr);
1151
1152                         if (ieee80211_vif_is_mesh(&sdata->vif) &&
1153                             test_sta_flag(sta, WLAN_STA_PS_STA))
1154                                 atomic_dec(&sdata->u.mesh.ps.num_sta_ps);
1155
1156                         WARN_ON(__sta_info_destroy(sta));
1157                 }
1158         }
1159
1160         mutex_unlock(&local->sta_mtx);
1161 }
1162
1163 struct ieee80211_sta *ieee80211_find_sta_by_ifaddr(struct ieee80211_hw *hw,
1164                                                    const u8 *addr,
1165                                                    const u8 *localaddr)
1166 {
1167         struct ieee80211_local *local = hw_to_local(hw);
1168         struct rhlist_head *tmp;
1169         struct sta_info *sta;
1170
1171         /*
1172          * Just return a random station if localaddr is NULL
1173          * ... first in list.
1174          */
1175         for_each_sta_info(local, addr, sta, tmp) {
1176                 if (localaddr &&
1177                     !ether_addr_equal(sta->sdata->vif.addr, localaddr))
1178                         continue;
1179                 if (!sta->uploaded)
1180                         return NULL;
1181                 return &sta->sta;
1182         }
1183
1184         return NULL;
1185 }
1186 EXPORT_SYMBOL_GPL(ieee80211_find_sta_by_ifaddr);
1187
1188 struct ieee80211_sta *ieee80211_find_sta(struct ieee80211_vif *vif,
1189                                          const u8 *addr)
1190 {
1191         struct sta_info *sta;
1192
1193         if (!vif)
1194                 return NULL;
1195
1196         sta = sta_info_get_bss(vif_to_sdata(vif), addr);
1197         if (!sta)
1198                 return NULL;
1199
1200         if (!sta->uploaded)
1201                 return NULL;
1202
1203         return &sta->sta;
1204 }
1205 EXPORT_SYMBOL(ieee80211_find_sta);
1206
1207 /* powersave support code */
1208 void ieee80211_sta_ps_deliver_wakeup(struct sta_info *sta)
1209 {
1210         struct ieee80211_sub_if_data *sdata = sta->sdata;
1211         struct ieee80211_local *local = sdata->local;
1212         struct sk_buff_head pending;
1213         int filtered = 0, buffered = 0, ac, i;
1214         unsigned long flags;
1215         struct ps_data *ps;
1216
1217         if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
1218                 sdata = container_of(sdata->bss, struct ieee80211_sub_if_data,
1219                                      u.ap);
1220
1221         if (sdata->vif.type == NL80211_IFTYPE_AP)
1222                 ps = &sdata->bss->ps;
1223         else if (ieee80211_vif_is_mesh(&sdata->vif))
1224                 ps = &sdata->u.mesh.ps;
1225         else
1226                 return;
1227
1228         clear_sta_flag(sta, WLAN_STA_SP);
1229
1230         BUILD_BUG_ON(BITS_TO_LONGS(IEEE80211_NUM_TIDS) > 1);
1231         sta->driver_buffered_tids = 0;
1232         sta->txq_buffered_tids = 0;
1233
1234         if (!ieee80211_hw_check(&local->hw, AP_LINK_PS))
1235                 drv_sta_notify(local, sdata, STA_NOTIFY_AWAKE, &sta->sta);
1236
1237         if (sta->sta.txq[0]) {
1238                 for (i = 0; i < ARRAY_SIZE(sta->sta.txq); i++) {
1239                         if (!txq_has_queue(sta->sta.txq[i]))
1240                                 continue;
1241
1242                         drv_wake_tx_queue(local, to_txq_info(sta->sta.txq[i]));
1243                 }
1244         }
1245
1246         skb_queue_head_init(&pending);
1247
1248         /* sync with ieee80211_tx_h_unicast_ps_buf */
1249         spin_lock(&sta->ps_lock);
1250         /* Send all buffered frames to the station */
1251         for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
1252                 int count = skb_queue_len(&pending), tmp;
1253
1254                 spin_lock_irqsave(&sta->tx_filtered[ac].lock, flags);
1255                 skb_queue_splice_tail_init(&sta->tx_filtered[ac], &pending);
1256                 spin_unlock_irqrestore(&sta->tx_filtered[ac].lock, flags);
1257                 tmp = skb_queue_len(&pending);
1258                 filtered += tmp - count;
1259                 count = tmp;
1260
1261                 spin_lock_irqsave(&sta->ps_tx_buf[ac].lock, flags);
1262                 skb_queue_splice_tail_init(&sta->ps_tx_buf[ac], &pending);
1263                 spin_unlock_irqrestore(&sta->ps_tx_buf[ac].lock, flags);
1264                 tmp = skb_queue_len(&pending);
1265                 buffered += tmp - count;
1266         }
1267
1268         ieee80211_add_pending_skbs(local, &pending);
1269
1270         /* now we're no longer in the deliver code */
1271         clear_sta_flag(sta, WLAN_STA_PS_DELIVER);
1272
1273         /* The station might have polled and then woken up before we responded,
1274          * so clear these flags now to avoid them sticking around.
1275          */
1276         clear_sta_flag(sta, WLAN_STA_PSPOLL);
1277         clear_sta_flag(sta, WLAN_STA_UAPSD);
1278         spin_unlock(&sta->ps_lock);
1279
1280         atomic_dec(&ps->num_sta_ps);
1281
1282         /* This station just woke up and isn't aware of our SMPS state */
1283         if (!ieee80211_vif_is_mesh(&sdata->vif) &&
1284             !ieee80211_smps_is_restrictive(sta->known_smps_mode,
1285                                            sdata->smps_mode) &&
1286             sta->known_smps_mode != sdata->bss->req_smps &&
1287             sta_info_tx_streams(sta) != 1) {
1288                 ht_dbg(sdata,
1289                        "%pM just woke up and MIMO capable - update SMPS\n",
1290                        sta->sta.addr);
1291                 ieee80211_send_smps_action(sdata, sdata->bss->req_smps,
1292                                            sta->sta.addr,
1293                                            sdata->vif.bss_conf.bssid);
1294         }
1295
1296         local->total_ps_buffered -= buffered;
1297
1298         sta_info_recalc_tim(sta);
1299
1300         ps_dbg(sdata,
1301                "STA %pM aid %d sending %d filtered/%d PS frames since STA woke up\n",
1302                sta->sta.addr, sta->sta.aid, filtered, buffered);
1303
1304         ieee80211_check_fast_xmit(sta);
1305 }
1306
1307 static void ieee80211_send_null_response(struct sta_info *sta, int tid,
1308                                          enum ieee80211_frame_release_type reason,
1309                                          bool call_driver, bool more_data)
1310 {
1311         struct ieee80211_sub_if_data *sdata = sta->sdata;
1312         struct ieee80211_local *local = sdata->local;
1313         struct ieee80211_qos_hdr *nullfunc;
1314         struct sk_buff *skb;
1315         int size = sizeof(*nullfunc);
1316         __le16 fc;
1317         bool qos = sta->sta.wme;
1318         struct ieee80211_tx_info *info;
1319         struct ieee80211_chanctx_conf *chanctx_conf;
1320
1321         if (qos) {
1322                 fc = cpu_to_le16(IEEE80211_FTYPE_DATA |
1323                                  IEEE80211_STYPE_QOS_NULLFUNC |
1324                                  IEEE80211_FCTL_FROMDS);
1325         } else {
1326                 size -= 2;
1327                 fc = cpu_to_le16(IEEE80211_FTYPE_DATA |
1328                                  IEEE80211_STYPE_NULLFUNC |
1329                                  IEEE80211_FCTL_FROMDS);
1330         }
1331
1332         skb = dev_alloc_skb(local->hw.extra_tx_headroom + size);
1333         if (!skb)
1334                 return;
1335
1336         skb_reserve(skb, local->hw.extra_tx_headroom);
1337
1338         nullfunc = skb_put(skb, size);
1339         nullfunc->frame_control = fc;
1340         nullfunc->duration_id = 0;
1341         memcpy(nullfunc->addr1, sta->sta.addr, ETH_ALEN);
1342         memcpy(nullfunc->addr2, sdata->vif.addr, ETH_ALEN);
1343         memcpy(nullfunc->addr3, sdata->vif.addr, ETH_ALEN);
1344         nullfunc->seq_ctrl = 0;
1345
1346         skb->priority = tid;
1347         skb_set_queue_mapping(skb, ieee802_1d_to_ac[tid]);
1348         if (qos) {
1349                 nullfunc->qos_ctrl = cpu_to_le16(tid);
1350
1351                 if (reason == IEEE80211_FRAME_RELEASE_UAPSD) {
1352                         nullfunc->qos_ctrl |=
1353                                 cpu_to_le16(IEEE80211_QOS_CTL_EOSP);
1354                         if (more_data)
1355                                 nullfunc->frame_control |=
1356                                         cpu_to_le16(IEEE80211_FCTL_MOREDATA);
1357                 }
1358         }
1359
1360         info = IEEE80211_SKB_CB(skb);
1361
1362         /*
1363          * Tell TX path to send this frame even though the
1364          * STA may still remain is PS mode after this frame
1365          * exchange. Also set EOSP to indicate this packet
1366          * ends the poll/service period.
1367          */
1368         info->flags |= IEEE80211_TX_CTL_NO_PS_BUFFER |
1369                        IEEE80211_TX_STATUS_EOSP |
1370                        IEEE80211_TX_CTL_REQ_TX_STATUS;
1371
1372         info->control.flags |= IEEE80211_TX_CTRL_PS_RESPONSE;
1373
1374         if (call_driver)
1375                 drv_allow_buffered_frames(local, sta, BIT(tid), 1,
1376                                           reason, false);
1377
1378         skb->dev = sdata->dev;
1379
1380         rcu_read_lock();
1381         chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
1382         if (WARN_ON(!chanctx_conf)) {
1383                 rcu_read_unlock();
1384                 kfree_skb(skb);
1385                 return;
1386         }
1387
1388         info->band = chanctx_conf->def.chan->band;
1389         ieee80211_xmit(sdata, sta, skb);
1390         rcu_read_unlock();
1391 }
1392
1393 static int find_highest_prio_tid(unsigned long tids)
1394 {
1395         /* lower 3 TIDs aren't ordered perfectly */
1396         if (tids & 0xF8)
1397                 return fls(tids) - 1;
1398         /* TID 0 is BE just like TID 3 */
1399         if (tids & BIT(0))
1400                 return 0;
1401         return fls(tids) - 1;
1402 }
1403
1404 /* Indicates if the MORE_DATA bit should be set in the last
1405  * frame obtained by ieee80211_sta_ps_get_frames.
1406  * Note that driver_release_tids is relevant only if
1407  * reason = IEEE80211_FRAME_RELEASE_PSPOLL
1408  */
1409 static bool
1410 ieee80211_sta_ps_more_data(struct sta_info *sta, u8 ignored_acs,
1411                            enum ieee80211_frame_release_type reason,
1412                            unsigned long driver_release_tids)
1413 {
1414         int ac;
1415
1416         /* If the driver has data on more than one TID then
1417          * certainly there's more data if we release just a
1418          * single frame now (from a single TID). This will
1419          * only happen for PS-Poll.
1420          */
1421         if (reason == IEEE80211_FRAME_RELEASE_PSPOLL &&
1422             hweight16(driver_release_tids) > 1)
1423                 return true;
1424
1425         for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
1426                 if (ignored_acs & ieee80211_ac_to_qos_mask[ac])
1427                         continue;
1428
1429                 if (!skb_queue_empty(&sta->tx_filtered[ac]) ||
1430                     !skb_queue_empty(&sta->ps_tx_buf[ac]))
1431                         return true;
1432         }
1433
1434         return false;
1435 }
1436
1437 static void
1438 ieee80211_sta_ps_get_frames(struct sta_info *sta, int n_frames, u8 ignored_acs,
1439                             enum ieee80211_frame_release_type reason,
1440                             struct sk_buff_head *frames,
1441                             unsigned long *driver_release_tids)
1442 {
1443         struct ieee80211_sub_if_data *sdata = sta->sdata;
1444         struct ieee80211_local *local = sdata->local;
1445         int ac;
1446
1447         /* Get response frame(s) and more data bit for the last one. */
1448         for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
1449                 unsigned long tids;
1450
1451                 if (ignored_acs & ieee80211_ac_to_qos_mask[ac])
1452                         continue;
1453
1454                 tids = ieee80211_tids_for_ac(ac);
1455
1456                 /* if we already have frames from software, then we can't also
1457                  * release from hardware queues
1458                  */
1459                 if (skb_queue_empty(frames)) {
1460                         *driver_release_tids |=
1461                                 sta->driver_buffered_tids & tids;
1462                         *driver_release_tids |= sta->txq_buffered_tids & tids;
1463                 }
1464
1465                 if (!*driver_release_tids) {
1466                         struct sk_buff *skb;
1467
1468                         while (n_frames > 0) {
1469                                 skb = skb_dequeue(&sta->tx_filtered[ac]);
1470                                 if (!skb) {
1471                                         skb = skb_dequeue(
1472                                                 &sta->ps_tx_buf[ac]);
1473                                         if (skb)
1474                                                 local->total_ps_buffered--;
1475                                 }
1476                                 if (!skb)
1477                                         break;
1478                                 n_frames--;
1479                                 __skb_queue_tail(frames, skb);
1480                         }
1481                 }
1482
1483                 /* If we have more frames buffered on this AC, then abort the
1484                  * loop since we can't send more data from other ACs before
1485                  * the buffered frames from this.
1486                  */
1487                 if (!skb_queue_empty(&sta->tx_filtered[ac]) ||
1488                     !skb_queue_empty(&sta->ps_tx_buf[ac]))
1489                         break;
1490         }
1491 }
1492
1493 static void
1494 ieee80211_sta_ps_deliver_response(struct sta_info *sta,
1495                                   int n_frames, u8 ignored_acs,
1496                                   enum ieee80211_frame_release_type reason)
1497 {
1498         struct ieee80211_sub_if_data *sdata = sta->sdata;
1499         struct ieee80211_local *local = sdata->local;
1500         unsigned long driver_release_tids = 0;
1501         struct sk_buff_head frames;
1502         bool more_data;
1503
1504         /* Service or PS-Poll period starts */
1505         set_sta_flag(sta, WLAN_STA_SP);
1506
1507         __skb_queue_head_init(&frames);
1508
1509         ieee80211_sta_ps_get_frames(sta, n_frames, ignored_acs, reason,
1510                                     &frames, &driver_release_tids);
1511
1512         more_data = ieee80211_sta_ps_more_data(sta, ignored_acs, reason, driver_release_tids);
1513
1514         if (driver_release_tids && reason == IEEE80211_FRAME_RELEASE_PSPOLL)
1515                 driver_release_tids =
1516                         BIT(find_highest_prio_tid(driver_release_tids));
1517
1518         if (skb_queue_empty(&frames) && !driver_release_tids) {
1519                 int tid, ac;
1520
1521                 /*
1522                  * For PS-Poll, this can only happen due to a race condition
1523                  * when we set the TIM bit and the station notices it, but
1524                  * before it can poll for the frame we expire it.
1525                  *
1526                  * For uAPSD, this is said in the standard (11.2.1.5 h):
1527                  *      At each unscheduled SP for a non-AP STA, the AP shall
1528                  *      attempt to transmit at least one MSDU or MMPDU, but no
1529                  *      more than the value specified in the Max SP Length field
1530                  *      in the QoS Capability element from delivery-enabled ACs,
1531                  *      that are destined for the non-AP STA.
1532                  *
1533                  * Since we have no other MSDU/MMPDU, transmit a QoS null frame.
1534                  */
1535
1536                 /* This will evaluate to 1, 3, 5 or 7. */
1537                 for (ac = IEEE80211_AC_VO; ac < IEEE80211_NUM_ACS; ac++)
1538                         if (!(ignored_acs & ieee80211_ac_to_qos_mask[ac]))
1539                                 break;
1540                 tid = 7 - 2 * ac;
1541
1542                 ieee80211_send_null_response(sta, tid, reason, true, false);
1543         } else if (!driver_release_tids) {
1544                 struct sk_buff_head pending;
1545                 struct sk_buff *skb;
1546                 int num = 0;
1547                 u16 tids = 0;
1548                 bool need_null = false;
1549
1550                 skb_queue_head_init(&pending);
1551
1552                 while ((skb = __skb_dequeue(&frames))) {
1553                         struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1554                         struct ieee80211_hdr *hdr = (void *) skb->data;
1555                         u8 *qoshdr = NULL;
1556
1557                         num++;
1558
1559                         /*
1560                          * Tell TX path to send this frame even though the
1561                          * STA may still remain is PS mode after this frame
1562                          * exchange.
1563                          */
1564                         info->flags |= IEEE80211_TX_CTL_NO_PS_BUFFER;
1565                         info->control.flags |= IEEE80211_TX_CTRL_PS_RESPONSE;
1566
1567                         /*
1568                          * Use MoreData flag to indicate whether there are
1569                          * more buffered frames for this STA
1570                          */
1571                         if (more_data || !skb_queue_empty(&frames))
1572                                 hdr->frame_control |=
1573                                         cpu_to_le16(IEEE80211_FCTL_MOREDATA);
1574                         else
1575                                 hdr->frame_control &=
1576                                         cpu_to_le16(~IEEE80211_FCTL_MOREDATA);
1577
1578                         if (ieee80211_is_data_qos(hdr->frame_control) ||
1579                             ieee80211_is_qos_nullfunc(hdr->frame_control))
1580                                 qoshdr = ieee80211_get_qos_ctl(hdr);
1581
1582                         tids |= BIT(skb->priority);
1583
1584                         __skb_queue_tail(&pending, skb);
1585
1586                         /* end service period after last frame or add one */
1587                         if (!skb_queue_empty(&frames))
1588                                 continue;
1589
1590                         if (reason != IEEE80211_FRAME_RELEASE_UAPSD) {
1591                                 /* for PS-Poll, there's only one frame */
1592                                 info->flags |= IEEE80211_TX_STATUS_EOSP |
1593                                                IEEE80211_TX_CTL_REQ_TX_STATUS;
1594                                 break;
1595                         }
1596
1597                         /* For uAPSD, things are a bit more complicated. If the
1598                          * last frame has a QoS header (i.e. is a QoS-data or
1599                          * QoS-nulldata frame) then just set the EOSP bit there
1600                          * and be done.
1601                          * If the frame doesn't have a QoS header (which means
1602                          * it should be a bufferable MMPDU) then we can't set
1603                          * the EOSP bit in the QoS header; add a QoS-nulldata
1604                          * frame to the list to send it after the MMPDU.
1605                          *
1606                          * Note that this code is only in the mac80211-release
1607                          * code path, we assume that the driver will not buffer
1608                          * anything but QoS-data frames, or if it does, will
1609                          * create the QoS-nulldata frame by itself if needed.
1610                          *
1611                          * Cf. 802.11-2012 10.2.1.10 (c).
1612                          */
1613                         if (qoshdr) {
1614                                 *qoshdr |= IEEE80211_QOS_CTL_EOSP;
1615
1616                                 info->flags |= IEEE80211_TX_STATUS_EOSP |
1617                                                IEEE80211_TX_CTL_REQ_TX_STATUS;
1618                         } else {
1619                                 /* The standard isn't completely clear on this
1620                                  * as it says the more-data bit should be set
1621                                  * if there are more BUs. The QoS-Null frame
1622                                  * we're about to send isn't buffered yet, we
1623                                  * only create it below, but let's pretend it
1624                                  * was buffered just in case some clients only
1625                                  * expect more-data=0 when eosp=1.
1626                                  */
1627                                 hdr->frame_control |=
1628                                         cpu_to_le16(IEEE80211_FCTL_MOREDATA);
1629                                 need_null = true;
1630                                 num++;
1631                         }
1632                         break;
1633                 }
1634
1635                 drv_allow_buffered_frames(local, sta, tids, num,
1636                                           reason, more_data);
1637
1638                 ieee80211_add_pending_skbs(local, &pending);
1639
1640                 if (need_null)
1641                         ieee80211_send_null_response(
1642                                 sta, find_highest_prio_tid(tids),
1643                                 reason, false, false);
1644
1645                 sta_info_recalc_tim(sta);
1646         } else {
1647                 int tid;
1648
1649                 /*
1650                  * We need to release a frame that is buffered somewhere in the
1651                  * driver ... it'll have to handle that.
1652                  * Note that the driver also has to check the number of frames
1653                  * on the TIDs we're releasing from - if there are more than
1654                  * n_frames it has to set the more-data bit (if we didn't ask
1655                  * it to set it anyway due to other buffered frames); if there
1656                  * are fewer than n_frames it has to make sure to adjust that
1657                  * to allow the service period to end properly.
1658                  */
1659                 drv_release_buffered_frames(local, sta, driver_release_tids,
1660                                             n_frames, reason, more_data);
1661
1662                 /*
1663                  * Note that we don't recalculate the TIM bit here as it would
1664                  * most likely have no effect at all unless the driver told us
1665                  * that the TID(s) became empty before returning here from the
1666                  * release function.
1667                  * Either way, however, when the driver tells us that the TID(s)
1668                  * became empty or we find that a txq became empty, we'll do the
1669                  * TIM recalculation.
1670                  */
1671
1672                 if (!sta->sta.txq[0])
1673                         return;
1674
1675                 for (tid = 0; tid < ARRAY_SIZE(sta->sta.txq); tid++) {
1676                         if (!(driver_release_tids & BIT(tid)) ||
1677                             txq_has_queue(sta->sta.txq[tid]))
1678                                 continue;
1679
1680                         sta_info_recalc_tim(sta);
1681                         break;
1682                 }
1683         }
1684 }
1685
1686 void ieee80211_sta_ps_deliver_poll_response(struct sta_info *sta)
1687 {
1688         u8 ignore_for_response = sta->sta.uapsd_queues;
1689
1690         /*
1691          * If all ACs are delivery-enabled then we should reply
1692          * from any of them, if only some are enabled we reply
1693          * only from the non-enabled ones.
1694          */
1695         if (ignore_for_response == BIT(IEEE80211_NUM_ACS) - 1)
1696                 ignore_for_response = 0;
1697
1698         ieee80211_sta_ps_deliver_response(sta, 1, ignore_for_response,
1699                                           IEEE80211_FRAME_RELEASE_PSPOLL);
1700 }
1701
1702 void ieee80211_sta_ps_deliver_uapsd(struct sta_info *sta)
1703 {
1704         int n_frames = sta->sta.max_sp;
1705         u8 delivery_enabled = sta->sta.uapsd_queues;
1706
1707         /*
1708          * If we ever grow support for TSPEC this might happen if
1709          * the TSPEC update from hostapd comes in between a trigger
1710          * frame setting WLAN_STA_UAPSD in the RX path and this
1711          * actually getting called.
1712          */
1713         if (!delivery_enabled)
1714                 return;
1715
1716         switch (sta->sta.max_sp) {
1717         case 1:
1718                 n_frames = 2;
1719                 break;
1720         case 2:
1721                 n_frames = 4;
1722                 break;
1723         case 3:
1724                 n_frames = 6;
1725                 break;
1726         case 0:
1727                 /* XXX: what is a good value? */
1728                 n_frames = 128;
1729                 break;
1730         }
1731
1732         ieee80211_sta_ps_deliver_response(sta, n_frames, ~delivery_enabled,
1733                                           IEEE80211_FRAME_RELEASE_UAPSD);
1734 }
1735
1736 void ieee80211_sta_block_awake(struct ieee80211_hw *hw,
1737                                struct ieee80211_sta *pubsta, bool block)
1738 {
1739         struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
1740
1741         trace_api_sta_block_awake(sta->local, pubsta, block);
1742
1743         if (block) {
1744                 set_sta_flag(sta, WLAN_STA_PS_DRIVER);
1745                 ieee80211_clear_fast_xmit(sta);
1746                 return;
1747         }
1748
1749         if (!test_sta_flag(sta, WLAN_STA_PS_DRIVER))
1750                 return;
1751
1752         if (!test_sta_flag(sta, WLAN_STA_PS_STA)) {
1753                 set_sta_flag(sta, WLAN_STA_PS_DELIVER);
1754                 clear_sta_flag(sta, WLAN_STA_PS_DRIVER);
1755                 ieee80211_queue_work(hw, &sta->drv_deliver_wk);
1756         } else if (test_sta_flag(sta, WLAN_STA_PSPOLL) ||
1757                    test_sta_flag(sta, WLAN_STA_UAPSD)) {
1758                 /* must be asleep in this case */
1759                 clear_sta_flag(sta, WLAN_STA_PS_DRIVER);
1760                 ieee80211_queue_work(hw, &sta->drv_deliver_wk);
1761         } else {
1762                 clear_sta_flag(sta, WLAN_STA_PS_DRIVER);
1763                 ieee80211_check_fast_xmit(sta);
1764         }
1765 }
1766 EXPORT_SYMBOL(ieee80211_sta_block_awake);
1767
1768 void ieee80211_sta_eosp(struct ieee80211_sta *pubsta)
1769 {
1770         struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
1771         struct ieee80211_local *local = sta->local;
1772
1773         trace_api_eosp(local, pubsta);
1774
1775         clear_sta_flag(sta, WLAN_STA_SP);
1776 }
1777 EXPORT_SYMBOL(ieee80211_sta_eosp);
1778
1779 void ieee80211_send_eosp_nullfunc(struct ieee80211_sta *pubsta, int tid)
1780 {
1781         struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
1782         enum ieee80211_frame_release_type reason;
1783         bool more_data;
1784
1785         trace_api_send_eosp_nullfunc(sta->local, pubsta, tid);
1786
1787         reason = IEEE80211_FRAME_RELEASE_UAPSD;
1788         more_data = ieee80211_sta_ps_more_data(sta, ~sta->sta.uapsd_queues,
1789                                                reason, 0);
1790
1791         ieee80211_send_null_response(sta, tid, reason, false, more_data);
1792 }
1793 EXPORT_SYMBOL(ieee80211_send_eosp_nullfunc);
1794
1795 void ieee80211_sta_set_buffered(struct ieee80211_sta *pubsta,
1796                                 u8 tid, bool buffered)
1797 {
1798         struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
1799
1800         if (WARN_ON(tid >= IEEE80211_NUM_TIDS))
1801                 return;
1802
1803         trace_api_sta_set_buffered(sta->local, pubsta, tid, buffered);
1804
1805         if (buffered)
1806                 set_bit(tid, &sta->driver_buffered_tids);
1807         else
1808                 clear_bit(tid, &sta->driver_buffered_tids);
1809
1810         sta_info_recalc_tim(sta);
1811 }
1812 EXPORT_SYMBOL(ieee80211_sta_set_buffered);
1813
1814 static void
1815 ieee80211_recalc_p2p_go_ps_allowed(struct ieee80211_sub_if_data *sdata)
1816 {
1817         struct ieee80211_local *local = sdata->local;
1818         bool allow_p2p_go_ps = sdata->vif.p2p;
1819         struct sta_info *sta;
1820
1821         rcu_read_lock();
1822         list_for_each_entry_rcu(sta, &local->sta_list, list) {
1823                 if (sdata != sta->sdata ||
1824                     !test_sta_flag(sta, WLAN_STA_ASSOC))
1825                         continue;
1826                 if (!sta->sta.support_p2p_ps) {
1827                         allow_p2p_go_ps = false;
1828                         break;
1829                 }
1830         }
1831         rcu_read_unlock();
1832
1833         if (allow_p2p_go_ps != sdata->vif.bss_conf.allow_p2p_go_ps) {
1834                 sdata->vif.bss_conf.allow_p2p_go_ps = allow_p2p_go_ps;
1835                 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_P2P_PS);
1836         }
1837 }
1838
1839 int sta_info_move_state(struct sta_info *sta,
1840                         enum ieee80211_sta_state new_state)
1841 {
1842         might_sleep();
1843
1844         if (sta->sta_state == new_state)
1845                 return 0;
1846
1847         /* check allowed transitions first */
1848
1849         switch (new_state) {
1850         case IEEE80211_STA_NONE:
1851                 if (sta->sta_state != IEEE80211_STA_AUTH)
1852                         return -EINVAL;
1853                 break;
1854         case IEEE80211_STA_AUTH:
1855                 if (sta->sta_state != IEEE80211_STA_NONE &&
1856                     sta->sta_state != IEEE80211_STA_ASSOC)
1857                         return -EINVAL;
1858                 break;
1859         case IEEE80211_STA_ASSOC:
1860                 if (sta->sta_state != IEEE80211_STA_AUTH &&
1861                     sta->sta_state != IEEE80211_STA_AUTHORIZED)
1862                         return -EINVAL;
1863                 break;
1864         case IEEE80211_STA_AUTHORIZED:
1865                 if (sta->sta_state != IEEE80211_STA_ASSOC)
1866                         return -EINVAL;
1867                 break;
1868         default:
1869                 WARN(1, "invalid state %d", new_state);
1870                 return -EINVAL;
1871         }
1872
1873         sta_dbg(sta->sdata, "moving STA %pM to state %d\n",
1874                 sta->sta.addr, new_state);
1875
1876         /*
1877          * notify the driver before the actual changes so it can
1878          * fail the transition
1879          */
1880         if (test_sta_flag(sta, WLAN_STA_INSERTED)) {
1881                 int err = drv_sta_state(sta->local, sta->sdata, sta,
1882                                         sta->sta_state, new_state);
1883                 if (err)
1884                         return err;
1885         }
1886
1887         /* reflect the change in all state variables */
1888
1889         switch (new_state) {
1890         case IEEE80211_STA_NONE:
1891                 if (sta->sta_state == IEEE80211_STA_AUTH)
1892                         clear_bit(WLAN_STA_AUTH, &sta->_flags);
1893                 break;
1894         case IEEE80211_STA_AUTH:
1895                 if (sta->sta_state == IEEE80211_STA_NONE) {
1896                         set_bit(WLAN_STA_AUTH, &sta->_flags);
1897                 } else if (sta->sta_state == IEEE80211_STA_ASSOC) {
1898                         clear_bit(WLAN_STA_ASSOC, &sta->_flags);
1899                         ieee80211_recalc_min_chandef(sta->sdata);
1900                         if (!sta->sta.support_p2p_ps)
1901                                 ieee80211_recalc_p2p_go_ps_allowed(sta->sdata);
1902                 }
1903                 break;
1904         case IEEE80211_STA_ASSOC:
1905                 if (sta->sta_state == IEEE80211_STA_AUTH) {
1906                         set_bit(WLAN_STA_ASSOC, &sta->_flags);
1907                         ieee80211_recalc_min_chandef(sta->sdata);
1908                         if (!sta->sta.support_p2p_ps)
1909                                 ieee80211_recalc_p2p_go_ps_allowed(sta->sdata);
1910                 } else if (sta->sta_state == IEEE80211_STA_AUTHORIZED) {
1911                         ieee80211_vif_dec_num_mcast(sta->sdata);
1912                         clear_bit(WLAN_STA_AUTHORIZED, &sta->_flags);
1913                         ieee80211_clear_fast_xmit(sta);
1914                         ieee80211_clear_fast_rx(sta);
1915                 }
1916                 break;
1917         case IEEE80211_STA_AUTHORIZED:
1918                 if (sta->sta_state == IEEE80211_STA_ASSOC) {
1919                         ieee80211_vif_inc_num_mcast(sta->sdata);
1920                         set_bit(WLAN_STA_AUTHORIZED, &sta->_flags);
1921                         ieee80211_check_fast_xmit(sta);
1922                         ieee80211_check_fast_rx(sta);
1923                 }
1924                 if (sta->sdata->vif.type == NL80211_IFTYPE_AP_VLAN ||
1925                     sta->sdata->vif.type == NL80211_IFTYPE_AP)
1926                         cfg80211_send_layer2_update(sta->sdata->dev,
1927                                                     sta->sta.addr);
1928                 break;
1929         default:
1930                 break;
1931         }
1932
1933         sta->sta_state = new_state;
1934
1935         return 0;
1936 }
1937
1938 u8 sta_info_tx_streams(struct sta_info *sta)
1939 {
1940         struct ieee80211_sta_ht_cap *ht_cap = &sta->sta.ht_cap;
1941         u8 rx_streams;
1942
1943         if (!sta->sta.ht_cap.ht_supported)
1944                 return 1;
1945
1946         if (sta->sta.vht_cap.vht_supported) {
1947                 int i;
1948                 u16 tx_mcs_map =
1949                         le16_to_cpu(sta->sta.vht_cap.vht_mcs.tx_mcs_map);
1950
1951                 for (i = 7; i >= 0; i--)
1952                         if ((tx_mcs_map & (0x3 << (i * 2))) !=
1953                             IEEE80211_VHT_MCS_NOT_SUPPORTED)
1954                                 return i + 1;
1955         }
1956
1957         if (ht_cap->mcs.rx_mask[3])
1958                 rx_streams = 4;
1959         else if (ht_cap->mcs.rx_mask[2])
1960                 rx_streams = 3;
1961         else if (ht_cap->mcs.rx_mask[1])
1962                 rx_streams = 2;
1963         else
1964                 rx_streams = 1;
1965
1966         if (!(ht_cap->mcs.tx_params & IEEE80211_HT_MCS_TX_RX_DIFF))
1967                 return rx_streams;
1968
1969         return ((ht_cap->mcs.tx_params & IEEE80211_HT_MCS_TX_MAX_STREAMS_MASK)
1970                         >> IEEE80211_HT_MCS_TX_MAX_STREAMS_SHIFT) + 1;
1971 }
1972
1973 static struct ieee80211_sta_rx_stats *
1974 sta_get_last_rx_stats(struct sta_info *sta)
1975 {
1976         struct ieee80211_sta_rx_stats *stats = &sta->rx_stats;
1977         struct ieee80211_local *local = sta->local;
1978         int cpu;
1979
1980         if (!ieee80211_hw_check(&local->hw, USES_RSS))
1981                 return stats;
1982
1983         for_each_possible_cpu(cpu) {
1984                 struct ieee80211_sta_rx_stats *cpustats;
1985
1986                 cpustats = per_cpu_ptr(sta->pcpu_rx_stats, cpu);
1987
1988                 if (time_after(cpustats->last_rx, stats->last_rx))
1989                         stats = cpustats;
1990         }
1991
1992         return stats;
1993 }
1994
1995 static void sta_stats_decode_rate(struct ieee80211_local *local, u16 rate,
1996                                   struct rate_info *rinfo)
1997 {
1998         rinfo->bw = STA_STATS_GET(BW, rate);
1999
2000         switch (STA_STATS_GET(TYPE, rate)) {
2001         case STA_STATS_RATE_TYPE_VHT:
2002                 rinfo->flags = RATE_INFO_FLAGS_VHT_MCS;
2003                 rinfo->mcs = STA_STATS_GET(VHT_MCS, rate);
2004                 rinfo->nss = STA_STATS_GET(VHT_NSS, rate);
2005                 if (STA_STATS_GET(SGI, rate))
2006                         rinfo->flags |= RATE_INFO_FLAGS_SHORT_GI;
2007                 break;
2008         case STA_STATS_RATE_TYPE_HT:
2009                 rinfo->flags = RATE_INFO_FLAGS_MCS;
2010                 rinfo->mcs = STA_STATS_GET(HT_MCS, rate);
2011                 if (STA_STATS_GET(SGI, rate))
2012                         rinfo->flags |= RATE_INFO_FLAGS_SHORT_GI;
2013                 break;
2014         case STA_STATS_RATE_TYPE_LEGACY: {
2015                 struct ieee80211_supported_band *sband;
2016                 u16 brate;
2017                 unsigned int shift;
2018                 int band = STA_STATS_GET(LEGACY_BAND, rate);
2019                 int rate_idx = STA_STATS_GET(LEGACY_IDX, rate);
2020
2021                 rinfo->flags = 0;
2022                 sband = local->hw.wiphy->bands[band];
2023
2024                 if (WARN_ON_ONCE(!sband->bitrates))
2025                         break;
2026
2027                 brate = sband->bitrates[rate_idx].bitrate;
2028                 if (rinfo->bw == RATE_INFO_BW_5)
2029                         shift = 2;
2030                 else if (rinfo->bw == RATE_INFO_BW_10)
2031                         shift = 1;
2032                 else
2033                         shift = 0;
2034                 rinfo->legacy = DIV_ROUND_UP(brate, 1 << shift);
2035                 break;
2036                 }
2037         }
2038 }
2039
2040 static int sta_set_rate_info_rx(struct sta_info *sta, struct rate_info *rinfo)
2041 {
2042         u16 rate = ACCESS_ONCE(sta_get_last_rx_stats(sta)->last_rate);
2043
2044         if (rate == STA_STATS_RATE_INVALID)
2045                 return -EINVAL;
2046
2047         sta_stats_decode_rate(sta->local, rate, rinfo);
2048         return 0;
2049 }
2050
2051 static void sta_set_tidstats(struct sta_info *sta,
2052                              struct cfg80211_tid_stats *tidstats,
2053                              int tid)
2054 {
2055         struct ieee80211_local *local = sta->local;
2056
2057         if (!(tidstats->filled & BIT(NL80211_TID_STATS_RX_MSDU))) {
2058                 unsigned int start;
2059
2060                 do {
2061                         start = u64_stats_fetch_begin(&sta->rx_stats.syncp);
2062                         tidstats->rx_msdu = sta->rx_stats.msdu[tid];
2063                 } while (u64_stats_fetch_retry(&sta->rx_stats.syncp, start));
2064
2065                 tidstats->filled |= BIT(NL80211_TID_STATS_RX_MSDU);
2066         }
2067
2068         if (!(tidstats->filled & BIT(NL80211_TID_STATS_TX_MSDU))) {
2069                 tidstats->filled |= BIT(NL80211_TID_STATS_TX_MSDU);
2070                 tidstats->tx_msdu = sta->tx_stats.msdu[tid];
2071         }
2072
2073         if (!(tidstats->filled & BIT(NL80211_TID_STATS_TX_MSDU_RETRIES)) &&
2074             ieee80211_hw_check(&local->hw, REPORTS_TX_ACK_STATUS)) {
2075                 tidstats->filled |= BIT(NL80211_TID_STATS_TX_MSDU_RETRIES);
2076                 tidstats->tx_msdu_retries = sta->status_stats.msdu_retries[tid];
2077         }
2078
2079         if (!(tidstats->filled & BIT(NL80211_TID_STATS_TX_MSDU_FAILED)) &&
2080             ieee80211_hw_check(&local->hw, REPORTS_TX_ACK_STATUS)) {
2081                 tidstats->filled |= BIT(NL80211_TID_STATS_TX_MSDU_FAILED);
2082                 tidstats->tx_msdu_failed = sta->status_stats.msdu_failed[tid];
2083         }
2084 }
2085
2086 static inline u64 sta_get_stats_bytes(struct ieee80211_sta_rx_stats *rxstats)
2087 {
2088         unsigned int start;
2089         u64 value;
2090
2091         do {
2092                 start = u64_stats_fetch_begin(&rxstats->syncp);
2093                 value = rxstats->bytes;
2094         } while (u64_stats_fetch_retry(&rxstats->syncp, start));
2095
2096         return value;
2097 }
2098
2099 void sta_set_sinfo(struct sta_info *sta, struct station_info *sinfo)
2100 {
2101         struct ieee80211_sub_if_data *sdata = sta->sdata;
2102         struct ieee80211_local *local = sdata->local;
2103         u32 thr = 0;
2104         int i, ac, cpu;
2105         struct ieee80211_sta_rx_stats *last_rxstats;
2106
2107         last_rxstats = sta_get_last_rx_stats(sta);
2108
2109         sinfo->generation = sdata->local->sta_generation;
2110
2111         /* do before driver, so beacon filtering drivers have a
2112          * chance to e.g. just add the number of filtered beacons
2113          * (or just modify the value entirely, of course)
2114          */
2115         if (sdata->vif.type == NL80211_IFTYPE_STATION)
2116                 sinfo->rx_beacon = sdata->u.mgd.count_beacon_signal;
2117
2118         drv_sta_statistics(local, sdata, &sta->sta, sinfo);
2119
2120         sinfo->filled |= BIT(NL80211_STA_INFO_INACTIVE_TIME) |
2121                          BIT(NL80211_STA_INFO_STA_FLAGS) |
2122                          BIT(NL80211_STA_INFO_BSS_PARAM) |
2123                          BIT(NL80211_STA_INFO_CONNECTED_TIME) |
2124                          BIT(NL80211_STA_INFO_RX_DROP_MISC);
2125
2126         if (sdata->vif.type == NL80211_IFTYPE_STATION) {
2127                 sinfo->beacon_loss_count = sdata->u.mgd.beacon_loss_count;
2128                 sinfo->filled |= BIT(NL80211_STA_INFO_BEACON_LOSS);
2129         }
2130
2131         sinfo->connected_time = ktime_get_seconds() - sta->last_connected;
2132         sinfo->inactive_time =
2133                 jiffies_to_msecs(jiffies - ieee80211_sta_last_active(sta));
2134
2135         if (!(sinfo->filled & (BIT(NL80211_STA_INFO_TX_BYTES64) |
2136                                BIT(NL80211_STA_INFO_TX_BYTES)))) {
2137                 sinfo->tx_bytes = 0;
2138                 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++)
2139                         sinfo->tx_bytes += sta->tx_stats.bytes[ac];
2140                 sinfo->filled |= BIT(NL80211_STA_INFO_TX_BYTES64);
2141         }
2142
2143         if (!(sinfo->filled & BIT(NL80211_STA_INFO_TX_PACKETS))) {
2144                 sinfo->tx_packets = 0;
2145                 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++)
2146                         sinfo->tx_packets += sta->tx_stats.packets[ac];
2147                 sinfo->filled |= BIT(NL80211_STA_INFO_TX_PACKETS);
2148         }
2149
2150         if (!(sinfo->filled & (BIT(NL80211_STA_INFO_RX_BYTES64) |
2151                                BIT(NL80211_STA_INFO_RX_BYTES)))) {
2152                 sinfo->rx_bytes += sta_get_stats_bytes(&sta->rx_stats);
2153
2154                 if (sta->pcpu_rx_stats) {
2155                         for_each_possible_cpu(cpu) {
2156                                 struct ieee80211_sta_rx_stats *cpurxs;
2157
2158                                 cpurxs = per_cpu_ptr(sta->pcpu_rx_stats, cpu);
2159                                 sinfo->rx_bytes += sta_get_stats_bytes(cpurxs);
2160                         }
2161                 }
2162
2163                 sinfo->filled |= BIT(NL80211_STA_INFO_RX_BYTES64);
2164         }
2165
2166         if (!(sinfo->filled & BIT(NL80211_STA_INFO_RX_PACKETS))) {
2167                 sinfo->rx_packets = sta->rx_stats.packets;
2168                 if (sta->pcpu_rx_stats) {
2169                         for_each_possible_cpu(cpu) {
2170                                 struct ieee80211_sta_rx_stats *cpurxs;
2171
2172                                 cpurxs = per_cpu_ptr(sta->pcpu_rx_stats, cpu);
2173                                 sinfo->rx_packets += cpurxs->packets;
2174                         }
2175                 }
2176                 sinfo->filled |= BIT(NL80211_STA_INFO_RX_PACKETS);
2177         }
2178
2179         if (!(sinfo->filled & BIT(NL80211_STA_INFO_TX_RETRIES))) {
2180                 sinfo->tx_retries = sta->status_stats.retry_count;
2181                 sinfo->filled |= BIT(NL80211_STA_INFO_TX_RETRIES);
2182         }
2183
2184         if (!(sinfo->filled & BIT(NL80211_STA_INFO_TX_FAILED))) {
2185                 sinfo->tx_failed = sta->status_stats.retry_failed;
2186                 sinfo->filled |= BIT(NL80211_STA_INFO_TX_FAILED);
2187         }
2188
2189         sinfo->rx_dropped_misc = sta->rx_stats.dropped;
2190         if (sta->pcpu_rx_stats) {
2191                 for_each_possible_cpu(cpu) {
2192                         struct ieee80211_sta_rx_stats *cpurxs;
2193
2194                         cpurxs = per_cpu_ptr(sta->pcpu_rx_stats, cpu);
2195                         sinfo->rx_dropped_misc += cpurxs->dropped;
2196                 }
2197         }
2198
2199         if (sdata->vif.type == NL80211_IFTYPE_STATION &&
2200             !(sdata->vif.driver_flags & IEEE80211_VIF_BEACON_FILTER)) {
2201                 sinfo->filled |= BIT(NL80211_STA_INFO_BEACON_RX) |
2202                                  BIT(NL80211_STA_INFO_BEACON_SIGNAL_AVG);
2203                 sinfo->rx_beacon_signal_avg = ieee80211_ave_rssi(&sdata->vif);
2204         }
2205
2206         if (ieee80211_hw_check(&sta->local->hw, SIGNAL_DBM) ||
2207             ieee80211_hw_check(&sta->local->hw, SIGNAL_UNSPEC)) {
2208                 if (!(sinfo->filled & BIT(NL80211_STA_INFO_SIGNAL))) {
2209                         sinfo->signal = (s8)last_rxstats->last_signal;
2210                         sinfo->filled |= BIT(NL80211_STA_INFO_SIGNAL);
2211                 }
2212
2213                 if (!sta->pcpu_rx_stats &&
2214                     !(sinfo->filled & BIT(NL80211_STA_INFO_SIGNAL_AVG))) {
2215                         sinfo->signal_avg =
2216                                 -ewma_signal_read(&sta->rx_stats_avg.signal);
2217                         sinfo->filled |= BIT(NL80211_STA_INFO_SIGNAL_AVG);
2218                 }
2219         }
2220
2221         /* for the average - if pcpu_rx_stats isn't set - rxstats must point to
2222          * the sta->rx_stats struct, so the check here is fine with and without
2223          * pcpu statistics
2224          */
2225         if (last_rxstats->chains &&
2226             !(sinfo->filled & (BIT(NL80211_STA_INFO_CHAIN_SIGNAL) |
2227                                BIT(NL80211_STA_INFO_CHAIN_SIGNAL_AVG)))) {
2228                 sinfo->filled |= BIT(NL80211_STA_INFO_CHAIN_SIGNAL);
2229                 if (!sta->pcpu_rx_stats)
2230                         sinfo->filled |= BIT(NL80211_STA_INFO_CHAIN_SIGNAL_AVG);
2231
2232                 sinfo->chains = last_rxstats->chains;
2233
2234                 for (i = 0; i < ARRAY_SIZE(sinfo->chain_signal); i++) {
2235                         sinfo->chain_signal[i] =
2236                                 last_rxstats->chain_signal_last[i];
2237                         sinfo->chain_signal_avg[i] =
2238                                 -ewma_signal_read(&sta->rx_stats_avg.chain_signal[i]);
2239                 }
2240         }
2241
2242         if (!(sinfo->filled & BIT(NL80211_STA_INFO_TX_BITRATE))) {
2243                 sta_set_rate_info_tx(sta, &sta->tx_stats.last_rate,
2244                                      &sinfo->txrate);
2245                 sinfo->filled |= BIT(NL80211_STA_INFO_TX_BITRATE);
2246         }
2247
2248         if (!(sinfo->filled & BIT(NL80211_STA_INFO_RX_BITRATE))) {
2249                 if (sta_set_rate_info_rx(sta, &sinfo->rxrate) == 0)
2250                         sinfo->filled |= BIT(NL80211_STA_INFO_RX_BITRATE);
2251         }
2252
2253         sinfo->filled |= BIT(NL80211_STA_INFO_TID_STATS);
2254         for (i = 0; i < IEEE80211_NUM_TIDS + 1; i++) {
2255                 struct cfg80211_tid_stats *tidstats = &sinfo->pertid[i];
2256
2257                 sta_set_tidstats(sta, tidstats, i);
2258         }
2259
2260         if (ieee80211_vif_is_mesh(&sdata->vif)) {
2261 #ifdef CONFIG_MAC80211_MESH
2262                 sinfo->filled |= BIT(NL80211_STA_INFO_LLID) |
2263                                  BIT(NL80211_STA_INFO_PLID) |
2264                                  BIT(NL80211_STA_INFO_PLINK_STATE) |
2265                                  BIT(NL80211_STA_INFO_LOCAL_PM) |
2266                                  BIT(NL80211_STA_INFO_PEER_PM) |
2267                                  BIT(NL80211_STA_INFO_NONPEER_PM);
2268
2269                 sinfo->llid = sta->mesh->llid;
2270                 sinfo->plid = sta->mesh->plid;
2271                 sinfo->plink_state = sta->mesh->plink_state;
2272                 if (test_sta_flag(sta, WLAN_STA_TOFFSET_KNOWN)) {
2273                         sinfo->filled |= BIT(NL80211_STA_INFO_T_OFFSET);
2274                         sinfo->t_offset = sta->mesh->t_offset;
2275                 }
2276                 sinfo->local_pm = sta->mesh->local_pm;
2277                 sinfo->peer_pm = sta->mesh->peer_pm;
2278                 sinfo->nonpeer_pm = sta->mesh->nonpeer_pm;
2279 #endif
2280         }
2281
2282         sinfo->bss_param.flags = 0;
2283         if (sdata->vif.bss_conf.use_cts_prot)
2284                 sinfo->bss_param.flags |= BSS_PARAM_FLAGS_CTS_PROT;
2285         if (sdata->vif.bss_conf.use_short_preamble)
2286                 sinfo->bss_param.flags |= BSS_PARAM_FLAGS_SHORT_PREAMBLE;
2287         if (sdata->vif.bss_conf.use_short_slot)
2288                 sinfo->bss_param.flags |= BSS_PARAM_FLAGS_SHORT_SLOT_TIME;
2289         sinfo->bss_param.dtim_period = sdata->vif.bss_conf.dtim_period;
2290         sinfo->bss_param.beacon_interval = sdata->vif.bss_conf.beacon_int;
2291
2292         sinfo->sta_flags.set = 0;
2293         sinfo->sta_flags.mask = BIT(NL80211_STA_FLAG_AUTHORIZED) |
2294                                 BIT(NL80211_STA_FLAG_SHORT_PREAMBLE) |
2295                                 BIT(NL80211_STA_FLAG_WME) |
2296                                 BIT(NL80211_STA_FLAG_MFP) |
2297                                 BIT(NL80211_STA_FLAG_AUTHENTICATED) |
2298                                 BIT(NL80211_STA_FLAG_ASSOCIATED) |
2299                                 BIT(NL80211_STA_FLAG_TDLS_PEER);
2300         if (test_sta_flag(sta, WLAN_STA_AUTHORIZED))
2301                 sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_AUTHORIZED);
2302         if (test_sta_flag(sta, WLAN_STA_SHORT_PREAMBLE))
2303                 sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_SHORT_PREAMBLE);
2304         if (sta->sta.wme)
2305                 sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_WME);
2306         if (test_sta_flag(sta, WLAN_STA_MFP))
2307                 sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_MFP);
2308         if (test_sta_flag(sta, WLAN_STA_AUTH))
2309                 sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_AUTHENTICATED);
2310         if (test_sta_flag(sta, WLAN_STA_ASSOC))
2311                 sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_ASSOCIATED);
2312         if (test_sta_flag(sta, WLAN_STA_TDLS_PEER))
2313                 sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_TDLS_PEER);
2314
2315         thr = sta_get_expected_throughput(sta);
2316
2317         if (thr != 0) {
2318                 sinfo->filled |= BIT(NL80211_STA_INFO_EXPECTED_THROUGHPUT);
2319                 sinfo->expected_throughput = thr;
2320         }
2321 }
2322
2323 u32 sta_get_expected_throughput(struct sta_info *sta)
2324 {
2325         struct ieee80211_sub_if_data *sdata = sta->sdata;
2326         struct ieee80211_local *local = sdata->local;
2327         struct rate_control_ref *ref = NULL;
2328         u32 thr = 0;
2329
2330         if (test_sta_flag(sta, WLAN_STA_RATE_CONTROL))
2331                 ref = local->rate_ctrl;
2332
2333         /* check if the driver has a SW RC implementation */
2334         if (ref && ref->ops->get_expected_throughput)
2335                 thr = ref->ops->get_expected_throughput(sta->rate_ctrl_priv);
2336         else
2337                 thr = drv_get_expected_throughput(local, sta);
2338
2339         return thr;
2340 }
2341
2342 unsigned long ieee80211_sta_last_active(struct sta_info *sta)
2343 {
2344         struct ieee80211_sta_rx_stats *stats = sta_get_last_rx_stats(sta);
2345
2346         if (!sta->status_stats.last_ack ||
2347             time_after(stats->last_rx, sta->status_stats.last_ack))
2348                 return stats->last_rx;
2349         return sta->status_stats.last_ack;
2350 }
2351
2352 static void sta_update_codel_params(struct sta_info *sta, u32 thr)
2353 {
2354         if (!sta->sdata->local->ops->wake_tx_queue)
2355                 return;
2356
2357         if (thr && thr < STA_SLOW_THRESHOLD * sta->local->num_sta) {
2358                 sta->cparams.target = MS2TIME(50);
2359                 sta->cparams.interval = MS2TIME(300);
2360                 sta->cparams.ecn = false;
2361         } else {
2362                 sta->cparams.target = MS2TIME(20);
2363                 sta->cparams.interval = MS2TIME(100);
2364                 sta->cparams.ecn = true;
2365         }
2366 }
2367
2368 void ieee80211_sta_set_expected_throughput(struct ieee80211_sta *pubsta,
2369                                            u32 thr)
2370 {
2371         struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
2372
2373         sta_update_codel_params(sta, thr);
2374 }