Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1 | /* |
| 2 | * BSS client mode implementation |
| 3 | * Copyright 2003, Jouni Malinen <jkmaline@cc.hut.fi> |
| 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> |
| 18 | #include <linux/wireless.h> |
| 19 | #include <linux/random.h> |
| 20 | #include <linux/etherdevice.h> |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 21 | #include <linux/rtnetlink.h> |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 22 | #include <net/iw_handler.h> |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 23 | #include <net/mac80211.h> |
Johannes Berg | 472dbc4 | 2008-09-11 00:01:49 +0200 | [diff] [blame] | 24 | #include <asm/unaligned.h> |
Johannes Berg | 60f8b39 | 2008-09-08 17:44:22 +0200 | [diff] [blame] | 25 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 26 | #include "ieee80211_i.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 | |
Ron Rindjunsky | 6042a3e | 2008-08-08 01:50:46 +0300 | [diff] [blame] | 30 | #define IEEE80211_ASSOC_SCANS_MAX_TRIES 2 |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 31 | #define IEEE80211_AUTH_TIMEOUT (HZ / 5) |
| 32 | #define IEEE80211_AUTH_MAX_TRIES 3 |
| 33 | #define IEEE80211_ASSOC_TIMEOUT (HZ / 5) |
| 34 | #define IEEE80211_ASSOC_MAX_TRIES 3 |
| 35 | #define IEEE80211_MONITORING_INTERVAL (2 * HZ) |
| 36 | #define IEEE80211_PROBE_INTERVAL (60 * HZ) |
| 37 | #define IEEE80211_RETRY_AUTH_INTERVAL (1 * HZ) |
| 38 | #define IEEE80211_SCAN_INTERVAL (2 * HZ) |
| 39 | #define IEEE80211_SCAN_INTERVAL_SLOW (15 * HZ) |
Dan Williams | 872ba53 | 2008-06-04 13:59:34 -0400 | [diff] [blame] | 40 | #define IEEE80211_IBSS_JOIN_TIMEOUT (7 * HZ) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 41 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 42 | #define IEEE80211_IBSS_MERGE_INTERVAL (30 * HZ) |
| 43 | #define IEEE80211_IBSS_INACTIVITY_LIMIT (60 * HZ) |
| 44 | |
| 45 | #define IEEE80211_IBSS_MAX_STA_ENTRIES 128 |
| 46 | |
| 47 | |
Johannes Berg | 5484e23 | 2008-09-08 17:44:27 +0200 | [diff] [blame] | 48 | /* utils */ |
| 49 | static int ecw2cw(int ecw) |
Johannes Berg | 60f8b39 | 2008-09-08 17:44:22 +0200 | [diff] [blame] | 50 | { |
Johannes Berg | 5484e23 | 2008-09-08 17:44:27 +0200 | [diff] [blame] | 51 | return (1 << ecw) - 1; |
Johannes Berg | 60f8b39 | 2008-09-08 17:44:22 +0200 | [diff] [blame] | 52 | } |
| 53 | |
Johannes Berg | c2b1345 | 2008-09-11 00:01:55 +0200 | [diff] [blame] | 54 | static u8 *ieee80211_bss_get_ie(struct ieee80211_bss *bss, u8 ie) |
Jouni Malinen | 43ac2ca | 2008-08-15 22:21:27 +0300 | [diff] [blame] | 55 | { |
| 56 | u8 *end, *pos; |
| 57 | |
| 58 | pos = bss->ies; |
| 59 | if (pos == NULL) |
| 60 | return NULL; |
| 61 | end = pos + bss->ies_len; |
| 62 | |
| 63 | while (pos + 1 < end) { |
| 64 | if (pos + 2 + pos[1] > end) |
| 65 | break; |
| 66 | if (pos[0] == ie) |
| 67 | return pos; |
| 68 | pos += 2 + pos[1]; |
| 69 | } |
| 70 | |
| 71 | return NULL; |
| 72 | } |
| 73 | |
Johannes Berg | c2b1345 | 2008-09-11 00:01:55 +0200 | [diff] [blame] | 74 | static int ieee80211_compatible_rates(struct ieee80211_bss *bss, |
Johannes Berg | 9ac19a9 | 2008-09-09 10:57:09 +0200 | [diff] [blame] | 75 | struct ieee80211_supported_band *sband, |
| 76 | u64 *rates) |
| 77 | { |
| 78 | int i, j, count; |
| 79 | *rates = 0; |
| 80 | count = 0; |
| 81 | for (i = 0; i < bss->supp_rates_len; i++) { |
| 82 | int rate = (bss->supp_rates[i] & 0x7F) * 5; |
| 83 | |
| 84 | for (j = 0; j < sband->n_bitrates; j++) |
| 85 | if (sband->bitrates[j].bitrate == rate) { |
| 86 | *rates |= BIT(j); |
| 87 | count++; |
| 88 | break; |
| 89 | } |
| 90 | } |
| 91 | |
| 92 | return count; |
| 93 | } |
| 94 | |
Johannes Berg | 9c6bd79 | 2008-09-11 00:01:52 +0200 | [diff] [blame] | 95 | /* also used by mesh code */ |
| 96 | u64 ieee80211_sta_get_rates(struct ieee80211_local *local, |
| 97 | struct ieee802_11_elems *elems, |
| 98 | enum ieee80211_band band) |
Johannes Berg | 60f8b39 | 2008-09-08 17:44:22 +0200 | [diff] [blame] | 99 | { |
Johannes Berg | 9c6bd79 | 2008-09-11 00:01:52 +0200 | [diff] [blame] | 100 | struct ieee80211_supported_band *sband; |
| 101 | struct ieee80211_rate *bitrates; |
| 102 | size_t num_rates; |
| 103 | u64 supp_rates; |
| 104 | int i, j; |
| 105 | sband = local->hw.wiphy->bands[band]; |
Johannes Berg | 60f8b39 | 2008-09-08 17:44:22 +0200 | [diff] [blame] | 106 | |
Johannes Berg | 9c6bd79 | 2008-09-11 00:01:52 +0200 | [diff] [blame] | 107 | if (!sband) { |
| 108 | WARN_ON(1); |
| 109 | sband = local->hw.wiphy->bands[local->hw.conf.channel->band]; |
Johannes Berg | 60f8b39 | 2008-09-08 17:44:22 +0200 | [diff] [blame] | 110 | } |
Johannes Berg | 60f8b39 | 2008-09-08 17:44:22 +0200 | [diff] [blame] | 111 | |
Johannes Berg | 9c6bd79 | 2008-09-11 00:01:52 +0200 | [diff] [blame] | 112 | bitrates = sband->bitrates; |
| 113 | num_rates = sband->n_bitrates; |
| 114 | supp_rates = 0; |
| 115 | for (i = 0; i < elems->supp_rates_len + |
| 116 | elems->ext_supp_rates_len; i++) { |
| 117 | u8 rate = 0; |
| 118 | int own_rate; |
| 119 | if (i < elems->supp_rates_len) |
| 120 | rate = elems->supp_rates[i]; |
| 121 | else if (elems->ext_supp_rates) |
| 122 | rate = elems->ext_supp_rates |
| 123 | [i - elems->supp_rates_len]; |
| 124 | own_rate = 5 * (rate & 0x7f); |
| 125 | for (j = 0; j < num_rates; j++) |
| 126 | if (bitrates[j].bitrate == own_rate) |
| 127 | supp_rates |= BIT(j); |
| 128 | } |
| 129 | return supp_rates; |
Johannes Berg | 60f8b39 | 2008-09-08 17:44:22 +0200 | [diff] [blame] | 130 | } |
| 131 | |
Johannes Berg | 9c6bd79 | 2008-09-11 00:01:52 +0200 | [diff] [blame] | 132 | /* frame sending functions */ |
| 133 | |
| 134 | /* also used by scanning code */ |
Johannes Berg | 0a51b27 | 2008-09-08 17:44:25 +0200 | [diff] [blame] | 135 | void ieee80211_send_probe_req(struct ieee80211_sub_if_data *sdata, u8 *dst, |
| 136 | u8 *ssid, size_t ssid_len) |
Johannes Berg | 60f8b39 | 2008-09-08 17:44:22 +0200 | [diff] [blame] | 137 | { |
| 138 | struct ieee80211_local *local = sdata->local; |
| 139 | struct ieee80211_supported_band *sband; |
| 140 | struct sk_buff *skb; |
| 141 | struct ieee80211_mgmt *mgmt; |
| 142 | u8 *pos, *supp_rates, *esupp_rates = NULL; |
| 143 | int i; |
| 144 | |
| 145 | skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*mgmt) + 200); |
| 146 | if (!skb) { |
| 147 | printk(KERN_DEBUG "%s: failed to allocate buffer for probe " |
| 148 | "request\n", sdata->dev->name); |
| 149 | return; |
| 150 | } |
| 151 | skb_reserve(skb, local->hw.extra_tx_headroom); |
| 152 | |
| 153 | mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24); |
| 154 | memset(mgmt, 0, 24); |
| 155 | mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT | |
| 156 | IEEE80211_STYPE_PROBE_REQ); |
| 157 | memcpy(mgmt->sa, sdata->dev->dev_addr, ETH_ALEN); |
| 158 | if (dst) { |
| 159 | memcpy(mgmt->da, dst, ETH_ALEN); |
| 160 | memcpy(mgmt->bssid, dst, ETH_ALEN); |
| 161 | } else { |
| 162 | memset(mgmt->da, 0xff, ETH_ALEN); |
| 163 | memset(mgmt->bssid, 0xff, ETH_ALEN); |
| 164 | } |
| 165 | pos = skb_put(skb, 2 + ssid_len); |
| 166 | *pos++ = WLAN_EID_SSID; |
| 167 | *pos++ = ssid_len; |
| 168 | memcpy(pos, ssid, ssid_len); |
| 169 | |
| 170 | supp_rates = skb_put(skb, 2); |
| 171 | supp_rates[0] = WLAN_EID_SUPP_RATES; |
| 172 | supp_rates[1] = 0; |
| 173 | sband = local->hw.wiphy->bands[local->hw.conf.channel->band]; |
| 174 | |
| 175 | for (i = 0; i < sband->n_bitrates; i++) { |
| 176 | struct ieee80211_rate *rate = &sband->bitrates[i]; |
| 177 | if (esupp_rates) { |
| 178 | pos = skb_put(skb, 1); |
| 179 | esupp_rates[1]++; |
| 180 | } else if (supp_rates[1] == 8) { |
| 181 | esupp_rates = skb_put(skb, 3); |
| 182 | esupp_rates[0] = WLAN_EID_EXT_SUPP_RATES; |
| 183 | esupp_rates[1] = 1; |
| 184 | pos = &esupp_rates[2]; |
| 185 | } else { |
| 186 | pos = skb_put(skb, 1); |
| 187 | supp_rates[1]++; |
| 188 | } |
| 189 | *pos = rate->bitrate / 5; |
| 190 | } |
| 191 | |
Johannes Berg | e50db65 | 2008-09-09 15:07:09 +0200 | [diff] [blame] | 192 | ieee80211_tx_skb(sdata, skb, 0); |
Johannes Berg | 60f8b39 | 2008-09-08 17:44:22 +0200 | [diff] [blame] | 193 | } |
| 194 | |
Johannes Berg | 9c6bd79 | 2008-09-11 00:01:52 +0200 | [diff] [blame] | 195 | static void ieee80211_send_auth(struct ieee80211_sub_if_data *sdata, |
| 196 | struct ieee80211_if_sta *ifsta, |
| 197 | int transaction, u8 *extra, size_t extra_len, |
| 198 | int encrypt) |
| 199 | { |
| 200 | struct ieee80211_local *local = sdata->local; |
| 201 | struct sk_buff *skb; |
| 202 | struct ieee80211_mgmt *mgmt; |
| 203 | |
| 204 | skb = dev_alloc_skb(local->hw.extra_tx_headroom + |
| 205 | sizeof(*mgmt) + 6 + extra_len); |
| 206 | if (!skb) { |
| 207 | printk(KERN_DEBUG "%s: failed to allocate buffer for auth " |
| 208 | "frame\n", sdata->dev->name); |
| 209 | return; |
| 210 | } |
| 211 | skb_reserve(skb, local->hw.extra_tx_headroom); |
| 212 | |
| 213 | mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24 + 6); |
| 214 | memset(mgmt, 0, 24 + 6); |
| 215 | mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT | |
| 216 | IEEE80211_STYPE_AUTH); |
| 217 | if (encrypt) |
| 218 | mgmt->frame_control |= cpu_to_le16(IEEE80211_FCTL_PROTECTED); |
| 219 | memcpy(mgmt->da, ifsta->bssid, ETH_ALEN); |
| 220 | memcpy(mgmt->sa, sdata->dev->dev_addr, ETH_ALEN); |
| 221 | memcpy(mgmt->bssid, ifsta->bssid, ETH_ALEN); |
| 222 | mgmt->u.auth.auth_alg = cpu_to_le16(ifsta->auth_alg); |
| 223 | mgmt->u.auth.auth_transaction = cpu_to_le16(transaction); |
| 224 | ifsta->auth_transaction = transaction + 1; |
| 225 | mgmt->u.auth.status_code = cpu_to_le16(0); |
| 226 | if (extra) |
| 227 | memcpy(skb_put(skb, extra_len), extra, extra_len); |
| 228 | |
| 229 | ieee80211_tx_skb(sdata, skb, encrypt); |
| 230 | } |
| 231 | |
Johannes Berg | 9ac19a9 | 2008-09-09 10:57:09 +0200 | [diff] [blame] | 232 | static void ieee80211_send_assoc(struct ieee80211_sub_if_data *sdata, |
| 233 | struct ieee80211_if_sta *ifsta) |
| 234 | { |
| 235 | struct ieee80211_local *local = sdata->local; |
| 236 | struct sk_buff *skb; |
| 237 | struct ieee80211_mgmt *mgmt; |
Johannes Berg | d9fe60d | 2008-10-09 12:13:49 +0200 | [diff] [blame] | 238 | u8 *pos, *ies, *ht_ie; |
Johannes Berg | 9ac19a9 | 2008-09-09 10:57:09 +0200 | [diff] [blame] | 239 | int i, len, count, rates_len, supp_rates_len; |
| 240 | u16 capab; |
Johannes Berg | c2b1345 | 2008-09-11 00:01:55 +0200 | [diff] [blame] | 241 | struct ieee80211_bss *bss; |
Johannes Berg | 9ac19a9 | 2008-09-09 10:57:09 +0200 | [diff] [blame] | 242 | int wmm = 0; |
| 243 | struct ieee80211_supported_band *sband; |
| 244 | u64 rates = 0; |
| 245 | |
| 246 | skb = dev_alloc_skb(local->hw.extra_tx_headroom + |
| 247 | sizeof(*mgmt) + 200 + ifsta->extra_ie_len + |
| 248 | ifsta->ssid_len); |
| 249 | if (!skb) { |
| 250 | printk(KERN_DEBUG "%s: failed to allocate buffer for assoc " |
| 251 | "frame\n", sdata->dev->name); |
| 252 | return; |
| 253 | } |
| 254 | skb_reserve(skb, local->hw.extra_tx_headroom); |
| 255 | |
| 256 | sband = local->hw.wiphy->bands[local->hw.conf.channel->band]; |
| 257 | |
| 258 | capab = ifsta->capab; |
| 259 | |
| 260 | if (local->hw.conf.channel->band == IEEE80211_BAND_2GHZ) { |
| 261 | if (!(local->hw.flags & IEEE80211_HW_2GHZ_SHORT_SLOT_INCAPABLE)) |
| 262 | capab |= WLAN_CAPABILITY_SHORT_SLOT_TIME; |
| 263 | if (!(local->hw.flags & IEEE80211_HW_2GHZ_SHORT_PREAMBLE_INCAPABLE)) |
| 264 | capab |= WLAN_CAPABILITY_SHORT_PREAMBLE; |
| 265 | } |
| 266 | |
| 267 | bss = ieee80211_rx_bss_get(local, ifsta->bssid, |
| 268 | local->hw.conf.channel->center_freq, |
| 269 | ifsta->ssid, ifsta->ssid_len); |
| 270 | if (bss) { |
| 271 | if (bss->capability & WLAN_CAPABILITY_PRIVACY) |
| 272 | capab |= WLAN_CAPABILITY_PRIVACY; |
| 273 | if (bss->wmm_used) |
| 274 | wmm = 1; |
| 275 | |
| 276 | /* get all rates supported by the device and the AP as |
| 277 | * some APs don't like getting a superset of their rates |
| 278 | * in the association request (e.g. D-Link DAP 1353 in |
| 279 | * b-only mode) */ |
| 280 | rates_len = ieee80211_compatible_rates(bss, sband, &rates); |
| 281 | |
| 282 | if ((bss->capability & WLAN_CAPABILITY_SPECTRUM_MGMT) && |
| 283 | (local->hw.flags & IEEE80211_HW_SPECTRUM_MGMT)) |
| 284 | capab |= WLAN_CAPABILITY_SPECTRUM_MGMT; |
| 285 | |
| 286 | ieee80211_rx_bss_put(local, bss); |
| 287 | } else { |
| 288 | rates = ~0; |
| 289 | rates_len = sband->n_bitrates; |
| 290 | } |
| 291 | |
| 292 | mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24); |
| 293 | memset(mgmt, 0, 24); |
| 294 | memcpy(mgmt->da, ifsta->bssid, ETH_ALEN); |
| 295 | memcpy(mgmt->sa, sdata->dev->dev_addr, ETH_ALEN); |
| 296 | memcpy(mgmt->bssid, ifsta->bssid, ETH_ALEN); |
| 297 | |
| 298 | if (ifsta->flags & IEEE80211_STA_PREV_BSSID_SET) { |
| 299 | skb_put(skb, 10); |
| 300 | mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT | |
| 301 | IEEE80211_STYPE_REASSOC_REQ); |
| 302 | mgmt->u.reassoc_req.capab_info = cpu_to_le16(capab); |
| 303 | mgmt->u.reassoc_req.listen_interval = |
| 304 | cpu_to_le16(local->hw.conf.listen_interval); |
| 305 | memcpy(mgmt->u.reassoc_req.current_ap, ifsta->prev_bssid, |
| 306 | ETH_ALEN); |
| 307 | } else { |
| 308 | skb_put(skb, 4); |
| 309 | mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT | |
| 310 | IEEE80211_STYPE_ASSOC_REQ); |
| 311 | mgmt->u.assoc_req.capab_info = cpu_to_le16(capab); |
Rami Rosen | 1355412 | 2008-12-16 22:38:29 +0200 | [diff] [blame] | 312 | mgmt->u.assoc_req.listen_interval = |
Johannes Berg | 9ac19a9 | 2008-09-09 10:57:09 +0200 | [diff] [blame] | 313 | cpu_to_le16(local->hw.conf.listen_interval); |
| 314 | } |
| 315 | |
| 316 | /* SSID */ |
| 317 | ies = pos = skb_put(skb, 2 + ifsta->ssid_len); |
| 318 | *pos++ = WLAN_EID_SSID; |
| 319 | *pos++ = ifsta->ssid_len; |
| 320 | memcpy(pos, ifsta->ssid, ifsta->ssid_len); |
| 321 | |
| 322 | /* add all rates which were marked to be used above */ |
| 323 | supp_rates_len = rates_len; |
| 324 | if (supp_rates_len > 8) |
| 325 | supp_rates_len = 8; |
| 326 | |
| 327 | len = sband->n_bitrates; |
| 328 | pos = skb_put(skb, supp_rates_len + 2); |
| 329 | *pos++ = WLAN_EID_SUPP_RATES; |
| 330 | *pos++ = supp_rates_len; |
| 331 | |
| 332 | count = 0; |
| 333 | for (i = 0; i < sband->n_bitrates; i++) { |
| 334 | if (BIT(i) & rates) { |
| 335 | int rate = sband->bitrates[i].bitrate; |
| 336 | *pos++ = (u8) (rate / 5); |
| 337 | if (++count == 8) |
| 338 | break; |
| 339 | } |
| 340 | } |
| 341 | |
| 342 | if (rates_len > count) { |
| 343 | pos = skb_put(skb, rates_len - count + 2); |
| 344 | *pos++ = WLAN_EID_EXT_SUPP_RATES; |
| 345 | *pos++ = rates_len - count; |
| 346 | |
| 347 | for (i++; i < sband->n_bitrates; i++) { |
| 348 | if (BIT(i) & rates) { |
| 349 | int rate = sband->bitrates[i].bitrate; |
| 350 | *pos++ = (u8) (rate / 5); |
| 351 | } |
| 352 | } |
| 353 | } |
| 354 | |
| 355 | if (capab & WLAN_CAPABILITY_SPECTRUM_MGMT) { |
| 356 | /* 1. power capabilities */ |
| 357 | pos = skb_put(skb, 4); |
| 358 | *pos++ = WLAN_EID_PWR_CAPABILITY; |
| 359 | *pos++ = 2; |
| 360 | *pos++ = 0; /* min tx power */ |
| 361 | *pos++ = local->hw.conf.channel->max_power; /* max tx power */ |
| 362 | |
| 363 | /* 2. supported channels */ |
| 364 | /* TODO: get this in reg domain format */ |
| 365 | pos = skb_put(skb, 2 * sband->n_channels + 2); |
| 366 | *pos++ = WLAN_EID_SUPPORTED_CHANNELS; |
| 367 | *pos++ = 2 * sband->n_channels; |
| 368 | for (i = 0; i < sband->n_channels; i++) { |
| 369 | *pos++ = ieee80211_frequency_to_channel( |
| 370 | sband->channels[i].center_freq); |
| 371 | *pos++ = 1; /* one channel in the subband*/ |
| 372 | } |
| 373 | } |
| 374 | |
| 375 | if (ifsta->extra_ie) { |
| 376 | pos = skb_put(skb, ifsta->extra_ie_len); |
| 377 | memcpy(pos, ifsta->extra_ie, ifsta->extra_ie_len); |
| 378 | } |
| 379 | |
| 380 | if (wmm && (ifsta->flags & IEEE80211_STA_WMM_ENABLED)) { |
| 381 | pos = skb_put(skb, 9); |
| 382 | *pos++ = WLAN_EID_VENDOR_SPECIFIC; |
| 383 | *pos++ = 7; /* len */ |
| 384 | *pos++ = 0x00; /* Microsoft OUI 00:50:F2 */ |
| 385 | *pos++ = 0x50; |
| 386 | *pos++ = 0xf2; |
| 387 | *pos++ = 2; /* WME */ |
| 388 | *pos++ = 0; /* WME info */ |
| 389 | *pos++ = 1; /* WME ver */ |
| 390 | *pos++ = 0; |
| 391 | } |
| 392 | |
| 393 | /* wmm support is a must to HT */ |
Vasanthakumar Thiagarajan | eb46936 | 2008-12-23 21:30:50 +0530 | [diff] [blame] | 394 | /* |
| 395 | * IEEE802.11n does not allow TKIP/WEP as pairwise |
| 396 | * ciphers in HT mode. We still associate in non-ht |
| 397 | * mode (11a/b/g) if any one of these ciphers is |
| 398 | * configured as pairwise. |
| 399 | */ |
Johannes Berg | 9ac19a9 | 2008-09-09 10:57:09 +0200 | [diff] [blame] | 400 | if (wmm && (ifsta->flags & IEEE80211_STA_WMM_ENABLED) && |
Johannes Berg | d9fe60d | 2008-10-09 12:13:49 +0200 | [diff] [blame] | 401 | sband->ht_cap.ht_supported && |
| 402 | (ht_ie = ieee80211_bss_get_ie(bss, WLAN_EID_HT_INFORMATION)) && |
Vasanthakumar Thiagarajan | eb46936 | 2008-12-23 21:30:50 +0530 | [diff] [blame] | 403 | ht_ie[1] >= sizeof(struct ieee80211_ht_info) && |
| 404 | (!(ifsta->flags & IEEE80211_STA_TKIP_WEP_USED))) { |
Johannes Berg | d9fe60d | 2008-10-09 12:13:49 +0200 | [diff] [blame] | 405 | struct ieee80211_ht_info *ht_info = |
| 406 | (struct ieee80211_ht_info *)(ht_ie + 2); |
| 407 | u16 cap = sband->ht_cap.cap; |
Johannes Berg | 9ac19a9 | 2008-09-09 10:57:09 +0200 | [diff] [blame] | 408 | __le16 tmp; |
| 409 | u32 flags = local->hw.conf.channel->flags; |
| 410 | |
Johannes Berg | d9fe60d | 2008-10-09 12:13:49 +0200 | [diff] [blame] | 411 | switch (ht_info->ht_param & IEEE80211_HT_PARAM_CHA_SEC_OFFSET) { |
| 412 | case IEEE80211_HT_PARAM_CHA_SEC_ABOVE: |
Johannes Berg | 9ac19a9 | 2008-09-09 10:57:09 +0200 | [diff] [blame] | 413 | if (flags & IEEE80211_CHAN_NO_FAT_ABOVE) { |
Johannes Berg | d9fe60d | 2008-10-09 12:13:49 +0200 | [diff] [blame] | 414 | cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40; |
Johannes Berg | 9ac19a9 | 2008-09-09 10:57:09 +0200 | [diff] [blame] | 415 | cap &= ~IEEE80211_HT_CAP_SGI_40; |
| 416 | } |
| 417 | break; |
Johannes Berg | d9fe60d | 2008-10-09 12:13:49 +0200 | [diff] [blame] | 418 | case IEEE80211_HT_PARAM_CHA_SEC_BELOW: |
Johannes Berg | 9ac19a9 | 2008-09-09 10:57:09 +0200 | [diff] [blame] | 419 | if (flags & IEEE80211_CHAN_NO_FAT_BELOW) { |
Johannes Berg | d9fe60d | 2008-10-09 12:13:49 +0200 | [diff] [blame] | 420 | cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40; |
Johannes Berg | 9ac19a9 | 2008-09-09 10:57:09 +0200 | [diff] [blame] | 421 | cap &= ~IEEE80211_HT_CAP_SGI_40; |
| 422 | } |
| 423 | break; |
| 424 | } |
| 425 | |
| 426 | tmp = cpu_to_le16(cap); |
| 427 | pos = skb_put(skb, sizeof(struct ieee80211_ht_cap)+2); |
| 428 | *pos++ = WLAN_EID_HT_CAPABILITY; |
| 429 | *pos++ = sizeof(struct ieee80211_ht_cap); |
| 430 | memset(pos, 0, sizeof(struct ieee80211_ht_cap)); |
| 431 | memcpy(pos, &tmp, sizeof(u16)); |
| 432 | pos += sizeof(u16); |
| 433 | /* TODO: needs a define here for << 2 */ |
Johannes Berg | d9fe60d | 2008-10-09 12:13:49 +0200 | [diff] [blame] | 434 | *pos++ = sband->ht_cap.ampdu_factor | |
| 435 | (sband->ht_cap.ampdu_density << 2); |
| 436 | memcpy(pos, &sband->ht_cap.mcs, sizeof(sband->ht_cap.mcs)); |
Johannes Berg | 9ac19a9 | 2008-09-09 10:57:09 +0200 | [diff] [blame] | 437 | } |
| 438 | |
| 439 | kfree(ifsta->assocreq_ies); |
| 440 | ifsta->assocreq_ies_len = (skb->data + skb->len) - ies; |
| 441 | ifsta->assocreq_ies = kmalloc(ifsta->assocreq_ies_len, GFP_KERNEL); |
| 442 | if (ifsta->assocreq_ies) |
| 443 | memcpy(ifsta->assocreq_ies, ies, ifsta->assocreq_ies_len); |
| 444 | |
Johannes Berg | e50db65 | 2008-09-09 15:07:09 +0200 | [diff] [blame] | 445 | ieee80211_tx_skb(sdata, skb, 0); |
Johannes Berg | 9ac19a9 | 2008-09-09 10:57:09 +0200 | [diff] [blame] | 446 | } |
| 447 | |
| 448 | |
Johannes Berg | ef422bc | 2008-09-09 10:58:25 +0200 | [diff] [blame] | 449 | static void ieee80211_send_deauth_disassoc(struct ieee80211_sub_if_data *sdata, |
| 450 | u16 stype, u16 reason) |
Johannes Berg | 9ac19a9 | 2008-09-09 10:57:09 +0200 | [diff] [blame] | 451 | { |
| 452 | struct ieee80211_local *local = sdata->local; |
Johannes Berg | ef422bc | 2008-09-09 10:58:25 +0200 | [diff] [blame] | 453 | struct ieee80211_if_sta *ifsta = &sdata->u.sta; |
Johannes Berg | 9ac19a9 | 2008-09-09 10:57:09 +0200 | [diff] [blame] | 454 | struct sk_buff *skb; |
| 455 | struct ieee80211_mgmt *mgmt; |
| 456 | |
| 457 | skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*mgmt)); |
| 458 | if (!skb) { |
Johannes Berg | ef422bc | 2008-09-09 10:58:25 +0200 | [diff] [blame] | 459 | printk(KERN_DEBUG "%s: failed to allocate buffer for " |
| 460 | "deauth/disassoc frame\n", sdata->dev->name); |
Johannes Berg | 9ac19a9 | 2008-09-09 10:57:09 +0200 | [diff] [blame] | 461 | return; |
| 462 | } |
| 463 | skb_reserve(skb, local->hw.extra_tx_headroom); |
| 464 | |
| 465 | mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24); |
| 466 | memset(mgmt, 0, 24); |
| 467 | memcpy(mgmt->da, ifsta->bssid, ETH_ALEN); |
| 468 | memcpy(mgmt->sa, sdata->dev->dev_addr, ETH_ALEN); |
| 469 | memcpy(mgmt->bssid, ifsta->bssid, ETH_ALEN); |
Johannes Berg | ef422bc | 2008-09-09 10:58:25 +0200 | [diff] [blame] | 470 | mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT | stype); |
Johannes Berg | 9ac19a9 | 2008-09-09 10:57:09 +0200 | [diff] [blame] | 471 | skb_put(skb, 2); |
Johannes Berg | ef422bc | 2008-09-09 10:58:25 +0200 | [diff] [blame] | 472 | /* u.deauth.reason_code == u.disassoc.reason_code */ |
Johannes Berg | 9ac19a9 | 2008-09-09 10:57:09 +0200 | [diff] [blame] | 473 | mgmt->u.deauth.reason_code = cpu_to_le16(reason); |
| 474 | |
Johannes Berg | e50db65 | 2008-09-09 15:07:09 +0200 | [diff] [blame] | 475 | ieee80211_tx_skb(sdata, skb, 0); |
Johannes Berg | 9ac19a9 | 2008-09-09 10:57:09 +0200 | [diff] [blame] | 476 | } |
| 477 | |
Johannes Berg | 60f8b39 | 2008-09-08 17:44:22 +0200 | [diff] [blame] | 478 | /* MLME */ |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 479 | static void ieee80211_sta_def_wmm_params(struct ieee80211_sub_if_data *sdata, |
Johannes Berg | c2b1345 | 2008-09-11 00:01:55 +0200 | [diff] [blame] | 480 | struct ieee80211_bss *bss) |
Vladimir Koutny | e2839d8 | 2008-03-18 21:14:07 +0100 | [diff] [blame] | 481 | { |
Vladimir Koutny | e2839d8 | 2008-03-18 21:14:07 +0100 | [diff] [blame] | 482 | struct ieee80211_local *local = sdata->local; |
| 483 | int i, have_higher_than_11mbit = 0; |
| 484 | |
Vladimir Koutny | e2839d8 | 2008-03-18 21:14:07 +0100 | [diff] [blame] | 485 | /* cf. IEEE 802.11 9.2.12 */ |
| 486 | for (i = 0; i < bss->supp_rates_len; i++) |
| 487 | if ((bss->supp_rates[i] & 0x7f) * 5 > 110) |
| 488 | have_higher_than_11mbit = 1; |
| 489 | |
| 490 | if (local->hw.conf.channel->band == IEEE80211_BAND_2GHZ && |
| 491 | have_higher_than_11mbit) |
| 492 | sdata->flags |= IEEE80211_SDATA_OPERATING_GMODE; |
| 493 | else |
| 494 | sdata->flags &= ~IEEE80211_SDATA_OPERATING_GMODE; |
| 495 | |
Johannes Berg | 3d35f7c | 2008-09-09 12:54:11 +0200 | [diff] [blame] | 496 | ieee80211_set_wmm_default(sdata); |
Vladimir Koutny | e2839d8 | 2008-03-18 21:14:07 +0100 | [diff] [blame] | 497 | } |
| 498 | |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 499 | static void ieee80211_sta_wmm_params(struct ieee80211_local *local, |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 500 | struct ieee80211_if_sta *ifsta, |
| 501 | u8 *wmm_param, size_t wmm_param_len) |
| 502 | { |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 503 | struct ieee80211_tx_queue_params params; |
| 504 | size_t left; |
| 505 | int count; |
| 506 | u8 *pos; |
| 507 | |
Johannes Berg | 3434fbd | 2008-05-03 00:59:37 +0200 | [diff] [blame] | 508 | if (!(ifsta->flags & IEEE80211_STA_WMM_ENABLED)) |
| 509 | return; |
| 510 | |
| 511 | if (!wmm_param) |
| 512 | return; |
| 513 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 514 | if (wmm_param_len < 8 || wmm_param[5] /* version */ != 1) |
| 515 | return; |
| 516 | count = wmm_param[6] & 0x0f; |
| 517 | if (count == ifsta->wmm_last_param_set) |
| 518 | return; |
| 519 | ifsta->wmm_last_param_set = count; |
| 520 | |
| 521 | pos = wmm_param + 8; |
| 522 | left = wmm_param_len - 8; |
| 523 | |
| 524 | memset(¶ms, 0, sizeof(params)); |
| 525 | |
| 526 | if (!local->ops->conf_tx) |
| 527 | return; |
| 528 | |
| 529 | local->wmm_acm = 0; |
| 530 | for (; left >= 4; left -= 4, pos += 4) { |
| 531 | int aci = (pos[0] >> 5) & 0x03; |
| 532 | int acm = (pos[0] >> 4) & 0x01; |
| 533 | int queue; |
| 534 | |
| 535 | switch (aci) { |
| 536 | case 1: |
Johannes Berg | e100bb6 | 2008-04-30 18:51:21 +0200 | [diff] [blame] | 537 | queue = 3; |
Johannes Berg | 988c0f7 | 2008-04-17 19:21:22 +0200 | [diff] [blame] | 538 | if (acm) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 539 | local->wmm_acm |= BIT(0) | BIT(3); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 540 | break; |
| 541 | case 2: |
Johannes Berg | e100bb6 | 2008-04-30 18:51:21 +0200 | [diff] [blame] | 542 | queue = 1; |
Johannes Berg | 988c0f7 | 2008-04-17 19:21:22 +0200 | [diff] [blame] | 543 | if (acm) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 544 | local->wmm_acm |= BIT(4) | BIT(5); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 545 | break; |
| 546 | case 3: |
Johannes Berg | e100bb6 | 2008-04-30 18:51:21 +0200 | [diff] [blame] | 547 | queue = 0; |
Johannes Berg | 988c0f7 | 2008-04-17 19:21:22 +0200 | [diff] [blame] | 548 | if (acm) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 549 | local->wmm_acm |= BIT(6) | BIT(7); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 550 | break; |
| 551 | case 0: |
| 552 | default: |
Johannes Berg | e100bb6 | 2008-04-30 18:51:21 +0200 | [diff] [blame] | 553 | queue = 2; |
Johannes Berg | 988c0f7 | 2008-04-17 19:21:22 +0200 | [diff] [blame] | 554 | if (acm) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 555 | local->wmm_acm |= BIT(1) | BIT(2); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 556 | break; |
| 557 | } |
| 558 | |
| 559 | params.aifs = pos[0] & 0x0f; |
| 560 | params.cw_max = ecw2cw((pos[1] & 0xf0) >> 4); |
| 561 | params.cw_min = ecw2cw(pos[1] & 0x0f); |
Johannes Berg | f434b2d | 2008-07-10 11:22:31 +0200 | [diff] [blame] | 562 | params.txop = get_unaligned_le16(pos + 2); |
Johannes Berg | f4ea83d | 2008-06-30 15:10:46 +0200 | [diff] [blame] | 563 | #ifdef CONFIG_MAC80211_VERBOSE_DEBUG |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 564 | 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] | 565 | "cWmin=%d cWmax=%d txop=%d\n", |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 566 | local->mdev->name, queue, aci, acm, params.aifs, params.cw_min, |
Johannes Berg | 3330d7b | 2008-02-10 16:49:38 +0100 | [diff] [blame] | 567 | params.cw_max, params.txop); |
| 568 | #endif |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 569 | /* TODO: handle ACM (block TX, fallback to next lowest allowed |
| 570 | * AC for now) */ |
| 571 | if (local->ops->conf_tx(local_to_hw(local), queue, ¶ms)) { |
| 572 | printk(KERN_DEBUG "%s: failed to set TX queue " |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 573 | "parameters for queue %d\n", local->mdev->name, queue); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 574 | } |
| 575 | } |
| 576 | } |
| 577 | |
Vivek Natarajan | a97b77b | 2008-12-23 18:39:02 -0800 | [diff] [blame] | 578 | static bool check_tim(struct ieee802_11_elems *elems, u16 aid, bool *is_mc) |
| 579 | { |
| 580 | u8 mask; |
| 581 | u8 index, indexn1, indexn2; |
| 582 | struct ieee80211_tim_ie *tim = (struct ieee80211_tim_ie *) elems->tim; |
| 583 | |
| 584 | aid &= 0x3fff; |
| 585 | index = aid / 8; |
| 586 | mask = 1 << (aid & 7); |
| 587 | |
| 588 | if (tim->bitmap_ctrl & 0x01) |
| 589 | *is_mc = true; |
| 590 | |
| 591 | indexn1 = tim->bitmap_ctrl & 0xfe; |
| 592 | indexn2 = elems->tim_len + indexn1 - 4; |
| 593 | |
| 594 | if (index < indexn1 || index > indexn2) |
| 595 | return false; |
| 596 | |
| 597 | index -= indexn1; |
| 598 | |
| 599 | return !!(tim->virtual_map[index] & mask); |
| 600 | } |
| 601 | |
Johannes Berg | 7a5158e | 2008-10-08 10:59:33 +0200 | [diff] [blame] | 602 | static u32 ieee80211_handle_bss_capability(struct ieee80211_sub_if_data *sdata, |
| 603 | u16 capab, bool erp_valid, u8 erp) |
Daniel Drake | 5628221 | 2007-07-10 19:32:10 +0200 | [diff] [blame] | 604 | { |
Johannes Berg | bda3933 | 2008-10-11 01:51:51 +0200 | [diff] [blame] | 605 | struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf; |
Tomas Winkler | ebd7448 | 2008-07-01 10:44:50 +0300 | [diff] [blame] | 606 | #ifdef CONFIG_MAC80211_VERBOSE_DEBUG |
Daniel Drake | 5628221 | 2007-07-10 19:32:10 +0200 | [diff] [blame] | 607 | struct ieee80211_if_sta *ifsta = &sdata->u.sta; |
Tomas Winkler | ebd7448 | 2008-07-01 10:44:50 +0300 | [diff] [blame] | 608 | #endif |
Johannes Berg | 471b3ef | 2007-12-28 14:32:58 +0100 | [diff] [blame] | 609 | u32 changed = 0; |
Johannes Berg | 7a5158e | 2008-10-08 10:59:33 +0200 | [diff] [blame] | 610 | bool use_protection; |
| 611 | bool use_short_preamble; |
| 612 | bool use_short_slot; |
| 613 | |
| 614 | if (erp_valid) { |
| 615 | use_protection = (erp & WLAN_ERP_USE_PROTECTION) != 0; |
| 616 | use_short_preamble = (erp & WLAN_ERP_BARKER_PREAMBLE) == 0; |
| 617 | } else { |
| 618 | use_protection = false; |
| 619 | use_short_preamble = !!(capab & WLAN_CAPABILITY_SHORT_PREAMBLE); |
| 620 | } |
| 621 | |
| 622 | use_short_slot = !!(capab & WLAN_CAPABILITY_SHORT_SLOT_TIME); |
Daniel Drake | 5628221 | 2007-07-10 19:32:10 +0200 | [diff] [blame] | 623 | |
Johannes Berg | 471b3ef | 2007-12-28 14:32:58 +0100 | [diff] [blame] | 624 | if (use_protection != bss_conf->use_cts_prot) { |
Johannes Berg | f4ea83d | 2008-06-30 15:10:46 +0200 | [diff] [blame] | 625 | #ifdef CONFIG_MAC80211_VERBOSE_DEBUG |
Daniel Drake | 5628221 | 2007-07-10 19:32:10 +0200 | [diff] [blame] | 626 | if (net_ratelimit()) { |
Johannes Berg | 0c68ae26 | 2008-10-27 15:56:10 -0700 | [diff] [blame] | 627 | printk(KERN_DEBUG "%s: CTS protection %s (BSSID=%pM)\n", |
Johannes Berg | 471b3ef | 2007-12-28 14:32:58 +0100 | [diff] [blame] | 628 | sdata->dev->name, |
Daniel Drake | 5628221 | 2007-07-10 19:32:10 +0200 | [diff] [blame] | 629 | use_protection ? "enabled" : "disabled", |
Johannes Berg | 0c68ae26 | 2008-10-27 15:56:10 -0700 | [diff] [blame] | 630 | ifsta->bssid); |
Daniel Drake | 5628221 | 2007-07-10 19:32:10 +0200 | [diff] [blame] | 631 | } |
Johannes Berg | f4ea83d | 2008-06-30 15:10:46 +0200 | [diff] [blame] | 632 | #endif |
Johannes Berg | 471b3ef | 2007-12-28 14:32:58 +0100 | [diff] [blame] | 633 | bss_conf->use_cts_prot = use_protection; |
| 634 | changed |= BSS_CHANGED_ERP_CTS_PROT; |
Daniel Drake | 5628221 | 2007-07-10 19:32:10 +0200 | [diff] [blame] | 635 | } |
Daniel Drake | 7e9ed18 | 2007-07-27 15:43:24 +0200 | [diff] [blame] | 636 | |
Vladimir Koutny | d43c7b3 | 2008-03-31 17:05:03 +0200 | [diff] [blame] | 637 | if (use_short_preamble != bss_conf->use_short_preamble) { |
Johannes Berg | f4ea83d | 2008-06-30 15:10:46 +0200 | [diff] [blame] | 638 | #ifdef CONFIG_MAC80211_VERBOSE_DEBUG |
Daniel Drake | 7e9ed18 | 2007-07-27 15:43:24 +0200 | [diff] [blame] | 639 | if (net_ratelimit()) { |
| 640 | printk(KERN_DEBUG "%s: switched to %s barker preamble" |
Johannes Berg | 0c68ae26 | 2008-10-27 15:56:10 -0700 | [diff] [blame] | 641 | " (BSSID=%pM)\n", |
Johannes Berg | 471b3ef | 2007-12-28 14:32:58 +0100 | [diff] [blame] | 642 | sdata->dev->name, |
Vladimir Koutny | d43c7b3 | 2008-03-31 17:05:03 +0200 | [diff] [blame] | 643 | use_short_preamble ? "short" : "long", |
Johannes Berg | 0c68ae26 | 2008-10-27 15:56:10 -0700 | [diff] [blame] | 644 | ifsta->bssid); |
Daniel Drake | 7e9ed18 | 2007-07-27 15:43:24 +0200 | [diff] [blame] | 645 | } |
Johannes Berg | f4ea83d | 2008-06-30 15:10:46 +0200 | [diff] [blame] | 646 | #endif |
Vladimir Koutny | d43c7b3 | 2008-03-31 17:05:03 +0200 | [diff] [blame] | 647 | bss_conf->use_short_preamble = use_short_preamble; |
Johannes Berg | 471b3ef | 2007-12-28 14:32:58 +0100 | [diff] [blame] | 648 | changed |= BSS_CHANGED_ERP_PREAMBLE; |
Daniel Drake | 7e9ed18 | 2007-07-27 15:43:24 +0200 | [diff] [blame] | 649 | } |
Daniel Drake | d9430a3 | 2007-07-27 15:43:24 +0200 | [diff] [blame] | 650 | |
Johannes Berg | 7a5158e | 2008-10-08 10:59:33 +0200 | [diff] [blame] | 651 | if (use_short_slot != bss_conf->use_short_slot) { |
| 652 | #ifdef CONFIG_MAC80211_VERBOSE_DEBUG |
| 653 | if (net_ratelimit()) { |
Christian Lamparter | 391429c | 2009-01-18 02:24:15 +0100 | [diff] [blame] | 654 | printk(KERN_DEBUG "%s: switched to %s slot time" |
| 655 | " (BSSID=%pM)\n", |
Johannes Berg | 7a5158e | 2008-10-08 10:59:33 +0200 | [diff] [blame] | 656 | sdata->dev->name, |
| 657 | use_short_slot ? "short" : "long", |
| 658 | ifsta->bssid); |
| 659 | } |
| 660 | #endif |
| 661 | bss_conf->use_short_slot = use_short_slot; |
| 662 | changed |= BSS_CHANGED_ERP_SLOT; |
John W. Linville | 50c4afb | 2008-04-15 14:09:27 -0400 | [diff] [blame] | 663 | } |
| 664 | |
| 665 | return changed; |
| 666 | } |
| 667 | |
Tomas Winkler | f5e5bf2 | 2008-09-08 17:33:39 +0200 | [diff] [blame] | 668 | static void ieee80211_sta_send_apinfo(struct ieee80211_sub_if_data *sdata, |
| 669 | struct ieee80211_if_sta *ifsta) |
| 670 | { |
| 671 | union iwreq_data wrqu; |
| 672 | memset(&wrqu, 0, sizeof(wrqu)); |
| 673 | if (ifsta->flags & IEEE80211_STA_ASSOCIATED) |
| 674 | memcpy(wrqu.ap_addr.sa_data, sdata->u.sta.bssid, ETH_ALEN); |
| 675 | wrqu.ap_addr.sa_family = ARPHRD_ETHER; |
| 676 | wireless_send_event(sdata->dev, SIOCGIWAP, &wrqu, NULL); |
| 677 | } |
| 678 | |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 679 | static void ieee80211_sta_send_associnfo(struct ieee80211_sub_if_data *sdata, |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 680 | struct ieee80211_if_sta *ifsta) |
| 681 | { |
Linus Torvalds | 74af025 | 2008-09-05 12:38:09 -0700 | [diff] [blame] | 682 | char *buf; |
| 683 | size_t len; |
| 684 | int i; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 685 | union iwreq_data wrqu; |
| 686 | |
Linus Torvalds | 74af025 | 2008-09-05 12:38:09 -0700 | [diff] [blame] | 687 | if (!ifsta->assocreq_ies && !ifsta->assocresp_ies) |
| 688 | return; |
| 689 | |
| 690 | buf = kmalloc(50 + 2 * (ifsta->assocreq_ies_len + |
| 691 | ifsta->assocresp_ies_len), GFP_KERNEL); |
| 692 | if (!buf) |
| 693 | return; |
| 694 | |
| 695 | len = sprintf(buf, "ASSOCINFO("); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 696 | if (ifsta->assocreq_ies) { |
Linus Torvalds | 74af025 | 2008-09-05 12:38:09 -0700 | [diff] [blame] | 697 | len += sprintf(buf + len, "ReqIEs="); |
| 698 | for (i = 0; i < ifsta->assocreq_ies_len; i++) { |
| 699 | len += sprintf(buf + len, "%02x", |
| 700 | ifsta->assocreq_ies[i]); |
| 701 | } |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 702 | } |
| 703 | if (ifsta->assocresp_ies) { |
Linus Torvalds | 74af025 | 2008-09-05 12:38:09 -0700 | [diff] [blame] | 704 | if (ifsta->assocreq_ies) |
| 705 | len += sprintf(buf + len, " "); |
| 706 | len += sprintf(buf + len, "RespIEs="); |
| 707 | for (i = 0; i < ifsta->assocresp_ies_len; i++) { |
| 708 | len += sprintf(buf + len, "%02x", |
| 709 | ifsta->assocresp_ies[i]); |
| 710 | } |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 711 | } |
Linus Torvalds | 74af025 | 2008-09-05 12:38:09 -0700 | [diff] [blame] | 712 | len += sprintf(buf + len, ")"); |
| 713 | |
| 714 | if (len > IW_CUSTOM_MAX) { |
| 715 | len = sprintf(buf, "ASSOCRESPIE="); |
| 716 | for (i = 0; i < ifsta->assocresp_ies_len; i++) { |
| 717 | len += sprintf(buf + len, "%02x", |
| 718 | ifsta->assocresp_ies[i]); |
| 719 | } |
| 720 | } |
| 721 | |
John W. Linville | ad788b5 | 2008-10-01 15:45:02 -0400 | [diff] [blame] | 722 | if (len <= IW_CUSTOM_MAX) { |
| 723 | memset(&wrqu, 0, sizeof(wrqu)); |
| 724 | wrqu.data.length = len; |
| 725 | wireless_send_event(sdata->dev, IWEVCUSTOM, &wrqu, buf); |
| 726 | } |
Linus Torvalds | 74af025 | 2008-09-05 12:38:09 -0700 | [diff] [blame] | 727 | |
| 728 | kfree(buf); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 729 | } |
| 730 | |
| 731 | |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 732 | static void ieee80211_set_associated(struct ieee80211_sub_if_data *sdata, |
Johannes Berg | ae5eb02 | 2008-10-14 16:58:37 +0200 | [diff] [blame] | 733 | struct ieee80211_if_sta *ifsta, |
| 734 | u32 bss_info_changed) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 735 | { |
Johannes Berg | 471b3ef | 2007-12-28 14:32:58 +0100 | [diff] [blame] | 736 | struct ieee80211_local *local = sdata->local; |
Tomas Winkler | 38668c0 | 2008-03-28 16:33:32 -0700 | [diff] [blame] | 737 | struct ieee80211_conf *conf = &local_to_hw(local)->conf; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 738 | |
Johannes Berg | c2b1345 | 2008-09-11 00:01:55 +0200 | [diff] [blame] | 739 | struct ieee80211_bss *bss; |
Jiri Slaby | d6f2da5 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 740 | |
Johannes Berg | ae5eb02 | 2008-10-14 16:58:37 +0200 | [diff] [blame] | 741 | bss_info_changed |= BSS_CHANGED_ASSOC; |
Tomas Winkler | f5e5bf2 | 2008-09-08 17:33:39 +0200 | [diff] [blame] | 742 | ifsta->flags |= IEEE80211_STA_ASSOCIATED; |
Jiri Slaby | d6f2da5 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 743 | |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 744 | if (sdata->vif.type != NL80211_IFTYPE_STATION) |
Tomas Winkler | f5e5bf2 | 2008-09-08 17:33:39 +0200 | [diff] [blame] | 745 | return; |
Daniel Drake | 5628221 | 2007-07-10 19:32:10 +0200 | [diff] [blame] | 746 | |
Tomas Winkler | f5e5bf2 | 2008-09-08 17:33:39 +0200 | [diff] [blame] | 747 | bss = ieee80211_rx_bss_get(local, ifsta->bssid, |
| 748 | conf->channel->center_freq, |
| 749 | ifsta->ssid, ifsta->ssid_len); |
| 750 | if (bss) { |
| 751 | /* set timing information */ |
Johannes Berg | bda3933 | 2008-10-11 01:51:51 +0200 | [diff] [blame] | 752 | sdata->vif.bss_conf.beacon_int = bss->beacon_int; |
| 753 | sdata->vif.bss_conf.timestamp = bss->timestamp; |
| 754 | sdata->vif.bss_conf.dtim_period = bss->dtim_period; |
Tomas Winkler | 21c0cbe | 2008-03-28 16:33:34 -0700 | [diff] [blame] | 755 | |
Johannes Berg | ae5eb02 | 2008-10-14 16:58:37 +0200 | [diff] [blame] | 756 | bss_info_changed |= ieee80211_handle_bss_capability(sdata, |
Johannes Berg | 7a5158e | 2008-10-08 10:59:33 +0200 | [diff] [blame] | 757 | bss->capability, bss->has_erp_value, bss->erp_value); |
Tomas Winkler | 21c0cbe | 2008-03-28 16:33:34 -0700 | [diff] [blame] | 758 | |
Tomas Winkler | f5e5bf2 | 2008-09-08 17:33:39 +0200 | [diff] [blame] | 759 | ieee80211_rx_bss_put(local, bss); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 760 | } |
Johannes Berg | 471b3ef | 2007-12-28 14:32:58 +0100 | [diff] [blame] | 761 | |
Tomas Winkler | f5e5bf2 | 2008-09-08 17:33:39 +0200 | [diff] [blame] | 762 | ifsta->flags |= IEEE80211_STA_PREV_BSSID_SET; |
| 763 | memcpy(ifsta->prev_bssid, sdata->u.sta.bssid, ETH_ALEN); |
| 764 | ieee80211_sta_send_associnfo(sdata, ifsta); |
| 765 | |
| 766 | ifsta->last_probe = jiffies; |
| 767 | ieee80211_led_assoc(local, 1); |
| 768 | |
Johannes Berg | bda3933 | 2008-10-11 01:51:51 +0200 | [diff] [blame] | 769 | sdata->vif.bss_conf.assoc = 1; |
Johannes Berg | 96dd22a | 2008-09-11 00:01:57 +0200 | [diff] [blame] | 770 | /* |
| 771 | * For now just always ask the driver to update the basic rateset |
| 772 | * when we have associated, we aren't checking whether it actually |
| 773 | * changed or not. |
| 774 | */ |
Johannes Berg | ae5eb02 | 2008-10-14 16:58:37 +0200 | [diff] [blame] | 775 | bss_info_changed |= BSS_CHANGED_BASIC_RATES; |
| 776 | ieee80211_bss_info_change_notify(sdata, bss_info_changed); |
Guy Cohen | 8db9369 | 2008-07-03 19:56:13 +0300 | [diff] [blame] | 777 | |
Vivek Natarajan | 869717f | 2008-12-23 18:28:34 -0800 | [diff] [blame] | 778 | if (local->powersave && |
| 779 | !(local->hw.flags & IEEE80211_HW_NO_STACK_DYNAMIC_PS)) { |
Kalle Valo | 520eb82 | 2008-12-18 23:35:27 +0200 | [diff] [blame] | 780 | if (local->dynamic_ps_timeout > 0) |
| 781 | mod_timer(&local->dynamic_ps_timer, jiffies + |
| 782 | msecs_to_jiffies(local->dynamic_ps_timeout)); |
| 783 | else { |
Vivek Natarajan | a97b77b | 2008-12-23 18:39:02 -0800 | [diff] [blame] | 784 | ieee80211_send_nullfunc(local, sdata, 1); |
Kalle Valo | 520eb82 | 2008-12-18 23:35:27 +0200 | [diff] [blame] | 785 | conf->flags |= IEEE80211_CONF_PS; |
| 786 | ieee80211_hw_config(local, |
| 787 | IEEE80211_CONF_CHANGE_PS); |
| 788 | } |
Kalle Valo | e0cb686 | 2008-12-18 23:35:13 +0200 | [diff] [blame] | 789 | } |
| 790 | |
Tomas Winkler | 24e6462 | 2008-09-08 17:33:40 +0200 | [diff] [blame] | 791 | netif_tx_start_all_queues(sdata->dev); |
Tomas Winkler | f5e5bf2 | 2008-09-08 17:33:39 +0200 | [diff] [blame] | 792 | netif_carrier_on(sdata->dev); |
Guy Cohen | 8db9369 | 2008-07-03 19:56:13 +0300 | [diff] [blame] | 793 | |
Tomas Winkler | f5e5bf2 | 2008-09-08 17:33:39 +0200 | [diff] [blame] | 794 | ieee80211_sta_send_apinfo(sdata, ifsta); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 795 | } |
| 796 | |
Ron Rindjunsky | 9859b81 | 2008-08-09 03:02:19 +0300 | [diff] [blame] | 797 | static void ieee80211_direct_probe(struct ieee80211_sub_if_data *sdata, |
| 798 | struct ieee80211_if_sta *ifsta) |
| 799 | { |
Ron Rindjunsky | 9859b81 | 2008-08-09 03:02:19 +0300 | [diff] [blame] | 800 | ifsta->direct_probe_tries++; |
| 801 | if (ifsta->direct_probe_tries > IEEE80211_AUTH_MAX_TRIES) { |
Johannes Berg | 0c68ae26 | 2008-10-27 15:56:10 -0700 | [diff] [blame] | 802 | printk(KERN_DEBUG "%s: direct probe to AP %pM timed out\n", |
| 803 | sdata->dev->name, ifsta->bssid); |
Ron Rindjunsky | 9859b81 | 2008-08-09 03:02:19 +0300 | [diff] [blame] | 804 | ifsta->state = IEEE80211_STA_MLME_DISABLED; |
Johannes Berg | 4a68ec5 | 2008-10-16 21:44:44 +0200 | [diff] [blame] | 805 | ieee80211_sta_send_apinfo(sdata, ifsta); |
Ron Rindjunsky | 9859b81 | 2008-08-09 03:02:19 +0300 | [diff] [blame] | 806 | return; |
| 807 | } |
| 808 | |
Johannes Berg | 0c68ae26 | 2008-10-27 15:56:10 -0700 | [diff] [blame] | 809 | printk(KERN_DEBUG "%s: direct probe to AP %pM try %d\n", |
| 810 | sdata->dev->name, ifsta->bssid, |
Ron Rindjunsky | 9859b81 | 2008-08-09 03:02:19 +0300 | [diff] [blame] | 811 | ifsta->direct_probe_tries); |
| 812 | |
| 813 | ifsta->state = IEEE80211_STA_MLME_DIRECT_PROBE; |
| 814 | |
| 815 | set_bit(IEEE80211_STA_REQ_DIRECT_PROBE, &ifsta->request); |
| 816 | |
| 817 | /* Direct probe is sent to broadcast address as some APs |
| 818 | * will not answer to direct packet in unassociated state. |
| 819 | */ |
| 820 | ieee80211_send_probe_req(sdata, NULL, |
| 821 | ifsta->ssid, ifsta->ssid_len); |
| 822 | |
| 823 | mod_timer(&ifsta->timer, jiffies + IEEE80211_AUTH_TIMEOUT); |
| 824 | } |
| 825 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 826 | |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 827 | static void ieee80211_authenticate(struct ieee80211_sub_if_data *sdata, |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 828 | struct ieee80211_if_sta *ifsta) |
| 829 | { |
| 830 | ifsta->auth_tries++; |
| 831 | if (ifsta->auth_tries > IEEE80211_AUTH_MAX_TRIES) { |
Johannes Berg | 0c68ae26 | 2008-10-27 15:56:10 -0700 | [diff] [blame] | 832 | printk(KERN_DEBUG "%s: authentication with AP %pM" |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 833 | " timed out\n", |
Johannes Berg | 0c68ae26 | 2008-10-27 15:56:10 -0700 | [diff] [blame] | 834 | sdata->dev->name, ifsta->bssid); |
Tomas Winkler | 48c2fc5 | 2008-08-06 14:22:01 +0300 | [diff] [blame] | 835 | ifsta->state = IEEE80211_STA_MLME_DISABLED; |
Johannes Berg | 4a68ec5 | 2008-10-16 21:44:44 +0200 | [diff] [blame] | 836 | ieee80211_sta_send_apinfo(sdata, ifsta); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 837 | return; |
| 838 | } |
| 839 | |
Tomas Winkler | 48c2fc5 | 2008-08-06 14:22:01 +0300 | [diff] [blame] | 840 | ifsta->state = IEEE80211_STA_MLME_AUTHENTICATE; |
Johannes Berg | 0c68ae26 | 2008-10-27 15:56:10 -0700 | [diff] [blame] | 841 | printk(KERN_DEBUG "%s: authenticate with AP %pM\n", |
| 842 | sdata->dev->name, ifsta->bssid); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 843 | |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 844 | ieee80211_send_auth(sdata, ifsta, 1, NULL, 0, 0); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 845 | |
| 846 | mod_timer(&ifsta->timer, jiffies + IEEE80211_AUTH_TIMEOUT); |
| 847 | } |
| 848 | |
Vivek Natarajan | 5925d97 | 2008-11-21 22:19:50 -0800 | [diff] [blame] | 849 | /* |
| 850 | * The disassoc 'reason' argument can be either our own reason |
| 851 | * if self disconnected or a reason code from the AP. |
| 852 | */ |
Tomas Winkler | aa458d1 | 2008-09-09 00:32:12 +0300 | [diff] [blame] | 853 | static void ieee80211_set_disassoc(struct ieee80211_sub_if_data *sdata, |
| 854 | struct ieee80211_if_sta *ifsta, bool deauth, |
| 855 | bool self_disconnected, u16 reason) |
| 856 | { |
| 857 | struct ieee80211_local *local = sdata->local; |
| 858 | struct sta_info *sta; |
Kalle Valo | e0cb686 | 2008-12-18 23:35:13 +0200 | [diff] [blame] | 859 | u32 changed = 0, config_changed = 0; |
Tomas Winkler | aa458d1 | 2008-09-09 00:32:12 +0300 | [diff] [blame] | 860 | |
| 861 | rcu_read_lock(); |
| 862 | |
| 863 | sta = sta_info_get(local, ifsta->bssid); |
| 864 | if (!sta) { |
| 865 | rcu_read_unlock(); |
| 866 | return; |
| 867 | } |
| 868 | |
| 869 | if (deauth) { |
| 870 | ifsta->direct_probe_tries = 0; |
| 871 | ifsta->auth_tries = 0; |
| 872 | } |
| 873 | ifsta->assoc_scan_tries = 0; |
| 874 | ifsta->assoc_tries = 0; |
| 875 | |
Tomas Winkler | 24e6462 | 2008-09-08 17:33:40 +0200 | [diff] [blame] | 876 | netif_tx_stop_all_queues(sdata->dev); |
Tomas Winkler | aa458d1 | 2008-09-09 00:32:12 +0300 | [diff] [blame] | 877 | netif_carrier_off(sdata->dev); |
| 878 | |
Johannes Berg | 17741cd | 2008-09-11 00:02:02 +0200 | [diff] [blame] | 879 | ieee80211_sta_tear_down_BA_sessions(sdata, sta->sta.addr); |
Tomas Winkler | aa458d1 | 2008-09-09 00:32:12 +0300 | [diff] [blame] | 880 | |
| 881 | if (self_disconnected) { |
| 882 | if (deauth) |
Johannes Berg | ef422bc | 2008-09-09 10:58:25 +0200 | [diff] [blame] | 883 | ieee80211_send_deauth_disassoc(sdata, |
| 884 | IEEE80211_STYPE_DEAUTH, reason); |
Tomas Winkler | aa458d1 | 2008-09-09 00:32:12 +0300 | [diff] [blame] | 885 | else |
Johannes Berg | ef422bc | 2008-09-09 10:58:25 +0200 | [diff] [blame] | 886 | ieee80211_send_deauth_disassoc(sdata, |
| 887 | IEEE80211_STYPE_DISASSOC, reason); |
Tomas Winkler | aa458d1 | 2008-09-09 00:32:12 +0300 | [diff] [blame] | 888 | } |
| 889 | |
Tomas Winkler | f5e5bf2 | 2008-09-08 17:33:39 +0200 | [diff] [blame] | 890 | ifsta->flags &= ~IEEE80211_STA_ASSOCIATED; |
| 891 | changed |= ieee80211_reset_erp_info(sdata); |
| 892 | |
Tomas Winkler | f5e5bf2 | 2008-09-08 17:33:39 +0200 | [diff] [blame] | 893 | ieee80211_led_assoc(local, 0); |
Johannes Berg | ae5eb02 | 2008-10-14 16:58:37 +0200 | [diff] [blame] | 894 | changed |= BSS_CHANGED_ASSOC; |
| 895 | sdata->vif.bss_conf.assoc = false; |
Tomas Winkler | f5e5bf2 | 2008-09-08 17:33:39 +0200 | [diff] [blame] | 896 | |
| 897 | ieee80211_sta_send_apinfo(sdata, ifsta); |
Tomas Winkler | aa458d1 | 2008-09-09 00:32:12 +0300 | [diff] [blame] | 898 | |
Vivek Natarajan | 5925d97 | 2008-11-21 22:19:50 -0800 | [diff] [blame] | 899 | if (self_disconnected || reason == WLAN_REASON_DISASSOC_STA_HAS_LEFT) |
Tomas Winkler | aa458d1 | 2008-09-09 00:32:12 +0300 | [diff] [blame] | 900 | ifsta->state = IEEE80211_STA_MLME_DISABLED; |
| 901 | |
Tomas Winkler | aa458d1 | 2008-09-09 00:32:12 +0300 | [diff] [blame] | 902 | rcu_read_unlock(); |
| 903 | |
Sujith | 094d05d | 2008-12-12 11:57:43 +0530 | [diff] [blame] | 904 | local->oper_channel_type = NL80211_CHAN_NO_HT; |
Kalle Valo | e0cb686 | 2008-12-18 23:35:13 +0200 | [diff] [blame] | 905 | config_changed |= IEEE80211_CONF_CHANGE_HT; |
Johannes Berg | ae5eb02 | 2008-10-14 16:58:37 +0200 | [diff] [blame] | 906 | |
Kalle Valo | 520eb82 | 2008-12-18 23:35:27 +0200 | [diff] [blame] | 907 | del_timer_sync(&local->dynamic_ps_timer); |
| 908 | cancel_work_sync(&local->dynamic_ps_enable_work); |
| 909 | |
Kalle Valo | e0cb686 | 2008-12-18 23:35:13 +0200 | [diff] [blame] | 910 | if (local->hw.conf.flags & IEEE80211_CONF_PS) { |
| 911 | local->hw.conf.flags &= ~IEEE80211_CONF_PS; |
| 912 | config_changed |= IEEE80211_CONF_CHANGE_PS; |
| 913 | } |
| 914 | |
| 915 | ieee80211_hw_config(local, config_changed); |
Johannes Berg | ae5eb02 | 2008-10-14 16:58:37 +0200 | [diff] [blame] | 916 | ieee80211_bss_info_change_notify(sdata, changed); |
Tomas Winkler | 8e268e4 | 2008-11-25 13:05:44 +0200 | [diff] [blame] | 917 | |
| 918 | rcu_read_lock(); |
| 919 | |
| 920 | sta = sta_info_get(local, ifsta->bssid); |
| 921 | if (!sta) { |
| 922 | rcu_read_unlock(); |
| 923 | return; |
| 924 | } |
| 925 | |
| 926 | sta_info_unlink(&sta); |
| 927 | |
| 928 | rcu_read_unlock(); |
| 929 | |
| 930 | sta_info_destroy(sta); |
Tomas Winkler | aa458d1 | 2008-09-09 00:32:12 +0300 | [diff] [blame] | 931 | } |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 932 | |
Johannes Berg | 9ac19a9 | 2008-09-09 10:57:09 +0200 | [diff] [blame] | 933 | static int ieee80211_sta_wep_configured(struct ieee80211_sub_if_data *sdata) |
| 934 | { |
| 935 | if (!sdata || !sdata->default_key || |
| 936 | sdata->default_key->conf.alg != ALG_WEP) |
| 937 | return 0; |
| 938 | return 1; |
| 939 | } |
| 940 | |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 941 | static int ieee80211_privacy_mismatch(struct ieee80211_sub_if_data *sdata, |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 942 | struct ieee80211_if_sta *ifsta) |
| 943 | { |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 944 | struct ieee80211_local *local = sdata->local; |
Johannes Berg | c2b1345 | 2008-09-11 00:01:55 +0200 | [diff] [blame] | 945 | struct ieee80211_bss *bss; |
Johannes Berg | 5b98b1f | 2007-11-03 13:11:10 +0000 | [diff] [blame] | 946 | int bss_privacy; |
| 947 | int wep_privacy; |
| 948 | int privacy_invoked; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 949 | |
Johannes Berg | 5b98b1f | 2007-11-03 13:11:10 +0000 | [diff] [blame] | 950 | if (!ifsta || (ifsta->flags & IEEE80211_STA_MIXED_CELL)) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 951 | return 0; |
| 952 | |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 953 | bss = ieee80211_rx_bss_get(local, ifsta->bssid, |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 954 | local->hw.conf.channel->center_freq, |
John W. Linville | cffdd30 | 2007-10-05 14:23:27 -0400 | [diff] [blame] | 955 | ifsta->ssid, ifsta->ssid_len); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 956 | if (!bss) |
| 957 | return 0; |
| 958 | |
Johannes Berg | 5b98b1f | 2007-11-03 13:11:10 +0000 | [diff] [blame] | 959 | bss_privacy = !!(bss->capability & WLAN_CAPABILITY_PRIVACY); |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 960 | wep_privacy = !!ieee80211_sta_wep_configured(sdata); |
Johannes Berg | 5b98b1f | 2007-11-03 13:11:10 +0000 | [diff] [blame] | 961 | privacy_invoked = !!(ifsta->flags & IEEE80211_STA_PRIVACY_INVOKED); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 962 | |
Johannes Berg | 3e122be | 2008-07-09 14:40:34 +0200 | [diff] [blame] | 963 | ieee80211_rx_bss_put(local, bss); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 964 | |
Johannes Berg | 5b98b1f | 2007-11-03 13:11:10 +0000 | [diff] [blame] | 965 | if ((bss_privacy == wep_privacy) || (bss_privacy == privacy_invoked)) |
| 966 | return 0; |
| 967 | |
| 968 | return 1; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 969 | } |
| 970 | |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 971 | static void ieee80211_associate(struct ieee80211_sub_if_data *sdata, |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 972 | struct ieee80211_if_sta *ifsta) |
| 973 | { |
| 974 | ifsta->assoc_tries++; |
| 975 | if (ifsta->assoc_tries > IEEE80211_ASSOC_MAX_TRIES) { |
Johannes Berg | 0c68ae26 | 2008-10-27 15:56:10 -0700 | [diff] [blame] | 976 | printk(KERN_DEBUG "%s: association with AP %pM" |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 977 | " timed out\n", |
Johannes Berg | 0c68ae26 | 2008-10-27 15:56:10 -0700 | [diff] [blame] | 978 | sdata->dev->name, ifsta->bssid); |
Tomas Winkler | 48c2fc5 | 2008-08-06 14:22:01 +0300 | [diff] [blame] | 979 | ifsta->state = IEEE80211_STA_MLME_DISABLED; |
Johannes Berg | 4a68ec5 | 2008-10-16 21:44:44 +0200 | [diff] [blame] | 980 | ieee80211_sta_send_apinfo(sdata, ifsta); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 981 | return; |
| 982 | } |
| 983 | |
Tomas Winkler | 48c2fc5 | 2008-08-06 14:22:01 +0300 | [diff] [blame] | 984 | ifsta->state = IEEE80211_STA_MLME_ASSOCIATE; |
Johannes Berg | 0c68ae26 | 2008-10-27 15:56:10 -0700 | [diff] [blame] | 985 | printk(KERN_DEBUG "%s: associate with AP %pM\n", |
| 986 | sdata->dev->name, ifsta->bssid); |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 987 | if (ieee80211_privacy_mismatch(sdata, ifsta)) { |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 988 | printk(KERN_DEBUG "%s: mismatch in privacy configuration and " |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 989 | "mixed-cell disabled - abort association\n", sdata->dev->name); |
Tomas Winkler | 48c2fc5 | 2008-08-06 14:22:01 +0300 | [diff] [blame] | 990 | ifsta->state = IEEE80211_STA_MLME_DISABLED; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 991 | return; |
| 992 | } |
| 993 | |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 994 | ieee80211_send_assoc(sdata, ifsta); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 995 | |
| 996 | mod_timer(&ifsta->timer, jiffies + IEEE80211_ASSOC_TIMEOUT); |
| 997 | } |
| 998 | |
| 999 | |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 1000 | static void ieee80211_associated(struct ieee80211_sub_if_data *sdata, |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1001 | struct ieee80211_if_sta *ifsta) |
| 1002 | { |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 1003 | struct ieee80211_local *local = sdata->local; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1004 | struct sta_info *sta; |
| 1005 | int disassoc; |
| 1006 | |
| 1007 | /* TODO: start monitoring current AP signal quality and number of |
| 1008 | * missed beacons. Scan other channels every now and then and search |
| 1009 | * for better APs. */ |
| 1010 | /* TODO: remove expired BSSes */ |
| 1011 | |
Tomas Winkler | 48c2fc5 | 2008-08-06 14:22:01 +0300 | [diff] [blame] | 1012 | ifsta->state = IEEE80211_STA_MLME_ASSOCIATED; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1013 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 1014 | rcu_read_lock(); |
| 1015 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1016 | sta = sta_info_get(local, ifsta->bssid); |
| 1017 | if (!sta) { |
Johannes Berg | 0c68ae26 | 2008-10-27 15:56:10 -0700 | [diff] [blame] | 1018 | printk(KERN_DEBUG "%s: No STA entry for own AP %pM\n", |
| 1019 | sdata->dev->name, ifsta->bssid); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1020 | disassoc = 1; |
| 1021 | } else { |
| 1022 | disassoc = 0; |
| 1023 | if (time_after(jiffies, |
| 1024 | sta->last_rx + IEEE80211_MONITORING_INTERVAL)) { |
Jiri Slaby | d6f2da5 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 1025 | if (ifsta->flags & IEEE80211_STA_PROBEREQ_POLL) { |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1026 | printk(KERN_DEBUG "%s: No ProbeResp from " |
Johannes Berg | 0c68ae26 | 2008-10-27 15:56:10 -0700 | [diff] [blame] | 1027 | "current AP %pM - assume out of " |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1028 | "range\n", |
Johannes Berg | 0c68ae26 | 2008-10-27 15:56:10 -0700 | [diff] [blame] | 1029 | sdata->dev->name, ifsta->bssid); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1030 | disassoc = 1; |
Jiri Slaby | d6f2da5 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 1031 | } else |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 1032 | ieee80211_send_probe_req(sdata, ifsta->bssid, |
Johannes Berg | 4dfe51e | 2008-09-19 05:10:34 +0200 | [diff] [blame] | 1033 | ifsta->ssid, |
| 1034 | ifsta->ssid_len); |
Jiri Slaby | d6f2da5 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 1035 | ifsta->flags ^= IEEE80211_STA_PROBEREQ_POLL; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1036 | } else { |
Jiri Slaby | d6f2da5 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 1037 | ifsta->flags &= ~IEEE80211_STA_PROBEREQ_POLL; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1038 | if (time_after(jiffies, ifsta->last_probe + |
| 1039 | IEEE80211_PROBE_INTERVAL)) { |
| 1040 | ifsta->last_probe = jiffies; |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 1041 | ieee80211_send_probe_req(sdata, ifsta->bssid, |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1042 | ifsta->ssid, |
| 1043 | ifsta->ssid_len); |
| 1044 | } |
| 1045 | } |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1046 | } |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 1047 | |
| 1048 | rcu_read_unlock(); |
| 1049 | |
Tomas Winkler | aa458d1 | 2008-09-09 00:32:12 +0300 | [diff] [blame] | 1050 | if (disassoc) |
| 1051 | ieee80211_set_disassoc(sdata, ifsta, true, true, |
| 1052 | WLAN_REASON_PREV_AUTH_NOT_VALID); |
| 1053 | else |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1054 | mod_timer(&ifsta->timer, jiffies + |
| 1055 | IEEE80211_MONITORING_INTERVAL); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1056 | } |
| 1057 | |
| 1058 | |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 1059 | static void ieee80211_auth_completed(struct ieee80211_sub_if_data *sdata, |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1060 | struct ieee80211_if_sta *ifsta) |
| 1061 | { |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 1062 | printk(KERN_DEBUG "%s: authenticated\n", sdata->dev->name); |
Jiri Slaby | d6f2da5 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 1063 | ifsta->flags |= IEEE80211_STA_AUTHENTICATED; |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 1064 | ieee80211_associate(sdata, ifsta); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1065 | } |
| 1066 | |
| 1067 | |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 1068 | static void ieee80211_auth_challenge(struct ieee80211_sub_if_data *sdata, |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1069 | struct ieee80211_if_sta *ifsta, |
| 1070 | struct ieee80211_mgmt *mgmt, |
| 1071 | size_t len) |
| 1072 | { |
| 1073 | u8 *pos; |
| 1074 | struct ieee802_11_elems elems; |
| 1075 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1076 | pos = mgmt->u.auth.variable; |
John W. Linville | 67a4cce | 2007-10-12 16:40:37 -0400 | [diff] [blame] | 1077 | ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), &elems); |
Johannes Berg | f4ea83d | 2008-06-30 15:10:46 +0200 | [diff] [blame] | 1078 | if (!elems.challenge) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1079 | return; |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 1080 | ieee80211_send_auth(sdata, ifsta, 3, elems.challenge - 2, |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1081 | elems.challenge_len + 2, 1); |
| 1082 | } |
| 1083 | |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 1084 | static void ieee80211_rx_mgmt_auth(struct ieee80211_sub_if_data *sdata, |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1085 | struct ieee80211_if_sta *ifsta, |
| 1086 | struct ieee80211_mgmt *mgmt, |
| 1087 | size_t len) |
| 1088 | { |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1089 | u16 auth_alg, auth_transaction, status_code; |
| 1090 | |
Tomas Winkler | 48c2fc5 | 2008-08-06 14:22:01 +0300 | [diff] [blame] | 1091 | if (ifsta->state != IEEE80211_STA_MLME_AUTHENTICATE && |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 1092 | sdata->vif.type != NL80211_IFTYPE_ADHOC) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1093 | return; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1094 | |
Johannes Berg | f4ea83d | 2008-06-30 15:10:46 +0200 | [diff] [blame] | 1095 | if (len < 24 + 6) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1096 | return; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1097 | |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 1098 | if (sdata->vif.type != NL80211_IFTYPE_ADHOC && |
Johannes Berg | f4ea83d | 2008-06-30 15:10:46 +0200 | [diff] [blame] | 1099 | memcmp(ifsta->bssid, mgmt->sa, ETH_ALEN) != 0) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1100 | return; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1101 | |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 1102 | if (sdata->vif.type != NL80211_IFTYPE_ADHOC && |
Johannes Berg | f4ea83d | 2008-06-30 15:10:46 +0200 | [diff] [blame] | 1103 | memcmp(ifsta->bssid, mgmt->bssid, ETH_ALEN) != 0) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1104 | return; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1105 | |
| 1106 | auth_alg = le16_to_cpu(mgmt->u.auth.auth_alg); |
| 1107 | auth_transaction = le16_to_cpu(mgmt->u.auth.auth_transaction); |
| 1108 | status_code = le16_to_cpu(mgmt->u.auth.status_code); |
| 1109 | |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 1110 | if (sdata->vif.type == NL80211_IFTYPE_ADHOC) { |
Johannes Berg | 135a211 | 2008-06-16 20:55:29 +0200 | [diff] [blame] | 1111 | /* |
| 1112 | * IEEE 802.11 standard does not require authentication in IBSS |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1113 | * networks and most implementations do not seem to use it. |
| 1114 | * However, try to reply to authentication attempts if someone |
| 1115 | * has actually implemented this. |
Johannes Berg | 135a211 | 2008-06-16 20:55:29 +0200 | [diff] [blame] | 1116 | */ |
Johannes Berg | f4ea83d | 2008-06-30 15:10:46 +0200 | [diff] [blame] | 1117 | if (auth_alg != WLAN_AUTH_OPEN || auth_transaction != 1) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1118 | return; |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 1119 | ieee80211_send_auth(sdata, ifsta, 2, NULL, 0, 0); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1120 | } |
| 1121 | |
| 1122 | if (auth_alg != ifsta->auth_alg || |
Johannes Berg | f4ea83d | 2008-06-30 15:10:46 +0200 | [diff] [blame] | 1123 | auth_transaction != ifsta->auth_transaction) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1124 | return; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1125 | |
| 1126 | if (status_code != WLAN_STATUS_SUCCESS) { |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1127 | if (status_code == WLAN_STATUS_NOT_SUPPORTED_AUTH_ALG) { |
| 1128 | u8 algs[3]; |
| 1129 | const int num_algs = ARRAY_SIZE(algs); |
| 1130 | int i, pos; |
| 1131 | algs[0] = algs[1] = algs[2] = 0xff; |
| 1132 | if (ifsta->auth_algs & IEEE80211_AUTH_ALG_OPEN) |
| 1133 | algs[0] = WLAN_AUTH_OPEN; |
| 1134 | if (ifsta->auth_algs & IEEE80211_AUTH_ALG_SHARED_KEY) |
| 1135 | algs[1] = WLAN_AUTH_SHARED_KEY; |
| 1136 | if (ifsta->auth_algs & IEEE80211_AUTH_ALG_LEAP) |
| 1137 | algs[2] = WLAN_AUTH_LEAP; |
| 1138 | if (ifsta->auth_alg == WLAN_AUTH_OPEN) |
| 1139 | pos = 0; |
| 1140 | else if (ifsta->auth_alg == WLAN_AUTH_SHARED_KEY) |
| 1141 | pos = 1; |
| 1142 | else |
| 1143 | pos = 2; |
| 1144 | for (i = 0; i < num_algs; i++) { |
| 1145 | pos++; |
| 1146 | if (pos >= num_algs) |
| 1147 | pos = 0; |
| 1148 | if (algs[pos] == ifsta->auth_alg || |
| 1149 | algs[pos] == 0xff) |
| 1150 | continue; |
| 1151 | if (algs[pos] == WLAN_AUTH_SHARED_KEY && |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 1152 | !ieee80211_sta_wep_configured(sdata)) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1153 | continue; |
| 1154 | ifsta->auth_alg = algs[pos]; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1155 | break; |
| 1156 | } |
| 1157 | } |
| 1158 | return; |
| 1159 | } |
| 1160 | |
| 1161 | switch (ifsta->auth_alg) { |
| 1162 | case WLAN_AUTH_OPEN: |
| 1163 | case WLAN_AUTH_LEAP: |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 1164 | ieee80211_auth_completed(sdata, ifsta); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1165 | break; |
| 1166 | case WLAN_AUTH_SHARED_KEY: |
| 1167 | if (ifsta->auth_transaction == 4) |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 1168 | ieee80211_auth_completed(sdata, ifsta); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1169 | else |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 1170 | ieee80211_auth_challenge(sdata, ifsta, mgmt, len); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1171 | break; |
| 1172 | } |
| 1173 | } |
| 1174 | |
| 1175 | |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 1176 | static void ieee80211_rx_mgmt_deauth(struct ieee80211_sub_if_data *sdata, |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1177 | struct ieee80211_if_sta *ifsta, |
| 1178 | struct ieee80211_mgmt *mgmt, |
| 1179 | size_t len) |
| 1180 | { |
| 1181 | u16 reason_code; |
| 1182 | |
Johannes Berg | f4ea83d | 2008-06-30 15:10:46 +0200 | [diff] [blame] | 1183 | if (len < 24 + 2) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1184 | return; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1185 | |
Johannes Berg | f4ea83d | 2008-06-30 15:10:46 +0200 | [diff] [blame] | 1186 | if (memcmp(ifsta->bssid, mgmt->sa, ETH_ALEN)) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1187 | return; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1188 | |
| 1189 | reason_code = le16_to_cpu(mgmt->u.deauth.reason_code); |
| 1190 | |
Johannes Berg | 988c0f7 | 2008-04-17 19:21:22 +0200 | [diff] [blame] | 1191 | if (ifsta->flags & IEEE80211_STA_AUTHENTICATED) |
Zhu Yi | 97c8b01 | 2008-10-28 15:58:31 +0800 | [diff] [blame] | 1192 | printk(KERN_DEBUG "%s: deauthenticated (Reason: %u)\n", |
| 1193 | sdata->dev->name, reason_code); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1194 | |
Tomas Winkler | 48c2fc5 | 2008-08-06 14:22:01 +0300 | [diff] [blame] | 1195 | if (ifsta->state == IEEE80211_STA_MLME_AUTHENTICATE || |
| 1196 | ifsta->state == IEEE80211_STA_MLME_ASSOCIATE || |
| 1197 | ifsta->state == IEEE80211_STA_MLME_ASSOCIATED) { |
Ron Rindjunsky | 9859b81 | 2008-08-09 03:02:19 +0300 | [diff] [blame] | 1198 | ifsta->state = IEEE80211_STA_MLME_DIRECT_PROBE; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1199 | mod_timer(&ifsta->timer, jiffies + |
| 1200 | IEEE80211_RETRY_AUTH_INTERVAL); |
| 1201 | } |
| 1202 | |
Tomas Winkler | aa458d1 | 2008-09-09 00:32:12 +0300 | [diff] [blame] | 1203 | ieee80211_set_disassoc(sdata, ifsta, true, false, 0); |
Jiri Slaby | d6f2da5 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 1204 | ifsta->flags &= ~IEEE80211_STA_AUTHENTICATED; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1205 | } |
| 1206 | |
| 1207 | |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 1208 | static void ieee80211_rx_mgmt_disassoc(struct ieee80211_sub_if_data *sdata, |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1209 | struct ieee80211_if_sta *ifsta, |
| 1210 | struct ieee80211_mgmt *mgmt, |
| 1211 | size_t len) |
| 1212 | { |
| 1213 | u16 reason_code; |
| 1214 | |
Johannes Berg | f4ea83d | 2008-06-30 15:10:46 +0200 | [diff] [blame] | 1215 | if (len < 24 + 2) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1216 | return; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1217 | |
Johannes Berg | f4ea83d | 2008-06-30 15:10:46 +0200 | [diff] [blame] | 1218 | if (memcmp(ifsta->bssid, mgmt->sa, ETH_ALEN)) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1219 | return; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1220 | |
| 1221 | reason_code = le16_to_cpu(mgmt->u.disassoc.reason_code); |
| 1222 | |
Jiri Slaby | d6f2da5 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 1223 | if (ifsta->flags & IEEE80211_STA_ASSOCIATED) |
Zhu Yi | 97c8b01 | 2008-10-28 15:58:31 +0800 | [diff] [blame] | 1224 | printk(KERN_DEBUG "%s: disassociated (Reason: %u)\n", |
| 1225 | sdata->dev->name, reason_code); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1226 | |
Tomas Winkler | 48c2fc5 | 2008-08-06 14:22:01 +0300 | [diff] [blame] | 1227 | if (ifsta->state == IEEE80211_STA_MLME_ASSOCIATED) { |
| 1228 | ifsta->state = IEEE80211_STA_MLME_ASSOCIATE; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1229 | mod_timer(&ifsta->timer, jiffies + |
| 1230 | IEEE80211_RETRY_AUTH_INTERVAL); |
| 1231 | } |
| 1232 | |
Vivek Natarajan | 5925d97 | 2008-11-21 22:19:50 -0800 | [diff] [blame] | 1233 | ieee80211_set_disassoc(sdata, ifsta, false, false, reason_code); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1234 | } |
| 1235 | |
| 1236 | |
Johannes Berg | 471b3ef | 2007-12-28 14:32:58 +0100 | [diff] [blame] | 1237 | static void ieee80211_rx_mgmt_assoc_resp(struct ieee80211_sub_if_data *sdata, |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1238 | struct ieee80211_if_sta *ifsta, |
| 1239 | struct ieee80211_mgmt *mgmt, |
| 1240 | size_t len, |
| 1241 | int reassoc) |
| 1242 | { |
Johannes Berg | 471b3ef | 2007-12-28 14:32:58 +0100 | [diff] [blame] | 1243 | struct ieee80211_local *local = sdata->local; |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 1244 | struct ieee80211_supported_band *sband; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1245 | struct sta_info *sta; |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 1246 | u64 rates, basic_rates; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1247 | u16 capab_info, status_code, aid; |
| 1248 | struct ieee802_11_elems elems; |
Johannes Berg | bda3933 | 2008-10-11 01:51:51 +0200 | [diff] [blame] | 1249 | struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1250 | u8 *pos; |
Johannes Berg | ae5eb02 | 2008-10-14 16:58:37 +0200 | [diff] [blame] | 1251 | u32 changed = 0; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1252 | int i, j; |
Johannes Berg | ddf4ac5 | 2008-10-22 11:41:38 +0200 | [diff] [blame] | 1253 | bool have_higher_than_11mbit = false, newsta = false; |
Johannes Berg | ae5eb02 | 2008-10-14 16:58:37 +0200 | [diff] [blame] | 1254 | u16 ap_ht_cap_flags; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1255 | |
| 1256 | /* AssocResp and ReassocResp have identical structure, so process both |
| 1257 | * of them in this function. */ |
| 1258 | |
Tomas Winkler | 48c2fc5 | 2008-08-06 14:22:01 +0300 | [diff] [blame] | 1259 | if (ifsta->state != IEEE80211_STA_MLME_ASSOCIATE) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1260 | return; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1261 | |
Johannes Berg | f4ea83d | 2008-06-30 15:10:46 +0200 | [diff] [blame] | 1262 | if (len < 24 + 6) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1263 | return; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1264 | |
Johannes Berg | f4ea83d | 2008-06-30 15:10:46 +0200 | [diff] [blame] | 1265 | if (memcmp(ifsta->bssid, mgmt->sa, ETH_ALEN) != 0) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1266 | return; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1267 | |
| 1268 | capab_info = le16_to_cpu(mgmt->u.assoc_resp.capab_info); |
| 1269 | status_code = le16_to_cpu(mgmt->u.assoc_resp.status_code); |
| 1270 | aid = le16_to_cpu(mgmt->u.assoc_resp.aid); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1271 | |
Johannes Berg | 0c68ae26 | 2008-10-27 15:56:10 -0700 | [diff] [blame] | 1272 | printk(KERN_DEBUG "%s: RX %sssocResp from %pM (capab=0x%x " |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1273 | "status=%d aid=%d)\n", |
Johannes Berg | 0c68ae26 | 2008-10-27 15:56:10 -0700 | [diff] [blame] | 1274 | sdata->dev->name, reassoc ? "Rea" : "A", mgmt->sa, |
Johannes Berg | ddd6858 | 2007-10-22 14:51:37 +0200 | [diff] [blame] | 1275 | capab_info, status_code, (u16)(aid & ~(BIT(15) | BIT(14)))); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1276 | |
| 1277 | if (status_code != WLAN_STATUS_SUCCESS) { |
| 1278 | printk(KERN_DEBUG "%s: AP denied association (code=%d)\n", |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 1279 | sdata->dev->name, status_code); |
Daniel Drake | 8a69aa9 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 1280 | /* if this was a reassociation, ensure we try a "full" |
| 1281 | * association next time. This works around some broken APs |
| 1282 | * which do not correctly reject reassociation requests. */ |
Jiri Slaby | d6f2da5 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 1283 | ifsta->flags &= ~IEEE80211_STA_PREV_BSSID_SET; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1284 | return; |
| 1285 | } |
| 1286 | |
Johannes Berg | 1dd84aa | 2007-10-10 12:03:41 +0200 | [diff] [blame] | 1287 | if ((aid & (BIT(15) | BIT(14))) != (BIT(15) | BIT(14))) |
| 1288 | printk(KERN_DEBUG "%s: invalid aid value %d; bits 15:14 not " |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 1289 | "set\n", sdata->dev->name, aid); |
Johannes Berg | 1dd84aa | 2007-10-10 12:03:41 +0200 | [diff] [blame] | 1290 | aid &= ~(BIT(15) | BIT(14)); |
| 1291 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1292 | pos = mgmt->u.assoc_resp.variable; |
John W. Linville | 67a4cce | 2007-10-12 16:40:37 -0400 | [diff] [blame] | 1293 | ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), &elems); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1294 | |
| 1295 | if (!elems.supp_rates) { |
| 1296 | printk(KERN_DEBUG "%s: no SuppRates element in AssocResp\n", |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 1297 | sdata->dev->name); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1298 | return; |
| 1299 | } |
| 1300 | |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 1301 | printk(KERN_DEBUG "%s: associated\n", sdata->dev->name); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1302 | ifsta->aid = aid; |
| 1303 | ifsta->ap_capab = capab_info; |
| 1304 | |
| 1305 | kfree(ifsta->assocresp_ies); |
| 1306 | ifsta->assocresp_ies_len = len - (pos - (u8 *) mgmt); |
Michael Wu | 0ec0b7a | 2007-07-27 15:43:24 +0200 | [diff] [blame] | 1307 | ifsta->assocresp_ies = kmalloc(ifsta->assocresp_ies_len, GFP_KERNEL); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1308 | if (ifsta->assocresp_ies) |
| 1309 | memcpy(ifsta->assocresp_ies, pos, ifsta->assocresp_ies_len); |
| 1310 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 1311 | rcu_read_lock(); |
| 1312 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1313 | /* Add STA entry for the AP */ |
| 1314 | sta = sta_info_get(local, ifsta->bssid); |
| 1315 | if (!sta) { |
Johannes Berg | c2b1345 | 2008-09-11 00:01:55 +0200 | [diff] [blame] | 1316 | struct ieee80211_bss *bss; |
Johannes Berg | ddf4ac5 | 2008-10-22 11:41:38 +0200 | [diff] [blame] | 1317 | |
| 1318 | newsta = true; |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 1319 | |
Johannes Berg | 73651ee | 2008-02-25 16:27:47 +0100 | [diff] [blame] | 1320 | sta = sta_info_alloc(sdata, ifsta->bssid, GFP_ATOMIC); |
| 1321 | if (!sta) { |
| 1322 | printk(KERN_DEBUG "%s: failed to alloc STA entry for" |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 1323 | " the AP\n", sdata->dev->name); |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 1324 | rcu_read_unlock(); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1325 | return; |
| 1326 | } |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 1327 | bss = ieee80211_rx_bss_get(local, ifsta->bssid, |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 1328 | local->hw.conf.channel->center_freq, |
John W. Linville | cffdd30 | 2007-10-05 14:23:27 -0400 | [diff] [blame] | 1329 | ifsta->ssid, ifsta->ssid_len); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1330 | if (bss) { |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1331 | sta->last_signal = bss->signal; |
Bruno Randolf | 566bfe5 | 2008-05-08 19:15:40 +0200 | [diff] [blame] | 1332 | sta->last_qual = bss->qual; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1333 | sta->last_noise = bss->noise; |
Johannes Berg | 3e122be | 2008-07-09 14:40:34 +0200 | [diff] [blame] | 1334 | ieee80211_rx_bss_put(local, bss); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1335 | } |
Johannes Berg | 73651ee | 2008-02-25 16:27:47 +0100 | [diff] [blame] | 1336 | |
Ron Rindjunsky | a61dae1 | 2008-08-10 00:54:34 +0300 | [diff] [blame] | 1337 | /* update new sta with its last rx activity */ |
| 1338 | sta->last_rx = jiffies; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1339 | } |
| 1340 | |
Johannes Berg | 73651ee | 2008-02-25 16:27:47 +0100 | [diff] [blame] | 1341 | /* |
| 1342 | * FIXME: Do we really need to update the sta_info's information here? |
| 1343 | * We already know about the AP (we found it in our list) so it |
| 1344 | * should already be filled with the right info, no? |
| 1345 | * As is stands, all this is racy because typically we assume |
| 1346 | * the information that is filled in here (except flags) doesn't |
| 1347 | * change while a STA structure is alive. As such, it should move |
| 1348 | * to between the sta_info_alloc() and sta_info_insert() above. |
| 1349 | */ |
| 1350 | |
Johannes Berg | 07346f81 | 2008-05-03 01:02:02 +0200 | [diff] [blame] | 1351 | set_sta_flags(sta, WLAN_STA_AUTH | WLAN_STA_ASSOC | WLAN_STA_ASSOC_AP | |
| 1352 | WLAN_STA_AUTHORIZED); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1353 | |
| 1354 | rates = 0; |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 1355 | basic_rates = 0; |
| 1356 | sband = local->hw.wiphy->bands[local->hw.conf.channel->band]; |
| 1357 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1358 | for (i = 0; i < elems.supp_rates_len; i++) { |
| 1359 | int rate = (elems.supp_rates[i] & 0x7f) * 5; |
Tomas Winkler | d61272c | 2008-10-30 17:08:08 +0200 | [diff] [blame] | 1360 | bool is_basic = !!(elems.supp_rates[i] & 0x80); |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 1361 | |
| 1362 | if (rate > 110) |
| 1363 | have_higher_than_11mbit = true; |
| 1364 | |
| 1365 | for (j = 0; j < sband->n_bitrates; j++) { |
Tomas Winkler | d61272c | 2008-10-30 17:08:08 +0200 | [diff] [blame] | 1366 | if (sband->bitrates[j].bitrate == rate) { |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1367 | rates |= BIT(j); |
Tomas Winkler | d61272c | 2008-10-30 17:08:08 +0200 | [diff] [blame] | 1368 | if (is_basic) |
| 1369 | basic_rates |= BIT(j); |
| 1370 | break; |
| 1371 | } |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 1372 | } |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1373 | } |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 1374 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1375 | for (i = 0; i < elems.ext_supp_rates_len; i++) { |
| 1376 | int rate = (elems.ext_supp_rates[i] & 0x7f) * 5; |
Tomas Winkler | d61272c | 2008-10-30 17:08:08 +0200 | [diff] [blame] | 1377 | bool is_basic = !!(elems.supp_rates[i] & 0x80); |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 1378 | |
| 1379 | if (rate > 110) |
| 1380 | have_higher_than_11mbit = true; |
| 1381 | |
| 1382 | for (j = 0; j < sband->n_bitrates; j++) { |
Tomas Winkler | d61272c | 2008-10-30 17:08:08 +0200 | [diff] [blame] | 1383 | if (sband->bitrates[j].bitrate == rate) { |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1384 | rates |= BIT(j); |
Tomas Winkler | d61272c | 2008-10-30 17:08:08 +0200 | [diff] [blame] | 1385 | if (is_basic) |
| 1386 | basic_rates |= BIT(j); |
| 1387 | break; |
| 1388 | } |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 1389 | } |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1390 | } |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 1391 | |
Johannes Berg | 323ce79 | 2008-09-11 02:45:11 +0200 | [diff] [blame] | 1392 | sta->sta.supp_rates[local->hw.conf.channel->band] = rates; |
Johannes Berg | bda3933 | 2008-10-11 01:51:51 +0200 | [diff] [blame] | 1393 | sdata->vif.bss_conf.basic_rates = basic_rates; |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 1394 | |
| 1395 | /* cf. IEEE 802.11 9.2.12 */ |
| 1396 | if (local->hw.conf.channel->band == IEEE80211_BAND_2GHZ && |
| 1397 | have_higher_than_11mbit) |
| 1398 | sdata->flags |= IEEE80211_SDATA_OPERATING_GMODE; |
| 1399 | else |
| 1400 | sdata->flags &= ~IEEE80211_SDATA_OPERATING_GMODE; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1401 | |
Johannes Berg | ae5eb02 | 2008-10-14 16:58:37 +0200 | [diff] [blame] | 1402 | if (elems.ht_cap_elem) |
| 1403 | ieee80211_ht_cap_ie_to_sta_ht_cap(sband, |
Johannes Berg | d9fe60d | 2008-10-09 12:13:49 +0200 | [diff] [blame] | 1404 | elems.ht_cap_elem, &sta->sta.ht_cap); |
Johannes Berg | ae5eb02 | 2008-10-14 16:58:37 +0200 | [diff] [blame] | 1405 | |
| 1406 | ap_ht_cap_flags = sta->sta.ht_cap.cap; |
Ron Rindjunsky | d3c990f | 2007-11-26 16:14:34 +0200 | [diff] [blame] | 1407 | |
Johannes Berg | 4b7679a | 2008-09-18 18:14:18 +0200 | [diff] [blame] | 1408 | rate_control_rate_init(sta); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1409 | |
Johannes Berg | ddf4ac5 | 2008-10-22 11:41:38 +0200 | [diff] [blame] | 1410 | if (elems.wmm_param) |
Johannes Berg | 07346f81 | 2008-05-03 01:02:02 +0200 | [diff] [blame] | 1411 | set_sta_flags(sta, WLAN_STA_WME); |
Johannes Berg | ddf4ac5 | 2008-10-22 11:41:38 +0200 | [diff] [blame] | 1412 | |
| 1413 | if (newsta) { |
| 1414 | int err = sta_info_insert(sta); |
| 1415 | if (err) { |
| 1416 | printk(KERN_DEBUG "%s: failed to insert STA entry for" |
| 1417 | " the AP (error %d)\n", sdata->dev->name, err); |
| 1418 | rcu_read_unlock(); |
| 1419 | return; |
| 1420 | } |
| 1421 | } |
| 1422 | |
| 1423 | rcu_read_unlock(); |
| 1424 | |
| 1425 | if (elems.wmm_param) |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 1426 | ieee80211_sta_wmm_params(local, ifsta, elems.wmm_param, |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1427 | elems.wmm_param_len); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1428 | |
Johannes Berg | ae5eb02 | 2008-10-14 16:58:37 +0200 | [diff] [blame] | 1429 | if (elems.ht_info_elem && elems.wmm_param && |
| 1430 | (ifsta->flags & IEEE80211_STA_WMM_ENABLED)) |
| 1431 | changed |= ieee80211_enable_ht(sdata, elems.ht_info_elem, |
| 1432 | ap_ht_cap_flags); |
| 1433 | |
Tomas Winkler | 21c0cbe | 2008-03-28 16:33:34 -0700 | [diff] [blame] | 1434 | /* set AID and assoc capability, |
| 1435 | * ieee80211_set_associated() will tell the driver */ |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 1436 | bss_conf->aid = aid; |
Tomas Winkler | 21c0cbe | 2008-03-28 16:33:34 -0700 | [diff] [blame] | 1437 | bss_conf->assoc_capability = capab_info; |
Johannes Berg | ae5eb02 | 2008-10-14 16:58:37 +0200 | [diff] [blame] | 1438 | ieee80211_set_associated(sdata, ifsta, changed); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1439 | |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 1440 | ieee80211_associated(sdata, ifsta); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1441 | } |
| 1442 | |
| 1443 | |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 1444 | static int ieee80211_sta_join_ibss(struct ieee80211_sub_if_data *sdata, |
Bruno Randolf | a607268 | 2008-02-18 11:21:15 +0900 | [diff] [blame] | 1445 | struct ieee80211_if_sta *ifsta, |
Johannes Berg | c2b1345 | 2008-09-11 00:01:55 +0200 | [diff] [blame] | 1446 | struct ieee80211_bss *bss) |
Bruno Randolf | a607268 | 2008-02-18 11:21:15 +0900 | [diff] [blame] | 1447 | { |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 1448 | struct ieee80211_local *local = sdata->local; |
Bruno Randolf | a607268 | 2008-02-18 11:21:15 +0900 | [diff] [blame] | 1449 | int res, rates, i, j; |
| 1450 | struct sk_buff *skb; |
| 1451 | struct ieee80211_mgmt *mgmt; |
Bruno Randolf | a607268 | 2008-02-18 11:21:15 +0900 | [diff] [blame] | 1452 | u8 *pos; |
Bruno Randolf | a607268 | 2008-02-18 11:21:15 +0900 | [diff] [blame] | 1453 | struct ieee80211_supported_band *sband; |
Dan Williams | 507b06d | 2008-06-03 23:39:55 -0400 | [diff] [blame] | 1454 | union iwreq_data wrqu; |
Bruno Randolf | a607268 | 2008-02-18 11:21:15 +0900 | [diff] [blame] | 1455 | |
Rami Rosen | e2ef12d | 2008-10-22 09:58:39 +0200 | [diff] [blame] | 1456 | skb = dev_alloc_skb(local->hw.extra_tx_headroom + 400); |
| 1457 | if (!skb) { |
| 1458 | printk(KERN_DEBUG "%s: failed to allocate buffer for probe " |
| 1459 | "response\n", sdata->dev->name); |
| 1460 | return -ENOMEM; |
| 1461 | } |
| 1462 | |
Bruno Randolf | a607268 | 2008-02-18 11:21:15 +0900 | [diff] [blame] | 1463 | sband = local->hw.wiphy->bands[local->hw.conf.channel->band]; |
| 1464 | |
| 1465 | /* Remove possible STA entries from other IBSS networks. */ |
Johannes Berg | dc6676b | 2008-03-31 19:23:03 +0200 | [diff] [blame] | 1466 | sta_info_flush_delayed(sdata); |
Bruno Randolf | a607268 | 2008-02-18 11:21:15 +0900 | [diff] [blame] | 1467 | |
| 1468 | if (local->ops->reset_tsf) { |
| 1469 | /* Reset own TSF to allow time synchronization work. */ |
| 1470 | local->ops->reset_tsf(local_to_hw(local)); |
| 1471 | } |
| 1472 | memcpy(ifsta->bssid, bss->bssid, ETH_ALEN); |
Johannes Berg | 9d139c8 | 2008-07-09 14:40:37 +0200 | [diff] [blame] | 1473 | res = ieee80211_if_config(sdata, IEEE80211_IFCC_BSSID); |
Bruno Randolf | a607268 | 2008-02-18 11:21:15 +0900 | [diff] [blame] | 1474 | if (res) |
| 1475 | return res; |
| 1476 | |
| 1477 | local->hw.conf.beacon_int = bss->beacon_int >= 10 ? bss->beacon_int : 10; |
| 1478 | |
Bruno Randolf | a607268 | 2008-02-18 11:21:15 +0900 | [diff] [blame] | 1479 | sdata->drop_unencrypted = bss->capability & |
| 1480 | WLAN_CAPABILITY_PRIVACY ? 1 : 0; |
| 1481 | |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 1482 | res = ieee80211_set_freq(sdata, bss->freq); |
Bruno Randolf | a607268 | 2008-02-18 11:21:15 +0900 | [diff] [blame] | 1483 | |
Assaf Krauss | be038b3 | 2008-06-05 19:55:21 +0300 | [diff] [blame] | 1484 | if (res) |
| 1485 | return res; |
Bruno Randolf | a607268 | 2008-02-18 11:21:15 +0900 | [diff] [blame] | 1486 | |
Johannes Berg | 9d139c8 | 2008-07-09 14:40:37 +0200 | [diff] [blame] | 1487 | /* Build IBSS probe response */ |
Bruno Randolf | a607268 | 2008-02-18 11:21:15 +0900 | [diff] [blame] | 1488 | |
Rami Rosen | e2ef12d | 2008-10-22 09:58:39 +0200 | [diff] [blame] | 1489 | skb_reserve(skb, local->hw.extra_tx_headroom); |
Bruno Randolf | a607268 | 2008-02-18 11:21:15 +0900 | [diff] [blame] | 1490 | |
Rami Rosen | e2ef12d | 2008-10-22 09:58:39 +0200 | [diff] [blame] | 1491 | mgmt = (struct ieee80211_mgmt *) |
| 1492 | skb_put(skb, 24 + sizeof(mgmt->u.beacon)); |
| 1493 | memset(mgmt, 0, 24 + sizeof(mgmt->u.beacon)); |
| 1494 | mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT | |
| 1495 | IEEE80211_STYPE_PROBE_RESP); |
| 1496 | memset(mgmt->da, 0xff, ETH_ALEN); |
| 1497 | memcpy(mgmt->sa, sdata->dev->dev_addr, ETH_ALEN); |
| 1498 | memcpy(mgmt->bssid, ifsta->bssid, ETH_ALEN); |
| 1499 | mgmt->u.beacon.beacon_int = |
| 1500 | cpu_to_le16(local->hw.conf.beacon_int); |
| 1501 | mgmt->u.beacon.timestamp = cpu_to_le64(bss->timestamp); |
| 1502 | mgmt->u.beacon.capab_info = cpu_to_le16(bss->capability); |
Bruno Randolf | a607268 | 2008-02-18 11:21:15 +0900 | [diff] [blame] | 1503 | |
Rami Rosen | e2ef12d | 2008-10-22 09:58:39 +0200 | [diff] [blame] | 1504 | pos = skb_put(skb, 2 + ifsta->ssid_len); |
| 1505 | *pos++ = WLAN_EID_SSID; |
| 1506 | *pos++ = ifsta->ssid_len; |
| 1507 | memcpy(pos, ifsta->ssid, ifsta->ssid_len); |
Bruno Randolf | a607268 | 2008-02-18 11:21:15 +0900 | [diff] [blame] | 1508 | |
Rami Rosen | e2ef12d | 2008-10-22 09:58:39 +0200 | [diff] [blame] | 1509 | rates = bss->supp_rates_len; |
| 1510 | if (rates > 8) |
| 1511 | rates = 8; |
| 1512 | pos = skb_put(skb, 2 + rates); |
| 1513 | *pos++ = WLAN_EID_SUPP_RATES; |
| 1514 | *pos++ = rates; |
| 1515 | memcpy(pos, bss->supp_rates, rates); |
Bruno Randolf | a607268 | 2008-02-18 11:21:15 +0900 | [diff] [blame] | 1516 | |
Rami Rosen | e2ef12d | 2008-10-22 09:58:39 +0200 | [diff] [blame] | 1517 | if (bss->band == IEEE80211_BAND_2GHZ) { |
| 1518 | pos = skb_put(skb, 2 + 1); |
| 1519 | *pos++ = WLAN_EID_DS_PARAMS; |
| 1520 | *pos++ = 1; |
| 1521 | *pos++ = ieee80211_frequency_to_channel(bss->freq); |
Bruno Randolf | a607268 | 2008-02-18 11:21:15 +0900 | [diff] [blame] | 1522 | } |
| 1523 | |
Rami Rosen | e2ef12d | 2008-10-22 09:58:39 +0200 | [diff] [blame] | 1524 | pos = skb_put(skb, 2 + 2); |
| 1525 | *pos++ = WLAN_EID_IBSS_PARAMS; |
| 1526 | *pos++ = 2; |
| 1527 | /* FIX: set ATIM window based on scan results */ |
| 1528 | *pos++ = 0; |
| 1529 | *pos++ = 0; |
| 1530 | |
| 1531 | if (bss->supp_rates_len > 8) { |
| 1532 | rates = bss->supp_rates_len - 8; |
| 1533 | pos = skb_put(skb, 2 + rates); |
| 1534 | *pos++ = WLAN_EID_EXT_SUPP_RATES; |
| 1535 | *pos++ = rates; |
| 1536 | memcpy(pos, &bss->supp_rates[8], rates); |
| 1537 | } |
| 1538 | |
| 1539 | ifsta->probe_resp = skb; |
| 1540 | |
| 1541 | ieee80211_if_config(sdata, IEEE80211_IFCC_BEACON); |
| 1542 | |
| 1543 | |
Johannes Berg | 9d139c8 | 2008-07-09 14:40:37 +0200 | [diff] [blame] | 1544 | rates = 0; |
| 1545 | sband = local->hw.wiphy->bands[local->hw.conf.channel->band]; |
| 1546 | for (i = 0; i < bss->supp_rates_len; i++) { |
| 1547 | int bitrate = (bss->supp_rates[i] & 0x7f) * 5; |
| 1548 | for (j = 0; j < sband->n_bitrates; j++) |
| 1549 | if (sband->bitrates[j].bitrate == bitrate) |
| 1550 | rates |= BIT(j); |
| 1551 | } |
| 1552 | ifsta->supp_rates_bits[local->hw.conf.channel->band] = rates; |
| 1553 | |
Johannes Berg | b079ada | 2008-09-09 09:32:59 +0200 | [diff] [blame] | 1554 | ieee80211_sta_def_wmm_params(sdata, bss); |
Johannes Berg | 9d139c8 | 2008-07-09 14:40:37 +0200 | [diff] [blame] | 1555 | |
Tomas Winkler | 48c2fc5 | 2008-08-06 14:22:01 +0300 | [diff] [blame] | 1556 | ifsta->state = IEEE80211_STA_MLME_IBSS_JOINED; |
Bruno Randolf | a607268 | 2008-02-18 11:21:15 +0900 | [diff] [blame] | 1557 | mod_timer(&ifsta->timer, jiffies + IEEE80211_IBSS_MERGE_INTERVAL); |
| 1558 | |
Emmanuel Grumbach | 4492bea | 2008-09-22 17:10:10 +0300 | [diff] [blame] | 1559 | ieee80211_led_assoc(local, true); |
| 1560 | |
Dan Williams | 507b06d | 2008-06-03 23:39:55 -0400 | [diff] [blame] | 1561 | memset(&wrqu, 0, sizeof(wrqu)); |
| 1562 | memcpy(wrqu.ap_addr.sa_data, bss->bssid, ETH_ALEN); |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 1563 | wireless_send_event(sdata->dev, SIOCGIWAP, &wrqu, NULL); |
Bruno Randolf | a607268 | 2008-02-18 11:21:15 +0900 | [diff] [blame] | 1564 | |
| 1565 | return res; |
| 1566 | } |
| 1567 | |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 1568 | static void ieee80211_rx_bss_info(struct ieee80211_sub_if_data *sdata, |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1569 | struct ieee80211_mgmt *mgmt, |
| 1570 | size_t len, |
| 1571 | struct ieee80211_rx_status *rx_status, |
Johannes Berg | 98c8fcc | 2008-09-08 17:44:26 +0200 | [diff] [blame] | 1572 | struct ieee802_11_elems *elems, |
| 1573 | bool beacon) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1574 | { |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 1575 | struct ieee80211_local *local = sdata->local; |
Johannes Berg | 98c8fcc | 2008-09-08 17:44:26 +0200 | [diff] [blame] | 1576 | int freq; |
Johannes Berg | c2b1345 | 2008-09-11 00:01:55 +0200 | [diff] [blame] | 1577 | struct ieee80211_bss *bss; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1578 | struct sta_info *sta; |
Johannes Berg | fab7d4a | 2008-03-16 18:42:44 +0100 | [diff] [blame] | 1579 | struct ieee80211_channel *channel; |
Emmanuel Grumbach | 8e1535d | 2008-09-03 23:42:20 +0300 | [diff] [blame] | 1580 | u64 beacon_timestamp, rx_timestamp; |
| 1581 | u64 supp_rates = 0; |
Emmanuel Grumbach | 8e1535d | 2008-09-03 23:42:20 +0300 | [diff] [blame] | 1582 | enum ieee80211_band band = rx_status->band; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1583 | |
Johannes Berg | 5bda617 | 2008-09-08 11:05:10 +0200 | [diff] [blame] | 1584 | if (elems->ds_params && elems->ds_params_len == 1) |
| 1585 | freq = ieee80211_channel_to_frequency(elems->ds_params[0]); |
| 1586 | else |
| 1587 | freq = rx_status->freq; |
| 1588 | |
| 1589 | channel = ieee80211_get_channel(local->hw.wiphy, freq); |
| 1590 | |
| 1591 | if (!channel || channel->flags & IEEE80211_CHAN_DISABLED) |
| 1592 | return; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1593 | |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 1594 | if (sdata->vif.type == NL80211_IFTYPE_ADHOC && elems->supp_rates && |
Emmanuel Grumbach | 8e1535d | 2008-09-03 23:42:20 +0300 | [diff] [blame] | 1595 | memcmp(mgmt->bssid, sdata->u.sta.bssid, ETH_ALEN) == 0) { |
Emmanuel Grumbach | 8e1535d | 2008-09-03 23:42:20 +0300 | [diff] [blame] | 1596 | supp_rates = ieee80211_sta_get_rates(local, elems, band); |
| 1597 | |
Johannes Berg | 69e6c01 | 2008-09-08 11:05:08 +0200 | [diff] [blame] | 1598 | rcu_read_lock(); |
| 1599 | |
Emmanuel Grumbach | 8e1535d | 2008-09-03 23:42:20 +0300 | [diff] [blame] | 1600 | sta = sta_info_get(local, mgmt->sa); |
| 1601 | if (sta) { |
| 1602 | u64 prev_rates; |
| 1603 | |
Johannes Berg | 323ce79 | 2008-09-11 02:45:11 +0200 | [diff] [blame] | 1604 | prev_rates = sta->sta.supp_rates[band]; |
Emmanuel Grumbach | 8e1535d | 2008-09-03 23:42:20 +0300 | [diff] [blame] | 1605 | /* make sure mandatory rates are always added */ |
Johannes Berg | 323ce79 | 2008-09-11 02:45:11 +0200 | [diff] [blame] | 1606 | sta->sta.supp_rates[band] = supp_rates | |
Johannes Berg | 96dd22a | 2008-09-11 00:01:57 +0200 | [diff] [blame] | 1607 | ieee80211_mandatory_rates(local, band); |
Emmanuel Grumbach | 8e1535d | 2008-09-03 23:42:20 +0300 | [diff] [blame] | 1608 | |
| 1609 | #ifdef CONFIG_MAC80211_IBSS_DEBUG |
Johannes Berg | 323ce79 | 2008-09-11 02:45:11 +0200 | [diff] [blame] | 1610 | if (sta->sta.supp_rates[band] != prev_rates) |
Emmanuel Grumbach | 8e1535d | 2008-09-03 23:42:20 +0300 | [diff] [blame] | 1611 | printk(KERN_DEBUG "%s: updated supp_rates set " |
Johannes Berg | 0c68ae26 | 2008-10-27 15:56:10 -0700 | [diff] [blame] | 1612 | "for %pM based on beacon info (0x%llx | " |
Emmanuel Grumbach | 8e1535d | 2008-09-03 23:42:20 +0300 | [diff] [blame] | 1613 | "0x%llx -> 0x%llx)\n", |
Johannes Berg | 17741cd | 2008-09-11 00:02:02 +0200 | [diff] [blame] | 1614 | sdata->dev->name, |
Johannes Berg | 0c68ae26 | 2008-10-27 15:56:10 -0700 | [diff] [blame] | 1615 | sta->sta.addr, |
Emmanuel Grumbach | 8e1535d | 2008-09-03 23:42:20 +0300 | [diff] [blame] | 1616 | (unsigned long long) prev_rates, |
| 1617 | (unsigned long long) supp_rates, |
Johannes Berg | 323ce79 | 2008-09-11 02:45:11 +0200 | [diff] [blame] | 1618 | (unsigned long long) sta->sta.supp_rates[band]); |
Emmanuel Grumbach | 8e1535d | 2008-09-03 23:42:20 +0300 | [diff] [blame] | 1619 | #endif |
| 1620 | } else { |
Rami Rosen | ab1f5c0 | 2008-12-11 14:00:25 +0200 | [diff] [blame] | 1621 | ieee80211_ibss_add_sta(sdata, mgmt->bssid, mgmt->sa, supp_rates); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1622 | } |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1623 | |
Johannes Berg | 69e6c01 | 2008-09-08 11:05:08 +0200 | [diff] [blame] | 1624 | rcu_read_unlock(); |
| 1625 | } |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 1626 | |
Johannes Berg | 98c8fcc | 2008-09-08 17:44:26 +0200 | [diff] [blame] | 1627 | bss = ieee80211_bss_info_update(local, rx_status, mgmt, len, elems, |
| 1628 | freq, beacon); |
| 1629 | if (!bss) |
| 1630 | return; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1631 | |
Johannes Berg | 98c8fcc | 2008-09-08 17:44:26 +0200 | [diff] [blame] | 1632 | /* was just updated in ieee80211_bss_info_update */ |
| 1633 | beacon_timestamp = bss->timestamp; |
Daniel Drake | 5628221 | 2007-07-10 19:32:10 +0200 | [diff] [blame] | 1634 | |
Johannes Berg | 30b89b0 | 2008-04-16 17:43:20 +0200 | [diff] [blame] | 1635 | /* |
| 1636 | * In STA mode, the remaining parameters should not be overridden |
| 1637 | * by beacons because they're not necessarily accurate there. |
| 1638 | */ |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 1639 | if (sdata->vif.type != NL80211_IFTYPE_ADHOC && |
Ron Rindjunsky | 9859b81 | 2008-08-09 03:02:19 +0300 | [diff] [blame] | 1640 | bss->last_probe_resp && beacon) { |
Johannes Berg | 3e122be | 2008-07-09 14:40:34 +0200 | [diff] [blame] | 1641 | ieee80211_rx_bss_put(local, bss); |
Johannes Berg | 30b89b0 | 2008-04-16 17:43:20 +0200 | [diff] [blame] | 1642 | return; |
| 1643 | } |
| 1644 | |
Bruno Randolf | 9d9bf77 | 2008-02-18 11:21:36 +0900 | [diff] [blame] | 1645 | /* check if we need to merge IBSS */ |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 1646 | if (sdata->vif.type == NL80211_IFTYPE_ADHOC && beacon && |
Johannes Berg | fba4a1e | 2008-02-21 11:08:33 +0100 | [diff] [blame] | 1647 | bss->capability & WLAN_CAPABILITY_IBSS && |
Bruno Randolf | 9d9bf77 | 2008-02-18 11:21:36 +0900 | [diff] [blame] | 1648 | bss->freq == local->oper_channel->center_freq && |
Ester Kummer | ae6a44e | 2008-06-27 18:54:48 +0300 | [diff] [blame] | 1649 | elems->ssid_len == sdata->u.sta.ssid_len && |
| 1650 | memcmp(elems->ssid, sdata->u.sta.ssid, |
| 1651 | sdata->u.sta.ssid_len) == 0) { |
Bruno Randolf | 9d9bf77 | 2008-02-18 11:21:36 +0900 | [diff] [blame] | 1652 | if (rx_status->flag & RX_FLAG_TSFT) { |
| 1653 | /* in order for correct IBSS merging we need mactime |
| 1654 | * |
| 1655 | * since mactime is defined as the time the first data |
| 1656 | * symbol of the frame hits the PHY, and the timestamp |
| 1657 | * of the beacon is defined as "the time that the data |
| 1658 | * symbol containing the first bit of the timestamp is |
| 1659 | * transmitted to the PHY plus the transmitting STA’s |
| 1660 | * delays through its local PHY from the MAC-PHY |
| 1661 | * interface to its interface with the WM" |
| 1662 | * (802.11 11.1.2) - equals the time this bit arrives at |
| 1663 | * the receiver - we have to take into account the |
| 1664 | * offset between the two. |
| 1665 | * e.g: at 1 MBit that means mactime is 192 usec earlier |
| 1666 | * (=24 bytes * 8 usecs/byte) than the beacon timestamp. |
| 1667 | */ |
Jouni Malinen | 0fb8ca4 | 2008-12-12 14:38:33 +0200 | [diff] [blame] | 1668 | int rate; |
| 1669 | if (rx_status->flag & RX_FLAG_HT) { |
| 1670 | rate = 65; /* TODO: HT rates */ |
| 1671 | } else { |
| 1672 | rate = local->hw.wiphy->bands[band]-> |
Bruno Randolf | 9d9bf77 | 2008-02-18 11:21:36 +0900 | [diff] [blame] | 1673 | bitrates[rx_status->rate_idx].bitrate; |
Jouni Malinen | 0fb8ca4 | 2008-12-12 14:38:33 +0200 | [diff] [blame] | 1674 | } |
Bruno Randolf | 9d9bf77 | 2008-02-18 11:21:36 +0900 | [diff] [blame] | 1675 | rx_timestamp = rx_status->mactime + (24 * 8 * 10 / rate); |
| 1676 | } else if (local && local->ops && local->ops->get_tsf) |
| 1677 | /* second best option: get current TSF */ |
| 1678 | rx_timestamp = local->ops->get_tsf(local_to_hw(local)); |
| 1679 | else |
| 1680 | /* can't merge without knowing the TSF */ |
| 1681 | rx_timestamp = -1LLU; |
| 1682 | #ifdef CONFIG_MAC80211_IBSS_DEBUG |
Johannes Berg | 0c68ae26 | 2008-10-27 15:56:10 -0700 | [diff] [blame] | 1683 | printk(KERN_DEBUG "RX beacon SA=%pM BSSID=" |
| 1684 | "%pM TSF=0x%llx BCN=0x%llx diff=%lld @%lu\n", |
| 1685 | mgmt->sa, mgmt->bssid, |
Bruno Randolf | 9d9bf77 | 2008-02-18 11:21:36 +0900 | [diff] [blame] | 1686 | (unsigned long long)rx_timestamp, |
| 1687 | (unsigned long long)beacon_timestamp, |
| 1688 | (unsigned long long)(rx_timestamp - beacon_timestamp), |
| 1689 | jiffies); |
| 1690 | #endif /* CONFIG_MAC80211_IBSS_DEBUG */ |
| 1691 | if (beacon_timestamp > rx_timestamp) { |
John W. Linville | 576fdea | 2008-08-26 20:33:34 -0400 | [diff] [blame] | 1692 | #ifdef CONFIG_MAC80211_IBSS_DEBUG |
Johannes Berg | f4ea83d | 2008-06-30 15:10:46 +0200 | [diff] [blame] | 1693 | printk(KERN_DEBUG "%s: beacon TSF higher than " |
Johannes Berg | 0c68ae26 | 2008-10-27 15:56:10 -0700 | [diff] [blame] | 1694 | "local TSF - IBSS merge with BSSID %pM\n", |
| 1695 | sdata->dev->name, mgmt->bssid); |
Johannes Berg | fba4a1e | 2008-02-21 11:08:33 +0100 | [diff] [blame] | 1696 | #endif |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 1697 | ieee80211_sta_join_ibss(sdata, &sdata->u.sta, bss); |
Rami Rosen | ab1f5c0 | 2008-12-11 14:00:25 +0200 | [diff] [blame] | 1698 | ieee80211_ibss_add_sta(sdata, mgmt->bssid, mgmt->sa, supp_rates); |
Bruno Randolf | 9d9bf77 | 2008-02-18 11:21:36 +0900 | [diff] [blame] | 1699 | } |
| 1700 | } |
| 1701 | |
Johannes Berg | 3e122be | 2008-07-09 14:40:34 +0200 | [diff] [blame] | 1702 | ieee80211_rx_bss_put(local, bss); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1703 | } |
| 1704 | |
| 1705 | |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 1706 | static void ieee80211_rx_mgmt_probe_resp(struct ieee80211_sub_if_data *sdata, |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1707 | struct ieee80211_mgmt *mgmt, |
| 1708 | size_t len, |
| 1709 | struct ieee80211_rx_status *rx_status) |
| 1710 | { |
Ester Kummer | ae6a44e | 2008-06-27 18:54:48 +0300 | [diff] [blame] | 1711 | size_t baselen; |
| 1712 | struct ieee802_11_elems elems; |
Ron Rindjunsky | 9859b81 | 2008-08-09 03:02:19 +0300 | [diff] [blame] | 1713 | struct ieee80211_if_sta *ifsta = &sdata->u.sta; |
Ester Kummer | ae6a44e | 2008-06-27 18:54:48 +0300 | [diff] [blame] | 1714 | |
Tomas Winkler | 8e7cdbb | 2008-08-03 14:32:01 +0300 | [diff] [blame] | 1715 | if (memcmp(mgmt->da, sdata->dev->dev_addr, ETH_ALEN)) |
| 1716 | return; /* ignore ProbeResp to foreign address */ |
| 1717 | |
Ester Kummer | ae6a44e | 2008-06-27 18:54:48 +0300 | [diff] [blame] | 1718 | baselen = (u8 *) mgmt->u.probe_resp.variable - (u8 *) mgmt; |
| 1719 | if (baselen > len) |
| 1720 | return; |
| 1721 | |
| 1722 | ieee802_11_parse_elems(mgmt->u.probe_resp.variable, len - baselen, |
| 1723 | &elems); |
| 1724 | |
Johannes Berg | 98c8fcc | 2008-09-08 17:44:26 +0200 | [diff] [blame] | 1725 | ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems, false); |
Ron Rindjunsky | 9859b81 | 2008-08-09 03:02:19 +0300 | [diff] [blame] | 1726 | |
| 1727 | /* direct probe may be part of the association flow */ |
| 1728 | if (test_and_clear_bit(IEEE80211_STA_REQ_DIRECT_PROBE, |
| 1729 | &ifsta->request)) { |
| 1730 | printk(KERN_DEBUG "%s direct probe responded\n", |
| 1731 | sdata->dev->name); |
| 1732 | ieee80211_authenticate(sdata, ifsta); |
| 1733 | } |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1734 | } |
| 1735 | |
| 1736 | |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 1737 | static void ieee80211_rx_mgmt_beacon(struct ieee80211_sub_if_data *sdata, |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1738 | struct ieee80211_mgmt *mgmt, |
| 1739 | size_t len, |
| 1740 | struct ieee80211_rx_status *rx_status) |
| 1741 | { |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1742 | struct ieee80211_if_sta *ifsta; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1743 | size_t baselen; |
| 1744 | struct ieee802_11_elems elems; |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 1745 | struct ieee80211_local *local = sdata->local; |
Johannes Berg | 471b3ef | 2007-12-28 14:32:58 +0100 | [diff] [blame] | 1746 | u32 changed = 0; |
Vivek Natarajan | a97b77b | 2008-12-23 18:39:02 -0800 | [diff] [blame] | 1747 | bool erp_valid, directed_tim, is_mc = false; |
Johannes Berg | 7a5158e | 2008-10-08 10:59:33 +0200 | [diff] [blame] | 1748 | u8 erp_value = 0; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1749 | |
Ester Kummer | ae6a44e | 2008-06-27 18:54:48 +0300 | [diff] [blame] | 1750 | /* Process beacon from the current BSS */ |
| 1751 | baselen = (u8 *) mgmt->u.beacon.variable - (u8 *) mgmt; |
| 1752 | if (baselen > len) |
| 1753 | return; |
| 1754 | |
| 1755 | ieee802_11_parse_elems(mgmt->u.beacon.variable, len - baselen, &elems); |
| 1756 | |
Johannes Berg | 98c8fcc | 2008-09-08 17:44:26 +0200 | [diff] [blame] | 1757 | ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems, true); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1758 | |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 1759 | if (sdata->vif.type != NL80211_IFTYPE_STATION) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1760 | return; |
| 1761 | ifsta = &sdata->u.sta; |
| 1762 | |
Jiri Slaby | d6f2da5 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 1763 | if (!(ifsta->flags & IEEE80211_STA_ASSOCIATED) || |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1764 | memcmp(ifsta->bssid, mgmt->bssid, ETH_ALEN) != 0) |
| 1765 | return; |
| 1766 | |
Johannes Berg | fe3fa82 | 2008-09-08 11:05:09 +0200 | [diff] [blame] | 1767 | ieee80211_sta_wmm_params(local, ifsta, elems.wmm_param, |
| 1768 | elems.wmm_param_len); |
| 1769 | |
Vivek Natarajan | a97b77b | 2008-12-23 18:39:02 -0800 | [diff] [blame] | 1770 | if (!(local->hw.flags & IEEE80211_HW_NO_STACK_DYNAMIC_PS)) { |
| 1771 | directed_tim = check_tim(&elems, ifsta->aid, &is_mc); |
| 1772 | |
| 1773 | if (directed_tim || is_mc) { |
| 1774 | if (local->hw.conf.flags && IEEE80211_CONF_PS) { |
| 1775 | local->hw.conf.flags &= ~IEEE80211_CONF_PS; |
| 1776 | ieee80211_hw_config(local, |
| 1777 | IEEE80211_CONF_CHANGE_PS); |
| 1778 | ieee80211_send_nullfunc(local, sdata, 0); |
| 1779 | } |
| 1780 | } |
| 1781 | } |
Johannes Berg | 7a5158e | 2008-10-08 10:59:33 +0200 | [diff] [blame] | 1782 | |
| 1783 | if (elems.erp_info && elems.erp_info_len >= 1) { |
| 1784 | erp_valid = true; |
| 1785 | erp_value = elems.erp_info[0]; |
| 1786 | } else { |
| 1787 | erp_valid = false; |
John W. Linville | 50c4afb | 2008-04-15 14:09:27 -0400 | [diff] [blame] | 1788 | } |
Johannes Berg | 7a5158e | 2008-10-08 10:59:33 +0200 | [diff] [blame] | 1789 | changed |= ieee80211_handle_bss_capability(sdata, |
| 1790 | le16_to_cpu(mgmt->u.beacon.capab_info), |
| 1791 | erp_valid, erp_value); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1792 | |
Ron Rindjunsky | d3c990f | 2007-11-26 16:14:34 +0200 | [diff] [blame] | 1793 | |
Johannes Berg | ae5eb02 | 2008-10-14 16:58:37 +0200 | [diff] [blame] | 1794 | if (elems.ht_cap_elem && elems.ht_info_elem && elems.wmm_param) { |
| 1795 | struct sta_info *sta; |
| 1796 | struct ieee80211_supported_band *sband; |
| 1797 | u16 ap_ht_cap_flags; |
| 1798 | |
| 1799 | rcu_read_lock(); |
| 1800 | |
| 1801 | sta = sta_info_get(local, ifsta->bssid); |
| 1802 | if (!sta) { |
| 1803 | rcu_read_unlock(); |
| 1804 | return; |
| 1805 | } |
| 1806 | |
| 1807 | sband = local->hw.wiphy->bands[local->hw.conf.channel->band]; |
| 1808 | |
| 1809 | ieee80211_ht_cap_ie_to_sta_ht_cap(sband, |
| 1810 | elems.ht_cap_elem, &sta->sta.ht_cap); |
| 1811 | |
| 1812 | ap_ht_cap_flags = sta->sta.ht_cap.cap; |
| 1813 | |
| 1814 | rcu_read_unlock(); |
| 1815 | |
| 1816 | changed |= ieee80211_enable_ht(sdata, elems.ht_info_elem, |
| 1817 | ap_ht_cap_flags); |
Ron Rindjunsky | d3c990f | 2007-11-26 16:14:34 +0200 | [diff] [blame] | 1818 | } |
| 1819 | |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 1820 | if (elems.country_elem) { |
| 1821 | /* Note we are only reviewing this on beacons |
| 1822 | * for the BSSID we are associated to */ |
| 1823 | regulatory_hint_11d(local->hw.wiphy, |
| 1824 | elems.country_elem, elems.country_elem_len); |
| 1825 | } |
| 1826 | |
Johannes Berg | 471b3ef | 2007-12-28 14:32:58 +0100 | [diff] [blame] | 1827 | ieee80211_bss_info_change_notify(sdata, changed); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1828 | } |
| 1829 | |
| 1830 | |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 1831 | static void ieee80211_rx_mgmt_probe_req(struct ieee80211_sub_if_data *sdata, |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1832 | struct ieee80211_if_sta *ifsta, |
| 1833 | struct ieee80211_mgmt *mgmt, |
| 1834 | size_t len, |
| 1835 | struct ieee80211_rx_status *rx_status) |
| 1836 | { |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 1837 | struct ieee80211_local *local = sdata->local; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1838 | int tx_last_beacon; |
| 1839 | struct sk_buff *skb; |
| 1840 | struct ieee80211_mgmt *resp; |
| 1841 | u8 *pos, *end; |
| 1842 | |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 1843 | if (sdata->vif.type != NL80211_IFTYPE_ADHOC || |
Tomas Winkler | 48c2fc5 | 2008-08-06 14:22:01 +0300 | [diff] [blame] | 1844 | ifsta->state != IEEE80211_STA_MLME_IBSS_JOINED || |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1845 | len < 24 + 2 || !ifsta->probe_resp) |
| 1846 | return; |
| 1847 | |
| 1848 | if (local->ops->tx_last_beacon) |
| 1849 | tx_last_beacon = local->ops->tx_last_beacon(local_to_hw(local)); |
| 1850 | else |
| 1851 | tx_last_beacon = 1; |
| 1852 | |
| 1853 | #ifdef CONFIG_MAC80211_IBSS_DEBUG |
Johannes Berg | 0c68ae26 | 2008-10-27 15:56:10 -0700 | [diff] [blame] | 1854 | printk(KERN_DEBUG "%s: RX ProbeReq SA=%pM DA=%pM BSSID=%pM" |
| 1855 | " (tx_last_beacon=%d)\n", |
| 1856 | sdata->dev->name, mgmt->sa, mgmt->da, |
| 1857 | mgmt->bssid, tx_last_beacon); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1858 | #endif /* CONFIG_MAC80211_IBSS_DEBUG */ |
| 1859 | |
| 1860 | if (!tx_last_beacon) |
| 1861 | return; |
| 1862 | |
| 1863 | if (memcmp(mgmt->bssid, ifsta->bssid, ETH_ALEN) != 0 && |
| 1864 | memcmp(mgmt->bssid, "\xff\xff\xff\xff\xff\xff", ETH_ALEN) != 0) |
| 1865 | return; |
| 1866 | |
| 1867 | end = ((u8 *) mgmt) + len; |
| 1868 | pos = mgmt->u.probe_req.variable; |
| 1869 | if (pos[0] != WLAN_EID_SSID || |
| 1870 | pos + 2 + pos[1] > end) { |
Johannes Berg | f4ea83d | 2008-06-30 15:10:46 +0200 | [diff] [blame] | 1871 | #ifdef CONFIG_MAC80211_IBSS_DEBUG |
| 1872 | printk(KERN_DEBUG "%s: Invalid SSID IE in ProbeReq " |
Johannes Berg | 0c68ae26 | 2008-10-27 15:56:10 -0700 | [diff] [blame] | 1873 | "from %pM\n", |
| 1874 | sdata->dev->name, mgmt->sa); |
Johannes Berg | f4ea83d | 2008-06-30 15:10:46 +0200 | [diff] [blame] | 1875 | #endif |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1876 | return; |
| 1877 | } |
| 1878 | if (pos[1] != 0 && |
| 1879 | (pos[1] != ifsta->ssid_len || |
| 1880 | memcmp(pos + 2, ifsta->ssid, ifsta->ssid_len) != 0)) { |
| 1881 | /* Ignore ProbeReq for foreign SSID */ |
| 1882 | return; |
| 1883 | } |
| 1884 | |
| 1885 | /* Reply with ProbeResp */ |
Michael Wu | 0ec0b7a | 2007-07-27 15:43:24 +0200 | [diff] [blame] | 1886 | skb = skb_copy(ifsta->probe_resp, GFP_KERNEL); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1887 | if (!skb) |
| 1888 | return; |
| 1889 | |
| 1890 | resp = (struct ieee80211_mgmt *) skb->data; |
| 1891 | memcpy(resp->da, mgmt->sa, ETH_ALEN); |
| 1892 | #ifdef CONFIG_MAC80211_IBSS_DEBUG |
Johannes Berg | 0c68ae26 | 2008-10-27 15:56:10 -0700 | [diff] [blame] | 1893 | printk(KERN_DEBUG "%s: Sending ProbeResp to %pM\n", |
| 1894 | sdata->dev->name, resp->da); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1895 | #endif /* CONFIG_MAC80211_IBSS_DEBUG */ |
Johannes Berg | e50db65 | 2008-09-09 15:07:09 +0200 | [diff] [blame] | 1896 | ieee80211_tx_skb(sdata, skb, 0); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1897 | } |
| 1898 | |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 1899 | void ieee80211_sta_rx_mgmt(struct ieee80211_sub_if_data *sdata, struct sk_buff *skb, |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1900 | struct ieee80211_rx_status *rx_status) |
| 1901 | { |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 1902 | struct ieee80211_local *local = sdata->local; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1903 | struct ieee80211_if_sta *ifsta; |
| 1904 | struct ieee80211_mgmt *mgmt; |
| 1905 | u16 fc; |
| 1906 | |
| 1907 | if (skb->len < 24) |
| 1908 | goto fail; |
| 1909 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1910 | ifsta = &sdata->u.sta; |
| 1911 | |
| 1912 | mgmt = (struct ieee80211_mgmt *) skb->data; |
| 1913 | fc = le16_to_cpu(mgmt->frame_control); |
| 1914 | |
| 1915 | switch (fc & IEEE80211_FCTL_STYPE) { |
| 1916 | case IEEE80211_STYPE_PROBE_REQ: |
| 1917 | case IEEE80211_STYPE_PROBE_RESP: |
| 1918 | case IEEE80211_STYPE_BEACON: |
| 1919 | memcpy(skb->cb, rx_status, sizeof(*rx_status)); |
| 1920 | case IEEE80211_STYPE_AUTH: |
| 1921 | case IEEE80211_STYPE_ASSOC_RESP: |
| 1922 | case IEEE80211_STYPE_REASSOC_RESP: |
| 1923 | case IEEE80211_STYPE_DEAUTH: |
| 1924 | case IEEE80211_STYPE_DISASSOC: |
| 1925 | skb_queue_tail(&ifsta->skb_queue, skb); |
| 1926 | queue_work(local->hw.workqueue, &ifsta->work); |
| 1927 | return; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1928 | } |
| 1929 | |
| 1930 | fail: |
| 1931 | kfree_skb(skb); |
| 1932 | } |
| 1933 | |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 1934 | 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] | 1935 | struct sk_buff *skb) |
| 1936 | { |
| 1937 | struct ieee80211_rx_status *rx_status; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1938 | struct ieee80211_if_sta *ifsta; |
| 1939 | struct ieee80211_mgmt *mgmt; |
| 1940 | u16 fc; |
| 1941 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1942 | ifsta = &sdata->u.sta; |
| 1943 | |
| 1944 | rx_status = (struct ieee80211_rx_status *) skb->cb; |
| 1945 | mgmt = (struct ieee80211_mgmt *) skb->data; |
| 1946 | fc = le16_to_cpu(mgmt->frame_control); |
| 1947 | |
| 1948 | switch (fc & IEEE80211_FCTL_STYPE) { |
| 1949 | case IEEE80211_STYPE_PROBE_REQ: |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 1950 | ieee80211_rx_mgmt_probe_req(sdata, ifsta, mgmt, skb->len, |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1951 | rx_status); |
| 1952 | break; |
| 1953 | case IEEE80211_STYPE_PROBE_RESP: |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 1954 | ieee80211_rx_mgmt_probe_resp(sdata, mgmt, skb->len, rx_status); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1955 | break; |
| 1956 | case IEEE80211_STYPE_BEACON: |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 1957 | ieee80211_rx_mgmt_beacon(sdata, mgmt, skb->len, rx_status); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1958 | break; |
| 1959 | case IEEE80211_STYPE_AUTH: |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 1960 | ieee80211_rx_mgmt_auth(sdata, ifsta, mgmt, skb->len); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1961 | break; |
| 1962 | case IEEE80211_STYPE_ASSOC_RESP: |
Johannes Berg | 471b3ef | 2007-12-28 14:32:58 +0100 | [diff] [blame] | 1963 | ieee80211_rx_mgmt_assoc_resp(sdata, ifsta, mgmt, skb->len, 0); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1964 | break; |
| 1965 | case IEEE80211_STYPE_REASSOC_RESP: |
Johannes Berg | 471b3ef | 2007-12-28 14:32:58 +0100 | [diff] [blame] | 1966 | ieee80211_rx_mgmt_assoc_resp(sdata, ifsta, mgmt, skb->len, 1); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1967 | break; |
| 1968 | case IEEE80211_STYPE_DEAUTH: |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 1969 | ieee80211_rx_mgmt_deauth(sdata, ifsta, mgmt, skb->len); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1970 | break; |
| 1971 | case IEEE80211_STYPE_DISASSOC: |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 1972 | ieee80211_rx_mgmt_disassoc(sdata, ifsta, mgmt, skb->len); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1973 | break; |
| 1974 | } |
| 1975 | |
| 1976 | kfree_skb(skb); |
| 1977 | } |
| 1978 | |
| 1979 | |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 1980 | static int ieee80211_sta_active_ibss(struct ieee80211_sub_if_data *sdata) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1981 | { |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 1982 | struct ieee80211_local *local = sdata->local; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1983 | int active = 0; |
| 1984 | struct sta_info *sta; |
| 1985 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 1986 | rcu_read_lock(); |
| 1987 | |
| 1988 | list_for_each_entry_rcu(sta, &local->sta_list, list) { |
| 1989 | if (sta->sdata == sdata && |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1990 | time_after(sta->last_rx + IEEE80211_IBSS_MERGE_INTERVAL, |
| 1991 | jiffies)) { |
| 1992 | active++; |
| 1993 | break; |
| 1994 | } |
| 1995 | } |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 1996 | |
| 1997 | rcu_read_unlock(); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1998 | |
| 1999 | return active; |
| 2000 | } |
| 2001 | |
| 2002 | |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 2003 | static void ieee80211_sta_merge_ibss(struct ieee80211_sub_if_data *sdata, |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2004 | struct ieee80211_if_sta *ifsta) |
| 2005 | { |
| 2006 | mod_timer(&ifsta->timer, jiffies + IEEE80211_IBSS_MERGE_INTERVAL); |
| 2007 | |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 2008 | ieee80211_sta_expire(sdata, IEEE80211_IBSS_INACTIVITY_LIMIT); |
| 2009 | if (ieee80211_sta_active_ibss(sdata)) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2010 | return; |
| 2011 | |
Alina Friedrichsen | 137f9f4 | 2009-01-06 02:49:07 +0100 | [diff] [blame^] | 2012 | if ((sdata->u.sta.flags & IEEE80211_STA_BSSID_SET) && |
| 2013 | (!(sdata->u.sta.flags & IEEE80211_STA_AUTO_CHANNEL_SEL))) |
| 2014 | return; |
| 2015 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2016 | printk(KERN_DEBUG "%s: No active IBSS STAs - trying to scan for other " |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 2017 | "IBSS networks with same SSID (merge)\n", sdata->dev->name); |
Johannes Berg | c2b1345 | 2008-09-11 00:01:55 +0200 | [diff] [blame] | 2018 | ieee80211_request_scan(sdata, ifsta->ssid, ifsta->ssid_len); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2019 | } |
| 2020 | |
| 2021 | |
Johannes Berg | 9c6bd79 | 2008-09-11 00:01:52 +0200 | [diff] [blame] | 2022 | static void ieee80211_sta_timer(unsigned long data) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2023 | { |
| 2024 | struct ieee80211_sub_if_data *sdata = |
| 2025 | (struct ieee80211_sub_if_data *) data; |
| 2026 | struct ieee80211_if_sta *ifsta = &sdata->u.sta; |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 2027 | struct ieee80211_local *local = sdata->local; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2028 | |
| 2029 | set_bit(IEEE80211_STA_REQ_RUN, &ifsta->request); |
| 2030 | queue_work(local->hw.workqueue, &ifsta->work); |
| 2031 | } |
| 2032 | |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 2033 | static void ieee80211_sta_reset_auth(struct ieee80211_sub_if_data *sdata, |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2034 | struct ieee80211_if_sta *ifsta) |
| 2035 | { |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 2036 | struct ieee80211_local *local = sdata->local; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2037 | |
| 2038 | if (local->ops->reset_tsf) { |
| 2039 | /* Reset own TSF to allow time synchronization work. */ |
| 2040 | local->ops->reset_tsf(local_to_hw(local)); |
| 2041 | } |
| 2042 | |
| 2043 | ifsta->wmm_last_param_set = -1; /* allow any WMM update */ |
| 2044 | |
| 2045 | |
| 2046 | if (ifsta->auth_algs & IEEE80211_AUTH_ALG_OPEN) |
| 2047 | ifsta->auth_alg = WLAN_AUTH_OPEN; |
| 2048 | else if (ifsta->auth_algs & IEEE80211_AUTH_ALG_SHARED_KEY) |
| 2049 | ifsta->auth_alg = WLAN_AUTH_SHARED_KEY; |
| 2050 | else if (ifsta->auth_algs & IEEE80211_AUTH_ALG_LEAP) |
| 2051 | ifsta->auth_alg = WLAN_AUTH_LEAP; |
| 2052 | else |
| 2053 | ifsta->auth_alg = WLAN_AUTH_OPEN; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2054 | ifsta->auth_transaction = -1; |
Jiri Slaby | d6f2da5 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 2055 | ifsta->flags &= ~IEEE80211_STA_ASSOCIATED; |
Ron Rindjunsky | 6042a3e | 2008-08-08 01:50:46 +0300 | [diff] [blame] | 2056 | ifsta->assoc_scan_tries = 0; |
Ron Rindjunsky | 9859b81 | 2008-08-09 03:02:19 +0300 | [diff] [blame] | 2057 | ifsta->direct_probe_tries = 0; |
Ron Rindjunsky | 6042a3e | 2008-08-08 01:50:46 +0300 | [diff] [blame] | 2058 | ifsta->auth_tries = 0; |
| 2059 | ifsta->assoc_tries = 0; |
Tomas Winkler | 24e6462 | 2008-09-08 17:33:40 +0200 | [diff] [blame] | 2060 | netif_tx_stop_all_queues(sdata->dev); |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 2061 | netif_carrier_off(sdata->dev); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2062 | } |
| 2063 | |
| 2064 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2065 | static int ieee80211_sta_match_ssid(struct ieee80211_if_sta *ifsta, |
| 2066 | const char *ssid, int ssid_len) |
| 2067 | { |
| 2068 | int tmp, hidden_ssid; |
| 2069 | |
Michael Wu | 4822570 | 2007-10-19 17:14:36 -0400 | [diff] [blame] | 2070 | if (ssid_len == ifsta->ssid_len && |
| 2071 | !memcmp(ifsta->ssid, ssid, ssid_len)) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2072 | return 1; |
| 2073 | |
Jiri Slaby | d6f2da5 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 2074 | if (ifsta->flags & IEEE80211_STA_AUTO_BSSID_SEL) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2075 | return 0; |
| 2076 | |
| 2077 | hidden_ssid = 1; |
| 2078 | tmp = ssid_len; |
| 2079 | while (tmp--) { |
| 2080 | if (ssid[tmp] != '\0') { |
| 2081 | hidden_ssid = 0; |
| 2082 | break; |
| 2083 | } |
| 2084 | } |
| 2085 | |
Fabio Rossi | cb3da8c | 2008-11-26 22:44:23 +0100 | [diff] [blame] | 2086 | if (hidden_ssid && (ifsta->ssid_len == ssid_len || ssid_len == 0)) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2087 | return 1; |
| 2088 | |
| 2089 | if (ssid_len == 1 && ssid[0] == ' ') |
| 2090 | return 1; |
| 2091 | |
| 2092 | return 0; |
| 2093 | } |
| 2094 | |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 2095 | static int ieee80211_sta_create_ibss(struct ieee80211_sub_if_data *sdata, |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2096 | struct ieee80211_if_sta *ifsta) |
| 2097 | { |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 2098 | struct ieee80211_local *local = sdata->local; |
Johannes Berg | c2b1345 | 2008-09-11 00:01:55 +0200 | [diff] [blame] | 2099 | struct ieee80211_bss *bss; |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 2100 | struct ieee80211_supported_band *sband; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2101 | u8 bssid[ETH_ALEN], *pos; |
| 2102 | int i; |
Tomas Winkler | 167ad6f | 2008-05-21 18:17:05 +0300 | [diff] [blame] | 2103 | int ret; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2104 | |
| 2105 | #if 0 |
| 2106 | /* Easier testing, use fixed BSSID. */ |
| 2107 | memset(bssid, 0xfe, ETH_ALEN); |
| 2108 | #else |
| 2109 | /* Generate random, not broadcast, locally administered BSSID. Mix in |
| 2110 | * own MAC address to make sure that devices that do not have proper |
| 2111 | * random number generator get different BSSID. */ |
| 2112 | get_random_bytes(bssid, ETH_ALEN); |
| 2113 | for (i = 0; i < ETH_ALEN; i++) |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 2114 | bssid[i] ^= sdata->dev->dev_addr[i]; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2115 | bssid[0] &= ~0x01; |
| 2116 | bssid[0] |= 0x02; |
| 2117 | #endif |
| 2118 | |
Johannes Berg | 0c68ae26 | 2008-10-27 15:56:10 -0700 | [diff] [blame] | 2119 | printk(KERN_DEBUG "%s: Creating new IBSS network, BSSID %pM\n", |
| 2120 | sdata->dev->name, bssid); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2121 | |
Johannes Berg | 98c8fcc | 2008-09-08 17:44:26 +0200 | [diff] [blame] | 2122 | bss = ieee80211_rx_bss_add(local, bssid, |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 2123 | local->hw.conf.channel->center_freq, |
John W. Linville | cffdd30 | 2007-10-05 14:23:27 -0400 | [diff] [blame] | 2124 | sdata->u.sta.ssid, sdata->u.sta.ssid_len); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2125 | if (!bss) |
| 2126 | return -ENOMEM; |
| 2127 | |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 2128 | bss->band = local->hw.conf.channel->band; |
| 2129 | sband = local->hw.wiphy->bands[bss->band]; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2130 | |
| 2131 | if (local->hw.conf.beacon_int == 0) |
Tomas Winkler | dc0ae30 | 2008-06-12 22:38:37 +0300 | [diff] [blame] | 2132 | local->hw.conf.beacon_int = 100; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2133 | bss->beacon_int = local->hw.conf.beacon_int; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2134 | bss->last_update = jiffies; |
| 2135 | bss->capability = WLAN_CAPABILITY_IBSS; |
Johannes Berg | 988c0f7 | 2008-04-17 19:21:22 +0200 | [diff] [blame] | 2136 | |
| 2137 | if (sdata->default_key) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2138 | bss->capability |= WLAN_CAPABILITY_PRIVACY; |
Johannes Berg | 988c0f7 | 2008-04-17 19:21:22 +0200 | [diff] [blame] | 2139 | else |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2140 | sdata->drop_unencrypted = 0; |
Johannes Berg | 988c0f7 | 2008-04-17 19:21:22 +0200 | [diff] [blame] | 2141 | |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 2142 | bss->supp_rates_len = sband->n_bitrates; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2143 | pos = bss->supp_rates; |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 2144 | for (i = 0; i < sband->n_bitrates; i++) { |
| 2145 | int rate = sband->bitrates[i].bitrate; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2146 | *pos++ = (u8) (rate / 5); |
| 2147 | } |
| 2148 | |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 2149 | ret = ieee80211_sta_join_ibss(sdata, ifsta, bss); |
Johannes Berg | 3e122be | 2008-07-09 14:40:34 +0200 | [diff] [blame] | 2150 | ieee80211_rx_bss_put(local, bss); |
Tomas Winkler | 167ad6f | 2008-05-21 18:17:05 +0300 | [diff] [blame] | 2151 | return ret; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2152 | } |
| 2153 | |
| 2154 | |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 2155 | static int ieee80211_sta_find_ibss(struct ieee80211_sub_if_data *sdata, |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2156 | struct ieee80211_if_sta *ifsta) |
| 2157 | { |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 2158 | struct ieee80211_local *local = sdata->local; |
Johannes Berg | c2b1345 | 2008-09-11 00:01:55 +0200 | [diff] [blame] | 2159 | struct ieee80211_bss *bss; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2160 | int found = 0; |
| 2161 | u8 bssid[ETH_ALEN]; |
| 2162 | int active_ibss; |
| 2163 | |
| 2164 | if (ifsta->ssid_len == 0) |
| 2165 | return -EINVAL; |
| 2166 | |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 2167 | active_ibss = ieee80211_sta_active_ibss(sdata); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2168 | #ifdef CONFIG_MAC80211_IBSS_DEBUG |
| 2169 | printk(KERN_DEBUG "%s: sta_find_ibss (active_ibss=%d)\n", |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 2170 | sdata->dev->name, active_ibss); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2171 | #endif /* CONFIG_MAC80211_IBSS_DEBUG */ |
Johannes Berg | c2b1345 | 2008-09-11 00:01:55 +0200 | [diff] [blame] | 2172 | spin_lock_bh(&local->bss_lock); |
| 2173 | list_for_each_entry(bss, &local->bss_list, list) { |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2174 | if (ifsta->ssid_len != bss->ssid_len || |
| 2175 | memcmp(ifsta->ssid, bss->ssid, bss->ssid_len) != 0 |
| 2176 | || !(bss->capability & WLAN_CAPABILITY_IBSS)) |
| 2177 | continue; |
| 2178 | #ifdef CONFIG_MAC80211_IBSS_DEBUG |
Johannes Berg | 0c68ae26 | 2008-10-27 15:56:10 -0700 | [diff] [blame] | 2179 | printk(KERN_DEBUG " bssid=%pM found\n", bss->bssid); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2180 | #endif /* CONFIG_MAC80211_IBSS_DEBUG */ |
| 2181 | memcpy(bssid, bss->bssid, ETH_ALEN); |
| 2182 | found = 1; |
| 2183 | if (active_ibss || memcmp(bssid, ifsta->bssid, ETH_ALEN) != 0) |
| 2184 | break; |
| 2185 | } |
Johannes Berg | c2b1345 | 2008-09-11 00:01:55 +0200 | [diff] [blame] | 2186 | spin_unlock_bh(&local->bss_lock); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2187 | |
| 2188 | #ifdef CONFIG_MAC80211_IBSS_DEBUG |
Vladimir Koutny | 6e43829 | 2008-07-07 14:23:01 +0200 | [diff] [blame] | 2189 | if (found) |
Johannes Berg | 0c68ae26 | 2008-10-27 15:56:10 -0700 | [diff] [blame] | 2190 | printk(KERN_DEBUG " sta_find_ibss: selected %pM current " |
| 2191 | "%pM\n", bssid, ifsta->bssid); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2192 | #endif /* CONFIG_MAC80211_IBSS_DEBUG */ |
Daniel Drake | 80693ce | 2008-07-19 23:31:17 +0100 | [diff] [blame] | 2193 | |
| 2194 | if (found && memcmp(ifsta->bssid, bssid, ETH_ALEN) != 0) { |
Tomas Winkler | 167ad6f | 2008-05-21 18:17:05 +0300 | [diff] [blame] | 2195 | int ret; |
Daniel Drake | 80693ce | 2008-07-19 23:31:17 +0100 | [diff] [blame] | 2196 | int search_freq; |
| 2197 | |
| 2198 | if (ifsta->flags & IEEE80211_STA_AUTO_CHANNEL_SEL) |
| 2199 | search_freq = bss->freq; |
| 2200 | else |
| 2201 | search_freq = local->hw.conf.channel->center_freq; |
| 2202 | |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 2203 | bss = ieee80211_rx_bss_get(local, bssid, search_freq, |
Daniel Drake | 80693ce | 2008-07-19 23:31:17 +0100 | [diff] [blame] | 2204 | ifsta->ssid, ifsta->ssid_len); |
| 2205 | if (!bss) |
| 2206 | goto dont_join; |
| 2207 | |
Johannes Berg | 0c68ae26 | 2008-10-27 15:56:10 -0700 | [diff] [blame] | 2208 | printk(KERN_DEBUG "%s: Selected IBSS BSSID %pM" |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2209 | " based on configured SSID\n", |
Johannes Berg | 0c68ae26 | 2008-10-27 15:56:10 -0700 | [diff] [blame] | 2210 | sdata->dev->name, bssid); |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 2211 | ret = ieee80211_sta_join_ibss(sdata, ifsta, bss); |
Johannes Berg | 3e122be | 2008-07-09 14:40:34 +0200 | [diff] [blame] | 2212 | ieee80211_rx_bss_put(local, bss); |
Tomas Winkler | 167ad6f | 2008-05-21 18:17:05 +0300 | [diff] [blame] | 2213 | return ret; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2214 | } |
Daniel Drake | 80693ce | 2008-07-19 23:31:17 +0100 | [diff] [blame] | 2215 | |
| 2216 | dont_join: |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2217 | #ifdef CONFIG_MAC80211_IBSS_DEBUG |
| 2218 | printk(KERN_DEBUG " did not try to join ibss\n"); |
| 2219 | #endif /* CONFIG_MAC80211_IBSS_DEBUG */ |
| 2220 | |
| 2221 | /* Selected IBSS not found in current scan results - try to scan */ |
Tomas Winkler | 48c2fc5 | 2008-08-06 14:22:01 +0300 | [diff] [blame] | 2222 | if (ifsta->state == IEEE80211_STA_MLME_IBSS_JOINED && |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 2223 | !ieee80211_sta_active_ibss(sdata)) { |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2224 | mod_timer(&ifsta->timer, jiffies + |
| 2225 | IEEE80211_IBSS_MERGE_INTERVAL); |
| 2226 | } else if (time_after(jiffies, local->last_scan_completed + |
| 2227 | IEEE80211_SCAN_INTERVAL)) { |
| 2228 | printk(KERN_DEBUG "%s: Trigger new scan to find an IBSS to " |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 2229 | "join\n", sdata->dev->name); |
Johannes Berg | c2b1345 | 2008-09-11 00:01:55 +0200 | [diff] [blame] | 2230 | return ieee80211_request_scan(sdata, ifsta->ssid, |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2231 | ifsta->ssid_len); |
Tomas Winkler | 48c2fc5 | 2008-08-06 14:22:01 +0300 | [diff] [blame] | 2232 | } else if (ifsta->state != IEEE80211_STA_MLME_IBSS_JOINED) { |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2233 | int interval = IEEE80211_SCAN_INTERVAL; |
| 2234 | |
| 2235 | if (time_after(jiffies, ifsta->ibss_join_req + |
| 2236 | IEEE80211_IBSS_JOIN_TIMEOUT)) { |
Jiri Slaby | d6f2da5 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 2237 | if ((ifsta->flags & IEEE80211_STA_CREATE_IBSS) && |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 2238 | (!(local->oper_channel->flags & |
| 2239 | IEEE80211_CHAN_NO_IBSS))) |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 2240 | return ieee80211_sta_create_ibss(sdata, ifsta); |
Jiri Slaby | d6f2da5 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 2241 | if (ifsta->flags & IEEE80211_STA_CREATE_IBSS) { |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 2242 | printk(KERN_DEBUG "%s: IBSS not allowed on" |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 2243 | " %d MHz\n", sdata->dev->name, |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 2244 | local->hw.conf.channel->center_freq); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2245 | } |
| 2246 | |
| 2247 | /* No IBSS found - decrease scan interval and continue |
| 2248 | * scanning. */ |
| 2249 | interval = IEEE80211_SCAN_INTERVAL_SLOW; |
| 2250 | } |
| 2251 | |
Tomas Winkler | 48c2fc5 | 2008-08-06 14:22:01 +0300 | [diff] [blame] | 2252 | ifsta->state = IEEE80211_STA_MLME_IBSS_SEARCH; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2253 | mod_timer(&ifsta->timer, jiffies + interval); |
| 2254 | return 0; |
| 2255 | } |
| 2256 | |
| 2257 | return 0; |
| 2258 | } |
| 2259 | |
| 2260 | |
Johannes Berg | 60f8b39 | 2008-09-08 17:44:22 +0200 | [diff] [blame] | 2261 | static int ieee80211_sta_config_auth(struct ieee80211_sub_if_data *sdata, |
| 2262 | struct ieee80211_if_sta *ifsta) |
| 2263 | { |
| 2264 | struct ieee80211_local *local = sdata->local; |
Johannes Berg | c2b1345 | 2008-09-11 00:01:55 +0200 | [diff] [blame] | 2265 | struct ieee80211_bss *bss, *selected = NULL; |
Johannes Berg | 60f8b39 | 2008-09-08 17:44:22 +0200 | [diff] [blame] | 2266 | int top_rssi = 0, freq; |
| 2267 | |
Johannes Berg | c2b1345 | 2008-09-11 00:01:55 +0200 | [diff] [blame] | 2268 | spin_lock_bh(&local->bss_lock); |
Johannes Berg | 60f8b39 | 2008-09-08 17:44:22 +0200 | [diff] [blame] | 2269 | freq = local->oper_channel->center_freq; |
Johannes Berg | c2b1345 | 2008-09-11 00:01:55 +0200 | [diff] [blame] | 2270 | list_for_each_entry(bss, &local->bss_list, list) { |
Johannes Berg | 60f8b39 | 2008-09-08 17:44:22 +0200 | [diff] [blame] | 2271 | if (!(bss->capability & WLAN_CAPABILITY_ESS)) |
| 2272 | continue; |
| 2273 | |
| 2274 | if ((ifsta->flags & (IEEE80211_STA_AUTO_SSID_SEL | |
| 2275 | IEEE80211_STA_AUTO_BSSID_SEL | |
| 2276 | IEEE80211_STA_AUTO_CHANNEL_SEL)) && |
| 2277 | (!!(bss->capability & WLAN_CAPABILITY_PRIVACY) ^ |
| 2278 | !!sdata->default_key)) |
| 2279 | continue; |
| 2280 | |
| 2281 | if (!(ifsta->flags & IEEE80211_STA_AUTO_CHANNEL_SEL) && |
| 2282 | bss->freq != freq) |
| 2283 | continue; |
| 2284 | |
| 2285 | if (!(ifsta->flags & IEEE80211_STA_AUTO_BSSID_SEL) && |
| 2286 | memcmp(bss->bssid, ifsta->bssid, ETH_ALEN)) |
| 2287 | continue; |
| 2288 | |
| 2289 | if (!(ifsta->flags & IEEE80211_STA_AUTO_SSID_SEL) && |
| 2290 | !ieee80211_sta_match_ssid(ifsta, bss->ssid, bss->ssid_len)) |
| 2291 | continue; |
| 2292 | |
| 2293 | if (!selected || top_rssi < bss->signal) { |
| 2294 | selected = bss; |
| 2295 | top_rssi = bss->signal; |
| 2296 | } |
| 2297 | } |
| 2298 | if (selected) |
| 2299 | atomic_inc(&selected->users); |
Johannes Berg | c2b1345 | 2008-09-11 00:01:55 +0200 | [diff] [blame] | 2300 | spin_unlock_bh(&local->bss_lock); |
Johannes Berg | 60f8b39 | 2008-09-08 17:44:22 +0200 | [diff] [blame] | 2301 | |
| 2302 | if (selected) { |
| 2303 | ieee80211_set_freq(sdata, selected->freq); |
| 2304 | if (!(ifsta->flags & IEEE80211_STA_SSID_SET)) |
| 2305 | ieee80211_sta_set_ssid(sdata, selected->ssid, |
| 2306 | selected->ssid_len); |
| 2307 | ieee80211_sta_set_bssid(sdata, selected->bssid); |
Johannes Berg | b079ada | 2008-09-09 09:32:59 +0200 | [diff] [blame] | 2308 | ieee80211_sta_def_wmm_params(sdata, selected); |
Johannes Berg | 60f8b39 | 2008-09-08 17:44:22 +0200 | [diff] [blame] | 2309 | |
| 2310 | /* Send out direct probe if no probe resp was received or |
| 2311 | * the one we have is outdated |
| 2312 | */ |
| 2313 | if (!selected->last_probe_resp || |
| 2314 | time_after(jiffies, selected->last_probe_resp |
| 2315 | + IEEE80211_SCAN_RESULT_EXPIRE)) |
| 2316 | ifsta->state = IEEE80211_STA_MLME_DIRECT_PROBE; |
| 2317 | else |
| 2318 | ifsta->state = IEEE80211_STA_MLME_AUTHENTICATE; |
| 2319 | |
| 2320 | ieee80211_rx_bss_put(local, selected); |
| 2321 | ieee80211_sta_reset_auth(sdata, ifsta); |
| 2322 | return 0; |
| 2323 | } else { |
| 2324 | if (ifsta->assoc_scan_tries < IEEE80211_ASSOC_SCANS_MAX_TRIES) { |
| 2325 | ifsta->assoc_scan_tries++; |
| 2326 | if (ifsta->flags & IEEE80211_STA_AUTO_SSID_SEL) |
Johannes Berg | c2b1345 | 2008-09-11 00:01:55 +0200 | [diff] [blame] | 2327 | ieee80211_start_scan(sdata, NULL, 0); |
Johannes Berg | 60f8b39 | 2008-09-08 17:44:22 +0200 | [diff] [blame] | 2328 | else |
Johannes Berg | c2b1345 | 2008-09-11 00:01:55 +0200 | [diff] [blame] | 2329 | ieee80211_start_scan(sdata, ifsta->ssid, |
Johannes Berg | 60f8b39 | 2008-09-08 17:44:22 +0200 | [diff] [blame] | 2330 | ifsta->ssid_len); |
| 2331 | ifsta->state = IEEE80211_STA_MLME_AUTHENTICATE; |
| 2332 | set_bit(IEEE80211_STA_REQ_AUTH, &ifsta->request); |
| 2333 | } else |
| 2334 | ifsta->state = IEEE80211_STA_MLME_DISABLED; |
| 2335 | } |
| 2336 | return -1; |
| 2337 | } |
| 2338 | |
| 2339 | |
Johannes Berg | 9c6bd79 | 2008-09-11 00:01:52 +0200 | [diff] [blame] | 2340 | static void ieee80211_sta_work(struct work_struct *work) |
Johannes Berg | 60f8b39 | 2008-09-08 17:44:22 +0200 | [diff] [blame] | 2341 | { |
| 2342 | struct ieee80211_sub_if_data *sdata = |
| 2343 | container_of(work, struct ieee80211_sub_if_data, u.sta.work); |
| 2344 | struct ieee80211_local *local = sdata->local; |
| 2345 | struct ieee80211_if_sta *ifsta; |
| 2346 | struct sk_buff *skb; |
| 2347 | |
| 2348 | if (!netif_running(sdata->dev)) |
| 2349 | return; |
| 2350 | |
Johannes Berg | c2b1345 | 2008-09-11 00:01:55 +0200 | [diff] [blame] | 2351 | if (local->sw_scanning || local->hw_scanning) |
Johannes Berg | 60f8b39 | 2008-09-08 17:44:22 +0200 | [diff] [blame] | 2352 | return; |
| 2353 | |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 2354 | if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION && |
| 2355 | sdata->vif.type != NL80211_IFTYPE_ADHOC)) |
Johannes Berg | 60f8b39 | 2008-09-08 17:44:22 +0200 | [diff] [blame] | 2356 | return; |
| 2357 | ifsta = &sdata->u.sta; |
| 2358 | |
| 2359 | while ((skb = skb_dequeue(&ifsta->skb_queue))) |
| 2360 | ieee80211_sta_rx_queued_mgmt(sdata, skb); |
| 2361 | |
Johannes Berg | 60f8b39 | 2008-09-08 17:44:22 +0200 | [diff] [blame] | 2362 | if (ifsta->state != IEEE80211_STA_MLME_DIRECT_PROBE && |
| 2363 | ifsta->state != IEEE80211_STA_MLME_AUTHENTICATE && |
| 2364 | ifsta->state != IEEE80211_STA_MLME_ASSOCIATE && |
| 2365 | test_and_clear_bit(IEEE80211_STA_REQ_SCAN, &ifsta->request)) { |
Johannes Berg | c2b1345 | 2008-09-11 00:01:55 +0200 | [diff] [blame] | 2366 | ieee80211_start_scan(sdata, ifsta->scan_ssid, |
| 2367 | ifsta->scan_ssid_len); |
Johannes Berg | 60f8b39 | 2008-09-08 17:44:22 +0200 | [diff] [blame] | 2368 | return; |
| 2369 | } |
| 2370 | |
| 2371 | if (test_and_clear_bit(IEEE80211_STA_REQ_AUTH, &ifsta->request)) { |
| 2372 | if (ieee80211_sta_config_auth(sdata, ifsta)) |
| 2373 | return; |
| 2374 | clear_bit(IEEE80211_STA_REQ_RUN, &ifsta->request); |
| 2375 | } else if (!test_and_clear_bit(IEEE80211_STA_REQ_RUN, &ifsta->request)) |
| 2376 | return; |
| 2377 | |
| 2378 | switch (ifsta->state) { |
| 2379 | case IEEE80211_STA_MLME_DISABLED: |
| 2380 | break; |
| 2381 | case IEEE80211_STA_MLME_DIRECT_PROBE: |
| 2382 | ieee80211_direct_probe(sdata, ifsta); |
| 2383 | break; |
| 2384 | case IEEE80211_STA_MLME_AUTHENTICATE: |
| 2385 | ieee80211_authenticate(sdata, ifsta); |
| 2386 | break; |
| 2387 | case IEEE80211_STA_MLME_ASSOCIATE: |
| 2388 | ieee80211_associate(sdata, ifsta); |
| 2389 | break; |
| 2390 | case IEEE80211_STA_MLME_ASSOCIATED: |
| 2391 | ieee80211_associated(sdata, ifsta); |
| 2392 | break; |
| 2393 | case IEEE80211_STA_MLME_IBSS_SEARCH: |
| 2394 | ieee80211_sta_find_ibss(sdata, ifsta); |
| 2395 | break; |
| 2396 | case IEEE80211_STA_MLME_IBSS_JOINED: |
| 2397 | ieee80211_sta_merge_ibss(sdata, ifsta); |
| 2398 | break; |
Johannes Berg | 60f8b39 | 2008-09-08 17:44:22 +0200 | [diff] [blame] | 2399 | default: |
| 2400 | WARN_ON(1); |
| 2401 | break; |
| 2402 | } |
| 2403 | |
| 2404 | if (ieee80211_privacy_mismatch(sdata, ifsta)) { |
| 2405 | printk(KERN_DEBUG "%s: privacy configuration mismatch and " |
| 2406 | "mixed-cell disabled - disassociate\n", sdata->dev->name); |
| 2407 | |
| 2408 | ieee80211_set_disassoc(sdata, ifsta, false, true, |
| 2409 | WLAN_REASON_UNSPECIFIED); |
| 2410 | } |
| 2411 | } |
Johannes Berg | 0a51b27 | 2008-09-08 17:44:25 +0200 | [diff] [blame] | 2412 | |
Johannes Berg | a1678f8 | 2008-09-11 00:01:47 +0200 | [diff] [blame] | 2413 | static void ieee80211_restart_sta_timer(struct ieee80211_sub_if_data *sdata) |
| 2414 | { |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 2415 | if (sdata->vif.type == NL80211_IFTYPE_STATION) |
Johannes Berg | 7c95069 | 2008-09-11 00:01:48 +0200 | [diff] [blame] | 2416 | queue_work(sdata->local->hw.workqueue, |
| 2417 | &sdata->u.sta.work); |
Johannes Berg | a1678f8 | 2008-09-11 00:01:47 +0200 | [diff] [blame] | 2418 | } |
| 2419 | |
Johannes Berg | 9c6bd79 | 2008-09-11 00:01:52 +0200 | [diff] [blame] | 2420 | /* interface setup */ |
| 2421 | void ieee80211_sta_setup_sdata(struct ieee80211_sub_if_data *sdata) |
| 2422 | { |
| 2423 | struct ieee80211_if_sta *ifsta; |
| 2424 | |
| 2425 | ifsta = &sdata->u.sta; |
| 2426 | INIT_WORK(&ifsta->work, ieee80211_sta_work); |
| 2427 | setup_timer(&ifsta->timer, ieee80211_sta_timer, |
| 2428 | (unsigned long) sdata); |
| 2429 | skb_queue_head_init(&ifsta->skb_queue); |
| 2430 | |
| 2431 | ifsta->capab = WLAN_CAPABILITY_ESS; |
| 2432 | ifsta->auth_algs = IEEE80211_AUTH_ALG_OPEN | |
| 2433 | IEEE80211_AUTH_ALG_SHARED_KEY; |
| 2434 | ifsta->flags |= IEEE80211_STA_CREATE_IBSS | |
| 2435 | IEEE80211_STA_AUTO_BSSID_SEL | |
| 2436 | IEEE80211_STA_AUTO_CHANNEL_SEL; |
| 2437 | if (ieee80211_num_regular_queues(&sdata->local->hw) >= 4) |
| 2438 | ifsta->flags |= IEEE80211_STA_WMM_ENABLED; |
| 2439 | } |
| 2440 | |
| 2441 | /* |
| 2442 | * Add a new IBSS station, will also be called by the RX code when, |
| 2443 | * in IBSS mode, receiving a frame from a yet-unknown station, hence |
| 2444 | * must be callable in atomic context. |
| 2445 | */ |
| 2446 | struct sta_info *ieee80211_ibss_add_sta(struct ieee80211_sub_if_data *sdata, |
Rami Rosen | ab1f5c0 | 2008-12-11 14:00:25 +0200 | [diff] [blame] | 2447 | u8 *bssid,u8 *addr, u64 supp_rates) |
Johannes Berg | 9c6bd79 | 2008-09-11 00:01:52 +0200 | [diff] [blame] | 2448 | { |
| 2449 | struct ieee80211_local *local = sdata->local; |
| 2450 | struct sta_info *sta; |
Johannes Berg | 9c6bd79 | 2008-09-11 00:01:52 +0200 | [diff] [blame] | 2451 | int band = local->hw.conf.channel->band; |
| 2452 | |
| 2453 | /* TODO: Could consider removing the least recently used entry and |
| 2454 | * allow new one to be added. */ |
| 2455 | if (local->num_sta >= IEEE80211_IBSS_MAX_STA_ENTRIES) { |
| 2456 | if (net_ratelimit()) { |
| 2457 | printk(KERN_DEBUG "%s: No room for a new IBSS STA " |
Johannes Berg | 0c68ae26 | 2008-10-27 15:56:10 -0700 | [diff] [blame] | 2458 | "entry %pM\n", sdata->dev->name, addr); |
Johannes Berg | 9c6bd79 | 2008-09-11 00:01:52 +0200 | [diff] [blame] | 2459 | } |
| 2460 | return NULL; |
| 2461 | } |
| 2462 | |
| 2463 | if (compare_ether_addr(bssid, sdata->u.sta.bssid)) |
| 2464 | return NULL; |
| 2465 | |
| 2466 | #ifdef CONFIG_MAC80211_VERBOSE_DEBUG |
Johannes Berg | 0c68ae26 | 2008-10-27 15:56:10 -0700 | [diff] [blame] | 2467 | printk(KERN_DEBUG "%s: Adding new IBSS station %pM (dev=%s)\n", |
| 2468 | wiphy_name(local->hw.wiphy), addr, sdata->dev->name); |
Johannes Berg | 9c6bd79 | 2008-09-11 00:01:52 +0200 | [diff] [blame] | 2469 | #endif |
| 2470 | |
| 2471 | sta = sta_info_alloc(sdata, addr, GFP_ATOMIC); |
| 2472 | if (!sta) |
| 2473 | return NULL; |
| 2474 | |
| 2475 | set_sta_flags(sta, WLAN_STA_AUTHORIZED); |
| 2476 | |
| 2477 | /* make sure mandatory rates are always added */ |
Johannes Berg | 323ce79 | 2008-09-11 02:45:11 +0200 | [diff] [blame] | 2478 | sta->sta.supp_rates[band] = supp_rates | |
Johannes Berg | 96dd22a | 2008-09-11 00:01:57 +0200 | [diff] [blame] | 2479 | ieee80211_mandatory_rates(local, band); |
Johannes Berg | 9c6bd79 | 2008-09-11 00:01:52 +0200 | [diff] [blame] | 2480 | |
Johannes Berg | 4b7679a | 2008-09-18 18:14:18 +0200 | [diff] [blame] | 2481 | rate_control_rate_init(sta); |
Johannes Berg | 9c6bd79 | 2008-09-11 00:01:52 +0200 | [diff] [blame] | 2482 | |
| 2483 | if (sta_info_insert(sta)) |
| 2484 | return NULL; |
| 2485 | |
| 2486 | return sta; |
| 2487 | } |
| 2488 | |
| 2489 | /* configuration hooks */ |
| 2490 | void ieee80211_sta_req_auth(struct ieee80211_sub_if_data *sdata, |
| 2491 | struct ieee80211_if_sta *ifsta) |
| 2492 | { |
| 2493 | struct ieee80211_local *local = sdata->local; |
| 2494 | |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 2495 | if (sdata->vif.type != NL80211_IFTYPE_STATION) |
Johannes Berg | 9c6bd79 | 2008-09-11 00:01:52 +0200 | [diff] [blame] | 2496 | return; |
| 2497 | |
| 2498 | if ((ifsta->flags & (IEEE80211_STA_BSSID_SET | |
| 2499 | IEEE80211_STA_AUTO_BSSID_SEL)) && |
| 2500 | (ifsta->flags & (IEEE80211_STA_SSID_SET | |
| 2501 | IEEE80211_STA_AUTO_SSID_SEL))) { |
| 2502 | |
| 2503 | if (ifsta->state == IEEE80211_STA_MLME_ASSOCIATED) |
| 2504 | ieee80211_set_disassoc(sdata, ifsta, true, true, |
| 2505 | WLAN_REASON_DEAUTH_LEAVING); |
| 2506 | |
| 2507 | set_bit(IEEE80211_STA_REQ_AUTH, &ifsta->request); |
| 2508 | queue_work(local->hw.workqueue, &ifsta->work); |
| 2509 | } |
| 2510 | } |
| 2511 | |
| 2512 | int ieee80211_sta_set_ssid(struct ieee80211_sub_if_data *sdata, char *ssid, size_t len) |
| 2513 | { |
| 2514 | struct ieee80211_if_sta *ifsta; |
Johannes Berg | 9c6bd79 | 2008-09-11 00:01:52 +0200 | [diff] [blame] | 2515 | |
| 2516 | if (len > IEEE80211_MAX_SSID_LEN) |
| 2517 | return -EINVAL; |
| 2518 | |
| 2519 | ifsta = &sdata->u.sta; |
| 2520 | |
| 2521 | if (ifsta->ssid_len != len || memcmp(ifsta->ssid, ssid, len) != 0) { |
| 2522 | memset(ifsta->ssid, 0, sizeof(ifsta->ssid)); |
| 2523 | memcpy(ifsta->ssid, ssid, len); |
| 2524 | ifsta->ssid_len = len; |
| 2525 | ifsta->flags &= ~IEEE80211_STA_PREV_BSSID_SET; |
Johannes Berg | 9c6bd79 | 2008-09-11 00:01:52 +0200 | [diff] [blame] | 2526 | } |
| 2527 | |
| 2528 | if (len) |
| 2529 | ifsta->flags |= IEEE80211_STA_SSID_SET; |
| 2530 | else |
| 2531 | ifsta->flags &= ~IEEE80211_STA_SSID_SET; |
| 2532 | |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 2533 | if (sdata->vif.type == NL80211_IFTYPE_ADHOC && |
Johannes Berg | 9c6bd79 | 2008-09-11 00:01:52 +0200 | [diff] [blame] | 2534 | !(ifsta->flags & IEEE80211_STA_BSSID_SET)) { |
| 2535 | ifsta->ibss_join_req = jiffies; |
| 2536 | ifsta->state = IEEE80211_STA_MLME_IBSS_SEARCH; |
| 2537 | return ieee80211_sta_find_ibss(sdata, ifsta); |
| 2538 | } |
| 2539 | |
| 2540 | return 0; |
| 2541 | } |
| 2542 | |
| 2543 | int ieee80211_sta_get_ssid(struct ieee80211_sub_if_data *sdata, char *ssid, size_t *len) |
| 2544 | { |
| 2545 | struct ieee80211_if_sta *ifsta = &sdata->u.sta; |
| 2546 | memcpy(ssid, ifsta->ssid, ifsta->ssid_len); |
| 2547 | *len = ifsta->ssid_len; |
| 2548 | return 0; |
| 2549 | } |
| 2550 | |
| 2551 | int ieee80211_sta_set_bssid(struct ieee80211_sub_if_data *sdata, u8 *bssid) |
| 2552 | { |
| 2553 | struct ieee80211_if_sta *ifsta; |
| 2554 | int res; |
Alina Friedrichsen | 0efcdfd | 2009-01-06 02:41:35 +0100 | [diff] [blame] | 2555 | bool valid; |
Johannes Berg | 9c6bd79 | 2008-09-11 00:01:52 +0200 | [diff] [blame] | 2556 | |
| 2557 | ifsta = &sdata->u.sta; |
Alina Friedrichsen | 0efcdfd | 2009-01-06 02:41:35 +0100 | [diff] [blame] | 2558 | valid = is_valid_ether_addr(bssid); |
Johannes Berg | 9c6bd79 | 2008-09-11 00:01:52 +0200 | [diff] [blame] | 2559 | |
| 2560 | if (memcmp(ifsta->bssid, bssid, ETH_ALEN) != 0) { |
Alina Friedrichsen | 0efcdfd | 2009-01-06 02:41:35 +0100 | [diff] [blame] | 2561 | if(valid) |
| 2562 | memcpy(ifsta->bssid, bssid, ETH_ALEN); |
| 2563 | else |
| 2564 | memset(ifsta->bssid, 0, ETH_ALEN); |
Johannes Berg | 9c6bd79 | 2008-09-11 00:01:52 +0200 | [diff] [blame] | 2565 | res = 0; |
| 2566 | /* |
| 2567 | * Hack! See also ieee80211_sta_set_ssid. |
| 2568 | */ |
| 2569 | if (netif_running(sdata->dev)) |
| 2570 | res = ieee80211_if_config(sdata, IEEE80211_IFCC_BSSID); |
| 2571 | if (res) { |
| 2572 | printk(KERN_DEBUG "%s: Failed to config new BSSID to " |
| 2573 | "the low-level driver\n", sdata->dev->name); |
| 2574 | return res; |
| 2575 | } |
| 2576 | } |
| 2577 | |
Alina Friedrichsen | 0efcdfd | 2009-01-06 02:41:35 +0100 | [diff] [blame] | 2578 | if (valid) |
Johannes Berg | 9c6bd79 | 2008-09-11 00:01:52 +0200 | [diff] [blame] | 2579 | ifsta->flags |= IEEE80211_STA_BSSID_SET; |
| 2580 | else |
| 2581 | ifsta->flags &= ~IEEE80211_STA_BSSID_SET; |
| 2582 | |
| 2583 | return 0; |
| 2584 | } |
| 2585 | |
| 2586 | int ieee80211_sta_set_extra_ie(struct ieee80211_sub_if_data *sdata, char *ie, size_t len) |
| 2587 | { |
| 2588 | struct ieee80211_if_sta *ifsta = &sdata->u.sta; |
| 2589 | |
| 2590 | kfree(ifsta->extra_ie); |
| 2591 | if (len == 0) { |
| 2592 | ifsta->extra_ie = NULL; |
| 2593 | ifsta->extra_ie_len = 0; |
| 2594 | return 0; |
| 2595 | } |
| 2596 | ifsta->extra_ie = kmalloc(len, GFP_KERNEL); |
| 2597 | if (!ifsta->extra_ie) { |
| 2598 | ifsta->extra_ie_len = 0; |
| 2599 | return -ENOMEM; |
| 2600 | } |
| 2601 | memcpy(ifsta->extra_ie, ie, len); |
| 2602 | ifsta->extra_ie_len = len; |
| 2603 | return 0; |
| 2604 | } |
| 2605 | |
| 2606 | int ieee80211_sta_deauthenticate(struct ieee80211_sub_if_data *sdata, u16 reason) |
| 2607 | { |
| 2608 | struct ieee80211_if_sta *ifsta = &sdata->u.sta; |
| 2609 | |
| 2610 | printk(KERN_DEBUG "%s: deauthenticating by local choice (reason=%d)\n", |
| 2611 | sdata->dev->name, reason); |
| 2612 | |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 2613 | if (sdata->vif.type != NL80211_IFTYPE_STATION && |
| 2614 | sdata->vif.type != NL80211_IFTYPE_ADHOC) |
Johannes Berg | 9c6bd79 | 2008-09-11 00:01:52 +0200 | [diff] [blame] | 2615 | return -EINVAL; |
| 2616 | |
| 2617 | ieee80211_set_disassoc(sdata, ifsta, true, true, reason); |
| 2618 | return 0; |
| 2619 | } |
| 2620 | |
| 2621 | int ieee80211_sta_disassociate(struct ieee80211_sub_if_data *sdata, u16 reason) |
| 2622 | { |
| 2623 | struct ieee80211_if_sta *ifsta = &sdata->u.sta; |
| 2624 | |
| 2625 | printk(KERN_DEBUG "%s: disassociating by local choice (reason=%d)\n", |
| 2626 | sdata->dev->name, reason); |
| 2627 | |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 2628 | if (sdata->vif.type != NL80211_IFTYPE_STATION) |
Johannes Berg | 9c6bd79 | 2008-09-11 00:01:52 +0200 | [diff] [blame] | 2629 | return -EINVAL; |
| 2630 | |
| 2631 | if (!(ifsta->flags & IEEE80211_STA_ASSOCIATED)) |
| 2632 | return -1; |
| 2633 | |
| 2634 | ieee80211_set_disassoc(sdata, ifsta, false, true, reason); |
| 2635 | return 0; |
| 2636 | } |
| 2637 | |
| 2638 | /* scan finished notification */ |
Johannes Berg | 0a51b27 | 2008-09-08 17:44:25 +0200 | [diff] [blame] | 2639 | void ieee80211_mlme_notify_scan_completed(struct ieee80211_local *local) |
| 2640 | { |
| 2641 | struct ieee80211_sub_if_data *sdata = local->scan_sdata; |
| 2642 | struct ieee80211_if_sta *ifsta; |
| 2643 | |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 2644 | if (sdata && sdata->vif.type == NL80211_IFTYPE_ADHOC) { |
Johannes Berg | 0a51b27 | 2008-09-08 17:44:25 +0200 | [diff] [blame] | 2645 | ifsta = &sdata->u.sta; |
| 2646 | if (!(ifsta->flags & IEEE80211_STA_BSSID_SET) || |
| 2647 | (!(ifsta->state == IEEE80211_STA_MLME_IBSS_JOINED) && |
| 2648 | !ieee80211_sta_active_ibss(sdata))) |
| 2649 | ieee80211_sta_find_ibss(sdata, ifsta); |
| 2650 | } |
Johannes Berg | a1678f8 | 2008-09-11 00:01:47 +0200 | [diff] [blame] | 2651 | |
| 2652 | /* Restart STA timers */ |
| 2653 | rcu_read_lock(); |
| 2654 | list_for_each_entry_rcu(sdata, &local->interfaces, list) |
| 2655 | ieee80211_restart_sta_timer(sdata); |
| 2656 | rcu_read_unlock(); |
Johannes Berg | 0a51b27 | 2008-09-08 17:44:25 +0200 | [diff] [blame] | 2657 | } |
Kalle Valo | 520eb82 | 2008-12-18 23:35:27 +0200 | [diff] [blame] | 2658 | |
| 2659 | void ieee80211_dynamic_ps_disable_work(struct work_struct *work) |
| 2660 | { |
| 2661 | struct ieee80211_local *local = |
| 2662 | container_of(work, struct ieee80211_local, |
| 2663 | dynamic_ps_disable_work); |
| 2664 | |
| 2665 | if (local->hw.conf.flags & IEEE80211_CONF_PS) { |
| 2666 | local->hw.conf.flags &= ~IEEE80211_CONF_PS; |
| 2667 | ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS); |
| 2668 | } |
| 2669 | |
| 2670 | ieee80211_wake_queues_by_reason(&local->hw, |
| 2671 | IEEE80211_QUEUE_STOP_REASON_PS); |
| 2672 | } |
| 2673 | |
| 2674 | void ieee80211_dynamic_ps_enable_work(struct work_struct *work) |
| 2675 | { |
| 2676 | struct ieee80211_local *local = |
| 2677 | container_of(work, struct ieee80211_local, |
| 2678 | dynamic_ps_enable_work); |
Vivek Natarajan | a97b77b | 2008-12-23 18:39:02 -0800 | [diff] [blame] | 2679 | struct ieee80211_sub_if_data *sdata = local->scan_sdata; |
Kalle Valo | 520eb82 | 2008-12-18 23:35:27 +0200 | [diff] [blame] | 2680 | |
| 2681 | if (local->hw.conf.flags & IEEE80211_CONF_PS) |
| 2682 | return; |
| 2683 | |
Vivek Natarajan | a97b77b | 2008-12-23 18:39:02 -0800 | [diff] [blame] | 2684 | ieee80211_send_nullfunc(local, sdata, 1); |
Kalle Valo | 520eb82 | 2008-12-18 23:35:27 +0200 | [diff] [blame] | 2685 | local->hw.conf.flags |= IEEE80211_CONF_PS; |
| 2686 | |
| 2687 | ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS); |
| 2688 | } |
| 2689 | |
| 2690 | void ieee80211_dynamic_ps_timer(unsigned long data) |
| 2691 | { |
| 2692 | struct ieee80211_local *local = (void *) data; |
| 2693 | |
| 2694 | queue_work(local->hw.workqueue, &local->dynamic_ps_enable_work); |
| 2695 | } |