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