blob: aafa112ae09c7fa5a818d1c804c90d8b5ba706d2 [file] [log] [blame]
Jiri Bencf0706e82007-05-05 11:45:53 -07001/*
2 * BSS client mode implementation
3 * Copyright 2003, Jouni Malinen <jkmaline@cc.hut.fi>
4 * Copyright 2004, Instant802 Networks, Inc.
5 * Copyright 2005, Devicescape Software, Inc.
6 * Copyright 2006-2007 Jiri Benc <jbenc@suse.cz>
7 * Copyright 2007, Michael Wu <flamingice@sourmilk.net>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 */
13
Geert Uytterhoeven5b323ed2007-05-08 18:40:27 -070014#include <linux/delay.h>
Jiri Bencf0706e82007-05-05 11:45:53 -070015#include <linux/if_ether.h>
16#include <linux/skbuff.h>
Jiri Bencf0706e82007-05-05 11:45:53 -070017#include <linux/if_arp.h>
18#include <linux/wireless.h>
19#include <linux/random.h>
20#include <linux/etherdevice.h>
Johannes Bergd0709a62008-02-25 16:27:46 +010021#include <linux/rtnetlink.h>
Jiri Bencf0706e82007-05-05 11:45:53 -070022#include <net/iw_handler.h>
Jiri Bencf0706e82007-05-05 11:45:53 -070023#include <net/mac80211.h>
Johannes Berg472dbc42008-09-11 00:01:49 +020024#include <asm/unaligned.h>
Johannes Berg60f8b392008-09-08 17:44:22 +020025
Jiri Bencf0706e82007-05-05 11:45:53 -070026#include "ieee80211_i.h"
Johannes Berg2c8dccc2008-04-08 15:14:40 -040027#include "rate.h"
28#include "led.h"
Jiri Bencf0706e82007-05-05 11:45:53 -070029
Ron Rindjunsky6042a3e2008-08-08 01:50:46 +030030#define IEEE80211_ASSOC_SCANS_MAX_TRIES 2
Jiri Bencf0706e82007-05-05 11:45:53 -070031#define IEEE80211_AUTH_TIMEOUT (HZ / 5)
32#define IEEE80211_AUTH_MAX_TRIES 3
33#define IEEE80211_ASSOC_TIMEOUT (HZ / 5)
34#define IEEE80211_ASSOC_MAX_TRIES 3
35#define IEEE80211_MONITORING_INTERVAL (2 * HZ)
36#define IEEE80211_PROBE_INTERVAL (60 * HZ)
37#define IEEE80211_RETRY_AUTH_INTERVAL (1 * HZ)
38#define IEEE80211_SCAN_INTERVAL (2 * HZ)
39#define IEEE80211_SCAN_INTERVAL_SLOW (15 * HZ)
Dan Williams872ba532008-06-04 13:59:34 -040040#define IEEE80211_IBSS_JOIN_TIMEOUT (7 * HZ)
Jiri Bencf0706e82007-05-05 11:45:53 -070041
Jiri Bencf0706e82007-05-05 11:45:53 -070042#define IEEE80211_IBSS_MERGE_INTERVAL (30 * HZ)
43#define IEEE80211_IBSS_INACTIVITY_LIMIT (60 * HZ)
44
45#define IEEE80211_IBSS_MAX_STA_ENTRIES 128
46
47
Johannes Berg5484e232008-09-08 17:44:27 +020048/* utils */
49static int ecw2cw(int ecw)
Johannes Berg60f8b392008-09-08 17:44:22 +020050{
Johannes Berg5484e232008-09-08 17:44:27 +020051 return (1 << ecw) - 1;
Johannes Berg60f8b392008-09-08 17:44:22 +020052}
53
Johannes Bergc2b13452008-09-11 00:01:55 +020054static u8 *ieee80211_bss_get_ie(struct ieee80211_bss *bss, u8 ie)
Jouni Malinen43ac2ca2008-08-15 22:21:27 +030055{
56 u8 *end, *pos;
57
58 pos = bss->ies;
59 if (pos == NULL)
60 return NULL;
61 end = pos + bss->ies_len;
62
63 while (pos + 1 < end) {
64 if (pos + 2 + pos[1] > end)
65 break;
66 if (pos[0] == ie)
67 return pos;
68 pos += 2 + pos[1];
69 }
70
71 return NULL;
72}
73
Johannes Bergc2b13452008-09-11 00:01:55 +020074static int ieee80211_compatible_rates(struct ieee80211_bss *bss,
Johannes Berg9ac19a92008-09-09 10:57:09 +020075 struct ieee80211_supported_band *sband,
76 u64 *rates)
77{
78 int i, j, count;
79 *rates = 0;
80 count = 0;
81 for (i = 0; i < bss->supp_rates_len; i++) {
82 int rate = (bss->supp_rates[i] & 0x7F) * 5;
83
84 for (j = 0; j < sband->n_bitrates; j++)
85 if (sband->bitrates[j].bitrate == rate) {
86 *rates |= BIT(j);
87 count++;
88 break;
89 }
90 }
91
92 return count;
93}
94
Johannes Berg9c6bd792008-09-11 00:01:52 +020095/* also used by mesh code */
96u64 ieee80211_sta_get_rates(struct ieee80211_local *local,
97 struct ieee802_11_elems *elems,
98 enum ieee80211_band band)
Johannes Berg60f8b392008-09-08 17:44:22 +020099{
Johannes Berg9c6bd792008-09-11 00:01:52 +0200100 struct ieee80211_supported_band *sband;
101 struct ieee80211_rate *bitrates;
102 size_t num_rates;
103 u64 supp_rates;
104 int i, j;
105 sband = local->hw.wiphy->bands[band];
Johannes Berg60f8b392008-09-08 17:44:22 +0200106
Johannes Berg9c6bd792008-09-11 00:01:52 +0200107 if (!sband) {
108 WARN_ON(1);
109 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
Johannes Berg60f8b392008-09-08 17:44:22 +0200110 }
Johannes Berg60f8b392008-09-08 17:44:22 +0200111
Johannes Berg9c6bd792008-09-11 00:01:52 +0200112 bitrates = sband->bitrates;
113 num_rates = sband->n_bitrates;
114 supp_rates = 0;
115 for (i = 0; i < elems->supp_rates_len +
116 elems->ext_supp_rates_len; i++) {
117 u8 rate = 0;
118 int own_rate;
119 if (i < elems->supp_rates_len)
120 rate = elems->supp_rates[i];
121 else if (elems->ext_supp_rates)
122 rate = elems->ext_supp_rates
123 [i - elems->supp_rates_len];
124 own_rate = 5 * (rate & 0x7f);
125 for (j = 0; j < num_rates; j++)
126 if (bitrates[j].bitrate == own_rate)
127 supp_rates |= BIT(j);
128 }
129 return supp_rates;
Johannes Berg60f8b392008-09-08 17:44:22 +0200130}
131
Johannes Berg9c6bd792008-09-11 00:01:52 +0200132/* frame sending functions */
133
134/* also used by scanning code */
Johannes Berg0a51b272008-09-08 17:44:25 +0200135void ieee80211_send_probe_req(struct ieee80211_sub_if_data *sdata, u8 *dst,
136 u8 *ssid, size_t ssid_len)
Johannes Berg60f8b392008-09-08 17:44:22 +0200137{
138 struct ieee80211_local *local = sdata->local;
139 struct ieee80211_supported_band *sband;
140 struct sk_buff *skb;
141 struct ieee80211_mgmt *mgmt;
142 u8 *pos, *supp_rates, *esupp_rates = NULL;
143 int i;
144
145 skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*mgmt) + 200);
146 if (!skb) {
147 printk(KERN_DEBUG "%s: failed to allocate buffer for probe "
148 "request\n", sdata->dev->name);
149 return;
150 }
151 skb_reserve(skb, local->hw.extra_tx_headroom);
152
153 mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24);
154 memset(mgmt, 0, 24);
155 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
156 IEEE80211_STYPE_PROBE_REQ);
157 memcpy(mgmt->sa, sdata->dev->dev_addr, ETH_ALEN);
158 if (dst) {
159 memcpy(mgmt->da, dst, ETH_ALEN);
160 memcpy(mgmt->bssid, dst, ETH_ALEN);
161 } else {
162 memset(mgmt->da, 0xff, ETH_ALEN);
163 memset(mgmt->bssid, 0xff, ETH_ALEN);
164 }
165 pos = skb_put(skb, 2 + ssid_len);
166 *pos++ = WLAN_EID_SSID;
167 *pos++ = ssid_len;
168 memcpy(pos, ssid, ssid_len);
169
170 supp_rates = skb_put(skb, 2);
171 supp_rates[0] = WLAN_EID_SUPP_RATES;
172 supp_rates[1] = 0;
173 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
174
175 for (i = 0; i < sband->n_bitrates; i++) {
176 struct ieee80211_rate *rate = &sband->bitrates[i];
177 if (esupp_rates) {
178 pos = skb_put(skb, 1);
179 esupp_rates[1]++;
180 } else if (supp_rates[1] == 8) {
181 esupp_rates = skb_put(skb, 3);
182 esupp_rates[0] = WLAN_EID_EXT_SUPP_RATES;
183 esupp_rates[1] = 1;
184 pos = &esupp_rates[2];
185 } else {
186 pos = skb_put(skb, 1);
187 supp_rates[1]++;
188 }
189 *pos = rate->bitrate / 5;
190 }
191
Johannes Berge50db652008-09-09 15:07:09 +0200192 ieee80211_tx_skb(sdata, skb, 0);
Johannes Berg60f8b392008-09-08 17:44:22 +0200193}
194
Johannes Berg9c6bd792008-09-11 00:01:52 +0200195static void ieee80211_send_auth(struct ieee80211_sub_if_data *sdata,
196 struct ieee80211_if_sta *ifsta,
197 int transaction, u8 *extra, size_t extra_len,
198 int encrypt)
199{
200 struct ieee80211_local *local = sdata->local;
201 struct sk_buff *skb;
202 struct ieee80211_mgmt *mgmt;
203
204 skb = dev_alloc_skb(local->hw.extra_tx_headroom +
205 sizeof(*mgmt) + 6 + extra_len);
206 if (!skb) {
207 printk(KERN_DEBUG "%s: failed to allocate buffer for auth "
208 "frame\n", sdata->dev->name);
209 return;
210 }
211 skb_reserve(skb, local->hw.extra_tx_headroom);
212
213 mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24 + 6);
214 memset(mgmt, 0, 24 + 6);
215 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
216 IEEE80211_STYPE_AUTH);
217 if (encrypt)
218 mgmt->frame_control |= cpu_to_le16(IEEE80211_FCTL_PROTECTED);
219 memcpy(mgmt->da, ifsta->bssid, ETH_ALEN);
220 memcpy(mgmt->sa, sdata->dev->dev_addr, ETH_ALEN);
221 memcpy(mgmt->bssid, ifsta->bssid, ETH_ALEN);
222 mgmt->u.auth.auth_alg = cpu_to_le16(ifsta->auth_alg);
223 mgmt->u.auth.auth_transaction = cpu_to_le16(transaction);
224 ifsta->auth_transaction = transaction + 1;
225 mgmt->u.auth.status_code = cpu_to_le16(0);
226 if (extra)
227 memcpy(skb_put(skb, extra_len), extra, extra_len);
228
229 ieee80211_tx_skb(sdata, skb, encrypt);
230}
231
Johannes Berg9ac19a92008-09-09 10:57:09 +0200232static void ieee80211_send_assoc(struct ieee80211_sub_if_data *sdata,
233 struct ieee80211_if_sta *ifsta)
234{
235 struct ieee80211_local *local = sdata->local;
236 struct sk_buff *skb;
237 struct ieee80211_mgmt *mgmt;
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200238 u8 *pos, *ies, *ht_ie;
Johannes Berg9ac19a92008-09-09 10:57:09 +0200239 int i, len, count, rates_len, supp_rates_len;
240 u16 capab;
Johannes Bergc2b13452008-09-11 00:01:55 +0200241 struct ieee80211_bss *bss;
Johannes Berg9ac19a92008-09-09 10:57:09 +0200242 int wmm = 0;
243 struct ieee80211_supported_band *sband;
244 u64 rates = 0;
245
246 skb = dev_alloc_skb(local->hw.extra_tx_headroom +
247 sizeof(*mgmt) + 200 + ifsta->extra_ie_len +
248 ifsta->ssid_len);
249 if (!skb) {
250 printk(KERN_DEBUG "%s: failed to allocate buffer for assoc "
251 "frame\n", sdata->dev->name);
252 return;
253 }
254 skb_reserve(skb, local->hw.extra_tx_headroom);
255
256 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
257
258 capab = ifsta->capab;
259
260 if (local->hw.conf.channel->band == IEEE80211_BAND_2GHZ) {
261 if (!(local->hw.flags & IEEE80211_HW_2GHZ_SHORT_SLOT_INCAPABLE))
262 capab |= WLAN_CAPABILITY_SHORT_SLOT_TIME;
263 if (!(local->hw.flags & IEEE80211_HW_2GHZ_SHORT_PREAMBLE_INCAPABLE))
264 capab |= WLAN_CAPABILITY_SHORT_PREAMBLE;
265 }
266
267 bss = ieee80211_rx_bss_get(local, ifsta->bssid,
268 local->hw.conf.channel->center_freq,
269 ifsta->ssid, ifsta->ssid_len);
270 if (bss) {
271 if (bss->capability & WLAN_CAPABILITY_PRIVACY)
272 capab |= WLAN_CAPABILITY_PRIVACY;
273 if (bss->wmm_used)
274 wmm = 1;
275
276 /* get all rates supported by the device and the AP as
277 * some APs don't like getting a superset of their rates
278 * in the association request (e.g. D-Link DAP 1353 in
279 * b-only mode) */
280 rates_len = ieee80211_compatible_rates(bss, sband, &rates);
281
282 if ((bss->capability & WLAN_CAPABILITY_SPECTRUM_MGMT) &&
283 (local->hw.flags & IEEE80211_HW_SPECTRUM_MGMT))
284 capab |= WLAN_CAPABILITY_SPECTRUM_MGMT;
285
286 ieee80211_rx_bss_put(local, bss);
287 } else {
288 rates = ~0;
289 rates_len = sband->n_bitrates;
290 }
291
292 mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24);
293 memset(mgmt, 0, 24);
294 memcpy(mgmt->da, ifsta->bssid, ETH_ALEN);
295 memcpy(mgmt->sa, sdata->dev->dev_addr, ETH_ALEN);
296 memcpy(mgmt->bssid, ifsta->bssid, ETH_ALEN);
297
298 if (ifsta->flags & IEEE80211_STA_PREV_BSSID_SET) {
299 skb_put(skb, 10);
300 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
301 IEEE80211_STYPE_REASSOC_REQ);
302 mgmt->u.reassoc_req.capab_info = cpu_to_le16(capab);
303 mgmt->u.reassoc_req.listen_interval =
304 cpu_to_le16(local->hw.conf.listen_interval);
305 memcpy(mgmt->u.reassoc_req.current_ap, ifsta->prev_bssid,
306 ETH_ALEN);
307 } else {
308 skb_put(skb, 4);
309 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
310 IEEE80211_STYPE_ASSOC_REQ);
311 mgmt->u.assoc_req.capab_info = cpu_to_le16(capab);
Rami Rosen13554122008-12-16 22:38:29 +0200312 mgmt->u.assoc_req.listen_interval =
Johannes Berg9ac19a92008-09-09 10:57:09 +0200313 cpu_to_le16(local->hw.conf.listen_interval);
314 }
315
316 /* SSID */
317 ies = pos = skb_put(skb, 2 + ifsta->ssid_len);
318 *pos++ = WLAN_EID_SSID;
319 *pos++ = ifsta->ssid_len;
320 memcpy(pos, ifsta->ssid, ifsta->ssid_len);
321
322 /* add all rates which were marked to be used above */
323 supp_rates_len = rates_len;
324 if (supp_rates_len > 8)
325 supp_rates_len = 8;
326
327 len = sband->n_bitrates;
328 pos = skb_put(skb, supp_rates_len + 2);
329 *pos++ = WLAN_EID_SUPP_RATES;
330 *pos++ = supp_rates_len;
331
332 count = 0;
333 for (i = 0; i < sband->n_bitrates; i++) {
334 if (BIT(i) & rates) {
335 int rate = sband->bitrates[i].bitrate;
336 *pos++ = (u8) (rate / 5);
337 if (++count == 8)
338 break;
339 }
340 }
341
342 if (rates_len > count) {
343 pos = skb_put(skb, rates_len - count + 2);
344 *pos++ = WLAN_EID_EXT_SUPP_RATES;
345 *pos++ = rates_len - count;
346
347 for (i++; i < sband->n_bitrates; i++) {
348 if (BIT(i) & rates) {
349 int rate = sband->bitrates[i].bitrate;
350 *pos++ = (u8) (rate / 5);
351 }
352 }
353 }
354
355 if (capab & WLAN_CAPABILITY_SPECTRUM_MGMT) {
356 /* 1. power capabilities */
357 pos = skb_put(skb, 4);
358 *pos++ = WLAN_EID_PWR_CAPABILITY;
359 *pos++ = 2;
360 *pos++ = 0; /* min tx power */
361 *pos++ = local->hw.conf.channel->max_power; /* max tx power */
362
363 /* 2. supported channels */
364 /* TODO: get this in reg domain format */
365 pos = skb_put(skb, 2 * sband->n_channels + 2);
366 *pos++ = WLAN_EID_SUPPORTED_CHANNELS;
367 *pos++ = 2 * sband->n_channels;
368 for (i = 0; i < sband->n_channels; i++) {
369 *pos++ = ieee80211_frequency_to_channel(
370 sband->channels[i].center_freq);
371 *pos++ = 1; /* one channel in the subband*/
372 }
373 }
374
375 if (ifsta->extra_ie) {
376 pos = skb_put(skb, ifsta->extra_ie_len);
377 memcpy(pos, ifsta->extra_ie, ifsta->extra_ie_len);
378 }
379
380 if (wmm && (ifsta->flags & IEEE80211_STA_WMM_ENABLED)) {
381 pos = skb_put(skb, 9);
382 *pos++ = WLAN_EID_VENDOR_SPECIFIC;
383 *pos++ = 7; /* len */
384 *pos++ = 0x00; /* Microsoft OUI 00:50:F2 */
385 *pos++ = 0x50;
386 *pos++ = 0xf2;
387 *pos++ = 2; /* WME */
388 *pos++ = 0; /* WME info */
389 *pos++ = 1; /* WME ver */
390 *pos++ = 0;
391 }
392
393 /* wmm support is a must to HT */
Vasanthakumar Thiagarajaneb469362008-12-23 21:30:50 +0530394 /*
395 * IEEE802.11n does not allow TKIP/WEP as pairwise
396 * ciphers in HT mode. We still associate in non-ht
397 * mode (11a/b/g) if any one of these ciphers is
398 * configured as pairwise.
399 */
Johannes Berg9ac19a92008-09-09 10:57:09 +0200400 if (wmm && (ifsta->flags & IEEE80211_STA_WMM_ENABLED) &&
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200401 sband->ht_cap.ht_supported &&
402 (ht_ie = ieee80211_bss_get_ie(bss, WLAN_EID_HT_INFORMATION)) &&
Vasanthakumar Thiagarajaneb469362008-12-23 21:30:50 +0530403 ht_ie[1] >= sizeof(struct ieee80211_ht_info) &&
404 (!(ifsta->flags & IEEE80211_STA_TKIP_WEP_USED))) {
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200405 struct ieee80211_ht_info *ht_info =
406 (struct ieee80211_ht_info *)(ht_ie + 2);
407 u16 cap = sband->ht_cap.cap;
Johannes Berg9ac19a92008-09-09 10:57:09 +0200408 __le16 tmp;
409 u32 flags = local->hw.conf.channel->flags;
410
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200411 switch (ht_info->ht_param & IEEE80211_HT_PARAM_CHA_SEC_OFFSET) {
412 case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
Johannes Berg9ac19a92008-09-09 10:57:09 +0200413 if (flags & IEEE80211_CHAN_NO_FAT_ABOVE) {
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200414 cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
Johannes Berg9ac19a92008-09-09 10:57:09 +0200415 cap &= ~IEEE80211_HT_CAP_SGI_40;
416 }
417 break;
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200418 case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
Johannes Berg9ac19a92008-09-09 10:57:09 +0200419 if (flags & IEEE80211_CHAN_NO_FAT_BELOW) {
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200420 cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
Johannes Berg9ac19a92008-09-09 10:57:09 +0200421 cap &= ~IEEE80211_HT_CAP_SGI_40;
422 }
423 break;
424 }
425
426 tmp = cpu_to_le16(cap);
427 pos = skb_put(skb, sizeof(struct ieee80211_ht_cap)+2);
428 *pos++ = WLAN_EID_HT_CAPABILITY;
429 *pos++ = sizeof(struct ieee80211_ht_cap);
430 memset(pos, 0, sizeof(struct ieee80211_ht_cap));
431 memcpy(pos, &tmp, sizeof(u16));
432 pos += sizeof(u16);
433 /* TODO: needs a define here for << 2 */
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200434 *pos++ = sband->ht_cap.ampdu_factor |
435 (sband->ht_cap.ampdu_density << 2);
436 memcpy(pos, &sband->ht_cap.mcs, sizeof(sband->ht_cap.mcs));
Johannes Berg9ac19a92008-09-09 10:57:09 +0200437 }
438
439 kfree(ifsta->assocreq_ies);
440 ifsta->assocreq_ies_len = (skb->data + skb->len) - ies;
441 ifsta->assocreq_ies = kmalloc(ifsta->assocreq_ies_len, GFP_KERNEL);
442 if (ifsta->assocreq_ies)
443 memcpy(ifsta->assocreq_ies, ies, ifsta->assocreq_ies_len);
444
Johannes Berge50db652008-09-09 15:07:09 +0200445 ieee80211_tx_skb(sdata, skb, 0);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200446}
447
448
Johannes Bergef422bc2008-09-09 10:58:25 +0200449static void ieee80211_send_deauth_disassoc(struct ieee80211_sub_if_data *sdata,
450 u16 stype, u16 reason)
Johannes Berg9ac19a92008-09-09 10:57:09 +0200451{
452 struct ieee80211_local *local = sdata->local;
Johannes Bergef422bc2008-09-09 10:58:25 +0200453 struct ieee80211_if_sta *ifsta = &sdata->u.sta;
Johannes Berg9ac19a92008-09-09 10:57:09 +0200454 struct sk_buff *skb;
455 struct ieee80211_mgmt *mgmt;
456
457 skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*mgmt));
458 if (!skb) {
Johannes Bergef422bc2008-09-09 10:58:25 +0200459 printk(KERN_DEBUG "%s: failed to allocate buffer for "
460 "deauth/disassoc frame\n", sdata->dev->name);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200461 return;
462 }
463 skb_reserve(skb, local->hw.extra_tx_headroom);
464
465 mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24);
466 memset(mgmt, 0, 24);
467 memcpy(mgmt->da, ifsta->bssid, ETH_ALEN);
468 memcpy(mgmt->sa, sdata->dev->dev_addr, ETH_ALEN);
469 memcpy(mgmt->bssid, ifsta->bssid, ETH_ALEN);
Johannes Bergef422bc2008-09-09 10:58:25 +0200470 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT | stype);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200471 skb_put(skb, 2);
Johannes Bergef422bc2008-09-09 10:58:25 +0200472 /* u.deauth.reason_code == u.disassoc.reason_code */
Johannes Berg9ac19a92008-09-09 10:57:09 +0200473 mgmt->u.deauth.reason_code = cpu_to_le16(reason);
474
Johannes Berge50db652008-09-09 15:07:09 +0200475 ieee80211_tx_skb(sdata, skb, 0);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200476}
477
Johannes Berg60f8b392008-09-08 17:44:22 +0200478/* MLME */
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200479static void ieee80211_sta_def_wmm_params(struct ieee80211_sub_if_data *sdata,
Johannes Bergc2b13452008-09-11 00:01:55 +0200480 struct ieee80211_bss *bss)
Vladimir Koutnye2839d82008-03-18 21:14:07 +0100481{
Vladimir Koutnye2839d82008-03-18 21:14:07 +0100482 struct ieee80211_local *local = sdata->local;
483 int i, have_higher_than_11mbit = 0;
484
Vladimir Koutnye2839d82008-03-18 21:14:07 +0100485 /* cf. IEEE 802.11 9.2.12 */
486 for (i = 0; i < bss->supp_rates_len; i++)
487 if ((bss->supp_rates[i] & 0x7f) * 5 > 110)
488 have_higher_than_11mbit = 1;
489
490 if (local->hw.conf.channel->band == IEEE80211_BAND_2GHZ &&
491 have_higher_than_11mbit)
492 sdata->flags |= IEEE80211_SDATA_OPERATING_GMODE;
493 else
494 sdata->flags &= ~IEEE80211_SDATA_OPERATING_GMODE;
495
Johannes Berg3d35f7c2008-09-09 12:54:11 +0200496 ieee80211_set_wmm_default(sdata);
Vladimir Koutnye2839d82008-03-18 21:14:07 +0100497}
498
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200499static void ieee80211_sta_wmm_params(struct ieee80211_local *local,
Jiri Bencf0706e82007-05-05 11:45:53 -0700500 struct ieee80211_if_sta *ifsta,
501 u8 *wmm_param, size_t wmm_param_len)
502{
Jiri Bencf0706e82007-05-05 11:45:53 -0700503 struct ieee80211_tx_queue_params params;
504 size_t left;
505 int count;
506 u8 *pos;
507
Johannes Berg3434fbd2008-05-03 00:59:37 +0200508 if (!(ifsta->flags & IEEE80211_STA_WMM_ENABLED))
509 return;
510
511 if (!wmm_param)
512 return;
513
Jiri Bencf0706e82007-05-05 11:45:53 -0700514 if (wmm_param_len < 8 || wmm_param[5] /* version */ != 1)
515 return;
516 count = wmm_param[6] & 0x0f;
517 if (count == ifsta->wmm_last_param_set)
518 return;
519 ifsta->wmm_last_param_set = count;
520
521 pos = wmm_param + 8;
522 left = wmm_param_len - 8;
523
524 memset(&params, 0, sizeof(params));
525
526 if (!local->ops->conf_tx)
527 return;
528
529 local->wmm_acm = 0;
530 for (; left >= 4; left -= 4, pos += 4) {
531 int aci = (pos[0] >> 5) & 0x03;
532 int acm = (pos[0] >> 4) & 0x01;
533 int queue;
534
535 switch (aci) {
536 case 1:
Johannes Berge100bb62008-04-30 18:51:21 +0200537 queue = 3;
Johannes Berg988c0f72008-04-17 19:21:22 +0200538 if (acm)
Jiri Bencf0706e82007-05-05 11:45:53 -0700539 local->wmm_acm |= BIT(0) | BIT(3);
Jiri Bencf0706e82007-05-05 11:45:53 -0700540 break;
541 case 2:
Johannes Berge100bb62008-04-30 18:51:21 +0200542 queue = 1;
Johannes Berg988c0f72008-04-17 19:21:22 +0200543 if (acm)
Jiri Bencf0706e82007-05-05 11:45:53 -0700544 local->wmm_acm |= BIT(4) | BIT(5);
Jiri Bencf0706e82007-05-05 11:45:53 -0700545 break;
546 case 3:
Johannes Berge100bb62008-04-30 18:51:21 +0200547 queue = 0;
Johannes Berg988c0f72008-04-17 19:21:22 +0200548 if (acm)
Jiri Bencf0706e82007-05-05 11:45:53 -0700549 local->wmm_acm |= BIT(6) | BIT(7);
Jiri Bencf0706e82007-05-05 11:45:53 -0700550 break;
551 case 0:
552 default:
Johannes Berge100bb62008-04-30 18:51:21 +0200553 queue = 2;
Johannes Berg988c0f72008-04-17 19:21:22 +0200554 if (acm)
Jiri Bencf0706e82007-05-05 11:45:53 -0700555 local->wmm_acm |= BIT(1) | BIT(2);
Jiri Bencf0706e82007-05-05 11:45:53 -0700556 break;
557 }
558
559 params.aifs = pos[0] & 0x0f;
560 params.cw_max = ecw2cw((pos[1] & 0xf0) >> 4);
561 params.cw_min = ecw2cw(pos[1] & 0x0f);
Johannes Bergf434b2d2008-07-10 11:22:31 +0200562 params.txop = get_unaligned_le16(pos + 2);
Johannes Bergf4ea83d2008-06-30 15:10:46 +0200563#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Jiri Bencf0706e82007-05-05 11:45:53 -0700564 printk(KERN_DEBUG "%s: WMM queue=%d aci=%d acm=%d aifs=%d "
Johannes Berg3330d7b2008-02-10 16:49:38 +0100565 "cWmin=%d cWmax=%d txop=%d\n",
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200566 local->mdev->name, queue, aci, acm, params.aifs, params.cw_min,
Johannes Berg3330d7b2008-02-10 16:49:38 +0100567 params.cw_max, params.txop);
568#endif
Jiri Bencf0706e82007-05-05 11:45:53 -0700569 /* TODO: handle ACM (block TX, fallback to next lowest allowed
570 * AC for now) */
571 if (local->ops->conf_tx(local_to_hw(local), queue, &params)) {
572 printk(KERN_DEBUG "%s: failed to set TX queue "
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200573 "parameters for queue %d\n", local->mdev->name, queue);
Jiri Bencf0706e82007-05-05 11:45:53 -0700574 }
575 }
576}
577
Vivek Natarajana97b77b2008-12-23 18:39:02 -0800578static bool check_tim(struct ieee802_11_elems *elems, u16 aid, bool *is_mc)
579{
580 u8 mask;
581 u8 index, indexn1, indexn2;
582 struct ieee80211_tim_ie *tim = (struct ieee80211_tim_ie *) elems->tim;
583
584 aid &= 0x3fff;
585 index = aid / 8;
586 mask = 1 << (aid & 7);
587
588 if (tim->bitmap_ctrl & 0x01)
589 *is_mc = true;
590
591 indexn1 = tim->bitmap_ctrl & 0xfe;
592 indexn2 = elems->tim_len + indexn1 - 4;
593
594 if (index < indexn1 || index > indexn2)
595 return false;
596
597 index -= indexn1;
598
599 return !!(tim->virtual_map[index] & mask);
600}
601
Johannes Berg7a5158e2008-10-08 10:59:33 +0200602static u32 ieee80211_handle_bss_capability(struct ieee80211_sub_if_data *sdata,
603 u16 capab, bool erp_valid, u8 erp)
Daniel Drake56282212007-07-10 19:32:10 +0200604{
Johannes Bergbda39332008-10-11 01:51:51 +0200605 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
Tomas Winklerebd74482008-07-01 10:44:50 +0300606#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Daniel Drake56282212007-07-10 19:32:10 +0200607 struct ieee80211_if_sta *ifsta = &sdata->u.sta;
Tomas Winklerebd74482008-07-01 10:44:50 +0300608#endif
Johannes Berg471b3ef2007-12-28 14:32:58 +0100609 u32 changed = 0;
Johannes Berg7a5158e2008-10-08 10:59:33 +0200610 bool use_protection;
611 bool use_short_preamble;
612 bool use_short_slot;
613
614 if (erp_valid) {
615 use_protection = (erp & WLAN_ERP_USE_PROTECTION) != 0;
616 use_short_preamble = (erp & WLAN_ERP_BARKER_PREAMBLE) == 0;
617 } else {
618 use_protection = false;
619 use_short_preamble = !!(capab & WLAN_CAPABILITY_SHORT_PREAMBLE);
620 }
621
622 use_short_slot = !!(capab & WLAN_CAPABILITY_SHORT_SLOT_TIME);
Daniel Drake56282212007-07-10 19:32:10 +0200623
Johannes Berg471b3ef2007-12-28 14:32:58 +0100624 if (use_protection != bss_conf->use_cts_prot) {
Johannes Bergf4ea83d2008-06-30 15:10:46 +0200625#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Daniel Drake56282212007-07-10 19:32:10 +0200626 if (net_ratelimit()) {
Johannes Berg0c68ae262008-10-27 15:56:10 -0700627 printk(KERN_DEBUG "%s: CTS protection %s (BSSID=%pM)\n",
Johannes Berg471b3ef2007-12-28 14:32:58 +0100628 sdata->dev->name,
Daniel Drake56282212007-07-10 19:32:10 +0200629 use_protection ? "enabled" : "disabled",
Johannes Berg0c68ae262008-10-27 15:56:10 -0700630 ifsta->bssid);
Daniel Drake56282212007-07-10 19:32:10 +0200631 }
Johannes Bergf4ea83d2008-06-30 15:10:46 +0200632#endif
Johannes Berg471b3ef2007-12-28 14:32:58 +0100633 bss_conf->use_cts_prot = use_protection;
634 changed |= BSS_CHANGED_ERP_CTS_PROT;
Daniel Drake56282212007-07-10 19:32:10 +0200635 }
Daniel Drake7e9ed182007-07-27 15:43:24 +0200636
Vladimir Koutnyd43c7b32008-03-31 17:05:03 +0200637 if (use_short_preamble != bss_conf->use_short_preamble) {
Johannes Bergf4ea83d2008-06-30 15:10:46 +0200638#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Daniel Drake7e9ed182007-07-27 15:43:24 +0200639 if (net_ratelimit()) {
640 printk(KERN_DEBUG "%s: switched to %s barker preamble"
Johannes Berg0c68ae262008-10-27 15:56:10 -0700641 " (BSSID=%pM)\n",
Johannes Berg471b3ef2007-12-28 14:32:58 +0100642 sdata->dev->name,
Vladimir Koutnyd43c7b32008-03-31 17:05:03 +0200643 use_short_preamble ? "short" : "long",
Johannes Berg0c68ae262008-10-27 15:56:10 -0700644 ifsta->bssid);
Daniel Drake7e9ed182007-07-27 15:43:24 +0200645 }
Johannes Bergf4ea83d2008-06-30 15:10:46 +0200646#endif
Vladimir Koutnyd43c7b32008-03-31 17:05:03 +0200647 bss_conf->use_short_preamble = use_short_preamble;
Johannes Berg471b3ef2007-12-28 14:32:58 +0100648 changed |= BSS_CHANGED_ERP_PREAMBLE;
Daniel Drake7e9ed182007-07-27 15:43:24 +0200649 }
Daniel Draked9430a32007-07-27 15:43:24 +0200650
Johannes Berg7a5158e2008-10-08 10:59:33 +0200651 if (use_short_slot != bss_conf->use_short_slot) {
652#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
653 if (net_ratelimit()) {
Christian Lamparter391429c2009-01-18 02:24:15 +0100654 printk(KERN_DEBUG "%s: switched to %s slot time"
655 " (BSSID=%pM)\n",
Johannes Berg7a5158e2008-10-08 10:59:33 +0200656 sdata->dev->name,
657 use_short_slot ? "short" : "long",
658 ifsta->bssid);
659 }
660#endif
661 bss_conf->use_short_slot = use_short_slot;
662 changed |= BSS_CHANGED_ERP_SLOT;
John W. Linville50c4afb2008-04-15 14:09:27 -0400663 }
664
665 return changed;
666}
667
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200668static void ieee80211_sta_send_apinfo(struct ieee80211_sub_if_data *sdata,
669 struct ieee80211_if_sta *ifsta)
670{
671 union iwreq_data wrqu;
672 memset(&wrqu, 0, sizeof(wrqu));
673 if (ifsta->flags & IEEE80211_STA_ASSOCIATED)
674 memcpy(wrqu.ap_addr.sa_data, sdata->u.sta.bssid, ETH_ALEN);
675 wrqu.ap_addr.sa_family = ARPHRD_ETHER;
676 wireless_send_event(sdata->dev, SIOCGIWAP, &wrqu, NULL);
677}
678
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200679static void ieee80211_sta_send_associnfo(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -0700680 struct ieee80211_if_sta *ifsta)
681{
Linus Torvalds74af0252008-09-05 12:38:09 -0700682 char *buf;
683 size_t len;
684 int i;
Jiri Bencf0706e82007-05-05 11:45:53 -0700685 union iwreq_data wrqu;
686
Linus Torvalds74af0252008-09-05 12:38:09 -0700687 if (!ifsta->assocreq_ies && !ifsta->assocresp_ies)
688 return;
689
690 buf = kmalloc(50 + 2 * (ifsta->assocreq_ies_len +
691 ifsta->assocresp_ies_len), GFP_KERNEL);
692 if (!buf)
693 return;
694
695 len = sprintf(buf, "ASSOCINFO(");
Jiri Bencf0706e82007-05-05 11:45:53 -0700696 if (ifsta->assocreq_ies) {
Linus Torvalds74af0252008-09-05 12:38:09 -0700697 len += sprintf(buf + len, "ReqIEs=");
698 for (i = 0; i < ifsta->assocreq_ies_len; i++) {
699 len += sprintf(buf + len, "%02x",
700 ifsta->assocreq_ies[i]);
701 }
Jiri Bencf0706e82007-05-05 11:45:53 -0700702 }
703 if (ifsta->assocresp_ies) {
Linus Torvalds74af0252008-09-05 12:38:09 -0700704 if (ifsta->assocreq_ies)
705 len += sprintf(buf + len, " ");
706 len += sprintf(buf + len, "RespIEs=");
707 for (i = 0; i < ifsta->assocresp_ies_len; i++) {
708 len += sprintf(buf + len, "%02x",
709 ifsta->assocresp_ies[i]);
710 }
Jiri Bencf0706e82007-05-05 11:45:53 -0700711 }
Linus Torvalds74af0252008-09-05 12:38:09 -0700712 len += sprintf(buf + len, ")");
713
714 if (len > IW_CUSTOM_MAX) {
715 len = sprintf(buf, "ASSOCRESPIE=");
716 for (i = 0; i < ifsta->assocresp_ies_len; i++) {
717 len += sprintf(buf + len, "%02x",
718 ifsta->assocresp_ies[i]);
719 }
720 }
721
John W. Linvillead788b52008-10-01 15:45:02 -0400722 if (len <= IW_CUSTOM_MAX) {
723 memset(&wrqu, 0, sizeof(wrqu));
724 wrqu.data.length = len;
725 wireless_send_event(sdata->dev, IWEVCUSTOM, &wrqu, buf);
726 }
Linus Torvalds74af0252008-09-05 12:38:09 -0700727
728 kfree(buf);
Jiri Bencf0706e82007-05-05 11:45:53 -0700729}
730
731
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200732static void ieee80211_set_associated(struct ieee80211_sub_if_data *sdata,
Johannes Bergae5eb022008-10-14 16:58:37 +0200733 struct ieee80211_if_sta *ifsta,
734 u32 bss_info_changed)
Jiri Bencf0706e82007-05-05 11:45:53 -0700735{
Johannes Berg471b3ef2007-12-28 14:32:58 +0100736 struct ieee80211_local *local = sdata->local;
Tomas Winkler38668c02008-03-28 16:33:32 -0700737 struct ieee80211_conf *conf = &local_to_hw(local)->conf;
Jiri Bencf0706e82007-05-05 11:45:53 -0700738
Johannes Bergc2b13452008-09-11 00:01:55 +0200739 struct ieee80211_bss *bss;
Jiri Slabyd6f2da52007-08-28 17:01:54 -0400740
Johannes Bergae5eb022008-10-14 16:58:37 +0200741 bss_info_changed |= BSS_CHANGED_ASSOC;
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200742 ifsta->flags |= IEEE80211_STA_ASSOCIATED;
Jiri Slabyd6f2da52007-08-28 17:01:54 -0400743
Johannes Berg05c914f2008-09-11 00:01:58 +0200744 if (sdata->vif.type != NL80211_IFTYPE_STATION)
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200745 return;
Daniel Drake56282212007-07-10 19:32:10 +0200746
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200747 bss = ieee80211_rx_bss_get(local, ifsta->bssid,
748 conf->channel->center_freq,
749 ifsta->ssid, ifsta->ssid_len);
750 if (bss) {
751 /* set timing information */
Johannes Bergbda39332008-10-11 01:51:51 +0200752 sdata->vif.bss_conf.beacon_int = bss->beacon_int;
753 sdata->vif.bss_conf.timestamp = bss->timestamp;
754 sdata->vif.bss_conf.dtim_period = bss->dtim_period;
Tomas Winkler21c0cbe2008-03-28 16:33:34 -0700755
Johannes Bergae5eb022008-10-14 16:58:37 +0200756 bss_info_changed |= ieee80211_handle_bss_capability(sdata,
Johannes Berg7a5158e2008-10-08 10:59:33 +0200757 bss->capability, bss->has_erp_value, bss->erp_value);
Tomas Winkler21c0cbe2008-03-28 16:33:34 -0700758
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200759 ieee80211_rx_bss_put(local, bss);
Jiri Bencf0706e82007-05-05 11:45:53 -0700760 }
Johannes Berg471b3ef2007-12-28 14:32:58 +0100761
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200762 ifsta->flags |= IEEE80211_STA_PREV_BSSID_SET;
763 memcpy(ifsta->prev_bssid, sdata->u.sta.bssid, ETH_ALEN);
764 ieee80211_sta_send_associnfo(sdata, ifsta);
765
766 ifsta->last_probe = jiffies;
767 ieee80211_led_assoc(local, 1);
768
Johannes Bergbda39332008-10-11 01:51:51 +0200769 sdata->vif.bss_conf.assoc = 1;
Johannes Berg96dd22a2008-09-11 00:01:57 +0200770 /*
771 * For now just always ask the driver to update the basic rateset
772 * when we have associated, we aren't checking whether it actually
773 * changed or not.
774 */
Johannes Bergae5eb022008-10-14 16:58:37 +0200775 bss_info_changed |= BSS_CHANGED_BASIC_RATES;
776 ieee80211_bss_info_change_notify(sdata, bss_info_changed);
Guy Cohen8db93692008-07-03 19:56:13 +0300777
Vivek Natarajan869717f2008-12-23 18:28:34 -0800778 if (local->powersave &&
779 !(local->hw.flags & IEEE80211_HW_NO_STACK_DYNAMIC_PS)) {
Kalle Valo520eb822008-12-18 23:35:27 +0200780 if (local->dynamic_ps_timeout > 0)
781 mod_timer(&local->dynamic_ps_timer, jiffies +
782 msecs_to_jiffies(local->dynamic_ps_timeout));
783 else {
Vivek Natarajana97b77b2008-12-23 18:39:02 -0800784 ieee80211_send_nullfunc(local, sdata, 1);
Kalle Valo520eb822008-12-18 23:35:27 +0200785 conf->flags |= IEEE80211_CONF_PS;
786 ieee80211_hw_config(local,
787 IEEE80211_CONF_CHANGE_PS);
788 }
Kalle Valoe0cb6862008-12-18 23:35:13 +0200789 }
790
Tomas Winkler24e64622008-09-08 17:33:40 +0200791 netif_tx_start_all_queues(sdata->dev);
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200792 netif_carrier_on(sdata->dev);
Guy Cohen8db93692008-07-03 19:56:13 +0300793
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200794 ieee80211_sta_send_apinfo(sdata, ifsta);
Jiri Bencf0706e82007-05-05 11:45:53 -0700795}
796
Ron Rindjunsky9859b812008-08-09 03:02:19 +0300797static void ieee80211_direct_probe(struct ieee80211_sub_if_data *sdata,
798 struct ieee80211_if_sta *ifsta)
799{
Ron Rindjunsky9859b812008-08-09 03:02:19 +0300800 ifsta->direct_probe_tries++;
801 if (ifsta->direct_probe_tries > IEEE80211_AUTH_MAX_TRIES) {
Johannes Berg0c68ae262008-10-27 15:56:10 -0700802 printk(KERN_DEBUG "%s: direct probe to AP %pM timed out\n",
803 sdata->dev->name, ifsta->bssid);
Ron Rindjunsky9859b812008-08-09 03:02:19 +0300804 ifsta->state = IEEE80211_STA_MLME_DISABLED;
Johannes Berg4a68ec52008-10-16 21:44:44 +0200805 ieee80211_sta_send_apinfo(sdata, ifsta);
Ron Rindjunsky9859b812008-08-09 03:02:19 +0300806 return;
807 }
808
Johannes Berg0c68ae262008-10-27 15:56:10 -0700809 printk(KERN_DEBUG "%s: direct probe to AP %pM try %d\n",
810 sdata->dev->name, ifsta->bssid,
Ron Rindjunsky9859b812008-08-09 03:02:19 +0300811 ifsta->direct_probe_tries);
812
813 ifsta->state = IEEE80211_STA_MLME_DIRECT_PROBE;
814
815 set_bit(IEEE80211_STA_REQ_DIRECT_PROBE, &ifsta->request);
816
817 /* Direct probe is sent to broadcast address as some APs
818 * will not answer to direct packet in unassociated state.
819 */
820 ieee80211_send_probe_req(sdata, NULL,
821 ifsta->ssid, ifsta->ssid_len);
822
823 mod_timer(&ifsta->timer, jiffies + IEEE80211_AUTH_TIMEOUT);
824}
825
Jiri Bencf0706e82007-05-05 11:45:53 -0700826
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200827static void ieee80211_authenticate(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -0700828 struct ieee80211_if_sta *ifsta)
829{
830 ifsta->auth_tries++;
831 if (ifsta->auth_tries > IEEE80211_AUTH_MAX_TRIES) {
Johannes Berg0c68ae262008-10-27 15:56:10 -0700832 printk(KERN_DEBUG "%s: authentication with AP %pM"
Jiri Bencf0706e82007-05-05 11:45:53 -0700833 " timed out\n",
Johannes Berg0c68ae262008-10-27 15:56:10 -0700834 sdata->dev->name, ifsta->bssid);
Tomas Winkler48c2fc52008-08-06 14:22:01 +0300835 ifsta->state = IEEE80211_STA_MLME_DISABLED;
Johannes Berg4a68ec52008-10-16 21:44:44 +0200836 ieee80211_sta_send_apinfo(sdata, ifsta);
Jiri Bencf0706e82007-05-05 11:45:53 -0700837 return;
838 }
839
Tomas Winkler48c2fc52008-08-06 14:22:01 +0300840 ifsta->state = IEEE80211_STA_MLME_AUTHENTICATE;
Johannes Berg0c68ae262008-10-27 15:56:10 -0700841 printk(KERN_DEBUG "%s: authenticate with AP %pM\n",
842 sdata->dev->name, ifsta->bssid);
Jiri Bencf0706e82007-05-05 11:45:53 -0700843
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200844 ieee80211_send_auth(sdata, ifsta, 1, NULL, 0, 0);
Jiri Bencf0706e82007-05-05 11:45:53 -0700845
846 mod_timer(&ifsta->timer, jiffies + IEEE80211_AUTH_TIMEOUT);
847}
848
Vivek Natarajan5925d972008-11-21 22:19:50 -0800849/*
850 * The disassoc 'reason' argument can be either our own reason
851 * if self disconnected or a reason code from the AP.
852 */
Tomas Winkleraa458d12008-09-09 00:32:12 +0300853static void ieee80211_set_disassoc(struct ieee80211_sub_if_data *sdata,
854 struct ieee80211_if_sta *ifsta, bool deauth,
855 bool self_disconnected, u16 reason)
856{
857 struct ieee80211_local *local = sdata->local;
858 struct sta_info *sta;
Kalle Valoe0cb6862008-12-18 23:35:13 +0200859 u32 changed = 0, config_changed = 0;
Tomas Winkleraa458d12008-09-09 00:32:12 +0300860
861 rcu_read_lock();
862
863 sta = sta_info_get(local, ifsta->bssid);
864 if (!sta) {
865 rcu_read_unlock();
866 return;
867 }
868
869 if (deauth) {
870 ifsta->direct_probe_tries = 0;
871 ifsta->auth_tries = 0;
872 }
873 ifsta->assoc_scan_tries = 0;
874 ifsta->assoc_tries = 0;
875
Tomas Winkler24e64622008-09-08 17:33:40 +0200876 netif_tx_stop_all_queues(sdata->dev);
Tomas Winkleraa458d12008-09-09 00:32:12 +0300877 netif_carrier_off(sdata->dev);
878
Johannes Berg17741cd2008-09-11 00:02:02 +0200879 ieee80211_sta_tear_down_BA_sessions(sdata, sta->sta.addr);
Tomas Winkleraa458d12008-09-09 00:32:12 +0300880
881 if (self_disconnected) {
882 if (deauth)
Johannes Bergef422bc2008-09-09 10:58:25 +0200883 ieee80211_send_deauth_disassoc(sdata,
884 IEEE80211_STYPE_DEAUTH, reason);
Tomas Winkleraa458d12008-09-09 00:32:12 +0300885 else
Johannes Bergef422bc2008-09-09 10:58:25 +0200886 ieee80211_send_deauth_disassoc(sdata,
887 IEEE80211_STYPE_DISASSOC, reason);
Tomas Winkleraa458d12008-09-09 00:32:12 +0300888 }
889
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200890 ifsta->flags &= ~IEEE80211_STA_ASSOCIATED;
891 changed |= ieee80211_reset_erp_info(sdata);
892
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200893 ieee80211_led_assoc(local, 0);
Johannes Bergae5eb022008-10-14 16:58:37 +0200894 changed |= BSS_CHANGED_ASSOC;
895 sdata->vif.bss_conf.assoc = false;
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200896
897 ieee80211_sta_send_apinfo(sdata, ifsta);
Tomas Winkleraa458d12008-09-09 00:32:12 +0300898
Vivek Natarajan5925d972008-11-21 22:19:50 -0800899 if (self_disconnected || reason == WLAN_REASON_DISASSOC_STA_HAS_LEFT)
Tomas Winkleraa458d12008-09-09 00:32:12 +0300900 ifsta->state = IEEE80211_STA_MLME_DISABLED;
901
Tomas Winkleraa458d12008-09-09 00:32:12 +0300902 rcu_read_unlock();
903
Sujith094d05d2008-12-12 11:57:43 +0530904 local->oper_channel_type = NL80211_CHAN_NO_HT;
Kalle Valoe0cb6862008-12-18 23:35:13 +0200905 config_changed |= IEEE80211_CONF_CHANGE_HT;
Johannes Bergae5eb022008-10-14 16:58:37 +0200906
Kalle Valo520eb822008-12-18 23:35:27 +0200907 del_timer_sync(&local->dynamic_ps_timer);
908 cancel_work_sync(&local->dynamic_ps_enable_work);
909
Kalle Valoe0cb6862008-12-18 23:35:13 +0200910 if (local->hw.conf.flags & IEEE80211_CONF_PS) {
911 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
912 config_changed |= IEEE80211_CONF_CHANGE_PS;
913 }
914
915 ieee80211_hw_config(local, config_changed);
Johannes Bergae5eb022008-10-14 16:58:37 +0200916 ieee80211_bss_info_change_notify(sdata, changed);
Tomas Winkler8e268e42008-11-25 13:05:44 +0200917
918 rcu_read_lock();
919
920 sta = sta_info_get(local, ifsta->bssid);
921 if (!sta) {
922 rcu_read_unlock();
923 return;
924 }
925
926 sta_info_unlink(&sta);
927
928 rcu_read_unlock();
929
930 sta_info_destroy(sta);
Tomas Winkleraa458d12008-09-09 00:32:12 +0300931}
Jiri Bencf0706e82007-05-05 11:45:53 -0700932
Johannes Berg9ac19a92008-09-09 10:57:09 +0200933static int ieee80211_sta_wep_configured(struct ieee80211_sub_if_data *sdata)
934{
935 if (!sdata || !sdata->default_key ||
936 sdata->default_key->conf.alg != ALG_WEP)
937 return 0;
938 return 1;
939}
940
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200941static int ieee80211_privacy_mismatch(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -0700942 struct ieee80211_if_sta *ifsta)
943{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200944 struct ieee80211_local *local = sdata->local;
Johannes Bergc2b13452008-09-11 00:01:55 +0200945 struct ieee80211_bss *bss;
Johannes Berg5b98b1f2007-11-03 13:11:10 +0000946 int bss_privacy;
947 int wep_privacy;
948 int privacy_invoked;
Jiri Bencf0706e82007-05-05 11:45:53 -0700949
Johannes Berg5b98b1f2007-11-03 13:11:10 +0000950 if (!ifsta || (ifsta->flags & IEEE80211_STA_MIXED_CELL))
Jiri Bencf0706e82007-05-05 11:45:53 -0700951 return 0;
952
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200953 bss = ieee80211_rx_bss_get(local, ifsta->bssid,
Johannes Berg8318d782008-01-24 19:38:38 +0100954 local->hw.conf.channel->center_freq,
John W. Linvillecffdd302007-10-05 14:23:27 -0400955 ifsta->ssid, ifsta->ssid_len);
Jiri Bencf0706e82007-05-05 11:45:53 -0700956 if (!bss)
957 return 0;
958
Johannes Berg5b98b1f2007-11-03 13:11:10 +0000959 bss_privacy = !!(bss->capability & WLAN_CAPABILITY_PRIVACY);
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200960 wep_privacy = !!ieee80211_sta_wep_configured(sdata);
Johannes Berg5b98b1f2007-11-03 13:11:10 +0000961 privacy_invoked = !!(ifsta->flags & IEEE80211_STA_PRIVACY_INVOKED);
Jiri Bencf0706e82007-05-05 11:45:53 -0700962
Johannes Berg3e122be2008-07-09 14:40:34 +0200963 ieee80211_rx_bss_put(local, bss);
Jiri Bencf0706e82007-05-05 11:45:53 -0700964
Johannes Berg5b98b1f2007-11-03 13:11:10 +0000965 if ((bss_privacy == wep_privacy) || (bss_privacy == privacy_invoked))
966 return 0;
967
968 return 1;
Jiri Bencf0706e82007-05-05 11:45:53 -0700969}
970
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200971static void ieee80211_associate(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -0700972 struct ieee80211_if_sta *ifsta)
973{
974 ifsta->assoc_tries++;
975 if (ifsta->assoc_tries > IEEE80211_ASSOC_MAX_TRIES) {
Johannes Berg0c68ae262008-10-27 15:56:10 -0700976 printk(KERN_DEBUG "%s: association with AP %pM"
Jiri Bencf0706e82007-05-05 11:45:53 -0700977 " timed out\n",
Johannes Berg0c68ae262008-10-27 15:56:10 -0700978 sdata->dev->name, ifsta->bssid);
Tomas Winkler48c2fc52008-08-06 14:22:01 +0300979 ifsta->state = IEEE80211_STA_MLME_DISABLED;
Johannes Berg4a68ec52008-10-16 21:44:44 +0200980 ieee80211_sta_send_apinfo(sdata, ifsta);
Jiri Bencf0706e82007-05-05 11:45:53 -0700981 return;
982 }
983
Tomas Winkler48c2fc52008-08-06 14:22:01 +0300984 ifsta->state = IEEE80211_STA_MLME_ASSOCIATE;
Johannes Berg0c68ae262008-10-27 15:56:10 -0700985 printk(KERN_DEBUG "%s: associate with AP %pM\n",
986 sdata->dev->name, ifsta->bssid);
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200987 if (ieee80211_privacy_mismatch(sdata, ifsta)) {
Jiri Bencf0706e82007-05-05 11:45:53 -0700988 printk(KERN_DEBUG "%s: mismatch in privacy configuration and "
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200989 "mixed-cell disabled - abort association\n", sdata->dev->name);
Tomas Winkler48c2fc52008-08-06 14:22:01 +0300990 ifsta->state = IEEE80211_STA_MLME_DISABLED;
Jiri Bencf0706e82007-05-05 11:45:53 -0700991 return;
992 }
993
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200994 ieee80211_send_assoc(sdata, ifsta);
Jiri Bencf0706e82007-05-05 11:45:53 -0700995
996 mod_timer(&ifsta->timer, jiffies + IEEE80211_ASSOC_TIMEOUT);
997}
998
999
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001000static void ieee80211_associated(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001001 struct ieee80211_if_sta *ifsta)
1002{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001003 struct ieee80211_local *local = sdata->local;
Jiri Bencf0706e82007-05-05 11:45:53 -07001004 struct sta_info *sta;
1005 int disassoc;
1006
1007 /* TODO: start monitoring current AP signal quality and number of
1008 * missed beacons. Scan other channels every now and then and search
1009 * for better APs. */
1010 /* TODO: remove expired BSSes */
1011
Tomas Winkler48c2fc52008-08-06 14:22:01 +03001012 ifsta->state = IEEE80211_STA_MLME_ASSOCIATED;
Jiri Bencf0706e82007-05-05 11:45:53 -07001013
Johannes Bergd0709a62008-02-25 16:27:46 +01001014 rcu_read_lock();
1015
Jiri Bencf0706e82007-05-05 11:45:53 -07001016 sta = sta_info_get(local, ifsta->bssid);
1017 if (!sta) {
Johannes Berg0c68ae262008-10-27 15:56:10 -07001018 printk(KERN_DEBUG "%s: No STA entry for own AP %pM\n",
1019 sdata->dev->name, ifsta->bssid);
Jiri Bencf0706e82007-05-05 11:45:53 -07001020 disassoc = 1;
1021 } else {
1022 disassoc = 0;
1023 if (time_after(jiffies,
1024 sta->last_rx + IEEE80211_MONITORING_INTERVAL)) {
Jiri Slabyd6f2da52007-08-28 17:01:54 -04001025 if (ifsta->flags & IEEE80211_STA_PROBEREQ_POLL) {
Jiri Bencf0706e82007-05-05 11:45:53 -07001026 printk(KERN_DEBUG "%s: No ProbeResp from "
Johannes Berg0c68ae262008-10-27 15:56:10 -07001027 "current AP %pM - assume out of "
Jiri Bencf0706e82007-05-05 11:45:53 -07001028 "range\n",
Johannes Berg0c68ae262008-10-27 15:56:10 -07001029 sdata->dev->name, ifsta->bssid);
Jiri Bencf0706e82007-05-05 11:45:53 -07001030 disassoc = 1;
Jiri Slabyd6f2da52007-08-28 17:01:54 -04001031 } else
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001032 ieee80211_send_probe_req(sdata, ifsta->bssid,
Johannes Berg4dfe51e2008-09-19 05:10:34 +02001033 ifsta->ssid,
1034 ifsta->ssid_len);
Jiri Slabyd6f2da52007-08-28 17:01:54 -04001035 ifsta->flags ^= IEEE80211_STA_PROBEREQ_POLL;
Jiri Bencf0706e82007-05-05 11:45:53 -07001036 } else {
Jiri Slabyd6f2da52007-08-28 17:01:54 -04001037 ifsta->flags &= ~IEEE80211_STA_PROBEREQ_POLL;
Jiri Bencf0706e82007-05-05 11:45:53 -07001038 if (time_after(jiffies, ifsta->last_probe +
1039 IEEE80211_PROBE_INTERVAL)) {
1040 ifsta->last_probe = jiffies;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001041 ieee80211_send_probe_req(sdata, ifsta->bssid,
Jiri Bencf0706e82007-05-05 11:45:53 -07001042 ifsta->ssid,
1043 ifsta->ssid_len);
1044 }
1045 }
Jiri Bencf0706e82007-05-05 11:45:53 -07001046 }
Johannes Bergd0709a62008-02-25 16:27:46 +01001047
1048 rcu_read_unlock();
1049
Tomas Winkleraa458d12008-09-09 00:32:12 +03001050 if (disassoc)
1051 ieee80211_set_disassoc(sdata, ifsta, true, true,
1052 WLAN_REASON_PREV_AUTH_NOT_VALID);
1053 else
Jiri Bencf0706e82007-05-05 11:45:53 -07001054 mod_timer(&ifsta->timer, jiffies +
1055 IEEE80211_MONITORING_INTERVAL);
Jiri Bencf0706e82007-05-05 11:45:53 -07001056}
1057
1058
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001059static void ieee80211_auth_completed(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001060 struct ieee80211_if_sta *ifsta)
1061{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001062 printk(KERN_DEBUG "%s: authenticated\n", sdata->dev->name);
Jiri Slabyd6f2da52007-08-28 17:01:54 -04001063 ifsta->flags |= IEEE80211_STA_AUTHENTICATED;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001064 ieee80211_associate(sdata, ifsta);
Jiri Bencf0706e82007-05-05 11:45:53 -07001065}
1066
1067
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001068static void ieee80211_auth_challenge(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001069 struct ieee80211_if_sta *ifsta,
1070 struct ieee80211_mgmt *mgmt,
1071 size_t len)
1072{
1073 u8 *pos;
1074 struct ieee802_11_elems elems;
1075
Jiri Bencf0706e82007-05-05 11:45:53 -07001076 pos = mgmt->u.auth.variable;
John W. Linville67a4cce2007-10-12 16:40:37 -04001077 ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), &elems);
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001078 if (!elems.challenge)
Jiri Bencf0706e82007-05-05 11:45:53 -07001079 return;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001080 ieee80211_send_auth(sdata, ifsta, 3, elems.challenge - 2,
Jiri Bencf0706e82007-05-05 11:45:53 -07001081 elems.challenge_len + 2, 1);
1082}
1083
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001084static void ieee80211_rx_mgmt_auth(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001085 struct ieee80211_if_sta *ifsta,
1086 struct ieee80211_mgmt *mgmt,
1087 size_t len)
1088{
Jiri Bencf0706e82007-05-05 11:45:53 -07001089 u16 auth_alg, auth_transaction, status_code;
1090
Tomas Winkler48c2fc52008-08-06 14:22:01 +03001091 if (ifsta->state != IEEE80211_STA_MLME_AUTHENTICATE &&
Johannes Berg05c914f2008-09-11 00:01:58 +02001092 sdata->vif.type != NL80211_IFTYPE_ADHOC)
Jiri Bencf0706e82007-05-05 11:45:53 -07001093 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001094
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001095 if (len < 24 + 6)
Jiri Bencf0706e82007-05-05 11:45:53 -07001096 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001097
Johannes Berg05c914f2008-09-11 00:01:58 +02001098 if (sdata->vif.type != NL80211_IFTYPE_ADHOC &&
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001099 memcmp(ifsta->bssid, mgmt->sa, ETH_ALEN) != 0)
Jiri Bencf0706e82007-05-05 11:45:53 -07001100 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001101
Johannes Berg05c914f2008-09-11 00:01:58 +02001102 if (sdata->vif.type != NL80211_IFTYPE_ADHOC &&
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001103 memcmp(ifsta->bssid, mgmt->bssid, ETH_ALEN) != 0)
Jiri Bencf0706e82007-05-05 11:45:53 -07001104 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001105
1106 auth_alg = le16_to_cpu(mgmt->u.auth.auth_alg);
1107 auth_transaction = le16_to_cpu(mgmt->u.auth.auth_transaction);
1108 status_code = le16_to_cpu(mgmt->u.auth.status_code);
1109
Johannes Berg05c914f2008-09-11 00:01:58 +02001110 if (sdata->vif.type == NL80211_IFTYPE_ADHOC) {
Johannes Berg135a2112008-06-16 20:55:29 +02001111 /*
1112 * IEEE 802.11 standard does not require authentication in IBSS
Jiri Bencf0706e82007-05-05 11:45:53 -07001113 * networks and most implementations do not seem to use it.
1114 * However, try to reply to authentication attempts if someone
1115 * has actually implemented this.
Johannes Berg135a2112008-06-16 20:55:29 +02001116 */
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001117 if (auth_alg != WLAN_AUTH_OPEN || auth_transaction != 1)
Jiri Bencf0706e82007-05-05 11:45:53 -07001118 return;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001119 ieee80211_send_auth(sdata, ifsta, 2, NULL, 0, 0);
Jiri Bencf0706e82007-05-05 11:45:53 -07001120 }
1121
1122 if (auth_alg != ifsta->auth_alg ||
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001123 auth_transaction != ifsta->auth_transaction)
Jiri Bencf0706e82007-05-05 11:45:53 -07001124 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001125
1126 if (status_code != WLAN_STATUS_SUCCESS) {
Jiri Bencf0706e82007-05-05 11:45:53 -07001127 if (status_code == WLAN_STATUS_NOT_SUPPORTED_AUTH_ALG) {
1128 u8 algs[3];
1129 const int num_algs = ARRAY_SIZE(algs);
1130 int i, pos;
1131 algs[0] = algs[1] = algs[2] = 0xff;
1132 if (ifsta->auth_algs & IEEE80211_AUTH_ALG_OPEN)
1133 algs[0] = WLAN_AUTH_OPEN;
1134 if (ifsta->auth_algs & IEEE80211_AUTH_ALG_SHARED_KEY)
1135 algs[1] = WLAN_AUTH_SHARED_KEY;
1136 if (ifsta->auth_algs & IEEE80211_AUTH_ALG_LEAP)
1137 algs[2] = WLAN_AUTH_LEAP;
1138 if (ifsta->auth_alg == WLAN_AUTH_OPEN)
1139 pos = 0;
1140 else if (ifsta->auth_alg == WLAN_AUTH_SHARED_KEY)
1141 pos = 1;
1142 else
1143 pos = 2;
1144 for (i = 0; i < num_algs; i++) {
1145 pos++;
1146 if (pos >= num_algs)
1147 pos = 0;
1148 if (algs[pos] == ifsta->auth_alg ||
1149 algs[pos] == 0xff)
1150 continue;
1151 if (algs[pos] == WLAN_AUTH_SHARED_KEY &&
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001152 !ieee80211_sta_wep_configured(sdata))
Jiri Bencf0706e82007-05-05 11:45:53 -07001153 continue;
1154 ifsta->auth_alg = algs[pos];
Jiri Bencf0706e82007-05-05 11:45:53 -07001155 break;
1156 }
1157 }
1158 return;
1159 }
1160
1161 switch (ifsta->auth_alg) {
1162 case WLAN_AUTH_OPEN:
1163 case WLAN_AUTH_LEAP:
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001164 ieee80211_auth_completed(sdata, ifsta);
Jiri Bencf0706e82007-05-05 11:45:53 -07001165 break;
1166 case WLAN_AUTH_SHARED_KEY:
1167 if (ifsta->auth_transaction == 4)
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001168 ieee80211_auth_completed(sdata, ifsta);
Jiri Bencf0706e82007-05-05 11:45:53 -07001169 else
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001170 ieee80211_auth_challenge(sdata, ifsta, mgmt, len);
Jiri Bencf0706e82007-05-05 11:45:53 -07001171 break;
1172 }
1173}
1174
1175
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001176static void ieee80211_rx_mgmt_deauth(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001177 struct ieee80211_if_sta *ifsta,
1178 struct ieee80211_mgmt *mgmt,
1179 size_t len)
1180{
1181 u16 reason_code;
1182
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001183 if (len < 24 + 2)
Jiri Bencf0706e82007-05-05 11:45:53 -07001184 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001185
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001186 if (memcmp(ifsta->bssid, mgmt->sa, ETH_ALEN))
Jiri Bencf0706e82007-05-05 11:45:53 -07001187 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001188
1189 reason_code = le16_to_cpu(mgmt->u.deauth.reason_code);
1190
Johannes Berg988c0f72008-04-17 19:21:22 +02001191 if (ifsta->flags & IEEE80211_STA_AUTHENTICATED)
Zhu Yi97c8b012008-10-28 15:58:31 +08001192 printk(KERN_DEBUG "%s: deauthenticated (Reason: %u)\n",
1193 sdata->dev->name, reason_code);
Jiri Bencf0706e82007-05-05 11:45:53 -07001194
Tomas Winkler48c2fc52008-08-06 14:22:01 +03001195 if (ifsta->state == IEEE80211_STA_MLME_AUTHENTICATE ||
1196 ifsta->state == IEEE80211_STA_MLME_ASSOCIATE ||
1197 ifsta->state == IEEE80211_STA_MLME_ASSOCIATED) {
Ron Rindjunsky9859b812008-08-09 03:02:19 +03001198 ifsta->state = IEEE80211_STA_MLME_DIRECT_PROBE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001199 mod_timer(&ifsta->timer, jiffies +
1200 IEEE80211_RETRY_AUTH_INTERVAL);
1201 }
1202
Tomas Winkleraa458d12008-09-09 00:32:12 +03001203 ieee80211_set_disassoc(sdata, ifsta, true, false, 0);
Jiri Slabyd6f2da52007-08-28 17:01:54 -04001204 ifsta->flags &= ~IEEE80211_STA_AUTHENTICATED;
Jiri Bencf0706e82007-05-05 11:45:53 -07001205}
1206
1207
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001208static void ieee80211_rx_mgmt_disassoc(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001209 struct ieee80211_if_sta *ifsta,
1210 struct ieee80211_mgmt *mgmt,
1211 size_t len)
1212{
1213 u16 reason_code;
1214
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001215 if (len < 24 + 2)
Jiri Bencf0706e82007-05-05 11:45:53 -07001216 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001217
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001218 if (memcmp(ifsta->bssid, mgmt->sa, ETH_ALEN))
Jiri Bencf0706e82007-05-05 11:45:53 -07001219 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001220
1221 reason_code = le16_to_cpu(mgmt->u.disassoc.reason_code);
1222
Jiri Slabyd6f2da52007-08-28 17:01:54 -04001223 if (ifsta->flags & IEEE80211_STA_ASSOCIATED)
Zhu Yi97c8b012008-10-28 15:58:31 +08001224 printk(KERN_DEBUG "%s: disassociated (Reason: %u)\n",
1225 sdata->dev->name, reason_code);
Jiri Bencf0706e82007-05-05 11:45:53 -07001226
Tomas Winkler48c2fc52008-08-06 14:22:01 +03001227 if (ifsta->state == IEEE80211_STA_MLME_ASSOCIATED) {
1228 ifsta->state = IEEE80211_STA_MLME_ASSOCIATE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001229 mod_timer(&ifsta->timer, jiffies +
1230 IEEE80211_RETRY_AUTH_INTERVAL);
1231 }
1232
Vivek Natarajan5925d972008-11-21 22:19:50 -08001233 ieee80211_set_disassoc(sdata, ifsta, false, false, reason_code);
Jiri Bencf0706e82007-05-05 11:45:53 -07001234}
1235
1236
Johannes Berg471b3ef2007-12-28 14:32:58 +01001237static void ieee80211_rx_mgmt_assoc_resp(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001238 struct ieee80211_if_sta *ifsta,
1239 struct ieee80211_mgmt *mgmt,
1240 size_t len,
1241 int reassoc)
1242{
Johannes Berg471b3ef2007-12-28 14:32:58 +01001243 struct ieee80211_local *local = sdata->local;
Johannes Berg8318d782008-01-24 19:38:38 +01001244 struct ieee80211_supported_band *sband;
Jiri Bencf0706e82007-05-05 11:45:53 -07001245 struct sta_info *sta;
Johannes Berg8318d782008-01-24 19:38:38 +01001246 u64 rates, basic_rates;
Jiri Bencf0706e82007-05-05 11:45:53 -07001247 u16 capab_info, status_code, aid;
1248 struct ieee802_11_elems elems;
Johannes Bergbda39332008-10-11 01:51:51 +02001249 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
Jiri Bencf0706e82007-05-05 11:45:53 -07001250 u8 *pos;
Johannes Bergae5eb022008-10-14 16:58:37 +02001251 u32 changed = 0;
Jiri Bencf0706e82007-05-05 11:45:53 -07001252 int i, j;
Johannes Bergddf4ac52008-10-22 11:41:38 +02001253 bool have_higher_than_11mbit = false, newsta = false;
Johannes Bergae5eb022008-10-14 16:58:37 +02001254 u16 ap_ht_cap_flags;
Jiri Bencf0706e82007-05-05 11:45:53 -07001255
1256 /* AssocResp and ReassocResp have identical structure, so process both
1257 * of them in this function. */
1258
Tomas Winkler48c2fc52008-08-06 14:22:01 +03001259 if (ifsta->state != IEEE80211_STA_MLME_ASSOCIATE)
Jiri Bencf0706e82007-05-05 11:45:53 -07001260 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001261
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001262 if (len < 24 + 6)
Jiri Bencf0706e82007-05-05 11:45:53 -07001263 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001264
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001265 if (memcmp(ifsta->bssid, mgmt->sa, ETH_ALEN) != 0)
Jiri Bencf0706e82007-05-05 11:45:53 -07001266 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001267
1268 capab_info = le16_to_cpu(mgmt->u.assoc_resp.capab_info);
1269 status_code = le16_to_cpu(mgmt->u.assoc_resp.status_code);
1270 aid = le16_to_cpu(mgmt->u.assoc_resp.aid);
Jiri Bencf0706e82007-05-05 11:45:53 -07001271
Johannes Berg0c68ae262008-10-27 15:56:10 -07001272 printk(KERN_DEBUG "%s: RX %sssocResp from %pM (capab=0x%x "
Jiri Bencf0706e82007-05-05 11:45:53 -07001273 "status=%d aid=%d)\n",
Johannes Berg0c68ae262008-10-27 15:56:10 -07001274 sdata->dev->name, reassoc ? "Rea" : "A", mgmt->sa,
Johannes Bergddd68582007-10-22 14:51:37 +02001275 capab_info, status_code, (u16)(aid & ~(BIT(15) | BIT(14))));
Jiri Bencf0706e82007-05-05 11:45:53 -07001276
1277 if (status_code != WLAN_STATUS_SUCCESS) {
1278 printk(KERN_DEBUG "%s: AP denied association (code=%d)\n",
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001279 sdata->dev->name, status_code);
Daniel Drake8a69aa92007-07-27 15:43:23 +02001280 /* if this was a reassociation, ensure we try a "full"
1281 * association next time. This works around some broken APs
1282 * which do not correctly reject reassociation requests. */
Jiri Slabyd6f2da52007-08-28 17:01:54 -04001283 ifsta->flags &= ~IEEE80211_STA_PREV_BSSID_SET;
Jiri Bencf0706e82007-05-05 11:45:53 -07001284 return;
1285 }
1286
Johannes Berg1dd84aa2007-10-10 12:03:41 +02001287 if ((aid & (BIT(15) | BIT(14))) != (BIT(15) | BIT(14)))
1288 printk(KERN_DEBUG "%s: invalid aid value %d; bits 15:14 not "
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001289 "set\n", sdata->dev->name, aid);
Johannes Berg1dd84aa2007-10-10 12:03:41 +02001290 aid &= ~(BIT(15) | BIT(14));
1291
Jiri Bencf0706e82007-05-05 11:45:53 -07001292 pos = mgmt->u.assoc_resp.variable;
John W. Linville67a4cce2007-10-12 16:40:37 -04001293 ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), &elems);
Jiri Bencf0706e82007-05-05 11:45:53 -07001294
1295 if (!elems.supp_rates) {
1296 printk(KERN_DEBUG "%s: no SuppRates element in AssocResp\n",
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001297 sdata->dev->name);
Jiri Bencf0706e82007-05-05 11:45:53 -07001298 return;
1299 }
1300
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001301 printk(KERN_DEBUG "%s: associated\n", sdata->dev->name);
Jiri Bencf0706e82007-05-05 11:45:53 -07001302 ifsta->aid = aid;
1303 ifsta->ap_capab = capab_info;
1304
1305 kfree(ifsta->assocresp_ies);
1306 ifsta->assocresp_ies_len = len - (pos - (u8 *) mgmt);
Michael Wu0ec0b7a2007-07-27 15:43:24 +02001307 ifsta->assocresp_ies = kmalloc(ifsta->assocresp_ies_len, GFP_KERNEL);
Jiri Bencf0706e82007-05-05 11:45:53 -07001308 if (ifsta->assocresp_ies)
1309 memcpy(ifsta->assocresp_ies, pos, ifsta->assocresp_ies_len);
1310
Johannes Bergd0709a62008-02-25 16:27:46 +01001311 rcu_read_lock();
1312
Jiri Bencf0706e82007-05-05 11:45:53 -07001313 /* Add STA entry for the AP */
1314 sta = sta_info_get(local, ifsta->bssid);
1315 if (!sta) {
Johannes Bergc2b13452008-09-11 00:01:55 +02001316 struct ieee80211_bss *bss;
Johannes Bergddf4ac52008-10-22 11:41:38 +02001317
1318 newsta = true;
Johannes Bergd0709a62008-02-25 16:27:46 +01001319
Johannes Berg73651ee2008-02-25 16:27:47 +01001320 sta = sta_info_alloc(sdata, ifsta->bssid, GFP_ATOMIC);
1321 if (!sta) {
1322 printk(KERN_DEBUG "%s: failed to alloc STA entry for"
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001323 " the AP\n", sdata->dev->name);
Johannes Bergd0709a62008-02-25 16:27:46 +01001324 rcu_read_unlock();
Jiri Bencf0706e82007-05-05 11:45:53 -07001325 return;
1326 }
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001327 bss = ieee80211_rx_bss_get(local, ifsta->bssid,
Johannes Berg8318d782008-01-24 19:38:38 +01001328 local->hw.conf.channel->center_freq,
John W. Linvillecffdd302007-10-05 14:23:27 -04001329 ifsta->ssid, ifsta->ssid_len);
Jiri Bencf0706e82007-05-05 11:45:53 -07001330 if (bss) {
Jiri Bencf0706e82007-05-05 11:45:53 -07001331 sta->last_signal = bss->signal;
Bruno Randolf566bfe52008-05-08 19:15:40 +02001332 sta->last_qual = bss->qual;
Jiri Bencf0706e82007-05-05 11:45:53 -07001333 sta->last_noise = bss->noise;
Johannes Berg3e122be2008-07-09 14:40:34 +02001334 ieee80211_rx_bss_put(local, bss);
Jiri Bencf0706e82007-05-05 11:45:53 -07001335 }
Johannes Berg73651ee2008-02-25 16:27:47 +01001336
Ron Rindjunskya61dae12008-08-10 00:54:34 +03001337 /* update new sta with its last rx activity */
1338 sta->last_rx = jiffies;
Jiri Bencf0706e82007-05-05 11:45:53 -07001339 }
1340
Johannes Berg73651ee2008-02-25 16:27:47 +01001341 /*
1342 * FIXME: Do we really need to update the sta_info's information here?
1343 * We already know about the AP (we found it in our list) so it
1344 * should already be filled with the right info, no?
1345 * As is stands, all this is racy because typically we assume
1346 * the information that is filled in here (except flags) doesn't
1347 * change while a STA structure is alive. As such, it should move
1348 * to between the sta_info_alloc() and sta_info_insert() above.
1349 */
1350
Johannes Berg07346f812008-05-03 01:02:02 +02001351 set_sta_flags(sta, WLAN_STA_AUTH | WLAN_STA_ASSOC | WLAN_STA_ASSOC_AP |
1352 WLAN_STA_AUTHORIZED);
Jiri Bencf0706e82007-05-05 11:45:53 -07001353
1354 rates = 0;
Johannes Berg8318d782008-01-24 19:38:38 +01001355 basic_rates = 0;
1356 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
1357
Jiri Bencf0706e82007-05-05 11:45:53 -07001358 for (i = 0; i < elems.supp_rates_len; i++) {
1359 int rate = (elems.supp_rates[i] & 0x7f) * 5;
Tomas Winklerd61272c2008-10-30 17:08:08 +02001360 bool is_basic = !!(elems.supp_rates[i] & 0x80);
Johannes Berg8318d782008-01-24 19:38:38 +01001361
1362 if (rate > 110)
1363 have_higher_than_11mbit = true;
1364
1365 for (j = 0; j < sband->n_bitrates; j++) {
Tomas Winklerd61272c2008-10-30 17:08:08 +02001366 if (sband->bitrates[j].bitrate == rate) {
Jiri Bencf0706e82007-05-05 11:45:53 -07001367 rates |= BIT(j);
Tomas Winklerd61272c2008-10-30 17:08:08 +02001368 if (is_basic)
1369 basic_rates |= BIT(j);
1370 break;
1371 }
Johannes Berg8318d782008-01-24 19:38:38 +01001372 }
Jiri Bencf0706e82007-05-05 11:45:53 -07001373 }
Johannes Berg8318d782008-01-24 19:38:38 +01001374
Jiri Bencf0706e82007-05-05 11:45:53 -07001375 for (i = 0; i < elems.ext_supp_rates_len; i++) {
1376 int rate = (elems.ext_supp_rates[i] & 0x7f) * 5;
Tomas Winklerd61272c2008-10-30 17:08:08 +02001377 bool is_basic = !!(elems.supp_rates[i] & 0x80);
Johannes Berg8318d782008-01-24 19:38:38 +01001378
1379 if (rate > 110)
1380 have_higher_than_11mbit = true;
1381
1382 for (j = 0; j < sband->n_bitrates; j++) {
Tomas Winklerd61272c2008-10-30 17:08:08 +02001383 if (sband->bitrates[j].bitrate == rate) {
Jiri Bencf0706e82007-05-05 11:45:53 -07001384 rates |= BIT(j);
Tomas Winklerd61272c2008-10-30 17:08:08 +02001385 if (is_basic)
1386 basic_rates |= BIT(j);
1387 break;
1388 }
Johannes Berg8318d782008-01-24 19:38:38 +01001389 }
Jiri Bencf0706e82007-05-05 11:45:53 -07001390 }
Johannes Berg8318d782008-01-24 19:38:38 +01001391
Johannes Berg323ce792008-09-11 02:45:11 +02001392 sta->sta.supp_rates[local->hw.conf.channel->band] = rates;
Johannes Bergbda39332008-10-11 01:51:51 +02001393 sdata->vif.bss_conf.basic_rates = basic_rates;
Johannes Berg8318d782008-01-24 19:38:38 +01001394
1395 /* cf. IEEE 802.11 9.2.12 */
1396 if (local->hw.conf.channel->band == IEEE80211_BAND_2GHZ &&
1397 have_higher_than_11mbit)
1398 sdata->flags |= IEEE80211_SDATA_OPERATING_GMODE;
1399 else
1400 sdata->flags &= ~IEEE80211_SDATA_OPERATING_GMODE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001401
Johannes Bergae5eb022008-10-14 16:58:37 +02001402 if (elems.ht_cap_elem)
1403 ieee80211_ht_cap_ie_to_sta_ht_cap(sband,
Johannes Bergd9fe60d2008-10-09 12:13:49 +02001404 elems.ht_cap_elem, &sta->sta.ht_cap);
Johannes Bergae5eb022008-10-14 16:58:37 +02001405
1406 ap_ht_cap_flags = sta->sta.ht_cap.cap;
Ron Rindjunskyd3c990f2007-11-26 16:14:34 +02001407
Johannes Berg4b7679a2008-09-18 18:14:18 +02001408 rate_control_rate_init(sta);
Jiri Bencf0706e82007-05-05 11:45:53 -07001409
Johannes Bergddf4ac52008-10-22 11:41:38 +02001410 if (elems.wmm_param)
Johannes Berg07346f812008-05-03 01:02:02 +02001411 set_sta_flags(sta, WLAN_STA_WME);
Johannes Bergddf4ac52008-10-22 11:41:38 +02001412
1413 if (newsta) {
1414 int err = sta_info_insert(sta);
1415 if (err) {
1416 printk(KERN_DEBUG "%s: failed to insert STA entry for"
1417 " the AP (error %d)\n", sdata->dev->name, err);
1418 rcu_read_unlock();
1419 return;
1420 }
1421 }
1422
1423 rcu_read_unlock();
1424
1425 if (elems.wmm_param)
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001426 ieee80211_sta_wmm_params(local, ifsta, elems.wmm_param,
Jiri Bencf0706e82007-05-05 11:45:53 -07001427 elems.wmm_param_len);
Jiri Bencf0706e82007-05-05 11:45:53 -07001428
Johannes Bergae5eb022008-10-14 16:58:37 +02001429 if (elems.ht_info_elem && elems.wmm_param &&
1430 (ifsta->flags & IEEE80211_STA_WMM_ENABLED))
1431 changed |= ieee80211_enable_ht(sdata, elems.ht_info_elem,
1432 ap_ht_cap_flags);
1433
Tomas Winkler21c0cbe2008-03-28 16:33:34 -07001434 /* set AID and assoc capability,
1435 * ieee80211_set_associated() will tell the driver */
Johannes Berg8318d782008-01-24 19:38:38 +01001436 bss_conf->aid = aid;
Tomas Winkler21c0cbe2008-03-28 16:33:34 -07001437 bss_conf->assoc_capability = capab_info;
Johannes Bergae5eb022008-10-14 16:58:37 +02001438 ieee80211_set_associated(sdata, ifsta, changed);
Jiri Bencf0706e82007-05-05 11:45:53 -07001439
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001440 ieee80211_associated(sdata, ifsta);
Jiri Bencf0706e82007-05-05 11:45:53 -07001441}
1442
1443
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001444static int ieee80211_sta_join_ibss(struct ieee80211_sub_if_data *sdata,
Bruno Randolfa6072682008-02-18 11:21:15 +09001445 struct ieee80211_if_sta *ifsta,
Johannes Bergc2b13452008-09-11 00:01:55 +02001446 struct ieee80211_bss *bss)
Bruno Randolfa6072682008-02-18 11:21:15 +09001447{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001448 struct ieee80211_local *local = sdata->local;
Bruno Randolfa6072682008-02-18 11:21:15 +09001449 int res, rates, i, j;
1450 struct sk_buff *skb;
1451 struct ieee80211_mgmt *mgmt;
Bruno Randolfa6072682008-02-18 11:21:15 +09001452 u8 *pos;
Bruno Randolfa6072682008-02-18 11:21:15 +09001453 struct ieee80211_supported_band *sband;
Dan Williams507b06d2008-06-03 23:39:55 -04001454 union iwreq_data wrqu;
Bruno Randolfa6072682008-02-18 11:21:15 +09001455
Rami Rosene2ef12d2008-10-22 09:58:39 +02001456 skb = dev_alloc_skb(local->hw.extra_tx_headroom + 400);
1457 if (!skb) {
1458 printk(KERN_DEBUG "%s: failed to allocate buffer for probe "
1459 "response\n", sdata->dev->name);
1460 return -ENOMEM;
1461 }
1462
Bruno Randolfa6072682008-02-18 11:21:15 +09001463 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
1464
1465 /* Remove possible STA entries from other IBSS networks. */
Johannes Bergdc6676b2008-03-31 19:23:03 +02001466 sta_info_flush_delayed(sdata);
Bruno Randolfa6072682008-02-18 11:21:15 +09001467
1468 if (local->ops->reset_tsf) {
1469 /* Reset own TSF to allow time synchronization work. */
1470 local->ops->reset_tsf(local_to_hw(local));
1471 }
1472 memcpy(ifsta->bssid, bss->bssid, ETH_ALEN);
Johannes Berg9d139c82008-07-09 14:40:37 +02001473 res = ieee80211_if_config(sdata, IEEE80211_IFCC_BSSID);
Bruno Randolfa6072682008-02-18 11:21:15 +09001474 if (res)
1475 return res;
1476
1477 local->hw.conf.beacon_int = bss->beacon_int >= 10 ? bss->beacon_int : 10;
1478
Bruno Randolfa6072682008-02-18 11:21:15 +09001479 sdata->drop_unencrypted = bss->capability &
1480 WLAN_CAPABILITY_PRIVACY ? 1 : 0;
1481
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001482 res = ieee80211_set_freq(sdata, bss->freq);
Bruno Randolfa6072682008-02-18 11:21:15 +09001483
Assaf Kraussbe038b32008-06-05 19:55:21 +03001484 if (res)
1485 return res;
Bruno Randolfa6072682008-02-18 11:21:15 +09001486
Johannes Berg9d139c82008-07-09 14:40:37 +02001487 /* Build IBSS probe response */
Bruno Randolfa6072682008-02-18 11:21:15 +09001488
Rami Rosene2ef12d2008-10-22 09:58:39 +02001489 skb_reserve(skb, local->hw.extra_tx_headroom);
Bruno Randolfa6072682008-02-18 11:21:15 +09001490
Rami Rosene2ef12d2008-10-22 09:58:39 +02001491 mgmt = (struct ieee80211_mgmt *)
1492 skb_put(skb, 24 + sizeof(mgmt->u.beacon));
1493 memset(mgmt, 0, 24 + sizeof(mgmt->u.beacon));
1494 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
1495 IEEE80211_STYPE_PROBE_RESP);
1496 memset(mgmt->da, 0xff, ETH_ALEN);
1497 memcpy(mgmt->sa, sdata->dev->dev_addr, ETH_ALEN);
1498 memcpy(mgmt->bssid, ifsta->bssid, ETH_ALEN);
1499 mgmt->u.beacon.beacon_int =
1500 cpu_to_le16(local->hw.conf.beacon_int);
1501 mgmt->u.beacon.timestamp = cpu_to_le64(bss->timestamp);
1502 mgmt->u.beacon.capab_info = cpu_to_le16(bss->capability);
Bruno Randolfa6072682008-02-18 11:21:15 +09001503
Rami Rosene2ef12d2008-10-22 09:58:39 +02001504 pos = skb_put(skb, 2 + ifsta->ssid_len);
1505 *pos++ = WLAN_EID_SSID;
1506 *pos++ = ifsta->ssid_len;
1507 memcpy(pos, ifsta->ssid, ifsta->ssid_len);
Bruno Randolfa6072682008-02-18 11:21:15 +09001508
Rami Rosene2ef12d2008-10-22 09:58:39 +02001509 rates = bss->supp_rates_len;
1510 if (rates > 8)
1511 rates = 8;
1512 pos = skb_put(skb, 2 + rates);
1513 *pos++ = WLAN_EID_SUPP_RATES;
1514 *pos++ = rates;
1515 memcpy(pos, bss->supp_rates, rates);
Bruno Randolfa6072682008-02-18 11:21:15 +09001516
Rami Rosene2ef12d2008-10-22 09:58:39 +02001517 if (bss->band == IEEE80211_BAND_2GHZ) {
1518 pos = skb_put(skb, 2 + 1);
1519 *pos++ = WLAN_EID_DS_PARAMS;
1520 *pos++ = 1;
1521 *pos++ = ieee80211_frequency_to_channel(bss->freq);
Bruno Randolfa6072682008-02-18 11:21:15 +09001522 }
1523
Rami Rosene2ef12d2008-10-22 09:58:39 +02001524 pos = skb_put(skb, 2 + 2);
1525 *pos++ = WLAN_EID_IBSS_PARAMS;
1526 *pos++ = 2;
1527 /* FIX: set ATIM window based on scan results */
1528 *pos++ = 0;
1529 *pos++ = 0;
1530
1531 if (bss->supp_rates_len > 8) {
1532 rates = bss->supp_rates_len - 8;
1533 pos = skb_put(skb, 2 + rates);
1534 *pos++ = WLAN_EID_EXT_SUPP_RATES;
1535 *pos++ = rates;
1536 memcpy(pos, &bss->supp_rates[8], rates);
1537 }
1538
1539 ifsta->probe_resp = skb;
1540
1541 ieee80211_if_config(sdata, IEEE80211_IFCC_BEACON);
1542
1543
Johannes Berg9d139c82008-07-09 14:40:37 +02001544 rates = 0;
1545 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
1546 for (i = 0; i < bss->supp_rates_len; i++) {
1547 int bitrate = (bss->supp_rates[i] & 0x7f) * 5;
1548 for (j = 0; j < sband->n_bitrates; j++)
1549 if (sband->bitrates[j].bitrate == bitrate)
1550 rates |= BIT(j);
1551 }
1552 ifsta->supp_rates_bits[local->hw.conf.channel->band] = rates;
1553
Johannes Bergb079ada2008-09-09 09:32:59 +02001554 ieee80211_sta_def_wmm_params(sdata, bss);
Johannes Berg9d139c82008-07-09 14:40:37 +02001555
Tomas Winkler48c2fc52008-08-06 14:22:01 +03001556 ifsta->state = IEEE80211_STA_MLME_IBSS_JOINED;
Bruno Randolfa6072682008-02-18 11:21:15 +09001557 mod_timer(&ifsta->timer, jiffies + IEEE80211_IBSS_MERGE_INTERVAL);
1558
Emmanuel Grumbach4492bea2008-09-22 17:10:10 +03001559 ieee80211_led_assoc(local, true);
1560
Dan Williams507b06d2008-06-03 23:39:55 -04001561 memset(&wrqu, 0, sizeof(wrqu));
1562 memcpy(wrqu.ap_addr.sa_data, bss->bssid, ETH_ALEN);
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001563 wireless_send_event(sdata->dev, SIOCGIWAP, &wrqu, NULL);
Bruno Randolfa6072682008-02-18 11:21:15 +09001564
1565 return res;
1566}
1567
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001568static void ieee80211_rx_bss_info(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001569 struct ieee80211_mgmt *mgmt,
1570 size_t len,
1571 struct ieee80211_rx_status *rx_status,
Johannes Berg98c8fcc2008-09-08 17:44:26 +02001572 struct ieee802_11_elems *elems,
1573 bool beacon)
Jiri Bencf0706e82007-05-05 11:45:53 -07001574{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001575 struct ieee80211_local *local = sdata->local;
Johannes Berg98c8fcc2008-09-08 17:44:26 +02001576 int freq;
Johannes Bergc2b13452008-09-11 00:01:55 +02001577 struct ieee80211_bss *bss;
Jiri Bencf0706e82007-05-05 11:45:53 -07001578 struct sta_info *sta;
Johannes Bergfab7d4a2008-03-16 18:42:44 +01001579 struct ieee80211_channel *channel;
Emmanuel Grumbach8e1535d2008-09-03 23:42:20 +03001580 u64 beacon_timestamp, rx_timestamp;
1581 u64 supp_rates = 0;
Emmanuel Grumbach8e1535d2008-09-03 23:42:20 +03001582 enum ieee80211_band band = rx_status->band;
Jiri Bencf0706e82007-05-05 11:45:53 -07001583
Johannes Berg5bda6172008-09-08 11:05:10 +02001584 if (elems->ds_params && elems->ds_params_len == 1)
1585 freq = ieee80211_channel_to_frequency(elems->ds_params[0]);
1586 else
1587 freq = rx_status->freq;
1588
1589 channel = ieee80211_get_channel(local->hw.wiphy, freq);
1590
1591 if (!channel || channel->flags & IEEE80211_CHAN_DISABLED)
1592 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001593
Johannes Berg05c914f2008-09-11 00:01:58 +02001594 if (sdata->vif.type == NL80211_IFTYPE_ADHOC && elems->supp_rates &&
Emmanuel Grumbach8e1535d2008-09-03 23:42:20 +03001595 memcmp(mgmt->bssid, sdata->u.sta.bssid, ETH_ALEN) == 0) {
Emmanuel Grumbach8e1535d2008-09-03 23:42:20 +03001596 supp_rates = ieee80211_sta_get_rates(local, elems, band);
1597
Johannes Berg69e6c012008-09-08 11:05:08 +02001598 rcu_read_lock();
1599
Emmanuel Grumbach8e1535d2008-09-03 23:42:20 +03001600 sta = sta_info_get(local, mgmt->sa);
1601 if (sta) {
1602 u64 prev_rates;
1603
Johannes Berg323ce792008-09-11 02:45:11 +02001604 prev_rates = sta->sta.supp_rates[band];
Emmanuel Grumbach8e1535d2008-09-03 23:42:20 +03001605 /* make sure mandatory rates are always added */
Johannes Berg323ce792008-09-11 02:45:11 +02001606 sta->sta.supp_rates[band] = supp_rates |
Johannes Berg96dd22a2008-09-11 00:01:57 +02001607 ieee80211_mandatory_rates(local, band);
Emmanuel Grumbach8e1535d2008-09-03 23:42:20 +03001608
1609#ifdef CONFIG_MAC80211_IBSS_DEBUG
Johannes Berg323ce792008-09-11 02:45:11 +02001610 if (sta->sta.supp_rates[band] != prev_rates)
Emmanuel Grumbach8e1535d2008-09-03 23:42:20 +03001611 printk(KERN_DEBUG "%s: updated supp_rates set "
Johannes Berg0c68ae262008-10-27 15:56:10 -07001612 "for %pM based on beacon info (0x%llx | "
Emmanuel Grumbach8e1535d2008-09-03 23:42:20 +03001613 "0x%llx -> 0x%llx)\n",
Johannes Berg17741cd2008-09-11 00:02:02 +02001614 sdata->dev->name,
Johannes Berg0c68ae262008-10-27 15:56:10 -07001615 sta->sta.addr,
Emmanuel Grumbach8e1535d2008-09-03 23:42:20 +03001616 (unsigned long long) prev_rates,
1617 (unsigned long long) supp_rates,
Johannes Berg323ce792008-09-11 02:45:11 +02001618 (unsigned long long) sta->sta.supp_rates[band]);
Emmanuel Grumbach8e1535d2008-09-03 23:42:20 +03001619#endif
1620 } else {
Rami Rosenab1f5c02008-12-11 14:00:25 +02001621 ieee80211_ibss_add_sta(sdata, mgmt->bssid, mgmt->sa, supp_rates);
Jiri Bencf0706e82007-05-05 11:45:53 -07001622 }
Jiri Bencf0706e82007-05-05 11:45:53 -07001623
Johannes Berg69e6c012008-09-08 11:05:08 +02001624 rcu_read_unlock();
1625 }
Johannes Bergd0709a62008-02-25 16:27:46 +01001626
Johannes Berg98c8fcc2008-09-08 17:44:26 +02001627 bss = ieee80211_bss_info_update(local, rx_status, mgmt, len, elems,
1628 freq, beacon);
1629 if (!bss)
1630 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001631
Sujithc481ec92009-01-06 09:28:37 +05301632 if (elems->ch_switch_elem && (elems->ch_switch_elem_len == 3) &&
1633 (memcmp(mgmt->bssid, sdata->u.sta.bssid, ETH_ALEN) == 0)) {
1634 struct ieee80211_channel_sw_ie *sw_elem =
1635 (struct ieee80211_channel_sw_ie *)elems->ch_switch_elem;
1636 ieee80211_process_chanswitch(sdata, sw_elem, bss);
1637 }
1638
Johannes Berg98c8fcc2008-09-08 17:44:26 +02001639 /* was just updated in ieee80211_bss_info_update */
1640 beacon_timestamp = bss->timestamp;
Daniel Drake56282212007-07-10 19:32:10 +02001641
Johannes Berg30b89b02008-04-16 17:43:20 +02001642 /*
1643 * In STA mode, the remaining parameters should not be overridden
1644 * by beacons because they're not necessarily accurate there.
1645 */
Johannes Berg05c914f2008-09-11 00:01:58 +02001646 if (sdata->vif.type != NL80211_IFTYPE_ADHOC &&
Ron Rindjunsky9859b812008-08-09 03:02:19 +03001647 bss->last_probe_resp && beacon) {
Johannes Berg3e122be2008-07-09 14:40:34 +02001648 ieee80211_rx_bss_put(local, bss);
Johannes Berg30b89b02008-04-16 17:43:20 +02001649 return;
1650 }
1651
Bruno Randolf9d9bf772008-02-18 11:21:36 +09001652 /* check if we need to merge IBSS */
Johannes Berg05c914f2008-09-11 00:01:58 +02001653 if (sdata->vif.type == NL80211_IFTYPE_ADHOC && beacon &&
Alina Friedrichsen65f0e6a2009-01-06 03:08:10 +01001654 (!(sdata->u.sta.flags & IEEE80211_STA_BSSID_SET)) &&
Johannes Bergfba4a1e2008-02-21 11:08:33 +01001655 bss->capability & WLAN_CAPABILITY_IBSS &&
Bruno Randolf9d9bf772008-02-18 11:21:36 +09001656 bss->freq == local->oper_channel->center_freq &&
Ester Kummerae6a44e2008-06-27 18:54:48 +03001657 elems->ssid_len == sdata->u.sta.ssid_len &&
1658 memcmp(elems->ssid, sdata->u.sta.ssid,
1659 sdata->u.sta.ssid_len) == 0) {
Bruno Randolf9d9bf772008-02-18 11:21:36 +09001660 if (rx_status->flag & RX_FLAG_TSFT) {
1661 /* in order for correct IBSS merging we need mactime
1662 *
1663 * since mactime is defined as the time the first data
1664 * symbol of the frame hits the PHY, and the timestamp
1665 * of the beacon is defined as "the time that the data
1666 * symbol containing the first bit of the timestamp is
1667 * transmitted to the PHY plus the transmitting STA’s
1668 * delays through its local PHY from the MAC-PHY
1669 * interface to its interface with the WM"
1670 * (802.11 11.1.2) - equals the time this bit arrives at
1671 * the receiver - we have to take into account the
1672 * offset between the two.
1673 * e.g: at 1 MBit that means mactime is 192 usec earlier
1674 * (=24 bytes * 8 usecs/byte) than the beacon timestamp.
1675 */
Jouni Malinen0fb8ca42008-12-12 14:38:33 +02001676 int rate;
1677 if (rx_status->flag & RX_FLAG_HT) {
1678 rate = 65; /* TODO: HT rates */
1679 } else {
1680 rate = local->hw.wiphy->bands[band]->
Bruno Randolf9d9bf772008-02-18 11:21:36 +09001681 bitrates[rx_status->rate_idx].bitrate;
Jouni Malinen0fb8ca42008-12-12 14:38:33 +02001682 }
Bruno Randolf9d9bf772008-02-18 11:21:36 +09001683 rx_timestamp = rx_status->mactime + (24 * 8 * 10 / rate);
1684 } else if (local && local->ops && local->ops->get_tsf)
1685 /* second best option: get current TSF */
1686 rx_timestamp = local->ops->get_tsf(local_to_hw(local));
1687 else
1688 /* can't merge without knowing the TSF */
1689 rx_timestamp = -1LLU;
1690#ifdef CONFIG_MAC80211_IBSS_DEBUG
Johannes Berg0c68ae262008-10-27 15:56:10 -07001691 printk(KERN_DEBUG "RX beacon SA=%pM BSSID="
1692 "%pM TSF=0x%llx BCN=0x%llx diff=%lld @%lu\n",
1693 mgmt->sa, mgmt->bssid,
Bruno Randolf9d9bf772008-02-18 11:21:36 +09001694 (unsigned long long)rx_timestamp,
1695 (unsigned long long)beacon_timestamp,
1696 (unsigned long long)(rx_timestamp - beacon_timestamp),
1697 jiffies);
1698#endif /* CONFIG_MAC80211_IBSS_DEBUG */
1699 if (beacon_timestamp > rx_timestamp) {
John W. Linville576fdea2008-08-26 20:33:34 -04001700#ifdef CONFIG_MAC80211_IBSS_DEBUG
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001701 printk(KERN_DEBUG "%s: beacon TSF higher than "
Johannes Berg0c68ae262008-10-27 15:56:10 -07001702 "local TSF - IBSS merge with BSSID %pM\n",
1703 sdata->dev->name, mgmt->bssid);
Johannes Bergfba4a1e2008-02-21 11:08:33 +01001704#endif
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001705 ieee80211_sta_join_ibss(sdata, &sdata->u.sta, bss);
Rami Rosenab1f5c02008-12-11 14:00:25 +02001706 ieee80211_ibss_add_sta(sdata, mgmt->bssid, mgmt->sa, supp_rates);
Bruno Randolf9d9bf772008-02-18 11:21:36 +09001707 }
1708 }
1709
Johannes Berg3e122be2008-07-09 14:40:34 +02001710 ieee80211_rx_bss_put(local, bss);
Jiri Bencf0706e82007-05-05 11:45:53 -07001711}
1712
1713
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001714static void ieee80211_rx_mgmt_probe_resp(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001715 struct ieee80211_mgmt *mgmt,
1716 size_t len,
1717 struct ieee80211_rx_status *rx_status)
1718{
Ester Kummerae6a44e2008-06-27 18:54:48 +03001719 size_t baselen;
1720 struct ieee802_11_elems elems;
Ron Rindjunsky9859b812008-08-09 03:02:19 +03001721 struct ieee80211_if_sta *ifsta = &sdata->u.sta;
Ester Kummerae6a44e2008-06-27 18:54:48 +03001722
Tomas Winkler8e7cdbb2008-08-03 14:32:01 +03001723 if (memcmp(mgmt->da, sdata->dev->dev_addr, ETH_ALEN))
1724 return; /* ignore ProbeResp to foreign address */
1725
Ester Kummerae6a44e2008-06-27 18:54:48 +03001726 baselen = (u8 *) mgmt->u.probe_resp.variable - (u8 *) mgmt;
1727 if (baselen > len)
1728 return;
1729
1730 ieee802_11_parse_elems(mgmt->u.probe_resp.variable, len - baselen,
1731 &elems);
1732
Johannes Berg98c8fcc2008-09-08 17:44:26 +02001733 ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems, false);
Ron Rindjunsky9859b812008-08-09 03:02:19 +03001734
1735 /* direct probe may be part of the association flow */
1736 if (test_and_clear_bit(IEEE80211_STA_REQ_DIRECT_PROBE,
1737 &ifsta->request)) {
1738 printk(KERN_DEBUG "%s direct probe responded\n",
1739 sdata->dev->name);
1740 ieee80211_authenticate(sdata, ifsta);
1741 }
Jiri Bencf0706e82007-05-05 11:45:53 -07001742}
1743
1744
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001745static void ieee80211_rx_mgmt_beacon(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001746 struct ieee80211_mgmt *mgmt,
1747 size_t len,
1748 struct ieee80211_rx_status *rx_status)
1749{
Jiri Bencf0706e82007-05-05 11:45:53 -07001750 struct ieee80211_if_sta *ifsta;
Jiri Bencf0706e82007-05-05 11:45:53 -07001751 size_t baselen;
1752 struct ieee802_11_elems elems;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001753 struct ieee80211_local *local = sdata->local;
Johannes Berg471b3ef2007-12-28 14:32:58 +01001754 u32 changed = 0;
Vivek Natarajana97b77b2008-12-23 18:39:02 -08001755 bool erp_valid, directed_tim, is_mc = false;
Johannes Berg7a5158e2008-10-08 10:59:33 +02001756 u8 erp_value = 0;
Jiri Bencf0706e82007-05-05 11:45:53 -07001757
Ester Kummerae6a44e2008-06-27 18:54:48 +03001758 /* Process beacon from the current BSS */
1759 baselen = (u8 *) mgmt->u.beacon.variable - (u8 *) mgmt;
1760 if (baselen > len)
1761 return;
1762
1763 ieee802_11_parse_elems(mgmt->u.beacon.variable, len - baselen, &elems);
1764
Johannes Berg98c8fcc2008-09-08 17:44:26 +02001765 ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems, true);
Jiri Bencf0706e82007-05-05 11:45:53 -07001766
Johannes Berg05c914f2008-09-11 00:01:58 +02001767 if (sdata->vif.type != NL80211_IFTYPE_STATION)
Jiri Bencf0706e82007-05-05 11:45:53 -07001768 return;
1769 ifsta = &sdata->u.sta;
1770
Jiri Slabyd6f2da52007-08-28 17:01:54 -04001771 if (!(ifsta->flags & IEEE80211_STA_ASSOCIATED) ||
Jiri Bencf0706e82007-05-05 11:45:53 -07001772 memcmp(ifsta->bssid, mgmt->bssid, ETH_ALEN) != 0)
1773 return;
1774
Sujithc481ec92009-01-06 09:28:37 +05301775 if (rx_status->freq != local->hw.conf.channel->center_freq)
1776 return;
1777
Johannes Bergfe3fa822008-09-08 11:05:09 +02001778 ieee80211_sta_wmm_params(local, ifsta, elems.wmm_param,
1779 elems.wmm_param_len);
1780
Vivek Natarajana97b77b2008-12-23 18:39:02 -08001781 if (!(local->hw.flags & IEEE80211_HW_NO_STACK_DYNAMIC_PS)) {
1782 directed_tim = check_tim(&elems, ifsta->aid, &is_mc);
1783
1784 if (directed_tim || is_mc) {
1785 if (local->hw.conf.flags && IEEE80211_CONF_PS) {
1786 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
1787 ieee80211_hw_config(local,
1788 IEEE80211_CONF_CHANGE_PS);
1789 ieee80211_send_nullfunc(local, sdata, 0);
1790 }
1791 }
1792 }
Johannes Berg7a5158e2008-10-08 10:59:33 +02001793
1794 if (elems.erp_info && elems.erp_info_len >= 1) {
1795 erp_valid = true;
1796 erp_value = elems.erp_info[0];
1797 } else {
1798 erp_valid = false;
John W. Linville50c4afb2008-04-15 14:09:27 -04001799 }
Johannes Berg7a5158e2008-10-08 10:59:33 +02001800 changed |= ieee80211_handle_bss_capability(sdata,
1801 le16_to_cpu(mgmt->u.beacon.capab_info),
1802 erp_valid, erp_value);
Jiri Bencf0706e82007-05-05 11:45:53 -07001803
Ron Rindjunskyd3c990f2007-11-26 16:14:34 +02001804
Johannes Bergae5eb022008-10-14 16:58:37 +02001805 if (elems.ht_cap_elem && elems.ht_info_elem && elems.wmm_param) {
1806 struct sta_info *sta;
1807 struct ieee80211_supported_band *sband;
1808 u16 ap_ht_cap_flags;
1809
1810 rcu_read_lock();
1811
1812 sta = sta_info_get(local, ifsta->bssid);
1813 if (!sta) {
1814 rcu_read_unlock();
1815 return;
1816 }
1817
1818 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
1819
1820 ieee80211_ht_cap_ie_to_sta_ht_cap(sband,
1821 elems.ht_cap_elem, &sta->sta.ht_cap);
1822
1823 ap_ht_cap_flags = sta->sta.ht_cap.cap;
1824
1825 rcu_read_unlock();
1826
1827 changed |= ieee80211_enable_ht(sdata, elems.ht_info_elem,
1828 ap_ht_cap_flags);
Ron Rindjunskyd3c990f2007-11-26 16:14:34 +02001829 }
1830
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001831 if (elems.country_elem) {
1832 /* Note we are only reviewing this on beacons
1833 * for the BSSID we are associated to */
1834 regulatory_hint_11d(local->hw.wiphy,
1835 elems.country_elem, elems.country_elem_len);
1836 }
1837
Johannes Berg471b3ef2007-12-28 14:32:58 +01001838 ieee80211_bss_info_change_notify(sdata, changed);
Jiri Bencf0706e82007-05-05 11:45:53 -07001839}
1840
1841
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001842static void ieee80211_rx_mgmt_probe_req(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001843 struct ieee80211_if_sta *ifsta,
1844 struct ieee80211_mgmt *mgmt,
Rami Rosen504a71e2009-01-06 10:50:51 +02001845 size_t len)
Jiri Bencf0706e82007-05-05 11:45:53 -07001846{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001847 struct ieee80211_local *local = sdata->local;
Jiri Bencf0706e82007-05-05 11:45:53 -07001848 int tx_last_beacon;
1849 struct sk_buff *skb;
1850 struct ieee80211_mgmt *resp;
1851 u8 *pos, *end;
1852
Johannes Berg05c914f2008-09-11 00:01:58 +02001853 if (sdata->vif.type != NL80211_IFTYPE_ADHOC ||
Tomas Winkler48c2fc52008-08-06 14:22:01 +03001854 ifsta->state != IEEE80211_STA_MLME_IBSS_JOINED ||
Jiri Bencf0706e82007-05-05 11:45:53 -07001855 len < 24 + 2 || !ifsta->probe_resp)
1856 return;
1857
1858 if (local->ops->tx_last_beacon)
1859 tx_last_beacon = local->ops->tx_last_beacon(local_to_hw(local));
1860 else
1861 tx_last_beacon = 1;
1862
1863#ifdef CONFIG_MAC80211_IBSS_DEBUG
Johannes Berg0c68ae262008-10-27 15:56:10 -07001864 printk(KERN_DEBUG "%s: RX ProbeReq SA=%pM DA=%pM BSSID=%pM"
1865 " (tx_last_beacon=%d)\n",
1866 sdata->dev->name, mgmt->sa, mgmt->da,
1867 mgmt->bssid, tx_last_beacon);
Jiri Bencf0706e82007-05-05 11:45:53 -07001868#endif /* CONFIG_MAC80211_IBSS_DEBUG */
1869
1870 if (!tx_last_beacon)
1871 return;
1872
1873 if (memcmp(mgmt->bssid, ifsta->bssid, ETH_ALEN) != 0 &&
1874 memcmp(mgmt->bssid, "\xff\xff\xff\xff\xff\xff", ETH_ALEN) != 0)
1875 return;
1876
1877 end = ((u8 *) mgmt) + len;
1878 pos = mgmt->u.probe_req.variable;
1879 if (pos[0] != WLAN_EID_SSID ||
1880 pos + 2 + pos[1] > end) {
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001881#ifdef CONFIG_MAC80211_IBSS_DEBUG
1882 printk(KERN_DEBUG "%s: Invalid SSID IE in ProbeReq "
Johannes Berg0c68ae262008-10-27 15:56:10 -07001883 "from %pM\n",
1884 sdata->dev->name, mgmt->sa);
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001885#endif
Jiri Bencf0706e82007-05-05 11:45:53 -07001886 return;
1887 }
1888 if (pos[1] != 0 &&
1889 (pos[1] != ifsta->ssid_len ||
1890 memcmp(pos + 2, ifsta->ssid, ifsta->ssid_len) != 0)) {
1891 /* Ignore ProbeReq for foreign SSID */
1892 return;
1893 }
1894
1895 /* Reply with ProbeResp */
Michael Wu0ec0b7a2007-07-27 15:43:24 +02001896 skb = skb_copy(ifsta->probe_resp, GFP_KERNEL);
Jiri Bencf0706e82007-05-05 11:45:53 -07001897 if (!skb)
1898 return;
1899
1900 resp = (struct ieee80211_mgmt *) skb->data;
1901 memcpy(resp->da, mgmt->sa, ETH_ALEN);
1902#ifdef CONFIG_MAC80211_IBSS_DEBUG
Johannes Berg0c68ae262008-10-27 15:56:10 -07001903 printk(KERN_DEBUG "%s: Sending ProbeResp to %pM\n",
1904 sdata->dev->name, resp->da);
Jiri Bencf0706e82007-05-05 11:45:53 -07001905#endif /* CONFIG_MAC80211_IBSS_DEBUG */
Johannes Berge50db652008-09-09 15:07:09 +02001906 ieee80211_tx_skb(sdata, skb, 0);
Jiri Bencf0706e82007-05-05 11:45:53 -07001907}
1908
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001909void ieee80211_sta_rx_mgmt(struct ieee80211_sub_if_data *sdata, struct sk_buff *skb,
Jiri Bencf0706e82007-05-05 11:45:53 -07001910 struct ieee80211_rx_status *rx_status)
1911{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001912 struct ieee80211_local *local = sdata->local;
Jiri Bencf0706e82007-05-05 11:45:53 -07001913 struct ieee80211_if_sta *ifsta;
1914 struct ieee80211_mgmt *mgmt;
1915 u16 fc;
1916
1917 if (skb->len < 24)
1918 goto fail;
1919
Jiri Bencf0706e82007-05-05 11:45:53 -07001920 ifsta = &sdata->u.sta;
1921
1922 mgmt = (struct ieee80211_mgmt *) skb->data;
1923 fc = le16_to_cpu(mgmt->frame_control);
1924
1925 switch (fc & IEEE80211_FCTL_STYPE) {
1926 case IEEE80211_STYPE_PROBE_REQ:
1927 case IEEE80211_STYPE_PROBE_RESP:
1928 case IEEE80211_STYPE_BEACON:
1929 memcpy(skb->cb, rx_status, sizeof(*rx_status));
1930 case IEEE80211_STYPE_AUTH:
1931 case IEEE80211_STYPE_ASSOC_RESP:
1932 case IEEE80211_STYPE_REASSOC_RESP:
1933 case IEEE80211_STYPE_DEAUTH:
1934 case IEEE80211_STYPE_DISASSOC:
1935 skb_queue_tail(&ifsta->skb_queue, skb);
1936 queue_work(local->hw.workqueue, &ifsta->work);
1937 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001938 }
1939
1940 fail:
1941 kfree_skb(skb);
1942}
1943
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001944static void ieee80211_sta_rx_queued_mgmt(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001945 struct sk_buff *skb)
1946{
1947 struct ieee80211_rx_status *rx_status;
Jiri Bencf0706e82007-05-05 11:45:53 -07001948 struct ieee80211_if_sta *ifsta;
1949 struct ieee80211_mgmt *mgmt;
1950 u16 fc;
1951
Jiri Bencf0706e82007-05-05 11:45:53 -07001952 ifsta = &sdata->u.sta;
1953
1954 rx_status = (struct ieee80211_rx_status *) skb->cb;
1955 mgmt = (struct ieee80211_mgmt *) skb->data;
1956 fc = le16_to_cpu(mgmt->frame_control);
1957
1958 switch (fc & IEEE80211_FCTL_STYPE) {
1959 case IEEE80211_STYPE_PROBE_REQ:
Rami Rosen504a71e2009-01-06 10:50:51 +02001960 ieee80211_rx_mgmt_probe_req(sdata, ifsta, mgmt, skb->len);
Jiri Bencf0706e82007-05-05 11:45:53 -07001961 break;
1962 case IEEE80211_STYPE_PROBE_RESP:
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001963 ieee80211_rx_mgmt_probe_resp(sdata, mgmt, skb->len, rx_status);
Jiri Bencf0706e82007-05-05 11:45:53 -07001964 break;
1965 case IEEE80211_STYPE_BEACON:
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001966 ieee80211_rx_mgmt_beacon(sdata, mgmt, skb->len, rx_status);
Jiri Bencf0706e82007-05-05 11:45:53 -07001967 break;
1968 case IEEE80211_STYPE_AUTH:
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001969 ieee80211_rx_mgmt_auth(sdata, ifsta, mgmt, skb->len);
Jiri Bencf0706e82007-05-05 11:45:53 -07001970 break;
1971 case IEEE80211_STYPE_ASSOC_RESP:
Johannes Berg471b3ef2007-12-28 14:32:58 +01001972 ieee80211_rx_mgmt_assoc_resp(sdata, ifsta, mgmt, skb->len, 0);
Jiri Bencf0706e82007-05-05 11:45:53 -07001973 break;
1974 case IEEE80211_STYPE_REASSOC_RESP:
Johannes Berg471b3ef2007-12-28 14:32:58 +01001975 ieee80211_rx_mgmt_assoc_resp(sdata, ifsta, mgmt, skb->len, 1);
Jiri Bencf0706e82007-05-05 11:45:53 -07001976 break;
1977 case IEEE80211_STYPE_DEAUTH:
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001978 ieee80211_rx_mgmt_deauth(sdata, ifsta, mgmt, skb->len);
Jiri Bencf0706e82007-05-05 11:45:53 -07001979 break;
1980 case IEEE80211_STYPE_DISASSOC:
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001981 ieee80211_rx_mgmt_disassoc(sdata, ifsta, mgmt, skb->len);
Jiri Bencf0706e82007-05-05 11:45:53 -07001982 break;
1983 }
1984
1985 kfree_skb(skb);
1986}
1987
1988
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001989static int ieee80211_sta_active_ibss(struct ieee80211_sub_if_data *sdata)
Jiri Bencf0706e82007-05-05 11:45:53 -07001990{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001991 struct ieee80211_local *local = sdata->local;
Jiri Bencf0706e82007-05-05 11:45:53 -07001992 int active = 0;
1993 struct sta_info *sta;
1994
Johannes Bergd0709a62008-02-25 16:27:46 +01001995 rcu_read_lock();
1996
1997 list_for_each_entry_rcu(sta, &local->sta_list, list) {
1998 if (sta->sdata == sdata &&
Jiri Bencf0706e82007-05-05 11:45:53 -07001999 time_after(sta->last_rx + IEEE80211_IBSS_MERGE_INTERVAL,
2000 jiffies)) {
2001 active++;
2002 break;
2003 }
2004 }
Johannes Bergd0709a62008-02-25 16:27:46 +01002005
2006 rcu_read_unlock();
Jiri Bencf0706e82007-05-05 11:45:53 -07002007
2008 return active;
2009}
2010
2011
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002012static void ieee80211_sta_merge_ibss(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07002013 struct ieee80211_if_sta *ifsta)
2014{
2015 mod_timer(&ifsta->timer, jiffies + IEEE80211_IBSS_MERGE_INTERVAL);
2016
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002017 ieee80211_sta_expire(sdata, IEEE80211_IBSS_INACTIVITY_LIMIT);
2018 if (ieee80211_sta_active_ibss(sdata))
Jiri Bencf0706e82007-05-05 11:45:53 -07002019 return;
2020
Alina Friedrichsen137f9f42009-01-06 02:49:07 +01002021 if ((sdata->u.sta.flags & IEEE80211_STA_BSSID_SET) &&
2022 (!(sdata->u.sta.flags & IEEE80211_STA_AUTO_CHANNEL_SEL)))
2023 return;
2024
Jiri Bencf0706e82007-05-05 11:45:53 -07002025 printk(KERN_DEBUG "%s: No active IBSS STAs - trying to scan for other "
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002026 "IBSS networks with same SSID (merge)\n", sdata->dev->name);
Johannes Bergc2b13452008-09-11 00:01:55 +02002027 ieee80211_request_scan(sdata, ifsta->ssid, ifsta->ssid_len);
Jiri Bencf0706e82007-05-05 11:45:53 -07002028}
2029
2030
Johannes Berg9c6bd792008-09-11 00:01:52 +02002031static void ieee80211_sta_timer(unsigned long data)
Jiri Bencf0706e82007-05-05 11:45:53 -07002032{
2033 struct ieee80211_sub_if_data *sdata =
2034 (struct ieee80211_sub_if_data *) data;
2035 struct ieee80211_if_sta *ifsta = &sdata->u.sta;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002036 struct ieee80211_local *local = sdata->local;
Jiri Bencf0706e82007-05-05 11:45:53 -07002037
2038 set_bit(IEEE80211_STA_REQ_RUN, &ifsta->request);
2039 queue_work(local->hw.workqueue, &ifsta->work);
2040}
2041
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002042static void ieee80211_sta_reset_auth(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07002043 struct ieee80211_if_sta *ifsta)
2044{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002045 struct ieee80211_local *local = sdata->local;
Jiri Bencf0706e82007-05-05 11:45:53 -07002046
2047 if (local->ops->reset_tsf) {
2048 /* Reset own TSF to allow time synchronization work. */
2049 local->ops->reset_tsf(local_to_hw(local));
2050 }
2051
2052 ifsta->wmm_last_param_set = -1; /* allow any WMM update */
2053
2054
2055 if (ifsta->auth_algs & IEEE80211_AUTH_ALG_OPEN)
2056 ifsta->auth_alg = WLAN_AUTH_OPEN;
2057 else if (ifsta->auth_algs & IEEE80211_AUTH_ALG_SHARED_KEY)
2058 ifsta->auth_alg = WLAN_AUTH_SHARED_KEY;
2059 else if (ifsta->auth_algs & IEEE80211_AUTH_ALG_LEAP)
2060 ifsta->auth_alg = WLAN_AUTH_LEAP;
2061 else
2062 ifsta->auth_alg = WLAN_AUTH_OPEN;
Jiri Bencf0706e82007-05-05 11:45:53 -07002063 ifsta->auth_transaction = -1;
Jiri Slabyd6f2da52007-08-28 17:01:54 -04002064 ifsta->flags &= ~IEEE80211_STA_ASSOCIATED;
Ron Rindjunsky6042a3e2008-08-08 01:50:46 +03002065 ifsta->assoc_scan_tries = 0;
Ron Rindjunsky9859b812008-08-09 03:02:19 +03002066 ifsta->direct_probe_tries = 0;
Ron Rindjunsky6042a3e2008-08-08 01:50:46 +03002067 ifsta->auth_tries = 0;
2068 ifsta->assoc_tries = 0;
Tomas Winkler24e64622008-09-08 17:33:40 +02002069 netif_tx_stop_all_queues(sdata->dev);
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002070 netif_carrier_off(sdata->dev);
Jiri Bencf0706e82007-05-05 11:45:53 -07002071}
2072
2073
Jiri Bencf0706e82007-05-05 11:45:53 -07002074static int ieee80211_sta_match_ssid(struct ieee80211_if_sta *ifsta,
2075 const char *ssid, int ssid_len)
2076{
2077 int tmp, hidden_ssid;
2078
Michael Wu48225702007-10-19 17:14:36 -04002079 if (ssid_len == ifsta->ssid_len &&
2080 !memcmp(ifsta->ssid, ssid, ssid_len))
Jiri Bencf0706e82007-05-05 11:45:53 -07002081 return 1;
2082
Jiri Slabyd6f2da52007-08-28 17:01:54 -04002083 if (ifsta->flags & IEEE80211_STA_AUTO_BSSID_SEL)
Jiri Bencf0706e82007-05-05 11:45:53 -07002084 return 0;
2085
2086 hidden_ssid = 1;
2087 tmp = ssid_len;
2088 while (tmp--) {
2089 if (ssid[tmp] != '\0') {
2090 hidden_ssid = 0;
2091 break;
2092 }
2093 }
2094
Fabio Rossicb3da8c2008-11-26 22:44:23 +01002095 if (hidden_ssid && (ifsta->ssid_len == ssid_len || ssid_len == 0))
Jiri Bencf0706e82007-05-05 11:45:53 -07002096 return 1;
2097
2098 if (ssid_len == 1 && ssid[0] == ' ')
2099 return 1;
2100
2101 return 0;
2102}
2103
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002104static int ieee80211_sta_create_ibss(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07002105 struct ieee80211_if_sta *ifsta)
2106{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002107 struct ieee80211_local *local = sdata->local;
Johannes Bergc2b13452008-09-11 00:01:55 +02002108 struct ieee80211_bss *bss;
Johannes Berg8318d782008-01-24 19:38:38 +01002109 struct ieee80211_supported_band *sband;
Jiri Bencf0706e82007-05-05 11:45:53 -07002110 u8 bssid[ETH_ALEN], *pos;
2111 int i;
Tomas Winkler167ad6f2008-05-21 18:17:05 +03002112 int ret;
Jiri Bencf0706e82007-05-05 11:45:53 -07002113
2114#if 0
2115 /* Easier testing, use fixed BSSID. */
2116 memset(bssid, 0xfe, ETH_ALEN);
2117#else
2118 /* Generate random, not broadcast, locally administered BSSID. Mix in
2119 * own MAC address to make sure that devices that do not have proper
2120 * random number generator get different BSSID. */
2121 get_random_bytes(bssid, ETH_ALEN);
2122 for (i = 0; i < ETH_ALEN; i++)
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002123 bssid[i] ^= sdata->dev->dev_addr[i];
Jiri Bencf0706e82007-05-05 11:45:53 -07002124 bssid[0] &= ~0x01;
2125 bssid[0] |= 0x02;
2126#endif
2127
Johannes Berg0c68ae262008-10-27 15:56:10 -07002128 printk(KERN_DEBUG "%s: Creating new IBSS network, BSSID %pM\n",
2129 sdata->dev->name, bssid);
Jiri Bencf0706e82007-05-05 11:45:53 -07002130
Johannes Berg98c8fcc2008-09-08 17:44:26 +02002131 bss = ieee80211_rx_bss_add(local, bssid,
Johannes Berg8318d782008-01-24 19:38:38 +01002132 local->hw.conf.channel->center_freq,
John W. Linvillecffdd302007-10-05 14:23:27 -04002133 sdata->u.sta.ssid, sdata->u.sta.ssid_len);
Jiri Bencf0706e82007-05-05 11:45:53 -07002134 if (!bss)
2135 return -ENOMEM;
2136
Johannes Berg8318d782008-01-24 19:38:38 +01002137 bss->band = local->hw.conf.channel->band;
2138 sband = local->hw.wiphy->bands[bss->band];
Jiri Bencf0706e82007-05-05 11:45:53 -07002139
2140 if (local->hw.conf.beacon_int == 0)
Tomas Winklerdc0ae302008-06-12 22:38:37 +03002141 local->hw.conf.beacon_int = 100;
Jiri Bencf0706e82007-05-05 11:45:53 -07002142 bss->beacon_int = local->hw.conf.beacon_int;
Jiri Bencf0706e82007-05-05 11:45:53 -07002143 bss->last_update = jiffies;
2144 bss->capability = WLAN_CAPABILITY_IBSS;
Johannes Berg988c0f72008-04-17 19:21:22 +02002145
2146 if (sdata->default_key)
Jiri Bencf0706e82007-05-05 11:45:53 -07002147 bss->capability |= WLAN_CAPABILITY_PRIVACY;
Johannes Berg988c0f72008-04-17 19:21:22 +02002148 else
Jiri Bencf0706e82007-05-05 11:45:53 -07002149 sdata->drop_unencrypted = 0;
Johannes Berg988c0f72008-04-17 19:21:22 +02002150
Johannes Berg8318d782008-01-24 19:38:38 +01002151 bss->supp_rates_len = sband->n_bitrates;
Jiri Bencf0706e82007-05-05 11:45:53 -07002152 pos = bss->supp_rates;
Johannes Berg8318d782008-01-24 19:38:38 +01002153 for (i = 0; i < sband->n_bitrates; i++) {
2154 int rate = sband->bitrates[i].bitrate;
Jiri Bencf0706e82007-05-05 11:45:53 -07002155 *pos++ = (u8) (rate / 5);
2156 }
2157
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002158 ret = ieee80211_sta_join_ibss(sdata, ifsta, bss);
Johannes Berg3e122be2008-07-09 14:40:34 +02002159 ieee80211_rx_bss_put(local, bss);
Tomas Winkler167ad6f2008-05-21 18:17:05 +03002160 return ret;
Jiri Bencf0706e82007-05-05 11:45:53 -07002161}
2162
2163
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002164static int ieee80211_sta_find_ibss(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07002165 struct ieee80211_if_sta *ifsta)
2166{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002167 struct ieee80211_local *local = sdata->local;
Johannes Bergc2b13452008-09-11 00:01:55 +02002168 struct ieee80211_bss *bss;
Jiri Bencf0706e82007-05-05 11:45:53 -07002169 int found = 0;
2170 u8 bssid[ETH_ALEN];
2171 int active_ibss;
2172
2173 if (ifsta->ssid_len == 0)
2174 return -EINVAL;
2175
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002176 active_ibss = ieee80211_sta_active_ibss(sdata);
Jiri Bencf0706e82007-05-05 11:45:53 -07002177#ifdef CONFIG_MAC80211_IBSS_DEBUG
2178 printk(KERN_DEBUG "%s: sta_find_ibss (active_ibss=%d)\n",
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002179 sdata->dev->name, active_ibss);
Jiri Bencf0706e82007-05-05 11:45:53 -07002180#endif /* CONFIG_MAC80211_IBSS_DEBUG */
Johannes Bergc2b13452008-09-11 00:01:55 +02002181 spin_lock_bh(&local->bss_lock);
2182 list_for_each_entry(bss, &local->bss_list, list) {
Jiri Bencf0706e82007-05-05 11:45:53 -07002183 if (ifsta->ssid_len != bss->ssid_len ||
2184 memcmp(ifsta->ssid, bss->ssid, bss->ssid_len) != 0
2185 || !(bss->capability & WLAN_CAPABILITY_IBSS))
2186 continue;
2187#ifdef CONFIG_MAC80211_IBSS_DEBUG
Johannes Berg0c68ae262008-10-27 15:56:10 -07002188 printk(KERN_DEBUG " bssid=%pM found\n", bss->bssid);
Jiri Bencf0706e82007-05-05 11:45:53 -07002189#endif /* CONFIG_MAC80211_IBSS_DEBUG */
2190 memcpy(bssid, bss->bssid, ETH_ALEN);
2191 found = 1;
2192 if (active_ibss || memcmp(bssid, ifsta->bssid, ETH_ALEN) != 0)
2193 break;
2194 }
Johannes Bergc2b13452008-09-11 00:01:55 +02002195 spin_unlock_bh(&local->bss_lock);
Jiri Bencf0706e82007-05-05 11:45:53 -07002196
2197#ifdef CONFIG_MAC80211_IBSS_DEBUG
Vladimir Koutny6e438292008-07-07 14:23:01 +02002198 if (found)
Johannes Berg0c68ae262008-10-27 15:56:10 -07002199 printk(KERN_DEBUG " sta_find_ibss: selected %pM current "
2200 "%pM\n", bssid, ifsta->bssid);
Jiri Bencf0706e82007-05-05 11:45:53 -07002201#endif /* CONFIG_MAC80211_IBSS_DEBUG */
Daniel Drake80693ce2008-07-19 23:31:17 +01002202
2203 if (found && memcmp(ifsta->bssid, bssid, ETH_ALEN) != 0) {
Tomas Winkler167ad6f2008-05-21 18:17:05 +03002204 int ret;
Daniel Drake80693ce2008-07-19 23:31:17 +01002205 int search_freq;
2206
2207 if (ifsta->flags & IEEE80211_STA_AUTO_CHANNEL_SEL)
2208 search_freq = bss->freq;
2209 else
2210 search_freq = local->hw.conf.channel->center_freq;
2211
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002212 bss = ieee80211_rx_bss_get(local, bssid, search_freq,
Daniel Drake80693ce2008-07-19 23:31:17 +01002213 ifsta->ssid, ifsta->ssid_len);
2214 if (!bss)
2215 goto dont_join;
2216
Johannes Berg0c68ae262008-10-27 15:56:10 -07002217 printk(KERN_DEBUG "%s: Selected IBSS BSSID %pM"
Jiri Bencf0706e82007-05-05 11:45:53 -07002218 " based on configured SSID\n",
Johannes Berg0c68ae262008-10-27 15:56:10 -07002219 sdata->dev->name, bssid);
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002220 ret = ieee80211_sta_join_ibss(sdata, ifsta, bss);
Johannes Berg3e122be2008-07-09 14:40:34 +02002221 ieee80211_rx_bss_put(local, bss);
Tomas Winkler167ad6f2008-05-21 18:17:05 +03002222 return ret;
Jiri Bencf0706e82007-05-05 11:45:53 -07002223 }
Daniel Drake80693ce2008-07-19 23:31:17 +01002224
2225dont_join:
Jiri Bencf0706e82007-05-05 11:45:53 -07002226#ifdef CONFIG_MAC80211_IBSS_DEBUG
2227 printk(KERN_DEBUG " did not try to join ibss\n");
2228#endif /* CONFIG_MAC80211_IBSS_DEBUG */
2229
2230 /* Selected IBSS not found in current scan results - try to scan */
Tomas Winkler48c2fc52008-08-06 14:22:01 +03002231 if (ifsta->state == IEEE80211_STA_MLME_IBSS_JOINED &&
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002232 !ieee80211_sta_active_ibss(sdata)) {
Jiri Bencf0706e82007-05-05 11:45:53 -07002233 mod_timer(&ifsta->timer, jiffies +
2234 IEEE80211_IBSS_MERGE_INTERVAL);
2235 } else if (time_after(jiffies, local->last_scan_completed +
2236 IEEE80211_SCAN_INTERVAL)) {
2237 printk(KERN_DEBUG "%s: Trigger new scan to find an IBSS to "
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002238 "join\n", sdata->dev->name);
Johannes Bergc2b13452008-09-11 00:01:55 +02002239 return ieee80211_request_scan(sdata, ifsta->ssid,
Jiri Bencf0706e82007-05-05 11:45:53 -07002240 ifsta->ssid_len);
Tomas Winkler48c2fc52008-08-06 14:22:01 +03002241 } else if (ifsta->state != IEEE80211_STA_MLME_IBSS_JOINED) {
Jiri Bencf0706e82007-05-05 11:45:53 -07002242 int interval = IEEE80211_SCAN_INTERVAL;
2243
2244 if (time_after(jiffies, ifsta->ibss_join_req +
2245 IEEE80211_IBSS_JOIN_TIMEOUT)) {
Jiri Slabyd6f2da52007-08-28 17:01:54 -04002246 if ((ifsta->flags & IEEE80211_STA_CREATE_IBSS) &&
Johannes Berg8318d782008-01-24 19:38:38 +01002247 (!(local->oper_channel->flags &
2248 IEEE80211_CHAN_NO_IBSS)))
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002249 return ieee80211_sta_create_ibss(sdata, ifsta);
Jiri Slabyd6f2da52007-08-28 17:01:54 -04002250 if (ifsta->flags & IEEE80211_STA_CREATE_IBSS) {
Johannes Berg8318d782008-01-24 19:38:38 +01002251 printk(KERN_DEBUG "%s: IBSS not allowed on"
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002252 " %d MHz\n", sdata->dev->name,
Johannes Berg8318d782008-01-24 19:38:38 +01002253 local->hw.conf.channel->center_freq);
Jiri Bencf0706e82007-05-05 11:45:53 -07002254 }
2255
2256 /* No IBSS found - decrease scan interval and continue
2257 * scanning. */
2258 interval = IEEE80211_SCAN_INTERVAL_SLOW;
2259 }
2260
Tomas Winkler48c2fc52008-08-06 14:22:01 +03002261 ifsta->state = IEEE80211_STA_MLME_IBSS_SEARCH;
Jiri Bencf0706e82007-05-05 11:45:53 -07002262 mod_timer(&ifsta->timer, jiffies + interval);
2263 return 0;
2264 }
2265
2266 return 0;
2267}
2268
2269
Johannes Berg60f8b392008-09-08 17:44:22 +02002270static int ieee80211_sta_config_auth(struct ieee80211_sub_if_data *sdata,
2271 struct ieee80211_if_sta *ifsta)
2272{
2273 struct ieee80211_local *local = sdata->local;
Johannes Bergc2b13452008-09-11 00:01:55 +02002274 struct ieee80211_bss *bss, *selected = NULL;
Johannes Berg60f8b392008-09-08 17:44:22 +02002275 int top_rssi = 0, freq;
2276
Johannes Bergc2b13452008-09-11 00:01:55 +02002277 spin_lock_bh(&local->bss_lock);
Johannes Berg60f8b392008-09-08 17:44:22 +02002278 freq = local->oper_channel->center_freq;
Johannes Bergc2b13452008-09-11 00:01:55 +02002279 list_for_each_entry(bss, &local->bss_list, list) {
Johannes Berg60f8b392008-09-08 17:44:22 +02002280 if (!(bss->capability & WLAN_CAPABILITY_ESS))
2281 continue;
2282
2283 if ((ifsta->flags & (IEEE80211_STA_AUTO_SSID_SEL |
2284 IEEE80211_STA_AUTO_BSSID_SEL |
2285 IEEE80211_STA_AUTO_CHANNEL_SEL)) &&
2286 (!!(bss->capability & WLAN_CAPABILITY_PRIVACY) ^
2287 !!sdata->default_key))
2288 continue;
2289
2290 if (!(ifsta->flags & IEEE80211_STA_AUTO_CHANNEL_SEL) &&
2291 bss->freq != freq)
2292 continue;
2293
2294 if (!(ifsta->flags & IEEE80211_STA_AUTO_BSSID_SEL) &&
2295 memcmp(bss->bssid, ifsta->bssid, ETH_ALEN))
2296 continue;
2297
2298 if (!(ifsta->flags & IEEE80211_STA_AUTO_SSID_SEL) &&
2299 !ieee80211_sta_match_ssid(ifsta, bss->ssid, bss->ssid_len))
2300 continue;
2301
2302 if (!selected || top_rssi < bss->signal) {
2303 selected = bss;
2304 top_rssi = bss->signal;
2305 }
2306 }
2307 if (selected)
2308 atomic_inc(&selected->users);
Johannes Bergc2b13452008-09-11 00:01:55 +02002309 spin_unlock_bh(&local->bss_lock);
Johannes Berg60f8b392008-09-08 17:44:22 +02002310
2311 if (selected) {
2312 ieee80211_set_freq(sdata, selected->freq);
2313 if (!(ifsta->flags & IEEE80211_STA_SSID_SET))
2314 ieee80211_sta_set_ssid(sdata, selected->ssid,
2315 selected->ssid_len);
2316 ieee80211_sta_set_bssid(sdata, selected->bssid);
Johannes Bergb079ada2008-09-09 09:32:59 +02002317 ieee80211_sta_def_wmm_params(sdata, selected);
Johannes Berg60f8b392008-09-08 17:44:22 +02002318
2319 /* Send out direct probe if no probe resp was received or
2320 * the one we have is outdated
2321 */
2322 if (!selected->last_probe_resp ||
2323 time_after(jiffies, selected->last_probe_resp
2324 + IEEE80211_SCAN_RESULT_EXPIRE))
2325 ifsta->state = IEEE80211_STA_MLME_DIRECT_PROBE;
2326 else
2327 ifsta->state = IEEE80211_STA_MLME_AUTHENTICATE;
2328
2329 ieee80211_rx_bss_put(local, selected);
2330 ieee80211_sta_reset_auth(sdata, ifsta);
2331 return 0;
2332 } else {
2333 if (ifsta->assoc_scan_tries < IEEE80211_ASSOC_SCANS_MAX_TRIES) {
2334 ifsta->assoc_scan_tries++;
2335 if (ifsta->flags & IEEE80211_STA_AUTO_SSID_SEL)
Johannes Bergc2b13452008-09-11 00:01:55 +02002336 ieee80211_start_scan(sdata, NULL, 0);
Johannes Berg60f8b392008-09-08 17:44:22 +02002337 else
Johannes Bergc2b13452008-09-11 00:01:55 +02002338 ieee80211_start_scan(sdata, ifsta->ssid,
Johannes Berg60f8b392008-09-08 17:44:22 +02002339 ifsta->ssid_len);
2340 ifsta->state = IEEE80211_STA_MLME_AUTHENTICATE;
2341 set_bit(IEEE80211_STA_REQ_AUTH, &ifsta->request);
2342 } else
2343 ifsta->state = IEEE80211_STA_MLME_DISABLED;
2344 }
2345 return -1;
2346}
2347
2348
Johannes Berg9c6bd792008-09-11 00:01:52 +02002349static void ieee80211_sta_work(struct work_struct *work)
Johannes Berg60f8b392008-09-08 17:44:22 +02002350{
2351 struct ieee80211_sub_if_data *sdata =
2352 container_of(work, struct ieee80211_sub_if_data, u.sta.work);
2353 struct ieee80211_local *local = sdata->local;
2354 struct ieee80211_if_sta *ifsta;
2355 struct sk_buff *skb;
2356
2357 if (!netif_running(sdata->dev))
2358 return;
2359
Johannes Bergc2b13452008-09-11 00:01:55 +02002360 if (local->sw_scanning || local->hw_scanning)
Johannes Berg60f8b392008-09-08 17:44:22 +02002361 return;
2362
Johannes Berg05c914f2008-09-11 00:01:58 +02002363 if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION &&
2364 sdata->vif.type != NL80211_IFTYPE_ADHOC))
Johannes Berg60f8b392008-09-08 17:44:22 +02002365 return;
2366 ifsta = &sdata->u.sta;
2367
2368 while ((skb = skb_dequeue(&ifsta->skb_queue)))
2369 ieee80211_sta_rx_queued_mgmt(sdata, skb);
2370
Johannes Berg60f8b392008-09-08 17:44:22 +02002371 if (ifsta->state != IEEE80211_STA_MLME_DIRECT_PROBE &&
2372 ifsta->state != IEEE80211_STA_MLME_AUTHENTICATE &&
2373 ifsta->state != IEEE80211_STA_MLME_ASSOCIATE &&
2374 test_and_clear_bit(IEEE80211_STA_REQ_SCAN, &ifsta->request)) {
Johannes Bergc2b13452008-09-11 00:01:55 +02002375 ieee80211_start_scan(sdata, ifsta->scan_ssid,
2376 ifsta->scan_ssid_len);
Johannes Berg60f8b392008-09-08 17:44:22 +02002377 return;
2378 }
2379
2380 if (test_and_clear_bit(IEEE80211_STA_REQ_AUTH, &ifsta->request)) {
2381 if (ieee80211_sta_config_auth(sdata, ifsta))
2382 return;
2383 clear_bit(IEEE80211_STA_REQ_RUN, &ifsta->request);
2384 } else if (!test_and_clear_bit(IEEE80211_STA_REQ_RUN, &ifsta->request))
2385 return;
2386
2387 switch (ifsta->state) {
2388 case IEEE80211_STA_MLME_DISABLED:
2389 break;
2390 case IEEE80211_STA_MLME_DIRECT_PROBE:
2391 ieee80211_direct_probe(sdata, ifsta);
2392 break;
2393 case IEEE80211_STA_MLME_AUTHENTICATE:
2394 ieee80211_authenticate(sdata, ifsta);
2395 break;
2396 case IEEE80211_STA_MLME_ASSOCIATE:
2397 ieee80211_associate(sdata, ifsta);
2398 break;
2399 case IEEE80211_STA_MLME_ASSOCIATED:
2400 ieee80211_associated(sdata, ifsta);
2401 break;
2402 case IEEE80211_STA_MLME_IBSS_SEARCH:
2403 ieee80211_sta_find_ibss(sdata, ifsta);
2404 break;
2405 case IEEE80211_STA_MLME_IBSS_JOINED:
2406 ieee80211_sta_merge_ibss(sdata, ifsta);
2407 break;
Johannes Berg60f8b392008-09-08 17:44:22 +02002408 default:
2409 WARN_ON(1);
2410 break;
2411 }
2412
2413 if (ieee80211_privacy_mismatch(sdata, ifsta)) {
2414 printk(KERN_DEBUG "%s: privacy configuration mismatch and "
2415 "mixed-cell disabled - disassociate\n", sdata->dev->name);
2416
2417 ieee80211_set_disassoc(sdata, ifsta, false, true,
2418 WLAN_REASON_UNSPECIFIED);
2419 }
2420}
Johannes Berg0a51b272008-09-08 17:44:25 +02002421
Johannes Berga1678f82008-09-11 00:01:47 +02002422static void ieee80211_restart_sta_timer(struct ieee80211_sub_if_data *sdata)
2423{
Johannes Berg05c914f2008-09-11 00:01:58 +02002424 if (sdata->vif.type == NL80211_IFTYPE_STATION)
Johannes Berg7c950692008-09-11 00:01:48 +02002425 queue_work(sdata->local->hw.workqueue,
2426 &sdata->u.sta.work);
Johannes Berga1678f82008-09-11 00:01:47 +02002427}
2428
Johannes Berg9c6bd792008-09-11 00:01:52 +02002429/* interface setup */
2430void ieee80211_sta_setup_sdata(struct ieee80211_sub_if_data *sdata)
2431{
2432 struct ieee80211_if_sta *ifsta;
2433
2434 ifsta = &sdata->u.sta;
2435 INIT_WORK(&ifsta->work, ieee80211_sta_work);
Sujithc481ec92009-01-06 09:28:37 +05302436 INIT_WORK(&ifsta->chswitch_work, ieee80211_chswitch_work);
Johannes Berg9c6bd792008-09-11 00:01:52 +02002437 setup_timer(&ifsta->timer, ieee80211_sta_timer,
2438 (unsigned long) sdata);
Sujithc481ec92009-01-06 09:28:37 +05302439 setup_timer(&ifsta->chswitch_timer, ieee80211_chswitch_timer,
2440 (unsigned long) sdata);
Johannes Berg9c6bd792008-09-11 00:01:52 +02002441 skb_queue_head_init(&ifsta->skb_queue);
2442
2443 ifsta->capab = WLAN_CAPABILITY_ESS;
2444 ifsta->auth_algs = IEEE80211_AUTH_ALG_OPEN |
2445 IEEE80211_AUTH_ALG_SHARED_KEY;
2446 ifsta->flags |= IEEE80211_STA_CREATE_IBSS |
2447 IEEE80211_STA_AUTO_BSSID_SEL |
2448 IEEE80211_STA_AUTO_CHANNEL_SEL;
2449 if (ieee80211_num_regular_queues(&sdata->local->hw) >= 4)
2450 ifsta->flags |= IEEE80211_STA_WMM_ENABLED;
2451}
2452
2453/*
2454 * Add a new IBSS station, will also be called by the RX code when,
2455 * in IBSS mode, receiving a frame from a yet-unknown station, hence
2456 * must be callable in atomic context.
2457 */
2458struct sta_info *ieee80211_ibss_add_sta(struct ieee80211_sub_if_data *sdata,
Rami Rosenab1f5c02008-12-11 14:00:25 +02002459 u8 *bssid,u8 *addr, u64 supp_rates)
Johannes Berg9c6bd792008-09-11 00:01:52 +02002460{
2461 struct ieee80211_local *local = sdata->local;
2462 struct sta_info *sta;
Johannes Berg9c6bd792008-09-11 00:01:52 +02002463 int band = local->hw.conf.channel->band;
2464
2465 /* TODO: Could consider removing the least recently used entry and
2466 * allow new one to be added. */
2467 if (local->num_sta >= IEEE80211_IBSS_MAX_STA_ENTRIES) {
2468 if (net_ratelimit()) {
2469 printk(KERN_DEBUG "%s: No room for a new IBSS STA "
Johannes Berg0c68ae262008-10-27 15:56:10 -07002470 "entry %pM\n", sdata->dev->name, addr);
Johannes Berg9c6bd792008-09-11 00:01:52 +02002471 }
2472 return NULL;
2473 }
2474
2475 if (compare_ether_addr(bssid, sdata->u.sta.bssid))
2476 return NULL;
2477
2478#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Johannes Berg0c68ae262008-10-27 15:56:10 -07002479 printk(KERN_DEBUG "%s: Adding new IBSS station %pM (dev=%s)\n",
2480 wiphy_name(local->hw.wiphy), addr, sdata->dev->name);
Johannes Berg9c6bd792008-09-11 00:01:52 +02002481#endif
2482
2483 sta = sta_info_alloc(sdata, addr, GFP_ATOMIC);
2484 if (!sta)
2485 return NULL;
2486
2487 set_sta_flags(sta, WLAN_STA_AUTHORIZED);
2488
2489 /* make sure mandatory rates are always added */
Johannes Berg323ce792008-09-11 02:45:11 +02002490 sta->sta.supp_rates[band] = supp_rates |
Johannes Berg96dd22a2008-09-11 00:01:57 +02002491 ieee80211_mandatory_rates(local, band);
Johannes Berg9c6bd792008-09-11 00:01:52 +02002492
Johannes Berg4b7679a2008-09-18 18:14:18 +02002493 rate_control_rate_init(sta);
Johannes Berg9c6bd792008-09-11 00:01:52 +02002494
2495 if (sta_info_insert(sta))
2496 return NULL;
2497
2498 return sta;
2499}
2500
2501/* configuration hooks */
2502void ieee80211_sta_req_auth(struct ieee80211_sub_if_data *sdata,
2503 struct ieee80211_if_sta *ifsta)
2504{
2505 struct ieee80211_local *local = sdata->local;
2506
Johannes Berg05c914f2008-09-11 00:01:58 +02002507 if (sdata->vif.type != NL80211_IFTYPE_STATION)
Johannes Berg9c6bd792008-09-11 00:01:52 +02002508 return;
2509
2510 if ((ifsta->flags & (IEEE80211_STA_BSSID_SET |
2511 IEEE80211_STA_AUTO_BSSID_SEL)) &&
2512 (ifsta->flags & (IEEE80211_STA_SSID_SET |
2513 IEEE80211_STA_AUTO_SSID_SEL))) {
2514
2515 if (ifsta->state == IEEE80211_STA_MLME_ASSOCIATED)
2516 ieee80211_set_disassoc(sdata, ifsta, true, true,
2517 WLAN_REASON_DEAUTH_LEAVING);
2518
2519 set_bit(IEEE80211_STA_REQ_AUTH, &ifsta->request);
2520 queue_work(local->hw.workqueue, &ifsta->work);
2521 }
2522}
2523
2524int ieee80211_sta_set_ssid(struct ieee80211_sub_if_data *sdata, char *ssid, size_t len)
2525{
2526 struct ieee80211_if_sta *ifsta;
Johannes Berg9c6bd792008-09-11 00:01:52 +02002527
2528 if (len > IEEE80211_MAX_SSID_LEN)
2529 return -EINVAL;
2530
2531 ifsta = &sdata->u.sta;
2532
2533 if (ifsta->ssid_len != len || memcmp(ifsta->ssid, ssid, len) != 0) {
2534 memset(ifsta->ssid, 0, sizeof(ifsta->ssid));
2535 memcpy(ifsta->ssid, ssid, len);
2536 ifsta->ssid_len = len;
2537 ifsta->flags &= ~IEEE80211_STA_PREV_BSSID_SET;
Johannes Berg9c6bd792008-09-11 00:01:52 +02002538 }
2539
2540 if (len)
2541 ifsta->flags |= IEEE80211_STA_SSID_SET;
2542 else
2543 ifsta->flags &= ~IEEE80211_STA_SSID_SET;
2544
Johannes Berg05c914f2008-09-11 00:01:58 +02002545 if (sdata->vif.type == NL80211_IFTYPE_ADHOC &&
Johannes Berg9c6bd792008-09-11 00:01:52 +02002546 !(ifsta->flags & IEEE80211_STA_BSSID_SET)) {
2547 ifsta->ibss_join_req = jiffies;
2548 ifsta->state = IEEE80211_STA_MLME_IBSS_SEARCH;
2549 return ieee80211_sta_find_ibss(sdata, ifsta);
2550 }
2551
2552 return 0;
2553}
2554
2555int ieee80211_sta_get_ssid(struct ieee80211_sub_if_data *sdata, char *ssid, size_t *len)
2556{
2557 struct ieee80211_if_sta *ifsta = &sdata->u.sta;
2558 memcpy(ssid, ifsta->ssid, ifsta->ssid_len);
2559 *len = ifsta->ssid_len;
2560 return 0;
2561}
2562
2563int ieee80211_sta_set_bssid(struct ieee80211_sub_if_data *sdata, u8 *bssid)
2564{
2565 struct ieee80211_if_sta *ifsta;
2566 int res;
Alina Friedrichsen0efcdfd2009-01-06 02:41:35 +01002567 bool valid;
Johannes Berg9c6bd792008-09-11 00:01:52 +02002568
2569 ifsta = &sdata->u.sta;
Alina Friedrichsen0efcdfd2009-01-06 02:41:35 +01002570 valid = is_valid_ether_addr(bssid);
Johannes Berg9c6bd792008-09-11 00:01:52 +02002571
2572 if (memcmp(ifsta->bssid, bssid, ETH_ALEN) != 0) {
Alina Friedrichsen0efcdfd2009-01-06 02:41:35 +01002573 if(valid)
2574 memcpy(ifsta->bssid, bssid, ETH_ALEN);
2575 else
2576 memset(ifsta->bssid, 0, ETH_ALEN);
Johannes Berg9c6bd792008-09-11 00:01:52 +02002577 res = 0;
2578 /*
2579 * Hack! See also ieee80211_sta_set_ssid.
2580 */
2581 if (netif_running(sdata->dev))
2582 res = ieee80211_if_config(sdata, IEEE80211_IFCC_BSSID);
2583 if (res) {
2584 printk(KERN_DEBUG "%s: Failed to config new BSSID to "
2585 "the low-level driver\n", sdata->dev->name);
2586 return res;
2587 }
2588 }
2589
Alina Friedrichsen0efcdfd2009-01-06 02:41:35 +01002590 if (valid)
Johannes Berg9c6bd792008-09-11 00:01:52 +02002591 ifsta->flags |= IEEE80211_STA_BSSID_SET;
2592 else
2593 ifsta->flags &= ~IEEE80211_STA_BSSID_SET;
2594
2595 return 0;
2596}
2597
2598int ieee80211_sta_set_extra_ie(struct ieee80211_sub_if_data *sdata, char *ie, size_t len)
2599{
2600 struct ieee80211_if_sta *ifsta = &sdata->u.sta;
2601
2602 kfree(ifsta->extra_ie);
2603 if (len == 0) {
2604 ifsta->extra_ie = NULL;
2605 ifsta->extra_ie_len = 0;
2606 return 0;
2607 }
2608 ifsta->extra_ie = kmalloc(len, GFP_KERNEL);
2609 if (!ifsta->extra_ie) {
2610 ifsta->extra_ie_len = 0;
2611 return -ENOMEM;
2612 }
2613 memcpy(ifsta->extra_ie, ie, len);
2614 ifsta->extra_ie_len = len;
2615 return 0;
2616}
2617
2618int ieee80211_sta_deauthenticate(struct ieee80211_sub_if_data *sdata, u16 reason)
2619{
2620 struct ieee80211_if_sta *ifsta = &sdata->u.sta;
2621
2622 printk(KERN_DEBUG "%s: deauthenticating by local choice (reason=%d)\n",
2623 sdata->dev->name, reason);
2624
Johannes Berg05c914f2008-09-11 00:01:58 +02002625 if (sdata->vif.type != NL80211_IFTYPE_STATION &&
2626 sdata->vif.type != NL80211_IFTYPE_ADHOC)
Johannes Berg9c6bd792008-09-11 00:01:52 +02002627 return -EINVAL;
2628
2629 ieee80211_set_disassoc(sdata, ifsta, true, true, reason);
2630 return 0;
2631}
2632
2633int ieee80211_sta_disassociate(struct ieee80211_sub_if_data *sdata, u16 reason)
2634{
2635 struct ieee80211_if_sta *ifsta = &sdata->u.sta;
2636
2637 printk(KERN_DEBUG "%s: disassociating by local choice (reason=%d)\n",
2638 sdata->dev->name, reason);
2639
Johannes Berg05c914f2008-09-11 00:01:58 +02002640 if (sdata->vif.type != NL80211_IFTYPE_STATION)
Johannes Berg9c6bd792008-09-11 00:01:52 +02002641 return -EINVAL;
2642
2643 if (!(ifsta->flags & IEEE80211_STA_ASSOCIATED))
2644 return -1;
2645
2646 ieee80211_set_disassoc(sdata, ifsta, false, true, reason);
2647 return 0;
2648}
2649
2650/* scan finished notification */
Johannes Berg0a51b272008-09-08 17:44:25 +02002651void ieee80211_mlme_notify_scan_completed(struct ieee80211_local *local)
2652{
2653 struct ieee80211_sub_if_data *sdata = local->scan_sdata;
2654 struct ieee80211_if_sta *ifsta;
2655
Johannes Berg05c914f2008-09-11 00:01:58 +02002656 if (sdata && sdata->vif.type == NL80211_IFTYPE_ADHOC) {
Johannes Berg0a51b272008-09-08 17:44:25 +02002657 ifsta = &sdata->u.sta;
2658 if (!(ifsta->flags & IEEE80211_STA_BSSID_SET) ||
2659 (!(ifsta->state == IEEE80211_STA_MLME_IBSS_JOINED) &&
2660 !ieee80211_sta_active_ibss(sdata)))
2661 ieee80211_sta_find_ibss(sdata, ifsta);
2662 }
Johannes Berga1678f82008-09-11 00:01:47 +02002663
2664 /* Restart STA timers */
2665 rcu_read_lock();
2666 list_for_each_entry_rcu(sdata, &local->interfaces, list)
2667 ieee80211_restart_sta_timer(sdata);
2668 rcu_read_unlock();
Johannes Berg0a51b272008-09-08 17:44:25 +02002669}
Kalle Valo520eb822008-12-18 23:35:27 +02002670
2671void ieee80211_dynamic_ps_disable_work(struct work_struct *work)
2672{
2673 struct ieee80211_local *local =
2674 container_of(work, struct ieee80211_local,
2675 dynamic_ps_disable_work);
2676
2677 if (local->hw.conf.flags & IEEE80211_CONF_PS) {
2678 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
2679 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
2680 }
2681
2682 ieee80211_wake_queues_by_reason(&local->hw,
2683 IEEE80211_QUEUE_STOP_REASON_PS);
2684}
2685
2686void ieee80211_dynamic_ps_enable_work(struct work_struct *work)
2687{
2688 struct ieee80211_local *local =
2689 container_of(work, struct ieee80211_local,
2690 dynamic_ps_enable_work);
Vivek Natarajana97b77b2008-12-23 18:39:02 -08002691 struct ieee80211_sub_if_data *sdata = local->scan_sdata;
Kalle Valo520eb822008-12-18 23:35:27 +02002692
2693 if (local->hw.conf.flags & IEEE80211_CONF_PS)
2694 return;
2695
Vivek Natarajana97b77b2008-12-23 18:39:02 -08002696 ieee80211_send_nullfunc(local, sdata, 1);
Kalle Valo520eb822008-12-18 23:35:27 +02002697 local->hw.conf.flags |= IEEE80211_CONF_PS;
2698
2699 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
2700}
2701
2702void ieee80211_dynamic_ps_timer(unsigned long data)
2703{
2704 struct ieee80211_local *local = (void *) data;
2705
2706 queue_work(local->hw.workqueue, &local->dynamic_ps_enable_work);
2707}