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