blob: eec001491e66f6bfba75ca7bf41d22d9563c6788 [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"
Johannes Berg24487982009-04-23 18:52:52 +020022#include "driver-ops.h"
Johannes Berg2c8dccc2008-04-08 15:14:40 -040023#include "rate.h"
Jiri Bencf0706e82007-05-05 11:45:53 -070024#include "sta_info.h"
Jiri Bence9f207f2007-05-05 11:46:38 -070025#include "debugfs_sta.h"
Luis Carlos Coboee385852008-02-23 15:17:11 +010026#include "mesh.h"
Jiri Bencf0706e82007-05-05 11:45:53 -070027
Johannes Bergd0709a62008-02-25 16:27:46 +010028/**
29 * DOC: STA information lifetime rules
30 *
31 * STA info structures (&struct sta_info) are managed in a hash table
32 * for faster lookup and a list for iteration. They are managed using
33 * RCU, i.e. access to the list and hash table is protected by RCU.
34 *
Johannes Berg03e44972008-02-27 09:56:40 +010035 * Upon allocating a STA info structure with sta_info_alloc(), the caller owns
36 * that structure. It must then either destroy it using sta_info_destroy()
37 * (which is pretty useless) or insert it into the hash table using
38 * sta_info_insert() which demotes the reference from ownership to a regular
39 * RCU-protected reference; if the function is called without protection by an
Johannes Berg93e5deb2008-04-01 15:21:00 +020040 * RCU critical section the reference is instantly invalidated. Note that the
41 * caller may not do much with the STA info before inserting it, in particular,
42 * it may not start any mesh peer link management or add encryption keys.
43 *
44 * When the insertion fails (sta_info_insert()) returns non-zero), the
45 * structure will have been freed by sta_info_insert()!
Johannes Bergd0709a62008-02-25 16:27:46 +010046 *
Luis R. Rodriguez7e189a12009-06-02 18:38:14 -040047 * sta entries are added by mac80211 when you establish a link with a
48 * peer. This means different things for the different type of interfaces
49 * we support. For a regular station this mean we add the AP sta when we
50 * receive an assocation response from the AP. For IBSS this occurs when
51 * we receive a probe response or a beacon from target IBSS network. For
52 * WDS we add the sta for the peer imediately upon device open. When using
53 * AP mode we add stations for each respective station upon request from
54 * userspace through nl80211.
55 *
Johannes Bergd0709a62008-02-25 16:27:46 +010056 * Because there are debugfs entries for each station, and adding those
57 * must be able to sleep, it is also possible to "pin" a station entry,
58 * that means it can be removed from the hash table but not be freed.
Johannes Berg93e5deb2008-04-01 15:21:00 +020059 * See the comment in __sta_info_unlink() for more information, this is
60 * an internal capability only.
Johannes Bergd0709a62008-02-25 16:27:46 +010061 *
62 * In order to remove a STA info structure, the caller needs to first
Johannes Bergdbbea672008-02-26 14:34:06 +010063 * unlink it (sta_info_unlink()) from the list and hash tables and
Johannes Berg3b967662008-04-08 17:56:52 +020064 * then destroy it; sta_info_destroy() will wait for an RCU grace period
65 * to elapse before actually freeing it. Due to the pinning and the
66 * possibility of multiple callers trying to remove the same STA info at
67 * the same time, sta_info_unlink() can clear the STA info pointer it is
68 * passed to indicate that the STA info is owned by somebody else now.
Johannes Bergd0709a62008-02-25 16:27:46 +010069 *
Johannes Bergdbbea672008-02-26 14:34:06 +010070 * If sta_info_unlink() did not clear the pointer then the caller owns
Johannes Bergd0709a62008-02-25 16:27:46 +010071 * the STA info structure now and is responsible of destroying it with
Johannes Berg3b967662008-04-08 17:56:52 +020072 * a call to sta_info_destroy().
Johannes Bergd0709a62008-02-25 16:27:46 +010073 *
74 * In all other cases, there is no concept of ownership on a STA entry,
75 * each structure is owned by the global hash table/list until it is
76 * removed. All users of the structure need to be RCU protected so that
77 * the structure won't be freed before they are done using it.
78 */
Jiri Bencf0706e82007-05-05 11:45:53 -070079
80/* Caller must hold local->sta_lock */
Michael Wube8755e2007-07-27 15:43:23 +020081static int sta_info_hash_del(struct ieee80211_local *local,
82 struct sta_info *sta)
Jiri Bencf0706e82007-05-05 11:45:53 -070083{
84 struct sta_info *s;
85
Johannes Berg17741cd2008-09-11 00:02:02 +020086 s = local->sta_hash[STA_HASH(sta->sta.addr)];
Jiri Bencf0706e82007-05-05 11:45:53 -070087 if (!s)
Michael Wube8755e2007-07-27 15:43:23 +020088 return -ENOENT;
89 if (s == sta) {
Johannes Berg17741cd2008-09-11 00:02:02 +020090 rcu_assign_pointer(local->sta_hash[STA_HASH(sta->sta.addr)],
Johannes Bergd0709a62008-02-25 16:27:46 +010091 s->hnext);
Michael Wube8755e2007-07-27 15:43:23 +020092 return 0;
Jiri Bencf0706e82007-05-05 11:45:53 -070093 }
94
Michael Wube8755e2007-07-27 15:43:23 +020095 while (s->hnext && s->hnext != sta)
Jiri Bencf0706e82007-05-05 11:45:53 -070096 s = s->hnext;
Michael Wube8755e2007-07-27 15:43:23 +020097 if (s->hnext) {
Johannes Bergd0709a62008-02-25 16:27:46 +010098 rcu_assign_pointer(s->hnext, sta->hnext);
Michael Wube8755e2007-07-27 15:43:23 +020099 return 0;
100 }
Jiri Bencf0706e82007-05-05 11:45:53 -0700101
Michael Wube8755e2007-07-27 15:43:23 +0200102 return -ENOENT;
Jiri Bencf0706e82007-05-05 11:45:53 -0700103}
104
Johannes Bergd0709a62008-02-25 16:27:46 +0100105/* protected by RCU */
Johannes Berg4b7679a2008-09-18 18:14:18 +0200106struct sta_info *sta_info_get(struct ieee80211_local *local, const u8 *addr)
Johannes Berg43ba7e92008-02-21 14:09:30 +0100107{
108 struct sta_info *sta;
109
Johannes Bergd0709a62008-02-25 16:27:46 +0100110 sta = rcu_dereference(local->sta_hash[STA_HASH(addr)]);
Johannes Berg43ba7e92008-02-21 14:09:30 +0100111 while (sta) {
Shaddy Baddah5cf12e82008-11-28 17:08:10 +1100112 if (memcmp(sta->sta.addr, addr, ETH_ALEN) == 0)
Johannes Berg43ba7e92008-02-21 14:09:30 +0100113 break;
Johannes Bergd0709a62008-02-25 16:27:46 +0100114 sta = rcu_dereference(sta->hnext);
Johannes Berg43ba7e92008-02-21 14:09:30 +0100115 }
116 return sta;
117}
118
Luis Carlos Coboee385852008-02-23 15:17:11 +0100119struct sta_info *sta_info_get_by_idx(struct ieee80211_local *local, int idx,
120 struct net_device *dev)
121{
122 struct sta_info *sta;
123 int i = 0;
124
Johannes Bergd0709a62008-02-25 16:27:46 +0100125 list_for_each_entry_rcu(sta, &local->sta_list, list) {
Luis Carlos Cobo2a8ca292008-02-29 17:51:25 -0800126 if (dev && dev != sta->sdata->dev)
127 continue;
Luis Carlos Coboee385852008-02-23 15:17:11 +0100128 if (i < idx) {
129 ++i;
130 continue;
Luis Carlos Coboee385852008-02-23 15:17:11 +0100131 }
Luis Carlos Cobo2a8ca292008-02-29 17:51:25 -0800132 return sta;
Luis Carlos Coboee385852008-02-23 15:17:11 +0100133 }
Luis Carlos Coboee385852008-02-23 15:17:11 +0100134
135 return NULL;
136}
Jiri Bencf0706e82007-05-05 11:45:53 -0700137
Johannes Berg93e5deb2008-04-01 15:21:00 +0200138/**
139 * __sta_info_free - internal STA free helper
140 *
Randy Dunlap6ef307b2008-07-03 13:52:18 -0700141 * @local: pointer to the global information
Johannes Berg93e5deb2008-04-01 15:21:00 +0200142 * @sta: STA info to free
143 *
144 * This function must undo everything done by sta_info_alloc()
145 * that may happen before sta_info_insert().
146 */
147static void __sta_info_free(struct ieee80211_local *local,
148 struct sta_info *sta)
149{
Johannes Berg4b7679a2008-09-18 18:14:18 +0200150 rate_control_free_sta(sta);
Johannes Berg93e5deb2008-04-01 15:21:00 +0200151 rate_control_put(sta->rate_ctrl);
152
153#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Johannes Berg0c68ae262008-10-27 15:56:10 -0700154 printk(KERN_DEBUG "%s: Destroyed STA %pM\n",
155 wiphy_name(local->hw.wiphy), sta->sta.addr);
Johannes Berg93e5deb2008-04-01 15:21:00 +0200156#endif /* CONFIG_MAC80211_VERBOSE_DEBUG */
157
158 kfree(sta);
159}
160
Johannes Bergd0709a62008-02-25 16:27:46 +0100161void sta_info_destroy(struct sta_info *sta)
Jiri Bencf0706e82007-05-05 11:45:53 -0700162{
Johannes Berg97bff8e2008-03-31 19:23:00 +0200163 struct ieee80211_local *local;
Jiri Bencf0706e82007-05-05 11:45:53 -0700164 struct sk_buff *skb;
Ron Rindjunsky07db2182007-12-25 17:00:33 +0200165 int i;
Johannes Berg73651ee2008-02-25 16:27:47 +0100166
Johannes Berg97bff8e2008-03-31 19:23:00 +0200167 might_sleep();
168
Johannes Berg73651ee2008-02-25 16:27:47 +0100169 if (!sta)
170 return;
Jiri Bencf0706e82007-05-05 11:45:53 -0700171
Johannes Berg97bff8e2008-03-31 19:23:00 +0200172 local = sta->local;
Johannes Bergd0709a62008-02-25 16:27:46 +0100173
174 rate_control_remove_sta_debugfs(sta);
175 ieee80211_sta_debugfs_remove(sta);
176
177#ifdef CONFIG_MAC80211_MESH
178 if (ieee80211_vif_is_mesh(&sta->sdata->vif))
179 mesh_plink_deactivate(sta);
180#endif
181
Johannes Berg3b967662008-04-08 17:56:52 +0200182 /*
183 * We have only unlinked the key, and actually destroying it
184 * may mean it is removed from hardware which requires that
185 * the key->sta pointer is still valid, so flush the key todo
186 * list here.
187 *
188 * ieee80211_key_todo() will synchronize_rcu() so after this
189 * nothing can reference this sta struct any more.
190 */
191 ieee80211_key_todo();
Johannes Bergd0709a62008-02-25 16:27:46 +0100192
193#ifdef CONFIG_MAC80211_MESH
194 if (ieee80211_vif_is_mesh(&sta->sdata->vif))
195 del_timer_sync(&sta->plink_timer);
196#endif
197
Jiri Bencf0706e82007-05-05 11:45:53 -0700198 while ((skb = skb_dequeue(&sta->ps_tx_buf)) != NULL) {
199 local->total_ps_buffered--;
200 dev_kfree_skb_any(skb);
201 }
Johannes Bergd0709a62008-02-25 16:27:46 +0100202
203 while ((skb = skb_dequeue(&sta->tx_filtered)) != NULL)
Jiri Bencf0706e82007-05-05 11:45:53 -0700204 dev_kfree_skb_any(skb);
Johannes Bergd0709a62008-02-25 16:27:46 +0100205
Ron Rindjunskyfe3bf0f2008-01-28 14:07:19 +0200206 for (i = 0; i < STA_TID_NUM; i++) {
Johannes Berg55687e32009-02-10 21:25:51 +0100207 struct tid_ampdu_rx *tid_rx;
208 struct tid_ampdu_tx *tid_tx;
209
Johannes Berg07346f812008-05-03 01:02:02 +0200210 spin_lock_bh(&sta->lock);
Johannes Berg55687e32009-02-10 21:25:51 +0100211 tid_rx = sta->ampdu_mlme.tid_rx[i];
212 /* Make sure timer won't free the tid_rx struct, see below */
213 if (tid_rx)
214 tid_rx->shutdown = true;
Johannes Berg96f5e662009-02-12 00:51:53 +0100215
Johannes Berg07346f812008-05-03 01:02:02 +0200216 spin_unlock_bh(&sta->lock);
Johannes Berg55687e32009-02-10 21:25:51 +0100217
218 /*
219 * Outside spinlock - shutdown is true now so that the timer
220 * won't free tid_rx, we have to do that now. Can't let the
221 * timer do it because we have to sync the timer outside the
222 * lock that it takes itself.
223 */
224 if (tid_rx) {
225 del_timer_sync(&tid_rx->session_timer);
226 kfree(tid_rx);
227 }
228
229 /*
230 * No need to do such complications for TX agg sessions, the
231 * path leading to freeing the tid_tx struct goes via a call
232 * from the driver, and thus needs to look up the sta struct
233 * again, which cannot be found when we get here. Hence, we
234 * just need to delete the timer and free the aggregation
235 * info; we won't be telling the peer about it then but that
236 * doesn't matter if we're not talking to it again anyway.
237 */
238 tid_tx = sta->ampdu_mlme.tid_tx[i];
239 if (tid_tx) {
240 del_timer_sync(&tid_tx->addba_resp_timer);
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100241 /*
242 * STA removed while aggregation session being
243 * started? Bit odd, but purge frames anyway.
244 */
245 skb_queue_purge(&tid_tx->pending);
Johannes Berg55687e32009-02-10 21:25:51 +0100246 kfree(tid_tx);
247 }
Ron Rindjunskyfe3bf0f2008-01-28 14:07:19 +0200248 }
Ron Rindjunskycee24a32008-03-26 20:36:03 +0200249
Johannes Berg93e5deb2008-04-01 15:21:00 +0200250 __sta_info_free(local, sta);
Jiri Bencf0706e82007-05-05 11:45:53 -0700251}
252
253
Johannes Bergd0709a62008-02-25 16:27:46 +0100254/* Caller must hold local->sta_lock */
255static void sta_info_hash_add(struct ieee80211_local *local,
256 struct sta_info *sta)
Jiri Bencf0706e82007-05-05 11:45:53 -0700257{
Johannes Berg17741cd2008-09-11 00:02:02 +0200258 sta->hnext = local->sta_hash[STA_HASH(sta->sta.addr)];
259 rcu_assign_pointer(local->sta_hash[STA_HASH(sta->sta.addr)], sta);
Jiri Bencf0706e82007-05-05 11:45:53 -0700260}
Jiri Bencf0706e82007-05-05 11:45:53 -0700261
Johannes Berg73651ee2008-02-25 16:27:47 +0100262struct sta_info *sta_info_alloc(struct ieee80211_sub_if_data *sdata,
263 u8 *addr, gfp_t gfp)
Jiri Bencf0706e82007-05-05 11:45:53 -0700264{
Johannes Bergd0709a62008-02-25 16:27:46 +0100265 struct ieee80211_local *local = sdata->local;
Jiri Bencf0706e82007-05-05 11:45:53 -0700266 struct sta_info *sta;
Ron Rindjunsky16c5f152007-12-25 17:00:34 +0200267 int i;
Jiri Bencf0706e82007-05-05 11:45:53 -0700268
Johannes Berg17741cd2008-09-11 00:02:02 +0200269 sta = kzalloc(sizeof(*sta) + local->hw.sta_data_size, gfp);
Jiri Bencf0706e82007-05-05 11:45:53 -0700270 if (!sta)
Johannes Berg73651ee2008-02-25 16:27:47 +0100271 return NULL;
Jiri Bencf0706e82007-05-05 11:45:53 -0700272
Johannes Berg07346f812008-05-03 01:02:02 +0200273 spin_lock_init(&sta->lock);
Johannes Berg5a9f7b02008-06-18 14:58:09 +0200274 spin_lock_init(&sta->flaglock);
Johannes Berg07346f812008-05-03 01:02:02 +0200275
Johannes Berg17741cd2008-09-11 00:02:02 +0200276 memcpy(sta->sta.addr, addr, ETH_ALEN);
Johannes Bergd0709a62008-02-25 16:27:46 +0100277 sta->local = local;
278 sta->sdata = sdata;
Jiri Bencf0706e82007-05-05 11:45:53 -0700279
280 sta->rate_ctrl = rate_control_get(local->rate_ctrl);
Johannes Bergd0709a62008-02-25 16:27:46 +0100281 sta->rate_ctrl_priv = rate_control_alloc_sta(sta->rate_ctrl,
Johannes Berg4b7679a2008-09-18 18:14:18 +0200282 &sta->sta, gfp);
Jiri Bencf0706e82007-05-05 11:45:53 -0700283 if (!sta->rate_ctrl_priv) {
284 rate_control_put(sta->rate_ctrl);
Jiri Bencf0706e82007-05-05 11:45:53 -0700285 kfree(sta);
Johannes Berg73651ee2008-02-25 16:27:47 +0100286 return NULL;
Jiri Bencf0706e82007-05-05 11:45:53 -0700287 }
288
Ron Rindjunsky16c5f152007-12-25 17:00:34 +0200289 for (i = 0; i < STA_TID_NUM; i++) {
290 /* timer_to_tid must be initialized with identity mapping to
291 * enable session_timer's data differentiation. refer to
292 * sta_rx_agg_session_timer_expired for useage */
293 sta->timer_to_tid[i] = i;
Ron Rindjunskycee24a32008-03-26 20:36:03 +0200294 /* rx */
295 sta->ampdu_mlme.tid_state_rx[i] = HT_AGG_STATE_IDLE;
296 sta->ampdu_mlme.tid_rx[i] = NULL;
297 /* tx */
298 sta->ampdu_mlme.tid_state_tx[i] = HT_AGG_STATE_IDLE;
299 sta->ampdu_mlme.tid_tx[i] = NULL;
300 sta->ampdu_mlme.addba_req_num[i] = 0;
Ron Rindjunsky16c5f152007-12-25 17:00:34 +0200301 }
Jiri Bencf0706e82007-05-05 11:45:53 -0700302 skb_queue_head_init(&sta->ps_tx_buf);
303 skb_queue_head_init(&sta->tx_filtered);
Johannes Berg73651ee2008-02-25 16:27:47 +0100304
Senthil Balasubramaniancccaec92009-05-14 18:42:08 +0530305 for (i = 0; i < NUM_RX_DATA_QUEUES; i++)
306 sta->last_seq_ctrl[i] = cpu_to_le16(USHORT_MAX);
307
Johannes Berg73651ee2008-02-25 16:27:47 +0100308#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Johannes Berg0c68ae262008-10-27 15:56:10 -0700309 printk(KERN_DEBUG "%s: Allocated STA %pM\n",
310 wiphy_name(local->hw.wiphy), sta->sta.addr);
Johannes Berg73651ee2008-02-25 16:27:47 +0100311#endif /* CONFIG_MAC80211_VERBOSE_DEBUG */
312
Johannes Berg03e44972008-02-27 09:56:40 +0100313#ifdef CONFIG_MAC80211_MESH
Luis Carlos Cobob4e08ea2008-02-29 15:46:08 -0800314 sta->plink_state = PLINK_LISTEN;
Johannes Berg03e44972008-02-27 09:56:40 +0100315 init_timer(&sta->plink_timer);
316#endif
317
Johannes Berg73651ee2008-02-25 16:27:47 +0100318 return sta;
319}
320
321int sta_info_insert(struct sta_info *sta)
322{
323 struct ieee80211_local *local = sta->local;
324 struct ieee80211_sub_if_data *sdata = sta->sdata;
325 unsigned long flags;
Johannes Berg93e5deb2008-04-01 15:21:00 +0200326 int err = 0;
Johannes Berg73651ee2008-02-25 16:27:47 +0100327
Johannes Berg03e44972008-02-27 09:56:40 +0100328 /*
329 * Can't be a WARN_ON because it can be triggered through a race:
330 * something inserts a STA (on one CPU) without holding the RTNL
331 * and another CPU turns off the net device.
332 */
Johannes Berg93e5deb2008-04-01 15:21:00 +0200333 if (unlikely(!netif_running(sdata->dev))) {
334 err = -ENETDOWN;
335 goto out_free;
336 }
Johannes Berg03e44972008-02-27 09:56:40 +0100337
Johannes Berg17741cd2008-09-11 00:02:02 +0200338 if (WARN_ON(compare_ether_addr(sta->sta.addr, sdata->dev->dev_addr) == 0 ||
Johannes Bergc6a1fa12008-10-07 12:04:32 +0200339 is_multicast_ether_addr(sta->sta.addr))) {
Johannes Berg93e5deb2008-04-01 15:21:00 +0200340 err = -EINVAL;
341 goto out_free;
342 }
Johannes Berg44213b52008-02-25 16:27:49 +0100343
Johannes Bergd0709a62008-02-25 16:27:46 +0100344 spin_lock_irqsave(&local->sta_lock, flags);
Johannes Berg43ba7e92008-02-21 14:09:30 +0100345 /* check if STA exists already */
Johannes Berg4b7679a2008-09-18 18:14:18 +0200346 if (sta_info_get(local, sta->sta.addr)) {
Johannes Bergd0709a62008-02-25 16:27:46 +0100347 spin_unlock_irqrestore(&local->sta_lock, flags);
Johannes Berg93e5deb2008-04-01 15:21:00 +0200348 err = -EEXIST;
349 goto out_free;
Johannes Berg43ba7e92008-02-21 14:09:30 +0100350 }
Jiri Bencf0706e82007-05-05 11:45:53 -0700351 list_add(&sta->list, &local->sta_list);
Johannes Bergf5ea9122009-08-07 16:17:38 +0200352 local->sta_generation++;
Jiri Bencf0706e82007-05-05 11:45:53 -0700353 local->num_sta++;
354 sta_info_hash_add(local, sta);
Johannes Berg32bfd352007-12-19 01:31:26 +0100355
Johannes Bergd0709a62008-02-25 16:27:46 +0100356 /* notify driver */
357 if (local->ops->sta_notify) {
Johannes Berg05c914f2008-09-11 00:01:58 +0200358 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
Johannes Berg3e122be2008-07-09 14:40:34 +0200359 sdata = container_of(sdata->bss,
360 struct ieee80211_sub_if_data,
361 u.ap);
Johannes Berg32bfd352007-12-19 01:31:26 +0100362
Johannes Berg24487982009-04-23 18:52:52 +0200363 drv_sta_notify(local, &sdata->vif, STA_NOTIFY_ADD, &sta->sta);
Johannes Berg32bfd352007-12-19 01:31:26 +0100364 }
Johannes Bergd0709a62008-02-25 16:27:46 +0100365
Jiri Bencf0706e82007-05-05 11:45:53 -0700366#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Johannes Berg0c68ae262008-10-27 15:56:10 -0700367 printk(KERN_DEBUG "%s: Inserted STA %pM\n",
368 wiphy_name(local->hw.wiphy), sta->sta.addr);
Jiri Bencf0706e82007-05-05 11:45:53 -0700369#endif /* CONFIG_MAC80211_VERBOSE_DEBUG */
370
Johannes Berg73651ee2008-02-25 16:27:47 +0100371 spin_unlock_irqrestore(&local->sta_lock, flags);
372
Jiri Bence9f207f2007-05-05 11:46:38 -0700373#ifdef CONFIG_MAC80211_DEBUGFS
Johannes Berg93e5deb2008-04-01 15:21:00 +0200374 /*
375 * Debugfs entry adding might sleep, so schedule process
Michael Wube8755e2007-07-27 15:43:23 +0200376 * context task for adding entry for STAs that do not yet
Johannes Berg93e5deb2008-04-01 15:21:00 +0200377 * have one.
378 * NOTE: due to auto-freeing semantics this may only be done
379 * if the insertion is successful!
380 */
Johannes Berg49ec6fa22008-04-03 14:31:05 +0200381 schedule_work(&local->sta_debugfs_add);
Jiri Bence9f207f2007-05-05 11:46:38 -0700382#endif
383
Johannes Berg73651ee2008-02-25 16:27:47 +0100384 if (ieee80211_vif_is_mesh(&sdata->vif))
385 mesh_accept_plinks_update(sdata);
386
387 return 0;
Johannes Berg93e5deb2008-04-01 15:21:00 +0200388 out_free:
389 BUG_ON(!err);
390 __sta_info_free(local, sta);
391 return err;
Jiri Bencf0706e82007-05-05 11:45:53 -0700392}
393
Johannes Berg004c8722008-02-20 11:21:35 +0100394static inline void __bss_tim_set(struct ieee80211_if_ap *bss, u16 aid)
395{
396 /*
397 * This format has been mandated by the IEEE specifications,
398 * so this line may not be changed to use the __set_bit() format.
399 */
400 bss->tim[aid / 8] |= (1 << (aid % 8));
401}
402
403static inline void __bss_tim_clear(struct ieee80211_if_ap *bss, u16 aid)
404{
405 /*
406 * This format has been mandated by the IEEE specifications,
407 * so this line may not be changed to use the __clear_bit() format.
408 */
409 bss->tim[aid / 8] &= ~(1 << (aid % 8));
410}
411
412static void __sta_info_set_tim_bit(struct ieee80211_if_ap *bss,
413 struct sta_info *sta)
414{
Johannes Berg3e122be2008-07-09 14:40:34 +0200415 BUG_ON(!bss);
416
Johannes Berg17741cd2008-09-11 00:02:02 +0200417 __bss_tim_set(bss, sta->sta.aid);
Johannes Berg3e122be2008-07-09 14:40:34 +0200418
Johannes Bergd0709a62008-02-25 16:27:46 +0100419 if (sta->local->ops->set_tim) {
420 sta->local->tim_in_locked_section = true;
Johannes Berg24487982009-04-23 18:52:52 +0200421 drv_set_tim(sta->local, &sta->sta, true);
Johannes Bergd0709a62008-02-25 16:27:46 +0100422 sta->local->tim_in_locked_section = false;
423 }
Johannes Berg004c8722008-02-20 11:21:35 +0100424}
425
426void sta_info_set_tim_bit(struct sta_info *sta)
427{
Johannes Bergd0709a62008-02-25 16:27:46 +0100428 unsigned long flags;
Johannes Berg004c8722008-02-20 11:21:35 +0100429
Johannes Berg3e122be2008-07-09 14:40:34 +0200430 BUG_ON(!sta->sdata->bss);
431
Johannes Bergd0709a62008-02-25 16:27:46 +0100432 spin_lock_irqsave(&sta->local->sta_lock, flags);
433 __sta_info_set_tim_bit(sta->sdata->bss, sta);
434 spin_unlock_irqrestore(&sta->local->sta_lock, flags);
Johannes Berg004c8722008-02-20 11:21:35 +0100435}
436
437static void __sta_info_clear_tim_bit(struct ieee80211_if_ap *bss,
438 struct sta_info *sta)
439{
Johannes Berg3e122be2008-07-09 14:40:34 +0200440 BUG_ON(!bss);
441
Johannes Berg17741cd2008-09-11 00:02:02 +0200442 __bss_tim_clear(bss, sta->sta.aid);
Johannes Berg3e122be2008-07-09 14:40:34 +0200443
Johannes Bergd0709a62008-02-25 16:27:46 +0100444 if (sta->local->ops->set_tim) {
445 sta->local->tim_in_locked_section = true;
Johannes Berg24487982009-04-23 18:52:52 +0200446 drv_set_tim(sta->local, &sta->sta, false);
Johannes Bergd0709a62008-02-25 16:27:46 +0100447 sta->local->tim_in_locked_section = false;
448 }
Johannes Berg004c8722008-02-20 11:21:35 +0100449}
450
451void sta_info_clear_tim_bit(struct sta_info *sta)
452{
Johannes Bergd0709a62008-02-25 16:27:46 +0100453 unsigned long flags;
Johannes Berg004c8722008-02-20 11:21:35 +0100454
Johannes Berg3e122be2008-07-09 14:40:34 +0200455 BUG_ON(!sta->sdata->bss);
456
Johannes Bergd0709a62008-02-25 16:27:46 +0100457 spin_lock_irqsave(&sta->local->sta_lock, flags);
458 __sta_info_clear_tim_bit(sta->sdata->bss, sta);
459 spin_unlock_irqrestore(&sta->local->sta_lock, flags);
Johannes Berg004c8722008-02-20 11:21:35 +0100460}
461
Johannes Berg24723d12008-09-11 00:01:46 +0200462static void __sta_info_unlink(struct sta_info **sta)
Johannes Bergd0709a62008-02-25 16:27:46 +0100463{
464 struct ieee80211_local *local = (*sta)->local;
465 struct ieee80211_sub_if_data *sdata = (*sta)->sdata;
Johannes Bergd0709a62008-02-25 16:27:46 +0100466 /*
467 * pull caller's reference if we're already gone.
468 */
469 if (sta_info_hash_del(local, *sta)) {
470 *sta = NULL;
Michael Wube8755e2007-07-27 15:43:23 +0200471 return;
Johannes Bergd0709a62008-02-25 16:27:46 +0100472 }
Michael Wube8755e2007-07-27 15:43:23 +0200473
Johannes Berg3b967662008-04-08 17:56:52 +0200474 if ((*sta)->key) {
475 ieee80211_key_free((*sta)->key);
476 WARN_ON((*sta)->key);
477 }
478
Johannes Berg7d1559f2008-04-08 13:08:20 +0200479 list_del(&(*sta)->list);
480
Johannes Berg07346f812008-05-03 01:02:02 +0200481 if (test_and_clear_sta_flags(*sta, WLAN_STA_PS)) {
Johannes Berg3e122be2008-07-09 14:40:34 +0200482 BUG_ON(!sdata->bss);
483
484 atomic_dec(&sdata->bss->num_sta_ps);
Johannes Berg7d1559f2008-04-08 13:08:20 +0200485 __sta_info_clear_tim_bit(sdata->bss, *sta);
486 }
487
488 local->num_sta--;
Johannes Bergf5ea9122009-08-07 16:17:38 +0200489 local->sta_generation++;
Johannes Berg7d1559f2008-04-08 13:08:20 +0200490
491 if (local->ops->sta_notify) {
Johannes Berg05c914f2008-09-11 00:01:58 +0200492 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
Johannes Berg3e122be2008-07-09 14:40:34 +0200493 sdata = container_of(sdata->bss,
494 struct ieee80211_sub_if_data,
495 u.ap);
Johannes Berg7d1559f2008-04-08 13:08:20 +0200496
Johannes Berg24487982009-04-23 18:52:52 +0200497 drv_sta_notify(local, &sdata->vif, STA_NOTIFY_REMOVE,
498 &(*sta)->sta);
Johannes Berg7d1559f2008-04-08 13:08:20 +0200499 }
500
501 if (ieee80211_vif_is_mesh(&sdata->vif)) {
502 mesh_accept_plinks_update(sdata);
503#ifdef CONFIG_MAC80211_MESH
504 del_timer(&(*sta)->plink_timer);
505#endif
506 }
507
508#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Johannes Berg0c68ae262008-10-27 15:56:10 -0700509 printk(KERN_DEBUG "%s: Removed STA %pM\n",
510 wiphy_name(local->hw.wiphy), (*sta)->sta.addr);
Johannes Berg7d1559f2008-04-08 13:08:20 +0200511#endif /* CONFIG_MAC80211_VERBOSE_DEBUG */
512
Johannes Bergd0709a62008-02-25 16:27:46 +0100513 /*
Johannes Berg7d1559f2008-04-08 13:08:20 +0200514 * Finally, pull caller's reference if the STA is pinned by the
Johannes Bergd0709a62008-02-25 16:27:46 +0100515 * task that is adding the debugfs entries. In that case, we
516 * leave the STA "to be freed".
517 *
518 * The rules are not trivial, but not too complex either:
519 * (1) pin_status is only modified under the sta_lock
Johannes Berg49ec6fa22008-04-03 14:31:05 +0200520 * (2) STAs may only be pinned under the RTNL so that
521 * sta_info_flush() is guaranteed to actually destroy
522 * all STAs that are active for a given interface, this
523 * is required for correctness because otherwise we
524 * could notify a driver that an interface is going
525 * away and only after that (!) notify it about a STA
526 * on that interface going away.
527 * (3) sta_info_debugfs_add_work() will set the status
Johannes Bergd0709a62008-02-25 16:27:46 +0100528 * to PINNED when it found an item that needs a new
529 * debugfs directory created. In that case, that item
530 * must not be freed although all *RCU* users are done
531 * with it. Hence, we tell the caller of _unlink()
532 * that the item is already gone (as can happen when
533 * two tasks try to unlink/destroy at the same time)
Johannes Berg49ec6fa22008-04-03 14:31:05 +0200534 * (4) We set the pin_status to DESTROY here when we
Johannes Bergd0709a62008-02-25 16:27:46 +0100535 * find such an item.
Johannes Berg49ec6fa22008-04-03 14:31:05 +0200536 * (5) sta_info_debugfs_add_work() will reset the pin_status
Johannes Bergd0709a62008-02-25 16:27:46 +0100537 * from PINNED to NORMAL when it is done with the item,
538 * but will check for DESTROY before resetting it in
539 * which case it will free the item.
540 */
541 if ((*sta)->pin_status == STA_INFO_PIN_STAT_PINNED) {
542 (*sta)->pin_status = STA_INFO_PIN_STAT_DESTROY;
543 *sta = NULL;
544 return;
545 }
Jiri Bencf0706e82007-05-05 11:45:53 -0700546}
547
Johannes Bergd0709a62008-02-25 16:27:46 +0100548void sta_info_unlink(struct sta_info **sta)
549{
550 struct ieee80211_local *local = (*sta)->local;
551 unsigned long flags;
552
553 spin_lock_irqsave(&local->sta_lock, flags);
554 __sta_info_unlink(sta);
555 spin_unlock_irqrestore(&local->sta_lock, flags);
556}
Jiri Bencf0706e82007-05-05 11:45:53 -0700557
Johannes Berg57c4d7b2009-04-23 16:10:04 +0200558static int sta_info_buffer_expired(struct sta_info *sta,
559 struct sk_buff *skb)
Jiri Bencf0706e82007-05-05 11:45:53 -0700560{
Johannes Berge039fa42008-05-15 12:55:29 +0200561 struct ieee80211_tx_info *info;
Jiri Bencf0706e82007-05-05 11:45:53 -0700562 int timeout;
563
564 if (!skb)
565 return 0;
566
Johannes Berge039fa42008-05-15 12:55:29 +0200567 info = IEEE80211_SKB_CB(skb);
Jiri Bencf0706e82007-05-05 11:45:53 -0700568
569 /* Timeout: (2 * listen_interval * beacon_int * 1024 / 1000000) sec */
Johannes Berg57c4d7b2009-04-23 16:10:04 +0200570 timeout = (sta->listen_interval *
571 sta->sdata->vif.bss_conf.beacon_int *
572 32 / 15625) * HZ;
Jiri Bencf0706e82007-05-05 11:45:53 -0700573 if (timeout < STA_TX_BUFFER_EXPIRE)
574 timeout = STA_TX_BUFFER_EXPIRE;
Johannes Berge039fa42008-05-15 12:55:29 +0200575 return time_after(jiffies, info->control.jiffies + timeout);
Jiri Bencf0706e82007-05-05 11:45:53 -0700576}
577
578
579static void sta_info_cleanup_expire_buffered(struct ieee80211_local *local,
580 struct sta_info *sta)
581{
582 unsigned long flags;
583 struct sk_buff *skb;
Johannes Berg836341a2008-02-20 02:07:21 +0100584 struct ieee80211_sub_if_data *sdata;
Jiri Bencf0706e82007-05-05 11:45:53 -0700585
586 if (skb_queue_empty(&sta->ps_tx_buf))
587 return;
588
589 for (;;) {
590 spin_lock_irqsave(&sta->ps_tx_buf.lock, flags);
591 skb = skb_peek(&sta->ps_tx_buf);
Johannes Berg57c4d7b2009-04-23 16:10:04 +0200592 if (sta_info_buffer_expired(sta, skb))
Jiri Bencf0706e82007-05-05 11:45:53 -0700593 skb = __skb_dequeue(&sta->ps_tx_buf);
Johannes Berg836341a2008-02-20 02:07:21 +0100594 else
Jiri Bencf0706e82007-05-05 11:45:53 -0700595 skb = NULL;
596 spin_unlock_irqrestore(&sta->ps_tx_buf.lock, flags);
597
Johannes Berg836341a2008-02-20 02:07:21 +0100598 if (!skb)
Jiri Bencf0706e82007-05-05 11:45:53 -0700599 break;
Johannes Berg836341a2008-02-20 02:07:21 +0100600
Johannes Bergd0709a62008-02-25 16:27:46 +0100601 sdata = sta->sdata;
Johannes Berg836341a2008-02-20 02:07:21 +0100602 local->total_ps_buffered--;
Johannes Bergf4ea83d2008-06-30 15:10:46 +0200603#ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
Johannes Berg0c68ae262008-10-27 15:56:10 -0700604 printk(KERN_DEBUG "Buffered frame expired (STA %pM)\n",
605 sta->sta.addr);
Johannes Bergf4ea83d2008-06-30 15:10:46 +0200606#endif
Johannes Berg836341a2008-02-20 02:07:21 +0100607 dev_kfree_skb(skb);
608
Johannes Berg004c8722008-02-20 11:21:35 +0100609 if (skb_queue_empty(&sta->ps_tx_buf))
610 sta_info_clear_tim_bit(sta);
Jiri Bencf0706e82007-05-05 11:45:53 -0700611 }
612}
613
614
615static void sta_info_cleanup(unsigned long data)
616{
617 struct ieee80211_local *local = (struct ieee80211_local *) data;
618 struct sta_info *sta;
619
Johannes Bergd0709a62008-02-25 16:27:46 +0100620 rcu_read_lock();
621 list_for_each_entry_rcu(sta, &local->sta_list, list)
Jiri Bencf0706e82007-05-05 11:45:53 -0700622 sta_info_cleanup_expire_buffered(local, sta);
Johannes Bergd0709a62008-02-25 16:27:46 +0100623 rcu_read_unlock();
Jiri Bencf0706e82007-05-05 11:45:53 -0700624
Johannes Berg5bb644a2009-05-17 11:40:42 +0200625 if (local->quiescing)
626 return;
627
Johannes Berg0d174402007-12-17 15:07:43 +0100628 local->sta_cleanup.expires =
629 round_jiffies(jiffies + STA_INFO_CLEANUP_INTERVAL);
Jiri Bencf0706e82007-05-05 11:45:53 -0700630 add_timer(&local->sta_cleanup);
631}
632
Jiri Bence9f207f2007-05-05 11:46:38 -0700633#ifdef CONFIG_MAC80211_DEBUGFS
Jiri Slaby4d6141c32008-04-07 21:53:49 +0200634/*
635 * See comment in __sta_info_unlink,
636 * caller must hold local->sta_lock.
637 */
638static void __sta_info_pin(struct sta_info *sta)
639{
640 WARN_ON(sta->pin_status != STA_INFO_PIN_STAT_NORMAL);
641 sta->pin_status = STA_INFO_PIN_STAT_PINNED;
642}
643
644/*
645 * See comment in __sta_info_unlink, returns sta if it
646 * needs to be destroyed.
647 */
648static struct sta_info *__sta_info_unpin(struct sta_info *sta)
649{
650 struct sta_info *ret = NULL;
651 unsigned long flags;
652
653 spin_lock_irqsave(&sta->local->sta_lock, flags);
654 WARN_ON(sta->pin_status != STA_INFO_PIN_STAT_DESTROY &&
655 sta->pin_status != STA_INFO_PIN_STAT_PINNED);
656 if (sta->pin_status == STA_INFO_PIN_STAT_DESTROY)
657 ret = sta;
658 sta->pin_status = STA_INFO_PIN_STAT_NORMAL;
659 spin_unlock_irqrestore(&sta->local->sta_lock, flags);
660
661 return ret;
662}
663
Johannes Bergd0709a62008-02-25 16:27:46 +0100664static void sta_info_debugfs_add_work(struct work_struct *work)
Jiri Bence9f207f2007-05-05 11:46:38 -0700665{
666 struct ieee80211_local *local =
667 container_of(work, struct ieee80211_local, sta_debugfs_add);
668 struct sta_info *sta, *tmp;
Johannes Bergd0709a62008-02-25 16:27:46 +0100669 unsigned long flags;
Jiri Bence9f207f2007-05-05 11:46:38 -0700670
Johannes Berg49ec6fa22008-04-03 14:31:05 +0200671 /* We need to keep the RTNL across the whole pinned status. */
672 rtnl_lock();
Jiri Bence9f207f2007-05-05 11:46:38 -0700673 while (1) {
Jiri Bence9f207f2007-05-05 11:46:38 -0700674 sta = NULL;
Johannes Bergd0709a62008-02-25 16:27:46 +0100675
676 spin_lock_irqsave(&local->sta_lock, flags);
Jiri Bence9f207f2007-05-05 11:46:38 -0700677 list_for_each_entry(tmp, &local->sta_list, list) {
Johannes Berg63044e92008-10-07 12:04:29 +0200678 /*
679 * debugfs.add_has_run will be set by
680 * ieee80211_sta_debugfs_add regardless
681 * of what else it does.
682 */
683 if (!tmp->debugfs.add_has_run) {
Jiri Bence9f207f2007-05-05 11:46:38 -0700684 sta = tmp;
Johannes Bergd0709a62008-02-25 16:27:46 +0100685 __sta_info_pin(sta);
Jiri Bence9f207f2007-05-05 11:46:38 -0700686 break;
687 }
688 }
Johannes Bergd0709a62008-02-25 16:27:46 +0100689 spin_unlock_irqrestore(&local->sta_lock, flags);
Jiri Bence9f207f2007-05-05 11:46:38 -0700690
691 if (!sta)
692 break;
693
Jiri Bence9f207f2007-05-05 11:46:38 -0700694 ieee80211_sta_debugfs_add(sta);
695 rate_control_add_sta_debugfs(sta);
Johannes Bergd0709a62008-02-25 16:27:46 +0100696
697 sta = __sta_info_unpin(sta);
Johannes Berg4f6fab42008-03-31 19:23:02 +0200698 sta_info_destroy(sta);
Jiri Bence9f207f2007-05-05 11:46:38 -0700699 }
Johannes Berg49ec6fa22008-04-03 14:31:05 +0200700 rtnl_unlock();
Jiri Bence9f207f2007-05-05 11:46:38 -0700701}
702#endif
703
Jiri Bencf0706e82007-05-05 11:45:53 -0700704void sta_info_init(struct ieee80211_local *local)
705{
Johannes Bergd0709a62008-02-25 16:27:46 +0100706 spin_lock_init(&local->sta_lock);
Jiri Bencf0706e82007-05-05 11:45:53 -0700707 INIT_LIST_HEAD(&local->sta_list);
Jiri Bencf0706e82007-05-05 11:45:53 -0700708
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -0800709 setup_timer(&local->sta_cleanup, sta_info_cleanup,
710 (unsigned long)local);
Johannes Berg0d174402007-12-17 15:07:43 +0100711 local->sta_cleanup.expires =
712 round_jiffies(jiffies + STA_INFO_CLEANUP_INTERVAL);
Jiri Bence9f207f2007-05-05 11:46:38 -0700713
714#ifdef CONFIG_MAC80211_DEBUGFS
Johannes Bergd0709a62008-02-25 16:27:46 +0100715 INIT_WORK(&local->sta_debugfs_add, sta_info_debugfs_add_work);
Jiri Bence9f207f2007-05-05 11:46:38 -0700716#endif
Jiri Bencf0706e82007-05-05 11:45:53 -0700717}
718
719int sta_info_start(struct ieee80211_local *local)
720{
721 add_timer(&local->sta_cleanup);
722 return 0;
723}
724
725void sta_info_stop(struct ieee80211_local *local)
726{
Jiri Bencf0706e82007-05-05 11:45:53 -0700727 del_timer(&local->sta_cleanup);
Johannes Berg49ec6fa22008-04-03 14:31:05 +0200728#ifdef CONFIG_MAC80211_DEBUGFS
729 /*
730 * Make sure the debugfs adding work isn't pending after this
731 * because we're about to be destroyed. It doesn't matter
732 * whether it ran or not since we're going to flush all STAs
733 * anyway.
734 */
735 cancel_work_sync(&local->sta_debugfs_add);
736#endif
Johannes Bergdc6676b2008-03-31 19:23:03 +0200737
Michael Wube8755e2007-07-27 15:43:23 +0200738 sta_info_flush(local, NULL);
Jiri Bencf0706e82007-05-05 11:45:53 -0700739}
740
Jiri Bencf0706e82007-05-05 11:45:53 -0700741/**
742 * sta_info_flush - flush matching STA entries from the STA table
Johannes Berg44213b52008-02-25 16:27:49 +0100743 *
744 * Returns the number of removed STA entries.
745 *
Jiri Bencf0706e82007-05-05 11:45:53 -0700746 * @local: local interface data
Johannes Bergd0709a62008-02-25 16:27:46 +0100747 * @sdata: matching rule for the net device (sta->dev) or %NULL to match all STAs
Jiri Bencf0706e82007-05-05 11:45:53 -0700748 */
Johannes Berg44213b52008-02-25 16:27:49 +0100749int sta_info_flush(struct ieee80211_local *local,
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200750 struct ieee80211_sub_if_data *sdata)
Jiri Bencf0706e82007-05-05 11:45:53 -0700751{
752 struct sta_info *sta, *tmp;
Michael Wube8755e2007-07-27 15:43:23 +0200753 LIST_HEAD(tmp_list);
Johannes Berg44213b52008-02-25 16:27:49 +0100754 int ret = 0;
Johannes Bergd0709a62008-02-25 16:27:46 +0100755 unsigned long flags;
Jiri Bencf0706e82007-05-05 11:45:53 -0700756
Johannes Bergd0709a62008-02-25 16:27:46 +0100757 might_sleep();
758
759 spin_lock_irqsave(&local->sta_lock, flags);
760 list_for_each_entry_safe(sta, tmp, &local->sta_list, list) {
761 if (!sdata || sdata == sta->sdata) {
762 __sta_info_unlink(&sta);
Johannes Berg44213b52008-02-25 16:27:49 +0100763 if (sta) {
Johannes Bergd0709a62008-02-25 16:27:46 +0100764 list_add_tail(&sta->list, &tmp_list);
Johannes Berg44213b52008-02-25 16:27:49 +0100765 ret++;
766 }
Michael Wube8755e2007-07-27 15:43:23 +0200767 }
Michael Wube8755e2007-07-27 15:43:23 +0200768 }
Johannes Bergd0709a62008-02-25 16:27:46 +0100769 spin_unlock_irqrestore(&local->sta_lock, flags);
770
Johannes Bergd0709a62008-02-25 16:27:46 +0100771 list_for_each_entry_safe(sta, tmp, &tmp_list, list)
772 sta_info_destroy(sta);
Johannes Berg44213b52008-02-25 16:27:49 +0100773
774 return ret;
Jiri Bencf0706e82007-05-05 11:45:53 -0700775}
Johannes Bergdc6676b2008-03-31 19:23:03 +0200776
Johannes Berg24723d12008-09-11 00:01:46 +0200777void ieee80211_sta_expire(struct ieee80211_sub_if_data *sdata,
778 unsigned long exp_time)
779{
780 struct ieee80211_local *local = sdata->local;
781 struct sta_info *sta, *tmp;
782 LIST_HEAD(tmp_list);
Johannes Berg24723d12008-09-11 00:01:46 +0200783 unsigned long flags;
784
785 spin_lock_irqsave(&local->sta_lock, flags);
786 list_for_each_entry_safe(sta, tmp, &local->sta_list, list)
787 if (time_after(jiffies, sta->last_rx + exp_time)) {
788#ifdef CONFIG_MAC80211_IBSS_DEBUG
Johannes Berg0c68ae262008-10-27 15:56:10 -0700789 printk(KERN_DEBUG "%s: expiring inactive STA %pM\n",
790 sdata->dev->name, sta->sta.addr);
Johannes Berg24723d12008-09-11 00:01:46 +0200791#endif
792 __sta_info_unlink(&sta);
793 if (sta)
794 list_add(&sta->list, &tmp_list);
795 }
796 spin_unlock_irqrestore(&local->sta_lock, flags);
797
798 list_for_each_entry_safe(sta, tmp, &tmp_list, list)
799 sta_info_destroy(sta);
800}
Johannes Berg17741cd2008-09-11 00:02:02 +0200801
802struct ieee80211_sta *ieee80211_find_sta(struct ieee80211_hw *hw,
Johannes Bergc6a1fa12008-10-07 12:04:32 +0200803 const u8 *addr)
Johannes Berg17741cd2008-09-11 00:02:02 +0200804{
Johannes Berg4b7679a2008-09-18 18:14:18 +0200805 struct sta_info *sta = sta_info_get(hw_to_local(hw), addr);
Johannes Berg17741cd2008-09-11 00:02:02 +0200806
807 if (!sta)
808 return NULL;
809 return &sta->sta;
810}
811EXPORT_SYMBOL(ieee80211_find_sta);