blob: 47da552ce8a6f6781a8553494be76e5478af2824 [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 Bergabe60632009-11-25 17:46:18 +0100106struct sta_info *sta_info_get(struct ieee80211_sub_if_data *sdata,
107 const u8 *addr)
Johannes Berg43ba7e92008-02-21 14:09:30 +0100108{
Johannes Bergabe60632009-11-25 17:46:18 +0100109 struct ieee80211_local *local = sdata->local;
Johannes Berg43ba7e92008-02-21 14:09:30 +0100110 struct sta_info *sta;
111
Johannes Bergd0709a62008-02-25 16:27:46 +0100112 sta = rcu_dereference(local->sta_hash[STA_HASH(addr)]);
Johannes Berg43ba7e92008-02-21 14:09:30 +0100113 while (sta) {
Johannes Bergabe60632009-11-25 17:46:18 +0100114 if (sta->sdata == sdata &&
115 memcmp(sta->sta.addr, addr, ETH_ALEN) == 0)
Johannes Berg43ba7e92008-02-21 14:09:30 +0100116 break;
Johannes Bergd0709a62008-02-25 16:27:46 +0100117 sta = rcu_dereference(sta->hnext);
Johannes Berg43ba7e92008-02-21 14:09:30 +0100118 }
119 return sta;
120}
121
Johannes Berg3b53fde82009-11-16 12:00:37 +0100122struct sta_info *sta_info_get_by_idx(struct ieee80211_sub_if_data *sdata,
123 int idx)
Luis Carlos Coboee385852008-02-23 15:17:11 +0100124{
Johannes Berg3b53fde82009-11-16 12:00:37 +0100125 struct ieee80211_local *local = sdata->local;
Luis Carlos Coboee385852008-02-23 15:17:11 +0100126 struct sta_info *sta;
127 int i = 0;
128
Johannes Bergd0709a62008-02-25 16:27:46 +0100129 list_for_each_entry_rcu(sta, &local->sta_list, list) {
Johannes Berg3b53fde82009-11-16 12:00:37 +0100130 if (sdata != sta->sdata)
Luis Carlos Cobo2a8ca292008-02-29 17:51:25 -0800131 continue;
Luis Carlos Coboee385852008-02-23 15:17:11 +0100132 if (i < idx) {
133 ++i;
134 continue;
Luis Carlos Coboee385852008-02-23 15:17:11 +0100135 }
Luis Carlos Cobo2a8ca292008-02-29 17:51:25 -0800136 return sta;
Luis Carlos Coboee385852008-02-23 15:17:11 +0100137 }
Luis Carlos Coboee385852008-02-23 15:17:11 +0100138
139 return NULL;
140}
Jiri Bencf0706e82007-05-05 11:45:53 -0700141
Johannes Berg93e5deb2008-04-01 15:21:00 +0200142/**
143 * __sta_info_free - internal STA free helper
144 *
Randy Dunlap6ef307b2008-07-03 13:52:18 -0700145 * @local: pointer to the global information
Johannes Berg93e5deb2008-04-01 15:21:00 +0200146 * @sta: STA info to free
147 *
148 * This function must undo everything done by sta_info_alloc()
149 * that may happen before sta_info_insert().
150 */
151static void __sta_info_free(struct ieee80211_local *local,
152 struct sta_info *sta)
153{
Johannes Bergaf65cd962009-11-17 18:18:36 +0100154 if (sta->rate_ctrl) {
155 rate_control_free_sta(sta);
156 rate_control_put(sta->rate_ctrl);
157 }
Johannes Berg93e5deb2008-04-01 15:21:00 +0200158
159#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Johannes Berg0c68ae262008-10-27 15:56:10 -0700160 printk(KERN_DEBUG "%s: Destroyed STA %pM\n",
161 wiphy_name(local->hw.wiphy), sta->sta.addr);
Johannes Berg93e5deb2008-04-01 15:21:00 +0200162#endif /* CONFIG_MAC80211_VERBOSE_DEBUG */
163
164 kfree(sta);
165}
166
Johannes Bergd0709a62008-02-25 16:27:46 +0100167void sta_info_destroy(struct sta_info *sta)
Jiri Bencf0706e82007-05-05 11:45:53 -0700168{
Johannes Berg97bff8e2008-03-31 19:23:00 +0200169 struct ieee80211_local *local;
Jiri Bencf0706e82007-05-05 11:45:53 -0700170 struct sk_buff *skb;
Ron Rindjunsky07db2182007-12-25 17:00:33 +0200171 int i;
Johannes Berg73651ee2008-02-25 16:27:47 +0100172
Johannes Berg97bff8e2008-03-31 19:23:00 +0200173 might_sleep();
174
Johannes Berg73651ee2008-02-25 16:27:47 +0100175 if (!sta)
176 return;
Jiri Bencf0706e82007-05-05 11:45:53 -0700177
Johannes Berg97bff8e2008-03-31 19:23:00 +0200178 local = sta->local;
Johannes Bergd0709a62008-02-25 16:27:46 +0100179
Johannes Bergaf818582009-11-06 11:35:50 +0100180 cancel_work_sync(&sta->drv_unblock_wk);
181
Johannes Bergd0709a62008-02-25 16:27:46 +0100182 rate_control_remove_sta_debugfs(sta);
183 ieee80211_sta_debugfs_remove(sta);
184
185#ifdef CONFIG_MAC80211_MESH
186 if (ieee80211_vif_is_mesh(&sta->sdata->vif))
187 mesh_plink_deactivate(sta);
188#endif
189
Johannes Berg3b967662008-04-08 17:56:52 +0200190 /*
191 * We have only unlinked the key, and actually destroying it
192 * may mean it is removed from hardware which requires that
193 * the key->sta pointer is still valid, so flush the key todo
194 * list here.
195 *
196 * ieee80211_key_todo() will synchronize_rcu() so after this
197 * nothing can reference this sta struct any more.
198 */
199 ieee80211_key_todo();
Johannes Bergd0709a62008-02-25 16:27:46 +0100200
201#ifdef CONFIG_MAC80211_MESH
202 if (ieee80211_vif_is_mesh(&sta->sdata->vif))
203 del_timer_sync(&sta->plink_timer);
204#endif
205
Jiri Bencf0706e82007-05-05 11:45:53 -0700206 while ((skb = skb_dequeue(&sta->ps_tx_buf)) != NULL) {
207 local->total_ps_buffered--;
208 dev_kfree_skb_any(skb);
209 }
Johannes Bergd0709a62008-02-25 16:27:46 +0100210
211 while ((skb = skb_dequeue(&sta->tx_filtered)) != NULL)
Jiri Bencf0706e82007-05-05 11:45:53 -0700212 dev_kfree_skb_any(skb);
Johannes Bergd0709a62008-02-25 16:27:46 +0100213
Ron Rindjunskyfe3bf0f2008-01-28 14:07:19 +0200214 for (i = 0; i < STA_TID_NUM; i++) {
Johannes Berg55687e32009-02-10 21:25:51 +0100215 struct tid_ampdu_rx *tid_rx;
216 struct tid_ampdu_tx *tid_tx;
217
Johannes Berg07346f812008-05-03 01:02:02 +0200218 spin_lock_bh(&sta->lock);
Johannes Berg55687e32009-02-10 21:25:51 +0100219 tid_rx = sta->ampdu_mlme.tid_rx[i];
220 /* Make sure timer won't free the tid_rx struct, see below */
221 if (tid_rx)
222 tid_rx->shutdown = true;
Johannes Berg96f5e662009-02-12 00:51:53 +0100223
Johannes Berg07346f812008-05-03 01:02:02 +0200224 spin_unlock_bh(&sta->lock);
Johannes Berg55687e32009-02-10 21:25:51 +0100225
226 /*
227 * Outside spinlock - shutdown is true now so that the timer
228 * won't free tid_rx, we have to do that now. Can't let the
229 * timer do it because we have to sync the timer outside the
230 * lock that it takes itself.
231 */
232 if (tid_rx) {
233 del_timer_sync(&tid_rx->session_timer);
234 kfree(tid_rx);
235 }
236
237 /*
238 * No need to do such complications for TX agg sessions, the
239 * path leading to freeing the tid_tx struct goes via a call
240 * from the driver, and thus needs to look up the sta struct
241 * again, which cannot be found when we get here. Hence, we
242 * just need to delete the timer and free the aggregation
243 * info; we won't be telling the peer about it then but that
244 * doesn't matter if we're not talking to it again anyway.
245 */
246 tid_tx = sta->ampdu_mlme.tid_tx[i];
247 if (tid_tx) {
248 del_timer_sync(&tid_tx->addba_resp_timer);
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100249 /*
250 * STA removed while aggregation session being
251 * started? Bit odd, but purge frames anyway.
252 */
253 skb_queue_purge(&tid_tx->pending);
Johannes Berg55687e32009-02-10 21:25:51 +0100254 kfree(tid_tx);
255 }
Ron Rindjunskyfe3bf0f2008-01-28 14:07:19 +0200256 }
Ron Rindjunskycee24a32008-03-26 20:36:03 +0200257
Johannes Berg93e5deb2008-04-01 15:21:00 +0200258 __sta_info_free(local, sta);
Jiri Bencf0706e82007-05-05 11:45:53 -0700259}
260
261
Johannes Bergd0709a62008-02-25 16:27:46 +0100262/* Caller must hold local->sta_lock */
263static void sta_info_hash_add(struct ieee80211_local *local,
264 struct sta_info *sta)
Jiri Bencf0706e82007-05-05 11:45:53 -0700265{
Johannes Berg17741cd2008-09-11 00:02:02 +0200266 sta->hnext = local->sta_hash[STA_HASH(sta->sta.addr)];
267 rcu_assign_pointer(local->sta_hash[STA_HASH(sta->sta.addr)], sta);
Jiri Bencf0706e82007-05-05 11:45:53 -0700268}
Jiri Bencf0706e82007-05-05 11:45:53 -0700269
Johannes Bergaf818582009-11-06 11:35:50 +0100270static void sta_unblock(struct work_struct *wk)
271{
272 struct sta_info *sta;
273
274 sta = container_of(wk, struct sta_info, drv_unblock_wk);
275
276 if (sta->dead)
277 return;
278
279 if (!test_sta_flags(sta, WLAN_STA_PS_STA))
280 ieee80211_sta_ps_deliver_wakeup(sta);
281 else if (test_and_clear_sta_flags(sta, WLAN_STA_PSPOLL))
282 ieee80211_sta_ps_deliver_poll_response(sta);
283}
284
Johannes Bergaf65cd962009-11-17 18:18:36 +0100285static int sta_prepare_rate_control(struct ieee80211_local *local,
286 struct sta_info *sta, gfp_t gfp)
287{
288 if (local->hw.flags & IEEE80211_HW_HAS_RATE_CONTROL)
289 return 0;
290
291 sta->rate_ctrl = rate_control_get(local->rate_ctrl);
292 sta->rate_ctrl_priv = rate_control_alloc_sta(sta->rate_ctrl,
293 &sta->sta, gfp);
294 if (!sta->rate_ctrl_priv) {
295 rate_control_put(sta->rate_ctrl);
296 return -ENOMEM;
297 }
298
299 return 0;
300}
301
Johannes Berg73651ee2008-02-25 16:27:47 +0100302struct sta_info *sta_info_alloc(struct ieee80211_sub_if_data *sdata,
303 u8 *addr, gfp_t gfp)
Jiri Bencf0706e82007-05-05 11:45:53 -0700304{
Johannes Bergd0709a62008-02-25 16:27:46 +0100305 struct ieee80211_local *local = sdata->local;
Jiri Bencf0706e82007-05-05 11:45:53 -0700306 struct sta_info *sta;
Ron Rindjunsky16c5f152007-12-25 17:00:34 +0200307 int i;
Jiri Bencf0706e82007-05-05 11:45:53 -0700308
Johannes Berg17741cd2008-09-11 00:02:02 +0200309 sta = kzalloc(sizeof(*sta) + local->hw.sta_data_size, gfp);
Jiri Bencf0706e82007-05-05 11:45:53 -0700310 if (!sta)
Johannes Berg73651ee2008-02-25 16:27:47 +0100311 return NULL;
Jiri Bencf0706e82007-05-05 11:45:53 -0700312
Johannes Berg07346f812008-05-03 01:02:02 +0200313 spin_lock_init(&sta->lock);
Johannes Berg5a9f7b02008-06-18 14:58:09 +0200314 spin_lock_init(&sta->flaglock);
Johannes Bergaf818582009-11-06 11:35:50 +0100315 INIT_WORK(&sta->drv_unblock_wk, sta_unblock);
Johannes Berg07346f812008-05-03 01:02:02 +0200316
Johannes Berg17741cd2008-09-11 00:02:02 +0200317 memcpy(sta->sta.addr, addr, ETH_ALEN);
Johannes Bergd0709a62008-02-25 16:27:46 +0100318 sta->local = local;
319 sta->sdata = sdata;
Jiri Bencf0706e82007-05-05 11:45:53 -0700320
Johannes Bergaf65cd962009-11-17 18:18:36 +0100321 if (sta_prepare_rate_control(local, sta, gfp)) {
Jiri Bencf0706e82007-05-05 11:45:53 -0700322 kfree(sta);
Johannes Berg73651ee2008-02-25 16:27:47 +0100323 return NULL;
Jiri Bencf0706e82007-05-05 11:45:53 -0700324 }
325
Ron Rindjunsky16c5f152007-12-25 17:00:34 +0200326 for (i = 0; i < STA_TID_NUM; i++) {
327 /* timer_to_tid must be initialized with identity mapping to
328 * enable session_timer's data differentiation. refer to
329 * sta_rx_agg_session_timer_expired for useage */
330 sta->timer_to_tid[i] = i;
Ron Rindjunskycee24a32008-03-26 20:36:03 +0200331 /* rx */
332 sta->ampdu_mlme.tid_state_rx[i] = HT_AGG_STATE_IDLE;
333 sta->ampdu_mlme.tid_rx[i] = NULL;
334 /* tx */
335 sta->ampdu_mlme.tid_state_tx[i] = HT_AGG_STATE_IDLE;
336 sta->ampdu_mlme.tid_tx[i] = NULL;
337 sta->ampdu_mlme.addba_req_num[i] = 0;
Ron Rindjunsky16c5f152007-12-25 17:00:34 +0200338 }
Jiri Bencf0706e82007-05-05 11:45:53 -0700339 skb_queue_head_init(&sta->ps_tx_buf);
340 skb_queue_head_init(&sta->tx_filtered);
Johannes Berg73651ee2008-02-25 16:27:47 +0100341
Senthil Balasubramaniancccaec92009-05-14 18:42:08 +0530342 for (i = 0; i < NUM_RX_DATA_QUEUES; i++)
343 sta->last_seq_ctrl[i] = cpu_to_le16(USHORT_MAX);
344
Johannes Berg73651ee2008-02-25 16:27:47 +0100345#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Johannes Berg0c68ae262008-10-27 15:56:10 -0700346 printk(KERN_DEBUG "%s: Allocated STA %pM\n",
347 wiphy_name(local->hw.wiphy), sta->sta.addr);
Johannes Berg73651ee2008-02-25 16:27:47 +0100348#endif /* CONFIG_MAC80211_VERBOSE_DEBUG */
349
Johannes Berg03e44972008-02-27 09:56:40 +0100350#ifdef CONFIG_MAC80211_MESH
Luis Carlos Cobob4e08ea2008-02-29 15:46:08 -0800351 sta->plink_state = PLINK_LISTEN;
Johannes Berg03e44972008-02-27 09:56:40 +0100352 init_timer(&sta->plink_timer);
353#endif
354
Johannes Berg73651ee2008-02-25 16:27:47 +0100355 return sta;
356}
357
358int sta_info_insert(struct sta_info *sta)
359{
360 struct ieee80211_local *local = sta->local;
361 struct ieee80211_sub_if_data *sdata = sta->sdata;
Johannes Berg98b62182009-12-23 13:15:44 +0100362 struct station_info sinfo;
Johannes Berg73651ee2008-02-25 16:27:47 +0100363 unsigned long flags;
Johannes Berg93e5deb2008-04-01 15:21:00 +0200364 int err = 0;
Johannes Berg73651ee2008-02-25 16:27:47 +0100365
Johannes Berg03e44972008-02-27 09:56:40 +0100366 /*
367 * Can't be a WARN_ON because it can be triggered through a race:
368 * something inserts a STA (on one CPU) without holding the RTNL
369 * and another CPU turns off the net device.
370 */
Johannes Berg9607e6b2009-12-23 13:15:31 +0100371 if (unlikely(!ieee80211_sdata_running(sdata))) {
Johannes Berg93e5deb2008-04-01 15:21:00 +0200372 err = -ENETDOWN;
373 goto out_free;
374 }
Johannes Berg03e44972008-02-27 09:56:40 +0100375
Johannes Berg47846c92009-11-25 17:46:19 +0100376 if (WARN_ON(compare_ether_addr(sta->sta.addr, sdata->vif.addr) == 0 ||
Johannes Bergc6a1fa12008-10-07 12:04:32 +0200377 is_multicast_ether_addr(sta->sta.addr))) {
Johannes Berg93e5deb2008-04-01 15:21:00 +0200378 err = -EINVAL;
379 goto out_free;
380 }
Johannes Berg44213b52008-02-25 16:27:49 +0100381
Johannes Bergd0709a62008-02-25 16:27:46 +0100382 spin_lock_irqsave(&local->sta_lock, flags);
Johannes Berg43ba7e92008-02-21 14:09:30 +0100383 /* check if STA exists already */
Johannes Bergabe60632009-11-25 17:46:18 +0100384 if (sta_info_get(sdata, sta->sta.addr)) {
Johannes Bergd0709a62008-02-25 16:27:46 +0100385 spin_unlock_irqrestore(&local->sta_lock, flags);
Johannes Berg93e5deb2008-04-01 15:21:00 +0200386 err = -EEXIST;
387 goto out_free;
Johannes Berg43ba7e92008-02-21 14:09:30 +0100388 }
Jiri Bencf0706e82007-05-05 11:45:53 -0700389 list_add(&sta->list, &local->sta_list);
Johannes Bergf5ea9122009-08-07 16:17:38 +0200390 local->sta_generation++;
Jiri Bencf0706e82007-05-05 11:45:53 -0700391 local->num_sta++;
392 sta_info_hash_add(local, sta);
Johannes Berg32bfd352007-12-19 01:31:26 +0100393
Johannes Bergd0709a62008-02-25 16:27:46 +0100394 /* notify driver */
395 if (local->ops->sta_notify) {
Johannes Berg05c914fe2008-09-11 00:01:58 +0200396 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
Johannes Berg3e122be2008-07-09 14:40:34 +0200397 sdata = container_of(sdata->bss,
398 struct ieee80211_sub_if_data,
399 u.ap);
Johannes Berg32bfd352007-12-19 01:31:26 +0100400
Johannes Berg12375ef2009-11-25 20:30:31 +0100401 drv_sta_notify(local, sdata, STA_NOTIFY_ADD, &sta->sta);
Johannes Bergfbc44bf2009-10-01 22:06:29 +0200402 sdata = sta->sdata;
Johannes Berg32bfd352007-12-19 01:31:26 +0100403 }
Johannes Bergd0709a62008-02-25 16:27:46 +0100404
Jiri Bencf0706e82007-05-05 11:45:53 -0700405#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Johannes Berg0c68ae262008-10-27 15:56:10 -0700406 printk(KERN_DEBUG "%s: Inserted STA %pM\n",
407 wiphy_name(local->hw.wiphy), sta->sta.addr);
Jiri Bencf0706e82007-05-05 11:45:53 -0700408#endif /* CONFIG_MAC80211_VERBOSE_DEBUG */
409
Johannes Berg73651ee2008-02-25 16:27:47 +0100410 spin_unlock_irqrestore(&local->sta_lock, flags);
411
Johannes Berg98b62182009-12-23 13:15:44 +0100412 sinfo.filled = 0;
413 sinfo.generation = local->sta_generation;
414 cfg80211_new_sta(sdata->dev, sta->sta.addr, &sinfo, GFP_ATOMIC);
415
Jiri Bence9f207f2007-05-05 11:46:38 -0700416#ifdef CONFIG_MAC80211_DEBUGFS
Johannes Berg93e5deb2008-04-01 15:21:00 +0200417 /*
418 * Debugfs entry adding might sleep, so schedule process
Michael Wube8755e2007-07-27 15:43:23 +0200419 * context task for adding entry for STAs that do not yet
Johannes Berg93e5deb2008-04-01 15:21:00 +0200420 * have one.
421 * NOTE: due to auto-freeing semantics this may only be done
422 * if the insertion is successful!
423 */
Johannes Berg49ec6fa22008-04-03 14:31:05 +0200424 schedule_work(&local->sta_debugfs_add);
Jiri Bence9f207f2007-05-05 11:46:38 -0700425#endif
426
Johannes Berg73651ee2008-02-25 16:27:47 +0100427 if (ieee80211_vif_is_mesh(&sdata->vif))
428 mesh_accept_plinks_update(sdata);
429
430 return 0;
Johannes Berg93e5deb2008-04-01 15:21:00 +0200431 out_free:
432 BUG_ON(!err);
433 __sta_info_free(local, sta);
434 return err;
Jiri Bencf0706e82007-05-05 11:45:53 -0700435}
436
Johannes Berg004c8722008-02-20 11:21:35 +0100437static inline void __bss_tim_set(struct ieee80211_if_ap *bss, u16 aid)
438{
439 /*
440 * This format has been mandated by the IEEE specifications,
441 * so this line may not be changed to use the __set_bit() format.
442 */
443 bss->tim[aid / 8] |= (1 << (aid % 8));
444}
445
446static inline void __bss_tim_clear(struct ieee80211_if_ap *bss, u16 aid)
447{
448 /*
449 * This format has been mandated by the IEEE specifications,
450 * so this line may not be changed to use the __clear_bit() format.
451 */
452 bss->tim[aid / 8] &= ~(1 << (aid % 8));
453}
454
455static void __sta_info_set_tim_bit(struct ieee80211_if_ap *bss,
456 struct sta_info *sta)
457{
Johannes Berg3e122be2008-07-09 14:40:34 +0200458 BUG_ON(!bss);
459
Johannes Berg17741cd2008-09-11 00:02:02 +0200460 __bss_tim_set(bss, sta->sta.aid);
Johannes Berg3e122be2008-07-09 14:40:34 +0200461
Johannes Bergd0709a62008-02-25 16:27:46 +0100462 if (sta->local->ops->set_tim) {
463 sta->local->tim_in_locked_section = true;
Johannes Berg24487982009-04-23 18:52:52 +0200464 drv_set_tim(sta->local, &sta->sta, true);
Johannes Bergd0709a62008-02-25 16:27:46 +0100465 sta->local->tim_in_locked_section = false;
466 }
Johannes Berg004c8722008-02-20 11:21:35 +0100467}
468
469void sta_info_set_tim_bit(struct sta_info *sta)
470{
Johannes Bergd0709a62008-02-25 16:27:46 +0100471 unsigned long flags;
Johannes Berg004c8722008-02-20 11:21:35 +0100472
Johannes Berg3e122be2008-07-09 14:40:34 +0200473 BUG_ON(!sta->sdata->bss);
474
Johannes Bergd0709a62008-02-25 16:27:46 +0100475 spin_lock_irqsave(&sta->local->sta_lock, flags);
476 __sta_info_set_tim_bit(sta->sdata->bss, sta);
477 spin_unlock_irqrestore(&sta->local->sta_lock, flags);
Johannes Berg004c8722008-02-20 11:21:35 +0100478}
479
480static void __sta_info_clear_tim_bit(struct ieee80211_if_ap *bss,
481 struct sta_info *sta)
482{
Johannes Berg3e122be2008-07-09 14:40:34 +0200483 BUG_ON(!bss);
484
Johannes Berg17741cd2008-09-11 00:02:02 +0200485 __bss_tim_clear(bss, sta->sta.aid);
Johannes Berg3e122be2008-07-09 14:40:34 +0200486
Johannes Bergd0709a62008-02-25 16:27:46 +0100487 if (sta->local->ops->set_tim) {
488 sta->local->tim_in_locked_section = true;
Johannes Berg24487982009-04-23 18:52:52 +0200489 drv_set_tim(sta->local, &sta->sta, false);
Johannes Bergd0709a62008-02-25 16:27:46 +0100490 sta->local->tim_in_locked_section = false;
491 }
Johannes Berg004c8722008-02-20 11:21:35 +0100492}
493
494void sta_info_clear_tim_bit(struct sta_info *sta)
495{
Johannes Bergd0709a62008-02-25 16:27:46 +0100496 unsigned long flags;
Johannes Berg004c8722008-02-20 11:21:35 +0100497
Johannes Berg3e122be2008-07-09 14:40:34 +0200498 BUG_ON(!sta->sdata->bss);
499
Johannes Bergd0709a62008-02-25 16:27:46 +0100500 spin_lock_irqsave(&sta->local->sta_lock, flags);
501 __sta_info_clear_tim_bit(sta->sdata->bss, sta);
502 spin_unlock_irqrestore(&sta->local->sta_lock, flags);
Johannes Berg004c8722008-02-20 11:21:35 +0100503}
504
Johannes Berg24723d12008-09-11 00:01:46 +0200505static void __sta_info_unlink(struct sta_info **sta)
Johannes Bergd0709a62008-02-25 16:27:46 +0100506{
507 struct ieee80211_local *local = (*sta)->local;
508 struct ieee80211_sub_if_data *sdata = (*sta)->sdata;
Johannes Bergd0709a62008-02-25 16:27:46 +0100509 /*
510 * pull caller's reference if we're already gone.
511 */
512 if (sta_info_hash_del(local, *sta)) {
513 *sta = NULL;
Michael Wube8755e2007-07-27 15:43:23 +0200514 return;
Johannes Bergd0709a62008-02-25 16:27:46 +0100515 }
Michael Wube8755e2007-07-27 15:43:23 +0200516
Johannes Berg3b967662008-04-08 17:56:52 +0200517 if ((*sta)->key) {
518 ieee80211_key_free((*sta)->key);
519 WARN_ON((*sta)->key);
520 }
521
Johannes Berg7d1559f2008-04-08 13:08:20 +0200522 list_del(&(*sta)->list);
Johannes Bergaf818582009-11-06 11:35:50 +0100523 (*sta)->dead = true;
Johannes Berg7d1559f2008-04-08 13:08:20 +0200524
Johannes Bergaf818582009-11-06 11:35:50 +0100525 if (test_and_clear_sta_flags(*sta,
526 WLAN_STA_PS_STA | WLAN_STA_PS_DRIVER)) {
Johannes Berg3e122be2008-07-09 14:40:34 +0200527 BUG_ON(!sdata->bss);
528
529 atomic_dec(&sdata->bss->num_sta_ps);
Johannes Berg7d1559f2008-04-08 13:08:20 +0200530 __sta_info_clear_tim_bit(sdata->bss, *sta);
531 }
532
533 local->num_sta--;
Johannes Bergf5ea9122009-08-07 16:17:38 +0200534 local->sta_generation++;
Johannes Berg7d1559f2008-04-08 13:08:20 +0200535
Felix Fietkauf14543ee2009-11-10 20:10:05 +0100536 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
537 rcu_assign_pointer(sdata->u.vlan.sta, NULL);
538
Johannes Berg7d1559f2008-04-08 13:08:20 +0200539 if (local->ops->sta_notify) {
Johannes Berg05c914fe2008-09-11 00:01:58 +0200540 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
Johannes Berg3e122be2008-07-09 14:40:34 +0200541 sdata = container_of(sdata->bss,
542 struct ieee80211_sub_if_data,
543 u.ap);
Johannes Berg7d1559f2008-04-08 13:08:20 +0200544
Johannes Berg12375ef2009-11-25 20:30:31 +0100545 drv_sta_notify(local, sdata, STA_NOTIFY_REMOVE,
Johannes Berg24487982009-04-23 18:52:52 +0200546 &(*sta)->sta);
Johannes Bergfbc44bf2009-10-01 22:06:29 +0200547 sdata = (*sta)->sdata;
Johannes Berg7d1559f2008-04-08 13:08:20 +0200548 }
549
550 if (ieee80211_vif_is_mesh(&sdata->vif)) {
551 mesh_accept_plinks_update(sdata);
552#ifdef CONFIG_MAC80211_MESH
553 del_timer(&(*sta)->plink_timer);
554#endif
555 }
556
557#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Johannes Berg0c68ae262008-10-27 15:56:10 -0700558 printk(KERN_DEBUG "%s: Removed STA %pM\n",
559 wiphy_name(local->hw.wiphy), (*sta)->sta.addr);
Johannes Berg7d1559f2008-04-08 13:08:20 +0200560#endif /* CONFIG_MAC80211_VERBOSE_DEBUG */
561
Johannes Bergd0709a62008-02-25 16:27:46 +0100562 /*
Johannes Berg7d1559f2008-04-08 13:08:20 +0200563 * Finally, pull caller's reference if the STA is pinned by the
Johannes Bergd0709a62008-02-25 16:27:46 +0100564 * task that is adding the debugfs entries. In that case, we
565 * leave the STA "to be freed".
566 *
567 * The rules are not trivial, but not too complex either:
568 * (1) pin_status is only modified under the sta_lock
Johannes Berg49ec6fa22008-04-03 14:31:05 +0200569 * (2) STAs may only be pinned under the RTNL so that
570 * sta_info_flush() is guaranteed to actually destroy
571 * all STAs that are active for a given interface, this
572 * is required for correctness because otherwise we
573 * could notify a driver that an interface is going
574 * away and only after that (!) notify it about a STA
575 * on that interface going away.
576 * (3) sta_info_debugfs_add_work() will set the status
Johannes Bergd0709a62008-02-25 16:27:46 +0100577 * to PINNED when it found an item that needs a new
578 * debugfs directory created. In that case, that item
579 * must not be freed although all *RCU* users are done
580 * with it. Hence, we tell the caller of _unlink()
581 * that the item is already gone (as can happen when
582 * two tasks try to unlink/destroy at the same time)
Johannes Berg49ec6fa22008-04-03 14:31:05 +0200583 * (4) We set the pin_status to DESTROY here when we
Johannes Bergd0709a62008-02-25 16:27:46 +0100584 * find such an item.
Johannes Berg49ec6fa22008-04-03 14:31:05 +0200585 * (5) sta_info_debugfs_add_work() will reset the pin_status
Johannes Bergd0709a62008-02-25 16:27:46 +0100586 * from PINNED to NORMAL when it is done with the item,
587 * but will check for DESTROY before resetting it in
588 * which case it will free the item.
589 */
590 if ((*sta)->pin_status == STA_INFO_PIN_STAT_PINNED) {
591 (*sta)->pin_status = STA_INFO_PIN_STAT_DESTROY;
592 *sta = NULL;
593 return;
594 }
Jiri Bencf0706e82007-05-05 11:45:53 -0700595}
596
Johannes Bergd0709a62008-02-25 16:27:46 +0100597void sta_info_unlink(struct sta_info **sta)
598{
599 struct ieee80211_local *local = (*sta)->local;
600 unsigned long flags;
601
602 spin_lock_irqsave(&local->sta_lock, flags);
603 __sta_info_unlink(sta);
604 spin_unlock_irqrestore(&local->sta_lock, flags);
605}
Jiri Bencf0706e82007-05-05 11:45:53 -0700606
Johannes Berg57c4d7b2009-04-23 16:10:04 +0200607static int sta_info_buffer_expired(struct sta_info *sta,
608 struct sk_buff *skb)
Jiri Bencf0706e82007-05-05 11:45:53 -0700609{
Johannes Berge039fa42008-05-15 12:55:29 +0200610 struct ieee80211_tx_info *info;
Jiri Bencf0706e82007-05-05 11:45:53 -0700611 int timeout;
612
613 if (!skb)
614 return 0;
615
Johannes Berge039fa42008-05-15 12:55:29 +0200616 info = IEEE80211_SKB_CB(skb);
Jiri Bencf0706e82007-05-05 11:45:53 -0700617
618 /* Timeout: (2 * listen_interval * beacon_int * 1024 / 1000000) sec */
Johannes Berg57c4d7b2009-04-23 16:10:04 +0200619 timeout = (sta->listen_interval *
620 sta->sdata->vif.bss_conf.beacon_int *
621 32 / 15625) * HZ;
Jiri Bencf0706e82007-05-05 11:45:53 -0700622 if (timeout < STA_TX_BUFFER_EXPIRE)
623 timeout = STA_TX_BUFFER_EXPIRE;
Johannes Berge039fa42008-05-15 12:55:29 +0200624 return time_after(jiffies, info->control.jiffies + timeout);
Jiri Bencf0706e82007-05-05 11:45:53 -0700625}
626
627
628static void sta_info_cleanup_expire_buffered(struct ieee80211_local *local,
629 struct sta_info *sta)
630{
631 unsigned long flags;
632 struct sk_buff *skb;
Johannes Berg836341a2008-02-20 02:07:21 +0100633 struct ieee80211_sub_if_data *sdata;
Jiri Bencf0706e82007-05-05 11:45:53 -0700634
635 if (skb_queue_empty(&sta->ps_tx_buf))
636 return;
637
638 for (;;) {
639 spin_lock_irqsave(&sta->ps_tx_buf.lock, flags);
640 skb = skb_peek(&sta->ps_tx_buf);
Johannes Berg57c4d7b2009-04-23 16:10:04 +0200641 if (sta_info_buffer_expired(sta, skb))
Jiri Bencf0706e82007-05-05 11:45:53 -0700642 skb = __skb_dequeue(&sta->ps_tx_buf);
Johannes Berg836341a2008-02-20 02:07:21 +0100643 else
Jiri Bencf0706e82007-05-05 11:45:53 -0700644 skb = NULL;
645 spin_unlock_irqrestore(&sta->ps_tx_buf.lock, flags);
646
Johannes Berg836341a2008-02-20 02:07:21 +0100647 if (!skb)
Jiri Bencf0706e82007-05-05 11:45:53 -0700648 break;
Johannes Berg836341a2008-02-20 02:07:21 +0100649
Johannes Bergd0709a62008-02-25 16:27:46 +0100650 sdata = sta->sdata;
Johannes Berg836341a2008-02-20 02:07:21 +0100651 local->total_ps_buffered--;
Johannes Bergf4ea83d2008-06-30 15:10:46 +0200652#ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
Johannes Berg0c68ae262008-10-27 15:56:10 -0700653 printk(KERN_DEBUG "Buffered frame expired (STA %pM)\n",
654 sta->sta.addr);
Johannes Bergf4ea83d2008-06-30 15:10:46 +0200655#endif
Johannes Berg836341a2008-02-20 02:07:21 +0100656 dev_kfree_skb(skb);
657
Johannes Berg004c8722008-02-20 11:21:35 +0100658 if (skb_queue_empty(&sta->ps_tx_buf))
659 sta_info_clear_tim_bit(sta);
Jiri Bencf0706e82007-05-05 11:45:53 -0700660 }
661}
662
663
664static void sta_info_cleanup(unsigned long data)
665{
666 struct ieee80211_local *local = (struct ieee80211_local *) data;
667 struct sta_info *sta;
668
Johannes Bergd0709a62008-02-25 16:27:46 +0100669 rcu_read_lock();
670 list_for_each_entry_rcu(sta, &local->sta_list, list)
Jiri Bencf0706e82007-05-05 11:45:53 -0700671 sta_info_cleanup_expire_buffered(local, sta);
Johannes Bergd0709a62008-02-25 16:27:46 +0100672 rcu_read_unlock();
Jiri Bencf0706e82007-05-05 11:45:53 -0700673
Johannes Berg5bb644a2009-05-17 11:40:42 +0200674 if (local->quiescing)
675 return;
676
Johannes Berg0d174402007-12-17 15:07:43 +0100677 local->sta_cleanup.expires =
678 round_jiffies(jiffies + STA_INFO_CLEANUP_INTERVAL);
Jiri Bencf0706e82007-05-05 11:45:53 -0700679 add_timer(&local->sta_cleanup);
680}
681
Jiri Bence9f207f2007-05-05 11:46:38 -0700682#ifdef CONFIG_MAC80211_DEBUGFS
Jiri Slaby4d6141c32008-04-07 21:53:49 +0200683/*
684 * See comment in __sta_info_unlink,
685 * caller must hold local->sta_lock.
686 */
687static void __sta_info_pin(struct sta_info *sta)
688{
689 WARN_ON(sta->pin_status != STA_INFO_PIN_STAT_NORMAL);
690 sta->pin_status = STA_INFO_PIN_STAT_PINNED;
691}
692
693/*
694 * See comment in __sta_info_unlink, returns sta if it
695 * needs to be destroyed.
696 */
697static struct sta_info *__sta_info_unpin(struct sta_info *sta)
698{
699 struct sta_info *ret = NULL;
700 unsigned long flags;
701
702 spin_lock_irqsave(&sta->local->sta_lock, flags);
703 WARN_ON(sta->pin_status != STA_INFO_PIN_STAT_DESTROY &&
704 sta->pin_status != STA_INFO_PIN_STAT_PINNED);
705 if (sta->pin_status == STA_INFO_PIN_STAT_DESTROY)
706 ret = sta;
707 sta->pin_status = STA_INFO_PIN_STAT_NORMAL;
708 spin_unlock_irqrestore(&sta->local->sta_lock, flags);
709
710 return ret;
711}
712
Johannes Bergd0709a62008-02-25 16:27:46 +0100713static void sta_info_debugfs_add_work(struct work_struct *work)
Jiri Bence9f207f2007-05-05 11:46:38 -0700714{
715 struct ieee80211_local *local =
716 container_of(work, struct ieee80211_local, sta_debugfs_add);
717 struct sta_info *sta, *tmp;
Johannes Bergd0709a62008-02-25 16:27:46 +0100718 unsigned long flags;
Jiri Bence9f207f2007-05-05 11:46:38 -0700719
Johannes Berg49ec6fa22008-04-03 14:31:05 +0200720 /* We need to keep the RTNL across the whole pinned status. */
721 rtnl_lock();
Jiri Bence9f207f2007-05-05 11:46:38 -0700722 while (1) {
Jiri Bence9f207f2007-05-05 11:46:38 -0700723 sta = NULL;
Johannes Bergd0709a62008-02-25 16:27:46 +0100724
725 spin_lock_irqsave(&local->sta_lock, flags);
Jiri Bence9f207f2007-05-05 11:46:38 -0700726 list_for_each_entry(tmp, &local->sta_list, list) {
Johannes Berg63044e92008-10-07 12:04:29 +0200727 /*
728 * debugfs.add_has_run will be set by
729 * ieee80211_sta_debugfs_add regardless
730 * of what else it does.
731 */
732 if (!tmp->debugfs.add_has_run) {
Jiri Bence9f207f2007-05-05 11:46:38 -0700733 sta = tmp;
Johannes Bergd0709a62008-02-25 16:27:46 +0100734 __sta_info_pin(sta);
Jiri Bence9f207f2007-05-05 11:46:38 -0700735 break;
736 }
737 }
Johannes Bergd0709a62008-02-25 16:27:46 +0100738 spin_unlock_irqrestore(&local->sta_lock, flags);
Jiri Bence9f207f2007-05-05 11:46:38 -0700739
740 if (!sta)
741 break;
742
Jiri Bence9f207f2007-05-05 11:46:38 -0700743 ieee80211_sta_debugfs_add(sta);
744 rate_control_add_sta_debugfs(sta);
Johannes Bergd0709a62008-02-25 16:27:46 +0100745
746 sta = __sta_info_unpin(sta);
Johannes Berg4f6fab42008-03-31 19:23:02 +0200747 sta_info_destroy(sta);
Jiri Bence9f207f2007-05-05 11:46:38 -0700748 }
Johannes Berg49ec6fa22008-04-03 14:31:05 +0200749 rtnl_unlock();
Jiri Bence9f207f2007-05-05 11:46:38 -0700750}
751#endif
752
Jiri Bencf0706e82007-05-05 11:45:53 -0700753void sta_info_init(struct ieee80211_local *local)
754{
Johannes Bergd0709a62008-02-25 16:27:46 +0100755 spin_lock_init(&local->sta_lock);
Jiri Bencf0706e82007-05-05 11:45:53 -0700756 INIT_LIST_HEAD(&local->sta_list);
Jiri Bencf0706e82007-05-05 11:45:53 -0700757
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -0800758 setup_timer(&local->sta_cleanup, sta_info_cleanup,
759 (unsigned long)local);
Johannes Berg0d174402007-12-17 15:07:43 +0100760 local->sta_cleanup.expires =
761 round_jiffies(jiffies + STA_INFO_CLEANUP_INTERVAL);
Jiri Bence9f207f2007-05-05 11:46:38 -0700762
763#ifdef CONFIG_MAC80211_DEBUGFS
Johannes Bergd0709a62008-02-25 16:27:46 +0100764 INIT_WORK(&local->sta_debugfs_add, sta_info_debugfs_add_work);
Jiri Bence9f207f2007-05-05 11:46:38 -0700765#endif
Jiri Bencf0706e82007-05-05 11:45:53 -0700766}
767
768int sta_info_start(struct ieee80211_local *local)
769{
770 add_timer(&local->sta_cleanup);
771 return 0;
772}
773
774void sta_info_stop(struct ieee80211_local *local)
775{
Jiri Bencf0706e82007-05-05 11:45:53 -0700776 del_timer(&local->sta_cleanup);
Johannes Berg49ec6fa22008-04-03 14:31:05 +0200777#ifdef CONFIG_MAC80211_DEBUGFS
778 /*
779 * Make sure the debugfs adding work isn't pending after this
780 * because we're about to be destroyed. It doesn't matter
781 * whether it ran or not since we're going to flush all STAs
782 * anyway.
783 */
784 cancel_work_sync(&local->sta_debugfs_add);
785#endif
Johannes Bergdc6676b2008-03-31 19:23:03 +0200786
Michael Wube8755e2007-07-27 15:43:23 +0200787 sta_info_flush(local, NULL);
Jiri Bencf0706e82007-05-05 11:45:53 -0700788}
789
Jiri Bencf0706e82007-05-05 11:45:53 -0700790/**
791 * sta_info_flush - flush matching STA entries from the STA table
Johannes Berg44213b52008-02-25 16:27:49 +0100792 *
793 * Returns the number of removed STA entries.
794 *
Jiri Bencf0706e82007-05-05 11:45:53 -0700795 * @local: local interface data
Johannes Bergd0709a62008-02-25 16:27:46 +0100796 * @sdata: matching rule for the net device (sta->dev) or %NULL to match all STAs
Jiri Bencf0706e82007-05-05 11:45:53 -0700797 */
Johannes Berg44213b52008-02-25 16:27:49 +0100798int sta_info_flush(struct ieee80211_local *local,
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200799 struct ieee80211_sub_if_data *sdata)
Jiri Bencf0706e82007-05-05 11:45:53 -0700800{
801 struct sta_info *sta, *tmp;
Michael Wube8755e2007-07-27 15:43:23 +0200802 LIST_HEAD(tmp_list);
Johannes Berg44213b52008-02-25 16:27:49 +0100803 int ret = 0;
Johannes Bergd0709a62008-02-25 16:27:46 +0100804 unsigned long flags;
Jiri Bencf0706e82007-05-05 11:45:53 -0700805
Johannes Bergd0709a62008-02-25 16:27:46 +0100806 might_sleep();
807
808 spin_lock_irqsave(&local->sta_lock, flags);
809 list_for_each_entry_safe(sta, tmp, &local->sta_list, list) {
810 if (!sdata || sdata == sta->sdata) {
811 __sta_info_unlink(&sta);
Johannes Berg44213b52008-02-25 16:27:49 +0100812 if (sta) {
Johannes Bergd0709a62008-02-25 16:27:46 +0100813 list_add_tail(&sta->list, &tmp_list);
Johannes Berg44213b52008-02-25 16:27:49 +0100814 ret++;
815 }
Michael Wube8755e2007-07-27 15:43:23 +0200816 }
Michael Wube8755e2007-07-27 15:43:23 +0200817 }
Johannes Bergd0709a62008-02-25 16:27:46 +0100818 spin_unlock_irqrestore(&local->sta_lock, flags);
819
Johannes Bergd0709a62008-02-25 16:27:46 +0100820 list_for_each_entry_safe(sta, tmp, &tmp_list, list)
821 sta_info_destroy(sta);
Johannes Berg44213b52008-02-25 16:27:49 +0100822
823 return ret;
Jiri Bencf0706e82007-05-05 11:45:53 -0700824}
Johannes Bergdc6676b2008-03-31 19:23:03 +0200825
Johannes Berg24723d12008-09-11 00:01:46 +0200826void ieee80211_sta_expire(struct ieee80211_sub_if_data *sdata,
827 unsigned long exp_time)
828{
829 struct ieee80211_local *local = sdata->local;
830 struct sta_info *sta, *tmp;
831 LIST_HEAD(tmp_list);
Johannes Berg24723d12008-09-11 00:01:46 +0200832 unsigned long flags;
833
834 spin_lock_irqsave(&local->sta_lock, flags);
835 list_for_each_entry_safe(sta, tmp, &local->sta_list, list)
836 if (time_after(jiffies, sta->last_rx + exp_time)) {
837#ifdef CONFIG_MAC80211_IBSS_DEBUG
Johannes Berg0c68ae262008-10-27 15:56:10 -0700838 printk(KERN_DEBUG "%s: expiring inactive STA %pM\n",
Johannes Berg47846c92009-11-25 17:46:19 +0100839 sdata->name, sta->sta.addr);
Johannes Berg24723d12008-09-11 00:01:46 +0200840#endif
841 __sta_info_unlink(&sta);
842 if (sta)
843 list_add(&sta->list, &tmp_list);
844 }
845 spin_unlock_irqrestore(&local->sta_lock, flags);
846
847 list_for_each_entry_safe(sta, tmp, &tmp_list, list)
848 sta_info_destroy(sta);
849}
Johannes Berg17741cd2008-09-11 00:02:02 +0200850
Johannes Berg5ed176e2009-11-04 14:42:28 +0100851struct ieee80211_sta *ieee80211_find_sta_by_hw(struct ieee80211_hw *hw,
852 const u8 *addr)
Johannes Berg17741cd2008-09-11 00:02:02 +0200853{
Johannes Bergabe60632009-11-25 17:46:18 +0100854 struct sta_info *sta, *nxt;
Johannes Berg17741cd2008-09-11 00:02:02 +0200855
Johannes Bergabe60632009-11-25 17:46:18 +0100856 /* Just return a random station ... first in list ... */
857 for_each_sta_info(hw_to_local(hw), addr, sta, nxt)
858 return &sta->sta;
859 return NULL;
Johannes Berg17741cd2008-09-11 00:02:02 +0200860}
Johannes Berg5ed176e2009-11-04 14:42:28 +0100861EXPORT_SYMBOL_GPL(ieee80211_find_sta_by_hw);
862
863struct ieee80211_sta *ieee80211_find_sta(struct ieee80211_vif *vif,
864 const u8 *addr)
865{
866 struct ieee80211_sub_if_data *sdata;
867
868 if (!vif)
869 return NULL;
870
871 sdata = vif_to_sdata(vif);
872
873 return ieee80211_find_sta_by_hw(&sdata->local->hw, addr);
874}
Johannes Berg17741cd2008-09-11 00:02:02 +0200875EXPORT_SYMBOL(ieee80211_find_sta);
Johannes Bergaf818582009-11-06 11:35:50 +0100876
877/* powersave support code */
878void ieee80211_sta_ps_deliver_wakeup(struct sta_info *sta)
879{
880 struct ieee80211_sub_if_data *sdata = sta->sdata;
881 struct ieee80211_local *local = sdata->local;
882 int sent, buffered;
883
Johannes Berg12375ef2009-11-25 20:30:31 +0100884 drv_sta_notify(local, sdata, STA_NOTIFY_AWAKE, &sta->sta);
Johannes Bergaf818582009-11-06 11:35:50 +0100885
886 if (!skb_queue_empty(&sta->ps_tx_buf))
887 sta_info_clear_tim_bit(sta);
888
889 /* Send all buffered frames to the station */
890 sent = ieee80211_add_pending_skbs(local, &sta->tx_filtered);
891 buffered = ieee80211_add_pending_skbs(local, &sta->ps_tx_buf);
892 sent += buffered;
893 local->total_ps_buffered -= buffered;
894
895#ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
896 printk(KERN_DEBUG "%s: STA %pM aid %d sending %d filtered/%d PS frames "
Johannes Berg47846c92009-11-25 17:46:19 +0100897 "since STA not sleeping anymore\n", sdata->name,
Johannes Bergaf818582009-11-06 11:35:50 +0100898 sta->sta.addr, sta->sta.aid, sent - buffered, buffered);
899#endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */
900}
901
902void ieee80211_sta_ps_deliver_poll_response(struct sta_info *sta)
903{
904 struct ieee80211_sub_if_data *sdata = sta->sdata;
905 struct ieee80211_local *local = sdata->local;
906 struct sk_buff *skb;
907 int no_pending_pkts;
908
909 skb = skb_dequeue(&sta->tx_filtered);
910 if (!skb) {
911 skb = skb_dequeue(&sta->ps_tx_buf);
912 if (skb)
913 local->total_ps_buffered--;
914 }
915 no_pending_pkts = skb_queue_empty(&sta->tx_filtered) &&
916 skb_queue_empty(&sta->ps_tx_buf);
917
918 if (skb) {
919 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
920 struct ieee80211_hdr *hdr =
921 (struct ieee80211_hdr *) skb->data;
922
923 /*
924 * Tell TX path to send this frame even though the STA may
925 * still remain is PS mode after this frame exchange.
926 */
927 info->flags |= IEEE80211_TX_CTL_PSPOLL_RESPONSE;
928
929#ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
930 printk(KERN_DEBUG "STA %pM aid %d: PS Poll (entries after %d)\n",
931 sta->sta.addr, sta->sta.aid,
932 skb_queue_len(&sta->ps_tx_buf));
933#endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */
934
935 /* Use MoreData flag to indicate whether there are more
936 * buffered frames for this STA */
937 if (no_pending_pkts)
938 hdr->frame_control &= cpu_to_le16(~IEEE80211_FCTL_MOREDATA);
939 else
940 hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_MOREDATA);
941
942 ieee80211_add_pending_skb(local, skb);
943
944 if (no_pending_pkts)
945 sta_info_clear_tim_bit(sta);
946#ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
947 } else {
948 /*
949 * FIXME: This can be the result of a race condition between
950 * us expiring a frame and the station polling for it.
951 * Should we send it a null-func frame indicating we
952 * have nothing buffered for it?
953 */
954 printk(KERN_DEBUG "%s: STA %pM sent PS Poll even "
955 "though there are no buffered frames for it\n",
Johannes Berg47846c92009-11-25 17:46:19 +0100956 sdata->name, sta->sta.addr);
Johannes Bergaf818582009-11-06 11:35:50 +0100957#endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */
958 }
959}
960
961void ieee80211_sta_block_awake(struct ieee80211_hw *hw,
962 struct ieee80211_sta *pubsta, bool block)
963{
964 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
965
966 if (block)
967 set_sta_flags(sta, WLAN_STA_PS_DRIVER);
968 else
969 ieee80211_queue_work(hw, &sta->drv_unblock_wk);
970}
971EXPORT_SYMBOL(ieee80211_sta_block_awake);