blob: a98ea273a155c5eab3f971439d4ac25b2e46cd28 [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 *
47 * Because there are debugfs entries for each station, and adding those
48 * must be able to sleep, it is also possible to "pin" a station entry,
49 * that means it can be removed from the hash table but not be freed.
Johannes Berg93e5deb2008-04-01 15:21:00 +020050 * See the comment in __sta_info_unlink() for more information, this is
51 * an internal capability only.
Johannes Bergd0709a62008-02-25 16:27:46 +010052 *
53 * In order to remove a STA info structure, the caller needs to first
Johannes Bergdbbea672008-02-26 14:34:06 +010054 * unlink it (sta_info_unlink()) from the list and hash tables and
Johannes Berg3b967662008-04-08 17:56:52 +020055 * then destroy it; sta_info_destroy() will wait for an RCU grace period
56 * to elapse before actually freeing it. Due to the pinning and the
57 * possibility of multiple callers trying to remove the same STA info at
58 * the same time, sta_info_unlink() can clear the STA info pointer it is
59 * passed to indicate that the STA info is owned by somebody else now.
Johannes Bergd0709a62008-02-25 16:27:46 +010060 *
Johannes Bergdbbea672008-02-26 14:34:06 +010061 * If sta_info_unlink() did not clear the pointer then the caller owns
Johannes Bergd0709a62008-02-25 16:27:46 +010062 * the STA info structure now and is responsible of destroying it with
Johannes Berg3b967662008-04-08 17:56:52 +020063 * a call to sta_info_destroy().
Johannes Bergd0709a62008-02-25 16:27:46 +010064 *
65 * In all other cases, there is no concept of ownership on a STA entry,
66 * each structure is owned by the global hash table/list until it is
67 * removed. All users of the structure need to be RCU protected so that
68 * the structure won't be freed before they are done using it.
69 */
Jiri Bencf0706e82007-05-05 11:45:53 -070070
71/* Caller must hold local->sta_lock */
Michael Wube8755e2007-07-27 15:43:23 +020072static int sta_info_hash_del(struct ieee80211_local *local,
73 struct sta_info *sta)
Jiri Bencf0706e82007-05-05 11:45:53 -070074{
75 struct sta_info *s;
76
Johannes Berg17741cd2008-09-11 00:02:02 +020077 s = local->sta_hash[STA_HASH(sta->sta.addr)];
Jiri Bencf0706e82007-05-05 11:45:53 -070078 if (!s)
Michael Wube8755e2007-07-27 15:43:23 +020079 return -ENOENT;
80 if (s == sta) {
Johannes Berg17741cd2008-09-11 00:02:02 +020081 rcu_assign_pointer(local->sta_hash[STA_HASH(sta->sta.addr)],
Johannes Bergd0709a62008-02-25 16:27:46 +010082 s->hnext);
Michael Wube8755e2007-07-27 15:43:23 +020083 return 0;
Jiri Bencf0706e82007-05-05 11:45:53 -070084 }
85
Michael Wube8755e2007-07-27 15:43:23 +020086 while (s->hnext && s->hnext != sta)
Jiri Bencf0706e82007-05-05 11:45:53 -070087 s = s->hnext;
Michael Wube8755e2007-07-27 15:43:23 +020088 if (s->hnext) {
Johannes Bergd0709a62008-02-25 16:27:46 +010089 rcu_assign_pointer(s->hnext, sta->hnext);
Michael Wube8755e2007-07-27 15:43:23 +020090 return 0;
91 }
Jiri Bencf0706e82007-05-05 11:45:53 -070092
Michael Wube8755e2007-07-27 15:43:23 +020093 return -ENOENT;
Jiri Bencf0706e82007-05-05 11:45:53 -070094}
95
Johannes Bergd0709a62008-02-25 16:27:46 +010096/* protected by RCU */
Johannes Berg4b7679a2008-09-18 18:14:18 +020097struct sta_info *sta_info_get(struct ieee80211_local *local, const u8 *addr)
Johannes Berg43ba7e92008-02-21 14:09:30 +010098{
99 struct sta_info *sta;
100
Johannes Bergd0709a62008-02-25 16:27:46 +0100101 sta = rcu_dereference(local->sta_hash[STA_HASH(addr)]);
Johannes Berg43ba7e92008-02-21 14:09:30 +0100102 while (sta) {
Shaddy Baddah5cf12e82008-11-28 17:08:10 +1100103 if (memcmp(sta->sta.addr, addr, ETH_ALEN) == 0)
Johannes Berg43ba7e92008-02-21 14:09:30 +0100104 break;
Johannes Bergd0709a62008-02-25 16:27:46 +0100105 sta = rcu_dereference(sta->hnext);
Johannes Berg43ba7e92008-02-21 14:09:30 +0100106 }
107 return sta;
108}
109
Luis Carlos Coboee385852008-02-23 15:17:11 +0100110struct sta_info *sta_info_get_by_idx(struct ieee80211_local *local, int idx,
111 struct net_device *dev)
112{
113 struct sta_info *sta;
114 int i = 0;
115
Johannes Bergd0709a62008-02-25 16:27:46 +0100116 list_for_each_entry_rcu(sta, &local->sta_list, list) {
Luis Carlos Cobo2a8ca292008-02-29 17:51:25 -0800117 if (dev && dev != sta->sdata->dev)
118 continue;
Luis Carlos Coboee385852008-02-23 15:17:11 +0100119 if (i < idx) {
120 ++i;
121 continue;
Luis Carlos Coboee385852008-02-23 15:17:11 +0100122 }
Luis Carlos Cobo2a8ca292008-02-29 17:51:25 -0800123 return sta;
Luis Carlos Coboee385852008-02-23 15:17:11 +0100124 }
Luis Carlos Coboee385852008-02-23 15:17:11 +0100125
126 return NULL;
127}
Jiri Bencf0706e82007-05-05 11:45:53 -0700128
Johannes Berg93e5deb2008-04-01 15:21:00 +0200129/**
130 * __sta_info_free - internal STA free helper
131 *
Randy Dunlap6ef307b2008-07-03 13:52:18 -0700132 * @local: pointer to the global information
Johannes Berg93e5deb2008-04-01 15:21:00 +0200133 * @sta: STA info to free
134 *
135 * This function must undo everything done by sta_info_alloc()
136 * that may happen before sta_info_insert().
137 */
138static void __sta_info_free(struct ieee80211_local *local,
139 struct sta_info *sta)
140{
Johannes Berg4b7679a2008-09-18 18:14:18 +0200141 rate_control_free_sta(sta);
Johannes Berg93e5deb2008-04-01 15:21:00 +0200142 rate_control_put(sta->rate_ctrl);
143
144#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Johannes Berg0c68ae262008-10-27 15:56:10 -0700145 printk(KERN_DEBUG "%s: Destroyed STA %pM\n",
146 wiphy_name(local->hw.wiphy), sta->sta.addr);
Johannes Berg93e5deb2008-04-01 15:21:00 +0200147#endif /* CONFIG_MAC80211_VERBOSE_DEBUG */
148
149 kfree(sta);
150}
151
Johannes Bergd0709a62008-02-25 16:27:46 +0100152void sta_info_destroy(struct sta_info *sta)
Jiri Bencf0706e82007-05-05 11:45:53 -0700153{
Johannes Berg97bff8e2008-03-31 19:23:00 +0200154 struct ieee80211_local *local;
Jiri Bencf0706e82007-05-05 11:45:53 -0700155 struct sk_buff *skb;
Ron Rindjunsky07db2182007-12-25 17:00:33 +0200156 int i;
Johannes Berg73651ee2008-02-25 16:27:47 +0100157
Johannes Berg97bff8e2008-03-31 19:23:00 +0200158 might_sleep();
159
Johannes Berg73651ee2008-02-25 16:27:47 +0100160 if (!sta)
161 return;
Jiri Bencf0706e82007-05-05 11:45:53 -0700162
Johannes Berg97bff8e2008-03-31 19:23:00 +0200163 local = sta->local;
Johannes Bergd0709a62008-02-25 16:27:46 +0100164
165 rate_control_remove_sta_debugfs(sta);
166 ieee80211_sta_debugfs_remove(sta);
167
168#ifdef CONFIG_MAC80211_MESH
169 if (ieee80211_vif_is_mesh(&sta->sdata->vif))
170 mesh_plink_deactivate(sta);
171#endif
172
Johannes Berg3b967662008-04-08 17:56:52 +0200173 /*
174 * We have only unlinked the key, and actually destroying it
175 * may mean it is removed from hardware which requires that
176 * the key->sta pointer is still valid, so flush the key todo
177 * list here.
178 *
179 * ieee80211_key_todo() will synchronize_rcu() so after this
180 * nothing can reference this sta struct any more.
181 */
182 ieee80211_key_todo();
Johannes Bergd0709a62008-02-25 16:27:46 +0100183
184#ifdef CONFIG_MAC80211_MESH
185 if (ieee80211_vif_is_mesh(&sta->sdata->vif))
186 del_timer_sync(&sta->plink_timer);
187#endif
188
Jiri Bencf0706e82007-05-05 11:45:53 -0700189 while ((skb = skb_dequeue(&sta->ps_tx_buf)) != NULL) {
190 local->total_ps_buffered--;
191 dev_kfree_skb_any(skb);
192 }
Johannes Bergd0709a62008-02-25 16:27:46 +0100193
194 while ((skb = skb_dequeue(&sta->tx_filtered)) != NULL)
Jiri Bencf0706e82007-05-05 11:45:53 -0700195 dev_kfree_skb_any(skb);
Johannes Bergd0709a62008-02-25 16:27:46 +0100196
Ron Rindjunskyfe3bf0f2008-01-28 14:07:19 +0200197 for (i = 0; i < STA_TID_NUM; i++) {
Johannes Berg55687e32009-02-10 21:25:51 +0100198 struct tid_ampdu_rx *tid_rx;
199 struct tid_ampdu_tx *tid_tx;
200
Johannes Berg07346f812008-05-03 01:02:02 +0200201 spin_lock_bh(&sta->lock);
Johannes Berg55687e32009-02-10 21:25:51 +0100202 tid_rx = sta->ampdu_mlme.tid_rx[i];
203 /* Make sure timer won't free the tid_rx struct, see below */
204 if (tid_rx)
205 tid_rx->shutdown = true;
Johannes Berg96f5e662009-02-12 00:51:53 +0100206
Johannes Berg07346f812008-05-03 01:02:02 +0200207 spin_unlock_bh(&sta->lock);
Johannes Berg55687e32009-02-10 21:25:51 +0100208
209 /*
210 * Outside spinlock - shutdown is true now so that the timer
211 * won't free tid_rx, we have to do that now. Can't let the
212 * timer do it because we have to sync the timer outside the
213 * lock that it takes itself.
214 */
215 if (tid_rx) {
216 del_timer_sync(&tid_rx->session_timer);
217 kfree(tid_rx);
218 }
219
220 /*
221 * No need to do such complications for TX agg sessions, the
222 * path leading to freeing the tid_tx struct goes via a call
223 * from the driver, and thus needs to look up the sta struct
224 * again, which cannot be found when we get here. Hence, we
225 * just need to delete the timer and free the aggregation
226 * info; we won't be telling the peer about it then but that
227 * doesn't matter if we're not talking to it again anyway.
228 */
229 tid_tx = sta->ampdu_mlme.tid_tx[i];
230 if (tid_tx) {
231 del_timer_sync(&tid_tx->addba_resp_timer);
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100232 /*
233 * STA removed while aggregation session being
234 * started? Bit odd, but purge frames anyway.
235 */
236 skb_queue_purge(&tid_tx->pending);
Johannes Berg55687e32009-02-10 21:25:51 +0100237 kfree(tid_tx);
238 }
Ron Rindjunskyfe3bf0f2008-01-28 14:07:19 +0200239 }
Ron Rindjunskycee24a32008-03-26 20:36:03 +0200240
Johannes Berg93e5deb2008-04-01 15:21:00 +0200241 __sta_info_free(local, sta);
Jiri Bencf0706e82007-05-05 11:45:53 -0700242}
243
244
Johannes Bergd0709a62008-02-25 16:27:46 +0100245/* Caller must hold local->sta_lock */
246static void sta_info_hash_add(struct ieee80211_local *local,
247 struct sta_info *sta)
Jiri Bencf0706e82007-05-05 11:45:53 -0700248{
Johannes Berg17741cd2008-09-11 00:02:02 +0200249 sta->hnext = local->sta_hash[STA_HASH(sta->sta.addr)];
250 rcu_assign_pointer(local->sta_hash[STA_HASH(sta->sta.addr)], sta);
Jiri Bencf0706e82007-05-05 11:45:53 -0700251}
Jiri Bencf0706e82007-05-05 11:45:53 -0700252
Johannes Berg73651ee2008-02-25 16:27:47 +0100253struct sta_info *sta_info_alloc(struct ieee80211_sub_if_data *sdata,
254 u8 *addr, gfp_t gfp)
Jiri Bencf0706e82007-05-05 11:45:53 -0700255{
Johannes Bergd0709a62008-02-25 16:27:46 +0100256 struct ieee80211_local *local = sdata->local;
Jiri Bencf0706e82007-05-05 11:45:53 -0700257 struct sta_info *sta;
Ron Rindjunsky16c5f152007-12-25 17:00:34 +0200258 int i;
Jiri Bencf0706e82007-05-05 11:45:53 -0700259
Johannes Berg17741cd2008-09-11 00:02:02 +0200260 sta = kzalloc(sizeof(*sta) + local->hw.sta_data_size, gfp);
Jiri Bencf0706e82007-05-05 11:45:53 -0700261 if (!sta)
Johannes Berg73651ee2008-02-25 16:27:47 +0100262 return NULL;
Jiri Bencf0706e82007-05-05 11:45:53 -0700263
Johannes Berg07346f812008-05-03 01:02:02 +0200264 spin_lock_init(&sta->lock);
Johannes Berg5a9f7b02008-06-18 14:58:09 +0200265 spin_lock_init(&sta->flaglock);
Johannes Berg07346f812008-05-03 01:02:02 +0200266
Johannes Berg17741cd2008-09-11 00:02:02 +0200267 memcpy(sta->sta.addr, addr, ETH_ALEN);
Johannes Bergd0709a62008-02-25 16:27:46 +0100268 sta->local = local;
269 sta->sdata = sdata;
Jiri Bencf0706e82007-05-05 11:45:53 -0700270
271 sta->rate_ctrl = rate_control_get(local->rate_ctrl);
Johannes Bergd0709a62008-02-25 16:27:46 +0100272 sta->rate_ctrl_priv = rate_control_alloc_sta(sta->rate_ctrl,
Johannes Berg4b7679a2008-09-18 18:14:18 +0200273 &sta->sta, gfp);
Jiri Bencf0706e82007-05-05 11:45:53 -0700274 if (!sta->rate_ctrl_priv) {
275 rate_control_put(sta->rate_ctrl);
Jiri Bencf0706e82007-05-05 11:45:53 -0700276 kfree(sta);
Johannes Berg73651ee2008-02-25 16:27:47 +0100277 return NULL;
Jiri Bencf0706e82007-05-05 11:45:53 -0700278 }
279
Ron Rindjunsky16c5f152007-12-25 17:00:34 +0200280 for (i = 0; i < STA_TID_NUM; i++) {
281 /* timer_to_tid must be initialized with identity mapping to
282 * enable session_timer's data differentiation. refer to
283 * sta_rx_agg_session_timer_expired for useage */
284 sta->timer_to_tid[i] = i;
Ron Rindjunskycee24a32008-03-26 20:36:03 +0200285 /* rx */
286 sta->ampdu_mlme.tid_state_rx[i] = HT_AGG_STATE_IDLE;
287 sta->ampdu_mlme.tid_rx[i] = NULL;
288 /* tx */
289 sta->ampdu_mlme.tid_state_tx[i] = HT_AGG_STATE_IDLE;
290 sta->ampdu_mlme.tid_tx[i] = NULL;
291 sta->ampdu_mlme.addba_req_num[i] = 0;
Ron Rindjunsky16c5f152007-12-25 17:00:34 +0200292 }
Jiri Bencf0706e82007-05-05 11:45:53 -0700293 skb_queue_head_init(&sta->ps_tx_buf);
294 skb_queue_head_init(&sta->tx_filtered);
Johannes Berg73651ee2008-02-25 16:27:47 +0100295
296#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Johannes Berg0c68ae262008-10-27 15:56:10 -0700297 printk(KERN_DEBUG "%s: Allocated STA %pM\n",
298 wiphy_name(local->hw.wiphy), sta->sta.addr);
Johannes Berg73651ee2008-02-25 16:27:47 +0100299#endif /* CONFIG_MAC80211_VERBOSE_DEBUG */
300
Johannes Berg03e44972008-02-27 09:56:40 +0100301#ifdef CONFIG_MAC80211_MESH
Luis Carlos Cobob4e08ea2008-02-29 15:46:08 -0800302 sta->plink_state = PLINK_LISTEN;
Johannes Berg03e44972008-02-27 09:56:40 +0100303 init_timer(&sta->plink_timer);
304#endif
305
Johannes Berg73651ee2008-02-25 16:27:47 +0100306 return sta;
307}
308
309int sta_info_insert(struct sta_info *sta)
310{
311 struct ieee80211_local *local = sta->local;
312 struct ieee80211_sub_if_data *sdata = sta->sdata;
313 unsigned long flags;
Johannes Berg93e5deb2008-04-01 15:21:00 +0200314 int err = 0;
Johannes Berg73651ee2008-02-25 16:27:47 +0100315
Johannes Berg03e44972008-02-27 09:56:40 +0100316 /*
317 * Can't be a WARN_ON because it can be triggered through a race:
318 * something inserts a STA (on one CPU) without holding the RTNL
319 * and another CPU turns off the net device.
320 */
Johannes Berg93e5deb2008-04-01 15:21:00 +0200321 if (unlikely(!netif_running(sdata->dev))) {
322 err = -ENETDOWN;
323 goto out_free;
324 }
Johannes Berg03e44972008-02-27 09:56:40 +0100325
Johannes Berg17741cd2008-09-11 00:02:02 +0200326 if (WARN_ON(compare_ether_addr(sta->sta.addr, sdata->dev->dev_addr) == 0 ||
Johannes Bergc6a1fa12008-10-07 12:04:32 +0200327 is_multicast_ether_addr(sta->sta.addr))) {
Johannes Berg93e5deb2008-04-01 15:21:00 +0200328 err = -EINVAL;
329 goto out_free;
330 }
Johannes Berg44213b52008-02-25 16:27:49 +0100331
Johannes Bergd0709a62008-02-25 16:27:46 +0100332 spin_lock_irqsave(&local->sta_lock, flags);
Johannes Berg43ba7e92008-02-21 14:09:30 +0100333 /* check if STA exists already */
Johannes Berg4b7679a2008-09-18 18:14:18 +0200334 if (sta_info_get(local, sta->sta.addr)) {
Johannes Bergd0709a62008-02-25 16:27:46 +0100335 spin_unlock_irqrestore(&local->sta_lock, flags);
Johannes Berg93e5deb2008-04-01 15:21:00 +0200336 err = -EEXIST;
337 goto out_free;
Johannes Berg43ba7e92008-02-21 14:09:30 +0100338 }
Jiri Bencf0706e82007-05-05 11:45:53 -0700339 list_add(&sta->list, &local->sta_list);
340 local->num_sta++;
341 sta_info_hash_add(local, sta);
Johannes Berg32bfd352007-12-19 01:31:26 +0100342
Johannes Bergd0709a62008-02-25 16:27:46 +0100343 /* notify driver */
344 if (local->ops->sta_notify) {
Johannes Berg05c914f2008-09-11 00:01:58 +0200345 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
Johannes Berg3e122be2008-07-09 14:40:34 +0200346 sdata = container_of(sdata->bss,
347 struct ieee80211_sub_if_data,
348 u.ap);
Johannes Berg32bfd352007-12-19 01:31:26 +0100349
Johannes Berg24487982009-04-23 18:52:52 +0200350 drv_sta_notify(local, &sdata->vif, STA_NOTIFY_ADD, &sta->sta);
Johannes Berg32bfd352007-12-19 01:31:26 +0100351 }
Johannes Bergd0709a62008-02-25 16:27:46 +0100352
Jiri Bencf0706e82007-05-05 11:45:53 -0700353#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Johannes Berg0c68ae262008-10-27 15:56:10 -0700354 printk(KERN_DEBUG "%s: Inserted STA %pM\n",
355 wiphy_name(local->hw.wiphy), sta->sta.addr);
Jiri Bencf0706e82007-05-05 11:45:53 -0700356#endif /* CONFIG_MAC80211_VERBOSE_DEBUG */
357
Johannes Berg73651ee2008-02-25 16:27:47 +0100358 spin_unlock_irqrestore(&local->sta_lock, flags);
359
Jiri Bence9f207f2007-05-05 11:46:38 -0700360#ifdef CONFIG_MAC80211_DEBUGFS
Johannes Berg93e5deb2008-04-01 15:21:00 +0200361 /*
362 * Debugfs entry adding might sleep, so schedule process
Michael Wube8755e2007-07-27 15:43:23 +0200363 * context task for adding entry for STAs that do not yet
Johannes Berg93e5deb2008-04-01 15:21:00 +0200364 * have one.
365 * NOTE: due to auto-freeing semantics this may only be done
366 * if the insertion is successful!
367 */
Johannes Berg49ec6fa22008-04-03 14:31:05 +0200368 schedule_work(&local->sta_debugfs_add);
Jiri Bence9f207f2007-05-05 11:46:38 -0700369#endif
370
Johannes Berg73651ee2008-02-25 16:27:47 +0100371 if (ieee80211_vif_is_mesh(&sdata->vif))
372 mesh_accept_plinks_update(sdata);
373
374 return 0;
Johannes Berg93e5deb2008-04-01 15:21:00 +0200375 out_free:
376 BUG_ON(!err);
377 __sta_info_free(local, sta);
378 return err;
Jiri Bencf0706e82007-05-05 11:45:53 -0700379}
380
Johannes Berg004c8722008-02-20 11:21:35 +0100381static inline void __bss_tim_set(struct ieee80211_if_ap *bss, u16 aid)
382{
383 /*
384 * This format has been mandated by the IEEE specifications,
385 * so this line may not be changed to use the __set_bit() format.
386 */
387 bss->tim[aid / 8] |= (1 << (aid % 8));
388}
389
390static inline void __bss_tim_clear(struct ieee80211_if_ap *bss, u16 aid)
391{
392 /*
393 * This format has been mandated by the IEEE specifications,
394 * so this line may not be changed to use the __clear_bit() format.
395 */
396 bss->tim[aid / 8] &= ~(1 << (aid % 8));
397}
398
399static void __sta_info_set_tim_bit(struct ieee80211_if_ap *bss,
400 struct sta_info *sta)
401{
Johannes Berg3e122be2008-07-09 14:40:34 +0200402 BUG_ON(!bss);
403
Johannes Berg17741cd2008-09-11 00:02:02 +0200404 __bss_tim_set(bss, sta->sta.aid);
Johannes Berg3e122be2008-07-09 14:40:34 +0200405
Johannes Bergd0709a62008-02-25 16:27:46 +0100406 if (sta->local->ops->set_tim) {
407 sta->local->tim_in_locked_section = true;
Johannes Berg24487982009-04-23 18:52:52 +0200408 drv_set_tim(sta->local, &sta->sta, true);
Johannes Bergd0709a62008-02-25 16:27:46 +0100409 sta->local->tim_in_locked_section = false;
410 }
Johannes Berg004c8722008-02-20 11:21:35 +0100411}
412
413void sta_info_set_tim_bit(struct sta_info *sta)
414{
Johannes Bergd0709a62008-02-25 16:27:46 +0100415 unsigned long flags;
Johannes Berg004c8722008-02-20 11:21:35 +0100416
Johannes Berg3e122be2008-07-09 14:40:34 +0200417 BUG_ON(!sta->sdata->bss);
418
Johannes Bergd0709a62008-02-25 16:27:46 +0100419 spin_lock_irqsave(&sta->local->sta_lock, flags);
420 __sta_info_set_tim_bit(sta->sdata->bss, sta);
421 spin_unlock_irqrestore(&sta->local->sta_lock, flags);
Johannes Berg004c8722008-02-20 11:21:35 +0100422}
423
424static void __sta_info_clear_tim_bit(struct ieee80211_if_ap *bss,
425 struct sta_info *sta)
426{
Johannes Berg3e122be2008-07-09 14:40:34 +0200427 BUG_ON(!bss);
428
Johannes Berg17741cd2008-09-11 00:02:02 +0200429 __bss_tim_clear(bss, sta->sta.aid);
Johannes Berg3e122be2008-07-09 14:40:34 +0200430
Johannes Bergd0709a62008-02-25 16:27:46 +0100431 if (sta->local->ops->set_tim) {
432 sta->local->tim_in_locked_section = true;
Johannes Berg24487982009-04-23 18:52:52 +0200433 drv_set_tim(sta->local, &sta->sta, false);
Johannes Bergd0709a62008-02-25 16:27:46 +0100434 sta->local->tim_in_locked_section = false;
435 }
Johannes Berg004c8722008-02-20 11:21:35 +0100436}
437
438void sta_info_clear_tim_bit(struct sta_info *sta)
439{
Johannes Bergd0709a62008-02-25 16:27:46 +0100440 unsigned long flags;
Johannes Berg004c8722008-02-20 11:21:35 +0100441
Johannes Berg3e122be2008-07-09 14:40:34 +0200442 BUG_ON(!sta->sdata->bss);
443
Johannes Bergd0709a62008-02-25 16:27:46 +0100444 spin_lock_irqsave(&sta->local->sta_lock, flags);
445 __sta_info_clear_tim_bit(sta->sdata->bss, sta);
446 spin_unlock_irqrestore(&sta->local->sta_lock, flags);
Johannes Berg004c8722008-02-20 11:21:35 +0100447}
448
Johannes Berg24723d12008-09-11 00:01:46 +0200449static void __sta_info_unlink(struct sta_info **sta)
Johannes Bergd0709a62008-02-25 16:27:46 +0100450{
451 struct ieee80211_local *local = (*sta)->local;
452 struct ieee80211_sub_if_data *sdata = (*sta)->sdata;
Johannes Bergd0709a62008-02-25 16:27:46 +0100453 /*
454 * pull caller's reference if we're already gone.
455 */
456 if (sta_info_hash_del(local, *sta)) {
457 *sta = NULL;
Michael Wube8755e2007-07-27 15:43:23 +0200458 return;
Johannes Bergd0709a62008-02-25 16:27:46 +0100459 }
Michael Wube8755e2007-07-27 15:43:23 +0200460
Johannes Berg3b967662008-04-08 17:56:52 +0200461 if ((*sta)->key) {
462 ieee80211_key_free((*sta)->key);
463 WARN_ON((*sta)->key);
464 }
465
Johannes Berg7d1559f2008-04-08 13:08:20 +0200466 list_del(&(*sta)->list);
467
Johannes Berg07346f812008-05-03 01:02:02 +0200468 if (test_and_clear_sta_flags(*sta, WLAN_STA_PS)) {
Johannes Berg3e122be2008-07-09 14:40:34 +0200469 BUG_ON(!sdata->bss);
470
471 atomic_dec(&sdata->bss->num_sta_ps);
Johannes Berg7d1559f2008-04-08 13:08:20 +0200472 __sta_info_clear_tim_bit(sdata->bss, *sta);
473 }
474
475 local->num_sta--;
476
477 if (local->ops->sta_notify) {
Johannes Berg05c914f2008-09-11 00:01:58 +0200478 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
Johannes Berg3e122be2008-07-09 14:40:34 +0200479 sdata = container_of(sdata->bss,
480 struct ieee80211_sub_if_data,
481 u.ap);
Johannes Berg7d1559f2008-04-08 13:08:20 +0200482
Johannes Berg24487982009-04-23 18:52:52 +0200483 drv_sta_notify(local, &sdata->vif, STA_NOTIFY_REMOVE,
484 &(*sta)->sta);
Johannes Berg7d1559f2008-04-08 13:08:20 +0200485 }
486
487 if (ieee80211_vif_is_mesh(&sdata->vif)) {
488 mesh_accept_plinks_update(sdata);
489#ifdef CONFIG_MAC80211_MESH
490 del_timer(&(*sta)->plink_timer);
491#endif
492 }
493
494#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Johannes Berg0c68ae262008-10-27 15:56:10 -0700495 printk(KERN_DEBUG "%s: Removed STA %pM\n",
496 wiphy_name(local->hw.wiphy), (*sta)->sta.addr);
Johannes Berg7d1559f2008-04-08 13:08:20 +0200497#endif /* CONFIG_MAC80211_VERBOSE_DEBUG */
498
Johannes Bergd0709a62008-02-25 16:27:46 +0100499 /*
Johannes Berg7d1559f2008-04-08 13:08:20 +0200500 * Finally, pull caller's reference if the STA is pinned by the
Johannes Bergd0709a62008-02-25 16:27:46 +0100501 * task that is adding the debugfs entries. In that case, we
502 * leave the STA "to be freed".
503 *
504 * The rules are not trivial, but not too complex either:
505 * (1) pin_status is only modified under the sta_lock
Johannes Berg49ec6fa22008-04-03 14:31:05 +0200506 * (2) STAs may only be pinned under the RTNL so that
507 * sta_info_flush() is guaranteed to actually destroy
508 * all STAs that are active for a given interface, this
509 * is required for correctness because otherwise we
510 * could notify a driver that an interface is going
511 * away and only after that (!) notify it about a STA
512 * on that interface going away.
513 * (3) sta_info_debugfs_add_work() will set the status
Johannes Bergd0709a62008-02-25 16:27:46 +0100514 * to PINNED when it found an item that needs a new
515 * debugfs directory created. In that case, that item
516 * must not be freed although all *RCU* users are done
517 * with it. Hence, we tell the caller of _unlink()
518 * that the item is already gone (as can happen when
519 * two tasks try to unlink/destroy at the same time)
Johannes Berg49ec6fa22008-04-03 14:31:05 +0200520 * (4) We set the pin_status to DESTROY here when we
Johannes Bergd0709a62008-02-25 16:27:46 +0100521 * find such an item.
Johannes Berg49ec6fa22008-04-03 14:31:05 +0200522 * (5) sta_info_debugfs_add_work() will reset the pin_status
Johannes Bergd0709a62008-02-25 16:27:46 +0100523 * from PINNED to NORMAL when it is done with the item,
524 * but will check for DESTROY before resetting it in
525 * which case it will free the item.
526 */
527 if ((*sta)->pin_status == STA_INFO_PIN_STAT_PINNED) {
528 (*sta)->pin_status = STA_INFO_PIN_STAT_DESTROY;
529 *sta = NULL;
530 return;
531 }
Jiri Bencf0706e82007-05-05 11:45:53 -0700532}
533
Johannes Bergd0709a62008-02-25 16:27:46 +0100534void sta_info_unlink(struct sta_info **sta)
535{
536 struct ieee80211_local *local = (*sta)->local;
537 unsigned long flags;
538
539 spin_lock_irqsave(&local->sta_lock, flags);
540 __sta_info_unlink(sta);
541 spin_unlock_irqrestore(&local->sta_lock, flags);
542}
Jiri Bencf0706e82007-05-05 11:45:53 -0700543
Johannes Berg57c4d7b2009-04-23 16:10:04 +0200544static int sta_info_buffer_expired(struct sta_info *sta,
545 struct sk_buff *skb)
Jiri Bencf0706e82007-05-05 11:45:53 -0700546{
Johannes Berge039fa42008-05-15 12:55:29 +0200547 struct ieee80211_tx_info *info;
Jiri Bencf0706e82007-05-05 11:45:53 -0700548 int timeout;
549
550 if (!skb)
551 return 0;
552
Johannes Berge039fa42008-05-15 12:55:29 +0200553 info = IEEE80211_SKB_CB(skb);
Jiri Bencf0706e82007-05-05 11:45:53 -0700554
555 /* Timeout: (2 * listen_interval * beacon_int * 1024 / 1000000) sec */
Johannes Berg57c4d7b2009-04-23 16:10:04 +0200556 timeout = (sta->listen_interval *
557 sta->sdata->vif.bss_conf.beacon_int *
558 32 / 15625) * HZ;
Jiri Bencf0706e82007-05-05 11:45:53 -0700559 if (timeout < STA_TX_BUFFER_EXPIRE)
560 timeout = STA_TX_BUFFER_EXPIRE;
Johannes Berge039fa42008-05-15 12:55:29 +0200561 return time_after(jiffies, info->control.jiffies + timeout);
Jiri Bencf0706e82007-05-05 11:45:53 -0700562}
563
564
565static void sta_info_cleanup_expire_buffered(struct ieee80211_local *local,
566 struct sta_info *sta)
567{
568 unsigned long flags;
569 struct sk_buff *skb;
Johannes Berg836341a2008-02-20 02:07:21 +0100570 struct ieee80211_sub_if_data *sdata;
Jiri Bencf0706e82007-05-05 11:45:53 -0700571
572 if (skb_queue_empty(&sta->ps_tx_buf))
573 return;
574
575 for (;;) {
576 spin_lock_irqsave(&sta->ps_tx_buf.lock, flags);
577 skb = skb_peek(&sta->ps_tx_buf);
Johannes Berg57c4d7b2009-04-23 16:10:04 +0200578 if (sta_info_buffer_expired(sta, skb))
Jiri Bencf0706e82007-05-05 11:45:53 -0700579 skb = __skb_dequeue(&sta->ps_tx_buf);
Johannes Berg836341a2008-02-20 02:07:21 +0100580 else
Jiri Bencf0706e82007-05-05 11:45:53 -0700581 skb = NULL;
582 spin_unlock_irqrestore(&sta->ps_tx_buf.lock, flags);
583
Johannes Berg836341a2008-02-20 02:07:21 +0100584 if (!skb)
Jiri Bencf0706e82007-05-05 11:45:53 -0700585 break;
Johannes Berg836341a2008-02-20 02:07:21 +0100586
Johannes Bergd0709a62008-02-25 16:27:46 +0100587 sdata = sta->sdata;
Johannes Berg836341a2008-02-20 02:07:21 +0100588 local->total_ps_buffered--;
Johannes Bergf4ea83d2008-06-30 15:10:46 +0200589#ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
Johannes Berg0c68ae262008-10-27 15:56:10 -0700590 printk(KERN_DEBUG "Buffered frame expired (STA %pM)\n",
591 sta->sta.addr);
Johannes Bergf4ea83d2008-06-30 15:10:46 +0200592#endif
Johannes Berg836341a2008-02-20 02:07:21 +0100593 dev_kfree_skb(skb);
594
Johannes Berg004c8722008-02-20 11:21:35 +0100595 if (skb_queue_empty(&sta->ps_tx_buf))
596 sta_info_clear_tim_bit(sta);
Jiri Bencf0706e82007-05-05 11:45:53 -0700597 }
598}
599
600
601static void sta_info_cleanup(unsigned long data)
602{
603 struct ieee80211_local *local = (struct ieee80211_local *) data;
604 struct sta_info *sta;
605
Johannes Bergd0709a62008-02-25 16:27:46 +0100606 rcu_read_lock();
607 list_for_each_entry_rcu(sta, &local->sta_list, list)
Jiri Bencf0706e82007-05-05 11:45:53 -0700608 sta_info_cleanup_expire_buffered(local, sta);
Johannes Bergd0709a62008-02-25 16:27:46 +0100609 rcu_read_unlock();
Jiri Bencf0706e82007-05-05 11:45:53 -0700610
Johannes Berg0d174402007-12-17 15:07:43 +0100611 local->sta_cleanup.expires =
612 round_jiffies(jiffies + STA_INFO_CLEANUP_INTERVAL);
Jiri Bencf0706e82007-05-05 11:45:53 -0700613 add_timer(&local->sta_cleanup);
614}
615
Jiri Bence9f207f2007-05-05 11:46:38 -0700616#ifdef CONFIG_MAC80211_DEBUGFS
Jiri Slaby4d6141c2008-04-07 21:53:49 +0200617/*
618 * See comment in __sta_info_unlink,
619 * caller must hold local->sta_lock.
620 */
621static void __sta_info_pin(struct sta_info *sta)
622{
623 WARN_ON(sta->pin_status != STA_INFO_PIN_STAT_NORMAL);
624 sta->pin_status = STA_INFO_PIN_STAT_PINNED;
625}
626
627/*
628 * See comment in __sta_info_unlink, returns sta if it
629 * needs to be destroyed.
630 */
631static struct sta_info *__sta_info_unpin(struct sta_info *sta)
632{
633 struct sta_info *ret = NULL;
634 unsigned long flags;
635
636 spin_lock_irqsave(&sta->local->sta_lock, flags);
637 WARN_ON(sta->pin_status != STA_INFO_PIN_STAT_DESTROY &&
638 sta->pin_status != STA_INFO_PIN_STAT_PINNED);
639 if (sta->pin_status == STA_INFO_PIN_STAT_DESTROY)
640 ret = sta;
641 sta->pin_status = STA_INFO_PIN_STAT_NORMAL;
642 spin_unlock_irqrestore(&sta->local->sta_lock, flags);
643
644 return ret;
645}
646
Johannes Bergd0709a62008-02-25 16:27:46 +0100647static void sta_info_debugfs_add_work(struct work_struct *work)
Jiri Bence9f207f2007-05-05 11:46:38 -0700648{
649 struct ieee80211_local *local =
650 container_of(work, struct ieee80211_local, sta_debugfs_add);
651 struct sta_info *sta, *tmp;
Johannes Bergd0709a62008-02-25 16:27:46 +0100652 unsigned long flags;
Jiri Bence9f207f2007-05-05 11:46:38 -0700653
Johannes Berg49ec6fa22008-04-03 14:31:05 +0200654 /* We need to keep the RTNL across the whole pinned status. */
655 rtnl_lock();
Jiri Bence9f207f2007-05-05 11:46:38 -0700656 while (1) {
Jiri Bence9f207f2007-05-05 11:46:38 -0700657 sta = NULL;
Johannes Bergd0709a62008-02-25 16:27:46 +0100658
659 spin_lock_irqsave(&local->sta_lock, flags);
Jiri Bence9f207f2007-05-05 11:46:38 -0700660 list_for_each_entry(tmp, &local->sta_list, list) {
Johannes Berg63044e92008-10-07 12:04:29 +0200661 /*
662 * debugfs.add_has_run will be set by
663 * ieee80211_sta_debugfs_add regardless
664 * of what else it does.
665 */
666 if (!tmp->debugfs.add_has_run) {
Jiri Bence9f207f2007-05-05 11:46:38 -0700667 sta = tmp;
Johannes Bergd0709a62008-02-25 16:27:46 +0100668 __sta_info_pin(sta);
Jiri Bence9f207f2007-05-05 11:46:38 -0700669 break;
670 }
671 }
Johannes Bergd0709a62008-02-25 16:27:46 +0100672 spin_unlock_irqrestore(&local->sta_lock, flags);
Jiri Bence9f207f2007-05-05 11:46:38 -0700673
674 if (!sta)
675 break;
676
Jiri Bence9f207f2007-05-05 11:46:38 -0700677 ieee80211_sta_debugfs_add(sta);
678 rate_control_add_sta_debugfs(sta);
Johannes Bergd0709a62008-02-25 16:27:46 +0100679
680 sta = __sta_info_unpin(sta);
Johannes Berg4f6fab42008-03-31 19:23:02 +0200681 sta_info_destroy(sta);
Jiri Bence9f207f2007-05-05 11:46:38 -0700682 }
Johannes Berg49ec6fa22008-04-03 14:31:05 +0200683 rtnl_unlock();
Jiri Bence9f207f2007-05-05 11:46:38 -0700684}
685#endif
686
Jiri Bencf0706e82007-05-05 11:45:53 -0700687void sta_info_init(struct ieee80211_local *local)
688{
Johannes Bergd0709a62008-02-25 16:27:46 +0100689 spin_lock_init(&local->sta_lock);
Jiri Bencf0706e82007-05-05 11:45:53 -0700690 INIT_LIST_HEAD(&local->sta_list);
Jiri Bencf0706e82007-05-05 11:45:53 -0700691
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -0800692 setup_timer(&local->sta_cleanup, sta_info_cleanup,
693 (unsigned long)local);
Johannes Berg0d174402007-12-17 15:07:43 +0100694 local->sta_cleanup.expires =
695 round_jiffies(jiffies + STA_INFO_CLEANUP_INTERVAL);
Jiri Bence9f207f2007-05-05 11:46:38 -0700696
697#ifdef CONFIG_MAC80211_DEBUGFS
Johannes Bergd0709a62008-02-25 16:27:46 +0100698 INIT_WORK(&local->sta_debugfs_add, sta_info_debugfs_add_work);
Jiri Bence9f207f2007-05-05 11:46:38 -0700699#endif
Jiri Bencf0706e82007-05-05 11:45:53 -0700700}
701
702int sta_info_start(struct ieee80211_local *local)
703{
704 add_timer(&local->sta_cleanup);
705 return 0;
706}
707
708void sta_info_stop(struct ieee80211_local *local)
709{
Jiri Bencf0706e82007-05-05 11:45:53 -0700710 del_timer(&local->sta_cleanup);
Johannes Berg49ec6fa22008-04-03 14:31:05 +0200711#ifdef CONFIG_MAC80211_DEBUGFS
712 /*
713 * Make sure the debugfs adding work isn't pending after this
714 * because we're about to be destroyed. It doesn't matter
715 * whether it ran or not since we're going to flush all STAs
716 * anyway.
717 */
718 cancel_work_sync(&local->sta_debugfs_add);
719#endif
Johannes Bergdc6676b2008-03-31 19:23:03 +0200720
Michael Wube8755e2007-07-27 15:43:23 +0200721 sta_info_flush(local, NULL);
Jiri Bencf0706e82007-05-05 11:45:53 -0700722}
723
Jiri Bencf0706e82007-05-05 11:45:53 -0700724/**
725 * sta_info_flush - flush matching STA entries from the STA table
Johannes Berg44213b52008-02-25 16:27:49 +0100726 *
727 * Returns the number of removed STA entries.
728 *
Jiri Bencf0706e82007-05-05 11:45:53 -0700729 * @local: local interface data
Johannes Bergd0709a62008-02-25 16:27:46 +0100730 * @sdata: matching rule for the net device (sta->dev) or %NULL to match all STAs
Jiri Bencf0706e82007-05-05 11:45:53 -0700731 */
Johannes Berg44213b52008-02-25 16:27:49 +0100732int sta_info_flush(struct ieee80211_local *local,
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200733 struct ieee80211_sub_if_data *sdata)
Jiri Bencf0706e82007-05-05 11:45:53 -0700734{
735 struct sta_info *sta, *tmp;
Michael Wube8755e2007-07-27 15:43:23 +0200736 LIST_HEAD(tmp_list);
Johannes Berg44213b52008-02-25 16:27:49 +0100737 int ret = 0;
Johannes Bergd0709a62008-02-25 16:27:46 +0100738 unsigned long flags;
Jiri Bencf0706e82007-05-05 11:45:53 -0700739
Johannes Bergd0709a62008-02-25 16:27:46 +0100740 might_sleep();
741
742 spin_lock_irqsave(&local->sta_lock, flags);
743 list_for_each_entry_safe(sta, tmp, &local->sta_list, list) {
744 if (!sdata || sdata == sta->sdata) {
745 __sta_info_unlink(&sta);
Johannes Berg44213b52008-02-25 16:27:49 +0100746 if (sta) {
Johannes Bergd0709a62008-02-25 16:27:46 +0100747 list_add_tail(&sta->list, &tmp_list);
Johannes Berg44213b52008-02-25 16:27:49 +0100748 ret++;
749 }
Michael Wube8755e2007-07-27 15:43:23 +0200750 }
Michael Wube8755e2007-07-27 15:43:23 +0200751 }
Johannes Bergd0709a62008-02-25 16:27:46 +0100752 spin_unlock_irqrestore(&local->sta_lock, flags);
753
Johannes Bergd0709a62008-02-25 16:27:46 +0100754 list_for_each_entry_safe(sta, tmp, &tmp_list, list)
755 sta_info_destroy(sta);
Johannes Berg44213b52008-02-25 16:27:49 +0100756
757 return ret;
Jiri Bencf0706e82007-05-05 11:45:53 -0700758}
Johannes Bergdc6676b2008-03-31 19:23:03 +0200759
Johannes Berg24723d12008-09-11 00:01:46 +0200760void ieee80211_sta_expire(struct ieee80211_sub_if_data *sdata,
761 unsigned long exp_time)
762{
763 struct ieee80211_local *local = sdata->local;
764 struct sta_info *sta, *tmp;
765 LIST_HEAD(tmp_list);
Johannes Berg24723d12008-09-11 00:01:46 +0200766 unsigned long flags;
767
768 spin_lock_irqsave(&local->sta_lock, flags);
769 list_for_each_entry_safe(sta, tmp, &local->sta_list, list)
770 if (time_after(jiffies, sta->last_rx + exp_time)) {
771#ifdef CONFIG_MAC80211_IBSS_DEBUG
Johannes Berg0c68ae262008-10-27 15:56:10 -0700772 printk(KERN_DEBUG "%s: expiring inactive STA %pM\n",
773 sdata->dev->name, sta->sta.addr);
Johannes Berg24723d12008-09-11 00:01:46 +0200774#endif
775 __sta_info_unlink(&sta);
776 if (sta)
777 list_add(&sta->list, &tmp_list);
778 }
779 spin_unlock_irqrestore(&local->sta_lock, flags);
780
781 list_for_each_entry_safe(sta, tmp, &tmp_list, list)
782 sta_info_destroy(sta);
783}
Johannes Berg17741cd2008-09-11 00:02:02 +0200784
785struct ieee80211_sta *ieee80211_find_sta(struct ieee80211_hw *hw,
Johannes Bergc6a1fa12008-10-07 12:04:32 +0200786 const u8 *addr)
Johannes Berg17741cd2008-09-11 00:02:02 +0200787{
Johannes Berg4b7679a2008-09-18 18:14:18 +0200788 struct sta_info *sta = sta_info_get(hw_to_local(hw), addr);
Johannes Berg17741cd2008-09-11 00:02:02 +0200789
790 if (!sta)
791 return NULL;
792 return &sta->sta;
793}
794EXPORT_SYMBOL(ieee80211_find_sta);