blob: 82c598a83687cb8f241fbb875dff27294b2a536c [file] [log] [blame]
Jiri Bencf0706e82007-05-05 11:45:53 -07001/*
2 * BSS client mode implementation
Jouni Malinen5394af42009-01-08 13:31:59 +02003 * Copyright 2003-2008, Jouni Malinen <j@w1.fi>
Jiri Bencf0706e82007-05-05 11:45:53 -07004 * 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
Jouni Malinen5394af42009-01-08 13:31:59 +0200475 ieee80211_tx_skb(sdata, skb, ifsta->flags & IEEE80211_STA_MFP_ENABLED);
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
Johannes Berg4be8c382009-01-07 18:28:20 +0100778 if (local->powersave) {
779 if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS) &&
780 local->hw.conf.dynamic_ps_timeout > 0) {
Kalle Valo520eb822008-12-18 23:35:27 +0200781 mod_timer(&local->dynamic_ps_timer, jiffies +
Johannes Berg46f2c4b2009-01-06 18:13:18 +0100782 msecs_to_jiffies(
783 local->hw.conf.dynamic_ps_timeout));
Johannes Berg4be8c382009-01-07 18:28:20 +0100784 } else {
785 if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)
786 ieee80211_send_nullfunc(local, sdata, 1);
Kalle Valo520eb822008-12-18 23:35:27 +0200787 conf->flags |= IEEE80211_CONF_PS;
Johannes Berg4be8c382009-01-07 18:28:20 +0100788 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
Kalle Valo520eb822008-12-18 23:35:27 +0200789 }
Kalle Valoe0cb6862008-12-18 23:35:13 +0200790 }
791
Tomas Winkler24e64622008-09-08 17:33:40 +0200792 netif_tx_start_all_queues(sdata->dev);
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200793 netif_carrier_on(sdata->dev);
Guy Cohen8db93692008-07-03 19:56:13 +0300794
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200795 ieee80211_sta_send_apinfo(sdata, ifsta);
Jiri Bencf0706e82007-05-05 11:45:53 -0700796}
797
Ron Rindjunsky9859b812008-08-09 03:02:19 +0300798static void ieee80211_direct_probe(struct ieee80211_sub_if_data *sdata,
799 struct ieee80211_if_sta *ifsta)
800{
Ron Rindjunsky9859b812008-08-09 03:02:19 +0300801 ifsta->direct_probe_tries++;
802 if (ifsta->direct_probe_tries > IEEE80211_AUTH_MAX_TRIES) {
Johannes Berg0c68ae262008-10-27 15:56:10 -0700803 printk(KERN_DEBUG "%s: direct probe to AP %pM timed out\n",
804 sdata->dev->name, ifsta->bssid);
Ron Rindjunsky9859b812008-08-09 03:02:19 +0300805 ifsta->state = IEEE80211_STA_MLME_DISABLED;
Johannes Berg4a68ec52008-10-16 21:44:44 +0200806 ieee80211_sta_send_apinfo(sdata, ifsta);
Ron Rindjunsky9859b812008-08-09 03:02:19 +0300807 return;
808 }
809
Johannes Berg0c68ae262008-10-27 15:56:10 -0700810 printk(KERN_DEBUG "%s: direct probe to AP %pM try %d\n",
811 sdata->dev->name, ifsta->bssid,
Ron Rindjunsky9859b812008-08-09 03:02:19 +0300812 ifsta->direct_probe_tries);
813
814 ifsta->state = IEEE80211_STA_MLME_DIRECT_PROBE;
815
816 set_bit(IEEE80211_STA_REQ_DIRECT_PROBE, &ifsta->request);
817
818 /* Direct probe is sent to broadcast address as some APs
819 * will not answer to direct packet in unassociated state.
820 */
821 ieee80211_send_probe_req(sdata, NULL,
822 ifsta->ssid, ifsta->ssid_len);
823
824 mod_timer(&ifsta->timer, jiffies + IEEE80211_AUTH_TIMEOUT);
825}
826
Jiri Bencf0706e82007-05-05 11:45:53 -0700827
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200828static void ieee80211_authenticate(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -0700829 struct ieee80211_if_sta *ifsta)
830{
831 ifsta->auth_tries++;
832 if (ifsta->auth_tries > IEEE80211_AUTH_MAX_TRIES) {
Johannes Berg0c68ae262008-10-27 15:56:10 -0700833 printk(KERN_DEBUG "%s: authentication with AP %pM"
Jiri Bencf0706e82007-05-05 11:45:53 -0700834 " timed out\n",
Johannes Berg0c68ae262008-10-27 15:56:10 -0700835 sdata->dev->name, ifsta->bssid);
Tomas Winkler48c2fc52008-08-06 14:22:01 +0300836 ifsta->state = IEEE80211_STA_MLME_DISABLED;
Johannes Berg4a68ec52008-10-16 21:44:44 +0200837 ieee80211_sta_send_apinfo(sdata, ifsta);
Jiri Bencf0706e82007-05-05 11:45:53 -0700838 return;
839 }
840
Tomas Winkler48c2fc52008-08-06 14:22:01 +0300841 ifsta->state = IEEE80211_STA_MLME_AUTHENTICATE;
Johannes Berg0c68ae262008-10-27 15:56:10 -0700842 printk(KERN_DEBUG "%s: authenticate with AP %pM\n",
843 sdata->dev->name, ifsta->bssid);
Jiri Bencf0706e82007-05-05 11:45:53 -0700844
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200845 ieee80211_send_auth(sdata, ifsta, 1, NULL, 0, 0);
Jiri Bencf0706e82007-05-05 11:45:53 -0700846
847 mod_timer(&ifsta->timer, jiffies + IEEE80211_AUTH_TIMEOUT);
848}
849
Vivek Natarajan5925d972008-11-21 22:19:50 -0800850/*
851 * The disassoc 'reason' argument can be either our own reason
852 * if self disconnected or a reason code from the AP.
853 */
Tomas Winkleraa458d12008-09-09 00:32:12 +0300854static void ieee80211_set_disassoc(struct ieee80211_sub_if_data *sdata,
855 struct ieee80211_if_sta *ifsta, bool deauth,
856 bool self_disconnected, u16 reason)
857{
858 struct ieee80211_local *local = sdata->local;
859 struct sta_info *sta;
Kalle Valoe0cb6862008-12-18 23:35:13 +0200860 u32 changed = 0, config_changed = 0;
Tomas Winkleraa458d12008-09-09 00:32:12 +0300861
862 rcu_read_lock();
863
864 sta = sta_info_get(local, ifsta->bssid);
865 if (!sta) {
866 rcu_read_unlock();
867 return;
868 }
869
870 if (deauth) {
871 ifsta->direct_probe_tries = 0;
872 ifsta->auth_tries = 0;
873 }
874 ifsta->assoc_scan_tries = 0;
875 ifsta->assoc_tries = 0;
876
Tomas Winkler24e64622008-09-08 17:33:40 +0200877 netif_tx_stop_all_queues(sdata->dev);
Tomas Winkleraa458d12008-09-09 00:32:12 +0300878 netif_carrier_off(sdata->dev);
879
Johannes Berg17741cd2008-09-11 00:02:02 +0200880 ieee80211_sta_tear_down_BA_sessions(sdata, sta->sta.addr);
Tomas Winkleraa458d12008-09-09 00:32:12 +0300881
882 if (self_disconnected) {
883 if (deauth)
Johannes Bergef422bc2008-09-09 10:58:25 +0200884 ieee80211_send_deauth_disassoc(sdata,
885 IEEE80211_STYPE_DEAUTH, reason);
Tomas Winkleraa458d12008-09-09 00:32:12 +0300886 else
Johannes Bergef422bc2008-09-09 10:58:25 +0200887 ieee80211_send_deauth_disassoc(sdata,
888 IEEE80211_STYPE_DISASSOC, reason);
Tomas Winkleraa458d12008-09-09 00:32:12 +0300889 }
890
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200891 ifsta->flags &= ~IEEE80211_STA_ASSOCIATED;
892 changed |= ieee80211_reset_erp_info(sdata);
893
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200894 ieee80211_led_assoc(local, 0);
Johannes Bergae5eb022008-10-14 16:58:37 +0200895 changed |= BSS_CHANGED_ASSOC;
896 sdata->vif.bss_conf.assoc = false;
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200897
898 ieee80211_sta_send_apinfo(sdata, ifsta);
Tomas Winkleraa458d12008-09-09 00:32:12 +0300899
Vivek Natarajan5925d972008-11-21 22:19:50 -0800900 if (self_disconnected || reason == WLAN_REASON_DISASSOC_STA_HAS_LEFT)
Tomas Winkleraa458d12008-09-09 00:32:12 +0300901 ifsta->state = IEEE80211_STA_MLME_DISABLED;
902
Tomas Winkleraa458d12008-09-09 00:32:12 +0300903 rcu_read_unlock();
904
Johannes Berg47979382009-01-07 10:13:27 +0100905 /* channel(_type) changes are handled by ieee80211_hw_config */
Sujith094d05d2008-12-12 11:57:43 +0530906 local->oper_channel_type = NL80211_CHAN_NO_HT;
Johannes Bergae5eb022008-10-14 16:58:37 +0200907
Kalle Valo520eb822008-12-18 23:35:27 +0200908 del_timer_sync(&local->dynamic_ps_timer);
909 cancel_work_sync(&local->dynamic_ps_enable_work);
910
Kalle Valoe0cb6862008-12-18 23:35:13 +0200911 if (local->hw.conf.flags & IEEE80211_CONF_PS) {
912 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
913 config_changed |= IEEE80211_CONF_CHANGE_PS;
914 }
915
916 ieee80211_hw_config(local, config_changed);
Johannes Bergae5eb022008-10-14 16:58:37 +0200917 ieee80211_bss_info_change_notify(sdata, changed);
Tomas Winkler8e268e42008-11-25 13:05:44 +0200918
919 rcu_read_lock();
920
921 sta = sta_info_get(local, ifsta->bssid);
922 if (!sta) {
923 rcu_read_unlock();
924 return;
925 }
926
927 sta_info_unlink(&sta);
928
929 rcu_read_unlock();
930
931 sta_info_destroy(sta);
Tomas Winkleraa458d12008-09-09 00:32:12 +0300932}
Jiri Bencf0706e82007-05-05 11:45:53 -0700933
Johannes Berg9ac19a92008-09-09 10:57:09 +0200934static int ieee80211_sta_wep_configured(struct ieee80211_sub_if_data *sdata)
935{
936 if (!sdata || !sdata->default_key ||
937 sdata->default_key->conf.alg != ALG_WEP)
938 return 0;
939 return 1;
940}
941
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200942static int ieee80211_privacy_mismatch(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -0700943 struct ieee80211_if_sta *ifsta)
944{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200945 struct ieee80211_local *local = sdata->local;
Johannes Bergc2b13452008-09-11 00:01:55 +0200946 struct ieee80211_bss *bss;
Johannes Berg5b98b1f2007-11-03 13:11:10 +0000947 int bss_privacy;
948 int wep_privacy;
949 int privacy_invoked;
Jiri Bencf0706e82007-05-05 11:45:53 -0700950
Johannes Berg5b98b1f2007-11-03 13:11:10 +0000951 if (!ifsta || (ifsta->flags & IEEE80211_STA_MIXED_CELL))
Jiri Bencf0706e82007-05-05 11:45:53 -0700952 return 0;
953
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200954 bss = ieee80211_rx_bss_get(local, ifsta->bssid,
Johannes Berg8318d782008-01-24 19:38:38 +0100955 local->hw.conf.channel->center_freq,
John W. Linvillecffdd302007-10-05 14:23:27 -0400956 ifsta->ssid, ifsta->ssid_len);
Jiri Bencf0706e82007-05-05 11:45:53 -0700957 if (!bss)
958 return 0;
959
Johannes Berg5b98b1f2007-11-03 13:11:10 +0000960 bss_privacy = !!(bss->capability & WLAN_CAPABILITY_PRIVACY);
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200961 wep_privacy = !!ieee80211_sta_wep_configured(sdata);
Johannes Berg5b98b1f2007-11-03 13:11:10 +0000962 privacy_invoked = !!(ifsta->flags & IEEE80211_STA_PRIVACY_INVOKED);
Jiri Bencf0706e82007-05-05 11:45:53 -0700963
Johannes Berg3e122be2008-07-09 14:40:34 +0200964 ieee80211_rx_bss_put(local, bss);
Jiri Bencf0706e82007-05-05 11:45:53 -0700965
Johannes Berg5b98b1f2007-11-03 13:11:10 +0000966 if ((bss_privacy == wep_privacy) || (bss_privacy == privacy_invoked))
967 return 0;
968
969 return 1;
Jiri Bencf0706e82007-05-05 11:45:53 -0700970}
971
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200972static void ieee80211_associate(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -0700973 struct ieee80211_if_sta *ifsta)
974{
975 ifsta->assoc_tries++;
976 if (ifsta->assoc_tries > IEEE80211_ASSOC_MAX_TRIES) {
Johannes Berg0c68ae262008-10-27 15:56:10 -0700977 printk(KERN_DEBUG "%s: association with AP %pM"
Jiri Bencf0706e82007-05-05 11:45:53 -0700978 " timed out\n",
Johannes Berg0c68ae262008-10-27 15:56:10 -0700979 sdata->dev->name, ifsta->bssid);
Tomas Winkler48c2fc52008-08-06 14:22:01 +0300980 ifsta->state = IEEE80211_STA_MLME_DISABLED;
Johannes Berg4a68ec52008-10-16 21:44:44 +0200981 ieee80211_sta_send_apinfo(sdata, ifsta);
Jiri Bencf0706e82007-05-05 11:45:53 -0700982 return;
983 }
984
Tomas Winkler48c2fc52008-08-06 14:22:01 +0300985 ifsta->state = IEEE80211_STA_MLME_ASSOCIATE;
Johannes Berg0c68ae262008-10-27 15:56:10 -0700986 printk(KERN_DEBUG "%s: associate with AP %pM\n",
987 sdata->dev->name, ifsta->bssid);
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200988 if (ieee80211_privacy_mismatch(sdata, ifsta)) {
Jiri Bencf0706e82007-05-05 11:45:53 -0700989 printk(KERN_DEBUG "%s: mismatch in privacy configuration and "
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200990 "mixed-cell disabled - abort association\n", sdata->dev->name);
Tomas Winkler48c2fc52008-08-06 14:22:01 +0300991 ifsta->state = IEEE80211_STA_MLME_DISABLED;
Jiri Bencf0706e82007-05-05 11:45:53 -0700992 return;
993 }
994
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200995 ieee80211_send_assoc(sdata, ifsta);
Jiri Bencf0706e82007-05-05 11:45:53 -0700996
997 mod_timer(&ifsta->timer, jiffies + IEEE80211_ASSOC_TIMEOUT);
998}
999
1000
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001001static void ieee80211_associated(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001002 struct ieee80211_if_sta *ifsta)
1003{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001004 struct ieee80211_local *local = sdata->local;
Jiri Bencf0706e82007-05-05 11:45:53 -07001005 struct sta_info *sta;
1006 int disassoc;
1007
1008 /* TODO: start monitoring current AP signal quality and number of
1009 * missed beacons. Scan other channels every now and then and search
1010 * for better APs. */
1011 /* TODO: remove expired BSSes */
1012
Tomas Winkler48c2fc52008-08-06 14:22:01 +03001013 ifsta->state = IEEE80211_STA_MLME_ASSOCIATED;
Jiri Bencf0706e82007-05-05 11:45:53 -07001014
Johannes Bergd0709a62008-02-25 16:27:46 +01001015 rcu_read_lock();
1016
Jiri Bencf0706e82007-05-05 11:45:53 -07001017 sta = sta_info_get(local, ifsta->bssid);
1018 if (!sta) {
Johannes Berg0c68ae262008-10-27 15:56:10 -07001019 printk(KERN_DEBUG "%s: No STA entry for own AP %pM\n",
1020 sdata->dev->name, ifsta->bssid);
Jiri Bencf0706e82007-05-05 11:45:53 -07001021 disassoc = 1;
1022 } else {
1023 disassoc = 0;
1024 if (time_after(jiffies,
1025 sta->last_rx + IEEE80211_MONITORING_INTERVAL)) {
Jiri Slabyd6f2da52007-08-28 17:01:54 -04001026 if (ifsta->flags & IEEE80211_STA_PROBEREQ_POLL) {
Jiri Bencf0706e82007-05-05 11:45:53 -07001027 printk(KERN_DEBUG "%s: No ProbeResp from "
Johannes Berg0c68ae262008-10-27 15:56:10 -07001028 "current AP %pM - assume out of "
Jiri Bencf0706e82007-05-05 11:45:53 -07001029 "range\n",
Johannes Berg0c68ae262008-10-27 15:56:10 -07001030 sdata->dev->name, ifsta->bssid);
Jiri Bencf0706e82007-05-05 11:45:53 -07001031 disassoc = 1;
Jiri Slabyd6f2da52007-08-28 17:01:54 -04001032 } else
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001033 ieee80211_send_probe_req(sdata, ifsta->bssid,
Johannes Berg4dfe51e2008-09-19 05:10:34 +02001034 ifsta->ssid,
1035 ifsta->ssid_len);
Jiri Slabyd6f2da52007-08-28 17:01:54 -04001036 ifsta->flags ^= IEEE80211_STA_PROBEREQ_POLL;
Jiri Bencf0706e82007-05-05 11:45:53 -07001037 } else {
Jiri Slabyd6f2da52007-08-28 17:01:54 -04001038 ifsta->flags &= ~IEEE80211_STA_PROBEREQ_POLL;
Jiri Bencf0706e82007-05-05 11:45:53 -07001039 if (time_after(jiffies, ifsta->last_probe +
1040 IEEE80211_PROBE_INTERVAL)) {
1041 ifsta->last_probe = jiffies;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001042 ieee80211_send_probe_req(sdata, ifsta->bssid,
Jiri Bencf0706e82007-05-05 11:45:53 -07001043 ifsta->ssid,
1044 ifsta->ssid_len);
1045 }
1046 }
Jiri Bencf0706e82007-05-05 11:45:53 -07001047 }
Johannes Bergd0709a62008-02-25 16:27:46 +01001048
1049 rcu_read_unlock();
1050
Tomas Winkleraa458d12008-09-09 00:32:12 +03001051 if (disassoc)
1052 ieee80211_set_disassoc(sdata, ifsta, true, true,
1053 WLAN_REASON_PREV_AUTH_NOT_VALID);
1054 else
Jiri Bencf0706e82007-05-05 11:45:53 -07001055 mod_timer(&ifsta->timer, jiffies +
1056 IEEE80211_MONITORING_INTERVAL);
Jiri Bencf0706e82007-05-05 11:45:53 -07001057}
1058
1059
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001060static void ieee80211_auth_completed(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001061 struct ieee80211_if_sta *ifsta)
1062{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001063 printk(KERN_DEBUG "%s: authenticated\n", sdata->dev->name);
Jiri Slabyd6f2da52007-08-28 17:01:54 -04001064 ifsta->flags |= IEEE80211_STA_AUTHENTICATED;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001065 ieee80211_associate(sdata, ifsta);
Jiri Bencf0706e82007-05-05 11:45:53 -07001066}
1067
1068
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001069static void ieee80211_auth_challenge(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001070 struct ieee80211_if_sta *ifsta,
1071 struct ieee80211_mgmt *mgmt,
1072 size_t len)
1073{
1074 u8 *pos;
1075 struct ieee802_11_elems elems;
1076
Jiri Bencf0706e82007-05-05 11:45:53 -07001077 pos = mgmt->u.auth.variable;
John W. Linville67a4cce2007-10-12 16:40:37 -04001078 ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), &elems);
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001079 if (!elems.challenge)
Jiri Bencf0706e82007-05-05 11:45:53 -07001080 return;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001081 ieee80211_send_auth(sdata, ifsta, 3, elems.challenge - 2,
Jiri Bencf0706e82007-05-05 11:45:53 -07001082 elems.challenge_len + 2, 1);
1083}
1084
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001085static void ieee80211_rx_mgmt_auth(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001086 struct ieee80211_if_sta *ifsta,
1087 struct ieee80211_mgmt *mgmt,
1088 size_t len)
1089{
Jiri Bencf0706e82007-05-05 11:45:53 -07001090 u16 auth_alg, auth_transaction, status_code;
1091
Tomas Winkler48c2fc52008-08-06 14:22:01 +03001092 if (ifsta->state != IEEE80211_STA_MLME_AUTHENTICATE &&
Johannes Berg05c914f2008-09-11 00:01:58 +02001093 sdata->vif.type != NL80211_IFTYPE_ADHOC)
Jiri Bencf0706e82007-05-05 11:45:53 -07001094 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001095
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001096 if (len < 24 + 6)
Jiri Bencf0706e82007-05-05 11:45:53 -07001097 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001098
Johannes Berg05c914f2008-09-11 00:01:58 +02001099 if (sdata->vif.type != NL80211_IFTYPE_ADHOC &&
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001100 memcmp(ifsta->bssid, mgmt->sa, ETH_ALEN) != 0)
Jiri Bencf0706e82007-05-05 11:45:53 -07001101 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001102
Johannes Berg05c914f2008-09-11 00:01:58 +02001103 if (sdata->vif.type != NL80211_IFTYPE_ADHOC &&
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001104 memcmp(ifsta->bssid, mgmt->bssid, ETH_ALEN) != 0)
Jiri Bencf0706e82007-05-05 11:45:53 -07001105 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001106
1107 auth_alg = le16_to_cpu(mgmt->u.auth.auth_alg);
1108 auth_transaction = le16_to_cpu(mgmt->u.auth.auth_transaction);
1109 status_code = le16_to_cpu(mgmt->u.auth.status_code);
1110
Johannes Berg05c914f2008-09-11 00:01:58 +02001111 if (sdata->vif.type == NL80211_IFTYPE_ADHOC) {
Johannes Berg135a2112008-06-16 20:55:29 +02001112 /*
1113 * IEEE 802.11 standard does not require authentication in IBSS
Jiri Bencf0706e82007-05-05 11:45:53 -07001114 * networks and most implementations do not seem to use it.
1115 * However, try to reply to authentication attempts if someone
1116 * has actually implemented this.
Johannes Berg135a2112008-06-16 20:55:29 +02001117 */
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001118 if (auth_alg != WLAN_AUTH_OPEN || auth_transaction != 1)
Jiri Bencf0706e82007-05-05 11:45:53 -07001119 return;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001120 ieee80211_send_auth(sdata, ifsta, 2, NULL, 0, 0);
Jiri Bencf0706e82007-05-05 11:45:53 -07001121 }
1122
1123 if (auth_alg != ifsta->auth_alg ||
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001124 auth_transaction != ifsta->auth_transaction)
Jiri Bencf0706e82007-05-05 11:45:53 -07001125 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001126
1127 if (status_code != WLAN_STATUS_SUCCESS) {
Jiri Bencf0706e82007-05-05 11:45:53 -07001128 if (status_code == WLAN_STATUS_NOT_SUPPORTED_AUTH_ALG) {
1129 u8 algs[3];
1130 const int num_algs = ARRAY_SIZE(algs);
1131 int i, pos;
1132 algs[0] = algs[1] = algs[2] = 0xff;
1133 if (ifsta->auth_algs & IEEE80211_AUTH_ALG_OPEN)
1134 algs[0] = WLAN_AUTH_OPEN;
1135 if (ifsta->auth_algs & IEEE80211_AUTH_ALG_SHARED_KEY)
1136 algs[1] = WLAN_AUTH_SHARED_KEY;
1137 if (ifsta->auth_algs & IEEE80211_AUTH_ALG_LEAP)
1138 algs[2] = WLAN_AUTH_LEAP;
1139 if (ifsta->auth_alg == WLAN_AUTH_OPEN)
1140 pos = 0;
1141 else if (ifsta->auth_alg == WLAN_AUTH_SHARED_KEY)
1142 pos = 1;
1143 else
1144 pos = 2;
1145 for (i = 0; i < num_algs; i++) {
1146 pos++;
1147 if (pos >= num_algs)
1148 pos = 0;
1149 if (algs[pos] == ifsta->auth_alg ||
1150 algs[pos] == 0xff)
1151 continue;
1152 if (algs[pos] == WLAN_AUTH_SHARED_KEY &&
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001153 !ieee80211_sta_wep_configured(sdata))
Jiri Bencf0706e82007-05-05 11:45:53 -07001154 continue;
1155 ifsta->auth_alg = algs[pos];
Jiri Bencf0706e82007-05-05 11:45:53 -07001156 break;
1157 }
1158 }
1159 return;
1160 }
1161
1162 switch (ifsta->auth_alg) {
1163 case WLAN_AUTH_OPEN:
1164 case WLAN_AUTH_LEAP:
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001165 ieee80211_auth_completed(sdata, ifsta);
Jiri Bencf0706e82007-05-05 11:45:53 -07001166 break;
1167 case WLAN_AUTH_SHARED_KEY:
1168 if (ifsta->auth_transaction == 4)
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001169 ieee80211_auth_completed(sdata, ifsta);
Jiri Bencf0706e82007-05-05 11:45:53 -07001170 else
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001171 ieee80211_auth_challenge(sdata, ifsta, mgmt, len);
Jiri Bencf0706e82007-05-05 11:45:53 -07001172 break;
1173 }
1174}
1175
1176
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001177static void ieee80211_rx_mgmt_deauth(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001178 struct ieee80211_if_sta *ifsta,
1179 struct ieee80211_mgmt *mgmt,
1180 size_t len)
1181{
1182 u16 reason_code;
1183
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001184 if (len < 24 + 2)
Jiri Bencf0706e82007-05-05 11:45:53 -07001185 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001186
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001187 if (memcmp(ifsta->bssid, mgmt->sa, ETH_ALEN))
Jiri Bencf0706e82007-05-05 11:45:53 -07001188 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001189
1190 reason_code = le16_to_cpu(mgmt->u.deauth.reason_code);
1191
Johannes Berg988c0f72008-04-17 19:21:22 +02001192 if (ifsta->flags & IEEE80211_STA_AUTHENTICATED)
Zhu Yi97c8b012008-10-28 15:58:31 +08001193 printk(KERN_DEBUG "%s: deauthenticated (Reason: %u)\n",
1194 sdata->dev->name, reason_code);
Jiri Bencf0706e82007-05-05 11:45:53 -07001195
Tomas Winkler48c2fc52008-08-06 14:22:01 +03001196 if (ifsta->state == IEEE80211_STA_MLME_AUTHENTICATE ||
1197 ifsta->state == IEEE80211_STA_MLME_ASSOCIATE ||
1198 ifsta->state == IEEE80211_STA_MLME_ASSOCIATED) {
Ron Rindjunsky9859b812008-08-09 03:02:19 +03001199 ifsta->state = IEEE80211_STA_MLME_DIRECT_PROBE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001200 mod_timer(&ifsta->timer, jiffies +
1201 IEEE80211_RETRY_AUTH_INTERVAL);
1202 }
1203
Tomas Winkleraa458d12008-09-09 00:32:12 +03001204 ieee80211_set_disassoc(sdata, ifsta, true, false, 0);
Jiri Slabyd6f2da52007-08-28 17:01:54 -04001205 ifsta->flags &= ~IEEE80211_STA_AUTHENTICATED;
Jiri Bencf0706e82007-05-05 11:45:53 -07001206}
1207
1208
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001209static void ieee80211_rx_mgmt_disassoc(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001210 struct ieee80211_if_sta *ifsta,
1211 struct ieee80211_mgmt *mgmt,
1212 size_t len)
1213{
1214 u16 reason_code;
1215
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001216 if (len < 24 + 2)
Jiri Bencf0706e82007-05-05 11:45:53 -07001217 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001218
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001219 if (memcmp(ifsta->bssid, mgmt->sa, ETH_ALEN))
Jiri Bencf0706e82007-05-05 11:45:53 -07001220 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001221
1222 reason_code = le16_to_cpu(mgmt->u.disassoc.reason_code);
1223
Jiri Slabyd6f2da52007-08-28 17:01:54 -04001224 if (ifsta->flags & IEEE80211_STA_ASSOCIATED)
Zhu Yi97c8b012008-10-28 15:58:31 +08001225 printk(KERN_DEBUG "%s: disassociated (Reason: %u)\n",
1226 sdata->dev->name, reason_code);
Jiri Bencf0706e82007-05-05 11:45:53 -07001227
Tomas Winkler48c2fc52008-08-06 14:22:01 +03001228 if (ifsta->state == IEEE80211_STA_MLME_ASSOCIATED) {
1229 ifsta->state = IEEE80211_STA_MLME_ASSOCIATE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001230 mod_timer(&ifsta->timer, jiffies +
1231 IEEE80211_RETRY_AUTH_INTERVAL);
1232 }
1233
Vivek Natarajan5925d972008-11-21 22:19:50 -08001234 ieee80211_set_disassoc(sdata, ifsta, false, false, reason_code);
Jiri Bencf0706e82007-05-05 11:45:53 -07001235}
1236
1237
Johannes Berg471b3ef2007-12-28 14:32:58 +01001238static void ieee80211_rx_mgmt_assoc_resp(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001239 struct ieee80211_if_sta *ifsta,
1240 struct ieee80211_mgmt *mgmt,
1241 size_t len,
1242 int reassoc)
1243{
Johannes Berg471b3ef2007-12-28 14:32:58 +01001244 struct ieee80211_local *local = sdata->local;
Johannes Berg8318d782008-01-24 19:38:38 +01001245 struct ieee80211_supported_band *sband;
Jiri Bencf0706e82007-05-05 11:45:53 -07001246 struct sta_info *sta;
Johannes Berg8318d782008-01-24 19:38:38 +01001247 u64 rates, basic_rates;
Jiri Bencf0706e82007-05-05 11:45:53 -07001248 u16 capab_info, status_code, aid;
1249 struct ieee802_11_elems elems;
Johannes Bergbda39332008-10-11 01:51:51 +02001250 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
Jiri Bencf0706e82007-05-05 11:45:53 -07001251 u8 *pos;
Johannes Bergae5eb022008-10-14 16:58:37 +02001252 u32 changed = 0;
Jiri Bencf0706e82007-05-05 11:45:53 -07001253 int i, j;
Johannes Bergddf4ac52008-10-22 11:41:38 +02001254 bool have_higher_than_11mbit = false, newsta = false;
Johannes Bergae5eb022008-10-14 16:58:37 +02001255 u16 ap_ht_cap_flags;
Jiri Bencf0706e82007-05-05 11:45:53 -07001256
1257 /* AssocResp and ReassocResp have identical structure, so process both
1258 * of them in this function. */
1259
Tomas Winkler48c2fc52008-08-06 14:22:01 +03001260 if (ifsta->state != IEEE80211_STA_MLME_ASSOCIATE)
Jiri Bencf0706e82007-05-05 11:45:53 -07001261 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001262
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001263 if (len < 24 + 6)
Jiri Bencf0706e82007-05-05 11:45:53 -07001264 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001265
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001266 if (memcmp(ifsta->bssid, mgmt->sa, ETH_ALEN) != 0)
Jiri Bencf0706e82007-05-05 11:45:53 -07001267 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001268
1269 capab_info = le16_to_cpu(mgmt->u.assoc_resp.capab_info);
1270 status_code = le16_to_cpu(mgmt->u.assoc_resp.status_code);
1271 aid = le16_to_cpu(mgmt->u.assoc_resp.aid);
Jiri Bencf0706e82007-05-05 11:45:53 -07001272
Johannes Berg0c68ae262008-10-27 15:56:10 -07001273 printk(KERN_DEBUG "%s: RX %sssocResp from %pM (capab=0x%x "
Jiri Bencf0706e82007-05-05 11:45:53 -07001274 "status=%d aid=%d)\n",
Johannes Berg0c68ae262008-10-27 15:56:10 -07001275 sdata->dev->name, reassoc ? "Rea" : "A", mgmt->sa,
Johannes Bergddd68582007-10-22 14:51:37 +02001276 capab_info, status_code, (u16)(aid & ~(BIT(15) | BIT(14))));
Jiri Bencf0706e82007-05-05 11:45:53 -07001277
Jouni Malinen63a5ab82009-01-08 13:32:09 +02001278 pos = mgmt->u.assoc_resp.variable;
1279 ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), &elems);
1280
1281 if (status_code == WLAN_STATUS_ASSOC_REJECTED_TEMPORARILY &&
1282 elems.assoc_comeback && elems.assoc_comeback_len == 4) {
1283 u32 tu, ms;
1284 tu = get_unaligned_le32(elems.assoc_comeback);
1285 ms = tu * 1024 / 1000;
1286 printk(KERN_DEBUG "%s: AP rejected association temporarily; "
1287 "comeback duration %u TU (%u ms)\n",
1288 sdata->dev->name, tu, ms);
1289 if (ms > IEEE80211_ASSOC_TIMEOUT)
1290 mod_timer(&ifsta->timer,
1291 jiffies + msecs_to_jiffies(ms));
1292 return;
1293 }
1294
Jiri Bencf0706e82007-05-05 11:45:53 -07001295 if (status_code != WLAN_STATUS_SUCCESS) {
1296 printk(KERN_DEBUG "%s: AP denied association (code=%d)\n",
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001297 sdata->dev->name, status_code);
Daniel Drake8a69aa92007-07-27 15:43:23 +02001298 /* if this was a reassociation, ensure we try a "full"
1299 * association next time. This works around some broken APs
1300 * which do not correctly reject reassociation requests. */
Jiri Slabyd6f2da52007-08-28 17:01:54 -04001301 ifsta->flags &= ~IEEE80211_STA_PREV_BSSID_SET;
Jiri Bencf0706e82007-05-05 11:45:53 -07001302 return;
1303 }
1304
Johannes Berg1dd84aa2007-10-10 12:03:41 +02001305 if ((aid & (BIT(15) | BIT(14))) != (BIT(15) | BIT(14)))
1306 printk(KERN_DEBUG "%s: invalid aid value %d; bits 15:14 not "
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001307 "set\n", sdata->dev->name, aid);
Johannes Berg1dd84aa2007-10-10 12:03:41 +02001308 aid &= ~(BIT(15) | BIT(14));
1309
Jiri Bencf0706e82007-05-05 11:45:53 -07001310 if (!elems.supp_rates) {
1311 printk(KERN_DEBUG "%s: no SuppRates element in AssocResp\n",
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001312 sdata->dev->name);
Jiri Bencf0706e82007-05-05 11:45:53 -07001313 return;
1314 }
1315
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001316 printk(KERN_DEBUG "%s: associated\n", sdata->dev->name);
Jiri Bencf0706e82007-05-05 11:45:53 -07001317 ifsta->aid = aid;
1318 ifsta->ap_capab = capab_info;
1319
1320 kfree(ifsta->assocresp_ies);
1321 ifsta->assocresp_ies_len = len - (pos - (u8 *) mgmt);
Michael Wu0ec0b7a2007-07-27 15:43:24 +02001322 ifsta->assocresp_ies = kmalloc(ifsta->assocresp_ies_len, GFP_KERNEL);
Jiri Bencf0706e82007-05-05 11:45:53 -07001323 if (ifsta->assocresp_ies)
1324 memcpy(ifsta->assocresp_ies, pos, ifsta->assocresp_ies_len);
1325
Johannes Bergd0709a62008-02-25 16:27:46 +01001326 rcu_read_lock();
1327
Jiri Bencf0706e82007-05-05 11:45:53 -07001328 /* Add STA entry for the AP */
1329 sta = sta_info_get(local, ifsta->bssid);
1330 if (!sta) {
Johannes Bergc2b13452008-09-11 00:01:55 +02001331 struct ieee80211_bss *bss;
Johannes Bergddf4ac52008-10-22 11:41:38 +02001332
1333 newsta = true;
Johannes Bergd0709a62008-02-25 16:27:46 +01001334
Johannes Berg73651ee2008-02-25 16:27:47 +01001335 sta = sta_info_alloc(sdata, ifsta->bssid, GFP_ATOMIC);
1336 if (!sta) {
1337 printk(KERN_DEBUG "%s: failed to alloc STA entry for"
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001338 " the AP\n", sdata->dev->name);
Johannes Bergd0709a62008-02-25 16:27:46 +01001339 rcu_read_unlock();
Jiri Bencf0706e82007-05-05 11:45:53 -07001340 return;
1341 }
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001342 bss = ieee80211_rx_bss_get(local, ifsta->bssid,
Johannes Berg8318d782008-01-24 19:38:38 +01001343 local->hw.conf.channel->center_freq,
John W. Linvillecffdd302007-10-05 14:23:27 -04001344 ifsta->ssid, ifsta->ssid_len);
Jiri Bencf0706e82007-05-05 11:45:53 -07001345 if (bss) {
Jiri Bencf0706e82007-05-05 11:45:53 -07001346 sta->last_signal = bss->signal;
Bruno Randolf566bfe52008-05-08 19:15:40 +02001347 sta->last_qual = bss->qual;
Jiri Bencf0706e82007-05-05 11:45:53 -07001348 sta->last_noise = bss->noise;
Johannes Berg3e122be2008-07-09 14:40:34 +02001349 ieee80211_rx_bss_put(local, bss);
Jiri Bencf0706e82007-05-05 11:45:53 -07001350 }
Johannes Berg73651ee2008-02-25 16:27:47 +01001351
Ron Rindjunskya61dae12008-08-10 00:54:34 +03001352 /* update new sta with its last rx activity */
1353 sta->last_rx = jiffies;
Jiri Bencf0706e82007-05-05 11:45:53 -07001354 }
1355
Johannes Berg73651ee2008-02-25 16:27:47 +01001356 /*
1357 * FIXME: Do we really need to update the sta_info's information here?
1358 * We already know about the AP (we found it in our list) so it
1359 * should already be filled with the right info, no?
1360 * As is stands, all this is racy because typically we assume
1361 * the information that is filled in here (except flags) doesn't
1362 * change while a STA structure is alive. As such, it should move
1363 * to between the sta_info_alloc() and sta_info_insert() above.
1364 */
1365
Johannes Berg07346f812008-05-03 01:02:02 +02001366 set_sta_flags(sta, WLAN_STA_AUTH | WLAN_STA_ASSOC | WLAN_STA_ASSOC_AP |
1367 WLAN_STA_AUTHORIZED);
Jiri Bencf0706e82007-05-05 11:45:53 -07001368
1369 rates = 0;
Johannes Berg8318d782008-01-24 19:38:38 +01001370 basic_rates = 0;
1371 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
1372
Jiri Bencf0706e82007-05-05 11:45:53 -07001373 for (i = 0; i < elems.supp_rates_len; i++) {
1374 int rate = (elems.supp_rates[i] & 0x7f) * 5;
Tomas Winklerd61272c2008-10-30 17:08:08 +02001375 bool is_basic = !!(elems.supp_rates[i] & 0x80);
Johannes Berg8318d782008-01-24 19:38:38 +01001376
1377 if (rate > 110)
1378 have_higher_than_11mbit = true;
1379
1380 for (j = 0; j < sband->n_bitrates; j++) {
Tomas Winklerd61272c2008-10-30 17:08:08 +02001381 if (sband->bitrates[j].bitrate == rate) {
Jiri Bencf0706e82007-05-05 11:45:53 -07001382 rates |= BIT(j);
Tomas Winklerd61272c2008-10-30 17:08:08 +02001383 if (is_basic)
1384 basic_rates |= BIT(j);
1385 break;
1386 }
Johannes Berg8318d782008-01-24 19:38:38 +01001387 }
Jiri Bencf0706e82007-05-05 11:45:53 -07001388 }
Johannes Berg8318d782008-01-24 19:38:38 +01001389
Jiri Bencf0706e82007-05-05 11:45:53 -07001390 for (i = 0; i < elems.ext_supp_rates_len; i++) {
1391 int rate = (elems.ext_supp_rates[i] & 0x7f) * 5;
Tomas Winklerd61272c2008-10-30 17:08:08 +02001392 bool is_basic = !!(elems.supp_rates[i] & 0x80);
Johannes Berg8318d782008-01-24 19:38:38 +01001393
1394 if (rate > 110)
1395 have_higher_than_11mbit = true;
1396
1397 for (j = 0; j < sband->n_bitrates; j++) {
Tomas Winklerd61272c2008-10-30 17:08:08 +02001398 if (sband->bitrates[j].bitrate == rate) {
Jiri Bencf0706e82007-05-05 11:45:53 -07001399 rates |= BIT(j);
Tomas Winklerd61272c2008-10-30 17:08:08 +02001400 if (is_basic)
1401 basic_rates |= BIT(j);
1402 break;
1403 }
Johannes Berg8318d782008-01-24 19:38:38 +01001404 }
Jiri Bencf0706e82007-05-05 11:45:53 -07001405 }
Johannes Berg8318d782008-01-24 19:38:38 +01001406
Johannes Berg323ce792008-09-11 02:45:11 +02001407 sta->sta.supp_rates[local->hw.conf.channel->band] = rates;
Johannes Bergbda39332008-10-11 01:51:51 +02001408 sdata->vif.bss_conf.basic_rates = basic_rates;
Johannes Berg8318d782008-01-24 19:38:38 +01001409
1410 /* cf. IEEE 802.11 9.2.12 */
1411 if (local->hw.conf.channel->band == IEEE80211_BAND_2GHZ &&
1412 have_higher_than_11mbit)
1413 sdata->flags |= IEEE80211_SDATA_OPERATING_GMODE;
1414 else
1415 sdata->flags &= ~IEEE80211_SDATA_OPERATING_GMODE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001416
Johannes Bergae5eb022008-10-14 16:58:37 +02001417 if (elems.ht_cap_elem)
1418 ieee80211_ht_cap_ie_to_sta_ht_cap(sband,
Johannes Bergd9fe60d2008-10-09 12:13:49 +02001419 elems.ht_cap_elem, &sta->sta.ht_cap);
Johannes Bergae5eb022008-10-14 16:58:37 +02001420
1421 ap_ht_cap_flags = sta->sta.ht_cap.cap;
Ron Rindjunskyd3c990f2007-11-26 16:14:34 +02001422
Johannes Berg4b7679a2008-09-18 18:14:18 +02001423 rate_control_rate_init(sta);
Jiri Bencf0706e82007-05-05 11:45:53 -07001424
Jouni Malinen5394af42009-01-08 13:31:59 +02001425 if (ifsta->flags & IEEE80211_STA_MFP_ENABLED)
1426 set_sta_flags(sta, WLAN_STA_MFP);
1427
Johannes Bergddf4ac52008-10-22 11:41:38 +02001428 if (elems.wmm_param)
Johannes Berg07346f812008-05-03 01:02:02 +02001429 set_sta_flags(sta, WLAN_STA_WME);
Johannes Bergddf4ac52008-10-22 11:41:38 +02001430
1431 if (newsta) {
1432 int err = sta_info_insert(sta);
1433 if (err) {
1434 printk(KERN_DEBUG "%s: failed to insert STA entry for"
1435 " the AP (error %d)\n", sdata->dev->name, err);
1436 rcu_read_unlock();
1437 return;
1438 }
1439 }
1440
1441 rcu_read_unlock();
1442
1443 if (elems.wmm_param)
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001444 ieee80211_sta_wmm_params(local, ifsta, elems.wmm_param,
Jiri Bencf0706e82007-05-05 11:45:53 -07001445 elems.wmm_param_len);
Jiri Bencf0706e82007-05-05 11:45:53 -07001446
Johannes Bergae5eb022008-10-14 16:58:37 +02001447 if (elems.ht_info_elem && elems.wmm_param &&
1448 (ifsta->flags & IEEE80211_STA_WMM_ENABLED))
1449 changed |= ieee80211_enable_ht(sdata, elems.ht_info_elem,
1450 ap_ht_cap_flags);
1451
Tomas Winkler21c0cbe2008-03-28 16:33:34 -07001452 /* set AID and assoc capability,
1453 * ieee80211_set_associated() will tell the driver */
Johannes Berg8318d782008-01-24 19:38:38 +01001454 bss_conf->aid = aid;
Tomas Winkler21c0cbe2008-03-28 16:33:34 -07001455 bss_conf->assoc_capability = capab_info;
Johannes Bergae5eb022008-10-14 16:58:37 +02001456 ieee80211_set_associated(sdata, ifsta, changed);
Jiri Bencf0706e82007-05-05 11:45:53 -07001457
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001458 ieee80211_associated(sdata, ifsta);
Jiri Bencf0706e82007-05-05 11:45:53 -07001459}
1460
1461
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001462static int ieee80211_sta_join_ibss(struct ieee80211_sub_if_data *sdata,
Bruno Randolfa6072682008-02-18 11:21:15 +09001463 struct ieee80211_if_sta *ifsta,
Johannes Bergc2b13452008-09-11 00:01:55 +02001464 struct ieee80211_bss *bss)
Bruno Randolfa6072682008-02-18 11:21:15 +09001465{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001466 struct ieee80211_local *local = sdata->local;
Bruno Randolfa6072682008-02-18 11:21:15 +09001467 int res, rates, i, j;
1468 struct sk_buff *skb;
1469 struct ieee80211_mgmt *mgmt;
Bruno Randolfa6072682008-02-18 11:21:15 +09001470 u8 *pos;
Bruno Randolfa6072682008-02-18 11:21:15 +09001471 struct ieee80211_supported_band *sband;
Dan Williams507b06d2008-06-03 23:39:55 -04001472 union iwreq_data wrqu;
Bruno Randolfa6072682008-02-18 11:21:15 +09001473
Rami Rosene2ef12d2008-10-22 09:58:39 +02001474 skb = dev_alloc_skb(local->hw.extra_tx_headroom + 400);
1475 if (!skb) {
1476 printk(KERN_DEBUG "%s: failed to allocate buffer for probe "
1477 "response\n", sdata->dev->name);
1478 return -ENOMEM;
1479 }
1480
Bruno Randolfa6072682008-02-18 11:21:15 +09001481 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
1482
1483 /* Remove possible STA entries from other IBSS networks. */
Johannes Bergdc6676b2008-03-31 19:23:03 +02001484 sta_info_flush_delayed(sdata);
Bruno Randolfa6072682008-02-18 11:21:15 +09001485
1486 if (local->ops->reset_tsf) {
1487 /* Reset own TSF to allow time synchronization work. */
1488 local->ops->reset_tsf(local_to_hw(local));
1489 }
1490 memcpy(ifsta->bssid, bss->bssid, ETH_ALEN);
Johannes Berg9d139c82008-07-09 14:40:37 +02001491 res = ieee80211_if_config(sdata, IEEE80211_IFCC_BSSID);
Bruno Randolfa6072682008-02-18 11:21:15 +09001492 if (res)
1493 return res;
1494
1495 local->hw.conf.beacon_int = bss->beacon_int >= 10 ? bss->beacon_int : 10;
1496
Bruno Randolfa6072682008-02-18 11:21:15 +09001497 sdata->drop_unencrypted = bss->capability &
1498 WLAN_CAPABILITY_PRIVACY ? 1 : 0;
1499
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001500 res = ieee80211_set_freq(sdata, bss->freq);
Bruno Randolfa6072682008-02-18 11:21:15 +09001501
Assaf Kraussbe038b32008-06-05 19:55:21 +03001502 if (res)
1503 return res;
Bruno Randolfa6072682008-02-18 11:21:15 +09001504
Johannes Berg9d139c82008-07-09 14:40:37 +02001505 /* Build IBSS probe response */
Bruno Randolfa6072682008-02-18 11:21:15 +09001506
Rami Rosene2ef12d2008-10-22 09:58:39 +02001507 skb_reserve(skb, local->hw.extra_tx_headroom);
Bruno Randolfa6072682008-02-18 11:21:15 +09001508
Rami Rosene2ef12d2008-10-22 09:58:39 +02001509 mgmt = (struct ieee80211_mgmt *)
1510 skb_put(skb, 24 + sizeof(mgmt->u.beacon));
1511 memset(mgmt, 0, 24 + sizeof(mgmt->u.beacon));
1512 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
1513 IEEE80211_STYPE_PROBE_RESP);
1514 memset(mgmt->da, 0xff, ETH_ALEN);
1515 memcpy(mgmt->sa, sdata->dev->dev_addr, ETH_ALEN);
1516 memcpy(mgmt->bssid, ifsta->bssid, ETH_ALEN);
1517 mgmt->u.beacon.beacon_int =
1518 cpu_to_le16(local->hw.conf.beacon_int);
1519 mgmt->u.beacon.timestamp = cpu_to_le64(bss->timestamp);
1520 mgmt->u.beacon.capab_info = cpu_to_le16(bss->capability);
Bruno Randolfa6072682008-02-18 11:21:15 +09001521
Rami Rosene2ef12d2008-10-22 09:58:39 +02001522 pos = skb_put(skb, 2 + ifsta->ssid_len);
1523 *pos++ = WLAN_EID_SSID;
1524 *pos++ = ifsta->ssid_len;
1525 memcpy(pos, ifsta->ssid, ifsta->ssid_len);
Bruno Randolfa6072682008-02-18 11:21:15 +09001526
Rami Rosene2ef12d2008-10-22 09:58:39 +02001527 rates = bss->supp_rates_len;
1528 if (rates > 8)
1529 rates = 8;
1530 pos = skb_put(skb, 2 + rates);
1531 *pos++ = WLAN_EID_SUPP_RATES;
1532 *pos++ = rates;
1533 memcpy(pos, bss->supp_rates, rates);
Bruno Randolfa6072682008-02-18 11:21:15 +09001534
Rami Rosene2ef12d2008-10-22 09:58:39 +02001535 if (bss->band == IEEE80211_BAND_2GHZ) {
1536 pos = skb_put(skb, 2 + 1);
1537 *pos++ = WLAN_EID_DS_PARAMS;
1538 *pos++ = 1;
1539 *pos++ = ieee80211_frequency_to_channel(bss->freq);
Bruno Randolfa6072682008-02-18 11:21:15 +09001540 }
1541
Rami Rosene2ef12d2008-10-22 09:58:39 +02001542 pos = skb_put(skb, 2 + 2);
1543 *pos++ = WLAN_EID_IBSS_PARAMS;
1544 *pos++ = 2;
1545 /* FIX: set ATIM window based on scan results */
1546 *pos++ = 0;
1547 *pos++ = 0;
1548
1549 if (bss->supp_rates_len > 8) {
1550 rates = bss->supp_rates_len - 8;
1551 pos = skb_put(skb, 2 + rates);
1552 *pos++ = WLAN_EID_EXT_SUPP_RATES;
1553 *pos++ = rates;
1554 memcpy(pos, &bss->supp_rates[8], rates);
1555 }
1556
1557 ifsta->probe_resp = skb;
1558
1559 ieee80211_if_config(sdata, IEEE80211_IFCC_BEACON);
1560
1561
Johannes Berg9d139c82008-07-09 14:40:37 +02001562 rates = 0;
1563 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
1564 for (i = 0; i < bss->supp_rates_len; i++) {
1565 int bitrate = (bss->supp_rates[i] & 0x7f) * 5;
1566 for (j = 0; j < sband->n_bitrates; j++)
1567 if (sband->bitrates[j].bitrate == bitrate)
1568 rates |= BIT(j);
1569 }
1570 ifsta->supp_rates_bits[local->hw.conf.channel->band] = rates;
1571
Johannes Bergb079ada2008-09-09 09:32:59 +02001572 ieee80211_sta_def_wmm_params(sdata, bss);
Johannes Berg9d139c82008-07-09 14:40:37 +02001573
Tomas Winkler48c2fc52008-08-06 14:22:01 +03001574 ifsta->state = IEEE80211_STA_MLME_IBSS_JOINED;
Bruno Randolfa6072682008-02-18 11:21:15 +09001575 mod_timer(&ifsta->timer, jiffies + IEEE80211_IBSS_MERGE_INTERVAL);
1576
Emmanuel Grumbach4492bea2008-09-22 17:10:10 +03001577 ieee80211_led_assoc(local, true);
1578
Dan Williams507b06d2008-06-03 23:39:55 -04001579 memset(&wrqu, 0, sizeof(wrqu));
1580 memcpy(wrqu.ap_addr.sa_data, bss->bssid, ETH_ALEN);
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001581 wireless_send_event(sdata->dev, SIOCGIWAP, &wrqu, NULL);
Bruno Randolfa6072682008-02-18 11:21:15 +09001582
1583 return res;
1584}
1585
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001586static void ieee80211_rx_bss_info(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001587 struct ieee80211_mgmt *mgmt,
1588 size_t len,
1589 struct ieee80211_rx_status *rx_status,
Johannes Berg98c8fcc2008-09-08 17:44:26 +02001590 struct ieee802_11_elems *elems,
1591 bool beacon)
Jiri Bencf0706e82007-05-05 11:45:53 -07001592{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001593 struct ieee80211_local *local = sdata->local;
Johannes Berg98c8fcc2008-09-08 17:44:26 +02001594 int freq;
Johannes Bergc2b13452008-09-11 00:01:55 +02001595 struct ieee80211_bss *bss;
Jiri Bencf0706e82007-05-05 11:45:53 -07001596 struct sta_info *sta;
Johannes Bergfab7d4a2008-03-16 18:42:44 +01001597 struct ieee80211_channel *channel;
Emmanuel Grumbach8e1535d2008-09-03 23:42:20 +03001598 u64 beacon_timestamp, rx_timestamp;
1599 u64 supp_rates = 0;
Emmanuel Grumbach8e1535d2008-09-03 23:42:20 +03001600 enum ieee80211_band band = rx_status->band;
Jiri Bencf0706e82007-05-05 11:45:53 -07001601
Johannes Berg5bda6172008-09-08 11:05:10 +02001602 if (elems->ds_params && elems->ds_params_len == 1)
1603 freq = ieee80211_channel_to_frequency(elems->ds_params[0]);
1604 else
1605 freq = rx_status->freq;
1606
1607 channel = ieee80211_get_channel(local->hw.wiphy, freq);
1608
1609 if (!channel || channel->flags & IEEE80211_CHAN_DISABLED)
1610 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001611
Johannes Berg05c914f2008-09-11 00:01:58 +02001612 if (sdata->vif.type == NL80211_IFTYPE_ADHOC && elems->supp_rates &&
Emmanuel Grumbach8e1535d2008-09-03 23:42:20 +03001613 memcmp(mgmt->bssid, sdata->u.sta.bssid, ETH_ALEN) == 0) {
Emmanuel Grumbach8e1535d2008-09-03 23:42:20 +03001614 supp_rates = ieee80211_sta_get_rates(local, elems, band);
1615
Johannes Berg69e6c012008-09-08 11:05:08 +02001616 rcu_read_lock();
1617
Emmanuel Grumbach8e1535d2008-09-03 23:42:20 +03001618 sta = sta_info_get(local, mgmt->sa);
1619 if (sta) {
1620 u64 prev_rates;
1621
Johannes Berg323ce792008-09-11 02:45:11 +02001622 prev_rates = sta->sta.supp_rates[band];
Emmanuel Grumbach8e1535d2008-09-03 23:42:20 +03001623 /* make sure mandatory rates are always added */
Johannes Berg323ce792008-09-11 02:45:11 +02001624 sta->sta.supp_rates[band] = supp_rates |
Johannes Berg96dd22a2008-09-11 00:01:57 +02001625 ieee80211_mandatory_rates(local, band);
Emmanuel Grumbach8e1535d2008-09-03 23:42:20 +03001626
1627#ifdef CONFIG_MAC80211_IBSS_DEBUG
Johannes Berg323ce792008-09-11 02:45:11 +02001628 if (sta->sta.supp_rates[band] != prev_rates)
Emmanuel Grumbach8e1535d2008-09-03 23:42:20 +03001629 printk(KERN_DEBUG "%s: updated supp_rates set "
Johannes Berg0c68ae262008-10-27 15:56:10 -07001630 "for %pM based on beacon info (0x%llx | "
Emmanuel Grumbach8e1535d2008-09-03 23:42:20 +03001631 "0x%llx -> 0x%llx)\n",
Johannes Berg17741cd2008-09-11 00:02:02 +02001632 sdata->dev->name,
Johannes Berg0c68ae262008-10-27 15:56:10 -07001633 sta->sta.addr,
Emmanuel Grumbach8e1535d2008-09-03 23:42:20 +03001634 (unsigned long long) prev_rates,
1635 (unsigned long long) supp_rates,
Johannes Berg323ce792008-09-11 02:45:11 +02001636 (unsigned long long) sta->sta.supp_rates[band]);
Emmanuel Grumbach8e1535d2008-09-03 23:42:20 +03001637#endif
1638 } else {
Rami Rosenab1f5c02008-12-11 14:00:25 +02001639 ieee80211_ibss_add_sta(sdata, mgmt->bssid, mgmt->sa, supp_rates);
Jiri Bencf0706e82007-05-05 11:45:53 -07001640 }
Jiri Bencf0706e82007-05-05 11:45:53 -07001641
Johannes Berg69e6c012008-09-08 11:05:08 +02001642 rcu_read_unlock();
1643 }
Johannes Bergd0709a62008-02-25 16:27:46 +01001644
Johannes Berg98c8fcc2008-09-08 17:44:26 +02001645 bss = ieee80211_bss_info_update(local, rx_status, mgmt, len, elems,
1646 freq, beacon);
1647 if (!bss)
1648 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001649
Sujithc481ec92009-01-06 09:28:37 +05301650 if (elems->ch_switch_elem && (elems->ch_switch_elem_len == 3) &&
1651 (memcmp(mgmt->bssid, sdata->u.sta.bssid, ETH_ALEN) == 0)) {
1652 struct ieee80211_channel_sw_ie *sw_elem =
1653 (struct ieee80211_channel_sw_ie *)elems->ch_switch_elem;
1654 ieee80211_process_chanswitch(sdata, sw_elem, bss);
1655 }
1656
Johannes Berg98c8fcc2008-09-08 17:44:26 +02001657 /* was just updated in ieee80211_bss_info_update */
1658 beacon_timestamp = bss->timestamp;
Daniel Drake56282212007-07-10 19:32:10 +02001659
Johannes Berg30b89b02008-04-16 17:43:20 +02001660 /*
1661 * In STA mode, the remaining parameters should not be overridden
1662 * by beacons because they're not necessarily accurate there.
1663 */
Johannes Berg05c914f2008-09-11 00:01:58 +02001664 if (sdata->vif.type != NL80211_IFTYPE_ADHOC &&
Ron Rindjunsky9859b812008-08-09 03:02:19 +03001665 bss->last_probe_resp && beacon) {
Johannes Berg3e122be2008-07-09 14:40:34 +02001666 ieee80211_rx_bss_put(local, bss);
Johannes Berg30b89b02008-04-16 17:43:20 +02001667 return;
1668 }
1669
Bruno Randolf9d9bf772008-02-18 11:21:36 +09001670 /* check if we need to merge IBSS */
Johannes Berg05c914f2008-09-11 00:01:58 +02001671 if (sdata->vif.type == NL80211_IFTYPE_ADHOC && beacon &&
Alina Friedrichsen65f0e6a2009-01-06 03:08:10 +01001672 (!(sdata->u.sta.flags & IEEE80211_STA_BSSID_SET)) &&
Johannes Bergfba4a1e2008-02-21 11:08:33 +01001673 bss->capability & WLAN_CAPABILITY_IBSS &&
Bruno Randolf9d9bf772008-02-18 11:21:36 +09001674 bss->freq == local->oper_channel->center_freq &&
Ester Kummerae6a44e2008-06-27 18:54:48 +03001675 elems->ssid_len == sdata->u.sta.ssid_len &&
1676 memcmp(elems->ssid, sdata->u.sta.ssid,
1677 sdata->u.sta.ssid_len) == 0) {
Bruno Randolf9d9bf772008-02-18 11:21:36 +09001678 if (rx_status->flag & RX_FLAG_TSFT) {
1679 /* in order for correct IBSS merging we need mactime
1680 *
1681 * since mactime is defined as the time the first data
1682 * symbol of the frame hits the PHY, and the timestamp
1683 * of the beacon is defined as "the time that the data
1684 * symbol containing the first bit of the timestamp is
1685 * transmitted to the PHY plus the transmitting STA’s
1686 * delays through its local PHY from the MAC-PHY
1687 * interface to its interface with the WM"
1688 * (802.11 11.1.2) - equals the time this bit arrives at
1689 * the receiver - we have to take into account the
1690 * offset between the two.
1691 * e.g: at 1 MBit that means mactime is 192 usec earlier
1692 * (=24 bytes * 8 usecs/byte) than the beacon timestamp.
1693 */
Jouni Malinen0fb8ca42008-12-12 14:38:33 +02001694 int rate;
1695 if (rx_status->flag & RX_FLAG_HT) {
1696 rate = 65; /* TODO: HT rates */
1697 } else {
1698 rate = local->hw.wiphy->bands[band]->
Bruno Randolf9d9bf772008-02-18 11:21:36 +09001699 bitrates[rx_status->rate_idx].bitrate;
Jouni Malinen0fb8ca42008-12-12 14:38:33 +02001700 }
Bruno Randolf9d9bf772008-02-18 11:21:36 +09001701 rx_timestamp = rx_status->mactime + (24 * 8 * 10 / rate);
1702 } else if (local && local->ops && local->ops->get_tsf)
1703 /* second best option: get current TSF */
1704 rx_timestamp = local->ops->get_tsf(local_to_hw(local));
1705 else
1706 /* can't merge without knowing the TSF */
1707 rx_timestamp = -1LLU;
1708#ifdef CONFIG_MAC80211_IBSS_DEBUG
Johannes Berg0c68ae262008-10-27 15:56:10 -07001709 printk(KERN_DEBUG "RX beacon SA=%pM BSSID="
1710 "%pM TSF=0x%llx BCN=0x%llx diff=%lld @%lu\n",
1711 mgmt->sa, mgmt->bssid,
Bruno Randolf9d9bf772008-02-18 11:21:36 +09001712 (unsigned long long)rx_timestamp,
1713 (unsigned long long)beacon_timestamp,
1714 (unsigned long long)(rx_timestamp - beacon_timestamp),
1715 jiffies);
1716#endif /* CONFIG_MAC80211_IBSS_DEBUG */
1717 if (beacon_timestamp > rx_timestamp) {
John W. Linville576fdea2008-08-26 20:33:34 -04001718#ifdef CONFIG_MAC80211_IBSS_DEBUG
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001719 printk(KERN_DEBUG "%s: beacon TSF higher than "
Johannes Berg0c68ae262008-10-27 15:56:10 -07001720 "local TSF - IBSS merge with BSSID %pM\n",
1721 sdata->dev->name, mgmt->bssid);
Johannes Bergfba4a1e2008-02-21 11:08:33 +01001722#endif
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001723 ieee80211_sta_join_ibss(sdata, &sdata->u.sta, bss);
Rami Rosenab1f5c02008-12-11 14:00:25 +02001724 ieee80211_ibss_add_sta(sdata, mgmt->bssid, mgmt->sa, supp_rates);
Bruno Randolf9d9bf772008-02-18 11:21:36 +09001725 }
1726 }
1727
Johannes Berg3e122be2008-07-09 14:40:34 +02001728 ieee80211_rx_bss_put(local, bss);
Jiri Bencf0706e82007-05-05 11:45:53 -07001729}
1730
1731
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001732static void ieee80211_rx_mgmt_probe_resp(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001733 struct ieee80211_mgmt *mgmt,
1734 size_t len,
1735 struct ieee80211_rx_status *rx_status)
1736{
Ester Kummerae6a44e2008-06-27 18:54:48 +03001737 size_t baselen;
1738 struct ieee802_11_elems elems;
Ron Rindjunsky9859b812008-08-09 03:02:19 +03001739 struct ieee80211_if_sta *ifsta = &sdata->u.sta;
Ester Kummerae6a44e2008-06-27 18:54:48 +03001740
Tomas Winkler8e7cdbb2008-08-03 14:32:01 +03001741 if (memcmp(mgmt->da, sdata->dev->dev_addr, ETH_ALEN))
1742 return; /* ignore ProbeResp to foreign address */
1743
Ester Kummerae6a44e2008-06-27 18:54:48 +03001744 baselen = (u8 *) mgmt->u.probe_resp.variable - (u8 *) mgmt;
1745 if (baselen > len)
1746 return;
1747
1748 ieee802_11_parse_elems(mgmt->u.probe_resp.variable, len - baselen,
1749 &elems);
1750
Johannes Berg98c8fcc2008-09-08 17:44:26 +02001751 ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems, false);
Ron Rindjunsky9859b812008-08-09 03:02:19 +03001752
1753 /* direct probe may be part of the association flow */
1754 if (test_and_clear_bit(IEEE80211_STA_REQ_DIRECT_PROBE,
1755 &ifsta->request)) {
1756 printk(KERN_DEBUG "%s direct probe responded\n",
1757 sdata->dev->name);
1758 ieee80211_authenticate(sdata, ifsta);
1759 }
Jiri Bencf0706e82007-05-05 11:45:53 -07001760}
1761
1762
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001763static void ieee80211_rx_mgmt_beacon(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001764 struct ieee80211_mgmt *mgmt,
1765 size_t len,
1766 struct ieee80211_rx_status *rx_status)
1767{
Jiri Bencf0706e82007-05-05 11:45:53 -07001768 struct ieee80211_if_sta *ifsta;
Jiri Bencf0706e82007-05-05 11:45:53 -07001769 size_t baselen;
1770 struct ieee802_11_elems elems;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001771 struct ieee80211_local *local = sdata->local;
Johannes Berg471b3ef2007-12-28 14:32:58 +01001772 u32 changed = 0;
Vivek Natarajana97b77b2008-12-23 18:39:02 -08001773 bool erp_valid, directed_tim, is_mc = false;
Johannes Berg7a5158e2008-10-08 10:59:33 +02001774 u8 erp_value = 0;
Jiri Bencf0706e82007-05-05 11:45:53 -07001775
Ester Kummerae6a44e2008-06-27 18:54:48 +03001776 /* Process beacon from the current BSS */
1777 baselen = (u8 *) mgmt->u.beacon.variable - (u8 *) mgmt;
1778 if (baselen > len)
1779 return;
1780
1781 ieee802_11_parse_elems(mgmt->u.beacon.variable, len - baselen, &elems);
1782
Johannes Berg98c8fcc2008-09-08 17:44:26 +02001783 ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems, true);
Jiri Bencf0706e82007-05-05 11:45:53 -07001784
Johannes Berg05c914f2008-09-11 00:01:58 +02001785 if (sdata->vif.type != NL80211_IFTYPE_STATION)
Jiri Bencf0706e82007-05-05 11:45:53 -07001786 return;
1787 ifsta = &sdata->u.sta;
1788
Jiri Slabyd6f2da52007-08-28 17:01:54 -04001789 if (!(ifsta->flags & IEEE80211_STA_ASSOCIATED) ||
Jiri Bencf0706e82007-05-05 11:45:53 -07001790 memcmp(ifsta->bssid, mgmt->bssid, ETH_ALEN) != 0)
1791 return;
1792
Sujithc481ec92009-01-06 09:28:37 +05301793 if (rx_status->freq != local->hw.conf.channel->center_freq)
1794 return;
1795
Johannes Bergfe3fa822008-09-08 11:05:09 +02001796 ieee80211_sta_wmm_params(local, ifsta, elems.wmm_param,
1797 elems.wmm_param_len);
1798
Johannes Berg4be8c382009-01-07 18:28:20 +01001799 if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK &&
1800 local->hw.conf.flags & IEEE80211_CONF_PS) {
Vivek Natarajana97b77b2008-12-23 18:39:02 -08001801 directed_tim = check_tim(&elems, ifsta->aid, &is_mc);
1802
1803 if (directed_tim || is_mc) {
Johannes Berg4be8c382009-01-07 18:28:20 +01001804 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
1805 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
1806 ieee80211_send_nullfunc(local, sdata, 0);
Vivek Natarajana97b77b2008-12-23 18:39:02 -08001807 }
1808 }
Johannes Berg7a5158e2008-10-08 10:59:33 +02001809
1810 if (elems.erp_info && elems.erp_info_len >= 1) {
1811 erp_valid = true;
1812 erp_value = elems.erp_info[0];
1813 } else {
1814 erp_valid = false;
John W. Linville50c4afb2008-04-15 14:09:27 -04001815 }
Johannes Berg7a5158e2008-10-08 10:59:33 +02001816 changed |= ieee80211_handle_bss_capability(sdata,
1817 le16_to_cpu(mgmt->u.beacon.capab_info),
1818 erp_valid, erp_value);
Jiri Bencf0706e82007-05-05 11:45:53 -07001819
Ron Rindjunskyd3c990f2007-11-26 16:14:34 +02001820
Johannes Bergae5eb022008-10-14 16:58:37 +02001821 if (elems.ht_cap_elem && elems.ht_info_elem && elems.wmm_param) {
1822 struct sta_info *sta;
1823 struct ieee80211_supported_band *sband;
1824 u16 ap_ht_cap_flags;
1825
1826 rcu_read_lock();
1827
1828 sta = sta_info_get(local, ifsta->bssid);
1829 if (!sta) {
1830 rcu_read_unlock();
1831 return;
1832 }
1833
1834 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
1835
1836 ieee80211_ht_cap_ie_to_sta_ht_cap(sband,
1837 elems.ht_cap_elem, &sta->sta.ht_cap);
1838
1839 ap_ht_cap_flags = sta->sta.ht_cap.cap;
1840
1841 rcu_read_unlock();
1842
1843 changed |= ieee80211_enable_ht(sdata, elems.ht_info_elem,
1844 ap_ht_cap_flags);
Ron Rindjunskyd3c990f2007-11-26 16:14:34 +02001845 }
1846
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001847 if (elems.country_elem) {
1848 /* Note we are only reviewing this on beacons
1849 * for the BSSID we are associated to */
1850 regulatory_hint_11d(local->hw.wiphy,
1851 elems.country_elem, elems.country_elem_len);
1852 }
1853
Johannes Berg471b3ef2007-12-28 14:32:58 +01001854 ieee80211_bss_info_change_notify(sdata, changed);
Jiri Bencf0706e82007-05-05 11:45:53 -07001855}
1856
1857
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001858static void ieee80211_rx_mgmt_probe_req(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001859 struct ieee80211_if_sta *ifsta,
1860 struct ieee80211_mgmt *mgmt,
Rami Rosen504a71e2009-01-06 10:50:51 +02001861 size_t len)
Jiri Bencf0706e82007-05-05 11:45:53 -07001862{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001863 struct ieee80211_local *local = sdata->local;
Jiri Bencf0706e82007-05-05 11:45:53 -07001864 int tx_last_beacon;
1865 struct sk_buff *skb;
1866 struct ieee80211_mgmt *resp;
1867 u8 *pos, *end;
1868
Johannes Berg05c914f2008-09-11 00:01:58 +02001869 if (sdata->vif.type != NL80211_IFTYPE_ADHOC ||
Tomas Winkler48c2fc52008-08-06 14:22:01 +03001870 ifsta->state != IEEE80211_STA_MLME_IBSS_JOINED ||
Jiri Bencf0706e82007-05-05 11:45:53 -07001871 len < 24 + 2 || !ifsta->probe_resp)
1872 return;
1873
1874 if (local->ops->tx_last_beacon)
1875 tx_last_beacon = local->ops->tx_last_beacon(local_to_hw(local));
1876 else
1877 tx_last_beacon = 1;
1878
1879#ifdef CONFIG_MAC80211_IBSS_DEBUG
Johannes Berg0c68ae262008-10-27 15:56:10 -07001880 printk(KERN_DEBUG "%s: RX ProbeReq SA=%pM DA=%pM BSSID=%pM"
1881 " (tx_last_beacon=%d)\n",
1882 sdata->dev->name, mgmt->sa, mgmt->da,
1883 mgmt->bssid, tx_last_beacon);
Jiri Bencf0706e82007-05-05 11:45:53 -07001884#endif /* CONFIG_MAC80211_IBSS_DEBUG */
1885
1886 if (!tx_last_beacon)
1887 return;
1888
1889 if (memcmp(mgmt->bssid, ifsta->bssid, ETH_ALEN) != 0 &&
1890 memcmp(mgmt->bssid, "\xff\xff\xff\xff\xff\xff", ETH_ALEN) != 0)
1891 return;
1892
1893 end = ((u8 *) mgmt) + len;
1894 pos = mgmt->u.probe_req.variable;
1895 if (pos[0] != WLAN_EID_SSID ||
1896 pos + 2 + pos[1] > end) {
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001897#ifdef CONFIG_MAC80211_IBSS_DEBUG
1898 printk(KERN_DEBUG "%s: Invalid SSID IE in ProbeReq "
Johannes Berg0c68ae262008-10-27 15:56:10 -07001899 "from %pM\n",
1900 sdata->dev->name, mgmt->sa);
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001901#endif
Jiri Bencf0706e82007-05-05 11:45:53 -07001902 return;
1903 }
1904 if (pos[1] != 0 &&
1905 (pos[1] != ifsta->ssid_len ||
1906 memcmp(pos + 2, ifsta->ssid, ifsta->ssid_len) != 0)) {
1907 /* Ignore ProbeReq for foreign SSID */
1908 return;
1909 }
1910
1911 /* Reply with ProbeResp */
Michael Wu0ec0b7a2007-07-27 15:43:24 +02001912 skb = skb_copy(ifsta->probe_resp, GFP_KERNEL);
Jiri Bencf0706e82007-05-05 11:45:53 -07001913 if (!skb)
1914 return;
1915
1916 resp = (struct ieee80211_mgmt *) skb->data;
1917 memcpy(resp->da, mgmt->sa, ETH_ALEN);
1918#ifdef CONFIG_MAC80211_IBSS_DEBUG
Johannes Berg0c68ae262008-10-27 15:56:10 -07001919 printk(KERN_DEBUG "%s: Sending ProbeResp to %pM\n",
1920 sdata->dev->name, resp->da);
Jiri Bencf0706e82007-05-05 11:45:53 -07001921#endif /* CONFIG_MAC80211_IBSS_DEBUG */
Johannes Berge50db652008-09-09 15:07:09 +02001922 ieee80211_tx_skb(sdata, skb, 0);
Jiri Bencf0706e82007-05-05 11:45:53 -07001923}
1924
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001925void ieee80211_sta_rx_mgmt(struct ieee80211_sub_if_data *sdata, struct sk_buff *skb,
Jiri Bencf0706e82007-05-05 11:45:53 -07001926 struct ieee80211_rx_status *rx_status)
1927{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001928 struct ieee80211_local *local = sdata->local;
Jiri Bencf0706e82007-05-05 11:45:53 -07001929 struct ieee80211_if_sta *ifsta;
1930 struct ieee80211_mgmt *mgmt;
1931 u16 fc;
1932
1933 if (skb->len < 24)
1934 goto fail;
1935
Jiri Bencf0706e82007-05-05 11:45:53 -07001936 ifsta = &sdata->u.sta;
1937
1938 mgmt = (struct ieee80211_mgmt *) skb->data;
1939 fc = le16_to_cpu(mgmt->frame_control);
1940
1941 switch (fc & IEEE80211_FCTL_STYPE) {
1942 case IEEE80211_STYPE_PROBE_REQ:
1943 case IEEE80211_STYPE_PROBE_RESP:
1944 case IEEE80211_STYPE_BEACON:
1945 memcpy(skb->cb, rx_status, sizeof(*rx_status));
1946 case IEEE80211_STYPE_AUTH:
1947 case IEEE80211_STYPE_ASSOC_RESP:
1948 case IEEE80211_STYPE_REASSOC_RESP:
1949 case IEEE80211_STYPE_DEAUTH:
1950 case IEEE80211_STYPE_DISASSOC:
1951 skb_queue_tail(&ifsta->skb_queue, skb);
1952 queue_work(local->hw.workqueue, &ifsta->work);
1953 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001954 }
1955
1956 fail:
1957 kfree_skb(skb);
1958}
1959
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001960static void ieee80211_sta_rx_queued_mgmt(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001961 struct sk_buff *skb)
1962{
1963 struct ieee80211_rx_status *rx_status;
Jiri Bencf0706e82007-05-05 11:45:53 -07001964 struct ieee80211_if_sta *ifsta;
1965 struct ieee80211_mgmt *mgmt;
1966 u16 fc;
1967
Jiri Bencf0706e82007-05-05 11:45:53 -07001968 ifsta = &sdata->u.sta;
1969
1970 rx_status = (struct ieee80211_rx_status *) skb->cb;
1971 mgmt = (struct ieee80211_mgmt *) skb->data;
1972 fc = le16_to_cpu(mgmt->frame_control);
1973
1974 switch (fc & IEEE80211_FCTL_STYPE) {
1975 case IEEE80211_STYPE_PROBE_REQ:
Rami Rosen504a71e2009-01-06 10:50:51 +02001976 ieee80211_rx_mgmt_probe_req(sdata, ifsta, mgmt, skb->len);
Jiri Bencf0706e82007-05-05 11:45:53 -07001977 break;
1978 case IEEE80211_STYPE_PROBE_RESP:
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001979 ieee80211_rx_mgmt_probe_resp(sdata, mgmt, skb->len, rx_status);
Jiri Bencf0706e82007-05-05 11:45:53 -07001980 break;
1981 case IEEE80211_STYPE_BEACON:
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001982 ieee80211_rx_mgmt_beacon(sdata, mgmt, skb->len, rx_status);
Jiri Bencf0706e82007-05-05 11:45:53 -07001983 break;
1984 case IEEE80211_STYPE_AUTH:
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001985 ieee80211_rx_mgmt_auth(sdata, ifsta, mgmt, skb->len);
Jiri Bencf0706e82007-05-05 11:45:53 -07001986 break;
1987 case IEEE80211_STYPE_ASSOC_RESP:
Johannes Berg471b3ef2007-12-28 14:32:58 +01001988 ieee80211_rx_mgmt_assoc_resp(sdata, ifsta, mgmt, skb->len, 0);
Jiri Bencf0706e82007-05-05 11:45:53 -07001989 break;
1990 case IEEE80211_STYPE_REASSOC_RESP:
Johannes Berg471b3ef2007-12-28 14:32:58 +01001991 ieee80211_rx_mgmt_assoc_resp(sdata, ifsta, mgmt, skb->len, 1);
Jiri Bencf0706e82007-05-05 11:45:53 -07001992 break;
1993 case IEEE80211_STYPE_DEAUTH:
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001994 ieee80211_rx_mgmt_deauth(sdata, ifsta, mgmt, skb->len);
Jiri Bencf0706e82007-05-05 11:45:53 -07001995 break;
1996 case IEEE80211_STYPE_DISASSOC:
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001997 ieee80211_rx_mgmt_disassoc(sdata, ifsta, mgmt, skb->len);
Jiri Bencf0706e82007-05-05 11:45:53 -07001998 break;
1999 }
2000
2001 kfree_skb(skb);
2002}
2003
2004
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002005static int ieee80211_sta_active_ibss(struct ieee80211_sub_if_data *sdata)
Jiri Bencf0706e82007-05-05 11:45:53 -07002006{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002007 struct ieee80211_local *local = sdata->local;
Jiri Bencf0706e82007-05-05 11:45:53 -07002008 int active = 0;
2009 struct sta_info *sta;
2010
Johannes Bergd0709a62008-02-25 16:27:46 +01002011 rcu_read_lock();
2012
2013 list_for_each_entry_rcu(sta, &local->sta_list, list) {
2014 if (sta->sdata == sdata &&
Jiri Bencf0706e82007-05-05 11:45:53 -07002015 time_after(sta->last_rx + IEEE80211_IBSS_MERGE_INTERVAL,
2016 jiffies)) {
2017 active++;
2018 break;
2019 }
2020 }
Johannes Bergd0709a62008-02-25 16:27:46 +01002021
2022 rcu_read_unlock();
Jiri Bencf0706e82007-05-05 11:45:53 -07002023
2024 return active;
2025}
2026
2027
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002028static void ieee80211_sta_merge_ibss(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07002029 struct ieee80211_if_sta *ifsta)
2030{
2031 mod_timer(&ifsta->timer, jiffies + IEEE80211_IBSS_MERGE_INTERVAL);
2032
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002033 ieee80211_sta_expire(sdata, IEEE80211_IBSS_INACTIVITY_LIMIT);
2034 if (ieee80211_sta_active_ibss(sdata))
Jiri Bencf0706e82007-05-05 11:45:53 -07002035 return;
2036
Alina Friedrichsen137f9f42009-01-06 02:49:07 +01002037 if ((sdata->u.sta.flags & IEEE80211_STA_BSSID_SET) &&
2038 (!(sdata->u.sta.flags & IEEE80211_STA_AUTO_CHANNEL_SEL)))
2039 return;
2040
Jiri Bencf0706e82007-05-05 11:45:53 -07002041 printk(KERN_DEBUG "%s: No active IBSS STAs - trying to scan for other "
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002042 "IBSS networks with same SSID (merge)\n", sdata->dev->name);
Johannes Bergc2b13452008-09-11 00:01:55 +02002043 ieee80211_request_scan(sdata, ifsta->ssid, ifsta->ssid_len);
Jiri Bencf0706e82007-05-05 11:45:53 -07002044}
2045
2046
Johannes Berg9c6bd792008-09-11 00:01:52 +02002047static void ieee80211_sta_timer(unsigned long data)
Jiri Bencf0706e82007-05-05 11:45:53 -07002048{
2049 struct ieee80211_sub_if_data *sdata =
2050 (struct ieee80211_sub_if_data *) data;
2051 struct ieee80211_if_sta *ifsta = &sdata->u.sta;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002052 struct ieee80211_local *local = sdata->local;
Jiri Bencf0706e82007-05-05 11:45:53 -07002053
2054 set_bit(IEEE80211_STA_REQ_RUN, &ifsta->request);
2055 queue_work(local->hw.workqueue, &ifsta->work);
2056}
2057
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002058static void ieee80211_sta_reset_auth(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07002059 struct ieee80211_if_sta *ifsta)
2060{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002061 struct ieee80211_local *local = sdata->local;
Jiri Bencf0706e82007-05-05 11:45:53 -07002062
2063 if (local->ops->reset_tsf) {
2064 /* Reset own TSF to allow time synchronization work. */
2065 local->ops->reset_tsf(local_to_hw(local));
2066 }
2067
2068 ifsta->wmm_last_param_set = -1; /* allow any WMM update */
2069
2070
2071 if (ifsta->auth_algs & IEEE80211_AUTH_ALG_OPEN)
2072 ifsta->auth_alg = WLAN_AUTH_OPEN;
2073 else if (ifsta->auth_algs & IEEE80211_AUTH_ALG_SHARED_KEY)
2074 ifsta->auth_alg = WLAN_AUTH_SHARED_KEY;
2075 else if (ifsta->auth_algs & IEEE80211_AUTH_ALG_LEAP)
2076 ifsta->auth_alg = WLAN_AUTH_LEAP;
2077 else
2078 ifsta->auth_alg = WLAN_AUTH_OPEN;
Jiri Bencf0706e82007-05-05 11:45:53 -07002079 ifsta->auth_transaction = -1;
Jiri Slabyd6f2da52007-08-28 17:01:54 -04002080 ifsta->flags &= ~IEEE80211_STA_ASSOCIATED;
Ron Rindjunsky6042a3e2008-08-08 01:50:46 +03002081 ifsta->assoc_scan_tries = 0;
Ron Rindjunsky9859b812008-08-09 03:02:19 +03002082 ifsta->direct_probe_tries = 0;
Ron Rindjunsky6042a3e2008-08-08 01:50:46 +03002083 ifsta->auth_tries = 0;
2084 ifsta->assoc_tries = 0;
Tomas Winkler24e64622008-09-08 17:33:40 +02002085 netif_tx_stop_all_queues(sdata->dev);
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002086 netif_carrier_off(sdata->dev);
Jiri Bencf0706e82007-05-05 11:45:53 -07002087}
2088
2089
Jiri Bencf0706e82007-05-05 11:45:53 -07002090static int ieee80211_sta_match_ssid(struct ieee80211_if_sta *ifsta,
2091 const char *ssid, int ssid_len)
2092{
2093 int tmp, hidden_ssid;
2094
Michael Wu48225702007-10-19 17:14:36 -04002095 if (ssid_len == ifsta->ssid_len &&
2096 !memcmp(ifsta->ssid, ssid, ssid_len))
Jiri Bencf0706e82007-05-05 11:45:53 -07002097 return 1;
2098
Jiri Slabyd6f2da52007-08-28 17:01:54 -04002099 if (ifsta->flags & IEEE80211_STA_AUTO_BSSID_SEL)
Jiri Bencf0706e82007-05-05 11:45:53 -07002100 return 0;
2101
2102 hidden_ssid = 1;
2103 tmp = ssid_len;
2104 while (tmp--) {
2105 if (ssid[tmp] != '\0') {
2106 hidden_ssid = 0;
2107 break;
2108 }
2109 }
2110
Fabio Rossicb3da8c2008-11-26 22:44:23 +01002111 if (hidden_ssid && (ifsta->ssid_len == ssid_len || ssid_len == 0))
Jiri Bencf0706e82007-05-05 11:45:53 -07002112 return 1;
2113
2114 if (ssid_len == 1 && ssid[0] == ' ')
2115 return 1;
2116
2117 return 0;
2118}
2119
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002120static int ieee80211_sta_create_ibss(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07002121 struct ieee80211_if_sta *ifsta)
2122{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002123 struct ieee80211_local *local = sdata->local;
Johannes Bergc2b13452008-09-11 00:01:55 +02002124 struct ieee80211_bss *bss;
Johannes Berg8318d782008-01-24 19:38:38 +01002125 struct ieee80211_supported_band *sband;
Jiri Bencf0706e82007-05-05 11:45:53 -07002126 u8 bssid[ETH_ALEN], *pos;
2127 int i;
Tomas Winkler167ad6f2008-05-21 18:17:05 +03002128 int ret;
Jiri Bencf0706e82007-05-05 11:45:53 -07002129
2130#if 0
2131 /* Easier testing, use fixed BSSID. */
2132 memset(bssid, 0xfe, ETH_ALEN);
2133#else
2134 /* Generate random, not broadcast, locally administered BSSID. Mix in
2135 * own MAC address to make sure that devices that do not have proper
2136 * random number generator get different BSSID. */
2137 get_random_bytes(bssid, ETH_ALEN);
2138 for (i = 0; i < ETH_ALEN; i++)
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002139 bssid[i] ^= sdata->dev->dev_addr[i];
Jiri Bencf0706e82007-05-05 11:45:53 -07002140 bssid[0] &= ~0x01;
2141 bssid[0] |= 0x02;
2142#endif
2143
Johannes Berg0c68ae262008-10-27 15:56:10 -07002144 printk(KERN_DEBUG "%s: Creating new IBSS network, BSSID %pM\n",
2145 sdata->dev->name, bssid);
Jiri Bencf0706e82007-05-05 11:45:53 -07002146
Johannes Berg98c8fcc2008-09-08 17:44:26 +02002147 bss = ieee80211_rx_bss_add(local, bssid,
Johannes Berg8318d782008-01-24 19:38:38 +01002148 local->hw.conf.channel->center_freq,
John W. Linvillecffdd302007-10-05 14:23:27 -04002149 sdata->u.sta.ssid, sdata->u.sta.ssid_len);
Jiri Bencf0706e82007-05-05 11:45:53 -07002150 if (!bss)
2151 return -ENOMEM;
2152
Johannes Berg8318d782008-01-24 19:38:38 +01002153 bss->band = local->hw.conf.channel->band;
2154 sband = local->hw.wiphy->bands[bss->band];
Jiri Bencf0706e82007-05-05 11:45:53 -07002155
2156 if (local->hw.conf.beacon_int == 0)
Tomas Winklerdc0ae302008-06-12 22:38:37 +03002157 local->hw.conf.beacon_int = 100;
Jiri Bencf0706e82007-05-05 11:45:53 -07002158 bss->beacon_int = local->hw.conf.beacon_int;
Jiri Bencf0706e82007-05-05 11:45:53 -07002159 bss->last_update = jiffies;
2160 bss->capability = WLAN_CAPABILITY_IBSS;
Johannes Berg988c0f72008-04-17 19:21:22 +02002161
2162 if (sdata->default_key)
Jiri Bencf0706e82007-05-05 11:45:53 -07002163 bss->capability |= WLAN_CAPABILITY_PRIVACY;
Johannes Berg988c0f72008-04-17 19:21:22 +02002164 else
Jiri Bencf0706e82007-05-05 11:45:53 -07002165 sdata->drop_unencrypted = 0;
Johannes Berg988c0f72008-04-17 19:21:22 +02002166
Johannes Berg8318d782008-01-24 19:38:38 +01002167 bss->supp_rates_len = sband->n_bitrates;
Jiri Bencf0706e82007-05-05 11:45:53 -07002168 pos = bss->supp_rates;
Johannes Berg8318d782008-01-24 19:38:38 +01002169 for (i = 0; i < sband->n_bitrates; i++) {
2170 int rate = sband->bitrates[i].bitrate;
Jiri Bencf0706e82007-05-05 11:45:53 -07002171 *pos++ = (u8) (rate / 5);
2172 }
2173
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002174 ret = ieee80211_sta_join_ibss(sdata, ifsta, bss);
Johannes Berg3e122be2008-07-09 14:40:34 +02002175 ieee80211_rx_bss_put(local, bss);
Tomas Winkler167ad6f2008-05-21 18:17:05 +03002176 return ret;
Jiri Bencf0706e82007-05-05 11:45:53 -07002177}
2178
2179
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002180static int ieee80211_sta_find_ibss(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07002181 struct ieee80211_if_sta *ifsta)
2182{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002183 struct ieee80211_local *local = sdata->local;
Johannes Bergc2b13452008-09-11 00:01:55 +02002184 struct ieee80211_bss *bss;
Jiri Bencf0706e82007-05-05 11:45:53 -07002185 int found = 0;
2186 u8 bssid[ETH_ALEN];
2187 int active_ibss;
2188
2189 if (ifsta->ssid_len == 0)
2190 return -EINVAL;
2191
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002192 active_ibss = ieee80211_sta_active_ibss(sdata);
Jiri Bencf0706e82007-05-05 11:45:53 -07002193#ifdef CONFIG_MAC80211_IBSS_DEBUG
2194 printk(KERN_DEBUG "%s: sta_find_ibss (active_ibss=%d)\n",
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002195 sdata->dev->name, active_ibss);
Jiri Bencf0706e82007-05-05 11:45:53 -07002196#endif /* CONFIG_MAC80211_IBSS_DEBUG */
Johannes Bergc2b13452008-09-11 00:01:55 +02002197 spin_lock_bh(&local->bss_lock);
2198 list_for_each_entry(bss, &local->bss_list, list) {
Jiri Bencf0706e82007-05-05 11:45:53 -07002199 if (ifsta->ssid_len != bss->ssid_len ||
2200 memcmp(ifsta->ssid, bss->ssid, bss->ssid_len) != 0
2201 || !(bss->capability & WLAN_CAPABILITY_IBSS))
2202 continue;
2203#ifdef CONFIG_MAC80211_IBSS_DEBUG
Johannes Berg0c68ae262008-10-27 15:56:10 -07002204 printk(KERN_DEBUG " bssid=%pM found\n", bss->bssid);
Jiri Bencf0706e82007-05-05 11:45:53 -07002205#endif /* CONFIG_MAC80211_IBSS_DEBUG */
2206 memcpy(bssid, bss->bssid, ETH_ALEN);
2207 found = 1;
2208 if (active_ibss || memcmp(bssid, ifsta->bssid, ETH_ALEN) != 0)
2209 break;
2210 }
Johannes Bergc2b13452008-09-11 00:01:55 +02002211 spin_unlock_bh(&local->bss_lock);
Jiri Bencf0706e82007-05-05 11:45:53 -07002212
2213#ifdef CONFIG_MAC80211_IBSS_DEBUG
Vladimir Koutny6e438292008-07-07 14:23:01 +02002214 if (found)
Johannes Berg0c68ae262008-10-27 15:56:10 -07002215 printk(KERN_DEBUG " sta_find_ibss: selected %pM current "
2216 "%pM\n", bssid, ifsta->bssid);
Jiri Bencf0706e82007-05-05 11:45:53 -07002217#endif /* CONFIG_MAC80211_IBSS_DEBUG */
Daniel Drake80693ce2008-07-19 23:31:17 +01002218
2219 if (found && memcmp(ifsta->bssid, bssid, ETH_ALEN) != 0) {
Tomas Winkler167ad6f2008-05-21 18:17:05 +03002220 int ret;
Daniel Drake80693ce2008-07-19 23:31:17 +01002221 int search_freq;
2222
2223 if (ifsta->flags & IEEE80211_STA_AUTO_CHANNEL_SEL)
2224 search_freq = bss->freq;
2225 else
2226 search_freq = local->hw.conf.channel->center_freq;
2227
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002228 bss = ieee80211_rx_bss_get(local, bssid, search_freq,
Daniel Drake80693ce2008-07-19 23:31:17 +01002229 ifsta->ssid, ifsta->ssid_len);
2230 if (!bss)
2231 goto dont_join;
2232
Johannes Berg0c68ae262008-10-27 15:56:10 -07002233 printk(KERN_DEBUG "%s: Selected IBSS BSSID %pM"
Jiri Bencf0706e82007-05-05 11:45:53 -07002234 " based on configured SSID\n",
Johannes Berg0c68ae262008-10-27 15:56:10 -07002235 sdata->dev->name, bssid);
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002236 ret = ieee80211_sta_join_ibss(sdata, ifsta, bss);
Johannes Berg3e122be2008-07-09 14:40:34 +02002237 ieee80211_rx_bss_put(local, bss);
Tomas Winkler167ad6f2008-05-21 18:17:05 +03002238 return ret;
Jiri Bencf0706e82007-05-05 11:45:53 -07002239 }
Daniel Drake80693ce2008-07-19 23:31:17 +01002240
2241dont_join:
Jiri Bencf0706e82007-05-05 11:45:53 -07002242#ifdef CONFIG_MAC80211_IBSS_DEBUG
2243 printk(KERN_DEBUG " did not try to join ibss\n");
2244#endif /* CONFIG_MAC80211_IBSS_DEBUG */
2245
2246 /* Selected IBSS not found in current scan results - try to scan */
Tomas Winkler48c2fc52008-08-06 14:22:01 +03002247 if (ifsta->state == IEEE80211_STA_MLME_IBSS_JOINED &&
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002248 !ieee80211_sta_active_ibss(sdata)) {
Jiri Bencf0706e82007-05-05 11:45:53 -07002249 mod_timer(&ifsta->timer, jiffies +
2250 IEEE80211_IBSS_MERGE_INTERVAL);
2251 } else if (time_after(jiffies, local->last_scan_completed +
2252 IEEE80211_SCAN_INTERVAL)) {
2253 printk(KERN_DEBUG "%s: Trigger new scan to find an IBSS to "
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002254 "join\n", sdata->dev->name);
Johannes Bergc2b13452008-09-11 00:01:55 +02002255 return ieee80211_request_scan(sdata, ifsta->ssid,
Jiri Bencf0706e82007-05-05 11:45:53 -07002256 ifsta->ssid_len);
Tomas Winkler48c2fc52008-08-06 14:22:01 +03002257 } else if (ifsta->state != IEEE80211_STA_MLME_IBSS_JOINED) {
Jiri Bencf0706e82007-05-05 11:45:53 -07002258 int interval = IEEE80211_SCAN_INTERVAL;
2259
2260 if (time_after(jiffies, ifsta->ibss_join_req +
2261 IEEE80211_IBSS_JOIN_TIMEOUT)) {
Jiri Slabyd6f2da52007-08-28 17:01:54 -04002262 if ((ifsta->flags & IEEE80211_STA_CREATE_IBSS) &&
Johannes Berg8318d782008-01-24 19:38:38 +01002263 (!(local->oper_channel->flags &
2264 IEEE80211_CHAN_NO_IBSS)))
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002265 return ieee80211_sta_create_ibss(sdata, ifsta);
Jiri Slabyd6f2da52007-08-28 17:01:54 -04002266 if (ifsta->flags & IEEE80211_STA_CREATE_IBSS) {
Johannes Berg8318d782008-01-24 19:38:38 +01002267 printk(KERN_DEBUG "%s: IBSS not allowed on"
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002268 " %d MHz\n", sdata->dev->name,
Johannes Berg8318d782008-01-24 19:38:38 +01002269 local->hw.conf.channel->center_freq);
Jiri Bencf0706e82007-05-05 11:45:53 -07002270 }
2271
2272 /* No IBSS found - decrease scan interval and continue
2273 * scanning. */
2274 interval = IEEE80211_SCAN_INTERVAL_SLOW;
2275 }
2276
Tomas Winkler48c2fc52008-08-06 14:22:01 +03002277 ifsta->state = IEEE80211_STA_MLME_IBSS_SEARCH;
Jiri Bencf0706e82007-05-05 11:45:53 -07002278 mod_timer(&ifsta->timer, jiffies + interval);
2279 return 0;
2280 }
2281
2282 return 0;
2283}
2284
2285
Johannes Berg60f8b392008-09-08 17:44:22 +02002286static int ieee80211_sta_config_auth(struct ieee80211_sub_if_data *sdata,
2287 struct ieee80211_if_sta *ifsta)
2288{
2289 struct ieee80211_local *local = sdata->local;
Johannes Bergc2b13452008-09-11 00:01:55 +02002290 struct ieee80211_bss *bss, *selected = NULL;
Johannes Berg60f8b392008-09-08 17:44:22 +02002291 int top_rssi = 0, freq;
2292
Johannes Bergc2b13452008-09-11 00:01:55 +02002293 spin_lock_bh(&local->bss_lock);
Johannes Berg60f8b392008-09-08 17:44:22 +02002294 freq = local->oper_channel->center_freq;
Johannes Bergc2b13452008-09-11 00:01:55 +02002295 list_for_each_entry(bss, &local->bss_list, list) {
Johannes Berg60f8b392008-09-08 17:44:22 +02002296 if (!(bss->capability & WLAN_CAPABILITY_ESS))
2297 continue;
2298
2299 if ((ifsta->flags & (IEEE80211_STA_AUTO_SSID_SEL |
2300 IEEE80211_STA_AUTO_BSSID_SEL |
2301 IEEE80211_STA_AUTO_CHANNEL_SEL)) &&
2302 (!!(bss->capability & WLAN_CAPABILITY_PRIVACY) ^
2303 !!sdata->default_key))
2304 continue;
2305
2306 if (!(ifsta->flags & IEEE80211_STA_AUTO_CHANNEL_SEL) &&
2307 bss->freq != freq)
2308 continue;
2309
2310 if (!(ifsta->flags & IEEE80211_STA_AUTO_BSSID_SEL) &&
2311 memcmp(bss->bssid, ifsta->bssid, ETH_ALEN))
2312 continue;
2313
2314 if (!(ifsta->flags & IEEE80211_STA_AUTO_SSID_SEL) &&
2315 !ieee80211_sta_match_ssid(ifsta, bss->ssid, bss->ssid_len))
2316 continue;
2317
2318 if (!selected || top_rssi < bss->signal) {
2319 selected = bss;
2320 top_rssi = bss->signal;
2321 }
2322 }
2323 if (selected)
2324 atomic_inc(&selected->users);
Johannes Bergc2b13452008-09-11 00:01:55 +02002325 spin_unlock_bh(&local->bss_lock);
Johannes Berg60f8b392008-09-08 17:44:22 +02002326
2327 if (selected) {
2328 ieee80211_set_freq(sdata, selected->freq);
2329 if (!(ifsta->flags & IEEE80211_STA_SSID_SET))
2330 ieee80211_sta_set_ssid(sdata, selected->ssid,
2331 selected->ssid_len);
2332 ieee80211_sta_set_bssid(sdata, selected->bssid);
Johannes Bergb079ada2008-09-09 09:32:59 +02002333 ieee80211_sta_def_wmm_params(sdata, selected);
Jouni Malinenfdfacf02009-01-08 13:32:05 +02002334 if (sdata->u.sta.mfp == IEEE80211_MFP_REQUIRED)
2335 sdata->u.sta.flags |= IEEE80211_STA_MFP_ENABLED;
2336 else
2337 sdata->u.sta.flags &= ~IEEE80211_STA_MFP_ENABLED;
Johannes Berg60f8b392008-09-08 17:44:22 +02002338
2339 /* Send out direct probe if no probe resp was received or
2340 * the one we have is outdated
2341 */
2342 if (!selected->last_probe_resp ||
2343 time_after(jiffies, selected->last_probe_resp
2344 + IEEE80211_SCAN_RESULT_EXPIRE))
2345 ifsta->state = IEEE80211_STA_MLME_DIRECT_PROBE;
2346 else
2347 ifsta->state = IEEE80211_STA_MLME_AUTHENTICATE;
2348
2349 ieee80211_rx_bss_put(local, selected);
2350 ieee80211_sta_reset_auth(sdata, ifsta);
2351 return 0;
2352 } else {
2353 if (ifsta->assoc_scan_tries < IEEE80211_ASSOC_SCANS_MAX_TRIES) {
2354 ifsta->assoc_scan_tries++;
2355 if (ifsta->flags & IEEE80211_STA_AUTO_SSID_SEL)
Johannes Bergc2b13452008-09-11 00:01:55 +02002356 ieee80211_start_scan(sdata, NULL, 0);
Johannes Berg60f8b392008-09-08 17:44:22 +02002357 else
Johannes Bergc2b13452008-09-11 00:01:55 +02002358 ieee80211_start_scan(sdata, ifsta->ssid,
Johannes Berg60f8b392008-09-08 17:44:22 +02002359 ifsta->ssid_len);
2360 ifsta->state = IEEE80211_STA_MLME_AUTHENTICATE;
2361 set_bit(IEEE80211_STA_REQ_AUTH, &ifsta->request);
2362 } else
2363 ifsta->state = IEEE80211_STA_MLME_DISABLED;
2364 }
2365 return -1;
2366}
2367
2368
Johannes Berg9c6bd792008-09-11 00:01:52 +02002369static void ieee80211_sta_work(struct work_struct *work)
Johannes Berg60f8b392008-09-08 17:44:22 +02002370{
2371 struct ieee80211_sub_if_data *sdata =
2372 container_of(work, struct ieee80211_sub_if_data, u.sta.work);
2373 struct ieee80211_local *local = sdata->local;
2374 struct ieee80211_if_sta *ifsta;
2375 struct sk_buff *skb;
2376
2377 if (!netif_running(sdata->dev))
2378 return;
2379
Johannes Bergc2b13452008-09-11 00:01:55 +02002380 if (local->sw_scanning || local->hw_scanning)
Johannes Berg60f8b392008-09-08 17:44:22 +02002381 return;
2382
Johannes Berg05c914f2008-09-11 00:01:58 +02002383 if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION &&
2384 sdata->vif.type != NL80211_IFTYPE_ADHOC))
Johannes Berg60f8b392008-09-08 17:44:22 +02002385 return;
2386 ifsta = &sdata->u.sta;
2387
2388 while ((skb = skb_dequeue(&ifsta->skb_queue)))
2389 ieee80211_sta_rx_queued_mgmt(sdata, skb);
2390
Johannes Berg60f8b392008-09-08 17:44:22 +02002391 if (ifsta->state != IEEE80211_STA_MLME_DIRECT_PROBE &&
2392 ifsta->state != IEEE80211_STA_MLME_AUTHENTICATE &&
2393 ifsta->state != IEEE80211_STA_MLME_ASSOCIATE &&
2394 test_and_clear_bit(IEEE80211_STA_REQ_SCAN, &ifsta->request)) {
Johannes Bergc2b13452008-09-11 00:01:55 +02002395 ieee80211_start_scan(sdata, ifsta->scan_ssid,
2396 ifsta->scan_ssid_len);
Johannes Berg60f8b392008-09-08 17:44:22 +02002397 return;
2398 }
2399
2400 if (test_and_clear_bit(IEEE80211_STA_REQ_AUTH, &ifsta->request)) {
2401 if (ieee80211_sta_config_auth(sdata, ifsta))
2402 return;
2403 clear_bit(IEEE80211_STA_REQ_RUN, &ifsta->request);
2404 } else if (!test_and_clear_bit(IEEE80211_STA_REQ_RUN, &ifsta->request))
2405 return;
2406
2407 switch (ifsta->state) {
2408 case IEEE80211_STA_MLME_DISABLED:
2409 break;
2410 case IEEE80211_STA_MLME_DIRECT_PROBE:
2411 ieee80211_direct_probe(sdata, ifsta);
2412 break;
2413 case IEEE80211_STA_MLME_AUTHENTICATE:
2414 ieee80211_authenticate(sdata, ifsta);
2415 break;
2416 case IEEE80211_STA_MLME_ASSOCIATE:
2417 ieee80211_associate(sdata, ifsta);
2418 break;
2419 case IEEE80211_STA_MLME_ASSOCIATED:
2420 ieee80211_associated(sdata, ifsta);
2421 break;
2422 case IEEE80211_STA_MLME_IBSS_SEARCH:
2423 ieee80211_sta_find_ibss(sdata, ifsta);
2424 break;
2425 case IEEE80211_STA_MLME_IBSS_JOINED:
2426 ieee80211_sta_merge_ibss(sdata, ifsta);
2427 break;
Johannes Berg60f8b392008-09-08 17:44:22 +02002428 default:
2429 WARN_ON(1);
2430 break;
2431 }
2432
2433 if (ieee80211_privacy_mismatch(sdata, ifsta)) {
2434 printk(KERN_DEBUG "%s: privacy configuration mismatch and "
2435 "mixed-cell disabled - disassociate\n", sdata->dev->name);
2436
2437 ieee80211_set_disassoc(sdata, ifsta, false, true,
2438 WLAN_REASON_UNSPECIFIED);
2439 }
2440}
Johannes Berg0a51b272008-09-08 17:44:25 +02002441
Johannes Berga1678f82008-09-11 00:01:47 +02002442static void ieee80211_restart_sta_timer(struct ieee80211_sub_if_data *sdata)
2443{
Johannes Berg05c914f2008-09-11 00:01:58 +02002444 if (sdata->vif.type == NL80211_IFTYPE_STATION)
Johannes Berg7c950692008-09-11 00:01:48 +02002445 queue_work(sdata->local->hw.workqueue,
2446 &sdata->u.sta.work);
Johannes Berga1678f82008-09-11 00:01:47 +02002447}
2448
Johannes Berg9c6bd792008-09-11 00:01:52 +02002449/* interface setup */
2450void ieee80211_sta_setup_sdata(struct ieee80211_sub_if_data *sdata)
2451{
2452 struct ieee80211_if_sta *ifsta;
2453
2454 ifsta = &sdata->u.sta;
2455 INIT_WORK(&ifsta->work, ieee80211_sta_work);
Sujithc481ec92009-01-06 09:28:37 +05302456 INIT_WORK(&ifsta->chswitch_work, ieee80211_chswitch_work);
Johannes Berg9c6bd792008-09-11 00:01:52 +02002457 setup_timer(&ifsta->timer, ieee80211_sta_timer,
2458 (unsigned long) sdata);
Sujithc481ec92009-01-06 09:28:37 +05302459 setup_timer(&ifsta->chswitch_timer, ieee80211_chswitch_timer,
2460 (unsigned long) sdata);
Johannes Berg9c6bd792008-09-11 00:01:52 +02002461 skb_queue_head_init(&ifsta->skb_queue);
2462
2463 ifsta->capab = WLAN_CAPABILITY_ESS;
2464 ifsta->auth_algs = IEEE80211_AUTH_ALG_OPEN |
2465 IEEE80211_AUTH_ALG_SHARED_KEY;
2466 ifsta->flags |= IEEE80211_STA_CREATE_IBSS |
2467 IEEE80211_STA_AUTO_BSSID_SEL |
2468 IEEE80211_STA_AUTO_CHANNEL_SEL;
2469 if (ieee80211_num_regular_queues(&sdata->local->hw) >= 4)
2470 ifsta->flags |= IEEE80211_STA_WMM_ENABLED;
2471}
2472
2473/*
2474 * Add a new IBSS station, will also be called by the RX code when,
2475 * in IBSS mode, receiving a frame from a yet-unknown station, hence
2476 * must be callable in atomic context.
2477 */
2478struct sta_info *ieee80211_ibss_add_sta(struct ieee80211_sub_if_data *sdata,
Rami Rosenab1f5c02008-12-11 14:00:25 +02002479 u8 *bssid,u8 *addr, u64 supp_rates)
Johannes Berg9c6bd792008-09-11 00:01:52 +02002480{
2481 struct ieee80211_local *local = sdata->local;
2482 struct sta_info *sta;
Johannes Berg9c6bd792008-09-11 00:01:52 +02002483 int band = local->hw.conf.channel->band;
2484
2485 /* TODO: Could consider removing the least recently used entry and
2486 * allow new one to be added. */
2487 if (local->num_sta >= IEEE80211_IBSS_MAX_STA_ENTRIES) {
2488 if (net_ratelimit()) {
2489 printk(KERN_DEBUG "%s: No room for a new IBSS STA "
Johannes Berg0c68ae262008-10-27 15:56:10 -07002490 "entry %pM\n", sdata->dev->name, addr);
Johannes Berg9c6bd792008-09-11 00:01:52 +02002491 }
2492 return NULL;
2493 }
2494
2495 if (compare_ether_addr(bssid, sdata->u.sta.bssid))
2496 return NULL;
2497
2498#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Johannes Berg0c68ae262008-10-27 15:56:10 -07002499 printk(KERN_DEBUG "%s: Adding new IBSS station %pM (dev=%s)\n",
2500 wiphy_name(local->hw.wiphy), addr, sdata->dev->name);
Johannes Berg9c6bd792008-09-11 00:01:52 +02002501#endif
2502
2503 sta = sta_info_alloc(sdata, addr, GFP_ATOMIC);
2504 if (!sta)
2505 return NULL;
2506
2507 set_sta_flags(sta, WLAN_STA_AUTHORIZED);
2508
2509 /* make sure mandatory rates are always added */
Johannes Berg323ce792008-09-11 02:45:11 +02002510 sta->sta.supp_rates[band] = supp_rates |
Johannes Berg96dd22a2008-09-11 00:01:57 +02002511 ieee80211_mandatory_rates(local, band);
Johannes Berg9c6bd792008-09-11 00:01:52 +02002512
Johannes Berg4b7679a2008-09-18 18:14:18 +02002513 rate_control_rate_init(sta);
Johannes Berg9c6bd792008-09-11 00:01:52 +02002514
2515 if (sta_info_insert(sta))
2516 return NULL;
2517
2518 return sta;
2519}
2520
2521/* configuration hooks */
2522void ieee80211_sta_req_auth(struct ieee80211_sub_if_data *sdata,
2523 struct ieee80211_if_sta *ifsta)
2524{
2525 struct ieee80211_local *local = sdata->local;
2526
Johannes Berg05c914f2008-09-11 00:01:58 +02002527 if (sdata->vif.type != NL80211_IFTYPE_STATION)
Johannes Berg9c6bd792008-09-11 00:01:52 +02002528 return;
2529
2530 if ((ifsta->flags & (IEEE80211_STA_BSSID_SET |
2531 IEEE80211_STA_AUTO_BSSID_SEL)) &&
2532 (ifsta->flags & (IEEE80211_STA_SSID_SET |
2533 IEEE80211_STA_AUTO_SSID_SEL))) {
2534
2535 if (ifsta->state == IEEE80211_STA_MLME_ASSOCIATED)
2536 ieee80211_set_disassoc(sdata, ifsta, true, true,
2537 WLAN_REASON_DEAUTH_LEAVING);
2538
2539 set_bit(IEEE80211_STA_REQ_AUTH, &ifsta->request);
2540 queue_work(local->hw.workqueue, &ifsta->work);
2541 }
2542}
2543
2544int ieee80211_sta_set_ssid(struct ieee80211_sub_if_data *sdata, char *ssid, size_t len)
2545{
2546 struct ieee80211_if_sta *ifsta;
Johannes Berg9c6bd792008-09-11 00:01:52 +02002547
2548 if (len > IEEE80211_MAX_SSID_LEN)
2549 return -EINVAL;
2550
2551 ifsta = &sdata->u.sta;
2552
2553 if (ifsta->ssid_len != len || memcmp(ifsta->ssid, ssid, len) != 0) {
2554 memset(ifsta->ssid, 0, sizeof(ifsta->ssid));
2555 memcpy(ifsta->ssid, ssid, len);
2556 ifsta->ssid_len = len;
2557 ifsta->flags &= ~IEEE80211_STA_PREV_BSSID_SET;
Johannes Berg9c6bd792008-09-11 00:01:52 +02002558 }
2559
2560 if (len)
2561 ifsta->flags |= IEEE80211_STA_SSID_SET;
2562 else
2563 ifsta->flags &= ~IEEE80211_STA_SSID_SET;
2564
Johannes Berg05c914f2008-09-11 00:01:58 +02002565 if (sdata->vif.type == NL80211_IFTYPE_ADHOC &&
Johannes Berg9c6bd792008-09-11 00:01:52 +02002566 !(ifsta->flags & IEEE80211_STA_BSSID_SET)) {
2567 ifsta->ibss_join_req = jiffies;
2568 ifsta->state = IEEE80211_STA_MLME_IBSS_SEARCH;
2569 return ieee80211_sta_find_ibss(sdata, ifsta);
2570 }
2571
2572 return 0;
2573}
2574
2575int ieee80211_sta_get_ssid(struct ieee80211_sub_if_data *sdata, char *ssid, size_t *len)
2576{
2577 struct ieee80211_if_sta *ifsta = &sdata->u.sta;
2578 memcpy(ssid, ifsta->ssid, ifsta->ssid_len);
2579 *len = ifsta->ssid_len;
2580 return 0;
2581}
2582
2583int ieee80211_sta_set_bssid(struct ieee80211_sub_if_data *sdata, u8 *bssid)
2584{
2585 struct ieee80211_if_sta *ifsta;
2586 int res;
Alina Friedrichsen0efcdfd2009-01-06 02:41:35 +01002587 bool valid;
Johannes Berg9c6bd792008-09-11 00:01:52 +02002588
2589 ifsta = &sdata->u.sta;
Alina Friedrichsen0efcdfd2009-01-06 02:41:35 +01002590 valid = is_valid_ether_addr(bssid);
Johannes Berg9c6bd792008-09-11 00:01:52 +02002591
2592 if (memcmp(ifsta->bssid, bssid, ETH_ALEN) != 0) {
Alina Friedrichsen0efcdfd2009-01-06 02:41:35 +01002593 if(valid)
2594 memcpy(ifsta->bssid, bssid, ETH_ALEN);
2595 else
2596 memset(ifsta->bssid, 0, ETH_ALEN);
Johannes Berg9c6bd792008-09-11 00:01:52 +02002597 res = 0;
2598 /*
2599 * Hack! See also ieee80211_sta_set_ssid.
2600 */
2601 if (netif_running(sdata->dev))
2602 res = ieee80211_if_config(sdata, IEEE80211_IFCC_BSSID);
2603 if (res) {
2604 printk(KERN_DEBUG "%s: Failed to config new BSSID to "
2605 "the low-level driver\n", sdata->dev->name);
2606 return res;
2607 }
2608 }
2609
Alina Friedrichsen0efcdfd2009-01-06 02:41:35 +01002610 if (valid)
Johannes Berg9c6bd792008-09-11 00:01:52 +02002611 ifsta->flags |= IEEE80211_STA_BSSID_SET;
2612 else
2613 ifsta->flags &= ~IEEE80211_STA_BSSID_SET;
2614
2615 return 0;
2616}
2617
2618int ieee80211_sta_set_extra_ie(struct ieee80211_sub_if_data *sdata, char *ie, size_t len)
2619{
2620 struct ieee80211_if_sta *ifsta = &sdata->u.sta;
2621
2622 kfree(ifsta->extra_ie);
2623 if (len == 0) {
2624 ifsta->extra_ie = NULL;
2625 ifsta->extra_ie_len = 0;
2626 return 0;
2627 }
2628 ifsta->extra_ie = kmalloc(len, GFP_KERNEL);
2629 if (!ifsta->extra_ie) {
2630 ifsta->extra_ie_len = 0;
2631 return -ENOMEM;
2632 }
2633 memcpy(ifsta->extra_ie, ie, len);
2634 ifsta->extra_ie_len = len;
2635 return 0;
2636}
2637
2638int ieee80211_sta_deauthenticate(struct ieee80211_sub_if_data *sdata, u16 reason)
2639{
2640 struct ieee80211_if_sta *ifsta = &sdata->u.sta;
2641
2642 printk(KERN_DEBUG "%s: deauthenticating by local choice (reason=%d)\n",
2643 sdata->dev->name, reason);
2644
Johannes Berg05c914f2008-09-11 00:01:58 +02002645 if (sdata->vif.type != NL80211_IFTYPE_STATION &&
2646 sdata->vif.type != NL80211_IFTYPE_ADHOC)
Johannes Berg9c6bd792008-09-11 00:01:52 +02002647 return -EINVAL;
2648
2649 ieee80211_set_disassoc(sdata, ifsta, true, true, reason);
2650 return 0;
2651}
2652
2653int ieee80211_sta_disassociate(struct ieee80211_sub_if_data *sdata, u16 reason)
2654{
2655 struct ieee80211_if_sta *ifsta = &sdata->u.sta;
2656
2657 printk(KERN_DEBUG "%s: disassociating by local choice (reason=%d)\n",
2658 sdata->dev->name, reason);
2659
Johannes Berg05c914f2008-09-11 00:01:58 +02002660 if (sdata->vif.type != NL80211_IFTYPE_STATION)
Johannes Berg9c6bd792008-09-11 00:01:52 +02002661 return -EINVAL;
2662
2663 if (!(ifsta->flags & IEEE80211_STA_ASSOCIATED))
2664 return -1;
2665
2666 ieee80211_set_disassoc(sdata, ifsta, false, true, reason);
2667 return 0;
2668}
2669
2670/* scan finished notification */
Johannes Berg0a51b272008-09-08 17:44:25 +02002671void ieee80211_mlme_notify_scan_completed(struct ieee80211_local *local)
2672{
2673 struct ieee80211_sub_if_data *sdata = local->scan_sdata;
2674 struct ieee80211_if_sta *ifsta;
2675
Johannes Berg05c914f2008-09-11 00:01:58 +02002676 if (sdata && sdata->vif.type == NL80211_IFTYPE_ADHOC) {
Johannes Berg0a51b272008-09-08 17:44:25 +02002677 ifsta = &sdata->u.sta;
2678 if (!(ifsta->flags & IEEE80211_STA_BSSID_SET) ||
2679 (!(ifsta->state == IEEE80211_STA_MLME_IBSS_JOINED) &&
2680 !ieee80211_sta_active_ibss(sdata)))
2681 ieee80211_sta_find_ibss(sdata, ifsta);
2682 }
Johannes Berga1678f82008-09-11 00:01:47 +02002683
2684 /* Restart STA timers */
2685 rcu_read_lock();
2686 list_for_each_entry_rcu(sdata, &local->interfaces, list)
2687 ieee80211_restart_sta_timer(sdata);
2688 rcu_read_unlock();
Johannes Berg0a51b272008-09-08 17:44:25 +02002689}
Kalle Valo520eb822008-12-18 23:35:27 +02002690
2691void ieee80211_dynamic_ps_disable_work(struct work_struct *work)
2692{
2693 struct ieee80211_local *local =
2694 container_of(work, struct ieee80211_local,
2695 dynamic_ps_disable_work);
2696
2697 if (local->hw.conf.flags & IEEE80211_CONF_PS) {
2698 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
2699 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
2700 }
2701
2702 ieee80211_wake_queues_by_reason(&local->hw,
2703 IEEE80211_QUEUE_STOP_REASON_PS);
2704}
2705
2706void ieee80211_dynamic_ps_enable_work(struct work_struct *work)
2707{
2708 struct ieee80211_local *local =
2709 container_of(work, struct ieee80211_local,
2710 dynamic_ps_enable_work);
Vivek Natarajana97b77b2008-12-23 18:39:02 -08002711 struct ieee80211_sub_if_data *sdata = local->scan_sdata;
Kalle Valo520eb822008-12-18 23:35:27 +02002712
2713 if (local->hw.conf.flags & IEEE80211_CONF_PS)
2714 return;
2715
Johannes Berg4be8c382009-01-07 18:28:20 +01002716 if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)
2717 ieee80211_send_nullfunc(local, sdata, 1);
Kalle Valo520eb822008-12-18 23:35:27 +02002718
Johannes Berg4be8c382009-01-07 18:28:20 +01002719 local->hw.conf.flags |= IEEE80211_CONF_PS;
Kalle Valo520eb822008-12-18 23:35:27 +02002720 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
2721}
2722
2723void ieee80211_dynamic_ps_timer(unsigned long data)
2724{
2725 struct ieee80211_local *local = (void *) data;
2726
2727 queue_work(local->hw.workqueue, &local->dynamic_ps_enable_work);
2728}