Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1 | /* |
| 2 | * BSS client mode implementation |
Jouni Malinen | 5394af4 | 2009-01-08 13:31:59 +0200 | [diff] [blame] | 3 | * Copyright 2003-2008, Jouni Malinen <j@w1.fi> |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 4 | * Copyright 2004, Instant802 Networks, Inc. |
| 5 | * Copyright 2005, Devicescape Software, Inc. |
| 6 | * Copyright 2006-2007 Jiri Benc <jbenc@suse.cz> |
| 7 | * Copyright 2007, Michael Wu <flamingice@sourmilk.net> |
| 8 | * |
| 9 | * This program is free software; you can redistribute it and/or modify |
| 10 | * it under the terms of the GNU General Public License version 2 as |
| 11 | * published by the Free Software Foundation. |
| 12 | */ |
| 13 | |
Geert Uytterhoeven | 5b323ed | 2007-05-08 18:40:27 -0700 | [diff] [blame] | 14 | #include <linux/delay.h> |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 15 | #include <linux/if_ether.h> |
| 16 | #include <linux/skbuff.h> |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 17 | #include <linux/if_arp.h> |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 18 | #include <linux/etherdevice.h> |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 19 | #include <linux/rtnetlink.h> |
Johannes Berg | 10f644a | 2009-04-16 13:17:25 +0200 | [diff] [blame] | 20 | #include <linux/pm_qos_params.h> |
Johannes Berg | d91f36d | 2009-04-16 13:17:26 +0200 | [diff] [blame] | 21 | #include <linux/crc32.h> |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 22 | #include <net/mac80211.h> |
Johannes Berg | 472dbc4 | 2008-09-11 00:01:49 +0200 | [diff] [blame] | 23 | #include <asm/unaligned.h> |
Johannes Berg | 60f8b39 | 2008-09-08 17:44:22 +0200 | [diff] [blame] | 24 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 25 | #include "ieee80211_i.h" |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 26 | #include "driver-ops.h" |
Johannes Berg | 2c8dccc | 2008-04-08 15:14:40 -0400 | [diff] [blame] | 27 | #include "rate.h" |
| 28 | #include "led.h" |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 29 | |
| 30 | #define IEEE80211_AUTH_TIMEOUT (HZ / 5) |
| 31 | #define IEEE80211_AUTH_MAX_TRIES 3 |
| 32 | #define IEEE80211_ASSOC_TIMEOUT (HZ / 5) |
| 33 | #define IEEE80211_ASSOC_MAX_TRIES 3 |
Maxim Levitsky | a43abf2 | 2009-07-31 18:54:12 +0300 | [diff] [blame] | 34 | #define IEEE80211_MAX_PROBE_TRIES 5 |
Johannes Berg | b291ba1 | 2009-07-10 15:29:03 +0200 | [diff] [blame] | 35 | |
| 36 | /* |
| 37 | * beacon loss detection timeout |
| 38 | * XXX: should depend on beacon interval |
| 39 | */ |
| 40 | #define IEEE80211_BEACON_LOSS_TIME (2 * HZ) |
| 41 | /* |
| 42 | * Time the connection can be idle before we probe |
| 43 | * it to see if we can still talk to the AP. |
| 44 | */ |
Maxim Levitsky | d1c5091 | 2009-07-31 18:54:23 +0300 | [diff] [blame] | 45 | #define IEEE80211_CONNECTION_IDLE_TIME (30 * HZ) |
Johannes Berg | b291ba1 | 2009-07-10 15:29:03 +0200 | [diff] [blame] | 46 | /* |
| 47 | * Time we wait for a probe response after sending |
| 48 | * a probe request because of beacon loss or for |
| 49 | * checking the connection still works. |
| 50 | */ |
Maxim Levitsky | d1c5091 | 2009-07-31 18:54:23 +0300 | [diff] [blame] | 51 | #define IEEE80211_PROBE_WAIT (HZ / 2) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 52 | |
Johannes Berg | 5bb644a | 2009-05-17 11:40:42 +0200 | [diff] [blame] | 53 | #define TMR_RUNNING_TIMER 0 |
| 54 | #define TMR_RUNNING_CHANSW 1 |
| 55 | |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 56 | /* |
| 57 | * All cfg80211 functions have to be called outside a locked |
| 58 | * section so that they can acquire a lock themselves... This |
| 59 | * is much simpler than queuing up things in cfg80211, but we |
| 60 | * do need some indirection for that here. |
| 61 | */ |
| 62 | enum rx_mgmt_action { |
| 63 | /* no action required */ |
| 64 | RX_MGMT_NONE, |
| 65 | |
| 66 | /* caller must call cfg80211_send_rx_auth() */ |
| 67 | RX_MGMT_CFG80211_AUTH, |
| 68 | |
| 69 | /* caller must call cfg80211_send_rx_assoc() */ |
| 70 | RX_MGMT_CFG80211_ASSOC, |
| 71 | |
| 72 | /* caller must call cfg80211_send_deauth() */ |
| 73 | RX_MGMT_CFG80211_DEAUTH, |
| 74 | |
| 75 | /* caller must call cfg80211_send_disassoc() */ |
| 76 | RX_MGMT_CFG80211_DISASSOC, |
| 77 | |
Johannes Berg | 5d1ec85 | 2009-12-02 12:43:43 +0100 | [diff] [blame^] | 78 | /* caller must tell cfg80211 about internal error */ |
| 79 | RX_MGMT_CFG80211_ASSOC_ERROR, |
| 80 | |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 81 | /* caller must call cfg80211_auth_timeout() & free work */ |
| 82 | RX_MGMT_CFG80211_AUTH_TO, |
| 83 | |
| 84 | /* caller must call cfg80211_assoc_timeout() & free work */ |
| 85 | RX_MGMT_CFG80211_ASSOC_TO, |
| 86 | }; |
| 87 | |
Johannes Berg | 5484e23 | 2008-09-08 17:44:27 +0200 | [diff] [blame] | 88 | /* utils */ |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 89 | static inline void ASSERT_MGD_MTX(struct ieee80211_if_managed *ifmgd) |
| 90 | { |
| 91 | WARN_ON(!mutex_is_locked(&ifmgd->mtx)); |
| 92 | } |
| 93 | |
Johannes Berg | ca386f3 | 2009-07-10 02:39:48 +0200 | [diff] [blame] | 94 | /* |
| 95 | * We can have multiple work items (and connection probing) |
| 96 | * scheduling this timer, but we need to take care to only |
| 97 | * reschedule it when it should fire _earlier_ than it was |
| 98 | * asked for before, or if it's not pending right now. This |
| 99 | * function ensures that. Note that it then is required to |
| 100 | * run this function for all timeouts after the first one |
| 101 | * has happened -- the work that runs from this timer will |
| 102 | * do that. |
| 103 | */ |
| 104 | static void run_again(struct ieee80211_if_managed *ifmgd, |
| 105 | unsigned long timeout) |
| 106 | { |
| 107 | ASSERT_MGD_MTX(ifmgd); |
| 108 | |
| 109 | if (!timer_pending(&ifmgd->timer) || |
| 110 | time_before(timeout, ifmgd->timer.expires)) |
| 111 | mod_timer(&ifmgd->timer, timeout); |
| 112 | } |
| 113 | |
Johannes Berg | b291ba1 | 2009-07-10 15:29:03 +0200 | [diff] [blame] | 114 | static void mod_beacon_timer(struct ieee80211_sub_if_data *sdata) |
| 115 | { |
| 116 | if (sdata->local->hw.flags & IEEE80211_HW_BEACON_FILTER) |
| 117 | return; |
| 118 | |
| 119 | mod_timer(&sdata->u.mgd.bcn_mon_timer, |
| 120 | round_jiffies_up(jiffies + IEEE80211_BEACON_LOSS_TIME)); |
| 121 | } |
| 122 | |
Johannes Berg | 5484e23 | 2008-09-08 17:44:27 +0200 | [diff] [blame] | 123 | static int ecw2cw(int ecw) |
Johannes Berg | 60f8b39 | 2008-09-08 17:44:22 +0200 | [diff] [blame] | 124 | { |
Johannes Berg | 5484e23 | 2008-09-08 17:44:27 +0200 | [diff] [blame] | 125 | return (1 << ecw) - 1; |
Johannes Berg | 60f8b39 | 2008-09-08 17:44:22 +0200 | [diff] [blame] | 126 | } |
| 127 | |
Johannes Berg | c2b1345 | 2008-09-11 00:01:55 +0200 | [diff] [blame] | 128 | static int ieee80211_compatible_rates(struct ieee80211_bss *bss, |
Johannes Berg | 9ac19a9 | 2008-09-09 10:57:09 +0200 | [diff] [blame] | 129 | struct ieee80211_supported_band *sband, |
Johannes Berg | 881d948 | 2009-01-21 15:13:48 +0100 | [diff] [blame] | 130 | u32 *rates) |
Johannes Berg | 9ac19a9 | 2008-09-09 10:57:09 +0200 | [diff] [blame] | 131 | { |
| 132 | int i, j, count; |
| 133 | *rates = 0; |
| 134 | count = 0; |
| 135 | for (i = 0; i < bss->supp_rates_len; i++) { |
| 136 | int rate = (bss->supp_rates[i] & 0x7F) * 5; |
| 137 | |
| 138 | for (j = 0; j < sband->n_bitrates; j++) |
| 139 | if (sband->bitrates[j].bitrate == rate) { |
| 140 | *rates |= BIT(j); |
| 141 | count++; |
| 142 | break; |
| 143 | } |
| 144 | } |
| 145 | |
| 146 | return count; |
| 147 | } |
| 148 | |
Johannes Berg | d5522e0 | 2009-03-30 13:23:35 +0200 | [diff] [blame] | 149 | /* |
| 150 | * ieee80211_enable_ht should be called only after the operating band |
| 151 | * has been determined as ht configuration depends on the hw's |
| 152 | * HT abilities for a specific band. |
| 153 | */ |
| 154 | static u32 ieee80211_enable_ht(struct ieee80211_sub_if_data *sdata, |
| 155 | struct ieee80211_ht_info *hti, |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 156 | const u8 *bssid, u16 ap_ht_cap_flags) |
Johannes Berg | d5522e0 | 2009-03-30 13:23:35 +0200 | [diff] [blame] | 157 | { |
| 158 | struct ieee80211_local *local = sdata->local; |
| 159 | struct ieee80211_supported_band *sband; |
Johannes Berg | d5522e0 | 2009-03-30 13:23:35 +0200 | [diff] [blame] | 160 | struct sta_info *sta; |
| 161 | u32 changed = 0; |
Johannes Berg | 9ed6bcc | 2009-05-08 20:47:39 +0200 | [diff] [blame] | 162 | u16 ht_opmode; |
Johannes Berg | d5522e0 | 2009-03-30 13:23:35 +0200 | [diff] [blame] | 163 | bool enable_ht = true, ht_changed; |
| 164 | enum nl80211_channel_type channel_type = NL80211_CHAN_NO_HT; |
| 165 | |
| 166 | sband = local->hw.wiphy->bands[local->hw.conf.channel->band]; |
| 167 | |
Johannes Berg | d5522e0 | 2009-03-30 13:23:35 +0200 | [diff] [blame] | 168 | /* HT is not supported */ |
| 169 | if (!sband->ht_cap.ht_supported) |
| 170 | enable_ht = false; |
| 171 | |
| 172 | /* check that channel matches the right operating channel */ |
| 173 | if (local->hw.conf.channel->center_freq != |
| 174 | ieee80211_channel_to_frequency(hti->control_chan)) |
| 175 | enable_ht = false; |
| 176 | |
| 177 | if (enable_ht) { |
| 178 | channel_type = NL80211_CHAN_HT20; |
| 179 | |
| 180 | if (!(ap_ht_cap_flags & IEEE80211_HT_CAP_40MHZ_INTOLERANT) && |
| 181 | (sband->ht_cap.cap & IEEE80211_HT_CAP_SUP_WIDTH_20_40) && |
| 182 | (hti->ht_param & IEEE80211_HT_PARAM_CHAN_WIDTH_ANY)) { |
| 183 | switch(hti->ht_param & IEEE80211_HT_PARAM_CHA_SEC_OFFSET) { |
| 184 | case IEEE80211_HT_PARAM_CHA_SEC_ABOVE: |
Luis R. Rodriguez | 768777e | 2009-05-02 00:37:19 -0400 | [diff] [blame] | 185 | if (!(local->hw.conf.channel->flags & |
| 186 | IEEE80211_CHAN_NO_HT40PLUS)) |
| 187 | channel_type = NL80211_CHAN_HT40PLUS; |
Johannes Berg | d5522e0 | 2009-03-30 13:23:35 +0200 | [diff] [blame] | 188 | break; |
| 189 | case IEEE80211_HT_PARAM_CHA_SEC_BELOW: |
Luis R. Rodriguez | 768777e | 2009-05-02 00:37:19 -0400 | [diff] [blame] | 190 | if (!(local->hw.conf.channel->flags & |
| 191 | IEEE80211_CHAN_NO_HT40MINUS)) |
| 192 | channel_type = NL80211_CHAN_HT40MINUS; |
Johannes Berg | d5522e0 | 2009-03-30 13:23:35 +0200 | [diff] [blame] | 193 | break; |
| 194 | } |
| 195 | } |
| 196 | } |
| 197 | |
| 198 | ht_changed = conf_is_ht(&local->hw.conf) != enable_ht || |
| 199 | channel_type != local->hw.conf.channel_type; |
| 200 | |
| 201 | local->oper_channel_type = channel_type; |
| 202 | |
| 203 | if (ht_changed) { |
| 204 | /* channel_type change automatically detected */ |
| 205 | ieee80211_hw_config(local, 0); |
| 206 | |
| 207 | rcu_read_lock(); |
Johannes Berg | abe6063 | 2009-11-25 17:46:18 +0100 | [diff] [blame] | 208 | sta = sta_info_get(sdata, bssid); |
Johannes Berg | d5522e0 | 2009-03-30 13:23:35 +0200 | [diff] [blame] | 209 | if (sta) |
| 210 | rate_control_rate_update(local, sband, sta, |
| 211 | IEEE80211_RC_HT_CHANGED); |
Johannes Berg | d5522e0 | 2009-03-30 13:23:35 +0200 | [diff] [blame] | 212 | rcu_read_unlock(); |
Johannes Berg | d5522e0 | 2009-03-30 13:23:35 +0200 | [diff] [blame] | 213 | } |
| 214 | |
| 215 | /* disable HT */ |
| 216 | if (!enable_ht) |
| 217 | return 0; |
| 218 | |
Johannes Berg | 9ed6bcc | 2009-05-08 20:47:39 +0200 | [diff] [blame] | 219 | ht_opmode = le16_to_cpu(hti->operation_mode); |
Johannes Berg | d5522e0 | 2009-03-30 13:23:35 +0200 | [diff] [blame] | 220 | |
| 221 | /* if bss configuration changed store the new one */ |
Johannes Berg | 413ad50 | 2009-05-08 21:21:06 +0200 | [diff] [blame] | 222 | if (!sdata->ht_opmode_valid || |
| 223 | sdata->vif.bss_conf.ht_operation_mode != ht_opmode) { |
Johannes Berg | d5522e0 | 2009-03-30 13:23:35 +0200 | [diff] [blame] | 224 | changed |= BSS_CHANGED_HT; |
Johannes Berg | 9ed6bcc | 2009-05-08 20:47:39 +0200 | [diff] [blame] | 225 | sdata->vif.bss_conf.ht_operation_mode = ht_opmode; |
Johannes Berg | 413ad50 | 2009-05-08 21:21:06 +0200 | [diff] [blame] | 226 | sdata->ht_opmode_valid = true; |
Johannes Berg | d5522e0 | 2009-03-30 13:23:35 +0200 | [diff] [blame] | 227 | } |
| 228 | |
| 229 | return changed; |
| 230 | } |
| 231 | |
Johannes Berg | 9c6bd79 | 2008-09-11 00:01:52 +0200 | [diff] [blame] | 232 | /* frame sending functions */ |
| 233 | |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 234 | static void ieee80211_send_assoc(struct ieee80211_sub_if_data *sdata, |
| 235 | struct ieee80211_mgd_work *wk) |
Johannes Berg | 60f8b39 | 2008-09-08 17:44:22 +0200 | [diff] [blame] | 236 | { |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 237 | struct ieee80211_if_managed *ifmgd = &sdata->u.mgd; |
Johannes Berg | 9ac19a9 | 2008-09-09 10:57:09 +0200 | [diff] [blame] | 238 | struct ieee80211_local *local = sdata->local; |
| 239 | struct sk_buff *skb; |
| 240 | struct ieee80211_mgmt *mgmt; |
Johannes Berg | 517357c | 2009-07-02 17:18:40 +0200 | [diff] [blame] | 241 | u8 *pos; |
| 242 | const u8 *ies, *ht_ie; |
Johannes Berg | 9ac19a9 | 2008-09-09 10:57:09 +0200 | [diff] [blame] | 243 | int i, len, count, rates_len, supp_rates_len; |
| 244 | u16 capab; |
Johannes Berg | 9ac19a9 | 2008-09-09 10:57:09 +0200 | [diff] [blame] | 245 | int wmm = 0; |
| 246 | struct ieee80211_supported_band *sband; |
Johannes Berg | 881d948 | 2009-01-21 15:13:48 +0100 | [diff] [blame] | 247 | u32 rates = 0; |
Johannes Berg | 9ac19a9 | 2008-09-09 10:57:09 +0200 | [diff] [blame] | 248 | |
| 249 | skb = dev_alloc_skb(local->hw.extra_tx_headroom + |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 250 | sizeof(*mgmt) + 200 + wk->ie_len + |
| 251 | wk->ssid_len); |
Johannes Berg | 9ac19a9 | 2008-09-09 10:57:09 +0200 | [diff] [blame] | 252 | if (!skb) { |
| 253 | printk(KERN_DEBUG "%s: failed to allocate buffer for assoc " |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 254 | "frame\n", sdata->name); |
Johannes Berg | 9ac19a9 | 2008-09-09 10:57:09 +0200 | [diff] [blame] | 255 | return; |
| 256 | } |
| 257 | skb_reserve(skb, local->hw.extra_tx_headroom); |
| 258 | |
| 259 | sband = local->hw.wiphy->bands[local->hw.conf.channel->band]; |
| 260 | |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 261 | capab = ifmgd->capab; |
Johannes Berg | 9ac19a9 | 2008-09-09 10:57:09 +0200 | [diff] [blame] | 262 | |
| 263 | if (local->hw.conf.channel->band == IEEE80211_BAND_2GHZ) { |
| 264 | if (!(local->hw.flags & IEEE80211_HW_2GHZ_SHORT_SLOT_INCAPABLE)) |
| 265 | capab |= WLAN_CAPABILITY_SHORT_SLOT_TIME; |
| 266 | if (!(local->hw.flags & IEEE80211_HW_2GHZ_SHORT_PREAMBLE_INCAPABLE)) |
| 267 | capab |= WLAN_CAPABILITY_SHORT_PREAMBLE; |
| 268 | } |
| 269 | |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 270 | if (wk->bss->cbss.capability & WLAN_CAPABILITY_PRIVACY) |
| 271 | capab |= WLAN_CAPABILITY_PRIVACY; |
| 272 | if (wk->bss->wmm_used) |
| 273 | wmm = 1; |
Johannes Berg | 9ac19a9 | 2008-09-09 10:57:09 +0200 | [diff] [blame] | 274 | |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 275 | /* get all rates supported by the device and the AP as |
| 276 | * some APs don't like getting a superset of their rates |
| 277 | * in the association request (e.g. D-Link DAP 1353 in |
| 278 | * b-only mode) */ |
| 279 | rates_len = ieee80211_compatible_rates(wk->bss, sband, &rates); |
Johannes Berg | 9ac19a9 | 2008-09-09 10:57:09 +0200 | [diff] [blame] | 280 | |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 281 | if ((wk->bss->cbss.capability & WLAN_CAPABILITY_SPECTRUM_MGMT) && |
| 282 | (local->hw.flags & IEEE80211_HW_SPECTRUM_MGMT)) |
| 283 | capab |= WLAN_CAPABILITY_SPECTRUM_MGMT; |
Johannes Berg | 9ac19a9 | 2008-09-09 10:57:09 +0200 | [diff] [blame] | 284 | |
| 285 | mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24); |
| 286 | memset(mgmt, 0, 24); |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 287 | memcpy(mgmt->da, wk->bss->cbss.bssid, ETH_ALEN); |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 288 | memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN); |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 289 | memcpy(mgmt->bssid, wk->bss->cbss.bssid, ETH_ALEN); |
Johannes Berg | 9ac19a9 | 2008-09-09 10:57:09 +0200 | [diff] [blame] | 290 | |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 291 | if (!is_zero_ether_addr(wk->prev_bssid)) { |
Johannes Berg | 9ac19a9 | 2008-09-09 10:57:09 +0200 | [diff] [blame] | 292 | skb_put(skb, 10); |
| 293 | mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT | |
| 294 | IEEE80211_STYPE_REASSOC_REQ); |
| 295 | mgmt->u.reassoc_req.capab_info = cpu_to_le16(capab); |
| 296 | mgmt->u.reassoc_req.listen_interval = |
| 297 | cpu_to_le16(local->hw.conf.listen_interval); |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 298 | memcpy(mgmt->u.reassoc_req.current_ap, wk->prev_bssid, |
Johannes Berg | 9ac19a9 | 2008-09-09 10:57:09 +0200 | [diff] [blame] | 299 | ETH_ALEN); |
| 300 | } else { |
| 301 | skb_put(skb, 4); |
| 302 | mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT | |
| 303 | IEEE80211_STYPE_ASSOC_REQ); |
| 304 | mgmt->u.assoc_req.capab_info = cpu_to_le16(capab); |
Rami Rosen | 1355412 | 2008-12-16 22:38:29 +0200 | [diff] [blame] | 305 | mgmt->u.assoc_req.listen_interval = |
Johannes Berg | 9ac19a9 | 2008-09-09 10:57:09 +0200 | [diff] [blame] | 306 | cpu_to_le16(local->hw.conf.listen_interval); |
| 307 | } |
| 308 | |
| 309 | /* SSID */ |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 310 | ies = pos = skb_put(skb, 2 + wk->ssid_len); |
Johannes Berg | 9ac19a9 | 2008-09-09 10:57:09 +0200 | [diff] [blame] | 311 | *pos++ = WLAN_EID_SSID; |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 312 | *pos++ = wk->ssid_len; |
| 313 | memcpy(pos, wk->ssid, wk->ssid_len); |
Johannes Berg | 9ac19a9 | 2008-09-09 10:57:09 +0200 | [diff] [blame] | 314 | |
| 315 | /* add all rates which were marked to be used above */ |
| 316 | supp_rates_len = rates_len; |
| 317 | if (supp_rates_len > 8) |
| 318 | supp_rates_len = 8; |
| 319 | |
| 320 | len = sband->n_bitrates; |
| 321 | pos = skb_put(skb, supp_rates_len + 2); |
| 322 | *pos++ = WLAN_EID_SUPP_RATES; |
| 323 | *pos++ = supp_rates_len; |
| 324 | |
| 325 | count = 0; |
| 326 | for (i = 0; i < sband->n_bitrates; i++) { |
| 327 | if (BIT(i) & rates) { |
| 328 | int rate = sband->bitrates[i].bitrate; |
| 329 | *pos++ = (u8) (rate / 5); |
| 330 | if (++count == 8) |
| 331 | break; |
| 332 | } |
| 333 | } |
| 334 | |
| 335 | if (rates_len > count) { |
| 336 | pos = skb_put(skb, rates_len - count + 2); |
| 337 | *pos++ = WLAN_EID_EXT_SUPP_RATES; |
| 338 | *pos++ = rates_len - count; |
| 339 | |
| 340 | for (i++; i < sband->n_bitrates; i++) { |
| 341 | if (BIT(i) & rates) { |
| 342 | int rate = sband->bitrates[i].bitrate; |
| 343 | *pos++ = (u8) (rate / 5); |
| 344 | } |
| 345 | } |
| 346 | } |
| 347 | |
| 348 | if (capab & WLAN_CAPABILITY_SPECTRUM_MGMT) { |
| 349 | /* 1. power capabilities */ |
| 350 | pos = skb_put(skb, 4); |
| 351 | *pos++ = WLAN_EID_PWR_CAPABILITY; |
| 352 | *pos++ = 2; |
| 353 | *pos++ = 0; /* min tx power */ |
| 354 | *pos++ = local->hw.conf.channel->max_power; /* max tx power */ |
| 355 | |
| 356 | /* 2. supported channels */ |
| 357 | /* TODO: get this in reg domain format */ |
| 358 | pos = skb_put(skb, 2 * sband->n_channels + 2); |
| 359 | *pos++ = WLAN_EID_SUPPORTED_CHANNELS; |
| 360 | *pos++ = 2 * sband->n_channels; |
| 361 | for (i = 0; i < sband->n_channels; i++) { |
| 362 | *pos++ = ieee80211_frequency_to_channel( |
| 363 | sband->channels[i].center_freq); |
| 364 | *pos++ = 1; /* one channel in the subband*/ |
| 365 | } |
| 366 | } |
| 367 | |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 368 | if (wk->ie_len && wk->ie) { |
| 369 | pos = skb_put(skb, wk->ie_len); |
| 370 | memcpy(pos, wk->ie, wk->ie_len); |
Johannes Berg | 9ac19a9 | 2008-09-09 10:57:09 +0200 | [diff] [blame] | 371 | } |
| 372 | |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 373 | if (wmm && (ifmgd->flags & IEEE80211_STA_WMM_ENABLED)) { |
Johannes Berg | 9ac19a9 | 2008-09-09 10:57:09 +0200 | [diff] [blame] | 374 | pos = skb_put(skb, 9); |
| 375 | *pos++ = WLAN_EID_VENDOR_SPECIFIC; |
| 376 | *pos++ = 7; /* len */ |
| 377 | *pos++ = 0x00; /* Microsoft OUI 00:50:F2 */ |
| 378 | *pos++ = 0x50; |
| 379 | *pos++ = 0xf2; |
| 380 | *pos++ = 2; /* WME */ |
| 381 | *pos++ = 0; /* WME info */ |
| 382 | *pos++ = 1; /* WME ver */ |
| 383 | *pos++ = 0; |
| 384 | } |
| 385 | |
| 386 | /* wmm support is a must to HT */ |
Vasanthakumar Thiagarajan | eb46936 | 2008-12-23 21:30:50 +0530 | [diff] [blame] | 387 | /* |
| 388 | * IEEE802.11n does not allow TKIP/WEP as pairwise |
| 389 | * ciphers in HT mode. We still associate in non-ht |
| 390 | * mode (11a/b/g) if any one of these ciphers is |
| 391 | * configured as pairwise. |
| 392 | */ |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 393 | if (wmm && (ifmgd->flags & IEEE80211_STA_WMM_ENABLED) && |
Johannes Berg | d9fe60d | 2008-10-09 12:13:49 +0200 | [diff] [blame] | 394 | sband->ht_cap.ht_supported && |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 395 | (ht_ie = ieee80211_bss_get_ie(&wk->bss->cbss, WLAN_EID_HT_INFORMATION)) && |
Vasanthakumar Thiagarajan | eb46936 | 2008-12-23 21:30:50 +0530 | [diff] [blame] | 396 | ht_ie[1] >= sizeof(struct ieee80211_ht_info) && |
Johannes Berg | ab1faea | 2009-07-01 21:41:17 +0200 | [diff] [blame] | 397 | (!(ifmgd->flags & IEEE80211_STA_DISABLE_11N))) { |
Johannes Berg | d9fe60d | 2008-10-09 12:13:49 +0200 | [diff] [blame] | 398 | struct ieee80211_ht_info *ht_info = |
| 399 | (struct ieee80211_ht_info *)(ht_ie + 2); |
| 400 | u16 cap = sband->ht_cap.cap; |
Johannes Berg | 9ac19a9 | 2008-09-09 10:57:09 +0200 | [diff] [blame] | 401 | __le16 tmp; |
| 402 | u32 flags = local->hw.conf.channel->flags; |
| 403 | |
Johannes Berg | 0f78231 | 2009-12-01 13:37:02 +0100 | [diff] [blame] | 404 | /* determine capability flags */ |
| 405 | |
Johannes Berg | f38fd12 | 2009-12-01 18:29:42 +0100 | [diff] [blame] | 406 | if (ieee80211_disable_40mhz_24ghz && |
| 407 | sband->band == IEEE80211_BAND_2GHZ) { |
| 408 | cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40; |
| 409 | cap &= ~IEEE80211_HT_CAP_SGI_40; |
| 410 | } |
| 411 | |
Johannes Berg | d9fe60d | 2008-10-09 12:13:49 +0200 | [diff] [blame] | 412 | switch (ht_info->ht_param & IEEE80211_HT_PARAM_CHA_SEC_OFFSET) { |
| 413 | case IEEE80211_HT_PARAM_CHA_SEC_ABOVE: |
Luis R. Rodriguez | 689da1b | 2009-05-02 00:37:18 -0400 | [diff] [blame] | 414 | if (flags & IEEE80211_CHAN_NO_HT40PLUS) { |
Johannes Berg | d9fe60d | 2008-10-09 12:13:49 +0200 | [diff] [blame] | 415 | cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40; |
Johannes Berg | 9ac19a9 | 2008-09-09 10:57:09 +0200 | [diff] [blame] | 416 | cap &= ~IEEE80211_HT_CAP_SGI_40; |
| 417 | } |
| 418 | break; |
Johannes Berg | d9fe60d | 2008-10-09 12:13:49 +0200 | [diff] [blame] | 419 | case IEEE80211_HT_PARAM_CHA_SEC_BELOW: |
Luis R. Rodriguez | 689da1b | 2009-05-02 00:37:18 -0400 | [diff] [blame] | 420 | if (flags & IEEE80211_CHAN_NO_HT40MINUS) { |
Johannes Berg | d9fe60d | 2008-10-09 12:13:49 +0200 | [diff] [blame] | 421 | cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40; |
Johannes Berg | 9ac19a9 | 2008-09-09 10:57:09 +0200 | [diff] [blame] | 422 | cap &= ~IEEE80211_HT_CAP_SGI_40; |
| 423 | } |
| 424 | break; |
| 425 | } |
| 426 | |
Johannes Berg | 0f78231 | 2009-12-01 13:37:02 +0100 | [diff] [blame] | 427 | /* set SM PS mode properly */ |
| 428 | cap &= ~IEEE80211_HT_CAP_SM_PS; |
| 429 | /* new association always uses requested smps mode */ |
| 430 | if (ifmgd->req_smps == IEEE80211_SMPS_AUTOMATIC) { |
| 431 | if (ifmgd->powersave) |
| 432 | ifmgd->ap_smps = IEEE80211_SMPS_DYNAMIC; |
| 433 | else |
| 434 | ifmgd->ap_smps = IEEE80211_SMPS_OFF; |
| 435 | } else |
| 436 | ifmgd->ap_smps = ifmgd->req_smps; |
| 437 | |
| 438 | switch (ifmgd->ap_smps) { |
| 439 | case IEEE80211_SMPS_AUTOMATIC: |
| 440 | case IEEE80211_SMPS_NUM_MODES: |
| 441 | WARN_ON(1); |
| 442 | case IEEE80211_SMPS_OFF: |
| 443 | cap |= WLAN_HT_CAP_SM_PS_DISABLED << |
| 444 | IEEE80211_HT_CAP_SM_PS_SHIFT; |
| 445 | break; |
| 446 | case IEEE80211_SMPS_STATIC: |
| 447 | cap |= WLAN_HT_CAP_SM_PS_STATIC << |
| 448 | IEEE80211_HT_CAP_SM_PS_SHIFT; |
| 449 | break; |
| 450 | case IEEE80211_SMPS_DYNAMIC: |
| 451 | cap |= WLAN_HT_CAP_SM_PS_DYNAMIC << |
| 452 | IEEE80211_HT_CAP_SM_PS_SHIFT; |
| 453 | break; |
| 454 | } |
| 455 | |
| 456 | /* reserve and fill IE */ |
| 457 | |
| 458 | pos = skb_put(skb, sizeof(struct ieee80211_ht_cap) + 2); |
Johannes Berg | 9ac19a9 | 2008-09-09 10:57:09 +0200 | [diff] [blame] | 459 | *pos++ = WLAN_EID_HT_CAPABILITY; |
| 460 | *pos++ = sizeof(struct ieee80211_ht_cap); |
| 461 | memset(pos, 0, sizeof(struct ieee80211_ht_cap)); |
Johannes Berg | 0f78231 | 2009-12-01 13:37:02 +0100 | [diff] [blame] | 462 | |
| 463 | /* capability flags */ |
| 464 | tmp = cpu_to_le16(cap); |
Johannes Berg | 9ac19a9 | 2008-09-09 10:57:09 +0200 | [diff] [blame] | 465 | memcpy(pos, &tmp, sizeof(u16)); |
| 466 | pos += sizeof(u16); |
Johannes Berg | 0f78231 | 2009-12-01 13:37:02 +0100 | [diff] [blame] | 467 | |
| 468 | /* AMPDU parameters */ |
Johannes Berg | d9fe60d | 2008-10-09 12:13:49 +0200 | [diff] [blame] | 469 | *pos++ = sband->ht_cap.ampdu_factor | |
Johannes Berg | 0f78231 | 2009-12-01 13:37:02 +0100 | [diff] [blame] | 470 | (sband->ht_cap.ampdu_density << |
| 471 | IEEE80211_HT_AMPDU_PARM_DENSITY_SHIFT); |
| 472 | |
| 473 | /* MCS set */ |
Johannes Berg | d9fe60d | 2008-10-09 12:13:49 +0200 | [diff] [blame] | 474 | memcpy(pos, &sband->ht_cap.mcs, sizeof(sband->ht_cap.mcs)); |
Johannes Berg | 0f78231 | 2009-12-01 13:37:02 +0100 | [diff] [blame] | 475 | pos += sizeof(sband->ht_cap.mcs); |
| 476 | |
| 477 | /* extended capabilities */ |
| 478 | pos += sizeof(__le16); |
| 479 | |
| 480 | /* BF capabilities */ |
| 481 | pos += sizeof(__le32); |
| 482 | |
| 483 | /* antenna selection */ |
| 484 | pos += sizeof(u8); |
Johannes Berg | 9ac19a9 | 2008-09-09 10:57:09 +0200 | [diff] [blame] | 485 | } |
| 486 | |
Johannes Berg | 62ae67b | 2009-11-18 18:42:05 +0100 | [diff] [blame] | 487 | IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT; |
| 488 | ieee80211_tx_skb(sdata, skb); |
Johannes Berg | 9ac19a9 | 2008-09-09 10:57:09 +0200 | [diff] [blame] | 489 | } |
| 490 | |
| 491 | |
Johannes Berg | ef422bc | 2008-09-09 10:58:25 +0200 | [diff] [blame] | 492 | static void ieee80211_send_deauth_disassoc(struct ieee80211_sub_if_data *sdata, |
Johannes Berg | 667503d | 2009-07-07 03:56:11 +0200 | [diff] [blame] | 493 | const u8 *bssid, u16 stype, u16 reason, |
| 494 | void *cookie) |
Johannes Berg | 9ac19a9 | 2008-09-09 10:57:09 +0200 | [diff] [blame] | 495 | { |
| 496 | struct ieee80211_local *local = sdata->local; |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 497 | struct ieee80211_if_managed *ifmgd = &sdata->u.mgd; |
Johannes Berg | 9ac19a9 | 2008-09-09 10:57:09 +0200 | [diff] [blame] | 498 | struct sk_buff *skb; |
| 499 | struct ieee80211_mgmt *mgmt; |
| 500 | |
Jouni Malinen | 65fc73a | 2009-03-20 21:21:16 +0200 | [diff] [blame] | 501 | skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*mgmt)); |
Johannes Berg | 9ac19a9 | 2008-09-09 10:57:09 +0200 | [diff] [blame] | 502 | if (!skb) { |
Johannes Berg | ef422bc | 2008-09-09 10:58:25 +0200 | [diff] [blame] | 503 | printk(KERN_DEBUG "%s: failed to allocate buffer for " |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 504 | "deauth/disassoc frame\n", sdata->name); |
Johannes Berg | 9ac19a9 | 2008-09-09 10:57:09 +0200 | [diff] [blame] | 505 | return; |
| 506 | } |
| 507 | skb_reserve(skb, local->hw.extra_tx_headroom); |
| 508 | |
| 509 | mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24); |
| 510 | memset(mgmt, 0, 24); |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 511 | memcpy(mgmt->da, bssid, ETH_ALEN); |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 512 | memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN); |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 513 | memcpy(mgmt->bssid, bssid, ETH_ALEN); |
Johannes Berg | ef422bc | 2008-09-09 10:58:25 +0200 | [diff] [blame] | 514 | mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT | stype); |
Johannes Berg | 9ac19a9 | 2008-09-09 10:57:09 +0200 | [diff] [blame] | 515 | skb_put(skb, 2); |
Johannes Berg | ef422bc | 2008-09-09 10:58:25 +0200 | [diff] [blame] | 516 | /* u.deauth.reason_code == u.disassoc.reason_code */ |
Johannes Berg | 9ac19a9 | 2008-09-09 10:57:09 +0200 | [diff] [blame] | 517 | mgmt->u.deauth.reason_code = cpu_to_le16(reason); |
| 518 | |
Jouni Malinen | 53b46b8 | 2009-03-27 20:53:56 +0200 | [diff] [blame] | 519 | if (stype == IEEE80211_STYPE_DEAUTH) |
Holger Schurig | ce47061 | 2009-10-13 13:28:13 +0200 | [diff] [blame] | 520 | if (cookie) |
| 521 | __cfg80211_send_deauth(sdata->dev, (u8 *)mgmt, skb->len); |
| 522 | else |
| 523 | cfg80211_send_deauth(sdata->dev, (u8 *)mgmt, skb->len); |
Jouni Malinen | 53b46b8 | 2009-03-27 20:53:56 +0200 | [diff] [blame] | 524 | else |
Holger Schurig | ce47061 | 2009-10-13 13:28:13 +0200 | [diff] [blame] | 525 | if (cookie) |
| 526 | __cfg80211_send_disassoc(sdata->dev, (u8 *)mgmt, skb->len); |
| 527 | else |
| 528 | cfg80211_send_disassoc(sdata->dev, (u8 *)mgmt, skb->len); |
Johannes Berg | 62ae67b | 2009-11-18 18:42:05 +0100 | [diff] [blame] | 529 | if (!(ifmgd->flags & IEEE80211_STA_MFP_ENABLED)) |
| 530 | IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT; |
| 531 | ieee80211_tx_skb(sdata, skb); |
Johannes Berg | 9ac19a9 | 2008-09-09 10:57:09 +0200 | [diff] [blame] | 532 | } |
| 533 | |
Kalle Valo | 572e001 | 2009-02-10 17:09:31 +0200 | [diff] [blame] | 534 | void ieee80211_send_pspoll(struct ieee80211_local *local, |
| 535 | struct ieee80211_sub_if_data *sdata) |
| 536 | { |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 537 | struct ieee80211_if_managed *ifmgd = &sdata->u.mgd; |
Kalle Valo | 572e001 | 2009-02-10 17:09:31 +0200 | [diff] [blame] | 538 | struct ieee80211_pspoll *pspoll; |
| 539 | struct sk_buff *skb; |
| 540 | u16 fc; |
| 541 | |
| 542 | skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*pspoll)); |
| 543 | if (!skb) { |
| 544 | printk(KERN_DEBUG "%s: failed to allocate buffer for " |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 545 | "pspoll frame\n", sdata->name); |
Kalle Valo | 572e001 | 2009-02-10 17:09:31 +0200 | [diff] [blame] | 546 | return; |
| 547 | } |
| 548 | skb_reserve(skb, local->hw.extra_tx_headroom); |
| 549 | |
| 550 | pspoll = (struct ieee80211_pspoll *) skb_put(skb, sizeof(*pspoll)); |
| 551 | memset(pspoll, 0, sizeof(*pspoll)); |
| 552 | fc = IEEE80211_FTYPE_CTL | IEEE80211_STYPE_PSPOLL | IEEE80211_FCTL_PM; |
| 553 | pspoll->frame_control = cpu_to_le16(fc); |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 554 | pspoll->aid = cpu_to_le16(ifmgd->aid); |
Kalle Valo | 572e001 | 2009-02-10 17:09:31 +0200 | [diff] [blame] | 555 | |
| 556 | /* aid in PS-Poll has its two MSBs each set to 1 */ |
| 557 | pspoll->aid |= cpu_to_le16(1 << 15 | 1 << 14); |
| 558 | |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 559 | memcpy(pspoll->bssid, ifmgd->bssid, ETH_ALEN); |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 560 | memcpy(pspoll->ta, sdata->vif.addr, ETH_ALEN); |
Kalle Valo | 572e001 | 2009-02-10 17:09:31 +0200 | [diff] [blame] | 561 | |
Johannes Berg | 62ae67b | 2009-11-18 18:42:05 +0100 | [diff] [blame] | 562 | IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT; |
| 563 | ieee80211_tx_skb(sdata, skb); |
Kalle Valo | 572e001 | 2009-02-10 17:09:31 +0200 | [diff] [blame] | 564 | } |
| 565 | |
Johannes Berg | 965beda | 2009-04-16 13:17:24 +0200 | [diff] [blame] | 566 | void ieee80211_send_nullfunc(struct ieee80211_local *local, |
| 567 | struct ieee80211_sub_if_data *sdata, |
| 568 | int powersave) |
| 569 | { |
| 570 | struct sk_buff *skb; |
| 571 | struct ieee80211_hdr *nullfunc; |
| 572 | __le16 fc; |
| 573 | |
| 574 | if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION)) |
| 575 | return; |
| 576 | |
| 577 | skb = dev_alloc_skb(local->hw.extra_tx_headroom + 24); |
| 578 | if (!skb) { |
| 579 | printk(KERN_DEBUG "%s: failed to allocate buffer for nullfunc " |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 580 | "frame\n", sdata->name); |
Johannes Berg | 965beda | 2009-04-16 13:17:24 +0200 | [diff] [blame] | 581 | return; |
| 582 | } |
| 583 | skb_reserve(skb, local->hw.extra_tx_headroom); |
| 584 | |
| 585 | nullfunc = (struct ieee80211_hdr *) skb_put(skb, 24); |
| 586 | memset(nullfunc, 0, 24); |
| 587 | fc = cpu_to_le16(IEEE80211_FTYPE_DATA | IEEE80211_STYPE_NULLFUNC | |
| 588 | IEEE80211_FCTL_TODS); |
| 589 | if (powersave) |
| 590 | fc |= cpu_to_le16(IEEE80211_FCTL_PM); |
| 591 | nullfunc->frame_control = fc; |
| 592 | memcpy(nullfunc->addr1, sdata->u.mgd.bssid, ETH_ALEN); |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 593 | memcpy(nullfunc->addr2, sdata->vif.addr, ETH_ALEN); |
Johannes Berg | 965beda | 2009-04-16 13:17:24 +0200 | [diff] [blame] | 594 | memcpy(nullfunc->addr3, sdata->u.mgd.bssid, ETH_ALEN); |
| 595 | |
Johannes Berg | 62ae67b | 2009-11-18 18:42:05 +0100 | [diff] [blame] | 596 | IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT; |
| 597 | ieee80211_tx_skb(sdata, skb); |
Johannes Berg | 965beda | 2009-04-16 13:17:24 +0200 | [diff] [blame] | 598 | } |
| 599 | |
Johannes Berg | cc32abd | 2009-05-15 11:52:31 +0200 | [diff] [blame] | 600 | /* spectrum management related things */ |
| 601 | static void ieee80211_chswitch_work(struct work_struct *work) |
| 602 | { |
| 603 | struct ieee80211_sub_if_data *sdata = |
| 604 | container_of(work, struct ieee80211_sub_if_data, u.mgd.chswitch_work); |
Johannes Berg | cc32abd | 2009-05-15 11:52:31 +0200 | [diff] [blame] | 605 | struct ieee80211_if_managed *ifmgd = &sdata->u.mgd; |
| 606 | |
| 607 | if (!netif_running(sdata->dev)) |
| 608 | return; |
| 609 | |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 610 | mutex_lock(&ifmgd->mtx); |
| 611 | if (!ifmgd->associated) |
| 612 | goto out; |
Johannes Berg | cc32abd | 2009-05-15 11:52:31 +0200 | [diff] [blame] | 613 | |
| 614 | sdata->local->oper_channel = sdata->local->csa_channel; |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 615 | ieee80211_hw_config(sdata->local, IEEE80211_CONF_CHANGE_CHANNEL); |
Johannes Berg | cc32abd | 2009-05-15 11:52:31 +0200 | [diff] [blame] | 616 | |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 617 | /* XXX: shouldn't really modify cfg80211-owned data! */ |
| 618 | ifmgd->associated->cbss.channel = sdata->local->oper_channel; |
| 619 | |
Johannes Berg | cc32abd | 2009-05-15 11:52:31 +0200 | [diff] [blame] | 620 | ieee80211_wake_queues_by_reason(&sdata->local->hw, |
| 621 | IEEE80211_QUEUE_STOP_REASON_CSA); |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 622 | out: |
| 623 | ifmgd->flags &= ~IEEE80211_STA_CSA_RECEIVED; |
| 624 | mutex_unlock(&ifmgd->mtx); |
Johannes Berg | cc32abd | 2009-05-15 11:52:31 +0200 | [diff] [blame] | 625 | } |
| 626 | |
| 627 | static void ieee80211_chswitch_timer(unsigned long data) |
| 628 | { |
| 629 | struct ieee80211_sub_if_data *sdata = |
| 630 | (struct ieee80211_sub_if_data *) data; |
| 631 | struct ieee80211_if_managed *ifmgd = &sdata->u.mgd; |
| 632 | |
Johannes Berg | 5bb644a | 2009-05-17 11:40:42 +0200 | [diff] [blame] | 633 | if (sdata->local->quiescing) { |
| 634 | set_bit(TMR_RUNNING_CHANSW, &ifmgd->timers_running); |
| 635 | return; |
| 636 | } |
| 637 | |
Luis R. Rodriguez | 42935ec | 2009-07-29 20:08:07 -0400 | [diff] [blame] | 638 | ieee80211_queue_work(&sdata->local->hw, &ifmgd->chswitch_work); |
Johannes Berg | cc32abd | 2009-05-15 11:52:31 +0200 | [diff] [blame] | 639 | } |
| 640 | |
| 641 | void ieee80211_sta_process_chanswitch(struct ieee80211_sub_if_data *sdata, |
| 642 | struct ieee80211_channel_sw_ie *sw_elem, |
| 643 | struct ieee80211_bss *bss) |
| 644 | { |
| 645 | struct ieee80211_channel *new_ch; |
| 646 | struct ieee80211_if_managed *ifmgd = &sdata->u.mgd; |
| 647 | int new_freq = ieee80211_channel_to_frequency(sw_elem->new_ch_num); |
| 648 | |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 649 | ASSERT_MGD_MTX(ifmgd); |
| 650 | |
| 651 | if (!ifmgd->associated) |
Johannes Berg | cc32abd | 2009-05-15 11:52:31 +0200 | [diff] [blame] | 652 | return; |
| 653 | |
Helmut Schaa | fbe9c42 | 2009-07-23 12:14:04 +0200 | [diff] [blame] | 654 | if (sdata->local->scanning) |
Johannes Berg | cc32abd | 2009-05-15 11:52:31 +0200 | [diff] [blame] | 655 | return; |
| 656 | |
| 657 | /* Disregard subsequent beacons if we are already running a timer |
| 658 | processing a CSA */ |
| 659 | |
| 660 | if (ifmgd->flags & IEEE80211_STA_CSA_RECEIVED) |
| 661 | return; |
| 662 | |
| 663 | new_ch = ieee80211_get_channel(sdata->local->hw.wiphy, new_freq); |
| 664 | if (!new_ch || new_ch->flags & IEEE80211_CHAN_DISABLED) |
| 665 | return; |
| 666 | |
| 667 | sdata->local->csa_channel = new_ch; |
| 668 | |
| 669 | if (sw_elem->count <= 1) { |
Luis R. Rodriguez | 42935ec | 2009-07-29 20:08:07 -0400 | [diff] [blame] | 670 | ieee80211_queue_work(&sdata->local->hw, &ifmgd->chswitch_work); |
Johannes Berg | cc32abd | 2009-05-15 11:52:31 +0200 | [diff] [blame] | 671 | } else { |
| 672 | ieee80211_stop_queues_by_reason(&sdata->local->hw, |
| 673 | IEEE80211_QUEUE_STOP_REASON_CSA); |
| 674 | ifmgd->flags |= IEEE80211_STA_CSA_RECEIVED; |
| 675 | mod_timer(&ifmgd->chswitch_timer, |
| 676 | jiffies + |
| 677 | msecs_to_jiffies(sw_elem->count * |
| 678 | bss->cbss.beacon_interval)); |
| 679 | } |
| 680 | } |
| 681 | |
| 682 | static void ieee80211_handle_pwr_constr(struct ieee80211_sub_if_data *sdata, |
| 683 | u16 capab_info, u8 *pwr_constr_elem, |
| 684 | u8 pwr_constr_elem_len) |
| 685 | { |
| 686 | struct ieee80211_conf *conf = &sdata->local->hw.conf; |
| 687 | |
| 688 | if (!(capab_info & WLAN_CAPABILITY_SPECTRUM_MGMT)) |
| 689 | return; |
| 690 | |
| 691 | /* Power constraint IE length should be 1 octet */ |
| 692 | if (pwr_constr_elem_len != 1) |
| 693 | return; |
| 694 | |
| 695 | if ((*pwr_constr_elem <= conf->channel->max_power) && |
| 696 | (*pwr_constr_elem != sdata->local->power_constr_level)) { |
| 697 | sdata->local->power_constr_level = *pwr_constr_elem; |
| 698 | ieee80211_hw_config(sdata->local, 0); |
| 699 | } |
| 700 | } |
| 701 | |
Johannes Berg | 965beda | 2009-04-16 13:17:24 +0200 | [diff] [blame] | 702 | /* powersave */ |
| 703 | static void ieee80211_enable_ps(struct ieee80211_local *local, |
| 704 | struct ieee80211_sub_if_data *sdata) |
| 705 | { |
| 706 | struct ieee80211_conf *conf = &local->hw.conf; |
| 707 | |
Johannes Berg | d5edaed | 2009-04-22 23:02:51 +0200 | [diff] [blame] | 708 | /* |
| 709 | * If we are scanning right now then the parameters will |
| 710 | * take effect when scan finishes. |
| 711 | */ |
Helmut Schaa | fbe9c42 | 2009-07-23 12:14:04 +0200 | [diff] [blame] | 712 | if (local->scanning) |
Johannes Berg | d5edaed | 2009-04-22 23:02:51 +0200 | [diff] [blame] | 713 | return; |
| 714 | |
Johannes Berg | 965beda | 2009-04-16 13:17:24 +0200 | [diff] [blame] | 715 | if (conf->dynamic_ps_timeout > 0 && |
| 716 | !(local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS)) { |
| 717 | mod_timer(&local->dynamic_ps_timer, jiffies + |
| 718 | msecs_to_jiffies(conf->dynamic_ps_timeout)); |
| 719 | } else { |
| 720 | if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK) |
| 721 | ieee80211_send_nullfunc(local, sdata, 1); |
| 722 | conf->flags |= IEEE80211_CONF_PS; |
| 723 | ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS); |
| 724 | } |
| 725 | } |
| 726 | |
| 727 | static void ieee80211_change_ps(struct ieee80211_local *local) |
| 728 | { |
| 729 | struct ieee80211_conf *conf = &local->hw.conf; |
| 730 | |
| 731 | if (local->ps_sdata) { |
Johannes Berg | 965beda | 2009-04-16 13:17:24 +0200 | [diff] [blame] | 732 | ieee80211_enable_ps(local, local->ps_sdata); |
| 733 | } else if (conf->flags & IEEE80211_CONF_PS) { |
| 734 | conf->flags &= ~IEEE80211_CONF_PS; |
| 735 | ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS); |
| 736 | del_timer_sync(&local->dynamic_ps_timer); |
| 737 | cancel_work_sync(&local->dynamic_ps_enable_work); |
| 738 | } |
| 739 | } |
| 740 | |
| 741 | /* need to hold RTNL or interface lock */ |
Johannes Berg | 10f644a | 2009-04-16 13:17:25 +0200 | [diff] [blame] | 742 | void ieee80211_recalc_ps(struct ieee80211_local *local, s32 latency) |
Johannes Berg | 965beda | 2009-04-16 13:17:24 +0200 | [diff] [blame] | 743 | { |
| 744 | struct ieee80211_sub_if_data *sdata, *found = NULL; |
| 745 | int count = 0; |
| 746 | |
| 747 | if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_PS)) { |
| 748 | local->ps_sdata = NULL; |
| 749 | return; |
| 750 | } |
| 751 | |
| 752 | list_for_each_entry(sdata, &local->interfaces, list) { |
| 753 | if (!netif_running(sdata->dev)) |
| 754 | continue; |
| 755 | if (sdata->vif.type != NL80211_IFTYPE_STATION) |
| 756 | continue; |
| 757 | found = sdata; |
| 758 | count++; |
| 759 | } |
| 760 | |
Luis R. Rodriguez | 43f7853 | 2009-06-10 15:16:15 +0200 | [diff] [blame] | 761 | if (count == 1 && found->u.mgd.powersave && |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 762 | found->u.mgd.associated && list_empty(&found->u.mgd.work_list) && |
Johannes Berg | b291ba1 | 2009-07-10 15:29:03 +0200 | [diff] [blame] | 763 | !(found->u.mgd.flags & (IEEE80211_STA_BEACON_POLL | |
| 764 | IEEE80211_STA_CONNECTION_POLL))) { |
Johannes Berg | 10f644a | 2009-04-16 13:17:25 +0200 | [diff] [blame] | 765 | s32 beaconint_us; |
| 766 | |
| 767 | if (latency < 0) |
| 768 | latency = pm_qos_requirement(PM_QOS_NETWORK_LATENCY); |
| 769 | |
| 770 | beaconint_us = ieee80211_tu_to_usec( |
| 771 | found->vif.bss_conf.beacon_int); |
| 772 | |
Johannes Berg | 04fe203 | 2009-04-22 18:44:37 +0200 | [diff] [blame] | 773 | if (beaconint_us > latency) { |
Johannes Berg | 10f644a | 2009-04-16 13:17:25 +0200 | [diff] [blame] | 774 | local->ps_sdata = NULL; |
Johannes Berg | 04fe203 | 2009-04-22 18:44:37 +0200 | [diff] [blame] | 775 | } else { |
| 776 | u8 dtimper = found->vif.bss_conf.dtim_period; |
| 777 | int maxslp = 1; |
| 778 | |
| 779 | if (dtimper > 1) |
| 780 | maxslp = min_t(int, dtimper, |
| 781 | latency / beaconint_us); |
| 782 | |
Johannes Berg | 9ccebe6 | 2009-04-23 10:32:36 +0200 | [diff] [blame] | 783 | local->hw.conf.max_sleep_period = maxslp; |
Johannes Berg | 10f644a | 2009-04-16 13:17:25 +0200 | [diff] [blame] | 784 | local->ps_sdata = found; |
Johannes Berg | 04fe203 | 2009-04-22 18:44:37 +0200 | [diff] [blame] | 785 | } |
Johannes Berg | 10f644a | 2009-04-16 13:17:25 +0200 | [diff] [blame] | 786 | } else { |
Johannes Berg | 965beda | 2009-04-16 13:17:24 +0200 | [diff] [blame] | 787 | local->ps_sdata = NULL; |
Johannes Berg | 10f644a | 2009-04-16 13:17:25 +0200 | [diff] [blame] | 788 | } |
Johannes Berg | 965beda | 2009-04-16 13:17:24 +0200 | [diff] [blame] | 789 | |
| 790 | ieee80211_change_ps(local); |
| 791 | } |
| 792 | |
| 793 | void ieee80211_dynamic_ps_disable_work(struct work_struct *work) |
| 794 | { |
| 795 | struct ieee80211_local *local = |
| 796 | container_of(work, struct ieee80211_local, |
| 797 | dynamic_ps_disable_work); |
| 798 | |
| 799 | if (local->hw.conf.flags & IEEE80211_CONF_PS) { |
| 800 | local->hw.conf.flags &= ~IEEE80211_CONF_PS; |
| 801 | ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS); |
| 802 | } |
| 803 | |
| 804 | ieee80211_wake_queues_by_reason(&local->hw, |
| 805 | IEEE80211_QUEUE_STOP_REASON_PS); |
| 806 | } |
| 807 | |
| 808 | void ieee80211_dynamic_ps_enable_work(struct work_struct *work) |
| 809 | { |
| 810 | struct ieee80211_local *local = |
| 811 | container_of(work, struct ieee80211_local, |
| 812 | dynamic_ps_enable_work); |
| 813 | struct ieee80211_sub_if_data *sdata = local->ps_sdata; |
| 814 | |
| 815 | /* can only happen when PS was just disabled anyway */ |
| 816 | if (!sdata) |
| 817 | return; |
| 818 | |
| 819 | if (local->hw.conf.flags & IEEE80211_CONF_PS) |
| 820 | return; |
| 821 | |
| 822 | if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK) |
| 823 | ieee80211_send_nullfunc(local, sdata, 1); |
| 824 | |
| 825 | local->hw.conf.flags |= IEEE80211_CONF_PS; |
| 826 | ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS); |
| 827 | } |
| 828 | |
| 829 | void ieee80211_dynamic_ps_timer(unsigned long data) |
| 830 | { |
| 831 | struct ieee80211_local *local = (void *) data; |
| 832 | |
Luis R. Rodriguez | 78f1a8b | 2009-07-27 08:38:25 -0700 | [diff] [blame] | 833 | if (local->quiescing || local->suspended) |
Johannes Berg | 5bb644a | 2009-05-17 11:40:42 +0200 | [diff] [blame] | 834 | return; |
| 835 | |
Luis R. Rodriguez | 42935ec | 2009-07-29 20:08:07 -0400 | [diff] [blame] | 836 | ieee80211_queue_work(&local->hw, &local->dynamic_ps_enable_work); |
Johannes Berg | 965beda | 2009-04-16 13:17:24 +0200 | [diff] [blame] | 837 | } |
| 838 | |
Johannes Berg | 60f8b39 | 2008-09-08 17:44:22 +0200 | [diff] [blame] | 839 | /* MLME */ |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 840 | static void ieee80211_sta_wmm_params(struct ieee80211_local *local, |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 841 | struct ieee80211_if_managed *ifmgd, |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 842 | u8 *wmm_param, size_t wmm_param_len) |
| 843 | { |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 844 | struct ieee80211_tx_queue_params params; |
| 845 | size_t left; |
| 846 | int count; |
| 847 | u8 *pos; |
| 848 | |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 849 | if (!(ifmgd->flags & IEEE80211_STA_WMM_ENABLED)) |
Johannes Berg | 3434fbd | 2008-05-03 00:59:37 +0200 | [diff] [blame] | 850 | return; |
| 851 | |
| 852 | if (!wmm_param) |
| 853 | return; |
| 854 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 855 | if (wmm_param_len < 8 || wmm_param[5] /* version */ != 1) |
| 856 | return; |
| 857 | count = wmm_param[6] & 0x0f; |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 858 | if (count == ifmgd->wmm_last_param_set) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 859 | return; |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 860 | ifmgd->wmm_last_param_set = count; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 861 | |
| 862 | pos = wmm_param + 8; |
| 863 | left = wmm_param_len - 8; |
| 864 | |
| 865 | memset(¶ms, 0, sizeof(params)); |
| 866 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 867 | local->wmm_acm = 0; |
| 868 | for (; left >= 4; left -= 4, pos += 4) { |
| 869 | int aci = (pos[0] >> 5) & 0x03; |
| 870 | int acm = (pos[0] >> 4) & 0x01; |
| 871 | int queue; |
| 872 | |
| 873 | switch (aci) { |
Jouni Malinen | 0eeb59f | 2009-03-05 17:23:46 +0200 | [diff] [blame] | 874 | case 1: /* AC_BK */ |
Johannes Berg | e100bb6 | 2008-04-30 18:51:21 +0200 | [diff] [blame] | 875 | queue = 3; |
Johannes Berg | 988c0f7 | 2008-04-17 19:21:22 +0200 | [diff] [blame] | 876 | if (acm) |
Jouni Malinen | 0eeb59f | 2009-03-05 17:23:46 +0200 | [diff] [blame] | 877 | local->wmm_acm |= BIT(1) | BIT(2); /* BK/- */ |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 878 | break; |
Jouni Malinen | 0eeb59f | 2009-03-05 17:23:46 +0200 | [diff] [blame] | 879 | case 2: /* AC_VI */ |
Johannes Berg | e100bb6 | 2008-04-30 18:51:21 +0200 | [diff] [blame] | 880 | queue = 1; |
Johannes Berg | 988c0f7 | 2008-04-17 19:21:22 +0200 | [diff] [blame] | 881 | if (acm) |
Jouni Malinen | 0eeb59f | 2009-03-05 17:23:46 +0200 | [diff] [blame] | 882 | local->wmm_acm |= BIT(4) | BIT(5); /* CL/VI */ |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 883 | break; |
Jouni Malinen | 0eeb59f | 2009-03-05 17:23:46 +0200 | [diff] [blame] | 884 | case 3: /* AC_VO */ |
Johannes Berg | e100bb6 | 2008-04-30 18:51:21 +0200 | [diff] [blame] | 885 | queue = 0; |
Johannes Berg | 988c0f7 | 2008-04-17 19:21:22 +0200 | [diff] [blame] | 886 | if (acm) |
Jouni Malinen | 0eeb59f | 2009-03-05 17:23:46 +0200 | [diff] [blame] | 887 | local->wmm_acm |= BIT(6) | BIT(7); /* VO/NC */ |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 888 | break; |
Jouni Malinen | 0eeb59f | 2009-03-05 17:23:46 +0200 | [diff] [blame] | 889 | case 0: /* AC_BE */ |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 890 | default: |
Johannes Berg | e100bb6 | 2008-04-30 18:51:21 +0200 | [diff] [blame] | 891 | queue = 2; |
Johannes Berg | 988c0f7 | 2008-04-17 19:21:22 +0200 | [diff] [blame] | 892 | if (acm) |
Jouni Malinen | 0eeb59f | 2009-03-05 17:23:46 +0200 | [diff] [blame] | 893 | local->wmm_acm |= BIT(0) | BIT(3); /* BE/EE */ |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 894 | break; |
| 895 | } |
| 896 | |
| 897 | params.aifs = pos[0] & 0x0f; |
| 898 | params.cw_max = ecw2cw((pos[1] & 0xf0) >> 4); |
| 899 | params.cw_min = ecw2cw(pos[1] & 0x0f); |
Johannes Berg | f434b2d | 2008-07-10 11:22:31 +0200 | [diff] [blame] | 900 | params.txop = get_unaligned_le16(pos + 2); |
Johannes Berg | f4ea83d | 2008-06-30 15:10:46 +0200 | [diff] [blame] | 901 | #ifdef CONFIG_MAC80211_VERBOSE_DEBUG |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 902 | printk(KERN_DEBUG "%s: WMM queue=%d aci=%d acm=%d aifs=%d " |
Johannes Berg | 3330d7b | 2008-02-10 16:49:38 +0100 | [diff] [blame] | 903 | "cWmin=%d cWmax=%d txop=%d\n", |
Johannes Berg | 0bffe40 | 2009-06-09 16:18:32 +0200 | [diff] [blame] | 904 | wiphy_name(local->hw.wiphy), queue, aci, acm, |
| 905 | params.aifs, params.cw_min, params.cw_max, params.txop); |
Johannes Berg | 3330d7b | 2008-02-10 16:49:38 +0100 | [diff] [blame] | 906 | #endif |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 907 | if (drv_conf_tx(local, queue, ¶ms) && local->ops->conf_tx) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 908 | printk(KERN_DEBUG "%s: failed to set TX queue " |
Johannes Berg | 0bffe40 | 2009-06-09 16:18:32 +0200 | [diff] [blame] | 909 | "parameters for queue %d\n", |
| 910 | wiphy_name(local->hw.wiphy), queue); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 911 | } |
| 912 | } |
| 913 | |
Johannes Berg | 7a5158e | 2008-10-08 10:59:33 +0200 | [diff] [blame] | 914 | static u32 ieee80211_handle_bss_capability(struct ieee80211_sub_if_data *sdata, |
| 915 | u16 capab, bool erp_valid, u8 erp) |
Daniel Drake | 5628221 | 2007-07-10 19:32:10 +0200 | [diff] [blame] | 916 | { |
Johannes Berg | bda3933 | 2008-10-11 01:51:51 +0200 | [diff] [blame] | 917 | struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf; |
Johannes Berg | 471b3ef | 2007-12-28 14:32:58 +0100 | [diff] [blame] | 918 | u32 changed = 0; |
Johannes Berg | 7a5158e | 2008-10-08 10:59:33 +0200 | [diff] [blame] | 919 | bool use_protection; |
| 920 | bool use_short_preamble; |
| 921 | bool use_short_slot; |
| 922 | |
| 923 | if (erp_valid) { |
| 924 | use_protection = (erp & WLAN_ERP_USE_PROTECTION) != 0; |
| 925 | use_short_preamble = (erp & WLAN_ERP_BARKER_PREAMBLE) == 0; |
| 926 | } else { |
| 927 | use_protection = false; |
| 928 | use_short_preamble = !!(capab & WLAN_CAPABILITY_SHORT_PREAMBLE); |
| 929 | } |
| 930 | |
| 931 | use_short_slot = !!(capab & WLAN_CAPABILITY_SHORT_SLOT_TIME); |
Daniel Drake | 5628221 | 2007-07-10 19:32:10 +0200 | [diff] [blame] | 932 | |
Johannes Berg | 471b3ef | 2007-12-28 14:32:58 +0100 | [diff] [blame] | 933 | if (use_protection != bss_conf->use_cts_prot) { |
Johannes Berg | 471b3ef | 2007-12-28 14:32:58 +0100 | [diff] [blame] | 934 | bss_conf->use_cts_prot = use_protection; |
| 935 | changed |= BSS_CHANGED_ERP_CTS_PROT; |
Daniel Drake | 5628221 | 2007-07-10 19:32:10 +0200 | [diff] [blame] | 936 | } |
Daniel Drake | 7e9ed18 | 2007-07-27 15:43:24 +0200 | [diff] [blame] | 937 | |
Vladimir Koutny | d43c7b3 | 2008-03-31 17:05:03 +0200 | [diff] [blame] | 938 | if (use_short_preamble != bss_conf->use_short_preamble) { |
Vladimir Koutny | d43c7b3 | 2008-03-31 17:05:03 +0200 | [diff] [blame] | 939 | bss_conf->use_short_preamble = use_short_preamble; |
Johannes Berg | 471b3ef | 2007-12-28 14:32:58 +0100 | [diff] [blame] | 940 | changed |= BSS_CHANGED_ERP_PREAMBLE; |
Daniel Drake | 7e9ed18 | 2007-07-27 15:43:24 +0200 | [diff] [blame] | 941 | } |
Daniel Drake | d9430a3 | 2007-07-27 15:43:24 +0200 | [diff] [blame] | 942 | |
Johannes Berg | 7a5158e | 2008-10-08 10:59:33 +0200 | [diff] [blame] | 943 | if (use_short_slot != bss_conf->use_short_slot) { |
Johannes Berg | 7a5158e | 2008-10-08 10:59:33 +0200 | [diff] [blame] | 944 | bss_conf->use_short_slot = use_short_slot; |
| 945 | changed |= BSS_CHANGED_ERP_SLOT; |
John W. Linville | 50c4afb | 2008-04-15 14:09:27 -0400 | [diff] [blame] | 946 | } |
| 947 | |
| 948 | return changed; |
| 949 | } |
| 950 | |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 951 | static void ieee80211_set_associated(struct ieee80211_sub_if_data *sdata, |
Johannes Berg | e21546a | 2009-08-06 20:41:32 +0200 | [diff] [blame] | 952 | struct ieee80211_mgd_work *wk, |
Johannes Berg | ae5eb02 | 2008-10-14 16:58:37 +0200 | [diff] [blame] | 953 | u32 bss_info_changed) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 954 | { |
Johannes Berg | 471b3ef | 2007-12-28 14:32:58 +0100 | [diff] [blame] | 955 | struct ieee80211_local *local = sdata->local; |
Johannes Berg | e21546a | 2009-08-06 20:41:32 +0200 | [diff] [blame] | 956 | struct ieee80211_bss *bss = wk->bss; |
Jiri Slaby | d6f2da5 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 957 | |
Johannes Berg | ae5eb02 | 2008-10-14 16:58:37 +0200 | [diff] [blame] | 958 | bss_info_changed |= BSS_CHANGED_ASSOC; |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 959 | /* set timing information */ |
| 960 | sdata->vif.bss_conf.beacon_int = bss->cbss.beacon_interval; |
| 961 | sdata->vif.bss_conf.timestamp = bss->cbss.tsf; |
| 962 | sdata->vif.bss_conf.dtim_period = bss->dtim_period; |
Jiri Slaby | d6f2da5 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 963 | |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 964 | bss_info_changed |= BSS_CHANGED_BEACON_INT; |
| 965 | bss_info_changed |= ieee80211_handle_bss_capability(sdata, |
| 966 | bss->cbss.capability, bss->has_erp_value, bss->erp_value); |
Tomas Winkler | 21c0cbe | 2008-03-28 16:33:34 -0700 | [diff] [blame] | 967 | |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 968 | sdata->u.mgd.associated = bss; |
Johannes Berg | e21546a | 2009-08-06 20:41:32 +0200 | [diff] [blame] | 969 | sdata->u.mgd.old_associate_work = wk; |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 970 | memcpy(sdata->u.mgd.bssid, bss->cbss.bssid, ETH_ALEN); |
Johannes Berg | 471b3ef | 2007-12-28 14:32:58 +0100 | [diff] [blame] | 971 | |
Johannes Berg | b291ba1 | 2009-07-10 15:29:03 +0200 | [diff] [blame] | 972 | /* just to be sure */ |
| 973 | sdata->u.mgd.flags &= ~(IEEE80211_STA_CONNECTION_POLL | |
| 974 | IEEE80211_STA_BEACON_POLL); |
| 975 | |
Tomas Winkler | f5e5bf2 | 2008-09-08 17:33:39 +0200 | [diff] [blame] | 976 | ieee80211_led_assoc(local, 1); |
| 977 | |
Johannes Berg | bda3933 | 2008-10-11 01:51:51 +0200 | [diff] [blame] | 978 | sdata->vif.bss_conf.assoc = 1; |
Johannes Berg | 96dd22a | 2008-09-11 00:01:57 +0200 | [diff] [blame] | 979 | /* |
| 980 | * For now just always ask the driver to update the basic rateset |
| 981 | * when we have associated, we aren't checking whether it actually |
| 982 | * changed or not. |
| 983 | */ |
Johannes Berg | ae5eb02 | 2008-10-14 16:58:37 +0200 | [diff] [blame] | 984 | bss_info_changed |= BSS_CHANGED_BASIC_RATES; |
Johannes Berg | 9cef873 | 2009-05-14 13:10:14 +0200 | [diff] [blame] | 985 | |
| 986 | /* And the BSSID changed - we're associated now */ |
| 987 | bss_info_changed |= BSS_CHANGED_BSSID; |
| 988 | |
Johannes Berg | ae5eb02 | 2008-10-14 16:58:37 +0200 | [diff] [blame] | 989 | ieee80211_bss_info_change_notify(sdata, bss_info_changed); |
Guy Cohen | 8db9369 | 2008-07-03 19:56:13 +0300 | [diff] [blame] | 990 | |
Johannes Berg | 056508d | 2009-07-30 21:43:55 +0200 | [diff] [blame] | 991 | mutex_lock(&local->iflist_mtx); |
| 992 | ieee80211_recalc_ps(local, -1); |
Johannes Berg | 0f78231 | 2009-12-01 13:37:02 +0100 | [diff] [blame] | 993 | ieee80211_recalc_smps(local, sdata); |
Johannes Berg | 056508d | 2009-07-30 21:43:55 +0200 | [diff] [blame] | 994 | mutex_unlock(&local->iflist_mtx); |
Kalle Valo | e0cb686 | 2008-12-18 23:35:13 +0200 | [diff] [blame] | 995 | |
John W. Linville | 53623f1 | 2009-10-15 15:10:16 -0400 | [diff] [blame] | 996 | netif_start_queue(sdata->dev); |
Tomas Winkler | f5e5bf2 | 2008-09-08 17:33:39 +0200 | [diff] [blame] | 997 | netif_carrier_on(sdata->dev); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 998 | } |
| 999 | |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1000 | static enum rx_mgmt_action __must_check |
| 1001 | ieee80211_direct_probe(struct ieee80211_sub_if_data *sdata, |
| 1002 | struct ieee80211_mgd_work *wk) |
Ron Rindjunsky | 9859b81 | 2008-08-09 03:02:19 +0300 | [diff] [blame] | 1003 | { |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 1004 | struct ieee80211_if_managed *ifmgd = &sdata->u.mgd; |
Helmut Schaa | 1143237 | 2009-03-12 14:04:34 +0100 | [diff] [blame] | 1005 | struct ieee80211_local *local = sdata->local; |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 1006 | |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1007 | wk->tries++; |
| 1008 | if (wk->tries > IEEE80211_AUTH_MAX_TRIES) { |
Johannes Berg | 0c68ae26 | 2008-10-27 15:56:10 -0700 | [diff] [blame] | 1009 | printk(KERN_DEBUG "%s: direct probe to AP %pM timed out\n", |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 1010 | sdata->name, wk->bss->cbss.bssid); |
Vasanthakumar Thiagarajan | 7a94708 | 2009-02-04 18:28:48 +0530 | [diff] [blame] | 1011 | |
| 1012 | /* |
| 1013 | * Most likely AP is not in the range so remove the |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1014 | * bss struct for that AP. |
Vasanthakumar Thiagarajan | 7a94708 | 2009-02-04 18:28:48 +0530 | [diff] [blame] | 1015 | */ |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1016 | cfg80211_unlink_bss(local->hw.wiphy, &wk->bss->cbss); |
Helmut Schaa | 1143237 | 2009-03-12 14:04:34 +0100 | [diff] [blame] | 1017 | |
| 1018 | /* |
| 1019 | * We might have a pending scan which had no chance to run yet |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1020 | * due to work needing to be done. Hence, queue the STAs work |
| 1021 | * again for that. |
Helmut Schaa | 1143237 | 2009-03-12 14:04:34 +0100 | [diff] [blame] | 1022 | */ |
Luis R. Rodriguez | 42935ec | 2009-07-29 20:08:07 -0400 | [diff] [blame] | 1023 | ieee80211_queue_work(&local->hw, &ifmgd->work); |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1024 | return RX_MGMT_CFG80211_AUTH_TO; |
Ron Rindjunsky | 9859b81 | 2008-08-09 03:02:19 +0300 | [diff] [blame] | 1025 | } |
| 1026 | |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1027 | printk(KERN_DEBUG "%s: direct probe to AP %pM (try %d)\n", |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 1028 | sdata->name, wk->bss->cbss.bssid, |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1029 | wk->tries); |
Ron Rindjunsky | 9859b81 | 2008-08-09 03:02:19 +0300 | [diff] [blame] | 1030 | |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1031 | /* |
| 1032 | * Direct probe is sent to broadcast address as some APs |
Ron Rindjunsky | 9859b81 | 2008-08-09 03:02:19 +0300 | [diff] [blame] | 1033 | * will not answer to direct packet in unassociated state. |
| 1034 | */ |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1035 | ieee80211_send_probe_req(sdata, NULL, wk->ssid, wk->ssid_len, NULL, 0); |
Ron Rindjunsky | 9859b81 | 2008-08-09 03:02:19 +0300 | [diff] [blame] | 1036 | |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1037 | wk->timeout = jiffies + IEEE80211_AUTH_TIMEOUT; |
Johannes Berg | ca386f3 | 2009-07-10 02:39:48 +0200 | [diff] [blame] | 1038 | run_again(ifmgd, wk->timeout); |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1039 | |
| 1040 | return RX_MGMT_NONE; |
Ron Rindjunsky | 9859b81 | 2008-08-09 03:02:19 +0300 | [diff] [blame] | 1041 | } |
| 1042 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1043 | |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1044 | static enum rx_mgmt_action __must_check |
| 1045 | ieee80211_authenticate(struct ieee80211_sub_if_data *sdata, |
| 1046 | struct ieee80211_mgd_work *wk) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1047 | { |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 1048 | struct ieee80211_if_managed *ifmgd = &sdata->u.mgd; |
Helmut Schaa | 1143237 | 2009-03-12 14:04:34 +0100 | [diff] [blame] | 1049 | struct ieee80211_local *local = sdata->local; |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 1050 | |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1051 | wk->tries++; |
| 1052 | if (wk->tries > IEEE80211_AUTH_MAX_TRIES) { |
Johannes Berg | 0c68ae26 | 2008-10-27 15:56:10 -0700 | [diff] [blame] | 1053 | printk(KERN_DEBUG "%s: authentication with AP %pM" |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1054 | " timed out\n", |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 1055 | sdata->name, wk->bss->cbss.bssid); |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1056 | |
| 1057 | /* |
| 1058 | * Most likely AP is not in the range so remove the |
| 1059 | * bss struct for that AP. |
| 1060 | */ |
| 1061 | cfg80211_unlink_bss(local->hw.wiphy, &wk->bss->cbss); |
Helmut Schaa | 1143237 | 2009-03-12 14:04:34 +0100 | [diff] [blame] | 1062 | |
| 1063 | /* |
| 1064 | * We might have a pending scan which had no chance to run yet |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1065 | * due to work needing to be done. Hence, queue the STAs work |
| 1066 | * again for that. |
Helmut Schaa | 1143237 | 2009-03-12 14:04:34 +0100 | [diff] [blame] | 1067 | */ |
Luis R. Rodriguez | 42935ec | 2009-07-29 20:08:07 -0400 | [diff] [blame] | 1068 | ieee80211_queue_work(&local->hw, &ifmgd->work); |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1069 | return RX_MGMT_CFG80211_AUTH_TO; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1070 | } |
| 1071 | |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1072 | printk(KERN_DEBUG "%s: authenticate with AP %pM (try %d)\n", |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 1073 | sdata->name, wk->bss->cbss.bssid, wk->tries); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1074 | |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1075 | ieee80211_send_auth(sdata, 1, wk->auth_alg, wk->ie, wk->ie_len, |
Johannes Berg | fffd093 | 2009-07-08 14:22:54 +0200 | [diff] [blame] | 1076 | wk->bss->cbss.bssid, NULL, 0, 0); |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1077 | wk->auth_transaction = 2; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1078 | |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1079 | wk->timeout = jiffies + IEEE80211_AUTH_TIMEOUT; |
Johannes Berg | ca386f3 | 2009-07-10 02:39:48 +0200 | [diff] [blame] | 1080 | run_again(ifmgd, wk->timeout); |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1081 | |
| 1082 | return RX_MGMT_NONE; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1083 | } |
| 1084 | |
Johannes Berg | e21546a | 2009-08-06 20:41:32 +0200 | [diff] [blame] | 1085 | static void ieee80211_set_disassoc(struct ieee80211_sub_if_data *sdata, |
| 1086 | bool deauth) |
Tomas Winkler | aa458d17 | 2008-09-09 00:32:12 +0300 | [diff] [blame] | 1087 | { |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 1088 | struct ieee80211_if_managed *ifmgd = &sdata->u.mgd; |
Tomas Winkler | aa458d17 | 2008-09-09 00:32:12 +0300 | [diff] [blame] | 1089 | struct ieee80211_local *local = sdata->local; |
| 1090 | struct sta_info *sta; |
Kalle Valo | e0cb686 | 2008-12-18 23:35:13 +0200 | [diff] [blame] | 1091 | u32 changed = 0, config_changed = 0; |
Johannes Berg | b291ba1 | 2009-07-10 15:29:03 +0200 | [diff] [blame] | 1092 | u8 bssid[ETH_ALEN]; |
Tomas Winkler | aa458d17 | 2008-09-09 00:32:12 +0300 | [diff] [blame] | 1093 | |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1094 | ASSERT_MGD_MTX(ifmgd); |
| 1095 | |
Johannes Berg | b291ba1 | 2009-07-10 15:29:03 +0200 | [diff] [blame] | 1096 | if (WARN_ON(!ifmgd->associated)) |
| 1097 | return; |
| 1098 | |
| 1099 | memcpy(bssid, ifmgd->associated->cbss.bssid, ETH_ALEN); |
| 1100 | |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1101 | ifmgd->associated = NULL; |
| 1102 | memset(ifmgd->bssid, 0, ETH_ALEN); |
| 1103 | |
Johannes Berg | e21546a | 2009-08-06 20:41:32 +0200 | [diff] [blame] | 1104 | if (deauth) { |
| 1105 | kfree(ifmgd->old_associate_work); |
| 1106 | ifmgd->old_associate_work = NULL; |
| 1107 | } else { |
| 1108 | struct ieee80211_mgd_work *wk = ifmgd->old_associate_work; |
| 1109 | |
| 1110 | wk->state = IEEE80211_MGD_STATE_IDLE; |
| 1111 | list_add(&wk->list, &ifmgd->work_list); |
| 1112 | } |
| 1113 | |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1114 | /* |
| 1115 | * we need to commit the associated = NULL change because the |
| 1116 | * scan code uses that to determine whether this iface should |
| 1117 | * go to/wake up from powersave or not -- and could otherwise |
| 1118 | * wake the queues erroneously. |
| 1119 | */ |
| 1120 | smp_mb(); |
| 1121 | |
| 1122 | /* |
| 1123 | * Thus, we can only afterwards stop the queues -- to account |
| 1124 | * for the case where another CPU is finishing a scan at this |
| 1125 | * time -- we don't want the scan code to enable queues. |
| 1126 | */ |
Tomas Winkler | aa458d17 | 2008-09-09 00:32:12 +0300 | [diff] [blame] | 1127 | |
John W. Linville | 53623f1 | 2009-10-15 15:10:16 -0400 | [diff] [blame] | 1128 | netif_stop_queue(sdata->dev); |
Tomas Winkler | aa458d17 | 2008-09-09 00:32:12 +0300 | [diff] [blame] | 1129 | netif_carrier_off(sdata->dev); |
| 1130 | |
Johannes Berg | 1fa6f4a | 2009-06-15 18:13:58 +0200 | [diff] [blame] | 1131 | rcu_read_lock(); |
Johannes Berg | abe6063 | 2009-11-25 17:46:18 +0100 | [diff] [blame] | 1132 | sta = sta_info_get(sdata, bssid); |
Johannes Berg | 1fa6f4a | 2009-06-15 18:13:58 +0200 | [diff] [blame] | 1133 | if (sta) |
| 1134 | ieee80211_sta_tear_down_BA_sessions(sta); |
| 1135 | rcu_read_unlock(); |
Tomas Winkler | aa458d17 | 2008-09-09 00:32:12 +0300 | [diff] [blame] | 1136 | |
Tomas Winkler | f5e5bf2 | 2008-09-08 17:33:39 +0200 | [diff] [blame] | 1137 | changed |= ieee80211_reset_erp_info(sdata); |
| 1138 | |
Tomas Winkler | f5e5bf2 | 2008-09-08 17:33:39 +0200 | [diff] [blame] | 1139 | ieee80211_led_assoc(local, 0); |
Johannes Berg | ae5eb02 | 2008-10-14 16:58:37 +0200 | [diff] [blame] | 1140 | changed |= BSS_CHANGED_ASSOC; |
| 1141 | sdata->vif.bss_conf.assoc = false; |
Tomas Winkler | f5e5bf2 | 2008-09-08 17:33:39 +0200 | [diff] [blame] | 1142 | |
Johannes Berg | aa837e1 | 2009-05-07 16:16:24 +0200 | [diff] [blame] | 1143 | ieee80211_set_wmm_default(sdata); |
| 1144 | |
Johannes Berg | 5cff20e | 2009-04-29 12:26:17 +0200 | [diff] [blame] | 1145 | ieee80211_recalc_idle(local); |
| 1146 | |
Johannes Berg | 4797938 | 2009-01-07 10:13:27 +0100 | [diff] [blame] | 1147 | /* channel(_type) changes are handled by ieee80211_hw_config */ |
Sujith | 094d05d | 2008-12-12 11:57:43 +0530 | [diff] [blame] | 1148 | local->oper_channel_type = NL80211_CHAN_NO_HT; |
Johannes Berg | ae5eb02 | 2008-10-14 16:58:37 +0200 | [diff] [blame] | 1149 | |
Johannes Berg | 413ad50 | 2009-05-08 21:21:06 +0200 | [diff] [blame] | 1150 | /* on the next assoc, re-program HT parameters */ |
| 1151 | sdata->ht_opmode_valid = false; |
| 1152 | |
Vasanthakumar Thiagarajan | a8302de | 2009-01-09 18:14:15 +0530 | [diff] [blame] | 1153 | local->power_constr_level = 0; |
| 1154 | |
Kalle Valo | 520eb82 | 2008-12-18 23:35:27 +0200 | [diff] [blame] | 1155 | del_timer_sync(&local->dynamic_ps_timer); |
| 1156 | cancel_work_sync(&local->dynamic_ps_enable_work); |
| 1157 | |
Kalle Valo | e0cb686 | 2008-12-18 23:35:13 +0200 | [diff] [blame] | 1158 | if (local->hw.conf.flags & IEEE80211_CONF_PS) { |
| 1159 | local->hw.conf.flags &= ~IEEE80211_CONF_PS; |
| 1160 | config_changed |= IEEE80211_CONF_CHANGE_PS; |
| 1161 | } |
| 1162 | |
| 1163 | ieee80211_hw_config(local, config_changed); |
Johannes Berg | 9cef873 | 2009-05-14 13:10:14 +0200 | [diff] [blame] | 1164 | |
| 1165 | /* And the BSSID changed -- not very interesting here */ |
| 1166 | changed |= BSS_CHANGED_BSSID; |
Johannes Berg | ae5eb02 | 2008-10-14 16:58:37 +0200 | [diff] [blame] | 1167 | ieee80211_bss_info_change_notify(sdata, changed); |
Tomas Winkler | 8e268e4 | 2008-11-25 13:05:44 +0200 | [diff] [blame] | 1168 | |
| 1169 | rcu_read_lock(); |
| 1170 | |
Johannes Berg | abe6063 | 2009-11-25 17:46:18 +0100 | [diff] [blame] | 1171 | sta = sta_info_get(sdata, bssid); |
Tomas Winkler | 8e268e4 | 2008-11-25 13:05:44 +0200 | [diff] [blame] | 1172 | if (!sta) { |
| 1173 | rcu_read_unlock(); |
| 1174 | return; |
| 1175 | } |
| 1176 | |
| 1177 | sta_info_unlink(&sta); |
| 1178 | |
| 1179 | rcu_read_unlock(); |
| 1180 | |
| 1181 | sta_info_destroy(sta); |
Tomas Winkler | aa458d17 | 2008-09-09 00:32:12 +0300 | [diff] [blame] | 1182 | } |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1183 | |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1184 | static enum rx_mgmt_action __must_check |
| 1185 | ieee80211_associate(struct ieee80211_sub_if_data *sdata, |
| 1186 | struct ieee80211_mgd_work *wk) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1187 | { |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 1188 | struct ieee80211_if_managed *ifmgd = &sdata->u.mgd; |
Helmut Schaa | 1143237 | 2009-03-12 14:04:34 +0100 | [diff] [blame] | 1189 | struct ieee80211_local *local = sdata->local; |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 1190 | |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1191 | wk->tries++; |
| 1192 | if (wk->tries > IEEE80211_ASSOC_MAX_TRIES) { |
Johannes Berg | 0c68ae26 | 2008-10-27 15:56:10 -0700 | [diff] [blame] | 1193 | printk(KERN_DEBUG "%s: association with AP %pM" |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1194 | " timed out\n", |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 1195 | sdata->name, wk->bss->cbss.bssid); |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1196 | |
| 1197 | /* |
| 1198 | * Most likely AP is not in the range so remove the |
| 1199 | * bss struct for that AP. |
| 1200 | */ |
| 1201 | cfg80211_unlink_bss(local->hw.wiphy, &wk->bss->cbss); |
| 1202 | |
Helmut Schaa | 1143237 | 2009-03-12 14:04:34 +0100 | [diff] [blame] | 1203 | /* |
| 1204 | * We might have a pending scan which had no chance to run yet |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1205 | * due to work needing to be done. Hence, queue the STAs work |
| 1206 | * again for that. |
Helmut Schaa | 1143237 | 2009-03-12 14:04:34 +0100 | [diff] [blame] | 1207 | */ |
Luis R. Rodriguez | 42935ec | 2009-07-29 20:08:07 -0400 | [diff] [blame] | 1208 | ieee80211_queue_work(&local->hw, &ifmgd->work); |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1209 | return RX_MGMT_CFG80211_ASSOC_TO; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1210 | } |
| 1211 | |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1212 | printk(KERN_DEBUG "%s: associate with AP %pM (try %d)\n", |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 1213 | sdata->name, wk->bss->cbss.bssid, wk->tries); |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1214 | ieee80211_send_assoc(sdata, wk); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1215 | |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1216 | wk->timeout = jiffies + IEEE80211_ASSOC_TIMEOUT; |
Johannes Berg | ca386f3 | 2009-07-10 02:39:48 +0200 | [diff] [blame] | 1217 | run_again(ifmgd, wk->timeout); |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1218 | |
| 1219 | return RX_MGMT_NONE; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1220 | } |
| 1221 | |
Kalle Valo | 3cf335d | 2009-03-22 21:57:06 +0200 | [diff] [blame] | 1222 | void ieee80211_sta_rx_notify(struct ieee80211_sub_if_data *sdata, |
| 1223 | struct ieee80211_hdr *hdr) |
| 1224 | { |
| 1225 | /* |
| 1226 | * We can postpone the mgd.timer whenever receiving unicast frames |
| 1227 | * from AP because we know that the connection is working both ways |
| 1228 | * at that time. But multicast frames (and hence also beacons) must |
| 1229 | * be ignored here, because we need to trigger the timer during |
Johannes Berg | b291ba1 | 2009-07-10 15:29:03 +0200 | [diff] [blame] | 1230 | * data idle periods for sending the periodic probe request to the |
| 1231 | * AP we're connected to. |
Kalle Valo | 3cf335d | 2009-03-22 21:57:06 +0200 | [diff] [blame] | 1232 | */ |
Johannes Berg | b291ba1 | 2009-07-10 15:29:03 +0200 | [diff] [blame] | 1233 | if (is_multicast_ether_addr(hdr->addr1)) |
| 1234 | return; |
| 1235 | |
| 1236 | mod_timer(&sdata->u.mgd.conn_mon_timer, |
| 1237 | round_jiffies_up(jiffies + IEEE80211_CONNECTION_IDLE_TIME)); |
Kalle Valo | 3cf335d | 2009-03-22 21:57:06 +0200 | [diff] [blame] | 1238 | } |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1239 | |
Maxim Levitsky | a43abf2 | 2009-07-31 18:54:12 +0300 | [diff] [blame] | 1240 | static void ieee80211_mgd_probe_ap_send(struct ieee80211_sub_if_data *sdata) |
| 1241 | { |
| 1242 | struct ieee80211_if_managed *ifmgd = &sdata->u.mgd; |
| 1243 | const u8 *ssid; |
| 1244 | |
| 1245 | ssid = ieee80211_bss_get_ie(&ifmgd->associated->cbss, WLAN_EID_SSID); |
| 1246 | ieee80211_send_probe_req(sdata, ifmgd->associated->cbss.bssid, |
| 1247 | ssid + 2, ssid[1], NULL, 0); |
| 1248 | |
| 1249 | ifmgd->probe_send_count++; |
| 1250 | ifmgd->probe_timeout = jiffies + IEEE80211_PROBE_WAIT; |
| 1251 | run_again(ifmgd, ifmgd->probe_timeout); |
| 1252 | } |
| 1253 | |
Johannes Berg | b291ba1 | 2009-07-10 15:29:03 +0200 | [diff] [blame] | 1254 | static void ieee80211_mgd_probe_ap(struct ieee80211_sub_if_data *sdata, |
| 1255 | bool beacon) |
Kalle Valo | 04de838 | 2009-03-22 21:57:35 +0200 | [diff] [blame] | 1256 | { |
Kalle Valo | 04de838 | 2009-03-22 21:57:35 +0200 | [diff] [blame] | 1257 | struct ieee80211_if_managed *ifmgd = &sdata->u.mgd; |
Johannes Berg | b291ba1 | 2009-07-10 15:29:03 +0200 | [diff] [blame] | 1258 | bool already = false; |
Johannes Berg | 34bfc41 | 2009-05-12 19:58:12 +0200 | [diff] [blame] | 1259 | |
Johannes Berg | 0e2b628 | 2009-07-13 13:23:39 +0200 | [diff] [blame] | 1260 | if (!netif_running(sdata->dev)) |
| 1261 | return; |
| 1262 | |
Luis R. Rodriguez | 91a3bd7 | 2009-07-23 16:37:47 -0700 | [diff] [blame] | 1263 | if (sdata->local->scanning) |
| 1264 | return; |
| 1265 | |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1266 | mutex_lock(&ifmgd->mtx); |
| 1267 | |
| 1268 | if (!ifmgd->associated) |
| 1269 | goto out; |
| 1270 | |
Michael Buesch | a860402 | 2009-04-15 14:41:22 -0400 | [diff] [blame] | 1271 | #ifdef CONFIG_MAC80211_VERBOSE_DEBUG |
Johannes Berg | b291ba1 | 2009-07-10 15:29:03 +0200 | [diff] [blame] | 1272 | if (beacon && net_ratelimit()) |
| 1273 | printk(KERN_DEBUG "%s: detected beacon loss from AP " |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 1274 | "- sending probe request\n", sdata->name); |
Michael Buesch | a860402 | 2009-04-15 14:41:22 -0400 | [diff] [blame] | 1275 | #endif |
Kalle Valo | 04de838 | 2009-03-22 21:57:35 +0200 | [diff] [blame] | 1276 | |
Johannes Berg | b291ba1 | 2009-07-10 15:29:03 +0200 | [diff] [blame] | 1277 | /* |
| 1278 | * The driver/our work has already reported this event or the |
| 1279 | * connection monitoring has kicked in and we have already sent |
| 1280 | * a probe request. Or maybe the AP died and the driver keeps |
| 1281 | * reporting until we disassociate... |
| 1282 | * |
| 1283 | * In either case we have to ignore the current call to this |
| 1284 | * function (except for setting the correct probe reason bit) |
| 1285 | * because otherwise we would reset the timer every time and |
| 1286 | * never check whether we received a probe response! |
| 1287 | */ |
| 1288 | if (ifmgd->flags & (IEEE80211_STA_BEACON_POLL | |
| 1289 | IEEE80211_STA_CONNECTION_POLL)) |
| 1290 | already = true; |
| 1291 | |
| 1292 | if (beacon) |
| 1293 | ifmgd->flags |= IEEE80211_STA_BEACON_POLL; |
| 1294 | else |
| 1295 | ifmgd->flags |= IEEE80211_STA_CONNECTION_POLL; |
| 1296 | |
| 1297 | if (already) |
| 1298 | goto out; |
| 1299 | |
Johannes Berg | 4e75184 | 2009-06-10 15:16:52 +0200 | [diff] [blame] | 1300 | mutex_lock(&sdata->local->iflist_mtx); |
| 1301 | ieee80211_recalc_ps(sdata->local, -1); |
| 1302 | mutex_unlock(&sdata->local->iflist_mtx); |
| 1303 | |
Maxim Levitsky | a43abf2 | 2009-07-31 18:54:12 +0300 | [diff] [blame] | 1304 | ifmgd->probe_send_count = 0; |
| 1305 | ieee80211_mgd_probe_ap_send(sdata); |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1306 | out: |
| 1307 | mutex_unlock(&ifmgd->mtx); |
Kalle Valo | 04de838 | 2009-03-22 21:57:35 +0200 | [diff] [blame] | 1308 | } |
| 1309 | |
Johannes Berg | b291ba1 | 2009-07-10 15:29:03 +0200 | [diff] [blame] | 1310 | void ieee80211_beacon_loss_work(struct work_struct *work) |
| 1311 | { |
| 1312 | struct ieee80211_sub_if_data *sdata = |
| 1313 | container_of(work, struct ieee80211_sub_if_data, |
| 1314 | u.mgd.beacon_loss_work); |
| 1315 | |
| 1316 | ieee80211_mgd_probe_ap(sdata, true); |
| 1317 | } |
| 1318 | |
Kalle Valo | 04de838 | 2009-03-22 21:57:35 +0200 | [diff] [blame] | 1319 | void ieee80211_beacon_loss(struct ieee80211_vif *vif) |
| 1320 | { |
| 1321 | struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif); |
| 1322 | |
Luis R. Rodriguez | 42935ec | 2009-07-29 20:08:07 -0400 | [diff] [blame] | 1323 | ieee80211_queue_work(&sdata->local->hw, &sdata->u.mgd.beacon_loss_work); |
Kalle Valo | 04de838 | 2009-03-22 21:57:35 +0200 | [diff] [blame] | 1324 | } |
| 1325 | EXPORT_SYMBOL(ieee80211_beacon_loss); |
| 1326 | |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1327 | static void ieee80211_auth_completed(struct ieee80211_sub_if_data *sdata, |
| 1328 | struct ieee80211_mgd_work *wk) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1329 | { |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1330 | wk->state = IEEE80211_MGD_STATE_IDLE; |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 1331 | printk(KERN_DEBUG "%s: authenticated\n", sdata->name); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1332 | } |
| 1333 | |
| 1334 | |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 1335 | static void ieee80211_auth_challenge(struct ieee80211_sub_if_data *sdata, |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1336 | struct ieee80211_mgd_work *wk, |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1337 | struct ieee80211_mgmt *mgmt, |
| 1338 | size_t len) |
| 1339 | { |
| 1340 | u8 *pos; |
| 1341 | struct ieee802_11_elems elems; |
| 1342 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1343 | pos = mgmt->u.auth.variable; |
John W. Linville | 67a4cce | 2007-10-12 16:40:37 -0400 | [diff] [blame] | 1344 | ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), &elems); |
Johannes Berg | f4ea83d | 2008-06-30 15:10:46 +0200 | [diff] [blame] | 1345 | if (!elems.challenge) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1346 | return; |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1347 | ieee80211_send_auth(sdata, 3, wk->auth_alg, |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 1348 | elems.challenge - 2, elems.challenge_len + 2, |
Johannes Berg | fffd093 | 2009-07-08 14:22:54 +0200 | [diff] [blame] | 1349 | wk->bss->cbss.bssid, |
| 1350 | wk->key, wk->key_len, wk->key_idx); |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1351 | wk->auth_transaction = 4; |
Johannes Berg | fe3d2c3 | 2009-02-10 21:26:03 +0100 | [diff] [blame] | 1352 | } |
| 1353 | |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1354 | static enum rx_mgmt_action __must_check |
| 1355 | ieee80211_rx_mgmt_auth(struct ieee80211_sub_if_data *sdata, |
| 1356 | struct ieee80211_mgd_work *wk, |
| 1357 | struct ieee80211_mgmt *mgmt, size_t len) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1358 | { |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1359 | u16 auth_alg, auth_transaction, status_code; |
| 1360 | |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1361 | if (wk->state != IEEE80211_MGD_STATE_AUTH) |
| 1362 | return RX_MGMT_NONE; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1363 | |
Johannes Berg | f4ea83d | 2008-06-30 15:10:46 +0200 | [diff] [blame] | 1364 | if (len < 24 + 6) |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1365 | return RX_MGMT_NONE; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1366 | |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1367 | if (memcmp(wk->bss->cbss.bssid, mgmt->sa, ETH_ALEN) != 0) |
| 1368 | return RX_MGMT_NONE; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1369 | |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1370 | if (memcmp(wk->bss->cbss.bssid, mgmt->bssid, ETH_ALEN) != 0) |
| 1371 | return RX_MGMT_NONE; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1372 | |
| 1373 | auth_alg = le16_to_cpu(mgmt->u.auth.auth_alg); |
| 1374 | auth_transaction = le16_to_cpu(mgmt->u.auth.auth_transaction); |
| 1375 | status_code = le16_to_cpu(mgmt->u.auth.status_code); |
| 1376 | |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1377 | if (auth_alg != wk->auth_alg || |
| 1378 | auth_transaction != wk->auth_transaction) |
| 1379 | return RX_MGMT_NONE; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1380 | |
| 1381 | if (status_code != WLAN_STATUS_SUCCESS) { |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1382 | list_del(&wk->list); |
| 1383 | kfree(wk); |
| 1384 | return RX_MGMT_CFG80211_AUTH; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1385 | } |
| 1386 | |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1387 | switch (wk->auth_alg) { |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1388 | case WLAN_AUTH_OPEN: |
| 1389 | case WLAN_AUTH_LEAP: |
Jouni Malinen | 636a5d3 | 2009-03-19 13:39:22 +0200 | [diff] [blame] | 1390 | case WLAN_AUTH_FT: |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1391 | ieee80211_auth_completed(sdata, wk); |
| 1392 | return RX_MGMT_CFG80211_AUTH; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1393 | case WLAN_AUTH_SHARED_KEY: |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1394 | if (wk->auth_transaction == 4) { |
| 1395 | ieee80211_auth_completed(sdata, wk); |
| 1396 | return RX_MGMT_CFG80211_AUTH; |
Jouni Malinen | 6039f6d | 2009-03-19 13:39:21 +0200 | [diff] [blame] | 1397 | } else |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1398 | ieee80211_auth_challenge(sdata, wk, mgmt, len); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1399 | break; |
| 1400 | } |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1401 | |
| 1402 | return RX_MGMT_NONE; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1403 | } |
| 1404 | |
| 1405 | |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1406 | static enum rx_mgmt_action __must_check |
| 1407 | ieee80211_rx_mgmt_deauth(struct ieee80211_sub_if_data *sdata, |
| 1408 | struct ieee80211_mgd_work *wk, |
| 1409 | struct ieee80211_mgmt *mgmt, size_t len) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1410 | { |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 1411 | struct ieee80211_if_managed *ifmgd = &sdata->u.mgd; |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1412 | const u8 *bssid = NULL; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1413 | u16 reason_code; |
| 1414 | |
Johannes Berg | f4ea83d | 2008-06-30 15:10:46 +0200 | [diff] [blame] | 1415 | if (len < 24 + 2) |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1416 | return RX_MGMT_NONE; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1417 | |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1418 | ASSERT_MGD_MTX(ifmgd); |
| 1419 | |
| 1420 | if (wk) |
| 1421 | bssid = wk->bss->cbss.bssid; |
| 1422 | else |
| 1423 | bssid = ifmgd->associated->cbss.bssid; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1424 | |
| 1425 | reason_code = le16_to_cpu(mgmt->u.deauth.reason_code); |
| 1426 | |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1427 | printk(KERN_DEBUG "%s: deauthenticated from %pM (Reason: %u)\n", |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 1428 | sdata->name, bssid, reason_code); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1429 | |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1430 | if (!wk) { |
Johannes Berg | e21546a | 2009-08-06 20:41:32 +0200 | [diff] [blame] | 1431 | ieee80211_set_disassoc(sdata, true); |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1432 | } else { |
| 1433 | list_del(&wk->list); |
| 1434 | kfree(wk); |
| 1435 | } |
| 1436 | |
| 1437 | return RX_MGMT_CFG80211_DEAUTH; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1438 | } |
| 1439 | |
| 1440 | |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1441 | static enum rx_mgmt_action __must_check |
| 1442 | ieee80211_rx_mgmt_disassoc(struct ieee80211_sub_if_data *sdata, |
| 1443 | struct ieee80211_mgmt *mgmt, size_t len) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1444 | { |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 1445 | struct ieee80211_if_managed *ifmgd = &sdata->u.mgd; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1446 | u16 reason_code; |
| 1447 | |
Johannes Berg | f4ea83d | 2008-06-30 15:10:46 +0200 | [diff] [blame] | 1448 | if (len < 24 + 2) |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1449 | return RX_MGMT_NONE; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1450 | |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1451 | ASSERT_MGD_MTX(ifmgd); |
| 1452 | |
| 1453 | if (WARN_ON(!ifmgd->associated)) |
| 1454 | return RX_MGMT_NONE; |
| 1455 | |
| 1456 | if (WARN_ON(memcmp(ifmgd->associated->cbss.bssid, mgmt->sa, ETH_ALEN))) |
| 1457 | return RX_MGMT_NONE; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1458 | |
| 1459 | reason_code = le16_to_cpu(mgmt->u.disassoc.reason_code); |
| 1460 | |
Johannes Berg | 0ff7161 | 2009-09-26 14:45:41 +0200 | [diff] [blame] | 1461 | printk(KERN_DEBUG "%s: disassociated from %pM (Reason: %u)\n", |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 1462 | sdata->name, mgmt->sa, reason_code); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1463 | |
Johannes Berg | e21546a | 2009-08-06 20:41:32 +0200 | [diff] [blame] | 1464 | ieee80211_set_disassoc(sdata, false); |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1465 | return RX_MGMT_CFG80211_DISASSOC; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1466 | } |
| 1467 | |
| 1468 | |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1469 | static enum rx_mgmt_action __must_check |
| 1470 | ieee80211_rx_mgmt_assoc_resp(struct ieee80211_sub_if_data *sdata, |
| 1471 | struct ieee80211_mgd_work *wk, |
| 1472 | struct ieee80211_mgmt *mgmt, size_t len, |
| 1473 | bool reassoc) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1474 | { |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 1475 | struct ieee80211_if_managed *ifmgd = &sdata->u.mgd; |
Johannes Berg | 471b3ef | 2007-12-28 14:32:58 +0100 | [diff] [blame] | 1476 | struct ieee80211_local *local = sdata->local; |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 1477 | struct ieee80211_supported_band *sband; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1478 | struct sta_info *sta; |
Johannes Berg | 881d948 | 2009-01-21 15:13:48 +0100 | [diff] [blame] | 1479 | u32 rates, basic_rates; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1480 | u16 capab_info, status_code, aid; |
| 1481 | struct ieee802_11_elems elems; |
Johannes Berg | bda3933 | 2008-10-11 01:51:51 +0200 | [diff] [blame] | 1482 | struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1483 | u8 *pos; |
Johannes Berg | ae5eb02 | 2008-10-14 16:58:37 +0200 | [diff] [blame] | 1484 | u32 changed = 0; |
Johannes Berg | 5d1ec85 | 2009-12-02 12:43:43 +0100 | [diff] [blame^] | 1485 | int i, j, err; |
| 1486 | bool have_higher_than_11mbit = false; |
Johannes Berg | ae5eb02 | 2008-10-14 16:58:37 +0200 | [diff] [blame] | 1487 | u16 ap_ht_cap_flags; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1488 | |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1489 | /* |
| 1490 | * AssocResp and ReassocResp have identical structure, so process both |
| 1491 | * of them in this function. |
| 1492 | */ |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1493 | |
Johannes Berg | f4ea83d | 2008-06-30 15:10:46 +0200 | [diff] [blame] | 1494 | if (len < 24 + 6) |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1495 | return RX_MGMT_NONE; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1496 | |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1497 | if (memcmp(wk->bss->cbss.bssid, mgmt->sa, ETH_ALEN) != 0) |
| 1498 | return RX_MGMT_NONE; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1499 | |
| 1500 | capab_info = le16_to_cpu(mgmt->u.assoc_resp.capab_info); |
| 1501 | status_code = le16_to_cpu(mgmt->u.assoc_resp.status_code); |
| 1502 | aid = le16_to_cpu(mgmt->u.assoc_resp.aid); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1503 | |
Johannes Berg | 0c68ae26 | 2008-10-27 15:56:10 -0700 | [diff] [blame] | 1504 | printk(KERN_DEBUG "%s: RX %sssocResp from %pM (capab=0x%x " |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1505 | "status=%d aid=%d)\n", |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 1506 | sdata->name, reassoc ? "Rea" : "A", mgmt->sa, |
Johannes Berg | ddd6858 | 2007-10-22 14:51:37 +0200 | [diff] [blame] | 1507 | capab_info, status_code, (u16)(aid & ~(BIT(15) | BIT(14)))); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1508 | |
Jouni Malinen | 63a5ab8 | 2009-01-08 13:32:09 +0200 | [diff] [blame] | 1509 | pos = mgmt->u.assoc_resp.variable; |
| 1510 | ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), &elems); |
| 1511 | |
| 1512 | if (status_code == WLAN_STATUS_ASSOC_REJECTED_TEMPORARILY && |
Jouni Malinen | f797eb7 | 2009-01-19 18:48:46 +0200 | [diff] [blame] | 1513 | elems.timeout_int && elems.timeout_int_len == 5 && |
| 1514 | elems.timeout_int[0] == WLAN_TIMEOUT_ASSOC_COMEBACK) { |
Jouni Malinen | 63a5ab8 | 2009-01-08 13:32:09 +0200 | [diff] [blame] | 1515 | u32 tu, ms; |
Jouni Malinen | f797eb7 | 2009-01-19 18:48:46 +0200 | [diff] [blame] | 1516 | tu = get_unaligned_le32(elems.timeout_int + 1); |
Jouni Malinen | 63a5ab8 | 2009-01-08 13:32:09 +0200 | [diff] [blame] | 1517 | ms = tu * 1024 / 1000; |
| 1518 | printk(KERN_DEBUG "%s: AP rejected association temporarily; " |
| 1519 | "comeback duration %u TU (%u ms)\n", |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 1520 | sdata->name, tu, ms); |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1521 | wk->timeout = jiffies + msecs_to_jiffies(ms); |
Jouni Malinen | 63a5ab8 | 2009-01-08 13:32:09 +0200 | [diff] [blame] | 1522 | if (ms > IEEE80211_ASSOC_TIMEOUT) |
Johannes Berg | ca386f3 | 2009-07-10 02:39:48 +0200 | [diff] [blame] | 1523 | run_again(ifmgd, jiffies + msecs_to_jiffies(ms)); |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1524 | return RX_MGMT_NONE; |
Jouni Malinen | 63a5ab8 | 2009-01-08 13:32:09 +0200 | [diff] [blame] | 1525 | } |
| 1526 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1527 | if (status_code != WLAN_STATUS_SUCCESS) { |
| 1528 | printk(KERN_DEBUG "%s: AP denied association (code=%d)\n", |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 1529 | sdata->name, status_code); |
Johannes Berg | 2ef6e44 | 2009-10-20 15:08:12 +0900 | [diff] [blame] | 1530 | wk->state = IEEE80211_MGD_STATE_IDLE; |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1531 | return RX_MGMT_CFG80211_ASSOC; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1532 | } |
| 1533 | |
Johannes Berg | 1dd84aa | 2007-10-10 12:03:41 +0200 | [diff] [blame] | 1534 | if ((aid & (BIT(15) | BIT(14))) != (BIT(15) | BIT(14))) |
| 1535 | printk(KERN_DEBUG "%s: invalid aid value %d; bits 15:14 not " |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 1536 | "set\n", sdata->name, aid); |
Johannes Berg | 1dd84aa | 2007-10-10 12:03:41 +0200 | [diff] [blame] | 1537 | aid &= ~(BIT(15) | BIT(14)); |
| 1538 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1539 | if (!elems.supp_rates) { |
| 1540 | printk(KERN_DEBUG "%s: no SuppRates element in AssocResp\n", |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 1541 | sdata->name); |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1542 | return RX_MGMT_NONE; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1543 | } |
| 1544 | |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 1545 | printk(KERN_DEBUG "%s: associated\n", sdata->name); |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 1546 | ifmgd->aid = aid; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1547 | |
Johannes Berg | 5d1ec85 | 2009-12-02 12:43:43 +0100 | [diff] [blame^] | 1548 | sta = sta_info_alloc(sdata, wk->bss->cbss.bssid, GFP_KERNEL); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1549 | if (!sta) { |
Johannes Berg | 5d1ec85 | 2009-12-02 12:43:43 +0100 | [diff] [blame^] | 1550 | printk(KERN_DEBUG "%s: failed to alloc STA entry for" |
| 1551 | " the AP\n", sdata->name); |
| 1552 | return RX_MGMT_CFG80211_ASSOC_ERROR; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1553 | } |
| 1554 | |
Johannes Berg | 5d1ec85 | 2009-12-02 12:43:43 +0100 | [diff] [blame^] | 1555 | set_sta_flags(sta, WLAN_STA_AUTH | WLAN_STA_ASSOC | |
| 1556 | WLAN_STA_ASSOC_AP); |
| 1557 | if (!(ifmgd->flags & IEEE80211_STA_CONTROL_PORT)) |
| 1558 | set_sta_flags(sta, WLAN_STA_AUTHORIZED); |
| 1559 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1560 | rates = 0; |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 1561 | basic_rates = 0; |
| 1562 | sband = local->hw.wiphy->bands[local->hw.conf.channel->band]; |
| 1563 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1564 | for (i = 0; i < elems.supp_rates_len; i++) { |
| 1565 | int rate = (elems.supp_rates[i] & 0x7f) * 5; |
Tomas Winkler | d61272c | 2008-10-30 17:08:08 +0200 | [diff] [blame] | 1566 | bool is_basic = !!(elems.supp_rates[i] & 0x80); |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 1567 | |
| 1568 | if (rate > 110) |
| 1569 | have_higher_than_11mbit = true; |
| 1570 | |
| 1571 | for (j = 0; j < sband->n_bitrates; j++) { |
Tomas Winkler | d61272c | 2008-10-30 17:08:08 +0200 | [diff] [blame] | 1572 | if (sband->bitrates[j].bitrate == rate) { |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1573 | rates |= BIT(j); |
Tomas Winkler | d61272c | 2008-10-30 17:08:08 +0200 | [diff] [blame] | 1574 | if (is_basic) |
| 1575 | basic_rates |= BIT(j); |
| 1576 | break; |
| 1577 | } |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 1578 | } |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1579 | } |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 1580 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1581 | for (i = 0; i < elems.ext_supp_rates_len; i++) { |
| 1582 | int rate = (elems.ext_supp_rates[i] & 0x7f) * 5; |
Johannes Berg | 7e0986c | 2009-04-19 13:22:11 +0200 | [diff] [blame] | 1583 | bool is_basic = !!(elems.ext_supp_rates[i] & 0x80); |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 1584 | |
| 1585 | if (rate > 110) |
| 1586 | have_higher_than_11mbit = true; |
| 1587 | |
| 1588 | for (j = 0; j < sband->n_bitrates; j++) { |
Tomas Winkler | d61272c | 2008-10-30 17:08:08 +0200 | [diff] [blame] | 1589 | if (sband->bitrates[j].bitrate == rate) { |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1590 | rates |= BIT(j); |
Tomas Winkler | d61272c | 2008-10-30 17:08:08 +0200 | [diff] [blame] | 1591 | if (is_basic) |
| 1592 | basic_rates |= BIT(j); |
| 1593 | break; |
| 1594 | } |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 1595 | } |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1596 | } |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 1597 | |
Johannes Berg | 323ce79 | 2008-09-11 02:45:11 +0200 | [diff] [blame] | 1598 | sta->sta.supp_rates[local->hw.conf.channel->band] = rates; |
Johannes Berg | bda3933 | 2008-10-11 01:51:51 +0200 | [diff] [blame] | 1599 | sdata->vif.bss_conf.basic_rates = basic_rates; |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 1600 | |
| 1601 | /* cf. IEEE 802.11 9.2.12 */ |
| 1602 | if (local->hw.conf.channel->band == IEEE80211_BAND_2GHZ && |
| 1603 | have_higher_than_11mbit) |
| 1604 | sdata->flags |= IEEE80211_SDATA_OPERATING_GMODE; |
| 1605 | else |
| 1606 | sdata->flags &= ~IEEE80211_SDATA_OPERATING_GMODE; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1607 | |
Johannes Berg | ab1faea | 2009-07-01 21:41:17 +0200 | [diff] [blame] | 1608 | if (elems.ht_cap_elem && !(ifmgd->flags & IEEE80211_STA_DISABLE_11N)) |
Johannes Berg | ae5eb02 | 2008-10-14 16:58:37 +0200 | [diff] [blame] | 1609 | ieee80211_ht_cap_ie_to_sta_ht_cap(sband, |
Johannes Berg | d9fe60d | 2008-10-09 12:13:49 +0200 | [diff] [blame] | 1610 | elems.ht_cap_elem, &sta->sta.ht_cap); |
Johannes Berg | ae5eb02 | 2008-10-14 16:58:37 +0200 | [diff] [blame] | 1611 | |
| 1612 | ap_ht_cap_flags = sta->sta.ht_cap.cap; |
Ron Rindjunsky | d3c990f | 2007-11-26 16:14:34 +0200 | [diff] [blame] | 1613 | |
Johannes Berg | 4b7679a | 2008-09-18 18:14:18 +0200 | [diff] [blame] | 1614 | rate_control_rate_init(sta); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1615 | |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 1616 | if (ifmgd->flags & IEEE80211_STA_MFP_ENABLED) |
Jouni Malinen | 5394af4 | 2009-01-08 13:31:59 +0200 | [diff] [blame] | 1617 | set_sta_flags(sta, WLAN_STA_MFP); |
| 1618 | |
Johannes Berg | ddf4ac5 | 2008-10-22 11:41:38 +0200 | [diff] [blame] | 1619 | if (elems.wmm_param) |
Johannes Berg | 07346f81 | 2008-05-03 01:02:02 +0200 | [diff] [blame] | 1620 | set_sta_flags(sta, WLAN_STA_WME); |
Johannes Berg | ddf4ac5 | 2008-10-22 11:41:38 +0200 | [diff] [blame] | 1621 | |
Johannes Berg | 5d1ec85 | 2009-12-02 12:43:43 +0100 | [diff] [blame^] | 1622 | err = sta_info_insert(sta); |
| 1623 | sta = NULL; |
| 1624 | if (err) { |
| 1625 | printk(KERN_DEBUG "%s: failed to insert STA entry for" |
| 1626 | " the AP (error %d)\n", sdata->name, err); |
| 1627 | return RX_MGMT_CFG80211_ASSOC_ERROR; |
Johannes Berg | ddf4ac5 | 2008-10-22 11:41:38 +0200 | [diff] [blame] | 1628 | } |
| 1629 | |
Johannes Berg | ddf4ac5 | 2008-10-22 11:41:38 +0200 | [diff] [blame] | 1630 | if (elems.wmm_param) |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 1631 | ieee80211_sta_wmm_params(local, ifmgd, elems.wmm_param, |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1632 | elems.wmm_param_len); |
Johannes Berg | aa837e1 | 2009-05-07 16:16:24 +0200 | [diff] [blame] | 1633 | else |
| 1634 | ieee80211_set_wmm_default(sdata); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1635 | |
Johannes Berg | ae5eb02 | 2008-10-14 16:58:37 +0200 | [diff] [blame] | 1636 | if (elems.ht_info_elem && elems.wmm_param && |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 1637 | (ifmgd->flags & IEEE80211_STA_WMM_ENABLED) && |
Johannes Berg | ab1faea | 2009-07-01 21:41:17 +0200 | [diff] [blame] | 1638 | !(ifmgd->flags & IEEE80211_STA_DISABLE_11N)) |
Johannes Berg | ae5eb02 | 2008-10-14 16:58:37 +0200 | [diff] [blame] | 1639 | changed |= ieee80211_enable_ht(sdata, elems.ht_info_elem, |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1640 | wk->bss->cbss.bssid, |
Johannes Berg | ae5eb02 | 2008-10-14 16:58:37 +0200 | [diff] [blame] | 1641 | ap_ht_cap_flags); |
| 1642 | |
Johannes Berg | 056508d | 2009-07-30 21:43:55 +0200 | [diff] [blame] | 1643 | /* delete work item -- must be before set_associated for PS */ |
| 1644 | list_del(&wk->list); |
| 1645 | |
Tomas Winkler | 21c0cbe | 2008-03-28 16:33:34 -0700 | [diff] [blame] | 1646 | /* set AID and assoc capability, |
| 1647 | * ieee80211_set_associated() will tell the driver */ |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 1648 | bss_conf->aid = aid; |
Tomas Winkler | 21c0cbe | 2008-03-28 16:33:34 -0700 | [diff] [blame] | 1649 | bss_conf->assoc_capability = capab_info; |
Johannes Berg | e21546a | 2009-08-06 20:41:32 +0200 | [diff] [blame] | 1650 | /* this will take ownership of wk */ |
| 1651 | ieee80211_set_associated(sdata, wk, changed); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1652 | |
Kalle Valo | 15b7b06 | 2009-03-22 21:57:14 +0200 | [diff] [blame] | 1653 | /* |
Johannes Berg | b291ba1 | 2009-07-10 15:29:03 +0200 | [diff] [blame] | 1654 | * Start timer to probe the connection to the AP now. |
| 1655 | * Also start the timer that will detect beacon loss. |
Kalle Valo | 15b7b06 | 2009-03-22 21:57:14 +0200 | [diff] [blame] | 1656 | */ |
Johannes Berg | b291ba1 | 2009-07-10 15:29:03 +0200 | [diff] [blame] | 1657 | ieee80211_sta_rx_notify(sdata, (struct ieee80211_hdr *)mgmt); |
| 1658 | mod_beacon_timer(sdata); |
Kalle Valo | 15b7b06 | 2009-03-22 21:57:14 +0200 | [diff] [blame] | 1659 | |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1660 | return RX_MGMT_CFG80211_ASSOC; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1661 | } |
| 1662 | |
| 1663 | |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 1664 | static void ieee80211_rx_bss_info(struct ieee80211_sub_if_data *sdata, |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1665 | struct ieee80211_mgmt *mgmt, |
| 1666 | size_t len, |
| 1667 | struct ieee80211_rx_status *rx_status, |
Johannes Berg | 98c8fcc | 2008-09-08 17:44:26 +0200 | [diff] [blame] | 1668 | struct ieee802_11_elems *elems, |
| 1669 | bool beacon) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1670 | { |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 1671 | struct ieee80211_local *local = sdata->local; |
Johannes Berg | 98c8fcc | 2008-09-08 17:44:26 +0200 | [diff] [blame] | 1672 | int freq; |
Johannes Berg | c2b1345 | 2008-09-11 00:01:55 +0200 | [diff] [blame] | 1673 | struct ieee80211_bss *bss; |
Johannes Berg | fab7d4a | 2008-03-16 18:42:44 +0100 | [diff] [blame] | 1674 | struct ieee80211_channel *channel; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1675 | |
Johannes Berg | 5bda617 | 2008-09-08 11:05:10 +0200 | [diff] [blame] | 1676 | if (elems->ds_params && elems->ds_params_len == 1) |
| 1677 | freq = ieee80211_channel_to_frequency(elems->ds_params[0]); |
| 1678 | else |
| 1679 | freq = rx_status->freq; |
| 1680 | |
| 1681 | channel = ieee80211_get_channel(local->hw.wiphy, freq); |
| 1682 | |
| 1683 | if (!channel || channel->flags & IEEE80211_CHAN_DISABLED) |
| 1684 | return; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1685 | |
Johannes Berg | 98c8fcc | 2008-09-08 17:44:26 +0200 | [diff] [blame] | 1686 | bss = ieee80211_bss_info_update(local, rx_status, mgmt, len, elems, |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 1687 | channel, beacon); |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1688 | if (bss) |
| 1689 | ieee80211_rx_bss_put(local, bss); |
| 1690 | |
| 1691 | if (!sdata->u.mgd.associated) |
Johannes Berg | 98c8fcc | 2008-09-08 17:44:26 +0200 | [diff] [blame] | 1692 | return; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1693 | |
Sujith | c481ec9 | 2009-01-06 09:28:37 +0530 | [diff] [blame] | 1694 | if (elems->ch_switch_elem && (elems->ch_switch_elem_len == 3) && |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1695 | (memcmp(mgmt->bssid, sdata->u.mgd.associated->cbss.bssid, |
| 1696 | ETH_ALEN) == 0)) { |
Sujith | c481ec9 | 2009-01-06 09:28:37 +0530 | [diff] [blame] | 1697 | struct ieee80211_channel_sw_ie *sw_elem = |
| 1698 | (struct ieee80211_channel_sw_ie *)elems->ch_switch_elem; |
Johannes Berg | cc32abd | 2009-05-15 11:52:31 +0200 | [diff] [blame] | 1699 | ieee80211_sta_process_chanswitch(sdata, sw_elem, bss); |
Sujith | c481ec9 | 2009-01-06 09:28:37 +0530 | [diff] [blame] | 1700 | } |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1701 | } |
| 1702 | |
| 1703 | |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 1704 | static void ieee80211_rx_mgmt_probe_resp(struct ieee80211_sub_if_data *sdata, |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1705 | struct ieee80211_mgd_work *wk, |
| 1706 | struct ieee80211_mgmt *mgmt, size_t len, |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1707 | struct ieee80211_rx_status *rx_status) |
| 1708 | { |
Kalle Valo | 15b7b06 | 2009-03-22 21:57:14 +0200 | [diff] [blame] | 1709 | struct ieee80211_if_managed *ifmgd; |
Ester Kummer | ae6a44e | 2008-06-27 18:54:48 +0300 | [diff] [blame] | 1710 | size_t baselen; |
| 1711 | struct ieee802_11_elems elems; |
| 1712 | |
Kalle Valo | 15b7b06 | 2009-03-22 21:57:14 +0200 | [diff] [blame] | 1713 | ifmgd = &sdata->u.mgd; |
| 1714 | |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1715 | ASSERT_MGD_MTX(ifmgd); |
| 1716 | |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 1717 | if (memcmp(mgmt->da, sdata->vif.addr, ETH_ALEN)) |
Tomas Winkler | 8e7cdbb | 2008-08-03 14:32:01 +0300 | [diff] [blame] | 1718 | return; /* ignore ProbeResp to foreign address */ |
| 1719 | |
Ester Kummer | ae6a44e | 2008-06-27 18:54:48 +0300 | [diff] [blame] | 1720 | baselen = (u8 *) mgmt->u.probe_resp.variable - (u8 *) mgmt; |
| 1721 | if (baselen > len) |
| 1722 | return; |
| 1723 | |
| 1724 | ieee802_11_parse_elems(mgmt->u.probe_resp.variable, len - baselen, |
| 1725 | &elems); |
| 1726 | |
Johannes Berg | 98c8fcc | 2008-09-08 17:44:26 +0200 | [diff] [blame] | 1727 | ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems, false); |
Ron Rindjunsky | 9859b81 | 2008-08-09 03:02:19 +0300 | [diff] [blame] | 1728 | |
| 1729 | /* direct probe may be part of the association flow */ |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1730 | if (wk && wk->state == IEEE80211_MGD_STATE_PROBE) { |
Johannes Berg | 0ff7161 | 2009-09-26 14:45:41 +0200 | [diff] [blame] | 1731 | printk(KERN_DEBUG "%s: direct probe responded\n", |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 1732 | sdata->name); |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1733 | wk->tries = 0; |
| 1734 | wk->state = IEEE80211_MGD_STATE_AUTH; |
| 1735 | WARN_ON(ieee80211_authenticate(sdata, wk) != RX_MGMT_NONE); |
Ron Rindjunsky | 9859b81 | 2008-08-09 03:02:19 +0300 | [diff] [blame] | 1736 | } |
Kalle Valo | 15b7b06 | 2009-03-22 21:57:14 +0200 | [diff] [blame] | 1737 | |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1738 | if (ifmgd->associated && |
| 1739 | memcmp(mgmt->bssid, ifmgd->associated->cbss.bssid, ETH_ALEN) == 0 && |
Johannes Berg | b291ba1 | 2009-07-10 15:29:03 +0200 | [diff] [blame] | 1740 | ifmgd->flags & (IEEE80211_STA_BEACON_POLL | |
| 1741 | IEEE80211_STA_CONNECTION_POLL)) { |
| 1742 | ifmgd->flags &= ~(IEEE80211_STA_CONNECTION_POLL | |
| 1743 | IEEE80211_STA_BEACON_POLL); |
Johannes Berg | 4e75184 | 2009-06-10 15:16:52 +0200 | [diff] [blame] | 1744 | mutex_lock(&sdata->local->iflist_mtx); |
| 1745 | ieee80211_recalc_ps(sdata->local, -1); |
| 1746 | mutex_unlock(&sdata->local->iflist_mtx); |
Johannes Berg | b291ba1 | 2009-07-10 15:29:03 +0200 | [diff] [blame] | 1747 | /* |
| 1748 | * We've received a probe response, but are not sure whether |
| 1749 | * we have or will be receiving any beacons or data, so let's |
| 1750 | * schedule the timers again, just in case. |
| 1751 | */ |
| 1752 | mod_beacon_timer(sdata); |
| 1753 | mod_timer(&ifmgd->conn_mon_timer, |
| 1754 | round_jiffies_up(jiffies + |
| 1755 | IEEE80211_CONNECTION_IDLE_TIME)); |
Johannes Berg | 4e75184 | 2009-06-10 15:16:52 +0200 | [diff] [blame] | 1756 | } |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1757 | } |
| 1758 | |
Johannes Berg | d91f36d | 2009-04-16 13:17:26 +0200 | [diff] [blame] | 1759 | /* |
| 1760 | * This is the canonical list of information elements we care about, |
| 1761 | * the filter code also gives us all changes to the Microsoft OUI |
| 1762 | * (00:50:F2) vendor IE which is used for WMM which we need to track. |
| 1763 | * |
| 1764 | * We implement beacon filtering in software since that means we can |
| 1765 | * avoid processing the frame here and in cfg80211, and userspace |
| 1766 | * will not be able to tell whether the hardware supports it or not. |
| 1767 | * |
| 1768 | * XXX: This list needs to be dynamic -- userspace needs to be able to |
| 1769 | * add items it requires. It also needs to be able to tell us to |
| 1770 | * look out for other vendor IEs. |
| 1771 | */ |
| 1772 | static const u64 care_about_ies = |
Johannes Berg | 1d4df3a | 2009-04-22 11:25:43 +0200 | [diff] [blame] | 1773 | (1ULL << WLAN_EID_COUNTRY) | |
| 1774 | (1ULL << WLAN_EID_ERP_INFO) | |
| 1775 | (1ULL << WLAN_EID_CHANNEL_SWITCH) | |
| 1776 | (1ULL << WLAN_EID_PWR_CONSTRAINT) | |
| 1777 | (1ULL << WLAN_EID_HT_CAPABILITY) | |
| 1778 | (1ULL << WLAN_EID_HT_INFORMATION); |
Johannes Berg | d91f36d | 2009-04-16 13:17:26 +0200 | [diff] [blame] | 1779 | |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 1780 | static void ieee80211_rx_mgmt_beacon(struct ieee80211_sub_if_data *sdata, |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1781 | struct ieee80211_mgmt *mgmt, |
| 1782 | size_t len, |
| 1783 | struct ieee80211_rx_status *rx_status) |
| 1784 | { |
Johannes Berg | d91f36d | 2009-04-16 13:17:26 +0200 | [diff] [blame] | 1785 | struct ieee80211_if_managed *ifmgd = &sdata->u.mgd; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1786 | size_t baselen; |
| 1787 | struct ieee802_11_elems elems; |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 1788 | struct ieee80211_local *local = sdata->local; |
Johannes Berg | 471b3ef | 2007-12-28 14:32:58 +0100 | [diff] [blame] | 1789 | u32 changed = 0; |
Johannes Berg | d91f36d | 2009-04-16 13:17:26 +0200 | [diff] [blame] | 1790 | bool erp_valid, directed_tim = false; |
Johannes Berg | 7a5158e | 2008-10-08 10:59:33 +0200 | [diff] [blame] | 1791 | u8 erp_value = 0; |
Johannes Berg | d91f36d | 2009-04-16 13:17:26 +0200 | [diff] [blame] | 1792 | u32 ncrc; |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1793 | u8 *bssid; |
| 1794 | |
| 1795 | ASSERT_MGD_MTX(ifmgd); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1796 | |
Ester Kummer | ae6a44e | 2008-06-27 18:54:48 +0300 | [diff] [blame] | 1797 | /* Process beacon from the current BSS */ |
| 1798 | baselen = (u8 *) mgmt->u.beacon.variable - (u8 *) mgmt; |
| 1799 | if (baselen > len) |
| 1800 | return; |
| 1801 | |
Johannes Berg | d91f36d | 2009-04-16 13:17:26 +0200 | [diff] [blame] | 1802 | if (rx_status->freq != local->hw.conf.channel->center_freq) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1803 | return; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1804 | |
Johannes Berg | b291ba1 | 2009-07-10 15:29:03 +0200 | [diff] [blame] | 1805 | /* |
| 1806 | * We might have received a number of frames, among them a |
| 1807 | * disassoc frame and a beacon... |
| 1808 | */ |
| 1809 | if (!ifmgd->associated) |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1810 | return; |
| 1811 | |
| 1812 | bssid = ifmgd->associated->cbss.bssid; |
| 1813 | |
Johannes Berg | b291ba1 | 2009-07-10 15:29:03 +0200 | [diff] [blame] | 1814 | /* |
| 1815 | * And in theory even frames from a different AP we were just |
| 1816 | * associated to a split-second ago! |
| 1817 | */ |
| 1818 | if (memcmp(bssid, mgmt->bssid, ETH_ALEN) != 0) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1819 | return; |
| 1820 | |
Johannes Berg | b291ba1 | 2009-07-10 15:29:03 +0200 | [diff] [blame] | 1821 | if (ifmgd->flags & IEEE80211_STA_BEACON_POLL) { |
Jouni Malinen | 9277818 | 2009-05-14 21:15:36 +0300 | [diff] [blame] | 1822 | #ifdef CONFIG_MAC80211_VERBOSE_DEBUG |
| 1823 | if (net_ratelimit()) { |
| 1824 | printk(KERN_DEBUG "%s: cancelling probereq poll due " |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 1825 | "to a received beacon\n", sdata->name); |
Jouni Malinen | 9277818 | 2009-05-14 21:15:36 +0300 | [diff] [blame] | 1826 | } |
| 1827 | #endif |
Johannes Berg | b291ba1 | 2009-07-10 15:29:03 +0200 | [diff] [blame] | 1828 | ifmgd->flags &= ~IEEE80211_STA_BEACON_POLL; |
Johannes Berg | 4e75184 | 2009-06-10 15:16:52 +0200 | [diff] [blame] | 1829 | mutex_lock(&local->iflist_mtx); |
| 1830 | ieee80211_recalc_ps(local, -1); |
| 1831 | mutex_unlock(&local->iflist_mtx); |
Jouni Malinen | 9277818 | 2009-05-14 21:15:36 +0300 | [diff] [blame] | 1832 | } |
| 1833 | |
Johannes Berg | b291ba1 | 2009-07-10 15:29:03 +0200 | [diff] [blame] | 1834 | /* |
| 1835 | * Push the beacon loss detection into the future since |
| 1836 | * we are processing a beacon from the AP just now. |
| 1837 | */ |
| 1838 | mod_beacon_timer(sdata); |
| 1839 | |
Johannes Berg | d91f36d | 2009-04-16 13:17:26 +0200 | [diff] [blame] | 1840 | ncrc = crc32_be(0, (void *)&mgmt->u.beacon.beacon_int, 4); |
| 1841 | ncrc = ieee802_11_parse_elems_crc(mgmt->u.beacon.variable, |
| 1842 | len - baselen, &elems, |
| 1843 | care_about_ies, ncrc); |
| 1844 | |
| 1845 | if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK) |
Johannes Berg | e7ec86f | 2009-04-18 17:33:24 +0200 | [diff] [blame] | 1846 | directed_tim = ieee80211_check_tim(elems.tim, elems.tim_len, |
| 1847 | ifmgd->aid); |
Johannes Berg | d91f36d | 2009-04-16 13:17:26 +0200 | [diff] [blame] | 1848 | |
Jouni Malinen | 3019667 | 2009-05-19 17:01:43 +0300 | [diff] [blame] | 1849 | if (ncrc != ifmgd->beacon_crc) { |
| 1850 | ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems, |
| 1851 | true); |
Johannes Berg | d91f36d | 2009-04-16 13:17:26 +0200 | [diff] [blame] | 1852 | |
Jouni Malinen | 3019667 | 2009-05-19 17:01:43 +0300 | [diff] [blame] | 1853 | ieee80211_sta_wmm_params(local, ifmgd, elems.wmm_param, |
| 1854 | elems.wmm_param_len); |
| 1855 | } |
Johannes Berg | fe3fa82 | 2008-09-08 11:05:09 +0200 | [diff] [blame] | 1856 | |
Vivek Natarajan | 25c9c87 | 2009-03-02 20:20:30 +0530 | [diff] [blame] | 1857 | if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK) { |
Kalle Valo | 1fb3606 | 2009-02-10 17:09:24 +0200 | [diff] [blame] | 1858 | if (directed_tim) { |
Kalle Valo | 572e001 | 2009-02-10 17:09:31 +0200 | [diff] [blame] | 1859 | if (local->hw.conf.dynamic_ps_timeout > 0) { |
| 1860 | local->hw.conf.flags &= ~IEEE80211_CONF_PS; |
| 1861 | ieee80211_hw_config(local, |
| 1862 | IEEE80211_CONF_CHANGE_PS); |
| 1863 | ieee80211_send_nullfunc(local, sdata, 0); |
| 1864 | } else { |
| 1865 | local->pspolling = true; |
| 1866 | |
| 1867 | /* |
| 1868 | * Here is assumed that the driver will be |
| 1869 | * able to send ps-poll frame and receive a |
| 1870 | * response even though power save mode is |
| 1871 | * enabled, but some drivers might require |
| 1872 | * to disable power save here. This needs |
| 1873 | * to be investigated. |
| 1874 | */ |
| 1875 | ieee80211_send_pspoll(local, sdata); |
| 1876 | } |
Vivek Natarajan | a97b77b | 2008-12-23 18:39:02 -0800 | [diff] [blame] | 1877 | } |
| 1878 | } |
Johannes Berg | 7a5158e | 2008-10-08 10:59:33 +0200 | [diff] [blame] | 1879 | |
Jouni Malinen | 3019667 | 2009-05-19 17:01:43 +0300 | [diff] [blame] | 1880 | if (ncrc == ifmgd->beacon_crc) |
| 1881 | return; |
| 1882 | ifmgd->beacon_crc = ncrc; |
| 1883 | |
Johannes Berg | 7a5158e | 2008-10-08 10:59:33 +0200 | [diff] [blame] | 1884 | if (elems.erp_info && elems.erp_info_len >= 1) { |
| 1885 | erp_valid = true; |
| 1886 | erp_value = elems.erp_info[0]; |
| 1887 | } else { |
| 1888 | erp_valid = false; |
John W. Linville | 50c4afb | 2008-04-15 14:09:27 -0400 | [diff] [blame] | 1889 | } |
Johannes Berg | 7a5158e | 2008-10-08 10:59:33 +0200 | [diff] [blame] | 1890 | changed |= ieee80211_handle_bss_capability(sdata, |
| 1891 | le16_to_cpu(mgmt->u.beacon.capab_info), |
| 1892 | erp_valid, erp_value); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1893 | |
Ron Rindjunsky | d3c990f | 2007-11-26 16:14:34 +0200 | [diff] [blame] | 1894 | |
Vasanthakumar Thiagarajan | 53d6f81c | 2009-02-11 22:18:49 +0530 | [diff] [blame] | 1895 | if (elems.ht_cap_elem && elems.ht_info_elem && elems.wmm_param && |
Johannes Berg | ab1faea | 2009-07-01 21:41:17 +0200 | [diff] [blame] | 1896 | !(ifmgd->flags & IEEE80211_STA_DISABLE_11N)) { |
Johannes Berg | ae5eb02 | 2008-10-14 16:58:37 +0200 | [diff] [blame] | 1897 | struct sta_info *sta; |
| 1898 | struct ieee80211_supported_band *sband; |
| 1899 | u16 ap_ht_cap_flags; |
| 1900 | |
| 1901 | rcu_read_lock(); |
| 1902 | |
Johannes Berg | abe6063 | 2009-11-25 17:46:18 +0100 | [diff] [blame] | 1903 | sta = sta_info_get(sdata, bssid); |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1904 | if (WARN_ON(!sta)) { |
Johannes Berg | ae5eb02 | 2008-10-14 16:58:37 +0200 | [diff] [blame] | 1905 | rcu_read_unlock(); |
| 1906 | return; |
| 1907 | } |
| 1908 | |
| 1909 | sband = local->hw.wiphy->bands[local->hw.conf.channel->band]; |
| 1910 | |
| 1911 | ieee80211_ht_cap_ie_to_sta_ht_cap(sband, |
| 1912 | elems.ht_cap_elem, &sta->sta.ht_cap); |
| 1913 | |
| 1914 | ap_ht_cap_flags = sta->sta.ht_cap.cap; |
| 1915 | |
| 1916 | rcu_read_unlock(); |
| 1917 | |
| 1918 | changed |= ieee80211_enable_ht(sdata, elems.ht_info_elem, |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1919 | bssid, ap_ht_cap_flags); |
Ron Rindjunsky | d3c990f | 2007-11-26 16:14:34 +0200 | [diff] [blame] | 1920 | } |
| 1921 | |
Luis R. Rodriguez | 8b19e6c | 2009-07-30 17:38:09 -0700 | [diff] [blame] | 1922 | /* Note: country IE parsing is done for us by cfg80211 */ |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 1923 | if (elems.country_elem) { |
Vasanthakumar Thiagarajan | a8302de | 2009-01-09 18:14:15 +0530 | [diff] [blame] | 1924 | /* TODO: IBSS also needs this */ |
| 1925 | if (elems.pwr_constr_elem) |
| 1926 | ieee80211_handle_pwr_constr(sdata, |
| 1927 | le16_to_cpu(mgmt->u.probe_resp.capab_info), |
| 1928 | elems.pwr_constr_elem, |
| 1929 | elems.pwr_constr_elem_len); |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 1930 | } |
| 1931 | |
Johannes Berg | 471b3ef | 2007-12-28 14:32:58 +0100 | [diff] [blame] | 1932 | ieee80211_bss_info_change_notify(sdata, changed); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1933 | } |
| 1934 | |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 1935 | ieee80211_rx_result ieee80211_sta_rx_mgmt(struct ieee80211_sub_if_data *sdata, |
Johannes Berg | f1d58c2 | 2009-06-17 13:13:00 +0200 | [diff] [blame] | 1936 | struct sk_buff *skb) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1937 | { |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 1938 | struct ieee80211_local *local = sdata->local; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1939 | struct ieee80211_mgmt *mgmt; |
| 1940 | u16 fc; |
| 1941 | |
| 1942 | if (skb->len < 24) |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 1943 | return RX_DROP_MONITOR; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1944 | |
| 1945 | mgmt = (struct ieee80211_mgmt *) skb->data; |
| 1946 | fc = le16_to_cpu(mgmt->frame_control); |
| 1947 | |
| 1948 | switch (fc & IEEE80211_FCTL_STYPE) { |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1949 | case IEEE80211_STYPE_PROBE_RESP: |
| 1950 | case IEEE80211_STYPE_BEACON: |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1951 | case IEEE80211_STYPE_AUTH: |
| 1952 | case IEEE80211_STYPE_ASSOC_RESP: |
| 1953 | case IEEE80211_STYPE_REASSOC_RESP: |
| 1954 | case IEEE80211_STYPE_DEAUTH: |
| 1955 | case IEEE80211_STYPE_DISASSOC: |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1956 | case IEEE80211_STYPE_ACTION: |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 1957 | skb_queue_tail(&sdata->u.mgd.skb_queue, skb); |
Luis R. Rodriguez | 42935ec | 2009-07-29 20:08:07 -0400 | [diff] [blame] | 1958 | ieee80211_queue_work(&local->hw, &sdata->u.mgd.work); |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 1959 | return RX_QUEUED; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1960 | } |
| 1961 | |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 1962 | return RX_DROP_MONITOR; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1963 | } |
| 1964 | |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 1965 | static void ieee80211_sta_rx_queued_mgmt(struct ieee80211_sub_if_data *sdata, |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1966 | struct sk_buff *skb) |
| 1967 | { |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1968 | struct ieee80211_if_managed *ifmgd = &sdata->u.mgd; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1969 | struct ieee80211_rx_status *rx_status; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1970 | struct ieee80211_mgmt *mgmt; |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1971 | struct ieee80211_mgd_work *wk; |
| 1972 | enum rx_mgmt_action rma = RX_MGMT_NONE; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1973 | u16 fc; |
| 1974 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1975 | rx_status = (struct ieee80211_rx_status *) skb->cb; |
| 1976 | mgmt = (struct ieee80211_mgmt *) skb->data; |
| 1977 | fc = le16_to_cpu(mgmt->frame_control); |
| 1978 | |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 1979 | mutex_lock(&ifmgd->mtx); |
| 1980 | |
| 1981 | if (ifmgd->associated && |
| 1982 | memcmp(ifmgd->associated->cbss.bssid, mgmt->bssid, |
| 1983 | ETH_ALEN) == 0) { |
| 1984 | switch (fc & IEEE80211_FCTL_STYPE) { |
| 1985 | case IEEE80211_STYPE_BEACON: |
| 1986 | ieee80211_rx_mgmt_beacon(sdata, mgmt, skb->len, |
| 1987 | rx_status); |
| 1988 | break; |
| 1989 | case IEEE80211_STYPE_PROBE_RESP: |
| 1990 | ieee80211_rx_mgmt_probe_resp(sdata, NULL, mgmt, |
| 1991 | skb->len, rx_status); |
| 1992 | break; |
| 1993 | case IEEE80211_STYPE_DEAUTH: |
| 1994 | rma = ieee80211_rx_mgmt_deauth(sdata, NULL, |
| 1995 | mgmt, skb->len); |
| 1996 | break; |
| 1997 | case IEEE80211_STYPE_DISASSOC: |
| 1998 | rma = ieee80211_rx_mgmt_disassoc(sdata, mgmt, skb->len); |
| 1999 | break; |
| 2000 | case IEEE80211_STYPE_ACTION: |
| 2001 | /* XXX: differentiate, can only happen for CSA now! */ |
| 2002 | ieee80211_sta_process_chanswitch(sdata, |
| 2003 | &mgmt->u.action.u.chan_switch.sw_elem, |
| 2004 | ifmgd->associated); |
| 2005 | break; |
| 2006 | } |
| 2007 | mutex_unlock(&ifmgd->mtx); |
| 2008 | |
| 2009 | switch (rma) { |
| 2010 | case RX_MGMT_NONE: |
| 2011 | /* no action */ |
| 2012 | break; |
| 2013 | case RX_MGMT_CFG80211_DEAUTH: |
Holger Schurig | ce47061 | 2009-10-13 13:28:13 +0200 | [diff] [blame] | 2014 | cfg80211_send_deauth(sdata->dev, (u8 *)mgmt, skb->len); |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 2015 | break; |
| 2016 | case RX_MGMT_CFG80211_DISASSOC: |
Holger Schurig | ce47061 | 2009-10-13 13:28:13 +0200 | [diff] [blame] | 2017 | cfg80211_send_disassoc(sdata->dev, (u8 *)mgmt, skb->len); |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 2018 | break; |
| 2019 | default: |
| 2020 | WARN(1, "unexpected: %d", rma); |
| 2021 | } |
| 2022 | goto out; |
| 2023 | } |
| 2024 | |
| 2025 | list_for_each_entry(wk, &ifmgd->work_list, list) { |
| 2026 | if (memcmp(wk->bss->cbss.bssid, mgmt->bssid, ETH_ALEN) != 0) |
| 2027 | continue; |
| 2028 | |
| 2029 | switch (fc & IEEE80211_FCTL_STYPE) { |
| 2030 | case IEEE80211_STYPE_PROBE_RESP: |
| 2031 | ieee80211_rx_mgmt_probe_resp(sdata, wk, mgmt, skb->len, |
| 2032 | rx_status); |
| 2033 | break; |
| 2034 | case IEEE80211_STYPE_AUTH: |
| 2035 | rma = ieee80211_rx_mgmt_auth(sdata, wk, mgmt, skb->len); |
| 2036 | break; |
| 2037 | case IEEE80211_STYPE_ASSOC_RESP: |
| 2038 | rma = ieee80211_rx_mgmt_assoc_resp(sdata, wk, mgmt, |
| 2039 | skb->len, false); |
| 2040 | break; |
| 2041 | case IEEE80211_STYPE_REASSOC_RESP: |
| 2042 | rma = ieee80211_rx_mgmt_assoc_resp(sdata, wk, mgmt, |
| 2043 | skb->len, true); |
| 2044 | break; |
| 2045 | case IEEE80211_STYPE_DEAUTH: |
| 2046 | rma = ieee80211_rx_mgmt_deauth(sdata, wk, mgmt, |
| 2047 | skb->len); |
| 2048 | break; |
| 2049 | } |
| 2050 | /* |
| 2051 | * We've processed this frame for that work, so it can't |
| 2052 | * belong to another work struct. |
| 2053 | * NB: this is also required for correctness because the |
| 2054 | * called functions can free 'wk', and for 'rma'! |
| 2055 | */ |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 2056 | break; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2057 | } |
| 2058 | |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 2059 | mutex_unlock(&ifmgd->mtx); |
| 2060 | |
| 2061 | switch (rma) { |
| 2062 | case RX_MGMT_NONE: |
| 2063 | /* no action */ |
| 2064 | break; |
| 2065 | case RX_MGMT_CFG80211_AUTH: |
Johannes Berg | cb0b4be | 2009-07-07 03:56:07 +0200 | [diff] [blame] | 2066 | cfg80211_send_rx_auth(sdata->dev, (u8 *) mgmt, skb->len); |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 2067 | break; |
| 2068 | case RX_MGMT_CFG80211_ASSOC: |
Johannes Berg | cb0b4be | 2009-07-07 03:56:07 +0200 | [diff] [blame] | 2069 | cfg80211_send_rx_assoc(sdata->dev, (u8 *) mgmt, skb->len); |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 2070 | break; |
Johannes Berg | 8d8b261 | 2009-07-25 11:58:36 +0200 | [diff] [blame] | 2071 | case RX_MGMT_CFG80211_DEAUTH: |
Holger Schurig | ce47061 | 2009-10-13 13:28:13 +0200 | [diff] [blame] | 2072 | cfg80211_send_deauth(sdata->dev, (u8 *)mgmt, skb->len); |
Johannes Berg | 8d8b261 | 2009-07-25 11:58:36 +0200 | [diff] [blame] | 2073 | break; |
Johannes Berg | 5d1ec85 | 2009-12-02 12:43:43 +0100 | [diff] [blame^] | 2074 | case RX_MGMT_CFG80211_ASSOC_ERROR: |
| 2075 | /* an internal error -- pretend timeout for now */ |
| 2076 | cfg80211_send_assoc_timeout(sdata->dev, mgmt->bssid); |
| 2077 | break; |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 2078 | default: |
| 2079 | WARN(1, "unexpected: %d", rma); |
| 2080 | } |
| 2081 | |
| 2082 | out: |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2083 | kfree_skb(skb); |
| 2084 | } |
| 2085 | |
Johannes Berg | 9c6bd79 | 2008-09-11 00:01:52 +0200 | [diff] [blame] | 2086 | static void ieee80211_sta_timer(unsigned long data) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2087 | { |
| 2088 | struct ieee80211_sub_if_data *sdata = |
| 2089 | (struct ieee80211_sub_if_data *) data; |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 2090 | struct ieee80211_if_managed *ifmgd = &sdata->u.mgd; |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 2091 | struct ieee80211_local *local = sdata->local; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2092 | |
Johannes Berg | 5bb644a | 2009-05-17 11:40:42 +0200 | [diff] [blame] | 2093 | if (local->quiescing) { |
| 2094 | set_bit(TMR_RUNNING_TIMER, &ifmgd->timers_running); |
| 2095 | return; |
| 2096 | } |
| 2097 | |
Luis R. Rodriguez | 42935ec | 2009-07-29 20:08:07 -0400 | [diff] [blame] | 2098 | ieee80211_queue_work(&local->hw, &ifmgd->work); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2099 | } |
| 2100 | |
Johannes Berg | 9c6bd79 | 2008-09-11 00:01:52 +0200 | [diff] [blame] | 2101 | static void ieee80211_sta_work(struct work_struct *work) |
Johannes Berg | 60f8b39 | 2008-09-08 17:44:22 +0200 | [diff] [blame] | 2102 | { |
| 2103 | struct ieee80211_sub_if_data *sdata = |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 2104 | container_of(work, struct ieee80211_sub_if_data, u.mgd.work); |
Johannes Berg | 60f8b39 | 2008-09-08 17:44:22 +0200 | [diff] [blame] | 2105 | struct ieee80211_local *local = sdata->local; |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 2106 | struct ieee80211_if_managed *ifmgd; |
Johannes Berg | 60f8b39 | 2008-09-08 17:44:22 +0200 | [diff] [blame] | 2107 | struct sk_buff *skb; |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 2108 | struct ieee80211_mgd_work *wk, *tmp; |
| 2109 | LIST_HEAD(free_work); |
| 2110 | enum rx_mgmt_action rma; |
| 2111 | bool anybusy = false; |
Johannes Berg | 60f8b39 | 2008-09-08 17:44:22 +0200 | [diff] [blame] | 2112 | |
| 2113 | if (!netif_running(sdata->dev)) |
| 2114 | return; |
| 2115 | |
Helmut Schaa | fbe9c42 | 2009-07-23 12:14:04 +0200 | [diff] [blame] | 2116 | if (local->scanning) |
Johannes Berg | 60f8b39 | 2008-09-08 17:44:22 +0200 | [diff] [blame] | 2117 | return; |
| 2118 | |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 2119 | if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION)) |
Johannes Berg | 60f8b39 | 2008-09-08 17:44:22 +0200 | [diff] [blame] | 2120 | return; |
Johannes Berg | 5bb644a | 2009-05-17 11:40:42 +0200 | [diff] [blame] | 2121 | |
| 2122 | /* |
Luis R. Rodriguez | 42935ec | 2009-07-29 20:08:07 -0400 | [diff] [blame] | 2123 | * ieee80211_queue_work() should have picked up most cases, |
| 2124 | * here we'll pick the the rest. |
Johannes Berg | 5bb644a | 2009-05-17 11:40:42 +0200 | [diff] [blame] | 2125 | */ |
Luis R. Rodriguez | 42935ec | 2009-07-29 20:08:07 -0400 | [diff] [blame] | 2126 | if (WARN(local->suspended, "STA MLME work scheduled while " |
| 2127 | "going to suspend\n")) |
Johannes Berg | 5bb644a | 2009-05-17 11:40:42 +0200 | [diff] [blame] | 2128 | return; |
| 2129 | |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 2130 | ifmgd = &sdata->u.mgd; |
Johannes Berg | 60f8b39 | 2008-09-08 17:44:22 +0200 | [diff] [blame] | 2131 | |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 2132 | /* first process frames to avoid timing out while a frame is pending */ |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 2133 | while ((skb = skb_dequeue(&ifmgd->skb_queue))) |
Johannes Berg | 60f8b39 | 2008-09-08 17:44:22 +0200 | [diff] [blame] | 2134 | ieee80211_sta_rx_queued_mgmt(sdata, skb); |
| 2135 | |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 2136 | /* then process the rest of the work */ |
| 2137 | mutex_lock(&ifmgd->mtx); |
Johannes Berg | 60f8b39 | 2008-09-08 17:44:22 +0200 | [diff] [blame] | 2138 | |
Johannes Berg | b291ba1 | 2009-07-10 15:29:03 +0200 | [diff] [blame] | 2139 | if (ifmgd->flags & (IEEE80211_STA_BEACON_POLL | |
| 2140 | IEEE80211_STA_CONNECTION_POLL) && |
| 2141 | ifmgd->associated) { |
Maxim Levitsky | a43abf2 | 2009-07-31 18:54:12 +0300 | [diff] [blame] | 2142 | u8 bssid[ETH_ALEN]; |
| 2143 | |
| 2144 | memcpy(bssid, ifmgd->associated->cbss.bssid, ETH_ALEN); |
Johannes Berg | b291ba1 | 2009-07-10 15:29:03 +0200 | [diff] [blame] | 2145 | if (time_is_after_jiffies(ifmgd->probe_timeout)) |
| 2146 | run_again(ifmgd, ifmgd->probe_timeout); |
Maxim Levitsky | a43abf2 | 2009-07-31 18:54:12 +0300 | [diff] [blame] | 2147 | |
| 2148 | else if (ifmgd->probe_send_count < IEEE80211_MAX_PROBE_TRIES) { |
| 2149 | #ifdef CONFIG_MAC80211_VERBOSE_DEBUG |
| 2150 | printk(KERN_DEBUG "No probe response from AP %pM" |
| 2151 | " after %dms, try %d\n", bssid, |
| 2152 | (1000 * IEEE80211_PROBE_WAIT)/HZ, |
| 2153 | ifmgd->probe_send_count); |
| 2154 | #endif |
| 2155 | ieee80211_mgd_probe_ap_send(sdata); |
| 2156 | } else { |
Johannes Berg | b291ba1 | 2009-07-10 15:29:03 +0200 | [diff] [blame] | 2157 | /* |
| 2158 | * We actually lost the connection ... or did we? |
| 2159 | * Let's make sure! |
| 2160 | */ |
| 2161 | ifmgd->flags &= ~(IEEE80211_STA_CONNECTION_POLL | |
| 2162 | IEEE80211_STA_BEACON_POLL); |
Johannes Berg | b291ba1 | 2009-07-10 15:29:03 +0200 | [diff] [blame] | 2163 | printk(KERN_DEBUG "No probe response from AP %pM" |
| 2164 | " after %dms, disconnecting.\n", |
| 2165 | bssid, (1000 * IEEE80211_PROBE_WAIT)/HZ); |
Johannes Berg | e21546a | 2009-08-06 20:41:32 +0200 | [diff] [blame] | 2166 | ieee80211_set_disassoc(sdata, true); |
Johannes Berg | b291ba1 | 2009-07-10 15:29:03 +0200 | [diff] [blame] | 2167 | mutex_unlock(&ifmgd->mtx); |
| 2168 | /* |
| 2169 | * must be outside lock due to cfg80211, |
| 2170 | * but that's not a problem. |
| 2171 | */ |
| 2172 | ieee80211_send_deauth_disassoc(sdata, bssid, |
| 2173 | IEEE80211_STYPE_DEAUTH, |
| 2174 | WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY, |
| 2175 | NULL); |
| 2176 | mutex_lock(&ifmgd->mtx); |
| 2177 | } |
| 2178 | } |
| 2179 | |
Johannes Berg | 60f8b39 | 2008-09-08 17:44:22 +0200 | [diff] [blame] | 2180 | |
Johannes Berg | 5cff20e | 2009-04-29 12:26:17 +0200 | [diff] [blame] | 2181 | ieee80211_recalc_idle(local); |
| 2182 | |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 2183 | list_for_each_entry_safe(wk, tmp, &ifmgd->work_list, list) { |
Johannes Berg | ca386f3 | 2009-07-10 02:39:48 +0200 | [diff] [blame] | 2184 | if (time_is_after_jiffies(wk->timeout)) { |
| 2185 | /* |
| 2186 | * This work item isn't supposed to be worked on |
| 2187 | * right now, but take care to adjust the timer |
| 2188 | * properly. |
| 2189 | */ |
| 2190 | run_again(ifmgd, wk->timeout); |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 2191 | continue; |
Johannes Berg | ca386f3 | 2009-07-10 02:39:48 +0200 | [diff] [blame] | 2192 | } |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 2193 | |
| 2194 | switch (wk->state) { |
| 2195 | default: |
| 2196 | WARN_ON(1); |
| 2197 | /* fall through */ |
| 2198 | case IEEE80211_MGD_STATE_IDLE: |
| 2199 | /* nothing */ |
| 2200 | rma = RX_MGMT_NONE; |
| 2201 | break; |
| 2202 | case IEEE80211_MGD_STATE_PROBE: |
| 2203 | rma = ieee80211_direct_probe(sdata, wk); |
| 2204 | break; |
| 2205 | case IEEE80211_MGD_STATE_AUTH: |
| 2206 | rma = ieee80211_authenticate(sdata, wk); |
| 2207 | break; |
| 2208 | case IEEE80211_MGD_STATE_ASSOC: |
| 2209 | rma = ieee80211_associate(sdata, wk); |
| 2210 | break; |
| 2211 | } |
| 2212 | |
| 2213 | switch (rma) { |
| 2214 | case RX_MGMT_NONE: |
| 2215 | /* no action required */ |
| 2216 | break; |
| 2217 | case RX_MGMT_CFG80211_AUTH_TO: |
| 2218 | case RX_MGMT_CFG80211_ASSOC_TO: |
| 2219 | list_del(&wk->list); |
| 2220 | list_add(&wk->list, &free_work); |
| 2221 | wk->tries = rma; /* small abuse but only local */ |
| 2222 | break; |
| 2223 | default: |
| 2224 | WARN(1, "unexpected: %d", rma); |
| 2225 | } |
| 2226 | } |
| 2227 | |
Jouni Malinen | 5bf6fcc | 2009-08-25 17:44:28 +0300 | [diff] [blame] | 2228 | list_for_each_entry(wk, &ifmgd->work_list, list) { |
| 2229 | if (wk->state != IEEE80211_MGD_STATE_IDLE) { |
| 2230 | anybusy = true; |
| 2231 | break; |
| 2232 | } |
| 2233 | } |
| 2234 | if (!anybusy && |
| 2235 | test_and_clear_bit(IEEE80211_STA_REQ_SCAN, &ifmgd->request)) |
| 2236 | ieee80211_queue_delayed_work(&local->hw, |
| 2237 | &local->scan_work, |
| 2238 | round_jiffies_relative(0)); |
| 2239 | |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 2240 | mutex_unlock(&ifmgd->mtx); |
| 2241 | |
| 2242 | list_for_each_entry_safe(wk, tmp, &free_work, list) { |
| 2243 | switch (wk->tries) { |
| 2244 | case RX_MGMT_CFG80211_AUTH_TO: |
| 2245 | cfg80211_send_auth_timeout(sdata->dev, |
Johannes Berg | cb0b4be | 2009-07-07 03:56:07 +0200 | [diff] [blame] | 2246 | wk->bss->cbss.bssid); |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 2247 | break; |
| 2248 | case RX_MGMT_CFG80211_ASSOC_TO: |
Johannes Berg | cb0b4be | 2009-07-07 03:56:07 +0200 | [diff] [blame] | 2249 | cfg80211_send_assoc_timeout(sdata->dev, |
| 2250 | wk->bss->cbss.bssid); |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 2251 | break; |
| 2252 | default: |
| 2253 | WARN(1, "unexpected: %d", wk->tries); |
| 2254 | } |
| 2255 | |
| 2256 | list_del(&wk->list); |
| 2257 | kfree(wk); |
| 2258 | } |
| 2259 | |
| 2260 | ieee80211_recalc_idle(local); |
Johannes Berg | 60f8b39 | 2008-09-08 17:44:22 +0200 | [diff] [blame] | 2261 | } |
Johannes Berg | 0a51b27 | 2008-09-08 17:44:25 +0200 | [diff] [blame] | 2262 | |
Johannes Berg | b291ba1 | 2009-07-10 15:29:03 +0200 | [diff] [blame] | 2263 | static void ieee80211_sta_bcn_mon_timer(unsigned long data) |
| 2264 | { |
| 2265 | struct ieee80211_sub_if_data *sdata = |
| 2266 | (struct ieee80211_sub_if_data *) data; |
| 2267 | struct ieee80211_local *local = sdata->local; |
| 2268 | |
| 2269 | if (local->quiescing) |
| 2270 | return; |
| 2271 | |
Luis R. Rodriguez | 42935ec | 2009-07-29 20:08:07 -0400 | [diff] [blame] | 2272 | ieee80211_queue_work(&sdata->local->hw, &sdata->u.mgd.beacon_loss_work); |
Johannes Berg | b291ba1 | 2009-07-10 15:29:03 +0200 | [diff] [blame] | 2273 | } |
| 2274 | |
| 2275 | static void ieee80211_sta_conn_mon_timer(unsigned long data) |
| 2276 | { |
| 2277 | struct ieee80211_sub_if_data *sdata = |
| 2278 | (struct ieee80211_sub_if_data *) data; |
| 2279 | struct ieee80211_if_managed *ifmgd = &sdata->u.mgd; |
| 2280 | struct ieee80211_local *local = sdata->local; |
| 2281 | |
| 2282 | if (local->quiescing) |
| 2283 | return; |
| 2284 | |
Luis R. Rodriguez | 42935ec | 2009-07-29 20:08:07 -0400 | [diff] [blame] | 2285 | ieee80211_queue_work(&local->hw, &ifmgd->monitor_work); |
Johannes Berg | b291ba1 | 2009-07-10 15:29:03 +0200 | [diff] [blame] | 2286 | } |
| 2287 | |
| 2288 | static void ieee80211_sta_monitor_work(struct work_struct *work) |
| 2289 | { |
| 2290 | struct ieee80211_sub_if_data *sdata = |
| 2291 | container_of(work, struct ieee80211_sub_if_data, |
| 2292 | u.mgd.monitor_work); |
| 2293 | |
| 2294 | ieee80211_mgd_probe_ap(sdata, false); |
| 2295 | } |
| 2296 | |
Johannes Berg | a1678f8 | 2008-09-11 00:01:47 +0200 | [diff] [blame] | 2297 | static void ieee80211_restart_sta_timer(struct ieee80211_sub_if_data *sdata) |
| 2298 | { |
Kalle Valo | ad93568 | 2009-04-19 08:47:19 +0300 | [diff] [blame] | 2299 | if (sdata->vif.type == NL80211_IFTYPE_STATION) { |
Johannes Berg | b291ba1 | 2009-07-10 15:29:03 +0200 | [diff] [blame] | 2300 | sdata->u.mgd.flags &= ~(IEEE80211_STA_BEACON_POLL | |
| 2301 | IEEE80211_STA_CONNECTION_POLL); |
Kalle Valo | ad93568 | 2009-04-19 08:47:19 +0300 | [diff] [blame] | 2302 | |
Johannes Berg | b291ba1 | 2009-07-10 15:29:03 +0200 | [diff] [blame] | 2303 | /* let's probe the connection once */ |
Luis R. Rodriguez | 42935ec | 2009-07-29 20:08:07 -0400 | [diff] [blame] | 2304 | ieee80211_queue_work(&sdata->local->hw, |
Johannes Berg | b291ba1 | 2009-07-10 15:29:03 +0200 | [diff] [blame] | 2305 | &sdata->u.mgd.monitor_work); |
| 2306 | /* and do all the other regular work too */ |
Luis R. Rodriguez | 42935ec | 2009-07-29 20:08:07 -0400 | [diff] [blame] | 2307 | ieee80211_queue_work(&sdata->local->hw, |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 2308 | &sdata->u.mgd.work); |
Kalle Valo | ad93568 | 2009-04-19 08:47:19 +0300 | [diff] [blame] | 2309 | } |
Johannes Berg | a1678f8 | 2008-09-11 00:01:47 +0200 | [diff] [blame] | 2310 | } |
| 2311 | |
Johannes Berg | 5bb644a | 2009-05-17 11:40:42 +0200 | [diff] [blame] | 2312 | #ifdef CONFIG_PM |
| 2313 | void ieee80211_sta_quiesce(struct ieee80211_sub_if_data *sdata) |
| 2314 | { |
| 2315 | struct ieee80211_if_managed *ifmgd = &sdata->u.mgd; |
| 2316 | |
| 2317 | /* |
| 2318 | * we need to use atomic bitops for the running bits |
| 2319 | * only because both timers might fire at the same |
| 2320 | * time -- the code here is properly synchronised. |
| 2321 | */ |
| 2322 | |
| 2323 | cancel_work_sync(&ifmgd->work); |
| 2324 | cancel_work_sync(&ifmgd->beacon_loss_work); |
| 2325 | if (del_timer_sync(&ifmgd->timer)) |
| 2326 | set_bit(TMR_RUNNING_TIMER, &ifmgd->timers_running); |
| 2327 | |
| 2328 | cancel_work_sync(&ifmgd->chswitch_work); |
| 2329 | if (del_timer_sync(&ifmgd->chswitch_timer)) |
| 2330 | set_bit(TMR_RUNNING_CHANSW, &ifmgd->timers_running); |
Johannes Berg | b291ba1 | 2009-07-10 15:29:03 +0200 | [diff] [blame] | 2331 | |
| 2332 | cancel_work_sync(&ifmgd->monitor_work); |
| 2333 | /* these will just be re-established on connection */ |
| 2334 | del_timer_sync(&ifmgd->conn_mon_timer); |
| 2335 | del_timer_sync(&ifmgd->bcn_mon_timer); |
Johannes Berg | 5bb644a | 2009-05-17 11:40:42 +0200 | [diff] [blame] | 2336 | } |
| 2337 | |
| 2338 | void ieee80211_sta_restart(struct ieee80211_sub_if_data *sdata) |
| 2339 | { |
| 2340 | struct ieee80211_if_managed *ifmgd = &sdata->u.mgd; |
| 2341 | |
| 2342 | if (test_and_clear_bit(TMR_RUNNING_TIMER, &ifmgd->timers_running)) |
| 2343 | add_timer(&ifmgd->timer); |
| 2344 | if (test_and_clear_bit(TMR_RUNNING_CHANSW, &ifmgd->timers_running)) |
| 2345 | add_timer(&ifmgd->chswitch_timer); |
| 2346 | } |
| 2347 | #endif |
| 2348 | |
Johannes Berg | 9c6bd79 | 2008-09-11 00:01:52 +0200 | [diff] [blame] | 2349 | /* interface setup */ |
| 2350 | void ieee80211_sta_setup_sdata(struct ieee80211_sub_if_data *sdata) |
| 2351 | { |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 2352 | struct ieee80211_if_managed *ifmgd; |
Johannes Berg | 9c6bd79 | 2008-09-11 00:01:52 +0200 | [diff] [blame] | 2353 | |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 2354 | ifmgd = &sdata->u.mgd; |
| 2355 | INIT_WORK(&ifmgd->work, ieee80211_sta_work); |
Johannes Berg | b291ba1 | 2009-07-10 15:29:03 +0200 | [diff] [blame] | 2356 | INIT_WORK(&ifmgd->monitor_work, ieee80211_sta_monitor_work); |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 2357 | INIT_WORK(&ifmgd->chswitch_work, ieee80211_chswitch_work); |
Kalle Valo | 04de838 | 2009-03-22 21:57:35 +0200 | [diff] [blame] | 2358 | INIT_WORK(&ifmgd->beacon_loss_work, ieee80211_beacon_loss_work); |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 2359 | setup_timer(&ifmgd->timer, ieee80211_sta_timer, |
Johannes Berg | 9c6bd79 | 2008-09-11 00:01:52 +0200 | [diff] [blame] | 2360 | (unsigned long) sdata); |
Johannes Berg | b291ba1 | 2009-07-10 15:29:03 +0200 | [diff] [blame] | 2361 | setup_timer(&ifmgd->bcn_mon_timer, ieee80211_sta_bcn_mon_timer, |
| 2362 | (unsigned long) sdata); |
| 2363 | setup_timer(&ifmgd->conn_mon_timer, ieee80211_sta_conn_mon_timer, |
| 2364 | (unsigned long) sdata); |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 2365 | setup_timer(&ifmgd->chswitch_timer, ieee80211_chswitch_timer, |
Sujith | c481ec9 | 2009-01-06 09:28:37 +0530 | [diff] [blame] | 2366 | (unsigned long) sdata); |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 2367 | skb_queue_head_init(&ifmgd->skb_queue); |
Johannes Berg | 9c6bd79 | 2008-09-11 00:01:52 +0200 | [diff] [blame] | 2368 | |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 2369 | INIT_LIST_HEAD(&ifmgd->work_list); |
| 2370 | |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 2371 | ifmgd->capab = WLAN_CAPABILITY_ESS; |
Johannes Berg | ab1faea | 2009-07-01 21:41:17 +0200 | [diff] [blame] | 2372 | ifmgd->flags = 0; |
Johannes Berg | 176be72 | 2009-03-12 23:49:28 +0100 | [diff] [blame] | 2373 | if (sdata->local->hw.queues >= 4) |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 2374 | ifmgd->flags |= IEEE80211_STA_WMM_ENABLED; |
Johannes Berg | bbbdff9 | 2009-04-16 13:27:42 +0200 | [diff] [blame] | 2375 | |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 2376 | mutex_init(&ifmgd->mtx); |
Johannes Berg | 0f78231 | 2009-12-01 13:37:02 +0100 | [diff] [blame] | 2377 | |
| 2378 | if (sdata->local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_SMPS) |
| 2379 | ifmgd->req_smps = IEEE80211_SMPS_AUTOMATIC; |
| 2380 | else |
| 2381 | ifmgd->req_smps = IEEE80211_SMPS_OFF; |
Johannes Berg | 9c6bd79 | 2008-09-11 00:01:52 +0200 | [diff] [blame] | 2382 | } |
| 2383 | |
| 2384 | /* scan finished notification */ |
Johannes Berg | 0a51b27 | 2008-09-08 17:44:25 +0200 | [diff] [blame] | 2385 | void ieee80211_mlme_notify_scan_completed(struct ieee80211_local *local) |
| 2386 | { |
| 2387 | struct ieee80211_sub_if_data *sdata = local->scan_sdata; |
Johannes Berg | a1678f8 | 2008-09-11 00:01:47 +0200 | [diff] [blame] | 2388 | |
| 2389 | /* Restart STA timers */ |
| 2390 | rcu_read_lock(); |
| 2391 | list_for_each_entry_rcu(sdata, &local->interfaces, list) |
| 2392 | ieee80211_restart_sta_timer(sdata); |
| 2393 | rcu_read_unlock(); |
Johannes Berg | 0a51b27 | 2008-09-08 17:44:25 +0200 | [diff] [blame] | 2394 | } |
Johannes Berg | 10f644a | 2009-04-16 13:17:25 +0200 | [diff] [blame] | 2395 | |
| 2396 | int ieee80211_max_network_latency(struct notifier_block *nb, |
| 2397 | unsigned long data, void *dummy) |
| 2398 | { |
| 2399 | s32 latency_usec = (s32) data; |
| 2400 | struct ieee80211_local *local = |
| 2401 | container_of(nb, struct ieee80211_local, |
| 2402 | network_latency_notifier); |
| 2403 | |
| 2404 | mutex_lock(&local->iflist_mtx); |
| 2405 | ieee80211_recalc_ps(local, latency_usec); |
| 2406 | mutex_unlock(&local->iflist_mtx); |
| 2407 | |
| 2408 | return 0; |
| 2409 | } |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 2410 | |
| 2411 | /* config hooks */ |
| 2412 | int ieee80211_mgd_auth(struct ieee80211_sub_if_data *sdata, |
| 2413 | struct cfg80211_auth_request *req) |
| 2414 | { |
| 2415 | struct ieee80211_if_managed *ifmgd = &sdata->u.mgd; |
| 2416 | const u8 *ssid; |
| 2417 | struct ieee80211_mgd_work *wk; |
| 2418 | u16 auth_alg; |
| 2419 | |
| 2420 | switch (req->auth_type) { |
| 2421 | case NL80211_AUTHTYPE_OPEN_SYSTEM: |
| 2422 | auth_alg = WLAN_AUTH_OPEN; |
| 2423 | break; |
| 2424 | case NL80211_AUTHTYPE_SHARED_KEY: |
| 2425 | auth_alg = WLAN_AUTH_SHARED_KEY; |
| 2426 | break; |
| 2427 | case NL80211_AUTHTYPE_FT: |
| 2428 | auth_alg = WLAN_AUTH_FT; |
| 2429 | break; |
| 2430 | case NL80211_AUTHTYPE_NETWORK_EAP: |
| 2431 | auth_alg = WLAN_AUTH_LEAP; |
| 2432 | break; |
| 2433 | default: |
| 2434 | return -EOPNOTSUPP; |
| 2435 | } |
| 2436 | |
| 2437 | wk = kzalloc(sizeof(*wk) + req->ie_len, GFP_KERNEL); |
| 2438 | if (!wk) |
| 2439 | return -ENOMEM; |
| 2440 | |
| 2441 | wk->bss = (void *)req->bss; |
| 2442 | |
| 2443 | if (req->ie && req->ie_len) { |
| 2444 | memcpy(wk->ie, req->ie, req->ie_len); |
| 2445 | wk->ie_len = req->ie_len; |
| 2446 | } |
| 2447 | |
Johannes Berg | fffd093 | 2009-07-08 14:22:54 +0200 | [diff] [blame] | 2448 | if (req->key && req->key_len) { |
| 2449 | wk->key_len = req->key_len; |
| 2450 | wk->key_idx = req->key_idx; |
| 2451 | memcpy(wk->key, req->key, req->key_len); |
| 2452 | } |
| 2453 | |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 2454 | ssid = ieee80211_bss_get_ie(req->bss, WLAN_EID_SSID); |
| 2455 | memcpy(wk->ssid, ssid + 2, ssid[1]); |
| 2456 | wk->ssid_len = ssid[1]; |
| 2457 | |
| 2458 | wk->state = IEEE80211_MGD_STATE_PROBE; |
| 2459 | wk->auth_alg = auth_alg; |
Johannes Berg | 4853184 | 2009-07-23 16:50:16 +0200 | [diff] [blame] | 2460 | wk->timeout = jiffies; /* run right away */ |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 2461 | |
| 2462 | /* |
| 2463 | * XXX: if still associated need to tell AP that we're going |
| 2464 | * to sleep and then change channel etc. |
| 2465 | */ |
| 2466 | sdata->local->oper_channel = req->bss->channel; |
| 2467 | ieee80211_hw_config(sdata->local, 0); |
| 2468 | |
| 2469 | mutex_lock(&ifmgd->mtx); |
| 2470 | list_add(&wk->list, &sdata->u.mgd.work_list); |
| 2471 | mutex_unlock(&ifmgd->mtx); |
| 2472 | |
Luis R. Rodriguez | 42935ec | 2009-07-29 20:08:07 -0400 | [diff] [blame] | 2473 | ieee80211_queue_work(&sdata->local->hw, &sdata->u.mgd.work); |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 2474 | return 0; |
| 2475 | } |
| 2476 | |
| 2477 | int ieee80211_mgd_assoc(struct ieee80211_sub_if_data *sdata, |
| 2478 | struct cfg80211_assoc_request *req) |
| 2479 | { |
| 2480 | struct ieee80211_if_managed *ifmgd = &sdata->u.mgd; |
| 2481 | struct ieee80211_mgd_work *wk, *found = NULL; |
| 2482 | int i, err; |
| 2483 | |
| 2484 | mutex_lock(&ifmgd->mtx); |
| 2485 | |
| 2486 | list_for_each_entry(wk, &ifmgd->work_list, list) { |
| 2487 | if (&wk->bss->cbss == req->bss && |
| 2488 | wk->state == IEEE80211_MGD_STATE_IDLE) { |
| 2489 | found = wk; |
| 2490 | break; |
| 2491 | } |
| 2492 | } |
| 2493 | |
| 2494 | if (!found) { |
| 2495 | err = -ENOLINK; |
| 2496 | goto out; |
| 2497 | } |
| 2498 | |
| 2499 | list_del(&found->list); |
| 2500 | |
| 2501 | wk = krealloc(found, sizeof(*wk) + req->ie_len, GFP_KERNEL); |
| 2502 | if (!wk) { |
| 2503 | list_add(&found->list, &ifmgd->work_list); |
| 2504 | err = -ENOMEM; |
| 2505 | goto out; |
| 2506 | } |
| 2507 | |
| 2508 | list_add(&wk->list, &ifmgd->work_list); |
| 2509 | |
| 2510 | ifmgd->flags &= ~IEEE80211_STA_DISABLE_11N; |
| 2511 | |
| 2512 | for (i = 0; i < req->crypto.n_ciphers_pairwise; i++) |
| 2513 | if (req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_WEP40 || |
| 2514 | req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_TKIP || |
| 2515 | req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_WEP104) |
| 2516 | ifmgd->flags |= IEEE80211_STA_DISABLE_11N; |
| 2517 | |
| 2518 | sdata->local->oper_channel = req->bss->channel; |
| 2519 | ieee80211_hw_config(sdata->local, 0); |
| 2520 | |
| 2521 | if (req->ie && req->ie_len) { |
| 2522 | memcpy(wk->ie, req->ie, req->ie_len); |
| 2523 | wk->ie_len = req->ie_len; |
| 2524 | } else |
| 2525 | wk->ie_len = 0; |
| 2526 | |
| 2527 | if (req->prev_bssid) |
| 2528 | memcpy(wk->prev_bssid, req->prev_bssid, ETH_ALEN); |
| 2529 | |
| 2530 | wk->state = IEEE80211_MGD_STATE_ASSOC; |
| 2531 | wk->tries = 0; |
Johannes Berg | 4853184 | 2009-07-23 16:50:16 +0200 | [diff] [blame] | 2532 | wk->timeout = jiffies; /* run right away */ |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 2533 | |
| 2534 | if (req->use_mfp) { |
| 2535 | ifmgd->mfp = IEEE80211_MFP_REQUIRED; |
| 2536 | ifmgd->flags |= IEEE80211_STA_MFP_ENABLED; |
| 2537 | } else { |
| 2538 | ifmgd->mfp = IEEE80211_MFP_DISABLED; |
| 2539 | ifmgd->flags &= ~IEEE80211_STA_MFP_ENABLED; |
| 2540 | } |
| 2541 | |
| 2542 | if (req->crypto.control_port) |
| 2543 | ifmgd->flags |= IEEE80211_STA_CONTROL_PORT; |
| 2544 | else |
| 2545 | ifmgd->flags &= ~IEEE80211_STA_CONTROL_PORT; |
| 2546 | |
Luis R. Rodriguez | 42935ec | 2009-07-29 20:08:07 -0400 | [diff] [blame] | 2547 | ieee80211_queue_work(&sdata->local->hw, &sdata->u.mgd.work); |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 2548 | |
| 2549 | err = 0; |
| 2550 | |
| 2551 | out: |
| 2552 | mutex_unlock(&ifmgd->mtx); |
| 2553 | return err; |
| 2554 | } |
| 2555 | |
| 2556 | int ieee80211_mgd_deauth(struct ieee80211_sub_if_data *sdata, |
Johannes Berg | 667503d | 2009-07-07 03:56:11 +0200 | [diff] [blame] | 2557 | struct cfg80211_deauth_request *req, |
| 2558 | void *cookie) |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 2559 | { |
| 2560 | struct ieee80211_if_managed *ifmgd = &sdata->u.mgd; |
| 2561 | struct ieee80211_mgd_work *wk; |
| 2562 | const u8 *bssid = NULL; |
Johannes Berg | a58ce43 | 2009-11-19 12:45:42 +0100 | [diff] [blame] | 2563 | bool not_auth_yet = false; |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 2564 | |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 2565 | mutex_lock(&ifmgd->mtx); |
| 2566 | |
| 2567 | if (ifmgd->associated && &ifmgd->associated->cbss == req->bss) { |
| 2568 | bssid = req->bss->bssid; |
Johannes Berg | e21546a | 2009-08-06 20:41:32 +0200 | [diff] [blame] | 2569 | ieee80211_set_disassoc(sdata, true); |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 2570 | } else list_for_each_entry(wk, &ifmgd->work_list, list) { |
| 2571 | if (&wk->bss->cbss == req->bss) { |
| 2572 | bssid = req->bss->bssid; |
Johannes Berg | a58ce43 | 2009-11-19 12:45:42 +0100 | [diff] [blame] | 2573 | if (wk->state == IEEE80211_MGD_STATE_PROBE) |
| 2574 | not_auth_yet = true; |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 2575 | list_del(&wk->list); |
| 2576 | kfree(wk); |
| 2577 | break; |
| 2578 | } |
| 2579 | } |
| 2580 | |
Johannes Berg | 8d8b261 | 2009-07-25 11:58:36 +0200 | [diff] [blame] | 2581 | /* |
Johannes Berg | a58ce43 | 2009-11-19 12:45:42 +0100 | [diff] [blame] | 2582 | * If somebody requests authentication and we haven't |
| 2583 | * sent out an auth frame yet there's no need to send |
| 2584 | * out a deauth frame either. If the state was PROBE, |
| 2585 | * then this is the case. If it's AUTH we have sent a |
| 2586 | * frame, and if it's IDLE we have completed the auth |
| 2587 | * process already. |
| 2588 | */ |
| 2589 | if (not_auth_yet) { |
| 2590 | mutex_unlock(&ifmgd->mtx); |
| 2591 | __cfg80211_auth_canceled(sdata->dev, bssid); |
| 2592 | return 0; |
| 2593 | } |
| 2594 | |
| 2595 | /* |
Johannes Berg | 8d8b261 | 2009-07-25 11:58:36 +0200 | [diff] [blame] | 2596 | * cfg80211 should catch this ... but it's racy since |
| 2597 | * we can receive a deauth frame, process it, hand it |
| 2598 | * to cfg80211 while that's in a locked section already |
| 2599 | * trying to tell us that the user wants to disconnect. |
| 2600 | */ |
| 2601 | if (!bssid) { |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 2602 | mutex_unlock(&ifmgd->mtx); |
| 2603 | return -ENOLINK; |
| 2604 | } |
| 2605 | |
| 2606 | mutex_unlock(&ifmgd->mtx); |
| 2607 | |
Johannes Berg | 0ff7161 | 2009-09-26 14:45:41 +0200 | [diff] [blame] | 2608 | printk(KERN_DEBUG "%s: deauthenticating from %pM by local choice (reason=%d)\n", |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 2609 | sdata->name, bssid, req->reason_code); |
Johannes Berg | 0ff7161 | 2009-09-26 14:45:41 +0200 | [diff] [blame] | 2610 | |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 2611 | ieee80211_send_deauth_disassoc(sdata, bssid, |
Johannes Berg | 667503d | 2009-07-07 03:56:11 +0200 | [diff] [blame] | 2612 | IEEE80211_STYPE_DEAUTH, req->reason_code, |
| 2613 | cookie); |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 2614 | |
| 2615 | return 0; |
| 2616 | } |
| 2617 | |
| 2618 | int ieee80211_mgd_disassoc(struct ieee80211_sub_if_data *sdata, |
Johannes Berg | 667503d | 2009-07-07 03:56:11 +0200 | [diff] [blame] | 2619 | struct cfg80211_disassoc_request *req, |
| 2620 | void *cookie) |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 2621 | { |
| 2622 | struct ieee80211_if_managed *ifmgd = &sdata->u.mgd; |
| 2623 | |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 2624 | mutex_lock(&ifmgd->mtx); |
| 2625 | |
Johannes Berg | 8d8b261 | 2009-07-25 11:58:36 +0200 | [diff] [blame] | 2626 | /* |
| 2627 | * cfg80211 should catch this ... but it's racy since |
| 2628 | * we can receive a disassoc frame, process it, hand it |
| 2629 | * to cfg80211 while that's in a locked section already |
| 2630 | * trying to tell us that the user wants to disconnect. |
| 2631 | */ |
| 2632 | if (&ifmgd->associated->cbss != req->bss) { |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 2633 | mutex_unlock(&ifmgd->mtx); |
| 2634 | return -ENOLINK; |
| 2635 | } |
| 2636 | |
Johannes Berg | 0ff7161 | 2009-09-26 14:45:41 +0200 | [diff] [blame] | 2637 | printk(KERN_DEBUG "%s: disassociating from %pM by local choice (reason=%d)\n", |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 2638 | sdata->name, req->bss->bssid, req->reason_code); |
Johannes Berg | 0ff7161 | 2009-09-26 14:45:41 +0200 | [diff] [blame] | 2639 | |
Johannes Berg | e21546a | 2009-08-06 20:41:32 +0200 | [diff] [blame] | 2640 | ieee80211_set_disassoc(sdata, false); |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 2641 | |
| 2642 | mutex_unlock(&ifmgd->mtx); |
| 2643 | |
| 2644 | ieee80211_send_deauth_disassoc(sdata, req->bss->bssid, |
Johannes Berg | 667503d | 2009-07-07 03:56:11 +0200 | [diff] [blame] | 2645 | IEEE80211_STYPE_DISASSOC, req->reason_code, |
| 2646 | cookie); |
Johannes Berg | 77fdaa1 | 2009-07-07 03:45:17 +0200 | [diff] [blame] | 2647 | return 0; |
| 2648 | } |