blob: 2a5a2f067bae044815cd5c1e91152b7b516261fe [file] [log] [blame]
Jiri Bencf0706e82007-05-05 11:45:53 -07001/*
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 Berg0d174402007-12-17 15:07:43 +010017#include <linux/timer.h>
Johannes Bergd0709a62008-02-25 16:27:46 +010018#include <linux/rtnetlink.h>
Jiri Bencf0706e82007-05-05 11:45:53 -070019
20#include <net/mac80211.h>
21#include "ieee80211_i.h"
22#include "ieee80211_rate.h"
23#include "sta_info.h"
Jiri Bence9f207f2007-05-05 11:46:38 -070024#include "debugfs_sta.h"
Luis Carlos Coboee385852008-02-23 15:17:11 +010025#include "mesh.h"
Jiri Bencf0706e82007-05-05 11:45:53 -070026
Johannes Bergd0709a62008-02-25 16:27:46 +010027/**
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 Berg03e44972008-02-27 09:56:40 +010034 * 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 Bergd0709a62008-02-25 16:27:46 +010040 *
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 Bergdbbea672008-02-26 14:34:06 +010044 * See the comment in __sta_info_unlink() for more information.
Johannes Bergd0709a62008-02-25 16:27:46 +010045 *
46 * In order to remove a STA info structure, the caller needs to first
Johannes Bergdbbea672008-02-26 14:34:06 +010047 * unlink it (sta_info_unlink()) from the list and hash tables and
Johannes Bergd0709a62008-02-25 16:27:46 +010048 * 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 Bergdbbea672008-02-26 14:34:06 +010050 * the same STA info at the same time, sta_info_unlink() can clear the
Johannes Bergd0709a62008-02-25 16:27:46 +010051 * STA info pointer it is passed to indicate that the STA info is owned
52 * by somebody else now.
53 *
Johannes Bergdbbea672008-02-26 14:34:06 +010054 * If sta_info_unlink() did not clear the pointer then the caller owns
Johannes Bergd0709a62008-02-25 16:27:46 +010055 * the STA info structure now and is responsible of destroying it with
Johannes Bergdbbea672008-02-26 14:34:06 +010056 * a call to sta_info_destroy(), not before RCU synchronisation, of
Johannes Bergd0709a62008-02-25 16:27:46 +010057 * 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 Bencf0706e82007-05-05 11:45:53 -070064
65/* Caller must hold local->sta_lock */
Michael Wube8755e2007-07-27 15:43:23 +020066static int sta_info_hash_del(struct ieee80211_local *local,
67 struct sta_info *sta)
Jiri Bencf0706e82007-05-05 11:45:53 -070068{
69 struct sta_info *s;
70
71 s = local->sta_hash[STA_HASH(sta->addr)];
72 if (!s)
Michael Wube8755e2007-07-27 15:43:23 +020073 return -ENOENT;
74 if (s == sta) {
Johannes Bergd0709a62008-02-25 16:27:46 +010075 rcu_assign_pointer(local->sta_hash[STA_HASH(sta->addr)],
76 s->hnext);
Michael Wube8755e2007-07-27 15:43:23 +020077 return 0;
Jiri Bencf0706e82007-05-05 11:45:53 -070078 }
79
Michael Wube8755e2007-07-27 15:43:23 +020080 while (s->hnext && s->hnext != sta)
Jiri Bencf0706e82007-05-05 11:45:53 -070081 s = s->hnext;
Michael Wube8755e2007-07-27 15:43:23 +020082 if (s->hnext) {
Johannes Bergd0709a62008-02-25 16:27:46 +010083 rcu_assign_pointer(s->hnext, sta->hnext);
Michael Wube8755e2007-07-27 15:43:23 +020084 return 0;
85 }
Jiri Bencf0706e82007-05-05 11:45:53 -070086
Michael Wube8755e2007-07-27 15:43:23 +020087 return -ENOENT;
Jiri Bencf0706e82007-05-05 11:45:53 -070088}
89
Johannes Bergd0709a62008-02-25 16:27:46 +010090/* protected by RCU */
Johannes Berg43ba7e92008-02-21 14:09:30 +010091static struct sta_info *__sta_info_find(struct ieee80211_local *local,
92 u8 *addr)
93{
94 struct sta_info *sta;
95
Johannes Bergd0709a62008-02-25 16:27:46 +010096 sta = rcu_dereference(local->sta_hash[STA_HASH(addr)]);
Johannes Berg43ba7e92008-02-21 14:09:30 +010097 while (sta) {
98 if (compare_ether_addr(sta->addr, addr) == 0)
99 break;
Johannes Bergd0709a62008-02-25 16:27:46 +0100100 sta = rcu_dereference(sta->hnext);
Johannes Berg43ba7e92008-02-21 14:09:30 +0100101 }
102 return sta;
103}
104
Jiri Bencf0706e82007-05-05 11:45:53 -0700105struct sta_info *sta_info_get(struct ieee80211_local *local, u8 *addr)
106{
Johannes Bergd0709a62008-02-25 16:27:46 +0100107 return __sta_info_find(local, addr);
Jiri Bencf0706e82007-05-05 11:45:53 -0700108}
109EXPORT_SYMBOL(sta_info_get);
110
Luis Carlos Coboee385852008-02-23 15:17:11 +0100111struct 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 Bergd0709a62008-02-25 16:27:46 +0100117 list_for_each_entry_rcu(sta, &local->sta_list, list) {
Luis Carlos Cobo2a8ca292008-02-29 17:51:25 -0800118 if (dev && dev != sta->sdata->dev)
119 continue;
Luis Carlos Coboee385852008-02-23 15:17:11 +0100120 if (i < idx) {
121 ++i;
122 continue;
Luis Carlos Coboee385852008-02-23 15:17:11 +0100123 }
Luis Carlos Cobo2a8ca292008-02-29 17:51:25 -0800124 return sta;
Luis Carlos Coboee385852008-02-23 15:17:11 +0100125 }
Luis Carlos Coboee385852008-02-23 15:17:11 +0100126
127 return NULL;
128}
Jiri Bencf0706e82007-05-05 11:45:53 -0700129
Johannes Bergd0709a62008-02-25 16:27:46 +0100130void sta_info_destroy(struct sta_info *sta)
Jiri Bencf0706e82007-05-05 11:45:53 -0700131{
Johannes Berg97bff8e2008-03-31 19:23:00 +0200132 struct ieee80211_local *local;
Jiri Bencf0706e82007-05-05 11:45:53 -0700133 struct sk_buff *skb;
Ron Rindjunsky07db2182007-12-25 17:00:33 +0200134 int i;
Johannes Berg73651ee2008-02-25 16:27:47 +0100135 DECLARE_MAC_BUF(mbuf);
136
Johannes Berg97bff8e2008-03-31 19:23:00 +0200137 ASSERT_RTNL();
138 might_sleep();
139
Johannes Berg73651ee2008-02-25 16:27:47 +0100140 if (!sta)
141 return;
Jiri Bencf0706e82007-05-05 11:45:53 -0700142
Johannes Berg97bff8e2008-03-31 19:23:00 +0200143 local = sta->local;
Johannes Bergd0709a62008-02-25 16:27:46 +0100144
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 Bencf0706e82007-05-05 11:45:53 -0700166 while ((skb = skb_dequeue(&sta->ps_tx_buf)) != NULL) {
167 local->total_ps_buffered--;
168 dev_kfree_skb_any(skb);
169 }
Johannes Bergd0709a62008-02-25 16:27:46 +0100170
171 while ((skb = skb_dequeue(&sta->tx_filtered)) != NULL)
Jiri Bencf0706e82007-05-05 11:45:53 -0700172 dev_kfree_skb_any(skb);
Johannes Bergd0709a62008-02-25 16:27:46 +0100173
Ron Rindjunskyfe3bf0f2008-01-28 14:07:19 +0200174 for (i = 0; i < STA_TID_NUM; i++) {
Ron Rindjunskycee24a32008-03-26 20:36:03 +0200175 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 Rindjunskyfe3bf0f2008-01-28 14:07:19 +0200183 }
Ron Rindjunskycee24a32008-03-26 20:36:03 +0200184
Jiri Bencf0706e82007-05-05 11:45:53 -0700185 rate_control_free_sta(sta->rate_ctrl, sta->rate_ctrl_priv);
186 rate_control_put(sta->rate_ctrl);
Johannes Bergd0709a62008-02-25 16:27:46 +0100187
Johannes Berg73651ee2008-02-25 16:27:47 +0100188#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 Bencf0706e82007-05-05 11:45:53 -0700193 kfree(sta);
194}
195
196
Johannes Bergd0709a62008-02-25 16:27:46 +0100197/* Caller must hold local->sta_lock */
198static void sta_info_hash_add(struct ieee80211_local *local,
199 struct sta_info *sta)
Jiri Bencf0706e82007-05-05 11:45:53 -0700200{
Johannes Bergd0709a62008-02-25 16:27:46 +0100201 sta->hnext = local->sta_hash[STA_HASH(sta->addr)];
202 rcu_assign_pointer(local->sta_hash[STA_HASH(sta->addr)], sta);
Jiri Bencf0706e82007-05-05 11:45:53 -0700203}
Jiri Bencf0706e82007-05-05 11:45:53 -0700204
Johannes Berg73651ee2008-02-25 16:27:47 +0100205struct sta_info *sta_info_alloc(struct ieee80211_sub_if_data *sdata,
206 u8 *addr, gfp_t gfp)
Jiri Bencf0706e82007-05-05 11:45:53 -0700207{
Johannes Bergd0709a62008-02-25 16:27:46 +0100208 struct ieee80211_local *local = sdata->local;
Jiri Bencf0706e82007-05-05 11:45:53 -0700209 struct sta_info *sta;
Ron Rindjunsky16c5f152007-12-25 17:00:34 +0200210 int i;
Johannes Berg73651ee2008-02-25 16:27:47 +0100211 DECLARE_MAC_BUF(mbuf);
Jiri Bencf0706e82007-05-05 11:45:53 -0700212
Johannes Berg73651ee2008-02-25 16:27:47 +0100213 sta = kzalloc(sizeof(*sta), gfp);
Jiri Bencf0706e82007-05-05 11:45:53 -0700214 if (!sta)
Johannes Berg73651ee2008-02-25 16:27:47 +0100215 return NULL;
Jiri Bencf0706e82007-05-05 11:45:53 -0700216
Johannes Bergd0709a62008-02-25 16:27:46 +0100217 memcpy(sta->addr, addr, ETH_ALEN);
218 sta->local = local;
219 sta->sdata = sdata;
Jiri Bencf0706e82007-05-05 11:45:53 -0700220
221 sta->rate_ctrl = rate_control_get(local->rate_ctrl);
Johannes Bergd0709a62008-02-25 16:27:46 +0100222 sta->rate_ctrl_priv = rate_control_alloc_sta(sta->rate_ctrl,
Johannes Berg73651ee2008-02-25 16:27:47 +0100223 gfp);
Jiri Bencf0706e82007-05-05 11:45:53 -0700224 if (!sta->rate_ctrl_priv) {
225 rate_control_put(sta->rate_ctrl);
Jiri Bencf0706e82007-05-05 11:45:53 -0700226 kfree(sta);
Johannes Berg73651ee2008-02-25 16:27:47 +0100227 return NULL;
Jiri Bencf0706e82007-05-05 11:45:53 -0700228 }
229
Ron Rindjunsky16c5f152007-12-25 17:00:34 +0200230 spin_lock_init(&sta->ampdu_mlme.ampdu_rx);
Ron Rindjunskyfe3bf0f2008-01-28 14:07:19 +0200231 spin_lock_init(&sta->ampdu_mlme.ampdu_tx);
Ron Rindjunsky16c5f152007-12-25 17:00:34 +0200232 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 Rindjunskyfe3bf0f2008-01-28 14:07:19 +0200237 /* tid to tx queue: initialize according to HW (0 is valid) */
238 sta->tid_to_tx_q[i] = local->hw.queues;
Ron Rindjunskycee24a32008-03-26 20:36:03 +0200239 /* 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 Rindjunsky16c5f152007-12-25 17:00:34 +0200246 }
Jiri Bencf0706e82007-05-05 11:45:53 -0700247 skb_queue_head_init(&sta->ps_tx_buf);
248 skb_queue_head_init(&sta->tx_filtered);
Johannes Berg73651ee2008-02-25 16:27:47 +0100249
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 Berg03e44972008-02-27 09:56:40 +0100255#ifdef CONFIG_MAC80211_MESH
Luis Carlos Cobob4e08ea2008-02-29 15:46:08 -0800256 sta->plink_state = PLINK_LISTEN;
Johannes Berg03e44972008-02-27 09:56:40 +0100257 spin_lock_init(&sta->plink_lock);
258 init_timer(&sta->plink_timer);
259#endif
260
Johannes Berg73651ee2008-02-25 16:27:47 +0100261 return sta;
262}
263
264int 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 Berg03e44972008-02-27 09:56:40 +0100271 /*
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 Berg44213b52008-02-25 16:27:49 +0100284
Johannes Bergd0709a62008-02-25 16:27:46 +0100285 spin_lock_irqsave(&local->sta_lock, flags);
Johannes Berg43ba7e92008-02-21 14:09:30 +0100286 /* check if STA exists already */
Johannes Berg73651ee2008-02-25 16:27:47 +0100287 if (__sta_info_find(local, sta->addr)) {
Johannes Bergd0709a62008-02-25 16:27:46 +0100288 spin_unlock_irqrestore(&local->sta_lock, flags);
Johannes Berg73651ee2008-02-25 16:27:47 +0100289 return -EEXIST;
Johannes Berg43ba7e92008-02-21 14:09:30 +0100290 }
Jiri Bencf0706e82007-05-05 11:45:53 -0700291 list_add(&sta->list, &local->sta_list);
292 local->num_sta++;
293 sta_info_hash_add(local, sta);
Johannes Berg32bfd352007-12-19 01:31:26 +0100294
Johannes Bergd0709a62008-02-25 16:27:46 +0100295 /* notify driver */
296 if (local->ops->sta_notify) {
Johannes Berg51fb61e2007-12-19 01:31:27 +0100297 if (sdata->vif.type == IEEE80211_IF_TYPE_VLAN)
Johannes Berg32bfd352007-12-19 01:31:26 +0100298 sdata = sdata->u.vlan.ap;
299
300 local->ops->sta_notify(local_to_hw(local), &sdata->vif,
Johannes Berg73651ee2008-02-25 16:27:47 +0100301 STA_NOTIFY_ADD, sta->addr);
Johannes Berg32bfd352007-12-19 01:31:26 +0100302 }
Johannes Bergd0709a62008-02-25 16:27:46 +0100303
Jiri Bencf0706e82007-05-05 11:45:53 -0700304#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Johannes Berg73651ee2008-02-25 16:27:47 +0100305 printk(KERN_DEBUG "%s: Inserted STA %s\n",
306 wiphy_name(local->hw.wiphy), print_mac(mac, sta->addr));
Jiri Bencf0706e82007-05-05 11:45:53 -0700307#endif /* CONFIG_MAC80211_VERBOSE_DEBUG */
308
Johannes Berg73651ee2008-02-25 16:27:47 +0100309 spin_unlock_irqrestore(&local->sta_lock, flags);
310
Jiri Bence9f207f2007-05-05 11:46:38 -0700311#ifdef CONFIG_MAC80211_DEBUGFS
Michael Wube8755e2007-07-27 15:43:23 +0200312 /* 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 Bence9f207f2007-05-05 11:46:38 -0700316#endif
317
Johannes Berg73651ee2008-02-25 16:27:47 +0100318 if (ieee80211_vif_is_mesh(&sdata->vif))
319 mesh_accept_plinks_update(sdata);
320
321 return 0;
Jiri Bencf0706e82007-05-05 11:45:53 -0700322}
323
Johannes Berg004c8722008-02-20 11:21:35 +0100324static 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
333static 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
342static 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 Bergd0709a62008-02-25 16:27:46 +0100347 if (sta->local->ops->set_tim) {
348 sta->local->tim_in_locked_section = true;
Johannes Berg004c8722008-02-20 11:21:35 +0100349 sta->local->ops->set_tim(local_to_hw(sta->local), sta->aid, 1);
Johannes Bergd0709a62008-02-25 16:27:46 +0100350 sta->local->tim_in_locked_section = false;
351 }
Johannes Berg004c8722008-02-20 11:21:35 +0100352}
353
354void sta_info_set_tim_bit(struct sta_info *sta)
355{
Johannes Bergd0709a62008-02-25 16:27:46 +0100356 unsigned long flags;
Johannes Berg004c8722008-02-20 11:21:35 +0100357
Johannes Bergd0709a62008-02-25 16:27:46 +0100358 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 Berg004c8722008-02-20 11:21:35 +0100361}
362
363static 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 Bergd0709a62008-02-25 16:27:46 +0100368 if (sta->local->ops->set_tim) {
369 sta->local->tim_in_locked_section = true;
Johannes Berg004c8722008-02-20 11:21:35 +0100370 sta->local->ops->set_tim(local_to_hw(sta->local), sta->aid, 0);
Johannes Bergd0709a62008-02-25 16:27:46 +0100371 sta->local->tim_in_locked_section = false;
372 }
Johannes Berg004c8722008-02-20 11:21:35 +0100373}
374
375void sta_info_clear_tim_bit(struct sta_info *sta)
376{
Johannes Bergd0709a62008-02-25 16:27:46 +0100377 unsigned long flags;
Johannes Berg004c8722008-02-20 11:21:35 +0100378
Johannes Bergd0709a62008-02-25 16:27:46 +0100379 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 Berg004c8722008-02-20 11:21:35 +0100382}
383
Johannes Bergd0709a62008-02-25 16:27:46 +0100384/*
385 * See comment in __sta_info_unlink,
386 * caller must hold local->sta_lock.
387 */
388static void __sta_info_pin(struct sta_info *sta)
Jiri Bencf0706e82007-05-05 11:45:53 -0700389{
Johannes Bergd0709a62008-02-25 16:27:46 +0100390 WARN_ON(sta->pin_status != STA_INFO_PIN_STAT_NORMAL);
391 sta->pin_status = STA_INFO_PIN_STAT_PINNED;
392}
Jiri Bencf0706e82007-05-05 11:45:53 -0700393
Johannes Bergd0709a62008-02-25 16:27:46 +0100394/*
395 * See comment in __sta_info_unlink, returns sta if it
396 * needs to be destroyed.
397 */
398static 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
414static 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 Wube8755e2007-07-27 15:43:23 +0200426 return;
Johannes Bergd0709a62008-02-25 16:27:46 +0100427 }
Michael Wube8755e2007-07-27 15:43:23 +0200428
Johannes Bergd0709a62008-02-25 16:27:46 +0100429 /*
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 Bencf0706e82007-05-05 11:45:53 -0700460 if (sdata->bss)
461 atomic_dec(&sdata->bss->num_sta_ps);
Johannes Bergd0709a62008-02-25 16:27:46 +0100462 __sta_info_clear_tim_bit(sdata->bss, *sta);
Jiri Bencf0706e82007-05-05 11:45:53 -0700463 }
Johannes Bergd0709a62008-02-25 16:27:46 +0100464
Jiri Bencf0706e82007-05-05 11:45:53 -0700465 local->num_sta--;
Luis Carlos Coboee385852008-02-23 15:17:11 +0100466
Johannes Berg32bfd352007-12-19 01:31:26 +0100467 if (local->ops->sta_notify) {
Johannes Berg51fb61e2007-12-19 01:31:27 +0100468 if (sdata->vif.type == IEEE80211_IF_TYPE_VLAN)
Johannes Berg32bfd352007-12-19 01:31:26 +0100469 sdata = sdata->u.vlan.ap;
470
471 local->ops->sta_notify(local_to_hw(local), &sdata->vif,
Johannes Bergd0709a62008-02-25 16:27:46 +0100472 STA_NOTIFY_REMOVE, (*sta)->addr);
Johannes Berg32bfd352007-12-19 01:31:26 +0100473 }
Tomas Winkler478f8d22007-09-30 13:52:37 +0200474
Johannes Bergd0709a62008-02-25 16:27:46 +0100475 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 Wube8755e2007-07-27 15:43:23 +0200481
Johannes Bergd0709a62008-02-25 16:27:46 +0100482#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 Bencf0706e82007-05-05 11:45:53 -0700486}
487
Johannes Bergd0709a62008-02-25 16:27:46 +0100488void 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 Bencf0706e82007-05-05 11:45:53 -0700497
498static 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
519static 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 Berg836341a2008-02-20 02:07:21 +0100524 struct ieee80211_sub_if_data *sdata;
Joe Perches0795af52007-10-03 17:59:30 -0700525 DECLARE_MAC_BUF(mac);
Jiri Bencf0706e82007-05-05 11:45:53 -0700526
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 Berg836341a2008-02-20 02:07:21 +0100533 if (sta_info_buffer_expired(local, sta, skb))
Jiri Bencf0706e82007-05-05 11:45:53 -0700534 skb = __skb_dequeue(&sta->ps_tx_buf);
Johannes Berg836341a2008-02-20 02:07:21 +0100535 else
Jiri Bencf0706e82007-05-05 11:45:53 -0700536 skb = NULL;
537 spin_unlock_irqrestore(&sta->ps_tx_buf.lock, flags);
538
Johannes Berg836341a2008-02-20 02:07:21 +0100539 if (!skb)
Jiri Bencf0706e82007-05-05 11:45:53 -0700540 break;
Johannes Berg836341a2008-02-20 02:07:21 +0100541
Johannes Bergd0709a62008-02-25 16:27:46 +0100542 sdata = sta->sdata;
Johannes Berg836341a2008-02-20 02:07:21 +0100543 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 Berg004c8722008-02-20 11:21:35 +0100548 if (skb_queue_empty(&sta->ps_tx_buf))
549 sta_info_clear_tim_bit(sta);
Jiri Bencf0706e82007-05-05 11:45:53 -0700550 }
551}
552
553
554static void sta_info_cleanup(unsigned long data)
555{
556 struct ieee80211_local *local = (struct ieee80211_local *) data;
557 struct sta_info *sta;
558
Johannes Bergd0709a62008-02-25 16:27:46 +0100559 rcu_read_lock();
560 list_for_each_entry_rcu(sta, &local->sta_list, list)
Jiri Bencf0706e82007-05-05 11:45:53 -0700561 sta_info_cleanup_expire_buffered(local, sta);
Johannes Bergd0709a62008-02-25 16:27:46 +0100562 rcu_read_unlock();
Jiri Bencf0706e82007-05-05 11:45:53 -0700563
Johannes Berg0d174402007-12-17 15:07:43 +0100564 local->sta_cleanup.expires =
565 round_jiffies(jiffies + STA_INFO_CLEANUP_INTERVAL);
Jiri Bencf0706e82007-05-05 11:45:53 -0700566 add_timer(&local->sta_cleanup);
567}
568
Jiri Bence9f207f2007-05-05 11:46:38 -0700569#ifdef CONFIG_MAC80211_DEBUGFS
Johannes Bergd0709a62008-02-25 16:27:46 +0100570static void sta_info_debugfs_add_work(struct work_struct *work)
Jiri Bence9f207f2007-05-05 11:46:38 -0700571{
572 struct ieee80211_local *local =
573 container_of(work, struct ieee80211_local, sta_debugfs_add);
574 struct sta_info *sta, *tmp;
Johannes Bergd0709a62008-02-25 16:27:46 +0100575 unsigned long flags;
Jiri Bence9f207f2007-05-05 11:46:38 -0700576
577 while (1) {
Jiri Bence9f207f2007-05-05 11:46:38 -0700578 sta = NULL;
Johannes Bergd0709a62008-02-25 16:27:46 +0100579
580 spin_lock_irqsave(&local->sta_lock, flags);
Jiri Bence9f207f2007-05-05 11:46:38 -0700581 list_for_each_entry(tmp, &local->sta_list, list) {
Michael Wube8755e2007-07-27 15:43:23 +0200582 if (!tmp->debugfs.dir) {
Jiri Bence9f207f2007-05-05 11:46:38 -0700583 sta = tmp;
Johannes Bergd0709a62008-02-25 16:27:46 +0100584 __sta_info_pin(sta);
Jiri Bence9f207f2007-05-05 11:46:38 -0700585 break;
586 }
587 }
Johannes Bergd0709a62008-02-25 16:27:46 +0100588 spin_unlock_irqrestore(&local->sta_lock, flags);
Jiri Bence9f207f2007-05-05 11:46:38 -0700589
590 if (!sta)
591 break;
592
Jiri Bence9f207f2007-05-05 11:46:38 -0700593 ieee80211_sta_debugfs_add(sta);
594 rate_control_add_sta_debugfs(sta);
Johannes Bergd0709a62008-02-25 16:27:46 +0100595
596 sta = __sta_info_unpin(sta);
597
598 if (sta) {
599 synchronize_rcu();
600 sta_info_destroy(sta);
601 }
Jiri Bence9f207f2007-05-05 11:46:38 -0700602 }
603}
604#endif
605
Jiri Bencf0706e82007-05-05 11:45:53 -0700606void sta_info_init(struct ieee80211_local *local)
607{
Johannes Bergd0709a62008-02-25 16:27:46 +0100608 spin_lock_init(&local->sta_lock);
Jiri Bencf0706e82007-05-05 11:45:53 -0700609 INIT_LIST_HEAD(&local->sta_list);
Jiri Bencf0706e82007-05-05 11:45:53 -0700610
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -0800611 setup_timer(&local->sta_cleanup, sta_info_cleanup,
612 (unsigned long)local);
Johannes Berg0d174402007-12-17 15:07:43 +0100613 local->sta_cleanup.expires =
614 round_jiffies(jiffies + STA_INFO_CLEANUP_INTERVAL);
Jiri Bence9f207f2007-05-05 11:46:38 -0700615
616#ifdef CONFIG_MAC80211_DEBUGFS
Johannes Bergd0709a62008-02-25 16:27:46 +0100617 INIT_WORK(&local->sta_debugfs_add, sta_info_debugfs_add_work);
Jiri Bence9f207f2007-05-05 11:46:38 -0700618#endif
Jiri Bencf0706e82007-05-05 11:45:53 -0700619}
620
621int sta_info_start(struct ieee80211_local *local)
622{
623 add_timer(&local->sta_cleanup);
624 return 0;
625}
626
627void sta_info_stop(struct ieee80211_local *local)
628{
Jiri Bencf0706e82007-05-05 11:45:53 -0700629 del_timer(&local->sta_cleanup);
Michael Wube8755e2007-07-27 15:43:23 +0200630 sta_info_flush(local, NULL);
Jiri Bencf0706e82007-05-05 11:45:53 -0700631}
632
Jiri Bencf0706e82007-05-05 11:45:53 -0700633/**
634 * sta_info_flush - flush matching STA entries from the STA table
Johannes Berg44213b52008-02-25 16:27:49 +0100635 *
636 * Returns the number of removed STA entries.
637 *
Jiri Bencf0706e82007-05-05 11:45:53 -0700638 * @local: local interface data
Johannes Bergd0709a62008-02-25 16:27:46 +0100639 * @sdata: matching rule for the net device (sta->dev) or %NULL to match all STAs
Jiri Bencf0706e82007-05-05 11:45:53 -0700640 */
Johannes Berg44213b52008-02-25 16:27:49 +0100641int sta_info_flush(struct ieee80211_local *local,
Johannes Bergd0709a62008-02-25 16:27:46 +0100642 struct ieee80211_sub_if_data *sdata)
Jiri Bencf0706e82007-05-05 11:45:53 -0700643{
644 struct sta_info *sta, *tmp;
Michael Wube8755e2007-07-27 15:43:23 +0200645 LIST_HEAD(tmp_list);
Johannes Berg44213b52008-02-25 16:27:49 +0100646 int ret = 0;
Johannes Bergd0709a62008-02-25 16:27:46 +0100647 unsigned long flags;
Jiri Bencf0706e82007-05-05 11:45:53 -0700648
Johannes Bergd0709a62008-02-25 16:27:46 +0100649 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 Berg44213b52008-02-25 16:27:49 +0100655 if (sta) {
Johannes Bergd0709a62008-02-25 16:27:46 +0100656 list_add_tail(&sta->list, &tmp_list);
Johannes Berg44213b52008-02-25 16:27:49 +0100657 ret++;
658 }
Michael Wube8755e2007-07-27 15:43:23 +0200659 }
Michael Wube8755e2007-07-27 15:43:23 +0200660 }
Johannes Bergd0709a62008-02-25 16:27:46 +0100661 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 Berg44213b52008-02-25 16:27:49 +0100667
668 return ret;
Jiri Bencf0706e82007-05-05 11:45:53 -0700669}