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> |
Felix Fietkau | 888d04d | 2012-03-01 15:22:09 +0100 | [diff] [blame] | 12 | #include <linux/etherdevice.h> |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 13 | #include <linux/netdevice.h> |
| 14 | #include <linux/types.h> |
| 15 | #include <linux/slab.h> |
| 16 | #include <linux/skbuff.h> |
| 17 | #include <linux/if_arp.h> |
Johannes Berg | 0d17440 | 2007-12-17 15:07:43 +0100 | [diff] [blame] | 18 | #include <linux/timer.h> |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 19 | #include <linux/rtnetlink.h> |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 20 | |
| 21 | #include <net/mac80211.h> |
| 22 | #include "ieee80211_i.h" |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 23 | #include "driver-ops.h" |
Johannes Berg | 2c8dccc | 2008-04-08 15:14:40 -0400 | [diff] [blame] | 24 | #include "rate.h" |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 25 | #include "sta_info.h" |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 26 | #include "debugfs_sta.h" |
Luis Carlos Cobo | ee38585 | 2008-02-23 15:17:11 +0100 | [diff] [blame] | 27 | #include "mesh.h" |
Johannes Berg | ce662b44 | 2011-09-29 16:04:34 +0200 | [diff] [blame] | 28 | #include "wme.h" |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 29 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 30 | /** |
| 31 | * DOC: STA information lifetime rules |
| 32 | * |
| 33 | * STA info structures (&struct sta_info) are managed in a hash table |
| 34 | * for faster lookup and a list for iteration. They are managed using |
| 35 | * RCU, i.e. access to the list and hash table is protected by RCU. |
| 36 | * |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 37 | * Upon allocating a STA info structure with sta_info_alloc(), the caller |
| 38 | * owns that structure. It must then insert it into the hash table using |
| 39 | * either sta_info_insert() or sta_info_insert_rcu(); only in the latter |
| 40 | * case (which acquires an rcu read section but must not be called from |
| 41 | * within one) will the pointer still be valid after the call. Note that |
| 42 | * the caller may not do much with the STA info before inserting it, in |
| 43 | * particular, it may not start any mesh peer link management or add |
| 44 | * encryption keys. |
Johannes Berg | 93e5deb | 2008-04-01 15:21:00 +0200 | [diff] [blame] | 45 | * |
| 46 | * When the insertion fails (sta_info_insert()) returns non-zero), the |
| 47 | * structure will have been freed by sta_info_insert()! |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 48 | * |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 49 | * 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] | 50 | * peer. This means different things for the different type of interfaces |
| 51 | * 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] | 52 | * receive an association response from the AP. For IBSS this occurs when |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 53 | * 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] | 54 | * 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] | 55 | * for each respective station upon request from userspace through nl80211. |
Luis R. Rodriguez | 7e189a1 | 2009-06-02 18:38:14 -0400 | [diff] [blame] | 56 | * |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 57 | * In order to remove a STA info structure, various sta_info_destroy_*() |
| 58 | * calls are available. |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 59 | * |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 60 | * There is no concept of ownership on a STA entry, each structure is |
| 61 | * owned by the global hash table/list until it is removed. All users of |
| 62 | * the structure need to be RCU protected so that the structure won't be |
| 63 | * freed before they are done using it. |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 64 | */ |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 65 | |
Johannes Berg | 4d33960 | 2011-12-15 11:24:20 +0100 | [diff] [blame] | 66 | /* Caller must hold local->sta_mtx */ |
Michael Wu | be8755e | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 67 | static int sta_info_hash_del(struct ieee80211_local *local, |
| 68 | struct sta_info *sta) |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 69 | { |
| 70 | struct sta_info *s; |
| 71 | |
Johannes Berg | 40b275b | 2011-05-13 14:15:49 +0200 | [diff] [blame] | 72 | s = rcu_dereference_protected(local->sta_hash[STA_HASH(sta->sta.addr)], |
Johannes Berg | 4d33960 | 2011-12-15 11:24:20 +0100 | [diff] [blame] | 73 | lockdep_is_held(&local->sta_mtx)); |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 74 | if (!s) |
Michael Wu | be8755e | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 75 | return -ENOENT; |
| 76 | if (s == sta) { |
Eric Dumazet | cf778b0 | 2012-01-12 04:41:32 +0000 | [diff] [blame] | 77 | rcu_assign_pointer(local->sta_hash[STA_HASH(sta->sta.addr)], |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 78 | s->hnext); |
Michael Wu | be8755e | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 79 | return 0; |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 80 | } |
| 81 | |
Johannes Berg | 40b275b | 2011-05-13 14:15:49 +0200 | [diff] [blame] | 82 | while (rcu_access_pointer(s->hnext) && |
| 83 | rcu_access_pointer(s->hnext) != sta) |
| 84 | s = rcu_dereference_protected(s->hnext, |
Johannes Berg | 4d33960 | 2011-12-15 11:24:20 +0100 | [diff] [blame] | 85 | lockdep_is_held(&local->sta_mtx)); |
Johannes Berg | 40b275b | 2011-05-13 14:15:49 +0200 | [diff] [blame] | 86 | if (rcu_access_pointer(s->hnext)) { |
Eric Dumazet | cf778b0 | 2012-01-12 04:41:32 +0000 | [diff] [blame] | 87 | rcu_assign_pointer(s->hnext, sta->hnext); |
Michael Wu | be8755e | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 88 | return 0; |
| 89 | } |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 90 | |
Michael Wu | be8755e | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 91 | return -ENOENT; |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 92 | } |
| 93 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 94 | /* protected by RCU */ |
Johannes Berg | abe6063 | 2009-11-25 17:46:18 +0100 | [diff] [blame] | 95 | struct sta_info *sta_info_get(struct ieee80211_sub_if_data *sdata, |
| 96 | const u8 *addr) |
Johannes Berg | 43ba7e9 | 2008-02-21 14:09:30 +0100 | [diff] [blame] | 97 | { |
Johannes Berg | abe6063 | 2009-11-25 17:46:18 +0100 | [diff] [blame] | 98 | struct ieee80211_local *local = sdata->local; |
Johannes Berg | 43ba7e9 | 2008-02-21 14:09:30 +0100 | [diff] [blame] | 99 | struct sta_info *sta; |
| 100 | |
Johannes Berg | 0379185 | 2010-04-06 11:18:42 +0200 | [diff] [blame] | 101 | sta = rcu_dereference_check(local->sta_hash[STA_HASH(addr)], |
Johannes Berg | 0379185 | 2010-04-06 11:18:42 +0200 | [diff] [blame] | 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 && |
Felix Fietkau | 888d04d | 2012-03-01 15:22:09 +0100 | [diff] [blame] | 105 | compare_ether_addr(sta->sta.addr, addr) == 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, |
Johannes Berg | 0379185 | 2010-04-06 11:18:42 +0200 | [diff] [blame] | 108 | lockdep_is_held(&local->sta_mtx)); |
Johannes Berg | 43ba7e9 | 2008-02-21 14:09:30 +0100 | [diff] [blame] | 109 | } |
| 110 | return sta; |
| 111 | } |
| 112 | |
Felix Fietkau | 0e5ded5 | 2010-01-08 18:10:58 +0100 | [diff] [blame] | 113 | /* |
| 114 | * Get sta info either from the specified interface |
| 115 | * or from one of its vlans |
| 116 | */ |
| 117 | struct sta_info *sta_info_get_bss(struct ieee80211_sub_if_data *sdata, |
| 118 | const u8 *addr) |
| 119 | { |
| 120 | struct ieee80211_local *local = sdata->local; |
| 121 | struct sta_info *sta; |
| 122 | |
Johannes Berg | 0379185 | 2010-04-06 11:18:42 +0200 | [diff] [blame] | 123 | sta = rcu_dereference_check(local->sta_hash[STA_HASH(addr)], |
Johannes Berg | 0379185 | 2010-04-06 11:18:42 +0200 | [diff] [blame] | 124 | lockdep_is_held(&local->sta_mtx)); |
Felix Fietkau | 0e5ded5 | 2010-01-08 18:10:58 +0100 | [diff] [blame] | 125 | while (sta) { |
| 126 | if ((sta->sdata == sdata || |
Johannes Berg | a2c1e3d | 2010-09-14 21:34:14 +0200 | [diff] [blame] | 127 | (sta->sdata->bss && sta->sdata->bss == sdata->bss)) && |
Felix Fietkau | 888d04d | 2012-03-01 15:22:09 +0100 | [diff] [blame] | 128 | compare_ether_addr(sta->sta.addr, addr) == 0) |
Felix Fietkau | 0e5ded5 | 2010-01-08 18:10:58 +0100 | [diff] [blame] | 129 | break; |
Johannes Berg | 0379185 | 2010-04-06 11:18:42 +0200 | [diff] [blame] | 130 | sta = rcu_dereference_check(sta->hnext, |
Johannes Berg | 0379185 | 2010-04-06 11:18:42 +0200 | [diff] [blame] | 131 | lockdep_is_held(&local->sta_mtx)); |
Felix Fietkau | 0e5ded5 | 2010-01-08 18:10:58 +0100 | [diff] [blame] | 132 | } |
| 133 | return sta; |
| 134 | } |
| 135 | |
Johannes Berg | 3b53fde8 | 2009-11-16 12:00:37 +0100 | [diff] [blame] | 136 | struct sta_info *sta_info_get_by_idx(struct ieee80211_sub_if_data *sdata, |
| 137 | int idx) |
Luis Carlos Cobo | ee38585 | 2008-02-23 15:17:11 +0100 | [diff] [blame] | 138 | { |
Johannes Berg | 3b53fde8 | 2009-11-16 12:00:37 +0100 | [diff] [blame] | 139 | struct ieee80211_local *local = sdata->local; |
Luis Carlos Cobo | ee38585 | 2008-02-23 15:17:11 +0100 | [diff] [blame] | 140 | struct sta_info *sta; |
| 141 | int i = 0; |
| 142 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 143 | list_for_each_entry_rcu(sta, &local->sta_list, list) { |
Johannes Berg | 3b53fde8 | 2009-11-16 12:00:37 +0100 | [diff] [blame] | 144 | if (sdata != sta->sdata) |
Luis Carlos Cobo | 2a8ca29 | 2008-02-29 17:51:25 -0800 | [diff] [blame] | 145 | continue; |
Luis Carlos Cobo | ee38585 | 2008-02-23 15:17:11 +0100 | [diff] [blame] | 146 | if (i < idx) { |
| 147 | ++i; |
| 148 | continue; |
Luis Carlos Cobo | ee38585 | 2008-02-23 15:17:11 +0100 | [diff] [blame] | 149 | } |
Luis Carlos Cobo | 2a8ca29 | 2008-02-29 17:51:25 -0800 | [diff] [blame] | 150 | return sta; |
Luis Carlos Cobo | ee38585 | 2008-02-23 15:17:11 +0100 | [diff] [blame] | 151 | } |
Luis Carlos Cobo | ee38585 | 2008-02-23 15:17:11 +0100 | [diff] [blame] | 152 | |
| 153 | return NULL; |
| 154 | } |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 155 | |
Johannes Berg | 93e5deb | 2008-04-01 15:21:00 +0200 | [diff] [blame] | 156 | /** |
Johannes Berg | d9a7ddb | 2011-12-14 12:35:30 +0100 | [diff] [blame] | 157 | * sta_info_free - free STA |
Johannes Berg | 93e5deb | 2008-04-01 15:21:00 +0200 | [diff] [blame] | 158 | * |
Randy Dunlap | 6ef307b | 2008-07-03 13:52:18 -0700 | [diff] [blame] | 159 | * @local: pointer to the global information |
Johannes Berg | 93e5deb | 2008-04-01 15:21:00 +0200 | [diff] [blame] | 160 | * @sta: STA info to free |
| 161 | * |
| 162 | * This function must undo everything done by sta_info_alloc() |
Johannes Berg | d9a7ddb | 2011-12-14 12:35:30 +0100 | [diff] [blame] | 163 | * that may happen before sta_info_insert(). It may only be |
| 164 | * called when sta_info_insert() has not been attempted (and |
| 165 | * if that fails, the station is freed anyway.) |
Johannes Berg | 93e5deb | 2008-04-01 15:21:00 +0200 | [diff] [blame] | 166 | */ |
Johannes Berg | d9a7ddb | 2011-12-14 12:35:30 +0100 | [diff] [blame] | 167 | void sta_info_free(struct ieee80211_local *local, struct sta_info *sta) |
Johannes Berg | 93e5deb | 2008-04-01 15:21:00 +0200 | [diff] [blame] | 168 | { |
Johannes Berg | 889cbb9 | 2012-01-17 10:33:29 +0100 | [diff] [blame] | 169 | if (sta->rate_ctrl) |
Johannes Berg | af65cd9 | 2009-11-17 18:18:36 +0100 | [diff] [blame] | 170 | rate_control_free_sta(sta); |
Johannes Berg | 93e5deb | 2008-04-01 15:21:00 +0200 | [diff] [blame] | 171 | |
| 172 | #ifdef CONFIG_MAC80211_VERBOSE_DEBUG |
Joe Perches | 0fb9a9e | 2010-08-20 16:25:38 -0700 | [diff] [blame] | 173 | wiphy_debug(local->hw.wiphy, "Destroyed STA %pM\n", sta->sta.addr); |
Johannes Berg | 93e5deb | 2008-04-01 15:21:00 +0200 | [diff] [blame] | 174 | #endif /* CONFIG_MAC80211_VERBOSE_DEBUG */ |
| 175 | |
| 176 | kfree(sta); |
| 177 | } |
| 178 | |
Johannes Berg | 4d33960 | 2011-12-15 11:24:20 +0100 | [diff] [blame] | 179 | /* Caller must hold local->sta_mtx */ |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 180 | static void sta_info_hash_add(struct ieee80211_local *local, |
| 181 | struct sta_info *sta) |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 182 | { |
Johannes Berg | 4d33960 | 2011-12-15 11:24:20 +0100 | [diff] [blame] | 183 | lockdep_assert_held(&local->sta_mtx); |
Johannes Berg | 17741cd | 2008-09-11 00:02:02 +0200 | [diff] [blame] | 184 | sta->hnext = local->sta_hash[STA_HASH(sta->sta.addr)]; |
Eric Dumazet | cf778b0 | 2012-01-12 04:41:32 +0000 | [diff] [blame] | 185 | rcu_assign_pointer(local->sta_hash[STA_HASH(sta->sta.addr)], sta); |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 186 | } |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 187 | |
Johannes Berg | af81858 | 2009-11-06 11:35:50 +0100 | [diff] [blame] | 188 | static void sta_unblock(struct work_struct *wk) |
| 189 | { |
| 190 | struct sta_info *sta; |
| 191 | |
| 192 | sta = container_of(wk, struct sta_info, drv_unblock_wk); |
| 193 | |
| 194 | if (sta->dead) |
| 195 | return; |
| 196 | |
Helmut Schaa | 5442047 | 2012-01-17 09:22:49 +0100 | [diff] [blame] | 197 | if (!test_sta_flag(sta, WLAN_STA_PS_STA)) { |
| 198 | local_bh_disable(); |
Johannes Berg | af81858 | 2009-11-06 11:35:50 +0100 | [diff] [blame] | 199 | ieee80211_sta_ps_deliver_wakeup(sta); |
Helmut Schaa | 5442047 | 2012-01-17 09:22:49 +0100 | [diff] [blame] | 200 | local_bh_enable(); |
| 201 | } else if (test_and_clear_sta_flag(sta, WLAN_STA_PSPOLL)) { |
Johannes Berg | c2c98fd | 2011-09-29 16:04:36 +0200 | [diff] [blame] | 202 | clear_sta_flag(sta, WLAN_STA_PS_DRIVER); |
Johannes Berg | ce662b44 | 2011-09-29 16:04:34 +0200 | [diff] [blame] | 203 | |
| 204 | local_bh_disable(); |
Johannes Berg | af81858 | 2009-11-06 11:35:50 +0100 | [diff] [blame] | 205 | ieee80211_sta_ps_deliver_poll_response(sta); |
Johannes Berg | ce662b44 | 2011-09-29 16:04:34 +0200 | [diff] [blame] | 206 | local_bh_enable(); |
Johannes Berg | c2c98fd | 2011-09-29 16:04:36 +0200 | [diff] [blame] | 207 | } else if (test_and_clear_sta_flag(sta, WLAN_STA_UAPSD)) { |
| 208 | clear_sta_flag(sta, WLAN_STA_PS_DRIVER); |
Johannes Berg | ce662b44 | 2011-09-29 16:04:34 +0200 | [diff] [blame] | 209 | |
| 210 | local_bh_disable(); |
Johannes Berg | 47086fc | 2011-09-29 16:04:33 +0200 | [diff] [blame] | 211 | ieee80211_sta_ps_deliver_uapsd(sta); |
Johannes Berg | ce662b44 | 2011-09-29 16:04:34 +0200 | [diff] [blame] | 212 | local_bh_enable(); |
Johannes Berg | 50a9432 | 2010-11-16 11:50:28 -0800 | [diff] [blame] | 213 | } else |
Johannes Berg | c2c98fd | 2011-09-29 16:04:36 +0200 | [diff] [blame] | 214 | clear_sta_flag(sta, WLAN_STA_PS_DRIVER); |
Johannes Berg | af81858 | 2009-11-06 11:35:50 +0100 | [diff] [blame] | 215 | } |
| 216 | |
Johannes Berg | af65cd9 | 2009-11-17 18:18:36 +0100 | [diff] [blame] | 217 | static int sta_prepare_rate_control(struct ieee80211_local *local, |
| 218 | struct sta_info *sta, gfp_t gfp) |
| 219 | { |
| 220 | if (local->hw.flags & IEEE80211_HW_HAS_RATE_CONTROL) |
| 221 | return 0; |
| 222 | |
Johannes Berg | 889cbb9 | 2012-01-17 10:33:29 +0100 | [diff] [blame] | 223 | sta->rate_ctrl = local->rate_ctrl; |
Johannes Berg | af65cd9 | 2009-11-17 18:18:36 +0100 | [diff] [blame] | 224 | sta->rate_ctrl_priv = rate_control_alloc_sta(sta->rate_ctrl, |
| 225 | &sta->sta, gfp); |
Johannes Berg | 889cbb9 | 2012-01-17 10:33:29 +0100 | [diff] [blame] | 226 | if (!sta->rate_ctrl_priv) |
Johannes Berg | af65cd9 | 2009-11-17 18:18:36 +0100 | [diff] [blame] | 227 | return -ENOMEM; |
Johannes Berg | af65cd9 | 2009-11-17 18:18:36 +0100 | [diff] [blame] | 228 | |
| 229 | return 0; |
| 230 | } |
| 231 | |
Johannes Berg | 73651ee | 2008-02-25 16:27:47 +0100 | [diff] [blame] | 232 | struct sta_info *sta_info_alloc(struct ieee80211_sub_if_data *sdata, |
Johannes Berg | 5654416 | 2011-12-14 13:28:46 +0100 | [diff] [blame] | 233 | const u8 *addr, gfp_t gfp) |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 234 | { |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 235 | struct ieee80211_local *local = sdata->local; |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 236 | struct sta_info *sta; |
Mohammed Shafi Shajakhan | ebe27c9 | 2011-04-08 21:24:24 +0530 | [diff] [blame] | 237 | struct timespec uptime; |
Ron Rindjunsky | 16c5f15 | 2007-12-25 17:00:34 +0200 | [diff] [blame] | 238 | int i; |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 239 | |
Johannes Berg | 17741cd | 2008-09-11 00:02:02 +0200 | [diff] [blame] | 240 | sta = kzalloc(sizeof(*sta) + local->hw.sta_data_size, gfp); |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 241 | if (!sta) |
Johannes Berg | 73651ee | 2008-02-25 16:27:47 +0100 | [diff] [blame] | 242 | return NULL; |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 243 | |
Johannes Berg | 07346f81 | 2008-05-03 01:02:02 +0200 | [diff] [blame] | 244 | spin_lock_init(&sta->lock); |
Johannes Berg | af81858 | 2009-11-06 11:35:50 +0100 | [diff] [blame] | 245 | INIT_WORK(&sta->drv_unblock_wk, sta_unblock); |
Johannes Berg | 67c282c | 2010-06-10 10:21:43 +0200 | [diff] [blame] | 246 | INIT_WORK(&sta->ampdu_mlme.work, ieee80211_ba_session_work); |
Johannes Berg | a93e364 | 2010-06-10 10:21:46 +0200 | [diff] [blame] | 247 | mutex_init(&sta->ampdu_mlme.mtx); |
Johannes Berg | 07346f81 | 2008-05-03 01:02:02 +0200 | [diff] [blame] | 248 | |
Johannes Berg | 17741cd | 2008-09-11 00:02:02 +0200 | [diff] [blame] | 249 | memcpy(sta->sta.addr, addr, ETH_ALEN); |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 250 | sta->local = local; |
| 251 | sta->sdata = sdata; |
Felix Fietkau | 8bc8aec | 2011-03-21 20:01:00 +0100 | [diff] [blame] | 252 | sta->last_rx = jiffies; |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 253 | |
Johannes Berg | 71ec375 | 2012-01-20 13:55:20 +0100 | [diff] [blame] | 254 | sta->sta_state = IEEE80211_STA_NONE; |
| 255 | |
Mohammed Shafi Shajakhan | ebe27c9 | 2011-04-08 21:24:24 +0530 | [diff] [blame] | 256 | do_posix_clock_monotonic_gettime(&uptime); |
| 257 | sta->last_connected = uptime.tv_sec; |
Bruno Randolf | 541a45a | 2010-12-02 19:12:43 +0900 | [diff] [blame] | 258 | ewma_init(&sta->avg_signal, 1024, 8); |
| 259 | |
Johannes Berg | af65cd9 | 2009-11-17 18:18:36 +0100 | [diff] [blame] | 260 | if (sta_prepare_rate_control(local, sta, gfp)) { |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 261 | kfree(sta); |
Johannes Berg | 73651ee | 2008-02-25 16:27:47 +0100 | [diff] [blame] | 262 | return NULL; |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 263 | } |
| 264 | |
Ron Rindjunsky | 16c5f15 | 2007-12-25 17:00:34 +0200 | [diff] [blame] | 265 | for (i = 0; i < STA_TID_NUM; i++) { |
Johannes Berg | a622ab7 | 2010-06-10 10:21:39 +0200 | [diff] [blame] | 266 | /* |
| 267 | * timer_to_tid must be initialized with identity mapping |
| 268 | * to enable session_timer's data differentiation. See |
| 269 | * sta_rx_agg_session_timer_expired for usage. |
| 270 | */ |
Ron Rindjunsky | 16c5f15 | 2007-12-25 17:00:34 +0200 | [diff] [blame] | 271 | sta->timer_to_tid[i] = i; |
Ron Rindjunsky | 16c5f15 | 2007-12-25 17:00:34 +0200 | [diff] [blame] | 272 | } |
Johannes Berg | 948d887 | 2011-09-29 16:04:29 +0200 | [diff] [blame] | 273 | for (i = 0; i < IEEE80211_NUM_ACS; i++) { |
| 274 | skb_queue_head_init(&sta->ps_tx_buf[i]); |
| 275 | skb_queue_head_init(&sta->tx_filtered[i]); |
| 276 | } |
Johannes Berg | 73651ee | 2008-02-25 16:27:47 +0100 | [diff] [blame] | 277 | |
Senthil Balasubramanian | cccaec9 | 2009-05-14 18:42:08 +0530 | [diff] [blame] | 278 | for (i = 0; i < NUM_RX_DATA_QUEUES; i++) |
Alexey Dobriyan | 4be929b | 2010-05-24 14:33:03 -0700 | [diff] [blame] | 279 | sta->last_seq_ctrl[i] = cpu_to_le16(USHRT_MAX); |
Senthil Balasubramanian | cccaec9 | 2009-05-14 18:42:08 +0530 | [diff] [blame] | 280 | |
Johannes Berg | 73651ee | 2008-02-25 16:27:47 +0100 | [diff] [blame] | 281 | #ifdef CONFIG_MAC80211_VERBOSE_DEBUG |
Joe Perches | 0fb9a9e | 2010-08-20 16:25:38 -0700 | [diff] [blame] | 282 | wiphy_debug(local->hw.wiphy, "Allocated STA %pM\n", sta->sta.addr); |
Johannes Berg | 73651ee | 2008-02-25 16:27:47 +0100 | [diff] [blame] | 283 | #endif /* CONFIG_MAC80211_VERBOSE_DEBUG */ |
| 284 | |
Johannes Berg | 03e4497 | 2008-02-27 09:56:40 +0100 | [diff] [blame] | 285 | #ifdef CONFIG_MAC80211_MESH |
Javier Cardona | 57cf804 | 2011-05-13 10:45:43 -0700 | [diff] [blame] | 286 | sta->plink_state = NL80211_PLINK_LISTEN; |
Johannes Berg | 03e4497 | 2008-02-27 09:56:40 +0100 | [diff] [blame] | 287 | init_timer(&sta->plink_timer); |
| 288 | #endif |
| 289 | |
Johannes Berg | 73651ee | 2008-02-25 16:27:47 +0100 | [diff] [blame] | 290 | return sta; |
| 291 | } |
| 292 | |
Guy Eilam | 8c71df7 | 2011-08-17 15:18:14 +0300 | [diff] [blame] | 293 | static int sta_info_insert_check(struct sta_info *sta) |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 294 | { |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 295 | struct ieee80211_sub_if_data *sdata = sta->sdata; |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 296 | |
Johannes Berg | 03e4497 | 2008-02-27 09:56:40 +0100 | [diff] [blame] | 297 | /* |
| 298 | * Can't be a WARN_ON because it can be triggered through a race: |
| 299 | * something inserts a STA (on one CPU) without holding the RTNL |
| 300 | * and another CPU turns off the net device. |
| 301 | */ |
Guy Eilam | 8c71df7 | 2011-08-17 15:18:14 +0300 | [diff] [blame] | 302 | if (unlikely(!ieee80211_sdata_running(sdata))) |
| 303 | return -ENETDOWN; |
Johannes Berg | 03e4497 | 2008-02-27 09:56:40 +0100 | [diff] [blame] | 304 | |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 305 | if (WARN_ON(compare_ether_addr(sta->sta.addr, sdata->vif.addr) == 0 || |
Guy Eilam | 8c71df7 | 2011-08-17 15:18:14 +0300 | [diff] [blame] | 306 | is_multicast_ether_addr(sta->sta.addr))) |
| 307 | return -EINVAL; |
| 308 | |
| 309 | return 0; |
| 310 | } |
| 311 | |
Johannes Berg | f09603a | 2012-01-20 13:55:21 +0100 | [diff] [blame] | 312 | static int sta_info_insert_drv_state(struct ieee80211_local *local, |
| 313 | struct ieee80211_sub_if_data *sdata, |
| 314 | struct sta_info *sta) |
| 315 | { |
| 316 | enum ieee80211_sta_state state; |
| 317 | int err = 0; |
| 318 | |
| 319 | for (state = IEEE80211_STA_NOTEXIST; state < sta->sta_state; state++) { |
| 320 | err = drv_sta_state(local, sdata, sta, state, state + 1); |
| 321 | if (err) |
| 322 | break; |
| 323 | } |
| 324 | |
| 325 | if (!err) { |
Johannes Berg | a4ec45a | 2012-01-20 13:55:22 +0100 | [diff] [blame] | 326 | /* |
| 327 | * Drivers using legacy sta_add/sta_remove callbacks only |
| 328 | * get uploaded set to true after sta_add is called. |
| 329 | */ |
| 330 | if (!local->ops->sta_add) |
| 331 | sta->uploaded = true; |
Johannes Berg | f09603a | 2012-01-20 13:55:21 +0100 | [diff] [blame] | 332 | return 0; |
| 333 | } |
| 334 | |
| 335 | if (sdata->vif.type == NL80211_IFTYPE_ADHOC) { |
| 336 | printk(KERN_DEBUG |
| 337 | "%s: failed to move IBSS STA %pM to state %d (%d) - keeping it anyway.\n", |
| 338 | sdata->name, sta->sta.addr, state + 1, err); |
| 339 | err = 0; |
| 340 | } |
| 341 | |
| 342 | /* unwind on error */ |
| 343 | for (; state > IEEE80211_STA_NOTEXIST; state--) |
| 344 | WARN_ON(drv_sta_state(local, sdata, sta, state, state - 1)); |
| 345 | |
| 346 | return err; |
| 347 | } |
| 348 | |
Guy Eilam | 8c71df7 | 2011-08-17 15:18:14 +0300 | [diff] [blame] | 349 | /* |
| 350 | * should be called with sta_mtx locked |
| 351 | * this function replaces the mutex lock |
| 352 | * with a RCU lock |
| 353 | */ |
Johannes Berg | 4d33960 | 2011-12-15 11:24:20 +0100 | [diff] [blame] | 354 | static int sta_info_insert_finish(struct sta_info *sta) __acquires(RCU) |
Guy Eilam | 8c71df7 | 2011-08-17 15:18:14 +0300 | [diff] [blame] | 355 | { |
| 356 | struct ieee80211_local *local = sta->local; |
| 357 | struct ieee80211_sub_if_data *sdata = sta->sdata; |
Johannes Berg | 7852e36 | 2012-01-20 13:55:24 +0100 | [diff] [blame] | 358 | struct station_info sinfo; |
Guy Eilam | 8c71df7 | 2011-08-17 15:18:14 +0300 | [diff] [blame] | 359 | int err = 0; |
| 360 | |
| 361 | lockdep_assert_held(&local->sta_mtx); |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 362 | |
Johannes Berg | 7852e36 | 2012-01-20 13:55:24 +0100 | [diff] [blame] | 363 | /* check if STA exists already */ |
| 364 | if (sta_info_get_bss(sdata, sta->sta.addr)) { |
| 365 | err = -EEXIST; |
| 366 | goto out_err; |
Johannes Berg | 43ba7e9 | 2008-02-21 14:09:30 +0100 | [diff] [blame] | 367 | } |
Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 368 | |
Johannes Berg | 7852e36 | 2012-01-20 13:55:24 +0100 | [diff] [blame] | 369 | /* notify driver */ |
| 370 | err = sta_info_insert_drv_state(local, sdata, sta); |
| 371 | if (err) |
| 372 | goto out_err; |
Johannes Berg | 32bfd35 | 2007-12-19 01:31:26 +0100 | [diff] [blame] | 373 | |
Johannes Berg | 7852e36 | 2012-01-20 13:55:24 +0100 | [diff] [blame] | 374 | local->num_sta++; |
| 375 | local->sta_generation++; |
| 376 | smp_mb(); |
Johannes Berg | 4d33960 | 2011-12-15 11:24:20 +0100 | [diff] [blame] | 377 | |
Johannes Berg | 7852e36 | 2012-01-20 13:55:24 +0100 | [diff] [blame] | 378 | /* make the station visible */ |
| 379 | sta_info_hash_add(local, sta); |
Johannes Berg | 4d33960 | 2011-12-15 11:24:20 +0100 | [diff] [blame] | 380 | |
Johannes Berg | 7852e36 | 2012-01-20 13:55:24 +0100 | [diff] [blame] | 381 | list_add(&sta->list, &local->sta_list); |
Johannes Berg | 83d5cc0 | 2012-01-12 09:31:10 +0100 | [diff] [blame] | 382 | |
Johannes Berg | 7852e36 | 2012-01-20 13:55:24 +0100 | [diff] [blame] | 383 | set_sta_flag(sta, WLAN_STA_INSERTED); |
Johannes Berg | 4d33960 | 2011-12-15 11:24:20 +0100 | [diff] [blame] | 384 | |
Johannes Berg | 7852e36 | 2012-01-20 13:55:24 +0100 | [diff] [blame] | 385 | ieee80211_sta_debugfs_add(sta); |
| 386 | rate_control_add_sta_debugfs(sta); |
Johannes Berg | 4d33960 | 2011-12-15 11:24:20 +0100 | [diff] [blame] | 387 | |
Johannes Berg | 7852e36 | 2012-01-20 13:55:24 +0100 | [diff] [blame] | 388 | memset(&sinfo, 0, sizeof(sinfo)); |
| 389 | sinfo.filled = 0; |
| 390 | sinfo.generation = local->sta_generation; |
| 391 | cfg80211_new_sta(sdata->dev, sta->sta.addr, &sinfo, GFP_KERNEL); |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 392 | |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 393 | #ifdef CONFIG_MAC80211_VERBOSE_DEBUG |
Johannes Berg | 7852e36 | 2012-01-20 13:55:24 +0100 | [diff] [blame] | 394 | wiphy_debug(local->hw.wiphy, "Inserted STA %pM\n", sta->sta.addr); |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 395 | #endif /* CONFIG_MAC80211_VERBOSE_DEBUG */ |
| 396 | |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 397 | /* move reference to rcu-protected */ |
| 398 | rcu_read_lock(); |
| 399 | mutex_unlock(&local->sta_mtx); |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 400 | |
Johannes Berg | 73651ee | 2008-02-25 16:27:47 +0100 | [diff] [blame] | 401 | if (ieee80211_vif_is_mesh(&sdata->vif)) |
| 402 | mesh_accept_plinks_update(sdata); |
| 403 | |
| 404 | return 0; |
Johannes Berg | 4d33960 | 2011-12-15 11:24:20 +0100 | [diff] [blame] | 405 | out_err: |
| 406 | mutex_unlock(&local->sta_mtx); |
| 407 | rcu_read_lock(); |
| 408 | return err; |
Guy Eilam | 8c71df7 | 2011-08-17 15:18:14 +0300 | [diff] [blame] | 409 | } |
| 410 | |
| 411 | int sta_info_insert_rcu(struct sta_info *sta) __acquires(RCU) |
| 412 | { |
| 413 | struct ieee80211_local *local = sta->local; |
Guy Eilam | 8c71df7 | 2011-08-17 15:18:14 +0300 | [diff] [blame] | 414 | int err = 0; |
| 415 | |
Johannes Berg | 4d33960 | 2011-12-15 11:24:20 +0100 | [diff] [blame] | 416 | might_sleep(); |
| 417 | |
Guy Eilam | 8c71df7 | 2011-08-17 15:18:14 +0300 | [diff] [blame] | 418 | err = sta_info_insert_check(sta); |
| 419 | if (err) { |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 420 | rcu_read_lock(); |
| 421 | goto out_free; |
| 422 | } |
| 423 | |
Johannes Berg | 004c872 | 2008-02-20 11:21:35 +0100 | [diff] [blame] | 424 | mutex_lock(&local->sta_mtx); |
| 425 | |
Johannes Berg | 4d33960 | 2011-12-15 11:24:20 +0100 | [diff] [blame] | 426 | err = sta_info_insert_finish(sta); |
Guy Eilam | 8c71df7 | 2011-08-17 15:18:14 +0300 | [diff] [blame] | 427 | if (err) |
Johannes Berg | 004c872 | 2008-02-20 11:21:35 +0100 | [diff] [blame] | 428 | goto out_free; |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 429 | |
Johannes Berg | 004c872 | 2008-02-20 11:21:35 +0100 | [diff] [blame] | 430 | return 0; |
Johannes Berg | 93e5deb | 2008-04-01 15:21:00 +0200 | [diff] [blame] | 431 | out_free: |
| 432 | BUG_ON(!err); |
Johannes Berg | d9a7ddb | 2011-12-14 12:35:30 +0100 | [diff] [blame] | 433 | sta_info_free(local, sta); |
Johannes Berg | 93e5deb | 2008-04-01 15:21:00 +0200 | [diff] [blame] | 434 | return err; |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 435 | } |
| 436 | |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 437 | int sta_info_insert(struct sta_info *sta) |
| 438 | { |
| 439 | int err = sta_info_insert_rcu(sta); |
| 440 | |
| 441 | rcu_read_unlock(); |
| 442 | |
| 443 | return err; |
| 444 | } |
| 445 | |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 446 | static inline void __bss_tim_set(struct ieee80211_if_ap *bss, u16 aid) |
Johannes Berg | 004c872 | 2008-02-20 11:21:35 +0100 | [diff] [blame] | 447 | { |
| 448 | /* |
| 449 | * This format has been mandated by the IEEE specifications, |
| 450 | * so this line may not be changed to use the __set_bit() format. |
| 451 | */ |
| 452 | bss->tim[aid / 8] |= (1 << (aid % 8)); |
| 453 | } |
| 454 | |
| 455 | static inline void __bss_tim_clear(struct ieee80211_if_ap *bss, u16 aid) |
| 456 | { |
| 457 | /* |
| 458 | * This format has been mandated by the IEEE specifications, |
| 459 | * so this line may not be changed to use the __clear_bit() format. |
| 460 | */ |
| 461 | bss->tim[aid / 8] &= ~(1 << (aid % 8)); |
| 462 | } |
| 463 | |
Johannes Berg | 948d887 | 2011-09-29 16:04:29 +0200 | [diff] [blame] | 464 | static unsigned long ieee80211_tids_for_ac(int ac) |
Johannes Berg | 004c872 | 2008-02-20 11:21:35 +0100 | [diff] [blame] | 465 | { |
Johannes Berg | 948d887 | 2011-09-29 16:04:29 +0200 | [diff] [blame] | 466 | /* If we ever support TIDs > 7, this obviously needs to be adjusted */ |
| 467 | switch (ac) { |
| 468 | case IEEE80211_AC_VO: |
| 469 | return BIT(6) | BIT(7); |
| 470 | case IEEE80211_AC_VI: |
| 471 | return BIT(4) | BIT(5); |
| 472 | case IEEE80211_AC_BE: |
| 473 | return BIT(0) | BIT(3); |
| 474 | case IEEE80211_AC_BK: |
| 475 | return BIT(1) | BIT(2); |
| 476 | default: |
| 477 | WARN_ON(1); |
| 478 | return 0; |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 479 | } |
Johannes Berg | 004c872 | 2008-02-20 11:21:35 +0100 | [diff] [blame] | 480 | } |
| 481 | |
Johannes Berg | c868cb3 | 2011-09-29 16:04:27 +0200 | [diff] [blame] | 482 | void sta_info_recalc_tim(struct sta_info *sta) |
Johannes Berg | 004c872 | 2008-02-20 11:21:35 +0100 | [diff] [blame] | 483 | { |
Johannes Berg | c868cb3 | 2011-09-29 16:04:27 +0200 | [diff] [blame] | 484 | struct ieee80211_local *local = sta->local; |
| 485 | struct ieee80211_if_ap *bss = sta->sdata->bss; |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 486 | unsigned long flags; |
Johannes Berg | 948d887 | 2011-09-29 16:04:29 +0200 | [diff] [blame] | 487 | bool indicate_tim = false; |
| 488 | u8 ignore_for_tim = sta->sta.uapsd_queues; |
| 489 | int ac; |
Johannes Berg | 004c872 | 2008-02-20 11:21:35 +0100 | [diff] [blame] | 490 | |
Johannes Berg | c868cb3 | 2011-09-29 16:04:27 +0200 | [diff] [blame] | 491 | if (WARN_ON_ONCE(!sta->sdata->bss)) |
| 492 | return; |
Johannes Berg | 3e122be | 2008-07-09 14:40:34 +0200 | [diff] [blame] | 493 | |
Johannes Berg | c868cb3 | 2011-09-29 16:04:27 +0200 | [diff] [blame] | 494 | /* No need to do anything if the driver does all */ |
| 495 | if (local->hw.flags & IEEE80211_HW_AP_LINK_PS) |
| 496 | return; |
Johannes Berg | 004c872 | 2008-02-20 11:21:35 +0100 | [diff] [blame] | 497 | |
Johannes Berg | c868cb3 | 2011-09-29 16:04:27 +0200 | [diff] [blame] | 498 | if (sta->dead) |
| 499 | goto done; |
Johannes Berg | 3e122be | 2008-07-09 14:40:34 +0200 | [diff] [blame] | 500 | |
Johannes Berg | 948d887 | 2011-09-29 16:04:29 +0200 | [diff] [blame] | 501 | /* |
| 502 | * If all ACs are delivery-enabled then we should build |
| 503 | * the TIM bit for all ACs anyway; if only some are then |
| 504 | * we ignore those and build the TIM bit using only the |
| 505 | * non-enabled ones. |
| 506 | */ |
| 507 | if (ignore_for_tim == BIT(IEEE80211_NUM_ACS) - 1) |
| 508 | ignore_for_tim = 0; |
Johannes Berg | 3e122be | 2008-07-09 14:40:34 +0200 | [diff] [blame] | 509 | |
Johannes Berg | 948d887 | 2011-09-29 16:04:29 +0200 | [diff] [blame] | 510 | for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) { |
| 511 | unsigned long tids; |
| 512 | |
| 513 | if (ignore_for_tim & BIT(ac)) |
| 514 | continue; |
| 515 | |
| 516 | indicate_tim |= !skb_queue_empty(&sta->tx_filtered[ac]) || |
| 517 | !skb_queue_empty(&sta->ps_tx_buf[ac]); |
| 518 | if (indicate_tim) |
| 519 | break; |
| 520 | |
| 521 | tids = ieee80211_tids_for_ac(ac); |
| 522 | |
| 523 | indicate_tim |= |
| 524 | sta->driver_buffered_tids & tids; |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 525 | } |
Johannes Berg | 004c872 | 2008-02-20 11:21:35 +0100 | [diff] [blame] | 526 | |
Johannes Berg | c868cb3 | 2011-09-29 16:04:27 +0200 | [diff] [blame] | 527 | done: |
Johannes Berg | 4d33960 | 2011-12-15 11:24:20 +0100 | [diff] [blame] | 528 | spin_lock_irqsave(&local->tim_lock, flags); |
Johannes Berg | 004c872 | 2008-02-20 11:21:35 +0100 | [diff] [blame] | 529 | |
Johannes Berg | 948d887 | 2011-09-29 16:04:29 +0200 | [diff] [blame] | 530 | if (indicate_tim) |
Johannes Berg | c868cb3 | 2011-09-29 16:04:27 +0200 | [diff] [blame] | 531 | __bss_tim_set(bss, sta->sta.aid); |
| 532 | else |
| 533 | __bss_tim_clear(bss, sta->sta.aid); |
Johannes Berg | 3e122be | 2008-07-09 14:40:34 +0200 | [diff] [blame] | 534 | |
Johannes Berg | c868cb3 | 2011-09-29 16:04:27 +0200 | [diff] [blame] | 535 | if (local->ops->set_tim) { |
| 536 | local->tim_in_locked_section = true; |
Johannes Berg | 948d887 | 2011-09-29 16:04:29 +0200 | [diff] [blame] | 537 | drv_set_tim(local, &sta->sta, indicate_tim); |
Johannes Berg | c868cb3 | 2011-09-29 16:04:27 +0200 | [diff] [blame] | 538 | local->tim_in_locked_section = false; |
Johannes Berg | 004c872 | 2008-02-20 11:21:35 +0100 | [diff] [blame] | 539 | } |
Johannes Berg | 004c872 | 2008-02-20 11:21:35 +0100 | [diff] [blame] | 540 | |
Johannes Berg | 4d33960 | 2011-12-15 11:24:20 +0100 | [diff] [blame] | 541 | spin_unlock_irqrestore(&local->tim_lock, flags); |
Johannes Berg | 004c872 | 2008-02-20 11:21:35 +0100 | [diff] [blame] | 542 | } |
| 543 | |
Johannes Berg | cd0b8d8 | 2011-09-06 14:13:06 +0200 | [diff] [blame] | 544 | static bool sta_info_buffer_expired(struct sta_info *sta, struct sk_buff *skb) |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 545 | { |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 546 | struct ieee80211_tx_info *info; |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 547 | int timeout; |
| 548 | |
| 549 | if (!skb) |
Johannes Berg | cd0b8d8 | 2011-09-06 14:13:06 +0200 | [diff] [blame] | 550 | return false; |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 551 | |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 552 | info = IEEE80211_SKB_CB(skb); |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 553 | |
| 554 | /* Timeout: (2 * listen_interval * beacon_int * 1024 / 1000000) sec */ |
Johannes Berg | 57c4d7b | 2009-04-23 16:10:04 +0200 | [diff] [blame] | 555 | timeout = (sta->listen_interval * |
| 556 | sta->sdata->vif.bss_conf.beacon_int * |
| 557 | 32 / 15625) * HZ; |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 558 | if (timeout < STA_TX_BUFFER_EXPIRE) |
| 559 | timeout = STA_TX_BUFFER_EXPIRE; |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 560 | return time_after(jiffies, info->control.jiffies + timeout); |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 561 | } |
| 562 | |
| 563 | |
Johannes Berg | 948d887 | 2011-09-29 16:04:29 +0200 | [diff] [blame] | 564 | static bool sta_info_cleanup_expire_buffered_ac(struct ieee80211_local *local, |
| 565 | struct sta_info *sta, int ac) |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 566 | { |
| 567 | unsigned long flags; |
| 568 | struct sk_buff *skb; |
| 569 | |
Johannes Berg | 6075039 | 2011-09-29 16:04:28 +0200 | [diff] [blame] | 570 | /* |
| 571 | * First check for frames that should expire on the filtered |
| 572 | * queue. Frames here were rejected by the driver and are on |
| 573 | * a separate queue to avoid reordering with normal PS-buffered |
| 574 | * frames. They also aren't accounted for right now in the |
| 575 | * total_ps_buffered counter. |
| 576 | */ |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 577 | for (;;) { |
Johannes Berg | 948d887 | 2011-09-29 16:04:29 +0200 | [diff] [blame] | 578 | spin_lock_irqsave(&sta->tx_filtered[ac].lock, flags); |
| 579 | skb = skb_peek(&sta->tx_filtered[ac]); |
Johannes Berg | 57c4d7b | 2009-04-23 16:10:04 +0200 | [diff] [blame] | 580 | if (sta_info_buffer_expired(sta, skb)) |
Johannes Berg | 948d887 | 2011-09-29 16:04:29 +0200 | [diff] [blame] | 581 | skb = __skb_dequeue(&sta->tx_filtered[ac]); |
Johannes Berg | 836341a | 2008-02-20 02:07:21 +0100 | [diff] [blame] | 582 | else |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 583 | skb = NULL; |
Johannes Berg | 948d887 | 2011-09-29 16:04:29 +0200 | [diff] [blame] | 584 | spin_unlock_irqrestore(&sta->tx_filtered[ac].lock, flags); |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 585 | |
Johannes Berg | 6075039 | 2011-09-29 16:04:28 +0200 | [diff] [blame] | 586 | /* |
| 587 | * Frames are queued in order, so if this one |
| 588 | * hasn't expired yet we can stop testing. If |
| 589 | * we actually reached the end of the queue we |
| 590 | * also need to stop, of course. |
| 591 | */ |
| 592 | if (!skb) |
| 593 | break; |
| 594 | dev_kfree_skb(skb); |
| 595 | } |
| 596 | |
| 597 | /* |
| 598 | * Now also check the normal PS-buffered queue, this will |
| 599 | * only find something if the filtered queue was emptied |
| 600 | * since the filtered frames are all before the normal PS |
| 601 | * buffered frames. |
| 602 | */ |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 603 | for (;;) { |
Johannes Berg | 948d887 | 2011-09-29 16:04:29 +0200 | [diff] [blame] | 604 | spin_lock_irqsave(&sta->ps_tx_buf[ac].lock, flags); |
| 605 | skb = skb_peek(&sta->ps_tx_buf[ac]); |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 606 | if (sta_info_buffer_expired(sta, skb)) |
Johannes Berg | 948d887 | 2011-09-29 16:04:29 +0200 | [diff] [blame] | 607 | skb = __skb_dequeue(&sta->ps_tx_buf[ac]); |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 608 | else |
| 609 | skb = NULL; |
Johannes Berg | 948d887 | 2011-09-29 16:04:29 +0200 | [diff] [blame] | 610 | spin_unlock_irqrestore(&sta->ps_tx_buf[ac].lock, flags); |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 611 | |
Johannes Berg | 6075039 | 2011-09-29 16:04:28 +0200 | [diff] [blame] | 612 | /* |
| 613 | * frames are queued in order, so if this one |
| 614 | * hasn't expired yet (or we reached the end of |
| 615 | * the queue) we can stop testing |
| 616 | */ |
Johannes Berg | 836341a | 2008-02-20 02:07:21 +0100 | [diff] [blame] | 617 | if (!skb) |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 618 | break; |
Johannes Berg | 836341a | 2008-02-20 02:07:21 +0100 | [diff] [blame] | 619 | |
Johannes Berg | 836341a | 2008-02-20 02:07:21 +0100 | [diff] [blame] | 620 | local->total_ps_buffered--; |
Johannes Berg | f4ea83d | 2008-06-30 15:10:46 +0200 | [diff] [blame] | 621 | #ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG |
Johannes Berg | 0c68ae26 | 2008-10-27 15:56:10 -0700 | [diff] [blame] | 622 | printk(KERN_DEBUG "Buffered frame expired (STA %pM)\n", |
| 623 | sta->sta.addr); |
Johannes Berg | f4ea83d | 2008-06-30 15:10:46 +0200 | [diff] [blame] | 624 | #endif |
Johannes Berg | 836341a | 2008-02-20 02:07:21 +0100 | [diff] [blame] | 625 | dev_kfree_skb(skb); |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 626 | } |
Juuso Oikarinen | 3393a60 | 2010-04-19 10:12:52 +0300 | [diff] [blame] | 627 | |
Johannes Berg | 6075039 | 2011-09-29 16:04:28 +0200 | [diff] [blame] | 628 | /* |
| 629 | * Finally, recalculate the TIM bit for this station -- it might |
| 630 | * now be clear because the station was too slow to retrieve its |
| 631 | * frames. |
| 632 | */ |
| 633 | sta_info_recalc_tim(sta); |
| 634 | |
| 635 | /* |
| 636 | * Return whether there are any frames still buffered, this is |
| 637 | * used to check whether the cleanup timer still needs to run, |
| 638 | * if there are no frames we don't need to rearm the timer. |
| 639 | */ |
Johannes Berg | 948d887 | 2011-09-29 16:04:29 +0200 | [diff] [blame] | 640 | return !(skb_queue_empty(&sta->ps_tx_buf[ac]) && |
| 641 | skb_queue_empty(&sta->tx_filtered[ac])); |
| 642 | } |
| 643 | |
| 644 | static bool sta_info_cleanup_expire_buffered(struct ieee80211_local *local, |
| 645 | struct sta_info *sta) |
| 646 | { |
| 647 | bool have_buffered = false; |
| 648 | int ac; |
| 649 | |
| 650 | /* This is only necessary for stations on BSS interfaces */ |
| 651 | if (!sta->sdata->bss) |
| 652 | return false; |
| 653 | |
| 654 | for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) |
| 655 | have_buffered |= |
| 656 | sta_info_cleanup_expire_buffered_ac(local, sta, ac); |
| 657 | |
| 658 | return have_buffered; |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 659 | } |
| 660 | |
Johannes Berg | 83d5cc0 | 2012-01-12 09:31:10 +0100 | [diff] [blame] | 661 | int __must_check __sta_info_destroy(struct sta_info *sta) |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 662 | { |
| 663 | struct ieee80211_local *local; |
| 664 | struct ieee80211_sub_if_data *sdata; |
Johannes Berg | 948d887 | 2011-09-29 16:04:29 +0200 | [diff] [blame] | 665 | int ret, i, ac; |
Yogesh Ashok Powar | 42624d4 | 2011-12-08 14:56:15 +0530 | [diff] [blame] | 666 | struct tid_ampdu_tx *tid_tx; |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 667 | |
| 668 | might_sleep(); |
| 669 | |
| 670 | if (!sta) |
| 671 | return -ENOENT; |
| 672 | |
| 673 | local = sta->local; |
| 674 | sdata = sta->sdata; |
| 675 | |
Johannes Berg | 83d5cc0 | 2012-01-12 09:31:10 +0100 | [diff] [blame] | 676 | lockdep_assert_held(&local->sta_mtx); |
| 677 | |
Johannes Berg | 098a607 | 2010-04-06 11:18:47 +0200 | [diff] [blame] | 678 | /* |
| 679 | * Before removing the station from the driver and |
| 680 | * rate control, it might still start new aggregation |
| 681 | * sessions -- block that to make sure the tear-down |
| 682 | * will be sufficient. |
| 683 | */ |
Johannes Berg | c2c98fd | 2011-09-29 16:04:36 +0200 | [diff] [blame] | 684 | set_sta_flag(sta, WLAN_STA_BLOCK_BA); |
Johannes Berg | 53f73c0 | 2010-10-05 19:37:40 +0200 | [diff] [blame] | 685 | ieee80211_sta_tear_down_BA_sessions(sta, true); |
Johannes Berg | 098a607 | 2010-04-06 11:18:47 +0200 | [diff] [blame] | 686 | |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 687 | ret = sta_info_hash_del(local, sta); |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 688 | if (ret) |
| 689 | return ret; |
| 690 | |
Johannes Berg | 4d33960 | 2011-12-15 11:24:20 +0100 | [diff] [blame] | 691 | list_del(&sta->list); |
| 692 | |
Johannes Berg | 8cb2315 | 2011-05-12 15:07:15 +0200 | [diff] [blame] | 693 | mutex_lock(&local->key_mtx); |
Johannes Berg | e31b821 | 2010-10-05 19:39:30 +0200 | [diff] [blame] | 694 | for (i = 0; i < NUM_DEFAULT_KEYS; i++) |
Johannes Berg | 40b275b | 2011-05-13 14:15:49 +0200 | [diff] [blame] | 695 | __ieee80211_key_free(key_mtx_dereference(local, sta->gtk[i])); |
Johannes Berg | e31b821 | 2010-10-05 19:39:30 +0200 | [diff] [blame] | 696 | if (sta->ptk) |
Johannes Berg | 40b275b | 2011-05-13 14:15:49 +0200 | [diff] [blame] | 697 | __ieee80211_key_free(key_mtx_dereference(local, sta->ptk)); |
Johannes Berg | 8cb2315 | 2011-05-12 15:07:15 +0200 | [diff] [blame] | 698 | mutex_unlock(&local->key_mtx); |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 699 | |
| 700 | sta->dead = true; |
| 701 | |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 702 | local->num_sta--; |
| 703 | local->sta_generation++; |
| 704 | |
| 705 | if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN) |
Stephen Hemminger | a9b3cd7 | 2011-08-01 16:19:00 +0000 | [diff] [blame] | 706 | RCU_INIT_POINTER(sdata->u.vlan.sta, NULL); |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 707 | |
Johannes Berg | 83d5cc0 | 2012-01-12 09:31:10 +0100 | [diff] [blame] | 708 | while (sta->sta_state > IEEE80211_STA_NONE) { |
Johannes Berg | f09603a | 2012-01-20 13:55:21 +0100 | [diff] [blame] | 709 | ret = sta_info_move_state(sta, sta->sta_state - 1); |
| 710 | if (ret) { |
Johannes Berg | 83d5cc0 | 2012-01-12 09:31:10 +0100 | [diff] [blame] | 711 | WARN_ON_ONCE(1); |
| 712 | break; |
| 713 | } |
| 714 | } |
Johannes Berg | d9a7ddb | 2011-12-14 12:35:30 +0100 | [diff] [blame] | 715 | |
Johannes Berg | f09603a | 2012-01-20 13:55:21 +0100 | [diff] [blame] | 716 | if (sta->uploaded) { |
Johannes Berg | f09603a | 2012-01-20 13:55:21 +0100 | [diff] [blame] | 717 | ret = drv_sta_state(local, sdata, sta, IEEE80211_STA_NONE, |
| 718 | IEEE80211_STA_NOTEXIST); |
| 719 | WARN_ON_ONCE(ret != 0); |
| 720 | } |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 721 | |
Johannes Berg | e64b379 | 2010-04-06 11:18:43 +0200 | [diff] [blame] | 722 | /* |
| 723 | * At this point, after we wait for an RCU grace period, |
| 724 | * neither mac80211 nor the driver can reference this |
| 725 | * sta struct any more except by still existing timers |
| 726 | * associated with this station that we clean up below. |
| 727 | */ |
| 728 | synchronize_rcu(); |
| 729 | |
Helmut Schaa | 4f3eb0b | 2012-01-27 11:02:53 +0100 | [diff] [blame] | 730 | if (test_sta_flag(sta, WLAN_STA_PS_STA)) { |
| 731 | BUG_ON(!sdata->bss); |
| 732 | |
| 733 | clear_sta_flag(sta, WLAN_STA_PS_STA); |
| 734 | |
| 735 | atomic_dec(&sdata->bss->num_sta_ps); |
| 736 | sta_info_recalc_tim(sta); |
| 737 | } |
| 738 | |
Johannes Berg | 948d887 | 2011-09-29 16:04:29 +0200 | [diff] [blame] | 739 | for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) { |
| 740 | local->total_ps_buffered -= skb_queue_len(&sta->ps_tx_buf[ac]); |
| 741 | __skb_queue_purge(&sta->ps_tx_buf[ac]); |
| 742 | __skb_queue_purge(&sta->tx_filtered[ac]); |
| 743 | } |
Johannes Berg | c868cb3 | 2011-09-29 16:04:27 +0200 | [diff] [blame] | 744 | |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 745 | #ifdef CONFIG_MAC80211_MESH |
Johannes Berg | e64b379 | 2010-04-06 11:18:43 +0200 | [diff] [blame] | 746 | if (ieee80211_vif_is_mesh(&sdata->vif)) |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 747 | mesh_accept_plinks_update(sdata); |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 748 | #endif |
| 749 | |
| 750 | #ifdef CONFIG_MAC80211_VERBOSE_DEBUG |
Joe Perches | 0fb9a9e | 2010-08-20 16:25:38 -0700 | [diff] [blame] | 751 | wiphy_debug(local->hw.wiphy, "Removed STA %pM\n", sta->sta.addr); |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 752 | #endif /* CONFIG_MAC80211_VERBOSE_DEBUG */ |
| 753 | cancel_work_sync(&sta->drv_unblock_wk); |
| 754 | |
Jouni Malinen | ec15e68 | 2011-03-23 15:29:52 +0200 | [diff] [blame] | 755 | cfg80211_del_sta(sdata->dev, sta->sta.addr, GFP_KERNEL); |
| 756 | |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 757 | rate_control_remove_sta_debugfs(sta); |
| 758 | ieee80211_sta_debugfs_remove(sta); |
| 759 | |
| 760 | #ifdef CONFIG_MAC80211_MESH |
| 761 | if (ieee80211_vif_is_mesh(&sta->sdata->vif)) { |
| 762 | mesh_plink_deactivate(sta); |
| 763 | del_timer_sync(&sta->plink_timer); |
| 764 | } |
| 765 | #endif |
| 766 | |
Johannes Berg | 151a02f | 2012-01-17 10:30:01 +0100 | [diff] [blame] | 767 | /* |
| 768 | * Destroy aggregation state here. It would be nice to wait for the |
| 769 | * driver to finish aggregation stop and then clean up, but for now |
| 770 | * drivers have to handle aggregation stop being requested, followed |
| 771 | * directly by station destruction. |
Yogesh Ashok Powar | 42624d4 | 2011-12-08 14:56:15 +0530 | [diff] [blame] | 772 | */ |
| 773 | for (i = 0; i < STA_TID_NUM; i++) { |
Johannes Berg | 151a02f | 2012-01-17 10:30:01 +0100 | [diff] [blame] | 774 | tid_tx = rcu_dereference_raw(sta->ampdu_mlme.tid_tx[i]); |
Yogesh Ashok Powar | 27bf888 | 2011-12-16 11:47:15 +0530 | [diff] [blame] | 775 | if (!tid_tx) |
Yogesh Ashok Powar | 42624d4 | 2011-12-08 14:56:15 +0530 | [diff] [blame] | 776 | continue; |
Johannes Berg | 151a02f | 2012-01-17 10:30:01 +0100 | [diff] [blame] | 777 | __skb_queue_purge(&tid_tx->pending); |
| 778 | kfree(tid_tx); |
Yogesh Ashok Powar | 42624d4 | 2011-12-08 14:56:15 +0530 | [diff] [blame] | 779 | } |
| 780 | |
Johannes Berg | d9a7ddb | 2011-12-14 12:35:30 +0100 | [diff] [blame] | 781 | sta_info_free(local, sta); |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 782 | |
| 783 | return 0; |
| 784 | } |
| 785 | |
| 786 | int sta_info_destroy_addr(struct ieee80211_sub_if_data *sdata, const u8 *addr) |
| 787 | { |
| 788 | struct sta_info *sta; |
| 789 | int ret; |
| 790 | |
| 791 | mutex_lock(&sdata->local->sta_mtx); |
Johannes Berg | 7852e36 | 2012-01-20 13:55:24 +0100 | [diff] [blame] | 792 | sta = sta_info_get(sdata, addr); |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 793 | ret = __sta_info_destroy(sta); |
| 794 | mutex_unlock(&sdata->local->sta_mtx); |
| 795 | |
| 796 | return ret; |
| 797 | } |
| 798 | |
| 799 | int sta_info_destroy_addr_bss(struct ieee80211_sub_if_data *sdata, |
| 800 | const u8 *addr) |
| 801 | { |
| 802 | struct sta_info *sta; |
| 803 | int ret; |
| 804 | |
| 805 | mutex_lock(&sdata->local->sta_mtx); |
Johannes Berg | 7852e36 | 2012-01-20 13:55:24 +0100 | [diff] [blame] | 806 | sta = sta_info_get_bss(sdata, addr); |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 807 | ret = __sta_info_destroy(sta); |
| 808 | mutex_unlock(&sdata->local->sta_mtx); |
| 809 | |
| 810 | return ret; |
| 811 | } |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 812 | |
| 813 | static void sta_info_cleanup(unsigned long data) |
| 814 | { |
| 815 | struct ieee80211_local *local = (struct ieee80211_local *) data; |
| 816 | struct sta_info *sta; |
Juuso Oikarinen | 3393a60 | 2010-04-19 10:12:52 +0300 | [diff] [blame] | 817 | bool timer_needed = false; |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 818 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 819 | rcu_read_lock(); |
| 820 | list_for_each_entry_rcu(sta, &local->sta_list, list) |
Juuso Oikarinen | 3393a60 | 2010-04-19 10:12:52 +0300 | [diff] [blame] | 821 | if (sta_info_cleanup_expire_buffered(local, sta)) |
| 822 | timer_needed = true; |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 823 | rcu_read_unlock(); |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 824 | |
Johannes Berg | 5bb644a | 2009-05-17 11:40:42 +0200 | [diff] [blame] | 825 | if (local->quiescing) |
| 826 | return; |
| 827 | |
Juuso Oikarinen | 3393a60 | 2010-04-19 10:12:52 +0300 | [diff] [blame] | 828 | if (!timer_needed) |
| 829 | return; |
| 830 | |
Johannes Berg | 26d5953 | 2011-04-01 13:52:48 +0200 | [diff] [blame] | 831 | mod_timer(&local->sta_cleanup, |
| 832 | round_jiffies(jiffies + STA_INFO_CLEANUP_INTERVAL)); |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 833 | } |
| 834 | |
| 835 | void sta_info_init(struct ieee80211_local *local) |
| 836 | { |
Johannes Berg | 4d33960 | 2011-12-15 11:24:20 +0100 | [diff] [blame] | 837 | spin_lock_init(&local->tim_lock); |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 838 | mutex_init(&local->sta_mtx); |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 839 | INIT_LIST_HEAD(&local->sta_list); |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 840 | |
Pavel Emelyanov | b24b8a2 | 2008-01-23 21:20:07 -0800 | [diff] [blame] | 841 | setup_timer(&local->sta_cleanup, sta_info_cleanup, |
| 842 | (unsigned long)local); |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 843 | } |
| 844 | |
| 845 | void sta_info_stop(struct ieee80211_local *local) |
| 846 | { |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 847 | del_timer(&local->sta_cleanup); |
Michael Wu | be8755e | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 848 | sta_info_flush(local, NULL); |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 849 | } |
| 850 | |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 851 | /** |
| 852 | * sta_info_flush - flush matching STA entries from the STA table |
Johannes Berg | 44213b5 | 2008-02-25 16:27:49 +0100 | [diff] [blame] | 853 | * |
| 854 | * Returns the number of removed STA entries. |
| 855 | * |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 856 | * @local: local interface data |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 857 | * @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] | 858 | */ |
Johannes Berg | 44213b5 | 2008-02-25 16:27:49 +0100 | [diff] [blame] | 859 | int sta_info_flush(struct ieee80211_local *local, |
Johannes Berg | af8cdcd | 2009-04-19 21:25:43 +0200 | [diff] [blame] | 860 | struct ieee80211_sub_if_data *sdata) |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 861 | { |
| 862 | struct sta_info *sta, *tmp; |
Johannes Berg | 44213b5 | 2008-02-25 16:27:49 +0100 | [diff] [blame] | 863 | int ret = 0; |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 864 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 865 | might_sleep(); |
| 866 | |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 867 | mutex_lock(&local->sta_mtx); |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 868 | list_for_each_entry_safe(sta, tmp, &local->sta_list, list) { |
Johannes Berg | 3431683 | 2012-02-25 21:40:46 +0100 | [diff] [blame] | 869 | if (!sdata || sdata == sta->sdata) { |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 870 | WARN_ON(__sta_info_destroy(sta)); |
Johannes Berg | 3431683 | 2012-02-25 21:40:46 +0100 | [diff] [blame] | 871 | ret++; |
| 872 | } |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 873 | } |
| 874 | mutex_unlock(&local->sta_mtx); |
Johannes Berg | 44213b5 | 2008-02-25 16:27:49 +0100 | [diff] [blame] | 875 | |
| 876 | return ret; |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 877 | } |
Johannes Berg | dc6676b | 2008-03-31 19:23:03 +0200 | [diff] [blame] | 878 | |
Johannes Berg | 24723d1 | 2008-09-11 00:01:46 +0200 | [diff] [blame] | 879 | void ieee80211_sta_expire(struct ieee80211_sub_if_data *sdata, |
| 880 | unsigned long exp_time) |
| 881 | { |
| 882 | struct ieee80211_local *local = sdata->local; |
| 883 | struct sta_info *sta, *tmp; |
Johannes Berg | 24723d1 | 2008-09-11 00:01:46 +0200 | [diff] [blame] | 884 | |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 885 | mutex_lock(&local->sta_mtx); |
Mohammed Shafi Shajakhan | e46a2cf | 2011-12-26 10:43:29 +0530 | [diff] [blame] | 886 | |
| 887 | list_for_each_entry_safe(sta, tmp, &local->sta_list, list) { |
Marek Lindner | ec2b774 | 2011-12-20 23:16:52 +0800 | [diff] [blame] | 888 | if (sdata != sta->sdata) |
| 889 | continue; |
| 890 | |
Johannes Berg | 24723d1 | 2008-09-11 00:01:46 +0200 | [diff] [blame] | 891 | if (time_after(jiffies, sta->last_rx + exp_time)) { |
| 892 | #ifdef CONFIG_MAC80211_IBSS_DEBUG |
Johannes Berg | 0c68ae26 | 2008-10-27 15:56:10 -0700 | [diff] [blame] | 893 | printk(KERN_DEBUG "%s: expiring inactive STA %pM\n", |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 894 | sdata->name, sta->sta.addr); |
Johannes Berg | 24723d1 | 2008-09-11 00:01:46 +0200 | [diff] [blame] | 895 | #endif |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 896 | WARN_ON(__sta_info_destroy(sta)); |
Johannes Berg | 24723d1 | 2008-09-11 00:01:46 +0200 | [diff] [blame] | 897 | } |
Mohammed Shafi Shajakhan | e46a2cf | 2011-12-26 10:43:29 +0530 | [diff] [blame] | 898 | } |
| 899 | |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 900 | mutex_unlock(&local->sta_mtx); |
Johannes Berg | 24723d1 | 2008-09-11 00:01:46 +0200 | [diff] [blame] | 901 | } |
Johannes Berg | 17741cd | 2008-09-11 00:02:02 +0200 | [diff] [blame] | 902 | |
Ben Greear | 686b9cb | 2010-09-23 09:44:36 -0700 | [diff] [blame] | 903 | struct ieee80211_sta *ieee80211_find_sta_by_ifaddr(struct ieee80211_hw *hw, |
| 904 | const u8 *addr, |
| 905 | const u8 *localaddr) |
Johannes Berg | 17741cd | 2008-09-11 00:02:02 +0200 | [diff] [blame] | 906 | { |
Johannes Berg | abe6063 | 2009-11-25 17:46:18 +0100 | [diff] [blame] | 907 | struct sta_info *sta, *nxt; |
Johannes Berg | 17741cd | 2008-09-11 00:02:02 +0200 | [diff] [blame] | 908 | |
Ben Greear | 686b9cb | 2010-09-23 09:44:36 -0700 | [diff] [blame] | 909 | /* |
| 910 | * Just return a random station if localaddr is NULL |
| 911 | * ... first in list. |
| 912 | */ |
Johannes Berg | f7c6559 | 2010-04-30 13:48:36 +0200 | [diff] [blame] | 913 | for_each_sta_info(hw_to_local(hw), addr, sta, nxt) { |
Ben Greear | 686b9cb | 2010-09-23 09:44:36 -0700 | [diff] [blame] | 914 | if (localaddr && |
| 915 | compare_ether_addr(sta->sdata->vif.addr, localaddr) != 0) |
| 916 | continue; |
Johannes Berg | f7c6559 | 2010-04-30 13:48:36 +0200 | [diff] [blame] | 917 | if (!sta->uploaded) |
| 918 | return NULL; |
Johannes Berg | abe6063 | 2009-11-25 17:46:18 +0100 | [diff] [blame] | 919 | return &sta->sta; |
Johannes Berg | f7c6559 | 2010-04-30 13:48:36 +0200 | [diff] [blame] | 920 | } |
| 921 | |
Johannes Berg | abe6063 | 2009-11-25 17:46:18 +0100 | [diff] [blame] | 922 | return NULL; |
Johannes Berg | 17741cd | 2008-09-11 00:02:02 +0200 | [diff] [blame] | 923 | } |
Ben Greear | 686b9cb | 2010-09-23 09:44:36 -0700 | [diff] [blame] | 924 | EXPORT_SYMBOL_GPL(ieee80211_find_sta_by_ifaddr); |
Johannes Berg | 5ed176e | 2009-11-04 14:42:28 +0100 | [diff] [blame] | 925 | |
| 926 | struct ieee80211_sta *ieee80211_find_sta(struct ieee80211_vif *vif, |
| 927 | const u8 *addr) |
| 928 | { |
Johannes Berg | f7c6559 | 2010-04-30 13:48:36 +0200 | [diff] [blame] | 929 | struct sta_info *sta; |
Johannes Berg | 5ed176e | 2009-11-04 14:42:28 +0100 | [diff] [blame] | 930 | |
| 931 | if (!vif) |
| 932 | return NULL; |
| 933 | |
Johannes Berg | f7c6559 | 2010-04-30 13:48:36 +0200 | [diff] [blame] | 934 | sta = sta_info_get_bss(vif_to_sdata(vif), addr); |
| 935 | if (!sta) |
| 936 | return NULL; |
Johannes Berg | 5ed176e | 2009-11-04 14:42:28 +0100 | [diff] [blame] | 937 | |
Johannes Berg | f7c6559 | 2010-04-30 13:48:36 +0200 | [diff] [blame] | 938 | if (!sta->uploaded) |
| 939 | return NULL; |
| 940 | |
| 941 | return &sta->sta; |
Johannes Berg | 5ed176e | 2009-11-04 14:42:28 +0100 | [diff] [blame] | 942 | } |
Johannes Berg | 17741cd | 2008-09-11 00:02:02 +0200 | [diff] [blame] | 943 | EXPORT_SYMBOL(ieee80211_find_sta); |
Johannes Berg | af81858 | 2009-11-06 11:35:50 +0100 | [diff] [blame] | 944 | |
Johannes Berg | 50a9432 | 2010-11-16 11:50:28 -0800 | [diff] [blame] | 945 | static void clear_sta_ps_flags(void *_sta) |
| 946 | { |
| 947 | struct sta_info *sta = _sta; |
Helmut Schaa | 608383b | 2012-01-30 15:18:00 +0100 | [diff] [blame] | 948 | struct ieee80211_sub_if_data *sdata = sta->sdata; |
Johannes Berg | 50a9432 | 2010-11-16 11:50:28 -0800 | [diff] [blame] | 949 | |
Johannes Berg | c2c98fd | 2011-09-29 16:04:36 +0200 | [diff] [blame] | 950 | clear_sta_flag(sta, WLAN_STA_PS_DRIVER); |
Helmut Schaa | 608383b | 2012-01-30 15:18:00 +0100 | [diff] [blame] | 951 | if (test_and_clear_sta_flag(sta, WLAN_STA_PS_STA)) |
| 952 | atomic_dec(&sdata->bss->num_sta_ps); |
Johannes Berg | 50a9432 | 2010-11-16 11:50:28 -0800 | [diff] [blame] | 953 | } |
| 954 | |
Johannes Berg | af81858 | 2009-11-06 11:35:50 +0100 | [diff] [blame] | 955 | /* powersave support code */ |
| 956 | void ieee80211_sta_ps_deliver_wakeup(struct sta_info *sta) |
| 957 | { |
| 958 | struct ieee80211_sub_if_data *sdata = sta->sdata; |
| 959 | struct ieee80211_local *local = sdata->local; |
Johannes Berg | 948d887 | 2011-09-29 16:04:29 +0200 | [diff] [blame] | 960 | struct sk_buff_head pending; |
| 961 | int filtered = 0, buffered = 0, ac; |
Johannes Berg | af81858 | 2009-11-06 11:35:50 +0100 | [diff] [blame] | 962 | |
Johannes Berg | c2c98fd | 2011-09-29 16:04:36 +0200 | [diff] [blame] | 963 | clear_sta_flag(sta, WLAN_STA_SP); |
Johannes Berg | 47086fc | 2011-09-29 16:04:33 +0200 | [diff] [blame] | 964 | |
Johannes Berg | 948d887 | 2011-09-29 16:04:29 +0200 | [diff] [blame] | 965 | BUILD_BUG_ON(BITS_TO_LONGS(STA_TID_NUM) > 1); |
| 966 | sta->driver_buffered_tids = 0; |
| 967 | |
Arik Nemtsov | d057e5a | 2011-01-31 22:29:13 +0200 | [diff] [blame] | 968 | if (!(local->hw.flags & IEEE80211_HW_AP_LINK_PS)) |
| 969 | drv_sta_notify(local, sdata, STA_NOTIFY_AWAKE, &sta->sta); |
Johannes Berg | af81858 | 2009-11-06 11:35:50 +0100 | [diff] [blame] | 970 | |
Johannes Berg | 948d887 | 2011-09-29 16:04:29 +0200 | [diff] [blame] | 971 | skb_queue_head_init(&pending); |
Johannes Berg | af81858 | 2009-11-06 11:35:50 +0100 | [diff] [blame] | 972 | |
| 973 | /* Send all buffered frames to the station */ |
Johannes Berg | 948d887 | 2011-09-29 16:04:29 +0200 | [diff] [blame] | 974 | for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) { |
| 975 | int count = skb_queue_len(&pending), tmp; |
| 976 | |
| 977 | skb_queue_splice_tail_init(&sta->tx_filtered[ac], &pending); |
| 978 | tmp = skb_queue_len(&pending); |
| 979 | filtered += tmp - count; |
| 980 | count = tmp; |
| 981 | |
| 982 | skb_queue_splice_tail_init(&sta->ps_tx_buf[ac], &pending); |
| 983 | tmp = skb_queue_len(&pending); |
| 984 | buffered += tmp - count; |
| 985 | } |
| 986 | |
| 987 | ieee80211_add_pending_skbs_fn(local, &pending, clear_sta_ps_flags, sta); |
| 988 | |
Johannes Berg | af81858 | 2009-11-06 11:35:50 +0100 | [diff] [blame] | 989 | local->total_ps_buffered -= buffered; |
| 990 | |
Johannes Berg | c868cb3 | 2011-09-29 16:04:27 +0200 | [diff] [blame] | 991 | sta_info_recalc_tim(sta); |
| 992 | |
Johannes Berg | af81858 | 2009-11-06 11:35:50 +0100 | [diff] [blame] | 993 | #ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG |
| 994 | 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] | 995 | "since STA not sleeping anymore\n", sdata->name, |
Johannes Berg | 948d887 | 2011-09-29 16:04:29 +0200 | [diff] [blame] | 996 | sta->sta.addr, sta->sta.aid, filtered, buffered); |
Johannes Berg | af81858 | 2009-11-06 11:35:50 +0100 | [diff] [blame] | 997 | #endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */ |
| 998 | } |
| 999 | |
Johannes Berg | ce662b44 | 2011-09-29 16:04:34 +0200 | [diff] [blame] | 1000 | static void ieee80211_send_null_response(struct ieee80211_sub_if_data *sdata, |
| 1001 | struct sta_info *sta, int tid, |
Johannes Berg | 40b9640 | 2011-09-29 16:04:38 +0200 | [diff] [blame] | 1002 | enum ieee80211_frame_release_type reason) |
Johannes Berg | ce662b44 | 2011-09-29 16:04:34 +0200 | [diff] [blame] | 1003 | { |
| 1004 | struct ieee80211_local *local = sdata->local; |
| 1005 | struct ieee80211_qos_hdr *nullfunc; |
| 1006 | struct sk_buff *skb; |
| 1007 | int size = sizeof(*nullfunc); |
| 1008 | __le16 fc; |
Johannes Berg | c2c98fd | 2011-09-29 16:04:36 +0200 | [diff] [blame] | 1009 | bool qos = test_sta_flag(sta, WLAN_STA_WME); |
Johannes Berg | ce662b44 | 2011-09-29 16:04:34 +0200 | [diff] [blame] | 1010 | struct ieee80211_tx_info *info; |
| 1011 | |
| 1012 | if (qos) { |
| 1013 | fc = cpu_to_le16(IEEE80211_FTYPE_DATA | |
| 1014 | IEEE80211_STYPE_QOS_NULLFUNC | |
| 1015 | IEEE80211_FCTL_FROMDS); |
| 1016 | } else { |
| 1017 | size -= 2; |
| 1018 | fc = cpu_to_le16(IEEE80211_FTYPE_DATA | |
| 1019 | IEEE80211_STYPE_NULLFUNC | |
| 1020 | IEEE80211_FCTL_FROMDS); |
| 1021 | } |
| 1022 | |
| 1023 | skb = dev_alloc_skb(local->hw.extra_tx_headroom + size); |
| 1024 | if (!skb) |
| 1025 | return; |
| 1026 | |
| 1027 | skb_reserve(skb, local->hw.extra_tx_headroom); |
| 1028 | |
| 1029 | nullfunc = (void *) skb_put(skb, size); |
| 1030 | nullfunc->frame_control = fc; |
| 1031 | nullfunc->duration_id = 0; |
| 1032 | memcpy(nullfunc->addr1, sta->sta.addr, ETH_ALEN); |
| 1033 | memcpy(nullfunc->addr2, sdata->vif.addr, ETH_ALEN); |
| 1034 | memcpy(nullfunc->addr3, sdata->vif.addr, ETH_ALEN); |
| 1035 | |
Johannes Berg | 59b6625 | 2011-10-13 13:19:19 +0200 | [diff] [blame] | 1036 | skb->priority = tid; |
| 1037 | skb_set_queue_mapping(skb, ieee802_1d_to_ac[tid]); |
Johannes Berg | ce662b44 | 2011-09-29 16:04:34 +0200 | [diff] [blame] | 1038 | if (qos) { |
Johannes Berg | ce662b44 | 2011-09-29 16:04:34 +0200 | [diff] [blame] | 1039 | nullfunc->qos_ctrl = cpu_to_le16(tid); |
| 1040 | |
Johannes Berg | 40b9640 | 2011-09-29 16:04:38 +0200 | [diff] [blame] | 1041 | if (reason == IEEE80211_FRAME_RELEASE_UAPSD) |
Johannes Berg | ce662b44 | 2011-09-29 16:04:34 +0200 | [diff] [blame] | 1042 | nullfunc->qos_ctrl |= |
| 1043 | cpu_to_le16(IEEE80211_QOS_CTL_EOSP); |
| 1044 | } |
| 1045 | |
| 1046 | info = IEEE80211_SKB_CB(skb); |
| 1047 | |
| 1048 | /* |
| 1049 | * Tell TX path to send this frame even though the |
| 1050 | * STA may still remain is PS mode after this frame |
Johannes Berg | deeaee1 | 2011-09-29 16:04:35 +0200 | [diff] [blame] | 1051 | * exchange. Also set EOSP to indicate this packet |
| 1052 | * ends the poll/service period. |
Johannes Berg | ce662b44 | 2011-09-29 16:04:34 +0200 | [diff] [blame] | 1053 | */ |
Johannes Berg | 02f2f1a | 2012-02-27 12:18:30 +0100 | [diff] [blame] | 1054 | info->flags |= IEEE80211_TX_CTL_NO_PS_BUFFER | |
Johannes Berg | deeaee1 | 2011-09-29 16:04:35 +0200 | [diff] [blame] | 1055 | IEEE80211_TX_STATUS_EOSP | |
| 1056 | IEEE80211_TX_CTL_REQ_TX_STATUS; |
Johannes Berg | ce662b44 | 2011-09-29 16:04:34 +0200 | [diff] [blame] | 1057 | |
Johannes Berg | 40b9640 | 2011-09-29 16:04:38 +0200 | [diff] [blame] | 1058 | drv_allow_buffered_frames(local, sta, BIT(tid), 1, reason, false); |
| 1059 | |
Johannes Berg | ce662b44 | 2011-09-29 16:04:34 +0200 | [diff] [blame] | 1060 | ieee80211_xmit(sdata, skb); |
| 1061 | } |
| 1062 | |
Johannes Berg | 47086fc | 2011-09-29 16:04:33 +0200 | [diff] [blame] | 1063 | static void |
| 1064 | ieee80211_sta_ps_deliver_response(struct sta_info *sta, |
| 1065 | int n_frames, u8 ignored_acs, |
| 1066 | enum ieee80211_frame_release_type reason) |
Johannes Berg | af81858 | 2009-11-06 11:35:50 +0100 | [diff] [blame] | 1067 | { |
| 1068 | struct ieee80211_sub_if_data *sdata = sta->sdata; |
| 1069 | struct ieee80211_local *local = sdata->local; |
Johannes Berg | 4049e09 | 2011-09-29 16:04:32 +0200 | [diff] [blame] | 1070 | bool found = false; |
Johannes Berg | 948d887 | 2011-09-29 16:04:29 +0200 | [diff] [blame] | 1071 | bool more_data = false; |
| 1072 | int ac; |
Johannes Berg | 4049e09 | 2011-09-29 16:04:32 +0200 | [diff] [blame] | 1073 | unsigned long driver_release_tids = 0; |
Johannes Berg | 47086fc | 2011-09-29 16:04:33 +0200 | [diff] [blame] | 1074 | struct sk_buff_head frames; |
| 1075 | |
Johannes Berg | deeaee1 | 2011-09-29 16:04:35 +0200 | [diff] [blame] | 1076 | /* Service or PS-Poll period starts */ |
Johannes Berg | c2c98fd | 2011-09-29 16:04:36 +0200 | [diff] [blame] | 1077 | set_sta_flag(sta, WLAN_STA_SP); |
Johannes Berg | deeaee1 | 2011-09-29 16:04:35 +0200 | [diff] [blame] | 1078 | |
Johannes Berg | 47086fc | 2011-09-29 16:04:33 +0200 | [diff] [blame] | 1079 | __skb_queue_head_init(&frames); |
Johannes Berg | af81858 | 2009-11-06 11:35:50 +0100 | [diff] [blame] | 1080 | |
Johannes Berg | 948d887 | 2011-09-29 16:04:29 +0200 | [diff] [blame] | 1081 | /* |
Johannes Berg | 47086fc | 2011-09-29 16:04:33 +0200 | [diff] [blame] | 1082 | * Get response frame(s) and more data bit for it. |
Johannes Berg | 948d887 | 2011-09-29 16:04:29 +0200 | [diff] [blame] | 1083 | */ |
| 1084 | for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) { |
Johannes Berg | 4049e09 | 2011-09-29 16:04:32 +0200 | [diff] [blame] | 1085 | unsigned long tids; |
| 1086 | |
Johannes Berg | 47086fc | 2011-09-29 16:04:33 +0200 | [diff] [blame] | 1087 | if (ignored_acs & BIT(ac)) |
Johannes Berg | 948d887 | 2011-09-29 16:04:29 +0200 | [diff] [blame] | 1088 | continue; |
| 1089 | |
Johannes Berg | 4049e09 | 2011-09-29 16:04:32 +0200 | [diff] [blame] | 1090 | tids = ieee80211_tids_for_ac(ac); |
| 1091 | |
| 1092 | if (!found) { |
| 1093 | driver_release_tids = sta->driver_buffered_tids & tids; |
| 1094 | if (driver_release_tids) { |
| 1095 | found = true; |
| 1096 | } else { |
Johannes Berg | 47086fc | 2011-09-29 16:04:33 +0200 | [diff] [blame] | 1097 | struct sk_buff *skb; |
| 1098 | |
| 1099 | while (n_frames > 0) { |
| 1100 | skb = skb_dequeue(&sta->tx_filtered[ac]); |
| 1101 | if (!skb) { |
| 1102 | skb = skb_dequeue( |
| 1103 | &sta->ps_tx_buf[ac]); |
| 1104 | if (skb) |
| 1105 | local->total_ps_buffered--; |
| 1106 | } |
| 1107 | if (!skb) |
| 1108 | break; |
| 1109 | n_frames--; |
Johannes Berg | 4049e09 | 2011-09-29 16:04:32 +0200 | [diff] [blame] | 1110 | found = true; |
Johannes Berg | 47086fc | 2011-09-29 16:04:33 +0200 | [diff] [blame] | 1111 | __skb_queue_tail(&frames, skb); |
| 1112 | } |
Johannes Berg | 4049e09 | 2011-09-29 16:04:32 +0200 | [diff] [blame] | 1113 | } |
| 1114 | |
| 1115 | /* |
| 1116 | * If the driver has data on more than one TID then |
| 1117 | * certainly there's more data if we release just a |
| 1118 | * single frame now (from a single TID). |
| 1119 | */ |
Johannes Berg | 47086fc | 2011-09-29 16:04:33 +0200 | [diff] [blame] | 1120 | if (reason == IEEE80211_FRAME_RELEASE_PSPOLL && |
| 1121 | hweight16(driver_release_tids) > 1) { |
Johannes Berg | 4049e09 | 2011-09-29 16:04:32 +0200 | [diff] [blame] | 1122 | more_data = true; |
| 1123 | driver_release_tids = |
| 1124 | BIT(ffs(driver_release_tids) - 1); |
| 1125 | break; |
Johannes Berg | 948d887 | 2011-09-29 16:04:29 +0200 | [diff] [blame] | 1126 | } |
| 1127 | } |
| 1128 | |
Johannes Berg | 948d887 | 2011-09-29 16:04:29 +0200 | [diff] [blame] | 1129 | if (!skb_queue_empty(&sta->tx_filtered[ac]) || |
| 1130 | !skb_queue_empty(&sta->ps_tx_buf[ac])) { |
| 1131 | more_data = true; |
| 1132 | break; |
| 1133 | } |
Johannes Berg | af81858 | 2009-11-06 11:35:50 +0100 | [diff] [blame] | 1134 | } |
Johannes Berg | af81858 | 2009-11-06 11:35:50 +0100 | [diff] [blame] | 1135 | |
Johannes Berg | 4049e09 | 2011-09-29 16:04:32 +0200 | [diff] [blame] | 1136 | if (!found) { |
Johannes Berg | ce662b44 | 2011-09-29 16:04:34 +0200 | [diff] [blame] | 1137 | int tid; |
Johannes Berg | 4049e09 | 2011-09-29 16:04:32 +0200 | [diff] [blame] | 1138 | |
Johannes Berg | ce662b44 | 2011-09-29 16:04:34 +0200 | [diff] [blame] | 1139 | /* |
| 1140 | * For PS-Poll, this can only happen due to a race condition |
| 1141 | * when we set the TIM bit and the station notices it, but |
| 1142 | * before it can poll for the frame we expire it. |
| 1143 | * |
| 1144 | * For uAPSD, this is said in the standard (11.2.1.5 h): |
| 1145 | * At each unscheduled SP for a non-AP STA, the AP shall |
| 1146 | * attempt to transmit at least one MSDU or MMPDU, but no |
| 1147 | * more than the value specified in the Max SP Length field |
| 1148 | * in the QoS Capability element from delivery-enabled ACs, |
| 1149 | * that are destined for the non-AP STA. |
| 1150 | * |
| 1151 | * Since we have no other MSDU/MMPDU, transmit a QoS null frame. |
| 1152 | */ |
| 1153 | |
| 1154 | /* This will evaluate to 1, 3, 5 or 7. */ |
| 1155 | tid = 7 - ((ffs(~ignored_acs) - 1) << 1); |
| 1156 | |
Johannes Berg | 40b9640 | 2011-09-29 16:04:38 +0200 | [diff] [blame] | 1157 | ieee80211_send_null_response(sdata, sta, tid, reason); |
Johannes Berg | 4049e09 | 2011-09-29 16:04:32 +0200 | [diff] [blame] | 1158 | return; |
| 1159 | } |
| 1160 | |
Johannes Berg | 47086fc | 2011-09-29 16:04:33 +0200 | [diff] [blame] | 1161 | if (!driver_release_tids) { |
| 1162 | struct sk_buff_head pending; |
| 1163 | struct sk_buff *skb; |
Johannes Berg | 40b9640 | 2011-09-29 16:04:38 +0200 | [diff] [blame] | 1164 | int num = 0; |
| 1165 | u16 tids = 0; |
Johannes Berg | af81858 | 2009-11-06 11:35:50 +0100 | [diff] [blame] | 1166 | |
Johannes Berg | 47086fc | 2011-09-29 16:04:33 +0200 | [diff] [blame] | 1167 | skb_queue_head_init(&pending); |
Johannes Berg | af81858 | 2009-11-06 11:35:50 +0100 | [diff] [blame] | 1168 | |
Johannes Berg | 47086fc | 2011-09-29 16:04:33 +0200 | [diff] [blame] | 1169 | while ((skb = __skb_dequeue(&frames))) { |
| 1170 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); |
| 1171 | struct ieee80211_hdr *hdr = (void *) skb->data; |
Johannes Berg | 40b9640 | 2011-09-29 16:04:38 +0200 | [diff] [blame] | 1172 | u8 *qoshdr = NULL; |
| 1173 | |
| 1174 | num++; |
Johannes Berg | af81858 | 2009-11-06 11:35:50 +0100 | [diff] [blame] | 1175 | |
Johannes Berg | 47086fc | 2011-09-29 16:04:33 +0200 | [diff] [blame] | 1176 | /* |
| 1177 | * Tell TX path to send this frame even though the |
| 1178 | * STA may still remain is PS mode after this frame |
| 1179 | * exchange. |
| 1180 | */ |
Johannes Berg | 02f2f1a | 2012-02-27 12:18:30 +0100 | [diff] [blame] | 1181 | info->flags |= IEEE80211_TX_CTL_NO_PS_BUFFER; |
Johannes Berg | af81858 | 2009-11-06 11:35:50 +0100 | [diff] [blame] | 1182 | |
Johannes Berg | 47086fc | 2011-09-29 16:04:33 +0200 | [diff] [blame] | 1183 | /* |
| 1184 | * Use MoreData flag to indicate whether there are |
| 1185 | * more buffered frames for this STA |
| 1186 | */ |
Janusz.Dziedzic@tieto.com | 24b9c37 | 2011-11-07 09:47:47 +0200 | [diff] [blame] | 1187 | if (more_data || !skb_queue_empty(&frames)) |
Johannes Berg | 47086fc | 2011-09-29 16:04:33 +0200 | [diff] [blame] | 1188 | hdr->frame_control |= |
| 1189 | cpu_to_le16(IEEE80211_FCTL_MOREDATA); |
Janusz.Dziedzic@tieto.com | 24b9c37 | 2011-11-07 09:47:47 +0200 | [diff] [blame] | 1190 | else |
| 1191 | hdr->frame_control &= |
| 1192 | cpu_to_le16(~IEEE80211_FCTL_MOREDATA); |
Johannes Berg | 47086fc | 2011-09-29 16:04:33 +0200 | [diff] [blame] | 1193 | |
Johannes Berg | 40b9640 | 2011-09-29 16:04:38 +0200 | [diff] [blame] | 1194 | if (ieee80211_is_data_qos(hdr->frame_control) || |
| 1195 | ieee80211_is_qos_nullfunc(hdr->frame_control)) |
| 1196 | qoshdr = ieee80211_get_qos_ctl(hdr); |
| 1197 | |
| 1198 | /* set EOSP for the frame */ |
Johannes Berg | 47086fc | 2011-09-29 16:04:33 +0200 | [diff] [blame] | 1199 | if (reason == IEEE80211_FRAME_RELEASE_UAPSD && |
Johannes Berg | 40b9640 | 2011-09-29 16:04:38 +0200 | [diff] [blame] | 1200 | qoshdr && skb_queue_empty(&frames)) |
| 1201 | *qoshdr |= IEEE80211_QOS_CTL_EOSP; |
Johannes Berg | 47086fc | 2011-09-29 16:04:33 +0200 | [diff] [blame] | 1202 | |
Johannes Berg | deeaee1 | 2011-09-29 16:04:35 +0200 | [diff] [blame] | 1203 | info->flags |= IEEE80211_TX_STATUS_EOSP | |
| 1204 | IEEE80211_TX_CTL_REQ_TX_STATUS; |
| 1205 | |
Johannes Berg | 40b9640 | 2011-09-29 16:04:38 +0200 | [diff] [blame] | 1206 | if (qoshdr) |
| 1207 | tids |= BIT(*qoshdr & IEEE80211_QOS_CTL_TID_MASK); |
| 1208 | else |
| 1209 | tids |= BIT(0); |
| 1210 | |
Johannes Berg | 47086fc | 2011-09-29 16:04:33 +0200 | [diff] [blame] | 1211 | __skb_queue_tail(&pending, skb); |
| 1212 | } |
| 1213 | |
Johannes Berg | 40b9640 | 2011-09-29 16:04:38 +0200 | [diff] [blame] | 1214 | drv_allow_buffered_frames(local, sta, tids, num, |
| 1215 | reason, more_data); |
| 1216 | |
Johannes Berg | 47086fc | 2011-09-29 16:04:33 +0200 | [diff] [blame] | 1217 | ieee80211_add_pending_skbs(local, &pending); |
Johannes Berg | af81858 | 2009-11-06 11:35:50 +0100 | [diff] [blame] | 1218 | |
Johannes Berg | c868cb3 | 2011-09-29 16:04:27 +0200 | [diff] [blame] | 1219 | sta_info_recalc_tim(sta); |
Johannes Berg | af81858 | 2009-11-06 11:35:50 +0100 | [diff] [blame] | 1220 | } else { |
| 1221 | /* |
Johannes Berg | 4049e09 | 2011-09-29 16:04:32 +0200 | [diff] [blame] | 1222 | * We need to release a frame that is buffered somewhere in the |
| 1223 | * driver ... it'll have to handle that. |
| 1224 | * Note that, as per the comment above, it'll also have to see |
| 1225 | * if there is more than just one frame on the specific TID that |
| 1226 | * we're releasing from, and it needs to set the more-data bit |
| 1227 | * accordingly if we tell it that there's no more data. If we do |
| 1228 | * tell it there's more data, then of course the more-data bit |
| 1229 | * needs to be set anyway. |
Johannes Berg | af81858 | 2009-11-06 11:35:50 +0100 | [diff] [blame] | 1230 | */ |
Johannes Berg | 4049e09 | 2011-09-29 16:04:32 +0200 | [diff] [blame] | 1231 | drv_release_buffered_frames(local, sta, driver_release_tids, |
Johannes Berg | 47086fc | 2011-09-29 16:04:33 +0200 | [diff] [blame] | 1232 | n_frames, reason, more_data); |
Johannes Berg | 4049e09 | 2011-09-29 16:04:32 +0200 | [diff] [blame] | 1233 | |
| 1234 | /* |
| 1235 | * Note that we don't recalculate the TIM bit here as it would |
| 1236 | * most likely have no effect at all unless the driver told us |
| 1237 | * that the TID became empty before returning here from the |
| 1238 | * release function. |
| 1239 | * Either way, however, when the driver tells us that the TID |
| 1240 | * became empty we'll do the TIM recalculation. |
| 1241 | */ |
Johannes Berg | af81858 | 2009-11-06 11:35:50 +0100 | [diff] [blame] | 1242 | } |
| 1243 | } |
| 1244 | |
Johannes Berg | af81858 | 2009-11-06 11:35:50 +0100 | [diff] [blame] | 1245 | void ieee80211_sta_ps_deliver_poll_response(struct sta_info *sta) |
| 1246 | { |
Johannes Berg | 47086fc | 2011-09-29 16:04:33 +0200 | [diff] [blame] | 1247 | u8 ignore_for_response = sta->sta.uapsd_queues; |
Johannes Berg | af81858 | 2009-11-06 11:35:50 +0100 | [diff] [blame] | 1248 | |
Johannes Berg | 47086fc | 2011-09-29 16:04:33 +0200 | [diff] [blame] | 1249 | /* |
| 1250 | * If all ACs are delivery-enabled then we should reply |
| 1251 | * from any of them, if only some are enabled we reply |
| 1252 | * only from the non-enabled ones. |
| 1253 | */ |
| 1254 | if (ignore_for_response == BIT(IEEE80211_NUM_ACS) - 1) |
| 1255 | ignore_for_response = 0; |
| 1256 | |
| 1257 | ieee80211_sta_ps_deliver_response(sta, 1, ignore_for_response, |
| 1258 | IEEE80211_FRAME_RELEASE_PSPOLL); |
| 1259 | } |
| 1260 | |
| 1261 | void ieee80211_sta_ps_deliver_uapsd(struct sta_info *sta) |
| 1262 | { |
| 1263 | int n_frames = sta->sta.max_sp; |
| 1264 | u8 delivery_enabled = sta->sta.uapsd_queues; |
| 1265 | |
| 1266 | /* |
| 1267 | * If we ever grow support for TSPEC this might happen if |
| 1268 | * the TSPEC update from hostapd comes in between a trigger |
| 1269 | * frame setting WLAN_STA_UAPSD in the RX path and this |
| 1270 | * actually getting called. |
| 1271 | */ |
| 1272 | if (!delivery_enabled) |
| 1273 | return; |
| 1274 | |
Johannes Berg | 47086fc | 2011-09-29 16:04:33 +0200 | [diff] [blame] | 1275 | switch (sta->sta.max_sp) { |
| 1276 | case 1: |
| 1277 | n_frames = 2; |
| 1278 | break; |
| 1279 | case 2: |
| 1280 | n_frames = 4; |
| 1281 | break; |
| 1282 | case 3: |
| 1283 | n_frames = 6; |
| 1284 | break; |
| 1285 | case 0: |
| 1286 | /* XXX: what is a good value? */ |
| 1287 | n_frames = 8; |
| 1288 | break; |
Johannes Berg | af81858 | 2009-11-06 11:35:50 +0100 | [diff] [blame] | 1289 | } |
Johannes Berg | af81858 | 2009-11-06 11:35:50 +0100 | [diff] [blame] | 1290 | |
Johannes Berg | 47086fc | 2011-09-29 16:04:33 +0200 | [diff] [blame] | 1291 | ieee80211_sta_ps_deliver_response(sta, n_frames, ~delivery_enabled, |
| 1292 | IEEE80211_FRAME_RELEASE_UAPSD); |
Johannes Berg | af81858 | 2009-11-06 11:35:50 +0100 | [diff] [blame] | 1293 | } |
| 1294 | |
| 1295 | void ieee80211_sta_block_awake(struct ieee80211_hw *hw, |
| 1296 | struct ieee80211_sta *pubsta, bool block) |
| 1297 | { |
| 1298 | struct sta_info *sta = container_of(pubsta, struct sta_info, sta); |
| 1299 | |
Johannes Berg | b5878a2 | 2010-04-07 16:48:40 +0200 | [diff] [blame] | 1300 | trace_api_sta_block_awake(sta->local, pubsta, block); |
| 1301 | |
Johannes Berg | af81858 | 2009-11-06 11:35:50 +0100 | [diff] [blame] | 1302 | if (block) |
Johannes Berg | c2c98fd | 2011-09-29 16:04:36 +0200 | [diff] [blame] | 1303 | set_sta_flag(sta, WLAN_STA_PS_DRIVER); |
| 1304 | else if (test_sta_flag(sta, WLAN_STA_PS_DRIVER)) |
Johannes Berg | af81858 | 2009-11-06 11:35:50 +0100 | [diff] [blame] | 1305 | ieee80211_queue_work(hw, &sta->drv_unblock_wk); |
| 1306 | } |
| 1307 | EXPORT_SYMBOL(ieee80211_sta_block_awake); |
Felix Fietkau | dcf55fb | 2011-04-17 17:45:00 +0200 | [diff] [blame] | 1308 | |
Johannes Berg | 37fbd90 | 2011-09-29 16:04:39 +0200 | [diff] [blame] | 1309 | void ieee80211_sta_eosp_irqsafe(struct ieee80211_sta *pubsta) |
| 1310 | { |
| 1311 | struct sta_info *sta = container_of(pubsta, struct sta_info, sta); |
| 1312 | struct ieee80211_local *local = sta->local; |
| 1313 | struct sk_buff *skb; |
| 1314 | struct skb_eosp_msg_data *data; |
| 1315 | |
| 1316 | trace_api_eosp(local, pubsta); |
| 1317 | |
| 1318 | skb = alloc_skb(0, GFP_ATOMIC); |
| 1319 | if (!skb) { |
| 1320 | /* too bad ... but race is better than loss */ |
| 1321 | clear_sta_flag(sta, WLAN_STA_SP); |
| 1322 | return; |
| 1323 | } |
| 1324 | |
| 1325 | data = (void *)skb->cb; |
| 1326 | memcpy(data->sta, pubsta->addr, ETH_ALEN); |
| 1327 | memcpy(data->iface, sta->sdata->vif.addr, ETH_ALEN); |
| 1328 | skb->pkt_type = IEEE80211_EOSP_MSG; |
| 1329 | skb_queue_tail(&local->skb_queue, skb); |
| 1330 | tasklet_schedule(&local->tasklet); |
| 1331 | } |
| 1332 | EXPORT_SYMBOL(ieee80211_sta_eosp_irqsafe); |
| 1333 | |
Johannes Berg | 042ec45 | 2011-09-29 16:04:26 +0200 | [diff] [blame] | 1334 | void ieee80211_sta_set_buffered(struct ieee80211_sta *pubsta, |
| 1335 | u8 tid, bool buffered) |
Felix Fietkau | dcf55fb | 2011-04-17 17:45:00 +0200 | [diff] [blame] | 1336 | { |
| 1337 | struct sta_info *sta = container_of(pubsta, struct sta_info, sta); |
| 1338 | |
Johannes Berg | 948d887 | 2011-09-29 16:04:29 +0200 | [diff] [blame] | 1339 | if (WARN_ON(tid >= STA_TID_NUM)) |
Johannes Berg | 042ec45 | 2011-09-29 16:04:26 +0200 | [diff] [blame] | 1340 | return; |
| 1341 | |
Johannes Berg | 948d887 | 2011-09-29 16:04:29 +0200 | [diff] [blame] | 1342 | if (buffered) |
| 1343 | set_bit(tid, &sta->driver_buffered_tids); |
| 1344 | else |
| 1345 | clear_bit(tid, &sta->driver_buffered_tids); |
| 1346 | |
Johannes Berg | c868cb3 | 2011-09-29 16:04:27 +0200 | [diff] [blame] | 1347 | sta_info_recalc_tim(sta); |
Felix Fietkau | dcf55fb | 2011-04-17 17:45:00 +0200 | [diff] [blame] | 1348 | } |
Johannes Berg | 042ec45 | 2011-09-29 16:04:26 +0200 | [diff] [blame] | 1349 | EXPORT_SYMBOL(ieee80211_sta_set_buffered); |
Johannes Berg | d9a7ddb | 2011-12-14 12:35:30 +0100 | [diff] [blame] | 1350 | |
Johannes Berg | 83d5cc0 | 2012-01-12 09:31:10 +0100 | [diff] [blame] | 1351 | int sta_info_move_state(struct sta_info *sta, |
| 1352 | enum ieee80211_sta_state new_state) |
Johannes Berg | d9a7ddb | 2011-12-14 12:35:30 +0100 | [diff] [blame] | 1353 | { |
Johannes Berg | 8bf11d8 | 2011-12-15 11:17:37 +0100 | [diff] [blame] | 1354 | might_sleep(); |
Johannes Berg | d9a7ddb | 2011-12-14 12:35:30 +0100 | [diff] [blame] | 1355 | |
| 1356 | if (sta->sta_state == new_state) |
| 1357 | return 0; |
| 1358 | |
Johannes Berg | f09603a | 2012-01-20 13:55:21 +0100 | [diff] [blame] | 1359 | /* check allowed transitions first */ |
| 1360 | |
Johannes Berg | d9a7ddb | 2011-12-14 12:35:30 +0100 | [diff] [blame] | 1361 | switch (new_state) { |
| 1362 | case IEEE80211_STA_NONE: |
Johannes Berg | f09603a | 2012-01-20 13:55:21 +0100 | [diff] [blame] | 1363 | if (sta->sta_state != IEEE80211_STA_AUTH) |
Johannes Berg | d9a7ddb | 2011-12-14 12:35:30 +0100 | [diff] [blame] | 1364 | return -EINVAL; |
| 1365 | break; |
| 1366 | case IEEE80211_STA_AUTH: |
Johannes Berg | f09603a | 2012-01-20 13:55:21 +0100 | [diff] [blame] | 1367 | if (sta->sta_state != IEEE80211_STA_NONE && |
| 1368 | sta->sta_state != IEEE80211_STA_ASSOC) |
Johannes Berg | d9a7ddb | 2011-12-14 12:35:30 +0100 | [diff] [blame] | 1369 | return -EINVAL; |
| 1370 | break; |
| 1371 | case IEEE80211_STA_ASSOC: |
Johannes Berg | f09603a | 2012-01-20 13:55:21 +0100 | [diff] [blame] | 1372 | if (sta->sta_state != IEEE80211_STA_AUTH && |
| 1373 | sta->sta_state != IEEE80211_STA_AUTHORIZED) |
Johannes Berg | d9a7ddb | 2011-12-14 12:35:30 +0100 | [diff] [blame] | 1374 | return -EINVAL; |
| 1375 | break; |
| 1376 | case IEEE80211_STA_AUTHORIZED: |
Johannes Berg | f09603a | 2012-01-20 13:55:21 +0100 | [diff] [blame] | 1377 | if (sta->sta_state != IEEE80211_STA_ASSOC) |
Johannes Berg | d9a7ddb | 2011-12-14 12:35:30 +0100 | [diff] [blame] | 1378 | return -EINVAL; |
| 1379 | break; |
| 1380 | default: |
| 1381 | WARN(1, "invalid state %d", new_state); |
| 1382 | return -EINVAL; |
| 1383 | } |
| 1384 | |
Felix Fietkau | 7902759 | 2012-02-07 12:45:44 +0100 | [diff] [blame] | 1385 | #ifdef CONFIG_MAC80211_VERBOSE_DEBUG |
Johannes Berg | d9a7ddb | 2011-12-14 12:35:30 +0100 | [diff] [blame] | 1386 | printk(KERN_DEBUG "%s: moving STA %pM to state %d\n", |
| 1387 | sta->sdata->name, sta->sta.addr, new_state); |
Felix Fietkau | 7902759 | 2012-02-07 12:45:44 +0100 | [diff] [blame] | 1388 | #endif |
Johannes Berg | f09603a | 2012-01-20 13:55:21 +0100 | [diff] [blame] | 1389 | |
| 1390 | /* |
| 1391 | * notify the driver before the actual changes so it can |
| 1392 | * fail the transition |
| 1393 | */ |
| 1394 | if (test_sta_flag(sta, WLAN_STA_INSERTED)) { |
| 1395 | int err = drv_sta_state(sta->local, sta->sdata, sta, |
| 1396 | sta->sta_state, new_state); |
| 1397 | if (err) |
| 1398 | return err; |
| 1399 | } |
| 1400 | |
| 1401 | /* reflect the change in all state variables */ |
| 1402 | |
| 1403 | switch (new_state) { |
| 1404 | case IEEE80211_STA_NONE: |
| 1405 | if (sta->sta_state == IEEE80211_STA_AUTH) |
| 1406 | clear_bit(WLAN_STA_AUTH, &sta->_flags); |
| 1407 | break; |
| 1408 | case IEEE80211_STA_AUTH: |
| 1409 | if (sta->sta_state == IEEE80211_STA_NONE) |
| 1410 | set_bit(WLAN_STA_AUTH, &sta->_flags); |
| 1411 | else if (sta->sta_state == IEEE80211_STA_ASSOC) |
| 1412 | clear_bit(WLAN_STA_ASSOC, &sta->_flags); |
| 1413 | break; |
| 1414 | case IEEE80211_STA_ASSOC: |
| 1415 | if (sta->sta_state == IEEE80211_STA_AUTH) { |
| 1416 | set_bit(WLAN_STA_ASSOC, &sta->_flags); |
| 1417 | } else if (sta->sta_state == IEEE80211_STA_AUTHORIZED) { |
| 1418 | if (sta->sdata->vif.type == NL80211_IFTYPE_AP) |
| 1419 | atomic_dec(&sta->sdata->u.ap.num_sta_authorized); |
| 1420 | clear_bit(WLAN_STA_AUTHORIZED, &sta->_flags); |
| 1421 | } |
| 1422 | break; |
| 1423 | case IEEE80211_STA_AUTHORIZED: |
| 1424 | if (sta->sta_state == IEEE80211_STA_ASSOC) { |
| 1425 | if (sta->sdata->vif.type == NL80211_IFTYPE_AP) |
| 1426 | atomic_inc(&sta->sdata->u.ap.num_sta_authorized); |
| 1427 | set_bit(WLAN_STA_AUTHORIZED, &sta->_flags); |
| 1428 | } |
| 1429 | break; |
| 1430 | default: |
| 1431 | break; |
| 1432 | } |
| 1433 | |
Johannes Berg | d9a7ddb | 2011-12-14 12:35:30 +0100 | [diff] [blame] | 1434 | sta->sta_state = new_state; |
| 1435 | |
| 1436 | return 0; |
| 1437 | } |