blob: dac8bd37dcf5ebe745781222846249bb98a2d01e [file] [log] [blame]
Jiri Bencf0706e82007-05-05 11:45:53 -07001/*
2 * BSS client mode implementation
3 * Copyright 2003, Jouni Malinen <jkmaline@cc.hut.fi>
4 * Copyright 2004, Instant802 Networks, Inc.
5 * Copyright 2005, Devicescape Software, Inc.
6 * Copyright 2006-2007 Jiri Benc <jbenc@suse.cz>
7 * Copyright 2007, Michael Wu <flamingice@sourmilk.net>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 */
13
Geert Uytterhoeven5b323ed2007-05-08 18:40:27 -070014#include <linux/delay.h>
Jiri Bencf0706e82007-05-05 11:45:53 -070015#include <linux/if_ether.h>
16#include <linux/skbuff.h>
Jiri Bencf0706e82007-05-05 11:45:53 -070017#include <linux/if_arp.h>
18#include <linux/wireless.h>
19#include <linux/random.h>
20#include <linux/etherdevice.h>
Johannes Bergd0709a62008-02-25 16:27:46 +010021#include <linux/rtnetlink.h>
Jiri Bencf0706e82007-05-05 11:45:53 -070022#include <net/iw_handler.h>
Jiri Bencf0706e82007-05-05 11:45:53 -070023#include <net/mac80211.h>
Johannes Berg472dbc42008-09-11 00:01:49 +020024#include <asm/unaligned.h>
Johannes Berg60f8b392008-09-08 17:44:22 +020025
Jiri Bencf0706e82007-05-05 11:45:53 -070026#include "ieee80211_i.h"
Johannes Berg2c8dccc2008-04-08 15:14:40 -040027#include "rate.h"
28#include "led.h"
Jiri Bencf0706e82007-05-05 11:45:53 -070029
Ron Rindjunsky6042a3e2008-08-08 01:50:46 +030030#define IEEE80211_ASSOC_SCANS_MAX_TRIES 2
Jiri Bencf0706e82007-05-05 11:45:53 -070031#define IEEE80211_AUTH_TIMEOUT (HZ / 5)
32#define IEEE80211_AUTH_MAX_TRIES 3
33#define IEEE80211_ASSOC_TIMEOUT (HZ / 5)
34#define IEEE80211_ASSOC_MAX_TRIES 3
35#define IEEE80211_MONITORING_INTERVAL (2 * HZ)
36#define IEEE80211_PROBE_INTERVAL (60 * HZ)
37#define IEEE80211_RETRY_AUTH_INTERVAL (1 * HZ)
38#define IEEE80211_SCAN_INTERVAL (2 * HZ)
39#define IEEE80211_SCAN_INTERVAL_SLOW (15 * HZ)
Dan Williams872ba532008-06-04 13:59:34 -040040#define IEEE80211_IBSS_JOIN_TIMEOUT (7 * HZ)
Jiri Bencf0706e82007-05-05 11:45:53 -070041
Jiri Bencf0706e82007-05-05 11:45:53 -070042#define IEEE80211_IBSS_MERGE_INTERVAL (30 * HZ)
43#define IEEE80211_IBSS_INACTIVITY_LIMIT (60 * HZ)
44
45#define IEEE80211_IBSS_MAX_STA_ENTRIES 128
46
47
Johannes Berg5484e232008-09-08 17:44:27 +020048/* utils */
49static int ecw2cw(int ecw)
Johannes Berg60f8b392008-09-08 17:44:22 +020050{
Johannes Berg5484e232008-09-08 17:44:27 +020051 return (1 << ecw) - 1;
Johannes Berg60f8b392008-09-08 17:44:22 +020052}
53
Johannes Bergc2b13452008-09-11 00:01:55 +020054static u8 *ieee80211_bss_get_ie(struct ieee80211_bss *bss, u8 ie)
Jouni Malinen43ac2ca2008-08-15 22:21:27 +030055{
56 u8 *end, *pos;
57
58 pos = bss->ies;
59 if (pos == NULL)
60 return NULL;
61 end = pos + bss->ies_len;
62
63 while (pos + 1 < end) {
64 if (pos + 2 + pos[1] > end)
65 break;
66 if (pos[0] == ie)
67 return pos;
68 pos += 2 + pos[1];
69 }
70
71 return NULL;
72}
73
Johannes Bergc2b13452008-09-11 00:01:55 +020074static int ieee80211_compatible_rates(struct ieee80211_bss *bss,
Johannes Berg9ac19a92008-09-09 10:57:09 +020075 struct ieee80211_supported_band *sband,
76 u64 *rates)
77{
78 int i, j, count;
79 *rates = 0;
80 count = 0;
81 for (i = 0; i < bss->supp_rates_len; i++) {
82 int rate = (bss->supp_rates[i] & 0x7F) * 5;
83
84 for (j = 0; j < sband->n_bitrates; j++)
85 if (sband->bitrates[j].bitrate == rate) {
86 *rates |= BIT(j);
87 count++;
88 break;
89 }
90 }
91
92 return count;
93}
94
Johannes Berg9c6bd792008-09-11 00:01:52 +020095/* also used by mesh code */
96u64 ieee80211_sta_get_rates(struct ieee80211_local *local,
97 struct ieee802_11_elems *elems,
98 enum ieee80211_band band)
Johannes Berg60f8b392008-09-08 17:44:22 +020099{
Johannes Berg9c6bd792008-09-11 00:01:52 +0200100 struct ieee80211_supported_band *sband;
101 struct ieee80211_rate *bitrates;
102 size_t num_rates;
103 u64 supp_rates;
104 int i, j;
105 sband = local->hw.wiphy->bands[band];
Johannes Berg60f8b392008-09-08 17:44:22 +0200106
Johannes Berg9c6bd792008-09-11 00:01:52 +0200107 if (!sband) {
108 WARN_ON(1);
109 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
Johannes Berg60f8b392008-09-08 17:44:22 +0200110 }
Johannes Berg60f8b392008-09-08 17:44:22 +0200111
Johannes Berg9c6bd792008-09-11 00:01:52 +0200112 bitrates = sband->bitrates;
113 num_rates = sband->n_bitrates;
114 supp_rates = 0;
115 for (i = 0; i < elems->supp_rates_len +
116 elems->ext_supp_rates_len; i++) {
117 u8 rate = 0;
118 int own_rate;
119 if (i < elems->supp_rates_len)
120 rate = elems->supp_rates[i];
121 else if (elems->ext_supp_rates)
122 rate = elems->ext_supp_rates
123 [i - elems->supp_rates_len];
124 own_rate = 5 * (rate & 0x7f);
125 for (j = 0; j < num_rates; j++)
126 if (bitrates[j].bitrate == own_rate)
127 supp_rates |= BIT(j);
128 }
129 return supp_rates;
Johannes Berg60f8b392008-09-08 17:44:22 +0200130}
131
Johannes Berg9c6bd792008-09-11 00:01:52 +0200132/* frame sending functions */
133
134/* also used by scanning code */
Johannes Berg0a51b272008-09-08 17:44:25 +0200135void ieee80211_send_probe_req(struct ieee80211_sub_if_data *sdata, u8 *dst,
136 u8 *ssid, size_t ssid_len)
Johannes Berg60f8b392008-09-08 17:44:22 +0200137{
138 struct ieee80211_local *local = sdata->local;
139 struct ieee80211_supported_band *sband;
140 struct sk_buff *skb;
141 struct ieee80211_mgmt *mgmt;
142 u8 *pos, *supp_rates, *esupp_rates = NULL;
143 int i;
144
145 skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*mgmt) + 200);
146 if (!skb) {
147 printk(KERN_DEBUG "%s: failed to allocate buffer for probe "
148 "request\n", sdata->dev->name);
149 return;
150 }
151 skb_reserve(skb, local->hw.extra_tx_headroom);
152
153 mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24);
154 memset(mgmt, 0, 24);
155 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
156 IEEE80211_STYPE_PROBE_REQ);
157 memcpy(mgmt->sa, sdata->dev->dev_addr, ETH_ALEN);
158 if (dst) {
159 memcpy(mgmt->da, dst, ETH_ALEN);
160 memcpy(mgmt->bssid, dst, ETH_ALEN);
161 } else {
162 memset(mgmt->da, 0xff, ETH_ALEN);
163 memset(mgmt->bssid, 0xff, ETH_ALEN);
164 }
165 pos = skb_put(skb, 2 + ssid_len);
166 *pos++ = WLAN_EID_SSID;
167 *pos++ = ssid_len;
168 memcpy(pos, ssid, ssid_len);
169
170 supp_rates = skb_put(skb, 2);
171 supp_rates[0] = WLAN_EID_SUPP_RATES;
172 supp_rates[1] = 0;
173 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
174
175 for (i = 0; i < sband->n_bitrates; i++) {
176 struct ieee80211_rate *rate = &sband->bitrates[i];
177 if (esupp_rates) {
178 pos = skb_put(skb, 1);
179 esupp_rates[1]++;
180 } else if (supp_rates[1] == 8) {
181 esupp_rates = skb_put(skb, 3);
182 esupp_rates[0] = WLAN_EID_EXT_SUPP_RATES;
183 esupp_rates[1] = 1;
184 pos = &esupp_rates[2];
185 } else {
186 pos = skb_put(skb, 1);
187 supp_rates[1]++;
188 }
189 *pos = rate->bitrate / 5;
190 }
191
Johannes Berge50db652008-09-09 15:07:09 +0200192 ieee80211_tx_skb(sdata, skb, 0);
Johannes Berg60f8b392008-09-08 17:44:22 +0200193}
194
Johannes Berg9c6bd792008-09-11 00:01:52 +0200195static void ieee80211_send_auth(struct ieee80211_sub_if_data *sdata,
196 struct ieee80211_if_sta *ifsta,
197 int transaction, u8 *extra, size_t extra_len,
198 int encrypt)
199{
200 struct ieee80211_local *local = sdata->local;
201 struct sk_buff *skb;
202 struct ieee80211_mgmt *mgmt;
203
204 skb = dev_alloc_skb(local->hw.extra_tx_headroom +
205 sizeof(*mgmt) + 6 + extra_len);
206 if (!skb) {
207 printk(KERN_DEBUG "%s: failed to allocate buffer for auth "
208 "frame\n", sdata->dev->name);
209 return;
210 }
211 skb_reserve(skb, local->hw.extra_tx_headroom);
212
213 mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24 + 6);
214 memset(mgmt, 0, 24 + 6);
215 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
216 IEEE80211_STYPE_AUTH);
217 if (encrypt)
218 mgmt->frame_control |= cpu_to_le16(IEEE80211_FCTL_PROTECTED);
219 memcpy(mgmt->da, ifsta->bssid, ETH_ALEN);
220 memcpy(mgmt->sa, sdata->dev->dev_addr, ETH_ALEN);
221 memcpy(mgmt->bssid, ifsta->bssid, ETH_ALEN);
222 mgmt->u.auth.auth_alg = cpu_to_le16(ifsta->auth_alg);
223 mgmt->u.auth.auth_transaction = cpu_to_le16(transaction);
224 ifsta->auth_transaction = transaction + 1;
225 mgmt->u.auth.status_code = cpu_to_le16(0);
226 if (extra)
227 memcpy(skb_put(skb, extra_len), extra, extra_len);
228
229 ieee80211_tx_skb(sdata, skb, encrypt);
230}
231
Johannes Berg9ac19a92008-09-09 10:57:09 +0200232static void ieee80211_send_assoc(struct ieee80211_sub_if_data *sdata,
233 struct ieee80211_if_sta *ifsta)
234{
235 struct ieee80211_local *local = sdata->local;
236 struct sk_buff *skb;
237 struct ieee80211_mgmt *mgmt;
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200238 u8 *pos, *ies, *ht_ie;
Johannes Berg9ac19a92008-09-09 10:57:09 +0200239 int i, len, count, rates_len, supp_rates_len;
240 u16 capab;
Johannes Bergc2b13452008-09-11 00:01:55 +0200241 struct ieee80211_bss *bss;
Johannes Berg9ac19a92008-09-09 10:57:09 +0200242 int wmm = 0;
243 struct ieee80211_supported_band *sband;
244 u64 rates = 0;
245
246 skb = dev_alloc_skb(local->hw.extra_tx_headroom +
247 sizeof(*mgmt) + 200 + ifsta->extra_ie_len +
248 ifsta->ssid_len);
249 if (!skb) {
250 printk(KERN_DEBUG "%s: failed to allocate buffer for assoc "
251 "frame\n", sdata->dev->name);
252 return;
253 }
254 skb_reserve(skb, local->hw.extra_tx_headroom);
255
256 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
257
258 capab = ifsta->capab;
259
260 if (local->hw.conf.channel->band == IEEE80211_BAND_2GHZ) {
261 if (!(local->hw.flags & IEEE80211_HW_2GHZ_SHORT_SLOT_INCAPABLE))
262 capab |= WLAN_CAPABILITY_SHORT_SLOT_TIME;
263 if (!(local->hw.flags & IEEE80211_HW_2GHZ_SHORT_PREAMBLE_INCAPABLE))
264 capab |= WLAN_CAPABILITY_SHORT_PREAMBLE;
265 }
266
267 bss = ieee80211_rx_bss_get(local, ifsta->bssid,
268 local->hw.conf.channel->center_freq,
269 ifsta->ssid, ifsta->ssid_len);
270 if (bss) {
271 if (bss->capability & WLAN_CAPABILITY_PRIVACY)
272 capab |= WLAN_CAPABILITY_PRIVACY;
273 if (bss->wmm_used)
274 wmm = 1;
275
276 /* get all rates supported by the device and the AP as
277 * some APs don't like getting a superset of their rates
278 * in the association request (e.g. D-Link DAP 1353 in
279 * b-only mode) */
280 rates_len = ieee80211_compatible_rates(bss, sband, &rates);
281
282 if ((bss->capability & WLAN_CAPABILITY_SPECTRUM_MGMT) &&
283 (local->hw.flags & IEEE80211_HW_SPECTRUM_MGMT))
284 capab |= WLAN_CAPABILITY_SPECTRUM_MGMT;
285
286 ieee80211_rx_bss_put(local, bss);
287 } else {
288 rates = ~0;
289 rates_len = sband->n_bitrates;
290 }
291
292 mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24);
293 memset(mgmt, 0, 24);
294 memcpy(mgmt->da, ifsta->bssid, ETH_ALEN);
295 memcpy(mgmt->sa, sdata->dev->dev_addr, ETH_ALEN);
296 memcpy(mgmt->bssid, ifsta->bssid, ETH_ALEN);
297
298 if (ifsta->flags & IEEE80211_STA_PREV_BSSID_SET) {
299 skb_put(skb, 10);
300 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
301 IEEE80211_STYPE_REASSOC_REQ);
302 mgmt->u.reassoc_req.capab_info = cpu_to_le16(capab);
303 mgmt->u.reassoc_req.listen_interval =
304 cpu_to_le16(local->hw.conf.listen_interval);
305 memcpy(mgmt->u.reassoc_req.current_ap, ifsta->prev_bssid,
306 ETH_ALEN);
307 } else {
308 skb_put(skb, 4);
309 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
310 IEEE80211_STYPE_ASSOC_REQ);
311 mgmt->u.assoc_req.capab_info = cpu_to_le16(capab);
Rami Rosen13554122008-12-16 22:38:29 +0200312 mgmt->u.assoc_req.listen_interval =
Johannes Berg9ac19a92008-09-09 10:57:09 +0200313 cpu_to_le16(local->hw.conf.listen_interval);
314 }
315
316 /* SSID */
317 ies = pos = skb_put(skb, 2 + ifsta->ssid_len);
318 *pos++ = WLAN_EID_SSID;
319 *pos++ = ifsta->ssid_len;
320 memcpy(pos, ifsta->ssid, ifsta->ssid_len);
321
322 /* add all rates which were marked to be used above */
323 supp_rates_len = rates_len;
324 if (supp_rates_len > 8)
325 supp_rates_len = 8;
326
327 len = sband->n_bitrates;
328 pos = skb_put(skb, supp_rates_len + 2);
329 *pos++ = WLAN_EID_SUPP_RATES;
330 *pos++ = supp_rates_len;
331
332 count = 0;
333 for (i = 0; i < sband->n_bitrates; i++) {
334 if (BIT(i) & rates) {
335 int rate = sband->bitrates[i].bitrate;
336 *pos++ = (u8) (rate / 5);
337 if (++count == 8)
338 break;
339 }
340 }
341
342 if (rates_len > count) {
343 pos = skb_put(skb, rates_len - count + 2);
344 *pos++ = WLAN_EID_EXT_SUPP_RATES;
345 *pos++ = rates_len - count;
346
347 for (i++; i < sband->n_bitrates; i++) {
348 if (BIT(i) & rates) {
349 int rate = sband->bitrates[i].bitrate;
350 *pos++ = (u8) (rate / 5);
351 }
352 }
353 }
354
355 if (capab & WLAN_CAPABILITY_SPECTRUM_MGMT) {
356 /* 1. power capabilities */
357 pos = skb_put(skb, 4);
358 *pos++ = WLAN_EID_PWR_CAPABILITY;
359 *pos++ = 2;
360 *pos++ = 0; /* min tx power */
361 *pos++ = local->hw.conf.channel->max_power; /* max tx power */
362
363 /* 2. supported channels */
364 /* TODO: get this in reg domain format */
365 pos = skb_put(skb, 2 * sband->n_channels + 2);
366 *pos++ = WLAN_EID_SUPPORTED_CHANNELS;
367 *pos++ = 2 * sband->n_channels;
368 for (i = 0; i < sband->n_channels; i++) {
369 *pos++ = ieee80211_frequency_to_channel(
370 sband->channels[i].center_freq);
371 *pos++ = 1; /* one channel in the subband*/
372 }
373 }
374
375 if (ifsta->extra_ie) {
376 pos = skb_put(skb, ifsta->extra_ie_len);
377 memcpy(pos, ifsta->extra_ie, ifsta->extra_ie_len);
378 }
379
380 if (wmm && (ifsta->flags & IEEE80211_STA_WMM_ENABLED)) {
381 pos = skb_put(skb, 9);
382 *pos++ = WLAN_EID_VENDOR_SPECIFIC;
383 *pos++ = 7; /* len */
384 *pos++ = 0x00; /* Microsoft OUI 00:50:F2 */
385 *pos++ = 0x50;
386 *pos++ = 0xf2;
387 *pos++ = 2; /* WME */
388 *pos++ = 0; /* WME info */
389 *pos++ = 1; /* WME ver */
390 *pos++ = 0;
391 }
392
393 /* wmm support is a must to HT */
394 if (wmm && (ifsta->flags & IEEE80211_STA_WMM_ENABLED) &&
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200395 sband->ht_cap.ht_supported &&
396 (ht_ie = ieee80211_bss_get_ie(bss, WLAN_EID_HT_INFORMATION)) &&
397 ht_ie[1] >= sizeof(struct ieee80211_ht_info)) {
398 struct ieee80211_ht_info *ht_info =
399 (struct ieee80211_ht_info *)(ht_ie + 2);
400 u16 cap = sband->ht_cap.cap;
Johannes Berg9ac19a92008-09-09 10:57:09 +0200401 __le16 tmp;
402 u32 flags = local->hw.conf.channel->flags;
403
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200404 switch (ht_info->ht_param & IEEE80211_HT_PARAM_CHA_SEC_OFFSET) {
405 case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
Johannes Berg9ac19a92008-09-09 10:57:09 +0200406 if (flags & IEEE80211_CHAN_NO_FAT_ABOVE) {
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200407 cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
Johannes Berg9ac19a92008-09-09 10:57:09 +0200408 cap &= ~IEEE80211_HT_CAP_SGI_40;
409 }
410 break;
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200411 case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
Johannes Berg9ac19a92008-09-09 10:57:09 +0200412 if (flags & IEEE80211_CHAN_NO_FAT_BELOW) {
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200413 cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
Johannes Berg9ac19a92008-09-09 10:57:09 +0200414 cap &= ~IEEE80211_HT_CAP_SGI_40;
415 }
416 break;
417 }
418
419 tmp = cpu_to_le16(cap);
420 pos = skb_put(skb, sizeof(struct ieee80211_ht_cap)+2);
421 *pos++ = WLAN_EID_HT_CAPABILITY;
422 *pos++ = sizeof(struct ieee80211_ht_cap);
423 memset(pos, 0, sizeof(struct ieee80211_ht_cap));
424 memcpy(pos, &tmp, sizeof(u16));
425 pos += sizeof(u16);
426 /* TODO: needs a define here for << 2 */
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200427 *pos++ = sband->ht_cap.ampdu_factor |
428 (sband->ht_cap.ampdu_density << 2);
429 memcpy(pos, &sband->ht_cap.mcs, sizeof(sband->ht_cap.mcs));
Johannes Berg9ac19a92008-09-09 10:57:09 +0200430 }
431
432 kfree(ifsta->assocreq_ies);
433 ifsta->assocreq_ies_len = (skb->data + skb->len) - ies;
434 ifsta->assocreq_ies = kmalloc(ifsta->assocreq_ies_len, GFP_KERNEL);
435 if (ifsta->assocreq_ies)
436 memcpy(ifsta->assocreq_ies, ies, ifsta->assocreq_ies_len);
437
Johannes Berge50db652008-09-09 15:07:09 +0200438 ieee80211_tx_skb(sdata, skb, 0);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200439}
440
441
Johannes Bergef422bc2008-09-09 10:58:25 +0200442static void ieee80211_send_deauth_disassoc(struct ieee80211_sub_if_data *sdata,
443 u16 stype, u16 reason)
Johannes Berg9ac19a92008-09-09 10:57:09 +0200444{
445 struct ieee80211_local *local = sdata->local;
Johannes Bergef422bc2008-09-09 10:58:25 +0200446 struct ieee80211_if_sta *ifsta = &sdata->u.sta;
Johannes Berg9ac19a92008-09-09 10:57:09 +0200447 struct sk_buff *skb;
448 struct ieee80211_mgmt *mgmt;
449
450 skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*mgmt));
451 if (!skb) {
Johannes Bergef422bc2008-09-09 10:58:25 +0200452 printk(KERN_DEBUG "%s: failed to allocate buffer for "
453 "deauth/disassoc frame\n", sdata->dev->name);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200454 return;
455 }
456 skb_reserve(skb, local->hw.extra_tx_headroom);
457
458 mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24);
459 memset(mgmt, 0, 24);
460 memcpy(mgmt->da, ifsta->bssid, ETH_ALEN);
461 memcpy(mgmt->sa, sdata->dev->dev_addr, ETH_ALEN);
462 memcpy(mgmt->bssid, ifsta->bssid, ETH_ALEN);
Johannes Bergef422bc2008-09-09 10:58:25 +0200463 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT | stype);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200464 skb_put(skb, 2);
Johannes Bergef422bc2008-09-09 10:58:25 +0200465 /* u.deauth.reason_code == u.disassoc.reason_code */
Johannes Berg9ac19a92008-09-09 10:57:09 +0200466 mgmt->u.deauth.reason_code = cpu_to_le16(reason);
467
Johannes Berge50db652008-09-09 15:07:09 +0200468 ieee80211_tx_skb(sdata, skb, 0);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200469}
470
Johannes Berg60f8b392008-09-08 17:44:22 +0200471/* MLME */
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200472static void ieee80211_sta_def_wmm_params(struct ieee80211_sub_if_data *sdata,
Johannes Bergc2b13452008-09-11 00:01:55 +0200473 struct ieee80211_bss *bss)
Vladimir Koutnye2839d82008-03-18 21:14:07 +0100474{
Vladimir Koutnye2839d82008-03-18 21:14:07 +0100475 struct ieee80211_local *local = sdata->local;
476 int i, have_higher_than_11mbit = 0;
477
Vladimir Koutnye2839d82008-03-18 21:14:07 +0100478 /* cf. IEEE 802.11 9.2.12 */
479 for (i = 0; i < bss->supp_rates_len; i++)
480 if ((bss->supp_rates[i] & 0x7f) * 5 > 110)
481 have_higher_than_11mbit = 1;
482
483 if (local->hw.conf.channel->band == IEEE80211_BAND_2GHZ &&
484 have_higher_than_11mbit)
485 sdata->flags |= IEEE80211_SDATA_OPERATING_GMODE;
486 else
487 sdata->flags &= ~IEEE80211_SDATA_OPERATING_GMODE;
488
Johannes Berg3d35f7c2008-09-09 12:54:11 +0200489 ieee80211_set_wmm_default(sdata);
Vladimir Koutnye2839d82008-03-18 21:14:07 +0100490}
491
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200492static void ieee80211_sta_wmm_params(struct ieee80211_local *local,
Jiri Bencf0706e82007-05-05 11:45:53 -0700493 struct ieee80211_if_sta *ifsta,
494 u8 *wmm_param, size_t wmm_param_len)
495{
Jiri Bencf0706e82007-05-05 11:45:53 -0700496 struct ieee80211_tx_queue_params params;
497 size_t left;
498 int count;
499 u8 *pos;
500
Johannes Berg3434fbd2008-05-03 00:59:37 +0200501 if (!(ifsta->flags & IEEE80211_STA_WMM_ENABLED))
502 return;
503
504 if (!wmm_param)
505 return;
506
Jiri Bencf0706e82007-05-05 11:45:53 -0700507 if (wmm_param_len < 8 || wmm_param[5] /* version */ != 1)
508 return;
509 count = wmm_param[6] & 0x0f;
510 if (count == ifsta->wmm_last_param_set)
511 return;
512 ifsta->wmm_last_param_set = count;
513
514 pos = wmm_param + 8;
515 left = wmm_param_len - 8;
516
517 memset(&params, 0, sizeof(params));
518
519 if (!local->ops->conf_tx)
520 return;
521
522 local->wmm_acm = 0;
523 for (; left >= 4; left -= 4, pos += 4) {
524 int aci = (pos[0] >> 5) & 0x03;
525 int acm = (pos[0] >> 4) & 0x01;
526 int queue;
527
528 switch (aci) {
529 case 1:
Johannes Berge100bb62008-04-30 18:51:21 +0200530 queue = 3;
Johannes Berg988c0f72008-04-17 19:21:22 +0200531 if (acm)
Jiri Bencf0706e82007-05-05 11:45:53 -0700532 local->wmm_acm |= BIT(0) | BIT(3);
Jiri Bencf0706e82007-05-05 11:45:53 -0700533 break;
534 case 2:
Johannes Berge100bb62008-04-30 18:51:21 +0200535 queue = 1;
Johannes Berg988c0f72008-04-17 19:21:22 +0200536 if (acm)
Jiri Bencf0706e82007-05-05 11:45:53 -0700537 local->wmm_acm |= BIT(4) | BIT(5);
Jiri Bencf0706e82007-05-05 11:45:53 -0700538 break;
539 case 3:
Johannes Berge100bb62008-04-30 18:51:21 +0200540 queue = 0;
Johannes Berg988c0f72008-04-17 19:21:22 +0200541 if (acm)
Jiri Bencf0706e82007-05-05 11:45:53 -0700542 local->wmm_acm |= BIT(6) | BIT(7);
Jiri Bencf0706e82007-05-05 11:45:53 -0700543 break;
544 case 0:
545 default:
Johannes Berge100bb62008-04-30 18:51:21 +0200546 queue = 2;
Johannes Berg988c0f72008-04-17 19:21:22 +0200547 if (acm)
Jiri Bencf0706e82007-05-05 11:45:53 -0700548 local->wmm_acm |= BIT(1) | BIT(2);
Jiri Bencf0706e82007-05-05 11:45:53 -0700549 break;
550 }
551
552 params.aifs = pos[0] & 0x0f;
553 params.cw_max = ecw2cw((pos[1] & 0xf0) >> 4);
554 params.cw_min = ecw2cw(pos[1] & 0x0f);
Johannes Bergf434b2d2008-07-10 11:22:31 +0200555 params.txop = get_unaligned_le16(pos + 2);
Johannes Bergf4ea83d2008-06-30 15:10:46 +0200556#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Jiri Bencf0706e82007-05-05 11:45:53 -0700557 printk(KERN_DEBUG "%s: WMM queue=%d aci=%d acm=%d aifs=%d "
Johannes Berg3330d7b2008-02-10 16:49:38 +0100558 "cWmin=%d cWmax=%d txop=%d\n",
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200559 local->mdev->name, queue, aci, acm, params.aifs, params.cw_min,
Johannes Berg3330d7b2008-02-10 16:49:38 +0100560 params.cw_max, params.txop);
561#endif
Jiri Bencf0706e82007-05-05 11:45:53 -0700562 /* TODO: handle ACM (block TX, fallback to next lowest allowed
563 * AC for now) */
564 if (local->ops->conf_tx(local_to_hw(local), queue, &params)) {
565 printk(KERN_DEBUG "%s: failed to set TX queue "
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200566 "parameters for queue %d\n", local->mdev->name, queue);
Jiri Bencf0706e82007-05-05 11:45:53 -0700567 }
568 }
569}
570
Johannes Berg7a5158e2008-10-08 10:59:33 +0200571static u32 ieee80211_handle_bss_capability(struct ieee80211_sub_if_data *sdata,
572 u16 capab, bool erp_valid, u8 erp)
Daniel Drake56282212007-07-10 19:32:10 +0200573{
Johannes Bergbda39332008-10-11 01:51:51 +0200574 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
Tomas Winklerebd74482008-07-01 10:44:50 +0300575#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Daniel Drake56282212007-07-10 19:32:10 +0200576 struct ieee80211_if_sta *ifsta = &sdata->u.sta;
Tomas Winklerebd74482008-07-01 10:44:50 +0300577#endif
Johannes Berg471b3ef2007-12-28 14:32:58 +0100578 u32 changed = 0;
Johannes Berg7a5158e2008-10-08 10:59:33 +0200579 bool use_protection;
580 bool use_short_preamble;
581 bool use_short_slot;
582
583 if (erp_valid) {
584 use_protection = (erp & WLAN_ERP_USE_PROTECTION) != 0;
585 use_short_preamble = (erp & WLAN_ERP_BARKER_PREAMBLE) == 0;
586 } else {
587 use_protection = false;
588 use_short_preamble = !!(capab & WLAN_CAPABILITY_SHORT_PREAMBLE);
589 }
590
591 use_short_slot = !!(capab & WLAN_CAPABILITY_SHORT_SLOT_TIME);
Daniel Drake56282212007-07-10 19:32:10 +0200592
Johannes Berg471b3ef2007-12-28 14:32:58 +0100593 if (use_protection != bss_conf->use_cts_prot) {
Johannes Bergf4ea83d2008-06-30 15:10:46 +0200594#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Daniel Drake56282212007-07-10 19:32:10 +0200595 if (net_ratelimit()) {
Johannes Berg0c68ae262008-10-27 15:56:10 -0700596 printk(KERN_DEBUG "%s: CTS protection %s (BSSID=%pM)\n",
Johannes Berg471b3ef2007-12-28 14:32:58 +0100597 sdata->dev->name,
Daniel Drake56282212007-07-10 19:32:10 +0200598 use_protection ? "enabled" : "disabled",
Johannes Berg0c68ae262008-10-27 15:56:10 -0700599 ifsta->bssid);
Daniel Drake56282212007-07-10 19:32:10 +0200600 }
Johannes Bergf4ea83d2008-06-30 15:10:46 +0200601#endif
Johannes Berg471b3ef2007-12-28 14:32:58 +0100602 bss_conf->use_cts_prot = use_protection;
603 changed |= BSS_CHANGED_ERP_CTS_PROT;
Daniel Drake56282212007-07-10 19:32:10 +0200604 }
Daniel Drake7e9ed182007-07-27 15:43:24 +0200605
Vladimir Koutnyd43c7b32008-03-31 17:05:03 +0200606 if (use_short_preamble != bss_conf->use_short_preamble) {
Johannes Bergf4ea83d2008-06-30 15:10:46 +0200607#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Daniel Drake7e9ed182007-07-27 15:43:24 +0200608 if (net_ratelimit()) {
609 printk(KERN_DEBUG "%s: switched to %s barker preamble"
Johannes Berg0c68ae262008-10-27 15:56:10 -0700610 " (BSSID=%pM)\n",
Johannes Berg471b3ef2007-12-28 14:32:58 +0100611 sdata->dev->name,
Vladimir Koutnyd43c7b32008-03-31 17:05:03 +0200612 use_short_preamble ? "short" : "long",
Johannes Berg0c68ae262008-10-27 15:56:10 -0700613 ifsta->bssid);
Daniel Drake7e9ed182007-07-27 15:43:24 +0200614 }
Johannes Bergf4ea83d2008-06-30 15:10:46 +0200615#endif
Vladimir Koutnyd43c7b32008-03-31 17:05:03 +0200616 bss_conf->use_short_preamble = use_short_preamble;
Johannes Berg471b3ef2007-12-28 14:32:58 +0100617 changed |= BSS_CHANGED_ERP_PREAMBLE;
Daniel Drake7e9ed182007-07-27 15:43:24 +0200618 }
Daniel Draked9430a32007-07-27 15:43:24 +0200619
Johannes Berg7a5158e2008-10-08 10:59:33 +0200620 if (use_short_slot != bss_conf->use_short_slot) {
621#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
622 if (net_ratelimit()) {
623 printk(KERN_DEBUG "%s: switched to %s slot"
624 " (BSSID=%s)\n",
625 sdata->dev->name,
626 use_short_slot ? "short" : "long",
627 ifsta->bssid);
628 }
629#endif
630 bss_conf->use_short_slot = use_short_slot;
631 changed |= BSS_CHANGED_ERP_SLOT;
John W. Linville50c4afb2008-04-15 14:09:27 -0400632 }
633
634 return changed;
635}
636
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200637static void ieee80211_sta_send_apinfo(struct ieee80211_sub_if_data *sdata,
638 struct ieee80211_if_sta *ifsta)
639{
640 union iwreq_data wrqu;
641 memset(&wrqu, 0, sizeof(wrqu));
642 if (ifsta->flags & IEEE80211_STA_ASSOCIATED)
643 memcpy(wrqu.ap_addr.sa_data, sdata->u.sta.bssid, ETH_ALEN);
644 wrqu.ap_addr.sa_family = ARPHRD_ETHER;
645 wireless_send_event(sdata->dev, SIOCGIWAP, &wrqu, NULL);
646}
647
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200648static void ieee80211_sta_send_associnfo(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -0700649 struct ieee80211_if_sta *ifsta)
650{
Linus Torvalds74af0252008-09-05 12:38:09 -0700651 char *buf;
652 size_t len;
653 int i;
Jiri Bencf0706e82007-05-05 11:45:53 -0700654 union iwreq_data wrqu;
655
Linus Torvalds74af0252008-09-05 12:38:09 -0700656 if (!ifsta->assocreq_ies && !ifsta->assocresp_ies)
657 return;
658
659 buf = kmalloc(50 + 2 * (ifsta->assocreq_ies_len +
660 ifsta->assocresp_ies_len), GFP_KERNEL);
661 if (!buf)
662 return;
663
664 len = sprintf(buf, "ASSOCINFO(");
Jiri Bencf0706e82007-05-05 11:45:53 -0700665 if (ifsta->assocreq_ies) {
Linus Torvalds74af0252008-09-05 12:38:09 -0700666 len += sprintf(buf + len, "ReqIEs=");
667 for (i = 0; i < ifsta->assocreq_ies_len; i++) {
668 len += sprintf(buf + len, "%02x",
669 ifsta->assocreq_ies[i]);
670 }
Jiri Bencf0706e82007-05-05 11:45:53 -0700671 }
672 if (ifsta->assocresp_ies) {
Linus Torvalds74af0252008-09-05 12:38:09 -0700673 if (ifsta->assocreq_ies)
674 len += sprintf(buf + len, " ");
675 len += sprintf(buf + len, "RespIEs=");
676 for (i = 0; i < ifsta->assocresp_ies_len; i++) {
677 len += sprintf(buf + len, "%02x",
678 ifsta->assocresp_ies[i]);
679 }
Jiri Bencf0706e82007-05-05 11:45:53 -0700680 }
Linus Torvalds74af0252008-09-05 12:38:09 -0700681 len += sprintf(buf + len, ")");
682
683 if (len > IW_CUSTOM_MAX) {
684 len = sprintf(buf, "ASSOCRESPIE=");
685 for (i = 0; i < ifsta->assocresp_ies_len; i++) {
686 len += sprintf(buf + len, "%02x",
687 ifsta->assocresp_ies[i]);
688 }
689 }
690
John W. Linvillead788b52008-10-01 15:45:02 -0400691 if (len <= IW_CUSTOM_MAX) {
692 memset(&wrqu, 0, sizeof(wrqu));
693 wrqu.data.length = len;
694 wireless_send_event(sdata->dev, IWEVCUSTOM, &wrqu, buf);
695 }
Linus Torvalds74af0252008-09-05 12:38:09 -0700696
697 kfree(buf);
Jiri Bencf0706e82007-05-05 11:45:53 -0700698}
699
700
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200701static void ieee80211_set_associated(struct ieee80211_sub_if_data *sdata,
Johannes Bergae5eb022008-10-14 16:58:37 +0200702 struct ieee80211_if_sta *ifsta,
703 u32 bss_info_changed)
Jiri Bencf0706e82007-05-05 11:45:53 -0700704{
Johannes Berg471b3ef2007-12-28 14:32:58 +0100705 struct ieee80211_local *local = sdata->local;
Tomas Winkler38668c02008-03-28 16:33:32 -0700706 struct ieee80211_conf *conf = &local_to_hw(local)->conf;
Jiri Bencf0706e82007-05-05 11:45:53 -0700707
Johannes Bergc2b13452008-09-11 00:01:55 +0200708 struct ieee80211_bss *bss;
Jiri Slabyd6f2da52007-08-28 17:01:54 -0400709
Johannes Bergae5eb022008-10-14 16:58:37 +0200710 bss_info_changed |= BSS_CHANGED_ASSOC;
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200711 ifsta->flags |= IEEE80211_STA_ASSOCIATED;
Jiri Slabyd6f2da52007-08-28 17:01:54 -0400712
Johannes Berg05c914f2008-09-11 00:01:58 +0200713 if (sdata->vif.type != NL80211_IFTYPE_STATION)
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200714 return;
Daniel Drake56282212007-07-10 19:32:10 +0200715
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200716 bss = ieee80211_rx_bss_get(local, ifsta->bssid,
717 conf->channel->center_freq,
718 ifsta->ssid, ifsta->ssid_len);
719 if (bss) {
720 /* set timing information */
Johannes Bergbda39332008-10-11 01:51:51 +0200721 sdata->vif.bss_conf.beacon_int = bss->beacon_int;
722 sdata->vif.bss_conf.timestamp = bss->timestamp;
723 sdata->vif.bss_conf.dtim_period = bss->dtim_period;
Tomas Winkler21c0cbe2008-03-28 16:33:34 -0700724
Johannes Bergae5eb022008-10-14 16:58:37 +0200725 bss_info_changed |= ieee80211_handle_bss_capability(sdata,
Johannes Berg7a5158e2008-10-08 10:59:33 +0200726 bss->capability, bss->has_erp_value, bss->erp_value);
Tomas Winkler21c0cbe2008-03-28 16:33:34 -0700727
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200728 ieee80211_rx_bss_put(local, bss);
Jiri Bencf0706e82007-05-05 11:45:53 -0700729 }
Johannes Berg471b3ef2007-12-28 14:32:58 +0100730
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200731 ifsta->flags |= IEEE80211_STA_PREV_BSSID_SET;
732 memcpy(ifsta->prev_bssid, sdata->u.sta.bssid, ETH_ALEN);
733 ieee80211_sta_send_associnfo(sdata, ifsta);
734
735 ifsta->last_probe = jiffies;
736 ieee80211_led_assoc(local, 1);
737
Johannes Bergbda39332008-10-11 01:51:51 +0200738 sdata->vif.bss_conf.assoc = 1;
Johannes Berg96dd22a2008-09-11 00:01:57 +0200739 /*
740 * For now just always ask the driver to update the basic rateset
741 * when we have associated, we aren't checking whether it actually
742 * changed or not.
743 */
Johannes Bergae5eb022008-10-14 16:58:37 +0200744 bss_info_changed |= BSS_CHANGED_BASIC_RATES;
745 ieee80211_bss_info_change_notify(sdata, bss_info_changed);
Guy Cohen8db93692008-07-03 19:56:13 +0300746
Kalle Valoe0cb6862008-12-18 23:35:13 +0200747 if (local->powersave) {
748 local->hw.conf.flags |= IEEE80211_CONF_PS;
749 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
750 }
751
Tomas Winkler24e64622008-09-08 17:33:40 +0200752 netif_tx_start_all_queues(sdata->dev);
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200753 netif_carrier_on(sdata->dev);
Guy Cohen8db93692008-07-03 19:56:13 +0300754
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200755 ieee80211_sta_send_apinfo(sdata, ifsta);
Jiri Bencf0706e82007-05-05 11:45:53 -0700756}
757
Ron Rindjunsky9859b812008-08-09 03:02:19 +0300758static void ieee80211_direct_probe(struct ieee80211_sub_if_data *sdata,
759 struct ieee80211_if_sta *ifsta)
760{
Ron Rindjunsky9859b812008-08-09 03:02:19 +0300761 ifsta->direct_probe_tries++;
762 if (ifsta->direct_probe_tries > IEEE80211_AUTH_MAX_TRIES) {
Johannes Berg0c68ae262008-10-27 15:56:10 -0700763 printk(KERN_DEBUG "%s: direct probe to AP %pM timed out\n",
764 sdata->dev->name, ifsta->bssid);
Ron Rindjunsky9859b812008-08-09 03:02:19 +0300765 ifsta->state = IEEE80211_STA_MLME_DISABLED;
Johannes Berg4a68ec52008-10-16 21:44:44 +0200766 ieee80211_sta_send_apinfo(sdata, ifsta);
Ron Rindjunsky9859b812008-08-09 03:02:19 +0300767 return;
768 }
769
Johannes Berg0c68ae262008-10-27 15:56:10 -0700770 printk(KERN_DEBUG "%s: direct probe to AP %pM try %d\n",
771 sdata->dev->name, ifsta->bssid,
Ron Rindjunsky9859b812008-08-09 03:02:19 +0300772 ifsta->direct_probe_tries);
773
774 ifsta->state = IEEE80211_STA_MLME_DIRECT_PROBE;
775
776 set_bit(IEEE80211_STA_REQ_DIRECT_PROBE, &ifsta->request);
777
778 /* Direct probe is sent to broadcast address as some APs
779 * will not answer to direct packet in unassociated state.
780 */
781 ieee80211_send_probe_req(sdata, NULL,
782 ifsta->ssid, ifsta->ssid_len);
783
784 mod_timer(&ifsta->timer, jiffies + IEEE80211_AUTH_TIMEOUT);
785}
786
Jiri Bencf0706e82007-05-05 11:45:53 -0700787
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200788static void ieee80211_authenticate(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -0700789 struct ieee80211_if_sta *ifsta)
790{
791 ifsta->auth_tries++;
792 if (ifsta->auth_tries > IEEE80211_AUTH_MAX_TRIES) {
Johannes Berg0c68ae262008-10-27 15:56:10 -0700793 printk(KERN_DEBUG "%s: authentication with AP %pM"
Jiri Bencf0706e82007-05-05 11:45:53 -0700794 " timed out\n",
Johannes Berg0c68ae262008-10-27 15:56:10 -0700795 sdata->dev->name, ifsta->bssid);
Tomas Winkler48c2fc52008-08-06 14:22:01 +0300796 ifsta->state = IEEE80211_STA_MLME_DISABLED;
Johannes Berg4a68ec52008-10-16 21:44:44 +0200797 ieee80211_sta_send_apinfo(sdata, ifsta);
Jiri Bencf0706e82007-05-05 11:45:53 -0700798 return;
799 }
800
Tomas Winkler48c2fc52008-08-06 14:22:01 +0300801 ifsta->state = IEEE80211_STA_MLME_AUTHENTICATE;
Johannes Berg0c68ae262008-10-27 15:56:10 -0700802 printk(KERN_DEBUG "%s: authenticate with AP %pM\n",
803 sdata->dev->name, ifsta->bssid);
Jiri Bencf0706e82007-05-05 11:45:53 -0700804
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200805 ieee80211_send_auth(sdata, ifsta, 1, NULL, 0, 0);
Jiri Bencf0706e82007-05-05 11:45:53 -0700806
807 mod_timer(&ifsta->timer, jiffies + IEEE80211_AUTH_TIMEOUT);
808}
809
Vivek Natarajan5925d972008-11-21 22:19:50 -0800810/*
811 * The disassoc 'reason' argument can be either our own reason
812 * if self disconnected or a reason code from the AP.
813 */
Tomas Winkleraa458d12008-09-09 00:32:12 +0300814static void ieee80211_set_disassoc(struct ieee80211_sub_if_data *sdata,
815 struct ieee80211_if_sta *ifsta, bool deauth,
816 bool self_disconnected, u16 reason)
817{
818 struct ieee80211_local *local = sdata->local;
819 struct sta_info *sta;
Kalle Valoe0cb6862008-12-18 23:35:13 +0200820 u32 changed = 0, config_changed = 0;
Tomas Winkleraa458d12008-09-09 00:32:12 +0300821
822 rcu_read_lock();
823
824 sta = sta_info_get(local, ifsta->bssid);
825 if (!sta) {
826 rcu_read_unlock();
827 return;
828 }
829
830 if (deauth) {
831 ifsta->direct_probe_tries = 0;
832 ifsta->auth_tries = 0;
833 }
834 ifsta->assoc_scan_tries = 0;
835 ifsta->assoc_tries = 0;
836
Tomas Winkler24e64622008-09-08 17:33:40 +0200837 netif_tx_stop_all_queues(sdata->dev);
Tomas Winkleraa458d12008-09-09 00:32:12 +0300838 netif_carrier_off(sdata->dev);
839
Johannes Berg17741cd2008-09-11 00:02:02 +0200840 ieee80211_sta_tear_down_BA_sessions(sdata, sta->sta.addr);
Tomas Winkleraa458d12008-09-09 00:32:12 +0300841
842 if (self_disconnected) {
843 if (deauth)
Johannes Bergef422bc2008-09-09 10:58:25 +0200844 ieee80211_send_deauth_disassoc(sdata,
845 IEEE80211_STYPE_DEAUTH, reason);
Tomas Winkleraa458d12008-09-09 00:32:12 +0300846 else
Johannes Bergef422bc2008-09-09 10:58:25 +0200847 ieee80211_send_deauth_disassoc(sdata,
848 IEEE80211_STYPE_DISASSOC, reason);
Tomas Winkleraa458d12008-09-09 00:32:12 +0300849 }
850
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200851 ifsta->flags &= ~IEEE80211_STA_ASSOCIATED;
852 changed |= ieee80211_reset_erp_info(sdata);
853
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200854 ieee80211_led_assoc(local, 0);
Johannes Bergae5eb022008-10-14 16:58:37 +0200855 changed |= BSS_CHANGED_ASSOC;
856 sdata->vif.bss_conf.assoc = false;
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200857
858 ieee80211_sta_send_apinfo(sdata, ifsta);
Tomas Winkleraa458d12008-09-09 00:32:12 +0300859
Vivek Natarajan5925d972008-11-21 22:19:50 -0800860 if (self_disconnected || reason == WLAN_REASON_DISASSOC_STA_HAS_LEFT)
Tomas Winkleraa458d12008-09-09 00:32:12 +0300861 ifsta->state = IEEE80211_STA_MLME_DISABLED;
862
Tomas Winkleraa458d12008-09-09 00:32:12 +0300863 rcu_read_unlock();
864
Johannes Bergae5eb022008-10-14 16:58:37 +0200865 local->hw.conf.ht.enabled = false;
Sujith094d05d2008-12-12 11:57:43 +0530866 local->oper_channel_type = NL80211_CHAN_NO_HT;
Kalle Valoe0cb6862008-12-18 23:35:13 +0200867 config_changed |= IEEE80211_CONF_CHANGE_HT;
Johannes Bergae5eb022008-10-14 16:58:37 +0200868
Kalle Valoe0cb6862008-12-18 23:35:13 +0200869 if (local->hw.conf.flags & IEEE80211_CONF_PS) {
870 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
871 config_changed |= IEEE80211_CONF_CHANGE_PS;
872 }
873
874 ieee80211_hw_config(local, config_changed);
Johannes Bergae5eb022008-10-14 16:58:37 +0200875 ieee80211_bss_info_change_notify(sdata, changed);
Tomas Winkler8e268e42008-11-25 13:05:44 +0200876
877 rcu_read_lock();
878
879 sta = sta_info_get(local, ifsta->bssid);
880 if (!sta) {
881 rcu_read_unlock();
882 return;
883 }
884
885 sta_info_unlink(&sta);
886
887 rcu_read_unlock();
888
889 sta_info_destroy(sta);
Tomas Winkleraa458d12008-09-09 00:32:12 +0300890}
Jiri Bencf0706e82007-05-05 11:45:53 -0700891
Johannes Berg9ac19a92008-09-09 10:57:09 +0200892static int ieee80211_sta_wep_configured(struct ieee80211_sub_if_data *sdata)
893{
894 if (!sdata || !sdata->default_key ||
895 sdata->default_key->conf.alg != ALG_WEP)
896 return 0;
897 return 1;
898}
899
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200900static int ieee80211_privacy_mismatch(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -0700901 struct ieee80211_if_sta *ifsta)
902{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200903 struct ieee80211_local *local = sdata->local;
Johannes Bergc2b13452008-09-11 00:01:55 +0200904 struct ieee80211_bss *bss;
Johannes Berg5b98b1f2007-11-03 13:11:10 +0000905 int bss_privacy;
906 int wep_privacy;
907 int privacy_invoked;
Jiri Bencf0706e82007-05-05 11:45:53 -0700908
Johannes Berg5b98b1f2007-11-03 13:11:10 +0000909 if (!ifsta || (ifsta->flags & IEEE80211_STA_MIXED_CELL))
Jiri Bencf0706e82007-05-05 11:45:53 -0700910 return 0;
911
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200912 bss = ieee80211_rx_bss_get(local, ifsta->bssid,
Johannes Berg8318d782008-01-24 19:38:38 +0100913 local->hw.conf.channel->center_freq,
John W. Linvillecffdd302007-10-05 14:23:27 -0400914 ifsta->ssid, ifsta->ssid_len);
Jiri Bencf0706e82007-05-05 11:45:53 -0700915 if (!bss)
916 return 0;
917
Johannes Berg5b98b1f2007-11-03 13:11:10 +0000918 bss_privacy = !!(bss->capability & WLAN_CAPABILITY_PRIVACY);
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200919 wep_privacy = !!ieee80211_sta_wep_configured(sdata);
Johannes Berg5b98b1f2007-11-03 13:11:10 +0000920 privacy_invoked = !!(ifsta->flags & IEEE80211_STA_PRIVACY_INVOKED);
Jiri Bencf0706e82007-05-05 11:45:53 -0700921
Johannes Berg3e122be2008-07-09 14:40:34 +0200922 ieee80211_rx_bss_put(local, bss);
Jiri Bencf0706e82007-05-05 11:45:53 -0700923
Johannes Berg5b98b1f2007-11-03 13:11:10 +0000924 if ((bss_privacy == wep_privacy) || (bss_privacy == privacy_invoked))
925 return 0;
926
927 return 1;
Jiri Bencf0706e82007-05-05 11:45:53 -0700928}
929
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200930static void ieee80211_associate(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -0700931 struct ieee80211_if_sta *ifsta)
932{
933 ifsta->assoc_tries++;
934 if (ifsta->assoc_tries > IEEE80211_ASSOC_MAX_TRIES) {
Johannes Berg0c68ae262008-10-27 15:56:10 -0700935 printk(KERN_DEBUG "%s: association with AP %pM"
Jiri Bencf0706e82007-05-05 11:45:53 -0700936 " timed out\n",
Johannes Berg0c68ae262008-10-27 15:56:10 -0700937 sdata->dev->name, ifsta->bssid);
Tomas Winkler48c2fc52008-08-06 14:22:01 +0300938 ifsta->state = IEEE80211_STA_MLME_DISABLED;
Johannes Berg4a68ec52008-10-16 21:44:44 +0200939 ieee80211_sta_send_apinfo(sdata, ifsta);
Jiri Bencf0706e82007-05-05 11:45:53 -0700940 return;
941 }
942
Tomas Winkler48c2fc52008-08-06 14:22:01 +0300943 ifsta->state = IEEE80211_STA_MLME_ASSOCIATE;
Johannes Berg0c68ae262008-10-27 15:56:10 -0700944 printk(KERN_DEBUG "%s: associate with AP %pM\n",
945 sdata->dev->name, ifsta->bssid);
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200946 if (ieee80211_privacy_mismatch(sdata, ifsta)) {
Jiri Bencf0706e82007-05-05 11:45:53 -0700947 printk(KERN_DEBUG "%s: mismatch in privacy configuration and "
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200948 "mixed-cell disabled - abort association\n", sdata->dev->name);
Tomas Winkler48c2fc52008-08-06 14:22:01 +0300949 ifsta->state = IEEE80211_STA_MLME_DISABLED;
Jiri Bencf0706e82007-05-05 11:45:53 -0700950 return;
951 }
952
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200953 ieee80211_send_assoc(sdata, ifsta);
Jiri Bencf0706e82007-05-05 11:45:53 -0700954
955 mod_timer(&ifsta->timer, jiffies + IEEE80211_ASSOC_TIMEOUT);
956}
957
958
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200959static void ieee80211_associated(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -0700960 struct ieee80211_if_sta *ifsta)
961{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200962 struct ieee80211_local *local = sdata->local;
Jiri Bencf0706e82007-05-05 11:45:53 -0700963 struct sta_info *sta;
964 int disassoc;
965
966 /* TODO: start monitoring current AP signal quality and number of
967 * missed beacons. Scan other channels every now and then and search
968 * for better APs. */
969 /* TODO: remove expired BSSes */
970
Tomas Winkler48c2fc52008-08-06 14:22:01 +0300971 ifsta->state = IEEE80211_STA_MLME_ASSOCIATED;
Jiri Bencf0706e82007-05-05 11:45:53 -0700972
Johannes Bergd0709a62008-02-25 16:27:46 +0100973 rcu_read_lock();
974
Jiri Bencf0706e82007-05-05 11:45:53 -0700975 sta = sta_info_get(local, ifsta->bssid);
976 if (!sta) {
Johannes Berg0c68ae262008-10-27 15:56:10 -0700977 printk(KERN_DEBUG "%s: No STA entry for own AP %pM\n",
978 sdata->dev->name, ifsta->bssid);
Jiri Bencf0706e82007-05-05 11:45:53 -0700979 disassoc = 1;
980 } else {
981 disassoc = 0;
982 if (time_after(jiffies,
983 sta->last_rx + IEEE80211_MONITORING_INTERVAL)) {
Jiri Slabyd6f2da52007-08-28 17:01:54 -0400984 if (ifsta->flags & IEEE80211_STA_PROBEREQ_POLL) {
Jiri Bencf0706e82007-05-05 11:45:53 -0700985 printk(KERN_DEBUG "%s: No ProbeResp from "
Johannes Berg0c68ae262008-10-27 15:56:10 -0700986 "current AP %pM - assume out of "
Jiri Bencf0706e82007-05-05 11:45:53 -0700987 "range\n",
Johannes Berg0c68ae262008-10-27 15:56:10 -0700988 sdata->dev->name, ifsta->bssid);
Jiri Bencf0706e82007-05-05 11:45:53 -0700989 disassoc = 1;
Jiri Slabyd6f2da52007-08-28 17:01:54 -0400990 } else
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200991 ieee80211_send_probe_req(sdata, ifsta->bssid,
Johannes Berg4dfe51e2008-09-19 05:10:34 +0200992 ifsta->ssid,
993 ifsta->ssid_len);
Jiri Slabyd6f2da52007-08-28 17:01:54 -0400994 ifsta->flags ^= IEEE80211_STA_PROBEREQ_POLL;
Jiri Bencf0706e82007-05-05 11:45:53 -0700995 } else {
Jiri Slabyd6f2da52007-08-28 17:01:54 -0400996 ifsta->flags &= ~IEEE80211_STA_PROBEREQ_POLL;
Jiri Bencf0706e82007-05-05 11:45:53 -0700997 if (time_after(jiffies, ifsta->last_probe +
998 IEEE80211_PROBE_INTERVAL)) {
999 ifsta->last_probe = jiffies;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001000 ieee80211_send_probe_req(sdata, ifsta->bssid,
Jiri Bencf0706e82007-05-05 11:45:53 -07001001 ifsta->ssid,
1002 ifsta->ssid_len);
1003 }
1004 }
Jiri Bencf0706e82007-05-05 11:45:53 -07001005 }
Johannes Bergd0709a62008-02-25 16:27:46 +01001006
1007 rcu_read_unlock();
1008
Tomas Winkleraa458d12008-09-09 00:32:12 +03001009 if (disassoc)
1010 ieee80211_set_disassoc(sdata, ifsta, true, true,
1011 WLAN_REASON_PREV_AUTH_NOT_VALID);
1012 else
Jiri Bencf0706e82007-05-05 11:45:53 -07001013 mod_timer(&ifsta->timer, jiffies +
1014 IEEE80211_MONITORING_INTERVAL);
Jiri Bencf0706e82007-05-05 11:45:53 -07001015}
1016
1017
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001018static void ieee80211_auth_completed(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001019 struct ieee80211_if_sta *ifsta)
1020{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001021 printk(KERN_DEBUG "%s: authenticated\n", sdata->dev->name);
Jiri Slabyd6f2da52007-08-28 17:01:54 -04001022 ifsta->flags |= IEEE80211_STA_AUTHENTICATED;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001023 ieee80211_associate(sdata, ifsta);
Jiri Bencf0706e82007-05-05 11:45:53 -07001024}
1025
1026
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001027static void ieee80211_auth_challenge(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001028 struct ieee80211_if_sta *ifsta,
1029 struct ieee80211_mgmt *mgmt,
1030 size_t len)
1031{
1032 u8 *pos;
1033 struct ieee802_11_elems elems;
1034
Jiri Bencf0706e82007-05-05 11:45:53 -07001035 pos = mgmt->u.auth.variable;
John W. Linville67a4cce2007-10-12 16:40:37 -04001036 ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), &elems);
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001037 if (!elems.challenge)
Jiri Bencf0706e82007-05-05 11:45:53 -07001038 return;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001039 ieee80211_send_auth(sdata, ifsta, 3, elems.challenge - 2,
Jiri Bencf0706e82007-05-05 11:45:53 -07001040 elems.challenge_len + 2, 1);
1041}
1042
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001043static void ieee80211_rx_mgmt_auth(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001044 struct ieee80211_if_sta *ifsta,
1045 struct ieee80211_mgmt *mgmt,
1046 size_t len)
1047{
Jiri Bencf0706e82007-05-05 11:45:53 -07001048 u16 auth_alg, auth_transaction, status_code;
1049
Tomas Winkler48c2fc52008-08-06 14:22:01 +03001050 if (ifsta->state != IEEE80211_STA_MLME_AUTHENTICATE &&
Johannes Berg05c914f2008-09-11 00:01:58 +02001051 sdata->vif.type != NL80211_IFTYPE_ADHOC)
Jiri Bencf0706e82007-05-05 11:45:53 -07001052 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001053
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001054 if (len < 24 + 6)
Jiri Bencf0706e82007-05-05 11:45:53 -07001055 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001056
Johannes Berg05c914f2008-09-11 00:01:58 +02001057 if (sdata->vif.type != NL80211_IFTYPE_ADHOC &&
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001058 memcmp(ifsta->bssid, mgmt->sa, ETH_ALEN) != 0)
Jiri Bencf0706e82007-05-05 11:45:53 -07001059 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001060
Johannes Berg05c914f2008-09-11 00:01:58 +02001061 if (sdata->vif.type != NL80211_IFTYPE_ADHOC &&
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001062 memcmp(ifsta->bssid, mgmt->bssid, ETH_ALEN) != 0)
Jiri Bencf0706e82007-05-05 11:45:53 -07001063 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001064
1065 auth_alg = le16_to_cpu(mgmt->u.auth.auth_alg);
1066 auth_transaction = le16_to_cpu(mgmt->u.auth.auth_transaction);
1067 status_code = le16_to_cpu(mgmt->u.auth.status_code);
1068
Johannes Berg05c914f2008-09-11 00:01:58 +02001069 if (sdata->vif.type == NL80211_IFTYPE_ADHOC) {
Johannes Berg135a2112008-06-16 20:55:29 +02001070 /*
1071 * IEEE 802.11 standard does not require authentication in IBSS
Jiri Bencf0706e82007-05-05 11:45:53 -07001072 * networks and most implementations do not seem to use it.
1073 * However, try to reply to authentication attempts if someone
1074 * has actually implemented this.
Johannes Berg135a2112008-06-16 20:55:29 +02001075 */
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001076 if (auth_alg != WLAN_AUTH_OPEN || auth_transaction != 1)
Jiri Bencf0706e82007-05-05 11:45:53 -07001077 return;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001078 ieee80211_send_auth(sdata, ifsta, 2, NULL, 0, 0);
Jiri Bencf0706e82007-05-05 11:45:53 -07001079 }
1080
1081 if (auth_alg != ifsta->auth_alg ||
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001082 auth_transaction != ifsta->auth_transaction)
Jiri Bencf0706e82007-05-05 11:45:53 -07001083 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001084
1085 if (status_code != WLAN_STATUS_SUCCESS) {
Jiri Bencf0706e82007-05-05 11:45:53 -07001086 if (status_code == WLAN_STATUS_NOT_SUPPORTED_AUTH_ALG) {
1087 u8 algs[3];
1088 const int num_algs = ARRAY_SIZE(algs);
1089 int i, pos;
1090 algs[0] = algs[1] = algs[2] = 0xff;
1091 if (ifsta->auth_algs & IEEE80211_AUTH_ALG_OPEN)
1092 algs[0] = WLAN_AUTH_OPEN;
1093 if (ifsta->auth_algs & IEEE80211_AUTH_ALG_SHARED_KEY)
1094 algs[1] = WLAN_AUTH_SHARED_KEY;
1095 if (ifsta->auth_algs & IEEE80211_AUTH_ALG_LEAP)
1096 algs[2] = WLAN_AUTH_LEAP;
1097 if (ifsta->auth_alg == WLAN_AUTH_OPEN)
1098 pos = 0;
1099 else if (ifsta->auth_alg == WLAN_AUTH_SHARED_KEY)
1100 pos = 1;
1101 else
1102 pos = 2;
1103 for (i = 0; i < num_algs; i++) {
1104 pos++;
1105 if (pos >= num_algs)
1106 pos = 0;
1107 if (algs[pos] == ifsta->auth_alg ||
1108 algs[pos] == 0xff)
1109 continue;
1110 if (algs[pos] == WLAN_AUTH_SHARED_KEY &&
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001111 !ieee80211_sta_wep_configured(sdata))
Jiri Bencf0706e82007-05-05 11:45:53 -07001112 continue;
1113 ifsta->auth_alg = algs[pos];
Jiri Bencf0706e82007-05-05 11:45:53 -07001114 break;
1115 }
1116 }
1117 return;
1118 }
1119
1120 switch (ifsta->auth_alg) {
1121 case WLAN_AUTH_OPEN:
1122 case WLAN_AUTH_LEAP:
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001123 ieee80211_auth_completed(sdata, ifsta);
Jiri Bencf0706e82007-05-05 11:45:53 -07001124 break;
1125 case WLAN_AUTH_SHARED_KEY:
1126 if (ifsta->auth_transaction == 4)
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001127 ieee80211_auth_completed(sdata, ifsta);
Jiri Bencf0706e82007-05-05 11:45:53 -07001128 else
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001129 ieee80211_auth_challenge(sdata, ifsta, mgmt, len);
Jiri Bencf0706e82007-05-05 11:45:53 -07001130 break;
1131 }
1132}
1133
1134
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001135static void ieee80211_rx_mgmt_deauth(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001136 struct ieee80211_if_sta *ifsta,
1137 struct ieee80211_mgmt *mgmt,
1138 size_t len)
1139{
1140 u16 reason_code;
1141
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001142 if (len < 24 + 2)
Jiri Bencf0706e82007-05-05 11:45:53 -07001143 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001144
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001145 if (memcmp(ifsta->bssid, mgmt->sa, ETH_ALEN))
Jiri Bencf0706e82007-05-05 11:45:53 -07001146 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001147
1148 reason_code = le16_to_cpu(mgmt->u.deauth.reason_code);
1149
Johannes Berg988c0f72008-04-17 19:21:22 +02001150 if (ifsta->flags & IEEE80211_STA_AUTHENTICATED)
Zhu Yi97c8b012008-10-28 15:58:31 +08001151 printk(KERN_DEBUG "%s: deauthenticated (Reason: %u)\n",
1152 sdata->dev->name, reason_code);
Jiri Bencf0706e82007-05-05 11:45:53 -07001153
Tomas Winkler48c2fc52008-08-06 14:22:01 +03001154 if (ifsta->state == IEEE80211_STA_MLME_AUTHENTICATE ||
1155 ifsta->state == IEEE80211_STA_MLME_ASSOCIATE ||
1156 ifsta->state == IEEE80211_STA_MLME_ASSOCIATED) {
Ron Rindjunsky9859b812008-08-09 03:02:19 +03001157 ifsta->state = IEEE80211_STA_MLME_DIRECT_PROBE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001158 mod_timer(&ifsta->timer, jiffies +
1159 IEEE80211_RETRY_AUTH_INTERVAL);
1160 }
1161
Tomas Winkleraa458d12008-09-09 00:32:12 +03001162 ieee80211_set_disassoc(sdata, ifsta, true, false, 0);
Jiri Slabyd6f2da52007-08-28 17:01:54 -04001163 ifsta->flags &= ~IEEE80211_STA_AUTHENTICATED;
Jiri Bencf0706e82007-05-05 11:45:53 -07001164}
1165
1166
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001167static void ieee80211_rx_mgmt_disassoc(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001168 struct ieee80211_if_sta *ifsta,
1169 struct ieee80211_mgmt *mgmt,
1170 size_t len)
1171{
1172 u16 reason_code;
1173
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001174 if (len < 24 + 2)
Jiri Bencf0706e82007-05-05 11:45:53 -07001175 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001176
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001177 if (memcmp(ifsta->bssid, mgmt->sa, ETH_ALEN))
Jiri Bencf0706e82007-05-05 11:45:53 -07001178 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001179
1180 reason_code = le16_to_cpu(mgmt->u.disassoc.reason_code);
1181
Jiri Slabyd6f2da52007-08-28 17:01:54 -04001182 if (ifsta->flags & IEEE80211_STA_ASSOCIATED)
Zhu Yi97c8b012008-10-28 15:58:31 +08001183 printk(KERN_DEBUG "%s: disassociated (Reason: %u)\n",
1184 sdata->dev->name, reason_code);
Jiri Bencf0706e82007-05-05 11:45:53 -07001185
Tomas Winkler48c2fc52008-08-06 14:22:01 +03001186 if (ifsta->state == IEEE80211_STA_MLME_ASSOCIATED) {
1187 ifsta->state = IEEE80211_STA_MLME_ASSOCIATE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001188 mod_timer(&ifsta->timer, jiffies +
1189 IEEE80211_RETRY_AUTH_INTERVAL);
1190 }
1191
Vivek Natarajan5925d972008-11-21 22:19:50 -08001192 ieee80211_set_disassoc(sdata, ifsta, false, false, reason_code);
Jiri Bencf0706e82007-05-05 11:45:53 -07001193}
1194
1195
Johannes Berg471b3ef2007-12-28 14:32:58 +01001196static void ieee80211_rx_mgmt_assoc_resp(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001197 struct ieee80211_if_sta *ifsta,
1198 struct ieee80211_mgmt *mgmt,
1199 size_t len,
1200 int reassoc)
1201{
Johannes Berg471b3ef2007-12-28 14:32:58 +01001202 struct ieee80211_local *local = sdata->local;
Johannes Berg8318d782008-01-24 19:38:38 +01001203 struct ieee80211_supported_band *sband;
Jiri Bencf0706e82007-05-05 11:45:53 -07001204 struct sta_info *sta;
Johannes Berg8318d782008-01-24 19:38:38 +01001205 u64 rates, basic_rates;
Jiri Bencf0706e82007-05-05 11:45:53 -07001206 u16 capab_info, status_code, aid;
1207 struct ieee802_11_elems elems;
Johannes Bergbda39332008-10-11 01:51:51 +02001208 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
Jiri Bencf0706e82007-05-05 11:45:53 -07001209 u8 *pos;
Johannes Bergae5eb022008-10-14 16:58:37 +02001210 u32 changed = 0;
Jiri Bencf0706e82007-05-05 11:45:53 -07001211 int i, j;
Johannes Bergddf4ac52008-10-22 11:41:38 +02001212 bool have_higher_than_11mbit = false, newsta = false;
Johannes Bergae5eb022008-10-14 16:58:37 +02001213 u16 ap_ht_cap_flags;
Jiri Bencf0706e82007-05-05 11:45:53 -07001214
1215 /* AssocResp and ReassocResp have identical structure, so process both
1216 * of them in this function. */
1217
Tomas Winkler48c2fc52008-08-06 14:22:01 +03001218 if (ifsta->state != IEEE80211_STA_MLME_ASSOCIATE)
Jiri Bencf0706e82007-05-05 11:45:53 -07001219 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001220
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001221 if (len < 24 + 6)
Jiri Bencf0706e82007-05-05 11:45:53 -07001222 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001223
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001224 if (memcmp(ifsta->bssid, mgmt->sa, ETH_ALEN) != 0)
Jiri Bencf0706e82007-05-05 11:45:53 -07001225 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001226
1227 capab_info = le16_to_cpu(mgmt->u.assoc_resp.capab_info);
1228 status_code = le16_to_cpu(mgmt->u.assoc_resp.status_code);
1229 aid = le16_to_cpu(mgmt->u.assoc_resp.aid);
Jiri Bencf0706e82007-05-05 11:45:53 -07001230
Johannes Berg0c68ae262008-10-27 15:56:10 -07001231 printk(KERN_DEBUG "%s: RX %sssocResp from %pM (capab=0x%x "
Jiri Bencf0706e82007-05-05 11:45:53 -07001232 "status=%d aid=%d)\n",
Johannes Berg0c68ae262008-10-27 15:56:10 -07001233 sdata->dev->name, reassoc ? "Rea" : "A", mgmt->sa,
Johannes Bergddd68582007-10-22 14:51:37 +02001234 capab_info, status_code, (u16)(aid & ~(BIT(15) | BIT(14))));
Jiri Bencf0706e82007-05-05 11:45:53 -07001235
1236 if (status_code != WLAN_STATUS_SUCCESS) {
1237 printk(KERN_DEBUG "%s: AP denied association (code=%d)\n",
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001238 sdata->dev->name, status_code);
Daniel Drake8a69aa92007-07-27 15:43:23 +02001239 /* if this was a reassociation, ensure we try a "full"
1240 * association next time. This works around some broken APs
1241 * which do not correctly reject reassociation requests. */
Jiri Slabyd6f2da52007-08-28 17:01:54 -04001242 ifsta->flags &= ~IEEE80211_STA_PREV_BSSID_SET;
Jiri Bencf0706e82007-05-05 11:45:53 -07001243 return;
1244 }
1245
Johannes Berg1dd84aa2007-10-10 12:03:41 +02001246 if ((aid & (BIT(15) | BIT(14))) != (BIT(15) | BIT(14)))
1247 printk(KERN_DEBUG "%s: invalid aid value %d; bits 15:14 not "
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001248 "set\n", sdata->dev->name, aid);
Johannes Berg1dd84aa2007-10-10 12:03:41 +02001249 aid &= ~(BIT(15) | BIT(14));
1250
Jiri Bencf0706e82007-05-05 11:45:53 -07001251 pos = mgmt->u.assoc_resp.variable;
John W. Linville67a4cce2007-10-12 16:40:37 -04001252 ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), &elems);
Jiri Bencf0706e82007-05-05 11:45:53 -07001253
1254 if (!elems.supp_rates) {
1255 printk(KERN_DEBUG "%s: no SuppRates element in AssocResp\n",
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001256 sdata->dev->name);
Jiri Bencf0706e82007-05-05 11:45:53 -07001257 return;
1258 }
1259
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001260 printk(KERN_DEBUG "%s: associated\n", sdata->dev->name);
Jiri Bencf0706e82007-05-05 11:45:53 -07001261 ifsta->aid = aid;
1262 ifsta->ap_capab = capab_info;
1263
1264 kfree(ifsta->assocresp_ies);
1265 ifsta->assocresp_ies_len = len - (pos - (u8 *) mgmt);
Michael Wu0ec0b7a2007-07-27 15:43:24 +02001266 ifsta->assocresp_ies = kmalloc(ifsta->assocresp_ies_len, GFP_KERNEL);
Jiri Bencf0706e82007-05-05 11:45:53 -07001267 if (ifsta->assocresp_ies)
1268 memcpy(ifsta->assocresp_ies, pos, ifsta->assocresp_ies_len);
1269
Johannes Bergd0709a62008-02-25 16:27:46 +01001270 rcu_read_lock();
1271
Jiri Bencf0706e82007-05-05 11:45:53 -07001272 /* Add STA entry for the AP */
1273 sta = sta_info_get(local, ifsta->bssid);
1274 if (!sta) {
Johannes Bergc2b13452008-09-11 00:01:55 +02001275 struct ieee80211_bss *bss;
Johannes Bergddf4ac52008-10-22 11:41:38 +02001276
1277 newsta = true;
Johannes Bergd0709a62008-02-25 16:27:46 +01001278
Johannes Berg73651ee2008-02-25 16:27:47 +01001279 sta = sta_info_alloc(sdata, ifsta->bssid, GFP_ATOMIC);
1280 if (!sta) {
1281 printk(KERN_DEBUG "%s: failed to alloc STA entry for"
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001282 " the AP\n", sdata->dev->name);
Johannes Bergd0709a62008-02-25 16:27:46 +01001283 rcu_read_unlock();
Jiri Bencf0706e82007-05-05 11:45:53 -07001284 return;
1285 }
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001286 bss = ieee80211_rx_bss_get(local, ifsta->bssid,
Johannes Berg8318d782008-01-24 19:38:38 +01001287 local->hw.conf.channel->center_freq,
John W. Linvillecffdd302007-10-05 14:23:27 -04001288 ifsta->ssid, ifsta->ssid_len);
Jiri Bencf0706e82007-05-05 11:45:53 -07001289 if (bss) {
Jiri Bencf0706e82007-05-05 11:45:53 -07001290 sta->last_signal = bss->signal;
Bruno Randolf566bfe52008-05-08 19:15:40 +02001291 sta->last_qual = bss->qual;
Jiri Bencf0706e82007-05-05 11:45:53 -07001292 sta->last_noise = bss->noise;
Johannes Berg3e122be2008-07-09 14:40:34 +02001293 ieee80211_rx_bss_put(local, bss);
Jiri Bencf0706e82007-05-05 11:45:53 -07001294 }
Johannes Berg73651ee2008-02-25 16:27:47 +01001295
Ron Rindjunskya61dae12008-08-10 00:54:34 +03001296 /* update new sta with its last rx activity */
1297 sta->last_rx = jiffies;
Jiri Bencf0706e82007-05-05 11:45:53 -07001298 }
1299
Johannes Berg73651ee2008-02-25 16:27:47 +01001300 /*
1301 * FIXME: Do we really need to update the sta_info's information here?
1302 * We already know about the AP (we found it in our list) so it
1303 * should already be filled with the right info, no?
1304 * As is stands, all this is racy because typically we assume
1305 * the information that is filled in here (except flags) doesn't
1306 * change while a STA structure is alive. As such, it should move
1307 * to between the sta_info_alloc() and sta_info_insert() above.
1308 */
1309
Johannes Berg07346f812008-05-03 01:02:02 +02001310 set_sta_flags(sta, WLAN_STA_AUTH | WLAN_STA_ASSOC | WLAN_STA_ASSOC_AP |
1311 WLAN_STA_AUTHORIZED);
Jiri Bencf0706e82007-05-05 11:45:53 -07001312
1313 rates = 0;
Johannes Berg8318d782008-01-24 19:38:38 +01001314 basic_rates = 0;
1315 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
1316
Jiri Bencf0706e82007-05-05 11:45:53 -07001317 for (i = 0; i < elems.supp_rates_len; i++) {
1318 int rate = (elems.supp_rates[i] & 0x7f) * 5;
Tomas Winklerd61272c2008-10-30 17:08:08 +02001319 bool is_basic = !!(elems.supp_rates[i] & 0x80);
Johannes Berg8318d782008-01-24 19:38:38 +01001320
1321 if (rate > 110)
1322 have_higher_than_11mbit = true;
1323
1324 for (j = 0; j < sband->n_bitrates; j++) {
Tomas Winklerd61272c2008-10-30 17:08:08 +02001325 if (sband->bitrates[j].bitrate == rate) {
Jiri Bencf0706e82007-05-05 11:45:53 -07001326 rates |= BIT(j);
Tomas Winklerd61272c2008-10-30 17:08:08 +02001327 if (is_basic)
1328 basic_rates |= BIT(j);
1329 break;
1330 }
Johannes Berg8318d782008-01-24 19:38:38 +01001331 }
Jiri Bencf0706e82007-05-05 11:45:53 -07001332 }
Johannes Berg8318d782008-01-24 19:38:38 +01001333
Jiri Bencf0706e82007-05-05 11:45:53 -07001334 for (i = 0; i < elems.ext_supp_rates_len; i++) {
1335 int rate = (elems.ext_supp_rates[i] & 0x7f) * 5;
Tomas Winklerd61272c2008-10-30 17:08:08 +02001336 bool is_basic = !!(elems.supp_rates[i] & 0x80);
Johannes Berg8318d782008-01-24 19:38:38 +01001337
1338 if (rate > 110)
1339 have_higher_than_11mbit = true;
1340
1341 for (j = 0; j < sband->n_bitrates; j++) {
Tomas Winklerd61272c2008-10-30 17:08:08 +02001342 if (sband->bitrates[j].bitrate == rate) {
Jiri Bencf0706e82007-05-05 11:45:53 -07001343 rates |= BIT(j);
Tomas Winklerd61272c2008-10-30 17:08:08 +02001344 if (is_basic)
1345 basic_rates |= BIT(j);
1346 break;
1347 }
Johannes Berg8318d782008-01-24 19:38:38 +01001348 }
Jiri Bencf0706e82007-05-05 11:45:53 -07001349 }
Johannes Berg8318d782008-01-24 19:38:38 +01001350
Johannes Berg323ce792008-09-11 02:45:11 +02001351 sta->sta.supp_rates[local->hw.conf.channel->band] = rates;
Johannes Bergbda39332008-10-11 01:51:51 +02001352 sdata->vif.bss_conf.basic_rates = basic_rates;
Johannes Berg8318d782008-01-24 19:38:38 +01001353
1354 /* cf. IEEE 802.11 9.2.12 */
1355 if (local->hw.conf.channel->band == IEEE80211_BAND_2GHZ &&
1356 have_higher_than_11mbit)
1357 sdata->flags |= IEEE80211_SDATA_OPERATING_GMODE;
1358 else
1359 sdata->flags &= ~IEEE80211_SDATA_OPERATING_GMODE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001360
Johannes Bergae5eb022008-10-14 16:58:37 +02001361 if (elems.ht_cap_elem)
1362 ieee80211_ht_cap_ie_to_sta_ht_cap(sband,
Johannes Bergd9fe60d2008-10-09 12:13:49 +02001363 elems.ht_cap_elem, &sta->sta.ht_cap);
Johannes Bergae5eb022008-10-14 16:58:37 +02001364
1365 ap_ht_cap_flags = sta->sta.ht_cap.cap;
Ron Rindjunskyd3c990f2007-11-26 16:14:34 +02001366
Johannes Berg4b7679a2008-09-18 18:14:18 +02001367 rate_control_rate_init(sta);
Jiri Bencf0706e82007-05-05 11:45:53 -07001368
Johannes Bergddf4ac52008-10-22 11:41:38 +02001369 if (elems.wmm_param)
Johannes Berg07346f812008-05-03 01:02:02 +02001370 set_sta_flags(sta, WLAN_STA_WME);
Johannes Bergddf4ac52008-10-22 11:41:38 +02001371
1372 if (newsta) {
1373 int err = sta_info_insert(sta);
1374 if (err) {
1375 printk(KERN_DEBUG "%s: failed to insert STA entry for"
1376 " the AP (error %d)\n", sdata->dev->name, err);
1377 rcu_read_unlock();
1378 return;
1379 }
1380 }
1381
1382 rcu_read_unlock();
1383
1384 if (elems.wmm_param)
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001385 ieee80211_sta_wmm_params(local, ifsta, elems.wmm_param,
Jiri Bencf0706e82007-05-05 11:45:53 -07001386 elems.wmm_param_len);
Jiri Bencf0706e82007-05-05 11:45:53 -07001387
Johannes Bergae5eb022008-10-14 16:58:37 +02001388 if (elems.ht_info_elem && elems.wmm_param &&
1389 (ifsta->flags & IEEE80211_STA_WMM_ENABLED))
1390 changed |= ieee80211_enable_ht(sdata, elems.ht_info_elem,
1391 ap_ht_cap_flags);
1392
Tomas Winkler21c0cbe2008-03-28 16:33:34 -07001393 /* set AID and assoc capability,
1394 * ieee80211_set_associated() will tell the driver */
Johannes Berg8318d782008-01-24 19:38:38 +01001395 bss_conf->aid = aid;
Tomas Winkler21c0cbe2008-03-28 16:33:34 -07001396 bss_conf->assoc_capability = capab_info;
Johannes Bergae5eb022008-10-14 16:58:37 +02001397 ieee80211_set_associated(sdata, ifsta, changed);
Jiri Bencf0706e82007-05-05 11:45:53 -07001398
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001399 ieee80211_associated(sdata, ifsta);
Jiri Bencf0706e82007-05-05 11:45:53 -07001400}
1401
1402
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001403static int ieee80211_sta_join_ibss(struct ieee80211_sub_if_data *sdata,
Bruno Randolfa6072682008-02-18 11:21:15 +09001404 struct ieee80211_if_sta *ifsta,
Johannes Bergc2b13452008-09-11 00:01:55 +02001405 struct ieee80211_bss *bss)
Bruno Randolfa6072682008-02-18 11:21:15 +09001406{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001407 struct ieee80211_local *local = sdata->local;
Bruno Randolfa6072682008-02-18 11:21:15 +09001408 int res, rates, i, j;
1409 struct sk_buff *skb;
1410 struct ieee80211_mgmt *mgmt;
Bruno Randolfa6072682008-02-18 11:21:15 +09001411 u8 *pos;
Bruno Randolfa6072682008-02-18 11:21:15 +09001412 struct ieee80211_supported_band *sband;
Dan Williams507b06d2008-06-03 23:39:55 -04001413 union iwreq_data wrqu;
Bruno Randolfa6072682008-02-18 11:21:15 +09001414
Rami Rosene2ef12d2008-10-22 09:58:39 +02001415 skb = dev_alloc_skb(local->hw.extra_tx_headroom + 400);
1416 if (!skb) {
1417 printk(KERN_DEBUG "%s: failed to allocate buffer for probe "
1418 "response\n", sdata->dev->name);
1419 return -ENOMEM;
1420 }
1421
Bruno Randolfa6072682008-02-18 11:21:15 +09001422 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
1423
1424 /* Remove possible STA entries from other IBSS networks. */
Johannes Bergdc6676b2008-03-31 19:23:03 +02001425 sta_info_flush_delayed(sdata);
Bruno Randolfa6072682008-02-18 11:21:15 +09001426
1427 if (local->ops->reset_tsf) {
1428 /* Reset own TSF to allow time synchronization work. */
1429 local->ops->reset_tsf(local_to_hw(local));
1430 }
1431 memcpy(ifsta->bssid, bss->bssid, ETH_ALEN);
Johannes Berg9d139c82008-07-09 14:40:37 +02001432 res = ieee80211_if_config(sdata, IEEE80211_IFCC_BSSID);
Bruno Randolfa6072682008-02-18 11:21:15 +09001433 if (res)
1434 return res;
1435
1436 local->hw.conf.beacon_int = bss->beacon_int >= 10 ? bss->beacon_int : 10;
1437
Bruno Randolfa6072682008-02-18 11:21:15 +09001438 sdata->drop_unencrypted = bss->capability &
1439 WLAN_CAPABILITY_PRIVACY ? 1 : 0;
1440
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001441 res = ieee80211_set_freq(sdata, bss->freq);
Bruno Randolfa6072682008-02-18 11:21:15 +09001442
Assaf Kraussbe038b32008-06-05 19:55:21 +03001443 if (res)
1444 return res;
Bruno Randolfa6072682008-02-18 11:21:15 +09001445
Johannes Berg9d139c82008-07-09 14:40:37 +02001446 /* Build IBSS probe response */
Bruno Randolfa6072682008-02-18 11:21:15 +09001447
Rami Rosene2ef12d2008-10-22 09:58:39 +02001448 skb_reserve(skb, local->hw.extra_tx_headroom);
Bruno Randolfa6072682008-02-18 11:21:15 +09001449
Rami Rosene2ef12d2008-10-22 09:58:39 +02001450 mgmt = (struct ieee80211_mgmt *)
1451 skb_put(skb, 24 + sizeof(mgmt->u.beacon));
1452 memset(mgmt, 0, 24 + sizeof(mgmt->u.beacon));
1453 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
1454 IEEE80211_STYPE_PROBE_RESP);
1455 memset(mgmt->da, 0xff, ETH_ALEN);
1456 memcpy(mgmt->sa, sdata->dev->dev_addr, ETH_ALEN);
1457 memcpy(mgmt->bssid, ifsta->bssid, ETH_ALEN);
1458 mgmt->u.beacon.beacon_int =
1459 cpu_to_le16(local->hw.conf.beacon_int);
1460 mgmt->u.beacon.timestamp = cpu_to_le64(bss->timestamp);
1461 mgmt->u.beacon.capab_info = cpu_to_le16(bss->capability);
Bruno Randolfa6072682008-02-18 11:21:15 +09001462
Rami Rosene2ef12d2008-10-22 09:58:39 +02001463 pos = skb_put(skb, 2 + ifsta->ssid_len);
1464 *pos++ = WLAN_EID_SSID;
1465 *pos++ = ifsta->ssid_len;
1466 memcpy(pos, ifsta->ssid, ifsta->ssid_len);
Bruno Randolfa6072682008-02-18 11:21:15 +09001467
Rami Rosene2ef12d2008-10-22 09:58:39 +02001468 rates = bss->supp_rates_len;
1469 if (rates > 8)
1470 rates = 8;
1471 pos = skb_put(skb, 2 + rates);
1472 *pos++ = WLAN_EID_SUPP_RATES;
1473 *pos++ = rates;
1474 memcpy(pos, bss->supp_rates, rates);
Bruno Randolfa6072682008-02-18 11:21:15 +09001475
Rami Rosene2ef12d2008-10-22 09:58:39 +02001476 if (bss->band == IEEE80211_BAND_2GHZ) {
1477 pos = skb_put(skb, 2 + 1);
1478 *pos++ = WLAN_EID_DS_PARAMS;
1479 *pos++ = 1;
1480 *pos++ = ieee80211_frequency_to_channel(bss->freq);
Bruno Randolfa6072682008-02-18 11:21:15 +09001481 }
1482
Rami Rosene2ef12d2008-10-22 09:58:39 +02001483 pos = skb_put(skb, 2 + 2);
1484 *pos++ = WLAN_EID_IBSS_PARAMS;
1485 *pos++ = 2;
1486 /* FIX: set ATIM window based on scan results */
1487 *pos++ = 0;
1488 *pos++ = 0;
1489
1490 if (bss->supp_rates_len > 8) {
1491 rates = bss->supp_rates_len - 8;
1492 pos = skb_put(skb, 2 + rates);
1493 *pos++ = WLAN_EID_EXT_SUPP_RATES;
1494 *pos++ = rates;
1495 memcpy(pos, &bss->supp_rates[8], rates);
1496 }
1497
1498 ifsta->probe_resp = skb;
1499
1500 ieee80211_if_config(sdata, IEEE80211_IFCC_BEACON);
1501
1502
Johannes Berg9d139c82008-07-09 14:40:37 +02001503 rates = 0;
1504 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
1505 for (i = 0; i < bss->supp_rates_len; i++) {
1506 int bitrate = (bss->supp_rates[i] & 0x7f) * 5;
1507 for (j = 0; j < sband->n_bitrates; j++)
1508 if (sband->bitrates[j].bitrate == bitrate)
1509 rates |= BIT(j);
1510 }
1511 ifsta->supp_rates_bits[local->hw.conf.channel->band] = rates;
1512
Johannes Bergb079ada2008-09-09 09:32:59 +02001513 ieee80211_sta_def_wmm_params(sdata, bss);
Johannes Berg9d139c82008-07-09 14:40:37 +02001514
Tomas Winkler48c2fc52008-08-06 14:22:01 +03001515 ifsta->state = IEEE80211_STA_MLME_IBSS_JOINED;
Bruno Randolfa6072682008-02-18 11:21:15 +09001516 mod_timer(&ifsta->timer, jiffies + IEEE80211_IBSS_MERGE_INTERVAL);
1517
Emmanuel Grumbach4492bea2008-09-22 17:10:10 +03001518 ieee80211_led_assoc(local, true);
1519
Dan Williams507b06d2008-06-03 23:39:55 -04001520 memset(&wrqu, 0, sizeof(wrqu));
1521 memcpy(wrqu.ap_addr.sa_data, bss->bssid, ETH_ALEN);
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001522 wireless_send_event(sdata->dev, SIOCGIWAP, &wrqu, NULL);
Bruno Randolfa6072682008-02-18 11:21:15 +09001523
1524 return res;
1525}
1526
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001527static void ieee80211_rx_bss_info(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001528 struct ieee80211_mgmt *mgmt,
1529 size_t len,
1530 struct ieee80211_rx_status *rx_status,
Johannes Berg98c8fcc2008-09-08 17:44:26 +02001531 struct ieee802_11_elems *elems,
1532 bool beacon)
Jiri Bencf0706e82007-05-05 11:45:53 -07001533{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001534 struct ieee80211_local *local = sdata->local;
Johannes Berg98c8fcc2008-09-08 17:44:26 +02001535 int freq;
Johannes Bergc2b13452008-09-11 00:01:55 +02001536 struct ieee80211_bss *bss;
Jiri Bencf0706e82007-05-05 11:45:53 -07001537 struct sta_info *sta;
Johannes Bergfab7d4a2008-03-16 18:42:44 +01001538 struct ieee80211_channel *channel;
Emmanuel Grumbach8e1535d2008-09-03 23:42:20 +03001539 u64 beacon_timestamp, rx_timestamp;
1540 u64 supp_rates = 0;
Emmanuel Grumbach8e1535d2008-09-03 23:42:20 +03001541 enum ieee80211_band band = rx_status->band;
Jiri Bencf0706e82007-05-05 11:45:53 -07001542
Johannes Berg5bda6172008-09-08 11:05:10 +02001543 if (elems->ds_params && elems->ds_params_len == 1)
1544 freq = ieee80211_channel_to_frequency(elems->ds_params[0]);
1545 else
1546 freq = rx_status->freq;
1547
1548 channel = ieee80211_get_channel(local->hw.wiphy, freq);
1549
1550 if (!channel || channel->flags & IEEE80211_CHAN_DISABLED)
1551 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001552
Johannes Berg05c914f2008-09-11 00:01:58 +02001553 if (sdata->vif.type == NL80211_IFTYPE_ADHOC && elems->supp_rates &&
Emmanuel Grumbach8e1535d2008-09-03 23:42:20 +03001554 memcmp(mgmt->bssid, sdata->u.sta.bssid, ETH_ALEN) == 0) {
Emmanuel Grumbach8e1535d2008-09-03 23:42:20 +03001555 supp_rates = ieee80211_sta_get_rates(local, elems, band);
1556
Johannes Berg69e6c012008-09-08 11:05:08 +02001557 rcu_read_lock();
1558
Emmanuel Grumbach8e1535d2008-09-03 23:42:20 +03001559 sta = sta_info_get(local, mgmt->sa);
1560 if (sta) {
1561 u64 prev_rates;
1562
Johannes Berg323ce792008-09-11 02:45:11 +02001563 prev_rates = sta->sta.supp_rates[band];
Emmanuel Grumbach8e1535d2008-09-03 23:42:20 +03001564 /* make sure mandatory rates are always added */
Johannes Berg323ce792008-09-11 02:45:11 +02001565 sta->sta.supp_rates[band] = supp_rates |
Johannes Berg96dd22a2008-09-11 00:01:57 +02001566 ieee80211_mandatory_rates(local, band);
Emmanuel Grumbach8e1535d2008-09-03 23:42:20 +03001567
1568#ifdef CONFIG_MAC80211_IBSS_DEBUG
Johannes Berg323ce792008-09-11 02:45:11 +02001569 if (sta->sta.supp_rates[band] != prev_rates)
Emmanuel Grumbach8e1535d2008-09-03 23:42:20 +03001570 printk(KERN_DEBUG "%s: updated supp_rates set "
Johannes Berg0c68ae262008-10-27 15:56:10 -07001571 "for %pM based on beacon info (0x%llx | "
Emmanuel Grumbach8e1535d2008-09-03 23:42:20 +03001572 "0x%llx -> 0x%llx)\n",
Johannes Berg17741cd2008-09-11 00:02:02 +02001573 sdata->dev->name,
Johannes Berg0c68ae262008-10-27 15:56:10 -07001574 sta->sta.addr,
Emmanuel Grumbach8e1535d2008-09-03 23:42:20 +03001575 (unsigned long long) prev_rates,
1576 (unsigned long long) supp_rates,
Johannes Berg323ce792008-09-11 02:45:11 +02001577 (unsigned long long) sta->sta.supp_rates[band]);
Emmanuel Grumbach8e1535d2008-09-03 23:42:20 +03001578#endif
1579 } else {
Rami Rosenab1f5c02008-12-11 14:00:25 +02001580 ieee80211_ibss_add_sta(sdata, mgmt->bssid, mgmt->sa, supp_rates);
Jiri Bencf0706e82007-05-05 11:45:53 -07001581 }
Jiri Bencf0706e82007-05-05 11:45:53 -07001582
Johannes Berg69e6c012008-09-08 11:05:08 +02001583 rcu_read_unlock();
1584 }
Johannes Bergd0709a62008-02-25 16:27:46 +01001585
Johannes Berg98c8fcc2008-09-08 17:44:26 +02001586 bss = ieee80211_bss_info_update(local, rx_status, mgmt, len, elems,
1587 freq, beacon);
1588 if (!bss)
1589 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001590
Johannes Berg98c8fcc2008-09-08 17:44:26 +02001591 /* was just updated in ieee80211_bss_info_update */
1592 beacon_timestamp = bss->timestamp;
Daniel Drake56282212007-07-10 19:32:10 +02001593
Johannes Berg30b89b02008-04-16 17:43:20 +02001594 /*
1595 * In STA mode, the remaining parameters should not be overridden
1596 * by beacons because they're not necessarily accurate there.
1597 */
Johannes Berg05c914f2008-09-11 00:01:58 +02001598 if (sdata->vif.type != NL80211_IFTYPE_ADHOC &&
Ron Rindjunsky9859b812008-08-09 03:02:19 +03001599 bss->last_probe_resp && beacon) {
Johannes Berg3e122be2008-07-09 14:40:34 +02001600 ieee80211_rx_bss_put(local, bss);
Johannes Berg30b89b02008-04-16 17:43:20 +02001601 return;
1602 }
1603
Bruno Randolf9d9bf772008-02-18 11:21:36 +09001604 /* check if we need to merge IBSS */
Johannes Berg05c914f2008-09-11 00:01:58 +02001605 if (sdata->vif.type == NL80211_IFTYPE_ADHOC && beacon &&
Johannes Bergfba4a1e2008-02-21 11:08:33 +01001606 bss->capability & WLAN_CAPABILITY_IBSS &&
Bruno Randolf9d9bf772008-02-18 11:21:36 +09001607 bss->freq == local->oper_channel->center_freq &&
Ester Kummerae6a44e2008-06-27 18:54:48 +03001608 elems->ssid_len == sdata->u.sta.ssid_len &&
1609 memcmp(elems->ssid, sdata->u.sta.ssid,
1610 sdata->u.sta.ssid_len) == 0) {
Bruno Randolf9d9bf772008-02-18 11:21:36 +09001611 if (rx_status->flag & RX_FLAG_TSFT) {
1612 /* in order for correct IBSS merging we need mactime
1613 *
1614 * since mactime is defined as the time the first data
1615 * symbol of the frame hits the PHY, and the timestamp
1616 * of the beacon is defined as "the time that the data
1617 * symbol containing the first bit of the timestamp is
1618 * transmitted to the PHY plus the transmitting STA’s
1619 * delays through its local PHY from the MAC-PHY
1620 * interface to its interface with the WM"
1621 * (802.11 11.1.2) - equals the time this bit arrives at
1622 * the receiver - we have to take into account the
1623 * offset between the two.
1624 * e.g: at 1 MBit that means mactime is 192 usec earlier
1625 * (=24 bytes * 8 usecs/byte) than the beacon timestamp.
1626 */
Jouni Malinen0fb8ca42008-12-12 14:38:33 +02001627 int rate;
1628 if (rx_status->flag & RX_FLAG_HT) {
1629 rate = 65; /* TODO: HT rates */
1630 } else {
1631 rate = local->hw.wiphy->bands[band]->
Bruno Randolf9d9bf772008-02-18 11:21:36 +09001632 bitrates[rx_status->rate_idx].bitrate;
Jouni Malinen0fb8ca42008-12-12 14:38:33 +02001633 }
Bruno Randolf9d9bf772008-02-18 11:21:36 +09001634 rx_timestamp = rx_status->mactime + (24 * 8 * 10 / rate);
1635 } else if (local && local->ops && local->ops->get_tsf)
1636 /* second best option: get current TSF */
1637 rx_timestamp = local->ops->get_tsf(local_to_hw(local));
1638 else
1639 /* can't merge without knowing the TSF */
1640 rx_timestamp = -1LLU;
1641#ifdef CONFIG_MAC80211_IBSS_DEBUG
Johannes Berg0c68ae262008-10-27 15:56:10 -07001642 printk(KERN_DEBUG "RX beacon SA=%pM BSSID="
1643 "%pM TSF=0x%llx BCN=0x%llx diff=%lld @%lu\n",
1644 mgmt->sa, mgmt->bssid,
Bruno Randolf9d9bf772008-02-18 11:21:36 +09001645 (unsigned long long)rx_timestamp,
1646 (unsigned long long)beacon_timestamp,
1647 (unsigned long long)(rx_timestamp - beacon_timestamp),
1648 jiffies);
1649#endif /* CONFIG_MAC80211_IBSS_DEBUG */
1650 if (beacon_timestamp > rx_timestamp) {
John W. Linville576fdea2008-08-26 20:33:34 -04001651#ifdef CONFIG_MAC80211_IBSS_DEBUG
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001652 printk(KERN_DEBUG "%s: beacon TSF higher than "
Johannes Berg0c68ae262008-10-27 15:56:10 -07001653 "local TSF - IBSS merge with BSSID %pM\n",
1654 sdata->dev->name, mgmt->bssid);
Johannes Bergfba4a1e2008-02-21 11:08:33 +01001655#endif
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001656 ieee80211_sta_join_ibss(sdata, &sdata->u.sta, bss);
Rami Rosenab1f5c02008-12-11 14:00:25 +02001657 ieee80211_ibss_add_sta(sdata, mgmt->bssid, mgmt->sa, supp_rates);
Bruno Randolf9d9bf772008-02-18 11:21:36 +09001658 }
1659 }
1660
Johannes Berg3e122be2008-07-09 14:40:34 +02001661 ieee80211_rx_bss_put(local, bss);
Jiri Bencf0706e82007-05-05 11:45:53 -07001662}
1663
1664
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001665static void ieee80211_rx_mgmt_probe_resp(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001666 struct ieee80211_mgmt *mgmt,
1667 size_t len,
1668 struct ieee80211_rx_status *rx_status)
1669{
Ester Kummerae6a44e2008-06-27 18:54:48 +03001670 size_t baselen;
1671 struct ieee802_11_elems elems;
Ron Rindjunsky9859b812008-08-09 03:02:19 +03001672 struct ieee80211_if_sta *ifsta = &sdata->u.sta;
Ester Kummerae6a44e2008-06-27 18:54:48 +03001673
Tomas Winkler8e7cdbb2008-08-03 14:32:01 +03001674 if (memcmp(mgmt->da, sdata->dev->dev_addr, ETH_ALEN))
1675 return; /* ignore ProbeResp to foreign address */
1676
Ester Kummerae6a44e2008-06-27 18:54:48 +03001677 baselen = (u8 *) mgmt->u.probe_resp.variable - (u8 *) mgmt;
1678 if (baselen > len)
1679 return;
1680
1681 ieee802_11_parse_elems(mgmt->u.probe_resp.variable, len - baselen,
1682 &elems);
1683
Johannes Berg98c8fcc2008-09-08 17:44:26 +02001684 ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems, false);
Ron Rindjunsky9859b812008-08-09 03:02:19 +03001685
1686 /* direct probe may be part of the association flow */
1687 if (test_and_clear_bit(IEEE80211_STA_REQ_DIRECT_PROBE,
1688 &ifsta->request)) {
1689 printk(KERN_DEBUG "%s direct probe responded\n",
1690 sdata->dev->name);
1691 ieee80211_authenticate(sdata, ifsta);
1692 }
Jiri Bencf0706e82007-05-05 11:45:53 -07001693}
1694
1695
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001696static void ieee80211_rx_mgmt_beacon(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001697 struct ieee80211_mgmt *mgmt,
1698 size_t len,
1699 struct ieee80211_rx_status *rx_status)
1700{
Jiri Bencf0706e82007-05-05 11:45:53 -07001701 struct ieee80211_if_sta *ifsta;
Jiri Bencf0706e82007-05-05 11:45:53 -07001702 size_t baselen;
1703 struct ieee802_11_elems elems;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001704 struct ieee80211_local *local = sdata->local;
Johannes Berg471b3ef2007-12-28 14:32:58 +01001705 u32 changed = 0;
Johannes Berg7a5158e2008-10-08 10:59:33 +02001706 bool erp_valid;
1707 u8 erp_value = 0;
Jiri Bencf0706e82007-05-05 11:45:53 -07001708
Ester Kummerae6a44e2008-06-27 18:54:48 +03001709 /* Process beacon from the current BSS */
1710 baselen = (u8 *) mgmt->u.beacon.variable - (u8 *) mgmt;
1711 if (baselen > len)
1712 return;
1713
1714 ieee802_11_parse_elems(mgmt->u.beacon.variable, len - baselen, &elems);
1715
Johannes Berg98c8fcc2008-09-08 17:44:26 +02001716 ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems, true);
Jiri Bencf0706e82007-05-05 11:45:53 -07001717
Johannes Berg05c914f2008-09-11 00:01:58 +02001718 if (sdata->vif.type != NL80211_IFTYPE_STATION)
Jiri Bencf0706e82007-05-05 11:45:53 -07001719 return;
1720 ifsta = &sdata->u.sta;
1721
Jiri Slabyd6f2da52007-08-28 17:01:54 -04001722 if (!(ifsta->flags & IEEE80211_STA_ASSOCIATED) ||
Jiri Bencf0706e82007-05-05 11:45:53 -07001723 memcmp(ifsta->bssid, mgmt->bssid, ETH_ALEN) != 0)
1724 return;
1725
Johannes Bergfe3fa822008-09-08 11:05:09 +02001726 ieee80211_sta_wmm_params(local, ifsta, elems.wmm_param,
1727 elems.wmm_param_len);
1728
Johannes Berg7a5158e2008-10-08 10:59:33 +02001729
1730 if (elems.erp_info && elems.erp_info_len >= 1) {
1731 erp_valid = true;
1732 erp_value = elems.erp_info[0];
1733 } else {
1734 erp_valid = false;
John W. Linville50c4afb2008-04-15 14:09:27 -04001735 }
Johannes Berg7a5158e2008-10-08 10:59:33 +02001736 changed |= ieee80211_handle_bss_capability(sdata,
1737 le16_to_cpu(mgmt->u.beacon.capab_info),
1738 erp_valid, erp_value);
Jiri Bencf0706e82007-05-05 11:45:53 -07001739
Ron Rindjunskyd3c990f2007-11-26 16:14:34 +02001740
Johannes Bergae5eb022008-10-14 16:58:37 +02001741 if (elems.ht_cap_elem && elems.ht_info_elem && elems.wmm_param) {
1742 struct sta_info *sta;
1743 struct ieee80211_supported_band *sband;
1744 u16 ap_ht_cap_flags;
1745
1746 rcu_read_lock();
1747
1748 sta = sta_info_get(local, ifsta->bssid);
1749 if (!sta) {
1750 rcu_read_unlock();
1751 return;
1752 }
1753
1754 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
1755
1756 ieee80211_ht_cap_ie_to_sta_ht_cap(sband,
1757 elems.ht_cap_elem, &sta->sta.ht_cap);
1758
1759 ap_ht_cap_flags = sta->sta.ht_cap.cap;
1760
1761 rcu_read_unlock();
1762
1763 changed |= ieee80211_enable_ht(sdata, elems.ht_info_elem,
1764 ap_ht_cap_flags);
Ron Rindjunskyd3c990f2007-11-26 16:14:34 +02001765 }
1766
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001767 if (elems.country_elem) {
1768 /* Note we are only reviewing this on beacons
1769 * for the BSSID we are associated to */
1770 regulatory_hint_11d(local->hw.wiphy,
1771 elems.country_elem, elems.country_elem_len);
1772 }
1773
Johannes Berg471b3ef2007-12-28 14:32:58 +01001774 ieee80211_bss_info_change_notify(sdata, changed);
Jiri Bencf0706e82007-05-05 11:45:53 -07001775}
1776
1777
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001778static void ieee80211_rx_mgmt_probe_req(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001779 struct ieee80211_if_sta *ifsta,
1780 struct ieee80211_mgmt *mgmt,
1781 size_t len,
1782 struct ieee80211_rx_status *rx_status)
1783{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001784 struct ieee80211_local *local = sdata->local;
Jiri Bencf0706e82007-05-05 11:45:53 -07001785 int tx_last_beacon;
1786 struct sk_buff *skb;
1787 struct ieee80211_mgmt *resp;
1788 u8 *pos, *end;
1789
Johannes Berg05c914f2008-09-11 00:01:58 +02001790 if (sdata->vif.type != NL80211_IFTYPE_ADHOC ||
Tomas Winkler48c2fc52008-08-06 14:22:01 +03001791 ifsta->state != IEEE80211_STA_MLME_IBSS_JOINED ||
Jiri Bencf0706e82007-05-05 11:45:53 -07001792 len < 24 + 2 || !ifsta->probe_resp)
1793 return;
1794
1795 if (local->ops->tx_last_beacon)
1796 tx_last_beacon = local->ops->tx_last_beacon(local_to_hw(local));
1797 else
1798 tx_last_beacon = 1;
1799
1800#ifdef CONFIG_MAC80211_IBSS_DEBUG
Johannes Berg0c68ae262008-10-27 15:56:10 -07001801 printk(KERN_DEBUG "%s: RX ProbeReq SA=%pM DA=%pM BSSID=%pM"
1802 " (tx_last_beacon=%d)\n",
1803 sdata->dev->name, mgmt->sa, mgmt->da,
1804 mgmt->bssid, tx_last_beacon);
Jiri Bencf0706e82007-05-05 11:45:53 -07001805#endif /* CONFIG_MAC80211_IBSS_DEBUG */
1806
1807 if (!tx_last_beacon)
1808 return;
1809
1810 if (memcmp(mgmt->bssid, ifsta->bssid, ETH_ALEN) != 0 &&
1811 memcmp(mgmt->bssid, "\xff\xff\xff\xff\xff\xff", ETH_ALEN) != 0)
1812 return;
1813
1814 end = ((u8 *) mgmt) + len;
1815 pos = mgmt->u.probe_req.variable;
1816 if (pos[0] != WLAN_EID_SSID ||
1817 pos + 2 + pos[1] > end) {
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001818#ifdef CONFIG_MAC80211_IBSS_DEBUG
1819 printk(KERN_DEBUG "%s: Invalid SSID IE in ProbeReq "
Johannes Berg0c68ae262008-10-27 15:56:10 -07001820 "from %pM\n",
1821 sdata->dev->name, mgmt->sa);
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001822#endif
Jiri Bencf0706e82007-05-05 11:45:53 -07001823 return;
1824 }
1825 if (pos[1] != 0 &&
1826 (pos[1] != ifsta->ssid_len ||
1827 memcmp(pos + 2, ifsta->ssid, ifsta->ssid_len) != 0)) {
1828 /* Ignore ProbeReq for foreign SSID */
1829 return;
1830 }
1831
1832 /* Reply with ProbeResp */
Michael Wu0ec0b7a2007-07-27 15:43:24 +02001833 skb = skb_copy(ifsta->probe_resp, GFP_KERNEL);
Jiri Bencf0706e82007-05-05 11:45:53 -07001834 if (!skb)
1835 return;
1836
1837 resp = (struct ieee80211_mgmt *) skb->data;
1838 memcpy(resp->da, mgmt->sa, ETH_ALEN);
1839#ifdef CONFIG_MAC80211_IBSS_DEBUG
Johannes Berg0c68ae262008-10-27 15:56:10 -07001840 printk(KERN_DEBUG "%s: Sending ProbeResp to %pM\n",
1841 sdata->dev->name, resp->da);
Jiri Bencf0706e82007-05-05 11:45:53 -07001842#endif /* CONFIG_MAC80211_IBSS_DEBUG */
Johannes Berge50db652008-09-09 15:07:09 +02001843 ieee80211_tx_skb(sdata, skb, 0);
Jiri Bencf0706e82007-05-05 11:45:53 -07001844}
1845
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001846void ieee80211_sta_rx_mgmt(struct ieee80211_sub_if_data *sdata, struct sk_buff *skb,
Jiri Bencf0706e82007-05-05 11:45:53 -07001847 struct ieee80211_rx_status *rx_status)
1848{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001849 struct ieee80211_local *local = sdata->local;
Jiri Bencf0706e82007-05-05 11:45:53 -07001850 struct ieee80211_if_sta *ifsta;
1851 struct ieee80211_mgmt *mgmt;
1852 u16 fc;
1853
1854 if (skb->len < 24)
1855 goto fail;
1856
Jiri Bencf0706e82007-05-05 11:45:53 -07001857 ifsta = &sdata->u.sta;
1858
1859 mgmt = (struct ieee80211_mgmt *) skb->data;
1860 fc = le16_to_cpu(mgmt->frame_control);
1861
1862 switch (fc & IEEE80211_FCTL_STYPE) {
1863 case IEEE80211_STYPE_PROBE_REQ:
1864 case IEEE80211_STYPE_PROBE_RESP:
1865 case IEEE80211_STYPE_BEACON:
1866 memcpy(skb->cb, rx_status, sizeof(*rx_status));
1867 case IEEE80211_STYPE_AUTH:
1868 case IEEE80211_STYPE_ASSOC_RESP:
1869 case IEEE80211_STYPE_REASSOC_RESP:
1870 case IEEE80211_STYPE_DEAUTH:
1871 case IEEE80211_STYPE_DISASSOC:
1872 skb_queue_tail(&ifsta->skb_queue, skb);
1873 queue_work(local->hw.workqueue, &ifsta->work);
1874 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001875 }
1876
1877 fail:
1878 kfree_skb(skb);
1879}
1880
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001881static void ieee80211_sta_rx_queued_mgmt(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001882 struct sk_buff *skb)
1883{
1884 struct ieee80211_rx_status *rx_status;
Jiri Bencf0706e82007-05-05 11:45:53 -07001885 struct ieee80211_if_sta *ifsta;
1886 struct ieee80211_mgmt *mgmt;
1887 u16 fc;
1888
Jiri Bencf0706e82007-05-05 11:45:53 -07001889 ifsta = &sdata->u.sta;
1890
1891 rx_status = (struct ieee80211_rx_status *) skb->cb;
1892 mgmt = (struct ieee80211_mgmt *) skb->data;
1893 fc = le16_to_cpu(mgmt->frame_control);
1894
1895 switch (fc & IEEE80211_FCTL_STYPE) {
1896 case IEEE80211_STYPE_PROBE_REQ:
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001897 ieee80211_rx_mgmt_probe_req(sdata, ifsta, mgmt, skb->len,
Jiri Bencf0706e82007-05-05 11:45:53 -07001898 rx_status);
1899 break;
1900 case IEEE80211_STYPE_PROBE_RESP:
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001901 ieee80211_rx_mgmt_probe_resp(sdata, mgmt, skb->len, rx_status);
Jiri Bencf0706e82007-05-05 11:45:53 -07001902 break;
1903 case IEEE80211_STYPE_BEACON:
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001904 ieee80211_rx_mgmt_beacon(sdata, mgmt, skb->len, rx_status);
Jiri Bencf0706e82007-05-05 11:45:53 -07001905 break;
1906 case IEEE80211_STYPE_AUTH:
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001907 ieee80211_rx_mgmt_auth(sdata, ifsta, mgmt, skb->len);
Jiri Bencf0706e82007-05-05 11:45:53 -07001908 break;
1909 case IEEE80211_STYPE_ASSOC_RESP:
Johannes Berg471b3ef2007-12-28 14:32:58 +01001910 ieee80211_rx_mgmt_assoc_resp(sdata, ifsta, mgmt, skb->len, 0);
Jiri Bencf0706e82007-05-05 11:45:53 -07001911 break;
1912 case IEEE80211_STYPE_REASSOC_RESP:
Johannes Berg471b3ef2007-12-28 14:32:58 +01001913 ieee80211_rx_mgmt_assoc_resp(sdata, ifsta, mgmt, skb->len, 1);
Jiri Bencf0706e82007-05-05 11:45:53 -07001914 break;
1915 case IEEE80211_STYPE_DEAUTH:
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001916 ieee80211_rx_mgmt_deauth(sdata, ifsta, mgmt, skb->len);
Jiri Bencf0706e82007-05-05 11:45:53 -07001917 break;
1918 case IEEE80211_STYPE_DISASSOC:
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001919 ieee80211_rx_mgmt_disassoc(sdata, ifsta, mgmt, skb->len);
Jiri Bencf0706e82007-05-05 11:45:53 -07001920 break;
1921 }
1922
1923 kfree_skb(skb);
1924}
1925
1926
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001927static int ieee80211_sta_active_ibss(struct ieee80211_sub_if_data *sdata)
Jiri Bencf0706e82007-05-05 11:45:53 -07001928{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001929 struct ieee80211_local *local = sdata->local;
Jiri Bencf0706e82007-05-05 11:45:53 -07001930 int active = 0;
1931 struct sta_info *sta;
1932
Johannes Bergd0709a62008-02-25 16:27:46 +01001933 rcu_read_lock();
1934
1935 list_for_each_entry_rcu(sta, &local->sta_list, list) {
1936 if (sta->sdata == sdata &&
Jiri Bencf0706e82007-05-05 11:45:53 -07001937 time_after(sta->last_rx + IEEE80211_IBSS_MERGE_INTERVAL,
1938 jiffies)) {
1939 active++;
1940 break;
1941 }
1942 }
Johannes Bergd0709a62008-02-25 16:27:46 +01001943
1944 rcu_read_unlock();
Jiri Bencf0706e82007-05-05 11:45:53 -07001945
1946 return active;
1947}
1948
1949
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001950static void ieee80211_sta_merge_ibss(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001951 struct ieee80211_if_sta *ifsta)
1952{
1953 mod_timer(&ifsta->timer, jiffies + IEEE80211_IBSS_MERGE_INTERVAL);
1954
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001955 ieee80211_sta_expire(sdata, IEEE80211_IBSS_INACTIVITY_LIMIT);
1956 if (ieee80211_sta_active_ibss(sdata))
Jiri Bencf0706e82007-05-05 11:45:53 -07001957 return;
1958
1959 printk(KERN_DEBUG "%s: No active IBSS STAs - trying to scan for other "
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001960 "IBSS networks with same SSID (merge)\n", sdata->dev->name);
Johannes Bergc2b13452008-09-11 00:01:55 +02001961 ieee80211_request_scan(sdata, ifsta->ssid, ifsta->ssid_len);
Jiri Bencf0706e82007-05-05 11:45:53 -07001962}
1963
1964
Johannes Berg9c6bd792008-09-11 00:01:52 +02001965static void ieee80211_sta_timer(unsigned long data)
Jiri Bencf0706e82007-05-05 11:45:53 -07001966{
1967 struct ieee80211_sub_if_data *sdata =
1968 (struct ieee80211_sub_if_data *) data;
1969 struct ieee80211_if_sta *ifsta = &sdata->u.sta;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001970 struct ieee80211_local *local = sdata->local;
Jiri Bencf0706e82007-05-05 11:45:53 -07001971
1972 set_bit(IEEE80211_STA_REQ_RUN, &ifsta->request);
1973 queue_work(local->hw.workqueue, &ifsta->work);
1974}
1975
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001976static void ieee80211_sta_reset_auth(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001977 struct ieee80211_if_sta *ifsta)
1978{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001979 struct ieee80211_local *local = sdata->local;
Jiri Bencf0706e82007-05-05 11:45:53 -07001980
1981 if (local->ops->reset_tsf) {
1982 /* Reset own TSF to allow time synchronization work. */
1983 local->ops->reset_tsf(local_to_hw(local));
1984 }
1985
1986 ifsta->wmm_last_param_set = -1; /* allow any WMM update */
1987
1988
1989 if (ifsta->auth_algs & IEEE80211_AUTH_ALG_OPEN)
1990 ifsta->auth_alg = WLAN_AUTH_OPEN;
1991 else if (ifsta->auth_algs & IEEE80211_AUTH_ALG_SHARED_KEY)
1992 ifsta->auth_alg = WLAN_AUTH_SHARED_KEY;
1993 else if (ifsta->auth_algs & IEEE80211_AUTH_ALG_LEAP)
1994 ifsta->auth_alg = WLAN_AUTH_LEAP;
1995 else
1996 ifsta->auth_alg = WLAN_AUTH_OPEN;
Jiri Bencf0706e82007-05-05 11:45:53 -07001997 ifsta->auth_transaction = -1;
Jiri Slabyd6f2da52007-08-28 17:01:54 -04001998 ifsta->flags &= ~IEEE80211_STA_ASSOCIATED;
Ron Rindjunsky6042a3e2008-08-08 01:50:46 +03001999 ifsta->assoc_scan_tries = 0;
Ron Rindjunsky9859b812008-08-09 03:02:19 +03002000 ifsta->direct_probe_tries = 0;
Ron Rindjunsky6042a3e2008-08-08 01:50:46 +03002001 ifsta->auth_tries = 0;
2002 ifsta->assoc_tries = 0;
Tomas Winkler24e64622008-09-08 17:33:40 +02002003 netif_tx_stop_all_queues(sdata->dev);
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002004 netif_carrier_off(sdata->dev);
Jiri Bencf0706e82007-05-05 11:45:53 -07002005}
2006
2007
Jiri Bencf0706e82007-05-05 11:45:53 -07002008static int ieee80211_sta_match_ssid(struct ieee80211_if_sta *ifsta,
2009 const char *ssid, int ssid_len)
2010{
2011 int tmp, hidden_ssid;
2012
Michael Wu48225702007-10-19 17:14:36 -04002013 if (ssid_len == ifsta->ssid_len &&
2014 !memcmp(ifsta->ssid, ssid, ssid_len))
Jiri Bencf0706e82007-05-05 11:45:53 -07002015 return 1;
2016
Jiri Slabyd6f2da52007-08-28 17:01:54 -04002017 if (ifsta->flags & IEEE80211_STA_AUTO_BSSID_SEL)
Jiri Bencf0706e82007-05-05 11:45:53 -07002018 return 0;
2019
2020 hidden_ssid = 1;
2021 tmp = ssid_len;
2022 while (tmp--) {
2023 if (ssid[tmp] != '\0') {
2024 hidden_ssid = 0;
2025 break;
2026 }
2027 }
2028
Fabio Rossicb3da8c2008-11-26 22:44:23 +01002029 if (hidden_ssid && (ifsta->ssid_len == ssid_len || ssid_len == 0))
Jiri Bencf0706e82007-05-05 11:45:53 -07002030 return 1;
2031
2032 if (ssid_len == 1 && ssid[0] == ' ')
2033 return 1;
2034
2035 return 0;
2036}
2037
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002038static int ieee80211_sta_create_ibss(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07002039 struct ieee80211_if_sta *ifsta)
2040{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002041 struct ieee80211_local *local = sdata->local;
Johannes Bergc2b13452008-09-11 00:01:55 +02002042 struct ieee80211_bss *bss;
Johannes Berg8318d782008-01-24 19:38:38 +01002043 struct ieee80211_supported_band *sband;
Jiri Bencf0706e82007-05-05 11:45:53 -07002044 u8 bssid[ETH_ALEN], *pos;
2045 int i;
Tomas Winkler167ad6f2008-05-21 18:17:05 +03002046 int ret;
Jiri Bencf0706e82007-05-05 11:45:53 -07002047
2048#if 0
2049 /* Easier testing, use fixed BSSID. */
2050 memset(bssid, 0xfe, ETH_ALEN);
2051#else
2052 /* Generate random, not broadcast, locally administered BSSID. Mix in
2053 * own MAC address to make sure that devices that do not have proper
2054 * random number generator get different BSSID. */
2055 get_random_bytes(bssid, ETH_ALEN);
2056 for (i = 0; i < ETH_ALEN; i++)
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002057 bssid[i] ^= sdata->dev->dev_addr[i];
Jiri Bencf0706e82007-05-05 11:45:53 -07002058 bssid[0] &= ~0x01;
2059 bssid[0] |= 0x02;
2060#endif
2061
Johannes Berg0c68ae262008-10-27 15:56:10 -07002062 printk(KERN_DEBUG "%s: Creating new IBSS network, BSSID %pM\n",
2063 sdata->dev->name, bssid);
Jiri Bencf0706e82007-05-05 11:45:53 -07002064
Johannes Berg98c8fcc2008-09-08 17:44:26 +02002065 bss = ieee80211_rx_bss_add(local, bssid,
Johannes Berg8318d782008-01-24 19:38:38 +01002066 local->hw.conf.channel->center_freq,
John W. Linvillecffdd302007-10-05 14:23:27 -04002067 sdata->u.sta.ssid, sdata->u.sta.ssid_len);
Jiri Bencf0706e82007-05-05 11:45:53 -07002068 if (!bss)
2069 return -ENOMEM;
2070
Johannes Berg8318d782008-01-24 19:38:38 +01002071 bss->band = local->hw.conf.channel->band;
2072 sband = local->hw.wiphy->bands[bss->band];
Jiri Bencf0706e82007-05-05 11:45:53 -07002073
2074 if (local->hw.conf.beacon_int == 0)
Tomas Winklerdc0ae302008-06-12 22:38:37 +03002075 local->hw.conf.beacon_int = 100;
Jiri Bencf0706e82007-05-05 11:45:53 -07002076 bss->beacon_int = local->hw.conf.beacon_int;
Jiri Bencf0706e82007-05-05 11:45:53 -07002077 bss->last_update = jiffies;
2078 bss->capability = WLAN_CAPABILITY_IBSS;
Johannes Berg988c0f72008-04-17 19:21:22 +02002079
2080 if (sdata->default_key)
Jiri Bencf0706e82007-05-05 11:45:53 -07002081 bss->capability |= WLAN_CAPABILITY_PRIVACY;
Johannes Berg988c0f72008-04-17 19:21:22 +02002082 else
Jiri Bencf0706e82007-05-05 11:45:53 -07002083 sdata->drop_unencrypted = 0;
Johannes Berg988c0f72008-04-17 19:21:22 +02002084
Johannes Berg8318d782008-01-24 19:38:38 +01002085 bss->supp_rates_len = sband->n_bitrates;
Jiri Bencf0706e82007-05-05 11:45:53 -07002086 pos = bss->supp_rates;
Johannes Berg8318d782008-01-24 19:38:38 +01002087 for (i = 0; i < sband->n_bitrates; i++) {
2088 int rate = sband->bitrates[i].bitrate;
Jiri Bencf0706e82007-05-05 11:45:53 -07002089 *pos++ = (u8) (rate / 5);
2090 }
2091
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002092 ret = ieee80211_sta_join_ibss(sdata, ifsta, bss);
Johannes Berg3e122be2008-07-09 14:40:34 +02002093 ieee80211_rx_bss_put(local, bss);
Tomas Winkler167ad6f2008-05-21 18:17:05 +03002094 return ret;
Jiri Bencf0706e82007-05-05 11:45:53 -07002095}
2096
2097
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002098static int ieee80211_sta_find_ibss(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07002099 struct ieee80211_if_sta *ifsta)
2100{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002101 struct ieee80211_local *local = sdata->local;
Johannes Bergc2b13452008-09-11 00:01:55 +02002102 struct ieee80211_bss *bss;
Jiri Bencf0706e82007-05-05 11:45:53 -07002103 int found = 0;
2104 u8 bssid[ETH_ALEN];
2105 int active_ibss;
2106
2107 if (ifsta->ssid_len == 0)
2108 return -EINVAL;
2109
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002110 active_ibss = ieee80211_sta_active_ibss(sdata);
Jiri Bencf0706e82007-05-05 11:45:53 -07002111#ifdef CONFIG_MAC80211_IBSS_DEBUG
2112 printk(KERN_DEBUG "%s: sta_find_ibss (active_ibss=%d)\n",
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002113 sdata->dev->name, active_ibss);
Jiri Bencf0706e82007-05-05 11:45:53 -07002114#endif /* CONFIG_MAC80211_IBSS_DEBUG */
Johannes Bergc2b13452008-09-11 00:01:55 +02002115 spin_lock_bh(&local->bss_lock);
2116 list_for_each_entry(bss, &local->bss_list, list) {
Jiri Bencf0706e82007-05-05 11:45:53 -07002117 if (ifsta->ssid_len != bss->ssid_len ||
2118 memcmp(ifsta->ssid, bss->ssid, bss->ssid_len) != 0
2119 || !(bss->capability & WLAN_CAPABILITY_IBSS))
2120 continue;
2121#ifdef CONFIG_MAC80211_IBSS_DEBUG
Johannes Berg0c68ae262008-10-27 15:56:10 -07002122 printk(KERN_DEBUG " bssid=%pM found\n", bss->bssid);
Jiri Bencf0706e82007-05-05 11:45:53 -07002123#endif /* CONFIG_MAC80211_IBSS_DEBUG */
2124 memcpy(bssid, bss->bssid, ETH_ALEN);
2125 found = 1;
2126 if (active_ibss || memcmp(bssid, ifsta->bssid, ETH_ALEN) != 0)
2127 break;
2128 }
Johannes Bergc2b13452008-09-11 00:01:55 +02002129 spin_unlock_bh(&local->bss_lock);
Jiri Bencf0706e82007-05-05 11:45:53 -07002130
2131#ifdef CONFIG_MAC80211_IBSS_DEBUG
Vladimir Koutny6e438292008-07-07 14:23:01 +02002132 if (found)
Johannes Berg0c68ae262008-10-27 15:56:10 -07002133 printk(KERN_DEBUG " sta_find_ibss: selected %pM current "
2134 "%pM\n", bssid, ifsta->bssid);
Jiri Bencf0706e82007-05-05 11:45:53 -07002135#endif /* CONFIG_MAC80211_IBSS_DEBUG */
Daniel Drake80693ce2008-07-19 23:31:17 +01002136
2137 if (found && memcmp(ifsta->bssid, bssid, ETH_ALEN) != 0) {
Tomas Winkler167ad6f2008-05-21 18:17:05 +03002138 int ret;
Daniel Drake80693ce2008-07-19 23:31:17 +01002139 int search_freq;
2140
2141 if (ifsta->flags & IEEE80211_STA_AUTO_CHANNEL_SEL)
2142 search_freq = bss->freq;
2143 else
2144 search_freq = local->hw.conf.channel->center_freq;
2145
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002146 bss = ieee80211_rx_bss_get(local, bssid, search_freq,
Daniel Drake80693ce2008-07-19 23:31:17 +01002147 ifsta->ssid, ifsta->ssid_len);
2148 if (!bss)
2149 goto dont_join;
2150
Johannes Berg0c68ae262008-10-27 15:56:10 -07002151 printk(KERN_DEBUG "%s: Selected IBSS BSSID %pM"
Jiri Bencf0706e82007-05-05 11:45:53 -07002152 " based on configured SSID\n",
Johannes Berg0c68ae262008-10-27 15:56:10 -07002153 sdata->dev->name, bssid);
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002154 ret = ieee80211_sta_join_ibss(sdata, ifsta, bss);
Johannes Berg3e122be2008-07-09 14:40:34 +02002155 ieee80211_rx_bss_put(local, bss);
Tomas Winkler167ad6f2008-05-21 18:17:05 +03002156 return ret;
Jiri Bencf0706e82007-05-05 11:45:53 -07002157 }
Daniel Drake80693ce2008-07-19 23:31:17 +01002158
2159dont_join:
Jiri Bencf0706e82007-05-05 11:45:53 -07002160#ifdef CONFIG_MAC80211_IBSS_DEBUG
2161 printk(KERN_DEBUG " did not try to join ibss\n");
2162#endif /* CONFIG_MAC80211_IBSS_DEBUG */
2163
2164 /* Selected IBSS not found in current scan results - try to scan */
Tomas Winkler48c2fc52008-08-06 14:22:01 +03002165 if (ifsta->state == IEEE80211_STA_MLME_IBSS_JOINED &&
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002166 !ieee80211_sta_active_ibss(sdata)) {
Jiri Bencf0706e82007-05-05 11:45:53 -07002167 mod_timer(&ifsta->timer, jiffies +
2168 IEEE80211_IBSS_MERGE_INTERVAL);
2169 } else if (time_after(jiffies, local->last_scan_completed +
2170 IEEE80211_SCAN_INTERVAL)) {
2171 printk(KERN_DEBUG "%s: Trigger new scan to find an IBSS to "
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002172 "join\n", sdata->dev->name);
Johannes Bergc2b13452008-09-11 00:01:55 +02002173 return ieee80211_request_scan(sdata, ifsta->ssid,
Jiri Bencf0706e82007-05-05 11:45:53 -07002174 ifsta->ssid_len);
Tomas Winkler48c2fc52008-08-06 14:22:01 +03002175 } else if (ifsta->state != IEEE80211_STA_MLME_IBSS_JOINED) {
Jiri Bencf0706e82007-05-05 11:45:53 -07002176 int interval = IEEE80211_SCAN_INTERVAL;
2177
2178 if (time_after(jiffies, ifsta->ibss_join_req +
2179 IEEE80211_IBSS_JOIN_TIMEOUT)) {
Jiri Slabyd6f2da52007-08-28 17:01:54 -04002180 if ((ifsta->flags & IEEE80211_STA_CREATE_IBSS) &&
Johannes Berg8318d782008-01-24 19:38:38 +01002181 (!(local->oper_channel->flags &
2182 IEEE80211_CHAN_NO_IBSS)))
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002183 return ieee80211_sta_create_ibss(sdata, ifsta);
Jiri Slabyd6f2da52007-08-28 17:01:54 -04002184 if (ifsta->flags & IEEE80211_STA_CREATE_IBSS) {
Johannes Berg8318d782008-01-24 19:38:38 +01002185 printk(KERN_DEBUG "%s: IBSS not allowed on"
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002186 " %d MHz\n", sdata->dev->name,
Johannes Berg8318d782008-01-24 19:38:38 +01002187 local->hw.conf.channel->center_freq);
Jiri Bencf0706e82007-05-05 11:45:53 -07002188 }
2189
2190 /* No IBSS found - decrease scan interval and continue
2191 * scanning. */
2192 interval = IEEE80211_SCAN_INTERVAL_SLOW;
2193 }
2194
Tomas Winkler48c2fc52008-08-06 14:22:01 +03002195 ifsta->state = IEEE80211_STA_MLME_IBSS_SEARCH;
Jiri Bencf0706e82007-05-05 11:45:53 -07002196 mod_timer(&ifsta->timer, jiffies + interval);
2197 return 0;
2198 }
2199
2200 return 0;
2201}
2202
2203
Johannes Berg60f8b392008-09-08 17:44:22 +02002204static int ieee80211_sta_config_auth(struct ieee80211_sub_if_data *sdata,
2205 struct ieee80211_if_sta *ifsta)
2206{
2207 struct ieee80211_local *local = sdata->local;
Johannes Bergc2b13452008-09-11 00:01:55 +02002208 struct ieee80211_bss *bss, *selected = NULL;
Johannes Berg60f8b392008-09-08 17:44:22 +02002209 int top_rssi = 0, freq;
2210
Johannes Bergc2b13452008-09-11 00:01:55 +02002211 spin_lock_bh(&local->bss_lock);
Johannes Berg60f8b392008-09-08 17:44:22 +02002212 freq = local->oper_channel->center_freq;
Johannes Bergc2b13452008-09-11 00:01:55 +02002213 list_for_each_entry(bss, &local->bss_list, list) {
Johannes Berg60f8b392008-09-08 17:44:22 +02002214 if (!(bss->capability & WLAN_CAPABILITY_ESS))
2215 continue;
2216
2217 if ((ifsta->flags & (IEEE80211_STA_AUTO_SSID_SEL |
2218 IEEE80211_STA_AUTO_BSSID_SEL |
2219 IEEE80211_STA_AUTO_CHANNEL_SEL)) &&
2220 (!!(bss->capability & WLAN_CAPABILITY_PRIVACY) ^
2221 !!sdata->default_key))
2222 continue;
2223
2224 if (!(ifsta->flags & IEEE80211_STA_AUTO_CHANNEL_SEL) &&
2225 bss->freq != freq)
2226 continue;
2227
2228 if (!(ifsta->flags & IEEE80211_STA_AUTO_BSSID_SEL) &&
2229 memcmp(bss->bssid, ifsta->bssid, ETH_ALEN))
2230 continue;
2231
2232 if (!(ifsta->flags & IEEE80211_STA_AUTO_SSID_SEL) &&
2233 !ieee80211_sta_match_ssid(ifsta, bss->ssid, bss->ssid_len))
2234 continue;
2235
2236 if (!selected || top_rssi < bss->signal) {
2237 selected = bss;
2238 top_rssi = bss->signal;
2239 }
2240 }
2241 if (selected)
2242 atomic_inc(&selected->users);
Johannes Bergc2b13452008-09-11 00:01:55 +02002243 spin_unlock_bh(&local->bss_lock);
Johannes Berg60f8b392008-09-08 17:44:22 +02002244
2245 if (selected) {
2246 ieee80211_set_freq(sdata, selected->freq);
2247 if (!(ifsta->flags & IEEE80211_STA_SSID_SET))
2248 ieee80211_sta_set_ssid(sdata, selected->ssid,
2249 selected->ssid_len);
2250 ieee80211_sta_set_bssid(sdata, selected->bssid);
Johannes Bergb079ada2008-09-09 09:32:59 +02002251 ieee80211_sta_def_wmm_params(sdata, selected);
Johannes Berg60f8b392008-09-08 17:44:22 +02002252
2253 /* Send out direct probe if no probe resp was received or
2254 * the one we have is outdated
2255 */
2256 if (!selected->last_probe_resp ||
2257 time_after(jiffies, selected->last_probe_resp
2258 + IEEE80211_SCAN_RESULT_EXPIRE))
2259 ifsta->state = IEEE80211_STA_MLME_DIRECT_PROBE;
2260 else
2261 ifsta->state = IEEE80211_STA_MLME_AUTHENTICATE;
2262
2263 ieee80211_rx_bss_put(local, selected);
2264 ieee80211_sta_reset_auth(sdata, ifsta);
2265 return 0;
2266 } else {
2267 if (ifsta->assoc_scan_tries < IEEE80211_ASSOC_SCANS_MAX_TRIES) {
2268 ifsta->assoc_scan_tries++;
2269 if (ifsta->flags & IEEE80211_STA_AUTO_SSID_SEL)
Johannes Bergc2b13452008-09-11 00:01:55 +02002270 ieee80211_start_scan(sdata, NULL, 0);
Johannes Berg60f8b392008-09-08 17:44:22 +02002271 else
Johannes Bergc2b13452008-09-11 00:01:55 +02002272 ieee80211_start_scan(sdata, ifsta->ssid,
Johannes Berg60f8b392008-09-08 17:44:22 +02002273 ifsta->ssid_len);
2274 ifsta->state = IEEE80211_STA_MLME_AUTHENTICATE;
2275 set_bit(IEEE80211_STA_REQ_AUTH, &ifsta->request);
2276 } else
2277 ifsta->state = IEEE80211_STA_MLME_DISABLED;
2278 }
2279 return -1;
2280}
2281
2282
Johannes Berg9c6bd792008-09-11 00:01:52 +02002283static void ieee80211_sta_work(struct work_struct *work)
Johannes Berg60f8b392008-09-08 17:44:22 +02002284{
2285 struct ieee80211_sub_if_data *sdata =
2286 container_of(work, struct ieee80211_sub_if_data, u.sta.work);
2287 struct ieee80211_local *local = sdata->local;
2288 struct ieee80211_if_sta *ifsta;
2289 struct sk_buff *skb;
2290
2291 if (!netif_running(sdata->dev))
2292 return;
2293
Johannes Bergc2b13452008-09-11 00:01:55 +02002294 if (local->sw_scanning || local->hw_scanning)
Johannes Berg60f8b392008-09-08 17:44:22 +02002295 return;
2296
Johannes Berg05c914f2008-09-11 00:01:58 +02002297 if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION &&
2298 sdata->vif.type != NL80211_IFTYPE_ADHOC))
Johannes Berg60f8b392008-09-08 17:44:22 +02002299 return;
2300 ifsta = &sdata->u.sta;
2301
2302 while ((skb = skb_dequeue(&ifsta->skb_queue)))
2303 ieee80211_sta_rx_queued_mgmt(sdata, skb);
2304
Johannes Berg60f8b392008-09-08 17:44:22 +02002305 if (ifsta->state != IEEE80211_STA_MLME_DIRECT_PROBE &&
2306 ifsta->state != IEEE80211_STA_MLME_AUTHENTICATE &&
2307 ifsta->state != IEEE80211_STA_MLME_ASSOCIATE &&
2308 test_and_clear_bit(IEEE80211_STA_REQ_SCAN, &ifsta->request)) {
Johannes Bergc2b13452008-09-11 00:01:55 +02002309 ieee80211_start_scan(sdata, ifsta->scan_ssid,
2310 ifsta->scan_ssid_len);
Johannes Berg60f8b392008-09-08 17:44:22 +02002311 return;
2312 }
2313
2314 if (test_and_clear_bit(IEEE80211_STA_REQ_AUTH, &ifsta->request)) {
2315 if (ieee80211_sta_config_auth(sdata, ifsta))
2316 return;
2317 clear_bit(IEEE80211_STA_REQ_RUN, &ifsta->request);
2318 } else if (!test_and_clear_bit(IEEE80211_STA_REQ_RUN, &ifsta->request))
2319 return;
2320
2321 switch (ifsta->state) {
2322 case IEEE80211_STA_MLME_DISABLED:
2323 break;
2324 case IEEE80211_STA_MLME_DIRECT_PROBE:
2325 ieee80211_direct_probe(sdata, ifsta);
2326 break;
2327 case IEEE80211_STA_MLME_AUTHENTICATE:
2328 ieee80211_authenticate(sdata, ifsta);
2329 break;
2330 case IEEE80211_STA_MLME_ASSOCIATE:
2331 ieee80211_associate(sdata, ifsta);
2332 break;
2333 case IEEE80211_STA_MLME_ASSOCIATED:
2334 ieee80211_associated(sdata, ifsta);
2335 break;
2336 case IEEE80211_STA_MLME_IBSS_SEARCH:
2337 ieee80211_sta_find_ibss(sdata, ifsta);
2338 break;
2339 case IEEE80211_STA_MLME_IBSS_JOINED:
2340 ieee80211_sta_merge_ibss(sdata, ifsta);
2341 break;
Johannes Berg60f8b392008-09-08 17:44:22 +02002342 default:
2343 WARN_ON(1);
2344 break;
2345 }
2346
2347 if (ieee80211_privacy_mismatch(sdata, ifsta)) {
2348 printk(KERN_DEBUG "%s: privacy configuration mismatch and "
2349 "mixed-cell disabled - disassociate\n", sdata->dev->name);
2350
2351 ieee80211_set_disassoc(sdata, ifsta, false, true,
2352 WLAN_REASON_UNSPECIFIED);
2353 }
2354}
Johannes Berg0a51b272008-09-08 17:44:25 +02002355
Johannes Berga1678f82008-09-11 00:01:47 +02002356static void ieee80211_restart_sta_timer(struct ieee80211_sub_if_data *sdata)
2357{
Johannes Berg05c914f2008-09-11 00:01:58 +02002358 if (sdata->vif.type == NL80211_IFTYPE_STATION)
Johannes Berg7c950692008-09-11 00:01:48 +02002359 queue_work(sdata->local->hw.workqueue,
2360 &sdata->u.sta.work);
Johannes Berga1678f82008-09-11 00:01:47 +02002361}
2362
Johannes Berg9c6bd792008-09-11 00:01:52 +02002363/* interface setup */
2364void ieee80211_sta_setup_sdata(struct ieee80211_sub_if_data *sdata)
2365{
2366 struct ieee80211_if_sta *ifsta;
2367
2368 ifsta = &sdata->u.sta;
2369 INIT_WORK(&ifsta->work, ieee80211_sta_work);
2370 setup_timer(&ifsta->timer, ieee80211_sta_timer,
2371 (unsigned long) sdata);
2372 skb_queue_head_init(&ifsta->skb_queue);
2373
2374 ifsta->capab = WLAN_CAPABILITY_ESS;
2375 ifsta->auth_algs = IEEE80211_AUTH_ALG_OPEN |
2376 IEEE80211_AUTH_ALG_SHARED_KEY;
2377 ifsta->flags |= IEEE80211_STA_CREATE_IBSS |
2378 IEEE80211_STA_AUTO_BSSID_SEL |
2379 IEEE80211_STA_AUTO_CHANNEL_SEL;
2380 if (ieee80211_num_regular_queues(&sdata->local->hw) >= 4)
2381 ifsta->flags |= IEEE80211_STA_WMM_ENABLED;
2382}
2383
2384/*
2385 * Add a new IBSS station, will also be called by the RX code when,
2386 * in IBSS mode, receiving a frame from a yet-unknown station, hence
2387 * must be callable in atomic context.
2388 */
2389struct sta_info *ieee80211_ibss_add_sta(struct ieee80211_sub_if_data *sdata,
Rami Rosenab1f5c02008-12-11 14:00:25 +02002390 u8 *bssid,u8 *addr, u64 supp_rates)
Johannes Berg9c6bd792008-09-11 00:01:52 +02002391{
2392 struct ieee80211_local *local = sdata->local;
2393 struct sta_info *sta;
Johannes Berg9c6bd792008-09-11 00:01:52 +02002394 int band = local->hw.conf.channel->band;
2395
2396 /* TODO: Could consider removing the least recently used entry and
2397 * allow new one to be added. */
2398 if (local->num_sta >= IEEE80211_IBSS_MAX_STA_ENTRIES) {
2399 if (net_ratelimit()) {
2400 printk(KERN_DEBUG "%s: No room for a new IBSS STA "
Johannes Berg0c68ae262008-10-27 15:56:10 -07002401 "entry %pM\n", sdata->dev->name, addr);
Johannes Berg9c6bd792008-09-11 00:01:52 +02002402 }
2403 return NULL;
2404 }
2405
2406 if (compare_ether_addr(bssid, sdata->u.sta.bssid))
2407 return NULL;
2408
2409#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Johannes Berg0c68ae262008-10-27 15:56:10 -07002410 printk(KERN_DEBUG "%s: Adding new IBSS station %pM (dev=%s)\n",
2411 wiphy_name(local->hw.wiphy), addr, sdata->dev->name);
Johannes Berg9c6bd792008-09-11 00:01:52 +02002412#endif
2413
2414 sta = sta_info_alloc(sdata, addr, GFP_ATOMIC);
2415 if (!sta)
2416 return NULL;
2417
2418 set_sta_flags(sta, WLAN_STA_AUTHORIZED);
2419
2420 /* make sure mandatory rates are always added */
Johannes Berg323ce792008-09-11 02:45:11 +02002421 sta->sta.supp_rates[band] = supp_rates |
Johannes Berg96dd22a2008-09-11 00:01:57 +02002422 ieee80211_mandatory_rates(local, band);
Johannes Berg9c6bd792008-09-11 00:01:52 +02002423
Johannes Berg4b7679a2008-09-18 18:14:18 +02002424 rate_control_rate_init(sta);
Johannes Berg9c6bd792008-09-11 00:01:52 +02002425
2426 if (sta_info_insert(sta))
2427 return NULL;
2428
2429 return sta;
2430}
2431
2432/* configuration hooks */
2433void ieee80211_sta_req_auth(struct ieee80211_sub_if_data *sdata,
2434 struct ieee80211_if_sta *ifsta)
2435{
2436 struct ieee80211_local *local = sdata->local;
2437
Johannes Berg05c914f2008-09-11 00:01:58 +02002438 if (sdata->vif.type != NL80211_IFTYPE_STATION)
Johannes Berg9c6bd792008-09-11 00:01:52 +02002439 return;
2440
2441 if ((ifsta->flags & (IEEE80211_STA_BSSID_SET |
2442 IEEE80211_STA_AUTO_BSSID_SEL)) &&
2443 (ifsta->flags & (IEEE80211_STA_SSID_SET |
2444 IEEE80211_STA_AUTO_SSID_SEL))) {
2445
2446 if (ifsta->state == IEEE80211_STA_MLME_ASSOCIATED)
2447 ieee80211_set_disassoc(sdata, ifsta, true, true,
2448 WLAN_REASON_DEAUTH_LEAVING);
2449
2450 set_bit(IEEE80211_STA_REQ_AUTH, &ifsta->request);
2451 queue_work(local->hw.workqueue, &ifsta->work);
2452 }
2453}
2454
2455int ieee80211_sta_set_ssid(struct ieee80211_sub_if_data *sdata, char *ssid, size_t len)
2456{
2457 struct ieee80211_if_sta *ifsta;
Johannes Berg9c6bd792008-09-11 00:01:52 +02002458
2459 if (len > IEEE80211_MAX_SSID_LEN)
2460 return -EINVAL;
2461
2462 ifsta = &sdata->u.sta;
2463
2464 if (ifsta->ssid_len != len || memcmp(ifsta->ssid, ssid, len) != 0) {
2465 memset(ifsta->ssid, 0, sizeof(ifsta->ssid));
2466 memcpy(ifsta->ssid, ssid, len);
2467 ifsta->ssid_len = len;
2468 ifsta->flags &= ~IEEE80211_STA_PREV_BSSID_SET;
Johannes Berg9c6bd792008-09-11 00:01:52 +02002469 }
2470
2471 if (len)
2472 ifsta->flags |= IEEE80211_STA_SSID_SET;
2473 else
2474 ifsta->flags &= ~IEEE80211_STA_SSID_SET;
2475
Johannes Berg05c914f2008-09-11 00:01:58 +02002476 if (sdata->vif.type == NL80211_IFTYPE_ADHOC &&
Johannes Berg9c6bd792008-09-11 00:01:52 +02002477 !(ifsta->flags & IEEE80211_STA_BSSID_SET)) {
2478 ifsta->ibss_join_req = jiffies;
2479 ifsta->state = IEEE80211_STA_MLME_IBSS_SEARCH;
2480 return ieee80211_sta_find_ibss(sdata, ifsta);
2481 }
2482
2483 return 0;
2484}
2485
2486int ieee80211_sta_get_ssid(struct ieee80211_sub_if_data *sdata, char *ssid, size_t *len)
2487{
2488 struct ieee80211_if_sta *ifsta = &sdata->u.sta;
2489 memcpy(ssid, ifsta->ssid, ifsta->ssid_len);
2490 *len = ifsta->ssid_len;
2491 return 0;
2492}
2493
2494int ieee80211_sta_set_bssid(struct ieee80211_sub_if_data *sdata, u8 *bssid)
2495{
2496 struct ieee80211_if_sta *ifsta;
2497 int res;
2498
2499 ifsta = &sdata->u.sta;
2500
2501 if (memcmp(ifsta->bssid, bssid, ETH_ALEN) != 0) {
2502 memcpy(ifsta->bssid, bssid, ETH_ALEN);
2503 res = 0;
2504 /*
2505 * Hack! See also ieee80211_sta_set_ssid.
2506 */
2507 if (netif_running(sdata->dev))
2508 res = ieee80211_if_config(sdata, IEEE80211_IFCC_BSSID);
2509 if (res) {
2510 printk(KERN_DEBUG "%s: Failed to config new BSSID to "
2511 "the low-level driver\n", sdata->dev->name);
2512 return res;
2513 }
2514 }
2515
2516 if (is_valid_ether_addr(bssid))
2517 ifsta->flags |= IEEE80211_STA_BSSID_SET;
2518 else
2519 ifsta->flags &= ~IEEE80211_STA_BSSID_SET;
2520
2521 return 0;
2522}
2523
2524int ieee80211_sta_set_extra_ie(struct ieee80211_sub_if_data *sdata, char *ie, size_t len)
2525{
2526 struct ieee80211_if_sta *ifsta = &sdata->u.sta;
2527
2528 kfree(ifsta->extra_ie);
2529 if (len == 0) {
2530 ifsta->extra_ie = NULL;
2531 ifsta->extra_ie_len = 0;
2532 return 0;
2533 }
2534 ifsta->extra_ie = kmalloc(len, GFP_KERNEL);
2535 if (!ifsta->extra_ie) {
2536 ifsta->extra_ie_len = 0;
2537 return -ENOMEM;
2538 }
2539 memcpy(ifsta->extra_ie, ie, len);
2540 ifsta->extra_ie_len = len;
2541 return 0;
2542}
2543
2544int ieee80211_sta_deauthenticate(struct ieee80211_sub_if_data *sdata, u16 reason)
2545{
2546 struct ieee80211_if_sta *ifsta = &sdata->u.sta;
2547
2548 printk(KERN_DEBUG "%s: deauthenticating by local choice (reason=%d)\n",
2549 sdata->dev->name, reason);
2550
Johannes Berg05c914f2008-09-11 00:01:58 +02002551 if (sdata->vif.type != NL80211_IFTYPE_STATION &&
2552 sdata->vif.type != NL80211_IFTYPE_ADHOC)
Johannes Berg9c6bd792008-09-11 00:01:52 +02002553 return -EINVAL;
2554
2555 ieee80211_set_disassoc(sdata, ifsta, true, true, reason);
2556 return 0;
2557}
2558
2559int ieee80211_sta_disassociate(struct ieee80211_sub_if_data *sdata, u16 reason)
2560{
2561 struct ieee80211_if_sta *ifsta = &sdata->u.sta;
2562
2563 printk(KERN_DEBUG "%s: disassociating by local choice (reason=%d)\n",
2564 sdata->dev->name, reason);
2565
Johannes Berg05c914f2008-09-11 00:01:58 +02002566 if (sdata->vif.type != NL80211_IFTYPE_STATION)
Johannes Berg9c6bd792008-09-11 00:01:52 +02002567 return -EINVAL;
2568
2569 if (!(ifsta->flags & IEEE80211_STA_ASSOCIATED))
2570 return -1;
2571
2572 ieee80211_set_disassoc(sdata, ifsta, false, true, reason);
2573 return 0;
2574}
2575
2576/* scan finished notification */
Johannes Berg0a51b272008-09-08 17:44:25 +02002577void ieee80211_mlme_notify_scan_completed(struct ieee80211_local *local)
2578{
2579 struct ieee80211_sub_if_data *sdata = local->scan_sdata;
2580 struct ieee80211_if_sta *ifsta;
2581
Johannes Berg05c914f2008-09-11 00:01:58 +02002582 if (sdata && sdata->vif.type == NL80211_IFTYPE_ADHOC) {
Johannes Berg0a51b272008-09-08 17:44:25 +02002583 ifsta = &sdata->u.sta;
2584 if (!(ifsta->flags & IEEE80211_STA_BSSID_SET) ||
2585 (!(ifsta->state == IEEE80211_STA_MLME_IBSS_JOINED) &&
2586 !ieee80211_sta_active_ibss(sdata)))
2587 ieee80211_sta_find_ibss(sdata, ifsta);
2588 }
Johannes Berga1678f82008-09-11 00:01:47 +02002589
2590 /* Restart STA timers */
2591 rcu_read_lock();
2592 list_for_each_entry_rcu(sdata, &local->interfaces, list)
2593 ieee80211_restart_sta_timer(sdata);
2594 rcu_read_unlock();
Johannes Berg0a51b272008-09-08 17:44:25 +02002595}