blob: a767042ec4fd19130575cd3a32ff83e0c3053424 [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 Berg73651ee2008-02-25 16:27:47 +010034 * Upon allocating a STA info structure with @sta_info_alloc() or
35 * mesh_plink_alloc(), the caller owns that structure. It must then either
36 * destroy it using @sta_info_destroy() (which is pretty useless) or insert
37 * it into the hash table using @sta_info_insert() which demotes the reference
38 * from ownership to a regular RCU-protected reference; if the function
39 * is called without protection by an RCU critical section the reference
40 * is instantly invalidated.
Johannes Bergd0709a62008-02-25 16:27:46 +010041 *
42 * Because there are debugfs entries for each station, and adding those
43 * must be able to sleep, it is also possible to "pin" a station entry,
44 * that means it can be removed from the hash table but not be freed.
45 * See the comment in @__sta_info_unlink() for more information.
46 *
47 * In order to remove a STA info structure, the caller needs to first
48 * unlink it (@sta_info_unlink()) from the list and hash tables and
49 * then wait for an RCU synchronisation before it can be freed. Due to
50 * the pinning and the possibility of multiple callers trying to remove
51 * the same STA info at the same time, @sta_info_unlink() can clear the
52 * STA info pointer it is passed to indicate that the STA info is owned
53 * by somebody else now.
54 *
55 * If @sta_info_unlink() did not clear the pointer then the caller owns
56 * the STA info structure now and is responsible of destroying it with
57 * a call to @sta_info_destroy(), not before RCU synchronisation, of
58 * course. Note that sta_info_destroy() must be protected by the RTNL.
59 *
60 * In all other cases, there is no concept of ownership on a STA entry,
61 * each structure is owned by the global hash table/list until it is
62 * removed. All users of the structure need to be RCU protected so that
63 * the structure won't be freed before they are done using it.
64 */
Jiri Bencf0706e82007-05-05 11:45:53 -070065
66/* Caller must hold local->sta_lock */
Michael Wube8755e2007-07-27 15:43:23 +020067static int sta_info_hash_del(struct ieee80211_local *local,
68 struct sta_info *sta)
Jiri Bencf0706e82007-05-05 11:45:53 -070069{
70 struct sta_info *s;
71
72 s = local->sta_hash[STA_HASH(sta->addr)];
73 if (!s)
Michael Wube8755e2007-07-27 15:43:23 +020074 return -ENOENT;
75 if (s == sta) {
Johannes Bergd0709a62008-02-25 16:27:46 +010076 rcu_assign_pointer(local->sta_hash[STA_HASH(sta->addr)],
77 s->hnext);
Michael Wube8755e2007-07-27 15:43:23 +020078 return 0;
Jiri Bencf0706e82007-05-05 11:45:53 -070079 }
80
Michael Wube8755e2007-07-27 15:43:23 +020081 while (s->hnext && s->hnext != sta)
Jiri Bencf0706e82007-05-05 11:45:53 -070082 s = s->hnext;
Michael Wube8755e2007-07-27 15:43:23 +020083 if (s->hnext) {
Johannes Bergd0709a62008-02-25 16:27:46 +010084 rcu_assign_pointer(s->hnext, sta->hnext);
Michael Wube8755e2007-07-27 15:43:23 +020085 return 0;
86 }
Jiri Bencf0706e82007-05-05 11:45:53 -070087
Michael Wube8755e2007-07-27 15:43:23 +020088 return -ENOENT;
Jiri Bencf0706e82007-05-05 11:45:53 -070089}
90
Johannes Bergd0709a62008-02-25 16:27:46 +010091/* protected by RCU */
Johannes Berg43ba7e92008-02-21 14:09:30 +010092static struct sta_info *__sta_info_find(struct ieee80211_local *local,
93 u8 *addr)
94{
95 struct sta_info *sta;
96
Johannes Bergd0709a62008-02-25 16:27:46 +010097 sta = rcu_dereference(local->sta_hash[STA_HASH(addr)]);
Johannes Berg43ba7e92008-02-21 14:09:30 +010098 while (sta) {
99 if (compare_ether_addr(sta->addr, addr) == 0)
100 break;
Johannes Bergd0709a62008-02-25 16:27:46 +0100101 sta = rcu_dereference(sta->hnext);
Johannes Berg43ba7e92008-02-21 14:09:30 +0100102 }
103 return sta;
104}
105
Jiri Bencf0706e82007-05-05 11:45:53 -0700106struct sta_info *sta_info_get(struct ieee80211_local *local, u8 *addr)
107{
Johannes Bergd0709a62008-02-25 16:27:46 +0100108 return __sta_info_find(local, addr);
Jiri Bencf0706e82007-05-05 11:45:53 -0700109}
110EXPORT_SYMBOL(sta_info_get);
111
Luis Carlos Coboee385852008-02-23 15:17:11 +0100112struct sta_info *sta_info_get_by_idx(struct ieee80211_local *local, int idx,
113 struct net_device *dev)
114{
115 struct sta_info *sta;
116 int i = 0;
117
Johannes Bergd0709a62008-02-25 16:27:46 +0100118 list_for_each_entry_rcu(sta, &local->sta_list, list) {
Luis Carlos Coboee385852008-02-23 15:17:11 +0100119 if (i < idx) {
120 ++i;
121 continue;
Johannes Bergd0709a62008-02-25 16:27:46 +0100122 } else if (!dev || dev == sta->sdata->dev) {
Luis Carlos Coboee385852008-02-23 15:17:11 +0100123 return sta;
124 }
125 }
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{
Jiri Bencf0706e82007-05-05 11:45:53 -0700132 struct ieee80211_local *local = sta->local;
133 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
137 if (!sta)
138 return;
Jiri Bencf0706e82007-05-05 11:45:53 -0700139
Johannes Bergd0709a62008-02-25 16:27:46 +0100140 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 Bencf0706e82007-05-05 11:45:53 -0700164 while ((skb = skb_dequeue(&sta->ps_tx_buf)) != NULL) {
165 local->total_ps_buffered--;
166 dev_kfree_skb_any(skb);
167 }
Johannes Bergd0709a62008-02-25 16:27:46 +0100168
169 while ((skb = skb_dequeue(&sta->tx_filtered)) != NULL)
Jiri Bencf0706e82007-05-05 11:45:53 -0700170 dev_kfree_skb_any(skb);
Johannes Bergd0709a62008-02-25 16:27:46 +0100171
Ron Rindjunskyfe3bf0f2008-01-28 14:07:19 +0200172 for (i = 0; i < STA_TID_NUM; i++) {
Ron Rindjunsky07db2182007-12-25 17:00:33 +0200173 del_timer_sync(&sta->ampdu_mlme.tid_rx[i].session_timer);
Ron Rindjunskyfe3bf0f2008-01-28 14:07:19 +0200174 del_timer_sync(&sta->ampdu_mlme.tid_tx[i].addba_resp_timer);
175 }
Jiri Bencf0706e82007-05-05 11:45:53 -0700176 rate_control_free_sta(sta->rate_ctrl, sta->rate_ctrl_priv);
177 rate_control_put(sta->rate_ctrl);
Johannes Bergd0709a62008-02-25 16:27:46 +0100178
Johannes Berg73651ee2008-02-25 16:27:47 +0100179#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
180 printk(KERN_DEBUG "%s: Destroyed STA %s\n",
181 wiphy_name(local->hw.wiphy), print_mac(mbuf, sta->addr));
182#endif /* CONFIG_MAC80211_VERBOSE_DEBUG */
183
Jiri Bencf0706e82007-05-05 11:45:53 -0700184 kfree(sta);
185}
186
187
Johannes Bergd0709a62008-02-25 16:27:46 +0100188/* Caller must hold local->sta_lock */
189static void sta_info_hash_add(struct ieee80211_local *local,
190 struct sta_info *sta)
Jiri Bencf0706e82007-05-05 11:45:53 -0700191{
Johannes Bergd0709a62008-02-25 16:27:46 +0100192 sta->hnext = local->sta_hash[STA_HASH(sta->addr)];
193 rcu_assign_pointer(local->sta_hash[STA_HASH(sta->addr)], sta);
Jiri Bencf0706e82007-05-05 11:45:53 -0700194}
Jiri Bencf0706e82007-05-05 11:45:53 -0700195
Johannes Berg73651ee2008-02-25 16:27:47 +0100196struct sta_info *sta_info_alloc(struct ieee80211_sub_if_data *sdata,
197 u8 *addr, gfp_t gfp)
Jiri Bencf0706e82007-05-05 11:45:53 -0700198{
Johannes Bergd0709a62008-02-25 16:27:46 +0100199 struct ieee80211_local *local = sdata->local;
Jiri Bencf0706e82007-05-05 11:45:53 -0700200 struct sta_info *sta;
Ron Rindjunsky16c5f152007-12-25 17:00:34 +0200201 int i;
Johannes Berg73651ee2008-02-25 16:27:47 +0100202 DECLARE_MAC_BUF(mbuf);
Jiri Bencf0706e82007-05-05 11:45:53 -0700203
Johannes Berg73651ee2008-02-25 16:27:47 +0100204 sta = kzalloc(sizeof(*sta), gfp);
Jiri Bencf0706e82007-05-05 11:45:53 -0700205 if (!sta)
Johannes Berg73651ee2008-02-25 16:27:47 +0100206 return NULL;
Jiri Bencf0706e82007-05-05 11:45:53 -0700207
Johannes Bergd0709a62008-02-25 16:27:46 +0100208 memcpy(sta->addr, addr, ETH_ALEN);
209 sta->local = local;
210 sta->sdata = sdata;
Jiri Bencf0706e82007-05-05 11:45:53 -0700211
212 sta->rate_ctrl = rate_control_get(local->rate_ctrl);
Johannes Bergd0709a62008-02-25 16:27:46 +0100213 sta->rate_ctrl_priv = rate_control_alloc_sta(sta->rate_ctrl,
Johannes Berg73651ee2008-02-25 16:27:47 +0100214 gfp);
Jiri Bencf0706e82007-05-05 11:45:53 -0700215 if (!sta->rate_ctrl_priv) {
216 rate_control_put(sta->rate_ctrl);
Jiri Bencf0706e82007-05-05 11:45:53 -0700217 kfree(sta);
Johannes Berg73651ee2008-02-25 16:27:47 +0100218 return NULL;
Jiri Bencf0706e82007-05-05 11:45:53 -0700219 }
220
Ron Rindjunsky16c5f152007-12-25 17:00:34 +0200221 spin_lock_init(&sta->ampdu_mlme.ampdu_rx);
Ron Rindjunskyfe3bf0f2008-01-28 14:07:19 +0200222 spin_lock_init(&sta->ampdu_mlme.ampdu_tx);
Ron Rindjunsky16c5f152007-12-25 17:00:34 +0200223 for (i = 0; i < STA_TID_NUM; i++) {
224 /* timer_to_tid must be initialized with identity mapping to
225 * enable session_timer's data differentiation. refer to
226 * sta_rx_agg_session_timer_expired for useage */
227 sta->timer_to_tid[i] = i;
Ron Rindjunskyfe3bf0f2008-01-28 14:07:19 +0200228 /* tid to tx queue: initialize according to HW (0 is valid) */
229 sta->tid_to_tx_q[i] = local->hw.queues;
Ron Rindjunsky16c5f152007-12-25 17:00:34 +0200230 /* rx timers */
231 sta->ampdu_mlme.tid_rx[i].session_timer.function =
232 sta_rx_agg_session_timer_expired;
233 sta->ampdu_mlme.tid_rx[i].session_timer.data =
234 (unsigned long)&sta->timer_to_tid[i];
235 init_timer(&sta->ampdu_mlme.tid_rx[i].session_timer);
Ron Rindjunskyfe3bf0f2008-01-28 14:07:19 +0200236 /* tx timers */
237 sta->ampdu_mlme.tid_tx[i].addba_resp_timer.function =
238 sta_addba_resp_timer_expired;
239 sta->ampdu_mlme.tid_tx[i].addba_resp_timer.data =
240 (unsigned long)&sta->timer_to_tid[i];
241 init_timer(&sta->ampdu_mlme.tid_tx[i].addba_resp_timer);
Ron Rindjunsky16c5f152007-12-25 17:00:34 +0200242 }
Jiri Bencf0706e82007-05-05 11:45:53 -0700243 skb_queue_head_init(&sta->ps_tx_buf);
244 skb_queue_head_init(&sta->tx_filtered);
Johannes Berg73651ee2008-02-25 16:27:47 +0100245
246#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
247 printk(KERN_DEBUG "%s: Allocated STA %s\n",
248 wiphy_name(local->hw.wiphy), print_mac(mbuf, sta->addr));
249#endif /* CONFIG_MAC80211_VERBOSE_DEBUG */
250
251 return sta;
252}
253
254int sta_info_insert(struct sta_info *sta)
255{
256 struct ieee80211_local *local = sta->local;
257 struct ieee80211_sub_if_data *sdata = sta->sdata;
258 unsigned long flags;
259 DECLARE_MAC_BUF(mac);
260
Johannes Berg44213b52008-02-25 16:27:49 +0100261 WARN_ON(!netif_running(sdata->dev));
262
Johannes Bergd0709a62008-02-25 16:27:46 +0100263 spin_lock_irqsave(&local->sta_lock, flags);
Johannes Berg43ba7e92008-02-21 14:09:30 +0100264 /* check if STA exists already */
Johannes Berg73651ee2008-02-25 16:27:47 +0100265 if (__sta_info_find(local, sta->addr)) {
Johannes Bergd0709a62008-02-25 16:27:46 +0100266 spin_unlock_irqrestore(&local->sta_lock, flags);
Johannes Berg73651ee2008-02-25 16:27:47 +0100267 return -EEXIST;
Johannes Berg43ba7e92008-02-21 14:09:30 +0100268 }
Jiri Bencf0706e82007-05-05 11:45:53 -0700269 list_add(&sta->list, &local->sta_list);
270 local->num_sta++;
271 sta_info_hash_add(local, sta);
Johannes Berg32bfd352007-12-19 01:31:26 +0100272
Johannes Bergd0709a62008-02-25 16:27:46 +0100273 /* notify driver */
274 if (local->ops->sta_notify) {
Johannes Berg51fb61e2007-12-19 01:31:27 +0100275 if (sdata->vif.type == IEEE80211_IF_TYPE_VLAN)
Johannes Berg32bfd352007-12-19 01:31:26 +0100276 sdata = sdata->u.vlan.ap;
277
278 local->ops->sta_notify(local_to_hw(local), &sdata->vif,
Johannes Berg73651ee2008-02-25 16:27:47 +0100279 STA_NOTIFY_ADD, sta->addr);
Johannes Berg32bfd352007-12-19 01:31:26 +0100280 }
Johannes Bergd0709a62008-02-25 16:27:46 +0100281
Jiri Bencf0706e82007-05-05 11:45:53 -0700282#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Johannes Berg73651ee2008-02-25 16:27:47 +0100283 printk(KERN_DEBUG "%s: Inserted STA %s\n",
284 wiphy_name(local->hw.wiphy), print_mac(mac, sta->addr));
Jiri Bencf0706e82007-05-05 11:45:53 -0700285#endif /* CONFIG_MAC80211_VERBOSE_DEBUG */
286
Johannes Berg73651ee2008-02-25 16:27:47 +0100287 spin_unlock_irqrestore(&local->sta_lock, flags);
288
Jiri Bence9f207f2007-05-05 11:46:38 -0700289#ifdef CONFIG_MAC80211_DEBUGFS
Michael Wube8755e2007-07-27 15:43:23 +0200290 /* debugfs entry adding might sleep, so schedule process
291 * context task for adding entry for STAs that do not yet
292 * have one. */
293 queue_work(local->hw.workqueue, &local->sta_debugfs_add);
Jiri Bence9f207f2007-05-05 11:46:38 -0700294#endif
295
Johannes Berg73651ee2008-02-25 16:27:47 +0100296 if (ieee80211_vif_is_mesh(&sdata->vif))
297 mesh_accept_plinks_update(sdata);
298
299 return 0;
Jiri Bencf0706e82007-05-05 11:45:53 -0700300}
301
Johannes Berg004c8722008-02-20 11:21:35 +0100302static inline void __bss_tim_set(struct ieee80211_if_ap *bss, u16 aid)
303{
304 /*
305 * This format has been mandated by the IEEE specifications,
306 * so this line may not be changed to use the __set_bit() format.
307 */
308 bss->tim[aid / 8] |= (1 << (aid % 8));
309}
310
311static inline void __bss_tim_clear(struct ieee80211_if_ap *bss, u16 aid)
312{
313 /*
314 * This format has been mandated by the IEEE specifications,
315 * so this line may not be changed to use the __clear_bit() format.
316 */
317 bss->tim[aid / 8] &= ~(1 << (aid % 8));
318}
319
320static void __sta_info_set_tim_bit(struct ieee80211_if_ap *bss,
321 struct sta_info *sta)
322{
323 if (bss)
324 __bss_tim_set(bss, sta->aid);
Johannes Bergd0709a62008-02-25 16:27:46 +0100325 if (sta->local->ops->set_tim) {
326 sta->local->tim_in_locked_section = true;
Johannes Berg004c8722008-02-20 11:21:35 +0100327 sta->local->ops->set_tim(local_to_hw(sta->local), sta->aid, 1);
Johannes Bergd0709a62008-02-25 16:27:46 +0100328 sta->local->tim_in_locked_section = false;
329 }
Johannes Berg004c8722008-02-20 11:21:35 +0100330}
331
332void sta_info_set_tim_bit(struct sta_info *sta)
333{
Johannes Bergd0709a62008-02-25 16:27:46 +0100334 unsigned long flags;
Johannes Berg004c8722008-02-20 11:21:35 +0100335
Johannes Bergd0709a62008-02-25 16:27:46 +0100336 spin_lock_irqsave(&sta->local->sta_lock, flags);
337 __sta_info_set_tim_bit(sta->sdata->bss, sta);
338 spin_unlock_irqrestore(&sta->local->sta_lock, flags);
Johannes Berg004c8722008-02-20 11:21:35 +0100339}
340
341static void __sta_info_clear_tim_bit(struct ieee80211_if_ap *bss,
342 struct sta_info *sta)
343{
344 if (bss)
345 __bss_tim_clear(bss, sta->aid);
Johannes Bergd0709a62008-02-25 16:27:46 +0100346 if (sta->local->ops->set_tim) {
347 sta->local->tim_in_locked_section = true;
Johannes Berg004c8722008-02-20 11:21:35 +0100348 sta->local->ops->set_tim(local_to_hw(sta->local), sta->aid, 0);
Johannes Bergd0709a62008-02-25 16:27:46 +0100349 sta->local->tim_in_locked_section = false;
350 }
Johannes Berg004c8722008-02-20 11:21:35 +0100351}
352
353void sta_info_clear_tim_bit(struct sta_info *sta)
354{
Johannes Bergd0709a62008-02-25 16:27:46 +0100355 unsigned long flags;
Johannes Berg004c8722008-02-20 11:21:35 +0100356
Johannes Bergd0709a62008-02-25 16:27:46 +0100357 spin_lock_irqsave(&sta->local->sta_lock, flags);
358 __sta_info_clear_tim_bit(sta->sdata->bss, sta);
359 spin_unlock_irqrestore(&sta->local->sta_lock, flags);
Johannes Berg004c8722008-02-20 11:21:35 +0100360}
361
Johannes Bergd0709a62008-02-25 16:27:46 +0100362/*
363 * See comment in __sta_info_unlink,
364 * caller must hold local->sta_lock.
365 */
366static void __sta_info_pin(struct sta_info *sta)
Jiri Bencf0706e82007-05-05 11:45:53 -0700367{
Johannes Bergd0709a62008-02-25 16:27:46 +0100368 WARN_ON(sta->pin_status != STA_INFO_PIN_STAT_NORMAL);
369 sta->pin_status = STA_INFO_PIN_STAT_PINNED;
370}
Jiri Bencf0706e82007-05-05 11:45:53 -0700371
Johannes Bergd0709a62008-02-25 16:27:46 +0100372/*
373 * See comment in __sta_info_unlink, returns sta if it
374 * needs to be destroyed.
375 */
376static struct sta_info *__sta_info_unpin(struct sta_info *sta)
377{
378 struct sta_info *ret = NULL;
379 unsigned long flags;
380
381 spin_lock_irqsave(&sta->local->sta_lock, flags);
382 WARN_ON(sta->pin_status != STA_INFO_PIN_STAT_DESTROY &&
383 sta->pin_status != STA_INFO_PIN_STAT_PINNED);
384 if (sta->pin_status == STA_INFO_PIN_STAT_DESTROY)
385 ret = sta;
386 sta->pin_status = STA_INFO_PIN_STAT_NORMAL;
387 spin_unlock_irqrestore(&sta->local->sta_lock, flags);
388
389 return ret;
390}
391
392static void __sta_info_unlink(struct sta_info **sta)
393{
394 struct ieee80211_local *local = (*sta)->local;
395 struct ieee80211_sub_if_data *sdata = (*sta)->sdata;
396#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
397 DECLARE_MAC_BUF(mbuf);
398#endif
399 /*
400 * pull caller's reference if we're already gone.
401 */
402 if (sta_info_hash_del(local, *sta)) {
403 *sta = NULL;
Michael Wube8755e2007-07-27 15:43:23 +0200404 return;
Johannes Bergd0709a62008-02-25 16:27:46 +0100405 }
Michael Wube8755e2007-07-27 15:43:23 +0200406
Johannes Bergd0709a62008-02-25 16:27:46 +0100407 /*
408 * Also pull caller's reference if the STA is pinned by the
409 * task that is adding the debugfs entries. In that case, we
410 * leave the STA "to be freed".
411 *
412 * The rules are not trivial, but not too complex either:
413 * (1) pin_status is only modified under the sta_lock
414 * (2) sta_info_debugfs_add_work() will set the status
415 * to PINNED when it found an item that needs a new
416 * debugfs directory created. In that case, that item
417 * must not be freed although all *RCU* users are done
418 * with it. Hence, we tell the caller of _unlink()
419 * that the item is already gone (as can happen when
420 * two tasks try to unlink/destroy at the same time)
421 * (3) We set the pin_status to DESTROY here when we
422 * find such an item.
423 * (4) sta_info_debugfs_add_work() will reset the pin_status
424 * from PINNED to NORMAL when it is done with the item,
425 * but will check for DESTROY before resetting it in
426 * which case it will free the item.
427 */
428 if ((*sta)->pin_status == STA_INFO_PIN_STAT_PINNED) {
429 (*sta)->pin_status = STA_INFO_PIN_STAT_DESTROY;
430 *sta = NULL;
431 return;
432 }
433
434 list_del(&(*sta)->list);
435
436 if ((*sta)->flags & WLAN_STA_PS) {
437 (*sta)->flags &= ~WLAN_STA_PS;
Jiri Bencf0706e82007-05-05 11:45:53 -0700438 if (sdata->bss)
439 atomic_dec(&sdata->bss->num_sta_ps);
Johannes Bergd0709a62008-02-25 16:27:46 +0100440 __sta_info_clear_tim_bit(sdata->bss, *sta);
Jiri Bencf0706e82007-05-05 11:45:53 -0700441 }
Johannes Bergd0709a62008-02-25 16:27:46 +0100442
Jiri Bencf0706e82007-05-05 11:45:53 -0700443 local->num_sta--;
Luis Carlos Coboee385852008-02-23 15:17:11 +0100444
Johannes Berg32bfd352007-12-19 01:31:26 +0100445 if (local->ops->sta_notify) {
Johannes Berg51fb61e2007-12-19 01:31:27 +0100446 if (sdata->vif.type == IEEE80211_IF_TYPE_VLAN)
Johannes Berg32bfd352007-12-19 01:31:26 +0100447 sdata = sdata->u.vlan.ap;
448
449 local->ops->sta_notify(local_to_hw(local), &sdata->vif,
Johannes Bergd0709a62008-02-25 16:27:46 +0100450 STA_NOTIFY_REMOVE, (*sta)->addr);
Johannes Berg32bfd352007-12-19 01:31:26 +0100451 }
Tomas Winkler478f8d22007-09-30 13:52:37 +0200452
Johannes Bergd0709a62008-02-25 16:27:46 +0100453 if (ieee80211_vif_is_mesh(&sdata->vif)) {
454 mesh_accept_plinks_update(sdata);
455#ifdef CONFIG_MAC80211_MESH
456 del_timer(&(*sta)->plink_timer);
457#endif
458 }
Michael Wube8755e2007-07-27 15:43:23 +0200459
Johannes Bergd0709a62008-02-25 16:27:46 +0100460#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
461 printk(KERN_DEBUG "%s: Removed STA %s\n",
462 wiphy_name(local->hw.wiphy), print_mac(mbuf, (*sta)->addr));
463#endif /* CONFIG_MAC80211_VERBOSE_DEBUG */
Jiri Bencf0706e82007-05-05 11:45:53 -0700464}
465
Johannes Bergd0709a62008-02-25 16:27:46 +0100466void sta_info_unlink(struct sta_info **sta)
467{
468 struct ieee80211_local *local = (*sta)->local;
469 unsigned long flags;
470
471 spin_lock_irqsave(&local->sta_lock, flags);
472 __sta_info_unlink(sta);
473 spin_unlock_irqrestore(&local->sta_lock, flags);
474}
Jiri Bencf0706e82007-05-05 11:45:53 -0700475
476static inline int sta_info_buffer_expired(struct ieee80211_local *local,
477 struct sta_info *sta,
478 struct sk_buff *skb)
479{
480 struct ieee80211_tx_packet_data *pkt_data;
481 int timeout;
482
483 if (!skb)
484 return 0;
485
486 pkt_data = (struct ieee80211_tx_packet_data *) skb->cb;
487
488 /* Timeout: (2 * listen_interval * beacon_int * 1024 / 1000000) sec */
489 timeout = (sta->listen_interval * local->hw.conf.beacon_int * 32 /
490 15625) * HZ;
491 if (timeout < STA_TX_BUFFER_EXPIRE)
492 timeout = STA_TX_BUFFER_EXPIRE;
493 return time_after(jiffies, pkt_data->jiffies + timeout);
494}
495
496
497static void sta_info_cleanup_expire_buffered(struct ieee80211_local *local,
498 struct sta_info *sta)
499{
500 unsigned long flags;
501 struct sk_buff *skb;
Johannes Berg836341a2008-02-20 02:07:21 +0100502 struct ieee80211_sub_if_data *sdata;
Joe Perches0795af52007-10-03 17:59:30 -0700503 DECLARE_MAC_BUF(mac);
Jiri Bencf0706e82007-05-05 11:45:53 -0700504
505 if (skb_queue_empty(&sta->ps_tx_buf))
506 return;
507
508 for (;;) {
509 spin_lock_irqsave(&sta->ps_tx_buf.lock, flags);
510 skb = skb_peek(&sta->ps_tx_buf);
Johannes Berg836341a2008-02-20 02:07:21 +0100511 if (sta_info_buffer_expired(local, sta, skb))
Jiri Bencf0706e82007-05-05 11:45:53 -0700512 skb = __skb_dequeue(&sta->ps_tx_buf);
Johannes Berg836341a2008-02-20 02:07:21 +0100513 else
Jiri Bencf0706e82007-05-05 11:45:53 -0700514 skb = NULL;
515 spin_unlock_irqrestore(&sta->ps_tx_buf.lock, flags);
516
Johannes Berg836341a2008-02-20 02:07:21 +0100517 if (!skb)
Jiri Bencf0706e82007-05-05 11:45:53 -0700518 break;
Johannes Berg836341a2008-02-20 02:07:21 +0100519
Johannes Bergd0709a62008-02-25 16:27:46 +0100520 sdata = sta->sdata;
Johannes Berg836341a2008-02-20 02:07:21 +0100521 local->total_ps_buffered--;
522 printk(KERN_DEBUG "Buffered frame expired (STA "
523 "%s)\n", print_mac(mac, sta->addr));
524 dev_kfree_skb(skb);
525
Johannes Berg004c8722008-02-20 11:21:35 +0100526 if (skb_queue_empty(&sta->ps_tx_buf))
527 sta_info_clear_tim_bit(sta);
Jiri Bencf0706e82007-05-05 11:45:53 -0700528 }
529}
530
531
532static void sta_info_cleanup(unsigned long data)
533{
534 struct ieee80211_local *local = (struct ieee80211_local *) data;
535 struct sta_info *sta;
536
Johannes Bergd0709a62008-02-25 16:27:46 +0100537 rcu_read_lock();
538 list_for_each_entry_rcu(sta, &local->sta_list, list)
Jiri Bencf0706e82007-05-05 11:45:53 -0700539 sta_info_cleanup_expire_buffered(local, sta);
Johannes Bergd0709a62008-02-25 16:27:46 +0100540 rcu_read_unlock();
Jiri Bencf0706e82007-05-05 11:45:53 -0700541
Johannes Berg0d174402007-12-17 15:07:43 +0100542 local->sta_cleanup.expires =
543 round_jiffies(jiffies + STA_INFO_CLEANUP_INTERVAL);
Jiri Bencf0706e82007-05-05 11:45:53 -0700544 add_timer(&local->sta_cleanup);
545}
546
Jiri Bence9f207f2007-05-05 11:46:38 -0700547#ifdef CONFIG_MAC80211_DEBUGFS
Johannes Bergd0709a62008-02-25 16:27:46 +0100548static void sta_info_debugfs_add_work(struct work_struct *work)
Jiri Bence9f207f2007-05-05 11:46:38 -0700549{
550 struct ieee80211_local *local =
551 container_of(work, struct ieee80211_local, sta_debugfs_add);
552 struct sta_info *sta, *tmp;
Johannes Bergd0709a62008-02-25 16:27:46 +0100553 unsigned long flags;
Jiri Bence9f207f2007-05-05 11:46:38 -0700554
555 while (1) {
Jiri Bence9f207f2007-05-05 11:46:38 -0700556 sta = NULL;
Johannes Bergd0709a62008-02-25 16:27:46 +0100557
558 spin_lock_irqsave(&local->sta_lock, flags);
Jiri Bence9f207f2007-05-05 11:46:38 -0700559 list_for_each_entry(tmp, &local->sta_list, list) {
Michael Wube8755e2007-07-27 15:43:23 +0200560 if (!tmp->debugfs.dir) {
Jiri Bence9f207f2007-05-05 11:46:38 -0700561 sta = tmp;
Johannes Bergd0709a62008-02-25 16:27:46 +0100562 __sta_info_pin(sta);
Jiri Bence9f207f2007-05-05 11:46:38 -0700563 break;
564 }
565 }
Johannes Bergd0709a62008-02-25 16:27:46 +0100566 spin_unlock_irqrestore(&local->sta_lock, flags);
Jiri Bence9f207f2007-05-05 11:46:38 -0700567
568 if (!sta)
569 break;
570
Jiri Bence9f207f2007-05-05 11:46:38 -0700571 ieee80211_sta_debugfs_add(sta);
572 rate_control_add_sta_debugfs(sta);
Johannes Bergd0709a62008-02-25 16:27:46 +0100573
574 sta = __sta_info_unpin(sta);
575
576 if (sta) {
577 synchronize_rcu();
578 sta_info_destroy(sta);
579 }
Jiri Bence9f207f2007-05-05 11:46:38 -0700580 }
581}
582#endif
583
Jiri Bencf0706e82007-05-05 11:45:53 -0700584void sta_info_init(struct ieee80211_local *local)
585{
Johannes Bergd0709a62008-02-25 16:27:46 +0100586 spin_lock_init(&local->sta_lock);
Jiri Bencf0706e82007-05-05 11:45:53 -0700587 INIT_LIST_HEAD(&local->sta_list);
Jiri Bencf0706e82007-05-05 11:45:53 -0700588
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -0800589 setup_timer(&local->sta_cleanup, sta_info_cleanup,
590 (unsigned long)local);
Johannes Berg0d174402007-12-17 15:07:43 +0100591 local->sta_cleanup.expires =
592 round_jiffies(jiffies + STA_INFO_CLEANUP_INTERVAL);
Jiri Bence9f207f2007-05-05 11:46:38 -0700593
594#ifdef CONFIG_MAC80211_DEBUGFS
Johannes Bergd0709a62008-02-25 16:27:46 +0100595 INIT_WORK(&local->sta_debugfs_add, sta_info_debugfs_add_work);
Jiri Bence9f207f2007-05-05 11:46:38 -0700596#endif
Jiri Bencf0706e82007-05-05 11:45:53 -0700597}
598
599int sta_info_start(struct ieee80211_local *local)
600{
601 add_timer(&local->sta_cleanup);
602 return 0;
603}
604
605void sta_info_stop(struct ieee80211_local *local)
606{
Jiri Bencf0706e82007-05-05 11:45:53 -0700607 del_timer(&local->sta_cleanup);
Michael Wube8755e2007-07-27 15:43:23 +0200608 sta_info_flush(local, NULL);
Jiri Bencf0706e82007-05-05 11:45:53 -0700609}
610
Jiri Bencf0706e82007-05-05 11:45:53 -0700611/**
612 * sta_info_flush - flush matching STA entries from the STA table
Johannes Berg44213b52008-02-25 16:27:49 +0100613 *
614 * Returns the number of removed STA entries.
615 *
Jiri Bencf0706e82007-05-05 11:45:53 -0700616 * @local: local interface data
Johannes Bergd0709a62008-02-25 16:27:46 +0100617 * @sdata: matching rule for the net device (sta->dev) or %NULL to match all STAs
Jiri Bencf0706e82007-05-05 11:45:53 -0700618 */
Johannes Berg44213b52008-02-25 16:27:49 +0100619int sta_info_flush(struct ieee80211_local *local,
Johannes Bergd0709a62008-02-25 16:27:46 +0100620 struct ieee80211_sub_if_data *sdata)
Jiri Bencf0706e82007-05-05 11:45:53 -0700621{
622 struct sta_info *sta, *tmp;
Michael Wube8755e2007-07-27 15:43:23 +0200623 LIST_HEAD(tmp_list);
Johannes Berg44213b52008-02-25 16:27:49 +0100624 int ret = 0;
Johannes Bergd0709a62008-02-25 16:27:46 +0100625 unsigned long flags;
Jiri Bencf0706e82007-05-05 11:45:53 -0700626
Johannes Bergd0709a62008-02-25 16:27:46 +0100627 might_sleep();
628
629 spin_lock_irqsave(&local->sta_lock, flags);
630 list_for_each_entry_safe(sta, tmp, &local->sta_list, list) {
631 if (!sdata || sdata == sta->sdata) {
632 __sta_info_unlink(&sta);
Johannes Berg44213b52008-02-25 16:27:49 +0100633 if (sta) {
Johannes Bergd0709a62008-02-25 16:27:46 +0100634 list_add_tail(&sta->list, &tmp_list);
Johannes Berg44213b52008-02-25 16:27:49 +0100635 ret++;
636 }
Michael Wube8755e2007-07-27 15:43:23 +0200637 }
Michael Wube8755e2007-07-27 15:43:23 +0200638 }
Johannes Bergd0709a62008-02-25 16:27:46 +0100639 spin_unlock_irqrestore(&local->sta_lock, flags);
640
641 synchronize_rcu();
642
643 list_for_each_entry_safe(sta, tmp, &tmp_list, list)
644 sta_info_destroy(sta);
Johannes Berg44213b52008-02-25 16:27:49 +0100645
646 return ret;
Jiri Bencf0706e82007-05-05 11:45:53 -0700647}