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" |
| 22 | #include "ieee80211_rate.h" |
| 23 | #include "sta_info.h" |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 24 | #include "debugfs_sta.h" |
Luis Carlos Cobo | ee38585 | 2008-02-23 15:17:11 +0100 | [diff] [blame] | 25 | #include "mesh.h" |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 26 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 27 | /** |
| 28 | * DOC: STA information lifetime rules |
| 29 | * |
| 30 | * STA info structures (&struct sta_info) are managed in a hash table |
| 31 | * for faster lookup and a list for iteration. They are managed using |
| 32 | * RCU, i.e. access to the list and hash table is protected by RCU. |
| 33 | * |
Johannes Berg | 73651ee | 2008-02-25 16:27:47 +0100 | [diff] [blame^] | 34 | * Upon allocating a STA info structure with @sta_info_alloc() or |
| 35 | * mesh_plink_alloc(), the caller owns that structure. It must then either |
| 36 | * destroy it using @sta_info_destroy() (which is pretty useless) or insert |
| 37 | * it into the hash table using @sta_info_insert() which demotes the reference |
| 38 | * from ownership to a regular RCU-protected reference; if the function |
| 39 | * is called without protection by an RCU critical section the reference |
| 40 | * is instantly invalidated. |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 41 | * |
| 42 | * Because there are debugfs entries for each station, and adding those |
| 43 | * must be able to sleep, it is also possible to "pin" a station entry, |
| 44 | * that means it can be removed from the hash table but not be freed. |
| 45 | * See the comment in @__sta_info_unlink() for more information. |
| 46 | * |
| 47 | * In order to remove a STA info structure, the caller needs to first |
| 48 | * unlink it (@sta_info_unlink()) from the list and hash tables and |
| 49 | * then wait for an RCU synchronisation before it can be freed. Due to |
| 50 | * the pinning and the possibility of multiple callers trying to remove |
| 51 | * the same STA info at the same time, @sta_info_unlink() can clear the |
| 52 | * STA info pointer it is passed to indicate that the STA info is owned |
| 53 | * by somebody else now. |
| 54 | * |
| 55 | * If @sta_info_unlink() did not clear the pointer then the caller owns |
| 56 | * the STA info structure now and is responsible of destroying it with |
| 57 | * a call to @sta_info_destroy(), not before RCU synchronisation, of |
| 58 | * course. Note that sta_info_destroy() must be protected by the RTNL. |
| 59 | * |
| 60 | * In all other cases, there is no concept of ownership on a STA entry, |
| 61 | * each structure is owned by the global hash table/list until it is |
| 62 | * removed. All users of the structure need to be RCU protected so that |
| 63 | * the structure won't be freed before they are done using it. |
| 64 | */ |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 65 | |
| 66 | /* Caller must hold local->sta_lock */ |
Michael Wu | be8755e | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 67 | static int sta_info_hash_del(struct ieee80211_local *local, |
| 68 | struct sta_info *sta) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 69 | { |
| 70 | struct sta_info *s; |
| 71 | |
| 72 | s = local->sta_hash[STA_HASH(sta->addr)]; |
| 73 | if (!s) |
Michael Wu | be8755e | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 74 | return -ENOENT; |
| 75 | if (s == sta) { |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 76 | rcu_assign_pointer(local->sta_hash[STA_HASH(sta->addr)], |
| 77 | s->hnext); |
Michael Wu | be8755e | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 78 | return 0; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 79 | } |
| 80 | |
Michael Wu | be8755e | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 81 | while (s->hnext && s->hnext != sta) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 82 | s = s->hnext; |
Michael Wu | be8755e | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 83 | if (s->hnext) { |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 84 | rcu_assign_pointer(s->hnext, sta->hnext); |
Michael Wu | be8755e | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 85 | return 0; |
| 86 | } |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 87 | |
Michael Wu | be8755e | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 88 | return -ENOENT; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 89 | } |
| 90 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 91 | /* protected by RCU */ |
Johannes Berg | 43ba7e9 | 2008-02-21 14:09:30 +0100 | [diff] [blame] | 92 | static struct sta_info *__sta_info_find(struct ieee80211_local *local, |
| 93 | u8 *addr) |
| 94 | { |
| 95 | struct sta_info *sta; |
| 96 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 97 | sta = rcu_dereference(local->sta_hash[STA_HASH(addr)]); |
Johannes Berg | 43ba7e9 | 2008-02-21 14:09:30 +0100 | [diff] [blame] | 98 | while (sta) { |
| 99 | if (compare_ether_addr(sta->addr, addr) == 0) |
| 100 | break; |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 101 | sta = rcu_dereference(sta->hnext); |
Johannes Berg | 43ba7e9 | 2008-02-21 14:09:30 +0100 | [diff] [blame] | 102 | } |
| 103 | return sta; |
| 104 | } |
| 105 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 106 | struct sta_info *sta_info_get(struct ieee80211_local *local, u8 *addr) |
| 107 | { |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 108 | return __sta_info_find(local, addr); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 109 | } |
| 110 | EXPORT_SYMBOL(sta_info_get); |
| 111 | |
Luis Carlos Cobo | ee38585 | 2008-02-23 15:17:11 +0100 | [diff] [blame] | 112 | struct sta_info *sta_info_get_by_idx(struct ieee80211_local *local, int idx, |
| 113 | struct net_device *dev) |
| 114 | { |
| 115 | struct sta_info *sta; |
| 116 | int i = 0; |
| 117 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 118 | list_for_each_entry_rcu(sta, &local->sta_list, list) { |
Luis Carlos Cobo | ee38585 | 2008-02-23 15:17:11 +0100 | [diff] [blame] | 119 | if (i < idx) { |
| 120 | ++i; |
| 121 | continue; |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 122 | } else if (!dev || dev == sta->sdata->dev) { |
Luis Carlos Cobo | ee38585 | 2008-02-23 15:17:11 +0100 | [diff] [blame] | 123 | return sta; |
| 124 | } |
| 125 | } |
Luis Carlos Cobo | ee38585 | 2008-02-23 15:17:11 +0100 | [diff] [blame] | 126 | |
| 127 | return NULL; |
| 128 | } |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 129 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 130 | void sta_info_destroy(struct sta_info *sta) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 131 | { |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 132 | struct ieee80211_local *local = sta->local; |
| 133 | struct sk_buff *skb; |
Ron Rindjunsky | 07db218 | 2007-12-25 17:00:33 +0200 | [diff] [blame] | 134 | int i; |
Johannes Berg | 73651ee | 2008-02-25 16:27:47 +0100 | [diff] [blame^] | 135 | DECLARE_MAC_BUF(mbuf); |
| 136 | |
| 137 | if (!sta) |
| 138 | return; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 139 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 140 | ASSERT_RTNL(); |
| 141 | might_sleep(); |
| 142 | |
| 143 | rate_control_remove_sta_debugfs(sta); |
| 144 | ieee80211_sta_debugfs_remove(sta); |
| 145 | |
| 146 | #ifdef CONFIG_MAC80211_MESH |
| 147 | if (ieee80211_vif_is_mesh(&sta->sdata->vif)) |
| 148 | mesh_plink_deactivate(sta); |
| 149 | #endif |
| 150 | |
| 151 | /* |
| 152 | * NOTE: This will call synchronize_rcu() internally to |
| 153 | * make sure no key references can be in use. We rely on |
| 154 | * that here for the mesh code! |
| 155 | */ |
| 156 | ieee80211_key_free(sta->key); |
| 157 | WARN_ON(sta->key); |
| 158 | |
| 159 | #ifdef CONFIG_MAC80211_MESH |
| 160 | if (ieee80211_vif_is_mesh(&sta->sdata->vif)) |
| 161 | del_timer_sync(&sta->plink_timer); |
| 162 | #endif |
| 163 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 164 | while ((skb = skb_dequeue(&sta->ps_tx_buf)) != NULL) { |
| 165 | local->total_ps_buffered--; |
| 166 | dev_kfree_skb_any(skb); |
| 167 | } |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 168 | |
| 169 | while ((skb = skb_dequeue(&sta->tx_filtered)) != NULL) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 170 | dev_kfree_skb_any(skb); |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 171 | |
Ron Rindjunsky | fe3bf0f | 2008-01-28 14:07:19 +0200 | [diff] [blame] | 172 | for (i = 0; i < STA_TID_NUM; i++) { |
Ron Rindjunsky | 07db218 | 2007-12-25 17:00:33 +0200 | [diff] [blame] | 173 | del_timer_sync(&sta->ampdu_mlme.tid_rx[i].session_timer); |
Ron Rindjunsky | fe3bf0f | 2008-01-28 14:07:19 +0200 | [diff] [blame] | 174 | del_timer_sync(&sta->ampdu_mlme.tid_tx[i].addba_resp_timer); |
| 175 | } |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 176 | rate_control_free_sta(sta->rate_ctrl, sta->rate_ctrl_priv); |
| 177 | rate_control_put(sta->rate_ctrl); |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 178 | |
Johannes Berg | 73651ee | 2008-02-25 16:27:47 +0100 | [diff] [blame^] | 179 | #ifdef CONFIG_MAC80211_VERBOSE_DEBUG |
| 180 | printk(KERN_DEBUG "%s: Destroyed STA %s\n", |
| 181 | wiphy_name(local->hw.wiphy), print_mac(mbuf, sta->addr)); |
| 182 | #endif /* CONFIG_MAC80211_VERBOSE_DEBUG */ |
| 183 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 184 | kfree(sta); |
| 185 | } |
| 186 | |
| 187 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 188 | /* Caller must hold local->sta_lock */ |
| 189 | static void sta_info_hash_add(struct ieee80211_local *local, |
| 190 | struct sta_info *sta) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 191 | { |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 192 | sta->hnext = local->sta_hash[STA_HASH(sta->addr)]; |
| 193 | rcu_assign_pointer(local->sta_hash[STA_HASH(sta->addr)], sta); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 194 | } |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 195 | |
Johannes Berg | 73651ee | 2008-02-25 16:27:47 +0100 | [diff] [blame^] | 196 | struct sta_info *sta_info_alloc(struct ieee80211_sub_if_data *sdata, |
| 197 | u8 *addr, gfp_t gfp) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 198 | { |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 199 | struct ieee80211_local *local = sdata->local; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 200 | struct sta_info *sta; |
Ron Rindjunsky | 16c5f15 | 2007-12-25 17:00:34 +0200 | [diff] [blame] | 201 | int i; |
Johannes Berg | 73651ee | 2008-02-25 16:27:47 +0100 | [diff] [blame^] | 202 | DECLARE_MAC_BUF(mbuf); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 203 | |
Johannes Berg | 73651ee | 2008-02-25 16:27:47 +0100 | [diff] [blame^] | 204 | sta = kzalloc(sizeof(*sta), gfp); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 205 | if (!sta) |
Johannes Berg | 73651ee | 2008-02-25 16:27:47 +0100 | [diff] [blame^] | 206 | return NULL; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 207 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 208 | memcpy(sta->addr, addr, ETH_ALEN); |
| 209 | sta->local = local; |
| 210 | sta->sdata = sdata; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 211 | |
| 212 | sta->rate_ctrl = rate_control_get(local->rate_ctrl); |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 213 | sta->rate_ctrl_priv = rate_control_alloc_sta(sta->rate_ctrl, |
Johannes Berg | 73651ee | 2008-02-25 16:27:47 +0100 | [diff] [blame^] | 214 | gfp); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 215 | if (!sta->rate_ctrl_priv) { |
| 216 | rate_control_put(sta->rate_ctrl); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 217 | kfree(sta); |
Johannes Berg | 73651ee | 2008-02-25 16:27:47 +0100 | [diff] [blame^] | 218 | return NULL; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 219 | } |
| 220 | |
Ron Rindjunsky | 16c5f15 | 2007-12-25 17:00:34 +0200 | [diff] [blame] | 221 | spin_lock_init(&sta->ampdu_mlme.ampdu_rx); |
Ron Rindjunsky | fe3bf0f | 2008-01-28 14:07:19 +0200 | [diff] [blame] | 222 | spin_lock_init(&sta->ampdu_mlme.ampdu_tx); |
Ron Rindjunsky | 16c5f15 | 2007-12-25 17:00:34 +0200 | [diff] [blame] | 223 | for (i = 0; i < STA_TID_NUM; i++) { |
| 224 | /* timer_to_tid must be initialized with identity mapping to |
| 225 | * enable session_timer's data differentiation. refer to |
| 226 | * sta_rx_agg_session_timer_expired for useage */ |
| 227 | sta->timer_to_tid[i] = i; |
Ron Rindjunsky | fe3bf0f | 2008-01-28 14:07:19 +0200 | [diff] [blame] | 228 | /* tid to tx queue: initialize according to HW (0 is valid) */ |
| 229 | sta->tid_to_tx_q[i] = local->hw.queues; |
Ron Rindjunsky | 16c5f15 | 2007-12-25 17:00:34 +0200 | [diff] [blame] | 230 | /* rx timers */ |
| 231 | sta->ampdu_mlme.tid_rx[i].session_timer.function = |
| 232 | sta_rx_agg_session_timer_expired; |
| 233 | sta->ampdu_mlme.tid_rx[i].session_timer.data = |
| 234 | (unsigned long)&sta->timer_to_tid[i]; |
| 235 | init_timer(&sta->ampdu_mlme.tid_rx[i].session_timer); |
Ron Rindjunsky | fe3bf0f | 2008-01-28 14:07:19 +0200 | [diff] [blame] | 236 | /* tx timers */ |
| 237 | sta->ampdu_mlme.tid_tx[i].addba_resp_timer.function = |
| 238 | sta_addba_resp_timer_expired; |
| 239 | sta->ampdu_mlme.tid_tx[i].addba_resp_timer.data = |
| 240 | (unsigned long)&sta->timer_to_tid[i]; |
| 241 | init_timer(&sta->ampdu_mlme.tid_tx[i].addba_resp_timer); |
Ron Rindjunsky | 16c5f15 | 2007-12-25 17:00:34 +0200 | [diff] [blame] | 242 | } |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 243 | skb_queue_head_init(&sta->ps_tx_buf); |
| 244 | skb_queue_head_init(&sta->tx_filtered); |
Johannes Berg | 73651ee | 2008-02-25 16:27:47 +0100 | [diff] [blame^] | 245 | |
| 246 | #ifdef CONFIG_MAC80211_VERBOSE_DEBUG |
| 247 | printk(KERN_DEBUG "%s: Allocated STA %s\n", |
| 248 | wiphy_name(local->hw.wiphy), print_mac(mbuf, sta->addr)); |
| 249 | #endif /* CONFIG_MAC80211_VERBOSE_DEBUG */ |
| 250 | |
| 251 | return sta; |
| 252 | } |
| 253 | |
| 254 | int sta_info_insert(struct sta_info *sta) |
| 255 | { |
| 256 | struct ieee80211_local *local = sta->local; |
| 257 | struct ieee80211_sub_if_data *sdata = sta->sdata; |
| 258 | unsigned long flags; |
| 259 | DECLARE_MAC_BUF(mac); |
| 260 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 261 | spin_lock_irqsave(&local->sta_lock, flags); |
Johannes Berg | 43ba7e9 | 2008-02-21 14:09:30 +0100 | [diff] [blame] | 262 | /* check if STA exists already */ |
Johannes Berg | 73651ee | 2008-02-25 16:27:47 +0100 | [diff] [blame^] | 263 | if (__sta_info_find(local, sta->addr)) { |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 264 | spin_unlock_irqrestore(&local->sta_lock, flags); |
Johannes Berg | 73651ee | 2008-02-25 16:27:47 +0100 | [diff] [blame^] | 265 | return -EEXIST; |
Johannes Berg | 43ba7e9 | 2008-02-21 14:09:30 +0100 | [diff] [blame] | 266 | } |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 267 | list_add(&sta->list, &local->sta_list); |
| 268 | local->num_sta++; |
| 269 | sta_info_hash_add(local, sta); |
Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 270 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 271 | /* notify driver */ |
| 272 | if (local->ops->sta_notify) { |
Johannes Berg | 51fb61e | 2007-12-19 01:31:27 +0100 | [diff] [blame] | 273 | if (sdata->vif.type == IEEE80211_IF_TYPE_VLAN) |
Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 274 | sdata = sdata->u.vlan.ap; |
| 275 | |
| 276 | local->ops->sta_notify(local_to_hw(local), &sdata->vif, |
Johannes Berg | 73651ee | 2008-02-25 16:27:47 +0100 | [diff] [blame^] | 277 | STA_NOTIFY_ADD, sta->addr); |
Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 278 | } |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 279 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 280 | #ifdef CONFIG_MAC80211_VERBOSE_DEBUG |
Johannes Berg | 73651ee | 2008-02-25 16:27:47 +0100 | [diff] [blame^] | 281 | printk(KERN_DEBUG "%s: Inserted STA %s\n", |
| 282 | wiphy_name(local->hw.wiphy), print_mac(mac, sta->addr)); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 283 | #endif /* CONFIG_MAC80211_VERBOSE_DEBUG */ |
| 284 | |
Johannes Berg | 73651ee | 2008-02-25 16:27:47 +0100 | [diff] [blame^] | 285 | spin_unlock_irqrestore(&local->sta_lock, flags); |
| 286 | |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 287 | #ifdef CONFIG_MAC80211_DEBUGFS |
Michael Wu | be8755e | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 288 | /* debugfs entry adding might sleep, so schedule process |
| 289 | * context task for adding entry for STAs that do not yet |
| 290 | * have one. */ |
| 291 | queue_work(local->hw.workqueue, &local->sta_debugfs_add); |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 292 | #endif |
| 293 | |
Johannes Berg | 73651ee | 2008-02-25 16:27:47 +0100 | [diff] [blame^] | 294 | if (ieee80211_vif_is_mesh(&sdata->vif)) |
| 295 | mesh_accept_plinks_update(sdata); |
| 296 | |
| 297 | return 0; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 298 | } |
| 299 | |
Johannes Berg | 004c872 | 2008-02-20 11:21:35 +0100 | [diff] [blame] | 300 | static inline void __bss_tim_set(struct ieee80211_if_ap *bss, u16 aid) |
| 301 | { |
| 302 | /* |
| 303 | * This format has been mandated by the IEEE specifications, |
| 304 | * so this line may not be changed to use the __set_bit() format. |
| 305 | */ |
| 306 | bss->tim[aid / 8] |= (1 << (aid % 8)); |
| 307 | } |
| 308 | |
| 309 | static inline void __bss_tim_clear(struct ieee80211_if_ap *bss, u16 aid) |
| 310 | { |
| 311 | /* |
| 312 | * This format has been mandated by the IEEE specifications, |
| 313 | * so this line may not be changed to use the __clear_bit() format. |
| 314 | */ |
| 315 | bss->tim[aid / 8] &= ~(1 << (aid % 8)); |
| 316 | } |
| 317 | |
| 318 | static void __sta_info_set_tim_bit(struct ieee80211_if_ap *bss, |
| 319 | struct sta_info *sta) |
| 320 | { |
| 321 | if (bss) |
| 322 | __bss_tim_set(bss, sta->aid); |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 323 | if (sta->local->ops->set_tim) { |
| 324 | sta->local->tim_in_locked_section = true; |
Johannes Berg | 004c872 | 2008-02-20 11:21:35 +0100 | [diff] [blame] | 325 | sta->local->ops->set_tim(local_to_hw(sta->local), sta->aid, 1); |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 326 | sta->local->tim_in_locked_section = false; |
| 327 | } |
Johannes Berg | 004c872 | 2008-02-20 11:21:35 +0100 | [diff] [blame] | 328 | } |
| 329 | |
| 330 | void sta_info_set_tim_bit(struct sta_info *sta) |
| 331 | { |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 332 | unsigned long flags; |
Johannes Berg | 004c872 | 2008-02-20 11:21:35 +0100 | [diff] [blame] | 333 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 334 | spin_lock_irqsave(&sta->local->sta_lock, flags); |
| 335 | __sta_info_set_tim_bit(sta->sdata->bss, sta); |
| 336 | spin_unlock_irqrestore(&sta->local->sta_lock, flags); |
Johannes Berg | 004c872 | 2008-02-20 11:21:35 +0100 | [diff] [blame] | 337 | } |
| 338 | |
| 339 | static void __sta_info_clear_tim_bit(struct ieee80211_if_ap *bss, |
| 340 | struct sta_info *sta) |
| 341 | { |
| 342 | if (bss) |
| 343 | __bss_tim_clear(bss, sta->aid); |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 344 | if (sta->local->ops->set_tim) { |
| 345 | sta->local->tim_in_locked_section = true; |
Johannes Berg | 004c872 | 2008-02-20 11:21:35 +0100 | [diff] [blame] | 346 | sta->local->ops->set_tim(local_to_hw(sta->local), sta->aid, 0); |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 347 | sta->local->tim_in_locked_section = false; |
| 348 | } |
Johannes Berg | 004c872 | 2008-02-20 11:21:35 +0100 | [diff] [blame] | 349 | } |
| 350 | |
| 351 | void sta_info_clear_tim_bit(struct sta_info *sta) |
| 352 | { |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 353 | unsigned long flags; |
Johannes Berg | 004c872 | 2008-02-20 11:21:35 +0100 | [diff] [blame] | 354 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 355 | spin_lock_irqsave(&sta->local->sta_lock, flags); |
| 356 | __sta_info_clear_tim_bit(sta->sdata->bss, sta); |
| 357 | spin_unlock_irqrestore(&sta->local->sta_lock, flags); |
Johannes Berg | 004c872 | 2008-02-20 11:21:35 +0100 | [diff] [blame] | 358 | } |
| 359 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 360 | /* |
| 361 | * See comment in __sta_info_unlink, |
| 362 | * caller must hold local->sta_lock. |
| 363 | */ |
| 364 | static void __sta_info_pin(struct sta_info *sta) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 365 | { |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 366 | WARN_ON(sta->pin_status != STA_INFO_PIN_STAT_NORMAL); |
| 367 | sta->pin_status = STA_INFO_PIN_STAT_PINNED; |
| 368 | } |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 369 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 370 | /* |
| 371 | * See comment in __sta_info_unlink, returns sta if it |
| 372 | * needs to be destroyed. |
| 373 | */ |
| 374 | static struct sta_info *__sta_info_unpin(struct sta_info *sta) |
| 375 | { |
| 376 | struct sta_info *ret = NULL; |
| 377 | unsigned long flags; |
| 378 | |
| 379 | spin_lock_irqsave(&sta->local->sta_lock, flags); |
| 380 | WARN_ON(sta->pin_status != STA_INFO_PIN_STAT_DESTROY && |
| 381 | sta->pin_status != STA_INFO_PIN_STAT_PINNED); |
| 382 | if (sta->pin_status == STA_INFO_PIN_STAT_DESTROY) |
| 383 | ret = sta; |
| 384 | sta->pin_status = STA_INFO_PIN_STAT_NORMAL; |
| 385 | spin_unlock_irqrestore(&sta->local->sta_lock, flags); |
| 386 | |
| 387 | return ret; |
| 388 | } |
| 389 | |
| 390 | static void __sta_info_unlink(struct sta_info **sta) |
| 391 | { |
| 392 | struct ieee80211_local *local = (*sta)->local; |
| 393 | struct ieee80211_sub_if_data *sdata = (*sta)->sdata; |
| 394 | #ifdef CONFIG_MAC80211_VERBOSE_DEBUG |
| 395 | DECLARE_MAC_BUF(mbuf); |
| 396 | #endif |
| 397 | /* |
| 398 | * pull caller's reference if we're already gone. |
| 399 | */ |
| 400 | if (sta_info_hash_del(local, *sta)) { |
| 401 | *sta = NULL; |
Michael Wu | be8755e | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 402 | return; |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 403 | } |
Michael Wu | be8755e | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 404 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 405 | /* |
| 406 | * Also pull caller's reference if the STA is pinned by the |
| 407 | * task that is adding the debugfs entries. In that case, we |
| 408 | * leave the STA "to be freed". |
| 409 | * |
| 410 | * The rules are not trivial, but not too complex either: |
| 411 | * (1) pin_status is only modified under the sta_lock |
| 412 | * (2) sta_info_debugfs_add_work() will set the status |
| 413 | * to PINNED when it found an item that needs a new |
| 414 | * debugfs directory created. In that case, that item |
| 415 | * must not be freed although all *RCU* users are done |
| 416 | * with it. Hence, we tell the caller of _unlink() |
| 417 | * that the item is already gone (as can happen when |
| 418 | * two tasks try to unlink/destroy at the same time) |
| 419 | * (3) We set the pin_status to DESTROY here when we |
| 420 | * find such an item. |
| 421 | * (4) sta_info_debugfs_add_work() will reset the pin_status |
| 422 | * from PINNED to NORMAL when it is done with the item, |
| 423 | * but will check for DESTROY before resetting it in |
| 424 | * which case it will free the item. |
| 425 | */ |
| 426 | if ((*sta)->pin_status == STA_INFO_PIN_STAT_PINNED) { |
| 427 | (*sta)->pin_status = STA_INFO_PIN_STAT_DESTROY; |
| 428 | *sta = NULL; |
| 429 | return; |
| 430 | } |
| 431 | |
| 432 | list_del(&(*sta)->list); |
| 433 | |
| 434 | if ((*sta)->flags & WLAN_STA_PS) { |
| 435 | (*sta)->flags &= ~WLAN_STA_PS; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 436 | if (sdata->bss) |
| 437 | atomic_dec(&sdata->bss->num_sta_ps); |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 438 | __sta_info_clear_tim_bit(sdata->bss, *sta); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 439 | } |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 440 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 441 | local->num_sta--; |
Luis Carlos Cobo | ee38585 | 2008-02-23 15:17:11 +0100 | [diff] [blame] | 442 | |
Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 443 | if (local->ops->sta_notify) { |
Johannes Berg | 51fb61e | 2007-12-19 01:31:27 +0100 | [diff] [blame] | 444 | if (sdata->vif.type == IEEE80211_IF_TYPE_VLAN) |
Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 445 | sdata = sdata->u.vlan.ap; |
| 446 | |
| 447 | local->ops->sta_notify(local_to_hw(local), &sdata->vif, |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 448 | STA_NOTIFY_REMOVE, (*sta)->addr); |
Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 449 | } |
Tomas Winkler | 478f8d2 | 2007-09-30 13:52:37 +0200 | [diff] [blame] | 450 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 451 | if (ieee80211_vif_is_mesh(&sdata->vif)) { |
| 452 | mesh_accept_plinks_update(sdata); |
| 453 | #ifdef CONFIG_MAC80211_MESH |
| 454 | del_timer(&(*sta)->plink_timer); |
| 455 | #endif |
| 456 | } |
Michael Wu | be8755e | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 457 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 458 | #ifdef CONFIG_MAC80211_VERBOSE_DEBUG |
| 459 | printk(KERN_DEBUG "%s: Removed STA %s\n", |
| 460 | wiphy_name(local->hw.wiphy), print_mac(mbuf, (*sta)->addr)); |
| 461 | #endif /* CONFIG_MAC80211_VERBOSE_DEBUG */ |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 462 | } |
| 463 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 464 | void sta_info_unlink(struct sta_info **sta) |
| 465 | { |
| 466 | struct ieee80211_local *local = (*sta)->local; |
| 467 | unsigned long flags; |
| 468 | |
| 469 | spin_lock_irqsave(&local->sta_lock, flags); |
| 470 | __sta_info_unlink(sta); |
| 471 | spin_unlock_irqrestore(&local->sta_lock, flags); |
| 472 | } |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 473 | |
| 474 | static inline int sta_info_buffer_expired(struct ieee80211_local *local, |
| 475 | struct sta_info *sta, |
| 476 | struct sk_buff *skb) |
| 477 | { |
| 478 | struct ieee80211_tx_packet_data *pkt_data; |
| 479 | int timeout; |
| 480 | |
| 481 | if (!skb) |
| 482 | return 0; |
| 483 | |
| 484 | pkt_data = (struct ieee80211_tx_packet_data *) skb->cb; |
| 485 | |
| 486 | /* Timeout: (2 * listen_interval * beacon_int * 1024 / 1000000) sec */ |
| 487 | timeout = (sta->listen_interval * local->hw.conf.beacon_int * 32 / |
| 488 | 15625) * HZ; |
| 489 | if (timeout < STA_TX_BUFFER_EXPIRE) |
| 490 | timeout = STA_TX_BUFFER_EXPIRE; |
| 491 | return time_after(jiffies, pkt_data->jiffies + timeout); |
| 492 | } |
| 493 | |
| 494 | |
| 495 | static void sta_info_cleanup_expire_buffered(struct ieee80211_local *local, |
| 496 | struct sta_info *sta) |
| 497 | { |
| 498 | unsigned long flags; |
| 499 | struct sk_buff *skb; |
Johannes Berg | 836341a | 2008-02-20 02:07:21 +0100 | [diff] [blame] | 500 | struct ieee80211_sub_if_data *sdata; |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 501 | DECLARE_MAC_BUF(mac); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 502 | |
| 503 | if (skb_queue_empty(&sta->ps_tx_buf)) |
| 504 | return; |
| 505 | |
| 506 | for (;;) { |
| 507 | spin_lock_irqsave(&sta->ps_tx_buf.lock, flags); |
| 508 | skb = skb_peek(&sta->ps_tx_buf); |
Johannes Berg | 836341a | 2008-02-20 02:07:21 +0100 | [diff] [blame] | 509 | if (sta_info_buffer_expired(local, sta, skb)) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 510 | skb = __skb_dequeue(&sta->ps_tx_buf); |
Johannes Berg | 836341a | 2008-02-20 02:07:21 +0100 | [diff] [blame] | 511 | else |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 512 | skb = NULL; |
| 513 | spin_unlock_irqrestore(&sta->ps_tx_buf.lock, flags); |
| 514 | |
Johannes Berg | 836341a | 2008-02-20 02:07:21 +0100 | [diff] [blame] | 515 | if (!skb) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 516 | break; |
Johannes Berg | 836341a | 2008-02-20 02:07:21 +0100 | [diff] [blame] | 517 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 518 | sdata = sta->sdata; |
Johannes Berg | 836341a | 2008-02-20 02:07:21 +0100 | [diff] [blame] | 519 | local->total_ps_buffered--; |
| 520 | printk(KERN_DEBUG "Buffered frame expired (STA " |
| 521 | "%s)\n", print_mac(mac, sta->addr)); |
| 522 | dev_kfree_skb(skb); |
| 523 | |
Johannes Berg | 004c872 | 2008-02-20 11:21:35 +0100 | [diff] [blame] | 524 | if (skb_queue_empty(&sta->ps_tx_buf)) |
| 525 | sta_info_clear_tim_bit(sta); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 526 | } |
| 527 | } |
| 528 | |
| 529 | |
| 530 | static void sta_info_cleanup(unsigned long data) |
| 531 | { |
| 532 | struct ieee80211_local *local = (struct ieee80211_local *) data; |
| 533 | struct sta_info *sta; |
| 534 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 535 | rcu_read_lock(); |
| 536 | list_for_each_entry_rcu(sta, &local->sta_list, list) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 537 | sta_info_cleanup_expire_buffered(local, sta); |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 538 | rcu_read_unlock(); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 539 | |
Johannes Berg | 0d17440 | 2007-12-17 15:07:43 +0100 | [diff] [blame] | 540 | local->sta_cleanup.expires = |
| 541 | round_jiffies(jiffies + STA_INFO_CLEANUP_INTERVAL); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 542 | add_timer(&local->sta_cleanup); |
| 543 | } |
| 544 | |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 545 | #ifdef CONFIG_MAC80211_DEBUGFS |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 546 | static void sta_info_debugfs_add_work(struct work_struct *work) |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 547 | { |
| 548 | struct ieee80211_local *local = |
| 549 | container_of(work, struct ieee80211_local, sta_debugfs_add); |
| 550 | struct sta_info *sta, *tmp; |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 551 | unsigned long flags; |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 552 | |
| 553 | while (1) { |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 554 | sta = NULL; |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 555 | |
| 556 | spin_lock_irqsave(&local->sta_lock, flags); |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 557 | list_for_each_entry(tmp, &local->sta_list, list) { |
Michael Wu | be8755e | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 558 | if (!tmp->debugfs.dir) { |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 559 | sta = tmp; |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 560 | __sta_info_pin(sta); |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 561 | break; |
| 562 | } |
| 563 | } |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 564 | spin_unlock_irqrestore(&local->sta_lock, flags); |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 565 | |
| 566 | if (!sta) |
| 567 | break; |
| 568 | |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 569 | ieee80211_sta_debugfs_add(sta); |
| 570 | rate_control_add_sta_debugfs(sta); |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 571 | |
| 572 | sta = __sta_info_unpin(sta); |
| 573 | |
| 574 | if (sta) { |
| 575 | synchronize_rcu(); |
| 576 | sta_info_destroy(sta); |
| 577 | } |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 578 | } |
| 579 | } |
| 580 | #endif |
| 581 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 582 | void sta_info_init(struct ieee80211_local *local) |
| 583 | { |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 584 | spin_lock_init(&local->sta_lock); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 585 | INIT_LIST_HEAD(&local->sta_list); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 586 | |
Pavel Emelyanov | b24b8a2 | 2008-01-23 21:20:07 -0800 | [diff] [blame] | 587 | setup_timer(&local->sta_cleanup, sta_info_cleanup, |
| 588 | (unsigned long)local); |
Johannes Berg | 0d17440 | 2007-12-17 15:07:43 +0100 | [diff] [blame] | 589 | local->sta_cleanup.expires = |
| 590 | round_jiffies(jiffies + STA_INFO_CLEANUP_INTERVAL); |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 591 | |
| 592 | #ifdef CONFIG_MAC80211_DEBUGFS |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 593 | INIT_WORK(&local->sta_debugfs_add, sta_info_debugfs_add_work); |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 594 | #endif |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 595 | } |
| 596 | |
| 597 | int sta_info_start(struct ieee80211_local *local) |
| 598 | { |
| 599 | add_timer(&local->sta_cleanup); |
| 600 | return 0; |
| 601 | } |
| 602 | |
| 603 | void sta_info_stop(struct ieee80211_local *local) |
| 604 | { |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 605 | del_timer(&local->sta_cleanup); |
Michael Wu | be8755e | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 606 | sta_info_flush(local, NULL); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 607 | } |
| 608 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 609 | /** |
| 610 | * sta_info_flush - flush matching STA entries from the STA table |
| 611 | * @local: local interface data |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 612 | * @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] | 613 | */ |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 614 | void sta_info_flush(struct ieee80211_local *local, |
| 615 | struct ieee80211_sub_if_data *sdata) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 616 | { |
| 617 | struct sta_info *sta, *tmp; |
Michael Wu | be8755e | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 618 | LIST_HEAD(tmp_list); |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 619 | unsigned long flags; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 620 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 621 | might_sleep(); |
| 622 | |
| 623 | spin_lock_irqsave(&local->sta_lock, flags); |
| 624 | list_for_each_entry_safe(sta, tmp, &local->sta_list, list) { |
| 625 | if (!sdata || sdata == sta->sdata) { |
| 626 | __sta_info_unlink(&sta); |
| 627 | if (sta) |
| 628 | list_add_tail(&sta->list, &tmp_list); |
Michael Wu | be8755e | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 629 | } |
Michael Wu | be8755e | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 630 | } |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 631 | spin_unlock_irqrestore(&local->sta_lock, flags); |
| 632 | |
| 633 | synchronize_rcu(); |
| 634 | |
| 635 | list_for_each_entry_safe(sta, tmp, &tmp_list, list) |
| 636 | sta_info_destroy(sta); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 637 | } |