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