blob: be59456e8a423008ea95794d4d10f1cf1a892af2 [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
Johannes Bergaf818582009-11-06 11:35:50 +0100174 cancel_work_sync(&sta->drv_unblock_wk);
175
Johannes Bergd0709a62008-02-25 16:27:46 +0100176 rate_control_remove_sta_debugfs(sta);
177 ieee80211_sta_debugfs_remove(sta);
178
179#ifdef CONFIG_MAC80211_MESH
180 if (ieee80211_vif_is_mesh(&sta->sdata->vif))
181 mesh_plink_deactivate(sta);
182#endif
183
Johannes Berg3b967662008-04-08 17:56:52 +0200184 /*
185 * We have only unlinked the key, and actually destroying it
186 * may mean it is removed from hardware which requires that
187 * the key->sta pointer is still valid, so flush the key todo
188 * list here.
189 *
190 * ieee80211_key_todo() will synchronize_rcu() so after this
191 * nothing can reference this sta struct any more.
192 */
193 ieee80211_key_todo();
Johannes Bergd0709a62008-02-25 16:27:46 +0100194
195#ifdef CONFIG_MAC80211_MESH
196 if (ieee80211_vif_is_mesh(&sta->sdata->vif))
197 del_timer_sync(&sta->plink_timer);
198#endif
199
Jiri Bencf0706e82007-05-05 11:45:53 -0700200 while ((skb = skb_dequeue(&sta->ps_tx_buf)) != NULL) {
201 local->total_ps_buffered--;
202 dev_kfree_skb_any(skb);
203 }
Johannes Bergd0709a62008-02-25 16:27:46 +0100204
205 while ((skb = skb_dequeue(&sta->tx_filtered)) != NULL)
Jiri Bencf0706e82007-05-05 11:45:53 -0700206 dev_kfree_skb_any(skb);
Johannes Bergd0709a62008-02-25 16:27:46 +0100207
Ron Rindjunskyfe3bf0f2008-01-28 14:07:19 +0200208 for (i = 0; i < STA_TID_NUM; i++) {
Johannes Berg55687e32009-02-10 21:25:51 +0100209 struct tid_ampdu_rx *tid_rx;
210 struct tid_ampdu_tx *tid_tx;
211
Johannes Berg07346f812008-05-03 01:02:02 +0200212 spin_lock_bh(&sta->lock);
Johannes Berg55687e32009-02-10 21:25:51 +0100213 tid_rx = sta->ampdu_mlme.tid_rx[i];
214 /* Make sure timer won't free the tid_rx struct, see below */
215 if (tid_rx)
216 tid_rx->shutdown = true;
Johannes Berg96f5e662009-02-12 00:51:53 +0100217
Johannes Berg07346f812008-05-03 01:02:02 +0200218 spin_unlock_bh(&sta->lock);
Johannes Berg55687e32009-02-10 21:25:51 +0100219
220 /*
221 * Outside spinlock - shutdown is true now so that the timer
222 * won't free tid_rx, we have to do that now. Can't let the
223 * timer do it because we have to sync the timer outside the
224 * lock that it takes itself.
225 */
226 if (tid_rx) {
227 del_timer_sync(&tid_rx->session_timer);
228 kfree(tid_rx);
229 }
230
231 /*
232 * No need to do such complications for TX agg sessions, the
233 * path leading to freeing the tid_tx struct goes via a call
234 * from the driver, and thus needs to look up the sta struct
235 * again, which cannot be found when we get here. Hence, we
236 * just need to delete the timer and free the aggregation
237 * info; we won't be telling the peer about it then but that
238 * doesn't matter if we're not talking to it again anyway.
239 */
240 tid_tx = sta->ampdu_mlme.tid_tx[i];
241 if (tid_tx) {
242 del_timer_sync(&tid_tx->addba_resp_timer);
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100243 /*
244 * STA removed while aggregation session being
245 * started? Bit odd, but purge frames anyway.
246 */
247 skb_queue_purge(&tid_tx->pending);
Johannes Berg55687e32009-02-10 21:25:51 +0100248 kfree(tid_tx);
249 }
Ron Rindjunskyfe3bf0f2008-01-28 14:07:19 +0200250 }
Ron Rindjunskycee24a32008-03-26 20:36:03 +0200251
Johannes Berg93e5deb2008-04-01 15:21:00 +0200252 __sta_info_free(local, sta);
Jiri Bencf0706e82007-05-05 11:45:53 -0700253}
254
255
Johannes Bergd0709a62008-02-25 16:27:46 +0100256/* Caller must hold local->sta_lock */
257static void sta_info_hash_add(struct ieee80211_local *local,
258 struct sta_info *sta)
Jiri Bencf0706e82007-05-05 11:45:53 -0700259{
Johannes Berg17741cd2008-09-11 00:02:02 +0200260 sta->hnext = local->sta_hash[STA_HASH(sta->sta.addr)];
261 rcu_assign_pointer(local->sta_hash[STA_HASH(sta->sta.addr)], sta);
Jiri Bencf0706e82007-05-05 11:45:53 -0700262}
Jiri Bencf0706e82007-05-05 11:45:53 -0700263
Johannes Bergaf818582009-11-06 11:35:50 +0100264static void sta_unblock(struct work_struct *wk)
265{
266 struct sta_info *sta;
267
268 sta = container_of(wk, struct sta_info, drv_unblock_wk);
269
270 if (sta->dead)
271 return;
272
273 if (!test_sta_flags(sta, WLAN_STA_PS_STA))
274 ieee80211_sta_ps_deliver_wakeup(sta);
275 else if (test_and_clear_sta_flags(sta, WLAN_STA_PSPOLL))
276 ieee80211_sta_ps_deliver_poll_response(sta);
277}
278
Johannes Berg73651ee2008-02-25 16:27:47 +0100279struct sta_info *sta_info_alloc(struct ieee80211_sub_if_data *sdata,
280 u8 *addr, gfp_t gfp)
Jiri Bencf0706e82007-05-05 11:45:53 -0700281{
Johannes Bergd0709a62008-02-25 16:27:46 +0100282 struct ieee80211_local *local = sdata->local;
Jiri Bencf0706e82007-05-05 11:45:53 -0700283 struct sta_info *sta;
Ron Rindjunsky16c5f152007-12-25 17:00:34 +0200284 int i;
Jiri Bencf0706e82007-05-05 11:45:53 -0700285
Johannes Berg17741cd2008-09-11 00:02:02 +0200286 sta = kzalloc(sizeof(*sta) + local->hw.sta_data_size, gfp);
Jiri Bencf0706e82007-05-05 11:45:53 -0700287 if (!sta)
Johannes Berg73651ee2008-02-25 16:27:47 +0100288 return NULL;
Jiri Bencf0706e82007-05-05 11:45:53 -0700289
Johannes Berg07346f812008-05-03 01:02:02 +0200290 spin_lock_init(&sta->lock);
Johannes Berg5a9f7b02008-06-18 14:58:09 +0200291 spin_lock_init(&sta->flaglock);
Johannes Bergaf818582009-11-06 11:35:50 +0100292 INIT_WORK(&sta->drv_unblock_wk, sta_unblock);
Johannes Berg07346f812008-05-03 01:02:02 +0200293
Johannes Berg17741cd2008-09-11 00:02:02 +0200294 memcpy(sta->sta.addr, addr, ETH_ALEN);
Johannes Bergd0709a62008-02-25 16:27:46 +0100295 sta->local = local;
296 sta->sdata = sdata;
Jiri Bencf0706e82007-05-05 11:45:53 -0700297
298 sta->rate_ctrl = rate_control_get(local->rate_ctrl);
Johannes Bergd0709a62008-02-25 16:27:46 +0100299 sta->rate_ctrl_priv = rate_control_alloc_sta(sta->rate_ctrl,
Johannes Berg4b7679a2008-09-18 18:14:18 +0200300 &sta->sta, gfp);
Jiri Bencf0706e82007-05-05 11:45:53 -0700301 if (!sta->rate_ctrl_priv) {
302 rate_control_put(sta->rate_ctrl);
Jiri Bencf0706e82007-05-05 11:45:53 -0700303 kfree(sta);
Johannes Berg73651ee2008-02-25 16:27:47 +0100304 return NULL;
Jiri Bencf0706e82007-05-05 11:45:53 -0700305 }
306
Ron Rindjunsky16c5f152007-12-25 17:00:34 +0200307 for (i = 0; i < STA_TID_NUM; i++) {
308 /* timer_to_tid must be initialized with identity mapping to
309 * enable session_timer's data differentiation. refer to
310 * sta_rx_agg_session_timer_expired for useage */
311 sta->timer_to_tid[i] = i;
Ron Rindjunskycee24a32008-03-26 20:36:03 +0200312 /* rx */
313 sta->ampdu_mlme.tid_state_rx[i] = HT_AGG_STATE_IDLE;
314 sta->ampdu_mlme.tid_rx[i] = NULL;
315 /* tx */
316 sta->ampdu_mlme.tid_state_tx[i] = HT_AGG_STATE_IDLE;
317 sta->ampdu_mlme.tid_tx[i] = NULL;
318 sta->ampdu_mlme.addba_req_num[i] = 0;
Ron Rindjunsky16c5f152007-12-25 17:00:34 +0200319 }
Jiri Bencf0706e82007-05-05 11:45:53 -0700320 skb_queue_head_init(&sta->ps_tx_buf);
321 skb_queue_head_init(&sta->tx_filtered);
Johannes Berg73651ee2008-02-25 16:27:47 +0100322
Senthil Balasubramaniancccaec92009-05-14 18:42:08 +0530323 for (i = 0; i < NUM_RX_DATA_QUEUES; i++)
324 sta->last_seq_ctrl[i] = cpu_to_le16(USHORT_MAX);
325
Johannes Berg73651ee2008-02-25 16:27:47 +0100326#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Johannes Berg0c68ae262008-10-27 15:56:10 -0700327 printk(KERN_DEBUG "%s: Allocated STA %pM\n",
328 wiphy_name(local->hw.wiphy), sta->sta.addr);
Johannes Berg73651ee2008-02-25 16:27:47 +0100329#endif /* CONFIG_MAC80211_VERBOSE_DEBUG */
330
Johannes Berg03e44972008-02-27 09:56:40 +0100331#ifdef CONFIG_MAC80211_MESH
Luis Carlos Cobob4e08ea2008-02-29 15:46:08 -0800332 sta->plink_state = PLINK_LISTEN;
Johannes Berg03e44972008-02-27 09:56:40 +0100333 init_timer(&sta->plink_timer);
334#endif
335
Johannes Berg73651ee2008-02-25 16:27:47 +0100336 return sta;
337}
338
339int sta_info_insert(struct sta_info *sta)
340{
341 struct ieee80211_local *local = sta->local;
342 struct ieee80211_sub_if_data *sdata = sta->sdata;
343 unsigned long flags;
Johannes Berg93e5deb2008-04-01 15:21:00 +0200344 int err = 0;
Johannes Berg73651ee2008-02-25 16:27:47 +0100345
Johannes Berg03e44972008-02-27 09:56:40 +0100346 /*
347 * Can't be a WARN_ON because it can be triggered through a race:
348 * something inserts a STA (on one CPU) without holding the RTNL
349 * and another CPU turns off the net device.
350 */
Johannes Berg93e5deb2008-04-01 15:21:00 +0200351 if (unlikely(!netif_running(sdata->dev))) {
352 err = -ENETDOWN;
353 goto out_free;
354 }
Johannes Berg03e44972008-02-27 09:56:40 +0100355
Johannes Berg17741cd2008-09-11 00:02:02 +0200356 if (WARN_ON(compare_ether_addr(sta->sta.addr, sdata->dev->dev_addr) == 0 ||
Johannes Bergc6a1fa12008-10-07 12:04:32 +0200357 is_multicast_ether_addr(sta->sta.addr))) {
Johannes Berg93e5deb2008-04-01 15:21:00 +0200358 err = -EINVAL;
359 goto out_free;
360 }
Johannes Berg44213b52008-02-25 16:27:49 +0100361
Johannes Bergd0709a62008-02-25 16:27:46 +0100362 spin_lock_irqsave(&local->sta_lock, flags);
Johannes Berg43ba7e92008-02-21 14:09:30 +0100363 /* check if STA exists already */
Johannes Berg4b7679a2008-09-18 18:14:18 +0200364 if (sta_info_get(local, sta->sta.addr)) {
Johannes Bergd0709a62008-02-25 16:27:46 +0100365 spin_unlock_irqrestore(&local->sta_lock, flags);
Johannes Berg93e5deb2008-04-01 15:21:00 +0200366 err = -EEXIST;
367 goto out_free;
Johannes Berg43ba7e92008-02-21 14:09:30 +0100368 }
Jiri Bencf0706e82007-05-05 11:45:53 -0700369 list_add(&sta->list, &local->sta_list);
Johannes Bergf5ea9122009-08-07 16:17:38 +0200370 local->sta_generation++;
Jiri Bencf0706e82007-05-05 11:45:53 -0700371 local->num_sta++;
372 sta_info_hash_add(local, sta);
Johannes Berg32bfd352007-12-19 01:31:26 +0100373
Johannes Bergd0709a62008-02-25 16:27:46 +0100374 /* notify driver */
375 if (local->ops->sta_notify) {
Johannes Berg05c914f2008-09-11 00:01:58 +0200376 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
Johannes Berg3e122be2008-07-09 14:40:34 +0200377 sdata = container_of(sdata->bss,
378 struct ieee80211_sub_if_data,
379 u.ap);
Johannes Berg32bfd352007-12-19 01:31:26 +0100380
Johannes Berg24487982009-04-23 18:52:52 +0200381 drv_sta_notify(local, &sdata->vif, STA_NOTIFY_ADD, &sta->sta);
Johannes Bergfbc44bf2009-10-01 22:06:29 +0200382 sdata = sta->sdata;
Johannes Berg32bfd352007-12-19 01:31:26 +0100383 }
Johannes Bergd0709a62008-02-25 16:27:46 +0100384
Jiri Bencf0706e82007-05-05 11:45:53 -0700385#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Johannes Berg0c68ae262008-10-27 15:56:10 -0700386 printk(KERN_DEBUG "%s: Inserted STA %pM\n",
387 wiphy_name(local->hw.wiphy), sta->sta.addr);
Jiri Bencf0706e82007-05-05 11:45:53 -0700388#endif /* CONFIG_MAC80211_VERBOSE_DEBUG */
389
Johannes Berg73651ee2008-02-25 16:27:47 +0100390 spin_unlock_irqrestore(&local->sta_lock, flags);
391
Jiri Bence9f207f2007-05-05 11:46:38 -0700392#ifdef CONFIG_MAC80211_DEBUGFS
Johannes Berg93e5deb2008-04-01 15:21:00 +0200393 /*
394 * Debugfs entry adding might sleep, so schedule process
Michael Wube8755e2007-07-27 15:43:23 +0200395 * context task for adding entry for STAs that do not yet
Johannes Berg93e5deb2008-04-01 15:21:00 +0200396 * have one.
397 * NOTE: due to auto-freeing semantics this may only be done
398 * if the insertion is successful!
399 */
Johannes Berg49ec6fa22008-04-03 14:31:05 +0200400 schedule_work(&local->sta_debugfs_add);
Jiri Bence9f207f2007-05-05 11:46:38 -0700401#endif
402
Johannes Berg73651ee2008-02-25 16:27:47 +0100403 if (ieee80211_vif_is_mesh(&sdata->vif))
404 mesh_accept_plinks_update(sdata);
405
406 return 0;
Johannes Berg93e5deb2008-04-01 15:21:00 +0200407 out_free:
408 BUG_ON(!err);
409 __sta_info_free(local, sta);
410 return err;
Jiri Bencf0706e82007-05-05 11:45:53 -0700411}
412
Johannes Berg004c8722008-02-20 11:21:35 +0100413static inline void __bss_tim_set(struct ieee80211_if_ap *bss, u16 aid)
414{
415 /*
416 * This format has been mandated by the IEEE specifications,
417 * so this line may not be changed to use the __set_bit() format.
418 */
419 bss->tim[aid / 8] |= (1 << (aid % 8));
420}
421
422static inline void __bss_tim_clear(struct ieee80211_if_ap *bss, u16 aid)
423{
424 /*
425 * This format has been mandated by the IEEE specifications,
426 * so this line may not be changed to use the __clear_bit() format.
427 */
428 bss->tim[aid / 8] &= ~(1 << (aid % 8));
429}
430
431static void __sta_info_set_tim_bit(struct ieee80211_if_ap *bss,
432 struct sta_info *sta)
433{
Johannes Berg3e122be2008-07-09 14:40:34 +0200434 BUG_ON(!bss);
435
Johannes Berg17741cd2008-09-11 00:02:02 +0200436 __bss_tim_set(bss, sta->sta.aid);
Johannes Berg3e122be2008-07-09 14:40:34 +0200437
Johannes Bergd0709a62008-02-25 16:27:46 +0100438 if (sta->local->ops->set_tim) {
439 sta->local->tim_in_locked_section = true;
Johannes Berg24487982009-04-23 18:52:52 +0200440 drv_set_tim(sta->local, &sta->sta, true);
Johannes Bergd0709a62008-02-25 16:27:46 +0100441 sta->local->tim_in_locked_section = false;
442 }
Johannes Berg004c8722008-02-20 11:21:35 +0100443}
444
445void sta_info_set_tim_bit(struct sta_info *sta)
446{
Johannes Bergd0709a62008-02-25 16:27:46 +0100447 unsigned long flags;
Johannes Berg004c8722008-02-20 11:21:35 +0100448
Johannes Berg3e122be2008-07-09 14:40:34 +0200449 BUG_ON(!sta->sdata->bss);
450
Johannes Bergd0709a62008-02-25 16:27:46 +0100451 spin_lock_irqsave(&sta->local->sta_lock, flags);
452 __sta_info_set_tim_bit(sta->sdata->bss, sta);
453 spin_unlock_irqrestore(&sta->local->sta_lock, flags);
Johannes Berg004c8722008-02-20 11:21:35 +0100454}
455
456static void __sta_info_clear_tim_bit(struct ieee80211_if_ap *bss,
457 struct sta_info *sta)
458{
Johannes Berg3e122be2008-07-09 14:40:34 +0200459 BUG_ON(!bss);
460
Johannes Berg17741cd2008-09-11 00:02:02 +0200461 __bss_tim_clear(bss, sta->sta.aid);
Johannes Berg3e122be2008-07-09 14:40:34 +0200462
Johannes Bergd0709a62008-02-25 16:27:46 +0100463 if (sta->local->ops->set_tim) {
464 sta->local->tim_in_locked_section = true;
Johannes Berg24487982009-04-23 18:52:52 +0200465 drv_set_tim(sta->local, &sta->sta, false);
Johannes Bergd0709a62008-02-25 16:27:46 +0100466 sta->local->tim_in_locked_section = false;
467 }
Johannes Berg004c8722008-02-20 11:21:35 +0100468}
469
470void sta_info_clear_tim_bit(struct sta_info *sta)
471{
Johannes Bergd0709a62008-02-25 16:27:46 +0100472 unsigned long flags;
Johannes Berg004c8722008-02-20 11:21:35 +0100473
Johannes Berg3e122be2008-07-09 14:40:34 +0200474 BUG_ON(!sta->sdata->bss);
475
Johannes Bergd0709a62008-02-25 16:27:46 +0100476 spin_lock_irqsave(&sta->local->sta_lock, flags);
477 __sta_info_clear_tim_bit(sta->sdata->bss, sta);
478 spin_unlock_irqrestore(&sta->local->sta_lock, flags);
Johannes Berg004c8722008-02-20 11:21:35 +0100479}
480
Johannes Berg24723d12008-09-11 00:01:46 +0200481static void __sta_info_unlink(struct sta_info **sta)
Johannes Bergd0709a62008-02-25 16:27:46 +0100482{
483 struct ieee80211_local *local = (*sta)->local;
484 struct ieee80211_sub_if_data *sdata = (*sta)->sdata;
Johannes Bergd0709a62008-02-25 16:27:46 +0100485 /*
486 * pull caller's reference if we're already gone.
487 */
488 if (sta_info_hash_del(local, *sta)) {
489 *sta = NULL;
Michael Wube8755e2007-07-27 15:43:23 +0200490 return;
Johannes Bergd0709a62008-02-25 16:27:46 +0100491 }
Michael Wube8755e2007-07-27 15:43:23 +0200492
Johannes Berg3b967662008-04-08 17:56:52 +0200493 if ((*sta)->key) {
494 ieee80211_key_free((*sta)->key);
495 WARN_ON((*sta)->key);
496 }
497
Johannes Berg7d1559f2008-04-08 13:08:20 +0200498 list_del(&(*sta)->list);
Johannes Bergaf818582009-11-06 11:35:50 +0100499 (*sta)->dead = true;
Johannes Berg7d1559f2008-04-08 13:08:20 +0200500
Johannes Bergaf818582009-11-06 11:35:50 +0100501 if (test_and_clear_sta_flags(*sta,
502 WLAN_STA_PS_STA | WLAN_STA_PS_DRIVER)) {
Johannes Berg3e122be2008-07-09 14:40:34 +0200503 BUG_ON(!sdata->bss);
504
505 atomic_dec(&sdata->bss->num_sta_ps);
Johannes Berg7d1559f2008-04-08 13:08:20 +0200506 __sta_info_clear_tim_bit(sdata->bss, *sta);
507 }
508
509 local->num_sta--;
Johannes Bergf5ea9122009-08-07 16:17:38 +0200510 local->sta_generation++;
Johannes Berg7d1559f2008-04-08 13:08:20 +0200511
512 if (local->ops->sta_notify) {
Johannes Berg05c914f2008-09-11 00:01:58 +0200513 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
Johannes Berg3e122be2008-07-09 14:40:34 +0200514 sdata = container_of(sdata->bss,
515 struct ieee80211_sub_if_data,
516 u.ap);
Johannes Berg7d1559f2008-04-08 13:08:20 +0200517
Johannes Berg24487982009-04-23 18:52:52 +0200518 drv_sta_notify(local, &sdata->vif, STA_NOTIFY_REMOVE,
519 &(*sta)->sta);
Johannes Bergfbc44bf2009-10-01 22:06:29 +0200520 sdata = (*sta)->sdata;
Johannes Berg7d1559f2008-04-08 13:08:20 +0200521 }
522
523 if (ieee80211_vif_is_mesh(&sdata->vif)) {
524 mesh_accept_plinks_update(sdata);
525#ifdef CONFIG_MAC80211_MESH
526 del_timer(&(*sta)->plink_timer);
527#endif
528 }
529
530#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Johannes Berg0c68ae262008-10-27 15:56:10 -0700531 printk(KERN_DEBUG "%s: Removed STA %pM\n",
532 wiphy_name(local->hw.wiphy), (*sta)->sta.addr);
Johannes Berg7d1559f2008-04-08 13:08:20 +0200533#endif /* CONFIG_MAC80211_VERBOSE_DEBUG */
534
Johannes Bergd0709a62008-02-25 16:27:46 +0100535 /*
Johannes Berg7d1559f2008-04-08 13:08:20 +0200536 * Finally, pull caller's reference if the STA is pinned by the
Johannes Bergd0709a62008-02-25 16:27:46 +0100537 * task that is adding the debugfs entries. In that case, we
538 * leave the STA "to be freed".
539 *
540 * The rules are not trivial, but not too complex either:
541 * (1) pin_status is only modified under the sta_lock
Johannes Berg49ec6fa22008-04-03 14:31:05 +0200542 * (2) STAs may only be pinned under the RTNL so that
543 * sta_info_flush() is guaranteed to actually destroy
544 * all STAs that are active for a given interface, this
545 * is required for correctness because otherwise we
546 * could notify a driver that an interface is going
547 * away and only after that (!) notify it about a STA
548 * on that interface going away.
549 * (3) sta_info_debugfs_add_work() will set the status
Johannes Bergd0709a62008-02-25 16:27:46 +0100550 * to PINNED when it found an item that needs a new
551 * debugfs directory created. In that case, that item
552 * must not be freed although all *RCU* users are done
553 * with it. Hence, we tell the caller of _unlink()
554 * that the item is already gone (as can happen when
555 * two tasks try to unlink/destroy at the same time)
Johannes Berg49ec6fa22008-04-03 14:31:05 +0200556 * (4) We set the pin_status to DESTROY here when we
Johannes Bergd0709a62008-02-25 16:27:46 +0100557 * find such an item.
Johannes Berg49ec6fa22008-04-03 14:31:05 +0200558 * (5) sta_info_debugfs_add_work() will reset the pin_status
Johannes Bergd0709a62008-02-25 16:27:46 +0100559 * from PINNED to NORMAL when it is done with the item,
560 * but will check for DESTROY before resetting it in
561 * which case it will free the item.
562 */
563 if ((*sta)->pin_status == STA_INFO_PIN_STAT_PINNED) {
564 (*sta)->pin_status = STA_INFO_PIN_STAT_DESTROY;
565 *sta = NULL;
566 return;
567 }
Jiri Bencf0706e82007-05-05 11:45:53 -0700568}
569
Johannes Bergd0709a62008-02-25 16:27:46 +0100570void sta_info_unlink(struct sta_info **sta)
571{
572 struct ieee80211_local *local = (*sta)->local;
573 unsigned long flags;
574
575 spin_lock_irqsave(&local->sta_lock, flags);
576 __sta_info_unlink(sta);
577 spin_unlock_irqrestore(&local->sta_lock, flags);
578}
Jiri Bencf0706e82007-05-05 11:45:53 -0700579
Johannes Berg57c4d7b2009-04-23 16:10:04 +0200580static int sta_info_buffer_expired(struct sta_info *sta,
581 struct sk_buff *skb)
Jiri Bencf0706e82007-05-05 11:45:53 -0700582{
Johannes Berge039fa42008-05-15 12:55:29 +0200583 struct ieee80211_tx_info *info;
Jiri Bencf0706e82007-05-05 11:45:53 -0700584 int timeout;
585
586 if (!skb)
587 return 0;
588
Johannes Berge039fa42008-05-15 12:55:29 +0200589 info = IEEE80211_SKB_CB(skb);
Jiri Bencf0706e82007-05-05 11:45:53 -0700590
591 /* Timeout: (2 * listen_interval * beacon_int * 1024 / 1000000) sec */
Johannes Berg57c4d7b2009-04-23 16:10:04 +0200592 timeout = (sta->listen_interval *
593 sta->sdata->vif.bss_conf.beacon_int *
594 32 / 15625) * HZ;
Jiri Bencf0706e82007-05-05 11:45:53 -0700595 if (timeout < STA_TX_BUFFER_EXPIRE)
596 timeout = STA_TX_BUFFER_EXPIRE;
Johannes Berge039fa42008-05-15 12:55:29 +0200597 return time_after(jiffies, info->control.jiffies + timeout);
Jiri Bencf0706e82007-05-05 11:45:53 -0700598}
599
600
601static void sta_info_cleanup_expire_buffered(struct ieee80211_local *local,
602 struct sta_info *sta)
603{
604 unsigned long flags;
605 struct sk_buff *skb;
Johannes Berg836341a2008-02-20 02:07:21 +0100606 struct ieee80211_sub_if_data *sdata;
Jiri Bencf0706e82007-05-05 11:45:53 -0700607
608 if (skb_queue_empty(&sta->ps_tx_buf))
609 return;
610
611 for (;;) {
612 spin_lock_irqsave(&sta->ps_tx_buf.lock, flags);
613 skb = skb_peek(&sta->ps_tx_buf);
Johannes Berg57c4d7b2009-04-23 16:10:04 +0200614 if (sta_info_buffer_expired(sta, skb))
Jiri Bencf0706e82007-05-05 11:45:53 -0700615 skb = __skb_dequeue(&sta->ps_tx_buf);
Johannes Berg836341a2008-02-20 02:07:21 +0100616 else
Jiri Bencf0706e82007-05-05 11:45:53 -0700617 skb = NULL;
618 spin_unlock_irqrestore(&sta->ps_tx_buf.lock, flags);
619
Johannes Berg836341a2008-02-20 02:07:21 +0100620 if (!skb)
Jiri Bencf0706e82007-05-05 11:45:53 -0700621 break;
Johannes Berg836341a2008-02-20 02:07:21 +0100622
Johannes Bergd0709a62008-02-25 16:27:46 +0100623 sdata = sta->sdata;
Johannes Berg836341a2008-02-20 02:07:21 +0100624 local->total_ps_buffered--;
Johannes Bergf4ea83d2008-06-30 15:10:46 +0200625#ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
Johannes Berg0c68ae262008-10-27 15:56:10 -0700626 printk(KERN_DEBUG "Buffered frame expired (STA %pM)\n",
627 sta->sta.addr);
Johannes Bergf4ea83d2008-06-30 15:10:46 +0200628#endif
Johannes Berg836341a2008-02-20 02:07:21 +0100629 dev_kfree_skb(skb);
630
Johannes Berg004c8722008-02-20 11:21:35 +0100631 if (skb_queue_empty(&sta->ps_tx_buf))
632 sta_info_clear_tim_bit(sta);
Jiri Bencf0706e82007-05-05 11:45:53 -0700633 }
634}
635
636
637static void sta_info_cleanup(unsigned long data)
638{
639 struct ieee80211_local *local = (struct ieee80211_local *) data;
640 struct sta_info *sta;
641
Johannes Bergd0709a62008-02-25 16:27:46 +0100642 rcu_read_lock();
643 list_for_each_entry_rcu(sta, &local->sta_list, list)
Jiri Bencf0706e82007-05-05 11:45:53 -0700644 sta_info_cleanup_expire_buffered(local, sta);
Johannes Bergd0709a62008-02-25 16:27:46 +0100645 rcu_read_unlock();
Jiri Bencf0706e82007-05-05 11:45:53 -0700646
Johannes Berg5bb644a2009-05-17 11:40:42 +0200647 if (local->quiescing)
648 return;
649
Johannes Berg0d174402007-12-17 15:07:43 +0100650 local->sta_cleanup.expires =
651 round_jiffies(jiffies + STA_INFO_CLEANUP_INTERVAL);
Jiri Bencf0706e82007-05-05 11:45:53 -0700652 add_timer(&local->sta_cleanup);
653}
654
Jiri Bence9f207f2007-05-05 11:46:38 -0700655#ifdef CONFIG_MAC80211_DEBUGFS
Jiri Slaby4d6141c32008-04-07 21:53:49 +0200656/*
657 * See comment in __sta_info_unlink,
658 * caller must hold local->sta_lock.
659 */
660static void __sta_info_pin(struct sta_info *sta)
661{
662 WARN_ON(sta->pin_status != STA_INFO_PIN_STAT_NORMAL);
663 sta->pin_status = STA_INFO_PIN_STAT_PINNED;
664}
665
666/*
667 * See comment in __sta_info_unlink, returns sta if it
668 * needs to be destroyed.
669 */
670static struct sta_info *__sta_info_unpin(struct sta_info *sta)
671{
672 struct sta_info *ret = NULL;
673 unsigned long flags;
674
675 spin_lock_irqsave(&sta->local->sta_lock, flags);
676 WARN_ON(sta->pin_status != STA_INFO_PIN_STAT_DESTROY &&
677 sta->pin_status != STA_INFO_PIN_STAT_PINNED);
678 if (sta->pin_status == STA_INFO_PIN_STAT_DESTROY)
679 ret = sta;
680 sta->pin_status = STA_INFO_PIN_STAT_NORMAL;
681 spin_unlock_irqrestore(&sta->local->sta_lock, flags);
682
683 return ret;
684}
685
Johannes Bergd0709a62008-02-25 16:27:46 +0100686static void sta_info_debugfs_add_work(struct work_struct *work)
Jiri Bence9f207f2007-05-05 11:46:38 -0700687{
688 struct ieee80211_local *local =
689 container_of(work, struct ieee80211_local, sta_debugfs_add);
690 struct sta_info *sta, *tmp;
Johannes Bergd0709a62008-02-25 16:27:46 +0100691 unsigned long flags;
Jiri Bence9f207f2007-05-05 11:46:38 -0700692
Johannes Berg49ec6fa22008-04-03 14:31:05 +0200693 /* We need to keep the RTNL across the whole pinned status. */
694 rtnl_lock();
Jiri Bence9f207f2007-05-05 11:46:38 -0700695 while (1) {
Jiri Bence9f207f2007-05-05 11:46:38 -0700696 sta = NULL;
Johannes Bergd0709a62008-02-25 16:27:46 +0100697
698 spin_lock_irqsave(&local->sta_lock, flags);
Jiri Bence9f207f2007-05-05 11:46:38 -0700699 list_for_each_entry(tmp, &local->sta_list, list) {
Johannes Berg63044e92008-10-07 12:04:29 +0200700 /*
701 * debugfs.add_has_run will be set by
702 * ieee80211_sta_debugfs_add regardless
703 * of what else it does.
704 */
705 if (!tmp->debugfs.add_has_run) {
Jiri Bence9f207f2007-05-05 11:46:38 -0700706 sta = tmp;
Johannes Bergd0709a62008-02-25 16:27:46 +0100707 __sta_info_pin(sta);
Jiri Bence9f207f2007-05-05 11:46:38 -0700708 break;
709 }
710 }
Johannes Bergd0709a62008-02-25 16:27:46 +0100711 spin_unlock_irqrestore(&local->sta_lock, flags);
Jiri Bence9f207f2007-05-05 11:46:38 -0700712
713 if (!sta)
714 break;
715
Jiri Bence9f207f2007-05-05 11:46:38 -0700716 ieee80211_sta_debugfs_add(sta);
717 rate_control_add_sta_debugfs(sta);
Johannes Bergd0709a62008-02-25 16:27:46 +0100718
719 sta = __sta_info_unpin(sta);
Johannes Berg4f6fab42008-03-31 19:23:02 +0200720 sta_info_destroy(sta);
Jiri Bence9f207f2007-05-05 11:46:38 -0700721 }
Johannes Berg49ec6fa22008-04-03 14:31:05 +0200722 rtnl_unlock();
Jiri Bence9f207f2007-05-05 11:46:38 -0700723}
724#endif
725
Jiri Bencf0706e82007-05-05 11:45:53 -0700726void sta_info_init(struct ieee80211_local *local)
727{
Johannes Bergd0709a62008-02-25 16:27:46 +0100728 spin_lock_init(&local->sta_lock);
Jiri Bencf0706e82007-05-05 11:45:53 -0700729 INIT_LIST_HEAD(&local->sta_list);
Jiri Bencf0706e82007-05-05 11:45:53 -0700730
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -0800731 setup_timer(&local->sta_cleanup, sta_info_cleanup,
732 (unsigned long)local);
Johannes Berg0d174402007-12-17 15:07:43 +0100733 local->sta_cleanup.expires =
734 round_jiffies(jiffies + STA_INFO_CLEANUP_INTERVAL);
Jiri Bence9f207f2007-05-05 11:46:38 -0700735
736#ifdef CONFIG_MAC80211_DEBUGFS
Johannes Bergd0709a62008-02-25 16:27:46 +0100737 INIT_WORK(&local->sta_debugfs_add, sta_info_debugfs_add_work);
Jiri Bence9f207f2007-05-05 11:46:38 -0700738#endif
Jiri Bencf0706e82007-05-05 11:45:53 -0700739}
740
741int sta_info_start(struct ieee80211_local *local)
742{
743 add_timer(&local->sta_cleanup);
744 return 0;
745}
746
747void sta_info_stop(struct ieee80211_local *local)
748{
Jiri Bencf0706e82007-05-05 11:45:53 -0700749 del_timer(&local->sta_cleanup);
Johannes Berg49ec6fa22008-04-03 14:31:05 +0200750#ifdef CONFIG_MAC80211_DEBUGFS
751 /*
752 * Make sure the debugfs adding work isn't pending after this
753 * because we're about to be destroyed. It doesn't matter
754 * whether it ran or not since we're going to flush all STAs
755 * anyway.
756 */
757 cancel_work_sync(&local->sta_debugfs_add);
758#endif
Johannes Bergdc6676b2008-03-31 19:23:03 +0200759
Michael Wube8755e2007-07-27 15:43:23 +0200760 sta_info_flush(local, NULL);
Jiri Bencf0706e82007-05-05 11:45:53 -0700761}
762
Jiri Bencf0706e82007-05-05 11:45:53 -0700763/**
764 * sta_info_flush - flush matching STA entries from the STA table
Johannes Berg44213b52008-02-25 16:27:49 +0100765 *
766 * Returns the number of removed STA entries.
767 *
Jiri Bencf0706e82007-05-05 11:45:53 -0700768 * @local: local interface data
Johannes Bergd0709a62008-02-25 16:27:46 +0100769 * @sdata: matching rule for the net device (sta->dev) or %NULL to match all STAs
Jiri Bencf0706e82007-05-05 11:45:53 -0700770 */
Johannes Berg44213b52008-02-25 16:27:49 +0100771int sta_info_flush(struct ieee80211_local *local,
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200772 struct ieee80211_sub_if_data *sdata)
Jiri Bencf0706e82007-05-05 11:45:53 -0700773{
774 struct sta_info *sta, *tmp;
Michael Wube8755e2007-07-27 15:43:23 +0200775 LIST_HEAD(tmp_list);
Johannes Berg44213b52008-02-25 16:27:49 +0100776 int ret = 0;
Johannes Bergd0709a62008-02-25 16:27:46 +0100777 unsigned long flags;
Jiri Bencf0706e82007-05-05 11:45:53 -0700778
Johannes Bergd0709a62008-02-25 16:27:46 +0100779 might_sleep();
780
781 spin_lock_irqsave(&local->sta_lock, flags);
782 list_for_each_entry_safe(sta, tmp, &local->sta_list, list) {
783 if (!sdata || sdata == sta->sdata) {
784 __sta_info_unlink(&sta);
Johannes Berg44213b52008-02-25 16:27:49 +0100785 if (sta) {
Johannes Bergd0709a62008-02-25 16:27:46 +0100786 list_add_tail(&sta->list, &tmp_list);
Johannes Berg44213b52008-02-25 16:27:49 +0100787 ret++;
788 }
Michael Wube8755e2007-07-27 15:43:23 +0200789 }
Michael Wube8755e2007-07-27 15:43:23 +0200790 }
Johannes Bergd0709a62008-02-25 16:27:46 +0100791 spin_unlock_irqrestore(&local->sta_lock, flags);
792
Johannes Bergd0709a62008-02-25 16:27:46 +0100793 list_for_each_entry_safe(sta, tmp, &tmp_list, list)
794 sta_info_destroy(sta);
Johannes Berg44213b52008-02-25 16:27:49 +0100795
796 return ret;
Jiri Bencf0706e82007-05-05 11:45:53 -0700797}
Johannes Bergdc6676b2008-03-31 19:23:03 +0200798
Johannes Berg24723d12008-09-11 00:01:46 +0200799void ieee80211_sta_expire(struct ieee80211_sub_if_data *sdata,
800 unsigned long exp_time)
801{
802 struct ieee80211_local *local = sdata->local;
803 struct sta_info *sta, *tmp;
804 LIST_HEAD(tmp_list);
Johannes Berg24723d12008-09-11 00:01:46 +0200805 unsigned long flags;
806
807 spin_lock_irqsave(&local->sta_lock, flags);
808 list_for_each_entry_safe(sta, tmp, &local->sta_list, list)
809 if (time_after(jiffies, sta->last_rx + exp_time)) {
810#ifdef CONFIG_MAC80211_IBSS_DEBUG
Johannes Berg0c68ae262008-10-27 15:56:10 -0700811 printk(KERN_DEBUG "%s: expiring inactive STA %pM\n",
812 sdata->dev->name, sta->sta.addr);
Johannes Berg24723d12008-09-11 00:01:46 +0200813#endif
814 __sta_info_unlink(&sta);
815 if (sta)
816 list_add(&sta->list, &tmp_list);
817 }
818 spin_unlock_irqrestore(&local->sta_lock, flags);
819
820 list_for_each_entry_safe(sta, tmp, &tmp_list, list)
821 sta_info_destroy(sta);
822}
Johannes Berg17741cd2008-09-11 00:02:02 +0200823
Johannes Berg5ed176e2009-11-04 14:42:28 +0100824struct ieee80211_sta *ieee80211_find_sta_by_hw(struct ieee80211_hw *hw,
825 const u8 *addr)
Johannes Berg17741cd2008-09-11 00:02:02 +0200826{
Johannes Berg4b7679a2008-09-18 18:14:18 +0200827 struct sta_info *sta = sta_info_get(hw_to_local(hw), addr);
Johannes Berg17741cd2008-09-11 00:02:02 +0200828
829 if (!sta)
830 return NULL;
831 return &sta->sta;
832}
Johannes Berg5ed176e2009-11-04 14:42:28 +0100833EXPORT_SYMBOL_GPL(ieee80211_find_sta_by_hw);
834
835struct ieee80211_sta *ieee80211_find_sta(struct ieee80211_vif *vif,
836 const u8 *addr)
837{
838 struct ieee80211_sub_if_data *sdata;
839
840 if (!vif)
841 return NULL;
842
843 sdata = vif_to_sdata(vif);
844
845 return ieee80211_find_sta_by_hw(&sdata->local->hw, addr);
846}
Johannes Berg17741cd2008-09-11 00:02:02 +0200847EXPORT_SYMBOL(ieee80211_find_sta);
Johannes Bergaf818582009-11-06 11:35:50 +0100848
849/* powersave support code */
850void ieee80211_sta_ps_deliver_wakeup(struct sta_info *sta)
851{
852 struct ieee80211_sub_if_data *sdata = sta->sdata;
853 struct ieee80211_local *local = sdata->local;
854 int sent, buffered;
855
856 drv_sta_notify(local, &sdata->vif, STA_NOTIFY_AWAKE, &sta->sta);
857
858 if (!skb_queue_empty(&sta->ps_tx_buf))
859 sta_info_clear_tim_bit(sta);
860
861 /* Send all buffered frames to the station */
862 sent = ieee80211_add_pending_skbs(local, &sta->tx_filtered);
863 buffered = ieee80211_add_pending_skbs(local, &sta->ps_tx_buf);
864 sent += buffered;
865 local->total_ps_buffered -= buffered;
866
867#ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
868 printk(KERN_DEBUG "%s: STA %pM aid %d sending %d filtered/%d PS frames "
869 "since STA not sleeping anymore\n", sdata->dev->name,
870 sta->sta.addr, sta->sta.aid, sent - buffered, buffered);
871#endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */
872}
873
874void ieee80211_sta_ps_deliver_poll_response(struct sta_info *sta)
875{
876 struct ieee80211_sub_if_data *sdata = sta->sdata;
877 struct ieee80211_local *local = sdata->local;
878 struct sk_buff *skb;
879 int no_pending_pkts;
880
881 skb = skb_dequeue(&sta->tx_filtered);
882 if (!skb) {
883 skb = skb_dequeue(&sta->ps_tx_buf);
884 if (skb)
885 local->total_ps_buffered--;
886 }
887 no_pending_pkts = skb_queue_empty(&sta->tx_filtered) &&
888 skb_queue_empty(&sta->ps_tx_buf);
889
890 if (skb) {
891 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
892 struct ieee80211_hdr *hdr =
893 (struct ieee80211_hdr *) skb->data;
894
895 /*
896 * Tell TX path to send this frame even though the STA may
897 * still remain is PS mode after this frame exchange.
898 */
899 info->flags |= IEEE80211_TX_CTL_PSPOLL_RESPONSE;
900
901#ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
902 printk(KERN_DEBUG "STA %pM aid %d: PS Poll (entries after %d)\n",
903 sta->sta.addr, sta->sta.aid,
904 skb_queue_len(&sta->ps_tx_buf));
905#endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */
906
907 /* Use MoreData flag to indicate whether there are more
908 * buffered frames for this STA */
909 if (no_pending_pkts)
910 hdr->frame_control &= cpu_to_le16(~IEEE80211_FCTL_MOREDATA);
911 else
912 hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_MOREDATA);
913
914 ieee80211_add_pending_skb(local, skb);
915
916 if (no_pending_pkts)
917 sta_info_clear_tim_bit(sta);
918#ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
919 } else {
920 /*
921 * FIXME: This can be the result of a race condition between
922 * us expiring a frame and the station polling for it.
923 * Should we send it a null-func frame indicating we
924 * have nothing buffered for it?
925 */
926 printk(KERN_DEBUG "%s: STA %pM sent PS Poll even "
927 "though there are no buffered frames for it\n",
928 sdata->dev->name, sta->sta.addr);
929#endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */
930 }
931}
932
933void ieee80211_sta_block_awake(struct ieee80211_hw *hw,
934 struct ieee80211_sta *pubsta, bool block)
935{
936 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
937
938 if (block)
939 set_sta_flags(sta, WLAN_STA_PS_DRIVER);
940 else
941 ieee80211_queue_work(hw, &sta->drv_unblock_wk);
942}
943EXPORT_SYMBOL(ieee80211_sta_block_awake);