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