Jiri Benc | f0706e82 | 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> |
| 12 | #include <linux/netdevice.h> |
| 13 | #include <linux/types.h> |
| 14 | #include <linux/slab.h> |
| 15 | #include <linux/skbuff.h> |
| 16 | #include <linux/if_arp.h> |
Johannes Berg | 0d17440 | 2007-12-17 15:07:43 +0100 | [diff] [blame] | 17 | #include <linux/timer.h> |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 18 | #include <linux/rtnetlink.h> |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 19 | |
| 20 | #include <net/mac80211.h> |
| 21 | #include "ieee80211_i.h" |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 22 | #include "driver-ops.h" |
Johannes Berg | 2c8dccc | 2008-04-08 15:14:40 -0400 | [diff] [blame] | 23 | #include "rate.h" |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 24 | #include "sta_info.h" |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 25 | #include "debugfs_sta.h" |
Luis Carlos Cobo | ee38585 | 2008-02-23 15:17:11 +0100 | [diff] [blame] | 26 | #include "mesh.h" |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 27 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 28 | /** |
| 29 | * DOC: STA information lifetime rules |
| 30 | * |
| 31 | * STA info structures (&struct sta_info) are managed in a hash table |
| 32 | * for faster lookup and a list for iteration. They are managed using |
| 33 | * RCU, i.e. access to the list and hash table is protected by RCU. |
| 34 | * |
Johannes Berg | 03e4497 | 2008-02-27 09:56:40 +0100 | [diff] [blame] | 35 | * Upon allocating a STA info structure with sta_info_alloc(), the caller owns |
| 36 | * that structure. It must then either destroy it using sta_info_destroy() |
| 37 | * (which is pretty useless) or insert it into the hash table using |
| 38 | * sta_info_insert() which demotes the reference from ownership to a regular |
| 39 | * RCU-protected reference; if the function is called without protection by an |
Johannes Berg | 93e5deb | 2008-04-01 15:21:00 +0200 | [diff] [blame] | 40 | * RCU critical section the reference is instantly invalidated. Note that the |
| 41 | * caller may not do much with the STA info before inserting it, in particular, |
| 42 | * it may not start any mesh peer link management or add encryption keys. |
| 43 | * |
| 44 | * When the insertion fails (sta_info_insert()) returns non-zero), the |
| 45 | * structure will have been freed by sta_info_insert()! |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 46 | * |
Luis R. Rodriguez | 7e189a1 | 2009-06-02 18:38:14 -0400 | [diff] [blame] | 47 | * sta entries are added by mac80211 when you establish a link with a |
| 48 | * peer. This means different things for the different type of interfaces |
| 49 | * we support. For a regular station this mean we add the AP sta when we |
| 50 | * receive an assocation response from the AP. For IBSS this occurs when |
| 51 | * we receive a probe response or a beacon from target IBSS network. For |
| 52 | * WDS we add the sta for the peer imediately upon device open. When using |
| 53 | * AP mode we add stations for each respective station upon request from |
| 54 | * userspace through nl80211. |
| 55 | * |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 56 | * Because there are debugfs entries for each station, and adding those |
| 57 | * must be able to sleep, it is also possible to "pin" a station entry, |
| 58 | * that means it can be removed from the hash table but not be freed. |
Johannes Berg | 93e5deb | 2008-04-01 15:21:00 +0200 | [diff] [blame] | 59 | * See the comment in __sta_info_unlink() for more information, this is |
| 60 | * an internal capability only. |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 61 | * |
| 62 | * In order to remove a STA info structure, the caller needs to first |
Johannes Berg | dbbea67 | 2008-02-26 14:34:06 +0100 | [diff] [blame] | 63 | * unlink it (sta_info_unlink()) from the list and hash tables and |
Johannes Berg | 3b96766 | 2008-04-08 17:56:52 +0200 | [diff] [blame] | 64 | * then destroy it; sta_info_destroy() will wait for an RCU grace period |
| 65 | * to elapse before actually freeing it. Due to the pinning and the |
| 66 | * possibility of multiple callers trying to remove the same STA info at |
| 67 | * the same time, sta_info_unlink() can clear the STA info pointer it is |
| 68 | * passed to indicate that the STA info is owned by somebody else now. |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 69 | * |
Johannes Berg | dbbea67 | 2008-02-26 14:34:06 +0100 | [diff] [blame] | 70 | * If sta_info_unlink() did not clear the pointer then the caller owns |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 71 | * the STA info structure now and is responsible of destroying it with |
Johannes Berg | 3b96766 | 2008-04-08 17:56:52 +0200 | [diff] [blame] | 72 | * a call to sta_info_destroy(). |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 73 | * |
| 74 | * In all other cases, there is no concept of ownership on a STA entry, |
| 75 | * each structure is owned by the global hash table/list until it is |
| 76 | * removed. All users of the structure need to be RCU protected so that |
| 77 | * the structure won't be freed before they are done using it. |
| 78 | */ |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 79 | |
| 80 | /* Caller must hold local->sta_lock */ |
Michael Wu | be8755e | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 81 | static int sta_info_hash_del(struct ieee80211_local *local, |
| 82 | struct sta_info *sta) |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 83 | { |
| 84 | struct sta_info *s; |
| 85 | |
Johannes Berg | 17741cd | 2008-09-11 00:02:02 +0200 | [diff] [blame] | 86 | s = local->sta_hash[STA_HASH(sta->sta.addr)]; |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 87 | if (!s) |
Michael Wu | be8755e | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 88 | return -ENOENT; |
| 89 | if (s == sta) { |
Johannes Berg | 17741cd | 2008-09-11 00:02:02 +0200 | [diff] [blame] | 90 | rcu_assign_pointer(local->sta_hash[STA_HASH(sta->sta.addr)], |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 91 | s->hnext); |
Michael Wu | be8755e | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 92 | return 0; |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 93 | } |
| 94 | |
Michael Wu | be8755e | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 95 | while (s->hnext && s->hnext != sta) |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 96 | s = s->hnext; |
Michael Wu | be8755e | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 97 | if (s->hnext) { |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 98 | rcu_assign_pointer(s->hnext, sta->hnext); |
Michael Wu | be8755e | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 99 | return 0; |
| 100 | } |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 101 | |
Michael Wu | be8755e | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 102 | return -ENOENT; |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 103 | } |
| 104 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 105 | /* protected by RCU */ |
Johannes Berg | abe6063 | 2009-11-25 17:46:18 +0100 | [diff] [blame] | 106 | struct sta_info *sta_info_get(struct ieee80211_sub_if_data *sdata, |
| 107 | const u8 *addr) |
Johannes Berg | 43ba7e9 | 2008-02-21 14:09:30 +0100 | [diff] [blame] | 108 | { |
Johannes Berg | abe6063 | 2009-11-25 17:46:18 +0100 | [diff] [blame] | 109 | struct ieee80211_local *local = sdata->local; |
Johannes Berg | 43ba7e9 | 2008-02-21 14:09:30 +0100 | [diff] [blame] | 110 | struct sta_info *sta; |
| 111 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 112 | sta = rcu_dereference(local->sta_hash[STA_HASH(addr)]); |
Johannes Berg | 43ba7e9 | 2008-02-21 14:09:30 +0100 | [diff] [blame] | 113 | while (sta) { |
Johannes Berg | abe6063 | 2009-11-25 17:46:18 +0100 | [diff] [blame] | 114 | if (sta->sdata == sdata && |
| 115 | memcmp(sta->sta.addr, addr, ETH_ALEN) == 0) |
Johannes Berg | 43ba7e9 | 2008-02-21 14:09:30 +0100 | [diff] [blame] | 116 | break; |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 117 | sta = rcu_dereference(sta->hnext); |
Johannes Berg | 43ba7e9 | 2008-02-21 14:09:30 +0100 | [diff] [blame] | 118 | } |
| 119 | return sta; |
| 120 | } |
| 121 | |
Johannes Berg | 3b53fde8 | 2009-11-16 12:00:37 +0100 | [diff] [blame] | 122 | struct sta_info *sta_info_get_by_idx(struct ieee80211_sub_if_data *sdata, |
| 123 | int idx) |
Luis Carlos Cobo | ee38585 | 2008-02-23 15:17:11 +0100 | [diff] [blame] | 124 | { |
Johannes Berg | 3b53fde8 | 2009-11-16 12:00:37 +0100 | [diff] [blame] | 125 | struct ieee80211_local *local = sdata->local; |
Luis Carlos Cobo | ee38585 | 2008-02-23 15:17:11 +0100 | [diff] [blame] | 126 | struct sta_info *sta; |
| 127 | int i = 0; |
| 128 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 129 | list_for_each_entry_rcu(sta, &local->sta_list, list) { |
Johannes Berg | 3b53fde8 | 2009-11-16 12:00:37 +0100 | [diff] [blame] | 130 | if (sdata != sta->sdata) |
Luis Carlos Cobo | 2a8ca29 | 2008-02-29 17:51:25 -0800 | [diff] [blame] | 131 | continue; |
Luis Carlos Cobo | ee38585 | 2008-02-23 15:17:11 +0100 | [diff] [blame] | 132 | if (i < idx) { |
| 133 | ++i; |
| 134 | continue; |
Luis Carlos Cobo | ee38585 | 2008-02-23 15:17:11 +0100 | [diff] [blame] | 135 | } |
Luis Carlos Cobo | 2a8ca29 | 2008-02-29 17:51:25 -0800 | [diff] [blame] | 136 | return sta; |
Luis Carlos Cobo | ee38585 | 2008-02-23 15:17:11 +0100 | [diff] [blame] | 137 | } |
Luis Carlos Cobo | ee38585 | 2008-02-23 15:17:11 +0100 | [diff] [blame] | 138 | |
| 139 | return NULL; |
| 140 | } |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 141 | |
Johannes Berg | 93e5deb | 2008-04-01 15:21:00 +0200 | [diff] [blame] | 142 | /** |
| 143 | * __sta_info_free - internal STA free helper |
| 144 | * |
Randy Dunlap | 6ef307b | 2008-07-03 13:52:18 -0700 | [diff] [blame] | 145 | * @local: pointer to the global information |
Johannes Berg | 93e5deb | 2008-04-01 15:21:00 +0200 | [diff] [blame] | 146 | * @sta: STA info to free |
| 147 | * |
| 148 | * This function must undo everything done by sta_info_alloc() |
| 149 | * that may happen before sta_info_insert(). |
| 150 | */ |
| 151 | static void __sta_info_free(struct ieee80211_local *local, |
| 152 | struct sta_info *sta) |
| 153 | { |
Johannes Berg | af65cd9 | 2009-11-17 18:18:36 +0100 | [diff] [blame] | 154 | if (sta->rate_ctrl) { |
| 155 | rate_control_free_sta(sta); |
| 156 | rate_control_put(sta->rate_ctrl); |
| 157 | } |
Johannes Berg | 93e5deb | 2008-04-01 15:21:00 +0200 | [diff] [blame] | 158 | |
| 159 | #ifdef CONFIG_MAC80211_VERBOSE_DEBUG |
Johannes Berg | 0c68ae26 | 2008-10-27 15:56:10 -0700 | [diff] [blame] | 160 | printk(KERN_DEBUG "%s: Destroyed STA %pM\n", |
| 161 | wiphy_name(local->hw.wiphy), sta->sta.addr); |
Johannes Berg | 93e5deb | 2008-04-01 15:21:00 +0200 | [diff] [blame] | 162 | #endif /* CONFIG_MAC80211_VERBOSE_DEBUG */ |
| 163 | |
| 164 | kfree(sta); |
| 165 | } |
| 166 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 167 | void sta_info_destroy(struct sta_info *sta) |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 168 | { |
Johannes Berg | 97bff8e | 2008-03-31 19:23:00 +0200 | [diff] [blame] | 169 | struct ieee80211_local *local; |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 170 | struct sk_buff *skb; |
Ron Rindjunsky | 07db218 | 2007-12-25 17:00:33 +0200 | [diff] [blame] | 171 | int i; |
Johannes Berg | 73651ee | 2008-02-25 16:27:47 +0100 | [diff] [blame] | 172 | |
Johannes Berg | 97bff8e | 2008-03-31 19:23:00 +0200 | [diff] [blame] | 173 | might_sleep(); |
| 174 | |
Johannes Berg | 73651ee | 2008-02-25 16:27:47 +0100 | [diff] [blame] | 175 | if (!sta) |
| 176 | return; |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 177 | |
Johannes Berg | 97bff8e | 2008-03-31 19:23:00 +0200 | [diff] [blame] | 178 | local = sta->local; |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 179 | |
Johannes Berg | af81858 | 2009-11-06 11:35:50 +0100 | [diff] [blame] | 180 | cancel_work_sync(&sta->drv_unblock_wk); |
| 181 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 182 | rate_control_remove_sta_debugfs(sta); |
| 183 | ieee80211_sta_debugfs_remove(sta); |
| 184 | |
| 185 | #ifdef CONFIG_MAC80211_MESH |
| 186 | if (ieee80211_vif_is_mesh(&sta->sdata->vif)) |
| 187 | mesh_plink_deactivate(sta); |
| 188 | #endif |
| 189 | |
Johannes Berg | 3b96766 | 2008-04-08 17:56:52 +0200 | [diff] [blame] | 190 | /* |
| 191 | * We have only unlinked the key, and actually destroying it |
| 192 | * may mean it is removed from hardware which requires that |
| 193 | * the key->sta pointer is still valid, so flush the key todo |
| 194 | * list here. |
| 195 | * |
| 196 | * ieee80211_key_todo() will synchronize_rcu() so after this |
| 197 | * nothing can reference this sta struct any more. |
| 198 | */ |
| 199 | ieee80211_key_todo(); |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 200 | |
| 201 | #ifdef CONFIG_MAC80211_MESH |
| 202 | if (ieee80211_vif_is_mesh(&sta->sdata->vif)) |
| 203 | del_timer_sync(&sta->plink_timer); |
| 204 | #endif |
| 205 | |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 206 | while ((skb = skb_dequeue(&sta->ps_tx_buf)) != NULL) { |
| 207 | local->total_ps_buffered--; |
| 208 | dev_kfree_skb_any(skb); |
| 209 | } |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 210 | |
| 211 | while ((skb = skb_dequeue(&sta->tx_filtered)) != NULL) |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 212 | dev_kfree_skb_any(skb); |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 213 | |
Ron Rindjunsky | fe3bf0f | 2008-01-28 14:07:19 +0200 | [diff] [blame] | 214 | for (i = 0; i < STA_TID_NUM; i++) { |
Johannes Berg | 55687e3 | 2009-02-10 21:25:51 +0100 | [diff] [blame] | 215 | struct tid_ampdu_rx *tid_rx; |
| 216 | struct tid_ampdu_tx *tid_tx; |
| 217 | |
Johannes Berg | 07346f81 | 2008-05-03 01:02:02 +0200 | [diff] [blame] | 218 | spin_lock_bh(&sta->lock); |
Johannes Berg | 55687e3 | 2009-02-10 21:25:51 +0100 | [diff] [blame] | 219 | tid_rx = sta->ampdu_mlme.tid_rx[i]; |
| 220 | /* Make sure timer won't free the tid_rx struct, see below */ |
| 221 | if (tid_rx) |
| 222 | tid_rx->shutdown = true; |
Johannes Berg | 96f5e66 | 2009-02-12 00:51:53 +0100 | [diff] [blame] | 223 | |
Johannes Berg | 07346f81 | 2008-05-03 01:02:02 +0200 | [diff] [blame] | 224 | spin_unlock_bh(&sta->lock); |
Johannes Berg | 55687e3 | 2009-02-10 21:25:51 +0100 | [diff] [blame] | 225 | |
| 226 | /* |
| 227 | * Outside spinlock - shutdown is true now so that the timer |
| 228 | * won't free tid_rx, we have to do that now. Can't let the |
| 229 | * timer do it because we have to sync the timer outside the |
| 230 | * lock that it takes itself. |
| 231 | */ |
| 232 | if (tid_rx) { |
| 233 | del_timer_sync(&tid_rx->session_timer); |
| 234 | kfree(tid_rx); |
| 235 | } |
| 236 | |
| 237 | /* |
| 238 | * No need to do such complications for TX agg sessions, the |
| 239 | * path leading to freeing the tid_tx struct goes via a call |
| 240 | * from the driver, and thus needs to look up the sta struct |
| 241 | * again, which cannot be found when we get here. Hence, we |
| 242 | * just need to delete the timer and free the aggregation |
| 243 | * info; we won't be telling the peer about it then but that |
| 244 | * doesn't matter if we're not talking to it again anyway. |
| 245 | */ |
| 246 | tid_tx = sta->ampdu_mlme.tid_tx[i]; |
| 247 | if (tid_tx) { |
| 248 | del_timer_sync(&tid_tx->addba_resp_timer); |
Johannes Berg | cd8ffc8 | 2009-03-23 17:28:41 +0100 | [diff] [blame] | 249 | /* |
| 250 | * STA removed while aggregation session being |
| 251 | * started? Bit odd, but purge frames anyway. |
| 252 | */ |
| 253 | skb_queue_purge(&tid_tx->pending); |
Johannes Berg | 55687e3 | 2009-02-10 21:25:51 +0100 | [diff] [blame] | 254 | kfree(tid_tx); |
| 255 | } |
Ron Rindjunsky | fe3bf0f | 2008-01-28 14:07:19 +0200 | [diff] [blame] | 256 | } |
Ron Rindjunsky | cee24a3 | 2008-03-26 20:36:03 +0200 | [diff] [blame] | 257 | |
Johannes Berg | 93e5deb | 2008-04-01 15:21:00 +0200 | [diff] [blame] | 258 | __sta_info_free(local, sta); |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 259 | } |
| 260 | |
| 261 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 262 | /* Caller must hold local->sta_lock */ |
| 263 | static void sta_info_hash_add(struct ieee80211_local *local, |
| 264 | struct sta_info *sta) |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 265 | { |
Johannes Berg | 17741cd | 2008-09-11 00:02:02 +0200 | [diff] [blame] | 266 | sta->hnext = local->sta_hash[STA_HASH(sta->sta.addr)]; |
| 267 | rcu_assign_pointer(local->sta_hash[STA_HASH(sta->sta.addr)], sta); |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 268 | } |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 269 | |
Johannes Berg | af81858 | 2009-11-06 11:35:50 +0100 | [diff] [blame] | 270 | static void sta_unblock(struct work_struct *wk) |
| 271 | { |
| 272 | struct sta_info *sta; |
| 273 | |
| 274 | sta = container_of(wk, struct sta_info, drv_unblock_wk); |
| 275 | |
| 276 | if (sta->dead) |
| 277 | return; |
| 278 | |
| 279 | if (!test_sta_flags(sta, WLAN_STA_PS_STA)) |
| 280 | ieee80211_sta_ps_deliver_wakeup(sta); |
| 281 | else if (test_and_clear_sta_flags(sta, WLAN_STA_PSPOLL)) |
| 282 | ieee80211_sta_ps_deliver_poll_response(sta); |
| 283 | } |
| 284 | |
Johannes Berg | af65cd9 | 2009-11-17 18:18:36 +0100 | [diff] [blame] | 285 | static int sta_prepare_rate_control(struct ieee80211_local *local, |
| 286 | struct sta_info *sta, gfp_t gfp) |
| 287 | { |
| 288 | if (local->hw.flags & IEEE80211_HW_HAS_RATE_CONTROL) |
| 289 | return 0; |
| 290 | |
| 291 | sta->rate_ctrl = rate_control_get(local->rate_ctrl); |
| 292 | sta->rate_ctrl_priv = rate_control_alloc_sta(sta->rate_ctrl, |
| 293 | &sta->sta, gfp); |
| 294 | if (!sta->rate_ctrl_priv) { |
| 295 | rate_control_put(sta->rate_ctrl); |
| 296 | return -ENOMEM; |
| 297 | } |
| 298 | |
| 299 | return 0; |
| 300 | } |
| 301 | |
Johannes Berg | 73651ee | 2008-02-25 16:27:47 +0100 | [diff] [blame] | 302 | struct sta_info *sta_info_alloc(struct ieee80211_sub_if_data *sdata, |
| 303 | u8 *addr, gfp_t gfp) |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 304 | { |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 305 | struct ieee80211_local *local = sdata->local; |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 306 | struct sta_info *sta; |
Ron Rindjunsky | 16c5f15 | 2007-12-25 17:00:34 +0200 | [diff] [blame] | 307 | int i; |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 308 | |
Johannes Berg | 17741cd | 2008-09-11 00:02:02 +0200 | [diff] [blame] | 309 | sta = kzalloc(sizeof(*sta) + local->hw.sta_data_size, gfp); |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 310 | if (!sta) |
Johannes Berg | 73651ee | 2008-02-25 16:27:47 +0100 | [diff] [blame] | 311 | return NULL; |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 312 | |
Johannes Berg | 07346f81 | 2008-05-03 01:02:02 +0200 | [diff] [blame] | 313 | spin_lock_init(&sta->lock); |
Johannes Berg | 5a9f7b0 | 2008-06-18 14:58:09 +0200 | [diff] [blame] | 314 | spin_lock_init(&sta->flaglock); |
Johannes Berg | af81858 | 2009-11-06 11:35:50 +0100 | [diff] [blame] | 315 | INIT_WORK(&sta->drv_unblock_wk, sta_unblock); |
Johannes Berg | 07346f81 | 2008-05-03 01:02:02 +0200 | [diff] [blame] | 316 | |
Johannes Berg | 17741cd | 2008-09-11 00:02:02 +0200 | [diff] [blame] | 317 | memcpy(sta->sta.addr, addr, ETH_ALEN); |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 318 | sta->local = local; |
| 319 | sta->sdata = sdata; |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 320 | |
Johannes Berg | af65cd9 | 2009-11-17 18:18:36 +0100 | [diff] [blame] | 321 | if (sta_prepare_rate_control(local, sta, gfp)) { |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 322 | kfree(sta); |
Johannes Berg | 73651ee | 2008-02-25 16:27:47 +0100 | [diff] [blame] | 323 | return NULL; |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 324 | } |
| 325 | |
Ron Rindjunsky | 16c5f15 | 2007-12-25 17:00:34 +0200 | [diff] [blame] | 326 | for (i = 0; i < STA_TID_NUM; i++) { |
| 327 | /* timer_to_tid must be initialized with identity mapping to |
| 328 | * enable session_timer's data differentiation. refer to |
| 329 | * sta_rx_agg_session_timer_expired for useage */ |
| 330 | sta->timer_to_tid[i] = i; |
Ron Rindjunsky | cee24a3 | 2008-03-26 20:36:03 +0200 | [diff] [blame] | 331 | /* rx */ |
| 332 | sta->ampdu_mlme.tid_state_rx[i] = HT_AGG_STATE_IDLE; |
| 333 | sta->ampdu_mlme.tid_rx[i] = NULL; |
| 334 | /* tx */ |
| 335 | sta->ampdu_mlme.tid_state_tx[i] = HT_AGG_STATE_IDLE; |
| 336 | sta->ampdu_mlme.tid_tx[i] = NULL; |
| 337 | sta->ampdu_mlme.addba_req_num[i] = 0; |
Ron Rindjunsky | 16c5f15 | 2007-12-25 17:00:34 +0200 | [diff] [blame] | 338 | } |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 339 | skb_queue_head_init(&sta->ps_tx_buf); |
| 340 | skb_queue_head_init(&sta->tx_filtered); |
Johannes Berg | 73651ee | 2008-02-25 16:27:47 +0100 | [diff] [blame] | 341 | |
Senthil Balasubramanian | cccaec9 | 2009-05-14 18:42:08 +0530 | [diff] [blame] | 342 | for (i = 0; i < NUM_RX_DATA_QUEUES; i++) |
| 343 | sta->last_seq_ctrl[i] = cpu_to_le16(USHORT_MAX); |
| 344 | |
Johannes Berg | 73651ee | 2008-02-25 16:27:47 +0100 | [diff] [blame] | 345 | #ifdef CONFIG_MAC80211_VERBOSE_DEBUG |
Johannes Berg | 0c68ae26 | 2008-10-27 15:56:10 -0700 | [diff] [blame] | 346 | printk(KERN_DEBUG "%s: Allocated STA %pM\n", |
| 347 | wiphy_name(local->hw.wiphy), sta->sta.addr); |
Johannes Berg | 73651ee | 2008-02-25 16:27:47 +0100 | [diff] [blame] | 348 | #endif /* CONFIG_MAC80211_VERBOSE_DEBUG */ |
| 349 | |
Johannes Berg | 03e4497 | 2008-02-27 09:56:40 +0100 | [diff] [blame] | 350 | #ifdef CONFIG_MAC80211_MESH |
Luis Carlos Cobo | b4e08ea | 2008-02-29 15:46:08 -0800 | [diff] [blame] | 351 | sta->plink_state = PLINK_LISTEN; |
Johannes Berg | 03e4497 | 2008-02-27 09:56:40 +0100 | [diff] [blame] | 352 | init_timer(&sta->plink_timer); |
| 353 | #endif |
| 354 | |
Johannes Berg | 73651ee | 2008-02-25 16:27:47 +0100 | [diff] [blame] | 355 | return sta; |
| 356 | } |
| 357 | |
| 358 | int sta_info_insert(struct sta_info *sta) |
| 359 | { |
| 360 | struct ieee80211_local *local = sta->local; |
| 361 | struct ieee80211_sub_if_data *sdata = sta->sdata; |
| 362 | unsigned long flags; |
Johannes Berg | 93e5deb | 2008-04-01 15:21:00 +0200 | [diff] [blame] | 363 | int err = 0; |
Johannes Berg | 73651ee | 2008-02-25 16:27:47 +0100 | [diff] [blame] | 364 | |
Johannes Berg | 03e4497 | 2008-02-27 09:56:40 +0100 | [diff] [blame] | 365 | /* |
| 366 | * Can't be a WARN_ON because it can be triggered through a race: |
| 367 | * something inserts a STA (on one CPU) without holding the RTNL |
| 368 | * and another CPU turns off the net device. |
| 369 | */ |
Johannes Berg | 93e5deb | 2008-04-01 15:21:00 +0200 | [diff] [blame] | 370 | if (unlikely(!netif_running(sdata->dev))) { |
| 371 | err = -ENETDOWN; |
| 372 | goto out_free; |
| 373 | } |
Johannes Berg | 03e4497 | 2008-02-27 09:56:40 +0100 | [diff] [blame] | 374 | |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 375 | if (WARN_ON(compare_ether_addr(sta->sta.addr, sdata->vif.addr) == 0 || |
Johannes Berg | c6a1fa1 | 2008-10-07 12:04:32 +0200 | [diff] [blame] | 376 | is_multicast_ether_addr(sta->sta.addr))) { |
Johannes Berg | 93e5deb | 2008-04-01 15:21:00 +0200 | [diff] [blame] | 377 | err = -EINVAL; |
| 378 | goto out_free; |
| 379 | } |
Johannes Berg | 44213b5 | 2008-02-25 16:27:49 +0100 | [diff] [blame] | 380 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 381 | spin_lock_irqsave(&local->sta_lock, flags); |
Johannes Berg | 43ba7e9 | 2008-02-21 14:09:30 +0100 | [diff] [blame] | 382 | /* check if STA exists already */ |
Johannes Berg | abe6063 | 2009-11-25 17:46:18 +0100 | [diff] [blame] | 383 | if (sta_info_get(sdata, sta->sta.addr)) { |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 384 | spin_unlock_irqrestore(&local->sta_lock, flags); |
Johannes Berg | 93e5deb | 2008-04-01 15:21:00 +0200 | [diff] [blame] | 385 | err = -EEXIST; |
| 386 | goto out_free; |
Johannes Berg | 43ba7e9 | 2008-02-21 14:09:30 +0100 | [diff] [blame] | 387 | } |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 388 | list_add(&sta->list, &local->sta_list); |
Johannes Berg | f5ea912 | 2009-08-07 16:17:38 +0200 | [diff] [blame] | 389 | local->sta_generation++; |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 390 | local->num_sta++; |
| 391 | sta_info_hash_add(local, sta); |
Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 392 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 393 | /* notify driver */ |
| 394 | if (local->ops->sta_notify) { |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 395 | if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN) |
Johannes Berg | 3e122be | 2008-07-09 14:40:34 +0200 | [diff] [blame] | 396 | sdata = container_of(sdata->bss, |
| 397 | struct ieee80211_sub_if_data, |
| 398 | u.ap); |
Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 399 | |
Johannes Berg | 12375ef | 2009-11-25 20:30:31 +0100 | [diff] [blame^] | 400 | drv_sta_notify(local, sdata, STA_NOTIFY_ADD, &sta->sta); |
Johannes Berg | fbc44bf | 2009-10-01 22:06:29 +0200 | [diff] [blame] | 401 | sdata = sta->sdata; |
Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 402 | } |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 403 | |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 404 | #ifdef CONFIG_MAC80211_VERBOSE_DEBUG |
Johannes Berg | 0c68ae26 | 2008-10-27 15:56:10 -0700 | [diff] [blame] | 405 | printk(KERN_DEBUG "%s: Inserted STA %pM\n", |
| 406 | wiphy_name(local->hw.wiphy), sta->sta.addr); |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 407 | #endif /* CONFIG_MAC80211_VERBOSE_DEBUG */ |
| 408 | |
Johannes Berg | 73651ee | 2008-02-25 16:27:47 +0100 | [diff] [blame] | 409 | spin_unlock_irqrestore(&local->sta_lock, flags); |
| 410 | |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 411 | #ifdef CONFIG_MAC80211_DEBUGFS |
Johannes Berg | 93e5deb | 2008-04-01 15:21:00 +0200 | [diff] [blame] | 412 | /* |
| 413 | * Debugfs entry adding might sleep, so schedule process |
Michael Wu | be8755e | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 414 | * context task for adding entry for STAs that do not yet |
Johannes Berg | 93e5deb | 2008-04-01 15:21:00 +0200 | [diff] [blame] | 415 | * have one. |
| 416 | * NOTE: due to auto-freeing semantics this may only be done |
| 417 | * if the insertion is successful! |
| 418 | */ |
Johannes Berg | 49ec6fa2 | 2008-04-03 14:31:05 +0200 | [diff] [blame] | 419 | schedule_work(&local->sta_debugfs_add); |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 420 | #endif |
| 421 | |
Johannes Berg | 73651ee | 2008-02-25 16:27:47 +0100 | [diff] [blame] | 422 | if (ieee80211_vif_is_mesh(&sdata->vif)) |
| 423 | mesh_accept_plinks_update(sdata); |
| 424 | |
| 425 | return 0; |
Johannes Berg | 93e5deb | 2008-04-01 15:21:00 +0200 | [diff] [blame] | 426 | out_free: |
| 427 | BUG_ON(!err); |
| 428 | __sta_info_free(local, sta); |
| 429 | return err; |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 430 | } |
| 431 | |
Johannes Berg | 004c872 | 2008-02-20 11:21:35 +0100 | [diff] [blame] | 432 | static inline void __bss_tim_set(struct ieee80211_if_ap *bss, u16 aid) |
| 433 | { |
| 434 | /* |
| 435 | * This format has been mandated by the IEEE specifications, |
| 436 | * so this line may not be changed to use the __set_bit() format. |
| 437 | */ |
| 438 | bss->tim[aid / 8] |= (1 << (aid % 8)); |
| 439 | } |
| 440 | |
| 441 | static inline void __bss_tim_clear(struct ieee80211_if_ap *bss, u16 aid) |
| 442 | { |
| 443 | /* |
| 444 | * This format has been mandated by the IEEE specifications, |
| 445 | * so this line may not be changed to use the __clear_bit() format. |
| 446 | */ |
| 447 | bss->tim[aid / 8] &= ~(1 << (aid % 8)); |
| 448 | } |
| 449 | |
| 450 | static void __sta_info_set_tim_bit(struct ieee80211_if_ap *bss, |
| 451 | struct sta_info *sta) |
| 452 | { |
Johannes Berg | 3e122be | 2008-07-09 14:40:34 +0200 | [diff] [blame] | 453 | BUG_ON(!bss); |
| 454 | |
Johannes Berg | 17741cd | 2008-09-11 00:02:02 +0200 | [diff] [blame] | 455 | __bss_tim_set(bss, sta->sta.aid); |
Johannes Berg | 3e122be | 2008-07-09 14:40:34 +0200 | [diff] [blame] | 456 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 457 | if (sta->local->ops->set_tim) { |
| 458 | sta->local->tim_in_locked_section = true; |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 459 | drv_set_tim(sta->local, &sta->sta, true); |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 460 | sta->local->tim_in_locked_section = false; |
| 461 | } |
Johannes Berg | 004c872 | 2008-02-20 11:21:35 +0100 | [diff] [blame] | 462 | } |
| 463 | |
| 464 | void sta_info_set_tim_bit(struct sta_info *sta) |
| 465 | { |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 466 | unsigned long flags; |
Johannes Berg | 004c872 | 2008-02-20 11:21:35 +0100 | [diff] [blame] | 467 | |
Johannes Berg | 3e122be | 2008-07-09 14:40:34 +0200 | [diff] [blame] | 468 | BUG_ON(!sta->sdata->bss); |
| 469 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 470 | spin_lock_irqsave(&sta->local->sta_lock, flags); |
| 471 | __sta_info_set_tim_bit(sta->sdata->bss, sta); |
| 472 | spin_unlock_irqrestore(&sta->local->sta_lock, flags); |
Johannes Berg | 004c872 | 2008-02-20 11:21:35 +0100 | [diff] [blame] | 473 | } |
| 474 | |
| 475 | static void __sta_info_clear_tim_bit(struct ieee80211_if_ap *bss, |
| 476 | struct sta_info *sta) |
| 477 | { |
Johannes Berg | 3e122be | 2008-07-09 14:40:34 +0200 | [diff] [blame] | 478 | BUG_ON(!bss); |
| 479 | |
Johannes Berg | 17741cd | 2008-09-11 00:02:02 +0200 | [diff] [blame] | 480 | __bss_tim_clear(bss, sta->sta.aid); |
Johannes Berg | 3e122be | 2008-07-09 14:40:34 +0200 | [diff] [blame] | 481 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 482 | if (sta->local->ops->set_tim) { |
| 483 | sta->local->tim_in_locked_section = true; |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 484 | drv_set_tim(sta->local, &sta->sta, false); |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 485 | sta->local->tim_in_locked_section = false; |
| 486 | } |
Johannes Berg | 004c872 | 2008-02-20 11:21:35 +0100 | [diff] [blame] | 487 | } |
| 488 | |
| 489 | void sta_info_clear_tim_bit(struct sta_info *sta) |
| 490 | { |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 491 | unsigned long flags; |
Johannes Berg | 004c872 | 2008-02-20 11:21:35 +0100 | [diff] [blame] | 492 | |
Johannes Berg | 3e122be | 2008-07-09 14:40:34 +0200 | [diff] [blame] | 493 | BUG_ON(!sta->sdata->bss); |
| 494 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 495 | spin_lock_irqsave(&sta->local->sta_lock, flags); |
| 496 | __sta_info_clear_tim_bit(sta->sdata->bss, sta); |
| 497 | spin_unlock_irqrestore(&sta->local->sta_lock, flags); |
Johannes Berg | 004c872 | 2008-02-20 11:21:35 +0100 | [diff] [blame] | 498 | } |
| 499 | |
Johannes Berg | 24723d1 | 2008-09-11 00:01:46 +0200 | [diff] [blame] | 500 | static void __sta_info_unlink(struct sta_info **sta) |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 501 | { |
| 502 | struct ieee80211_local *local = (*sta)->local; |
| 503 | struct ieee80211_sub_if_data *sdata = (*sta)->sdata; |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 504 | /* |
| 505 | * pull caller's reference if we're already gone. |
| 506 | */ |
| 507 | if (sta_info_hash_del(local, *sta)) { |
| 508 | *sta = NULL; |
Michael Wu | be8755e | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 509 | return; |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 510 | } |
Michael Wu | be8755e | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 511 | |
Johannes Berg | 3b96766 | 2008-04-08 17:56:52 +0200 | [diff] [blame] | 512 | if ((*sta)->key) { |
| 513 | ieee80211_key_free((*sta)->key); |
| 514 | WARN_ON((*sta)->key); |
| 515 | } |
| 516 | |
Johannes Berg | 7d1559f | 2008-04-08 13:08:20 +0200 | [diff] [blame] | 517 | list_del(&(*sta)->list); |
Johannes Berg | af81858 | 2009-11-06 11:35:50 +0100 | [diff] [blame] | 518 | (*sta)->dead = true; |
Johannes Berg | 7d1559f | 2008-04-08 13:08:20 +0200 | [diff] [blame] | 519 | |
Johannes Berg | af81858 | 2009-11-06 11:35:50 +0100 | [diff] [blame] | 520 | if (test_and_clear_sta_flags(*sta, |
| 521 | WLAN_STA_PS_STA | WLAN_STA_PS_DRIVER)) { |
Johannes Berg | 3e122be | 2008-07-09 14:40:34 +0200 | [diff] [blame] | 522 | BUG_ON(!sdata->bss); |
| 523 | |
| 524 | atomic_dec(&sdata->bss->num_sta_ps); |
Johannes Berg | 7d1559f | 2008-04-08 13:08:20 +0200 | [diff] [blame] | 525 | __sta_info_clear_tim_bit(sdata->bss, *sta); |
| 526 | } |
| 527 | |
| 528 | local->num_sta--; |
Johannes Berg | f5ea912 | 2009-08-07 16:17:38 +0200 | [diff] [blame] | 529 | local->sta_generation++; |
Johannes Berg | 7d1559f | 2008-04-08 13:08:20 +0200 | [diff] [blame] | 530 | |
Felix Fietkau | f14543e | 2009-11-10 20:10:05 +0100 | [diff] [blame] | 531 | if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN) |
| 532 | rcu_assign_pointer(sdata->u.vlan.sta, NULL); |
| 533 | |
Johannes Berg | 7d1559f | 2008-04-08 13:08:20 +0200 | [diff] [blame] | 534 | if (local->ops->sta_notify) { |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 535 | if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN) |
Johannes Berg | 3e122be | 2008-07-09 14:40:34 +0200 | [diff] [blame] | 536 | sdata = container_of(sdata->bss, |
| 537 | struct ieee80211_sub_if_data, |
| 538 | u.ap); |
Johannes Berg | 7d1559f | 2008-04-08 13:08:20 +0200 | [diff] [blame] | 539 | |
Johannes Berg | 12375ef | 2009-11-25 20:30:31 +0100 | [diff] [blame^] | 540 | drv_sta_notify(local, sdata, STA_NOTIFY_REMOVE, |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 541 | &(*sta)->sta); |
Johannes Berg | fbc44bf | 2009-10-01 22:06:29 +0200 | [diff] [blame] | 542 | sdata = (*sta)->sdata; |
Johannes Berg | 7d1559f | 2008-04-08 13:08:20 +0200 | [diff] [blame] | 543 | } |
| 544 | |
| 545 | if (ieee80211_vif_is_mesh(&sdata->vif)) { |
| 546 | mesh_accept_plinks_update(sdata); |
| 547 | #ifdef CONFIG_MAC80211_MESH |
| 548 | del_timer(&(*sta)->plink_timer); |
| 549 | #endif |
| 550 | } |
| 551 | |
| 552 | #ifdef CONFIG_MAC80211_VERBOSE_DEBUG |
Johannes Berg | 0c68ae26 | 2008-10-27 15:56:10 -0700 | [diff] [blame] | 553 | printk(KERN_DEBUG "%s: Removed STA %pM\n", |
| 554 | wiphy_name(local->hw.wiphy), (*sta)->sta.addr); |
Johannes Berg | 7d1559f | 2008-04-08 13:08:20 +0200 | [diff] [blame] | 555 | #endif /* CONFIG_MAC80211_VERBOSE_DEBUG */ |
| 556 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 557 | /* |
Johannes Berg | 7d1559f | 2008-04-08 13:08:20 +0200 | [diff] [blame] | 558 | * Finally, pull caller's reference if the STA is pinned by the |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 559 | * task that is adding the debugfs entries. In that case, we |
| 560 | * leave the STA "to be freed". |
| 561 | * |
| 562 | * The rules are not trivial, but not too complex either: |
| 563 | * (1) pin_status is only modified under the sta_lock |
Johannes Berg | 49ec6fa2 | 2008-04-03 14:31:05 +0200 | [diff] [blame] | 564 | * (2) STAs may only be pinned under the RTNL so that |
| 565 | * sta_info_flush() is guaranteed to actually destroy |
| 566 | * all STAs that are active for a given interface, this |
| 567 | * is required for correctness because otherwise we |
| 568 | * could notify a driver that an interface is going |
| 569 | * away and only after that (!) notify it about a STA |
| 570 | * on that interface going away. |
| 571 | * (3) sta_info_debugfs_add_work() will set the status |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 572 | * to PINNED when it found an item that needs a new |
| 573 | * debugfs directory created. In that case, that item |
| 574 | * must not be freed although all *RCU* users are done |
| 575 | * with it. Hence, we tell the caller of _unlink() |
| 576 | * that the item is already gone (as can happen when |
| 577 | * two tasks try to unlink/destroy at the same time) |
Johannes Berg | 49ec6fa2 | 2008-04-03 14:31:05 +0200 | [diff] [blame] | 578 | * (4) We set the pin_status to DESTROY here when we |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 579 | * find such an item. |
Johannes Berg | 49ec6fa2 | 2008-04-03 14:31:05 +0200 | [diff] [blame] | 580 | * (5) sta_info_debugfs_add_work() will reset the pin_status |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 581 | * from PINNED to NORMAL when it is done with the item, |
| 582 | * but will check for DESTROY before resetting it in |
| 583 | * which case it will free the item. |
| 584 | */ |
| 585 | if ((*sta)->pin_status == STA_INFO_PIN_STAT_PINNED) { |
| 586 | (*sta)->pin_status = STA_INFO_PIN_STAT_DESTROY; |
| 587 | *sta = NULL; |
| 588 | return; |
| 589 | } |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 590 | } |
| 591 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 592 | void sta_info_unlink(struct sta_info **sta) |
| 593 | { |
| 594 | struct ieee80211_local *local = (*sta)->local; |
| 595 | unsigned long flags; |
| 596 | |
| 597 | spin_lock_irqsave(&local->sta_lock, flags); |
| 598 | __sta_info_unlink(sta); |
| 599 | spin_unlock_irqrestore(&local->sta_lock, flags); |
| 600 | } |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 601 | |
Johannes Berg | 57c4d7b | 2009-04-23 16:10:04 +0200 | [diff] [blame] | 602 | static int sta_info_buffer_expired(struct sta_info *sta, |
| 603 | struct sk_buff *skb) |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 604 | { |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 605 | struct ieee80211_tx_info *info; |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 606 | int timeout; |
| 607 | |
| 608 | if (!skb) |
| 609 | return 0; |
| 610 | |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 611 | info = IEEE80211_SKB_CB(skb); |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 612 | |
| 613 | /* Timeout: (2 * listen_interval * beacon_int * 1024 / 1000000) sec */ |
Johannes Berg | 57c4d7b | 2009-04-23 16:10:04 +0200 | [diff] [blame] | 614 | timeout = (sta->listen_interval * |
| 615 | sta->sdata->vif.bss_conf.beacon_int * |
| 616 | 32 / 15625) * HZ; |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 617 | if (timeout < STA_TX_BUFFER_EXPIRE) |
| 618 | timeout = STA_TX_BUFFER_EXPIRE; |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 619 | return time_after(jiffies, info->control.jiffies + timeout); |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 620 | } |
| 621 | |
| 622 | |
| 623 | static void sta_info_cleanup_expire_buffered(struct ieee80211_local *local, |
| 624 | struct sta_info *sta) |
| 625 | { |
| 626 | unsigned long flags; |
| 627 | struct sk_buff *skb; |
Johannes Berg | 836341a | 2008-02-20 02:07:21 +0100 | [diff] [blame] | 628 | struct ieee80211_sub_if_data *sdata; |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 629 | |
| 630 | if (skb_queue_empty(&sta->ps_tx_buf)) |
| 631 | return; |
| 632 | |
| 633 | for (;;) { |
| 634 | spin_lock_irqsave(&sta->ps_tx_buf.lock, flags); |
| 635 | skb = skb_peek(&sta->ps_tx_buf); |
Johannes Berg | 57c4d7b | 2009-04-23 16:10:04 +0200 | [diff] [blame] | 636 | if (sta_info_buffer_expired(sta, skb)) |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 637 | skb = __skb_dequeue(&sta->ps_tx_buf); |
Johannes Berg | 836341a | 2008-02-20 02:07:21 +0100 | [diff] [blame] | 638 | else |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 639 | skb = NULL; |
| 640 | spin_unlock_irqrestore(&sta->ps_tx_buf.lock, flags); |
| 641 | |
Johannes Berg | 836341a | 2008-02-20 02:07:21 +0100 | [diff] [blame] | 642 | if (!skb) |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 643 | break; |
Johannes Berg | 836341a | 2008-02-20 02:07:21 +0100 | [diff] [blame] | 644 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 645 | sdata = sta->sdata; |
Johannes Berg | 836341a | 2008-02-20 02:07:21 +0100 | [diff] [blame] | 646 | local->total_ps_buffered--; |
Johannes Berg | f4ea83d | 2008-06-30 15:10:46 +0200 | [diff] [blame] | 647 | #ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG |
Johannes Berg | 0c68ae26 | 2008-10-27 15:56:10 -0700 | [diff] [blame] | 648 | printk(KERN_DEBUG "Buffered frame expired (STA %pM)\n", |
| 649 | sta->sta.addr); |
Johannes Berg | f4ea83d | 2008-06-30 15:10:46 +0200 | [diff] [blame] | 650 | #endif |
Johannes Berg | 836341a | 2008-02-20 02:07:21 +0100 | [diff] [blame] | 651 | dev_kfree_skb(skb); |
| 652 | |
Johannes Berg | 004c872 | 2008-02-20 11:21:35 +0100 | [diff] [blame] | 653 | if (skb_queue_empty(&sta->ps_tx_buf)) |
| 654 | sta_info_clear_tim_bit(sta); |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 655 | } |
| 656 | } |
| 657 | |
| 658 | |
| 659 | static void sta_info_cleanup(unsigned long data) |
| 660 | { |
| 661 | struct ieee80211_local *local = (struct ieee80211_local *) data; |
| 662 | struct sta_info *sta; |
| 663 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 664 | rcu_read_lock(); |
| 665 | list_for_each_entry_rcu(sta, &local->sta_list, list) |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 666 | sta_info_cleanup_expire_buffered(local, sta); |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 667 | rcu_read_unlock(); |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 668 | |
Johannes Berg | 5bb644a | 2009-05-17 11:40:42 +0200 | [diff] [blame] | 669 | if (local->quiescing) |
| 670 | return; |
| 671 | |
Johannes Berg | 0d17440 | 2007-12-17 15:07:43 +0100 | [diff] [blame] | 672 | local->sta_cleanup.expires = |
| 673 | round_jiffies(jiffies + STA_INFO_CLEANUP_INTERVAL); |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 674 | add_timer(&local->sta_cleanup); |
| 675 | } |
| 676 | |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 677 | #ifdef CONFIG_MAC80211_DEBUGFS |
Jiri Slaby | 4d6141c | 2008-04-07 21:53:49 +0200 | [diff] [blame] | 678 | /* |
| 679 | * See comment in __sta_info_unlink, |
| 680 | * caller must hold local->sta_lock. |
| 681 | */ |
| 682 | static void __sta_info_pin(struct sta_info *sta) |
| 683 | { |
| 684 | WARN_ON(sta->pin_status != STA_INFO_PIN_STAT_NORMAL); |
| 685 | sta->pin_status = STA_INFO_PIN_STAT_PINNED; |
| 686 | } |
| 687 | |
| 688 | /* |
| 689 | * See comment in __sta_info_unlink, returns sta if it |
| 690 | * needs to be destroyed. |
| 691 | */ |
| 692 | static struct sta_info *__sta_info_unpin(struct sta_info *sta) |
| 693 | { |
| 694 | struct sta_info *ret = NULL; |
| 695 | unsigned long flags; |
| 696 | |
| 697 | spin_lock_irqsave(&sta->local->sta_lock, flags); |
| 698 | WARN_ON(sta->pin_status != STA_INFO_PIN_STAT_DESTROY && |
| 699 | sta->pin_status != STA_INFO_PIN_STAT_PINNED); |
| 700 | if (sta->pin_status == STA_INFO_PIN_STAT_DESTROY) |
| 701 | ret = sta; |
| 702 | sta->pin_status = STA_INFO_PIN_STAT_NORMAL; |
| 703 | spin_unlock_irqrestore(&sta->local->sta_lock, flags); |
| 704 | |
| 705 | return ret; |
| 706 | } |
| 707 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 708 | static void sta_info_debugfs_add_work(struct work_struct *work) |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 709 | { |
| 710 | struct ieee80211_local *local = |
| 711 | container_of(work, struct ieee80211_local, sta_debugfs_add); |
| 712 | struct sta_info *sta, *tmp; |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 713 | unsigned long flags; |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 714 | |
Johannes Berg | 49ec6fa2 | 2008-04-03 14:31:05 +0200 | [diff] [blame] | 715 | /* We need to keep the RTNL across the whole pinned status. */ |
| 716 | rtnl_lock(); |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 717 | while (1) { |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 718 | sta = NULL; |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 719 | |
| 720 | spin_lock_irqsave(&local->sta_lock, flags); |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 721 | list_for_each_entry(tmp, &local->sta_list, list) { |
Johannes Berg | 63044e9 | 2008-10-07 12:04:29 +0200 | [diff] [blame] | 722 | /* |
| 723 | * debugfs.add_has_run will be set by |
| 724 | * ieee80211_sta_debugfs_add regardless |
| 725 | * of what else it does. |
| 726 | */ |
| 727 | if (!tmp->debugfs.add_has_run) { |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 728 | sta = tmp; |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 729 | __sta_info_pin(sta); |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 730 | break; |
| 731 | } |
| 732 | } |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 733 | spin_unlock_irqrestore(&local->sta_lock, flags); |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 734 | |
| 735 | if (!sta) |
| 736 | break; |
| 737 | |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 738 | ieee80211_sta_debugfs_add(sta); |
| 739 | rate_control_add_sta_debugfs(sta); |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 740 | |
| 741 | sta = __sta_info_unpin(sta); |
Johannes Berg | 4f6fab4 | 2008-03-31 19:23:02 +0200 | [diff] [blame] | 742 | sta_info_destroy(sta); |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 743 | } |
Johannes Berg | 49ec6fa2 | 2008-04-03 14:31:05 +0200 | [diff] [blame] | 744 | rtnl_unlock(); |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 745 | } |
| 746 | #endif |
| 747 | |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 748 | void sta_info_init(struct ieee80211_local *local) |
| 749 | { |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 750 | spin_lock_init(&local->sta_lock); |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 751 | INIT_LIST_HEAD(&local->sta_list); |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 752 | |
Pavel Emelyanov | b24b8a2 | 2008-01-23 21:20:07 -0800 | [diff] [blame] | 753 | setup_timer(&local->sta_cleanup, sta_info_cleanup, |
| 754 | (unsigned long)local); |
Johannes Berg | 0d17440 | 2007-12-17 15:07:43 +0100 | [diff] [blame] | 755 | local->sta_cleanup.expires = |
| 756 | round_jiffies(jiffies + STA_INFO_CLEANUP_INTERVAL); |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 757 | |
| 758 | #ifdef CONFIG_MAC80211_DEBUGFS |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 759 | INIT_WORK(&local->sta_debugfs_add, sta_info_debugfs_add_work); |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 760 | #endif |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 761 | } |
| 762 | |
| 763 | int sta_info_start(struct ieee80211_local *local) |
| 764 | { |
| 765 | add_timer(&local->sta_cleanup); |
| 766 | return 0; |
| 767 | } |
| 768 | |
| 769 | void sta_info_stop(struct ieee80211_local *local) |
| 770 | { |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 771 | del_timer(&local->sta_cleanup); |
Johannes Berg | 49ec6fa2 | 2008-04-03 14:31:05 +0200 | [diff] [blame] | 772 | #ifdef CONFIG_MAC80211_DEBUGFS |
| 773 | /* |
| 774 | * Make sure the debugfs adding work isn't pending after this |
| 775 | * because we're about to be destroyed. It doesn't matter |
| 776 | * whether it ran or not since we're going to flush all STAs |
| 777 | * anyway. |
| 778 | */ |
| 779 | cancel_work_sync(&local->sta_debugfs_add); |
| 780 | #endif |
Johannes Berg | dc6676b | 2008-03-31 19:23:03 +0200 | [diff] [blame] | 781 | |
Michael Wu | be8755e | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 782 | sta_info_flush(local, NULL); |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 783 | } |
| 784 | |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 785 | /** |
| 786 | * sta_info_flush - flush matching STA entries from the STA table |
Johannes Berg | 44213b5 | 2008-02-25 16:27:49 +0100 | [diff] [blame] | 787 | * |
| 788 | * Returns the number of removed STA entries. |
| 789 | * |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 790 | * @local: local interface data |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 791 | * @sdata: matching rule for the net device (sta->dev) or %NULL to match all STAs |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 792 | */ |
Johannes Berg | 44213b5 | 2008-02-25 16:27:49 +0100 | [diff] [blame] | 793 | int sta_info_flush(struct ieee80211_local *local, |
Johannes Berg | af8cdcd | 2009-04-19 21:25:43 +0200 | [diff] [blame] | 794 | struct ieee80211_sub_if_data *sdata) |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 795 | { |
| 796 | struct sta_info *sta, *tmp; |
Michael Wu | be8755e | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 797 | LIST_HEAD(tmp_list); |
Johannes Berg | 44213b5 | 2008-02-25 16:27:49 +0100 | [diff] [blame] | 798 | int ret = 0; |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 799 | unsigned long flags; |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 800 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 801 | might_sleep(); |
| 802 | |
| 803 | spin_lock_irqsave(&local->sta_lock, flags); |
| 804 | list_for_each_entry_safe(sta, tmp, &local->sta_list, list) { |
| 805 | if (!sdata || sdata == sta->sdata) { |
| 806 | __sta_info_unlink(&sta); |
Johannes Berg | 44213b5 | 2008-02-25 16:27:49 +0100 | [diff] [blame] | 807 | if (sta) { |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 808 | list_add_tail(&sta->list, &tmp_list); |
Johannes Berg | 44213b5 | 2008-02-25 16:27:49 +0100 | [diff] [blame] | 809 | ret++; |
| 810 | } |
Michael Wu | be8755e | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 811 | } |
Michael Wu | be8755e | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 812 | } |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 813 | spin_unlock_irqrestore(&local->sta_lock, flags); |
| 814 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 815 | list_for_each_entry_safe(sta, tmp, &tmp_list, list) |
| 816 | sta_info_destroy(sta); |
Johannes Berg | 44213b5 | 2008-02-25 16:27:49 +0100 | [diff] [blame] | 817 | |
| 818 | return ret; |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 819 | } |
Johannes Berg | dc6676b | 2008-03-31 19:23:03 +0200 | [diff] [blame] | 820 | |
Johannes Berg | 24723d1 | 2008-09-11 00:01:46 +0200 | [diff] [blame] | 821 | void ieee80211_sta_expire(struct ieee80211_sub_if_data *sdata, |
| 822 | unsigned long exp_time) |
| 823 | { |
| 824 | struct ieee80211_local *local = sdata->local; |
| 825 | struct sta_info *sta, *tmp; |
| 826 | LIST_HEAD(tmp_list); |
Johannes Berg | 24723d1 | 2008-09-11 00:01:46 +0200 | [diff] [blame] | 827 | unsigned long flags; |
| 828 | |
| 829 | spin_lock_irqsave(&local->sta_lock, flags); |
| 830 | list_for_each_entry_safe(sta, tmp, &local->sta_list, list) |
| 831 | if (time_after(jiffies, sta->last_rx + exp_time)) { |
| 832 | #ifdef CONFIG_MAC80211_IBSS_DEBUG |
Johannes Berg | 0c68ae26 | 2008-10-27 15:56:10 -0700 | [diff] [blame] | 833 | printk(KERN_DEBUG "%s: expiring inactive STA %pM\n", |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 834 | sdata->name, sta->sta.addr); |
Johannes Berg | 24723d1 | 2008-09-11 00:01:46 +0200 | [diff] [blame] | 835 | #endif |
| 836 | __sta_info_unlink(&sta); |
| 837 | if (sta) |
| 838 | list_add(&sta->list, &tmp_list); |
| 839 | } |
| 840 | spin_unlock_irqrestore(&local->sta_lock, flags); |
| 841 | |
| 842 | list_for_each_entry_safe(sta, tmp, &tmp_list, list) |
| 843 | sta_info_destroy(sta); |
| 844 | } |
Johannes Berg | 17741cd | 2008-09-11 00:02:02 +0200 | [diff] [blame] | 845 | |
Johannes Berg | 5ed176e | 2009-11-04 14:42:28 +0100 | [diff] [blame] | 846 | struct ieee80211_sta *ieee80211_find_sta_by_hw(struct ieee80211_hw *hw, |
| 847 | const u8 *addr) |
Johannes Berg | 17741cd | 2008-09-11 00:02:02 +0200 | [diff] [blame] | 848 | { |
Johannes Berg | abe6063 | 2009-11-25 17:46:18 +0100 | [diff] [blame] | 849 | struct sta_info *sta, *nxt; |
Johannes Berg | 17741cd | 2008-09-11 00:02:02 +0200 | [diff] [blame] | 850 | |
Johannes Berg | abe6063 | 2009-11-25 17:46:18 +0100 | [diff] [blame] | 851 | /* Just return a random station ... first in list ... */ |
| 852 | for_each_sta_info(hw_to_local(hw), addr, sta, nxt) |
| 853 | return &sta->sta; |
| 854 | return NULL; |
Johannes Berg | 17741cd | 2008-09-11 00:02:02 +0200 | [diff] [blame] | 855 | } |
Johannes Berg | 5ed176e | 2009-11-04 14:42:28 +0100 | [diff] [blame] | 856 | EXPORT_SYMBOL_GPL(ieee80211_find_sta_by_hw); |
| 857 | |
| 858 | struct ieee80211_sta *ieee80211_find_sta(struct ieee80211_vif *vif, |
| 859 | const u8 *addr) |
| 860 | { |
| 861 | struct ieee80211_sub_if_data *sdata; |
| 862 | |
| 863 | if (!vif) |
| 864 | return NULL; |
| 865 | |
| 866 | sdata = vif_to_sdata(vif); |
| 867 | |
| 868 | return ieee80211_find_sta_by_hw(&sdata->local->hw, addr); |
| 869 | } |
Johannes Berg | 17741cd | 2008-09-11 00:02:02 +0200 | [diff] [blame] | 870 | EXPORT_SYMBOL(ieee80211_find_sta); |
Johannes Berg | af81858 | 2009-11-06 11:35:50 +0100 | [diff] [blame] | 871 | |
| 872 | /* powersave support code */ |
| 873 | void ieee80211_sta_ps_deliver_wakeup(struct sta_info *sta) |
| 874 | { |
| 875 | struct ieee80211_sub_if_data *sdata = sta->sdata; |
| 876 | struct ieee80211_local *local = sdata->local; |
| 877 | int sent, buffered; |
| 878 | |
Johannes Berg | 12375ef | 2009-11-25 20:30:31 +0100 | [diff] [blame^] | 879 | drv_sta_notify(local, sdata, STA_NOTIFY_AWAKE, &sta->sta); |
Johannes Berg | af81858 | 2009-11-06 11:35:50 +0100 | [diff] [blame] | 880 | |
| 881 | if (!skb_queue_empty(&sta->ps_tx_buf)) |
| 882 | sta_info_clear_tim_bit(sta); |
| 883 | |
| 884 | /* Send all buffered frames to the station */ |
| 885 | sent = ieee80211_add_pending_skbs(local, &sta->tx_filtered); |
| 886 | buffered = ieee80211_add_pending_skbs(local, &sta->ps_tx_buf); |
| 887 | sent += buffered; |
| 888 | local->total_ps_buffered -= buffered; |
| 889 | |
| 890 | #ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG |
| 891 | printk(KERN_DEBUG "%s: STA %pM aid %d sending %d filtered/%d PS frames " |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 892 | "since STA not sleeping anymore\n", sdata->name, |
Johannes Berg | af81858 | 2009-11-06 11:35:50 +0100 | [diff] [blame] | 893 | sta->sta.addr, sta->sta.aid, sent - buffered, buffered); |
| 894 | #endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */ |
| 895 | } |
| 896 | |
| 897 | void ieee80211_sta_ps_deliver_poll_response(struct sta_info *sta) |
| 898 | { |
| 899 | struct ieee80211_sub_if_data *sdata = sta->sdata; |
| 900 | struct ieee80211_local *local = sdata->local; |
| 901 | struct sk_buff *skb; |
| 902 | int no_pending_pkts; |
| 903 | |
| 904 | skb = skb_dequeue(&sta->tx_filtered); |
| 905 | if (!skb) { |
| 906 | skb = skb_dequeue(&sta->ps_tx_buf); |
| 907 | if (skb) |
| 908 | local->total_ps_buffered--; |
| 909 | } |
| 910 | no_pending_pkts = skb_queue_empty(&sta->tx_filtered) && |
| 911 | skb_queue_empty(&sta->ps_tx_buf); |
| 912 | |
| 913 | if (skb) { |
| 914 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); |
| 915 | struct ieee80211_hdr *hdr = |
| 916 | (struct ieee80211_hdr *) skb->data; |
| 917 | |
| 918 | /* |
| 919 | * Tell TX path to send this frame even though the STA may |
| 920 | * still remain is PS mode after this frame exchange. |
| 921 | */ |
| 922 | info->flags |= IEEE80211_TX_CTL_PSPOLL_RESPONSE; |
| 923 | |
| 924 | #ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG |
| 925 | printk(KERN_DEBUG "STA %pM aid %d: PS Poll (entries after %d)\n", |
| 926 | sta->sta.addr, sta->sta.aid, |
| 927 | skb_queue_len(&sta->ps_tx_buf)); |
| 928 | #endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */ |
| 929 | |
| 930 | /* Use MoreData flag to indicate whether there are more |
| 931 | * buffered frames for this STA */ |
| 932 | if (no_pending_pkts) |
| 933 | hdr->frame_control &= cpu_to_le16(~IEEE80211_FCTL_MOREDATA); |
| 934 | else |
| 935 | hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_MOREDATA); |
| 936 | |
| 937 | ieee80211_add_pending_skb(local, skb); |
| 938 | |
| 939 | if (no_pending_pkts) |
| 940 | sta_info_clear_tim_bit(sta); |
| 941 | #ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG |
| 942 | } else { |
| 943 | /* |
| 944 | * FIXME: This can be the result of a race condition between |
| 945 | * us expiring a frame and the station polling for it. |
| 946 | * Should we send it a null-func frame indicating we |
| 947 | * have nothing buffered for it? |
| 948 | */ |
| 949 | printk(KERN_DEBUG "%s: STA %pM sent PS Poll even " |
| 950 | "though there are no buffered frames for it\n", |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 951 | sdata->name, sta->sta.addr); |
Johannes Berg | af81858 | 2009-11-06 11:35:50 +0100 | [diff] [blame] | 952 | #endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */ |
| 953 | } |
| 954 | } |
| 955 | |
| 956 | void ieee80211_sta_block_awake(struct ieee80211_hw *hw, |
| 957 | struct ieee80211_sta *pubsta, bool block) |
| 958 | { |
| 959 | struct sta_info *sta = container_of(pubsta, struct sta_info, sta); |
| 960 | |
| 961 | if (block) |
| 962 | set_sta_flags(sta, WLAN_STA_PS_DRIVER); |
| 963 | else |
| 964 | ieee80211_queue_work(hw, &sta->drv_unblock_wk); |
| 965 | } |
| 966 | EXPORT_SYMBOL(ieee80211_sta_block_awake); |