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