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 | |
| 14 | /* TODO: |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 15 | * order BSS list by RSSI(?) ("quality of AP") |
| 16 | * scan result table filtering (by capability (privacy, IBSS/BSS, WPA/RSN IE, |
| 17 | * SSID) |
| 18 | */ |
Geert Uytterhoeven | 5b323ed | 2007-05-08 18:40:27 -0700 | [diff] [blame] | 19 | #include <linux/delay.h> |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 20 | #include <linux/if_ether.h> |
| 21 | #include <linux/skbuff.h> |
| 22 | #include <linux/netdevice.h> |
| 23 | #include <linux/if_arp.h> |
| 24 | #include <linux/wireless.h> |
| 25 | #include <linux/random.h> |
| 26 | #include <linux/etherdevice.h> |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 27 | #include <linux/rtnetlink.h> |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 28 | #include <net/iw_handler.h> |
| 29 | #include <asm/types.h> |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 30 | |
| 31 | #include <net/mac80211.h> |
| 32 | #include "ieee80211_i.h" |
Johannes Berg | 2c8dccc | 2008-04-08 15:14:40 -0400 | [diff] [blame] | 33 | #include "rate.h" |
| 34 | #include "led.h" |
Luis Carlos Cobo | f709fc6 | 2008-02-23 15:17:12 +0100 | [diff] [blame] | 35 | #include "mesh.h" |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 36 | |
| 37 | #define IEEE80211_AUTH_TIMEOUT (HZ / 5) |
| 38 | #define IEEE80211_AUTH_MAX_TRIES 3 |
| 39 | #define IEEE80211_ASSOC_TIMEOUT (HZ / 5) |
| 40 | #define IEEE80211_ASSOC_MAX_TRIES 3 |
| 41 | #define IEEE80211_MONITORING_INTERVAL (2 * HZ) |
Luis Carlos Cobo | f709fc6 | 2008-02-23 15:17:12 +0100 | [diff] [blame] | 42 | #define IEEE80211_MESH_HOUSEKEEPING_INTERVAL (60 * HZ) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 43 | #define IEEE80211_PROBE_INTERVAL (60 * HZ) |
| 44 | #define IEEE80211_RETRY_AUTH_INTERVAL (1 * HZ) |
| 45 | #define IEEE80211_SCAN_INTERVAL (2 * HZ) |
| 46 | #define IEEE80211_SCAN_INTERVAL_SLOW (15 * HZ) |
| 47 | #define IEEE80211_IBSS_JOIN_TIMEOUT (20 * HZ) |
| 48 | |
| 49 | #define IEEE80211_PROBE_DELAY (HZ / 33) |
| 50 | #define IEEE80211_CHANNEL_TIME (HZ / 33) |
| 51 | #define IEEE80211_PASSIVE_CHANNEL_TIME (HZ / 5) |
| 52 | #define IEEE80211_SCAN_RESULT_EXPIRE (10 * HZ) |
| 53 | #define IEEE80211_IBSS_MERGE_INTERVAL (30 * HZ) |
| 54 | #define IEEE80211_IBSS_INACTIVITY_LIMIT (60 * HZ) |
Luis Carlos Cobo | f709fc6 | 2008-02-23 15:17:12 +0100 | [diff] [blame] | 55 | #define IEEE80211_MESH_PEER_INACTIVITY_LIMIT (1800 * HZ) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 56 | |
| 57 | #define IEEE80211_IBSS_MAX_STA_ENTRIES 128 |
| 58 | |
| 59 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 60 | #define ERP_INFO_USE_PROTECTION BIT(1) |
| 61 | |
Ron Rindjunsky | 9f985b0 | 2007-11-26 16:14:32 +0200 | [diff] [blame] | 62 | /* mgmt header + 1 byte action code */ |
| 63 | #define IEEE80211_MIN_ACTION_SIZE (24 + 1) |
| 64 | |
| 65 | #define IEEE80211_ADDBA_PARAM_POLICY_MASK 0x0002 |
| 66 | #define IEEE80211_ADDBA_PARAM_TID_MASK 0x003C |
| 67 | #define IEEE80211_ADDBA_PARAM_BUF_SIZE_MASK 0xFFA0 |
Ron Rindjunsky | 688b88a | 2007-12-25 17:00:37 +0200 | [diff] [blame] | 68 | #define IEEE80211_DELBA_PARAM_TID_MASK 0xF000 |
| 69 | #define IEEE80211_DELBA_PARAM_INITIATOR_MASK 0x0800 |
Ron Rindjunsky | 9f985b0 | 2007-11-26 16:14:32 +0200 | [diff] [blame] | 70 | |
Ron Rindjunsky | 07db218 | 2007-12-25 17:00:33 +0200 | [diff] [blame] | 71 | /* next values represent the buffer size for A-MPDU frame. |
| 72 | * According to IEEE802.11n spec size varies from 8K to 64K (in powers of 2) */ |
| 73 | #define IEEE80211_MIN_AMPDU_BUF 0x8 |
| 74 | #define IEEE80211_MAX_AMPDU_BUF 0x40 |
| 75 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 76 | static void ieee80211_send_probe_req(struct net_device *dev, u8 *dst, |
| 77 | u8 *ssid, size_t ssid_len); |
| 78 | static struct ieee80211_sta_bss * |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 79 | ieee80211_rx_bss_get(struct net_device *dev, u8 *bssid, int freq, |
John W. Linville | cffdd30 | 2007-10-05 14:23:27 -0400 | [diff] [blame] | 80 | u8 *ssid, u8 ssid_len); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 81 | static void ieee80211_rx_bss_put(struct net_device *dev, |
| 82 | struct ieee80211_sta_bss *bss); |
| 83 | static int ieee80211_sta_find_ibss(struct net_device *dev, |
| 84 | struct ieee80211_if_sta *ifsta); |
| 85 | static int ieee80211_sta_wep_configured(struct net_device *dev); |
| 86 | static int ieee80211_sta_start_scan(struct net_device *dev, |
| 87 | u8 *ssid, size_t ssid_len); |
| 88 | static int ieee80211_sta_config_auth(struct net_device *dev, |
| 89 | struct ieee80211_if_sta *ifsta); |
| 90 | |
| 91 | |
Luis Carlos Cobo | ee38585 | 2008-02-23 15:17:11 +0100 | [diff] [blame] | 92 | void ieee802_11_parse_elems(u8 *start, size_t len, |
| 93 | struct ieee802_11_elems *elems) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 94 | { |
| 95 | size_t left = len; |
| 96 | u8 *pos = start; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 97 | |
| 98 | memset(elems, 0, sizeof(*elems)); |
| 99 | |
| 100 | while (left >= 2) { |
| 101 | u8 id, elen; |
| 102 | |
| 103 | id = *pos++; |
| 104 | elen = *pos++; |
| 105 | left -= 2; |
| 106 | |
John W. Linville | 67a4cce | 2007-10-12 16:40:37 -0400 | [diff] [blame] | 107 | if (elen > left) |
| 108 | return; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 109 | |
| 110 | switch (id) { |
| 111 | case WLAN_EID_SSID: |
| 112 | elems->ssid = pos; |
| 113 | elems->ssid_len = elen; |
| 114 | break; |
| 115 | case WLAN_EID_SUPP_RATES: |
| 116 | elems->supp_rates = pos; |
| 117 | elems->supp_rates_len = elen; |
| 118 | break; |
| 119 | case WLAN_EID_FH_PARAMS: |
| 120 | elems->fh_params = pos; |
| 121 | elems->fh_params_len = elen; |
| 122 | break; |
| 123 | case WLAN_EID_DS_PARAMS: |
| 124 | elems->ds_params = pos; |
| 125 | elems->ds_params_len = elen; |
| 126 | break; |
| 127 | case WLAN_EID_CF_PARAMS: |
| 128 | elems->cf_params = pos; |
| 129 | elems->cf_params_len = elen; |
| 130 | break; |
| 131 | case WLAN_EID_TIM: |
| 132 | elems->tim = pos; |
| 133 | elems->tim_len = elen; |
| 134 | break; |
| 135 | case WLAN_EID_IBSS_PARAMS: |
| 136 | elems->ibss_params = pos; |
| 137 | elems->ibss_params_len = elen; |
| 138 | break; |
| 139 | case WLAN_EID_CHALLENGE: |
| 140 | elems->challenge = pos; |
| 141 | elems->challenge_len = elen; |
| 142 | break; |
| 143 | case WLAN_EID_WPA: |
| 144 | if (elen >= 4 && pos[0] == 0x00 && pos[1] == 0x50 && |
| 145 | pos[2] == 0xf2) { |
| 146 | /* Microsoft OUI (00:50:F2) */ |
| 147 | if (pos[3] == 1) { |
| 148 | /* OUI Type 1 - WPA IE */ |
| 149 | elems->wpa = pos; |
| 150 | elems->wpa_len = elen; |
| 151 | } else if (elen >= 5 && pos[3] == 2) { |
| 152 | if (pos[4] == 0) { |
| 153 | elems->wmm_info = pos; |
| 154 | elems->wmm_info_len = elen; |
| 155 | } else if (pos[4] == 1) { |
| 156 | elems->wmm_param = pos; |
| 157 | elems->wmm_param_len = elen; |
| 158 | } |
| 159 | } |
| 160 | } |
| 161 | break; |
| 162 | case WLAN_EID_RSN: |
| 163 | elems->rsn = pos; |
| 164 | elems->rsn_len = elen; |
| 165 | break; |
| 166 | case WLAN_EID_ERP_INFO: |
| 167 | elems->erp_info = pos; |
| 168 | elems->erp_info_len = elen; |
| 169 | break; |
| 170 | case WLAN_EID_EXT_SUPP_RATES: |
| 171 | elems->ext_supp_rates = pos; |
| 172 | elems->ext_supp_rates_len = elen; |
| 173 | break; |
Ron Rindjunsky | c715350 | 2007-11-26 16:14:31 +0200 | [diff] [blame] | 174 | case WLAN_EID_HT_CAPABILITY: |
| 175 | elems->ht_cap_elem = pos; |
| 176 | elems->ht_cap_elem_len = elen; |
| 177 | break; |
| 178 | case WLAN_EID_HT_EXTRA_INFO: |
| 179 | elems->ht_info_elem = pos; |
| 180 | elems->ht_info_elem_len = elen; |
| 181 | break; |
Luis Carlos Cobo | ee38585 | 2008-02-23 15:17:11 +0100 | [diff] [blame] | 182 | case WLAN_EID_MESH_ID: |
| 183 | elems->mesh_id = pos; |
| 184 | elems->mesh_id_len = elen; |
| 185 | break; |
| 186 | case WLAN_EID_MESH_CONFIG: |
| 187 | elems->mesh_config = pos; |
| 188 | elems->mesh_config_len = elen; |
| 189 | break; |
| 190 | case WLAN_EID_PEER_LINK: |
| 191 | elems->peer_link = pos; |
| 192 | elems->peer_link_len = elen; |
| 193 | break; |
| 194 | case WLAN_EID_PREQ: |
| 195 | elems->preq = pos; |
| 196 | elems->preq_len = elen; |
| 197 | break; |
| 198 | case WLAN_EID_PREP: |
| 199 | elems->prep = pos; |
| 200 | elems->prep_len = elen; |
| 201 | break; |
| 202 | case WLAN_EID_PERR: |
| 203 | elems->perr = pos; |
| 204 | elems->perr_len = elen; |
| 205 | break; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 206 | default: |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 207 | break; |
| 208 | } |
| 209 | |
| 210 | left -= elen; |
| 211 | pos += elen; |
| 212 | } |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 213 | } |
| 214 | |
| 215 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 216 | static int ecw2cw(int ecw) |
| 217 | { |
Johannes Berg | ac2bf32 | 2008-02-14 00:30:35 +0100 | [diff] [blame] | 218 | return (1 << ecw) - 1; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 219 | } |
| 220 | |
Vladimir Koutny | e2839d8 | 2008-03-18 21:14:07 +0100 | [diff] [blame] | 221 | |
| 222 | static void ieee80211_sta_def_wmm_params(struct net_device *dev, |
| 223 | struct ieee80211_sta_bss *bss, |
| 224 | int ibss) |
| 225 | { |
| 226 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 227 | struct ieee80211_local *local = sdata->local; |
| 228 | int i, have_higher_than_11mbit = 0; |
| 229 | |
| 230 | |
| 231 | /* cf. IEEE 802.11 9.2.12 */ |
| 232 | for (i = 0; i < bss->supp_rates_len; i++) |
| 233 | if ((bss->supp_rates[i] & 0x7f) * 5 > 110) |
| 234 | have_higher_than_11mbit = 1; |
| 235 | |
| 236 | if (local->hw.conf.channel->band == IEEE80211_BAND_2GHZ && |
| 237 | have_higher_than_11mbit) |
| 238 | sdata->flags |= IEEE80211_SDATA_OPERATING_GMODE; |
| 239 | else |
| 240 | sdata->flags &= ~IEEE80211_SDATA_OPERATING_GMODE; |
| 241 | |
| 242 | |
| 243 | if (local->ops->conf_tx) { |
| 244 | struct ieee80211_tx_queue_params qparam; |
Vladimir Koutny | e2839d8 | 2008-03-18 21:14:07 +0100 | [diff] [blame] | 245 | |
| 246 | memset(&qparam, 0, sizeof(qparam)); |
| 247 | |
| 248 | qparam.aifs = 2; |
| 249 | |
| 250 | if (local->hw.conf.channel->band == IEEE80211_BAND_2GHZ && |
| 251 | !(sdata->flags & IEEE80211_SDATA_OPERATING_GMODE)) |
| 252 | qparam.cw_min = 31; |
| 253 | else |
| 254 | qparam.cw_min = 15; |
| 255 | |
| 256 | qparam.cw_max = 1023; |
| 257 | qparam.txop = 0; |
| 258 | |
| 259 | for (i = IEEE80211_TX_QUEUE_DATA0; i < NUM_TX_DATA_QUEUES; i++) |
| 260 | local->ops->conf_tx(local_to_hw(local), |
| 261 | i + IEEE80211_TX_QUEUE_DATA0, |
| 262 | &qparam); |
| 263 | |
| 264 | if (ibss) { |
| 265 | /* IBSS uses different parameters for Beacon sending */ |
| 266 | qparam.cw_min++; |
| 267 | qparam.cw_min *= 2; |
| 268 | qparam.cw_min--; |
| 269 | local->ops->conf_tx(local_to_hw(local), |
| 270 | IEEE80211_TX_QUEUE_BEACON, &qparam); |
| 271 | } |
| 272 | } |
| 273 | } |
| 274 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 275 | static void ieee80211_sta_wmm_params(struct net_device *dev, |
| 276 | struct ieee80211_if_sta *ifsta, |
| 277 | u8 *wmm_param, size_t wmm_param_len) |
| 278 | { |
| 279 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); |
| 280 | struct ieee80211_tx_queue_params params; |
| 281 | size_t left; |
| 282 | int count; |
| 283 | u8 *pos; |
| 284 | |
| 285 | if (wmm_param_len < 8 || wmm_param[5] /* version */ != 1) |
| 286 | return; |
| 287 | count = wmm_param[6] & 0x0f; |
| 288 | if (count == ifsta->wmm_last_param_set) |
| 289 | return; |
| 290 | ifsta->wmm_last_param_set = count; |
| 291 | |
| 292 | pos = wmm_param + 8; |
| 293 | left = wmm_param_len - 8; |
| 294 | |
| 295 | memset(¶ms, 0, sizeof(params)); |
| 296 | |
| 297 | if (!local->ops->conf_tx) |
| 298 | return; |
| 299 | |
| 300 | local->wmm_acm = 0; |
| 301 | for (; left >= 4; left -= 4, pos += 4) { |
| 302 | int aci = (pos[0] >> 5) & 0x03; |
| 303 | int acm = (pos[0] >> 4) & 0x01; |
| 304 | int queue; |
| 305 | |
| 306 | switch (aci) { |
| 307 | case 1: |
| 308 | queue = IEEE80211_TX_QUEUE_DATA3; |
| 309 | if (acm) { |
| 310 | local->wmm_acm |= BIT(0) | BIT(3); |
| 311 | } |
| 312 | break; |
| 313 | case 2: |
| 314 | queue = IEEE80211_TX_QUEUE_DATA1; |
| 315 | if (acm) { |
| 316 | local->wmm_acm |= BIT(4) | BIT(5); |
| 317 | } |
| 318 | break; |
| 319 | case 3: |
| 320 | queue = IEEE80211_TX_QUEUE_DATA0; |
| 321 | if (acm) { |
| 322 | local->wmm_acm |= BIT(6) | BIT(7); |
| 323 | } |
| 324 | break; |
| 325 | case 0: |
| 326 | default: |
| 327 | queue = IEEE80211_TX_QUEUE_DATA2; |
| 328 | if (acm) { |
| 329 | local->wmm_acm |= BIT(1) | BIT(2); |
| 330 | } |
| 331 | break; |
| 332 | } |
| 333 | |
| 334 | params.aifs = pos[0] & 0x0f; |
| 335 | params.cw_max = ecw2cw((pos[1] & 0xf0) >> 4); |
| 336 | params.cw_min = ecw2cw(pos[1] & 0x0f); |
Johannes Berg | 3330d7b | 2008-02-10 16:49:38 +0100 | [diff] [blame] | 337 | params.txop = pos[2] | (pos[3] << 8); |
| 338 | #ifdef CONFIG_MAC80211_DEBUG |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 339 | 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] | 340 | "cWmin=%d cWmax=%d txop=%d\n", |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 341 | dev->name, queue, aci, acm, params.aifs, params.cw_min, |
Johannes Berg | 3330d7b | 2008-02-10 16:49:38 +0100 | [diff] [blame] | 342 | params.cw_max, params.txop); |
| 343 | #endif |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 344 | /* TODO: handle ACM (block TX, fallback to next lowest allowed |
| 345 | * AC for now) */ |
| 346 | if (local->ops->conf_tx(local_to_hw(local), queue, ¶ms)) { |
| 347 | printk(KERN_DEBUG "%s: failed to set TX queue " |
| 348 | "parameters for queue %d\n", dev->name, queue); |
| 349 | } |
| 350 | } |
| 351 | } |
| 352 | |
John W. Linville | 50c4afb | 2008-04-15 14:09:27 -0400 | [diff] [blame] | 353 | static u32 ieee80211_handle_protect_preamb(struct ieee80211_sub_if_data *sdata, |
| 354 | bool use_protection, |
| 355 | bool use_short_preamble) |
Daniel Drake | 5628221 | 2007-07-10 19:32:10 +0200 | [diff] [blame] | 356 | { |
Johannes Berg | 471b3ef | 2007-12-28 14:32:58 +0100 | [diff] [blame] | 357 | struct ieee80211_bss_conf *bss_conf = &sdata->bss_conf; |
Daniel Drake | 5628221 | 2007-07-10 19:32:10 +0200 | [diff] [blame] | 358 | struct ieee80211_if_sta *ifsta = &sdata->u.sta; |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 359 | DECLARE_MAC_BUF(mac); |
Johannes Berg | 471b3ef | 2007-12-28 14:32:58 +0100 | [diff] [blame] | 360 | u32 changed = 0; |
Daniel Drake | 5628221 | 2007-07-10 19:32:10 +0200 | [diff] [blame] | 361 | |
Johannes Berg | 471b3ef | 2007-12-28 14:32:58 +0100 | [diff] [blame] | 362 | if (use_protection != bss_conf->use_cts_prot) { |
Daniel Drake | 5628221 | 2007-07-10 19:32:10 +0200 | [diff] [blame] | 363 | if (net_ratelimit()) { |
| 364 | printk(KERN_DEBUG "%s: CTS protection %s (BSSID=" |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 365 | "%s)\n", |
Johannes Berg | 471b3ef | 2007-12-28 14:32:58 +0100 | [diff] [blame] | 366 | sdata->dev->name, |
Daniel Drake | 5628221 | 2007-07-10 19:32:10 +0200 | [diff] [blame] | 367 | use_protection ? "enabled" : "disabled", |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 368 | print_mac(mac, ifsta->bssid)); |
Daniel Drake | 5628221 | 2007-07-10 19:32:10 +0200 | [diff] [blame] | 369 | } |
Johannes Berg | 471b3ef | 2007-12-28 14:32:58 +0100 | [diff] [blame] | 370 | bss_conf->use_cts_prot = use_protection; |
| 371 | changed |= BSS_CHANGED_ERP_CTS_PROT; |
Daniel Drake | 5628221 | 2007-07-10 19:32:10 +0200 | [diff] [blame] | 372 | } |
Daniel Drake | 7e9ed18 | 2007-07-27 15:43:24 +0200 | [diff] [blame] | 373 | |
Vladimir Koutny | d43c7b3 | 2008-03-31 17:05:03 +0200 | [diff] [blame] | 374 | if (use_short_preamble != bss_conf->use_short_preamble) { |
Daniel Drake | 7e9ed18 | 2007-07-27 15:43:24 +0200 | [diff] [blame] | 375 | if (net_ratelimit()) { |
| 376 | printk(KERN_DEBUG "%s: switched to %s barker preamble" |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 377 | " (BSSID=%s)\n", |
Johannes Berg | 471b3ef | 2007-12-28 14:32:58 +0100 | [diff] [blame] | 378 | sdata->dev->name, |
Vladimir Koutny | d43c7b3 | 2008-03-31 17:05:03 +0200 | [diff] [blame] | 379 | use_short_preamble ? "short" : "long", |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 380 | print_mac(mac, ifsta->bssid)); |
Daniel Drake | 7e9ed18 | 2007-07-27 15:43:24 +0200 | [diff] [blame] | 381 | } |
Vladimir Koutny | d43c7b3 | 2008-03-31 17:05:03 +0200 | [diff] [blame] | 382 | bss_conf->use_short_preamble = use_short_preamble; |
Johannes Berg | 471b3ef | 2007-12-28 14:32:58 +0100 | [diff] [blame] | 383 | changed |= BSS_CHANGED_ERP_PREAMBLE; |
Daniel Drake | 7e9ed18 | 2007-07-27 15:43:24 +0200 | [diff] [blame] | 384 | } |
Daniel Drake | d9430a3 | 2007-07-27 15:43:24 +0200 | [diff] [blame] | 385 | |
Johannes Berg | 471b3ef | 2007-12-28 14:32:58 +0100 | [diff] [blame] | 386 | return changed; |
Daniel Drake | 5628221 | 2007-07-10 19:32:10 +0200 | [diff] [blame] | 387 | } |
| 388 | |
John W. Linville | 50c4afb | 2008-04-15 14:09:27 -0400 | [diff] [blame] | 389 | static u32 ieee80211_handle_erp_ie(struct ieee80211_sub_if_data *sdata, |
| 390 | u8 erp_value) |
| 391 | { |
| 392 | bool use_protection = (erp_value & WLAN_ERP_USE_PROTECTION) != 0; |
| 393 | bool use_short_preamble = (erp_value & WLAN_ERP_BARKER_PREAMBLE) == 0; |
| 394 | |
| 395 | return ieee80211_handle_protect_preamb(sdata, |
| 396 | use_protection, use_short_preamble); |
| 397 | } |
| 398 | |
| 399 | static u32 ieee80211_handle_bss_capability(struct ieee80211_sub_if_data *sdata, |
| 400 | struct ieee80211_sta_bss *bss) |
| 401 | { |
| 402 | u32 changed = 0; |
| 403 | |
| 404 | if (bss->has_erp_value) |
| 405 | changed |= ieee80211_handle_erp_ie(sdata, bss->erp_value); |
| 406 | else { |
| 407 | u16 capab = bss->capability; |
| 408 | changed |= ieee80211_handle_protect_preamb(sdata, false, |
| 409 | (capab & WLAN_CAPABILITY_SHORT_PREAMBLE) != 0); |
| 410 | } |
| 411 | |
| 412 | return changed; |
| 413 | } |
| 414 | |
Ron Rindjunsky | c715350 | 2007-11-26 16:14:31 +0200 | [diff] [blame] | 415 | int ieee80211_ht_cap_ie_to_ht_info(struct ieee80211_ht_cap *ht_cap_ie, |
| 416 | struct ieee80211_ht_info *ht_info) |
| 417 | { |
| 418 | |
| 419 | if (ht_info == NULL) |
| 420 | return -EINVAL; |
| 421 | |
| 422 | memset(ht_info, 0, sizeof(*ht_info)); |
| 423 | |
| 424 | if (ht_cap_ie) { |
| 425 | u8 ampdu_info = ht_cap_ie->ampdu_params_info; |
| 426 | |
| 427 | ht_info->ht_supported = 1; |
| 428 | ht_info->cap = le16_to_cpu(ht_cap_ie->cap_info); |
| 429 | ht_info->ampdu_factor = |
| 430 | ampdu_info & IEEE80211_HT_CAP_AMPDU_FACTOR; |
| 431 | ht_info->ampdu_density = |
| 432 | (ampdu_info & IEEE80211_HT_CAP_AMPDU_DENSITY) >> 2; |
| 433 | memcpy(ht_info->supp_mcs_set, ht_cap_ie->supp_mcs_set, 16); |
| 434 | } else |
| 435 | ht_info->ht_supported = 0; |
| 436 | |
| 437 | return 0; |
| 438 | } |
| 439 | |
| 440 | int ieee80211_ht_addt_info_ie_to_ht_bss_info( |
| 441 | struct ieee80211_ht_addt_info *ht_add_info_ie, |
| 442 | struct ieee80211_ht_bss_info *bss_info) |
| 443 | { |
| 444 | if (bss_info == NULL) |
| 445 | return -EINVAL; |
| 446 | |
| 447 | memset(bss_info, 0, sizeof(*bss_info)); |
| 448 | |
| 449 | if (ht_add_info_ie) { |
| 450 | u16 op_mode; |
| 451 | op_mode = le16_to_cpu(ht_add_info_ie->operation_mode); |
| 452 | |
| 453 | bss_info->primary_channel = ht_add_info_ie->control_chan; |
| 454 | bss_info->bss_cap = ht_add_info_ie->ht_param; |
| 455 | bss_info->bss_op_mode = (u8)(op_mode & 0xff); |
| 456 | } |
| 457 | |
| 458 | return 0; |
| 459 | } |
Daniel Drake | 5628221 | 2007-07-10 19:32:10 +0200 | [diff] [blame] | 460 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 461 | static void ieee80211_sta_send_associnfo(struct net_device *dev, |
| 462 | struct ieee80211_if_sta *ifsta) |
| 463 | { |
| 464 | char *buf; |
| 465 | size_t len; |
| 466 | int i; |
| 467 | union iwreq_data wrqu; |
| 468 | |
| 469 | if (!ifsta->assocreq_ies && !ifsta->assocresp_ies) |
| 470 | return; |
| 471 | |
| 472 | buf = kmalloc(50 + 2 * (ifsta->assocreq_ies_len + |
Michael Wu | 0ec0b7a | 2007-07-27 15:43:24 +0200 | [diff] [blame] | 473 | ifsta->assocresp_ies_len), GFP_KERNEL); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 474 | if (!buf) |
| 475 | return; |
| 476 | |
| 477 | len = sprintf(buf, "ASSOCINFO("); |
| 478 | if (ifsta->assocreq_ies) { |
| 479 | len += sprintf(buf + len, "ReqIEs="); |
| 480 | for (i = 0; i < ifsta->assocreq_ies_len; i++) { |
| 481 | len += sprintf(buf + len, "%02x", |
| 482 | ifsta->assocreq_ies[i]); |
| 483 | } |
| 484 | } |
| 485 | if (ifsta->assocresp_ies) { |
| 486 | if (ifsta->assocreq_ies) |
| 487 | len += sprintf(buf + len, " "); |
| 488 | len += sprintf(buf + len, "RespIEs="); |
| 489 | for (i = 0; i < ifsta->assocresp_ies_len; i++) { |
| 490 | len += sprintf(buf + len, "%02x", |
| 491 | ifsta->assocresp_ies[i]); |
| 492 | } |
| 493 | } |
| 494 | len += sprintf(buf + len, ")"); |
| 495 | |
| 496 | if (len > IW_CUSTOM_MAX) { |
| 497 | len = sprintf(buf, "ASSOCRESPIE="); |
| 498 | for (i = 0; i < ifsta->assocresp_ies_len; i++) { |
| 499 | len += sprintf(buf + len, "%02x", |
| 500 | ifsta->assocresp_ies[i]); |
| 501 | } |
| 502 | } |
| 503 | |
| 504 | memset(&wrqu, 0, sizeof(wrqu)); |
| 505 | wrqu.data.length = len; |
| 506 | wireless_send_event(dev, IWEVCUSTOM, &wrqu, buf); |
| 507 | |
| 508 | kfree(buf); |
| 509 | } |
| 510 | |
| 511 | |
| 512 | static void ieee80211_set_associated(struct net_device *dev, |
Jiri Slaby | d6f2da5 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 513 | struct ieee80211_if_sta *ifsta, |
Michael Buesch | 47f0c50 | 2007-09-27 15:10:44 +0200 | [diff] [blame] | 514 | bool assoc) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 515 | { |
Johannes Berg | 471b3ef | 2007-12-28 14:32:58 +0100 | [diff] [blame] | 516 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 517 | struct ieee80211_local *local = sdata->local; |
Tomas Winkler | 38668c0 | 2008-03-28 16:33:32 -0700 | [diff] [blame] | 518 | struct ieee80211_conf *conf = &local_to_hw(local)->conf; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 519 | union iwreq_data wrqu; |
Johannes Berg | 471b3ef | 2007-12-28 14:32:58 +0100 | [diff] [blame] | 520 | u32 changed = BSS_CHANGED_ASSOC; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 521 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 522 | if (assoc) { |
Daniel Drake | 5628221 | 2007-07-10 19:32:10 +0200 | [diff] [blame] | 523 | struct ieee80211_sta_bss *bss; |
Jiri Slaby | d6f2da5 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 524 | |
| 525 | ifsta->flags |= IEEE80211_STA_ASSOCIATED; |
| 526 | |
Johannes Berg | 51fb61e | 2007-12-19 01:31:27 +0100 | [diff] [blame] | 527 | if (sdata->vif.type != IEEE80211_IF_TYPE_STA) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 528 | return; |
Daniel Drake | 5628221 | 2007-07-10 19:32:10 +0200 | [diff] [blame] | 529 | |
John W. Linville | 65c107a | 2007-10-05 14:23:27 -0400 | [diff] [blame] | 530 | bss = ieee80211_rx_bss_get(dev, ifsta->bssid, |
Tomas Winkler | 38668c0 | 2008-03-28 16:33:32 -0700 | [diff] [blame] | 531 | conf->channel->center_freq, |
John W. Linville | cffdd30 | 2007-10-05 14:23:27 -0400 | [diff] [blame] | 532 | ifsta->ssid, ifsta->ssid_len); |
Daniel Drake | 5628221 | 2007-07-10 19:32:10 +0200 | [diff] [blame] | 533 | if (bss) { |
Tomas Winkler | 21c0cbe | 2008-03-28 16:33:34 -0700 | [diff] [blame] | 534 | /* set timing information */ |
| 535 | sdata->bss_conf.beacon_int = bss->beacon_int; |
| 536 | sdata->bss_conf.timestamp = bss->timestamp; |
| 537 | |
John W. Linville | 50c4afb | 2008-04-15 14:09:27 -0400 | [diff] [blame] | 538 | changed |= ieee80211_handle_bss_capability(sdata, bss); |
Tomas Winkler | 21c0cbe | 2008-03-28 16:33:34 -0700 | [diff] [blame] | 539 | |
Daniel Drake | 5628221 | 2007-07-10 19:32:10 +0200 | [diff] [blame] | 540 | ieee80211_rx_bss_put(dev, bss); |
| 541 | } |
| 542 | |
Tomas Winkler | 38668c0 | 2008-03-28 16:33:32 -0700 | [diff] [blame] | 543 | if (conf->flags & IEEE80211_CONF_SUPPORT_HT_MODE) { |
| 544 | changed |= BSS_CHANGED_HT; |
| 545 | sdata->bss_conf.assoc_ht = 1; |
| 546 | sdata->bss_conf.ht_conf = &conf->ht_conf; |
| 547 | sdata->bss_conf.ht_bss_conf = &conf->ht_bss_conf; |
| 548 | } |
| 549 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 550 | netif_carrier_on(dev); |
Jiri Slaby | d6f2da5 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 551 | ifsta->flags |= IEEE80211_STA_PREV_BSSID_SET; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 552 | memcpy(ifsta->prev_bssid, sdata->u.sta.bssid, ETH_ALEN); |
| 553 | memcpy(wrqu.ap_addr.sa_data, sdata->u.sta.bssid, ETH_ALEN); |
| 554 | ieee80211_sta_send_associnfo(dev, ifsta); |
| 555 | } else { |
Ron Rindjunsky | 85249e5 | 2008-03-18 15:00:32 -0700 | [diff] [blame] | 556 | ieee80211_sta_tear_down_BA_sessions(dev, ifsta->bssid); |
Jiri Slaby | d6f2da5 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 557 | ifsta->flags &= ~IEEE80211_STA_ASSOCIATED; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 558 | netif_carrier_off(dev); |
Daniel Drake | d9430a3 | 2007-07-27 15:43:24 +0200 | [diff] [blame] | 559 | ieee80211_reset_erp_info(dev); |
Tomas Winkler | 38668c0 | 2008-03-28 16:33:32 -0700 | [diff] [blame] | 560 | |
| 561 | sdata->bss_conf.assoc_ht = 0; |
| 562 | sdata->bss_conf.ht_conf = NULL; |
| 563 | sdata->bss_conf.ht_bss_conf = NULL; |
| 564 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 565 | memset(wrqu.ap_addr.sa_data, 0, ETH_ALEN); |
| 566 | } |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 567 | ifsta->last_probe = jiffies; |
Michael Buesch | 47f0c50 | 2007-09-27 15:10:44 +0200 | [diff] [blame] | 568 | ieee80211_led_assoc(local, assoc); |
Johannes Berg | 471b3ef | 2007-12-28 14:32:58 +0100 | [diff] [blame] | 569 | |
Tomas Winkler | b220525 | 2008-01-27 16:18:22 +0200 | [diff] [blame] | 570 | sdata->bss_conf.assoc = assoc; |
Johannes Berg | 471b3ef | 2007-12-28 14:32:58 +0100 | [diff] [blame] | 571 | ieee80211_bss_info_change_notify(sdata, changed); |
Reinette Chatre | 41a7be4 | 2008-04-03 16:08:49 -0700 | [diff] [blame] | 572 | wrqu.ap_addr.sa_family = ARPHRD_ETHER; |
| 573 | wireless_send_event(dev, SIOCGIWAP, &wrqu, NULL); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 574 | } |
| 575 | |
| 576 | static void ieee80211_set_disassoc(struct net_device *dev, |
| 577 | struct ieee80211_if_sta *ifsta, int deauth) |
| 578 | { |
| 579 | if (deauth) |
| 580 | ifsta->auth_tries = 0; |
| 581 | ifsta->assoc_tries = 0; |
| 582 | ieee80211_set_associated(dev, ifsta, 0); |
| 583 | } |
| 584 | |
Luis Carlos Cobo | ee38585 | 2008-02-23 15:17:11 +0100 | [diff] [blame] | 585 | void ieee80211_sta_tx(struct net_device *dev, struct sk_buff *skb, |
| 586 | int encrypt) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 587 | { |
| 588 | struct ieee80211_sub_if_data *sdata; |
| 589 | struct ieee80211_tx_packet_data *pkt_data; |
| 590 | |
| 591 | sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 592 | skb->dev = sdata->local->mdev; |
| 593 | skb_set_mac_header(skb, 0); |
| 594 | skb_set_network_header(skb, 0); |
| 595 | skb_set_transport_header(skb, 0); |
| 596 | |
| 597 | pkt_data = (struct ieee80211_tx_packet_data *) skb->cb; |
| 598 | memset(pkt_data, 0, sizeof(struct ieee80211_tx_packet_data)); |
| 599 | pkt_data->ifindex = sdata->dev->ifindex; |
Jiri Slaby | e8bf964 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 600 | if (!encrypt) |
| 601 | pkt_data->flags |= IEEE80211_TXPD_DO_NOT_ENCRYPT; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 602 | |
| 603 | dev_queue_xmit(skb); |
| 604 | } |
| 605 | |
| 606 | |
| 607 | static void ieee80211_send_auth(struct net_device *dev, |
| 608 | struct ieee80211_if_sta *ifsta, |
| 609 | int transaction, u8 *extra, size_t extra_len, |
| 610 | int encrypt) |
| 611 | { |
| 612 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); |
| 613 | struct sk_buff *skb; |
| 614 | struct ieee80211_mgmt *mgmt; |
| 615 | |
| 616 | skb = dev_alloc_skb(local->hw.extra_tx_headroom + |
| 617 | sizeof(*mgmt) + 6 + extra_len); |
| 618 | if (!skb) { |
| 619 | printk(KERN_DEBUG "%s: failed to allocate buffer for auth " |
| 620 | "frame\n", dev->name); |
| 621 | return; |
| 622 | } |
| 623 | skb_reserve(skb, local->hw.extra_tx_headroom); |
| 624 | |
| 625 | mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24 + 6); |
| 626 | memset(mgmt, 0, 24 + 6); |
| 627 | mgmt->frame_control = IEEE80211_FC(IEEE80211_FTYPE_MGMT, |
| 628 | IEEE80211_STYPE_AUTH); |
| 629 | if (encrypt) |
| 630 | mgmt->frame_control |= cpu_to_le16(IEEE80211_FCTL_PROTECTED); |
| 631 | memcpy(mgmt->da, ifsta->bssid, ETH_ALEN); |
| 632 | memcpy(mgmt->sa, dev->dev_addr, ETH_ALEN); |
| 633 | memcpy(mgmt->bssid, ifsta->bssid, ETH_ALEN); |
| 634 | mgmt->u.auth.auth_alg = cpu_to_le16(ifsta->auth_alg); |
| 635 | mgmt->u.auth.auth_transaction = cpu_to_le16(transaction); |
| 636 | ifsta->auth_transaction = transaction + 1; |
| 637 | mgmt->u.auth.status_code = cpu_to_le16(0); |
| 638 | if (extra) |
| 639 | memcpy(skb_put(skb, extra_len), extra, extra_len); |
| 640 | |
| 641 | ieee80211_sta_tx(dev, skb, encrypt); |
| 642 | } |
| 643 | |
| 644 | |
| 645 | static void ieee80211_authenticate(struct net_device *dev, |
| 646 | struct ieee80211_if_sta *ifsta) |
| 647 | { |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 648 | DECLARE_MAC_BUF(mac); |
| 649 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 650 | ifsta->auth_tries++; |
| 651 | if (ifsta->auth_tries > IEEE80211_AUTH_MAX_TRIES) { |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 652 | printk(KERN_DEBUG "%s: authentication with AP %s" |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 653 | " timed out\n", |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 654 | dev->name, print_mac(mac, ifsta->bssid)); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 655 | ifsta->state = IEEE80211_DISABLED; |
| 656 | return; |
| 657 | } |
| 658 | |
| 659 | ifsta->state = IEEE80211_AUTHENTICATE; |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 660 | printk(KERN_DEBUG "%s: authenticate with AP %s\n", |
| 661 | dev->name, print_mac(mac, ifsta->bssid)); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 662 | |
| 663 | ieee80211_send_auth(dev, ifsta, 1, NULL, 0, 0); |
| 664 | |
| 665 | mod_timer(&ifsta->timer, jiffies + IEEE80211_AUTH_TIMEOUT); |
| 666 | } |
| 667 | |
| 668 | |
| 669 | static void ieee80211_send_assoc(struct net_device *dev, |
| 670 | struct ieee80211_if_sta *ifsta) |
| 671 | { |
| 672 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 673 | struct sk_buff *skb; |
| 674 | struct ieee80211_mgmt *mgmt; |
| 675 | u8 *pos, *ies; |
| 676 | int i, len; |
| 677 | u16 capab; |
| 678 | struct ieee80211_sta_bss *bss; |
| 679 | int wmm = 0; |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 680 | struct ieee80211_supported_band *sband; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 681 | |
| 682 | skb = dev_alloc_skb(local->hw.extra_tx_headroom + |
| 683 | sizeof(*mgmt) + 200 + ifsta->extra_ie_len + |
| 684 | ifsta->ssid_len); |
| 685 | if (!skb) { |
| 686 | printk(KERN_DEBUG "%s: failed to allocate buffer for assoc " |
| 687 | "frame\n", dev->name); |
| 688 | return; |
| 689 | } |
| 690 | skb_reserve(skb, local->hw.extra_tx_headroom); |
| 691 | |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 692 | sband = local->hw.wiphy->bands[local->hw.conf.channel->band]; |
| 693 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 694 | capab = ifsta->capab; |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 695 | |
| 696 | if (local->hw.conf.channel->band == IEEE80211_BAND_2GHZ) { |
| 697 | if (!(local->hw.flags & IEEE80211_HW_2GHZ_SHORT_SLOT_INCAPABLE)) |
| 698 | capab |= WLAN_CAPABILITY_SHORT_SLOT_TIME; |
| 699 | if (!(local->hw.flags & IEEE80211_HW_2GHZ_SHORT_PREAMBLE_INCAPABLE)) |
| 700 | capab |= WLAN_CAPABILITY_SHORT_PREAMBLE; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 701 | } |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 702 | |
| 703 | bss = ieee80211_rx_bss_get(dev, ifsta->bssid, |
| 704 | local->hw.conf.channel->center_freq, |
John W. Linville | cffdd30 | 2007-10-05 14:23:27 -0400 | [diff] [blame] | 705 | ifsta->ssid, ifsta->ssid_len); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 706 | if (bss) { |
| 707 | if (bss->capability & WLAN_CAPABILITY_PRIVACY) |
| 708 | capab |= WLAN_CAPABILITY_PRIVACY; |
| 709 | if (bss->wmm_ie) { |
| 710 | wmm = 1; |
| 711 | } |
| 712 | ieee80211_rx_bss_put(dev, bss); |
| 713 | } |
| 714 | |
| 715 | mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24); |
| 716 | memset(mgmt, 0, 24); |
| 717 | memcpy(mgmt->da, ifsta->bssid, ETH_ALEN); |
| 718 | memcpy(mgmt->sa, dev->dev_addr, ETH_ALEN); |
| 719 | memcpy(mgmt->bssid, ifsta->bssid, ETH_ALEN); |
| 720 | |
Jiri Slaby | d6f2da5 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 721 | if (ifsta->flags & IEEE80211_STA_PREV_BSSID_SET) { |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 722 | skb_put(skb, 10); |
| 723 | mgmt->frame_control = IEEE80211_FC(IEEE80211_FTYPE_MGMT, |
| 724 | IEEE80211_STYPE_REASSOC_REQ); |
| 725 | mgmt->u.reassoc_req.capab_info = cpu_to_le16(capab); |
| 726 | mgmt->u.reassoc_req.listen_interval = cpu_to_le16(1); |
| 727 | memcpy(mgmt->u.reassoc_req.current_ap, ifsta->prev_bssid, |
| 728 | ETH_ALEN); |
| 729 | } else { |
| 730 | skb_put(skb, 4); |
| 731 | mgmt->frame_control = IEEE80211_FC(IEEE80211_FTYPE_MGMT, |
| 732 | IEEE80211_STYPE_ASSOC_REQ); |
| 733 | mgmt->u.assoc_req.capab_info = cpu_to_le16(capab); |
| 734 | mgmt->u.assoc_req.listen_interval = cpu_to_le16(1); |
| 735 | } |
| 736 | |
| 737 | /* SSID */ |
| 738 | ies = pos = skb_put(skb, 2 + ifsta->ssid_len); |
| 739 | *pos++ = WLAN_EID_SSID; |
| 740 | *pos++ = ifsta->ssid_len; |
| 741 | memcpy(pos, ifsta->ssid, ifsta->ssid_len); |
| 742 | |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 743 | len = sband->n_bitrates; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 744 | if (len > 8) |
| 745 | len = 8; |
| 746 | pos = skb_put(skb, len + 2); |
| 747 | *pos++ = WLAN_EID_SUPP_RATES; |
| 748 | *pos++ = len; |
| 749 | for (i = 0; i < len; i++) { |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 750 | int rate = sband->bitrates[i].bitrate; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 751 | *pos++ = (u8) (rate / 5); |
| 752 | } |
| 753 | |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 754 | if (sband->n_bitrates > len) { |
| 755 | pos = skb_put(skb, sband->n_bitrates - len + 2); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 756 | *pos++ = WLAN_EID_EXT_SUPP_RATES; |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 757 | *pos++ = sband->n_bitrates - len; |
| 758 | for (i = len; i < sband->n_bitrates; i++) { |
| 759 | int rate = sband->bitrates[i].bitrate; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 760 | *pos++ = (u8) (rate / 5); |
| 761 | } |
| 762 | } |
| 763 | |
| 764 | if (ifsta->extra_ie) { |
| 765 | pos = skb_put(skb, ifsta->extra_ie_len); |
| 766 | memcpy(pos, ifsta->extra_ie, ifsta->extra_ie_len); |
| 767 | } |
| 768 | |
Jiri Slaby | d6f2da5 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 769 | if (wmm && (ifsta->flags & IEEE80211_STA_WMM_ENABLED)) { |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 770 | pos = skb_put(skb, 9); |
| 771 | *pos++ = WLAN_EID_VENDOR_SPECIFIC; |
| 772 | *pos++ = 7; /* len */ |
| 773 | *pos++ = 0x00; /* Microsoft OUI 00:50:F2 */ |
| 774 | *pos++ = 0x50; |
| 775 | *pos++ = 0xf2; |
| 776 | *pos++ = 2; /* WME */ |
| 777 | *pos++ = 0; /* WME info */ |
| 778 | *pos++ = 1; /* WME ver */ |
| 779 | *pos++ = 0; |
| 780 | } |
Ron Rindjunsky | c715350 | 2007-11-26 16:14:31 +0200 | [diff] [blame] | 781 | /* wmm support is a must to HT */ |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 782 | if (wmm && sband->ht_info.ht_supported) { |
| 783 | __le16 tmp = cpu_to_le16(sband->ht_info.cap); |
Ron Rindjunsky | c715350 | 2007-11-26 16:14:31 +0200 | [diff] [blame] | 784 | pos = skb_put(skb, sizeof(struct ieee80211_ht_cap)+2); |
| 785 | *pos++ = WLAN_EID_HT_CAPABILITY; |
| 786 | *pos++ = sizeof(struct ieee80211_ht_cap); |
| 787 | memset(pos, 0, sizeof(struct ieee80211_ht_cap)); |
| 788 | memcpy(pos, &tmp, sizeof(u16)); |
| 789 | pos += sizeof(u16); |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 790 | /* TODO: needs a define here for << 2 */ |
| 791 | *pos++ = sband->ht_info.ampdu_factor | |
| 792 | (sband->ht_info.ampdu_density << 2); |
| 793 | memcpy(pos, sband->ht_info.supp_mcs_set, 16); |
Ron Rindjunsky | c715350 | 2007-11-26 16:14:31 +0200 | [diff] [blame] | 794 | } |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 795 | |
| 796 | kfree(ifsta->assocreq_ies); |
| 797 | ifsta->assocreq_ies_len = (skb->data + skb->len) - ies; |
Michael Wu | 0ec0b7a | 2007-07-27 15:43:24 +0200 | [diff] [blame] | 798 | ifsta->assocreq_ies = kmalloc(ifsta->assocreq_ies_len, GFP_KERNEL); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 799 | if (ifsta->assocreq_ies) |
| 800 | memcpy(ifsta->assocreq_ies, ies, ifsta->assocreq_ies_len); |
| 801 | |
| 802 | ieee80211_sta_tx(dev, skb, 0); |
| 803 | } |
| 804 | |
| 805 | |
| 806 | static void ieee80211_send_deauth(struct net_device *dev, |
| 807 | struct ieee80211_if_sta *ifsta, u16 reason) |
| 808 | { |
| 809 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); |
| 810 | struct sk_buff *skb; |
| 811 | struct ieee80211_mgmt *mgmt; |
| 812 | |
| 813 | skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*mgmt)); |
| 814 | if (!skb) { |
| 815 | printk(KERN_DEBUG "%s: failed to allocate buffer for deauth " |
| 816 | "frame\n", dev->name); |
| 817 | return; |
| 818 | } |
| 819 | skb_reserve(skb, local->hw.extra_tx_headroom); |
| 820 | |
| 821 | mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24); |
| 822 | memset(mgmt, 0, 24); |
| 823 | memcpy(mgmt->da, ifsta->bssid, ETH_ALEN); |
| 824 | memcpy(mgmt->sa, dev->dev_addr, ETH_ALEN); |
| 825 | memcpy(mgmt->bssid, ifsta->bssid, ETH_ALEN); |
| 826 | mgmt->frame_control = IEEE80211_FC(IEEE80211_FTYPE_MGMT, |
| 827 | IEEE80211_STYPE_DEAUTH); |
| 828 | skb_put(skb, 2); |
| 829 | mgmt->u.deauth.reason_code = cpu_to_le16(reason); |
| 830 | |
| 831 | ieee80211_sta_tx(dev, skb, 0); |
| 832 | } |
| 833 | |
| 834 | |
| 835 | static void ieee80211_send_disassoc(struct net_device *dev, |
| 836 | struct ieee80211_if_sta *ifsta, u16 reason) |
| 837 | { |
| 838 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); |
| 839 | struct sk_buff *skb; |
| 840 | struct ieee80211_mgmt *mgmt; |
| 841 | |
| 842 | skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*mgmt)); |
| 843 | if (!skb) { |
| 844 | printk(KERN_DEBUG "%s: failed to allocate buffer for disassoc " |
| 845 | "frame\n", dev->name); |
| 846 | return; |
| 847 | } |
| 848 | skb_reserve(skb, local->hw.extra_tx_headroom); |
| 849 | |
| 850 | mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24); |
| 851 | memset(mgmt, 0, 24); |
| 852 | memcpy(mgmt->da, ifsta->bssid, ETH_ALEN); |
| 853 | memcpy(mgmt->sa, dev->dev_addr, ETH_ALEN); |
| 854 | memcpy(mgmt->bssid, ifsta->bssid, ETH_ALEN); |
| 855 | mgmt->frame_control = IEEE80211_FC(IEEE80211_FTYPE_MGMT, |
| 856 | IEEE80211_STYPE_DISASSOC); |
| 857 | skb_put(skb, 2); |
| 858 | mgmt->u.disassoc.reason_code = cpu_to_le16(reason); |
| 859 | |
| 860 | ieee80211_sta_tx(dev, skb, 0); |
| 861 | } |
| 862 | |
| 863 | |
| 864 | static int ieee80211_privacy_mismatch(struct net_device *dev, |
| 865 | struct ieee80211_if_sta *ifsta) |
| 866 | { |
John W. Linville | 65c107a | 2007-10-05 14:23:27 -0400 | [diff] [blame] | 867 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 868 | struct ieee80211_sta_bss *bss; |
Johannes Berg | 5b98b1f | 2007-11-03 13:11:10 +0000 | [diff] [blame] | 869 | int bss_privacy; |
| 870 | int wep_privacy; |
| 871 | int privacy_invoked; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 872 | |
Johannes Berg | 5b98b1f | 2007-11-03 13:11:10 +0000 | [diff] [blame] | 873 | if (!ifsta || (ifsta->flags & IEEE80211_STA_MIXED_CELL)) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 874 | return 0; |
| 875 | |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 876 | bss = ieee80211_rx_bss_get(dev, ifsta->bssid, |
| 877 | local->hw.conf.channel->center_freq, |
John W. Linville | cffdd30 | 2007-10-05 14:23:27 -0400 | [diff] [blame] | 878 | ifsta->ssid, ifsta->ssid_len); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 879 | if (!bss) |
| 880 | return 0; |
| 881 | |
Johannes Berg | 5b98b1f | 2007-11-03 13:11:10 +0000 | [diff] [blame] | 882 | bss_privacy = !!(bss->capability & WLAN_CAPABILITY_PRIVACY); |
| 883 | wep_privacy = !!ieee80211_sta_wep_configured(dev); |
| 884 | privacy_invoked = !!(ifsta->flags & IEEE80211_STA_PRIVACY_INVOKED); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 885 | |
| 886 | ieee80211_rx_bss_put(dev, bss); |
| 887 | |
Johannes Berg | 5b98b1f | 2007-11-03 13:11:10 +0000 | [diff] [blame] | 888 | if ((bss_privacy == wep_privacy) || (bss_privacy == privacy_invoked)) |
| 889 | return 0; |
| 890 | |
| 891 | return 1; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 892 | } |
| 893 | |
| 894 | |
| 895 | static void ieee80211_associate(struct net_device *dev, |
| 896 | struct ieee80211_if_sta *ifsta) |
| 897 | { |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 898 | DECLARE_MAC_BUF(mac); |
| 899 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 900 | ifsta->assoc_tries++; |
| 901 | if (ifsta->assoc_tries > IEEE80211_ASSOC_MAX_TRIES) { |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 902 | printk(KERN_DEBUG "%s: association with AP %s" |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 903 | " timed out\n", |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 904 | dev->name, print_mac(mac, ifsta->bssid)); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 905 | ifsta->state = IEEE80211_DISABLED; |
| 906 | return; |
| 907 | } |
| 908 | |
| 909 | ifsta->state = IEEE80211_ASSOCIATE; |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 910 | printk(KERN_DEBUG "%s: associate with AP %s\n", |
| 911 | dev->name, print_mac(mac, ifsta->bssid)); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 912 | if (ieee80211_privacy_mismatch(dev, ifsta)) { |
| 913 | printk(KERN_DEBUG "%s: mismatch in privacy configuration and " |
| 914 | "mixed-cell disabled - abort association\n", dev->name); |
| 915 | ifsta->state = IEEE80211_DISABLED; |
| 916 | return; |
| 917 | } |
| 918 | |
| 919 | ieee80211_send_assoc(dev, ifsta); |
| 920 | |
| 921 | mod_timer(&ifsta->timer, jiffies + IEEE80211_ASSOC_TIMEOUT); |
| 922 | } |
| 923 | |
| 924 | |
| 925 | static void ieee80211_associated(struct net_device *dev, |
| 926 | struct ieee80211_if_sta *ifsta) |
| 927 | { |
| 928 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); |
| 929 | struct sta_info *sta; |
| 930 | int disassoc; |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 931 | DECLARE_MAC_BUF(mac); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 932 | |
| 933 | /* TODO: start monitoring current AP signal quality and number of |
| 934 | * missed beacons. Scan other channels every now and then and search |
| 935 | * for better APs. */ |
| 936 | /* TODO: remove expired BSSes */ |
| 937 | |
| 938 | ifsta->state = IEEE80211_ASSOCIATED; |
| 939 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 940 | rcu_read_lock(); |
| 941 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 942 | sta = sta_info_get(local, ifsta->bssid); |
| 943 | if (!sta) { |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 944 | printk(KERN_DEBUG "%s: No STA entry for own AP %s\n", |
| 945 | dev->name, print_mac(mac, ifsta->bssid)); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 946 | disassoc = 1; |
| 947 | } else { |
| 948 | disassoc = 0; |
| 949 | if (time_after(jiffies, |
| 950 | sta->last_rx + IEEE80211_MONITORING_INTERVAL)) { |
Jiri Slaby | d6f2da5 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 951 | if (ifsta->flags & IEEE80211_STA_PROBEREQ_POLL) { |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 952 | printk(KERN_DEBUG "%s: No ProbeResp from " |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 953 | "current AP %s - assume out of " |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 954 | "range\n", |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 955 | dev->name, print_mac(mac, ifsta->bssid)); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 956 | disassoc = 1; |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 957 | sta_info_unlink(&sta); |
Jiri Slaby | d6f2da5 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 958 | } else |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 959 | ieee80211_send_probe_req(dev, ifsta->bssid, |
| 960 | local->scan_ssid, |
| 961 | local->scan_ssid_len); |
Jiri Slaby | d6f2da5 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 962 | ifsta->flags ^= IEEE80211_STA_PROBEREQ_POLL; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 963 | } else { |
Jiri Slaby | d6f2da5 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 964 | ifsta->flags &= ~IEEE80211_STA_PROBEREQ_POLL; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 965 | if (time_after(jiffies, ifsta->last_probe + |
| 966 | IEEE80211_PROBE_INTERVAL)) { |
| 967 | ifsta->last_probe = jiffies; |
| 968 | ieee80211_send_probe_req(dev, ifsta->bssid, |
| 969 | ifsta->ssid, |
| 970 | ifsta->ssid_len); |
| 971 | } |
| 972 | } |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 973 | } |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 974 | |
| 975 | rcu_read_unlock(); |
| 976 | |
Johannes Berg | 3b96766 | 2008-04-08 17:56:52 +0200 | [diff] [blame] | 977 | if (disassoc && sta) |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 978 | sta_info_destroy(sta); |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 979 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 980 | if (disassoc) { |
Michael Wu | 2d192d9 | 2007-11-10 00:15:25 -0500 | [diff] [blame] | 981 | ifsta->state = IEEE80211_DISABLED; |
| 982 | ieee80211_set_associated(dev, ifsta, 0); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 983 | } else { |
| 984 | mod_timer(&ifsta->timer, jiffies + |
| 985 | IEEE80211_MONITORING_INTERVAL); |
| 986 | } |
| 987 | } |
| 988 | |
| 989 | |
| 990 | static void ieee80211_send_probe_req(struct net_device *dev, u8 *dst, |
| 991 | u8 *ssid, size_t ssid_len) |
| 992 | { |
| 993 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 994 | struct ieee80211_supported_band *sband; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 995 | struct sk_buff *skb; |
| 996 | struct ieee80211_mgmt *mgmt; |
| 997 | u8 *pos, *supp_rates, *esupp_rates = NULL; |
| 998 | int i; |
| 999 | |
| 1000 | skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*mgmt) + 200); |
| 1001 | if (!skb) { |
| 1002 | printk(KERN_DEBUG "%s: failed to allocate buffer for probe " |
| 1003 | "request\n", dev->name); |
| 1004 | return; |
| 1005 | } |
| 1006 | skb_reserve(skb, local->hw.extra_tx_headroom); |
| 1007 | |
| 1008 | mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24); |
| 1009 | memset(mgmt, 0, 24); |
| 1010 | mgmt->frame_control = IEEE80211_FC(IEEE80211_FTYPE_MGMT, |
| 1011 | IEEE80211_STYPE_PROBE_REQ); |
| 1012 | memcpy(mgmt->sa, dev->dev_addr, ETH_ALEN); |
| 1013 | if (dst) { |
| 1014 | memcpy(mgmt->da, dst, ETH_ALEN); |
| 1015 | memcpy(mgmt->bssid, dst, ETH_ALEN); |
| 1016 | } else { |
| 1017 | memset(mgmt->da, 0xff, ETH_ALEN); |
| 1018 | memset(mgmt->bssid, 0xff, ETH_ALEN); |
| 1019 | } |
| 1020 | pos = skb_put(skb, 2 + ssid_len); |
| 1021 | *pos++ = WLAN_EID_SSID; |
| 1022 | *pos++ = ssid_len; |
| 1023 | memcpy(pos, ssid, ssid_len); |
| 1024 | |
| 1025 | supp_rates = skb_put(skb, 2); |
| 1026 | supp_rates[0] = WLAN_EID_SUPP_RATES; |
| 1027 | supp_rates[1] = 0; |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 1028 | sband = local->hw.wiphy->bands[local->hw.conf.channel->band]; |
| 1029 | |
| 1030 | for (i = 0; i < sband->n_bitrates; i++) { |
| 1031 | struct ieee80211_rate *rate = &sband->bitrates[i]; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1032 | if (esupp_rates) { |
| 1033 | pos = skb_put(skb, 1); |
| 1034 | esupp_rates[1]++; |
| 1035 | } else if (supp_rates[1] == 8) { |
| 1036 | esupp_rates = skb_put(skb, 3); |
| 1037 | esupp_rates[0] = WLAN_EID_EXT_SUPP_RATES; |
| 1038 | esupp_rates[1] = 1; |
| 1039 | pos = &esupp_rates[2]; |
| 1040 | } else { |
| 1041 | pos = skb_put(skb, 1); |
| 1042 | supp_rates[1]++; |
| 1043 | } |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 1044 | *pos = rate->bitrate / 5; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1045 | } |
| 1046 | |
| 1047 | ieee80211_sta_tx(dev, skb, 0); |
| 1048 | } |
| 1049 | |
| 1050 | |
| 1051 | static int ieee80211_sta_wep_configured(struct net_device *dev) |
| 1052 | { |
| 1053 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 1054 | if (!sdata || !sdata->default_key || |
Johannes Berg | 8f20fc2 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 1055 | sdata->default_key->conf.alg != ALG_WEP) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1056 | return 0; |
| 1057 | return 1; |
| 1058 | } |
| 1059 | |
| 1060 | |
| 1061 | static void ieee80211_auth_completed(struct net_device *dev, |
| 1062 | struct ieee80211_if_sta *ifsta) |
| 1063 | { |
| 1064 | printk(KERN_DEBUG "%s: authenticated\n", dev->name); |
Jiri Slaby | d6f2da5 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 1065 | ifsta->flags |= IEEE80211_STA_AUTHENTICATED; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1066 | ieee80211_associate(dev, ifsta); |
| 1067 | } |
| 1068 | |
| 1069 | |
| 1070 | static void ieee80211_auth_challenge(struct net_device *dev, |
| 1071 | struct ieee80211_if_sta *ifsta, |
| 1072 | struct ieee80211_mgmt *mgmt, |
| 1073 | size_t len) |
| 1074 | { |
| 1075 | u8 *pos; |
| 1076 | struct ieee802_11_elems elems; |
| 1077 | |
| 1078 | printk(KERN_DEBUG "%s: replying to auth challenge\n", dev->name); |
| 1079 | pos = mgmt->u.auth.variable; |
John W. Linville | 67a4cce | 2007-10-12 16:40:37 -0400 | [diff] [blame] | 1080 | ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), &elems); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1081 | if (!elems.challenge) { |
| 1082 | printk(KERN_DEBUG "%s: no challenge IE in shared key auth " |
| 1083 | "frame\n", dev->name); |
| 1084 | return; |
| 1085 | } |
| 1086 | ieee80211_send_auth(dev, ifsta, 3, elems.challenge - 2, |
| 1087 | elems.challenge_len + 2, 1); |
| 1088 | } |
| 1089 | |
Ron Rindjunsky | 9f985b0 | 2007-11-26 16:14:32 +0200 | [diff] [blame] | 1090 | static void ieee80211_send_addba_resp(struct net_device *dev, u8 *da, u16 tid, |
| 1091 | u8 dialog_token, u16 status, u16 policy, |
| 1092 | u16 buf_size, u16 timeout) |
| 1093 | { |
| 1094 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 1095 | struct ieee80211_if_sta *ifsta = &sdata->u.sta; |
| 1096 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); |
| 1097 | struct sk_buff *skb; |
| 1098 | struct ieee80211_mgmt *mgmt; |
| 1099 | u16 capab; |
| 1100 | |
Ron Rindjunsky | 07db218 | 2007-12-25 17:00:33 +0200 | [diff] [blame] | 1101 | skb = dev_alloc_skb(sizeof(*mgmt) + local->hw.extra_tx_headroom + 1 + |
| 1102 | sizeof(mgmt->u.action.u.addba_resp)); |
Ron Rindjunsky | 9f985b0 | 2007-11-26 16:14:32 +0200 | [diff] [blame] | 1103 | if (!skb) { |
| 1104 | printk(KERN_DEBUG "%s: failed to allocate buffer " |
| 1105 | "for addba resp frame\n", dev->name); |
| 1106 | return; |
| 1107 | } |
| 1108 | |
| 1109 | skb_reserve(skb, local->hw.extra_tx_headroom); |
| 1110 | mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24); |
| 1111 | memset(mgmt, 0, 24); |
| 1112 | memcpy(mgmt->da, da, ETH_ALEN); |
| 1113 | memcpy(mgmt->sa, dev->dev_addr, ETH_ALEN); |
Johannes Berg | 51fb61e | 2007-12-19 01:31:27 +0100 | [diff] [blame] | 1114 | if (sdata->vif.type == IEEE80211_IF_TYPE_AP) |
Ron Rindjunsky | 9f985b0 | 2007-11-26 16:14:32 +0200 | [diff] [blame] | 1115 | memcpy(mgmt->bssid, dev->dev_addr, ETH_ALEN); |
| 1116 | else |
| 1117 | memcpy(mgmt->bssid, ifsta->bssid, ETH_ALEN); |
| 1118 | mgmt->frame_control = IEEE80211_FC(IEEE80211_FTYPE_MGMT, |
| 1119 | IEEE80211_STYPE_ACTION); |
| 1120 | |
| 1121 | skb_put(skb, 1 + sizeof(mgmt->u.action.u.addba_resp)); |
| 1122 | mgmt->u.action.category = WLAN_CATEGORY_BACK; |
| 1123 | mgmt->u.action.u.addba_resp.action_code = WLAN_ACTION_ADDBA_RESP; |
| 1124 | mgmt->u.action.u.addba_resp.dialog_token = dialog_token; |
| 1125 | |
| 1126 | capab = (u16)(policy << 1); /* bit 1 aggregation policy */ |
| 1127 | capab |= (u16)(tid << 2); /* bit 5:2 TID number */ |
| 1128 | capab |= (u16)(buf_size << 6); /* bit 15:6 max size of aggregation */ |
| 1129 | |
| 1130 | mgmt->u.action.u.addba_resp.capab = cpu_to_le16(capab); |
| 1131 | mgmt->u.action.u.addba_resp.timeout = cpu_to_le16(timeout); |
| 1132 | mgmt->u.action.u.addba_resp.status = cpu_to_le16(status); |
| 1133 | |
| 1134 | ieee80211_sta_tx(dev, skb, 0); |
| 1135 | |
| 1136 | return; |
| 1137 | } |
| 1138 | |
Ron Rindjunsky | eadc8d9 | 2008-01-28 14:07:17 +0200 | [diff] [blame] | 1139 | void ieee80211_send_addba_request(struct net_device *dev, const u8 *da, |
| 1140 | u16 tid, u8 dialog_token, u16 start_seq_num, |
| 1141 | u16 agg_size, u16 timeout) |
| 1142 | { |
| 1143 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); |
| 1144 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 1145 | struct ieee80211_if_sta *ifsta = &sdata->u.sta; |
| 1146 | struct sk_buff *skb; |
| 1147 | struct ieee80211_mgmt *mgmt; |
| 1148 | u16 capab; |
| 1149 | |
| 1150 | skb = dev_alloc_skb(sizeof(*mgmt) + local->hw.extra_tx_headroom + 1 + |
| 1151 | sizeof(mgmt->u.action.u.addba_req)); |
| 1152 | |
| 1153 | |
| 1154 | if (!skb) { |
| 1155 | printk(KERN_ERR "%s: failed to allocate buffer " |
| 1156 | "for addba request frame\n", dev->name); |
| 1157 | return; |
| 1158 | } |
| 1159 | skb_reserve(skb, local->hw.extra_tx_headroom); |
| 1160 | mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24); |
| 1161 | memset(mgmt, 0, 24); |
| 1162 | memcpy(mgmt->da, da, ETH_ALEN); |
| 1163 | memcpy(mgmt->sa, dev->dev_addr, ETH_ALEN); |
| 1164 | if (sdata->vif.type == IEEE80211_IF_TYPE_AP) |
| 1165 | memcpy(mgmt->bssid, dev->dev_addr, ETH_ALEN); |
| 1166 | else |
| 1167 | memcpy(mgmt->bssid, ifsta->bssid, ETH_ALEN); |
| 1168 | |
| 1169 | mgmt->frame_control = IEEE80211_FC(IEEE80211_FTYPE_MGMT, |
| 1170 | IEEE80211_STYPE_ACTION); |
| 1171 | |
| 1172 | skb_put(skb, 1 + sizeof(mgmt->u.action.u.addba_req)); |
| 1173 | |
| 1174 | mgmt->u.action.category = WLAN_CATEGORY_BACK; |
| 1175 | mgmt->u.action.u.addba_req.action_code = WLAN_ACTION_ADDBA_REQ; |
| 1176 | |
| 1177 | mgmt->u.action.u.addba_req.dialog_token = dialog_token; |
| 1178 | capab = (u16)(1 << 1); /* bit 1 aggregation policy */ |
| 1179 | capab |= (u16)(tid << 2); /* bit 5:2 TID number */ |
| 1180 | capab |= (u16)(agg_size << 6); /* bit 15:6 max size of aggergation */ |
| 1181 | |
| 1182 | mgmt->u.action.u.addba_req.capab = cpu_to_le16(capab); |
| 1183 | |
| 1184 | mgmt->u.action.u.addba_req.timeout = cpu_to_le16(timeout); |
| 1185 | mgmt->u.action.u.addba_req.start_seq_num = |
| 1186 | cpu_to_le16(start_seq_num << 4); |
| 1187 | |
| 1188 | ieee80211_sta_tx(dev, skb, 0); |
| 1189 | } |
| 1190 | |
Ron Rindjunsky | 9f985b0 | 2007-11-26 16:14:32 +0200 | [diff] [blame] | 1191 | static void ieee80211_sta_process_addba_request(struct net_device *dev, |
| 1192 | struct ieee80211_mgmt *mgmt, |
| 1193 | size_t len) |
| 1194 | { |
| 1195 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); |
Ron Rindjunsky | 07db218 | 2007-12-25 17:00:33 +0200 | [diff] [blame] | 1196 | struct ieee80211_hw *hw = &local->hw; |
| 1197 | struct ieee80211_conf *conf = &hw->conf; |
Ron Rindjunsky | 9f985b0 | 2007-11-26 16:14:32 +0200 | [diff] [blame] | 1198 | struct sta_info *sta; |
Ron Rindjunsky | 07db218 | 2007-12-25 17:00:33 +0200 | [diff] [blame] | 1199 | struct tid_ampdu_rx *tid_agg_rx; |
| 1200 | u16 capab, tid, timeout, ba_policy, buf_size, start_seq_num, status; |
Ron Rindjunsky | 9f985b0 | 2007-11-26 16:14:32 +0200 | [diff] [blame] | 1201 | u8 dialog_token; |
Ron Rindjunsky | 07db218 | 2007-12-25 17:00:33 +0200 | [diff] [blame] | 1202 | int ret = -EOPNOTSUPP; |
| 1203 | DECLARE_MAC_BUF(mac); |
Ron Rindjunsky | 9f985b0 | 2007-11-26 16:14:32 +0200 | [diff] [blame] | 1204 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 1205 | rcu_read_lock(); |
| 1206 | |
Ron Rindjunsky | 9f985b0 | 2007-11-26 16:14:32 +0200 | [diff] [blame] | 1207 | sta = sta_info_get(local, mgmt->sa); |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 1208 | if (!sta) { |
| 1209 | rcu_read_unlock(); |
Ron Rindjunsky | 9f985b0 | 2007-11-26 16:14:32 +0200 | [diff] [blame] | 1210 | return; |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 1211 | } |
Ron Rindjunsky | 9f985b0 | 2007-11-26 16:14:32 +0200 | [diff] [blame] | 1212 | |
| 1213 | /* extract session parameters from addba request frame */ |
| 1214 | dialog_token = mgmt->u.action.u.addba_req.dialog_token; |
| 1215 | timeout = le16_to_cpu(mgmt->u.action.u.addba_req.timeout); |
Ron Rindjunsky | 07db218 | 2007-12-25 17:00:33 +0200 | [diff] [blame] | 1216 | start_seq_num = |
| 1217 | le16_to_cpu(mgmt->u.action.u.addba_req.start_seq_num) >> 4; |
Ron Rindjunsky | 9f985b0 | 2007-11-26 16:14:32 +0200 | [diff] [blame] | 1218 | |
| 1219 | capab = le16_to_cpu(mgmt->u.action.u.addba_req.capab); |
| 1220 | ba_policy = (capab & IEEE80211_ADDBA_PARAM_POLICY_MASK) >> 1; |
| 1221 | tid = (capab & IEEE80211_ADDBA_PARAM_TID_MASK) >> 2; |
| 1222 | buf_size = (capab & IEEE80211_ADDBA_PARAM_BUF_SIZE_MASK) >> 6; |
| 1223 | |
Ron Rindjunsky | 9f985b0 | 2007-11-26 16:14:32 +0200 | [diff] [blame] | 1224 | status = WLAN_STATUS_REQUEST_DECLINED; |
| 1225 | |
Ron Rindjunsky | 07db218 | 2007-12-25 17:00:33 +0200 | [diff] [blame] | 1226 | /* sanity check for incoming parameters: |
| 1227 | * check if configuration can support the BA policy |
| 1228 | * and if buffer size does not exceeds max value */ |
| 1229 | if (((ba_policy != 1) |
| 1230 | && (!(conf->ht_conf.cap & IEEE80211_HT_CAP_DELAY_BA))) |
| 1231 | || (buf_size > IEEE80211_MAX_AMPDU_BUF)) { |
| 1232 | status = WLAN_STATUS_INVALID_QOS_PARAM; |
| 1233 | #ifdef CONFIG_MAC80211_HT_DEBUG |
| 1234 | if (net_ratelimit()) |
Ron Rindjunsky | 7b9d44c | 2008-03-18 15:00:31 -0700 | [diff] [blame] | 1235 | printk(KERN_DEBUG "AddBA Req with bad params from " |
Ron Rindjunsky | 07db218 | 2007-12-25 17:00:33 +0200 | [diff] [blame] | 1236 | "%s on tid %u. policy %d, buffer size %d\n", |
| 1237 | print_mac(mac, mgmt->sa), tid, ba_policy, |
| 1238 | buf_size); |
| 1239 | #endif /* CONFIG_MAC80211_HT_DEBUG */ |
| 1240 | goto end_no_lock; |
| 1241 | } |
| 1242 | /* determine default buffer size */ |
| 1243 | if (buf_size == 0) { |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 1244 | struct ieee80211_supported_band *sband; |
| 1245 | |
| 1246 | sband = local->hw.wiphy->bands[conf->channel->band]; |
Ron Rindjunsky | 07db218 | 2007-12-25 17:00:33 +0200 | [diff] [blame] | 1247 | buf_size = IEEE80211_MIN_AMPDU_BUF; |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 1248 | buf_size = buf_size << sband->ht_info.ampdu_factor; |
Ron Rindjunsky | 07db218 | 2007-12-25 17:00:33 +0200 | [diff] [blame] | 1249 | } |
| 1250 | |
Ron Rindjunsky | 07db218 | 2007-12-25 17:00:33 +0200 | [diff] [blame] | 1251 | |
| 1252 | /* examine state machine */ |
| 1253 | spin_lock_bh(&sta->ampdu_mlme.ampdu_rx); |
| 1254 | |
Ron Rindjunsky | cee24a3 | 2008-03-26 20:36:03 +0200 | [diff] [blame] | 1255 | if (sta->ampdu_mlme.tid_state_rx[tid] != HT_AGG_STATE_IDLE) { |
Ron Rindjunsky | 07db218 | 2007-12-25 17:00:33 +0200 | [diff] [blame] | 1256 | #ifdef CONFIG_MAC80211_HT_DEBUG |
| 1257 | if (net_ratelimit()) |
Ron Rindjunsky | 7b9d44c | 2008-03-18 15:00:31 -0700 | [diff] [blame] | 1258 | printk(KERN_DEBUG "unexpected AddBA Req from " |
Ron Rindjunsky | 07db218 | 2007-12-25 17:00:33 +0200 | [diff] [blame] | 1259 | "%s on tid %u\n", |
| 1260 | print_mac(mac, mgmt->sa), tid); |
| 1261 | #endif /* CONFIG_MAC80211_HT_DEBUG */ |
| 1262 | goto end; |
| 1263 | } |
| 1264 | |
Ron Rindjunsky | cee24a3 | 2008-03-26 20:36:03 +0200 | [diff] [blame] | 1265 | /* prepare A-MPDU MLME for Rx aggregation */ |
| 1266 | sta->ampdu_mlme.tid_rx[tid] = |
| 1267 | kmalloc(sizeof(struct tid_ampdu_rx), GFP_ATOMIC); |
| 1268 | if (!sta->ampdu_mlme.tid_rx[tid]) { |
| 1269 | if (net_ratelimit()) |
| 1270 | printk(KERN_ERR "allocate rx mlme to tid %d failed\n", |
| 1271 | tid); |
| 1272 | goto end; |
| 1273 | } |
| 1274 | /* rx timer */ |
| 1275 | sta->ampdu_mlme.tid_rx[tid]->session_timer.function = |
| 1276 | sta_rx_agg_session_timer_expired; |
| 1277 | sta->ampdu_mlme.tid_rx[tid]->session_timer.data = |
| 1278 | (unsigned long)&sta->timer_to_tid[tid]; |
| 1279 | init_timer(&sta->ampdu_mlme.tid_rx[tid]->session_timer); |
| 1280 | |
| 1281 | tid_agg_rx = sta->ampdu_mlme.tid_rx[tid]; |
| 1282 | |
Ron Rindjunsky | 07db218 | 2007-12-25 17:00:33 +0200 | [diff] [blame] | 1283 | /* prepare reordering buffer */ |
| 1284 | tid_agg_rx->reorder_buf = |
| 1285 | kmalloc(buf_size * sizeof(struct sk_buf *), GFP_ATOMIC); |
Johannes Berg | 03147df | 2008-02-26 00:39:28 +0100 | [diff] [blame] | 1286 | if (!tid_agg_rx->reorder_buf) { |
| 1287 | if (net_ratelimit()) |
| 1288 | printk(KERN_ERR "can not allocate reordering buffer " |
| 1289 | "to tid %d\n", tid); |
Ron Rindjunsky | cee24a3 | 2008-03-26 20:36:03 +0200 | [diff] [blame] | 1290 | kfree(sta->ampdu_mlme.tid_rx[tid]); |
Ron Rindjunsky | 07db218 | 2007-12-25 17:00:33 +0200 | [diff] [blame] | 1291 | goto end; |
| 1292 | } |
| 1293 | memset(tid_agg_rx->reorder_buf, 0, |
| 1294 | buf_size * sizeof(struct sk_buf *)); |
| 1295 | |
| 1296 | if (local->ops->ampdu_action) |
| 1297 | ret = local->ops->ampdu_action(hw, IEEE80211_AMPDU_RX_START, |
Ron Rindjunsky | 0df3ef4 | 2008-01-28 14:07:15 +0200 | [diff] [blame] | 1298 | sta->addr, tid, &start_seq_num); |
Ron Rindjunsky | 07db218 | 2007-12-25 17:00:33 +0200 | [diff] [blame] | 1299 | #ifdef CONFIG_MAC80211_HT_DEBUG |
Ron Rindjunsky | 513a102 | 2008-04-07 10:16:56 -0700 | [diff] [blame] | 1300 | printk(KERN_DEBUG "Rx A-MPDU request on tid %d result %d\n", tid, ret); |
Ron Rindjunsky | 07db218 | 2007-12-25 17:00:33 +0200 | [diff] [blame] | 1301 | #endif /* CONFIG_MAC80211_HT_DEBUG */ |
| 1302 | |
| 1303 | if (ret) { |
| 1304 | kfree(tid_agg_rx->reorder_buf); |
Ron Rindjunsky | cee24a3 | 2008-03-26 20:36:03 +0200 | [diff] [blame] | 1305 | kfree(tid_agg_rx); |
| 1306 | sta->ampdu_mlme.tid_rx[tid] = NULL; |
Ron Rindjunsky | 07db218 | 2007-12-25 17:00:33 +0200 | [diff] [blame] | 1307 | goto end; |
| 1308 | } |
| 1309 | |
| 1310 | /* change state and send addba resp */ |
Ron Rindjunsky | cee24a3 | 2008-03-26 20:36:03 +0200 | [diff] [blame] | 1311 | sta->ampdu_mlme.tid_state_rx[tid] = HT_AGG_STATE_OPERATIONAL; |
Ron Rindjunsky | 07db218 | 2007-12-25 17:00:33 +0200 | [diff] [blame] | 1312 | tid_agg_rx->dialog_token = dialog_token; |
| 1313 | tid_agg_rx->ssn = start_seq_num; |
| 1314 | tid_agg_rx->head_seq_num = start_seq_num; |
| 1315 | tid_agg_rx->buf_size = buf_size; |
| 1316 | tid_agg_rx->timeout = timeout; |
| 1317 | tid_agg_rx->stored_mpdu_num = 0; |
| 1318 | status = WLAN_STATUS_SUCCESS; |
| 1319 | end: |
| 1320 | spin_unlock_bh(&sta->ampdu_mlme.ampdu_rx); |
| 1321 | |
| 1322 | end_no_lock: |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 1323 | ieee80211_send_addba_resp(sta->sdata->dev, sta->addr, tid, |
| 1324 | dialog_token, status, 1, buf_size, timeout); |
| 1325 | rcu_read_unlock(); |
Ron Rindjunsky | 9f985b0 | 2007-11-26 16:14:32 +0200 | [diff] [blame] | 1326 | } |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1327 | |
Ron Rindjunsky | eadc8d9 | 2008-01-28 14:07:17 +0200 | [diff] [blame] | 1328 | static void ieee80211_sta_process_addba_resp(struct net_device *dev, |
| 1329 | struct ieee80211_mgmt *mgmt, |
| 1330 | size_t len) |
| 1331 | { |
| 1332 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); |
| 1333 | struct ieee80211_hw *hw = &local->hw; |
| 1334 | struct sta_info *sta; |
| 1335 | u16 capab; |
| 1336 | u16 tid; |
| 1337 | u8 *state; |
| 1338 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 1339 | rcu_read_lock(); |
| 1340 | |
Ron Rindjunsky | eadc8d9 | 2008-01-28 14:07:17 +0200 | [diff] [blame] | 1341 | sta = sta_info_get(local, mgmt->sa); |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 1342 | if (!sta) { |
| 1343 | rcu_read_unlock(); |
Ron Rindjunsky | eadc8d9 | 2008-01-28 14:07:17 +0200 | [diff] [blame] | 1344 | return; |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 1345 | } |
Ron Rindjunsky | eadc8d9 | 2008-01-28 14:07:17 +0200 | [diff] [blame] | 1346 | |
| 1347 | capab = le16_to_cpu(mgmt->u.action.u.addba_resp.capab); |
| 1348 | tid = (capab & IEEE80211_ADDBA_PARAM_TID_MASK) >> 2; |
| 1349 | |
Ron Rindjunsky | cee24a3 | 2008-03-26 20:36:03 +0200 | [diff] [blame] | 1350 | state = &sta->ampdu_mlme.tid_state_tx[tid]; |
Ron Rindjunsky | eadc8d9 | 2008-01-28 14:07:17 +0200 | [diff] [blame] | 1351 | |
| 1352 | spin_lock_bh(&sta->ampdu_mlme.ampdu_tx); |
| 1353 | |
Ron Rindjunsky | cee24a3 | 2008-03-26 20:36:03 +0200 | [diff] [blame] | 1354 | if (!(*state & HT_ADDBA_REQUESTED_MSK)) { |
| 1355 | spin_unlock_bh(&sta->ampdu_mlme.ampdu_tx); |
| 1356 | printk(KERN_DEBUG "state not HT_ADDBA_REQUESTED_MSK:" |
| 1357 | "%d\n", *state); |
| 1358 | goto addba_resp_exit; |
| 1359 | } |
| 1360 | |
Ron Rindjunsky | eadc8d9 | 2008-01-28 14:07:17 +0200 | [diff] [blame] | 1361 | if (mgmt->u.action.u.addba_resp.dialog_token != |
Ron Rindjunsky | cee24a3 | 2008-03-26 20:36:03 +0200 | [diff] [blame] | 1362 | sta->ampdu_mlme.tid_tx[tid]->dialog_token) { |
Ron Rindjunsky | eadc8d9 | 2008-01-28 14:07:17 +0200 | [diff] [blame] | 1363 | spin_unlock_bh(&sta->ampdu_mlme.ampdu_tx); |
| 1364 | #ifdef CONFIG_MAC80211_HT_DEBUG |
| 1365 | printk(KERN_DEBUG "wrong addBA response token, tid %d\n", tid); |
| 1366 | #endif /* CONFIG_MAC80211_HT_DEBUG */ |
Ron Rindjunsky | cee24a3 | 2008-03-26 20:36:03 +0200 | [diff] [blame] | 1367 | goto addba_resp_exit; |
Ron Rindjunsky | eadc8d9 | 2008-01-28 14:07:17 +0200 | [diff] [blame] | 1368 | } |
| 1369 | |
Ron Rindjunsky | cee24a3 | 2008-03-26 20:36:03 +0200 | [diff] [blame] | 1370 | del_timer_sync(&sta->ampdu_mlme.tid_tx[tid]->addba_resp_timer); |
Ron Rindjunsky | eadc8d9 | 2008-01-28 14:07:17 +0200 | [diff] [blame] | 1371 | #ifdef CONFIG_MAC80211_HT_DEBUG |
| 1372 | printk(KERN_DEBUG "switched off addBA timer for tid %d \n", tid); |
| 1373 | #endif /* CONFIG_MAC80211_HT_DEBUG */ |
| 1374 | if (le16_to_cpu(mgmt->u.action.u.addba_resp.status) |
| 1375 | == WLAN_STATUS_SUCCESS) { |
Ron Rindjunsky | eadc8d9 | 2008-01-28 14:07:17 +0200 | [diff] [blame] | 1376 | if (*state & HT_ADDBA_RECEIVED_MSK) |
| 1377 | printk(KERN_DEBUG "double addBA response\n"); |
| 1378 | |
| 1379 | *state |= HT_ADDBA_RECEIVED_MSK; |
Ron Rindjunsky | cee24a3 | 2008-03-26 20:36:03 +0200 | [diff] [blame] | 1380 | sta->ampdu_mlme.addba_req_num[tid] = 0; |
Ron Rindjunsky | eadc8d9 | 2008-01-28 14:07:17 +0200 | [diff] [blame] | 1381 | |
| 1382 | if (*state == HT_AGG_STATE_OPERATIONAL) { |
| 1383 | printk(KERN_DEBUG "Aggregation on for tid %d \n", tid); |
| 1384 | ieee80211_wake_queue(hw, sta->tid_to_tx_q[tid]); |
| 1385 | } |
| 1386 | |
| 1387 | spin_unlock_bh(&sta->ampdu_mlme.ampdu_tx); |
| 1388 | printk(KERN_DEBUG "recipient accepted agg: tid %d \n", tid); |
| 1389 | } else { |
| 1390 | printk(KERN_DEBUG "recipient rejected agg: tid %d \n", tid); |
| 1391 | |
Ron Rindjunsky | cee24a3 | 2008-03-26 20:36:03 +0200 | [diff] [blame] | 1392 | sta->ampdu_mlme.addba_req_num[tid]++; |
Ron Rindjunsky | eadc8d9 | 2008-01-28 14:07:17 +0200 | [diff] [blame] | 1393 | /* this will allow the state check in stop_BA_session */ |
| 1394 | *state = HT_AGG_STATE_OPERATIONAL; |
| 1395 | spin_unlock_bh(&sta->ampdu_mlme.ampdu_tx); |
| 1396 | ieee80211_stop_tx_ba_session(hw, sta->addr, tid, |
| 1397 | WLAN_BACK_INITIATOR); |
| 1398 | } |
Ron Rindjunsky | cee24a3 | 2008-03-26 20:36:03 +0200 | [diff] [blame] | 1399 | |
| 1400 | addba_resp_exit: |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 1401 | rcu_read_unlock(); |
Ron Rindjunsky | eadc8d9 | 2008-01-28 14:07:17 +0200 | [diff] [blame] | 1402 | } |
| 1403 | |
| 1404 | void ieee80211_send_delba(struct net_device *dev, const u8 *da, u16 tid, |
| 1405 | u16 initiator, u16 reason_code) |
Ron Rindjunsky | 07db218 | 2007-12-25 17:00:33 +0200 | [diff] [blame] | 1406 | { |
| 1407 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); |
| 1408 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 1409 | struct ieee80211_if_sta *ifsta = &sdata->u.sta; |
| 1410 | struct sk_buff *skb; |
| 1411 | struct ieee80211_mgmt *mgmt; |
| 1412 | u16 params; |
| 1413 | |
| 1414 | skb = dev_alloc_skb(sizeof(*mgmt) + local->hw.extra_tx_headroom + 1 + |
| 1415 | sizeof(mgmt->u.action.u.delba)); |
| 1416 | |
| 1417 | if (!skb) { |
| 1418 | printk(KERN_ERR "%s: failed to allocate buffer " |
| 1419 | "for delba frame\n", dev->name); |
| 1420 | return; |
| 1421 | } |
| 1422 | |
| 1423 | skb_reserve(skb, local->hw.extra_tx_headroom); |
| 1424 | mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24); |
| 1425 | memset(mgmt, 0, 24); |
| 1426 | memcpy(mgmt->da, da, ETH_ALEN); |
| 1427 | memcpy(mgmt->sa, dev->dev_addr, ETH_ALEN); |
Johannes Berg | 51fb61e | 2007-12-19 01:31:27 +0100 | [diff] [blame] | 1428 | if (sdata->vif.type == IEEE80211_IF_TYPE_AP) |
Ron Rindjunsky | 07db218 | 2007-12-25 17:00:33 +0200 | [diff] [blame] | 1429 | memcpy(mgmt->bssid, dev->dev_addr, ETH_ALEN); |
| 1430 | else |
| 1431 | memcpy(mgmt->bssid, ifsta->bssid, ETH_ALEN); |
| 1432 | mgmt->frame_control = IEEE80211_FC(IEEE80211_FTYPE_MGMT, |
| 1433 | IEEE80211_STYPE_ACTION); |
| 1434 | |
| 1435 | skb_put(skb, 1 + sizeof(mgmt->u.action.u.delba)); |
| 1436 | |
| 1437 | mgmt->u.action.category = WLAN_CATEGORY_BACK; |
| 1438 | mgmt->u.action.u.delba.action_code = WLAN_ACTION_DELBA; |
| 1439 | params = (u16)(initiator << 11); /* bit 11 initiator */ |
| 1440 | params |= (u16)(tid << 12); /* bit 15:12 TID number */ |
| 1441 | |
| 1442 | mgmt->u.action.u.delba.params = cpu_to_le16(params); |
| 1443 | mgmt->u.action.u.delba.reason_code = cpu_to_le16(reason_code); |
| 1444 | |
| 1445 | ieee80211_sta_tx(dev, skb, 0); |
| 1446 | } |
| 1447 | |
| 1448 | void ieee80211_sta_stop_rx_ba_session(struct net_device *dev, u8 *ra, u16 tid, |
| 1449 | u16 initiator, u16 reason) |
| 1450 | { |
| 1451 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); |
| 1452 | struct ieee80211_hw *hw = &local->hw; |
| 1453 | struct sta_info *sta; |
Ron Rindjunsky | b580781 | 2007-12-25 17:00:35 +0200 | [diff] [blame] | 1454 | int ret, i; |
Ron Rindjunsky | 513a102 | 2008-04-07 10:16:56 -0700 | [diff] [blame] | 1455 | DECLARE_MAC_BUF(mac); |
Ron Rindjunsky | 07db218 | 2007-12-25 17:00:33 +0200 | [diff] [blame] | 1456 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 1457 | rcu_read_lock(); |
| 1458 | |
Ron Rindjunsky | 07db218 | 2007-12-25 17:00:33 +0200 | [diff] [blame] | 1459 | sta = sta_info_get(local, ra); |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 1460 | if (!sta) { |
| 1461 | rcu_read_unlock(); |
Ron Rindjunsky | 07db218 | 2007-12-25 17:00:33 +0200 | [diff] [blame] | 1462 | return; |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 1463 | } |
Ron Rindjunsky | 07db218 | 2007-12-25 17:00:33 +0200 | [diff] [blame] | 1464 | |
| 1465 | /* check if TID is in operational state */ |
| 1466 | spin_lock_bh(&sta->ampdu_mlme.ampdu_rx); |
Ron Rindjunsky | cee24a3 | 2008-03-26 20:36:03 +0200 | [diff] [blame] | 1467 | if (sta->ampdu_mlme.tid_state_rx[tid] |
Ron Rindjunsky | 07db218 | 2007-12-25 17:00:33 +0200 | [diff] [blame] | 1468 | != HT_AGG_STATE_OPERATIONAL) { |
| 1469 | spin_unlock_bh(&sta->ampdu_mlme.ampdu_rx); |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 1470 | rcu_read_unlock(); |
Ron Rindjunsky | 07db218 | 2007-12-25 17:00:33 +0200 | [diff] [blame] | 1471 | return; |
| 1472 | } |
Ron Rindjunsky | cee24a3 | 2008-03-26 20:36:03 +0200 | [diff] [blame] | 1473 | sta->ampdu_mlme.tid_state_rx[tid] = |
Ron Rindjunsky | 07db218 | 2007-12-25 17:00:33 +0200 | [diff] [blame] | 1474 | HT_AGG_STATE_REQ_STOP_BA_MSK | |
| 1475 | (initiator << HT_AGG_STATE_INITIATOR_SHIFT); |
Ron Rindjunsky | 513a102 | 2008-04-07 10:16:56 -0700 | [diff] [blame] | 1476 | spin_unlock_bh(&sta->ampdu_mlme.ampdu_rx); |
Ron Rindjunsky | 07db218 | 2007-12-25 17:00:33 +0200 | [diff] [blame] | 1477 | |
| 1478 | /* stop HW Rx aggregation. ampdu_action existence |
| 1479 | * already verified in session init so we add the BUG_ON */ |
| 1480 | BUG_ON(!local->ops->ampdu_action); |
| 1481 | |
Ron Rindjunsky | 513a102 | 2008-04-07 10:16:56 -0700 | [diff] [blame] | 1482 | #ifdef CONFIG_MAC80211_HT_DEBUG |
| 1483 | printk(KERN_DEBUG "Rx BA session stop requested for %s tid %u\n", |
| 1484 | print_mac(mac, ra), tid); |
| 1485 | #endif /* CONFIG_MAC80211_HT_DEBUG */ |
| 1486 | |
Ron Rindjunsky | 07db218 | 2007-12-25 17:00:33 +0200 | [diff] [blame] | 1487 | ret = local->ops->ampdu_action(hw, IEEE80211_AMPDU_RX_STOP, |
Ron Rindjunsky | 0df3ef4 | 2008-01-28 14:07:15 +0200 | [diff] [blame] | 1488 | ra, tid, NULL); |
Ron Rindjunsky | 07db218 | 2007-12-25 17:00:33 +0200 | [diff] [blame] | 1489 | if (ret) |
| 1490 | printk(KERN_DEBUG "HW problem - can not stop rx " |
| 1491 | "aggergation for tid %d\n", tid); |
| 1492 | |
| 1493 | /* shutdown timer has not expired */ |
| 1494 | if (initiator != WLAN_BACK_TIMER) |
Ron Rindjunsky | cee24a3 | 2008-03-26 20:36:03 +0200 | [diff] [blame] | 1495 | del_timer_sync(&sta->ampdu_mlme.tid_rx[tid]->session_timer); |
Ron Rindjunsky | 07db218 | 2007-12-25 17:00:33 +0200 | [diff] [blame] | 1496 | |
| 1497 | /* check if this is a self generated aggregation halt */ |
| 1498 | if (initiator == WLAN_BACK_RECIPIENT || initiator == WLAN_BACK_TIMER) |
| 1499 | ieee80211_send_delba(dev, ra, tid, 0, reason); |
| 1500 | |
| 1501 | /* free the reordering buffer */ |
Ron Rindjunsky | cee24a3 | 2008-03-26 20:36:03 +0200 | [diff] [blame] | 1502 | for (i = 0; i < sta->ampdu_mlme.tid_rx[tid]->buf_size; i++) { |
| 1503 | if (sta->ampdu_mlme.tid_rx[tid]->reorder_buf[i]) { |
Ron Rindjunsky | b580781 | 2007-12-25 17:00:35 +0200 | [diff] [blame] | 1504 | /* release the reordered frames */ |
Ron Rindjunsky | cee24a3 | 2008-03-26 20:36:03 +0200 | [diff] [blame] | 1505 | dev_kfree_skb(sta->ampdu_mlme.tid_rx[tid]->reorder_buf[i]); |
| 1506 | sta->ampdu_mlme.tid_rx[tid]->stored_mpdu_num--; |
| 1507 | sta->ampdu_mlme.tid_rx[tid]->reorder_buf[i] = NULL; |
Ron Rindjunsky | b580781 | 2007-12-25 17:00:35 +0200 | [diff] [blame] | 1508 | } |
| 1509 | } |
Ron Rindjunsky | cee24a3 | 2008-03-26 20:36:03 +0200 | [diff] [blame] | 1510 | /* free resources */ |
| 1511 | kfree(sta->ampdu_mlme.tid_rx[tid]->reorder_buf); |
| 1512 | kfree(sta->ampdu_mlme.tid_rx[tid]); |
| 1513 | sta->ampdu_mlme.tid_rx[tid] = NULL; |
| 1514 | sta->ampdu_mlme.tid_state_rx[tid] = HT_AGG_STATE_IDLE; |
Ron Rindjunsky | 07db218 | 2007-12-25 17:00:33 +0200 | [diff] [blame] | 1515 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 1516 | rcu_read_unlock(); |
Ron Rindjunsky | 07db218 | 2007-12-25 17:00:33 +0200 | [diff] [blame] | 1517 | } |
| 1518 | |
Ron Rindjunsky | eadc8d9 | 2008-01-28 14:07:17 +0200 | [diff] [blame] | 1519 | |
Ron Rindjunsky | 688b88a | 2007-12-25 17:00:37 +0200 | [diff] [blame] | 1520 | static void ieee80211_sta_process_delba(struct net_device *dev, |
| 1521 | struct ieee80211_mgmt *mgmt, size_t len) |
| 1522 | { |
| 1523 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); |
| 1524 | struct sta_info *sta; |
| 1525 | u16 tid, params; |
| 1526 | u16 initiator; |
| 1527 | DECLARE_MAC_BUF(mac); |
| 1528 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 1529 | rcu_read_lock(); |
| 1530 | |
Ron Rindjunsky | 688b88a | 2007-12-25 17:00:37 +0200 | [diff] [blame] | 1531 | sta = sta_info_get(local, mgmt->sa); |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 1532 | if (!sta) { |
| 1533 | rcu_read_unlock(); |
Ron Rindjunsky | 688b88a | 2007-12-25 17:00:37 +0200 | [diff] [blame] | 1534 | return; |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 1535 | } |
Ron Rindjunsky | 688b88a | 2007-12-25 17:00:37 +0200 | [diff] [blame] | 1536 | |
| 1537 | params = le16_to_cpu(mgmt->u.action.u.delba.params); |
| 1538 | tid = (params & IEEE80211_DELBA_PARAM_TID_MASK) >> 12; |
| 1539 | initiator = (params & IEEE80211_DELBA_PARAM_INITIATOR_MASK) >> 11; |
| 1540 | |
| 1541 | #ifdef CONFIG_MAC80211_HT_DEBUG |
| 1542 | if (net_ratelimit()) |
Ron Rindjunsky | d92684e | 2008-01-28 14:07:22 +0200 | [diff] [blame] | 1543 | printk(KERN_DEBUG "delba from %s (%s) tid %d reason code %d\n", |
| 1544 | print_mac(mac, mgmt->sa), |
Ron Rindjunsky | 2e354ed | 2008-03-18 15:00:30 -0700 | [diff] [blame] | 1545 | initiator ? "initiator" : "recipient", tid, |
Ron Rindjunsky | 688b88a | 2007-12-25 17:00:37 +0200 | [diff] [blame] | 1546 | mgmt->u.action.u.delba.reason_code); |
| 1547 | #endif /* CONFIG_MAC80211_HT_DEBUG */ |
| 1548 | |
| 1549 | if (initiator == WLAN_BACK_INITIATOR) |
| 1550 | ieee80211_sta_stop_rx_ba_session(dev, sta->addr, tid, |
| 1551 | WLAN_BACK_INITIATOR, 0); |
Ron Rindjunsky | d92684e | 2008-01-28 14:07:22 +0200 | [diff] [blame] | 1552 | else { /* WLAN_BACK_RECIPIENT */ |
| 1553 | spin_lock_bh(&sta->ampdu_mlme.ampdu_tx); |
Ron Rindjunsky | cee24a3 | 2008-03-26 20:36:03 +0200 | [diff] [blame] | 1554 | sta->ampdu_mlme.tid_state_tx[tid] = |
Ron Rindjunsky | d92684e | 2008-01-28 14:07:22 +0200 | [diff] [blame] | 1555 | HT_AGG_STATE_OPERATIONAL; |
| 1556 | spin_unlock_bh(&sta->ampdu_mlme.ampdu_tx); |
| 1557 | ieee80211_stop_tx_ba_session(&local->hw, sta->addr, tid, |
| 1558 | WLAN_BACK_RECIPIENT); |
| 1559 | } |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 1560 | rcu_read_unlock(); |
Ron Rindjunsky | 688b88a | 2007-12-25 17:00:37 +0200 | [diff] [blame] | 1561 | } |
| 1562 | |
Ron Rindjunsky | 07db218 | 2007-12-25 17:00:33 +0200 | [diff] [blame] | 1563 | /* |
Ron Rindjunsky | eadc8d9 | 2008-01-28 14:07:17 +0200 | [diff] [blame] | 1564 | * After sending add Block Ack request we activated a timer until |
| 1565 | * add Block Ack response will arrive from the recipient. |
| 1566 | * If this timer expires sta_addba_resp_timer_expired will be executed. |
| 1567 | */ |
| 1568 | void sta_addba_resp_timer_expired(unsigned long data) |
| 1569 | { |
| 1570 | /* not an elegant detour, but there is no choice as the timer passes |
| 1571 | * only one argument, and both sta_info and TID are needed, so init |
Johannes Berg | 73651ee | 2008-02-25 16:27:47 +0100 | [diff] [blame] | 1572 | * flow in sta_info_create gives the TID as data, while the timer_to_id |
Ron Rindjunsky | eadc8d9 | 2008-01-28 14:07:17 +0200 | [diff] [blame] | 1573 | * array gives the sta through container_of */ |
| 1574 | u16 tid = *(int *)data; |
| 1575 | struct sta_info *temp_sta = container_of((void *)data, |
| 1576 | struct sta_info, timer_to_tid[tid]); |
| 1577 | |
| 1578 | struct ieee80211_local *local = temp_sta->local; |
| 1579 | struct ieee80211_hw *hw = &local->hw; |
| 1580 | struct sta_info *sta; |
| 1581 | u8 *state; |
| 1582 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 1583 | rcu_read_lock(); |
| 1584 | |
Ron Rindjunsky | eadc8d9 | 2008-01-28 14:07:17 +0200 | [diff] [blame] | 1585 | sta = sta_info_get(local, temp_sta->addr); |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 1586 | if (!sta) { |
| 1587 | rcu_read_unlock(); |
Ron Rindjunsky | eadc8d9 | 2008-01-28 14:07:17 +0200 | [diff] [blame] | 1588 | return; |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 1589 | } |
Ron Rindjunsky | eadc8d9 | 2008-01-28 14:07:17 +0200 | [diff] [blame] | 1590 | |
Ron Rindjunsky | cee24a3 | 2008-03-26 20:36:03 +0200 | [diff] [blame] | 1591 | state = &sta->ampdu_mlme.tid_state_tx[tid]; |
Ron Rindjunsky | eadc8d9 | 2008-01-28 14:07:17 +0200 | [diff] [blame] | 1592 | /* check if the TID waits for addBA response */ |
| 1593 | spin_lock_bh(&sta->ampdu_mlme.ampdu_tx); |
| 1594 | if (!(*state & HT_ADDBA_REQUESTED_MSK)) { |
| 1595 | spin_unlock_bh(&sta->ampdu_mlme.ampdu_tx); |
| 1596 | *state = HT_AGG_STATE_IDLE; |
| 1597 | printk(KERN_DEBUG "timer expired on tid %d but we are not " |
| 1598 | "expecting addBA response there", tid); |
| 1599 | goto timer_expired_exit; |
| 1600 | } |
| 1601 | |
| 1602 | printk(KERN_DEBUG "addBA response timer expired on tid %d\n", tid); |
| 1603 | |
| 1604 | /* go through the state check in stop_BA_session */ |
| 1605 | *state = HT_AGG_STATE_OPERATIONAL; |
| 1606 | spin_unlock_bh(&sta->ampdu_mlme.ampdu_tx); |
| 1607 | ieee80211_stop_tx_ba_session(hw, temp_sta->addr, tid, |
| 1608 | WLAN_BACK_INITIATOR); |
| 1609 | |
| 1610 | timer_expired_exit: |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 1611 | rcu_read_unlock(); |
Ron Rindjunsky | eadc8d9 | 2008-01-28 14:07:17 +0200 | [diff] [blame] | 1612 | } |
| 1613 | |
| 1614 | /* |
Ron Rindjunsky | 7b9d44c | 2008-03-18 15:00:31 -0700 | [diff] [blame] | 1615 | * After accepting the AddBA Request we activated a timer, |
| 1616 | * resetting it after each frame that arrives from the originator. |
Ron Rindjunsky | 07db218 | 2007-12-25 17:00:33 +0200 | [diff] [blame] | 1617 | * if this timer expires ieee80211_sta_stop_rx_ba_session will be executed. |
| 1618 | */ |
| 1619 | void sta_rx_agg_session_timer_expired(unsigned long data) |
| 1620 | { |
| 1621 | /* not an elegant detour, but there is no choice as the timer passes |
| 1622 | * only one argument, and verious sta_info are needed here, so init |
Johannes Berg | 73651ee | 2008-02-25 16:27:47 +0100 | [diff] [blame] | 1623 | * flow in sta_info_create gives the TID as data, while the timer_to_id |
Ron Rindjunsky | 07db218 | 2007-12-25 17:00:33 +0200 | [diff] [blame] | 1624 | * array gives the sta through container_of */ |
| 1625 | u8 *ptid = (u8 *)data; |
| 1626 | u8 *timer_to_id = ptid - *ptid; |
| 1627 | struct sta_info *sta = container_of(timer_to_id, struct sta_info, |
| 1628 | timer_to_tid[0]); |
| 1629 | |
| 1630 | printk(KERN_DEBUG "rx session timer expired on tid %d\n", (u16)*ptid); |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 1631 | ieee80211_sta_stop_rx_ba_session(sta->sdata->dev, sta->addr, |
| 1632 | (u16)*ptid, WLAN_BACK_TIMER, |
Ron Rindjunsky | 07db218 | 2007-12-25 17:00:33 +0200 | [diff] [blame] | 1633 | WLAN_REASON_QSTA_TIMEOUT); |
| 1634 | } |
| 1635 | |
Ron Rindjunsky | 85249e5 | 2008-03-18 15:00:32 -0700 | [diff] [blame] | 1636 | void ieee80211_sta_tear_down_BA_sessions(struct net_device *dev, u8 *addr) |
| 1637 | { |
| 1638 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); |
| 1639 | int i; |
| 1640 | |
| 1641 | for (i = 0; i < STA_TID_NUM; i++) { |
| 1642 | ieee80211_stop_tx_ba_session(&local->hw, addr, i, |
| 1643 | WLAN_BACK_INITIATOR); |
| 1644 | ieee80211_sta_stop_rx_ba_session(dev, addr, i, |
| 1645 | WLAN_BACK_RECIPIENT, |
| 1646 | WLAN_REASON_QSTA_LEAVE_QBSS); |
| 1647 | } |
| 1648 | } |
Ron Rindjunsky | 07db218 | 2007-12-25 17:00:33 +0200 | [diff] [blame] | 1649 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1650 | static void ieee80211_rx_mgmt_auth(struct net_device *dev, |
| 1651 | struct ieee80211_if_sta *ifsta, |
| 1652 | struct ieee80211_mgmt *mgmt, |
| 1653 | size_t len) |
| 1654 | { |
| 1655 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 1656 | u16 auth_alg, auth_transaction, status_code; |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 1657 | DECLARE_MAC_BUF(mac); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1658 | |
| 1659 | if (ifsta->state != IEEE80211_AUTHENTICATE && |
Johannes Berg | 51fb61e | 2007-12-19 01:31:27 +0100 | [diff] [blame] | 1660 | sdata->vif.type != IEEE80211_IF_TYPE_IBSS) { |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1661 | printk(KERN_DEBUG "%s: authentication frame received from " |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 1662 | "%s, but not in authenticate state - ignored\n", |
| 1663 | dev->name, print_mac(mac, mgmt->sa)); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1664 | return; |
| 1665 | } |
| 1666 | |
| 1667 | if (len < 24 + 6) { |
| 1668 | printk(KERN_DEBUG "%s: too short (%zd) authentication frame " |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 1669 | "received from %s - ignored\n", |
| 1670 | dev->name, len, print_mac(mac, mgmt->sa)); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1671 | return; |
| 1672 | } |
| 1673 | |
Johannes Berg | 51fb61e | 2007-12-19 01:31:27 +0100 | [diff] [blame] | 1674 | if (sdata->vif.type != IEEE80211_IF_TYPE_IBSS && |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1675 | memcmp(ifsta->bssid, mgmt->sa, ETH_ALEN) != 0) { |
| 1676 | printk(KERN_DEBUG "%s: authentication frame received from " |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 1677 | "unknown AP (SA=%s BSSID=%s) - " |
| 1678 | "ignored\n", dev->name, print_mac(mac, mgmt->sa), |
| 1679 | print_mac(mac, mgmt->bssid)); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1680 | return; |
| 1681 | } |
| 1682 | |
Johannes Berg | 51fb61e | 2007-12-19 01:31:27 +0100 | [diff] [blame] | 1683 | if (sdata->vif.type != IEEE80211_IF_TYPE_IBSS && |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1684 | memcmp(ifsta->bssid, mgmt->bssid, ETH_ALEN) != 0) { |
| 1685 | printk(KERN_DEBUG "%s: authentication frame received from " |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 1686 | "unknown BSSID (SA=%s BSSID=%s) - " |
| 1687 | "ignored\n", dev->name, print_mac(mac, mgmt->sa), |
| 1688 | print_mac(mac, mgmt->bssid)); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1689 | return; |
| 1690 | } |
| 1691 | |
| 1692 | auth_alg = le16_to_cpu(mgmt->u.auth.auth_alg); |
| 1693 | auth_transaction = le16_to_cpu(mgmt->u.auth.auth_transaction); |
| 1694 | status_code = le16_to_cpu(mgmt->u.auth.status_code); |
| 1695 | |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 1696 | printk(KERN_DEBUG "%s: RX authentication from %s (alg=%d " |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1697 | "transaction=%d status=%d)\n", |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 1698 | dev->name, print_mac(mac, mgmt->sa), auth_alg, |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1699 | auth_transaction, status_code); |
| 1700 | |
Johannes Berg | 51fb61e | 2007-12-19 01:31:27 +0100 | [diff] [blame] | 1701 | if (sdata->vif.type == IEEE80211_IF_TYPE_IBSS) { |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1702 | /* IEEE 802.11 standard does not require authentication in IBSS |
| 1703 | * networks and most implementations do not seem to use it. |
| 1704 | * However, try to reply to authentication attempts if someone |
| 1705 | * has actually implemented this. |
| 1706 | * TODO: Could implement shared key authentication. */ |
| 1707 | if (auth_alg != WLAN_AUTH_OPEN || auth_transaction != 1) { |
| 1708 | printk(KERN_DEBUG "%s: unexpected IBSS authentication " |
| 1709 | "frame (alg=%d transaction=%d)\n", |
| 1710 | dev->name, auth_alg, auth_transaction); |
| 1711 | return; |
| 1712 | } |
| 1713 | ieee80211_send_auth(dev, ifsta, 2, NULL, 0, 0); |
| 1714 | } |
| 1715 | |
| 1716 | if (auth_alg != ifsta->auth_alg || |
| 1717 | auth_transaction != ifsta->auth_transaction) { |
| 1718 | printk(KERN_DEBUG "%s: unexpected authentication frame " |
| 1719 | "(alg=%d transaction=%d)\n", |
| 1720 | dev->name, auth_alg, auth_transaction); |
| 1721 | return; |
| 1722 | } |
| 1723 | |
| 1724 | if (status_code != WLAN_STATUS_SUCCESS) { |
| 1725 | printk(KERN_DEBUG "%s: AP denied authentication (auth_alg=%d " |
| 1726 | "code=%d)\n", dev->name, ifsta->auth_alg, status_code); |
| 1727 | if (status_code == WLAN_STATUS_NOT_SUPPORTED_AUTH_ALG) { |
| 1728 | u8 algs[3]; |
| 1729 | const int num_algs = ARRAY_SIZE(algs); |
| 1730 | int i, pos; |
| 1731 | algs[0] = algs[1] = algs[2] = 0xff; |
| 1732 | if (ifsta->auth_algs & IEEE80211_AUTH_ALG_OPEN) |
| 1733 | algs[0] = WLAN_AUTH_OPEN; |
| 1734 | if (ifsta->auth_algs & IEEE80211_AUTH_ALG_SHARED_KEY) |
| 1735 | algs[1] = WLAN_AUTH_SHARED_KEY; |
| 1736 | if (ifsta->auth_algs & IEEE80211_AUTH_ALG_LEAP) |
| 1737 | algs[2] = WLAN_AUTH_LEAP; |
| 1738 | if (ifsta->auth_alg == WLAN_AUTH_OPEN) |
| 1739 | pos = 0; |
| 1740 | else if (ifsta->auth_alg == WLAN_AUTH_SHARED_KEY) |
| 1741 | pos = 1; |
| 1742 | else |
| 1743 | pos = 2; |
| 1744 | for (i = 0; i < num_algs; i++) { |
| 1745 | pos++; |
| 1746 | if (pos >= num_algs) |
| 1747 | pos = 0; |
| 1748 | if (algs[pos] == ifsta->auth_alg || |
| 1749 | algs[pos] == 0xff) |
| 1750 | continue; |
| 1751 | if (algs[pos] == WLAN_AUTH_SHARED_KEY && |
| 1752 | !ieee80211_sta_wep_configured(dev)) |
| 1753 | continue; |
| 1754 | ifsta->auth_alg = algs[pos]; |
| 1755 | printk(KERN_DEBUG "%s: set auth_alg=%d for " |
| 1756 | "next try\n", |
| 1757 | dev->name, ifsta->auth_alg); |
| 1758 | break; |
| 1759 | } |
| 1760 | } |
| 1761 | return; |
| 1762 | } |
| 1763 | |
| 1764 | switch (ifsta->auth_alg) { |
| 1765 | case WLAN_AUTH_OPEN: |
| 1766 | case WLAN_AUTH_LEAP: |
| 1767 | ieee80211_auth_completed(dev, ifsta); |
| 1768 | break; |
| 1769 | case WLAN_AUTH_SHARED_KEY: |
| 1770 | if (ifsta->auth_transaction == 4) |
| 1771 | ieee80211_auth_completed(dev, ifsta); |
| 1772 | else |
| 1773 | ieee80211_auth_challenge(dev, ifsta, mgmt, len); |
| 1774 | break; |
| 1775 | } |
| 1776 | } |
| 1777 | |
| 1778 | |
| 1779 | static void ieee80211_rx_mgmt_deauth(struct net_device *dev, |
| 1780 | struct ieee80211_if_sta *ifsta, |
| 1781 | struct ieee80211_mgmt *mgmt, |
| 1782 | size_t len) |
| 1783 | { |
| 1784 | u16 reason_code; |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 1785 | DECLARE_MAC_BUF(mac); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1786 | |
| 1787 | if (len < 24 + 2) { |
| 1788 | printk(KERN_DEBUG "%s: too short (%zd) deauthentication frame " |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 1789 | "received from %s - ignored\n", |
| 1790 | dev->name, len, print_mac(mac, mgmt->sa)); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1791 | return; |
| 1792 | } |
| 1793 | |
| 1794 | if (memcmp(ifsta->bssid, mgmt->sa, ETH_ALEN) != 0) { |
| 1795 | printk(KERN_DEBUG "%s: deauthentication frame received from " |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 1796 | "unknown AP (SA=%s BSSID=%s) - " |
| 1797 | "ignored\n", dev->name, print_mac(mac, mgmt->sa), |
| 1798 | print_mac(mac, mgmt->bssid)); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1799 | return; |
| 1800 | } |
| 1801 | |
| 1802 | reason_code = le16_to_cpu(mgmt->u.deauth.reason_code); |
| 1803 | |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 1804 | printk(KERN_DEBUG "%s: RX deauthentication from %s" |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1805 | " (reason=%d)\n", |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 1806 | dev->name, print_mac(mac, mgmt->sa), reason_code); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1807 | |
Jiri Slaby | d6f2da5 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 1808 | if (ifsta->flags & IEEE80211_STA_AUTHENTICATED) { |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1809 | printk(KERN_DEBUG "%s: deauthenticated\n", dev->name); |
| 1810 | } |
| 1811 | |
| 1812 | if (ifsta->state == IEEE80211_AUTHENTICATE || |
| 1813 | ifsta->state == IEEE80211_ASSOCIATE || |
| 1814 | ifsta->state == IEEE80211_ASSOCIATED) { |
| 1815 | ifsta->state = IEEE80211_AUTHENTICATE; |
| 1816 | mod_timer(&ifsta->timer, jiffies + |
| 1817 | IEEE80211_RETRY_AUTH_INTERVAL); |
| 1818 | } |
| 1819 | |
| 1820 | ieee80211_set_disassoc(dev, ifsta, 1); |
Jiri Slaby | d6f2da5 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 1821 | ifsta->flags &= ~IEEE80211_STA_AUTHENTICATED; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1822 | } |
| 1823 | |
| 1824 | |
| 1825 | static void ieee80211_rx_mgmt_disassoc(struct net_device *dev, |
| 1826 | struct ieee80211_if_sta *ifsta, |
| 1827 | struct ieee80211_mgmt *mgmt, |
| 1828 | size_t len) |
| 1829 | { |
| 1830 | u16 reason_code; |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 1831 | DECLARE_MAC_BUF(mac); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1832 | |
| 1833 | if (len < 24 + 2) { |
| 1834 | printk(KERN_DEBUG "%s: too short (%zd) disassociation frame " |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 1835 | "received from %s - ignored\n", |
| 1836 | dev->name, len, print_mac(mac, mgmt->sa)); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1837 | return; |
| 1838 | } |
| 1839 | |
| 1840 | if (memcmp(ifsta->bssid, mgmt->sa, ETH_ALEN) != 0) { |
| 1841 | printk(KERN_DEBUG "%s: disassociation frame received from " |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 1842 | "unknown AP (SA=%s BSSID=%s) - " |
| 1843 | "ignored\n", dev->name, print_mac(mac, mgmt->sa), |
| 1844 | print_mac(mac, mgmt->bssid)); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1845 | return; |
| 1846 | } |
| 1847 | |
| 1848 | reason_code = le16_to_cpu(mgmt->u.disassoc.reason_code); |
| 1849 | |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 1850 | printk(KERN_DEBUG "%s: RX disassociation from %s" |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1851 | " (reason=%d)\n", |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 1852 | dev->name, print_mac(mac, mgmt->sa), reason_code); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1853 | |
Jiri Slaby | d6f2da5 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 1854 | if (ifsta->flags & IEEE80211_STA_ASSOCIATED) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1855 | printk(KERN_DEBUG "%s: disassociated\n", dev->name); |
| 1856 | |
| 1857 | if (ifsta->state == IEEE80211_ASSOCIATED) { |
| 1858 | ifsta->state = IEEE80211_ASSOCIATE; |
| 1859 | mod_timer(&ifsta->timer, jiffies + |
| 1860 | IEEE80211_RETRY_AUTH_INTERVAL); |
| 1861 | } |
| 1862 | |
| 1863 | ieee80211_set_disassoc(dev, ifsta, 0); |
| 1864 | } |
| 1865 | |
| 1866 | |
Johannes Berg | 471b3ef | 2007-12-28 14:32:58 +0100 | [diff] [blame] | 1867 | 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] | 1868 | struct ieee80211_if_sta *ifsta, |
| 1869 | struct ieee80211_mgmt *mgmt, |
| 1870 | size_t len, |
| 1871 | int reassoc) |
| 1872 | { |
Johannes Berg | 471b3ef | 2007-12-28 14:32:58 +0100 | [diff] [blame] | 1873 | struct ieee80211_local *local = sdata->local; |
| 1874 | struct net_device *dev = sdata->dev; |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 1875 | struct ieee80211_supported_band *sband; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1876 | struct sta_info *sta; |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 1877 | u64 rates, basic_rates; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1878 | u16 capab_info, status_code, aid; |
| 1879 | struct ieee802_11_elems elems; |
Johannes Berg | 471b3ef | 2007-12-28 14:32:58 +0100 | [diff] [blame] | 1880 | struct ieee80211_bss_conf *bss_conf = &sdata->bss_conf; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1881 | u8 *pos; |
| 1882 | int i, j; |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 1883 | DECLARE_MAC_BUF(mac); |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 1884 | bool have_higher_than_11mbit = false; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1885 | |
| 1886 | /* AssocResp and ReassocResp have identical structure, so process both |
| 1887 | * of them in this function. */ |
| 1888 | |
| 1889 | if (ifsta->state != IEEE80211_ASSOCIATE) { |
| 1890 | printk(KERN_DEBUG "%s: association frame received from " |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 1891 | "%s, but not in associate state - ignored\n", |
| 1892 | dev->name, print_mac(mac, mgmt->sa)); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1893 | return; |
| 1894 | } |
| 1895 | |
| 1896 | if (len < 24 + 6) { |
| 1897 | printk(KERN_DEBUG "%s: too short (%zd) association frame " |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 1898 | "received from %s - ignored\n", |
| 1899 | dev->name, len, print_mac(mac, mgmt->sa)); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1900 | return; |
| 1901 | } |
| 1902 | |
| 1903 | if (memcmp(ifsta->bssid, mgmt->sa, ETH_ALEN) != 0) { |
| 1904 | printk(KERN_DEBUG "%s: association frame received from " |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 1905 | "unknown AP (SA=%s BSSID=%s) - " |
| 1906 | "ignored\n", dev->name, print_mac(mac, mgmt->sa), |
| 1907 | print_mac(mac, mgmt->bssid)); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1908 | return; |
| 1909 | } |
| 1910 | |
| 1911 | capab_info = le16_to_cpu(mgmt->u.assoc_resp.capab_info); |
| 1912 | status_code = le16_to_cpu(mgmt->u.assoc_resp.status_code); |
| 1913 | aid = le16_to_cpu(mgmt->u.assoc_resp.aid); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1914 | |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 1915 | printk(KERN_DEBUG "%s: RX %sssocResp from %s (capab=0x%x " |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1916 | "status=%d aid=%d)\n", |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 1917 | dev->name, reassoc ? "Rea" : "A", print_mac(mac, mgmt->sa), |
Johannes Berg | ddd6858 | 2007-10-22 14:51:37 +0200 | [diff] [blame] | 1918 | capab_info, status_code, (u16)(aid & ~(BIT(15) | BIT(14)))); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1919 | |
| 1920 | if (status_code != WLAN_STATUS_SUCCESS) { |
| 1921 | printk(KERN_DEBUG "%s: AP denied association (code=%d)\n", |
| 1922 | dev->name, status_code); |
Daniel Drake | 8a69aa9 | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 1923 | /* if this was a reassociation, ensure we try a "full" |
| 1924 | * association next time. This works around some broken APs |
| 1925 | * which do not correctly reject reassociation requests. */ |
Jiri Slaby | d6f2da5 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 1926 | ifsta->flags &= ~IEEE80211_STA_PREV_BSSID_SET; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1927 | return; |
| 1928 | } |
| 1929 | |
Johannes Berg | 1dd84aa | 2007-10-10 12:03:41 +0200 | [diff] [blame] | 1930 | if ((aid & (BIT(15) | BIT(14))) != (BIT(15) | BIT(14))) |
| 1931 | printk(KERN_DEBUG "%s: invalid aid value %d; bits 15:14 not " |
| 1932 | "set\n", dev->name, aid); |
| 1933 | aid &= ~(BIT(15) | BIT(14)); |
| 1934 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1935 | pos = mgmt->u.assoc_resp.variable; |
John W. Linville | 67a4cce | 2007-10-12 16:40:37 -0400 | [diff] [blame] | 1936 | ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), &elems); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1937 | |
| 1938 | if (!elems.supp_rates) { |
| 1939 | printk(KERN_DEBUG "%s: no SuppRates element in AssocResp\n", |
| 1940 | dev->name); |
| 1941 | return; |
| 1942 | } |
| 1943 | |
| 1944 | printk(KERN_DEBUG "%s: associated\n", dev->name); |
| 1945 | ifsta->aid = aid; |
| 1946 | ifsta->ap_capab = capab_info; |
| 1947 | |
| 1948 | kfree(ifsta->assocresp_ies); |
| 1949 | ifsta->assocresp_ies_len = len - (pos - (u8 *) mgmt); |
Michael Wu | 0ec0b7a | 2007-07-27 15:43:24 +0200 | [diff] [blame] | 1950 | ifsta->assocresp_ies = kmalloc(ifsta->assocresp_ies_len, GFP_KERNEL); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1951 | if (ifsta->assocresp_ies) |
| 1952 | memcpy(ifsta->assocresp_ies, pos, ifsta->assocresp_ies_len); |
| 1953 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 1954 | rcu_read_lock(); |
| 1955 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1956 | /* Add STA entry for the AP */ |
| 1957 | sta = sta_info_get(local, ifsta->bssid); |
| 1958 | if (!sta) { |
| 1959 | struct ieee80211_sta_bss *bss; |
Johannes Berg | 73651ee | 2008-02-25 16:27:47 +0100 | [diff] [blame] | 1960 | int err; |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 1961 | |
Johannes Berg | 73651ee | 2008-02-25 16:27:47 +0100 | [diff] [blame] | 1962 | sta = sta_info_alloc(sdata, ifsta->bssid, GFP_ATOMIC); |
| 1963 | if (!sta) { |
| 1964 | printk(KERN_DEBUG "%s: failed to alloc STA entry for" |
| 1965 | " the AP\n", dev->name); |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 1966 | rcu_read_unlock(); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1967 | return; |
| 1968 | } |
John W. Linville | 65c107a | 2007-10-05 14:23:27 -0400 | [diff] [blame] | 1969 | bss = ieee80211_rx_bss_get(dev, ifsta->bssid, |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 1970 | local->hw.conf.channel->center_freq, |
John W. Linville | cffdd30 | 2007-10-05 14:23:27 -0400 | [diff] [blame] | 1971 | ifsta->ssid, ifsta->ssid_len); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1972 | if (bss) { |
| 1973 | sta->last_rssi = bss->rssi; |
| 1974 | sta->last_signal = bss->signal; |
| 1975 | sta->last_noise = bss->noise; |
| 1976 | ieee80211_rx_bss_put(dev, bss); |
| 1977 | } |
Johannes Berg | 73651ee | 2008-02-25 16:27:47 +0100 | [diff] [blame] | 1978 | |
| 1979 | err = sta_info_insert(sta); |
| 1980 | if (err) { |
| 1981 | printk(KERN_DEBUG "%s: failed to insert STA entry for" |
| 1982 | " the AP (error %d)\n", dev->name, err); |
Johannes Berg | 73651ee | 2008-02-25 16:27:47 +0100 | [diff] [blame] | 1983 | rcu_read_unlock(); |
| 1984 | return; |
| 1985 | } |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1986 | } |
| 1987 | |
Johannes Berg | 73651ee | 2008-02-25 16:27:47 +0100 | [diff] [blame] | 1988 | /* |
| 1989 | * FIXME: Do we really need to update the sta_info's information here? |
| 1990 | * We already know about the AP (we found it in our list) so it |
| 1991 | * should already be filled with the right info, no? |
| 1992 | * As is stands, all this is racy because typically we assume |
| 1993 | * the information that is filled in here (except flags) doesn't |
| 1994 | * change while a STA structure is alive. As such, it should move |
| 1995 | * to between the sta_info_alloc() and sta_info_insert() above. |
| 1996 | */ |
| 1997 | |
Johannes Berg | 238814f | 2008-01-28 17:19:37 +0100 | [diff] [blame] | 1998 | sta->flags |= WLAN_STA_AUTH | WLAN_STA_ASSOC | WLAN_STA_ASSOC_AP | |
| 1999 | WLAN_STA_AUTHORIZED; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2000 | |
| 2001 | rates = 0; |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 2002 | basic_rates = 0; |
| 2003 | sband = local->hw.wiphy->bands[local->hw.conf.channel->band]; |
| 2004 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2005 | for (i = 0; i < elems.supp_rates_len; i++) { |
| 2006 | int rate = (elems.supp_rates[i] & 0x7f) * 5; |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 2007 | |
| 2008 | if (rate > 110) |
| 2009 | have_higher_than_11mbit = true; |
| 2010 | |
| 2011 | for (j = 0; j < sband->n_bitrates; j++) { |
| 2012 | if (sband->bitrates[j].bitrate == rate) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2013 | rates |= BIT(j); |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 2014 | if (elems.supp_rates[i] & 0x80) |
| 2015 | basic_rates |= BIT(j); |
| 2016 | } |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2017 | } |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 2018 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2019 | for (i = 0; i < elems.ext_supp_rates_len; i++) { |
| 2020 | int rate = (elems.ext_supp_rates[i] & 0x7f) * 5; |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 2021 | |
| 2022 | if (rate > 110) |
| 2023 | have_higher_than_11mbit = true; |
| 2024 | |
| 2025 | for (j = 0; j < sband->n_bitrates; j++) { |
| 2026 | if (sband->bitrates[j].bitrate == rate) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2027 | rates |= BIT(j); |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 2028 | if (elems.ext_supp_rates[i] & 0x80) |
| 2029 | basic_rates |= BIT(j); |
| 2030 | } |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2031 | } |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 2032 | |
| 2033 | sta->supp_rates[local->hw.conf.channel->band] = rates; |
| 2034 | sdata->basic_rates = basic_rates; |
| 2035 | |
| 2036 | /* cf. IEEE 802.11 9.2.12 */ |
| 2037 | if (local->hw.conf.channel->band == IEEE80211_BAND_2GHZ && |
| 2038 | have_higher_than_11mbit) |
| 2039 | sdata->flags |= IEEE80211_SDATA_OPERATING_GMODE; |
| 2040 | else |
| 2041 | sdata->flags &= ~IEEE80211_SDATA_OPERATING_GMODE; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2042 | |
Tomas Winkler | 38668c0 | 2008-03-28 16:33:32 -0700 | [diff] [blame] | 2043 | if (elems.ht_cap_elem && elems.ht_info_elem && elems.wmm_param) { |
Ron Rindjunsky | d3c990f | 2007-11-26 16:14:34 +0200 | [diff] [blame] | 2044 | struct ieee80211_ht_bss_info bss_info; |
Ron Rindjunsky | d3c990f | 2007-11-26 16:14:34 +0200 | [diff] [blame] | 2045 | ieee80211_ht_cap_ie_to_ht_info( |
| 2046 | (struct ieee80211_ht_cap *) |
| 2047 | elems.ht_cap_elem, &sta->ht_info); |
| 2048 | ieee80211_ht_addt_info_ie_to_ht_bss_info( |
| 2049 | (struct ieee80211_ht_addt_info *) |
| 2050 | elems.ht_info_elem, &bss_info); |
Tomas Winkler | 38668c0 | 2008-03-28 16:33:32 -0700 | [diff] [blame] | 2051 | ieee80211_handle_ht(local, 1, &sta->ht_info, &bss_info); |
Ron Rindjunsky | d3c990f | 2007-11-26 16:14:34 +0200 | [diff] [blame] | 2052 | } |
| 2053 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2054 | rate_control_rate_init(sta, local); |
| 2055 | |
Jiri Slaby | d6f2da5 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 2056 | if (elems.wmm_param && (ifsta->flags & IEEE80211_STA_WMM_ENABLED)) { |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2057 | sta->flags |= WLAN_STA_WME; |
Johannes Berg | e5f98f2 | 2008-03-05 20:39:31 +0100 | [diff] [blame] | 2058 | rcu_read_unlock(); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2059 | ieee80211_sta_wmm_params(dev, ifsta, elems.wmm_param, |
| 2060 | elems.wmm_param_len); |
Johannes Berg | e5f98f2 | 2008-03-05 20:39:31 +0100 | [diff] [blame] | 2061 | } else |
| 2062 | rcu_read_unlock(); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2063 | |
Tomas Winkler | 21c0cbe | 2008-03-28 16:33:34 -0700 | [diff] [blame] | 2064 | /* set AID and assoc capability, |
| 2065 | * ieee80211_set_associated() will tell the driver */ |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 2066 | bss_conf->aid = aid; |
Tomas Winkler | 21c0cbe | 2008-03-28 16:33:34 -0700 | [diff] [blame] | 2067 | bss_conf->assoc_capability = capab_info; |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 2068 | ieee80211_set_associated(dev, ifsta, 1); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2069 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2070 | ieee80211_associated(dev, ifsta); |
| 2071 | } |
| 2072 | |
| 2073 | |
| 2074 | /* Caller must hold local->sta_bss_lock */ |
| 2075 | static void __ieee80211_rx_bss_hash_add(struct net_device *dev, |
| 2076 | struct ieee80211_sta_bss *bss) |
| 2077 | { |
| 2078 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); |
Luis Carlos Cobo | f709fc6 | 2008-02-23 15:17:12 +0100 | [diff] [blame] | 2079 | u8 hash_idx; |
Johannes Berg | 902acc7 | 2008-02-23 15:17:19 +0100 | [diff] [blame] | 2080 | |
| 2081 | if (bss_mesh_cfg(bss)) |
| 2082 | hash_idx = mesh_id_hash(bss_mesh_id(bss), |
| 2083 | bss_mesh_id_len(bss)); |
Luis Carlos Cobo | f709fc6 | 2008-02-23 15:17:12 +0100 | [diff] [blame] | 2084 | else |
Luis Carlos Cobo | f709fc6 | 2008-02-23 15:17:12 +0100 | [diff] [blame] | 2085 | hash_idx = STA_HASH(bss->bssid); |
Johannes Berg | 902acc7 | 2008-02-23 15:17:19 +0100 | [diff] [blame] | 2086 | |
Luis Carlos Cobo | f709fc6 | 2008-02-23 15:17:12 +0100 | [diff] [blame] | 2087 | bss->hnext = local->sta_bss_hash[hash_idx]; |
| 2088 | local->sta_bss_hash[hash_idx] = bss; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2089 | } |
| 2090 | |
| 2091 | |
| 2092 | /* Caller must hold local->sta_bss_lock */ |
| 2093 | static void __ieee80211_rx_bss_hash_del(struct net_device *dev, |
| 2094 | struct ieee80211_sta_bss *bss) |
| 2095 | { |
| 2096 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); |
| 2097 | struct ieee80211_sta_bss *b, *prev = NULL; |
| 2098 | b = local->sta_bss_hash[STA_HASH(bss->bssid)]; |
| 2099 | while (b) { |
| 2100 | if (b == bss) { |
| 2101 | if (!prev) |
| 2102 | local->sta_bss_hash[STA_HASH(bss->bssid)] = |
| 2103 | bss->hnext; |
| 2104 | else |
| 2105 | prev->hnext = bss->hnext; |
| 2106 | break; |
| 2107 | } |
| 2108 | prev = b; |
| 2109 | b = b->hnext; |
| 2110 | } |
| 2111 | } |
| 2112 | |
| 2113 | |
| 2114 | static struct ieee80211_sta_bss * |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 2115 | ieee80211_rx_bss_add(struct net_device *dev, u8 *bssid, int freq, |
John W. Linville | cffdd30 | 2007-10-05 14:23:27 -0400 | [diff] [blame] | 2116 | u8 *ssid, u8 ssid_len) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2117 | { |
| 2118 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); |
| 2119 | struct ieee80211_sta_bss *bss; |
| 2120 | |
Yoann Padioleau | dd00cc4 | 2007-07-19 01:49:03 -0700 | [diff] [blame] | 2121 | bss = kzalloc(sizeof(*bss), GFP_ATOMIC); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2122 | if (!bss) |
| 2123 | return NULL; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2124 | atomic_inc(&bss->users); |
| 2125 | atomic_inc(&bss->users); |
| 2126 | memcpy(bss->bssid, bssid, ETH_ALEN); |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 2127 | bss->freq = freq; |
John W. Linville | cffdd30 | 2007-10-05 14:23:27 -0400 | [diff] [blame] | 2128 | if (ssid && ssid_len <= IEEE80211_MAX_SSID_LEN) { |
| 2129 | memcpy(bss->ssid, ssid, ssid_len); |
| 2130 | bss->ssid_len = ssid_len; |
| 2131 | } |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2132 | |
| 2133 | spin_lock_bh(&local->sta_bss_lock); |
| 2134 | /* TODO: order by RSSI? */ |
| 2135 | list_add_tail(&bss->list, &local->sta_bss_list); |
| 2136 | __ieee80211_rx_bss_hash_add(dev, bss); |
| 2137 | spin_unlock_bh(&local->sta_bss_lock); |
| 2138 | return bss; |
| 2139 | } |
| 2140 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2141 | static struct ieee80211_sta_bss * |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 2142 | ieee80211_rx_bss_get(struct net_device *dev, u8 *bssid, int freq, |
John W. Linville | cffdd30 | 2007-10-05 14:23:27 -0400 | [diff] [blame] | 2143 | u8 *ssid, u8 ssid_len) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2144 | { |
| 2145 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); |
| 2146 | struct ieee80211_sta_bss *bss; |
| 2147 | |
| 2148 | spin_lock_bh(&local->sta_bss_lock); |
| 2149 | bss = local->sta_bss_hash[STA_HASH(bssid)]; |
| 2150 | while (bss) { |
Johannes Berg | 902acc7 | 2008-02-23 15:17:19 +0100 | [diff] [blame] | 2151 | if (!bss_mesh_cfg(bss) && |
| 2152 | !memcmp(bss->bssid, bssid, ETH_ALEN) && |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 2153 | bss->freq == freq && |
John W. Linville | cffdd30 | 2007-10-05 14:23:27 -0400 | [diff] [blame] | 2154 | bss->ssid_len == ssid_len && |
| 2155 | (ssid_len == 0 || !memcmp(bss->ssid, ssid, ssid_len))) { |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2156 | atomic_inc(&bss->users); |
| 2157 | break; |
| 2158 | } |
| 2159 | bss = bss->hnext; |
| 2160 | } |
| 2161 | spin_unlock_bh(&local->sta_bss_lock); |
| 2162 | return bss; |
| 2163 | } |
| 2164 | |
Luis Carlos Cobo | f709fc6 | 2008-02-23 15:17:12 +0100 | [diff] [blame] | 2165 | #ifdef CONFIG_MAC80211_MESH |
| 2166 | static struct ieee80211_sta_bss * |
| 2167 | ieee80211_rx_mesh_bss_get(struct net_device *dev, u8 *mesh_id, int mesh_id_len, |
| 2168 | u8 *mesh_cfg, int freq) |
| 2169 | { |
| 2170 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); |
| 2171 | struct ieee80211_sta_bss *bss; |
| 2172 | |
| 2173 | spin_lock_bh(&local->sta_bss_lock); |
| 2174 | bss = local->sta_bss_hash[mesh_id_hash(mesh_id, mesh_id_len)]; |
| 2175 | while (bss) { |
Johannes Berg | 902acc7 | 2008-02-23 15:17:19 +0100 | [diff] [blame] | 2176 | if (bss_mesh_cfg(bss) && |
| 2177 | !memcmp(bss_mesh_cfg(bss), mesh_cfg, MESH_CFG_CMP_LEN) && |
Luis Carlos Cobo | f709fc6 | 2008-02-23 15:17:12 +0100 | [diff] [blame] | 2178 | bss->freq == freq && |
| 2179 | mesh_id_len == bss->mesh_id_len && |
| 2180 | (mesh_id_len == 0 || !memcmp(bss->mesh_id, mesh_id, |
| 2181 | mesh_id_len))) { |
| 2182 | atomic_inc(&bss->users); |
| 2183 | break; |
| 2184 | } |
| 2185 | bss = bss->hnext; |
| 2186 | } |
| 2187 | spin_unlock_bh(&local->sta_bss_lock); |
| 2188 | return bss; |
| 2189 | } |
| 2190 | |
| 2191 | static struct ieee80211_sta_bss * |
| 2192 | ieee80211_rx_mesh_bss_add(struct net_device *dev, u8 *mesh_id, int mesh_id_len, |
Luis Carlos Cobo | 05e5e88 | 2008-03-31 16:00:13 -0700 | [diff] [blame] | 2193 | u8 *mesh_cfg, int mesh_config_len, int freq) |
Luis Carlos Cobo | f709fc6 | 2008-02-23 15:17:12 +0100 | [diff] [blame] | 2194 | { |
| 2195 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); |
| 2196 | struct ieee80211_sta_bss *bss; |
| 2197 | |
Luis Carlos Cobo | 05e5e88 | 2008-03-31 16:00:13 -0700 | [diff] [blame] | 2198 | if (mesh_config_len != MESH_CFG_LEN) |
| 2199 | return NULL; |
| 2200 | |
Luis Carlos Cobo | f709fc6 | 2008-02-23 15:17:12 +0100 | [diff] [blame] | 2201 | bss = kzalloc(sizeof(*bss), GFP_ATOMIC); |
| 2202 | if (!bss) |
| 2203 | return NULL; |
| 2204 | |
John W. Linville | 2473670 | 2008-04-08 14:15:46 -0400 | [diff] [blame] | 2205 | bss->mesh_cfg = kmalloc(MESH_CFG_CMP_LEN, GFP_ATOMIC); |
Luis Carlos Cobo | f709fc6 | 2008-02-23 15:17:12 +0100 | [diff] [blame] | 2206 | if (!bss->mesh_cfg) { |
| 2207 | kfree(bss); |
| 2208 | return NULL; |
| 2209 | } |
| 2210 | |
| 2211 | if (mesh_id_len && mesh_id_len <= IEEE80211_MAX_MESH_ID_LEN) { |
| 2212 | bss->mesh_id = kmalloc(mesh_id_len, GFP_ATOMIC); |
| 2213 | if (!bss->mesh_id) { |
| 2214 | kfree(bss->mesh_cfg); |
| 2215 | kfree(bss); |
| 2216 | return NULL; |
| 2217 | } |
| 2218 | memcpy(bss->mesh_id, mesh_id, mesh_id_len); |
| 2219 | } |
| 2220 | |
| 2221 | atomic_inc(&bss->users); |
| 2222 | atomic_inc(&bss->users); |
John W. Linville | 2473670 | 2008-04-08 14:15:46 -0400 | [diff] [blame] | 2223 | memcpy(bss->mesh_cfg, mesh_cfg, MESH_CFG_CMP_LEN); |
Luis Carlos Cobo | f709fc6 | 2008-02-23 15:17:12 +0100 | [diff] [blame] | 2224 | bss->mesh_id_len = mesh_id_len; |
| 2225 | bss->freq = freq; |
| 2226 | spin_lock_bh(&local->sta_bss_lock); |
| 2227 | /* TODO: order by RSSI? */ |
| 2228 | list_add_tail(&bss->list, &local->sta_bss_list); |
| 2229 | __ieee80211_rx_bss_hash_add(dev, bss); |
| 2230 | spin_unlock_bh(&local->sta_bss_lock); |
| 2231 | return bss; |
| 2232 | } |
| 2233 | #endif |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2234 | |
| 2235 | static void ieee80211_rx_bss_free(struct ieee80211_sta_bss *bss) |
| 2236 | { |
| 2237 | kfree(bss->wpa_ie); |
| 2238 | kfree(bss->rsn_ie); |
| 2239 | kfree(bss->wmm_ie); |
Ron Rindjunsky | c715350 | 2007-11-26 16:14:31 +0200 | [diff] [blame] | 2240 | kfree(bss->ht_ie); |
Johannes Berg | 902acc7 | 2008-02-23 15:17:19 +0100 | [diff] [blame] | 2241 | kfree(bss_mesh_id(bss)); |
| 2242 | kfree(bss_mesh_cfg(bss)); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2243 | kfree(bss); |
| 2244 | } |
| 2245 | |
| 2246 | |
| 2247 | static void ieee80211_rx_bss_put(struct net_device *dev, |
| 2248 | struct ieee80211_sta_bss *bss) |
| 2249 | { |
| 2250 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2251 | |
Pavel Emelyanov | 1ebebea | 2008-04-23 11:47:15 +0400 | [diff] [blame] | 2252 | local_bh_disable(); |
| 2253 | if (!atomic_dec_and_lock(&bss->users, &local->sta_bss_lock)) { |
| 2254 | local_bh_enable(); |
| 2255 | return; |
| 2256 | } |
| 2257 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2258 | __ieee80211_rx_bss_hash_del(dev, bss); |
| 2259 | list_del(&bss->list); |
| 2260 | spin_unlock_bh(&local->sta_bss_lock); |
| 2261 | ieee80211_rx_bss_free(bss); |
| 2262 | } |
| 2263 | |
| 2264 | |
| 2265 | void ieee80211_rx_bss_list_init(struct net_device *dev) |
| 2266 | { |
| 2267 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); |
| 2268 | spin_lock_init(&local->sta_bss_lock); |
| 2269 | INIT_LIST_HEAD(&local->sta_bss_list); |
| 2270 | } |
| 2271 | |
| 2272 | |
| 2273 | void ieee80211_rx_bss_list_deinit(struct net_device *dev) |
| 2274 | { |
| 2275 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); |
| 2276 | struct ieee80211_sta_bss *bss, *tmp; |
| 2277 | |
| 2278 | list_for_each_entry_safe(bss, tmp, &local->sta_bss_list, list) |
| 2279 | ieee80211_rx_bss_put(dev, bss); |
| 2280 | } |
| 2281 | |
| 2282 | |
Bruno Randolf | a607268 | 2008-02-18 11:21:15 +0900 | [diff] [blame] | 2283 | static int ieee80211_sta_join_ibss(struct net_device *dev, |
| 2284 | struct ieee80211_if_sta *ifsta, |
| 2285 | struct ieee80211_sta_bss *bss) |
| 2286 | { |
| 2287 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); |
| 2288 | int res, rates, i, j; |
| 2289 | struct sk_buff *skb; |
| 2290 | struct ieee80211_mgmt *mgmt; |
| 2291 | struct ieee80211_tx_control control; |
| 2292 | struct rate_selection ratesel; |
| 2293 | u8 *pos; |
| 2294 | struct ieee80211_sub_if_data *sdata; |
| 2295 | struct ieee80211_supported_band *sband; |
| 2296 | |
| 2297 | sband = local->hw.wiphy->bands[local->hw.conf.channel->band]; |
| 2298 | |
Johannes Berg | 9dd6aed | 2008-03-31 19:22:59 +0200 | [diff] [blame] | 2299 | sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 2300 | |
Bruno Randolf | a607268 | 2008-02-18 11:21:15 +0900 | [diff] [blame] | 2301 | /* Remove possible STA entries from other IBSS networks. */ |
Johannes Berg | dc6676b | 2008-03-31 19:23:03 +0200 | [diff] [blame] | 2302 | sta_info_flush_delayed(sdata); |
Bruno Randolf | a607268 | 2008-02-18 11:21:15 +0900 | [diff] [blame] | 2303 | |
| 2304 | if (local->ops->reset_tsf) { |
| 2305 | /* Reset own TSF to allow time synchronization work. */ |
| 2306 | local->ops->reset_tsf(local_to_hw(local)); |
| 2307 | } |
| 2308 | memcpy(ifsta->bssid, bss->bssid, ETH_ALEN); |
| 2309 | res = ieee80211_if_config(dev); |
| 2310 | if (res) |
| 2311 | return res; |
| 2312 | |
| 2313 | local->hw.conf.beacon_int = bss->beacon_int >= 10 ? bss->beacon_int : 10; |
| 2314 | |
Bruno Randolf | a607268 | 2008-02-18 11:21:15 +0900 | [diff] [blame] | 2315 | sdata->drop_unencrypted = bss->capability & |
| 2316 | WLAN_CAPABILITY_PRIVACY ? 1 : 0; |
| 2317 | |
| 2318 | res = ieee80211_set_freq(local, bss->freq); |
| 2319 | |
| 2320 | if (local->oper_channel->flags & IEEE80211_CHAN_NO_IBSS) { |
| 2321 | printk(KERN_DEBUG "%s: IBSS not allowed on frequency " |
| 2322 | "%d MHz\n", dev->name, local->oper_channel->center_freq); |
| 2323 | return -1; |
| 2324 | } |
| 2325 | |
| 2326 | /* Set beacon template */ |
| 2327 | skb = dev_alloc_skb(local->hw.extra_tx_headroom + 400); |
| 2328 | do { |
| 2329 | if (!skb) |
| 2330 | break; |
| 2331 | |
| 2332 | skb_reserve(skb, local->hw.extra_tx_headroom); |
| 2333 | |
| 2334 | mgmt = (struct ieee80211_mgmt *) |
| 2335 | skb_put(skb, 24 + sizeof(mgmt->u.beacon)); |
| 2336 | memset(mgmt, 0, 24 + sizeof(mgmt->u.beacon)); |
| 2337 | mgmt->frame_control = IEEE80211_FC(IEEE80211_FTYPE_MGMT, |
| 2338 | IEEE80211_STYPE_BEACON); |
| 2339 | memset(mgmt->da, 0xff, ETH_ALEN); |
| 2340 | memcpy(mgmt->sa, dev->dev_addr, ETH_ALEN); |
| 2341 | memcpy(mgmt->bssid, ifsta->bssid, ETH_ALEN); |
| 2342 | mgmt->u.beacon.beacon_int = |
| 2343 | cpu_to_le16(local->hw.conf.beacon_int); |
| 2344 | mgmt->u.beacon.capab_info = cpu_to_le16(bss->capability); |
| 2345 | |
| 2346 | pos = skb_put(skb, 2 + ifsta->ssid_len); |
| 2347 | *pos++ = WLAN_EID_SSID; |
| 2348 | *pos++ = ifsta->ssid_len; |
| 2349 | memcpy(pos, ifsta->ssid, ifsta->ssid_len); |
| 2350 | |
| 2351 | rates = bss->supp_rates_len; |
| 2352 | if (rates > 8) |
| 2353 | rates = 8; |
| 2354 | pos = skb_put(skb, 2 + rates); |
| 2355 | *pos++ = WLAN_EID_SUPP_RATES; |
| 2356 | *pos++ = rates; |
| 2357 | memcpy(pos, bss->supp_rates, rates); |
| 2358 | |
| 2359 | if (bss->band == IEEE80211_BAND_2GHZ) { |
| 2360 | pos = skb_put(skb, 2 + 1); |
| 2361 | *pos++ = WLAN_EID_DS_PARAMS; |
| 2362 | *pos++ = 1; |
| 2363 | *pos++ = ieee80211_frequency_to_channel(bss->freq); |
| 2364 | } |
| 2365 | |
| 2366 | pos = skb_put(skb, 2 + 2); |
| 2367 | *pos++ = WLAN_EID_IBSS_PARAMS; |
| 2368 | *pos++ = 2; |
| 2369 | /* FIX: set ATIM window based on scan results */ |
| 2370 | *pos++ = 0; |
| 2371 | *pos++ = 0; |
| 2372 | |
| 2373 | if (bss->supp_rates_len > 8) { |
| 2374 | rates = bss->supp_rates_len - 8; |
| 2375 | pos = skb_put(skb, 2 + rates); |
| 2376 | *pos++ = WLAN_EID_EXT_SUPP_RATES; |
| 2377 | *pos++ = rates; |
| 2378 | memcpy(pos, &bss->supp_rates[8], rates); |
| 2379 | } |
| 2380 | |
| 2381 | memset(&control, 0, sizeof(control)); |
| 2382 | rate_control_get_rate(dev, sband, skb, &ratesel); |
| 2383 | if (!ratesel.rate) { |
| 2384 | printk(KERN_DEBUG "%s: Failed to determine TX rate " |
| 2385 | "for IBSS beacon\n", dev->name); |
| 2386 | break; |
| 2387 | } |
| 2388 | control.vif = &sdata->vif; |
| 2389 | control.tx_rate = ratesel.rate; |
| 2390 | if (sdata->bss_conf.use_short_preamble && |
| 2391 | ratesel.rate->flags & IEEE80211_RATE_SHORT_PREAMBLE) |
| 2392 | control.flags |= IEEE80211_TXCTL_SHORT_PREAMBLE; |
| 2393 | control.antenna_sel_tx = local->hw.conf.antenna_sel_tx; |
| 2394 | control.flags |= IEEE80211_TXCTL_NO_ACK; |
| 2395 | control.retry_limit = 1; |
| 2396 | |
| 2397 | ifsta->probe_resp = skb_copy(skb, GFP_ATOMIC); |
| 2398 | if (ifsta->probe_resp) { |
| 2399 | mgmt = (struct ieee80211_mgmt *) |
| 2400 | ifsta->probe_resp->data; |
| 2401 | mgmt->frame_control = |
| 2402 | IEEE80211_FC(IEEE80211_FTYPE_MGMT, |
| 2403 | IEEE80211_STYPE_PROBE_RESP); |
| 2404 | } else { |
| 2405 | printk(KERN_DEBUG "%s: Could not allocate ProbeResp " |
| 2406 | "template for IBSS\n", dev->name); |
| 2407 | } |
| 2408 | |
| 2409 | if (local->ops->beacon_update && |
| 2410 | local->ops->beacon_update(local_to_hw(local), |
| 2411 | skb, &control) == 0) { |
| 2412 | printk(KERN_DEBUG "%s: Configured IBSS beacon " |
| 2413 | "template\n", dev->name); |
| 2414 | skb = NULL; |
| 2415 | } |
| 2416 | |
| 2417 | rates = 0; |
| 2418 | sband = local->hw.wiphy->bands[local->hw.conf.channel->band]; |
| 2419 | for (i = 0; i < bss->supp_rates_len; i++) { |
| 2420 | int bitrate = (bss->supp_rates[i] & 0x7f) * 5; |
| 2421 | for (j = 0; j < sband->n_bitrates; j++) |
| 2422 | if (sband->bitrates[j].bitrate == bitrate) |
| 2423 | rates |= BIT(j); |
| 2424 | } |
| 2425 | ifsta->supp_rates_bits[local->hw.conf.channel->band] = rates; |
Vladimir Koutny | e2839d8 | 2008-03-18 21:14:07 +0100 | [diff] [blame] | 2426 | |
| 2427 | ieee80211_sta_def_wmm_params(dev, bss, 1); |
Bruno Randolf | a607268 | 2008-02-18 11:21:15 +0900 | [diff] [blame] | 2428 | } while (0); |
| 2429 | |
| 2430 | if (skb) { |
| 2431 | printk(KERN_DEBUG "%s: Failed to configure IBSS beacon " |
| 2432 | "template\n", dev->name); |
| 2433 | dev_kfree_skb(skb); |
| 2434 | } |
| 2435 | |
| 2436 | ifsta->state = IEEE80211_IBSS_JOINED; |
| 2437 | mod_timer(&ifsta->timer, jiffies + IEEE80211_IBSS_MERGE_INTERVAL); |
| 2438 | |
| 2439 | ieee80211_rx_bss_put(dev, bss); |
| 2440 | |
| 2441 | return res; |
| 2442 | } |
| 2443 | |
Luis Carlos Cobo | f709fc6 | 2008-02-23 15:17:12 +0100 | [diff] [blame] | 2444 | u64 ieee80211_sta_get_rates(struct ieee80211_local *local, |
| 2445 | struct ieee802_11_elems *elems, |
| 2446 | enum ieee80211_band band) |
| 2447 | { |
| 2448 | struct ieee80211_supported_band *sband; |
| 2449 | struct ieee80211_rate *bitrates; |
| 2450 | size_t num_rates; |
| 2451 | u64 supp_rates; |
| 2452 | int i, j; |
| 2453 | sband = local->hw.wiphy->bands[band]; |
| 2454 | |
| 2455 | if (!sband) { |
| 2456 | WARN_ON(1); |
| 2457 | sband = local->hw.wiphy->bands[local->hw.conf.channel->band]; |
| 2458 | } |
| 2459 | |
| 2460 | bitrates = sband->bitrates; |
| 2461 | num_rates = sband->n_bitrates; |
| 2462 | supp_rates = 0; |
| 2463 | for (i = 0; i < elems->supp_rates_len + |
| 2464 | elems->ext_supp_rates_len; i++) { |
| 2465 | u8 rate = 0; |
| 2466 | int own_rate; |
| 2467 | if (i < elems->supp_rates_len) |
| 2468 | rate = elems->supp_rates[i]; |
| 2469 | else if (elems->ext_supp_rates) |
| 2470 | rate = elems->ext_supp_rates |
| 2471 | [i - elems->supp_rates_len]; |
| 2472 | own_rate = 5 * (rate & 0x7f); |
| 2473 | for (j = 0; j < num_rates; j++) |
| 2474 | if (bitrates[j].bitrate == own_rate) |
| 2475 | supp_rates |= BIT(j); |
| 2476 | } |
| 2477 | return supp_rates; |
| 2478 | } |
| 2479 | |
Bruno Randolf | a607268 | 2008-02-18 11:21:15 +0900 | [diff] [blame] | 2480 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2481 | static void ieee80211_rx_bss_info(struct net_device *dev, |
| 2482 | struct ieee80211_mgmt *mgmt, |
| 2483 | size_t len, |
| 2484 | struct ieee80211_rx_status *rx_status, |
| 2485 | int beacon) |
| 2486 | { |
| 2487 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); |
| 2488 | struct ieee802_11_elems elems; |
| 2489 | size_t baselen; |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 2490 | int freq, clen; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2491 | struct ieee80211_sta_bss *bss; |
| 2492 | struct sta_info *sta; |
| 2493 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
Bruno Randolf | 9d9bf77 | 2008-02-18 11:21:36 +0900 | [diff] [blame] | 2494 | u64 beacon_timestamp, rx_timestamp; |
Johannes Berg | fab7d4a | 2008-03-16 18:42:44 +0100 | [diff] [blame] | 2495 | struct ieee80211_channel *channel; |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 2496 | DECLARE_MAC_BUF(mac); |
| 2497 | DECLARE_MAC_BUF(mac2); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2498 | |
| 2499 | if (!beacon && memcmp(mgmt->da, dev->dev_addr, ETH_ALEN)) |
| 2500 | return; /* ignore ProbeResp to foreign address */ |
| 2501 | |
| 2502 | #if 0 |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 2503 | printk(KERN_DEBUG "%s: RX %s from %s to %s\n", |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2504 | dev->name, beacon ? "Beacon" : "Probe Response", |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 2505 | print_mac(mac, mgmt->sa), print_mac(mac2, mgmt->da)); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2506 | #endif |
| 2507 | |
| 2508 | baselen = (u8 *) mgmt->u.beacon.variable - (u8 *) mgmt; |
| 2509 | if (baselen > len) |
| 2510 | return; |
| 2511 | |
Bruno Randolf | 9d9bf77 | 2008-02-18 11:21:36 +0900 | [diff] [blame] | 2512 | beacon_timestamp = le64_to_cpu(mgmt->u.beacon.timestamp); |
John W. Linville | 67a4cce | 2007-10-12 16:40:37 -0400 | [diff] [blame] | 2513 | ieee802_11_parse_elems(mgmt->u.beacon.variable, len - baselen, &elems); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2514 | |
Johannes Berg | 902acc7 | 2008-02-23 15:17:19 +0100 | [diff] [blame] | 2515 | if (ieee80211_vif_is_mesh(&sdata->vif) && elems.mesh_id && |
| 2516 | elems.mesh_config && mesh_matches_local(&elems, dev)) { |
| 2517 | u64 rates = ieee80211_sta_get_rates(local, &elems, |
| 2518 | rx_status->band); |
| 2519 | |
| 2520 | mesh_neighbour_update(mgmt->sa, rates, dev, |
| 2521 | mesh_peer_accepts_plinks(&elems, dev)); |
| 2522 | } |
Luis Carlos Cobo | f709fc6 | 2008-02-23 15:17:12 +0100 | [diff] [blame] | 2523 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 2524 | rcu_read_lock(); |
| 2525 | |
Johannes Berg | 51fb61e | 2007-12-19 01:31:27 +0100 | [diff] [blame] | 2526 | if (sdata->vif.type == IEEE80211_IF_TYPE_IBSS && elems.supp_rates && |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2527 | memcmp(mgmt->bssid, sdata->u.sta.bssid, ETH_ALEN) == 0 && |
| 2528 | (sta = sta_info_get(local, mgmt->sa))) { |
Luis Carlos Cobo | f709fc6 | 2008-02-23 15:17:12 +0100 | [diff] [blame] | 2529 | u64 prev_rates; |
| 2530 | u64 supp_rates = ieee80211_sta_get_rates(local, &elems, |
| 2531 | rx_status->band); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2532 | |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 2533 | prev_rates = sta->supp_rates[rx_status->band]; |
| 2534 | sta->supp_rates[rx_status->band] &= supp_rates; |
| 2535 | if (sta->supp_rates[rx_status->band] == 0) { |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2536 | /* No matching rates - this should not really happen. |
| 2537 | * Make sure that at least one rate is marked |
| 2538 | * supported to avoid issues with TX rate ctrl. */ |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 2539 | sta->supp_rates[rx_status->band] = |
| 2540 | sdata->u.sta.supp_rates_bits[rx_status->band]; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2541 | } |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 2542 | if (sta->supp_rates[rx_status->band] != prev_rates) { |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2543 | printk(KERN_DEBUG "%s: updated supp_rates set for " |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 2544 | "%s based on beacon info (0x%llx & 0x%llx -> " |
| 2545 | "0x%llx)\n", |
| 2546 | dev->name, print_mac(mac, sta->addr), |
| 2547 | (unsigned long long) prev_rates, |
| 2548 | (unsigned long long) supp_rates, |
| 2549 | (unsigned long long) sta->supp_rates[rx_status->band]); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2550 | } |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2551 | } |
| 2552 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 2553 | rcu_read_unlock(); |
| 2554 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2555 | if (elems.ds_params && elems.ds_params_len == 1) |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 2556 | freq = ieee80211_channel_to_frequency(elems.ds_params[0]); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2557 | else |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 2558 | freq = rx_status->freq; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2559 | |
Johannes Berg | fab7d4a | 2008-03-16 18:42:44 +0100 | [diff] [blame] | 2560 | channel = ieee80211_get_channel(local->hw.wiphy, freq); |
| 2561 | |
| 2562 | if (!channel || channel->flags & IEEE80211_CHAN_DISABLED) |
| 2563 | return; |
| 2564 | |
Luis Carlos Cobo | f709fc6 | 2008-02-23 15:17:12 +0100 | [diff] [blame] | 2565 | #ifdef CONFIG_MAC80211_MESH |
| 2566 | if (elems.mesh_config) |
| 2567 | bss = ieee80211_rx_mesh_bss_get(dev, elems.mesh_id, |
| 2568 | elems.mesh_id_len, elems.mesh_config, freq); |
| 2569 | else |
| 2570 | #endif |
| 2571 | bss = ieee80211_rx_bss_get(dev, mgmt->bssid, freq, |
John W. Linville | cffdd30 | 2007-10-05 14:23:27 -0400 | [diff] [blame] | 2572 | elems.ssid, elems.ssid_len); |
Luis Carlos Cobo | f709fc6 | 2008-02-23 15:17:12 +0100 | [diff] [blame] | 2573 | if (!bss) { |
| 2574 | #ifdef CONFIG_MAC80211_MESH |
| 2575 | if (elems.mesh_config) |
| 2576 | bss = ieee80211_rx_mesh_bss_add(dev, elems.mesh_id, |
Luis Carlos Cobo | 05e5e88 | 2008-03-31 16:00:13 -0700 | [diff] [blame] | 2577 | elems.mesh_id_len, elems.mesh_config, |
| 2578 | elems.mesh_config_len, freq); |
Luis Carlos Cobo | f709fc6 | 2008-02-23 15:17:12 +0100 | [diff] [blame] | 2579 | else |
| 2580 | #endif |
| 2581 | bss = ieee80211_rx_bss_add(dev, mgmt->bssid, freq, |
| 2582 | elems.ssid, elems.ssid_len); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2583 | if (!bss) |
| 2584 | return; |
| 2585 | } else { |
| 2586 | #if 0 |
| 2587 | /* TODO: order by RSSI? */ |
| 2588 | spin_lock_bh(&local->sta_bss_lock); |
| 2589 | list_move_tail(&bss->list, &local->sta_bss_list); |
| 2590 | spin_unlock_bh(&local->sta_bss_lock); |
| 2591 | #endif |
| 2592 | } |
| 2593 | |
Daniel Drake | 5628221 | 2007-07-10 19:32:10 +0200 | [diff] [blame] | 2594 | /* save the ERP value so that it is available at association time */ |
| 2595 | if (elems.erp_info && elems.erp_info_len >= 1) { |
| 2596 | bss->erp_value = elems.erp_info[0]; |
| 2597 | bss->has_erp_value = 1; |
| 2598 | } |
| 2599 | |
Johannes Berg | 30b89b0 | 2008-04-16 17:43:20 +0200 | [diff] [blame] | 2600 | if (elems.ht_cap_elem && |
| 2601 | (!bss->ht_ie || bss->ht_ie_len != elems.ht_cap_elem_len || |
| 2602 | memcmp(bss->ht_ie, elems.ht_cap_elem, elems.ht_cap_elem_len))) { |
| 2603 | kfree(bss->ht_ie); |
| 2604 | bss->ht_ie = kmalloc(elems.ht_cap_elem_len + 2, GFP_ATOMIC); |
| 2605 | if (bss->ht_ie) { |
| 2606 | memcpy(bss->ht_ie, elems.ht_cap_elem - 2, |
| 2607 | elems.ht_cap_elem_len + 2); |
| 2608 | bss->ht_ie_len = elems.ht_cap_elem_len + 2; |
| 2609 | } else |
| 2610 | bss->ht_ie_len = 0; |
| 2611 | } else if (!elems.ht_cap_elem && bss->ht_ie) { |
| 2612 | kfree(bss->ht_ie); |
| 2613 | bss->ht_ie = NULL; |
| 2614 | bss->ht_ie_len = 0; |
| 2615 | } |
| 2616 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2617 | bss->beacon_int = le16_to_cpu(mgmt->u.beacon.beacon_int); |
| 2618 | bss->capability = le16_to_cpu(mgmt->u.beacon.capab_info); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2619 | |
| 2620 | bss->supp_rates_len = 0; |
| 2621 | if (elems.supp_rates) { |
| 2622 | clen = IEEE80211_MAX_SUPP_RATES - bss->supp_rates_len; |
| 2623 | if (clen > elems.supp_rates_len) |
| 2624 | clen = elems.supp_rates_len; |
| 2625 | memcpy(&bss->supp_rates[bss->supp_rates_len], elems.supp_rates, |
| 2626 | clen); |
| 2627 | bss->supp_rates_len += clen; |
| 2628 | } |
| 2629 | if (elems.ext_supp_rates) { |
| 2630 | clen = IEEE80211_MAX_SUPP_RATES - bss->supp_rates_len; |
| 2631 | if (clen > elems.ext_supp_rates_len) |
| 2632 | clen = elems.ext_supp_rates_len; |
| 2633 | memcpy(&bss->supp_rates[bss->supp_rates_len], |
| 2634 | elems.ext_supp_rates, clen); |
| 2635 | bss->supp_rates_len += clen; |
| 2636 | } |
| 2637 | |
Johannes Berg | 30b89b0 | 2008-04-16 17:43:20 +0200 | [diff] [blame] | 2638 | bss->band = rx_status->band; |
| 2639 | |
| 2640 | bss->timestamp = beacon_timestamp; |
| 2641 | bss->last_update = jiffies; |
| 2642 | bss->rssi = rx_status->ssi; |
| 2643 | bss->signal = rx_status->signal; |
| 2644 | bss->noise = rx_status->noise; |
| 2645 | if (!beacon && !bss->probe_resp) |
| 2646 | bss->probe_resp = true; |
| 2647 | |
| 2648 | /* |
| 2649 | * In STA mode, the remaining parameters should not be overridden |
| 2650 | * by beacons because they're not necessarily accurate there. |
| 2651 | */ |
| 2652 | if (sdata->vif.type != IEEE80211_IF_TYPE_IBSS && |
| 2653 | bss->probe_resp && beacon) { |
| 2654 | ieee80211_rx_bss_put(dev, bss); |
| 2655 | return; |
| 2656 | } |
| 2657 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2658 | if (elems.wpa && |
| 2659 | (!bss->wpa_ie || bss->wpa_ie_len != elems.wpa_len || |
| 2660 | memcmp(bss->wpa_ie, elems.wpa, elems.wpa_len))) { |
| 2661 | kfree(bss->wpa_ie); |
| 2662 | bss->wpa_ie = kmalloc(elems.wpa_len + 2, GFP_ATOMIC); |
| 2663 | if (bss->wpa_ie) { |
| 2664 | memcpy(bss->wpa_ie, elems.wpa - 2, elems.wpa_len + 2); |
| 2665 | bss->wpa_ie_len = elems.wpa_len + 2; |
| 2666 | } else |
| 2667 | bss->wpa_ie_len = 0; |
| 2668 | } else if (!elems.wpa && bss->wpa_ie) { |
| 2669 | kfree(bss->wpa_ie); |
| 2670 | bss->wpa_ie = NULL; |
| 2671 | bss->wpa_ie_len = 0; |
| 2672 | } |
| 2673 | |
| 2674 | if (elems.rsn && |
| 2675 | (!bss->rsn_ie || bss->rsn_ie_len != elems.rsn_len || |
| 2676 | memcmp(bss->rsn_ie, elems.rsn, elems.rsn_len))) { |
| 2677 | kfree(bss->rsn_ie); |
| 2678 | bss->rsn_ie = kmalloc(elems.rsn_len + 2, GFP_ATOMIC); |
| 2679 | if (bss->rsn_ie) { |
| 2680 | memcpy(bss->rsn_ie, elems.rsn - 2, elems.rsn_len + 2); |
| 2681 | bss->rsn_ie_len = elems.rsn_len + 2; |
| 2682 | } else |
| 2683 | bss->rsn_ie_len = 0; |
| 2684 | } else if (!elems.rsn && bss->rsn_ie) { |
| 2685 | kfree(bss->rsn_ie); |
| 2686 | bss->rsn_ie = NULL; |
| 2687 | bss->rsn_ie_len = 0; |
| 2688 | } |
| 2689 | |
Johannes Berg | 30b89b0 | 2008-04-16 17:43:20 +0200 | [diff] [blame] | 2690 | /* |
| 2691 | * Cf. |
| 2692 | * http://www.wipo.int/pctdb/en/wo.jsp?wo=2007047181&IA=WO2007047181&DISPLAY=DESC |
| 2693 | * |
| 2694 | * quoting: |
| 2695 | * |
| 2696 | * In particular, "Wi-Fi CERTIFIED for WMM - Support for Multimedia |
| 2697 | * Applications with Quality of Service in Wi-Fi Networks," Wi- Fi |
| 2698 | * Alliance (September 1, 2004) is incorporated by reference herein. |
| 2699 | * The inclusion of the WMM Parameters in probe responses and |
| 2700 | * association responses is mandatory for WMM enabled networks. The |
| 2701 | * inclusion of the WMM Parameters in beacons, however, is optional. |
| 2702 | */ |
| 2703 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2704 | if (elems.wmm_param && |
| 2705 | (!bss->wmm_ie || bss->wmm_ie_len != elems.wmm_param_len || |
| 2706 | memcmp(bss->wmm_ie, elems.wmm_param, elems.wmm_param_len))) { |
| 2707 | kfree(bss->wmm_ie); |
| 2708 | bss->wmm_ie = kmalloc(elems.wmm_param_len + 2, GFP_ATOMIC); |
| 2709 | if (bss->wmm_ie) { |
| 2710 | memcpy(bss->wmm_ie, elems.wmm_param - 2, |
| 2711 | elems.wmm_param_len + 2); |
| 2712 | bss->wmm_ie_len = elems.wmm_param_len + 2; |
| 2713 | } else |
| 2714 | bss->wmm_ie_len = 0; |
Abhijeet Kolekar | a46f025 | 2008-04-16 14:02:04 -0700 | [diff] [blame] | 2715 | } else if (elems.wmm_info && |
| 2716 | (!bss->wmm_ie || bss->wmm_ie_len != elems.wmm_info_len || |
| 2717 | memcmp(bss->wmm_ie, elems.wmm_info, elems.wmm_info_len))) { |
| 2718 | /* As for certain AP's Fifth bit is not set in WMM IE in |
| 2719 | * beacon frames.So while parsing the beacon frame the |
| 2720 | * wmm_info structure is used instead of wmm_param. |
| 2721 | * wmm_info structure was never used to set bss->wmm_ie. |
| 2722 | * This code fixes this problem by copying the WME |
| 2723 | * information from wmm_info to bss->wmm_ie and enabling |
| 2724 | * n-band association. |
| 2725 | */ |
| 2726 | kfree(bss->wmm_ie); |
| 2727 | bss->wmm_ie = kmalloc(elems.wmm_info_len + 2, GFP_ATOMIC); |
| 2728 | if (bss->wmm_ie) { |
| 2729 | memcpy(bss->wmm_ie, elems.wmm_info - 2, |
| 2730 | elems.wmm_info_len + 2); |
| 2731 | bss->wmm_ie_len = elems.wmm_info_len + 2; |
| 2732 | } else |
| 2733 | bss->wmm_ie_len = 0; |
| 2734 | } else if (!elems.wmm_param && !elems.wmm_info && bss->wmm_ie) { |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2735 | kfree(bss->wmm_ie); |
| 2736 | bss->wmm_ie = NULL; |
| 2737 | bss->wmm_ie_len = 0; |
| 2738 | } |
Bruno Randolf | 9d9bf77 | 2008-02-18 11:21:36 +0900 | [diff] [blame] | 2739 | |
| 2740 | /* check if we need to merge IBSS */ |
| 2741 | if (sdata->vif.type == IEEE80211_IF_TYPE_IBSS && beacon && |
| 2742 | !local->sta_sw_scanning && !local->sta_hw_scanning && |
Johannes Berg | fba4a1e | 2008-02-21 11:08:33 +0100 | [diff] [blame] | 2743 | bss->capability & WLAN_CAPABILITY_IBSS && |
Bruno Randolf | 9d9bf77 | 2008-02-18 11:21:36 +0900 | [diff] [blame] | 2744 | bss->freq == local->oper_channel->center_freq && |
| 2745 | elems.ssid_len == sdata->u.sta.ssid_len && |
| 2746 | memcmp(elems.ssid, sdata->u.sta.ssid, sdata->u.sta.ssid_len) == 0) { |
| 2747 | if (rx_status->flag & RX_FLAG_TSFT) { |
| 2748 | /* in order for correct IBSS merging we need mactime |
| 2749 | * |
| 2750 | * since mactime is defined as the time the first data |
| 2751 | * symbol of the frame hits the PHY, and the timestamp |
| 2752 | * of the beacon is defined as "the time that the data |
| 2753 | * symbol containing the first bit of the timestamp is |
| 2754 | * transmitted to the PHY plus the transmitting STA’s |
| 2755 | * delays through its local PHY from the MAC-PHY |
| 2756 | * interface to its interface with the WM" |
| 2757 | * (802.11 11.1.2) - equals the time this bit arrives at |
| 2758 | * the receiver - we have to take into account the |
| 2759 | * offset between the two. |
| 2760 | * e.g: at 1 MBit that means mactime is 192 usec earlier |
| 2761 | * (=24 bytes * 8 usecs/byte) than the beacon timestamp. |
| 2762 | */ |
| 2763 | int rate = local->hw.wiphy->bands[rx_status->band]-> |
| 2764 | bitrates[rx_status->rate_idx].bitrate; |
| 2765 | rx_timestamp = rx_status->mactime + (24 * 8 * 10 / rate); |
| 2766 | } else if (local && local->ops && local->ops->get_tsf) |
| 2767 | /* second best option: get current TSF */ |
| 2768 | rx_timestamp = local->ops->get_tsf(local_to_hw(local)); |
| 2769 | else |
| 2770 | /* can't merge without knowing the TSF */ |
| 2771 | rx_timestamp = -1LLU; |
| 2772 | #ifdef CONFIG_MAC80211_IBSS_DEBUG |
| 2773 | printk(KERN_DEBUG "RX beacon SA=%s BSSID=" |
| 2774 | "%s TSF=0x%llx BCN=0x%llx diff=%lld @%lu\n", |
| 2775 | print_mac(mac, mgmt->sa), |
| 2776 | print_mac(mac2, mgmt->bssid), |
| 2777 | (unsigned long long)rx_timestamp, |
| 2778 | (unsigned long long)beacon_timestamp, |
| 2779 | (unsigned long long)(rx_timestamp - beacon_timestamp), |
| 2780 | jiffies); |
| 2781 | #endif /* CONFIG_MAC80211_IBSS_DEBUG */ |
| 2782 | if (beacon_timestamp > rx_timestamp) { |
Johannes Berg | fba4a1e | 2008-02-21 11:08:33 +0100 | [diff] [blame] | 2783 | #ifndef CONFIG_MAC80211_IBSS_DEBUG |
Pavel Roskin | d97cf01 | 2008-02-21 11:33:58 -0500 | [diff] [blame] | 2784 | if (net_ratelimit()) |
Johannes Berg | fba4a1e | 2008-02-21 11:08:33 +0100 | [diff] [blame] | 2785 | #endif |
Bruno Randolf | 9d9bf77 | 2008-02-18 11:21:36 +0900 | [diff] [blame] | 2786 | printk(KERN_DEBUG "%s: beacon TSF higher than " |
| 2787 | "local TSF - IBSS merge with BSSID %s\n", |
| 2788 | dev->name, print_mac(mac, mgmt->bssid)); |
| 2789 | ieee80211_sta_join_ibss(dev, &sdata->u.sta, bss); |
| 2790 | ieee80211_ibss_add_sta(dev, NULL, |
| 2791 | mgmt->bssid, mgmt->sa); |
| 2792 | } |
| 2793 | } |
| 2794 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2795 | ieee80211_rx_bss_put(dev, bss); |
| 2796 | } |
| 2797 | |
| 2798 | |
| 2799 | static void ieee80211_rx_mgmt_probe_resp(struct net_device *dev, |
| 2800 | struct ieee80211_mgmt *mgmt, |
| 2801 | size_t len, |
| 2802 | struct ieee80211_rx_status *rx_status) |
| 2803 | { |
| 2804 | ieee80211_rx_bss_info(dev, mgmt, len, rx_status, 0); |
| 2805 | } |
| 2806 | |
| 2807 | |
| 2808 | static void ieee80211_rx_mgmt_beacon(struct net_device *dev, |
| 2809 | struct ieee80211_mgmt *mgmt, |
| 2810 | size_t len, |
| 2811 | struct ieee80211_rx_status *rx_status) |
| 2812 | { |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2813 | struct ieee80211_sub_if_data *sdata; |
| 2814 | struct ieee80211_if_sta *ifsta; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2815 | size_t baselen; |
| 2816 | struct ieee802_11_elems elems; |
Ron Rindjunsky | d3c990f | 2007-11-26 16:14:34 +0200 | [diff] [blame] | 2817 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); |
| 2818 | struct ieee80211_conf *conf = &local->hw.conf; |
Johannes Berg | 471b3ef | 2007-12-28 14:32:58 +0100 | [diff] [blame] | 2819 | u32 changed = 0; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2820 | |
| 2821 | ieee80211_rx_bss_info(dev, mgmt, len, rx_status, 1); |
| 2822 | |
| 2823 | sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
Johannes Berg | 51fb61e | 2007-12-19 01:31:27 +0100 | [diff] [blame] | 2824 | if (sdata->vif.type != IEEE80211_IF_TYPE_STA) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2825 | return; |
| 2826 | ifsta = &sdata->u.sta; |
| 2827 | |
Jiri Slaby | d6f2da5 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 2828 | if (!(ifsta->flags & IEEE80211_STA_ASSOCIATED) || |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2829 | memcmp(ifsta->bssid, mgmt->bssid, ETH_ALEN) != 0) |
| 2830 | return; |
| 2831 | |
| 2832 | /* Process beacon from the current BSS */ |
| 2833 | baselen = (u8 *) mgmt->u.beacon.variable - (u8 *) mgmt; |
| 2834 | if (baselen > len) |
| 2835 | return; |
| 2836 | |
John W. Linville | 67a4cce | 2007-10-12 16:40:37 -0400 | [diff] [blame] | 2837 | ieee802_11_parse_elems(mgmt->u.beacon.variable, len - baselen, &elems); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2838 | |
Reinette Chatre | d18ef29 | 2008-04-09 16:56:15 -0700 | [diff] [blame] | 2839 | if (elems.wmm_param && (ifsta->flags & IEEE80211_STA_WMM_ENABLED)) { |
| 2840 | ieee80211_sta_wmm_params(dev, ifsta, elems.wmm_param, |
| 2841 | elems.wmm_param_len); |
| 2842 | } |
| 2843 | |
| 2844 | /* Do not send changes to driver if we are scanning. This removes |
| 2845 | * requirement that driver's bss_info_changed function needs to be |
| 2846 | * atomic. */ |
| 2847 | if (local->sta_sw_scanning || local->sta_hw_scanning) |
| 2848 | return; |
| 2849 | |
Daniel Drake | 5628221 | 2007-07-10 19:32:10 +0200 | [diff] [blame] | 2850 | if (elems.erp_info && elems.erp_info_len >= 1) |
Johannes Berg | 471b3ef | 2007-12-28 14:32:58 +0100 | [diff] [blame] | 2851 | changed |= ieee80211_handle_erp_ie(sdata, elems.erp_info[0]); |
John W. Linville | 50c4afb | 2008-04-15 14:09:27 -0400 | [diff] [blame] | 2852 | else { |
| 2853 | u16 capab = le16_to_cpu(mgmt->u.beacon.capab_info); |
| 2854 | changed |= ieee80211_handle_protect_preamb(sdata, false, |
| 2855 | (capab & WLAN_CAPABILITY_SHORT_PREAMBLE) != 0); |
| 2856 | } |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2857 | |
Ron Rindjunsky | d3c990f | 2007-11-26 16:14:34 +0200 | [diff] [blame] | 2858 | if (elems.ht_cap_elem && elems.ht_info_elem && |
Tomas Winkler | 38668c0 | 2008-03-28 16:33:32 -0700 | [diff] [blame] | 2859 | elems.wmm_param && conf->flags & IEEE80211_CONF_SUPPORT_HT_MODE) { |
Ron Rindjunsky | d3c990f | 2007-11-26 16:14:34 +0200 | [diff] [blame] | 2860 | struct ieee80211_ht_bss_info bss_info; |
| 2861 | |
| 2862 | ieee80211_ht_addt_info_ie_to_ht_bss_info( |
| 2863 | (struct ieee80211_ht_addt_info *) |
| 2864 | elems.ht_info_elem, &bss_info); |
Tomas Winkler | 38668c0 | 2008-03-28 16:33:32 -0700 | [diff] [blame] | 2865 | changed |= ieee80211_handle_ht(local, 1, &conf->ht_conf, |
| 2866 | &bss_info); |
Ron Rindjunsky | d3c990f | 2007-11-26 16:14:34 +0200 | [diff] [blame] | 2867 | } |
| 2868 | |
Johannes Berg | 471b3ef | 2007-12-28 14:32:58 +0100 | [diff] [blame] | 2869 | ieee80211_bss_info_change_notify(sdata, changed); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2870 | } |
| 2871 | |
| 2872 | |
| 2873 | static void ieee80211_rx_mgmt_probe_req(struct net_device *dev, |
| 2874 | struct ieee80211_if_sta *ifsta, |
| 2875 | struct ieee80211_mgmt *mgmt, |
| 2876 | size_t len, |
| 2877 | struct ieee80211_rx_status *rx_status) |
| 2878 | { |
| 2879 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); |
| 2880 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 2881 | int tx_last_beacon; |
| 2882 | struct sk_buff *skb; |
| 2883 | struct ieee80211_mgmt *resp; |
| 2884 | u8 *pos, *end; |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 2885 | DECLARE_MAC_BUF(mac); |
| 2886 | #ifdef CONFIG_MAC80211_IBSS_DEBUG |
| 2887 | DECLARE_MAC_BUF(mac2); |
| 2888 | DECLARE_MAC_BUF(mac3); |
| 2889 | #endif |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2890 | |
Johannes Berg | 51fb61e | 2007-12-19 01:31:27 +0100 | [diff] [blame] | 2891 | if (sdata->vif.type != IEEE80211_IF_TYPE_IBSS || |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2892 | ifsta->state != IEEE80211_IBSS_JOINED || |
| 2893 | len < 24 + 2 || !ifsta->probe_resp) |
| 2894 | return; |
| 2895 | |
| 2896 | if (local->ops->tx_last_beacon) |
| 2897 | tx_last_beacon = local->ops->tx_last_beacon(local_to_hw(local)); |
| 2898 | else |
| 2899 | tx_last_beacon = 1; |
| 2900 | |
| 2901 | #ifdef CONFIG_MAC80211_IBSS_DEBUG |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 2902 | printk(KERN_DEBUG "%s: RX ProbeReq SA=%s DA=%s BSSID=" |
| 2903 | "%s (tx_last_beacon=%d)\n", |
| 2904 | dev->name, print_mac(mac, mgmt->sa), print_mac(mac2, mgmt->da), |
| 2905 | print_mac(mac3, mgmt->bssid), tx_last_beacon); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2906 | #endif /* CONFIG_MAC80211_IBSS_DEBUG */ |
| 2907 | |
| 2908 | if (!tx_last_beacon) |
| 2909 | return; |
| 2910 | |
| 2911 | if (memcmp(mgmt->bssid, ifsta->bssid, ETH_ALEN) != 0 && |
| 2912 | memcmp(mgmt->bssid, "\xff\xff\xff\xff\xff\xff", ETH_ALEN) != 0) |
| 2913 | return; |
| 2914 | |
| 2915 | end = ((u8 *) mgmt) + len; |
| 2916 | pos = mgmt->u.probe_req.variable; |
| 2917 | if (pos[0] != WLAN_EID_SSID || |
| 2918 | pos + 2 + pos[1] > end) { |
| 2919 | if (net_ratelimit()) { |
| 2920 | printk(KERN_DEBUG "%s: Invalid SSID IE in ProbeReq " |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 2921 | "from %s\n", |
| 2922 | dev->name, print_mac(mac, mgmt->sa)); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2923 | } |
| 2924 | return; |
| 2925 | } |
| 2926 | if (pos[1] != 0 && |
| 2927 | (pos[1] != ifsta->ssid_len || |
| 2928 | memcmp(pos + 2, ifsta->ssid, ifsta->ssid_len) != 0)) { |
| 2929 | /* Ignore ProbeReq for foreign SSID */ |
| 2930 | return; |
| 2931 | } |
| 2932 | |
| 2933 | /* Reply with ProbeResp */ |
Michael Wu | 0ec0b7a | 2007-07-27 15:43:24 +0200 | [diff] [blame] | 2934 | skb = skb_copy(ifsta->probe_resp, GFP_KERNEL); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2935 | if (!skb) |
| 2936 | return; |
| 2937 | |
| 2938 | resp = (struct ieee80211_mgmt *) skb->data; |
| 2939 | memcpy(resp->da, mgmt->sa, ETH_ALEN); |
| 2940 | #ifdef CONFIG_MAC80211_IBSS_DEBUG |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 2941 | printk(KERN_DEBUG "%s: Sending ProbeResp to %s\n", |
| 2942 | dev->name, print_mac(mac, resp->da)); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2943 | #endif /* CONFIG_MAC80211_IBSS_DEBUG */ |
| 2944 | ieee80211_sta_tx(dev, skb, 0); |
| 2945 | } |
| 2946 | |
Johannes Berg | 4e20cb2 | 2007-12-19 01:31:24 +0100 | [diff] [blame] | 2947 | static void ieee80211_rx_mgmt_action(struct net_device *dev, |
| 2948 | struct ieee80211_if_sta *ifsta, |
| 2949 | struct ieee80211_mgmt *mgmt, |
Luis Carlos Cobo | f709fc6 | 2008-02-23 15:17:12 +0100 | [diff] [blame] | 2950 | size_t len, |
| 2951 | struct ieee80211_rx_status *rx_status) |
Ron Rindjunsky | 9f985b0 | 2007-11-26 16:14:32 +0200 | [diff] [blame] | 2952 | { |
Luis Carlos Cobo | f709fc6 | 2008-02-23 15:17:12 +0100 | [diff] [blame] | 2953 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
Luis Carlos Cobo | f709fc6 | 2008-02-23 15:17:12 +0100 | [diff] [blame] | 2954 | |
Ron Rindjunsky | 9f985b0 | 2007-11-26 16:14:32 +0200 | [diff] [blame] | 2955 | if (len < IEEE80211_MIN_ACTION_SIZE) |
| 2956 | return; |
| 2957 | |
| 2958 | switch (mgmt->u.action.category) { |
| 2959 | case WLAN_CATEGORY_BACK: |
| 2960 | switch (mgmt->u.action.u.addba_req.action_code) { |
| 2961 | case WLAN_ACTION_ADDBA_REQ: |
| 2962 | if (len < (IEEE80211_MIN_ACTION_SIZE + |
| 2963 | sizeof(mgmt->u.action.u.addba_req))) |
| 2964 | break; |
| 2965 | ieee80211_sta_process_addba_request(dev, mgmt, len); |
| 2966 | break; |
Ron Rindjunsky | eadc8d9 | 2008-01-28 14:07:17 +0200 | [diff] [blame] | 2967 | case WLAN_ACTION_ADDBA_RESP: |
| 2968 | if (len < (IEEE80211_MIN_ACTION_SIZE + |
| 2969 | sizeof(mgmt->u.action.u.addba_resp))) |
| 2970 | break; |
| 2971 | ieee80211_sta_process_addba_resp(dev, mgmt, len); |
| 2972 | break; |
Ron Rindjunsky | 688b88a | 2007-12-25 17:00:37 +0200 | [diff] [blame] | 2973 | case WLAN_ACTION_DELBA: |
| 2974 | if (len < (IEEE80211_MIN_ACTION_SIZE + |
| 2975 | sizeof(mgmt->u.action.u.delba))) |
| 2976 | break; |
| 2977 | ieee80211_sta_process_delba(dev, mgmt, len); |
| 2978 | break; |
Ron Rindjunsky | 9f985b0 | 2007-11-26 16:14:32 +0200 | [diff] [blame] | 2979 | default: |
| 2980 | if (net_ratelimit()) |
Ron Rindjunsky | 688b88a | 2007-12-25 17:00:37 +0200 | [diff] [blame] | 2981 | printk(KERN_DEBUG "%s: Rx unknown A-MPDU action\n", |
Ron Rindjunsky | 9f985b0 | 2007-11-26 16:14:32 +0200 | [diff] [blame] | 2982 | dev->name); |
| 2983 | break; |
| 2984 | } |
| 2985 | break; |
Luis Carlos Cobo | f709fc6 | 2008-02-23 15:17:12 +0100 | [diff] [blame] | 2986 | case PLINK_CATEGORY: |
Johannes Berg | 902acc7 | 2008-02-23 15:17:19 +0100 | [diff] [blame] | 2987 | if (ieee80211_vif_is_mesh(&sdata->vif)) |
Luis Carlos Cobo | f709fc6 | 2008-02-23 15:17:12 +0100 | [diff] [blame] | 2988 | mesh_rx_plink_frame(dev, mgmt, len, rx_status); |
| 2989 | break; |
Luis Carlos Cobo | f709fc6 | 2008-02-23 15:17:12 +0100 | [diff] [blame] | 2990 | case MESH_PATH_SEL_CATEGORY: |
Johannes Berg | 902acc7 | 2008-02-23 15:17:19 +0100 | [diff] [blame] | 2991 | if (ieee80211_vif_is_mesh(&sdata->vif)) |
Luis Carlos Cobo | f709fc6 | 2008-02-23 15:17:12 +0100 | [diff] [blame] | 2992 | mesh_rx_path_sel_frame(dev, mgmt, len); |
| 2993 | break; |
Ron Rindjunsky | 9f985b0 | 2007-11-26 16:14:32 +0200 | [diff] [blame] | 2994 | default: |
Luis Carlos Cobo | f709fc6 | 2008-02-23 15:17:12 +0100 | [diff] [blame] | 2995 | if (net_ratelimit()) |
| 2996 | printk(KERN_DEBUG "%s: Rx unknown action frame - " |
| 2997 | "category=%d\n", dev->name, mgmt->u.action.category); |
Ron Rindjunsky | 9f985b0 | 2007-11-26 16:14:32 +0200 | [diff] [blame] | 2998 | break; |
| 2999 | } |
| 3000 | } |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3001 | |
| 3002 | void ieee80211_sta_rx_mgmt(struct net_device *dev, struct sk_buff *skb, |
| 3003 | struct ieee80211_rx_status *rx_status) |
| 3004 | { |
| 3005 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); |
| 3006 | struct ieee80211_sub_if_data *sdata; |
| 3007 | struct ieee80211_if_sta *ifsta; |
| 3008 | struct ieee80211_mgmt *mgmt; |
| 3009 | u16 fc; |
| 3010 | |
| 3011 | if (skb->len < 24) |
| 3012 | goto fail; |
| 3013 | |
| 3014 | sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 3015 | ifsta = &sdata->u.sta; |
| 3016 | |
| 3017 | mgmt = (struct ieee80211_mgmt *) skb->data; |
| 3018 | fc = le16_to_cpu(mgmt->frame_control); |
| 3019 | |
| 3020 | switch (fc & IEEE80211_FCTL_STYPE) { |
| 3021 | case IEEE80211_STYPE_PROBE_REQ: |
| 3022 | case IEEE80211_STYPE_PROBE_RESP: |
| 3023 | case IEEE80211_STYPE_BEACON: |
Luis Carlos Cobo | f709fc6 | 2008-02-23 15:17:12 +0100 | [diff] [blame] | 3024 | case IEEE80211_STYPE_ACTION: |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3025 | memcpy(skb->cb, rx_status, sizeof(*rx_status)); |
| 3026 | case IEEE80211_STYPE_AUTH: |
| 3027 | case IEEE80211_STYPE_ASSOC_RESP: |
| 3028 | case IEEE80211_STYPE_REASSOC_RESP: |
| 3029 | case IEEE80211_STYPE_DEAUTH: |
| 3030 | case IEEE80211_STYPE_DISASSOC: |
| 3031 | skb_queue_tail(&ifsta->skb_queue, skb); |
| 3032 | queue_work(local->hw.workqueue, &ifsta->work); |
| 3033 | return; |
| 3034 | default: |
| 3035 | printk(KERN_DEBUG "%s: received unknown management frame - " |
| 3036 | "stype=%d\n", dev->name, |
| 3037 | (fc & IEEE80211_FCTL_STYPE) >> 4); |
| 3038 | break; |
| 3039 | } |
| 3040 | |
| 3041 | fail: |
| 3042 | kfree_skb(skb); |
| 3043 | } |
| 3044 | |
| 3045 | |
| 3046 | static void ieee80211_sta_rx_queued_mgmt(struct net_device *dev, |
| 3047 | struct sk_buff *skb) |
| 3048 | { |
| 3049 | struct ieee80211_rx_status *rx_status; |
| 3050 | struct ieee80211_sub_if_data *sdata; |
| 3051 | struct ieee80211_if_sta *ifsta; |
| 3052 | struct ieee80211_mgmt *mgmt; |
| 3053 | u16 fc; |
| 3054 | |
| 3055 | sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 3056 | ifsta = &sdata->u.sta; |
| 3057 | |
| 3058 | rx_status = (struct ieee80211_rx_status *) skb->cb; |
| 3059 | mgmt = (struct ieee80211_mgmt *) skb->data; |
| 3060 | fc = le16_to_cpu(mgmt->frame_control); |
| 3061 | |
| 3062 | switch (fc & IEEE80211_FCTL_STYPE) { |
| 3063 | case IEEE80211_STYPE_PROBE_REQ: |
| 3064 | ieee80211_rx_mgmt_probe_req(dev, ifsta, mgmt, skb->len, |
| 3065 | rx_status); |
| 3066 | break; |
| 3067 | case IEEE80211_STYPE_PROBE_RESP: |
| 3068 | ieee80211_rx_mgmt_probe_resp(dev, mgmt, skb->len, rx_status); |
| 3069 | break; |
| 3070 | case IEEE80211_STYPE_BEACON: |
| 3071 | ieee80211_rx_mgmt_beacon(dev, mgmt, skb->len, rx_status); |
| 3072 | break; |
| 3073 | case IEEE80211_STYPE_AUTH: |
| 3074 | ieee80211_rx_mgmt_auth(dev, ifsta, mgmt, skb->len); |
| 3075 | break; |
| 3076 | case IEEE80211_STYPE_ASSOC_RESP: |
Johannes Berg | 471b3ef | 2007-12-28 14:32:58 +0100 | [diff] [blame] | 3077 | ieee80211_rx_mgmt_assoc_resp(sdata, ifsta, mgmt, skb->len, 0); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3078 | break; |
| 3079 | case IEEE80211_STYPE_REASSOC_RESP: |
Johannes Berg | 471b3ef | 2007-12-28 14:32:58 +0100 | [diff] [blame] | 3080 | ieee80211_rx_mgmt_assoc_resp(sdata, ifsta, mgmt, skb->len, 1); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3081 | break; |
| 3082 | case IEEE80211_STYPE_DEAUTH: |
| 3083 | ieee80211_rx_mgmt_deauth(dev, ifsta, mgmt, skb->len); |
| 3084 | break; |
| 3085 | case IEEE80211_STYPE_DISASSOC: |
| 3086 | ieee80211_rx_mgmt_disassoc(dev, ifsta, mgmt, skb->len); |
| 3087 | break; |
Ron Rindjunsky | 9f985b0 | 2007-11-26 16:14:32 +0200 | [diff] [blame] | 3088 | case IEEE80211_STYPE_ACTION: |
Luis Carlos Cobo | f709fc6 | 2008-02-23 15:17:12 +0100 | [diff] [blame] | 3089 | ieee80211_rx_mgmt_action(dev, ifsta, mgmt, skb->len, rx_status); |
Ron Rindjunsky | 9f985b0 | 2007-11-26 16:14:32 +0200 | [diff] [blame] | 3090 | break; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3091 | } |
| 3092 | |
| 3093 | kfree_skb(skb); |
| 3094 | } |
| 3095 | |
| 3096 | |
Johannes Berg | 9ae54c8 | 2008-01-31 19:48:20 +0100 | [diff] [blame] | 3097 | ieee80211_rx_result |
Zhu Yi | ece8edd | 2007-11-22 10:53:21 +0800 | [diff] [blame] | 3098 | ieee80211_sta_rx_scan(struct net_device *dev, struct sk_buff *skb, |
| 3099 | struct ieee80211_rx_status *rx_status) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3100 | { |
| 3101 | struct ieee80211_mgmt *mgmt; |
| 3102 | u16 fc; |
| 3103 | |
Zhu Yi | ece8edd | 2007-11-22 10:53:21 +0800 | [diff] [blame] | 3104 | if (skb->len < 2) |
Johannes Berg | e4c26ad | 2008-01-31 19:48:21 +0100 | [diff] [blame] | 3105 | return RX_DROP_UNUSABLE; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3106 | |
| 3107 | mgmt = (struct ieee80211_mgmt *) skb->data; |
| 3108 | fc = le16_to_cpu(mgmt->frame_control); |
| 3109 | |
Zhu Yi | ece8edd | 2007-11-22 10:53:21 +0800 | [diff] [blame] | 3110 | if ((fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_CTL) |
Johannes Berg | 9ae54c8 | 2008-01-31 19:48:20 +0100 | [diff] [blame] | 3111 | return RX_CONTINUE; |
Zhu Yi | ece8edd | 2007-11-22 10:53:21 +0800 | [diff] [blame] | 3112 | |
| 3113 | if (skb->len < 24) |
Johannes Berg | e4c26ad | 2008-01-31 19:48:21 +0100 | [diff] [blame] | 3114 | return RX_DROP_MONITOR; |
Zhu Yi | ece8edd | 2007-11-22 10:53:21 +0800 | [diff] [blame] | 3115 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3116 | if ((fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_MGMT) { |
| 3117 | if ((fc & IEEE80211_FCTL_STYPE) == IEEE80211_STYPE_PROBE_RESP) { |
| 3118 | ieee80211_rx_mgmt_probe_resp(dev, mgmt, |
| 3119 | skb->len, rx_status); |
Zhu Yi | ece8edd | 2007-11-22 10:53:21 +0800 | [diff] [blame] | 3120 | dev_kfree_skb(skb); |
Johannes Berg | 9ae54c8 | 2008-01-31 19:48:20 +0100 | [diff] [blame] | 3121 | return RX_QUEUED; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3122 | } else if ((fc & IEEE80211_FCTL_STYPE) == IEEE80211_STYPE_BEACON) { |
| 3123 | ieee80211_rx_mgmt_beacon(dev, mgmt, skb->len, |
| 3124 | rx_status); |
Zhu Yi | ece8edd | 2007-11-22 10:53:21 +0800 | [diff] [blame] | 3125 | dev_kfree_skb(skb); |
Johannes Berg | 9ae54c8 | 2008-01-31 19:48:20 +0100 | [diff] [blame] | 3126 | return RX_QUEUED; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3127 | } |
| 3128 | } |
Johannes Berg | 9ae54c8 | 2008-01-31 19:48:20 +0100 | [diff] [blame] | 3129 | return RX_CONTINUE; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3130 | } |
| 3131 | |
| 3132 | |
| 3133 | static int ieee80211_sta_active_ibss(struct net_device *dev) |
| 3134 | { |
| 3135 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); |
| 3136 | int active = 0; |
| 3137 | struct sta_info *sta; |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 3138 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3139 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 3140 | rcu_read_lock(); |
| 3141 | |
| 3142 | list_for_each_entry_rcu(sta, &local->sta_list, list) { |
| 3143 | if (sta->sdata == sdata && |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3144 | time_after(sta->last_rx + IEEE80211_IBSS_MERGE_INTERVAL, |
| 3145 | jiffies)) { |
| 3146 | active++; |
| 3147 | break; |
| 3148 | } |
| 3149 | } |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 3150 | |
| 3151 | rcu_read_unlock(); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3152 | |
| 3153 | return active; |
| 3154 | } |
| 3155 | |
| 3156 | |
Luis Carlos Cobo | f709fc6 | 2008-02-23 15:17:12 +0100 | [diff] [blame] | 3157 | static void ieee80211_sta_expire(struct net_device *dev, unsigned long exp_time) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3158 | { |
| 3159 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); |
| 3160 | struct sta_info *sta, *tmp; |
Michael Wu | be8755e | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 3161 | LIST_HEAD(tmp_list); |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 3162 | DECLARE_MAC_BUF(mac); |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 3163 | unsigned long flags; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3164 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 3165 | spin_lock_irqsave(&local->sta_lock, flags); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3166 | list_for_each_entry_safe(sta, tmp, &local->sta_list, list) |
Luis Carlos Cobo | f709fc6 | 2008-02-23 15:17:12 +0100 | [diff] [blame] | 3167 | if (time_after(jiffies, sta->last_rx + exp_time)) { |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 3168 | printk(KERN_DEBUG "%s: expiring inactive STA %s\n", |
| 3169 | dev->name, print_mac(mac, sta->addr)); |
Luis Carlos Cobo | cb585bc | 2008-03-31 15:21:23 -0700 | [diff] [blame] | 3170 | __sta_info_unlink(&sta); |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 3171 | if (sta) |
| 3172 | list_add(&sta->list, &tmp_list); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3173 | } |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 3174 | spin_unlock_irqrestore(&local->sta_lock, flags); |
Michael Wu | be8755e | 2007-07-27 15:43:23 +0200 | [diff] [blame] | 3175 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 3176 | list_for_each_entry_safe(sta, tmp, &tmp_list, list) |
| 3177 | sta_info_destroy(sta); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3178 | } |
| 3179 | |
| 3180 | |
| 3181 | static void ieee80211_sta_merge_ibss(struct net_device *dev, |
| 3182 | struct ieee80211_if_sta *ifsta) |
| 3183 | { |
| 3184 | mod_timer(&ifsta->timer, jiffies + IEEE80211_IBSS_MERGE_INTERVAL); |
| 3185 | |
Luis Carlos Cobo | f709fc6 | 2008-02-23 15:17:12 +0100 | [diff] [blame] | 3186 | ieee80211_sta_expire(dev, IEEE80211_IBSS_INACTIVITY_LIMIT); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3187 | if (ieee80211_sta_active_ibss(dev)) |
| 3188 | return; |
| 3189 | |
| 3190 | printk(KERN_DEBUG "%s: No active IBSS STAs - trying to scan for other " |
| 3191 | "IBSS networks with same SSID (merge)\n", dev->name); |
| 3192 | ieee80211_sta_req_scan(dev, ifsta->ssid, ifsta->ssid_len); |
| 3193 | } |
| 3194 | |
| 3195 | |
Luis Carlos Cobo | f709fc6 | 2008-02-23 15:17:12 +0100 | [diff] [blame] | 3196 | #ifdef CONFIG_MAC80211_MESH |
| 3197 | static void ieee80211_mesh_housekeeping(struct net_device *dev, |
| 3198 | struct ieee80211_if_sta *ifsta) |
| 3199 | { |
| 3200 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 3201 | bool free_plinks; |
| 3202 | |
| 3203 | ieee80211_sta_expire(dev, IEEE80211_MESH_PEER_INACTIVITY_LIMIT); |
| 3204 | mesh_path_expire(dev); |
| 3205 | |
| 3206 | free_plinks = mesh_plink_availables(sdata); |
| 3207 | if (free_plinks != sdata->u.sta.accepting_plinks) |
| 3208 | ieee80211_if_config_beacon(dev); |
| 3209 | |
| 3210 | mod_timer(&ifsta->timer, jiffies + |
| 3211 | IEEE80211_MESH_HOUSEKEEPING_INTERVAL); |
| 3212 | } |
| 3213 | |
| 3214 | |
| 3215 | void ieee80211_start_mesh(struct net_device *dev) |
| 3216 | { |
| 3217 | struct ieee80211_if_sta *ifsta; |
| 3218 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 3219 | ifsta = &sdata->u.sta; |
| 3220 | ifsta->state = IEEE80211_MESH_UP; |
| 3221 | ieee80211_sta_timer((unsigned long)sdata); |
| 3222 | } |
| 3223 | #endif |
| 3224 | |
| 3225 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3226 | void ieee80211_sta_timer(unsigned long data) |
| 3227 | { |
| 3228 | struct ieee80211_sub_if_data *sdata = |
| 3229 | (struct ieee80211_sub_if_data *) data; |
| 3230 | struct ieee80211_if_sta *ifsta = &sdata->u.sta; |
| 3231 | struct ieee80211_local *local = wdev_priv(&sdata->wdev); |
| 3232 | |
| 3233 | set_bit(IEEE80211_STA_REQ_RUN, &ifsta->request); |
| 3234 | queue_work(local->hw.workqueue, &ifsta->work); |
| 3235 | } |
| 3236 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3237 | void ieee80211_sta_work(struct work_struct *work) |
| 3238 | { |
| 3239 | struct ieee80211_sub_if_data *sdata = |
| 3240 | container_of(work, struct ieee80211_sub_if_data, u.sta.work); |
| 3241 | struct net_device *dev = sdata->dev; |
| 3242 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); |
| 3243 | struct ieee80211_if_sta *ifsta; |
| 3244 | struct sk_buff *skb; |
| 3245 | |
| 3246 | if (!netif_running(dev)) |
| 3247 | return; |
| 3248 | |
Zhu Yi | ece8edd | 2007-11-22 10:53:21 +0800 | [diff] [blame] | 3249 | if (local->sta_sw_scanning || local->sta_hw_scanning) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3250 | return; |
| 3251 | |
Johannes Berg | 51fb61e | 2007-12-19 01:31:27 +0100 | [diff] [blame] | 3252 | if (sdata->vif.type != IEEE80211_IF_TYPE_STA && |
Luis Carlos Cobo | f709fc6 | 2008-02-23 15:17:12 +0100 | [diff] [blame] | 3253 | sdata->vif.type != IEEE80211_IF_TYPE_IBSS && |
| 3254 | sdata->vif.type != IEEE80211_IF_TYPE_MESH_POINT) { |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3255 | printk(KERN_DEBUG "%s: ieee80211_sta_work: non-STA interface " |
Johannes Berg | 51fb61e | 2007-12-19 01:31:27 +0100 | [diff] [blame] | 3256 | "(type=%d)\n", dev->name, sdata->vif.type); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3257 | return; |
| 3258 | } |
| 3259 | ifsta = &sdata->u.sta; |
| 3260 | |
| 3261 | while ((skb = skb_dequeue(&ifsta->skb_queue))) |
| 3262 | ieee80211_sta_rx_queued_mgmt(dev, skb); |
| 3263 | |
Luis Carlos Cobo | f709fc6 | 2008-02-23 15:17:12 +0100 | [diff] [blame] | 3264 | #ifdef CONFIG_MAC80211_MESH |
Johannes Berg | 902acc7 | 2008-02-23 15:17:19 +0100 | [diff] [blame] | 3265 | if (ifsta->preq_queue_len && |
| 3266 | time_after(jiffies, |
| 3267 | ifsta->last_preq + msecs_to_jiffies(ifsta->mshcfg.dot11MeshHWMPpreqMinInterval))) |
Luis Carlos Cobo | f709fc6 | 2008-02-23 15:17:12 +0100 | [diff] [blame] | 3268 | mesh_path_start_discovery(dev); |
| 3269 | #endif |
| 3270 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3271 | if (ifsta->state != IEEE80211_AUTHENTICATE && |
| 3272 | ifsta->state != IEEE80211_ASSOCIATE && |
| 3273 | test_and_clear_bit(IEEE80211_STA_REQ_SCAN, &ifsta->request)) { |
Helmut Schaa | a0af5f1 | 2007-11-09 16:25:08 +0100 | [diff] [blame] | 3274 | if (ifsta->scan_ssid_len) |
| 3275 | ieee80211_sta_start_scan(dev, ifsta->scan_ssid, ifsta->scan_ssid_len); |
| 3276 | else |
| 3277 | ieee80211_sta_start_scan(dev, NULL, 0); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3278 | return; |
| 3279 | } |
| 3280 | |
| 3281 | if (test_and_clear_bit(IEEE80211_STA_REQ_AUTH, &ifsta->request)) { |
| 3282 | if (ieee80211_sta_config_auth(dev, ifsta)) |
| 3283 | return; |
| 3284 | clear_bit(IEEE80211_STA_REQ_RUN, &ifsta->request); |
| 3285 | } else if (!test_and_clear_bit(IEEE80211_STA_REQ_RUN, &ifsta->request)) |
| 3286 | return; |
| 3287 | |
| 3288 | switch (ifsta->state) { |
| 3289 | case IEEE80211_DISABLED: |
| 3290 | break; |
| 3291 | case IEEE80211_AUTHENTICATE: |
| 3292 | ieee80211_authenticate(dev, ifsta); |
| 3293 | break; |
| 3294 | case IEEE80211_ASSOCIATE: |
| 3295 | ieee80211_associate(dev, ifsta); |
| 3296 | break; |
| 3297 | case IEEE80211_ASSOCIATED: |
| 3298 | ieee80211_associated(dev, ifsta); |
| 3299 | break; |
| 3300 | case IEEE80211_IBSS_SEARCH: |
| 3301 | ieee80211_sta_find_ibss(dev, ifsta); |
| 3302 | break; |
| 3303 | case IEEE80211_IBSS_JOINED: |
| 3304 | ieee80211_sta_merge_ibss(dev, ifsta); |
| 3305 | break; |
Luis Carlos Cobo | f709fc6 | 2008-02-23 15:17:12 +0100 | [diff] [blame] | 3306 | #ifdef CONFIG_MAC80211_MESH |
| 3307 | case IEEE80211_MESH_UP: |
| 3308 | ieee80211_mesh_housekeeping(dev, ifsta); |
| 3309 | break; |
| 3310 | #endif |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3311 | default: |
| 3312 | printk(KERN_DEBUG "ieee80211_sta_work: Unknown state %d\n", |
| 3313 | ifsta->state); |
| 3314 | break; |
| 3315 | } |
| 3316 | |
| 3317 | if (ieee80211_privacy_mismatch(dev, ifsta)) { |
| 3318 | printk(KERN_DEBUG "%s: privacy configuration mismatch and " |
| 3319 | "mixed-cell disabled - disassociate\n", dev->name); |
| 3320 | |
| 3321 | ieee80211_send_disassoc(dev, ifsta, WLAN_REASON_UNSPECIFIED); |
| 3322 | ieee80211_set_disassoc(dev, ifsta, 0); |
| 3323 | } |
| 3324 | } |
| 3325 | |
| 3326 | |
| 3327 | static void ieee80211_sta_reset_auth(struct net_device *dev, |
| 3328 | struct ieee80211_if_sta *ifsta) |
| 3329 | { |
| 3330 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); |
| 3331 | |
| 3332 | if (local->ops->reset_tsf) { |
| 3333 | /* Reset own TSF to allow time synchronization work. */ |
| 3334 | local->ops->reset_tsf(local_to_hw(local)); |
| 3335 | } |
| 3336 | |
| 3337 | ifsta->wmm_last_param_set = -1; /* allow any WMM update */ |
| 3338 | |
| 3339 | |
| 3340 | if (ifsta->auth_algs & IEEE80211_AUTH_ALG_OPEN) |
| 3341 | ifsta->auth_alg = WLAN_AUTH_OPEN; |
| 3342 | else if (ifsta->auth_algs & IEEE80211_AUTH_ALG_SHARED_KEY) |
| 3343 | ifsta->auth_alg = WLAN_AUTH_SHARED_KEY; |
| 3344 | else if (ifsta->auth_algs & IEEE80211_AUTH_ALG_LEAP) |
| 3345 | ifsta->auth_alg = WLAN_AUTH_LEAP; |
| 3346 | else |
| 3347 | ifsta->auth_alg = WLAN_AUTH_OPEN; |
| 3348 | printk(KERN_DEBUG "%s: Initial auth_alg=%d\n", dev->name, |
| 3349 | ifsta->auth_alg); |
| 3350 | ifsta->auth_transaction = -1; |
Jiri Slaby | d6f2da5 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 3351 | ifsta->flags &= ~IEEE80211_STA_ASSOCIATED; |
| 3352 | ifsta->auth_tries = ifsta->assoc_tries = 0; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3353 | netif_carrier_off(dev); |
| 3354 | } |
| 3355 | |
| 3356 | |
| 3357 | void ieee80211_sta_req_auth(struct net_device *dev, |
| 3358 | struct ieee80211_if_sta *ifsta) |
| 3359 | { |
| 3360 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); |
| 3361 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 3362 | |
Johannes Berg | 51fb61e | 2007-12-19 01:31:27 +0100 | [diff] [blame] | 3363 | if (sdata->vif.type != IEEE80211_IF_TYPE_STA) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3364 | return; |
| 3365 | |
Jiri Slaby | d6f2da5 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 3366 | if ((ifsta->flags & (IEEE80211_STA_BSSID_SET | |
| 3367 | IEEE80211_STA_AUTO_BSSID_SEL)) && |
| 3368 | (ifsta->flags & (IEEE80211_STA_SSID_SET | |
| 3369 | IEEE80211_STA_AUTO_SSID_SEL))) { |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3370 | set_bit(IEEE80211_STA_REQ_AUTH, &ifsta->request); |
| 3371 | queue_work(local->hw.workqueue, &ifsta->work); |
| 3372 | } |
| 3373 | } |
| 3374 | |
| 3375 | static int ieee80211_sta_match_ssid(struct ieee80211_if_sta *ifsta, |
| 3376 | const char *ssid, int ssid_len) |
| 3377 | { |
| 3378 | int tmp, hidden_ssid; |
| 3379 | |
Michael Wu | 4822570 | 2007-10-19 17:14:36 -0400 | [diff] [blame] | 3380 | if (ssid_len == ifsta->ssid_len && |
| 3381 | !memcmp(ifsta->ssid, ssid, ssid_len)) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3382 | return 1; |
| 3383 | |
Jiri Slaby | d6f2da5 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 3384 | if (ifsta->flags & IEEE80211_STA_AUTO_BSSID_SEL) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3385 | return 0; |
| 3386 | |
| 3387 | hidden_ssid = 1; |
| 3388 | tmp = ssid_len; |
| 3389 | while (tmp--) { |
| 3390 | if (ssid[tmp] != '\0') { |
| 3391 | hidden_ssid = 0; |
| 3392 | break; |
| 3393 | } |
| 3394 | } |
| 3395 | |
| 3396 | if (hidden_ssid && ifsta->ssid_len == ssid_len) |
| 3397 | return 1; |
| 3398 | |
| 3399 | if (ssid_len == 1 && ssid[0] == ' ') |
| 3400 | return 1; |
| 3401 | |
| 3402 | return 0; |
| 3403 | } |
| 3404 | |
| 3405 | static int ieee80211_sta_config_auth(struct net_device *dev, |
| 3406 | struct ieee80211_if_sta *ifsta) |
| 3407 | { |
| 3408 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); |
| 3409 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 3410 | struct ieee80211_sta_bss *bss, *selected = NULL; |
| 3411 | int top_rssi = 0, freq; |
| 3412 | |
Jiri Slaby | d6f2da5 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 3413 | if (!(ifsta->flags & (IEEE80211_STA_AUTO_SSID_SEL | |
| 3414 | IEEE80211_STA_AUTO_BSSID_SEL | IEEE80211_STA_AUTO_CHANNEL_SEL))) { |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3415 | ifsta->state = IEEE80211_AUTHENTICATE; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3416 | ieee80211_sta_reset_auth(dev, ifsta); |
| 3417 | return 0; |
| 3418 | } |
| 3419 | |
| 3420 | spin_lock_bh(&local->sta_bss_lock); |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 3421 | freq = local->oper_channel->center_freq; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3422 | list_for_each_entry(bss, &local->sta_bss_list, list) { |
| 3423 | if (!(bss->capability & WLAN_CAPABILITY_ESS)) |
| 3424 | continue; |
| 3425 | |
| 3426 | if (!!(bss->capability & WLAN_CAPABILITY_PRIVACY) ^ |
| 3427 | !!sdata->default_key) |
| 3428 | continue; |
| 3429 | |
Jiri Slaby | d6f2da5 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 3430 | if (!(ifsta->flags & IEEE80211_STA_AUTO_CHANNEL_SEL) && |
| 3431 | bss->freq != freq) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3432 | continue; |
| 3433 | |
Jiri Slaby | d6f2da5 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 3434 | if (!(ifsta->flags & IEEE80211_STA_AUTO_BSSID_SEL) && |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3435 | memcmp(bss->bssid, ifsta->bssid, ETH_ALEN)) |
| 3436 | continue; |
| 3437 | |
Jiri Slaby | d6f2da5 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 3438 | if (!(ifsta->flags & IEEE80211_STA_AUTO_SSID_SEL) && |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3439 | !ieee80211_sta_match_ssid(ifsta, bss->ssid, bss->ssid_len)) |
| 3440 | continue; |
| 3441 | |
| 3442 | if (!selected || top_rssi < bss->rssi) { |
| 3443 | selected = bss; |
| 3444 | top_rssi = bss->rssi; |
| 3445 | } |
| 3446 | } |
| 3447 | if (selected) |
| 3448 | atomic_inc(&selected->users); |
| 3449 | spin_unlock_bh(&local->sta_bss_lock); |
| 3450 | |
| 3451 | if (selected) { |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 3452 | ieee80211_set_freq(local, selected->freq); |
Jiri Slaby | d6f2da5 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 3453 | if (!(ifsta->flags & IEEE80211_STA_SSID_SET)) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3454 | ieee80211_sta_set_ssid(dev, selected->ssid, |
| 3455 | selected->ssid_len); |
| 3456 | ieee80211_sta_set_bssid(dev, selected->bssid); |
Vladimir Koutny | e2839d8 | 2008-03-18 21:14:07 +0100 | [diff] [blame] | 3457 | ieee80211_sta_def_wmm_params(dev, selected, 0); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3458 | ieee80211_rx_bss_put(dev, selected); |
| 3459 | ifsta->state = IEEE80211_AUTHENTICATE; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3460 | ieee80211_sta_reset_auth(dev, ifsta); |
| 3461 | return 0; |
| 3462 | } else { |
| 3463 | if (ifsta->state != IEEE80211_AUTHENTICATE) { |
Jiri Slaby | d6f2da5 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 3464 | if (ifsta->flags & IEEE80211_STA_AUTO_SSID_SEL) |
John W. Linville | b9bf1e6 | 2007-08-07 16:33:15 -0400 | [diff] [blame] | 3465 | ieee80211_sta_start_scan(dev, NULL, 0); |
| 3466 | else |
| 3467 | ieee80211_sta_start_scan(dev, ifsta->ssid, |
| 3468 | ifsta->ssid_len); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3469 | ifsta->state = IEEE80211_AUTHENTICATE; |
| 3470 | set_bit(IEEE80211_STA_REQ_AUTH, &ifsta->request); |
| 3471 | } else |
| 3472 | ifsta->state = IEEE80211_DISABLED; |
| 3473 | } |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3474 | return -1; |
| 3475 | } |
| 3476 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3477 | |
| 3478 | static int ieee80211_sta_create_ibss(struct net_device *dev, |
| 3479 | struct ieee80211_if_sta *ifsta) |
| 3480 | { |
| 3481 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); |
| 3482 | struct ieee80211_sta_bss *bss; |
John W. Linville | cffdd30 | 2007-10-05 14:23:27 -0400 | [diff] [blame] | 3483 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 3484 | struct ieee80211_supported_band *sband; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3485 | u8 bssid[ETH_ALEN], *pos; |
| 3486 | int i; |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 3487 | DECLARE_MAC_BUF(mac); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3488 | |
| 3489 | #if 0 |
| 3490 | /* Easier testing, use fixed BSSID. */ |
| 3491 | memset(bssid, 0xfe, ETH_ALEN); |
| 3492 | #else |
| 3493 | /* Generate random, not broadcast, locally administered BSSID. Mix in |
| 3494 | * own MAC address to make sure that devices that do not have proper |
| 3495 | * random number generator get different BSSID. */ |
| 3496 | get_random_bytes(bssid, ETH_ALEN); |
| 3497 | for (i = 0; i < ETH_ALEN; i++) |
| 3498 | bssid[i] ^= dev->dev_addr[i]; |
| 3499 | bssid[0] &= ~0x01; |
| 3500 | bssid[0] |= 0x02; |
| 3501 | #endif |
| 3502 | |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 3503 | printk(KERN_DEBUG "%s: Creating new IBSS network, BSSID %s\n", |
| 3504 | dev->name, print_mac(mac, bssid)); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3505 | |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 3506 | bss = ieee80211_rx_bss_add(dev, bssid, |
| 3507 | local->hw.conf.channel->center_freq, |
John W. Linville | cffdd30 | 2007-10-05 14:23:27 -0400 | [diff] [blame] | 3508 | sdata->u.sta.ssid, sdata->u.sta.ssid_len); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3509 | if (!bss) |
| 3510 | return -ENOMEM; |
| 3511 | |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 3512 | bss->band = local->hw.conf.channel->band; |
| 3513 | sband = local->hw.wiphy->bands[bss->band]; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3514 | |
| 3515 | if (local->hw.conf.beacon_int == 0) |
Luis Carlos Cobo | f709fc6 | 2008-02-23 15:17:12 +0100 | [diff] [blame] | 3516 | local->hw.conf.beacon_int = 10000; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3517 | bss->beacon_int = local->hw.conf.beacon_int; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3518 | bss->last_update = jiffies; |
| 3519 | bss->capability = WLAN_CAPABILITY_IBSS; |
| 3520 | if (sdata->default_key) { |
| 3521 | bss->capability |= WLAN_CAPABILITY_PRIVACY; |
| 3522 | } else |
| 3523 | sdata->drop_unencrypted = 0; |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 3524 | bss->supp_rates_len = sband->n_bitrates; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3525 | pos = bss->supp_rates; |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 3526 | for (i = 0; i < sband->n_bitrates; i++) { |
| 3527 | int rate = sband->bitrates[i].bitrate; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3528 | *pos++ = (u8) (rate / 5); |
| 3529 | } |
| 3530 | |
| 3531 | return ieee80211_sta_join_ibss(dev, ifsta, bss); |
| 3532 | } |
| 3533 | |
| 3534 | |
| 3535 | static int ieee80211_sta_find_ibss(struct net_device *dev, |
| 3536 | struct ieee80211_if_sta *ifsta) |
| 3537 | { |
| 3538 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); |
| 3539 | struct ieee80211_sta_bss *bss; |
| 3540 | int found = 0; |
| 3541 | u8 bssid[ETH_ALEN]; |
| 3542 | int active_ibss; |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 3543 | DECLARE_MAC_BUF(mac); |
| 3544 | DECLARE_MAC_BUF(mac2); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3545 | |
| 3546 | if (ifsta->ssid_len == 0) |
| 3547 | return -EINVAL; |
| 3548 | |
| 3549 | active_ibss = ieee80211_sta_active_ibss(dev); |
| 3550 | #ifdef CONFIG_MAC80211_IBSS_DEBUG |
| 3551 | printk(KERN_DEBUG "%s: sta_find_ibss (active_ibss=%d)\n", |
| 3552 | dev->name, active_ibss); |
| 3553 | #endif /* CONFIG_MAC80211_IBSS_DEBUG */ |
| 3554 | spin_lock_bh(&local->sta_bss_lock); |
| 3555 | list_for_each_entry(bss, &local->sta_bss_list, list) { |
| 3556 | if (ifsta->ssid_len != bss->ssid_len || |
| 3557 | memcmp(ifsta->ssid, bss->ssid, bss->ssid_len) != 0 |
| 3558 | || !(bss->capability & WLAN_CAPABILITY_IBSS)) |
| 3559 | continue; |
| 3560 | #ifdef CONFIG_MAC80211_IBSS_DEBUG |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 3561 | printk(KERN_DEBUG " bssid=%s found\n", |
| 3562 | print_mac(mac, bss->bssid)); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3563 | #endif /* CONFIG_MAC80211_IBSS_DEBUG */ |
| 3564 | memcpy(bssid, bss->bssid, ETH_ALEN); |
| 3565 | found = 1; |
| 3566 | if (active_ibss || memcmp(bssid, ifsta->bssid, ETH_ALEN) != 0) |
| 3567 | break; |
| 3568 | } |
| 3569 | spin_unlock_bh(&local->sta_bss_lock); |
| 3570 | |
| 3571 | #ifdef CONFIG_MAC80211_IBSS_DEBUG |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 3572 | printk(KERN_DEBUG " sta_find_ibss: selected %s current " |
| 3573 | "%s\n", print_mac(mac, bssid), print_mac(mac2, ifsta->bssid)); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3574 | #endif /* CONFIG_MAC80211_IBSS_DEBUG */ |
| 3575 | if (found && memcmp(ifsta->bssid, bssid, ETH_ALEN) != 0 && |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 3576 | (bss = ieee80211_rx_bss_get(dev, bssid, |
| 3577 | local->hw.conf.channel->center_freq, |
John W. Linville | cffdd30 | 2007-10-05 14:23:27 -0400 | [diff] [blame] | 3578 | ifsta->ssid, ifsta->ssid_len))) { |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 3579 | printk(KERN_DEBUG "%s: Selected IBSS BSSID %s" |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3580 | " based on configured SSID\n", |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 3581 | dev->name, print_mac(mac, bssid)); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3582 | return ieee80211_sta_join_ibss(dev, ifsta, bss); |
| 3583 | } |
| 3584 | #ifdef CONFIG_MAC80211_IBSS_DEBUG |
| 3585 | printk(KERN_DEBUG " did not try to join ibss\n"); |
| 3586 | #endif /* CONFIG_MAC80211_IBSS_DEBUG */ |
| 3587 | |
| 3588 | /* Selected IBSS not found in current scan results - try to scan */ |
| 3589 | if (ifsta->state == IEEE80211_IBSS_JOINED && |
| 3590 | !ieee80211_sta_active_ibss(dev)) { |
| 3591 | mod_timer(&ifsta->timer, jiffies + |
| 3592 | IEEE80211_IBSS_MERGE_INTERVAL); |
| 3593 | } else if (time_after(jiffies, local->last_scan_completed + |
| 3594 | IEEE80211_SCAN_INTERVAL)) { |
| 3595 | printk(KERN_DEBUG "%s: Trigger new scan to find an IBSS to " |
| 3596 | "join\n", dev->name); |
| 3597 | return ieee80211_sta_req_scan(dev, ifsta->ssid, |
| 3598 | ifsta->ssid_len); |
| 3599 | } else if (ifsta->state != IEEE80211_IBSS_JOINED) { |
| 3600 | int interval = IEEE80211_SCAN_INTERVAL; |
| 3601 | |
| 3602 | if (time_after(jiffies, ifsta->ibss_join_req + |
| 3603 | IEEE80211_IBSS_JOIN_TIMEOUT)) { |
Jiri Slaby | d6f2da5 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 3604 | if ((ifsta->flags & IEEE80211_STA_CREATE_IBSS) && |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 3605 | (!(local->oper_channel->flags & |
| 3606 | IEEE80211_CHAN_NO_IBSS))) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3607 | return ieee80211_sta_create_ibss(dev, ifsta); |
Jiri Slaby | d6f2da5 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 3608 | if (ifsta->flags & IEEE80211_STA_CREATE_IBSS) { |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 3609 | printk(KERN_DEBUG "%s: IBSS not allowed on" |
| 3610 | " %d MHz\n", dev->name, |
| 3611 | local->hw.conf.channel->center_freq); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3612 | } |
| 3613 | |
| 3614 | /* No IBSS found - decrease scan interval and continue |
| 3615 | * scanning. */ |
| 3616 | interval = IEEE80211_SCAN_INTERVAL_SLOW; |
| 3617 | } |
| 3618 | |
| 3619 | ifsta->state = IEEE80211_IBSS_SEARCH; |
| 3620 | mod_timer(&ifsta->timer, jiffies + interval); |
| 3621 | return 0; |
| 3622 | } |
| 3623 | |
| 3624 | return 0; |
| 3625 | } |
| 3626 | |
| 3627 | |
| 3628 | int ieee80211_sta_set_ssid(struct net_device *dev, char *ssid, size_t len) |
| 3629 | { |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 3630 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3631 | struct ieee80211_if_sta *ifsta; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3632 | |
| 3633 | if (len > IEEE80211_MAX_SSID_LEN) |
| 3634 | return -EINVAL; |
| 3635 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3636 | ifsta = &sdata->u.sta; |
| 3637 | |
| 3638 | if (ifsta->ssid_len != len || memcmp(ifsta->ssid, ssid, len) != 0) |
Jiri Slaby | d6f2da5 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 3639 | ifsta->flags &= ~IEEE80211_STA_PREV_BSSID_SET; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3640 | memcpy(ifsta->ssid, ssid, len); |
| 3641 | memset(ifsta->ssid + len, 0, IEEE80211_MAX_SSID_LEN - len); |
| 3642 | ifsta->ssid_len = len; |
| 3643 | |
Jiri Slaby | d6f2da5 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 3644 | if (len) |
| 3645 | ifsta->flags |= IEEE80211_STA_SSID_SET; |
| 3646 | else |
| 3647 | ifsta->flags &= ~IEEE80211_STA_SSID_SET; |
Johannes Berg | 51fb61e | 2007-12-19 01:31:27 +0100 | [diff] [blame] | 3648 | if (sdata->vif.type == IEEE80211_IF_TYPE_IBSS && |
Jiri Slaby | d6f2da5 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 3649 | !(ifsta->flags & IEEE80211_STA_BSSID_SET)) { |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3650 | ifsta->ibss_join_req = jiffies; |
| 3651 | ifsta->state = IEEE80211_IBSS_SEARCH; |
| 3652 | return ieee80211_sta_find_ibss(dev, ifsta); |
| 3653 | } |
| 3654 | return 0; |
| 3655 | } |
| 3656 | |
| 3657 | |
| 3658 | int ieee80211_sta_get_ssid(struct net_device *dev, char *ssid, size_t *len) |
| 3659 | { |
| 3660 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 3661 | struct ieee80211_if_sta *ifsta = &sdata->u.sta; |
| 3662 | memcpy(ssid, ifsta->ssid, ifsta->ssid_len); |
| 3663 | *len = ifsta->ssid_len; |
| 3664 | return 0; |
| 3665 | } |
| 3666 | |
| 3667 | |
| 3668 | int ieee80211_sta_set_bssid(struct net_device *dev, u8 *bssid) |
| 3669 | { |
| 3670 | struct ieee80211_sub_if_data *sdata; |
| 3671 | struct ieee80211_if_sta *ifsta; |
| 3672 | int res; |
| 3673 | |
| 3674 | sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 3675 | ifsta = &sdata->u.sta; |
| 3676 | |
| 3677 | if (memcmp(ifsta->bssid, bssid, ETH_ALEN) != 0) { |
| 3678 | memcpy(ifsta->bssid, bssid, ETH_ALEN); |
| 3679 | res = ieee80211_if_config(dev); |
| 3680 | if (res) { |
| 3681 | printk(KERN_DEBUG "%s: Failed to config new BSSID to " |
| 3682 | "the low-level driver\n", dev->name); |
| 3683 | return res; |
| 3684 | } |
| 3685 | } |
| 3686 | |
Jiri Slaby | d6f2da5 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 3687 | if (is_valid_ether_addr(bssid)) |
| 3688 | ifsta->flags |= IEEE80211_STA_BSSID_SET; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3689 | else |
Jiri Slaby | d6f2da5 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 3690 | ifsta->flags &= ~IEEE80211_STA_BSSID_SET; |
| 3691 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3692 | return 0; |
| 3693 | } |
| 3694 | |
| 3695 | |
| 3696 | static void ieee80211_send_nullfunc(struct ieee80211_local *local, |
| 3697 | struct ieee80211_sub_if_data *sdata, |
| 3698 | int powersave) |
| 3699 | { |
| 3700 | struct sk_buff *skb; |
| 3701 | struct ieee80211_hdr *nullfunc; |
| 3702 | u16 fc; |
| 3703 | |
| 3704 | skb = dev_alloc_skb(local->hw.extra_tx_headroom + 24); |
| 3705 | if (!skb) { |
| 3706 | printk(KERN_DEBUG "%s: failed to allocate buffer for nullfunc " |
| 3707 | "frame\n", sdata->dev->name); |
| 3708 | return; |
| 3709 | } |
| 3710 | skb_reserve(skb, local->hw.extra_tx_headroom); |
| 3711 | |
| 3712 | nullfunc = (struct ieee80211_hdr *) skb_put(skb, 24); |
| 3713 | memset(nullfunc, 0, 24); |
| 3714 | fc = IEEE80211_FTYPE_DATA | IEEE80211_STYPE_NULLFUNC | |
| 3715 | IEEE80211_FCTL_TODS; |
| 3716 | if (powersave) |
| 3717 | fc |= IEEE80211_FCTL_PM; |
| 3718 | nullfunc->frame_control = cpu_to_le16(fc); |
| 3719 | memcpy(nullfunc->addr1, sdata->u.sta.bssid, ETH_ALEN); |
| 3720 | memcpy(nullfunc->addr2, sdata->dev->dev_addr, ETH_ALEN); |
| 3721 | memcpy(nullfunc->addr3, sdata->u.sta.bssid, ETH_ALEN); |
| 3722 | |
| 3723 | ieee80211_sta_tx(sdata->dev, skb, 0); |
| 3724 | } |
| 3725 | |
| 3726 | |
Johannes Berg | 69d3b6f | 2008-03-05 10:58:40 +0100 | [diff] [blame] | 3727 | static void ieee80211_restart_sta_timer(struct ieee80211_sub_if_data *sdata) |
| 3728 | { |
| 3729 | if (sdata->vif.type == IEEE80211_IF_TYPE_STA || |
| 3730 | ieee80211_vif_is_mesh(&sdata->vif)) |
| 3731 | ieee80211_sta_timer((unsigned long)sdata); |
| 3732 | } |
| 3733 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3734 | void ieee80211_scan_completed(struct ieee80211_hw *hw) |
| 3735 | { |
| 3736 | struct ieee80211_local *local = hw_to_local(hw); |
| 3737 | struct net_device *dev = local->scan_dev; |
| 3738 | struct ieee80211_sub_if_data *sdata; |
| 3739 | union iwreq_data wrqu; |
| 3740 | |
| 3741 | local->last_scan_completed = jiffies; |
Zhu Yi | ece8edd | 2007-11-22 10:53:21 +0800 | [diff] [blame] | 3742 | memset(&wrqu, 0, sizeof(wrqu)); |
| 3743 | wireless_send_event(dev, SIOCGIWSCAN, &wrqu, NULL); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3744 | |
Zhu Yi | ece8edd | 2007-11-22 10:53:21 +0800 | [diff] [blame] | 3745 | if (local->sta_hw_scanning) { |
| 3746 | local->sta_hw_scanning = 0; |
Mohamed Abbas | 675ef58 | 2008-03-20 08:14:29 -0700 | [diff] [blame] | 3747 | if (ieee80211_hw_config(local)) |
| 3748 | printk(KERN_DEBUG "%s: failed to restore operational " |
| 3749 | "channel after scan\n", dev->name); |
Johannes Berg | 69d3b6f | 2008-03-05 10:58:40 +0100 | [diff] [blame] | 3750 | /* Restart STA timer for HW scan case */ |
| 3751 | rcu_read_lock(); |
| 3752 | list_for_each_entry_rcu(sdata, &local->interfaces, list) |
| 3753 | ieee80211_restart_sta_timer(sdata); |
| 3754 | rcu_read_unlock(); |
| 3755 | |
Zhu Yi | ece8edd | 2007-11-22 10:53:21 +0800 | [diff] [blame] | 3756 | goto done; |
| 3757 | } |
| 3758 | |
| 3759 | local->sta_sw_scanning = 0; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3760 | if (ieee80211_hw_config(local)) |
Bruno Randolf | 4b50e38 | 2007-11-16 17:04:01 +0900 | [diff] [blame] | 3761 | printk(KERN_DEBUG "%s: failed to restore operational " |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3762 | "channel after scan\n", dev->name); |
| 3763 | |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 3764 | |
| 3765 | netif_tx_lock_bh(local->mdev); |
| 3766 | local->filter_flags &= ~FIF_BCN_PRBRESP_PROMISC; |
| 3767 | local->ops->configure_filter(local_to_hw(local), |
| 3768 | FIF_BCN_PRBRESP_PROMISC, |
| 3769 | &local->filter_flags, |
| 3770 | local->mdev->mc_count, |
| 3771 | local->mdev->mc_list); |
| 3772 | |
| 3773 | netif_tx_unlock_bh(local->mdev); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3774 | |
Johannes Berg | 7901042 | 2007-09-18 17:29:21 -0400 | [diff] [blame] | 3775 | rcu_read_lock(); |
| 3776 | list_for_each_entry_rcu(sdata, &local->interfaces, list) { |
Mattias Nissler | 14042cbe | 2007-06-08 15:31:13 +0200 | [diff] [blame] | 3777 | |
| 3778 | /* No need to wake the master device. */ |
| 3779 | if (sdata->dev == local->mdev) |
| 3780 | continue; |
| 3781 | |
Johannes Berg | 69d3b6f | 2008-03-05 10:58:40 +0100 | [diff] [blame] | 3782 | /* Tell AP we're back */ |
| 3783 | if (sdata->vif.type == IEEE80211_IF_TYPE_STA && |
| 3784 | sdata->u.sta.flags & IEEE80211_STA_ASSOCIATED) |
| 3785 | ieee80211_send_nullfunc(local, sdata, 0); |
Mattias Nissler | 14042cbe | 2007-06-08 15:31:13 +0200 | [diff] [blame] | 3786 | |
Johannes Berg | 69d3b6f | 2008-03-05 10:58:40 +0100 | [diff] [blame] | 3787 | ieee80211_restart_sta_timer(sdata); |
Luis Carlos Cobo | f709fc6 | 2008-02-23 15:17:12 +0100 | [diff] [blame] | 3788 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3789 | netif_wake_queue(sdata->dev); |
| 3790 | } |
Johannes Berg | 7901042 | 2007-09-18 17:29:21 -0400 | [diff] [blame] | 3791 | rcu_read_unlock(); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3792 | |
Zhu Yi | ece8edd | 2007-11-22 10:53:21 +0800 | [diff] [blame] | 3793 | done: |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3794 | sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
Johannes Berg | 51fb61e | 2007-12-19 01:31:27 +0100 | [diff] [blame] | 3795 | if (sdata->vif.type == IEEE80211_IF_TYPE_IBSS) { |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3796 | struct ieee80211_if_sta *ifsta = &sdata->u.sta; |
Jiri Slaby | d6f2da5 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 3797 | if (!(ifsta->flags & IEEE80211_STA_BSSID_SET) || |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3798 | (!ifsta->state == IEEE80211_IBSS_JOINED && |
| 3799 | !ieee80211_sta_active_ibss(dev))) |
| 3800 | ieee80211_sta_find_ibss(dev, ifsta); |
| 3801 | } |
| 3802 | } |
| 3803 | EXPORT_SYMBOL(ieee80211_scan_completed); |
| 3804 | |
| 3805 | void ieee80211_sta_scan_work(struct work_struct *work) |
| 3806 | { |
| 3807 | struct ieee80211_local *local = |
| 3808 | container_of(work, struct ieee80211_local, scan_work.work); |
| 3809 | struct net_device *dev = local->scan_dev; |
| 3810 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 3811 | struct ieee80211_supported_band *sband; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3812 | struct ieee80211_channel *chan; |
| 3813 | int skip; |
| 3814 | unsigned long next_delay = 0; |
| 3815 | |
Zhu Yi | ece8edd | 2007-11-22 10:53:21 +0800 | [diff] [blame] | 3816 | if (!local->sta_sw_scanning) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3817 | return; |
| 3818 | |
| 3819 | switch (local->scan_state) { |
| 3820 | case SCAN_SET_CHANNEL: |
Johannes Berg | 69d464d | 2008-01-28 17:08:56 +0100 | [diff] [blame] | 3821 | /* |
| 3822 | * Get current scan band. scan_band may be IEEE80211_NUM_BANDS |
| 3823 | * after we successfully scanned the last channel of the last |
| 3824 | * band (and the last band is supported by the hw) |
| 3825 | */ |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 3826 | if (local->scan_band < IEEE80211_NUM_BANDS) |
| 3827 | sband = local->hw.wiphy->bands[local->scan_band]; |
| 3828 | else |
| 3829 | sband = NULL; |
| 3830 | |
Johannes Berg | 69d464d | 2008-01-28 17:08:56 +0100 | [diff] [blame] | 3831 | /* |
| 3832 | * If we are at an unsupported band and have more bands |
| 3833 | * left to scan, advance to the next supported one. |
| 3834 | */ |
| 3835 | while (!sband && local->scan_band < IEEE80211_NUM_BANDS - 1) { |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 3836 | local->scan_band++; |
| 3837 | sband = local->hw.wiphy->bands[local->scan_band]; |
| 3838 | local->scan_channel_idx = 0; |
| 3839 | } |
| 3840 | |
Johannes Berg | 69d464d | 2008-01-28 17:08:56 +0100 | [diff] [blame] | 3841 | /* if no more bands/channels left, complete scan */ |
| 3842 | if (!sband || local->scan_channel_idx >= sband->n_channels) { |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3843 | ieee80211_scan_completed(local_to_hw(local)); |
| 3844 | return; |
| 3845 | } |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 3846 | skip = 0; |
| 3847 | chan = &sband->channels[local->scan_channel_idx]; |
| 3848 | |
| 3849 | if (chan->flags & IEEE80211_CHAN_DISABLED || |
Johannes Berg | 51fb61e | 2007-12-19 01:31:27 +0100 | [diff] [blame] | 3850 | (sdata->vif.type == IEEE80211_IF_TYPE_IBSS && |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 3851 | chan->flags & IEEE80211_CHAN_NO_IBSS)) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3852 | skip = 1; |
| 3853 | |
| 3854 | if (!skip) { |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3855 | local->scan_channel = chan; |
| 3856 | if (ieee80211_hw_config(local)) { |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 3857 | printk(KERN_DEBUG "%s: failed to set freq to " |
| 3858 | "%d MHz for scan\n", dev->name, |
| 3859 | chan->center_freq); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3860 | skip = 1; |
| 3861 | } |
| 3862 | } |
| 3863 | |
Johannes Berg | 69d464d | 2008-01-28 17:08:56 +0100 | [diff] [blame] | 3864 | /* advance state machine to next channel/band */ |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3865 | local->scan_channel_idx++; |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 3866 | if (local->scan_channel_idx >= sband->n_channels) { |
Johannes Berg | 69d464d | 2008-01-28 17:08:56 +0100 | [diff] [blame] | 3867 | /* |
| 3868 | * scan_band may end up == IEEE80211_NUM_BANDS, but |
| 3869 | * we'll catch that case above and complete the scan |
| 3870 | * if that is the case. |
| 3871 | */ |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 3872 | local->scan_band++; |
| 3873 | local->scan_channel_idx = 0; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3874 | } |
| 3875 | |
| 3876 | if (skip) |
| 3877 | break; |
| 3878 | |
| 3879 | next_delay = IEEE80211_PROBE_DELAY + |
| 3880 | usecs_to_jiffies(local->hw.channel_change_time); |
| 3881 | local->scan_state = SCAN_SEND_PROBE; |
| 3882 | break; |
| 3883 | case SCAN_SEND_PROBE: |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 3884 | next_delay = IEEE80211_PASSIVE_CHANNEL_TIME; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3885 | local->scan_state = SCAN_SET_CHANNEL; |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 3886 | |
| 3887 | if (local->scan_channel->flags & IEEE80211_CHAN_PASSIVE_SCAN) |
| 3888 | break; |
| 3889 | ieee80211_send_probe_req(dev, NULL, local->scan_ssid, |
| 3890 | local->scan_ssid_len); |
| 3891 | next_delay = IEEE80211_CHANNEL_TIME; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3892 | break; |
| 3893 | } |
| 3894 | |
Zhu Yi | ece8edd | 2007-11-22 10:53:21 +0800 | [diff] [blame] | 3895 | if (local->sta_sw_scanning) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3896 | queue_delayed_work(local->hw.workqueue, &local->scan_work, |
| 3897 | next_delay); |
| 3898 | } |
| 3899 | |
| 3900 | |
| 3901 | static int ieee80211_sta_start_scan(struct net_device *dev, |
| 3902 | u8 *ssid, size_t ssid_len) |
| 3903 | { |
| 3904 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); |
| 3905 | struct ieee80211_sub_if_data *sdata; |
| 3906 | |
| 3907 | if (ssid_len > IEEE80211_MAX_SSID_LEN) |
| 3908 | return -EINVAL; |
| 3909 | |
| 3910 | /* MLME-SCAN.request (page 118) page 144 (11.1.3.1) |
| 3911 | * BSSType: INFRASTRUCTURE, INDEPENDENT, ANY_BSS |
| 3912 | * BSSID: MACAddress |
| 3913 | * SSID |
| 3914 | * ScanType: ACTIVE, PASSIVE |
| 3915 | * ProbeDelay: delay (in microseconds) to be used prior to transmitting |
| 3916 | * a Probe frame during active scanning |
| 3917 | * ChannelList |
| 3918 | * MinChannelTime (>= ProbeDelay), in TU |
| 3919 | * MaxChannelTime: (>= MinChannelTime), in TU |
| 3920 | */ |
| 3921 | |
| 3922 | /* MLME-SCAN.confirm |
| 3923 | * BSSDescriptionSet |
| 3924 | * ResultCode: SUCCESS, INVALID_PARAMETERS |
| 3925 | */ |
| 3926 | |
Zhu Yi | ece8edd | 2007-11-22 10:53:21 +0800 | [diff] [blame] | 3927 | if (local->sta_sw_scanning || local->sta_hw_scanning) { |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3928 | if (local->scan_dev == dev) |
| 3929 | return 0; |
| 3930 | return -EBUSY; |
| 3931 | } |
| 3932 | |
| 3933 | if (local->ops->hw_scan) { |
| 3934 | int rc = local->ops->hw_scan(local_to_hw(local), |
Zhu Yi | ece8edd | 2007-11-22 10:53:21 +0800 | [diff] [blame] | 3935 | ssid, ssid_len); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3936 | if (!rc) { |
Zhu Yi | ece8edd | 2007-11-22 10:53:21 +0800 | [diff] [blame] | 3937 | local->sta_hw_scanning = 1; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3938 | local->scan_dev = dev; |
| 3939 | } |
| 3940 | return rc; |
| 3941 | } |
| 3942 | |
Zhu Yi | ece8edd | 2007-11-22 10:53:21 +0800 | [diff] [blame] | 3943 | local->sta_sw_scanning = 1; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3944 | |
Johannes Berg | 7901042 | 2007-09-18 17:29:21 -0400 | [diff] [blame] | 3945 | rcu_read_lock(); |
| 3946 | list_for_each_entry_rcu(sdata, &local->interfaces, list) { |
Mattias Nissler | 14042cbe | 2007-06-08 15:31:13 +0200 | [diff] [blame] | 3947 | |
| 3948 | /* Don't stop the master interface, otherwise we can't transmit |
| 3949 | * probes! */ |
| 3950 | if (sdata->dev == local->mdev) |
| 3951 | continue; |
| 3952 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3953 | netif_stop_queue(sdata->dev); |
Johannes Berg | 51fb61e | 2007-12-19 01:31:27 +0100 | [diff] [blame] | 3954 | if (sdata->vif.type == IEEE80211_IF_TYPE_STA && |
Jiri Slaby | d6f2da5 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 3955 | (sdata->u.sta.flags & IEEE80211_STA_ASSOCIATED)) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3956 | ieee80211_send_nullfunc(local, sdata, 1); |
| 3957 | } |
Johannes Berg | 7901042 | 2007-09-18 17:29:21 -0400 | [diff] [blame] | 3958 | rcu_read_unlock(); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3959 | |
| 3960 | if (ssid) { |
| 3961 | local->scan_ssid_len = ssid_len; |
| 3962 | memcpy(local->scan_ssid, ssid, ssid_len); |
| 3963 | } else |
| 3964 | local->scan_ssid_len = 0; |
| 3965 | local->scan_state = SCAN_SET_CHANNEL; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3966 | local->scan_channel_idx = 0; |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 3967 | local->scan_band = IEEE80211_BAND_2GHZ; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3968 | local->scan_dev = dev; |
| 3969 | |
Johannes Berg | 4150c57 | 2007-09-17 01:29:23 -0400 | [diff] [blame] | 3970 | netif_tx_lock_bh(local->mdev); |
| 3971 | local->filter_flags |= FIF_BCN_PRBRESP_PROMISC; |
| 3972 | local->ops->configure_filter(local_to_hw(local), |
| 3973 | FIF_BCN_PRBRESP_PROMISC, |
| 3974 | &local->filter_flags, |
| 3975 | local->mdev->mc_count, |
| 3976 | local->mdev->mc_list); |
| 3977 | netif_tx_unlock_bh(local->mdev); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3978 | |
| 3979 | /* TODO: start scan as soon as all nullfunc frames are ACKed */ |
| 3980 | queue_delayed_work(local->hw.workqueue, &local->scan_work, |
| 3981 | IEEE80211_CHANNEL_TIME); |
| 3982 | |
| 3983 | return 0; |
| 3984 | } |
| 3985 | |
| 3986 | |
| 3987 | int ieee80211_sta_req_scan(struct net_device *dev, u8 *ssid, size_t ssid_len) |
| 3988 | { |
| 3989 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 3990 | struct ieee80211_if_sta *ifsta = &sdata->u.sta; |
| 3991 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); |
| 3992 | |
Johannes Berg | 51fb61e | 2007-12-19 01:31:27 +0100 | [diff] [blame] | 3993 | if (sdata->vif.type != IEEE80211_IF_TYPE_STA) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3994 | return ieee80211_sta_start_scan(dev, ssid, ssid_len); |
| 3995 | |
Zhu Yi | ece8edd | 2007-11-22 10:53:21 +0800 | [diff] [blame] | 3996 | if (local->sta_sw_scanning || local->sta_hw_scanning) { |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 3997 | if (local->scan_dev == dev) |
| 3998 | return 0; |
| 3999 | return -EBUSY; |
| 4000 | } |
| 4001 | |
Helmut Schaa | a0af5f1 | 2007-11-09 16:25:08 +0100 | [diff] [blame] | 4002 | ifsta->scan_ssid_len = ssid_len; |
| 4003 | if (ssid_len) |
| 4004 | memcpy(ifsta->scan_ssid, ssid, ssid_len); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 4005 | set_bit(IEEE80211_STA_REQ_SCAN, &ifsta->request); |
| 4006 | queue_work(local->hw.workqueue, &ifsta->work); |
| 4007 | return 0; |
| 4008 | } |
| 4009 | |
| 4010 | static char * |
| 4011 | ieee80211_sta_scan_result(struct net_device *dev, |
| 4012 | struct ieee80211_sta_bss *bss, |
| 4013 | char *current_ev, char *end_buf) |
| 4014 | { |
| 4015 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); |
| 4016 | struct iw_event iwe; |
| 4017 | |
| 4018 | if (time_after(jiffies, |
| 4019 | bss->last_update + IEEE80211_SCAN_RESULT_EXPIRE)) |
| 4020 | return current_ev; |
| 4021 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 4022 | memset(&iwe, 0, sizeof(iwe)); |
| 4023 | iwe.cmd = SIOCGIWAP; |
| 4024 | iwe.u.ap_addr.sa_family = ARPHRD_ETHER; |
| 4025 | memcpy(iwe.u.ap_addr.sa_data, bss->bssid, ETH_ALEN); |
| 4026 | current_ev = iwe_stream_add_event(current_ev, end_buf, &iwe, |
| 4027 | IW_EV_ADDR_LEN); |
| 4028 | |
| 4029 | memset(&iwe, 0, sizeof(iwe)); |
| 4030 | iwe.cmd = SIOCGIWESSID; |
Johannes Berg | 902acc7 | 2008-02-23 15:17:19 +0100 | [diff] [blame] | 4031 | if (bss_mesh_cfg(bss)) { |
| 4032 | iwe.u.data.length = bss_mesh_id_len(bss); |
Luis Carlos Cobo | f709fc6 | 2008-02-23 15:17:12 +0100 | [diff] [blame] | 4033 | iwe.u.data.flags = 1; |
| 4034 | current_ev = iwe_stream_add_point(current_ev, end_buf, &iwe, |
Johannes Berg | 902acc7 | 2008-02-23 15:17:19 +0100 | [diff] [blame] | 4035 | bss_mesh_id(bss)); |
Luis Carlos Cobo | f709fc6 | 2008-02-23 15:17:12 +0100 | [diff] [blame] | 4036 | } else { |
| 4037 | iwe.u.data.length = bss->ssid_len; |
| 4038 | iwe.u.data.flags = 1; |
| 4039 | current_ev = iwe_stream_add_point(current_ev, end_buf, &iwe, |
| 4040 | bss->ssid); |
| 4041 | } |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 4042 | |
Luis Carlos Cobo | 1d1b535 | 2008-02-29 12:15:28 -0800 | [diff] [blame] | 4043 | if (bss->capability & (WLAN_CAPABILITY_ESS | WLAN_CAPABILITY_IBSS) |
| 4044 | || bss_mesh_cfg(bss)) { |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 4045 | memset(&iwe, 0, sizeof(iwe)); |
| 4046 | iwe.cmd = SIOCGIWMODE; |
Johannes Berg | 902acc7 | 2008-02-23 15:17:19 +0100 | [diff] [blame] | 4047 | if (bss_mesh_cfg(bss)) |
Luis Carlos Cobo | f709fc6 | 2008-02-23 15:17:12 +0100 | [diff] [blame] | 4048 | iwe.u.mode = IW_MODE_MESH; |
| 4049 | else if (bss->capability & WLAN_CAPABILITY_ESS) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 4050 | iwe.u.mode = IW_MODE_MASTER; |
| 4051 | else |
| 4052 | iwe.u.mode = IW_MODE_ADHOC; |
| 4053 | current_ev = iwe_stream_add_event(current_ev, end_buf, &iwe, |
| 4054 | IW_EV_UINT_LEN); |
| 4055 | } |
| 4056 | |
| 4057 | memset(&iwe, 0, sizeof(iwe)); |
| 4058 | iwe.cmd = SIOCGIWFREQ; |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 4059 | iwe.u.freq.m = bss->freq; |
| 4060 | iwe.u.freq.e = 6; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 4061 | current_ev = iwe_stream_add_event(current_ev, end_buf, &iwe, |
| 4062 | IW_EV_FREQ_LEN); |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 4063 | |
| 4064 | memset(&iwe, 0, sizeof(iwe)); |
| 4065 | iwe.cmd = SIOCGIWFREQ; |
| 4066 | iwe.u.freq.m = ieee80211_frequency_to_channel(bss->freq); |
| 4067 | iwe.u.freq.e = 0; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 4068 | current_ev = iwe_stream_add_event(current_ev, end_buf, &iwe, |
| 4069 | IW_EV_FREQ_LEN); |
| 4070 | |
| 4071 | memset(&iwe, 0, sizeof(iwe)); |
| 4072 | iwe.cmd = IWEVQUAL; |
| 4073 | iwe.u.qual.qual = bss->signal; |
| 4074 | iwe.u.qual.level = bss->rssi; |
| 4075 | iwe.u.qual.noise = bss->noise; |
| 4076 | iwe.u.qual.updated = local->wstats_flags; |
| 4077 | current_ev = iwe_stream_add_event(current_ev, end_buf, &iwe, |
| 4078 | IW_EV_QUAL_LEN); |
| 4079 | |
| 4080 | memset(&iwe, 0, sizeof(iwe)); |
| 4081 | iwe.cmd = SIOCGIWENCODE; |
| 4082 | if (bss->capability & WLAN_CAPABILITY_PRIVACY) |
| 4083 | iwe.u.data.flags = IW_ENCODE_ENABLED | IW_ENCODE_NOKEY; |
| 4084 | else |
| 4085 | iwe.u.data.flags = IW_ENCODE_DISABLED; |
| 4086 | iwe.u.data.length = 0; |
| 4087 | current_ev = iwe_stream_add_point(current_ev, end_buf, &iwe, ""); |
| 4088 | |
| 4089 | if (bss && bss->wpa_ie) { |
| 4090 | memset(&iwe, 0, sizeof(iwe)); |
| 4091 | iwe.cmd = IWEVGENIE; |
| 4092 | iwe.u.data.length = bss->wpa_ie_len; |
| 4093 | current_ev = iwe_stream_add_point(current_ev, end_buf, &iwe, |
| 4094 | bss->wpa_ie); |
| 4095 | } |
| 4096 | |
| 4097 | if (bss && bss->rsn_ie) { |
| 4098 | memset(&iwe, 0, sizeof(iwe)); |
| 4099 | iwe.cmd = IWEVGENIE; |
| 4100 | iwe.u.data.length = bss->rsn_ie_len; |
| 4101 | current_ev = iwe_stream_add_point(current_ev, end_buf, &iwe, |
| 4102 | bss->rsn_ie); |
| 4103 | } |
| 4104 | |
| 4105 | if (bss && bss->supp_rates_len > 0) { |
| 4106 | /* display all supported rates in readable format */ |
| 4107 | char *p = current_ev + IW_EV_LCP_LEN; |
| 4108 | int i; |
| 4109 | |
| 4110 | memset(&iwe, 0, sizeof(iwe)); |
| 4111 | iwe.cmd = SIOCGIWRATE; |
| 4112 | /* Those two flags are ignored... */ |
| 4113 | iwe.u.bitrate.fixed = iwe.u.bitrate.disabled = 0; |
| 4114 | |
| 4115 | for (i = 0; i < bss->supp_rates_len; i++) { |
| 4116 | iwe.u.bitrate.value = ((bss->supp_rates[i] & |
| 4117 | 0x7f) * 500000); |
| 4118 | p = iwe_stream_add_value(current_ev, p, |
| 4119 | end_buf, &iwe, IW_EV_PARAM_LEN); |
| 4120 | } |
| 4121 | current_ev = p; |
| 4122 | } |
| 4123 | |
| 4124 | if (bss) { |
| 4125 | char *buf; |
| 4126 | buf = kmalloc(30, GFP_ATOMIC); |
| 4127 | if (buf) { |
| 4128 | memset(&iwe, 0, sizeof(iwe)); |
| 4129 | iwe.cmd = IWEVCUSTOM; |
| 4130 | sprintf(buf, "tsf=%016llx", (unsigned long long)(bss->timestamp)); |
| 4131 | iwe.u.data.length = strlen(buf); |
| 4132 | current_ev = iwe_stream_add_point(current_ev, end_buf, |
| 4133 | &iwe, buf); |
| 4134 | kfree(buf); |
| 4135 | } |
| 4136 | } |
| 4137 | |
Johannes Berg | 902acc7 | 2008-02-23 15:17:19 +0100 | [diff] [blame] | 4138 | if (bss_mesh_cfg(bss)) { |
Luis Carlos Cobo | f709fc6 | 2008-02-23 15:17:12 +0100 | [diff] [blame] | 4139 | char *buf; |
John W. Linville | 2473670 | 2008-04-08 14:15:46 -0400 | [diff] [blame] | 4140 | u8 *cfg = bss_mesh_cfg(bss); |
Luis Carlos Cobo | 4f5d4c4 | 2008-02-29 12:32:46 -0800 | [diff] [blame] | 4141 | buf = kmalloc(50, GFP_ATOMIC); |
Luis Carlos Cobo | f709fc6 | 2008-02-23 15:17:12 +0100 | [diff] [blame] | 4142 | if (buf) { |
| 4143 | memset(&iwe, 0, sizeof(iwe)); |
| 4144 | iwe.cmd = IWEVCUSTOM; |
John W. Linville | 2473670 | 2008-04-08 14:15:46 -0400 | [diff] [blame] | 4145 | sprintf(buf, "Mesh network (version %d)", cfg[0]); |
Luis Carlos Cobo | 4f5d4c4 | 2008-02-29 12:32:46 -0800 | [diff] [blame] | 4146 | iwe.u.data.length = strlen(buf); |
| 4147 | current_ev = iwe_stream_add_point(current_ev, end_buf, |
| 4148 | &iwe, buf); |
| 4149 | sprintf(buf, "Path Selection Protocol ID: " |
John W. Linville | 2473670 | 2008-04-08 14:15:46 -0400 | [diff] [blame] | 4150 | "0x%02X%02X%02X%02X", cfg[1], cfg[2], cfg[3], |
| 4151 | cfg[4]); |
Luis Carlos Cobo | 4f5d4c4 | 2008-02-29 12:32:46 -0800 | [diff] [blame] | 4152 | iwe.u.data.length = strlen(buf); |
| 4153 | current_ev = iwe_stream_add_point(current_ev, end_buf, |
| 4154 | &iwe, buf); |
| 4155 | sprintf(buf, "Path Selection Metric ID: " |
John W. Linville | 2473670 | 2008-04-08 14:15:46 -0400 | [diff] [blame] | 4156 | "0x%02X%02X%02X%02X", cfg[5], cfg[6], cfg[7], |
| 4157 | cfg[8]); |
Luis Carlos Cobo | 4f5d4c4 | 2008-02-29 12:32:46 -0800 | [diff] [blame] | 4158 | iwe.u.data.length = strlen(buf); |
| 4159 | current_ev = iwe_stream_add_point(current_ev, end_buf, |
| 4160 | &iwe, buf); |
| 4161 | sprintf(buf, "Congestion Control Mode ID: " |
John W. Linville | 2473670 | 2008-04-08 14:15:46 -0400 | [diff] [blame] | 4162 | "0x%02X%02X%02X%02X", cfg[9], cfg[10], |
| 4163 | cfg[11], cfg[12]); |
Luis Carlos Cobo | 4f5d4c4 | 2008-02-29 12:32:46 -0800 | [diff] [blame] | 4164 | iwe.u.data.length = strlen(buf); |
| 4165 | current_ev = iwe_stream_add_point(current_ev, end_buf, |
| 4166 | &iwe, buf); |
| 4167 | sprintf(buf, "Channel Precedence: " |
John W. Linville | 2473670 | 2008-04-08 14:15:46 -0400 | [diff] [blame] | 4168 | "0x%02X%02X%02X%02X", cfg[13], cfg[14], |
| 4169 | cfg[15], cfg[16]); |
Luis Carlos Cobo | f709fc6 | 2008-02-23 15:17:12 +0100 | [diff] [blame] | 4170 | iwe.u.data.length = strlen(buf); |
| 4171 | current_ev = iwe_stream_add_point(current_ev, end_buf, |
| 4172 | &iwe, buf); |
| 4173 | kfree(buf); |
| 4174 | } |
| 4175 | } |
| 4176 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 4177 | return current_ev; |
| 4178 | } |
| 4179 | |
| 4180 | |
| 4181 | int ieee80211_sta_scan_results(struct net_device *dev, char *buf, size_t len) |
| 4182 | { |
| 4183 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); |
| 4184 | char *current_ev = buf; |
| 4185 | char *end_buf = buf + len; |
| 4186 | struct ieee80211_sta_bss *bss; |
| 4187 | |
| 4188 | spin_lock_bh(&local->sta_bss_lock); |
| 4189 | list_for_each_entry(bss, &local->sta_bss_list, list) { |
| 4190 | if (buf + len - current_ev <= IW_EV_ADDR_LEN) { |
| 4191 | spin_unlock_bh(&local->sta_bss_lock); |
| 4192 | return -E2BIG; |
| 4193 | } |
| 4194 | current_ev = ieee80211_sta_scan_result(dev, bss, current_ev, |
| 4195 | end_buf); |
| 4196 | } |
| 4197 | spin_unlock_bh(&local->sta_bss_lock); |
| 4198 | return current_ev - buf; |
| 4199 | } |
| 4200 | |
| 4201 | |
| 4202 | int ieee80211_sta_set_extra_ie(struct net_device *dev, char *ie, size_t len) |
| 4203 | { |
| 4204 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 4205 | struct ieee80211_if_sta *ifsta = &sdata->u.sta; |
| 4206 | kfree(ifsta->extra_ie); |
| 4207 | if (len == 0) { |
| 4208 | ifsta->extra_ie = NULL; |
| 4209 | ifsta->extra_ie_len = 0; |
| 4210 | return 0; |
| 4211 | } |
| 4212 | ifsta->extra_ie = kmalloc(len, GFP_KERNEL); |
| 4213 | if (!ifsta->extra_ie) { |
| 4214 | ifsta->extra_ie_len = 0; |
| 4215 | return -ENOMEM; |
| 4216 | } |
| 4217 | memcpy(ifsta->extra_ie, ie, len); |
| 4218 | ifsta->extra_ie_len = len; |
| 4219 | return 0; |
| 4220 | } |
| 4221 | |
| 4222 | |
| 4223 | struct sta_info * ieee80211_ibss_add_sta(struct net_device *dev, |
| 4224 | struct sk_buff *skb, u8 *bssid, |
| 4225 | u8 *addr) |
| 4226 | { |
| 4227 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); |
| 4228 | struct sta_info *sta; |
John W. Linville | 91fa558 | 2007-05-15 16:14:40 -0400 | [diff] [blame] | 4229 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 4230 | DECLARE_MAC_BUF(mac); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 4231 | |
| 4232 | /* TODO: Could consider removing the least recently used entry and |
| 4233 | * allow new one to be added. */ |
| 4234 | if (local->num_sta >= IEEE80211_IBSS_MAX_STA_ENTRIES) { |
| 4235 | if (net_ratelimit()) { |
| 4236 | printk(KERN_DEBUG "%s: No room for a new IBSS STA " |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 4237 | "entry %s\n", dev->name, print_mac(mac, addr)); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 4238 | } |
| 4239 | return NULL; |
| 4240 | } |
| 4241 | |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 4242 | printk(KERN_DEBUG "%s: Adding new IBSS station %s (dev=%s)\n", |
Johannes Berg | dd1cd4c | 2007-09-18 17:29:20 -0400 | [diff] [blame] | 4243 | wiphy_name(local->hw.wiphy), print_mac(mac, addr), dev->name); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 4244 | |
Johannes Berg | 73651ee | 2008-02-25 16:27:47 +0100 | [diff] [blame] | 4245 | sta = sta_info_alloc(sdata, addr, GFP_ATOMIC); |
| 4246 | if (!sta) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 4247 | return NULL; |
| 4248 | |
Johannes Berg | 238814f | 2008-01-28 17:19:37 +0100 | [diff] [blame] | 4249 | sta->flags |= WLAN_STA_AUTHORIZED; |
| 4250 | |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 4251 | sta->supp_rates[local->hw.conf.channel->band] = |
| 4252 | sdata->u.sta.supp_rates_bits[local->hw.conf.channel->band]; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 4253 | |
| 4254 | rate_control_rate_init(sta, local); |
| 4255 | |
Johannes Berg | 93e5deb | 2008-04-01 15:21:00 +0200 | [diff] [blame] | 4256 | if (sta_info_insert(sta)) |
Johannes Berg | 73651ee | 2008-02-25 16:27:47 +0100 | [diff] [blame] | 4257 | return NULL; |
Johannes Berg | 73651ee | 2008-02-25 16:27:47 +0100 | [diff] [blame] | 4258 | |
Johannes Berg | d0709a6 | 2008-02-25 16:27:46 +0100 | [diff] [blame] | 4259 | return sta; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 4260 | } |
| 4261 | |
| 4262 | |
| 4263 | int ieee80211_sta_deauthenticate(struct net_device *dev, u16 reason) |
| 4264 | { |
| 4265 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 4266 | struct ieee80211_if_sta *ifsta = &sdata->u.sta; |
| 4267 | |
| 4268 | printk(KERN_DEBUG "%s: deauthenticate(reason=%d)\n", |
| 4269 | dev->name, reason); |
| 4270 | |
Johannes Berg | 51fb61e | 2007-12-19 01:31:27 +0100 | [diff] [blame] | 4271 | if (sdata->vif.type != IEEE80211_IF_TYPE_STA && |
| 4272 | sdata->vif.type != IEEE80211_IF_TYPE_IBSS) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 4273 | return -EINVAL; |
| 4274 | |
| 4275 | ieee80211_send_deauth(dev, ifsta, reason); |
| 4276 | ieee80211_set_disassoc(dev, ifsta, 1); |
| 4277 | return 0; |
| 4278 | } |
| 4279 | |
| 4280 | |
| 4281 | int ieee80211_sta_disassociate(struct net_device *dev, u16 reason) |
| 4282 | { |
| 4283 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 4284 | struct ieee80211_if_sta *ifsta = &sdata->u.sta; |
| 4285 | |
| 4286 | printk(KERN_DEBUG "%s: disassociate(reason=%d)\n", |
| 4287 | dev->name, reason); |
| 4288 | |
Johannes Berg | 51fb61e | 2007-12-19 01:31:27 +0100 | [diff] [blame] | 4289 | if (sdata->vif.type != IEEE80211_IF_TYPE_STA) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 4290 | return -EINVAL; |
| 4291 | |
Jiri Slaby | d6f2da5 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 4292 | if (!(ifsta->flags & IEEE80211_STA_ASSOCIATED)) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 4293 | return -1; |
| 4294 | |
| 4295 | ieee80211_send_disassoc(dev, ifsta, reason); |
| 4296 | ieee80211_set_disassoc(dev, ifsta, 0); |
| 4297 | return 0; |
| 4298 | } |
Mohamed Abbas | 84363e6 | 2008-04-04 16:59:58 -0700 | [diff] [blame] | 4299 | |
| 4300 | void ieee80211_notify_mac(struct ieee80211_hw *hw, |
| 4301 | enum ieee80211_notification_types notif_type) |
| 4302 | { |
| 4303 | struct ieee80211_local *local = hw_to_local(hw); |
| 4304 | struct ieee80211_sub_if_data *sdata; |
| 4305 | |
| 4306 | switch (notif_type) { |
| 4307 | case IEEE80211_NOTIFY_RE_ASSOC: |
| 4308 | rcu_read_lock(); |
| 4309 | list_for_each_entry_rcu(sdata, &local->interfaces, list) { |
| 4310 | |
| 4311 | if (sdata->vif.type == IEEE80211_IF_TYPE_STA) { |
| 4312 | ieee80211_sta_req_auth(sdata->dev, |
| 4313 | &sdata->u.sta); |
| 4314 | } |
| 4315 | |
| 4316 | } |
| 4317 | rcu_read_unlock(); |
| 4318 | break; |
| 4319 | } |
| 4320 | } |
| 4321 | EXPORT_SYMBOL(ieee80211_notify_mac); |