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