blob: 71f370dd24bcee545775eb6f9489c0d14b868aee [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
Johannes Berg3b53fde82009-11-16 12:00:37 +0100119struct sta_info *sta_info_get_by_idx(struct ieee80211_sub_if_data *sdata,
120 int idx)
Luis Carlos Coboee385852008-02-23 15:17:11 +0100121{
Johannes Berg3b53fde82009-11-16 12:00:37 +0100122 struct ieee80211_local *local = sdata->local;
Luis Carlos Coboee385852008-02-23 15:17:11 +0100123 struct sta_info *sta;
124 int i = 0;
125
Johannes Bergd0709a62008-02-25 16:27:46 +0100126 list_for_each_entry_rcu(sta, &local->sta_list, list) {
Johannes Berg3b53fde82009-11-16 12:00:37 +0100127 if (sdata != sta->sdata)
Luis Carlos Cobo2a8ca292008-02-29 17:51:25 -0800128 continue;
Luis Carlos Coboee385852008-02-23 15:17:11 +0100129 if (i < idx) {
130 ++i;
131 continue;
Luis Carlos Coboee385852008-02-23 15:17:11 +0100132 }
Luis Carlos Cobo2a8ca292008-02-29 17:51:25 -0800133 return sta;
Luis Carlos Coboee385852008-02-23 15:17:11 +0100134 }
Luis Carlos Coboee385852008-02-23 15:17:11 +0100135
136 return NULL;
137}
Jiri Bencf0706e82007-05-05 11:45:53 -0700138
Johannes Berg93e5deb2008-04-01 15:21:00 +0200139/**
140 * __sta_info_free - internal STA free helper
141 *
Randy Dunlap6ef307b2008-07-03 13:52:18 -0700142 * @local: pointer to the global information
Johannes Berg93e5deb2008-04-01 15:21:00 +0200143 * @sta: STA info to free
144 *
145 * This function must undo everything done by sta_info_alloc()
146 * that may happen before sta_info_insert().
147 */
148static void __sta_info_free(struct ieee80211_local *local,
149 struct sta_info *sta)
150{
Johannes Bergaf65cd962009-11-17 18:18:36 +0100151 if (sta->rate_ctrl) {
152 rate_control_free_sta(sta);
153 rate_control_put(sta->rate_ctrl);
154 }
Johannes Berg93e5deb2008-04-01 15:21:00 +0200155
156#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Johannes Berg0c68ae262008-10-27 15:56:10 -0700157 printk(KERN_DEBUG "%s: Destroyed STA %pM\n",
158 wiphy_name(local->hw.wiphy), sta->sta.addr);
Johannes Berg93e5deb2008-04-01 15:21:00 +0200159#endif /* CONFIG_MAC80211_VERBOSE_DEBUG */
160
161 kfree(sta);
162}
163
Johannes Bergd0709a62008-02-25 16:27:46 +0100164void sta_info_destroy(struct sta_info *sta)
Jiri Bencf0706e82007-05-05 11:45:53 -0700165{
Johannes Berg97bff8e2008-03-31 19:23:00 +0200166 struct ieee80211_local *local;
Jiri Bencf0706e82007-05-05 11:45:53 -0700167 struct sk_buff *skb;
Ron Rindjunsky07db2182007-12-25 17:00:33 +0200168 int i;
Johannes Berg73651ee2008-02-25 16:27:47 +0100169
Johannes Berg97bff8e2008-03-31 19:23:00 +0200170 might_sleep();
171
Johannes Berg73651ee2008-02-25 16:27:47 +0100172 if (!sta)
173 return;
Jiri Bencf0706e82007-05-05 11:45:53 -0700174
Johannes Berg97bff8e2008-03-31 19:23:00 +0200175 local = sta->local;
Johannes Bergd0709a62008-02-25 16:27:46 +0100176
Johannes Bergaf818582009-11-06 11:35:50 +0100177 cancel_work_sync(&sta->drv_unblock_wk);
178
Johannes Bergd0709a62008-02-25 16:27:46 +0100179 rate_control_remove_sta_debugfs(sta);
180 ieee80211_sta_debugfs_remove(sta);
181
182#ifdef CONFIG_MAC80211_MESH
183 if (ieee80211_vif_is_mesh(&sta->sdata->vif))
184 mesh_plink_deactivate(sta);
185#endif
186
Johannes Berg3b967662008-04-08 17:56:52 +0200187 /*
188 * We have only unlinked the key, and actually destroying it
189 * may mean it is removed from hardware which requires that
190 * the key->sta pointer is still valid, so flush the key todo
191 * list here.
192 *
193 * ieee80211_key_todo() will synchronize_rcu() so after this
194 * nothing can reference this sta struct any more.
195 */
196 ieee80211_key_todo();
Johannes Bergd0709a62008-02-25 16:27:46 +0100197
198#ifdef CONFIG_MAC80211_MESH
199 if (ieee80211_vif_is_mesh(&sta->sdata->vif))
200 del_timer_sync(&sta->plink_timer);
201#endif
202
Jiri Bencf0706e82007-05-05 11:45:53 -0700203 while ((skb = skb_dequeue(&sta->ps_tx_buf)) != NULL) {
204 local->total_ps_buffered--;
205 dev_kfree_skb_any(skb);
206 }
Johannes Bergd0709a62008-02-25 16:27:46 +0100207
208 while ((skb = skb_dequeue(&sta->tx_filtered)) != NULL)
Jiri Bencf0706e82007-05-05 11:45:53 -0700209 dev_kfree_skb_any(skb);
Johannes Bergd0709a62008-02-25 16:27:46 +0100210
Ron Rindjunskyfe3bf0f2008-01-28 14:07:19 +0200211 for (i = 0; i < STA_TID_NUM; i++) {
Johannes Berg55687e32009-02-10 21:25:51 +0100212 struct tid_ampdu_rx *tid_rx;
213 struct tid_ampdu_tx *tid_tx;
214
Johannes Berg07346f812008-05-03 01:02:02 +0200215 spin_lock_bh(&sta->lock);
Johannes Berg55687e32009-02-10 21:25:51 +0100216 tid_rx = sta->ampdu_mlme.tid_rx[i];
217 /* Make sure timer won't free the tid_rx struct, see below */
218 if (tid_rx)
219 tid_rx->shutdown = true;
Johannes Berg96f5e662009-02-12 00:51:53 +0100220
Johannes Berg07346f812008-05-03 01:02:02 +0200221 spin_unlock_bh(&sta->lock);
Johannes Berg55687e32009-02-10 21:25:51 +0100222
223 /*
224 * Outside spinlock - shutdown is true now so that the timer
225 * won't free tid_rx, we have to do that now. Can't let the
226 * timer do it because we have to sync the timer outside the
227 * lock that it takes itself.
228 */
229 if (tid_rx) {
230 del_timer_sync(&tid_rx->session_timer);
231 kfree(tid_rx);
232 }
233
234 /*
235 * No need to do such complications for TX agg sessions, the
236 * path leading to freeing the tid_tx struct goes via a call
237 * from the driver, and thus needs to look up the sta struct
238 * again, which cannot be found when we get here. Hence, we
239 * just need to delete the timer and free the aggregation
240 * info; we won't be telling the peer about it then but that
241 * doesn't matter if we're not talking to it again anyway.
242 */
243 tid_tx = sta->ampdu_mlme.tid_tx[i];
244 if (tid_tx) {
245 del_timer_sync(&tid_tx->addba_resp_timer);
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100246 /*
247 * STA removed while aggregation session being
248 * started? Bit odd, but purge frames anyway.
249 */
250 skb_queue_purge(&tid_tx->pending);
Johannes Berg55687e32009-02-10 21:25:51 +0100251 kfree(tid_tx);
252 }
Ron Rindjunskyfe3bf0f2008-01-28 14:07:19 +0200253 }
Ron Rindjunskycee24a32008-03-26 20:36:03 +0200254
Johannes Berg93e5deb2008-04-01 15:21:00 +0200255 __sta_info_free(local, sta);
Jiri Bencf0706e82007-05-05 11:45:53 -0700256}
257
258
Johannes Bergd0709a62008-02-25 16:27:46 +0100259/* Caller must hold local->sta_lock */
260static void sta_info_hash_add(struct ieee80211_local *local,
261 struct sta_info *sta)
Jiri Bencf0706e82007-05-05 11:45:53 -0700262{
Johannes Berg17741cd2008-09-11 00:02:02 +0200263 sta->hnext = local->sta_hash[STA_HASH(sta->sta.addr)];
264 rcu_assign_pointer(local->sta_hash[STA_HASH(sta->sta.addr)], sta);
Jiri Bencf0706e82007-05-05 11:45:53 -0700265}
Jiri Bencf0706e82007-05-05 11:45:53 -0700266
Johannes Bergaf818582009-11-06 11:35:50 +0100267static void sta_unblock(struct work_struct *wk)
268{
269 struct sta_info *sta;
270
271 sta = container_of(wk, struct sta_info, drv_unblock_wk);
272
273 if (sta->dead)
274 return;
275
276 if (!test_sta_flags(sta, WLAN_STA_PS_STA))
277 ieee80211_sta_ps_deliver_wakeup(sta);
278 else if (test_and_clear_sta_flags(sta, WLAN_STA_PSPOLL))
279 ieee80211_sta_ps_deliver_poll_response(sta);
280}
281
Johannes Bergaf65cd962009-11-17 18:18:36 +0100282static int sta_prepare_rate_control(struct ieee80211_local *local,
283 struct sta_info *sta, gfp_t gfp)
284{
285 if (local->hw.flags & IEEE80211_HW_HAS_RATE_CONTROL)
286 return 0;
287
288 sta->rate_ctrl = rate_control_get(local->rate_ctrl);
289 sta->rate_ctrl_priv = rate_control_alloc_sta(sta->rate_ctrl,
290 &sta->sta, gfp);
291 if (!sta->rate_ctrl_priv) {
292 rate_control_put(sta->rate_ctrl);
293 return -ENOMEM;
294 }
295
296 return 0;
297}
298
Johannes Berg73651ee2008-02-25 16:27:47 +0100299struct sta_info *sta_info_alloc(struct ieee80211_sub_if_data *sdata,
300 u8 *addr, gfp_t gfp)
Jiri Bencf0706e82007-05-05 11:45:53 -0700301{
Johannes Bergd0709a62008-02-25 16:27:46 +0100302 struct ieee80211_local *local = sdata->local;
Jiri Bencf0706e82007-05-05 11:45:53 -0700303 struct sta_info *sta;
Ron Rindjunsky16c5f152007-12-25 17:00:34 +0200304 int i;
Jiri Bencf0706e82007-05-05 11:45:53 -0700305
Johannes Berg17741cd2008-09-11 00:02:02 +0200306 sta = kzalloc(sizeof(*sta) + local->hw.sta_data_size, gfp);
Jiri Bencf0706e82007-05-05 11:45:53 -0700307 if (!sta)
Johannes Berg73651ee2008-02-25 16:27:47 +0100308 return NULL;
Jiri Bencf0706e82007-05-05 11:45:53 -0700309
Johannes Berg07346f812008-05-03 01:02:02 +0200310 spin_lock_init(&sta->lock);
Johannes Berg5a9f7b02008-06-18 14:58:09 +0200311 spin_lock_init(&sta->flaglock);
Johannes Bergaf818582009-11-06 11:35:50 +0100312 INIT_WORK(&sta->drv_unblock_wk, sta_unblock);
Johannes Berg07346f812008-05-03 01:02:02 +0200313
Johannes Berg17741cd2008-09-11 00:02:02 +0200314 memcpy(sta->sta.addr, addr, ETH_ALEN);
Johannes Bergd0709a62008-02-25 16:27:46 +0100315 sta->local = local;
316 sta->sdata = sdata;
Jiri Bencf0706e82007-05-05 11:45:53 -0700317
Johannes Bergaf65cd962009-11-17 18:18:36 +0100318 if (sta_prepare_rate_control(local, sta, gfp)) {
Jiri Bencf0706e82007-05-05 11:45:53 -0700319 kfree(sta);
Johannes Berg73651ee2008-02-25 16:27:47 +0100320 return NULL;
Jiri Bencf0706e82007-05-05 11:45:53 -0700321 }
322
Ron Rindjunsky16c5f152007-12-25 17:00:34 +0200323 for (i = 0; i < STA_TID_NUM; i++) {
324 /* timer_to_tid must be initialized with identity mapping to
325 * enable session_timer's data differentiation. refer to
326 * sta_rx_agg_session_timer_expired for useage */
327 sta->timer_to_tid[i] = i;
Ron Rindjunskycee24a32008-03-26 20:36:03 +0200328 /* rx */
329 sta->ampdu_mlme.tid_state_rx[i] = HT_AGG_STATE_IDLE;
330 sta->ampdu_mlme.tid_rx[i] = NULL;
331 /* tx */
332 sta->ampdu_mlme.tid_state_tx[i] = HT_AGG_STATE_IDLE;
333 sta->ampdu_mlme.tid_tx[i] = NULL;
334 sta->ampdu_mlme.addba_req_num[i] = 0;
Ron Rindjunsky16c5f152007-12-25 17:00:34 +0200335 }
Jiri Bencf0706e82007-05-05 11:45:53 -0700336 skb_queue_head_init(&sta->ps_tx_buf);
337 skb_queue_head_init(&sta->tx_filtered);
Johannes Berg73651ee2008-02-25 16:27:47 +0100338
Senthil Balasubramaniancccaec92009-05-14 18:42:08 +0530339 for (i = 0; i < NUM_RX_DATA_QUEUES; i++)
340 sta->last_seq_ctrl[i] = cpu_to_le16(USHORT_MAX);
341
Johannes Berg73651ee2008-02-25 16:27:47 +0100342#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Johannes Berg0c68ae262008-10-27 15:56:10 -0700343 printk(KERN_DEBUG "%s: Allocated STA %pM\n",
344 wiphy_name(local->hw.wiphy), sta->sta.addr);
Johannes Berg73651ee2008-02-25 16:27:47 +0100345#endif /* CONFIG_MAC80211_VERBOSE_DEBUG */
346
Johannes Berg03e44972008-02-27 09:56:40 +0100347#ifdef CONFIG_MAC80211_MESH
Luis Carlos Cobob4e08ea2008-02-29 15:46:08 -0800348 sta->plink_state = PLINK_LISTEN;
Johannes Berg03e44972008-02-27 09:56:40 +0100349 init_timer(&sta->plink_timer);
350#endif
351
Johannes Berg73651ee2008-02-25 16:27:47 +0100352 return sta;
353}
354
355int sta_info_insert(struct sta_info *sta)
356{
357 struct ieee80211_local *local = sta->local;
358 struct ieee80211_sub_if_data *sdata = sta->sdata;
359 unsigned long flags;
Johannes Berg93e5deb2008-04-01 15:21:00 +0200360 int err = 0;
Johannes Berg73651ee2008-02-25 16:27:47 +0100361
Johannes Berg03e44972008-02-27 09:56:40 +0100362 /*
363 * Can't be a WARN_ON because it can be triggered through a race:
364 * something inserts a STA (on one CPU) without holding the RTNL
365 * and another CPU turns off the net device.
366 */
Johannes Berg93e5deb2008-04-01 15:21:00 +0200367 if (unlikely(!netif_running(sdata->dev))) {
368 err = -ENETDOWN;
369 goto out_free;
370 }
Johannes Berg03e44972008-02-27 09:56:40 +0100371
Johannes Berg17741cd2008-09-11 00:02:02 +0200372 if (WARN_ON(compare_ether_addr(sta->sta.addr, sdata->dev->dev_addr) == 0 ||
Johannes Bergc6a1fa12008-10-07 12:04:32 +0200373 is_multicast_ether_addr(sta->sta.addr))) {
Johannes Berg93e5deb2008-04-01 15:21:00 +0200374 err = -EINVAL;
375 goto out_free;
376 }
Johannes Berg44213b52008-02-25 16:27:49 +0100377
Johannes Bergd0709a62008-02-25 16:27:46 +0100378 spin_lock_irqsave(&local->sta_lock, flags);
Johannes Berg43ba7e92008-02-21 14:09:30 +0100379 /* check if STA exists already */
Johannes Berg4b7679a2008-09-18 18:14:18 +0200380 if (sta_info_get(local, sta->sta.addr)) {
Johannes Bergd0709a62008-02-25 16:27:46 +0100381 spin_unlock_irqrestore(&local->sta_lock, flags);
Johannes Berg93e5deb2008-04-01 15:21:00 +0200382 err = -EEXIST;
383 goto out_free;
Johannes Berg43ba7e92008-02-21 14:09:30 +0100384 }
Jiri Bencf0706e82007-05-05 11:45:53 -0700385 list_add(&sta->list, &local->sta_list);
Johannes Bergf5ea9122009-08-07 16:17:38 +0200386 local->sta_generation++;
Jiri Bencf0706e82007-05-05 11:45:53 -0700387 local->num_sta++;
388 sta_info_hash_add(local, sta);
Johannes Berg32bfd352007-12-19 01:31:26 +0100389
Johannes Bergd0709a62008-02-25 16:27:46 +0100390 /* notify driver */
391 if (local->ops->sta_notify) {
Johannes Berg05c914f2008-09-11 00:01:58 +0200392 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
Johannes Berg3e122be2008-07-09 14:40:34 +0200393 sdata = container_of(sdata->bss,
394 struct ieee80211_sub_if_data,
395 u.ap);
Johannes Berg32bfd352007-12-19 01:31:26 +0100396
Johannes Berg24487982009-04-23 18:52:52 +0200397 drv_sta_notify(local, &sdata->vif, STA_NOTIFY_ADD, &sta->sta);
Johannes Bergfbc44bf2009-10-01 22:06:29 +0200398 sdata = sta->sdata;
Johannes Berg32bfd352007-12-19 01:31:26 +0100399 }
Johannes Bergd0709a62008-02-25 16:27:46 +0100400
Jiri Bencf0706e82007-05-05 11:45:53 -0700401#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Johannes Berg0c68ae262008-10-27 15:56:10 -0700402 printk(KERN_DEBUG "%s: Inserted STA %pM\n",
403 wiphy_name(local->hw.wiphy), sta->sta.addr);
Jiri Bencf0706e82007-05-05 11:45:53 -0700404#endif /* CONFIG_MAC80211_VERBOSE_DEBUG */
405
Johannes Berg73651ee2008-02-25 16:27:47 +0100406 spin_unlock_irqrestore(&local->sta_lock, flags);
407
Jiri Bence9f207f2007-05-05 11:46:38 -0700408#ifdef CONFIG_MAC80211_DEBUGFS
Johannes Berg93e5deb2008-04-01 15:21:00 +0200409 /*
410 * Debugfs entry adding might sleep, so schedule process
Michael Wube8755e2007-07-27 15:43:23 +0200411 * context task for adding entry for STAs that do not yet
Johannes Berg93e5deb2008-04-01 15:21:00 +0200412 * have one.
413 * NOTE: due to auto-freeing semantics this may only be done
414 * if the insertion is successful!
415 */
Johannes Berg49ec6fa22008-04-03 14:31:05 +0200416 schedule_work(&local->sta_debugfs_add);
Jiri Bence9f207f2007-05-05 11:46:38 -0700417#endif
418
Johannes Berg73651ee2008-02-25 16:27:47 +0100419 if (ieee80211_vif_is_mesh(&sdata->vif))
420 mesh_accept_plinks_update(sdata);
421
422 return 0;
Johannes Berg93e5deb2008-04-01 15:21:00 +0200423 out_free:
424 BUG_ON(!err);
425 __sta_info_free(local, sta);
426 return err;
Jiri Bencf0706e82007-05-05 11:45:53 -0700427}
428
Johannes Berg004c8722008-02-20 11:21:35 +0100429static inline void __bss_tim_set(struct ieee80211_if_ap *bss, u16 aid)
430{
431 /*
432 * This format has been mandated by the IEEE specifications,
433 * so this line may not be changed to use the __set_bit() format.
434 */
435 bss->tim[aid / 8] |= (1 << (aid % 8));
436}
437
438static inline void __bss_tim_clear(struct ieee80211_if_ap *bss, u16 aid)
439{
440 /*
441 * This format has been mandated by the IEEE specifications,
442 * so this line may not be changed to use the __clear_bit() format.
443 */
444 bss->tim[aid / 8] &= ~(1 << (aid % 8));
445}
446
447static void __sta_info_set_tim_bit(struct ieee80211_if_ap *bss,
448 struct sta_info *sta)
449{
Johannes Berg3e122be2008-07-09 14:40:34 +0200450 BUG_ON(!bss);
451
Johannes Berg17741cd2008-09-11 00:02:02 +0200452 __bss_tim_set(bss, sta->sta.aid);
Johannes Berg3e122be2008-07-09 14:40:34 +0200453
Johannes Bergd0709a62008-02-25 16:27:46 +0100454 if (sta->local->ops->set_tim) {
455 sta->local->tim_in_locked_section = true;
Johannes Berg24487982009-04-23 18:52:52 +0200456 drv_set_tim(sta->local, &sta->sta, true);
Johannes Bergd0709a62008-02-25 16:27:46 +0100457 sta->local->tim_in_locked_section = false;
458 }
Johannes Berg004c8722008-02-20 11:21:35 +0100459}
460
461void sta_info_set_tim_bit(struct sta_info *sta)
462{
Johannes Bergd0709a62008-02-25 16:27:46 +0100463 unsigned long flags;
Johannes Berg004c8722008-02-20 11:21:35 +0100464
Johannes Berg3e122be2008-07-09 14:40:34 +0200465 BUG_ON(!sta->sdata->bss);
466
Johannes Bergd0709a62008-02-25 16:27:46 +0100467 spin_lock_irqsave(&sta->local->sta_lock, flags);
468 __sta_info_set_tim_bit(sta->sdata->bss, sta);
469 spin_unlock_irqrestore(&sta->local->sta_lock, flags);
Johannes Berg004c8722008-02-20 11:21:35 +0100470}
471
472static void __sta_info_clear_tim_bit(struct ieee80211_if_ap *bss,
473 struct sta_info *sta)
474{
Johannes Berg3e122be2008-07-09 14:40:34 +0200475 BUG_ON(!bss);
476
Johannes Berg17741cd2008-09-11 00:02:02 +0200477 __bss_tim_clear(bss, sta->sta.aid);
Johannes Berg3e122be2008-07-09 14:40:34 +0200478
Johannes Bergd0709a62008-02-25 16:27:46 +0100479 if (sta->local->ops->set_tim) {
480 sta->local->tim_in_locked_section = true;
Johannes Berg24487982009-04-23 18:52:52 +0200481 drv_set_tim(sta->local, &sta->sta, false);
Johannes Bergd0709a62008-02-25 16:27:46 +0100482 sta->local->tim_in_locked_section = false;
483 }
Johannes Berg004c8722008-02-20 11:21:35 +0100484}
485
486void sta_info_clear_tim_bit(struct sta_info *sta)
487{
Johannes Bergd0709a62008-02-25 16:27:46 +0100488 unsigned long flags;
Johannes Berg004c8722008-02-20 11:21:35 +0100489
Johannes Berg3e122be2008-07-09 14:40:34 +0200490 BUG_ON(!sta->sdata->bss);
491
Johannes Bergd0709a62008-02-25 16:27:46 +0100492 spin_lock_irqsave(&sta->local->sta_lock, flags);
493 __sta_info_clear_tim_bit(sta->sdata->bss, sta);
494 spin_unlock_irqrestore(&sta->local->sta_lock, flags);
Johannes Berg004c8722008-02-20 11:21:35 +0100495}
496
Johannes Berg24723d12008-09-11 00:01:46 +0200497static void __sta_info_unlink(struct sta_info **sta)
Johannes Bergd0709a62008-02-25 16:27:46 +0100498{
499 struct ieee80211_local *local = (*sta)->local;
500 struct ieee80211_sub_if_data *sdata = (*sta)->sdata;
Johannes Bergd0709a62008-02-25 16:27:46 +0100501 /*
502 * pull caller's reference if we're already gone.
503 */
504 if (sta_info_hash_del(local, *sta)) {
505 *sta = NULL;
Michael Wube8755e2007-07-27 15:43:23 +0200506 return;
Johannes Bergd0709a62008-02-25 16:27:46 +0100507 }
Michael Wube8755e2007-07-27 15:43:23 +0200508
Johannes Berg3b967662008-04-08 17:56:52 +0200509 if ((*sta)->key) {
510 ieee80211_key_free((*sta)->key);
511 WARN_ON((*sta)->key);
512 }
513
Johannes Berg7d1559f2008-04-08 13:08:20 +0200514 list_del(&(*sta)->list);
Johannes Bergaf818582009-11-06 11:35:50 +0100515 (*sta)->dead = true;
Johannes Berg7d1559f2008-04-08 13:08:20 +0200516
Johannes Bergaf818582009-11-06 11:35:50 +0100517 if (test_and_clear_sta_flags(*sta,
518 WLAN_STA_PS_STA | WLAN_STA_PS_DRIVER)) {
Johannes Berg3e122be2008-07-09 14:40:34 +0200519 BUG_ON(!sdata->bss);
520
521 atomic_dec(&sdata->bss->num_sta_ps);
Johannes Berg7d1559f2008-04-08 13:08:20 +0200522 __sta_info_clear_tim_bit(sdata->bss, *sta);
523 }
524
525 local->num_sta--;
Johannes Bergf5ea9122009-08-07 16:17:38 +0200526 local->sta_generation++;
Johannes Berg7d1559f2008-04-08 13:08:20 +0200527
Felix Fietkauf14543ee2009-11-10 20:10:05 +0100528 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
529 rcu_assign_pointer(sdata->u.vlan.sta, NULL);
530
Johannes Berg7d1559f2008-04-08 13:08:20 +0200531 if (local->ops->sta_notify) {
Johannes Berg05c914f2008-09-11 00:01:58 +0200532 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
Johannes Berg3e122be2008-07-09 14:40:34 +0200533 sdata = container_of(sdata->bss,
534 struct ieee80211_sub_if_data,
535 u.ap);
Johannes Berg7d1559f2008-04-08 13:08:20 +0200536
Johannes Berg24487982009-04-23 18:52:52 +0200537 drv_sta_notify(local, &sdata->vif, STA_NOTIFY_REMOVE,
538 &(*sta)->sta);
Johannes Bergfbc44bf2009-10-01 22:06:29 +0200539 sdata = (*sta)->sdata;
Johannes Berg7d1559f2008-04-08 13:08:20 +0200540 }
541
542 if (ieee80211_vif_is_mesh(&sdata->vif)) {
543 mesh_accept_plinks_update(sdata);
544#ifdef CONFIG_MAC80211_MESH
545 del_timer(&(*sta)->plink_timer);
546#endif
547 }
548
549#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Johannes Berg0c68ae262008-10-27 15:56:10 -0700550 printk(KERN_DEBUG "%s: Removed STA %pM\n",
551 wiphy_name(local->hw.wiphy), (*sta)->sta.addr);
Johannes Berg7d1559f2008-04-08 13:08:20 +0200552#endif /* CONFIG_MAC80211_VERBOSE_DEBUG */
553
Johannes Bergd0709a62008-02-25 16:27:46 +0100554 /*
Johannes Berg7d1559f2008-04-08 13:08:20 +0200555 * Finally, pull caller's reference if the STA is pinned by the
Johannes Bergd0709a62008-02-25 16:27:46 +0100556 * task that is adding the debugfs entries. In that case, we
557 * leave the STA "to be freed".
558 *
559 * The rules are not trivial, but not too complex either:
560 * (1) pin_status is only modified under the sta_lock
Johannes Berg49ec6fa22008-04-03 14:31:05 +0200561 * (2) STAs may only be pinned under the RTNL so that
562 * sta_info_flush() is guaranteed to actually destroy
563 * all STAs that are active for a given interface, this
564 * is required for correctness because otherwise we
565 * could notify a driver that an interface is going
566 * away and only after that (!) notify it about a STA
567 * on that interface going away.
568 * (3) sta_info_debugfs_add_work() will set the status
Johannes Bergd0709a62008-02-25 16:27:46 +0100569 * to PINNED when it found an item that needs a new
570 * debugfs directory created. In that case, that item
571 * must not be freed although all *RCU* users are done
572 * with it. Hence, we tell the caller of _unlink()
573 * that the item is already gone (as can happen when
574 * two tasks try to unlink/destroy at the same time)
Johannes Berg49ec6fa22008-04-03 14:31:05 +0200575 * (4) We set the pin_status to DESTROY here when we
Johannes Bergd0709a62008-02-25 16:27:46 +0100576 * find such an item.
Johannes Berg49ec6fa22008-04-03 14:31:05 +0200577 * (5) sta_info_debugfs_add_work() will reset the pin_status
Johannes Bergd0709a62008-02-25 16:27:46 +0100578 * from PINNED to NORMAL when it is done with the item,
579 * but will check for DESTROY before resetting it in
580 * which case it will free the item.
581 */
582 if ((*sta)->pin_status == STA_INFO_PIN_STAT_PINNED) {
583 (*sta)->pin_status = STA_INFO_PIN_STAT_DESTROY;
584 *sta = NULL;
585 return;
586 }
Jiri Bencf0706e82007-05-05 11:45:53 -0700587}
588
Johannes Bergd0709a62008-02-25 16:27:46 +0100589void sta_info_unlink(struct sta_info **sta)
590{
591 struct ieee80211_local *local = (*sta)->local;
592 unsigned long flags;
593
594 spin_lock_irqsave(&local->sta_lock, flags);
595 __sta_info_unlink(sta);
596 spin_unlock_irqrestore(&local->sta_lock, flags);
597}
Jiri Bencf0706e82007-05-05 11:45:53 -0700598
Johannes Berg57c4d7b2009-04-23 16:10:04 +0200599static int sta_info_buffer_expired(struct sta_info *sta,
600 struct sk_buff *skb)
Jiri Bencf0706e82007-05-05 11:45:53 -0700601{
Johannes Berge039fa42008-05-15 12:55:29 +0200602 struct ieee80211_tx_info *info;
Jiri Bencf0706e82007-05-05 11:45:53 -0700603 int timeout;
604
605 if (!skb)
606 return 0;
607
Johannes Berge039fa42008-05-15 12:55:29 +0200608 info = IEEE80211_SKB_CB(skb);
Jiri Bencf0706e82007-05-05 11:45:53 -0700609
610 /* Timeout: (2 * listen_interval * beacon_int * 1024 / 1000000) sec */
Johannes Berg57c4d7b2009-04-23 16:10:04 +0200611 timeout = (sta->listen_interval *
612 sta->sdata->vif.bss_conf.beacon_int *
613 32 / 15625) * HZ;
Jiri Bencf0706e82007-05-05 11:45:53 -0700614 if (timeout < STA_TX_BUFFER_EXPIRE)
615 timeout = STA_TX_BUFFER_EXPIRE;
Johannes Berge039fa42008-05-15 12:55:29 +0200616 return time_after(jiffies, info->control.jiffies + timeout);
Jiri Bencf0706e82007-05-05 11:45:53 -0700617}
618
619
620static void sta_info_cleanup_expire_buffered(struct ieee80211_local *local,
621 struct sta_info *sta)
622{
623 unsigned long flags;
624 struct sk_buff *skb;
Johannes Berg836341a2008-02-20 02:07:21 +0100625 struct ieee80211_sub_if_data *sdata;
Jiri Bencf0706e82007-05-05 11:45:53 -0700626
627 if (skb_queue_empty(&sta->ps_tx_buf))
628 return;
629
630 for (;;) {
631 spin_lock_irqsave(&sta->ps_tx_buf.lock, flags);
632 skb = skb_peek(&sta->ps_tx_buf);
Johannes Berg57c4d7b2009-04-23 16:10:04 +0200633 if (sta_info_buffer_expired(sta, skb))
Jiri Bencf0706e82007-05-05 11:45:53 -0700634 skb = __skb_dequeue(&sta->ps_tx_buf);
Johannes Berg836341a2008-02-20 02:07:21 +0100635 else
Jiri Bencf0706e82007-05-05 11:45:53 -0700636 skb = NULL;
637 spin_unlock_irqrestore(&sta->ps_tx_buf.lock, flags);
638
Johannes Berg836341a2008-02-20 02:07:21 +0100639 if (!skb)
Jiri Bencf0706e82007-05-05 11:45:53 -0700640 break;
Johannes Berg836341a2008-02-20 02:07:21 +0100641
Johannes Bergd0709a62008-02-25 16:27:46 +0100642 sdata = sta->sdata;
Johannes Berg836341a2008-02-20 02:07:21 +0100643 local->total_ps_buffered--;
Johannes Bergf4ea83d2008-06-30 15:10:46 +0200644#ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
Johannes Berg0c68ae262008-10-27 15:56:10 -0700645 printk(KERN_DEBUG "Buffered frame expired (STA %pM)\n",
646 sta->sta.addr);
Johannes Bergf4ea83d2008-06-30 15:10:46 +0200647#endif
Johannes Berg836341a2008-02-20 02:07:21 +0100648 dev_kfree_skb(skb);
649
Johannes Berg004c8722008-02-20 11:21:35 +0100650 if (skb_queue_empty(&sta->ps_tx_buf))
651 sta_info_clear_tim_bit(sta);
Jiri Bencf0706e82007-05-05 11:45:53 -0700652 }
653}
654
655
656static void sta_info_cleanup(unsigned long data)
657{
658 struct ieee80211_local *local = (struct ieee80211_local *) data;
659 struct sta_info *sta;
660
Johannes Bergd0709a62008-02-25 16:27:46 +0100661 rcu_read_lock();
662 list_for_each_entry_rcu(sta, &local->sta_list, list)
Jiri Bencf0706e82007-05-05 11:45:53 -0700663 sta_info_cleanup_expire_buffered(local, sta);
Johannes Bergd0709a62008-02-25 16:27:46 +0100664 rcu_read_unlock();
Jiri Bencf0706e82007-05-05 11:45:53 -0700665
Johannes Berg5bb644a2009-05-17 11:40:42 +0200666 if (local->quiescing)
667 return;
668
Johannes Berg0d174402007-12-17 15:07:43 +0100669 local->sta_cleanup.expires =
670 round_jiffies(jiffies + STA_INFO_CLEANUP_INTERVAL);
Jiri Bencf0706e82007-05-05 11:45:53 -0700671 add_timer(&local->sta_cleanup);
672}
673
Jiri Bence9f207f2007-05-05 11:46:38 -0700674#ifdef CONFIG_MAC80211_DEBUGFS
Jiri Slaby4d6141c32008-04-07 21:53:49 +0200675/*
676 * See comment in __sta_info_unlink,
677 * caller must hold local->sta_lock.
678 */
679static void __sta_info_pin(struct sta_info *sta)
680{
681 WARN_ON(sta->pin_status != STA_INFO_PIN_STAT_NORMAL);
682 sta->pin_status = STA_INFO_PIN_STAT_PINNED;
683}
684
685/*
686 * See comment in __sta_info_unlink, returns sta if it
687 * needs to be destroyed.
688 */
689static struct sta_info *__sta_info_unpin(struct sta_info *sta)
690{
691 struct sta_info *ret = NULL;
692 unsigned long flags;
693
694 spin_lock_irqsave(&sta->local->sta_lock, flags);
695 WARN_ON(sta->pin_status != STA_INFO_PIN_STAT_DESTROY &&
696 sta->pin_status != STA_INFO_PIN_STAT_PINNED);
697 if (sta->pin_status == STA_INFO_PIN_STAT_DESTROY)
698 ret = sta;
699 sta->pin_status = STA_INFO_PIN_STAT_NORMAL;
700 spin_unlock_irqrestore(&sta->local->sta_lock, flags);
701
702 return ret;
703}
704
Johannes Bergd0709a62008-02-25 16:27:46 +0100705static void sta_info_debugfs_add_work(struct work_struct *work)
Jiri Bence9f207f2007-05-05 11:46:38 -0700706{
707 struct ieee80211_local *local =
708 container_of(work, struct ieee80211_local, sta_debugfs_add);
709 struct sta_info *sta, *tmp;
Johannes Bergd0709a62008-02-25 16:27:46 +0100710 unsigned long flags;
Jiri Bence9f207f2007-05-05 11:46:38 -0700711
Johannes Berg49ec6fa22008-04-03 14:31:05 +0200712 /* We need to keep the RTNL across the whole pinned status. */
713 rtnl_lock();
Jiri Bence9f207f2007-05-05 11:46:38 -0700714 while (1) {
Jiri Bence9f207f2007-05-05 11:46:38 -0700715 sta = NULL;
Johannes Bergd0709a62008-02-25 16:27:46 +0100716
717 spin_lock_irqsave(&local->sta_lock, flags);
Jiri Bence9f207f2007-05-05 11:46:38 -0700718 list_for_each_entry(tmp, &local->sta_list, list) {
Johannes Berg63044e92008-10-07 12:04:29 +0200719 /*
720 * debugfs.add_has_run will be set by
721 * ieee80211_sta_debugfs_add regardless
722 * of what else it does.
723 */
724 if (!tmp->debugfs.add_has_run) {
Jiri Bence9f207f2007-05-05 11:46:38 -0700725 sta = tmp;
Johannes Bergd0709a62008-02-25 16:27:46 +0100726 __sta_info_pin(sta);
Jiri Bence9f207f2007-05-05 11:46:38 -0700727 break;
728 }
729 }
Johannes Bergd0709a62008-02-25 16:27:46 +0100730 spin_unlock_irqrestore(&local->sta_lock, flags);
Jiri Bence9f207f2007-05-05 11:46:38 -0700731
732 if (!sta)
733 break;
734
Jiri Bence9f207f2007-05-05 11:46:38 -0700735 ieee80211_sta_debugfs_add(sta);
736 rate_control_add_sta_debugfs(sta);
Johannes Bergd0709a62008-02-25 16:27:46 +0100737
738 sta = __sta_info_unpin(sta);
Johannes Berg4f6fab42008-03-31 19:23:02 +0200739 sta_info_destroy(sta);
Jiri Bence9f207f2007-05-05 11:46:38 -0700740 }
Johannes Berg49ec6fa22008-04-03 14:31:05 +0200741 rtnl_unlock();
Jiri Bence9f207f2007-05-05 11:46:38 -0700742}
743#endif
744
Jiri Bencf0706e82007-05-05 11:45:53 -0700745void sta_info_init(struct ieee80211_local *local)
746{
Johannes Bergd0709a62008-02-25 16:27:46 +0100747 spin_lock_init(&local->sta_lock);
Jiri Bencf0706e82007-05-05 11:45:53 -0700748 INIT_LIST_HEAD(&local->sta_list);
Jiri Bencf0706e82007-05-05 11:45:53 -0700749
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -0800750 setup_timer(&local->sta_cleanup, sta_info_cleanup,
751 (unsigned long)local);
Johannes Berg0d174402007-12-17 15:07:43 +0100752 local->sta_cleanup.expires =
753 round_jiffies(jiffies + STA_INFO_CLEANUP_INTERVAL);
Jiri Bence9f207f2007-05-05 11:46:38 -0700754
755#ifdef CONFIG_MAC80211_DEBUGFS
Johannes Bergd0709a62008-02-25 16:27:46 +0100756 INIT_WORK(&local->sta_debugfs_add, sta_info_debugfs_add_work);
Jiri Bence9f207f2007-05-05 11:46:38 -0700757#endif
Jiri Bencf0706e82007-05-05 11:45:53 -0700758}
759
760int sta_info_start(struct ieee80211_local *local)
761{
762 add_timer(&local->sta_cleanup);
763 return 0;
764}
765
766void sta_info_stop(struct ieee80211_local *local)
767{
Jiri Bencf0706e82007-05-05 11:45:53 -0700768 del_timer(&local->sta_cleanup);
Johannes Berg49ec6fa22008-04-03 14:31:05 +0200769#ifdef CONFIG_MAC80211_DEBUGFS
770 /*
771 * Make sure the debugfs adding work isn't pending after this
772 * because we're about to be destroyed. It doesn't matter
773 * whether it ran or not since we're going to flush all STAs
774 * anyway.
775 */
776 cancel_work_sync(&local->sta_debugfs_add);
777#endif
Johannes Bergdc6676b2008-03-31 19:23:03 +0200778
Michael Wube8755e2007-07-27 15:43:23 +0200779 sta_info_flush(local, NULL);
Jiri Bencf0706e82007-05-05 11:45:53 -0700780}
781
Jiri Bencf0706e82007-05-05 11:45:53 -0700782/**
783 * sta_info_flush - flush matching STA entries from the STA table
Johannes Berg44213b52008-02-25 16:27:49 +0100784 *
785 * Returns the number of removed STA entries.
786 *
Jiri Bencf0706e82007-05-05 11:45:53 -0700787 * @local: local interface data
Johannes Bergd0709a62008-02-25 16:27:46 +0100788 * @sdata: matching rule for the net device (sta->dev) or %NULL to match all STAs
Jiri Bencf0706e82007-05-05 11:45:53 -0700789 */
Johannes Berg44213b52008-02-25 16:27:49 +0100790int sta_info_flush(struct ieee80211_local *local,
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200791 struct ieee80211_sub_if_data *sdata)
Jiri Bencf0706e82007-05-05 11:45:53 -0700792{
793 struct sta_info *sta, *tmp;
Michael Wube8755e2007-07-27 15:43:23 +0200794 LIST_HEAD(tmp_list);
Johannes Berg44213b52008-02-25 16:27:49 +0100795 int ret = 0;
Johannes Bergd0709a62008-02-25 16:27:46 +0100796 unsigned long flags;
Jiri Bencf0706e82007-05-05 11:45:53 -0700797
Johannes Bergd0709a62008-02-25 16:27:46 +0100798 might_sleep();
799
800 spin_lock_irqsave(&local->sta_lock, flags);
801 list_for_each_entry_safe(sta, tmp, &local->sta_list, list) {
802 if (!sdata || sdata == sta->sdata) {
803 __sta_info_unlink(&sta);
Johannes Berg44213b52008-02-25 16:27:49 +0100804 if (sta) {
Johannes Bergd0709a62008-02-25 16:27:46 +0100805 list_add_tail(&sta->list, &tmp_list);
Johannes Berg44213b52008-02-25 16:27:49 +0100806 ret++;
807 }
Michael Wube8755e2007-07-27 15:43:23 +0200808 }
Michael Wube8755e2007-07-27 15:43:23 +0200809 }
Johannes Bergd0709a62008-02-25 16:27:46 +0100810 spin_unlock_irqrestore(&local->sta_lock, flags);
811
Johannes Bergd0709a62008-02-25 16:27:46 +0100812 list_for_each_entry_safe(sta, tmp, &tmp_list, list)
813 sta_info_destroy(sta);
Johannes Berg44213b52008-02-25 16:27:49 +0100814
815 return ret;
Jiri Bencf0706e82007-05-05 11:45:53 -0700816}
Johannes Bergdc6676b2008-03-31 19:23:03 +0200817
Johannes Berg24723d12008-09-11 00:01:46 +0200818void ieee80211_sta_expire(struct ieee80211_sub_if_data *sdata,
819 unsigned long exp_time)
820{
821 struct ieee80211_local *local = sdata->local;
822 struct sta_info *sta, *tmp;
823 LIST_HEAD(tmp_list);
Johannes Berg24723d12008-09-11 00:01:46 +0200824 unsigned long flags;
825
826 spin_lock_irqsave(&local->sta_lock, flags);
827 list_for_each_entry_safe(sta, tmp, &local->sta_list, list)
828 if (time_after(jiffies, sta->last_rx + exp_time)) {
829#ifdef CONFIG_MAC80211_IBSS_DEBUG
Johannes Berg0c68ae262008-10-27 15:56:10 -0700830 printk(KERN_DEBUG "%s: expiring inactive STA %pM\n",
831 sdata->dev->name, sta->sta.addr);
Johannes Berg24723d12008-09-11 00:01:46 +0200832#endif
833 __sta_info_unlink(&sta);
834 if (sta)
835 list_add(&sta->list, &tmp_list);
836 }
837 spin_unlock_irqrestore(&local->sta_lock, flags);
838
839 list_for_each_entry_safe(sta, tmp, &tmp_list, list)
840 sta_info_destroy(sta);
841}
Johannes Berg17741cd2008-09-11 00:02:02 +0200842
Johannes Berg5ed176e2009-11-04 14:42:28 +0100843struct ieee80211_sta *ieee80211_find_sta_by_hw(struct ieee80211_hw *hw,
844 const u8 *addr)
Johannes Berg17741cd2008-09-11 00:02:02 +0200845{
Johannes Berg4b7679a2008-09-18 18:14:18 +0200846 struct sta_info *sta = sta_info_get(hw_to_local(hw), addr);
Johannes Berg17741cd2008-09-11 00:02:02 +0200847
848 if (!sta)
849 return NULL;
850 return &sta->sta;
851}
Johannes Berg5ed176e2009-11-04 14:42:28 +0100852EXPORT_SYMBOL_GPL(ieee80211_find_sta_by_hw);
853
854struct ieee80211_sta *ieee80211_find_sta(struct ieee80211_vif *vif,
855 const u8 *addr)
856{
857 struct ieee80211_sub_if_data *sdata;
858
859 if (!vif)
860 return NULL;
861
862 sdata = vif_to_sdata(vif);
863
864 return ieee80211_find_sta_by_hw(&sdata->local->hw, addr);
865}
Johannes Berg17741cd2008-09-11 00:02:02 +0200866EXPORT_SYMBOL(ieee80211_find_sta);
Johannes Bergaf818582009-11-06 11:35:50 +0100867
868/* powersave support code */
869void ieee80211_sta_ps_deliver_wakeup(struct sta_info *sta)
870{
871 struct ieee80211_sub_if_data *sdata = sta->sdata;
872 struct ieee80211_local *local = sdata->local;
873 int sent, buffered;
874
875 drv_sta_notify(local, &sdata->vif, STA_NOTIFY_AWAKE, &sta->sta);
876
877 if (!skb_queue_empty(&sta->ps_tx_buf))
878 sta_info_clear_tim_bit(sta);
879
880 /* Send all buffered frames to the station */
881 sent = ieee80211_add_pending_skbs(local, &sta->tx_filtered);
882 buffered = ieee80211_add_pending_skbs(local, &sta->ps_tx_buf);
883 sent += buffered;
884 local->total_ps_buffered -= buffered;
885
886#ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
887 printk(KERN_DEBUG "%s: STA %pM aid %d sending %d filtered/%d PS frames "
888 "since STA not sleeping anymore\n", sdata->dev->name,
889 sta->sta.addr, sta->sta.aid, sent - buffered, buffered);
890#endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */
891}
892
893void ieee80211_sta_ps_deliver_poll_response(struct sta_info *sta)
894{
895 struct ieee80211_sub_if_data *sdata = sta->sdata;
896 struct ieee80211_local *local = sdata->local;
897 struct sk_buff *skb;
898 int no_pending_pkts;
899
900 skb = skb_dequeue(&sta->tx_filtered);
901 if (!skb) {
902 skb = skb_dequeue(&sta->ps_tx_buf);
903 if (skb)
904 local->total_ps_buffered--;
905 }
906 no_pending_pkts = skb_queue_empty(&sta->tx_filtered) &&
907 skb_queue_empty(&sta->ps_tx_buf);
908
909 if (skb) {
910 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
911 struct ieee80211_hdr *hdr =
912 (struct ieee80211_hdr *) skb->data;
913
914 /*
915 * Tell TX path to send this frame even though the STA may
916 * still remain is PS mode after this frame exchange.
917 */
918 info->flags |= IEEE80211_TX_CTL_PSPOLL_RESPONSE;
919
920#ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
921 printk(KERN_DEBUG "STA %pM aid %d: PS Poll (entries after %d)\n",
922 sta->sta.addr, sta->sta.aid,
923 skb_queue_len(&sta->ps_tx_buf));
924#endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */
925
926 /* Use MoreData flag to indicate whether there are more
927 * buffered frames for this STA */
928 if (no_pending_pkts)
929 hdr->frame_control &= cpu_to_le16(~IEEE80211_FCTL_MOREDATA);
930 else
931 hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_MOREDATA);
932
933 ieee80211_add_pending_skb(local, skb);
934
935 if (no_pending_pkts)
936 sta_info_clear_tim_bit(sta);
937#ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
938 } else {
939 /*
940 * FIXME: This can be the result of a race condition between
941 * us expiring a frame and the station polling for it.
942 * Should we send it a null-func frame indicating we
943 * have nothing buffered for it?
944 */
945 printk(KERN_DEBUG "%s: STA %pM sent PS Poll even "
946 "though there are no buffered frames for it\n",
947 sdata->dev->name, sta->sta.addr);
948#endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */
949 }
950}
951
952void ieee80211_sta_block_awake(struct ieee80211_hw *hw,
953 struct ieee80211_sta *pubsta, bool block)
954{
955 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
956
957 if (block)
958 set_sta_flags(sta, WLAN_STA_PS_DRIVER);
959 else
960 ieee80211_queue_work(hw, &sta->drv_unblock_wk);
961}
962EXPORT_SYMBOL(ieee80211_sta_block_awake);