blob: 290b0017ef2e7f55c8875cc5fff240f39260f059 [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);
312 mgmt->u.reassoc_req.listen_interval =
313 cpu_to_le16(local->hw.conf.listen_interval);
314 }
315
316 /* SSID */
317 ies = pos = skb_put(skb, 2 + ifsta->ssid_len);
318 *pos++ = WLAN_EID_SSID;
319 *pos++ = ifsta->ssid_len;
320 memcpy(pos, ifsta->ssid, ifsta->ssid_len);
321
322 /* add all rates which were marked to be used above */
323 supp_rates_len = rates_len;
324 if (supp_rates_len > 8)
325 supp_rates_len = 8;
326
327 len = sband->n_bitrates;
328 pos = skb_put(skb, supp_rates_len + 2);
329 *pos++ = WLAN_EID_SUPP_RATES;
330 *pos++ = supp_rates_len;
331
332 count = 0;
333 for (i = 0; i < sband->n_bitrates; i++) {
334 if (BIT(i) & rates) {
335 int rate = sband->bitrates[i].bitrate;
336 *pos++ = (u8) (rate / 5);
337 if (++count == 8)
338 break;
339 }
340 }
341
342 if (rates_len > count) {
343 pos = skb_put(skb, rates_len - count + 2);
344 *pos++ = WLAN_EID_EXT_SUPP_RATES;
345 *pos++ = rates_len - count;
346
347 for (i++; i < sband->n_bitrates; i++) {
348 if (BIT(i) & rates) {
349 int rate = sband->bitrates[i].bitrate;
350 *pos++ = (u8) (rate / 5);
351 }
352 }
353 }
354
355 if (capab & WLAN_CAPABILITY_SPECTRUM_MGMT) {
356 /* 1. power capabilities */
357 pos = skb_put(skb, 4);
358 *pos++ = WLAN_EID_PWR_CAPABILITY;
359 *pos++ = 2;
360 *pos++ = 0; /* min tx power */
361 *pos++ = local->hw.conf.channel->max_power; /* max tx power */
362
363 /* 2. supported channels */
364 /* TODO: get this in reg domain format */
365 pos = skb_put(skb, 2 * sband->n_channels + 2);
366 *pos++ = WLAN_EID_SUPPORTED_CHANNELS;
367 *pos++ = 2 * sband->n_channels;
368 for (i = 0; i < sband->n_channels; i++) {
369 *pos++ = ieee80211_frequency_to_channel(
370 sband->channels[i].center_freq);
371 *pos++ = 1; /* one channel in the subband*/
372 }
373 }
374
375 if (ifsta->extra_ie) {
376 pos = skb_put(skb, ifsta->extra_ie_len);
377 memcpy(pos, ifsta->extra_ie, ifsta->extra_ie_len);
378 }
379
380 if (wmm && (ifsta->flags & IEEE80211_STA_WMM_ENABLED)) {
381 pos = skb_put(skb, 9);
382 *pos++ = WLAN_EID_VENDOR_SPECIFIC;
383 *pos++ = 7; /* len */
384 *pos++ = 0x00; /* Microsoft OUI 00:50:F2 */
385 *pos++ = 0x50;
386 *pos++ = 0xf2;
387 *pos++ = 2; /* WME */
388 *pos++ = 0; /* WME info */
389 *pos++ = 1; /* WME ver */
390 *pos++ = 0;
391 }
392
393 /* wmm support is a must to HT */
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
Tomas Winkler24e64622008-09-08 17:33:40 +0200747 netif_tx_start_all_queues(sdata->dev);
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200748 netif_carrier_on(sdata->dev);
Guy Cohen8db93692008-07-03 19:56:13 +0300749
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200750 ieee80211_sta_send_apinfo(sdata, ifsta);
Jiri Bencf0706e82007-05-05 11:45:53 -0700751}
752
Ron Rindjunsky9859b812008-08-09 03:02:19 +0300753static void ieee80211_direct_probe(struct ieee80211_sub_if_data *sdata,
754 struct ieee80211_if_sta *ifsta)
755{
Ron Rindjunsky9859b812008-08-09 03:02:19 +0300756 ifsta->direct_probe_tries++;
757 if (ifsta->direct_probe_tries > IEEE80211_AUTH_MAX_TRIES) {
Johannes Berg0c68ae262008-10-27 15:56:10 -0700758 printk(KERN_DEBUG "%s: direct probe to AP %pM timed out\n",
759 sdata->dev->name, ifsta->bssid);
Ron Rindjunsky9859b812008-08-09 03:02:19 +0300760 ifsta->state = IEEE80211_STA_MLME_DISABLED;
Johannes Berg4a68ec52008-10-16 21:44:44 +0200761 ieee80211_sta_send_apinfo(sdata, ifsta);
Ron Rindjunsky9859b812008-08-09 03:02:19 +0300762 return;
763 }
764
Johannes Berg0c68ae262008-10-27 15:56:10 -0700765 printk(KERN_DEBUG "%s: direct probe to AP %pM try %d\n",
766 sdata->dev->name, ifsta->bssid,
Ron Rindjunsky9859b812008-08-09 03:02:19 +0300767 ifsta->direct_probe_tries);
768
769 ifsta->state = IEEE80211_STA_MLME_DIRECT_PROBE;
770
771 set_bit(IEEE80211_STA_REQ_DIRECT_PROBE, &ifsta->request);
772
773 /* Direct probe is sent to broadcast address as some APs
774 * will not answer to direct packet in unassociated state.
775 */
776 ieee80211_send_probe_req(sdata, NULL,
777 ifsta->ssid, ifsta->ssid_len);
778
779 mod_timer(&ifsta->timer, jiffies + IEEE80211_AUTH_TIMEOUT);
780}
781
Jiri Bencf0706e82007-05-05 11:45:53 -0700782
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200783static void ieee80211_authenticate(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -0700784 struct ieee80211_if_sta *ifsta)
785{
786 ifsta->auth_tries++;
787 if (ifsta->auth_tries > IEEE80211_AUTH_MAX_TRIES) {
Johannes Berg0c68ae262008-10-27 15:56:10 -0700788 printk(KERN_DEBUG "%s: authentication with AP %pM"
Jiri Bencf0706e82007-05-05 11:45:53 -0700789 " timed out\n",
Johannes Berg0c68ae262008-10-27 15:56:10 -0700790 sdata->dev->name, ifsta->bssid);
Tomas Winkler48c2fc52008-08-06 14:22:01 +0300791 ifsta->state = IEEE80211_STA_MLME_DISABLED;
Johannes Berg4a68ec52008-10-16 21:44:44 +0200792 ieee80211_sta_send_apinfo(sdata, ifsta);
Jiri Bencf0706e82007-05-05 11:45:53 -0700793 return;
794 }
795
Tomas Winkler48c2fc52008-08-06 14:22:01 +0300796 ifsta->state = IEEE80211_STA_MLME_AUTHENTICATE;
Johannes Berg0c68ae262008-10-27 15:56:10 -0700797 printk(KERN_DEBUG "%s: authenticate with AP %pM\n",
798 sdata->dev->name, ifsta->bssid);
Jiri Bencf0706e82007-05-05 11:45:53 -0700799
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200800 ieee80211_send_auth(sdata, ifsta, 1, NULL, 0, 0);
Jiri Bencf0706e82007-05-05 11:45:53 -0700801
802 mod_timer(&ifsta->timer, jiffies + IEEE80211_AUTH_TIMEOUT);
803}
804
Vivek Natarajan5925d972008-11-21 22:19:50 -0800805/*
806 * The disassoc 'reason' argument can be either our own reason
807 * if self disconnected or a reason code from the AP.
808 */
Tomas Winkleraa458d12008-09-09 00:32:12 +0300809static void ieee80211_set_disassoc(struct ieee80211_sub_if_data *sdata,
810 struct ieee80211_if_sta *ifsta, bool deauth,
811 bool self_disconnected, u16 reason)
812{
813 struct ieee80211_local *local = sdata->local;
814 struct sta_info *sta;
Johannes Bergae5eb022008-10-14 16:58:37 +0200815 u32 changed = 0;
Tomas Winkleraa458d12008-09-09 00:32:12 +0300816
817 rcu_read_lock();
818
819 sta = sta_info_get(local, ifsta->bssid);
820 if (!sta) {
821 rcu_read_unlock();
822 return;
823 }
824
825 if (deauth) {
826 ifsta->direct_probe_tries = 0;
827 ifsta->auth_tries = 0;
828 }
829 ifsta->assoc_scan_tries = 0;
830 ifsta->assoc_tries = 0;
831
Tomas Winkler24e64622008-09-08 17:33:40 +0200832 netif_tx_stop_all_queues(sdata->dev);
Tomas Winkleraa458d12008-09-09 00:32:12 +0300833 netif_carrier_off(sdata->dev);
834
Johannes Berg17741cd2008-09-11 00:02:02 +0200835 ieee80211_sta_tear_down_BA_sessions(sdata, sta->sta.addr);
Tomas Winkleraa458d12008-09-09 00:32:12 +0300836
837 if (self_disconnected) {
838 if (deauth)
Johannes Bergef422bc2008-09-09 10:58:25 +0200839 ieee80211_send_deauth_disassoc(sdata,
840 IEEE80211_STYPE_DEAUTH, reason);
Tomas Winkleraa458d12008-09-09 00:32:12 +0300841 else
Johannes Bergef422bc2008-09-09 10:58:25 +0200842 ieee80211_send_deauth_disassoc(sdata,
843 IEEE80211_STYPE_DISASSOC, reason);
Tomas Winkleraa458d12008-09-09 00:32:12 +0300844 }
845
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200846 ifsta->flags &= ~IEEE80211_STA_ASSOCIATED;
847 changed |= ieee80211_reset_erp_info(sdata);
848
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200849 ieee80211_led_assoc(local, 0);
Johannes Bergae5eb022008-10-14 16:58:37 +0200850 changed |= BSS_CHANGED_ASSOC;
851 sdata->vif.bss_conf.assoc = false;
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200852
853 ieee80211_sta_send_apinfo(sdata, ifsta);
Tomas Winkleraa458d12008-09-09 00:32:12 +0300854
Vivek Natarajan5925d972008-11-21 22:19:50 -0800855 if (self_disconnected || reason == WLAN_REASON_DISASSOC_STA_HAS_LEFT)
Tomas Winkleraa458d12008-09-09 00:32:12 +0300856 ifsta->state = IEEE80211_STA_MLME_DISABLED;
857
Tomas Winkleraa458d12008-09-09 00:32:12 +0300858 rcu_read_unlock();
859
Johannes Bergae5eb022008-10-14 16:58:37 +0200860 local->hw.conf.ht.enabled = false;
861 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_HT);
862
863 ieee80211_bss_info_change_notify(sdata, changed);
Tomas Winkler8e268e42008-11-25 13:05:44 +0200864
865 rcu_read_lock();
866
867 sta = sta_info_get(local, ifsta->bssid);
868 if (!sta) {
869 rcu_read_unlock();
870 return;
871 }
872
873 sta_info_unlink(&sta);
874
875 rcu_read_unlock();
876
877 sta_info_destroy(sta);
Tomas Winkleraa458d12008-09-09 00:32:12 +0300878}
Jiri Bencf0706e82007-05-05 11:45:53 -0700879
Johannes Berg9ac19a92008-09-09 10:57:09 +0200880static int ieee80211_sta_wep_configured(struct ieee80211_sub_if_data *sdata)
881{
882 if (!sdata || !sdata->default_key ||
883 sdata->default_key->conf.alg != ALG_WEP)
884 return 0;
885 return 1;
886}
887
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200888static int ieee80211_privacy_mismatch(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -0700889 struct ieee80211_if_sta *ifsta)
890{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200891 struct ieee80211_local *local = sdata->local;
Johannes Bergc2b13452008-09-11 00:01:55 +0200892 struct ieee80211_bss *bss;
Johannes Berg5b98b1f2007-11-03 13:11:10 +0000893 int bss_privacy;
894 int wep_privacy;
895 int privacy_invoked;
Jiri Bencf0706e82007-05-05 11:45:53 -0700896
Johannes Berg5b98b1f2007-11-03 13:11:10 +0000897 if (!ifsta || (ifsta->flags & IEEE80211_STA_MIXED_CELL))
Jiri Bencf0706e82007-05-05 11:45:53 -0700898 return 0;
899
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200900 bss = ieee80211_rx_bss_get(local, ifsta->bssid,
Johannes Berg8318d782008-01-24 19:38:38 +0100901 local->hw.conf.channel->center_freq,
John W. Linvillecffdd302007-10-05 14:23:27 -0400902 ifsta->ssid, ifsta->ssid_len);
Jiri Bencf0706e82007-05-05 11:45:53 -0700903 if (!bss)
904 return 0;
905
Johannes Berg5b98b1f2007-11-03 13:11:10 +0000906 bss_privacy = !!(bss->capability & WLAN_CAPABILITY_PRIVACY);
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200907 wep_privacy = !!ieee80211_sta_wep_configured(sdata);
Johannes Berg5b98b1f2007-11-03 13:11:10 +0000908 privacy_invoked = !!(ifsta->flags & IEEE80211_STA_PRIVACY_INVOKED);
Jiri Bencf0706e82007-05-05 11:45:53 -0700909
Johannes Berg3e122be2008-07-09 14:40:34 +0200910 ieee80211_rx_bss_put(local, bss);
Jiri Bencf0706e82007-05-05 11:45:53 -0700911
Johannes Berg5b98b1f2007-11-03 13:11:10 +0000912 if ((bss_privacy == wep_privacy) || (bss_privacy == privacy_invoked))
913 return 0;
914
915 return 1;
Jiri Bencf0706e82007-05-05 11:45:53 -0700916}
917
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200918static void ieee80211_associate(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -0700919 struct ieee80211_if_sta *ifsta)
920{
921 ifsta->assoc_tries++;
922 if (ifsta->assoc_tries > IEEE80211_ASSOC_MAX_TRIES) {
Johannes Berg0c68ae262008-10-27 15:56:10 -0700923 printk(KERN_DEBUG "%s: association with AP %pM"
Jiri Bencf0706e82007-05-05 11:45:53 -0700924 " timed out\n",
Johannes Berg0c68ae262008-10-27 15:56:10 -0700925 sdata->dev->name, ifsta->bssid);
Tomas Winkler48c2fc52008-08-06 14:22:01 +0300926 ifsta->state = IEEE80211_STA_MLME_DISABLED;
Johannes Berg4a68ec52008-10-16 21:44:44 +0200927 ieee80211_sta_send_apinfo(sdata, ifsta);
Jiri Bencf0706e82007-05-05 11:45:53 -0700928 return;
929 }
930
Tomas Winkler48c2fc52008-08-06 14:22:01 +0300931 ifsta->state = IEEE80211_STA_MLME_ASSOCIATE;
Johannes Berg0c68ae262008-10-27 15:56:10 -0700932 printk(KERN_DEBUG "%s: associate with AP %pM\n",
933 sdata->dev->name, ifsta->bssid);
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200934 if (ieee80211_privacy_mismatch(sdata, ifsta)) {
Jiri Bencf0706e82007-05-05 11:45:53 -0700935 printk(KERN_DEBUG "%s: mismatch in privacy configuration and "
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200936 "mixed-cell disabled - abort association\n", sdata->dev->name);
Tomas Winkler48c2fc52008-08-06 14:22:01 +0300937 ifsta->state = IEEE80211_STA_MLME_DISABLED;
Jiri Bencf0706e82007-05-05 11:45:53 -0700938 return;
939 }
940
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200941 ieee80211_send_assoc(sdata, ifsta);
Jiri Bencf0706e82007-05-05 11:45:53 -0700942
943 mod_timer(&ifsta->timer, jiffies + IEEE80211_ASSOC_TIMEOUT);
944}
945
946
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200947static void ieee80211_associated(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -0700948 struct ieee80211_if_sta *ifsta)
949{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200950 struct ieee80211_local *local = sdata->local;
Jiri Bencf0706e82007-05-05 11:45:53 -0700951 struct sta_info *sta;
952 int disassoc;
953
954 /* TODO: start monitoring current AP signal quality and number of
955 * missed beacons. Scan other channels every now and then and search
956 * for better APs. */
957 /* TODO: remove expired BSSes */
958
Tomas Winkler48c2fc52008-08-06 14:22:01 +0300959 ifsta->state = IEEE80211_STA_MLME_ASSOCIATED;
Jiri Bencf0706e82007-05-05 11:45:53 -0700960
Johannes Bergd0709a62008-02-25 16:27:46 +0100961 rcu_read_lock();
962
Jiri Bencf0706e82007-05-05 11:45:53 -0700963 sta = sta_info_get(local, ifsta->bssid);
964 if (!sta) {
Johannes Berg0c68ae262008-10-27 15:56:10 -0700965 printk(KERN_DEBUG "%s: No STA entry for own AP %pM\n",
966 sdata->dev->name, ifsta->bssid);
Jiri Bencf0706e82007-05-05 11:45:53 -0700967 disassoc = 1;
968 } else {
969 disassoc = 0;
970 if (time_after(jiffies,
971 sta->last_rx + IEEE80211_MONITORING_INTERVAL)) {
Jiri Slabyd6f2da52007-08-28 17:01:54 -0400972 if (ifsta->flags & IEEE80211_STA_PROBEREQ_POLL) {
Jiri Bencf0706e82007-05-05 11:45:53 -0700973 printk(KERN_DEBUG "%s: No ProbeResp from "
Johannes Berg0c68ae262008-10-27 15:56:10 -0700974 "current AP %pM - assume out of "
Jiri Bencf0706e82007-05-05 11:45:53 -0700975 "range\n",
Johannes Berg0c68ae262008-10-27 15:56:10 -0700976 sdata->dev->name, ifsta->bssid);
Jiri Bencf0706e82007-05-05 11:45:53 -0700977 disassoc = 1;
Jiri Slabyd6f2da52007-08-28 17:01:54 -0400978 } else
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200979 ieee80211_send_probe_req(sdata, ifsta->bssid,
Johannes Berg4dfe51e2008-09-19 05:10:34 +0200980 ifsta->ssid,
981 ifsta->ssid_len);
Jiri Slabyd6f2da52007-08-28 17:01:54 -0400982 ifsta->flags ^= IEEE80211_STA_PROBEREQ_POLL;
Jiri Bencf0706e82007-05-05 11:45:53 -0700983 } else {
Jiri Slabyd6f2da52007-08-28 17:01:54 -0400984 ifsta->flags &= ~IEEE80211_STA_PROBEREQ_POLL;
Jiri Bencf0706e82007-05-05 11:45:53 -0700985 if (time_after(jiffies, ifsta->last_probe +
986 IEEE80211_PROBE_INTERVAL)) {
987 ifsta->last_probe = jiffies;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200988 ieee80211_send_probe_req(sdata, ifsta->bssid,
Jiri Bencf0706e82007-05-05 11:45:53 -0700989 ifsta->ssid,
990 ifsta->ssid_len);
991 }
992 }
Jiri Bencf0706e82007-05-05 11:45:53 -0700993 }
Johannes Bergd0709a62008-02-25 16:27:46 +0100994
995 rcu_read_unlock();
996
Tomas Winkleraa458d12008-09-09 00:32:12 +0300997 if (disassoc)
998 ieee80211_set_disassoc(sdata, ifsta, true, true,
999 WLAN_REASON_PREV_AUTH_NOT_VALID);
1000 else
Jiri Bencf0706e82007-05-05 11:45:53 -07001001 mod_timer(&ifsta->timer, jiffies +
1002 IEEE80211_MONITORING_INTERVAL);
Jiri Bencf0706e82007-05-05 11:45:53 -07001003}
1004
1005
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001006static void ieee80211_auth_completed(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001007 struct ieee80211_if_sta *ifsta)
1008{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001009 printk(KERN_DEBUG "%s: authenticated\n", sdata->dev->name);
Jiri Slabyd6f2da52007-08-28 17:01:54 -04001010 ifsta->flags |= IEEE80211_STA_AUTHENTICATED;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001011 ieee80211_associate(sdata, ifsta);
Jiri Bencf0706e82007-05-05 11:45:53 -07001012}
1013
1014
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001015static void ieee80211_auth_challenge(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001016 struct ieee80211_if_sta *ifsta,
1017 struct ieee80211_mgmt *mgmt,
1018 size_t len)
1019{
1020 u8 *pos;
1021 struct ieee802_11_elems elems;
1022
Jiri Bencf0706e82007-05-05 11:45:53 -07001023 pos = mgmt->u.auth.variable;
John W. Linville67a4cce2007-10-12 16:40:37 -04001024 ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), &elems);
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001025 if (!elems.challenge)
Jiri Bencf0706e82007-05-05 11:45:53 -07001026 return;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001027 ieee80211_send_auth(sdata, ifsta, 3, elems.challenge - 2,
Jiri Bencf0706e82007-05-05 11:45:53 -07001028 elems.challenge_len + 2, 1);
1029}
1030
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001031static void ieee80211_rx_mgmt_auth(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001032 struct ieee80211_if_sta *ifsta,
1033 struct ieee80211_mgmt *mgmt,
1034 size_t len)
1035{
Jiri Bencf0706e82007-05-05 11:45:53 -07001036 u16 auth_alg, auth_transaction, status_code;
1037
Tomas Winkler48c2fc52008-08-06 14:22:01 +03001038 if (ifsta->state != IEEE80211_STA_MLME_AUTHENTICATE &&
Johannes Berg05c914f2008-09-11 00:01:58 +02001039 sdata->vif.type != NL80211_IFTYPE_ADHOC)
Jiri Bencf0706e82007-05-05 11:45:53 -07001040 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001041
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001042 if (len < 24 + 6)
Jiri Bencf0706e82007-05-05 11:45:53 -07001043 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001044
Johannes Berg05c914f2008-09-11 00:01:58 +02001045 if (sdata->vif.type != NL80211_IFTYPE_ADHOC &&
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001046 memcmp(ifsta->bssid, mgmt->sa, ETH_ALEN) != 0)
Jiri Bencf0706e82007-05-05 11:45:53 -07001047 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001048
Johannes Berg05c914f2008-09-11 00:01:58 +02001049 if (sdata->vif.type != NL80211_IFTYPE_ADHOC &&
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001050 memcmp(ifsta->bssid, mgmt->bssid, ETH_ALEN) != 0)
Jiri Bencf0706e82007-05-05 11:45:53 -07001051 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001052
1053 auth_alg = le16_to_cpu(mgmt->u.auth.auth_alg);
1054 auth_transaction = le16_to_cpu(mgmt->u.auth.auth_transaction);
1055 status_code = le16_to_cpu(mgmt->u.auth.status_code);
1056
Johannes Berg05c914f2008-09-11 00:01:58 +02001057 if (sdata->vif.type == NL80211_IFTYPE_ADHOC) {
Johannes Berg135a2112008-06-16 20:55:29 +02001058 /*
1059 * IEEE 802.11 standard does not require authentication in IBSS
Jiri Bencf0706e82007-05-05 11:45:53 -07001060 * networks and most implementations do not seem to use it.
1061 * However, try to reply to authentication attempts if someone
1062 * has actually implemented this.
Johannes Berg135a2112008-06-16 20:55:29 +02001063 */
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001064 if (auth_alg != WLAN_AUTH_OPEN || auth_transaction != 1)
Jiri Bencf0706e82007-05-05 11:45:53 -07001065 return;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001066 ieee80211_send_auth(sdata, ifsta, 2, NULL, 0, 0);
Jiri Bencf0706e82007-05-05 11:45:53 -07001067 }
1068
1069 if (auth_alg != ifsta->auth_alg ||
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001070 auth_transaction != ifsta->auth_transaction)
Jiri Bencf0706e82007-05-05 11:45:53 -07001071 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001072
1073 if (status_code != WLAN_STATUS_SUCCESS) {
Jiri Bencf0706e82007-05-05 11:45:53 -07001074 if (status_code == WLAN_STATUS_NOT_SUPPORTED_AUTH_ALG) {
1075 u8 algs[3];
1076 const int num_algs = ARRAY_SIZE(algs);
1077 int i, pos;
1078 algs[0] = algs[1] = algs[2] = 0xff;
1079 if (ifsta->auth_algs & IEEE80211_AUTH_ALG_OPEN)
1080 algs[0] = WLAN_AUTH_OPEN;
1081 if (ifsta->auth_algs & IEEE80211_AUTH_ALG_SHARED_KEY)
1082 algs[1] = WLAN_AUTH_SHARED_KEY;
1083 if (ifsta->auth_algs & IEEE80211_AUTH_ALG_LEAP)
1084 algs[2] = WLAN_AUTH_LEAP;
1085 if (ifsta->auth_alg == WLAN_AUTH_OPEN)
1086 pos = 0;
1087 else if (ifsta->auth_alg == WLAN_AUTH_SHARED_KEY)
1088 pos = 1;
1089 else
1090 pos = 2;
1091 for (i = 0; i < num_algs; i++) {
1092 pos++;
1093 if (pos >= num_algs)
1094 pos = 0;
1095 if (algs[pos] == ifsta->auth_alg ||
1096 algs[pos] == 0xff)
1097 continue;
1098 if (algs[pos] == WLAN_AUTH_SHARED_KEY &&
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001099 !ieee80211_sta_wep_configured(sdata))
Jiri Bencf0706e82007-05-05 11:45:53 -07001100 continue;
1101 ifsta->auth_alg = algs[pos];
Jiri Bencf0706e82007-05-05 11:45:53 -07001102 break;
1103 }
1104 }
1105 return;
1106 }
1107
1108 switch (ifsta->auth_alg) {
1109 case WLAN_AUTH_OPEN:
1110 case WLAN_AUTH_LEAP:
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001111 ieee80211_auth_completed(sdata, ifsta);
Jiri Bencf0706e82007-05-05 11:45:53 -07001112 break;
1113 case WLAN_AUTH_SHARED_KEY:
1114 if (ifsta->auth_transaction == 4)
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001115 ieee80211_auth_completed(sdata, ifsta);
Jiri Bencf0706e82007-05-05 11:45:53 -07001116 else
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001117 ieee80211_auth_challenge(sdata, ifsta, mgmt, len);
Jiri Bencf0706e82007-05-05 11:45:53 -07001118 break;
1119 }
1120}
1121
1122
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001123static void ieee80211_rx_mgmt_deauth(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001124 struct ieee80211_if_sta *ifsta,
1125 struct ieee80211_mgmt *mgmt,
1126 size_t len)
1127{
1128 u16 reason_code;
1129
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001130 if (len < 24 + 2)
Jiri Bencf0706e82007-05-05 11:45:53 -07001131 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001132
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001133 if (memcmp(ifsta->bssid, mgmt->sa, ETH_ALEN))
Jiri Bencf0706e82007-05-05 11:45:53 -07001134 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001135
1136 reason_code = le16_to_cpu(mgmt->u.deauth.reason_code);
1137
Johannes Berg988c0f72008-04-17 19:21:22 +02001138 if (ifsta->flags & IEEE80211_STA_AUTHENTICATED)
Zhu Yi97c8b012008-10-28 15:58:31 +08001139 printk(KERN_DEBUG "%s: deauthenticated (Reason: %u)\n",
1140 sdata->dev->name, reason_code);
Jiri Bencf0706e82007-05-05 11:45:53 -07001141
Tomas Winkler48c2fc52008-08-06 14:22:01 +03001142 if (ifsta->state == IEEE80211_STA_MLME_AUTHENTICATE ||
1143 ifsta->state == IEEE80211_STA_MLME_ASSOCIATE ||
1144 ifsta->state == IEEE80211_STA_MLME_ASSOCIATED) {
Ron Rindjunsky9859b812008-08-09 03:02:19 +03001145 ifsta->state = IEEE80211_STA_MLME_DIRECT_PROBE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001146 mod_timer(&ifsta->timer, jiffies +
1147 IEEE80211_RETRY_AUTH_INTERVAL);
1148 }
1149
Tomas Winkleraa458d12008-09-09 00:32:12 +03001150 ieee80211_set_disassoc(sdata, ifsta, true, false, 0);
Jiri Slabyd6f2da52007-08-28 17:01:54 -04001151 ifsta->flags &= ~IEEE80211_STA_AUTHENTICATED;
Jiri Bencf0706e82007-05-05 11:45:53 -07001152}
1153
1154
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001155static void ieee80211_rx_mgmt_disassoc(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001156 struct ieee80211_if_sta *ifsta,
1157 struct ieee80211_mgmt *mgmt,
1158 size_t len)
1159{
1160 u16 reason_code;
1161
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001162 if (len < 24 + 2)
Jiri Bencf0706e82007-05-05 11:45:53 -07001163 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001164
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001165 if (memcmp(ifsta->bssid, mgmt->sa, ETH_ALEN))
Jiri Bencf0706e82007-05-05 11:45:53 -07001166 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001167
1168 reason_code = le16_to_cpu(mgmt->u.disassoc.reason_code);
1169
Jiri Slabyd6f2da52007-08-28 17:01:54 -04001170 if (ifsta->flags & IEEE80211_STA_ASSOCIATED)
Zhu Yi97c8b012008-10-28 15:58:31 +08001171 printk(KERN_DEBUG "%s: disassociated (Reason: %u)\n",
1172 sdata->dev->name, reason_code);
Jiri Bencf0706e82007-05-05 11:45:53 -07001173
Tomas Winkler48c2fc52008-08-06 14:22:01 +03001174 if (ifsta->state == IEEE80211_STA_MLME_ASSOCIATED) {
1175 ifsta->state = IEEE80211_STA_MLME_ASSOCIATE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001176 mod_timer(&ifsta->timer, jiffies +
1177 IEEE80211_RETRY_AUTH_INTERVAL);
1178 }
1179
Vivek Natarajan5925d972008-11-21 22:19:50 -08001180 ieee80211_set_disassoc(sdata, ifsta, false, false, reason_code);
Jiri Bencf0706e82007-05-05 11:45:53 -07001181}
1182
1183
Johannes Berg471b3ef2007-12-28 14:32:58 +01001184static void ieee80211_rx_mgmt_assoc_resp(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001185 struct ieee80211_if_sta *ifsta,
1186 struct ieee80211_mgmt *mgmt,
1187 size_t len,
1188 int reassoc)
1189{
Johannes Berg471b3ef2007-12-28 14:32:58 +01001190 struct ieee80211_local *local = sdata->local;
Johannes Berg8318d782008-01-24 19:38:38 +01001191 struct ieee80211_supported_band *sband;
Jiri Bencf0706e82007-05-05 11:45:53 -07001192 struct sta_info *sta;
Johannes Berg8318d782008-01-24 19:38:38 +01001193 u64 rates, basic_rates;
Jiri Bencf0706e82007-05-05 11:45:53 -07001194 u16 capab_info, status_code, aid;
1195 struct ieee802_11_elems elems;
Johannes Bergbda39332008-10-11 01:51:51 +02001196 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
Jiri Bencf0706e82007-05-05 11:45:53 -07001197 u8 *pos;
Johannes Bergae5eb022008-10-14 16:58:37 +02001198 u32 changed = 0;
Jiri Bencf0706e82007-05-05 11:45:53 -07001199 int i, j;
Johannes Bergddf4ac52008-10-22 11:41:38 +02001200 bool have_higher_than_11mbit = false, newsta = false;
Johannes Bergae5eb022008-10-14 16:58:37 +02001201 u16 ap_ht_cap_flags;
Jiri Bencf0706e82007-05-05 11:45:53 -07001202
1203 /* AssocResp and ReassocResp have identical structure, so process both
1204 * of them in this function. */
1205
Tomas Winkler48c2fc52008-08-06 14:22:01 +03001206 if (ifsta->state != IEEE80211_STA_MLME_ASSOCIATE)
Jiri Bencf0706e82007-05-05 11:45:53 -07001207 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001208
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001209 if (len < 24 + 6)
Jiri Bencf0706e82007-05-05 11:45:53 -07001210 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001211
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001212 if (memcmp(ifsta->bssid, mgmt->sa, ETH_ALEN) != 0)
Jiri Bencf0706e82007-05-05 11:45:53 -07001213 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001214
1215 capab_info = le16_to_cpu(mgmt->u.assoc_resp.capab_info);
1216 status_code = le16_to_cpu(mgmt->u.assoc_resp.status_code);
1217 aid = le16_to_cpu(mgmt->u.assoc_resp.aid);
Jiri Bencf0706e82007-05-05 11:45:53 -07001218
Johannes Berg0c68ae262008-10-27 15:56:10 -07001219 printk(KERN_DEBUG "%s: RX %sssocResp from %pM (capab=0x%x "
Jiri Bencf0706e82007-05-05 11:45:53 -07001220 "status=%d aid=%d)\n",
Johannes Berg0c68ae262008-10-27 15:56:10 -07001221 sdata->dev->name, reassoc ? "Rea" : "A", mgmt->sa,
Johannes Bergddd68582007-10-22 14:51:37 +02001222 capab_info, status_code, (u16)(aid & ~(BIT(15) | BIT(14))));
Jiri Bencf0706e82007-05-05 11:45:53 -07001223
1224 if (status_code != WLAN_STATUS_SUCCESS) {
1225 printk(KERN_DEBUG "%s: AP denied association (code=%d)\n",
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001226 sdata->dev->name, status_code);
Daniel Drake8a69aa92007-07-27 15:43:23 +02001227 /* if this was a reassociation, ensure we try a "full"
1228 * association next time. This works around some broken APs
1229 * which do not correctly reject reassociation requests. */
Jiri Slabyd6f2da52007-08-28 17:01:54 -04001230 ifsta->flags &= ~IEEE80211_STA_PREV_BSSID_SET;
Jiri Bencf0706e82007-05-05 11:45:53 -07001231 return;
1232 }
1233
Johannes Berg1dd84aa2007-10-10 12:03:41 +02001234 if ((aid & (BIT(15) | BIT(14))) != (BIT(15) | BIT(14)))
1235 printk(KERN_DEBUG "%s: invalid aid value %d; bits 15:14 not "
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001236 "set\n", sdata->dev->name, aid);
Johannes Berg1dd84aa2007-10-10 12:03:41 +02001237 aid &= ~(BIT(15) | BIT(14));
1238
Jiri Bencf0706e82007-05-05 11:45:53 -07001239 pos = mgmt->u.assoc_resp.variable;
John W. Linville67a4cce2007-10-12 16:40:37 -04001240 ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), &elems);
Jiri Bencf0706e82007-05-05 11:45:53 -07001241
1242 if (!elems.supp_rates) {
1243 printk(KERN_DEBUG "%s: no SuppRates element in AssocResp\n",
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001244 sdata->dev->name);
Jiri Bencf0706e82007-05-05 11:45:53 -07001245 return;
1246 }
1247
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001248 printk(KERN_DEBUG "%s: associated\n", sdata->dev->name);
Jiri Bencf0706e82007-05-05 11:45:53 -07001249 ifsta->aid = aid;
1250 ifsta->ap_capab = capab_info;
1251
1252 kfree(ifsta->assocresp_ies);
1253 ifsta->assocresp_ies_len = len - (pos - (u8 *) mgmt);
Michael Wu0ec0b7a2007-07-27 15:43:24 +02001254 ifsta->assocresp_ies = kmalloc(ifsta->assocresp_ies_len, GFP_KERNEL);
Jiri Bencf0706e82007-05-05 11:45:53 -07001255 if (ifsta->assocresp_ies)
1256 memcpy(ifsta->assocresp_ies, pos, ifsta->assocresp_ies_len);
1257
Johannes Bergd0709a62008-02-25 16:27:46 +01001258 rcu_read_lock();
1259
Jiri Bencf0706e82007-05-05 11:45:53 -07001260 /* Add STA entry for the AP */
1261 sta = sta_info_get(local, ifsta->bssid);
1262 if (!sta) {
Johannes Bergc2b13452008-09-11 00:01:55 +02001263 struct ieee80211_bss *bss;
Johannes Bergddf4ac52008-10-22 11:41:38 +02001264
1265 newsta = true;
Johannes Bergd0709a62008-02-25 16:27:46 +01001266
Johannes Berg73651ee2008-02-25 16:27:47 +01001267 sta = sta_info_alloc(sdata, ifsta->bssid, GFP_ATOMIC);
1268 if (!sta) {
1269 printk(KERN_DEBUG "%s: failed to alloc STA entry for"
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001270 " the AP\n", sdata->dev->name);
Johannes Bergd0709a62008-02-25 16:27:46 +01001271 rcu_read_unlock();
Jiri Bencf0706e82007-05-05 11:45:53 -07001272 return;
1273 }
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001274 bss = ieee80211_rx_bss_get(local, ifsta->bssid,
Johannes Berg8318d782008-01-24 19:38:38 +01001275 local->hw.conf.channel->center_freq,
John W. Linvillecffdd302007-10-05 14:23:27 -04001276 ifsta->ssid, ifsta->ssid_len);
Jiri Bencf0706e82007-05-05 11:45:53 -07001277 if (bss) {
Jiri Bencf0706e82007-05-05 11:45:53 -07001278 sta->last_signal = bss->signal;
Bruno Randolf566bfe52008-05-08 19:15:40 +02001279 sta->last_qual = bss->qual;
Jiri Bencf0706e82007-05-05 11:45:53 -07001280 sta->last_noise = bss->noise;
Johannes Berg3e122be2008-07-09 14:40:34 +02001281 ieee80211_rx_bss_put(local, bss);
Jiri Bencf0706e82007-05-05 11:45:53 -07001282 }
Johannes Berg73651ee2008-02-25 16:27:47 +01001283
Ron Rindjunskya61dae12008-08-10 00:54:34 +03001284 /* update new sta with its last rx activity */
1285 sta->last_rx = jiffies;
Jiri Bencf0706e82007-05-05 11:45:53 -07001286 }
1287
Johannes Berg73651ee2008-02-25 16:27:47 +01001288 /*
1289 * FIXME: Do we really need to update the sta_info's information here?
1290 * We already know about the AP (we found it in our list) so it
1291 * should already be filled with the right info, no?
1292 * As is stands, all this is racy because typically we assume
1293 * the information that is filled in here (except flags) doesn't
1294 * change while a STA structure is alive. As such, it should move
1295 * to between the sta_info_alloc() and sta_info_insert() above.
1296 */
1297
Johannes Berg07346f812008-05-03 01:02:02 +02001298 set_sta_flags(sta, WLAN_STA_AUTH | WLAN_STA_ASSOC | WLAN_STA_ASSOC_AP |
1299 WLAN_STA_AUTHORIZED);
Jiri Bencf0706e82007-05-05 11:45:53 -07001300
1301 rates = 0;
Johannes Berg8318d782008-01-24 19:38:38 +01001302 basic_rates = 0;
1303 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
1304
Jiri Bencf0706e82007-05-05 11:45:53 -07001305 for (i = 0; i < elems.supp_rates_len; i++) {
1306 int rate = (elems.supp_rates[i] & 0x7f) * 5;
Tomas Winklerd61272c2008-10-30 17:08:08 +02001307 bool is_basic = !!(elems.supp_rates[i] & 0x80);
Johannes Berg8318d782008-01-24 19:38:38 +01001308
1309 if (rate > 110)
1310 have_higher_than_11mbit = true;
1311
1312 for (j = 0; j < sband->n_bitrates; j++) {
Tomas Winklerd61272c2008-10-30 17:08:08 +02001313 if (sband->bitrates[j].bitrate == rate) {
Jiri Bencf0706e82007-05-05 11:45:53 -07001314 rates |= BIT(j);
Tomas Winklerd61272c2008-10-30 17:08:08 +02001315 if (is_basic)
1316 basic_rates |= BIT(j);
1317 break;
1318 }
Johannes Berg8318d782008-01-24 19:38:38 +01001319 }
Jiri Bencf0706e82007-05-05 11:45:53 -07001320 }
Johannes Berg8318d782008-01-24 19:38:38 +01001321
Jiri Bencf0706e82007-05-05 11:45:53 -07001322 for (i = 0; i < elems.ext_supp_rates_len; i++) {
1323 int rate = (elems.ext_supp_rates[i] & 0x7f) * 5;
Tomas Winklerd61272c2008-10-30 17:08:08 +02001324 bool is_basic = !!(elems.supp_rates[i] & 0x80);
Johannes Berg8318d782008-01-24 19:38:38 +01001325
1326 if (rate > 110)
1327 have_higher_than_11mbit = true;
1328
1329 for (j = 0; j < sband->n_bitrates; j++) {
Tomas Winklerd61272c2008-10-30 17:08:08 +02001330 if (sband->bitrates[j].bitrate == rate) {
Jiri Bencf0706e82007-05-05 11:45:53 -07001331 rates |= BIT(j);
Tomas Winklerd61272c2008-10-30 17:08:08 +02001332 if (is_basic)
1333 basic_rates |= BIT(j);
1334 break;
1335 }
Johannes Berg8318d782008-01-24 19:38:38 +01001336 }
Jiri Bencf0706e82007-05-05 11:45:53 -07001337 }
Johannes Berg8318d782008-01-24 19:38:38 +01001338
Johannes Berg323ce792008-09-11 02:45:11 +02001339 sta->sta.supp_rates[local->hw.conf.channel->band] = rates;
Johannes Bergbda39332008-10-11 01:51:51 +02001340 sdata->vif.bss_conf.basic_rates = basic_rates;
Johannes Berg8318d782008-01-24 19:38:38 +01001341
1342 /* cf. IEEE 802.11 9.2.12 */
1343 if (local->hw.conf.channel->band == IEEE80211_BAND_2GHZ &&
1344 have_higher_than_11mbit)
1345 sdata->flags |= IEEE80211_SDATA_OPERATING_GMODE;
1346 else
1347 sdata->flags &= ~IEEE80211_SDATA_OPERATING_GMODE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001348
Johannes Bergae5eb022008-10-14 16:58:37 +02001349 if (elems.ht_cap_elem)
1350 ieee80211_ht_cap_ie_to_sta_ht_cap(sband,
Johannes Bergd9fe60d2008-10-09 12:13:49 +02001351 elems.ht_cap_elem, &sta->sta.ht_cap);
Johannes Bergae5eb022008-10-14 16:58:37 +02001352
1353 ap_ht_cap_flags = sta->sta.ht_cap.cap;
Ron Rindjunskyd3c990f2007-11-26 16:14:34 +02001354
Johannes Berg4b7679a2008-09-18 18:14:18 +02001355 rate_control_rate_init(sta);
Jiri Bencf0706e82007-05-05 11:45:53 -07001356
Johannes Bergddf4ac52008-10-22 11:41:38 +02001357 if (elems.wmm_param)
Johannes Berg07346f812008-05-03 01:02:02 +02001358 set_sta_flags(sta, WLAN_STA_WME);
Johannes Bergddf4ac52008-10-22 11:41:38 +02001359
1360 if (newsta) {
1361 int err = sta_info_insert(sta);
1362 if (err) {
1363 printk(KERN_DEBUG "%s: failed to insert STA entry for"
1364 " the AP (error %d)\n", sdata->dev->name, err);
1365 rcu_read_unlock();
1366 return;
1367 }
1368 }
1369
1370 rcu_read_unlock();
1371
1372 if (elems.wmm_param)
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001373 ieee80211_sta_wmm_params(local, ifsta, elems.wmm_param,
Jiri Bencf0706e82007-05-05 11:45:53 -07001374 elems.wmm_param_len);
Jiri Bencf0706e82007-05-05 11:45:53 -07001375
Johannes Bergae5eb022008-10-14 16:58:37 +02001376 if (elems.ht_info_elem && elems.wmm_param &&
1377 (ifsta->flags & IEEE80211_STA_WMM_ENABLED))
1378 changed |= ieee80211_enable_ht(sdata, elems.ht_info_elem,
1379 ap_ht_cap_flags);
1380
Tomas Winkler21c0cbe2008-03-28 16:33:34 -07001381 /* set AID and assoc capability,
1382 * ieee80211_set_associated() will tell the driver */
Johannes Berg8318d782008-01-24 19:38:38 +01001383 bss_conf->aid = aid;
Tomas Winkler21c0cbe2008-03-28 16:33:34 -07001384 bss_conf->assoc_capability = capab_info;
Johannes Bergae5eb022008-10-14 16:58:37 +02001385 ieee80211_set_associated(sdata, ifsta, changed);
Jiri Bencf0706e82007-05-05 11:45:53 -07001386
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001387 ieee80211_associated(sdata, ifsta);
Jiri Bencf0706e82007-05-05 11:45:53 -07001388}
1389
1390
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001391static int ieee80211_sta_join_ibss(struct ieee80211_sub_if_data *sdata,
Bruno Randolfa6072682008-02-18 11:21:15 +09001392 struct ieee80211_if_sta *ifsta,
Johannes Bergc2b13452008-09-11 00:01:55 +02001393 struct ieee80211_bss *bss)
Bruno Randolfa6072682008-02-18 11:21:15 +09001394{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001395 struct ieee80211_local *local = sdata->local;
Bruno Randolfa6072682008-02-18 11:21:15 +09001396 int res, rates, i, j;
1397 struct sk_buff *skb;
1398 struct ieee80211_mgmt *mgmt;
Bruno Randolfa6072682008-02-18 11:21:15 +09001399 u8 *pos;
Bruno Randolfa6072682008-02-18 11:21:15 +09001400 struct ieee80211_supported_band *sband;
Dan Williams507b06d2008-06-03 23:39:55 -04001401 union iwreq_data wrqu;
Bruno Randolfa6072682008-02-18 11:21:15 +09001402
Rami Rosene2ef12d2008-10-22 09:58:39 +02001403 skb = dev_alloc_skb(local->hw.extra_tx_headroom + 400);
1404 if (!skb) {
1405 printk(KERN_DEBUG "%s: failed to allocate buffer for probe "
1406 "response\n", sdata->dev->name);
1407 return -ENOMEM;
1408 }
1409
Bruno Randolfa6072682008-02-18 11:21:15 +09001410 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
1411
1412 /* Remove possible STA entries from other IBSS networks. */
Johannes Bergdc6676b2008-03-31 19:23:03 +02001413 sta_info_flush_delayed(sdata);
Bruno Randolfa6072682008-02-18 11:21:15 +09001414
1415 if (local->ops->reset_tsf) {
1416 /* Reset own TSF to allow time synchronization work. */
1417 local->ops->reset_tsf(local_to_hw(local));
1418 }
1419 memcpy(ifsta->bssid, bss->bssid, ETH_ALEN);
Johannes Berg9d139c82008-07-09 14:40:37 +02001420 res = ieee80211_if_config(sdata, IEEE80211_IFCC_BSSID);
Bruno Randolfa6072682008-02-18 11:21:15 +09001421 if (res)
1422 return res;
1423
1424 local->hw.conf.beacon_int = bss->beacon_int >= 10 ? bss->beacon_int : 10;
1425
Bruno Randolfa6072682008-02-18 11:21:15 +09001426 sdata->drop_unencrypted = bss->capability &
1427 WLAN_CAPABILITY_PRIVACY ? 1 : 0;
1428
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001429 res = ieee80211_set_freq(sdata, bss->freq);
Bruno Randolfa6072682008-02-18 11:21:15 +09001430
Assaf Kraussbe038b32008-06-05 19:55:21 +03001431 if (res)
1432 return res;
Bruno Randolfa6072682008-02-18 11:21:15 +09001433
Johannes Berg9d139c82008-07-09 14:40:37 +02001434 /* Build IBSS probe response */
Bruno Randolfa6072682008-02-18 11:21:15 +09001435
Rami Rosene2ef12d2008-10-22 09:58:39 +02001436 skb_reserve(skb, local->hw.extra_tx_headroom);
Bruno Randolfa6072682008-02-18 11:21:15 +09001437
Rami Rosene2ef12d2008-10-22 09:58:39 +02001438 mgmt = (struct ieee80211_mgmt *)
1439 skb_put(skb, 24 + sizeof(mgmt->u.beacon));
1440 memset(mgmt, 0, 24 + sizeof(mgmt->u.beacon));
1441 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
1442 IEEE80211_STYPE_PROBE_RESP);
1443 memset(mgmt->da, 0xff, ETH_ALEN);
1444 memcpy(mgmt->sa, sdata->dev->dev_addr, ETH_ALEN);
1445 memcpy(mgmt->bssid, ifsta->bssid, ETH_ALEN);
1446 mgmt->u.beacon.beacon_int =
1447 cpu_to_le16(local->hw.conf.beacon_int);
1448 mgmt->u.beacon.timestamp = cpu_to_le64(bss->timestamp);
1449 mgmt->u.beacon.capab_info = cpu_to_le16(bss->capability);
Bruno Randolfa6072682008-02-18 11:21:15 +09001450
Rami Rosene2ef12d2008-10-22 09:58:39 +02001451 pos = skb_put(skb, 2 + ifsta->ssid_len);
1452 *pos++ = WLAN_EID_SSID;
1453 *pos++ = ifsta->ssid_len;
1454 memcpy(pos, ifsta->ssid, ifsta->ssid_len);
Bruno Randolfa6072682008-02-18 11:21:15 +09001455
Rami Rosene2ef12d2008-10-22 09:58:39 +02001456 rates = bss->supp_rates_len;
1457 if (rates > 8)
1458 rates = 8;
1459 pos = skb_put(skb, 2 + rates);
1460 *pos++ = WLAN_EID_SUPP_RATES;
1461 *pos++ = rates;
1462 memcpy(pos, bss->supp_rates, rates);
Bruno Randolfa6072682008-02-18 11:21:15 +09001463
Rami Rosene2ef12d2008-10-22 09:58:39 +02001464 if (bss->band == IEEE80211_BAND_2GHZ) {
1465 pos = skb_put(skb, 2 + 1);
1466 *pos++ = WLAN_EID_DS_PARAMS;
1467 *pos++ = 1;
1468 *pos++ = ieee80211_frequency_to_channel(bss->freq);
Bruno Randolfa6072682008-02-18 11:21:15 +09001469 }
1470
Rami Rosene2ef12d2008-10-22 09:58:39 +02001471 pos = skb_put(skb, 2 + 2);
1472 *pos++ = WLAN_EID_IBSS_PARAMS;
1473 *pos++ = 2;
1474 /* FIX: set ATIM window based on scan results */
1475 *pos++ = 0;
1476 *pos++ = 0;
1477
1478 if (bss->supp_rates_len > 8) {
1479 rates = bss->supp_rates_len - 8;
1480 pos = skb_put(skb, 2 + rates);
1481 *pos++ = WLAN_EID_EXT_SUPP_RATES;
1482 *pos++ = rates;
1483 memcpy(pos, &bss->supp_rates[8], rates);
1484 }
1485
1486 ifsta->probe_resp = skb;
1487
1488 ieee80211_if_config(sdata, IEEE80211_IFCC_BEACON);
1489
1490
Johannes Berg9d139c82008-07-09 14:40:37 +02001491 rates = 0;
1492 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
1493 for (i = 0; i < bss->supp_rates_len; i++) {
1494 int bitrate = (bss->supp_rates[i] & 0x7f) * 5;
1495 for (j = 0; j < sband->n_bitrates; j++)
1496 if (sband->bitrates[j].bitrate == bitrate)
1497 rates |= BIT(j);
1498 }
1499 ifsta->supp_rates_bits[local->hw.conf.channel->band] = rates;
1500
Johannes Bergb079ada2008-09-09 09:32:59 +02001501 ieee80211_sta_def_wmm_params(sdata, bss);
Johannes Berg9d139c82008-07-09 14:40:37 +02001502
Tomas Winkler48c2fc52008-08-06 14:22:01 +03001503 ifsta->state = IEEE80211_STA_MLME_IBSS_JOINED;
Bruno Randolfa6072682008-02-18 11:21:15 +09001504 mod_timer(&ifsta->timer, jiffies + IEEE80211_IBSS_MERGE_INTERVAL);
1505
Emmanuel Grumbach4492bea2008-09-22 17:10:10 +03001506 ieee80211_led_assoc(local, true);
1507
Dan Williams507b06d2008-06-03 23:39:55 -04001508 memset(&wrqu, 0, sizeof(wrqu));
1509 memcpy(wrqu.ap_addr.sa_data, bss->bssid, ETH_ALEN);
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001510 wireless_send_event(sdata->dev, SIOCGIWAP, &wrqu, NULL);
Bruno Randolfa6072682008-02-18 11:21:15 +09001511
1512 return res;
1513}
1514
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001515static void ieee80211_rx_bss_info(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001516 struct ieee80211_mgmt *mgmt,
1517 size_t len,
1518 struct ieee80211_rx_status *rx_status,
Johannes Berg98c8fcc2008-09-08 17:44:26 +02001519 struct ieee802_11_elems *elems,
1520 bool beacon)
Jiri Bencf0706e82007-05-05 11:45:53 -07001521{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001522 struct ieee80211_local *local = sdata->local;
Johannes Berg98c8fcc2008-09-08 17:44:26 +02001523 int freq;
Johannes Bergc2b13452008-09-11 00:01:55 +02001524 struct ieee80211_bss *bss;
Jiri Bencf0706e82007-05-05 11:45:53 -07001525 struct sta_info *sta;
Johannes Bergfab7d4a2008-03-16 18:42:44 +01001526 struct ieee80211_channel *channel;
Emmanuel Grumbach8e1535d2008-09-03 23:42:20 +03001527 u64 beacon_timestamp, rx_timestamp;
1528 u64 supp_rates = 0;
Emmanuel Grumbach8e1535d2008-09-03 23:42:20 +03001529 enum ieee80211_band band = rx_status->band;
Jiri Bencf0706e82007-05-05 11:45:53 -07001530
Johannes Berg5bda6172008-09-08 11:05:10 +02001531 if (elems->ds_params && elems->ds_params_len == 1)
1532 freq = ieee80211_channel_to_frequency(elems->ds_params[0]);
1533 else
1534 freq = rx_status->freq;
1535
1536 channel = ieee80211_get_channel(local->hw.wiphy, freq);
1537
1538 if (!channel || channel->flags & IEEE80211_CHAN_DISABLED)
1539 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001540
Johannes Berg05c914f2008-09-11 00:01:58 +02001541 if (sdata->vif.type == NL80211_IFTYPE_ADHOC && elems->supp_rates &&
Emmanuel Grumbach8e1535d2008-09-03 23:42:20 +03001542 memcmp(mgmt->bssid, sdata->u.sta.bssid, ETH_ALEN) == 0) {
Emmanuel Grumbach8e1535d2008-09-03 23:42:20 +03001543 supp_rates = ieee80211_sta_get_rates(local, elems, band);
1544
Johannes Berg69e6c012008-09-08 11:05:08 +02001545 rcu_read_lock();
1546
Emmanuel Grumbach8e1535d2008-09-03 23:42:20 +03001547 sta = sta_info_get(local, mgmt->sa);
1548 if (sta) {
1549 u64 prev_rates;
1550
Johannes Berg323ce792008-09-11 02:45:11 +02001551 prev_rates = sta->sta.supp_rates[band];
Emmanuel Grumbach8e1535d2008-09-03 23:42:20 +03001552 /* make sure mandatory rates are always added */
Johannes Berg323ce792008-09-11 02:45:11 +02001553 sta->sta.supp_rates[band] = supp_rates |
Johannes Berg96dd22a2008-09-11 00:01:57 +02001554 ieee80211_mandatory_rates(local, band);
Emmanuel Grumbach8e1535d2008-09-03 23:42:20 +03001555
1556#ifdef CONFIG_MAC80211_IBSS_DEBUG
Johannes Berg323ce792008-09-11 02:45:11 +02001557 if (sta->sta.supp_rates[band] != prev_rates)
Emmanuel Grumbach8e1535d2008-09-03 23:42:20 +03001558 printk(KERN_DEBUG "%s: updated supp_rates set "
Johannes Berg0c68ae262008-10-27 15:56:10 -07001559 "for %pM based on beacon info (0x%llx | "
Emmanuel Grumbach8e1535d2008-09-03 23:42:20 +03001560 "0x%llx -> 0x%llx)\n",
Johannes Berg17741cd2008-09-11 00:02:02 +02001561 sdata->dev->name,
Johannes Berg0c68ae262008-10-27 15:56:10 -07001562 sta->sta.addr,
Emmanuel Grumbach8e1535d2008-09-03 23:42:20 +03001563 (unsigned long long) prev_rates,
1564 (unsigned long long) supp_rates,
Johannes Berg323ce792008-09-11 02:45:11 +02001565 (unsigned long long) sta->sta.supp_rates[band]);
Emmanuel Grumbach8e1535d2008-09-03 23:42:20 +03001566#endif
1567 } else {
Rami Rosenab1f5c02008-12-11 14:00:25 +02001568 ieee80211_ibss_add_sta(sdata, mgmt->bssid, mgmt->sa, supp_rates);
Jiri Bencf0706e82007-05-05 11:45:53 -07001569 }
Jiri Bencf0706e82007-05-05 11:45:53 -07001570
Johannes Berg69e6c012008-09-08 11:05:08 +02001571 rcu_read_unlock();
1572 }
Johannes Bergd0709a62008-02-25 16:27:46 +01001573
Johannes Berg98c8fcc2008-09-08 17:44:26 +02001574 bss = ieee80211_bss_info_update(local, rx_status, mgmt, len, elems,
1575 freq, beacon);
1576 if (!bss)
1577 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001578
Johannes Berg98c8fcc2008-09-08 17:44:26 +02001579 /* was just updated in ieee80211_bss_info_update */
1580 beacon_timestamp = bss->timestamp;
Daniel Drake56282212007-07-10 19:32:10 +02001581
Johannes Berg30b89b02008-04-16 17:43:20 +02001582 /*
1583 * In STA mode, the remaining parameters should not be overridden
1584 * by beacons because they're not necessarily accurate there.
1585 */
Johannes Berg05c914f2008-09-11 00:01:58 +02001586 if (sdata->vif.type != NL80211_IFTYPE_ADHOC &&
Ron Rindjunsky9859b812008-08-09 03:02:19 +03001587 bss->last_probe_resp && beacon) {
Johannes Berg3e122be2008-07-09 14:40:34 +02001588 ieee80211_rx_bss_put(local, bss);
Johannes Berg30b89b02008-04-16 17:43:20 +02001589 return;
1590 }
1591
Bruno Randolf9d9bf772008-02-18 11:21:36 +09001592 /* check if we need to merge IBSS */
Johannes Berg05c914f2008-09-11 00:01:58 +02001593 if (sdata->vif.type == NL80211_IFTYPE_ADHOC && beacon &&
Johannes Bergfba4a1e2008-02-21 11:08:33 +01001594 bss->capability & WLAN_CAPABILITY_IBSS &&
Bruno Randolf9d9bf772008-02-18 11:21:36 +09001595 bss->freq == local->oper_channel->center_freq &&
Ester Kummerae6a44e2008-06-27 18:54:48 +03001596 elems->ssid_len == sdata->u.sta.ssid_len &&
1597 memcmp(elems->ssid, sdata->u.sta.ssid,
1598 sdata->u.sta.ssid_len) == 0) {
Bruno Randolf9d9bf772008-02-18 11:21:36 +09001599 if (rx_status->flag & RX_FLAG_TSFT) {
1600 /* in order for correct IBSS merging we need mactime
1601 *
1602 * since mactime is defined as the time the first data
1603 * symbol of the frame hits the PHY, and the timestamp
1604 * of the beacon is defined as "the time that the data
1605 * symbol containing the first bit of the timestamp is
1606 * transmitted to the PHY plus the transmitting STA’s
1607 * delays through its local PHY from the MAC-PHY
1608 * interface to its interface with the WM"
1609 * (802.11 11.1.2) - equals the time this bit arrives at
1610 * the receiver - we have to take into account the
1611 * offset between the two.
1612 * e.g: at 1 MBit that means mactime is 192 usec earlier
1613 * (=24 bytes * 8 usecs/byte) than the beacon timestamp.
1614 */
Emmanuel Grumbach8e1535d2008-09-03 23:42:20 +03001615 int rate = local->hw.wiphy->bands[band]->
Bruno Randolf9d9bf772008-02-18 11:21:36 +09001616 bitrates[rx_status->rate_idx].bitrate;
1617 rx_timestamp = rx_status->mactime + (24 * 8 * 10 / rate);
1618 } else if (local && local->ops && local->ops->get_tsf)
1619 /* second best option: get current TSF */
1620 rx_timestamp = local->ops->get_tsf(local_to_hw(local));
1621 else
1622 /* can't merge without knowing the TSF */
1623 rx_timestamp = -1LLU;
1624#ifdef CONFIG_MAC80211_IBSS_DEBUG
Johannes Berg0c68ae262008-10-27 15:56:10 -07001625 printk(KERN_DEBUG "RX beacon SA=%pM BSSID="
1626 "%pM TSF=0x%llx BCN=0x%llx diff=%lld @%lu\n",
1627 mgmt->sa, mgmt->bssid,
Bruno Randolf9d9bf772008-02-18 11:21:36 +09001628 (unsigned long long)rx_timestamp,
1629 (unsigned long long)beacon_timestamp,
1630 (unsigned long long)(rx_timestamp - beacon_timestamp),
1631 jiffies);
1632#endif /* CONFIG_MAC80211_IBSS_DEBUG */
1633 if (beacon_timestamp > rx_timestamp) {
John W. Linville576fdea2008-08-26 20:33:34 -04001634#ifdef CONFIG_MAC80211_IBSS_DEBUG
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001635 printk(KERN_DEBUG "%s: beacon TSF higher than "
Johannes Berg0c68ae262008-10-27 15:56:10 -07001636 "local TSF - IBSS merge with BSSID %pM\n",
1637 sdata->dev->name, mgmt->bssid);
Johannes Bergfba4a1e2008-02-21 11:08:33 +01001638#endif
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001639 ieee80211_sta_join_ibss(sdata, &sdata->u.sta, bss);
Rami Rosenab1f5c02008-12-11 14:00:25 +02001640 ieee80211_ibss_add_sta(sdata, mgmt->bssid, mgmt->sa, supp_rates);
Bruno Randolf9d9bf772008-02-18 11:21:36 +09001641 }
1642 }
1643
Johannes Berg3e122be2008-07-09 14:40:34 +02001644 ieee80211_rx_bss_put(local, bss);
Jiri Bencf0706e82007-05-05 11:45:53 -07001645}
1646
1647
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001648static void ieee80211_rx_mgmt_probe_resp(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001649 struct ieee80211_mgmt *mgmt,
1650 size_t len,
1651 struct ieee80211_rx_status *rx_status)
1652{
Ester Kummerae6a44e2008-06-27 18:54:48 +03001653 size_t baselen;
1654 struct ieee802_11_elems elems;
Ron Rindjunsky9859b812008-08-09 03:02:19 +03001655 struct ieee80211_if_sta *ifsta = &sdata->u.sta;
Ester Kummerae6a44e2008-06-27 18:54:48 +03001656
Tomas Winkler8e7cdbb2008-08-03 14:32:01 +03001657 if (memcmp(mgmt->da, sdata->dev->dev_addr, ETH_ALEN))
1658 return; /* ignore ProbeResp to foreign address */
1659
Ester Kummerae6a44e2008-06-27 18:54:48 +03001660 baselen = (u8 *) mgmt->u.probe_resp.variable - (u8 *) mgmt;
1661 if (baselen > len)
1662 return;
1663
1664 ieee802_11_parse_elems(mgmt->u.probe_resp.variable, len - baselen,
1665 &elems);
1666
Johannes Berg98c8fcc2008-09-08 17:44:26 +02001667 ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems, false);
Ron Rindjunsky9859b812008-08-09 03:02:19 +03001668
1669 /* direct probe may be part of the association flow */
1670 if (test_and_clear_bit(IEEE80211_STA_REQ_DIRECT_PROBE,
1671 &ifsta->request)) {
1672 printk(KERN_DEBUG "%s direct probe responded\n",
1673 sdata->dev->name);
1674 ieee80211_authenticate(sdata, ifsta);
1675 }
Jiri Bencf0706e82007-05-05 11:45:53 -07001676}
1677
1678
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001679static void ieee80211_rx_mgmt_beacon(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001680 struct ieee80211_mgmt *mgmt,
1681 size_t len,
1682 struct ieee80211_rx_status *rx_status)
1683{
Jiri Bencf0706e82007-05-05 11:45:53 -07001684 struct ieee80211_if_sta *ifsta;
Jiri Bencf0706e82007-05-05 11:45:53 -07001685 size_t baselen;
1686 struct ieee802_11_elems elems;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001687 struct ieee80211_local *local = sdata->local;
Johannes Berg471b3ef2007-12-28 14:32:58 +01001688 u32 changed = 0;
Johannes Berg7a5158e2008-10-08 10:59:33 +02001689 bool erp_valid;
1690 u8 erp_value = 0;
Jiri Bencf0706e82007-05-05 11:45:53 -07001691
Ester Kummerae6a44e2008-06-27 18:54:48 +03001692 /* Process beacon from the current BSS */
1693 baselen = (u8 *) mgmt->u.beacon.variable - (u8 *) mgmt;
1694 if (baselen > len)
1695 return;
1696
1697 ieee802_11_parse_elems(mgmt->u.beacon.variable, len - baselen, &elems);
1698
Johannes Berg98c8fcc2008-09-08 17:44:26 +02001699 ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems, true);
Jiri Bencf0706e82007-05-05 11:45:53 -07001700
Johannes Berg05c914f2008-09-11 00:01:58 +02001701 if (sdata->vif.type != NL80211_IFTYPE_STATION)
Jiri Bencf0706e82007-05-05 11:45:53 -07001702 return;
1703 ifsta = &sdata->u.sta;
1704
Jiri Slabyd6f2da52007-08-28 17:01:54 -04001705 if (!(ifsta->flags & IEEE80211_STA_ASSOCIATED) ||
Jiri Bencf0706e82007-05-05 11:45:53 -07001706 memcmp(ifsta->bssid, mgmt->bssid, ETH_ALEN) != 0)
1707 return;
1708
Johannes Bergfe3fa822008-09-08 11:05:09 +02001709 ieee80211_sta_wmm_params(local, ifsta, elems.wmm_param,
1710 elems.wmm_param_len);
1711
Johannes Berg7a5158e2008-10-08 10:59:33 +02001712
1713 if (elems.erp_info && elems.erp_info_len >= 1) {
1714 erp_valid = true;
1715 erp_value = elems.erp_info[0];
1716 } else {
1717 erp_valid = false;
John W. Linville50c4afb2008-04-15 14:09:27 -04001718 }
Johannes Berg7a5158e2008-10-08 10:59:33 +02001719 changed |= ieee80211_handle_bss_capability(sdata,
1720 le16_to_cpu(mgmt->u.beacon.capab_info),
1721 erp_valid, erp_value);
Jiri Bencf0706e82007-05-05 11:45:53 -07001722
Ron Rindjunskyd3c990f2007-11-26 16:14:34 +02001723
Johannes Bergae5eb022008-10-14 16:58:37 +02001724 if (elems.ht_cap_elem && elems.ht_info_elem && elems.wmm_param) {
1725 struct sta_info *sta;
1726 struct ieee80211_supported_band *sband;
1727 u16 ap_ht_cap_flags;
1728
1729 rcu_read_lock();
1730
1731 sta = sta_info_get(local, ifsta->bssid);
1732 if (!sta) {
1733 rcu_read_unlock();
1734 return;
1735 }
1736
1737 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
1738
1739 ieee80211_ht_cap_ie_to_sta_ht_cap(sband,
1740 elems.ht_cap_elem, &sta->sta.ht_cap);
1741
1742 ap_ht_cap_flags = sta->sta.ht_cap.cap;
1743
1744 rcu_read_unlock();
1745
1746 changed |= ieee80211_enable_ht(sdata, elems.ht_info_elem,
1747 ap_ht_cap_flags);
Ron Rindjunskyd3c990f2007-11-26 16:14:34 +02001748 }
1749
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001750 if (elems.country_elem) {
1751 /* Note we are only reviewing this on beacons
1752 * for the BSSID we are associated to */
1753 regulatory_hint_11d(local->hw.wiphy,
1754 elems.country_elem, elems.country_elem_len);
1755 }
1756
Johannes Berg471b3ef2007-12-28 14:32:58 +01001757 ieee80211_bss_info_change_notify(sdata, changed);
Jiri Bencf0706e82007-05-05 11:45:53 -07001758}
1759
1760
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001761static void ieee80211_rx_mgmt_probe_req(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001762 struct ieee80211_if_sta *ifsta,
1763 struct ieee80211_mgmt *mgmt,
1764 size_t len,
1765 struct ieee80211_rx_status *rx_status)
1766{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001767 struct ieee80211_local *local = sdata->local;
Jiri Bencf0706e82007-05-05 11:45:53 -07001768 int tx_last_beacon;
1769 struct sk_buff *skb;
1770 struct ieee80211_mgmt *resp;
1771 u8 *pos, *end;
1772
Johannes Berg05c914f2008-09-11 00:01:58 +02001773 if (sdata->vif.type != NL80211_IFTYPE_ADHOC ||
Tomas Winkler48c2fc52008-08-06 14:22:01 +03001774 ifsta->state != IEEE80211_STA_MLME_IBSS_JOINED ||
Jiri Bencf0706e82007-05-05 11:45:53 -07001775 len < 24 + 2 || !ifsta->probe_resp)
1776 return;
1777
1778 if (local->ops->tx_last_beacon)
1779 tx_last_beacon = local->ops->tx_last_beacon(local_to_hw(local));
1780 else
1781 tx_last_beacon = 1;
1782
1783#ifdef CONFIG_MAC80211_IBSS_DEBUG
Johannes Berg0c68ae262008-10-27 15:56:10 -07001784 printk(KERN_DEBUG "%s: RX ProbeReq SA=%pM DA=%pM BSSID=%pM"
1785 " (tx_last_beacon=%d)\n",
1786 sdata->dev->name, mgmt->sa, mgmt->da,
1787 mgmt->bssid, tx_last_beacon);
Jiri Bencf0706e82007-05-05 11:45:53 -07001788#endif /* CONFIG_MAC80211_IBSS_DEBUG */
1789
1790 if (!tx_last_beacon)
1791 return;
1792
1793 if (memcmp(mgmt->bssid, ifsta->bssid, ETH_ALEN) != 0 &&
1794 memcmp(mgmt->bssid, "\xff\xff\xff\xff\xff\xff", ETH_ALEN) != 0)
1795 return;
1796
1797 end = ((u8 *) mgmt) + len;
1798 pos = mgmt->u.probe_req.variable;
1799 if (pos[0] != WLAN_EID_SSID ||
1800 pos + 2 + pos[1] > end) {
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001801#ifdef CONFIG_MAC80211_IBSS_DEBUG
1802 printk(KERN_DEBUG "%s: Invalid SSID IE in ProbeReq "
Johannes Berg0c68ae262008-10-27 15:56:10 -07001803 "from %pM\n",
1804 sdata->dev->name, mgmt->sa);
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001805#endif
Jiri Bencf0706e82007-05-05 11:45:53 -07001806 return;
1807 }
1808 if (pos[1] != 0 &&
1809 (pos[1] != ifsta->ssid_len ||
1810 memcmp(pos + 2, ifsta->ssid, ifsta->ssid_len) != 0)) {
1811 /* Ignore ProbeReq for foreign SSID */
1812 return;
1813 }
1814
1815 /* Reply with ProbeResp */
Michael Wu0ec0b7a2007-07-27 15:43:24 +02001816 skb = skb_copy(ifsta->probe_resp, GFP_KERNEL);
Jiri Bencf0706e82007-05-05 11:45:53 -07001817 if (!skb)
1818 return;
1819
1820 resp = (struct ieee80211_mgmt *) skb->data;
1821 memcpy(resp->da, mgmt->sa, ETH_ALEN);
1822#ifdef CONFIG_MAC80211_IBSS_DEBUG
Johannes Berg0c68ae262008-10-27 15:56:10 -07001823 printk(KERN_DEBUG "%s: Sending ProbeResp to %pM\n",
1824 sdata->dev->name, resp->da);
Jiri Bencf0706e82007-05-05 11:45:53 -07001825#endif /* CONFIG_MAC80211_IBSS_DEBUG */
Johannes Berge50db652008-09-09 15:07:09 +02001826 ieee80211_tx_skb(sdata, skb, 0);
Jiri Bencf0706e82007-05-05 11:45:53 -07001827}
1828
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001829void ieee80211_sta_rx_mgmt(struct ieee80211_sub_if_data *sdata, struct sk_buff *skb,
Jiri Bencf0706e82007-05-05 11:45:53 -07001830 struct ieee80211_rx_status *rx_status)
1831{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001832 struct ieee80211_local *local = sdata->local;
Jiri Bencf0706e82007-05-05 11:45:53 -07001833 struct ieee80211_if_sta *ifsta;
1834 struct ieee80211_mgmt *mgmt;
1835 u16 fc;
1836
1837 if (skb->len < 24)
1838 goto fail;
1839
Jiri Bencf0706e82007-05-05 11:45:53 -07001840 ifsta = &sdata->u.sta;
1841
1842 mgmt = (struct ieee80211_mgmt *) skb->data;
1843 fc = le16_to_cpu(mgmt->frame_control);
1844
1845 switch (fc & IEEE80211_FCTL_STYPE) {
1846 case IEEE80211_STYPE_PROBE_REQ:
1847 case IEEE80211_STYPE_PROBE_RESP:
1848 case IEEE80211_STYPE_BEACON:
1849 memcpy(skb->cb, rx_status, sizeof(*rx_status));
1850 case IEEE80211_STYPE_AUTH:
1851 case IEEE80211_STYPE_ASSOC_RESP:
1852 case IEEE80211_STYPE_REASSOC_RESP:
1853 case IEEE80211_STYPE_DEAUTH:
1854 case IEEE80211_STYPE_DISASSOC:
1855 skb_queue_tail(&ifsta->skb_queue, skb);
1856 queue_work(local->hw.workqueue, &ifsta->work);
1857 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001858 }
1859
1860 fail:
1861 kfree_skb(skb);
1862}
1863
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001864static void ieee80211_sta_rx_queued_mgmt(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001865 struct sk_buff *skb)
1866{
1867 struct ieee80211_rx_status *rx_status;
Jiri Bencf0706e82007-05-05 11:45:53 -07001868 struct ieee80211_if_sta *ifsta;
1869 struct ieee80211_mgmt *mgmt;
1870 u16 fc;
1871
Jiri Bencf0706e82007-05-05 11:45:53 -07001872 ifsta = &sdata->u.sta;
1873
1874 rx_status = (struct ieee80211_rx_status *) skb->cb;
1875 mgmt = (struct ieee80211_mgmt *) skb->data;
1876 fc = le16_to_cpu(mgmt->frame_control);
1877
1878 switch (fc & IEEE80211_FCTL_STYPE) {
1879 case IEEE80211_STYPE_PROBE_REQ:
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001880 ieee80211_rx_mgmt_probe_req(sdata, ifsta, mgmt, skb->len,
Jiri Bencf0706e82007-05-05 11:45:53 -07001881 rx_status);
1882 break;
1883 case IEEE80211_STYPE_PROBE_RESP:
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001884 ieee80211_rx_mgmt_probe_resp(sdata, mgmt, skb->len, rx_status);
Jiri Bencf0706e82007-05-05 11:45:53 -07001885 break;
1886 case IEEE80211_STYPE_BEACON:
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001887 ieee80211_rx_mgmt_beacon(sdata, mgmt, skb->len, rx_status);
Jiri Bencf0706e82007-05-05 11:45:53 -07001888 break;
1889 case IEEE80211_STYPE_AUTH:
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001890 ieee80211_rx_mgmt_auth(sdata, ifsta, mgmt, skb->len);
Jiri Bencf0706e82007-05-05 11:45:53 -07001891 break;
1892 case IEEE80211_STYPE_ASSOC_RESP:
Johannes Berg471b3ef2007-12-28 14:32:58 +01001893 ieee80211_rx_mgmt_assoc_resp(sdata, ifsta, mgmt, skb->len, 0);
Jiri Bencf0706e82007-05-05 11:45:53 -07001894 break;
1895 case IEEE80211_STYPE_REASSOC_RESP:
Johannes Berg471b3ef2007-12-28 14:32:58 +01001896 ieee80211_rx_mgmt_assoc_resp(sdata, ifsta, mgmt, skb->len, 1);
Jiri Bencf0706e82007-05-05 11:45:53 -07001897 break;
1898 case IEEE80211_STYPE_DEAUTH:
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001899 ieee80211_rx_mgmt_deauth(sdata, ifsta, mgmt, skb->len);
Jiri Bencf0706e82007-05-05 11:45:53 -07001900 break;
1901 case IEEE80211_STYPE_DISASSOC:
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001902 ieee80211_rx_mgmt_disassoc(sdata, ifsta, mgmt, skb->len);
Jiri Bencf0706e82007-05-05 11:45:53 -07001903 break;
1904 }
1905
1906 kfree_skb(skb);
1907}
1908
1909
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001910static int ieee80211_sta_active_ibss(struct ieee80211_sub_if_data *sdata)
Jiri Bencf0706e82007-05-05 11:45:53 -07001911{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001912 struct ieee80211_local *local = sdata->local;
Jiri Bencf0706e82007-05-05 11:45:53 -07001913 int active = 0;
1914 struct sta_info *sta;
1915
Johannes Bergd0709a62008-02-25 16:27:46 +01001916 rcu_read_lock();
1917
1918 list_for_each_entry_rcu(sta, &local->sta_list, list) {
1919 if (sta->sdata == sdata &&
Jiri Bencf0706e82007-05-05 11:45:53 -07001920 time_after(sta->last_rx + IEEE80211_IBSS_MERGE_INTERVAL,
1921 jiffies)) {
1922 active++;
1923 break;
1924 }
1925 }
Johannes Bergd0709a62008-02-25 16:27:46 +01001926
1927 rcu_read_unlock();
Jiri Bencf0706e82007-05-05 11:45:53 -07001928
1929 return active;
1930}
1931
1932
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001933static void ieee80211_sta_merge_ibss(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001934 struct ieee80211_if_sta *ifsta)
1935{
1936 mod_timer(&ifsta->timer, jiffies + IEEE80211_IBSS_MERGE_INTERVAL);
1937
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001938 ieee80211_sta_expire(sdata, IEEE80211_IBSS_INACTIVITY_LIMIT);
1939 if (ieee80211_sta_active_ibss(sdata))
Jiri Bencf0706e82007-05-05 11:45:53 -07001940 return;
1941
1942 printk(KERN_DEBUG "%s: No active IBSS STAs - trying to scan for other "
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001943 "IBSS networks with same SSID (merge)\n", sdata->dev->name);
Johannes Bergc2b13452008-09-11 00:01:55 +02001944 ieee80211_request_scan(sdata, ifsta->ssid, ifsta->ssid_len);
Jiri Bencf0706e82007-05-05 11:45:53 -07001945}
1946
1947
Johannes Berg9c6bd792008-09-11 00:01:52 +02001948static void ieee80211_sta_timer(unsigned long data)
Jiri Bencf0706e82007-05-05 11:45:53 -07001949{
1950 struct ieee80211_sub_if_data *sdata =
1951 (struct ieee80211_sub_if_data *) data;
1952 struct ieee80211_if_sta *ifsta = &sdata->u.sta;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001953 struct ieee80211_local *local = sdata->local;
Jiri Bencf0706e82007-05-05 11:45:53 -07001954
1955 set_bit(IEEE80211_STA_REQ_RUN, &ifsta->request);
1956 queue_work(local->hw.workqueue, &ifsta->work);
1957}
1958
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001959static void ieee80211_sta_reset_auth(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001960 struct ieee80211_if_sta *ifsta)
1961{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001962 struct ieee80211_local *local = sdata->local;
Jiri Bencf0706e82007-05-05 11:45:53 -07001963
1964 if (local->ops->reset_tsf) {
1965 /* Reset own TSF to allow time synchronization work. */
1966 local->ops->reset_tsf(local_to_hw(local));
1967 }
1968
1969 ifsta->wmm_last_param_set = -1; /* allow any WMM update */
1970
1971
1972 if (ifsta->auth_algs & IEEE80211_AUTH_ALG_OPEN)
1973 ifsta->auth_alg = WLAN_AUTH_OPEN;
1974 else if (ifsta->auth_algs & IEEE80211_AUTH_ALG_SHARED_KEY)
1975 ifsta->auth_alg = WLAN_AUTH_SHARED_KEY;
1976 else if (ifsta->auth_algs & IEEE80211_AUTH_ALG_LEAP)
1977 ifsta->auth_alg = WLAN_AUTH_LEAP;
1978 else
1979 ifsta->auth_alg = WLAN_AUTH_OPEN;
Jiri Bencf0706e82007-05-05 11:45:53 -07001980 ifsta->auth_transaction = -1;
Jiri Slabyd6f2da52007-08-28 17:01:54 -04001981 ifsta->flags &= ~IEEE80211_STA_ASSOCIATED;
Ron Rindjunsky6042a3e2008-08-08 01:50:46 +03001982 ifsta->assoc_scan_tries = 0;
Ron Rindjunsky9859b812008-08-09 03:02:19 +03001983 ifsta->direct_probe_tries = 0;
Ron Rindjunsky6042a3e2008-08-08 01:50:46 +03001984 ifsta->auth_tries = 0;
1985 ifsta->assoc_tries = 0;
Tomas Winkler24e64622008-09-08 17:33:40 +02001986 netif_tx_stop_all_queues(sdata->dev);
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001987 netif_carrier_off(sdata->dev);
Jiri Bencf0706e82007-05-05 11:45:53 -07001988}
1989
1990
Jiri Bencf0706e82007-05-05 11:45:53 -07001991static int ieee80211_sta_match_ssid(struct ieee80211_if_sta *ifsta,
1992 const char *ssid, int ssid_len)
1993{
1994 int tmp, hidden_ssid;
1995
Michael Wu48225702007-10-19 17:14:36 -04001996 if (ssid_len == ifsta->ssid_len &&
1997 !memcmp(ifsta->ssid, ssid, ssid_len))
Jiri Bencf0706e82007-05-05 11:45:53 -07001998 return 1;
1999
Jiri Slabyd6f2da52007-08-28 17:01:54 -04002000 if (ifsta->flags & IEEE80211_STA_AUTO_BSSID_SEL)
Jiri Bencf0706e82007-05-05 11:45:53 -07002001 return 0;
2002
2003 hidden_ssid = 1;
2004 tmp = ssid_len;
2005 while (tmp--) {
2006 if (ssid[tmp] != '\0') {
2007 hidden_ssid = 0;
2008 break;
2009 }
2010 }
2011
Fabio Rossicb3da8c2008-11-26 22:44:23 +01002012 if (hidden_ssid && (ifsta->ssid_len == ssid_len || ssid_len == 0))
Jiri Bencf0706e82007-05-05 11:45:53 -07002013 return 1;
2014
2015 if (ssid_len == 1 && ssid[0] == ' ')
2016 return 1;
2017
2018 return 0;
2019}
2020
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002021static int ieee80211_sta_create_ibss(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07002022 struct ieee80211_if_sta *ifsta)
2023{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002024 struct ieee80211_local *local = sdata->local;
Johannes Bergc2b13452008-09-11 00:01:55 +02002025 struct ieee80211_bss *bss;
Johannes Berg8318d782008-01-24 19:38:38 +01002026 struct ieee80211_supported_band *sband;
Jiri Bencf0706e82007-05-05 11:45:53 -07002027 u8 bssid[ETH_ALEN], *pos;
2028 int i;
Tomas Winkler167ad6f2008-05-21 18:17:05 +03002029 int ret;
Jiri Bencf0706e82007-05-05 11:45:53 -07002030
2031#if 0
2032 /* Easier testing, use fixed BSSID. */
2033 memset(bssid, 0xfe, ETH_ALEN);
2034#else
2035 /* Generate random, not broadcast, locally administered BSSID. Mix in
2036 * own MAC address to make sure that devices that do not have proper
2037 * random number generator get different BSSID. */
2038 get_random_bytes(bssid, ETH_ALEN);
2039 for (i = 0; i < ETH_ALEN; i++)
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002040 bssid[i] ^= sdata->dev->dev_addr[i];
Jiri Bencf0706e82007-05-05 11:45:53 -07002041 bssid[0] &= ~0x01;
2042 bssid[0] |= 0x02;
2043#endif
2044
Johannes Berg0c68ae262008-10-27 15:56:10 -07002045 printk(KERN_DEBUG "%s: Creating new IBSS network, BSSID %pM\n",
2046 sdata->dev->name, bssid);
Jiri Bencf0706e82007-05-05 11:45:53 -07002047
Johannes Berg98c8fcc2008-09-08 17:44:26 +02002048 bss = ieee80211_rx_bss_add(local, bssid,
Johannes Berg8318d782008-01-24 19:38:38 +01002049 local->hw.conf.channel->center_freq,
John W. Linvillecffdd302007-10-05 14:23:27 -04002050 sdata->u.sta.ssid, sdata->u.sta.ssid_len);
Jiri Bencf0706e82007-05-05 11:45:53 -07002051 if (!bss)
2052 return -ENOMEM;
2053
Johannes Berg8318d782008-01-24 19:38:38 +01002054 bss->band = local->hw.conf.channel->band;
2055 sband = local->hw.wiphy->bands[bss->band];
Jiri Bencf0706e82007-05-05 11:45:53 -07002056
2057 if (local->hw.conf.beacon_int == 0)
Tomas Winklerdc0ae302008-06-12 22:38:37 +03002058 local->hw.conf.beacon_int = 100;
Jiri Bencf0706e82007-05-05 11:45:53 -07002059 bss->beacon_int = local->hw.conf.beacon_int;
Jiri Bencf0706e82007-05-05 11:45:53 -07002060 bss->last_update = jiffies;
2061 bss->capability = WLAN_CAPABILITY_IBSS;
Johannes Berg988c0f72008-04-17 19:21:22 +02002062
2063 if (sdata->default_key)
Jiri Bencf0706e82007-05-05 11:45:53 -07002064 bss->capability |= WLAN_CAPABILITY_PRIVACY;
Johannes Berg988c0f72008-04-17 19:21:22 +02002065 else
Jiri Bencf0706e82007-05-05 11:45:53 -07002066 sdata->drop_unencrypted = 0;
Johannes Berg988c0f72008-04-17 19:21:22 +02002067
Johannes Berg8318d782008-01-24 19:38:38 +01002068 bss->supp_rates_len = sband->n_bitrates;
Jiri Bencf0706e82007-05-05 11:45:53 -07002069 pos = bss->supp_rates;
Johannes Berg8318d782008-01-24 19:38:38 +01002070 for (i = 0; i < sband->n_bitrates; i++) {
2071 int rate = sband->bitrates[i].bitrate;
Jiri Bencf0706e82007-05-05 11:45:53 -07002072 *pos++ = (u8) (rate / 5);
2073 }
2074
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002075 ret = ieee80211_sta_join_ibss(sdata, ifsta, bss);
Johannes Berg3e122be2008-07-09 14:40:34 +02002076 ieee80211_rx_bss_put(local, bss);
Tomas Winkler167ad6f2008-05-21 18:17:05 +03002077 return ret;
Jiri Bencf0706e82007-05-05 11:45:53 -07002078}
2079
2080
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002081static int ieee80211_sta_find_ibss(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07002082 struct ieee80211_if_sta *ifsta)
2083{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002084 struct ieee80211_local *local = sdata->local;
Johannes Bergc2b13452008-09-11 00:01:55 +02002085 struct ieee80211_bss *bss;
Jiri Bencf0706e82007-05-05 11:45:53 -07002086 int found = 0;
2087 u8 bssid[ETH_ALEN];
2088 int active_ibss;
2089
2090 if (ifsta->ssid_len == 0)
2091 return -EINVAL;
2092
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002093 active_ibss = ieee80211_sta_active_ibss(sdata);
Jiri Bencf0706e82007-05-05 11:45:53 -07002094#ifdef CONFIG_MAC80211_IBSS_DEBUG
2095 printk(KERN_DEBUG "%s: sta_find_ibss (active_ibss=%d)\n",
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002096 sdata->dev->name, active_ibss);
Jiri Bencf0706e82007-05-05 11:45:53 -07002097#endif /* CONFIG_MAC80211_IBSS_DEBUG */
Johannes Bergc2b13452008-09-11 00:01:55 +02002098 spin_lock_bh(&local->bss_lock);
2099 list_for_each_entry(bss, &local->bss_list, list) {
Jiri Bencf0706e82007-05-05 11:45:53 -07002100 if (ifsta->ssid_len != bss->ssid_len ||
2101 memcmp(ifsta->ssid, bss->ssid, bss->ssid_len) != 0
2102 || !(bss->capability & WLAN_CAPABILITY_IBSS))
2103 continue;
2104#ifdef CONFIG_MAC80211_IBSS_DEBUG
Johannes Berg0c68ae262008-10-27 15:56:10 -07002105 printk(KERN_DEBUG " bssid=%pM found\n", bss->bssid);
Jiri Bencf0706e82007-05-05 11:45:53 -07002106#endif /* CONFIG_MAC80211_IBSS_DEBUG */
2107 memcpy(bssid, bss->bssid, ETH_ALEN);
2108 found = 1;
2109 if (active_ibss || memcmp(bssid, ifsta->bssid, ETH_ALEN) != 0)
2110 break;
2111 }
Johannes Bergc2b13452008-09-11 00:01:55 +02002112 spin_unlock_bh(&local->bss_lock);
Jiri Bencf0706e82007-05-05 11:45:53 -07002113
2114#ifdef CONFIG_MAC80211_IBSS_DEBUG
Vladimir Koutny6e438292008-07-07 14:23:01 +02002115 if (found)
Johannes Berg0c68ae262008-10-27 15:56:10 -07002116 printk(KERN_DEBUG " sta_find_ibss: selected %pM current "
2117 "%pM\n", bssid, ifsta->bssid);
Jiri Bencf0706e82007-05-05 11:45:53 -07002118#endif /* CONFIG_MAC80211_IBSS_DEBUG */
Daniel Drake80693ce2008-07-19 23:31:17 +01002119
2120 if (found && memcmp(ifsta->bssid, bssid, ETH_ALEN) != 0) {
Tomas Winkler167ad6f2008-05-21 18:17:05 +03002121 int ret;
Daniel Drake80693ce2008-07-19 23:31:17 +01002122 int search_freq;
2123
2124 if (ifsta->flags & IEEE80211_STA_AUTO_CHANNEL_SEL)
2125 search_freq = bss->freq;
2126 else
2127 search_freq = local->hw.conf.channel->center_freq;
2128
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002129 bss = ieee80211_rx_bss_get(local, bssid, search_freq,
Daniel Drake80693ce2008-07-19 23:31:17 +01002130 ifsta->ssid, ifsta->ssid_len);
2131 if (!bss)
2132 goto dont_join;
2133
Johannes Berg0c68ae262008-10-27 15:56:10 -07002134 printk(KERN_DEBUG "%s: Selected IBSS BSSID %pM"
Jiri Bencf0706e82007-05-05 11:45:53 -07002135 " based on configured SSID\n",
Johannes Berg0c68ae262008-10-27 15:56:10 -07002136 sdata->dev->name, bssid);
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002137 ret = ieee80211_sta_join_ibss(sdata, ifsta, bss);
Johannes Berg3e122be2008-07-09 14:40:34 +02002138 ieee80211_rx_bss_put(local, bss);
Tomas Winkler167ad6f2008-05-21 18:17:05 +03002139 return ret;
Jiri Bencf0706e82007-05-05 11:45:53 -07002140 }
Daniel Drake80693ce2008-07-19 23:31:17 +01002141
2142dont_join:
Jiri Bencf0706e82007-05-05 11:45:53 -07002143#ifdef CONFIG_MAC80211_IBSS_DEBUG
2144 printk(KERN_DEBUG " did not try to join ibss\n");
2145#endif /* CONFIG_MAC80211_IBSS_DEBUG */
2146
2147 /* Selected IBSS not found in current scan results - try to scan */
Tomas Winkler48c2fc52008-08-06 14:22:01 +03002148 if (ifsta->state == IEEE80211_STA_MLME_IBSS_JOINED &&
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002149 !ieee80211_sta_active_ibss(sdata)) {
Jiri Bencf0706e82007-05-05 11:45:53 -07002150 mod_timer(&ifsta->timer, jiffies +
2151 IEEE80211_IBSS_MERGE_INTERVAL);
2152 } else if (time_after(jiffies, local->last_scan_completed +
2153 IEEE80211_SCAN_INTERVAL)) {
2154 printk(KERN_DEBUG "%s: Trigger new scan to find an IBSS to "
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002155 "join\n", sdata->dev->name);
Johannes Bergc2b13452008-09-11 00:01:55 +02002156 return ieee80211_request_scan(sdata, ifsta->ssid,
Jiri Bencf0706e82007-05-05 11:45:53 -07002157 ifsta->ssid_len);
Tomas Winkler48c2fc52008-08-06 14:22:01 +03002158 } else if (ifsta->state != IEEE80211_STA_MLME_IBSS_JOINED) {
Jiri Bencf0706e82007-05-05 11:45:53 -07002159 int interval = IEEE80211_SCAN_INTERVAL;
2160
2161 if (time_after(jiffies, ifsta->ibss_join_req +
2162 IEEE80211_IBSS_JOIN_TIMEOUT)) {
Jiri Slabyd6f2da52007-08-28 17:01:54 -04002163 if ((ifsta->flags & IEEE80211_STA_CREATE_IBSS) &&
Johannes Berg8318d782008-01-24 19:38:38 +01002164 (!(local->oper_channel->flags &
2165 IEEE80211_CHAN_NO_IBSS)))
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002166 return ieee80211_sta_create_ibss(sdata, ifsta);
Jiri Slabyd6f2da52007-08-28 17:01:54 -04002167 if (ifsta->flags & IEEE80211_STA_CREATE_IBSS) {
Johannes Berg8318d782008-01-24 19:38:38 +01002168 printk(KERN_DEBUG "%s: IBSS not allowed on"
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002169 " %d MHz\n", sdata->dev->name,
Johannes Berg8318d782008-01-24 19:38:38 +01002170 local->hw.conf.channel->center_freq);
Jiri Bencf0706e82007-05-05 11:45:53 -07002171 }
2172
2173 /* No IBSS found - decrease scan interval and continue
2174 * scanning. */
2175 interval = IEEE80211_SCAN_INTERVAL_SLOW;
2176 }
2177
Tomas Winkler48c2fc52008-08-06 14:22:01 +03002178 ifsta->state = IEEE80211_STA_MLME_IBSS_SEARCH;
Jiri Bencf0706e82007-05-05 11:45:53 -07002179 mod_timer(&ifsta->timer, jiffies + interval);
2180 return 0;
2181 }
2182
2183 return 0;
2184}
2185
2186
Johannes Berg60f8b392008-09-08 17:44:22 +02002187static int ieee80211_sta_config_auth(struct ieee80211_sub_if_data *sdata,
2188 struct ieee80211_if_sta *ifsta)
2189{
2190 struct ieee80211_local *local = sdata->local;
Johannes Bergc2b13452008-09-11 00:01:55 +02002191 struct ieee80211_bss *bss, *selected = NULL;
Johannes Berg60f8b392008-09-08 17:44:22 +02002192 int top_rssi = 0, freq;
2193
Johannes Bergc2b13452008-09-11 00:01:55 +02002194 spin_lock_bh(&local->bss_lock);
Johannes Berg60f8b392008-09-08 17:44:22 +02002195 freq = local->oper_channel->center_freq;
Johannes Bergc2b13452008-09-11 00:01:55 +02002196 list_for_each_entry(bss, &local->bss_list, list) {
Johannes Berg60f8b392008-09-08 17:44:22 +02002197 if (!(bss->capability & WLAN_CAPABILITY_ESS))
2198 continue;
2199
2200 if ((ifsta->flags & (IEEE80211_STA_AUTO_SSID_SEL |
2201 IEEE80211_STA_AUTO_BSSID_SEL |
2202 IEEE80211_STA_AUTO_CHANNEL_SEL)) &&
2203 (!!(bss->capability & WLAN_CAPABILITY_PRIVACY) ^
2204 !!sdata->default_key))
2205 continue;
2206
2207 if (!(ifsta->flags & IEEE80211_STA_AUTO_CHANNEL_SEL) &&
2208 bss->freq != freq)
2209 continue;
2210
2211 if (!(ifsta->flags & IEEE80211_STA_AUTO_BSSID_SEL) &&
2212 memcmp(bss->bssid, ifsta->bssid, ETH_ALEN))
2213 continue;
2214
2215 if (!(ifsta->flags & IEEE80211_STA_AUTO_SSID_SEL) &&
2216 !ieee80211_sta_match_ssid(ifsta, bss->ssid, bss->ssid_len))
2217 continue;
2218
2219 if (!selected || top_rssi < bss->signal) {
2220 selected = bss;
2221 top_rssi = bss->signal;
2222 }
2223 }
2224 if (selected)
2225 atomic_inc(&selected->users);
Johannes Bergc2b13452008-09-11 00:01:55 +02002226 spin_unlock_bh(&local->bss_lock);
Johannes Berg60f8b392008-09-08 17:44:22 +02002227
2228 if (selected) {
2229 ieee80211_set_freq(sdata, selected->freq);
2230 if (!(ifsta->flags & IEEE80211_STA_SSID_SET))
2231 ieee80211_sta_set_ssid(sdata, selected->ssid,
2232 selected->ssid_len);
2233 ieee80211_sta_set_bssid(sdata, selected->bssid);
Johannes Bergb079ada2008-09-09 09:32:59 +02002234 ieee80211_sta_def_wmm_params(sdata, selected);
Johannes Berg60f8b392008-09-08 17:44:22 +02002235
2236 /* Send out direct probe if no probe resp was received or
2237 * the one we have is outdated
2238 */
2239 if (!selected->last_probe_resp ||
2240 time_after(jiffies, selected->last_probe_resp
2241 + IEEE80211_SCAN_RESULT_EXPIRE))
2242 ifsta->state = IEEE80211_STA_MLME_DIRECT_PROBE;
2243 else
2244 ifsta->state = IEEE80211_STA_MLME_AUTHENTICATE;
2245
2246 ieee80211_rx_bss_put(local, selected);
2247 ieee80211_sta_reset_auth(sdata, ifsta);
2248 return 0;
2249 } else {
2250 if (ifsta->assoc_scan_tries < IEEE80211_ASSOC_SCANS_MAX_TRIES) {
2251 ifsta->assoc_scan_tries++;
2252 if (ifsta->flags & IEEE80211_STA_AUTO_SSID_SEL)
Johannes Bergc2b13452008-09-11 00:01:55 +02002253 ieee80211_start_scan(sdata, NULL, 0);
Johannes Berg60f8b392008-09-08 17:44:22 +02002254 else
Johannes Bergc2b13452008-09-11 00:01:55 +02002255 ieee80211_start_scan(sdata, ifsta->ssid,
Johannes Berg60f8b392008-09-08 17:44:22 +02002256 ifsta->ssid_len);
2257 ifsta->state = IEEE80211_STA_MLME_AUTHENTICATE;
2258 set_bit(IEEE80211_STA_REQ_AUTH, &ifsta->request);
2259 } else
2260 ifsta->state = IEEE80211_STA_MLME_DISABLED;
2261 }
2262 return -1;
2263}
2264
2265
Johannes Berg9c6bd792008-09-11 00:01:52 +02002266static void ieee80211_sta_work(struct work_struct *work)
Johannes Berg60f8b392008-09-08 17:44:22 +02002267{
2268 struct ieee80211_sub_if_data *sdata =
2269 container_of(work, struct ieee80211_sub_if_data, u.sta.work);
2270 struct ieee80211_local *local = sdata->local;
2271 struct ieee80211_if_sta *ifsta;
2272 struct sk_buff *skb;
2273
2274 if (!netif_running(sdata->dev))
2275 return;
2276
Johannes Bergc2b13452008-09-11 00:01:55 +02002277 if (local->sw_scanning || local->hw_scanning)
Johannes Berg60f8b392008-09-08 17:44:22 +02002278 return;
2279
Johannes Berg05c914f2008-09-11 00:01:58 +02002280 if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION &&
2281 sdata->vif.type != NL80211_IFTYPE_ADHOC))
Johannes Berg60f8b392008-09-08 17:44:22 +02002282 return;
2283 ifsta = &sdata->u.sta;
2284
2285 while ((skb = skb_dequeue(&ifsta->skb_queue)))
2286 ieee80211_sta_rx_queued_mgmt(sdata, skb);
2287
Johannes Berg60f8b392008-09-08 17:44:22 +02002288 if (ifsta->state != IEEE80211_STA_MLME_DIRECT_PROBE &&
2289 ifsta->state != IEEE80211_STA_MLME_AUTHENTICATE &&
2290 ifsta->state != IEEE80211_STA_MLME_ASSOCIATE &&
2291 test_and_clear_bit(IEEE80211_STA_REQ_SCAN, &ifsta->request)) {
Johannes Bergc2b13452008-09-11 00:01:55 +02002292 ieee80211_start_scan(sdata, ifsta->scan_ssid,
2293 ifsta->scan_ssid_len);
Johannes Berg60f8b392008-09-08 17:44:22 +02002294 return;
2295 }
2296
2297 if (test_and_clear_bit(IEEE80211_STA_REQ_AUTH, &ifsta->request)) {
2298 if (ieee80211_sta_config_auth(sdata, ifsta))
2299 return;
2300 clear_bit(IEEE80211_STA_REQ_RUN, &ifsta->request);
2301 } else if (!test_and_clear_bit(IEEE80211_STA_REQ_RUN, &ifsta->request))
2302 return;
2303
2304 switch (ifsta->state) {
2305 case IEEE80211_STA_MLME_DISABLED:
2306 break;
2307 case IEEE80211_STA_MLME_DIRECT_PROBE:
2308 ieee80211_direct_probe(sdata, ifsta);
2309 break;
2310 case IEEE80211_STA_MLME_AUTHENTICATE:
2311 ieee80211_authenticate(sdata, ifsta);
2312 break;
2313 case IEEE80211_STA_MLME_ASSOCIATE:
2314 ieee80211_associate(sdata, ifsta);
2315 break;
2316 case IEEE80211_STA_MLME_ASSOCIATED:
2317 ieee80211_associated(sdata, ifsta);
2318 break;
2319 case IEEE80211_STA_MLME_IBSS_SEARCH:
2320 ieee80211_sta_find_ibss(sdata, ifsta);
2321 break;
2322 case IEEE80211_STA_MLME_IBSS_JOINED:
2323 ieee80211_sta_merge_ibss(sdata, ifsta);
2324 break;
Johannes Berg60f8b392008-09-08 17:44:22 +02002325 default:
2326 WARN_ON(1);
2327 break;
2328 }
2329
2330 if (ieee80211_privacy_mismatch(sdata, ifsta)) {
2331 printk(KERN_DEBUG "%s: privacy configuration mismatch and "
2332 "mixed-cell disabled - disassociate\n", sdata->dev->name);
2333
2334 ieee80211_set_disassoc(sdata, ifsta, false, true,
2335 WLAN_REASON_UNSPECIFIED);
2336 }
2337}
Johannes Berg0a51b272008-09-08 17:44:25 +02002338
Johannes Berga1678f82008-09-11 00:01:47 +02002339static void ieee80211_restart_sta_timer(struct ieee80211_sub_if_data *sdata)
2340{
Johannes Berg05c914f2008-09-11 00:01:58 +02002341 if (sdata->vif.type == NL80211_IFTYPE_STATION)
Johannes Berg7c950692008-09-11 00:01:48 +02002342 queue_work(sdata->local->hw.workqueue,
2343 &sdata->u.sta.work);
Johannes Berga1678f82008-09-11 00:01:47 +02002344}
2345
Johannes Berg9c6bd792008-09-11 00:01:52 +02002346/* interface setup */
2347void ieee80211_sta_setup_sdata(struct ieee80211_sub_if_data *sdata)
2348{
2349 struct ieee80211_if_sta *ifsta;
2350
2351 ifsta = &sdata->u.sta;
2352 INIT_WORK(&ifsta->work, ieee80211_sta_work);
2353 setup_timer(&ifsta->timer, ieee80211_sta_timer,
2354 (unsigned long) sdata);
2355 skb_queue_head_init(&ifsta->skb_queue);
2356
2357 ifsta->capab = WLAN_CAPABILITY_ESS;
2358 ifsta->auth_algs = IEEE80211_AUTH_ALG_OPEN |
2359 IEEE80211_AUTH_ALG_SHARED_KEY;
2360 ifsta->flags |= IEEE80211_STA_CREATE_IBSS |
2361 IEEE80211_STA_AUTO_BSSID_SEL |
2362 IEEE80211_STA_AUTO_CHANNEL_SEL;
2363 if (ieee80211_num_regular_queues(&sdata->local->hw) >= 4)
2364 ifsta->flags |= IEEE80211_STA_WMM_ENABLED;
2365}
2366
2367/*
2368 * Add a new IBSS station, will also be called by the RX code when,
2369 * in IBSS mode, receiving a frame from a yet-unknown station, hence
2370 * must be callable in atomic context.
2371 */
2372struct sta_info *ieee80211_ibss_add_sta(struct ieee80211_sub_if_data *sdata,
Rami Rosenab1f5c02008-12-11 14:00:25 +02002373 u8 *bssid,u8 *addr, u64 supp_rates)
Johannes Berg9c6bd792008-09-11 00:01:52 +02002374{
2375 struct ieee80211_local *local = sdata->local;
2376 struct sta_info *sta;
Johannes Berg9c6bd792008-09-11 00:01:52 +02002377 int band = local->hw.conf.channel->band;
2378
2379 /* TODO: Could consider removing the least recently used entry and
2380 * allow new one to be added. */
2381 if (local->num_sta >= IEEE80211_IBSS_MAX_STA_ENTRIES) {
2382 if (net_ratelimit()) {
2383 printk(KERN_DEBUG "%s: No room for a new IBSS STA "
Johannes Berg0c68ae262008-10-27 15:56:10 -07002384 "entry %pM\n", sdata->dev->name, addr);
Johannes Berg9c6bd792008-09-11 00:01:52 +02002385 }
2386 return NULL;
2387 }
2388
2389 if (compare_ether_addr(bssid, sdata->u.sta.bssid))
2390 return NULL;
2391
2392#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Johannes Berg0c68ae262008-10-27 15:56:10 -07002393 printk(KERN_DEBUG "%s: Adding new IBSS station %pM (dev=%s)\n",
2394 wiphy_name(local->hw.wiphy), addr, sdata->dev->name);
Johannes Berg9c6bd792008-09-11 00:01:52 +02002395#endif
2396
2397 sta = sta_info_alloc(sdata, addr, GFP_ATOMIC);
2398 if (!sta)
2399 return NULL;
2400
2401 set_sta_flags(sta, WLAN_STA_AUTHORIZED);
2402
2403 /* make sure mandatory rates are always added */
Johannes Berg323ce792008-09-11 02:45:11 +02002404 sta->sta.supp_rates[band] = supp_rates |
Johannes Berg96dd22a2008-09-11 00:01:57 +02002405 ieee80211_mandatory_rates(local, band);
Johannes Berg9c6bd792008-09-11 00:01:52 +02002406
Johannes Berg4b7679a2008-09-18 18:14:18 +02002407 rate_control_rate_init(sta);
Johannes Berg9c6bd792008-09-11 00:01:52 +02002408
2409 if (sta_info_insert(sta))
2410 return NULL;
2411
2412 return sta;
2413}
2414
2415/* configuration hooks */
2416void ieee80211_sta_req_auth(struct ieee80211_sub_if_data *sdata,
2417 struct ieee80211_if_sta *ifsta)
2418{
2419 struct ieee80211_local *local = sdata->local;
2420
Johannes Berg05c914f2008-09-11 00:01:58 +02002421 if (sdata->vif.type != NL80211_IFTYPE_STATION)
Johannes Berg9c6bd792008-09-11 00:01:52 +02002422 return;
2423
2424 if ((ifsta->flags & (IEEE80211_STA_BSSID_SET |
2425 IEEE80211_STA_AUTO_BSSID_SEL)) &&
2426 (ifsta->flags & (IEEE80211_STA_SSID_SET |
2427 IEEE80211_STA_AUTO_SSID_SEL))) {
2428
2429 if (ifsta->state == IEEE80211_STA_MLME_ASSOCIATED)
2430 ieee80211_set_disassoc(sdata, ifsta, true, true,
2431 WLAN_REASON_DEAUTH_LEAVING);
2432
2433 set_bit(IEEE80211_STA_REQ_AUTH, &ifsta->request);
2434 queue_work(local->hw.workqueue, &ifsta->work);
2435 }
2436}
2437
2438int ieee80211_sta_set_ssid(struct ieee80211_sub_if_data *sdata, char *ssid, size_t len)
2439{
2440 struct ieee80211_if_sta *ifsta;
Johannes Berg9c6bd792008-09-11 00:01:52 +02002441
2442 if (len > IEEE80211_MAX_SSID_LEN)
2443 return -EINVAL;
2444
2445 ifsta = &sdata->u.sta;
2446
2447 if (ifsta->ssid_len != len || memcmp(ifsta->ssid, ssid, len) != 0) {
2448 memset(ifsta->ssid, 0, sizeof(ifsta->ssid));
2449 memcpy(ifsta->ssid, ssid, len);
2450 ifsta->ssid_len = len;
2451 ifsta->flags &= ~IEEE80211_STA_PREV_BSSID_SET;
Johannes Berg9c6bd792008-09-11 00:01:52 +02002452 }
2453
2454 if (len)
2455 ifsta->flags |= IEEE80211_STA_SSID_SET;
2456 else
2457 ifsta->flags &= ~IEEE80211_STA_SSID_SET;
2458
Johannes Berg05c914f2008-09-11 00:01:58 +02002459 if (sdata->vif.type == NL80211_IFTYPE_ADHOC &&
Johannes Berg9c6bd792008-09-11 00:01:52 +02002460 !(ifsta->flags & IEEE80211_STA_BSSID_SET)) {
2461 ifsta->ibss_join_req = jiffies;
2462 ifsta->state = IEEE80211_STA_MLME_IBSS_SEARCH;
2463 return ieee80211_sta_find_ibss(sdata, ifsta);
2464 }
2465
2466 return 0;
2467}
2468
2469int ieee80211_sta_get_ssid(struct ieee80211_sub_if_data *sdata, char *ssid, size_t *len)
2470{
2471 struct ieee80211_if_sta *ifsta = &sdata->u.sta;
2472 memcpy(ssid, ifsta->ssid, ifsta->ssid_len);
2473 *len = ifsta->ssid_len;
2474 return 0;
2475}
2476
2477int ieee80211_sta_set_bssid(struct ieee80211_sub_if_data *sdata, u8 *bssid)
2478{
2479 struct ieee80211_if_sta *ifsta;
2480 int res;
2481
2482 ifsta = &sdata->u.sta;
2483
2484 if (memcmp(ifsta->bssid, bssid, ETH_ALEN) != 0) {
2485 memcpy(ifsta->bssid, bssid, ETH_ALEN);
2486 res = 0;
2487 /*
2488 * Hack! See also ieee80211_sta_set_ssid.
2489 */
2490 if (netif_running(sdata->dev))
2491 res = ieee80211_if_config(sdata, IEEE80211_IFCC_BSSID);
2492 if (res) {
2493 printk(KERN_DEBUG "%s: Failed to config new BSSID to "
2494 "the low-level driver\n", sdata->dev->name);
2495 return res;
2496 }
2497 }
2498
2499 if (is_valid_ether_addr(bssid))
2500 ifsta->flags |= IEEE80211_STA_BSSID_SET;
2501 else
2502 ifsta->flags &= ~IEEE80211_STA_BSSID_SET;
2503
2504 return 0;
2505}
2506
2507int ieee80211_sta_set_extra_ie(struct ieee80211_sub_if_data *sdata, char *ie, size_t len)
2508{
2509 struct ieee80211_if_sta *ifsta = &sdata->u.sta;
2510
2511 kfree(ifsta->extra_ie);
2512 if (len == 0) {
2513 ifsta->extra_ie = NULL;
2514 ifsta->extra_ie_len = 0;
2515 return 0;
2516 }
2517 ifsta->extra_ie = kmalloc(len, GFP_KERNEL);
2518 if (!ifsta->extra_ie) {
2519 ifsta->extra_ie_len = 0;
2520 return -ENOMEM;
2521 }
2522 memcpy(ifsta->extra_ie, ie, len);
2523 ifsta->extra_ie_len = len;
2524 return 0;
2525}
2526
2527int ieee80211_sta_deauthenticate(struct ieee80211_sub_if_data *sdata, u16 reason)
2528{
2529 struct ieee80211_if_sta *ifsta = &sdata->u.sta;
2530
2531 printk(KERN_DEBUG "%s: deauthenticating by local choice (reason=%d)\n",
2532 sdata->dev->name, reason);
2533
Johannes Berg05c914f2008-09-11 00:01:58 +02002534 if (sdata->vif.type != NL80211_IFTYPE_STATION &&
2535 sdata->vif.type != NL80211_IFTYPE_ADHOC)
Johannes Berg9c6bd792008-09-11 00:01:52 +02002536 return -EINVAL;
2537
2538 ieee80211_set_disassoc(sdata, ifsta, true, true, reason);
2539 return 0;
2540}
2541
2542int ieee80211_sta_disassociate(struct ieee80211_sub_if_data *sdata, u16 reason)
2543{
2544 struct ieee80211_if_sta *ifsta = &sdata->u.sta;
2545
2546 printk(KERN_DEBUG "%s: disassociating by local choice (reason=%d)\n",
2547 sdata->dev->name, reason);
2548
Johannes Berg05c914f2008-09-11 00:01:58 +02002549 if (sdata->vif.type != NL80211_IFTYPE_STATION)
Johannes Berg9c6bd792008-09-11 00:01:52 +02002550 return -EINVAL;
2551
2552 if (!(ifsta->flags & IEEE80211_STA_ASSOCIATED))
2553 return -1;
2554
2555 ieee80211_set_disassoc(sdata, ifsta, false, true, reason);
2556 return 0;
2557}
2558
2559/* scan finished notification */
Johannes Berg0a51b272008-09-08 17:44:25 +02002560void ieee80211_mlme_notify_scan_completed(struct ieee80211_local *local)
2561{
2562 struct ieee80211_sub_if_data *sdata = local->scan_sdata;
2563 struct ieee80211_if_sta *ifsta;
2564
Johannes Berg05c914f2008-09-11 00:01:58 +02002565 if (sdata && sdata->vif.type == NL80211_IFTYPE_ADHOC) {
Johannes Berg0a51b272008-09-08 17:44:25 +02002566 ifsta = &sdata->u.sta;
2567 if (!(ifsta->flags & IEEE80211_STA_BSSID_SET) ||
2568 (!(ifsta->state == IEEE80211_STA_MLME_IBSS_JOINED) &&
2569 !ieee80211_sta_active_ibss(sdata)))
2570 ieee80211_sta_find_ibss(sdata, ifsta);
2571 }
Johannes Berga1678f82008-09-11 00:01:47 +02002572
2573 /* Restart STA timers */
2574 rcu_read_lock();
2575 list_for_each_entry_rcu(sdata, &local->interfaces, list)
2576 ieee80211_restart_sta_timer(sdata);
2577 rcu_read_unlock();
Johannes Berg0a51b272008-09-08 17:44:25 +02002578}