blob: 4a15f96035622592d830422822b6b12fe649d77a [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 Berg34e89502010-02-03 13:59:58 +010035 * Upon allocating a STA info structure with sta_info_alloc(), the caller
36 * owns that structure. It must then insert it into the hash table using
37 * either sta_info_insert() or sta_info_insert_rcu(); only in the latter
38 * case (which acquires an rcu read section but must not be called from
39 * within one) will the pointer still be valid after the call. Note that
40 * the caller may not do much with the STA info before inserting it, in
41 * particular, it may not start any mesh peer link management or add
42 * encryption keys.
Johannes Berg93e5deb2008-04-01 15:21:00 +020043 *
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 *
Johannes Berg34e89502010-02-03 13:59:58 +010047 * Station entries are added by mac80211 when you establish a link with a
Luis R. Rodriguez7e189a12009-06-02 18:38:14 -040048 * 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
Johannes Berg34e89502010-02-03 13:59:58 +010051 * get to know about a peer on the same IBSS. For WDS we add the sta for
52 * the peer imediately upon device open. When using AP mode we add stations
53 * for each respective station upon request from userspace through nl80211.
Luis R. Rodriguez7e189a12009-06-02 18:38:14 -040054 *
Johannes Berg34e89502010-02-03 13:59:58 +010055 * In order to remove a STA info structure, various sta_info_destroy_*()
56 * calls are available.
Johannes Bergd0709a62008-02-25 16:27:46 +010057 *
Johannes Berg34e89502010-02-03 13:59:58 +010058 * There is no concept of ownership on a STA entry, each structure is
59 * owned by the global hash table/list until it is removed. All users of
60 * the structure need to be RCU protected so that the structure won't be
61 * freed before they are done using it.
Johannes Bergd0709a62008-02-25 16:27:46 +010062 */
Jiri Bencf0706e82007-05-05 11:45:53 -070063
64/* Caller must hold local->sta_lock */
Michael Wube8755e2007-07-27 15:43:23 +020065static int sta_info_hash_del(struct ieee80211_local *local,
66 struct sta_info *sta)
Jiri Bencf0706e82007-05-05 11:45:53 -070067{
68 struct sta_info *s;
69
Johannes Berg40b275b2011-05-13 14:15:49 +020070 s = rcu_dereference_protected(local->sta_hash[STA_HASH(sta->sta.addr)],
71 lockdep_is_held(&local->sta_lock));
Jiri Bencf0706e82007-05-05 11:45:53 -070072 if (!s)
Michael Wube8755e2007-07-27 15:43:23 +020073 return -ENOENT;
74 if (s == sta) {
Johannes Berg17741cd2008-09-11 00:02:02 +020075 rcu_assign_pointer(local->sta_hash[STA_HASH(sta->sta.addr)],
Johannes Bergd0709a62008-02-25 16:27:46 +010076 s->hnext);
Michael Wube8755e2007-07-27 15:43:23 +020077 return 0;
Jiri Bencf0706e82007-05-05 11:45:53 -070078 }
79
Johannes Berg40b275b2011-05-13 14:15:49 +020080 while (rcu_access_pointer(s->hnext) &&
81 rcu_access_pointer(s->hnext) != sta)
82 s = rcu_dereference_protected(s->hnext,
83 lockdep_is_held(&local->sta_lock));
84 if (rcu_access_pointer(s->hnext)) {
Johannes Bergd0709a62008-02-25 16:27:46 +010085 rcu_assign_pointer(s->hnext, sta->hnext);
Michael Wube8755e2007-07-27 15:43:23 +020086 return 0;
87 }
Jiri Bencf0706e82007-05-05 11:45:53 -070088
Michael Wube8755e2007-07-27 15:43:23 +020089 return -ENOENT;
Jiri Bencf0706e82007-05-05 11:45:53 -070090}
91
Johannes Bergd0709a62008-02-25 16:27:46 +010092/* protected by RCU */
Johannes Bergabe60632009-11-25 17:46:18 +010093struct sta_info *sta_info_get(struct ieee80211_sub_if_data *sdata,
94 const u8 *addr)
Johannes Berg43ba7e92008-02-21 14:09:30 +010095{
Johannes Bergabe60632009-11-25 17:46:18 +010096 struct ieee80211_local *local = sdata->local;
Johannes Berg43ba7e92008-02-21 14:09:30 +010097 struct sta_info *sta;
98
Johannes Berg03791852010-04-06 11:18:42 +020099 sta = rcu_dereference_check(local->sta_hash[STA_HASH(addr)],
100 rcu_read_lock_held() ||
101 lockdep_is_held(&local->sta_lock) ||
102 lockdep_is_held(&local->sta_mtx));
Johannes Berg43ba7e92008-02-21 14:09:30 +0100103 while (sta) {
Johannes Bergabe60632009-11-25 17:46:18 +0100104 if (sta->sdata == sdata &&
105 memcmp(sta->sta.addr, addr, ETH_ALEN) == 0)
Johannes Berg43ba7e92008-02-21 14:09:30 +0100106 break;
Johannes Berg03791852010-04-06 11:18:42 +0200107 sta = rcu_dereference_check(sta->hnext,
108 rcu_read_lock_held() ||
109 lockdep_is_held(&local->sta_lock) ||
110 lockdep_is_held(&local->sta_mtx));
Johannes Berg43ba7e92008-02-21 14:09:30 +0100111 }
112 return sta;
113}
114
Felix Fietkau0e5ded52010-01-08 18:10:58 +0100115/*
116 * Get sta info either from the specified interface
117 * or from one of its vlans
118 */
119struct sta_info *sta_info_get_bss(struct ieee80211_sub_if_data *sdata,
120 const u8 *addr)
121{
122 struct ieee80211_local *local = sdata->local;
123 struct sta_info *sta;
124
Johannes Berg03791852010-04-06 11:18:42 +0200125 sta = rcu_dereference_check(local->sta_hash[STA_HASH(addr)],
126 rcu_read_lock_held() ||
127 lockdep_is_held(&local->sta_lock) ||
128 lockdep_is_held(&local->sta_mtx));
Felix Fietkau0e5ded52010-01-08 18:10:58 +0100129 while (sta) {
130 if ((sta->sdata == sdata ||
Johannes Berga2c1e3d2010-09-14 21:34:14 +0200131 (sta->sdata->bss && sta->sdata->bss == sdata->bss)) &&
Felix Fietkau0e5ded52010-01-08 18:10:58 +0100132 memcmp(sta->sta.addr, addr, ETH_ALEN) == 0)
133 break;
Johannes Berg03791852010-04-06 11:18:42 +0200134 sta = rcu_dereference_check(sta->hnext,
135 rcu_read_lock_held() ||
136 lockdep_is_held(&local->sta_lock) ||
137 lockdep_is_held(&local->sta_mtx));
Felix Fietkau0e5ded52010-01-08 18:10:58 +0100138 }
139 return sta;
140}
141
Johannes Berg3b53fde82009-11-16 12:00:37 +0100142struct sta_info *sta_info_get_by_idx(struct ieee80211_sub_if_data *sdata,
143 int idx)
Luis Carlos Coboee385852008-02-23 15:17:11 +0100144{
Johannes Berg3b53fde82009-11-16 12:00:37 +0100145 struct ieee80211_local *local = sdata->local;
Luis Carlos Coboee385852008-02-23 15:17:11 +0100146 struct sta_info *sta;
147 int i = 0;
148
Johannes Bergd0709a62008-02-25 16:27:46 +0100149 list_for_each_entry_rcu(sta, &local->sta_list, list) {
Johannes Berg3b53fde82009-11-16 12:00:37 +0100150 if (sdata != sta->sdata)
Luis Carlos Cobo2a8ca292008-02-29 17:51:25 -0800151 continue;
Luis Carlos Coboee385852008-02-23 15:17:11 +0100152 if (i < idx) {
153 ++i;
154 continue;
Luis Carlos Coboee385852008-02-23 15:17:11 +0100155 }
Luis Carlos Cobo2a8ca292008-02-29 17:51:25 -0800156 return sta;
Luis Carlos Coboee385852008-02-23 15:17:11 +0100157 }
Luis Carlos Coboee385852008-02-23 15:17:11 +0100158
159 return NULL;
160}
Jiri Bencf0706e82007-05-05 11:45:53 -0700161
Johannes Berg93e5deb2008-04-01 15:21:00 +0200162/**
163 * __sta_info_free - internal STA free helper
164 *
Randy Dunlap6ef307b2008-07-03 13:52:18 -0700165 * @local: pointer to the global information
Johannes Berg93e5deb2008-04-01 15:21:00 +0200166 * @sta: STA info to free
167 *
168 * This function must undo everything done by sta_info_alloc()
169 * that may happen before sta_info_insert().
170 */
171static void __sta_info_free(struct ieee80211_local *local,
172 struct sta_info *sta)
173{
Johannes Bergaf65cd962009-11-17 18:18:36 +0100174 if (sta->rate_ctrl) {
175 rate_control_free_sta(sta);
176 rate_control_put(sta->rate_ctrl);
177 }
Johannes Berg93e5deb2008-04-01 15:21:00 +0200178
179#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Joe Perches0fb9a9e2010-08-20 16:25:38 -0700180 wiphy_debug(local->hw.wiphy, "Destroyed STA %pM\n", sta->sta.addr);
Johannes Berg93e5deb2008-04-01 15:21:00 +0200181#endif /* CONFIG_MAC80211_VERBOSE_DEBUG */
182
183 kfree(sta);
184}
185
Johannes Bergd0709a62008-02-25 16:27:46 +0100186/* Caller must hold local->sta_lock */
187static void sta_info_hash_add(struct ieee80211_local *local,
188 struct sta_info *sta)
Jiri Bencf0706e82007-05-05 11:45:53 -0700189{
Johannes Berg17741cd2008-09-11 00:02:02 +0200190 sta->hnext = local->sta_hash[STA_HASH(sta->sta.addr)];
191 rcu_assign_pointer(local->sta_hash[STA_HASH(sta->sta.addr)], sta);
Jiri Bencf0706e82007-05-05 11:45:53 -0700192}
Jiri Bencf0706e82007-05-05 11:45:53 -0700193
Johannes Bergaf818582009-11-06 11:35:50 +0100194static void sta_unblock(struct work_struct *wk)
195{
196 struct sta_info *sta;
197
198 sta = container_of(wk, struct sta_info, drv_unblock_wk);
199
200 if (sta->dead)
201 return;
202
203 if (!test_sta_flags(sta, WLAN_STA_PS_STA))
204 ieee80211_sta_ps_deliver_wakeup(sta);
Johannes Berg50a94322010-11-16 11:50:28 -0800205 else if (test_and_clear_sta_flags(sta, WLAN_STA_PSPOLL)) {
206 clear_sta_flags(sta, WLAN_STA_PS_DRIVER);
Johannes Bergaf818582009-11-06 11:35:50 +0100207 ieee80211_sta_ps_deliver_poll_response(sta);
Johannes Berg50a94322010-11-16 11:50:28 -0800208 } else
209 clear_sta_flags(sta, WLAN_STA_PS_DRIVER);
Johannes Bergaf818582009-11-06 11:35:50 +0100210}
211
Johannes Bergaf65cd962009-11-17 18:18:36 +0100212static int sta_prepare_rate_control(struct ieee80211_local *local,
213 struct sta_info *sta, gfp_t gfp)
214{
215 if (local->hw.flags & IEEE80211_HW_HAS_RATE_CONTROL)
216 return 0;
217
218 sta->rate_ctrl = rate_control_get(local->rate_ctrl);
219 sta->rate_ctrl_priv = rate_control_alloc_sta(sta->rate_ctrl,
220 &sta->sta, gfp);
221 if (!sta->rate_ctrl_priv) {
222 rate_control_put(sta->rate_ctrl);
223 return -ENOMEM;
224 }
225
226 return 0;
227}
228
Johannes Berg73651ee2008-02-25 16:27:47 +0100229struct sta_info *sta_info_alloc(struct ieee80211_sub_if_data *sdata,
230 u8 *addr, gfp_t gfp)
Jiri Bencf0706e82007-05-05 11:45:53 -0700231{
Johannes Bergd0709a62008-02-25 16:27:46 +0100232 struct ieee80211_local *local = sdata->local;
Jiri Bencf0706e82007-05-05 11:45:53 -0700233 struct sta_info *sta;
Mohammed Shafi Shajakhanebe27c92011-04-08 21:24:24 +0530234 struct timespec uptime;
Ron Rindjunsky16c5f152007-12-25 17:00:34 +0200235 int i;
Jiri Bencf0706e82007-05-05 11:45:53 -0700236
Johannes Berg17741cd2008-09-11 00:02:02 +0200237 sta = kzalloc(sizeof(*sta) + local->hw.sta_data_size, gfp);
Jiri Bencf0706e82007-05-05 11:45:53 -0700238 if (!sta)
Johannes Berg73651ee2008-02-25 16:27:47 +0100239 return NULL;
Jiri Bencf0706e82007-05-05 11:45:53 -0700240
Johannes Berg07346f812008-05-03 01:02:02 +0200241 spin_lock_init(&sta->lock);
Johannes Berg5a9f7b02008-06-18 14:58:09 +0200242 spin_lock_init(&sta->flaglock);
Johannes Bergaf818582009-11-06 11:35:50 +0100243 INIT_WORK(&sta->drv_unblock_wk, sta_unblock);
Johannes Berg67c282c2010-06-10 10:21:43 +0200244 INIT_WORK(&sta->ampdu_mlme.work, ieee80211_ba_session_work);
Johannes Berga93e3642010-06-10 10:21:46 +0200245 mutex_init(&sta->ampdu_mlme.mtx);
Johannes Berg07346f812008-05-03 01:02:02 +0200246
Johannes Berg17741cd2008-09-11 00:02:02 +0200247 memcpy(sta->sta.addr, addr, ETH_ALEN);
Johannes Bergd0709a62008-02-25 16:27:46 +0100248 sta->local = local;
249 sta->sdata = sdata;
Felix Fietkau8bc8aec2011-03-21 20:01:00 +0100250 sta->last_rx = jiffies;
Jiri Bencf0706e82007-05-05 11:45:53 -0700251
Mohammed Shafi Shajakhanebe27c92011-04-08 21:24:24 +0530252 do_posix_clock_monotonic_gettime(&uptime);
253 sta->last_connected = uptime.tv_sec;
Bruno Randolf541a45a2010-12-02 19:12:43 +0900254 ewma_init(&sta->avg_signal, 1024, 8);
255
Johannes Bergaf65cd962009-11-17 18:18:36 +0100256 if (sta_prepare_rate_control(local, sta, gfp)) {
Jiri Bencf0706e82007-05-05 11:45:53 -0700257 kfree(sta);
Johannes Berg73651ee2008-02-25 16:27:47 +0100258 return NULL;
Jiri Bencf0706e82007-05-05 11:45:53 -0700259 }
260
Ron Rindjunsky16c5f152007-12-25 17:00:34 +0200261 for (i = 0; i < STA_TID_NUM; i++) {
Johannes Berga622ab72010-06-10 10:21:39 +0200262 /*
263 * timer_to_tid must be initialized with identity mapping
264 * to enable session_timer's data differentiation. See
265 * sta_rx_agg_session_timer_expired for usage.
266 */
Ron Rindjunsky16c5f152007-12-25 17:00:34 +0200267 sta->timer_to_tid[i] = i;
Ron Rindjunsky16c5f152007-12-25 17:00:34 +0200268 }
Jiri Bencf0706e82007-05-05 11:45:53 -0700269 skb_queue_head_init(&sta->ps_tx_buf);
270 skb_queue_head_init(&sta->tx_filtered);
Johannes Berg73651ee2008-02-25 16:27:47 +0100271
Senthil Balasubramaniancccaec92009-05-14 18:42:08 +0530272 for (i = 0; i < NUM_RX_DATA_QUEUES; i++)
Alexey Dobriyan4be929b2010-05-24 14:33:03 -0700273 sta->last_seq_ctrl[i] = cpu_to_le16(USHRT_MAX);
Senthil Balasubramaniancccaec92009-05-14 18:42:08 +0530274
Johannes Berg73651ee2008-02-25 16:27:47 +0100275#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Joe Perches0fb9a9e2010-08-20 16:25:38 -0700276 wiphy_debug(local->hw.wiphy, "Allocated STA %pM\n", sta->sta.addr);
Johannes Berg73651ee2008-02-25 16:27:47 +0100277#endif /* CONFIG_MAC80211_VERBOSE_DEBUG */
278
Johannes Berg03e44972008-02-27 09:56:40 +0100279#ifdef CONFIG_MAC80211_MESH
Javier Cardona57cf8042011-05-13 10:45:43 -0700280 sta->plink_state = NL80211_PLINK_LISTEN;
Johannes Berg03e44972008-02-27 09:56:40 +0100281 init_timer(&sta->plink_timer);
282#endif
283
Johannes Berg73651ee2008-02-25 16:27:47 +0100284 return sta;
285}
286
Johannes Berg34e89502010-02-03 13:59:58 +0100287static int sta_info_finish_insert(struct sta_info *sta, bool async)
Johannes Berg73651ee2008-02-25 16:27:47 +0100288{
289 struct ieee80211_local *local = sta->local;
290 struct ieee80211_sub_if_data *sdata = sta->sdata;
Johannes Berg98b62182009-12-23 13:15:44 +0100291 struct station_info sinfo;
Johannes Berg73651ee2008-02-25 16:27:47 +0100292 unsigned long flags;
Johannes Berg93e5deb2008-04-01 15:21:00 +0200293 int err = 0;
Johannes Berg73651ee2008-02-25 16:27:47 +0100294
Johannes Berg46a5eba2010-09-15 13:28:15 +0200295 lockdep_assert_held(&local->sta_mtx);
Johannes Berg34e89502010-02-03 13:59:58 +0100296
297 /* notify driver */
298 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
299 sdata = container_of(sdata->bss,
300 struct ieee80211_sub_if_data,
301 u.ap);
302 err = drv_sta_add(local, sdata, &sta->sta);
303 if (err) {
304 if (!async)
305 return err;
306 printk(KERN_DEBUG "%s: failed to add IBSS STA %pM to driver (%d)"
307 " - keeping it anyway.\n",
308 sdata->name, sta->sta.addr, err);
309 } else {
310 sta->uploaded = true;
311#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
312 if (async)
Joe Perches0fb9a9e2010-08-20 16:25:38 -0700313 wiphy_debug(local->hw.wiphy,
314 "Finished adding IBSS STA %pM\n",
315 sta->sta.addr);
Johannes Berg34e89502010-02-03 13:59:58 +0100316#endif
317 }
318
319 sdata = sta->sdata;
320
321 if (!async) {
322 local->num_sta++;
323 local->sta_generation++;
324 smp_mb();
325
326 /* make the station visible */
327 spin_lock_irqsave(&local->sta_lock, flags);
328 sta_info_hash_add(local, sta);
329 spin_unlock_irqrestore(&local->sta_lock, flags);
330 }
331
332 list_add(&sta->list, &local->sta_list);
333
334 ieee80211_sta_debugfs_add(sta);
335 rate_control_add_sta_debugfs(sta);
336
337 sinfo.filled = 0;
338 sinfo.generation = local->sta_generation;
339 cfg80211_new_sta(sdata->dev, sta->sta.addr, &sinfo, GFP_KERNEL);
340
341
342 return 0;
343}
344
345static void sta_info_finish_pending(struct ieee80211_local *local)
346{
347 struct sta_info *sta;
348 unsigned long flags;
349
350 spin_lock_irqsave(&local->sta_lock, flags);
351 while (!list_empty(&local->sta_pending_list)) {
352 sta = list_first_entry(&local->sta_pending_list,
353 struct sta_info, list);
354 list_del(&sta->list);
355 spin_unlock_irqrestore(&local->sta_lock, flags);
356
357 sta_info_finish_insert(sta, true);
358
359 spin_lock_irqsave(&local->sta_lock, flags);
360 }
361 spin_unlock_irqrestore(&local->sta_lock, flags);
362}
363
364static void sta_info_finish_work(struct work_struct *work)
365{
366 struct ieee80211_local *local =
367 container_of(work, struct ieee80211_local, sta_finish_work);
368
369 mutex_lock(&local->sta_mtx);
370 sta_info_finish_pending(local);
371 mutex_unlock(&local->sta_mtx);
372}
373
374int sta_info_insert_rcu(struct sta_info *sta) __acquires(RCU)
375{
376 struct ieee80211_local *local = sta->local;
377 struct ieee80211_sub_if_data *sdata = sta->sdata;
378 unsigned long flags;
379 int err = 0;
380
Johannes Berg03e44972008-02-27 09:56:40 +0100381 /*
382 * Can't be a WARN_ON because it can be triggered through a race:
383 * something inserts a STA (on one CPU) without holding the RTNL
384 * and another CPU turns off the net device.
385 */
Johannes Berg9607e6b2009-12-23 13:15:31 +0100386 if (unlikely(!ieee80211_sdata_running(sdata))) {
Johannes Berg93e5deb2008-04-01 15:21:00 +0200387 err = -ENETDOWN;
Johannes Berg34e89502010-02-03 13:59:58 +0100388 rcu_read_lock();
Johannes Berg93e5deb2008-04-01 15:21:00 +0200389 goto out_free;
390 }
Johannes Berg03e44972008-02-27 09:56:40 +0100391
Johannes Berg47846c92009-11-25 17:46:19 +0100392 if (WARN_ON(compare_ether_addr(sta->sta.addr, sdata->vif.addr) == 0 ||
Johannes Bergc6a1fa12008-10-07 12:04:32 +0200393 is_multicast_ether_addr(sta->sta.addr))) {
Johannes Berg93e5deb2008-04-01 15:21:00 +0200394 err = -EINVAL;
Johannes Berg34e89502010-02-03 13:59:58 +0100395 rcu_read_lock();
Johannes Berg93e5deb2008-04-01 15:21:00 +0200396 goto out_free;
397 }
Johannes Berg44213b52008-02-25 16:27:49 +0100398
Johannes Berg34e89502010-02-03 13:59:58 +0100399 /*
400 * In ad-hoc mode, we sometimes need to insert stations
401 * from tasklet context from the RX path. To avoid races,
402 * always do so in that case -- see the comment below.
403 */
404 if (sdata->vif.type == NL80211_IFTYPE_ADHOC) {
405 spin_lock_irqsave(&local->sta_lock, flags);
406 /* check if STA exists already */
407 if (sta_info_get_bss(sdata, sta->sta.addr)) {
408 spin_unlock_irqrestore(&local->sta_lock, flags);
409 rcu_read_lock();
410 err = -EEXIST;
411 goto out_free;
412 }
413
414 local->num_sta++;
415 local->sta_generation++;
416 smp_mb();
417 sta_info_hash_add(local, sta);
418
419 list_add_tail(&sta->list, &local->sta_pending_list);
420
421 rcu_read_lock();
422 spin_unlock_irqrestore(&local->sta_lock, flags);
423
424#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Joe Perches0fb9a9e2010-08-20 16:25:38 -0700425 wiphy_debug(local->hw.wiphy, "Added IBSS STA %pM\n",
426 sta->sta.addr);
Johannes Berg34e89502010-02-03 13:59:58 +0100427#endif /* CONFIG_MAC80211_VERBOSE_DEBUG */
428
429 ieee80211_queue_work(&local->hw, &local->sta_finish_work);
430
431 return 0;
432 }
433
434 /*
435 * On first glance, this will look racy, because the code
436 * below this point, which inserts a station with sleeping,
437 * unlocks the sta_lock between checking existence in the
438 * hash table and inserting into it.
439 *
440 * However, it is not racy against itself because it keeps
441 * the mutex locked. It still seems to race against the
442 * above code that atomically inserts the station... That,
443 * however, is not true because the above code can only
444 * be invoked for IBSS interfaces, and the below code will
445 * not be -- and the two do not race against each other as
446 * the hash table also keys off the interface.
447 */
448
449 might_sleep();
450
451 mutex_lock(&local->sta_mtx);
452
Johannes Bergd0709a62008-02-25 16:27:46 +0100453 spin_lock_irqsave(&local->sta_lock, flags);
Johannes Berg43ba7e92008-02-21 14:09:30 +0100454 /* check if STA exists already */
Johannes Berg34e89502010-02-03 13:59:58 +0100455 if (sta_info_get_bss(sdata, sta->sta.addr)) {
Johannes Bergd0709a62008-02-25 16:27:46 +0100456 spin_unlock_irqrestore(&local->sta_lock, flags);
Jouni Malinen38a679a2010-03-06 18:35:08 +0200457 mutex_unlock(&local->sta_mtx);
Johannes Berg34e89502010-02-03 13:59:58 +0100458 rcu_read_lock();
Johannes Berg93e5deb2008-04-01 15:21:00 +0200459 err = -EEXIST;
460 goto out_free;
Johannes Berg43ba7e92008-02-21 14:09:30 +0100461 }
Johannes Berg32bfd352007-12-19 01:31:26 +0100462
Johannes Berg34e89502010-02-03 13:59:58 +0100463 spin_unlock_irqrestore(&local->sta_lock, flags);
Johannes Berg32bfd352007-12-19 01:31:26 +0100464
Johannes Berg34e89502010-02-03 13:59:58 +0100465 err = sta_info_finish_insert(sta, false);
466 if (err) {
467 mutex_unlock(&local->sta_mtx);
468 rcu_read_lock();
469 goto out_free;
Johannes Berg32bfd352007-12-19 01:31:26 +0100470 }
Johannes Bergd0709a62008-02-25 16:27:46 +0100471
Jiri Bencf0706e82007-05-05 11:45:53 -0700472#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Joe Perches0fb9a9e2010-08-20 16:25:38 -0700473 wiphy_debug(local->hw.wiphy, "Inserted STA %pM\n", sta->sta.addr);
Jiri Bencf0706e82007-05-05 11:45:53 -0700474#endif /* CONFIG_MAC80211_VERBOSE_DEBUG */
475
Johannes Berg34e89502010-02-03 13:59:58 +0100476 /* move reference to rcu-protected */
477 rcu_read_lock();
478 mutex_unlock(&local->sta_mtx);
Jiri Bence9f207f2007-05-05 11:46:38 -0700479
Johannes Berg73651ee2008-02-25 16:27:47 +0100480 if (ieee80211_vif_is_mesh(&sdata->vif))
481 mesh_accept_plinks_update(sdata);
482
483 return 0;
Johannes Berg93e5deb2008-04-01 15:21:00 +0200484 out_free:
485 BUG_ON(!err);
486 __sta_info_free(local, sta);
487 return err;
Jiri Bencf0706e82007-05-05 11:45:53 -0700488}
489
Johannes Berg34e89502010-02-03 13:59:58 +0100490int sta_info_insert(struct sta_info *sta)
491{
492 int err = sta_info_insert_rcu(sta);
493
494 rcu_read_unlock();
495
496 return err;
497}
498
Johannes Berg004c8722008-02-20 11:21:35 +0100499static inline void __bss_tim_set(struct ieee80211_if_ap *bss, u16 aid)
500{
501 /*
502 * This format has been mandated by the IEEE specifications,
503 * so this line may not be changed to use the __set_bit() format.
504 */
505 bss->tim[aid / 8] |= (1 << (aid % 8));
506}
507
508static inline void __bss_tim_clear(struct ieee80211_if_ap *bss, u16 aid)
509{
510 /*
511 * This format has been mandated by the IEEE specifications,
512 * so this line may not be changed to use the __clear_bit() format.
513 */
514 bss->tim[aid / 8] &= ~(1 << (aid % 8));
515}
516
517static void __sta_info_set_tim_bit(struct ieee80211_if_ap *bss,
518 struct sta_info *sta)
519{
Johannes Berg3e122be2008-07-09 14:40:34 +0200520 BUG_ON(!bss);
521
Johannes Berg17741cd2008-09-11 00:02:02 +0200522 __bss_tim_set(bss, sta->sta.aid);
Johannes Berg3e122be2008-07-09 14:40:34 +0200523
Johannes Bergd0709a62008-02-25 16:27:46 +0100524 if (sta->local->ops->set_tim) {
525 sta->local->tim_in_locked_section = true;
Johannes Berg24487982009-04-23 18:52:52 +0200526 drv_set_tim(sta->local, &sta->sta, true);
Johannes Bergd0709a62008-02-25 16:27:46 +0100527 sta->local->tim_in_locked_section = false;
528 }
Johannes Berg004c8722008-02-20 11:21:35 +0100529}
530
531void sta_info_set_tim_bit(struct sta_info *sta)
532{
Johannes Bergd0709a62008-02-25 16:27:46 +0100533 unsigned long flags;
Johannes Berg004c8722008-02-20 11:21:35 +0100534
Johannes Berg3e122be2008-07-09 14:40:34 +0200535 BUG_ON(!sta->sdata->bss);
536
Johannes Bergd0709a62008-02-25 16:27:46 +0100537 spin_lock_irqsave(&sta->local->sta_lock, flags);
538 __sta_info_set_tim_bit(sta->sdata->bss, sta);
539 spin_unlock_irqrestore(&sta->local->sta_lock, flags);
Johannes Berg004c8722008-02-20 11:21:35 +0100540}
541
542static void __sta_info_clear_tim_bit(struct ieee80211_if_ap *bss,
543 struct sta_info *sta)
544{
Johannes Berg3e122be2008-07-09 14:40:34 +0200545 BUG_ON(!bss);
546
Johannes Berg17741cd2008-09-11 00:02:02 +0200547 __bss_tim_clear(bss, sta->sta.aid);
Johannes Berg3e122be2008-07-09 14:40:34 +0200548
Johannes Bergd0709a62008-02-25 16:27:46 +0100549 if (sta->local->ops->set_tim) {
550 sta->local->tim_in_locked_section = true;
Johannes Berg24487982009-04-23 18:52:52 +0200551 drv_set_tim(sta->local, &sta->sta, false);
Johannes Bergd0709a62008-02-25 16:27:46 +0100552 sta->local->tim_in_locked_section = false;
553 }
Johannes Berg004c8722008-02-20 11:21:35 +0100554}
555
556void sta_info_clear_tim_bit(struct sta_info *sta)
557{
Johannes Bergd0709a62008-02-25 16:27:46 +0100558 unsigned long flags;
Johannes Berg004c8722008-02-20 11:21:35 +0100559
Johannes Berg3e122be2008-07-09 14:40:34 +0200560 BUG_ON(!sta->sdata->bss);
561
Johannes Bergd0709a62008-02-25 16:27:46 +0100562 spin_lock_irqsave(&sta->local->sta_lock, flags);
563 __sta_info_clear_tim_bit(sta->sdata->bss, sta);
564 spin_unlock_irqrestore(&sta->local->sta_lock, flags);
Johannes Berg004c8722008-02-20 11:21:35 +0100565}
566
Johannes Berg57c4d7b2009-04-23 16:10:04 +0200567static int sta_info_buffer_expired(struct sta_info *sta,
568 struct sk_buff *skb)
Jiri Bencf0706e82007-05-05 11:45:53 -0700569{
Johannes Berge039fa42008-05-15 12:55:29 +0200570 struct ieee80211_tx_info *info;
Jiri Bencf0706e82007-05-05 11:45:53 -0700571 int timeout;
572
573 if (!skb)
574 return 0;
575
Johannes Berge039fa42008-05-15 12:55:29 +0200576 info = IEEE80211_SKB_CB(skb);
Jiri Bencf0706e82007-05-05 11:45:53 -0700577
578 /* Timeout: (2 * listen_interval * beacon_int * 1024 / 1000000) sec */
Johannes Berg57c4d7b2009-04-23 16:10:04 +0200579 timeout = (sta->listen_interval *
580 sta->sdata->vif.bss_conf.beacon_int *
581 32 / 15625) * HZ;
Jiri Bencf0706e82007-05-05 11:45:53 -0700582 if (timeout < STA_TX_BUFFER_EXPIRE)
583 timeout = STA_TX_BUFFER_EXPIRE;
Johannes Berge039fa42008-05-15 12:55:29 +0200584 return time_after(jiffies, info->control.jiffies + timeout);
Jiri Bencf0706e82007-05-05 11:45:53 -0700585}
586
587
Juuso Oikarinen3393a602010-04-19 10:12:52 +0300588static bool sta_info_cleanup_expire_buffered(struct ieee80211_local *local,
Jiri Bencf0706e82007-05-05 11:45:53 -0700589 struct sta_info *sta)
590{
591 unsigned long flags;
592 struct sk_buff *skb;
593
594 if (skb_queue_empty(&sta->ps_tx_buf))
Juuso Oikarinen3393a602010-04-19 10:12:52 +0300595 return false;
Jiri Bencf0706e82007-05-05 11:45:53 -0700596
597 for (;;) {
598 spin_lock_irqsave(&sta->ps_tx_buf.lock, flags);
599 skb = skb_peek(&sta->ps_tx_buf);
Johannes Berg57c4d7b2009-04-23 16:10:04 +0200600 if (sta_info_buffer_expired(sta, skb))
Jiri Bencf0706e82007-05-05 11:45:53 -0700601 skb = __skb_dequeue(&sta->ps_tx_buf);
Johannes Berg836341a2008-02-20 02:07:21 +0100602 else
Jiri Bencf0706e82007-05-05 11:45:53 -0700603 skb = NULL;
604 spin_unlock_irqrestore(&sta->ps_tx_buf.lock, flags);
605
Johannes Berg836341a2008-02-20 02:07:21 +0100606 if (!skb)
Jiri Bencf0706e82007-05-05 11:45:53 -0700607 break;
Johannes Berg836341a2008-02-20 02:07:21 +0100608
Johannes Berg836341a2008-02-20 02:07:21 +0100609 local->total_ps_buffered--;
Johannes Bergf4ea83d2008-06-30 15:10:46 +0200610#ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
Johannes Berg0c68ae262008-10-27 15:56:10 -0700611 printk(KERN_DEBUG "Buffered frame expired (STA %pM)\n",
612 sta->sta.addr);
Johannes Bergf4ea83d2008-06-30 15:10:46 +0200613#endif
Johannes Berg836341a2008-02-20 02:07:21 +0100614 dev_kfree_skb(skb);
615
Felix Fietkaudcf55fb2011-04-17 17:45:00 +0200616 if (skb_queue_empty(&sta->ps_tx_buf) &&
617 !test_sta_flags(sta, WLAN_STA_PS_DRIVER_BUF))
Johannes Berg004c8722008-02-20 11:21:35 +0100618 sta_info_clear_tim_bit(sta);
Jiri Bencf0706e82007-05-05 11:45:53 -0700619 }
Juuso Oikarinen3393a602010-04-19 10:12:52 +0300620
621 return true;
Jiri Bencf0706e82007-05-05 11:45:53 -0700622}
623
Johannes Berg34e89502010-02-03 13:59:58 +0100624static int __must_check __sta_info_destroy(struct sta_info *sta)
625{
626 struct ieee80211_local *local;
627 struct ieee80211_sub_if_data *sdata;
628 struct sk_buff *skb;
629 unsigned long flags;
Johannes Berge31b8212010-10-05 19:39:30 +0200630 int ret, i;
Johannes Berg34e89502010-02-03 13:59:58 +0100631
632 might_sleep();
633
634 if (!sta)
635 return -ENOENT;
636
637 local = sta->local;
638 sdata = sta->sdata;
639
Johannes Berg098a6072010-04-06 11:18:47 +0200640 /*
641 * Before removing the station from the driver and
642 * rate control, it might still start new aggregation
643 * sessions -- block that to make sure the tear-down
644 * will be sufficient.
645 */
646 set_sta_flags(sta, WLAN_STA_BLOCK_BA);
Johannes Berg53f73c02010-10-05 19:37:40 +0200647 ieee80211_sta_tear_down_BA_sessions(sta, true);
Johannes Berg098a6072010-04-06 11:18:47 +0200648
Johannes Berg34e89502010-02-03 13:59:58 +0100649 spin_lock_irqsave(&local->sta_lock, flags);
650 ret = sta_info_hash_del(local, sta);
651 /* this might still be the pending list ... which is fine */
652 if (!ret)
653 list_del(&sta->list);
654 spin_unlock_irqrestore(&local->sta_lock, flags);
655 if (ret)
656 return ret;
657
Johannes Berg8cb23152011-05-12 15:07:15 +0200658 mutex_lock(&local->key_mtx);
Johannes Berge31b8212010-10-05 19:39:30 +0200659 for (i = 0; i < NUM_DEFAULT_KEYS; i++)
Johannes Berg40b275b2011-05-13 14:15:49 +0200660 __ieee80211_key_free(key_mtx_dereference(local, sta->gtk[i]));
Johannes Berge31b8212010-10-05 19:39:30 +0200661 if (sta->ptk)
Johannes Berg40b275b2011-05-13 14:15:49 +0200662 __ieee80211_key_free(key_mtx_dereference(local, sta->ptk));
Johannes Berg8cb23152011-05-12 15:07:15 +0200663 mutex_unlock(&local->key_mtx);
Johannes Berg34e89502010-02-03 13:59:58 +0100664
665 sta->dead = true;
666
667 if (test_and_clear_sta_flags(sta,
668 WLAN_STA_PS_STA | WLAN_STA_PS_DRIVER)) {
669 BUG_ON(!sdata->bss);
670
671 atomic_dec(&sdata->bss->num_sta_ps);
672 __sta_info_clear_tim_bit(sdata->bss, sta);
673 }
674
675 local->num_sta--;
676 local->sta_generation++;
677
678 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
679 rcu_assign_pointer(sdata->u.vlan.sta, NULL);
680
681 if (sta->uploaded) {
682 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
683 sdata = container_of(sdata->bss,
684 struct ieee80211_sub_if_data,
685 u.ap);
686 drv_sta_remove(local, sdata, &sta->sta);
687 sdata = sta->sdata;
688 }
689
Johannes Berge64b3792010-04-06 11:18:43 +0200690 /*
691 * At this point, after we wait for an RCU grace period,
692 * neither mac80211 nor the driver can reference this
693 * sta struct any more except by still existing timers
694 * associated with this station that we clean up below.
695 */
696 synchronize_rcu();
697
Johannes Berg34e89502010-02-03 13:59:58 +0100698#ifdef CONFIG_MAC80211_MESH
Johannes Berge64b3792010-04-06 11:18:43 +0200699 if (ieee80211_vif_is_mesh(&sdata->vif))
Johannes Berg34e89502010-02-03 13:59:58 +0100700 mesh_accept_plinks_update(sdata);
Johannes Berg34e89502010-02-03 13:59:58 +0100701#endif
702
703#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Joe Perches0fb9a9e2010-08-20 16:25:38 -0700704 wiphy_debug(local->hw.wiphy, "Removed STA %pM\n", sta->sta.addr);
Johannes Berg34e89502010-02-03 13:59:58 +0100705#endif /* CONFIG_MAC80211_VERBOSE_DEBUG */
706 cancel_work_sync(&sta->drv_unblock_wk);
707
Jouni Malinenec15e682011-03-23 15:29:52 +0200708 cfg80211_del_sta(sdata->dev, sta->sta.addr, GFP_KERNEL);
709
Johannes Berg34e89502010-02-03 13:59:58 +0100710 rate_control_remove_sta_debugfs(sta);
711 ieee80211_sta_debugfs_remove(sta);
712
713#ifdef CONFIG_MAC80211_MESH
714 if (ieee80211_vif_is_mesh(&sta->sdata->vif)) {
715 mesh_plink_deactivate(sta);
716 del_timer_sync(&sta->plink_timer);
717 }
718#endif
719
720 while ((skb = skb_dequeue(&sta->ps_tx_buf)) != NULL) {
721 local->total_ps_buffered--;
722 dev_kfree_skb_any(skb);
723 }
724
725 while ((skb = skb_dequeue(&sta->tx_filtered)) != NULL)
726 dev_kfree_skb_any(skb);
727
Johannes Berg34e89502010-02-03 13:59:58 +0100728 __sta_info_free(local, sta);
729
730 return 0;
731}
732
733int sta_info_destroy_addr(struct ieee80211_sub_if_data *sdata, const u8 *addr)
734{
735 struct sta_info *sta;
736 int ret;
737
738 mutex_lock(&sdata->local->sta_mtx);
739 sta = sta_info_get(sdata, addr);
740 ret = __sta_info_destroy(sta);
741 mutex_unlock(&sdata->local->sta_mtx);
742
743 return ret;
744}
745
746int sta_info_destroy_addr_bss(struct ieee80211_sub_if_data *sdata,
747 const u8 *addr)
748{
749 struct sta_info *sta;
750 int ret;
751
752 mutex_lock(&sdata->local->sta_mtx);
753 sta = sta_info_get_bss(sdata, addr);
754 ret = __sta_info_destroy(sta);
755 mutex_unlock(&sdata->local->sta_mtx);
756
757 return ret;
758}
Jiri Bencf0706e82007-05-05 11:45:53 -0700759
760static void sta_info_cleanup(unsigned long data)
761{
762 struct ieee80211_local *local = (struct ieee80211_local *) data;
763 struct sta_info *sta;
Juuso Oikarinen3393a602010-04-19 10:12:52 +0300764 bool timer_needed = false;
Jiri Bencf0706e82007-05-05 11:45:53 -0700765
Johannes Bergd0709a62008-02-25 16:27:46 +0100766 rcu_read_lock();
767 list_for_each_entry_rcu(sta, &local->sta_list, list)
Juuso Oikarinen3393a602010-04-19 10:12:52 +0300768 if (sta_info_cleanup_expire_buffered(local, sta))
769 timer_needed = true;
Johannes Bergd0709a62008-02-25 16:27:46 +0100770 rcu_read_unlock();
Jiri Bencf0706e82007-05-05 11:45:53 -0700771
Johannes Berg5bb644a2009-05-17 11:40:42 +0200772 if (local->quiescing)
773 return;
774
Juuso Oikarinen3393a602010-04-19 10:12:52 +0300775 if (!timer_needed)
776 return;
777
Johannes Berg26d59532011-04-01 13:52:48 +0200778 mod_timer(&local->sta_cleanup,
779 round_jiffies(jiffies + STA_INFO_CLEANUP_INTERVAL));
Jiri Bencf0706e82007-05-05 11:45:53 -0700780}
781
782void sta_info_init(struct ieee80211_local *local)
783{
Johannes Bergd0709a62008-02-25 16:27:46 +0100784 spin_lock_init(&local->sta_lock);
Johannes Berg34e89502010-02-03 13:59:58 +0100785 mutex_init(&local->sta_mtx);
Jiri Bencf0706e82007-05-05 11:45:53 -0700786 INIT_LIST_HEAD(&local->sta_list);
Johannes Berg34e89502010-02-03 13:59:58 +0100787 INIT_LIST_HEAD(&local->sta_pending_list);
788 INIT_WORK(&local->sta_finish_work, sta_info_finish_work);
Jiri Bencf0706e82007-05-05 11:45:53 -0700789
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -0800790 setup_timer(&local->sta_cleanup, sta_info_cleanup,
791 (unsigned long)local);
Jiri Bencf0706e82007-05-05 11:45:53 -0700792}
793
794void sta_info_stop(struct ieee80211_local *local)
795{
Jiri Bencf0706e82007-05-05 11:45:53 -0700796 del_timer(&local->sta_cleanup);
Michael Wube8755e2007-07-27 15:43:23 +0200797 sta_info_flush(local, NULL);
Jiri Bencf0706e82007-05-05 11:45:53 -0700798}
799
Jiri Bencf0706e82007-05-05 11:45:53 -0700800/**
801 * sta_info_flush - flush matching STA entries from the STA table
Johannes Berg44213b52008-02-25 16:27:49 +0100802 *
803 * Returns the number of removed STA entries.
804 *
Jiri Bencf0706e82007-05-05 11:45:53 -0700805 * @local: local interface data
Johannes Bergd0709a62008-02-25 16:27:46 +0100806 * @sdata: matching rule for the net device (sta->dev) or %NULL to match all STAs
Jiri Bencf0706e82007-05-05 11:45:53 -0700807 */
Johannes Berg44213b52008-02-25 16:27:49 +0100808int sta_info_flush(struct ieee80211_local *local,
Johannes Bergaf8cdcd2009-04-19 21:25:43 +0200809 struct ieee80211_sub_if_data *sdata)
Jiri Bencf0706e82007-05-05 11:45:53 -0700810{
811 struct sta_info *sta, *tmp;
Johannes Berg44213b52008-02-25 16:27:49 +0100812 int ret = 0;
Jiri Bencf0706e82007-05-05 11:45:53 -0700813
Johannes Bergd0709a62008-02-25 16:27:46 +0100814 might_sleep();
815
Johannes Berg34e89502010-02-03 13:59:58 +0100816 mutex_lock(&local->sta_mtx);
Johannes Bergd0709a62008-02-25 16:27:46 +0100817
Johannes Berg34e89502010-02-03 13:59:58 +0100818 sta_info_finish_pending(local);
819
820 list_for_each_entry_safe(sta, tmp, &local->sta_list, list) {
821 if (!sdata || sdata == sta->sdata)
822 WARN_ON(__sta_info_destroy(sta));
823 }
824 mutex_unlock(&local->sta_mtx);
Johannes Berg44213b52008-02-25 16:27:49 +0100825
826 return ret;
Jiri Bencf0706e82007-05-05 11:45:53 -0700827}
Johannes Bergdc6676b2008-03-31 19:23:03 +0200828
Johannes Berg24723d12008-09-11 00:01:46 +0200829void ieee80211_sta_expire(struct ieee80211_sub_if_data *sdata,
830 unsigned long exp_time)
831{
832 struct ieee80211_local *local = sdata->local;
833 struct sta_info *sta, *tmp;
Johannes Berg24723d12008-09-11 00:01:46 +0200834
Johannes Berg34e89502010-02-03 13:59:58 +0100835 mutex_lock(&local->sta_mtx);
Johannes Berg24723d12008-09-11 00:01:46 +0200836 list_for_each_entry_safe(sta, tmp, &local->sta_list, list)
837 if (time_after(jiffies, sta->last_rx + exp_time)) {
838#ifdef CONFIG_MAC80211_IBSS_DEBUG
Johannes Berg0c68ae262008-10-27 15:56:10 -0700839 printk(KERN_DEBUG "%s: expiring inactive STA %pM\n",
Johannes Berg47846c92009-11-25 17:46:19 +0100840 sdata->name, sta->sta.addr);
Johannes Berg24723d12008-09-11 00:01:46 +0200841#endif
Johannes Berg34e89502010-02-03 13:59:58 +0100842 WARN_ON(__sta_info_destroy(sta));
Johannes Berg24723d12008-09-11 00:01:46 +0200843 }
Johannes Berg34e89502010-02-03 13:59:58 +0100844 mutex_unlock(&local->sta_mtx);
Johannes Berg24723d12008-09-11 00:01:46 +0200845}
Johannes Berg17741cd2008-09-11 00:02:02 +0200846
Ben Greear686b9cb2010-09-23 09:44:36 -0700847struct ieee80211_sta *ieee80211_find_sta_by_ifaddr(struct ieee80211_hw *hw,
848 const u8 *addr,
849 const u8 *localaddr)
Johannes Berg17741cd2008-09-11 00:02:02 +0200850{
Johannes Bergabe60632009-11-25 17:46:18 +0100851 struct sta_info *sta, *nxt;
Johannes Berg17741cd2008-09-11 00:02:02 +0200852
Ben Greear686b9cb2010-09-23 09:44:36 -0700853 /*
854 * Just return a random station if localaddr is NULL
855 * ... first in list.
856 */
Johannes Bergf7c65592010-04-30 13:48:36 +0200857 for_each_sta_info(hw_to_local(hw), addr, sta, nxt) {
Ben Greear686b9cb2010-09-23 09:44:36 -0700858 if (localaddr &&
859 compare_ether_addr(sta->sdata->vif.addr, localaddr) != 0)
860 continue;
Johannes Bergf7c65592010-04-30 13:48:36 +0200861 if (!sta->uploaded)
862 return NULL;
Johannes Bergabe60632009-11-25 17:46:18 +0100863 return &sta->sta;
Johannes Bergf7c65592010-04-30 13:48:36 +0200864 }
865
Johannes Bergabe60632009-11-25 17:46:18 +0100866 return NULL;
Johannes Berg17741cd2008-09-11 00:02:02 +0200867}
Ben Greear686b9cb2010-09-23 09:44:36 -0700868EXPORT_SYMBOL_GPL(ieee80211_find_sta_by_ifaddr);
Johannes Berg5ed176e2009-11-04 14:42:28 +0100869
870struct ieee80211_sta *ieee80211_find_sta(struct ieee80211_vif *vif,
871 const u8 *addr)
872{
Johannes Bergf7c65592010-04-30 13:48:36 +0200873 struct sta_info *sta;
Johannes Berg5ed176e2009-11-04 14:42:28 +0100874
875 if (!vif)
876 return NULL;
877
Johannes Bergf7c65592010-04-30 13:48:36 +0200878 sta = sta_info_get_bss(vif_to_sdata(vif), addr);
879 if (!sta)
880 return NULL;
Johannes Berg5ed176e2009-11-04 14:42:28 +0100881
Johannes Bergf7c65592010-04-30 13:48:36 +0200882 if (!sta->uploaded)
883 return NULL;
884
885 return &sta->sta;
Johannes Berg5ed176e2009-11-04 14:42:28 +0100886}
Johannes Berg17741cd2008-09-11 00:02:02 +0200887EXPORT_SYMBOL(ieee80211_find_sta);
Johannes Bergaf818582009-11-06 11:35:50 +0100888
Johannes Berg50a94322010-11-16 11:50:28 -0800889static void clear_sta_ps_flags(void *_sta)
890{
891 struct sta_info *sta = _sta;
892
893 clear_sta_flags(sta, WLAN_STA_PS_DRIVER | WLAN_STA_PS_STA);
894}
895
Johannes Bergaf818582009-11-06 11:35:50 +0100896/* powersave support code */
897void ieee80211_sta_ps_deliver_wakeup(struct sta_info *sta)
898{
899 struct ieee80211_sub_if_data *sdata = sta->sdata;
900 struct ieee80211_local *local = sdata->local;
901 int sent, buffered;
902
Felix Fietkaudcf55fb2011-04-17 17:45:00 +0200903 clear_sta_flags(sta, WLAN_STA_PS_DRIVER_BUF);
Arik Nemtsovd057e5a2011-01-31 22:29:13 +0200904 if (!(local->hw.flags & IEEE80211_HW_AP_LINK_PS))
905 drv_sta_notify(local, sdata, STA_NOTIFY_AWAKE, &sta->sta);
Johannes Bergaf818582009-11-06 11:35:50 +0100906
907 if (!skb_queue_empty(&sta->ps_tx_buf))
908 sta_info_clear_tim_bit(sta);
909
910 /* Send all buffered frames to the station */
911 sent = ieee80211_add_pending_skbs(local, &sta->tx_filtered);
Johannes Berg50a94322010-11-16 11:50:28 -0800912 buffered = ieee80211_add_pending_skbs_fn(local, &sta->ps_tx_buf,
913 clear_sta_ps_flags, sta);
Johannes Bergaf818582009-11-06 11:35:50 +0100914 sent += buffered;
915 local->total_ps_buffered -= buffered;
916
917#ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
918 printk(KERN_DEBUG "%s: STA %pM aid %d sending %d filtered/%d PS frames "
Johannes Berg47846c92009-11-25 17:46:19 +0100919 "since STA not sleeping anymore\n", sdata->name,
Johannes Bergaf818582009-11-06 11:35:50 +0100920 sta->sta.addr, sta->sta.aid, sent - buffered, buffered);
921#endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */
922}
923
924void ieee80211_sta_ps_deliver_poll_response(struct sta_info *sta)
925{
926 struct ieee80211_sub_if_data *sdata = sta->sdata;
927 struct ieee80211_local *local = sdata->local;
928 struct sk_buff *skb;
929 int no_pending_pkts;
930
931 skb = skb_dequeue(&sta->tx_filtered);
932 if (!skb) {
933 skb = skb_dequeue(&sta->ps_tx_buf);
934 if (skb)
935 local->total_ps_buffered--;
936 }
937 no_pending_pkts = skb_queue_empty(&sta->tx_filtered) &&
938 skb_queue_empty(&sta->ps_tx_buf);
939
940 if (skb) {
941 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
942 struct ieee80211_hdr *hdr =
943 (struct ieee80211_hdr *) skb->data;
944
945 /*
946 * Tell TX path to send this frame even though the STA may
947 * still remain is PS mode after this frame exchange.
948 */
949 info->flags |= IEEE80211_TX_CTL_PSPOLL_RESPONSE;
950
951#ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
952 printk(KERN_DEBUG "STA %pM aid %d: PS Poll (entries after %d)\n",
953 sta->sta.addr, sta->sta.aid,
954 skb_queue_len(&sta->ps_tx_buf));
955#endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */
956
957 /* Use MoreData flag to indicate whether there are more
958 * buffered frames for this STA */
959 if (no_pending_pkts)
960 hdr->frame_control &= cpu_to_le16(~IEEE80211_FCTL_MOREDATA);
961 else
962 hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_MOREDATA);
963
964 ieee80211_add_pending_skb(local, skb);
965
966 if (no_pending_pkts)
967 sta_info_clear_tim_bit(sta);
968#ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
969 } else {
970 /*
971 * FIXME: This can be the result of a race condition between
972 * us expiring a frame and the station polling for it.
973 * Should we send it a null-func frame indicating we
974 * have nothing buffered for it?
975 */
976 printk(KERN_DEBUG "%s: STA %pM sent PS Poll even "
977 "though there are no buffered frames for it\n",
Johannes Berg47846c92009-11-25 17:46:19 +0100978 sdata->name, sta->sta.addr);
Johannes Bergaf818582009-11-06 11:35:50 +0100979#endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */
980 }
981}
982
983void ieee80211_sta_block_awake(struct ieee80211_hw *hw,
984 struct ieee80211_sta *pubsta, bool block)
985{
986 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
987
Johannes Bergb5878a22010-04-07 16:48:40 +0200988 trace_api_sta_block_awake(sta->local, pubsta, block);
989
Johannes Bergaf818582009-11-06 11:35:50 +0100990 if (block)
991 set_sta_flags(sta, WLAN_STA_PS_DRIVER);
Johannes Berg50a94322010-11-16 11:50:28 -0800992 else if (test_sta_flags(sta, WLAN_STA_PS_DRIVER))
Johannes Bergaf818582009-11-06 11:35:50 +0100993 ieee80211_queue_work(hw, &sta->drv_unblock_wk);
994}
995EXPORT_SYMBOL(ieee80211_sta_block_awake);
Felix Fietkaudcf55fb2011-04-17 17:45:00 +0200996
997void ieee80211_sta_set_tim(struct ieee80211_sta *pubsta)
998{
999 struct sta_info *sta = container_of(pubsta, struct sta_info, sta);
1000
1001 set_sta_flags(sta, WLAN_STA_PS_DRIVER_BUF);
1002 sta_info_set_tim_bit(sta);
1003}
1004EXPORT_SYMBOL(ieee80211_sta_set_tim);