Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1 | /* |
| 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 Berg | 0d17440 | 2007-12-17 15:07:43 +0100 | [diff] [blame] | 17 | #include <linux/timer.h> |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 18 | #include <linux/rtnetlink.h> |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 19 | |
| 20 | #include <net/mac80211.h> |
| 21 | #include "ieee80211_i.h" |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 22 | #include "driver-ops.h" |
Johannes Berg | 2c8dccc | 2008-04-08 15:14:40 -0400 | [diff] [blame] | 23 | #include "rate.h" |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 24 | #include "sta_info.h" |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 25 | #include "debugfs_sta.h" |
Luis Carlos Cobo | ee38585 | 2008-02-23 15:17:11 +0100 | [diff] [blame] | 26 | #include "mesh.h" |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 27 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 28 | /** |
| 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 Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 35 | * 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 Berg | 93e5deb | 2008-04-01 15:21:00 +0200 | [diff] [blame] | 43 | * |
| 44 | * When the insertion fails (sta_info_insert()) returns non-zero), the |
| 45 | * structure will have been freed by sta_info_insert()! |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 46 | * |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 47 | * Station entries are added by mac80211 when you establish a link with a |
Luis R. Rodriguez | 7e189a1 | 2009-06-02 18:38:14 -0400 | [diff] [blame] | 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 |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 50 | * receive an association response from the AP. For IBSS this occurs when |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 51 | * get to know about a peer on the same IBSS. For WDS we add the sta for |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 52 | * the peer immediately upon device open. When using AP mode we add stations |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 53 | * for each respective station upon request from userspace through nl80211. |
Luis R. Rodriguez | 7e189a1 | 2009-06-02 18:38:14 -0400 | [diff] [blame] | 54 | * |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 55 | * In order to remove a STA info structure, various sta_info_destroy_*() |
| 56 | * calls are available. |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 57 | * |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 58 | * 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 Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 62 | */ |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 63 | |
| 64 | /* Caller must hold local->sta_lock */ |
Michael Wu | be8755e | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 65 | static int sta_info_hash_del(struct ieee80211_local *local, |
| 66 | struct sta_info *sta) |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 67 | { |
| 68 | struct sta_info *s; |
| 69 | |
Johannes Berg | 40b275b | 2011-05-13 14:15:49 +0200 | [diff] [blame] | 70 | s = rcu_dereference_protected(local->sta_hash[STA_HASH(sta->sta.addr)], |
| 71 | lockdep_is_held(&local->sta_lock)); |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 72 | if (!s) |
Michael Wu | be8755e | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 73 | return -ENOENT; |
| 74 | if (s == sta) { |
Johannes Berg | 17741cd | 2008-09-11 00:02:02 +0200 | [diff] [blame] | 75 | rcu_assign_pointer(local->sta_hash[STA_HASH(sta->sta.addr)], |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 76 | s->hnext); |
Michael Wu | be8755e | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 77 | return 0; |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 78 | } |
| 79 | |
Johannes Berg | 40b275b | 2011-05-13 14:15:49 +0200 | [diff] [blame] | 80 | 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 Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 85 | rcu_assign_pointer(s->hnext, sta->hnext); |
Michael Wu | be8755e | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 86 | return 0; |
| 87 | } |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 88 | |
Michael Wu | be8755e | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 89 | return -ENOENT; |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 90 | } |
| 91 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 92 | /* protected by RCU */ |
Johannes Berg | abe6063 | 2009-11-25 17:46:18 +0100 | [diff] [blame] | 93 | struct sta_info *sta_info_get(struct ieee80211_sub_if_data *sdata, |
| 94 | const u8 *addr) |
Johannes Berg | 43ba7e9 | 2008-02-21 14:09:30 +0100 | [diff] [blame] | 95 | { |
Johannes Berg | abe6063 | 2009-11-25 17:46:18 +0100 | [diff] [blame] | 96 | struct ieee80211_local *local = sdata->local; |
Johannes Berg | 43ba7e9 | 2008-02-21 14:09:30 +0100 | [diff] [blame] | 97 | struct sta_info *sta; |
| 98 | |
Johannes Berg | 0379185 | 2010-04-06 11:18:42 +0200 | [diff] [blame] | 99 | 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 Berg | 43ba7e9 | 2008-02-21 14:09:30 +0100 | [diff] [blame] | 103 | while (sta) { |
Johannes Berg | abe6063 | 2009-11-25 17:46:18 +0100 | [diff] [blame] | 104 | if (sta->sdata == sdata && |
| 105 | memcmp(sta->sta.addr, addr, ETH_ALEN) == 0) |
Johannes Berg | 43ba7e9 | 2008-02-21 14:09:30 +0100 | [diff] [blame] | 106 | break; |
Johannes Berg | 0379185 | 2010-04-06 11:18:42 +0200 | [diff] [blame] | 107 | 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 Berg | 43ba7e9 | 2008-02-21 14:09:30 +0100 | [diff] [blame] | 111 | } |
| 112 | return sta; |
| 113 | } |
| 114 | |
Felix Fietkau | 0e5ded5 | 2010-01-08 18:10:58 +0100 | [diff] [blame] | 115 | /* |
| 116 | * Get sta info either from the specified interface |
| 117 | * or from one of its vlans |
| 118 | */ |
| 119 | struct 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 Berg | 0379185 | 2010-04-06 11:18:42 +0200 | [diff] [blame] | 125 | 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 Fietkau | 0e5ded5 | 2010-01-08 18:10:58 +0100 | [diff] [blame] | 129 | while (sta) { |
| 130 | if ((sta->sdata == sdata || |
Johannes Berg | a2c1e3d | 2010-09-14 21:34:14 +0200 | [diff] [blame] | 131 | (sta->sdata->bss && sta->sdata->bss == sdata->bss)) && |
Felix Fietkau | 0e5ded5 | 2010-01-08 18:10:58 +0100 | [diff] [blame] | 132 | memcmp(sta->sta.addr, addr, ETH_ALEN) == 0) |
| 133 | break; |
Johannes Berg | 0379185 | 2010-04-06 11:18:42 +0200 | [diff] [blame] | 134 | 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 Fietkau | 0e5ded5 | 2010-01-08 18:10:58 +0100 | [diff] [blame] | 138 | } |
| 139 | return sta; |
| 140 | } |
| 141 | |
Johannes Berg | 3b53fde8 | 2009-11-16 12:00:37 +0100 | [diff] [blame] | 142 | struct sta_info *sta_info_get_by_idx(struct ieee80211_sub_if_data *sdata, |
| 143 | int idx) |
Luis Carlos Cobo | ee38585 | 2008-02-23 15:17:11 +0100 | [diff] [blame] | 144 | { |
Johannes Berg | 3b53fde8 | 2009-11-16 12:00:37 +0100 | [diff] [blame] | 145 | struct ieee80211_local *local = sdata->local; |
Luis Carlos Cobo | ee38585 | 2008-02-23 15:17:11 +0100 | [diff] [blame] | 146 | struct sta_info *sta; |
| 147 | int i = 0; |
| 148 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 149 | list_for_each_entry_rcu(sta, &local->sta_list, list) { |
Johannes Berg | 3b53fde8 | 2009-11-16 12:00:37 +0100 | [diff] [blame] | 150 | if (sdata != sta->sdata) |
Luis Carlos Cobo | 2a8ca29 | 2008-02-29 17:51:25 -0800 | [diff] [blame] | 151 | continue; |
Luis Carlos Cobo | ee38585 | 2008-02-23 15:17:11 +0100 | [diff] [blame] | 152 | if (i < idx) { |
| 153 | ++i; |
| 154 | continue; |
Luis Carlos Cobo | ee38585 | 2008-02-23 15:17:11 +0100 | [diff] [blame] | 155 | } |
Luis Carlos Cobo | 2a8ca29 | 2008-02-29 17:51:25 -0800 | [diff] [blame] | 156 | return sta; |
Luis Carlos Cobo | ee38585 | 2008-02-23 15:17:11 +0100 | [diff] [blame] | 157 | } |
Luis Carlos Cobo | ee38585 | 2008-02-23 15:17:11 +0100 | [diff] [blame] | 158 | |
| 159 | return NULL; |
| 160 | } |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 161 | |
Johannes Berg | 93e5deb | 2008-04-01 15:21:00 +0200 | [diff] [blame] | 162 | /** |
| 163 | * __sta_info_free - internal STA free helper |
| 164 | * |
Randy Dunlap | 6ef307b | 2008-07-03 13:52:18 -0700 | [diff] [blame] | 165 | * @local: pointer to the global information |
Johannes Berg | 93e5deb | 2008-04-01 15:21:00 +0200 | [diff] [blame] | 166 | * @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 | */ |
| 171 | static void __sta_info_free(struct ieee80211_local *local, |
| 172 | struct sta_info *sta) |
| 173 | { |
Johannes Berg | af65cd9 | 2009-11-17 18:18:36 +0100 | [diff] [blame] | 174 | if (sta->rate_ctrl) { |
| 175 | rate_control_free_sta(sta); |
| 176 | rate_control_put(sta->rate_ctrl); |
| 177 | } |
Johannes Berg | 93e5deb | 2008-04-01 15:21:00 +0200 | [diff] [blame] | 178 | |
| 179 | #ifdef CONFIG_MAC80211_VERBOSE_DEBUG |
Joe Perches | 0fb9a9e | 2010-08-20 16:25:38 -0700 | [diff] [blame] | 180 | wiphy_debug(local->hw.wiphy, "Destroyed STA %pM\n", sta->sta.addr); |
Johannes Berg | 93e5deb | 2008-04-01 15:21:00 +0200 | [diff] [blame] | 181 | #endif /* CONFIG_MAC80211_VERBOSE_DEBUG */ |
| 182 | |
| 183 | kfree(sta); |
| 184 | } |
| 185 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 186 | /* Caller must hold local->sta_lock */ |
| 187 | static void sta_info_hash_add(struct ieee80211_local *local, |
| 188 | struct sta_info *sta) |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 189 | { |
Johannes Berg | 17741cd | 2008-09-11 00:02:02 +0200 | [diff] [blame] | 190 | sta->hnext = local->sta_hash[STA_HASH(sta->sta.addr)]; |
| 191 | rcu_assign_pointer(local->sta_hash[STA_HASH(sta->sta.addr)], sta); |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 192 | } |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 193 | |
Johannes Berg | af81858 | 2009-11-06 11:35:50 +0100 | [diff] [blame] | 194 | static 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 Berg | 50a9432 | 2010-11-16 11:50:28 -0800 | [diff] [blame] | 205 | else if (test_and_clear_sta_flags(sta, WLAN_STA_PSPOLL)) { |
| 206 | clear_sta_flags(sta, WLAN_STA_PS_DRIVER); |
Johannes Berg | af81858 | 2009-11-06 11:35:50 +0100 | [diff] [blame] | 207 | ieee80211_sta_ps_deliver_poll_response(sta); |
Johannes Berg | 50a9432 | 2010-11-16 11:50:28 -0800 | [diff] [blame] | 208 | } else |
| 209 | clear_sta_flags(sta, WLAN_STA_PS_DRIVER); |
Johannes Berg | af81858 | 2009-11-06 11:35:50 +0100 | [diff] [blame] | 210 | } |
| 211 | |
Johannes Berg | af65cd9 | 2009-11-17 18:18:36 +0100 | [diff] [blame] | 212 | static 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 Berg | 73651ee | 2008-02-25 16:27:47 +0100 | [diff] [blame] | 229 | struct sta_info *sta_info_alloc(struct ieee80211_sub_if_data *sdata, |
| 230 | u8 *addr, gfp_t gfp) |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 231 | { |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 232 | struct ieee80211_local *local = sdata->local; |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 233 | struct sta_info *sta; |
Mohammed Shafi Shajakhan | ebe27c9 | 2011-04-08 21:24:24 +0530 | [diff] [blame] | 234 | struct timespec uptime; |
Ron Rindjunsky | 16c5f15 | 2007-12-25 17:00:34 +0200 | [diff] [blame] | 235 | int i; |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 236 | |
Johannes Berg | 17741cd | 2008-09-11 00:02:02 +0200 | [diff] [blame] | 237 | sta = kzalloc(sizeof(*sta) + local->hw.sta_data_size, gfp); |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 238 | if (!sta) |
Johannes Berg | 73651ee | 2008-02-25 16:27:47 +0100 | [diff] [blame] | 239 | return NULL; |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 240 | |
Johannes Berg | 07346f81 | 2008-05-03 01:02:02 +0200 | [diff] [blame] | 241 | spin_lock_init(&sta->lock); |
Johannes Berg | 5a9f7b0 | 2008-06-18 14:58:09 +0200 | [diff] [blame] | 242 | spin_lock_init(&sta->flaglock); |
Johannes Berg | af81858 | 2009-11-06 11:35:50 +0100 | [diff] [blame] | 243 | INIT_WORK(&sta->drv_unblock_wk, sta_unblock); |
Johannes Berg | 67c282c | 2010-06-10 10:21:43 +0200 | [diff] [blame] | 244 | INIT_WORK(&sta->ampdu_mlme.work, ieee80211_ba_session_work); |
Johannes Berg | a93e364 | 2010-06-10 10:21:46 +0200 | [diff] [blame] | 245 | mutex_init(&sta->ampdu_mlme.mtx); |
Johannes Berg | 07346f81 | 2008-05-03 01:02:02 +0200 | [diff] [blame] | 246 | |
Johannes Berg | 17741cd | 2008-09-11 00:02:02 +0200 | [diff] [blame] | 247 | memcpy(sta->sta.addr, addr, ETH_ALEN); |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 248 | sta->local = local; |
| 249 | sta->sdata = sdata; |
Felix Fietkau | 8bc8aec | 2011-03-21 20:01:00 +0100 | [diff] [blame] | 250 | sta->last_rx = jiffies; |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 251 | |
Mohammed Shafi Shajakhan | ebe27c9 | 2011-04-08 21:24:24 +0530 | [diff] [blame] | 252 | do_posix_clock_monotonic_gettime(&uptime); |
| 253 | sta->last_connected = uptime.tv_sec; |
Bruno Randolf | 541a45a | 2010-12-02 19:12:43 +0900 | [diff] [blame] | 254 | ewma_init(&sta->avg_signal, 1024, 8); |
| 255 | |
Johannes Berg | af65cd9 | 2009-11-17 18:18:36 +0100 | [diff] [blame] | 256 | if (sta_prepare_rate_control(local, sta, gfp)) { |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 257 | kfree(sta); |
Johannes Berg | 73651ee | 2008-02-25 16:27:47 +0100 | [diff] [blame] | 258 | return NULL; |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 259 | } |
| 260 | |
Ron Rindjunsky | 16c5f15 | 2007-12-25 17:00:34 +0200 | [diff] [blame] | 261 | for (i = 0; i < STA_TID_NUM; i++) { |
Johannes Berg | a622ab7 | 2010-06-10 10:21:39 +0200 | [diff] [blame] | 262 | /* |
| 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 Rindjunsky | 16c5f15 | 2007-12-25 17:00:34 +0200 | [diff] [blame] | 267 | sta->timer_to_tid[i] = i; |
Ron Rindjunsky | 16c5f15 | 2007-12-25 17:00:34 +0200 | [diff] [blame] | 268 | } |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 269 | skb_queue_head_init(&sta->ps_tx_buf); |
| 270 | skb_queue_head_init(&sta->tx_filtered); |
Johannes Berg | 73651ee | 2008-02-25 16:27:47 +0100 | [diff] [blame] | 271 | |
Senthil Balasubramanian | cccaec9 | 2009-05-14 18:42:08 +0530 | [diff] [blame] | 272 | for (i = 0; i < NUM_RX_DATA_QUEUES; i++) |
Alexey Dobriyan | 4be929b | 2010-05-24 14:33:03 -0700 | [diff] [blame] | 273 | sta->last_seq_ctrl[i] = cpu_to_le16(USHRT_MAX); |
Senthil Balasubramanian | cccaec9 | 2009-05-14 18:42:08 +0530 | [diff] [blame] | 274 | |
Johannes Berg | 73651ee | 2008-02-25 16:27:47 +0100 | [diff] [blame] | 275 | #ifdef CONFIG_MAC80211_VERBOSE_DEBUG |
Joe Perches | 0fb9a9e | 2010-08-20 16:25:38 -0700 | [diff] [blame] | 276 | wiphy_debug(local->hw.wiphy, "Allocated STA %pM\n", sta->sta.addr); |
Johannes Berg | 73651ee | 2008-02-25 16:27:47 +0100 | [diff] [blame] | 277 | #endif /* CONFIG_MAC80211_VERBOSE_DEBUG */ |
| 278 | |
Johannes Berg | 03e4497 | 2008-02-27 09:56:40 +0100 | [diff] [blame] | 279 | #ifdef CONFIG_MAC80211_MESH |
Javier Cardona | 57cf804 | 2011-05-13 10:45:43 -0700 | [diff] [blame] | 280 | sta->plink_state = NL80211_PLINK_LISTEN; |
Johannes Berg | 03e4497 | 2008-02-27 09:56:40 +0100 | [diff] [blame] | 281 | init_timer(&sta->plink_timer); |
| 282 | #endif |
| 283 | |
Johannes Berg | 73651ee | 2008-02-25 16:27:47 +0100 | [diff] [blame] | 284 | return sta; |
| 285 | } |
| 286 | |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 287 | static int sta_info_finish_insert(struct sta_info *sta, bool async) |
Johannes Berg | 73651ee | 2008-02-25 16:27:47 +0100 | [diff] [blame] | 288 | { |
| 289 | struct ieee80211_local *local = sta->local; |
| 290 | struct ieee80211_sub_if_data *sdata = sta->sdata; |
Johannes Berg | 98b6218 | 2009-12-23 13:15:44 +0100 | [diff] [blame] | 291 | struct station_info sinfo; |
Johannes Berg | 73651ee | 2008-02-25 16:27:47 +0100 | [diff] [blame] | 292 | unsigned long flags; |
Johannes Berg | 93e5deb | 2008-04-01 15:21:00 +0200 | [diff] [blame] | 293 | int err = 0; |
Johannes Berg | 73651ee | 2008-02-25 16:27:47 +0100 | [diff] [blame] | 294 | |
Johannes Berg | 46a5eba | 2010-09-15 13:28:15 +0200 | [diff] [blame] | 295 | lockdep_assert_held(&local->sta_mtx); |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 296 | |
| 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 Perches | 0fb9a9e | 2010-08-20 16:25:38 -0700 | [diff] [blame] | 313 | wiphy_debug(local->hw.wiphy, |
| 314 | "Finished adding IBSS STA %pM\n", |
| 315 | sta->sta.addr); |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 316 | #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 | |
Deepthi Gowri | 7ad229d | 2011-12-06 11:20:48 +0530 | [diff] [blame] | 337 | memset(&sinfo, 0, sizeof(sinfo)); |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 338 | sinfo.filled = 0; |
| 339 | sinfo.generation = local->sta_generation; |
| 340 | cfg80211_new_sta(sdata->dev, sta->sta.addr, &sinfo, GFP_KERNEL); |
| 341 | |
| 342 | |
| 343 | return 0; |
| 344 | } |
| 345 | |
| 346 | static void sta_info_finish_pending(struct ieee80211_local *local) |
| 347 | { |
| 348 | struct sta_info *sta; |
| 349 | unsigned long flags; |
| 350 | |
| 351 | spin_lock_irqsave(&local->sta_lock, flags); |
| 352 | while (!list_empty(&local->sta_pending_list)) { |
| 353 | sta = list_first_entry(&local->sta_pending_list, |
| 354 | struct sta_info, list); |
| 355 | list_del(&sta->list); |
| 356 | spin_unlock_irqrestore(&local->sta_lock, flags); |
| 357 | |
| 358 | sta_info_finish_insert(sta, true); |
| 359 | |
| 360 | spin_lock_irqsave(&local->sta_lock, flags); |
| 361 | } |
| 362 | spin_unlock_irqrestore(&local->sta_lock, flags); |
| 363 | } |
| 364 | |
| 365 | static void sta_info_finish_work(struct work_struct *work) |
| 366 | { |
| 367 | struct ieee80211_local *local = |
| 368 | container_of(work, struct ieee80211_local, sta_finish_work); |
| 369 | |
| 370 | mutex_lock(&local->sta_mtx); |
| 371 | sta_info_finish_pending(local); |
| 372 | mutex_unlock(&local->sta_mtx); |
| 373 | } |
| 374 | |
| 375 | int sta_info_insert_rcu(struct sta_info *sta) __acquires(RCU) |
| 376 | { |
| 377 | struct ieee80211_local *local = sta->local; |
| 378 | struct ieee80211_sub_if_data *sdata = sta->sdata; |
| 379 | unsigned long flags; |
| 380 | int err = 0; |
| 381 | |
Johannes Berg | 03e4497 | 2008-02-27 09:56:40 +0100 | [diff] [blame] | 382 | /* |
| 383 | * Can't be a WARN_ON because it can be triggered through a race: |
| 384 | * something inserts a STA (on one CPU) without holding the RTNL |
| 385 | * and another CPU turns off the net device. |
| 386 | */ |
Johannes Berg | 9607e6b | 2009-12-23 13:15:31 +0100 | [diff] [blame] | 387 | if (unlikely(!ieee80211_sdata_running(sdata))) { |
Johannes Berg | 93e5deb | 2008-04-01 15:21:00 +0200 | [diff] [blame] | 388 | err = -ENETDOWN; |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 389 | rcu_read_lock(); |
Johannes Berg | 93e5deb | 2008-04-01 15:21:00 +0200 | [diff] [blame] | 390 | goto out_free; |
| 391 | } |
Johannes Berg | 03e4497 | 2008-02-27 09:56:40 +0100 | [diff] [blame] | 392 | |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 393 | if (WARN_ON(compare_ether_addr(sta->sta.addr, sdata->vif.addr) == 0 || |
Johannes Berg | c6a1fa1 | 2008-10-07 12:04:32 +0200 | [diff] [blame] | 394 | is_multicast_ether_addr(sta->sta.addr))) { |
Johannes Berg | 93e5deb | 2008-04-01 15:21:00 +0200 | [diff] [blame] | 395 | err = -EINVAL; |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 396 | rcu_read_lock(); |
Johannes Berg | 93e5deb | 2008-04-01 15:21:00 +0200 | [diff] [blame] | 397 | goto out_free; |
| 398 | } |
Johannes Berg | 44213b5 | 2008-02-25 16:27:49 +0100 | [diff] [blame] | 399 | |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 400 | /* |
| 401 | * In ad-hoc mode, we sometimes need to insert stations |
| 402 | * from tasklet context from the RX path. To avoid races, |
| 403 | * always do so in that case -- see the comment below. |
| 404 | */ |
| 405 | if (sdata->vif.type == NL80211_IFTYPE_ADHOC) { |
| 406 | spin_lock_irqsave(&local->sta_lock, flags); |
| 407 | /* check if STA exists already */ |
| 408 | if (sta_info_get_bss(sdata, sta->sta.addr)) { |
| 409 | spin_unlock_irqrestore(&local->sta_lock, flags); |
| 410 | rcu_read_lock(); |
| 411 | err = -EEXIST; |
| 412 | goto out_free; |
| 413 | } |
| 414 | |
| 415 | local->num_sta++; |
| 416 | local->sta_generation++; |
| 417 | smp_mb(); |
| 418 | sta_info_hash_add(local, sta); |
| 419 | |
| 420 | list_add_tail(&sta->list, &local->sta_pending_list); |
| 421 | |
| 422 | rcu_read_lock(); |
| 423 | spin_unlock_irqrestore(&local->sta_lock, flags); |
| 424 | |
| 425 | #ifdef CONFIG_MAC80211_VERBOSE_DEBUG |
Joe Perches | 0fb9a9e | 2010-08-20 16:25:38 -0700 | [diff] [blame] | 426 | wiphy_debug(local->hw.wiphy, "Added IBSS STA %pM\n", |
| 427 | sta->sta.addr); |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 428 | #endif /* CONFIG_MAC80211_VERBOSE_DEBUG */ |
| 429 | |
| 430 | ieee80211_queue_work(&local->hw, &local->sta_finish_work); |
| 431 | |
| 432 | return 0; |
| 433 | } |
| 434 | |
| 435 | /* |
| 436 | * On first glance, this will look racy, because the code |
| 437 | * below this point, which inserts a station with sleeping, |
| 438 | * unlocks the sta_lock between checking existence in the |
| 439 | * hash table and inserting into it. |
| 440 | * |
| 441 | * However, it is not racy against itself because it keeps |
| 442 | * the mutex locked. It still seems to race against the |
| 443 | * above code that atomically inserts the station... That, |
| 444 | * however, is not true because the above code can only |
| 445 | * be invoked for IBSS interfaces, and the below code will |
| 446 | * not be -- and the two do not race against each other as |
| 447 | * the hash table also keys off the interface. |
| 448 | */ |
| 449 | |
| 450 | might_sleep(); |
| 451 | |
| 452 | mutex_lock(&local->sta_mtx); |
| 453 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 454 | spin_lock_irqsave(&local->sta_lock, flags); |
Johannes Berg | 43ba7e9 | 2008-02-21 14:09:30 +0100 | [diff] [blame] | 455 | /* check if STA exists already */ |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 456 | if (sta_info_get_bss(sdata, sta->sta.addr)) { |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 457 | spin_unlock_irqrestore(&local->sta_lock, flags); |
Jouni Malinen | 38a679a | 2010-03-06 18:35:08 +0200 | [diff] [blame] | 458 | mutex_unlock(&local->sta_mtx); |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 459 | rcu_read_lock(); |
Johannes Berg | 93e5deb | 2008-04-01 15:21:00 +0200 | [diff] [blame] | 460 | err = -EEXIST; |
| 461 | goto out_free; |
Johannes Berg | 43ba7e9 | 2008-02-21 14:09:30 +0100 | [diff] [blame] | 462 | } |
Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 463 | |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 464 | spin_unlock_irqrestore(&local->sta_lock, flags); |
Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 465 | |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 466 | err = sta_info_finish_insert(sta, false); |
| 467 | if (err) { |
| 468 | mutex_unlock(&local->sta_mtx); |
| 469 | rcu_read_lock(); |
| 470 | goto out_free; |
Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 471 | } |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 472 | |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 473 | #ifdef CONFIG_MAC80211_VERBOSE_DEBUG |
Joe Perches | 0fb9a9e | 2010-08-20 16:25:38 -0700 | [diff] [blame] | 474 | wiphy_debug(local->hw.wiphy, "Inserted STA %pM\n", sta->sta.addr); |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 475 | #endif /* CONFIG_MAC80211_VERBOSE_DEBUG */ |
| 476 | |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 477 | /* move reference to rcu-protected */ |
| 478 | rcu_read_lock(); |
| 479 | mutex_unlock(&local->sta_mtx); |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 480 | |
Johannes Berg | 73651ee | 2008-02-25 16:27:47 +0100 | [diff] [blame] | 481 | if (ieee80211_vif_is_mesh(&sdata->vif)) |
| 482 | mesh_accept_plinks_update(sdata); |
| 483 | |
| 484 | return 0; |
Johannes Berg | 93e5deb | 2008-04-01 15:21:00 +0200 | [diff] [blame] | 485 | out_free: |
| 486 | BUG_ON(!err); |
| 487 | __sta_info_free(local, sta); |
| 488 | return err; |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 489 | } |
| 490 | |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 491 | int sta_info_insert(struct sta_info *sta) |
| 492 | { |
| 493 | int err = sta_info_insert_rcu(sta); |
| 494 | |
| 495 | rcu_read_unlock(); |
| 496 | |
| 497 | return err; |
| 498 | } |
| 499 | |
Johannes Berg | 004c872 | 2008-02-20 11:21:35 +0100 | [diff] [blame] | 500 | static inline void __bss_tim_set(struct ieee80211_if_ap *bss, u16 aid) |
| 501 | { |
| 502 | /* |
| 503 | * This format has been mandated by the IEEE specifications, |
| 504 | * so this line may not be changed to use the __set_bit() format. |
| 505 | */ |
| 506 | bss->tim[aid / 8] |= (1 << (aid % 8)); |
| 507 | } |
| 508 | |
| 509 | static inline void __bss_tim_clear(struct ieee80211_if_ap *bss, u16 aid) |
| 510 | { |
| 511 | /* |
| 512 | * This format has been mandated by the IEEE specifications, |
| 513 | * so this line may not be changed to use the __clear_bit() format. |
| 514 | */ |
| 515 | bss->tim[aid / 8] &= ~(1 << (aid % 8)); |
| 516 | } |
| 517 | |
| 518 | static void __sta_info_set_tim_bit(struct ieee80211_if_ap *bss, |
| 519 | struct sta_info *sta) |
| 520 | { |
Johannes Berg | 3e122be | 2008-07-09 14:40:34 +0200 | [diff] [blame] | 521 | BUG_ON(!bss); |
| 522 | |
Johannes Berg | 17741cd | 2008-09-11 00:02:02 +0200 | [diff] [blame] | 523 | __bss_tim_set(bss, sta->sta.aid); |
Johannes Berg | 3e122be | 2008-07-09 14:40:34 +0200 | [diff] [blame] | 524 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 525 | if (sta->local->ops->set_tim) { |
| 526 | sta->local->tim_in_locked_section = true; |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 527 | drv_set_tim(sta->local, &sta->sta, true); |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 528 | sta->local->tim_in_locked_section = false; |
| 529 | } |
Johannes Berg | 004c872 | 2008-02-20 11:21:35 +0100 | [diff] [blame] | 530 | } |
| 531 | |
| 532 | void sta_info_set_tim_bit(struct sta_info *sta) |
| 533 | { |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 534 | unsigned long flags; |
Johannes Berg | 004c872 | 2008-02-20 11:21:35 +0100 | [diff] [blame] | 535 | |
Johannes Berg | 3e122be | 2008-07-09 14:40:34 +0200 | [diff] [blame] | 536 | BUG_ON(!sta->sdata->bss); |
| 537 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 538 | spin_lock_irqsave(&sta->local->sta_lock, flags); |
| 539 | __sta_info_set_tim_bit(sta->sdata->bss, sta); |
| 540 | spin_unlock_irqrestore(&sta->local->sta_lock, flags); |
Johannes Berg | 004c872 | 2008-02-20 11:21:35 +0100 | [diff] [blame] | 541 | } |
| 542 | |
| 543 | static void __sta_info_clear_tim_bit(struct ieee80211_if_ap *bss, |
| 544 | struct sta_info *sta) |
| 545 | { |
Johannes Berg | 3e122be | 2008-07-09 14:40:34 +0200 | [diff] [blame] | 546 | BUG_ON(!bss); |
| 547 | |
Johannes Berg | 17741cd | 2008-09-11 00:02:02 +0200 | [diff] [blame] | 548 | __bss_tim_clear(bss, sta->sta.aid); |
Johannes Berg | 3e122be | 2008-07-09 14:40:34 +0200 | [diff] [blame] | 549 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 550 | if (sta->local->ops->set_tim) { |
| 551 | sta->local->tim_in_locked_section = true; |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 552 | drv_set_tim(sta->local, &sta->sta, false); |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 553 | sta->local->tim_in_locked_section = false; |
| 554 | } |
Johannes Berg | 004c872 | 2008-02-20 11:21:35 +0100 | [diff] [blame] | 555 | } |
| 556 | |
| 557 | void sta_info_clear_tim_bit(struct sta_info *sta) |
| 558 | { |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 559 | unsigned long flags; |
Johannes Berg | 004c872 | 2008-02-20 11:21:35 +0100 | [diff] [blame] | 560 | |
Johannes Berg | 3e122be | 2008-07-09 14:40:34 +0200 | [diff] [blame] | 561 | BUG_ON(!sta->sdata->bss); |
| 562 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 563 | spin_lock_irqsave(&sta->local->sta_lock, flags); |
| 564 | __sta_info_clear_tim_bit(sta->sdata->bss, sta); |
| 565 | spin_unlock_irqrestore(&sta->local->sta_lock, flags); |
Johannes Berg | 004c872 | 2008-02-20 11:21:35 +0100 | [diff] [blame] | 566 | } |
| 567 | |
Johannes Berg | 57c4d7b | 2009-04-23 16:10:04 +0200 | [diff] [blame] | 568 | static int sta_info_buffer_expired(struct sta_info *sta, |
| 569 | struct sk_buff *skb) |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 570 | { |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 571 | struct ieee80211_tx_info *info; |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 572 | int timeout; |
| 573 | |
| 574 | if (!skb) |
| 575 | return 0; |
| 576 | |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 577 | info = IEEE80211_SKB_CB(skb); |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 578 | |
| 579 | /* Timeout: (2 * listen_interval * beacon_int * 1024 / 1000000) sec */ |
Johannes Berg | 57c4d7b | 2009-04-23 16:10:04 +0200 | [diff] [blame] | 580 | timeout = (sta->listen_interval * |
| 581 | sta->sdata->vif.bss_conf.beacon_int * |
| 582 | 32 / 15625) * HZ; |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 583 | if (timeout < STA_TX_BUFFER_EXPIRE) |
| 584 | timeout = STA_TX_BUFFER_EXPIRE; |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 585 | return time_after(jiffies, info->control.jiffies + timeout); |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 586 | } |
| 587 | |
| 588 | |
Juuso Oikarinen | 3393a60 | 2010-04-19 10:12:52 +0300 | [diff] [blame] | 589 | static bool sta_info_cleanup_expire_buffered(struct ieee80211_local *local, |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 590 | struct sta_info *sta) |
| 591 | { |
| 592 | unsigned long flags; |
| 593 | struct sk_buff *skb; |
| 594 | |
| 595 | if (skb_queue_empty(&sta->ps_tx_buf)) |
Juuso Oikarinen | 3393a60 | 2010-04-19 10:12:52 +0300 | [diff] [blame] | 596 | return false; |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 597 | |
| 598 | for (;;) { |
| 599 | spin_lock_irqsave(&sta->ps_tx_buf.lock, flags); |
| 600 | skb = skb_peek(&sta->ps_tx_buf); |
Johannes Berg | 57c4d7b | 2009-04-23 16:10:04 +0200 | [diff] [blame] | 601 | if (sta_info_buffer_expired(sta, skb)) |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 602 | skb = __skb_dequeue(&sta->ps_tx_buf); |
Johannes Berg | 836341a | 2008-02-20 02:07:21 +0100 | [diff] [blame] | 603 | else |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 604 | skb = NULL; |
| 605 | spin_unlock_irqrestore(&sta->ps_tx_buf.lock, flags); |
| 606 | |
Johannes Berg | 836341a | 2008-02-20 02:07:21 +0100 | [diff] [blame] | 607 | if (!skb) |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 608 | break; |
Johannes Berg | 836341a | 2008-02-20 02:07:21 +0100 | [diff] [blame] | 609 | |
Johannes Berg | 836341a | 2008-02-20 02:07:21 +0100 | [diff] [blame] | 610 | local->total_ps_buffered--; |
Johannes Berg | f4ea83d | 2008-06-30 15:10:46 +0200 | [diff] [blame] | 611 | #ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG |
Johannes Berg | 0c68ae26 | 2008-10-27 15:56:10 -0700 | [diff] [blame] | 612 | printk(KERN_DEBUG "Buffered frame expired (STA %pM)\n", |
| 613 | sta->sta.addr); |
Johannes Berg | f4ea83d | 2008-06-30 15:10:46 +0200 | [diff] [blame] | 614 | #endif |
Johannes Berg | 836341a | 2008-02-20 02:07:21 +0100 | [diff] [blame] | 615 | dev_kfree_skb(skb); |
| 616 | |
Felix Fietkau | dcf55fb | 2011-04-17 17:45:00 +0200 | [diff] [blame] | 617 | if (skb_queue_empty(&sta->ps_tx_buf) && |
| 618 | !test_sta_flags(sta, WLAN_STA_PS_DRIVER_BUF)) |
Johannes Berg | 004c872 | 2008-02-20 11:21:35 +0100 | [diff] [blame] | 619 | sta_info_clear_tim_bit(sta); |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 620 | } |
Juuso Oikarinen | 3393a60 | 2010-04-19 10:12:52 +0300 | [diff] [blame] | 621 | |
| 622 | return true; |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 623 | } |
| 624 | |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 625 | static int __must_check __sta_info_destroy(struct sta_info *sta) |
| 626 | { |
| 627 | struct ieee80211_local *local; |
| 628 | struct ieee80211_sub_if_data *sdata; |
| 629 | struct sk_buff *skb; |
| 630 | unsigned long flags; |
Johannes Berg | e31b821 | 2010-10-05 19:39:30 +0200 | [diff] [blame] | 631 | int ret, i; |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 632 | |
| 633 | might_sleep(); |
| 634 | |
| 635 | if (!sta) |
| 636 | return -ENOENT; |
| 637 | |
| 638 | local = sta->local; |
| 639 | sdata = sta->sdata; |
| 640 | |
Johannes Berg | 098a607 | 2010-04-06 11:18:47 +0200 | [diff] [blame] | 641 | /* |
| 642 | * Before removing the station from the driver and |
| 643 | * rate control, it might still start new aggregation |
| 644 | * sessions -- block that to make sure the tear-down |
| 645 | * will be sufficient. |
| 646 | */ |
| 647 | set_sta_flags(sta, WLAN_STA_BLOCK_BA); |
Johannes Berg | 53f73c0 | 2010-10-05 19:37:40 +0200 | [diff] [blame] | 648 | ieee80211_sta_tear_down_BA_sessions(sta, true); |
Johannes Berg | 098a607 | 2010-04-06 11:18:47 +0200 | [diff] [blame] | 649 | |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 650 | spin_lock_irqsave(&local->sta_lock, flags); |
| 651 | ret = sta_info_hash_del(local, sta); |
| 652 | /* this might still be the pending list ... which is fine */ |
| 653 | if (!ret) |
| 654 | list_del(&sta->list); |
| 655 | spin_unlock_irqrestore(&local->sta_lock, flags); |
| 656 | if (ret) |
| 657 | return ret; |
| 658 | |
Johannes Berg | 8cb2315 | 2011-05-12 15:07:15 +0200 | [diff] [blame] | 659 | mutex_lock(&local->key_mtx); |
Johannes Berg | e31b821 | 2010-10-05 19:39:30 +0200 | [diff] [blame] | 660 | for (i = 0; i < NUM_DEFAULT_KEYS; i++) |
Johannes Berg | 40b275b | 2011-05-13 14:15:49 +0200 | [diff] [blame] | 661 | __ieee80211_key_free(key_mtx_dereference(local, sta->gtk[i])); |
Johannes Berg | e31b821 | 2010-10-05 19:39:30 +0200 | [diff] [blame] | 662 | if (sta->ptk) |
Johannes Berg | 40b275b | 2011-05-13 14:15:49 +0200 | [diff] [blame] | 663 | __ieee80211_key_free(key_mtx_dereference(local, sta->ptk)); |
Johannes Berg | 8cb2315 | 2011-05-12 15:07:15 +0200 | [diff] [blame] | 664 | mutex_unlock(&local->key_mtx); |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 665 | |
| 666 | sta->dead = true; |
| 667 | |
| 668 | if (test_and_clear_sta_flags(sta, |
| 669 | WLAN_STA_PS_STA | WLAN_STA_PS_DRIVER)) { |
| 670 | BUG_ON(!sdata->bss); |
| 671 | |
| 672 | atomic_dec(&sdata->bss->num_sta_ps); |
Johannes Berg | e74aa35 | 2011-09-06 12:47:39 +0200 | [diff] [blame] | 673 | sta_info_clear_tim_bit(sta); |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 674 | } |
| 675 | |
| 676 | local->num_sta--; |
| 677 | local->sta_generation++; |
| 678 | |
| 679 | if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN) |
| 680 | rcu_assign_pointer(sdata->u.vlan.sta, NULL); |
| 681 | |
| 682 | if (sta->uploaded) { |
| 683 | if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN) |
| 684 | sdata = container_of(sdata->bss, |
| 685 | struct ieee80211_sub_if_data, |
| 686 | u.ap); |
| 687 | drv_sta_remove(local, sdata, &sta->sta); |
| 688 | sdata = sta->sdata; |
| 689 | } |
| 690 | |
Johannes Berg | e64b379 | 2010-04-06 11:18:43 +0200 | [diff] [blame] | 691 | /* |
| 692 | * At this point, after we wait for an RCU grace period, |
| 693 | * neither mac80211 nor the driver can reference this |
| 694 | * sta struct any more except by still existing timers |
| 695 | * associated with this station that we clean up below. |
| 696 | */ |
| 697 | synchronize_rcu(); |
| 698 | |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 699 | #ifdef CONFIG_MAC80211_MESH |
Johannes Berg | e64b379 | 2010-04-06 11:18:43 +0200 | [diff] [blame] | 700 | if (ieee80211_vif_is_mesh(&sdata->vif)) |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 701 | mesh_accept_plinks_update(sdata); |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 702 | #endif |
| 703 | |
| 704 | #ifdef CONFIG_MAC80211_VERBOSE_DEBUG |
Joe Perches | 0fb9a9e | 2010-08-20 16:25:38 -0700 | [diff] [blame] | 705 | wiphy_debug(local->hw.wiphy, "Removed STA %pM\n", sta->sta.addr); |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 706 | #endif /* CONFIG_MAC80211_VERBOSE_DEBUG */ |
| 707 | cancel_work_sync(&sta->drv_unblock_wk); |
| 708 | |
Jouni Malinen | ec15e68 | 2011-03-23 15:29:52 +0200 | [diff] [blame] | 709 | cfg80211_del_sta(sdata->dev, sta->sta.addr, GFP_KERNEL); |
| 710 | |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 711 | rate_control_remove_sta_debugfs(sta); |
| 712 | ieee80211_sta_debugfs_remove(sta); |
| 713 | |
| 714 | #ifdef CONFIG_MAC80211_MESH |
| 715 | if (ieee80211_vif_is_mesh(&sta->sdata->vif)) { |
| 716 | mesh_plink_deactivate(sta); |
| 717 | del_timer_sync(&sta->plink_timer); |
| 718 | } |
| 719 | #endif |
| 720 | |
| 721 | while ((skb = skb_dequeue(&sta->ps_tx_buf)) != NULL) { |
| 722 | local->total_ps_buffered--; |
| 723 | dev_kfree_skb_any(skb); |
| 724 | } |
| 725 | |
| 726 | while ((skb = skb_dequeue(&sta->tx_filtered)) != NULL) |
| 727 | dev_kfree_skb_any(skb); |
| 728 | |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 729 | __sta_info_free(local, sta); |
| 730 | |
| 731 | return 0; |
| 732 | } |
| 733 | |
| 734 | int sta_info_destroy_addr(struct ieee80211_sub_if_data *sdata, const u8 *addr) |
| 735 | { |
| 736 | struct sta_info *sta; |
| 737 | int ret; |
| 738 | |
| 739 | mutex_lock(&sdata->local->sta_mtx); |
| 740 | sta = sta_info_get(sdata, addr); |
| 741 | ret = __sta_info_destroy(sta); |
| 742 | mutex_unlock(&sdata->local->sta_mtx); |
| 743 | |
| 744 | return ret; |
| 745 | } |
| 746 | |
| 747 | int sta_info_destroy_addr_bss(struct ieee80211_sub_if_data *sdata, |
| 748 | const u8 *addr) |
| 749 | { |
| 750 | struct sta_info *sta; |
| 751 | int ret; |
| 752 | |
| 753 | mutex_lock(&sdata->local->sta_mtx); |
| 754 | sta = sta_info_get_bss(sdata, addr); |
| 755 | ret = __sta_info_destroy(sta); |
| 756 | mutex_unlock(&sdata->local->sta_mtx); |
| 757 | |
| 758 | return ret; |
| 759 | } |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 760 | |
| 761 | static void sta_info_cleanup(unsigned long data) |
| 762 | { |
| 763 | struct ieee80211_local *local = (struct ieee80211_local *) data; |
| 764 | struct sta_info *sta; |
Juuso Oikarinen | 3393a60 | 2010-04-19 10:12:52 +0300 | [diff] [blame] | 765 | bool timer_needed = false; |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 766 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 767 | rcu_read_lock(); |
| 768 | list_for_each_entry_rcu(sta, &local->sta_list, list) |
Juuso Oikarinen | 3393a60 | 2010-04-19 10:12:52 +0300 | [diff] [blame] | 769 | if (sta_info_cleanup_expire_buffered(local, sta)) |
| 770 | timer_needed = true; |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 771 | rcu_read_unlock(); |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 772 | |
Johannes Berg | 5bb644a | 2009-05-17 11:40:42 +0200 | [diff] [blame] | 773 | if (local->quiescing) |
| 774 | return; |
| 775 | |
Juuso Oikarinen | 3393a60 | 2010-04-19 10:12:52 +0300 | [diff] [blame] | 776 | if (!timer_needed) |
| 777 | return; |
| 778 | |
Johannes Berg | 26d5953 | 2011-04-01 13:52:48 +0200 | [diff] [blame] | 779 | mod_timer(&local->sta_cleanup, |
| 780 | round_jiffies(jiffies + STA_INFO_CLEANUP_INTERVAL)); |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 781 | } |
| 782 | |
| 783 | void sta_info_init(struct ieee80211_local *local) |
| 784 | { |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 785 | spin_lock_init(&local->sta_lock); |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 786 | mutex_init(&local->sta_mtx); |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 787 | INIT_LIST_HEAD(&local->sta_list); |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 788 | INIT_LIST_HEAD(&local->sta_pending_list); |
| 789 | INIT_WORK(&local->sta_finish_work, sta_info_finish_work); |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 790 | |
Pavel Emelyanov | b24b8a2 | 2008-01-23 21:20:07 -0800 | [diff] [blame] | 791 | setup_timer(&local->sta_cleanup, sta_info_cleanup, |
| 792 | (unsigned long)local); |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 793 | } |
| 794 | |
| 795 | void sta_info_stop(struct ieee80211_local *local) |
| 796 | { |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 797 | del_timer(&local->sta_cleanup); |
Michael Wu | be8755e | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 798 | sta_info_flush(local, NULL); |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 799 | } |
| 800 | |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 801 | /** |
| 802 | * sta_info_flush - flush matching STA entries from the STA table |
Johannes Berg | 44213b5 | 2008-02-25 16:27:49 +0100 | [diff] [blame] | 803 | * |
| 804 | * Returns the number of removed STA entries. |
| 805 | * |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 806 | * @local: local interface data |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 807 | * @sdata: matching rule for the net device (sta->dev) or %NULL to match all STAs |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 808 | */ |
Johannes Berg | 44213b5 | 2008-02-25 16:27:49 +0100 | [diff] [blame] | 809 | int sta_info_flush(struct ieee80211_local *local, |
Johannes Berg | af8cdcd | 2009-04-19 21:25:43 +0200 | [diff] [blame] | 810 | struct ieee80211_sub_if_data *sdata) |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 811 | { |
| 812 | struct sta_info *sta, *tmp; |
Johannes Berg | 44213b5 | 2008-02-25 16:27:49 +0100 | [diff] [blame] | 813 | int ret = 0; |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 814 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 815 | might_sleep(); |
| 816 | |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 817 | mutex_lock(&local->sta_mtx); |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 818 | |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 819 | sta_info_finish_pending(local); |
| 820 | |
| 821 | list_for_each_entry_safe(sta, tmp, &local->sta_list, list) { |
| 822 | if (!sdata || sdata == sta->sdata) |
| 823 | WARN_ON(__sta_info_destroy(sta)); |
| 824 | } |
| 825 | mutex_unlock(&local->sta_mtx); |
Johannes Berg | 44213b5 | 2008-02-25 16:27:49 +0100 | [diff] [blame] | 826 | |
| 827 | return ret; |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 828 | } |
Johannes Berg | dc6676b | 2008-03-31 19:23:03 +0200 | [diff] [blame] | 829 | |
Johannes Berg | 24723d1 | 2008-09-11 00:01:46 +0200 | [diff] [blame] | 830 | void ieee80211_sta_expire(struct ieee80211_sub_if_data *sdata, |
| 831 | unsigned long exp_time) |
| 832 | { |
| 833 | struct ieee80211_local *local = sdata->local; |
| 834 | struct sta_info *sta, *tmp; |
Johannes Berg | 24723d1 | 2008-09-11 00:01:46 +0200 | [diff] [blame] | 835 | |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 836 | mutex_lock(&local->sta_mtx); |
Johannes Berg | 24723d1 | 2008-09-11 00:01:46 +0200 | [diff] [blame] | 837 | list_for_each_entry_safe(sta, tmp, &local->sta_list, list) |
| 838 | if (time_after(jiffies, sta->last_rx + exp_time)) { |
| 839 | #ifdef CONFIG_MAC80211_IBSS_DEBUG |
Johannes Berg | 0c68ae26 | 2008-10-27 15:56:10 -0700 | [diff] [blame] | 840 | printk(KERN_DEBUG "%s: expiring inactive STA %pM\n", |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 841 | sdata->name, sta->sta.addr); |
Johannes Berg | 24723d1 | 2008-09-11 00:01:46 +0200 | [diff] [blame] | 842 | #endif |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 843 | WARN_ON(__sta_info_destroy(sta)); |
Johannes Berg | 24723d1 | 2008-09-11 00:01:46 +0200 | [diff] [blame] | 844 | } |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 845 | mutex_unlock(&local->sta_mtx); |
Johannes Berg | 24723d1 | 2008-09-11 00:01:46 +0200 | [diff] [blame] | 846 | } |
Johannes Berg | 17741cd | 2008-09-11 00:02:02 +0200 | [diff] [blame] | 847 | |
Ben Greear | 686b9cb | 2010-09-23 09:44:36 -0700 | [diff] [blame] | 848 | struct ieee80211_sta *ieee80211_find_sta_by_ifaddr(struct ieee80211_hw *hw, |
| 849 | const u8 *addr, |
| 850 | const u8 *localaddr) |
Johannes Berg | 17741cd | 2008-09-11 00:02:02 +0200 | [diff] [blame] | 851 | { |
Johannes Berg | abe6063 | 2009-11-25 17:46:18 +0100 | [diff] [blame] | 852 | struct sta_info *sta, *nxt; |
Johannes Berg | 17741cd | 2008-09-11 00:02:02 +0200 | [diff] [blame] | 853 | |
Ben Greear | 686b9cb | 2010-09-23 09:44:36 -0700 | [diff] [blame] | 854 | /* |
| 855 | * Just return a random station if localaddr is NULL |
| 856 | * ... first in list. |
| 857 | */ |
Johannes Berg | f7c6559 | 2010-04-30 13:48:36 +0200 | [diff] [blame] | 858 | for_each_sta_info(hw_to_local(hw), addr, sta, nxt) { |
Ben Greear | 686b9cb | 2010-09-23 09:44:36 -0700 | [diff] [blame] | 859 | if (localaddr && |
| 860 | compare_ether_addr(sta->sdata->vif.addr, localaddr) != 0) |
| 861 | continue; |
Johannes Berg | f7c6559 | 2010-04-30 13:48:36 +0200 | [diff] [blame] | 862 | if (!sta->uploaded) |
| 863 | return NULL; |
Johannes Berg | abe6063 | 2009-11-25 17:46:18 +0100 | [diff] [blame] | 864 | return &sta->sta; |
Johannes Berg | f7c6559 | 2010-04-30 13:48:36 +0200 | [diff] [blame] | 865 | } |
| 866 | |
Johannes Berg | abe6063 | 2009-11-25 17:46:18 +0100 | [diff] [blame] | 867 | return NULL; |
Johannes Berg | 17741cd | 2008-09-11 00:02:02 +0200 | [diff] [blame] | 868 | } |
Ben Greear | 686b9cb | 2010-09-23 09:44:36 -0700 | [diff] [blame] | 869 | EXPORT_SYMBOL_GPL(ieee80211_find_sta_by_ifaddr); |
Johannes Berg | 5ed176e | 2009-11-04 14:42:28 +0100 | [diff] [blame] | 870 | |
| 871 | struct ieee80211_sta *ieee80211_find_sta(struct ieee80211_vif *vif, |
| 872 | const u8 *addr) |
| 873 | { |
Johannes Berg | f7c6559 | 2010-04-30 13:48:36 +0200 | [diff] [blame] | 874 | struct sta_info *sta; |
Johannes Berg | 5ed176e | 2009-11-04 14:42:28 +0100 | [diff] [blame] | 875 | |
| 876 | if (!vif) |
| 877 | return NULL; |
| 878 | |
Johannes Berg | f7c6559 | 2010-04-30 13:48:36 +0200 | [diff] [blame] | 879 | sta = sta_info_get_bss(vif_to_sdata(vif), addr); |
| 880 | if (!sta) |
| 881 | return NULL; |
Johannes Berg | 5ed176e | 2009-11-04 14:42:28 +0100 | [diff] [blame] | 882 | |
Johannes Berg | f7c6559 | 2010-04-30 13:48:36 +0200 | [diff] [blame] | 883 | if (!sta->uploaded) |
| 884 | return NULL; |
| 885 | |
| 886 | return &sta->sta; |
Johannes Berg | 5ed176e | 2009-11-04 14:42:28 +0100 | [diff] [blame] | 887 | } |
Johannes Berg | 17741cd | 2008-09-11 00:02:02 +0200 | [diff] [blame] | 888 | EXPORT_SYMBOL(ieee80211_find_sta); |
Johannes Berg | af81858 | 2009-11-06 11:35:50 +0100 | [diff] [blame] | 889 | |
Johannes Berg | 50a9432 | 2010-11-16 11:50:28 -0800 | [diff] [blame] | 890 | static void clear_sta_ps_flags(void *_sta) |
| 891 | { |
| 892 | struct sta_info *sta = _sta; |
| 893 | |
| 894 | clear_sta_flags(sta, WLAN_STA_PS_DRIVER | WLAN_STA_PS_STA); |
| 895 | } |
| 896 | |
Johannes Berg | af81858 | 2009-11-06 11:35:50 +0100 | [diff] [blame] | 897 | /* powersave support code */ |
| 898 | void ieee80211_sta_ps_deliver_wakeup(struct sta_info *sta) |
| 899 | { |
| 900 | struct ieee80211_sub_if_data *sdata = sta->sdata; |
| 901 | struct ieee80211_local *local = sdata->local; |
| 902 | int sent, buffered; |
| 903 | |
Felix Fietkau | dcf55fb | 2011-04-17 17:45:00 +0200 | [diff] [blame] | 904 | clear_sta_flags(sta, WLAN_STA_PS_DRIVER_BUF); |
Arik Nemtsov | d057e5a | 2011-01-31 22:29:13 +0200 | [diff] [blame] | 905 | if (!(local->hw.flags & IEEE80211_HW_AP_LINK_PS)) |
| 906 | drv_sta_notify(local, sdata, STA_NOTIFY_AWAKE, &sta->sta); |
Johannes Berg | af81858 | 2009-11-06 11:35:50 +0100 | [diff] [blame] | 907 | |
| 908 | if (!skb_queue_empty(&sta->ps_tx_buf)) |
| 909 | sta_info_clear_tim_bit(sta); |
| 910 | |
| 911 | /* Send all buffered frames to the station */ |
| 912 | sent = ieee80211_add_pending_skbs(local, &sta->tx_filtered); |
Johannes Berg | 50a9432 | 2010-11-16 11:50:28 -0800 | [diff] [blame] | 913 | buffered = ieee80211_add_pending_skbs_fn(local, &sta->ps_tx_buf, |
| 914 | clear_sta_ps_flags, sta); |
Johannes Berg | af81858 | 2009-11-06 11:35:50 +0100 | [diff] [blame] | 915 | sent += buffered; |
| 916 | local->total_ps_buffered -= buffered; |
| 917 | |
| 918 | #ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG |
| 919 | printk(KERN_DEBUG "%s: STA %pM aid %d sending %d filtered/%d PS frames " |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 920 | "since STA not sleeping anymore\n", sdata->name, |
Johannes Berg | af81858 | 2009-11-06 11:35:50 +0100 | [diff] [blame] | 921 | sta->sta.addr, sta->sta.aid, sent - buffered, buffered); |
| 922 | #endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */ |
| 923 | } |
| 924 | |
| 925 | void ieee80211_sta_ps_deliver_poll_response(struct sta_info *sta) |
| 926 | { |
| 927 | struct ieee80211_sub_if_data *sdata = sta->sdata; |
| 928 | struct ieee80211_local *local = sdata->local; |
| 929 | struct sk_buff *skb; |
| 930 | int no_pending_pkts; |
| 931 | |
| 932 | skb = skb_dequeue(&sta->tx_filtered); |
| 933 | if (!skb) { |
| 934 | skb = skb_dequeue(&sta->ps_tx_buf); |
| 935 | if (skb) |
| 936 | local->total_ps_buffered--; |
| 937 | } |
| 938 | no_pending_pkts = skb_queue_empty(&sta->tx_filtered) && |
| 939 | skb_queue_empty(&sta->ps_tx_buf); |
| 940 | |
| 941 | if (skb) { |
| 942 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); |
| 943 | struct ieee80211_hdr *hdr = |
| 944 | (struct ieee80211_hdr *) skb->data; |
| 945 | |
| 946 | /* |
| 947 | * Tell TX path to send this frame even though the STA may |
| 948 | * still remain is PS mode after this frame exchange. |
| 949 | */ |
| 950 | info->flags |= IEEE80211_TX_CTL_PSPOLL_RESPONSE; |
| 951 | |
| 952 | #ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG |
| 953 | printk(KERN_DEBUG "STA %pM aid %d: PS Poll (entries after %d)\n", |
| 954 | sta->sta.addr, sta->sta.aid, |
| 955 | skb_queue_len(&sta->ps_tx_buf)); |
| 956 | #endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */ |
| 957 | |
| 958 | /* Use MoreData flag to indicate whether there are more |
| 959 | * buffered frames for this STA */ |
| 960 | if (no_pending_pkts) |
| 961 | hdr->frame_control &= cpu_to_le16(~IEEE80211_FCTL_MOREDATA); |
| 962 | else |
| 963 | hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_MOREDATA); |
| 964 | |
| 965 | ieee80211_add_pending_skb(local, skb); |
| 966 | |
| 967 | if (no_pending_pkts) |
| 968 | sta_info_clear_tim_bit(sta); |
| 969 | #ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG |
| 970 | } else { |
| 971 | /* |
| 972 | * FIXME: This can be the result of a race condition between |
| 973 | * us expiring a frame and the station polling for it. |
| 974 | * Should we send it a null-func frame indicating we |
| 975 | * have nothing buffered for it? |
| 976 | */ |
| 977 | printk(KERN_DEBUG "%s: STA %pM sent PS Poll even " |
| 978 | "though there are no buffered frames for it\n", |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 979 | sdata->name, sta->sta.addr); |
Johannes Berg | af81858 | 2009-11-06 11:35:50 +0100 | [diff] [blame] | 980 | #endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */ |
| 981 | } |
| 982 | } |
| 983 | |
| 984 | void ieee80211_sta_block_awake(struct ieee80211_hw *hw, |
| 985 | struct ieee80211_sta *pubsta, bool block) |
| 986 | { |
| 987 | struct sta_info *sta = container_of(pubsta, struct sta_info, sta); |
| 988 | |
Johannes Berg | b5878a2 | 2010-04-07 16:48:40 +0200 | [diff] [blame] | 989 | trace_api_sta_block_awake(sta->local, pubsta, block); |
| 990 | |
Johannes Berg | af81858 | 2009-11-06 11:35:50 +0100 | [diff] [blame] | 991 | if (block) |
| 992 | set_sta_flags(sta, WLAN_STA_PS_DRIVER); |
Johannes Berg | 50a9432 | 2010-11-16 11:50:28 -0800 | [diff] [blame] | 993 | else if (test_sta_flags(sta, WLAN_STA_PS_DRIVER)) |
Johannes Berg | af81858 | 2009-11-06 11:35:50 +0100 | [diff] [blame] | 994 | ieee80211_queue_work(hw, &sta->drv_unblock_wk); |
| 995 | } |
| 996 | EXPORT_SYMBOL(ieee80211_sta_block_awake); |
Felix Fietkau | dcf55fb | 2011-04-17 17:45:00 +0200 | [diff] [blame] | 997 | |
| 998 | void ieee80211_sta_set_tim(struct ieee80211_sta *pubsta) |
| 999 | { |
| 1000 | struct sta_info *sta = container_of(pubsta, struct sta_info, sta); |
| 1001 | |
| 1002 | set_sta_flags(sta, WLAN_STA_PS_DRIVER_BUF); |
| 1003 | sta_info_set_tim_bit(sta); |
| 1004 | } |
| 1005 | EXPORT_SYMBOL(ieee80211_sta_set_tim); |