2 * Copyright 2002-2005, Instant802 Networks, Inc.
3 * Copyright 2006-2007 Jiri Benc <jbenc@suse.cz>
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.
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>
18 #include <net/mac80211.h>
19 #include "ieee80211_i.h"
20 #include "ieee80211_rate.h"
22 #include "debugfs_sta.h"
24 /* Caller must hold local->sta_lock */
25 static void sta_info_hash_add(struct ieee80211_local
*local
,
28 sta
->hnext
= local
->sta_hash
[STA_HASH(sta
->addr
)];
29 local
->sta_hash
[STA_HASH(sta
->addr
)] = sta
;
33 /* Caller must hold local->sta_lock */
34 static int sta_info_hash_del(struct ieee80211_local
*local
,
39 s
= local
->sta_hash
[STA_HASH(sta
->addr
)];
43 local
->sta_hash
[STA_HASH(sta
->addr
)] = s
->hnext
;
47 while (s
->hnext
&& s
->hnext
!= sta
)
50 s
->hnext
= sta
->hnext
;
57 struct sta_info
*sta_info_get(struct ieee80211_local
*local
, u8
*addr
)
61 read_lock_bh(&local
->sta_lock
);
62 sta
= local
->sta_hash
[STA_HASH(addr
)];
64 if (memcmp(sta
->addr
, addr
, ETH_ALEN
) == 0) {
70 read_unlock_bh(&local
->sta_lock
);
74 EXPORT_SYMBOL(sta_info_get
);
76 int sta_info_min_txrate_get(struct ieee80211_local
*local
)
79 struct ieee80211_hw_mode
*mode
;
80 int min_txrate
= 9999999;
83 read_lock_bh(&local
->sta_lock
);
84 mode
= local
->oper_hw_mode
;
85 for (i
= 0; i
< STA_HASH_SIZE
; i
++) {
86 sta
= local
->sta_hash
[i
];
88 if (sta
->txrate
< min_txrate
)
89 min_txrate
= sta
->txrate
;
93 read_unlock_bh(&local
->sta_lock
);
94 if (min_txrate
== 9999999)
97 return mode
->rates
[min_txrate
].rate
;
101 static void sta_info_release(struct kref
*kref
)
103 struct sta_info
*sta
= container_of(kref
, struct sta_info
, kref
);
104 struct ieee80211_local
*local
= sta
->local
;
107 /* free sta structure; it has already been removed from
108 * hash table etc. external structures. Make sure that all
109 * buffered frames are release (one might have been added
110 * after sta_info_free() was called). */
111 while ((skb
= skb_dequeue(&sta
->ps_tx_buf
)) != NULL
) {
112 local
->total_ps_buffered
--;
113 dev_kfree_skb_any(skb
);
115 while ((skb
= skb_dequeue(&sta
->tx_filtered
)) != NULL
) {
116 dev_kfree_skb_any(skb
);
118 rate_control_free_sta(sta
->rate_ctrl
, sta
->rate_ctrl_priv
);
119 rate_control_put(sta
->rate_ctrl
);
124 void sta_info_put(struct sta_info
*sta
)
126 kref_put(&sta
->kref
, sta_info_release
);
128 EXPORT_SYMBOL(sta_info_put
);
131 struct sta_info
* sta_info_add(struct ieee80211_local
*local
,
132 struct net_device
*dev
, u8
*addr
, gfp_t gfp
)
134 struct sta_info
*sta
;
136 sta
= kzalloc(sizeof(*sta
), gfp
);
140 kref_init(&sta
->kref
);
142 sta
->rate_ctrl
= rate_control_get(local
->rate_ctrl
);
143 sta
->rate_ctrl_priv
= rate_control_alloc_sta(sta
->rate_ctrl
, gfp
);
144 if (!sta
->rate_ctrl_priv
) {
145 rate_control_put(sta
->rate_ctrl
);
150 memcpy(sta
->addr
, addr
, ETH_ALEN
);
153 skb_queue_head_init(&sta
->ps_tx_buf
);
154 skb_queue_head_init(&sta
->tx_filtered
);
155 __sta_info_get(sta
); /* sta used by caller, decremented by
157 write_lock_bh(&local
->sta_lock
);
158 list_add(&sta
->list
, &local
->sta_list
);
160 sta_info_hash_add(local
, sta
);
161 if (local
->ops
->sta_notify
)
162 local
->ops
->sta_notify(local_to_hw(local
), dev
->ifindex
,
163 STA_NOTIFY_ADD
, addr
);
164 write_unlock_bh(&local
->sta_lock
);
166 #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
167 printk(KERN_DEBUG
"%s: Added STA " MAC_FMT
"\n",
168 wiphy_name(local
->hw
.wiphy
), MAC_ARG(addr
));
169 #endif /* CONFIG_MAC80211_VERBOSE_DEBUG */
171 #ifdef CONFIG_MAC80211_DEBUGFS
172 /* debugfs entry adding might sleep, so schedule process
173 * context task for adding entry for STAs that do not yet
175 queue_work(local
->hw
.workqueue
, &local
->sta_debugfs_add
);
181 /* Caller must hold local->sta_lock */
182 void sta_info_remove(struct sta_info
*sta
)
184 struct ieee80211_local
*local
= sta
->local
;
185 struct ieee80211_sub_if_data
*sdata
;
187 /* don't do anything if we've been removed already */
188 if (sta_info_hash_del(local
, sta
))
191 list_del(&sta
->list
);
192 sdata
= IEEE80211_DEV_TO_SUB_IF(sta
->dev
);
193 if (sta
->flags
& WLAN_STA_PS
) {
194 sta
->flags
&= ~WLAN_STA_PS
;
196 atomic_dec(&sdata
->bss
->num_sta_ps
);
199 sta_info_remove_aid_ptr(sta
);
203 void sta_info_free(struct sta_info
*sta
)
206 struct ieee80211_local
*local
= sta
->local
;
210 write_lock_bh(&local
->sta_lock
);
211 sta_info_remove(sta
);
212 write_unlock_bh(&local
->sta_lock
);
214 while ((skb
= skb_dequeue(&sta
->ps_tx_buf
)) != NULL
) {
215 local
->total_ps_buffered
--;
218 while ((skb
= skb_dequeue(&sta
->tx_filtered
)) != NULL
) {
222 #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
223 printk(KERN_DEBUG
"%s: Removed STA " MAC_FMT
"\n",
224 wiphy_name(local
->hw
.wiphy
), MAC_ARG(sta
->addr
));
225 #endif /* CONFIG_MAC80211_VERBOSE_DEBUG */
227 ieee80211_key_free(sta
->key
);
230 if (local
->ops
->sta_notify
)
231 local
->ops
->sta_notify(local_to_hw(local
), sta
->dev
->ifindex
,
232 STA_NOTIFY_REMOVE
, sta
->addr
);
234 rate_control_remove_sta_debugfs(sta
);
235 ieee80211_sta_debugfs_remove(sta
);
241 static inline int sta_info_buffer_expired(struct ieee80211_local
*local
,
242 struct sta_info
*sta
,
245 struct ieee80211_tx_packet_data
*pkt_data
;
251 pkt_data
= (struct ieee80211_tx_packet_data
*) skb
->cb
;
253 /* Timeout: (2 * listen_interval * beacon_int * 1024 / 1000000) sec */
254 timeout
= (sta
->listen_interval
* local
->hw
.conf
.beacon_int
* 32 /
256 if (timeout
< STA_TX_BUFFER_EXPIRE
)
257 timeout
= STA_TX_BUFFER_EXPIRE
;
258 return time_after(jiffies
, pkt_data
->jiffies
+ timeout
);
262 static void sta_info_cleanup_expire_buffered(struct ieee80211_local
*local
,
263 struct sta_info
*sta
)
268 if (skb_queue_empty(&sta
->ps_tx_buf
))
272 spin_lock_irqsave(&sta
->ps_tx_buf
.lock
, flags
);
273 skb
= skb_peek(&sta
->ps_tx_buf
);
274 if (sta_info_buffer_expired(local
, sta
, skb
)) {
275 skb
= __skb_dequeue(&sta
->ps_tx_buf
);
276 if (skb_queue_empty(&sta
->ps_tx_buf
))
277 sta
->flags
&= ~WLAN_STA_TIM
;
280 spin_unlock_irqrestore(&sta
->ps_tx_buf
.lock
, flags
);
283 local
->total_ps_buffered
--;
284 printk(KERN_DEBUG
"Buffered frame expired (STA "
285 MAC_FMT
")\n", MAC_ARG(sta
->addr
));
293 static void sta_info_cleanup(unsigned long data
)
295 struct ieee80211_local
*local
= (struct ieee80211_local
*) data
;
296 struct sta_info
*sta
;
298 read_lock_bh(&local
->sta_lock
);
299 list_for_each_entry(sta
, &local
->sta_list
, list
) {
301 sta_info_cleanup_expire_buffered(local
, sta
);
304 read_unlock_bh(&local
->sta_lock
);
306 local
->sta_cleanup
.expires
= jiffies
+ STA_INFO_CLEANUP_INTERVAL
;
307 add_timer(&local
->sta_cleanup
);
310 #ifdef CONFIG_MAC80211_DEBUGFS
311 static void sta_info_debugfs_add_task(struct work_struct
*work
)
313 struct ieee80211_local
*local
=
314 container_of(work
, struct ieee80211_local
, sta_debugfs_add
);
315 struct sta_info
*sta
, *tmp
;
319 read_lock_bh(&local
->sta_lock
);
320 list_for_each_entry(tmp
, &local
->sta_list
, list
) {
321 if (!tmp
->debugfs
.dir
) {
327 read_unlock_bh(&local
->sta_lock
);
332 ieee80211_sta_debugfs_add(sta
);
333 rate_control_add_sta_debugfs(sta
);
339 void sta_info_init(struct ieee80211_local
*local
)
341 rwlock_init(&local
->sta_lock
);
342 INIT_LIST_HEAD(&local
->sta_list
);
344 init_timer(&local
->sta_cleanup
);
345 local
->sta_cleanup
.expires
= jiffies
+ STA_INFO_CLEANUP_INTERVAL
;
346 local
->sta_cleanup
.data
= (unsigned long) local
;
347 local
->sta_cleanup
.function
= sta_info_cleanup
;
349 #ifdef CONFIG_MAC80211_DEBUGFS
350 INIT_WORK(&local
->sta_debugfs_add
, sta_info_debugfs_add_task
);
354 int sta_info_start(struct ieee80211_local
*local
)
356 add_timer(&local
->sta_cleanup
);
360 void sta_info_stop(struct ieee80211_local
*local
)
362 del_timer(&local
->sta_cleanup
);
363 sta_info_flush(local
, NULL
);
366 void sta_info_remove_aid_ptr(struct sta_info
*sta
)
368 struct ieee80211_sub_if_data
*sdata
;
373 sdata
= IEEE80211_DEV_TO_SUB_IF(sta
->dev
);
375 if (sdata
->local
->ops
->set_tim
)
376 sdata
->local
->ops
->set_tim(local_to_hw(sdata
->local
),
379 __bss_tim_clear(sdata
->bss
, sta
->aid
);
384 * sta_info_flush - flush matching STA entries from the STA table
385 * @local: local interface data
386 * @dev: matching rule for the net device (sta->dev) or %NULL to match all STAs
388 void sta_info_flush(struct ieee80211_local
*local
, struct net_device
*dev
)
390 struct sta_info
*sta
, *tmp
;
393 write_lock_bh(&local
->sta_lock
);
394 list_for_each_entry_safe(sta
, tmp
, &local
->sta_list
, list
)
395 if (!dev
|| dev
== sta
->dev
) {
397 sta_info_remove(sta
);
398 list_add_tail(&sta
->list
, &tmp_list
);
400 write_unlock_bh(&local
->sta_lock
);
402 list_for_each_entry_safe(sta
, tmp
, &tmp_list
, list
) {