blob: 05c8d13d39b688273120e3851139241800d76d37 [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,
Johannes Berg881d9482009-01-21 15:13:48 +010076 u32 *rates)
Johannes Berg9ac19a92008-09-09 10:57:09 +020077{
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 */
Johannes Berg881d9482009-01-21 15:13:48 +010096u32 ieee80211_sta_get_rates(struct ieee80211_local *local,
Johannes Berg9c6bd792008-09-11 00:01:52 +020097 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;
Johannes Berg881d9482009-01-21 15:13:48 +0100103 u32 supp_rates;
Johannes Berg9c6bd792008-09-11 00:01:52 +0200104 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
Jouni Malinen9aed3cc2009-01-13 16:03:29 +0200134static void add_extra_ies(struct sk_buff *skb, u8 *ies, size_t ies_len)
135{
136 if (ies)
137 memcpy(skb_put(skb, ies_len), ies, ies_len);
138}
139
Johannes Berg9c6bd792008-09-11 00:01:52 +0200140/* also used by scanning code */
Johannes Berg0a51b272008-09-08 17:44:25 +0200141void ieee80211_send_probe_req(struct ieee80211_sub_if_data *sdata, u8 *dst,
142 u8 *ssid, size_t ssid_len)
Johannes Berg60f8b392008-09-08 17:44:22 +0200143{
144 struct ieee80211_local *local = sdata->local;
145 struct ieee80211_supported_band *sband;
146 struct sk_buff *skb;
147 struct ieee80211_mgmt *mgmt;
148 u8 *pos, *supp_rates, *esupp_rates = NULL;
149 int i;
150
Jouni Malinen9aed3cc2009-01-13 16:03:29 +0200151 skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*mgmt) + 200 +
152 sdata->u.sta.ie_probereq_len);
Johannes Berg60f8b392008-09-08 17:44:22 +0200153 if (!skb) {
154 printk(KERN_DEBUG "%s: failed to allocate buffer for probe "
155 "request\n", sdata->dev->name);
156 return;
157 }
158 skb_reserve(skb, local->hw.extra_tx_headroom);
159
160 mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24);
161 memset(mgmt, 0, 24);
162 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
163 IEEE80211_STYPE_PROBE_REQ);
164 memcpy(mgmt->sa, sdata->dev->dev_addr, ETH_ALEN);
165 if (dst) {
166 memcpy(mgmt->da, dst, ETH_ALEN);
167 memcpy(mgmt->bssid, dst, ETH_ALEN);
168 } else {
169 memset(mgmt->da, 0xff, ETH_ALEN);
170 memset(mgmt->bssid, 0xff, ETH_ALEN);
171 }
172 pos = skb_put(skb, 2 + ssid_len);
173 *pos++ = WLAN_EID_SSID;
174 *pos++ = ssid_len;
175 memcpy(pos, ssid, ssid_len);
176
177 supp_rates = skb_put(skb, 2);
178 supp_rates[0] = WLAN_EID_SUPP_RATES;
179 supp_rates[1] = 0;
180 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
181
182 for (i = 0; i < sband->n_bitrates; i++) {
183 struct ieee80211_rate *rate = &sband->bitrates[i];
184 if (esupp_rates) {
185 pos = skb_put(skb, 1);
186 esupp_rates[1]++;
187 } else if (supp_rates[1] == 8) {
188 esupp_rates = skb_put(skb, 3);
189 esupp_rates[0] = WLAN_EID_EXT_SUPP_RATES;
190 esupp_rates[1] = 1;
191 pos = &esupp_rates[2];
192 } else {
193 pos = skb_put(skb, 1);
194 supp_rates[1]++;
195 }
196 *pos = rate->bitrate / 5;
197 }
198
Jouni Malinen9aed3cc2009-01-13 16:03:29 +0200199 add_extra_ies(skb, sdata->u.sta.ie_probereq,
200 sdata->u.sta.ie_probereq_len);
201
Johannes Berge50db652008-09-09 15:07:09 +0200202 ieee80211_tx_skb(sdata, skb, 0);
Johannes Berg60f8b392008-09-08 17:44:22 +0200203}
204
Johannes Berg9c6bd792008-09-11 00:01:52 +0200205static void ieee80211_send_auth(struct ieee80211_sub_if_data *sdata,
206 struct ieee80211_if_sta *ifsta,
207 int transaction, u8 *extra, size_t extra_len,
208 int encrypt)
209{
210 struct ieee80211_local *local = sdata->local;
211 struct sk_buff *skb;
212 struct ieee80211_mgmt *mgmt;
213
214 skb = dev_alloc_skb(local->hw.extra_tx_headroom +
Jouni Malinen9aed3cc2009-01-13 16:03:29 +0200215 sizeof(*mgmt) + 6 + extra_len +
216 sdata->u.sta.ie_auth_len);
Johannes Berg9c6bd792008-09-11 00:01:52 +0200217 if (!skb) {
218 printk(KERN_DEBUG "%s: failed to allocate buffer for auth "
219 "frame\n", sdata->dev->name);
220 return;
221 }
222 skb_reserve(skb, local->hw.extra_tx_headroom);
223
224 mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24 + 6);
225 memset(mgmt, 0, 24 + 6);
226 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
227 IEEE80211_STYPE_AUTH);
228 if (encrypt)
229 mgmt->frame_control |= cpu_to_le16(IEEE80211_FCTL_PROTECTED);
230 memcpy(mgmt->da, ifsta->bssid, ETH_ALEN);
231 memcpy(mgmt->sa, sdata->dev->dev_addr, ETH_ALEN);
232 memcpy(mgmt->bssid, ifsta->bssid, ETH_ALEN);
233 mgmt->u.auth.auth_alg = cpu_to_le16(ifsta->auth_alg);
234 mgmt->u.auth.auth_transaction = cpu_to_le16(transaction);
235 ifsta->auth_transaction = transaction + 1;
236 mgmt->u.auth.status_code = cpu_to_le16(0);
237 if (extra)
238 memcpy(skb_put(skb, extra_len), extra, extra_len);
Jouni Malinen9aed3cc2009-01-13 16:03:29 +0200239 add_extra_ies(skb, sdata->u.sta.ie_auth, sdata->u.sta.ie_auth_len);
Johannes Berg9c6bd792008-09-11 00:01:52 +0200240
241 ieee80211_tx_skb(sdata, skb, encrypt);
242}
243
Johannes Berg9ac19a92008-09-09 10:57:09 +0200244static void ieee80211_send_assoc(struct ieee80211_sub_if_data *sdata,
245 struct ieee80211_if_sta *ifsta)
246{
247 struct ieee80211_local *local = sdata->local;
248 struct sk_buff *skb;
249 struct ieee80211_mgmt *mgmt;
Jouni Malinen9aed3cc2009-01-13 16:03:29 +0200250 u8 *pos, *ies, *ht_ie, *e_ies;
Johannes Berg9ac19a92008-09-09 10:57:09 +0200251 int i, len, count, rates_len, supp_rates_len;
252 u16 capab;
Johannes Bergc2b13452008-09-11 00:01:55 +0200253 struct ieee80211_bss *bss;
Johannes Berg9ac19a92008-09-09 10:57:09 +0200254 int wmm = 0;
255 struct ieee80211_supported_band *sband;
Johannes Berg881d9482009-01-21 15:13:48 +0100256 u32 rates = 0;
Jouni Malinen9aed3cc2009-01-13 16:03:29 +0200257 size_t e_ies_len;
258
259 if (ifsta->flags & IEEE80211_STA_PREV_BSSID_SET) {
260 e_ies = sdata->u.sta.ie_reassocreq;
261 e_ies_len = sdata->u.sta.ie_reassocreq_len;
262 } else {
263 e_ies = sdata->u.sta.ie_assocreq;
264 e_ies_len = sdata->u.sta.ie_assocreq_len;
265 }
Johannes Berg9ac19a92008-09-09 10:57:09 +0200266
267 skb = dev_alloc_skb(local->hw.extra_tx_headroom +
268 sizeof(*mgmt) + 200 + ifsta->extra_ie_len +
Jouni Malinen9aed3cc2009-01-13 16:03:29 +0200269 ifsta->ssid_len + e_ies_len);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200270 if (!skb) {
271 printk(KERN_DEBUG "%s: failed to allocate buffer for assoc "
272 "frame\n", sdata->dev->name);
273 return;
274 }
275 skb_reserve(skb, local->hw.extra_tx_headroom);
276
277 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
278
279 capab = ifsta->capab;
280
281 if (local->hw.conf.channel->band == IEEE80211_BAND_2GHZ) {
282 if (!(local->hw.flags & IEEE80211_HW_2GHZ_SHORT_SLOT_INCAPABLE))
283 capab |= WLAN_CAPABILITY_SHORT_SLOT_TIME;
284 if (!(local->hw.flags & IEEE80211_HW_2GHZ_SHORT_PREAMBLE_INCAPABLE))
285 capab |= WLAN_CAPABILITY_SHORT_PREAMBLE;
286 }
287
288 bss = ieee80211_rx_bss_get(local, ifsta->bssid,
289 local->hw.conf.channel->center_freq,
290 ifsta->ssid, ifsta->ssid_len);
291 if (bss) {
292 if (bss->capability & WLAN_CAPABILITY_PRIVACY)
293 capab |= WLAN_CAPABILITY_PRIVACY;
294 if (bss->wmm_used)
295 wmm = 1;
296
297 /* get all rates supported by the device and the AP as
298 * some APs don't like getting a superset of their rates
299 * in the association request (e.g. D-Link DAP 1353 in
300 * b-only mode) */
301 rates_len = ieee80211_compatible_rates(bss, sband, &rates);
302
303 if ((bss->capability & WLAN_CAPABILITY_SPECTRUM_MGMT) &&
304 (local->hw.flags & IEEE80211_HW_SPECTRUM_MGMT))
305 capab |= WLAN_CAPABILITY_SPECTRUM_MGMT;
306
307 ieee80211_rx_bss_put(local, bss);
308 } else {
309 rates = ~0;
310 rates_len = sband->n_bitrates;
311 }
312
313 mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24);
314 memset(mgmt, 0, 24);
315 memcpy(mgmt->da, ifsta->bssid, ETH_ALEN);
316 memcpy(mgmt->sa, sdata->dev->dev_addr, ETH_ALEN);
317 memcpy(mgmt->bssid, ifsta->bssid, ETH_ALEN);
318
319 if (ifsta->flags & IEEE80211_STA_PREV_BSSID_SET) {
320 skb_put(skb, 10);
321 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
322 IEEE80211_STYPE_REASSOC_REQ);
323 mgmt->u.reassoc_req.capab_info = cpu_to_le16(capab);
324 mgmt->u.reassoc_req.listen_interval =
325 cpu_to_le16(local->hw.conf.listen_interval);
326 memcpy(mgmt->u.reassoc_req.current_ap, ifsta->prev_bssid,
327 ETH_ALEN);
328 } else {
329 skb_put(skb, 4);
330 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
331 IEEE80211_STYPE_ASSOC_REQ);
332 mgmt->u.assoc_req.capab_info = cpu_to_le16(capab);
Rami Rosen13554122008-12-16 22:38:29 +0200333 mgmt->u.assoc_req.listen_interval =
Johannes Berg9ac19a92008-09-09 10:57:09 +0200334 cpu_to_le16(local->hw.conf.listen_interval);
335 }
336
337 /* SSID */
338 ies = pos = skb_put(skb, 2 + ifsta->ssid_len);
339 *pos++ = WLAN_EID_SSID;
340 *pos++ = ifsta->ssid_len;
341 memcpy(pos, ifsta->ssid, ifsta->ssid_len);
342
343 /* add all rates which were marked to be used above */
344 supp_rates_len = rates_len;
345 if (supp_rates_len > 8)
346 supp_rates_len = 8;
347
348 len = sband->n_bitrates;
349 pos = skb_put(skb, supp_rates_len + 2);
350 *pos++ = WLAN_EID_SUPP_RATES;
351 *pos++ = supp_rates_len;
352
353 count = 0;
354 for (i = 0; i < sband->n_bitrates; i++) {
355 if (BIT(i) & rates) {
356 int rate = sband->bitrates[i].bitrate;
357 *pos++ = (u8) (rate / 5);
358 if (++count == 8)
359 break;
360 }
361 }
362
363 if (rates_len > count) {
364 pos = skb_put(skb, rates_len - count + 2);
365 *pos++ = WLAN_EID_EXT_SUPP_RATES;
366 *pos++ = rates_len - count;
367
368 for (i++; i < sband->n_bitrates; i++) {
369 if (BIT(i) & rates) {
370 int rate = sband->bitrates[i].bitrate;
371 *pos++ = (u8) (rate / 5);
372 }
373 }
374 }
375
376 if (capab & WLAN_CAPABILITY_SPECTRUM_MGMT) {
377 /* 1. power capabilities */
378 pos = skb_put(skb, 4);
379 *pos++ = WLAN_EID_PWR_CAPABILITY;
380 *pos++ = 2;
381 *pos++ = 0; /* min tx power */
382 *pos++ = local->hw.conf.channel->max_power; /* max tx power */
383
384 /* 2. supported channels */
385 /* TODO: get this in reg domain format */
386 pos = skb_put(skb, 2 * sband->n_channels + 2);
387 *pos++ = WLAN_EID_SUPPORTED_CHANNELS;
388 *pos++ = 2 * sband->n_channels;
389 for (i = 0; i < sband->n_channels; i++) {
390 *pos++ = ieee80211_frequency_to_channel(
391 sband->channels[i].center_freq);
392 *pos++ = 1; /* one channel in the subband*/
393 }
394 }
395
396 if (ifsta->extra_ie) {
397 pos = skb_put(skb, ifsta->extra_ie_len);
398 memcpy(pos, ifsta->extra_ie, ifsta->extra_ie_len);
399 }
400
401 if (wmm && (ifsta->flags & IEEE80211_STA_WMM_ENABLED)) {
402 pos = skb_put(skb, 9);
403 *pos++ = WLAN_EID_VENDOR_SPECIFIC;
404 *pos++ = 7; /* len */
405 *pos++ = 0x00; /* Microsoft OUI 00:50:F2 */
406 *pos++ = 0x50;
407 *pos++ = 0xf2;
408 *pos++ = 2; /* WME */
409 *pos++ = 0; /* WME info */
410 *pos++ = 1; /* WME ver */
411 *pos++ = 0;
412 }
413
414 /* wmm support is a must to HT */
Vasanthakumar Thiagarajaneb469362008-12-23 21:30:50 +0530415 /*
416 * IEEE802.11n does not allow TKIP/WEP as pairwise
417 * ciphers in HT mode. We still associate in non-ht
418 * mode (11a/b/g) if any one of these ciphers is
419 * configured as pairwise.
420 */
Johannes Berg9ac19a92008-09-09 10:57:09 +0200421 if (wmm && (ifsta->flags & IEEE80211_STA_WMM_ENABLED) &&
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200422 sband->ht_cap.ht_supported &&
423 (ht_ie = ieee80211_bss_get_ie(bss, WLAN_EID_HT_INFORMATION)) &&
Vasanthakumar Thiagarajaneb469362008-12-23 21:30:50 +0530424 ht_ie[1] >= sizeof(struct ieee80211_ht_info) &&
425 (!(ifsta->flags & IEEE80211_STA_TKIP_WEP_USED))) {
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200426 struct ieee80211_ht_info *ht_info =
427 (struct ieee80211_ht_info *)(ht_ie + 2);
428 u16 cap = sband->ht_cap.cap;
Johannes Berg9ac19a92008-09-09 10:57:09 +0200429 __le16 tmp;
430 u32 flags = local->hw.conf.channel->flags;
431
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200432 switch (ht_info->ht_param & IEEE80211_HT_PARAM_CHA_SEC_OFFSET) {
433 case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
Johannes Berg9ac19a92008-09-09 10:57:09 +0200434 if (flags & IEEE80211_CHAN_NO_FAT_ABOVE) {
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200435 cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
Johannes Berg9ac19a92008-09-09 10:57:09 +0200436 cap &= ~IEEE80211_HT_CAP_SGI_40;
437 }
438 break;
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200439 case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
Johannes Berg9ac19a92008-09-09 10:57:09 +0200440 if (flags & IEEE80211_CHAN_NO_FAT_BELOW) {
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200441 cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
Johannes Berg9ac19a92008-09-09 10:57:09 +0200442 cap &= ~IEEE80211_HT_CAP_SGI_40;
443 }
444 break;
445 }
446
447 tmp = cpu_to_le16(cap);
448 pos = skb_put(skb, sizeof(struct ieee80211_ht_cap)+2);
449 *pos++ = WLAN_EID_HT_CAPABILITY;
450 *pos++ = sizeof(struct ieee80211_ht_cap);
451 memset(pos, 0, sizeof(struct ieee80211_ht_cap));
452 memcpy(pos, &tmp, sizeof(u16));
453 pos += sizeof(u16);
454 /* TODO: needs a define here for << 2 */
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200455 *pos++ = sband->ht_cap.ampdu_factor |
456 (sband->ht_cap.ampdu_density << 2);
457 memcpy(pos, &sband->ht_cap.mcs, sizeof(sband->ht_cap.mcs));
Johannes Berg9ac19a92008-09-09 10:57:09 +0200458 }
459
Jouni Malinen9aed3cc2009-01-13 16:03:29 +0200460 add_extra_ies(skb, e_ies, e_ies_len);
461
Johannes Berg9ac19a92008-09-09 10:57:09 +0200462 kfree(ifsta->assocreq_ies);
463 ifsta->assocreq_ies_len = (skb->data + skb->len) - ies;
464 ifsta->assocreq_ies = kmalloc(ifsta->assocreq_ies_len, GFP_KERNEL);
465 if (ifsta->assocreq_ies)
466 memcpy(ifsta->assocreq_ies, ies, ifsta->assocreq_ies_len);
467
Johannes Berge50db652008-09-09 15:07:09 +0200468 ieee80211_tx_skb(sdata, skb, 0);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200469}
470
471
Johannes Bergef422bc2008-09-09 10:58:25 +0200472static void ieee80211_send_deauth_disassoc(struct ieee80211_sub_if_data *sdata,
473 u16 stype, u16 reason)
Johannes Berg9ac19a92008-09-09 10:57:09 +0200474{
475 struct ieee80211_local *local = sdata->local;
Johannes Bergef422bc2008-09-09 10:58:25 +0200476 struct ieee80211_if_sta *ifsta = &sdata->u.sta;
Johannes Berg9ac19a92008-09-09 10:57:09 +0200477 struct sk_buff *skb;
478 struct ieee80211_mgmt *mgmt;
Jouni Malinen9aed3cc2009-01-13 16:03:29 +0200479 u8 *ies;
480 size_t ies_len;
Johannes Berg9ac19a92008-09-09 10:57:09 +0200481
Jouni Malinen9aed3cc2009-01-13 16:03:29 +0200482 if (stype == IEEE80211_STYPE_DEAUTH) {
483 ies = sdata->u.sta.ie_deauth;
484 ies_len = sdata->u.sta.ie_deauth_len;
485 } else {
486 ies = sdata->u.sta.ie_disassoc;
487 ies_len = sdata->u.sta.ie_disassoc_len;
488 }
489
490 skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*mgmt) +
491 ies_len);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200492 if (!skb) {
Johannes Bergef422bc2008-09-09 10:58:25 +0200493 printk(KERN_DEBUG "%s: failed to allocate buffer for "
494 "deauth/disassoc frame\n", sdata->dev->name);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200495 return;
496 }
497 skb_reserve(skb, local->hw.extra_tx_headroom);
498
499 mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24);
500 memset(mgmt, 0, 24);
501 memcpy(mgmt->da, ifsta->bssid, ETH_ALEN);
502 memcpy(mgmt->sa, sdata->dev->dev_addr, ETH_ALEN);
503 memcpy(mgmt->bssid, ifsta->bssid, ETH_ALEN);
Johannes Bergef422bc2008-09-09 10:58:25 +0200504 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT | stype);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200505 skb_put(skb, 2);
Johannes Bergef422bc2008-09-09 10:58:25 +0200506 /* u.deauth.reason_code == u.disassoc.reason_code */
Johannes Berg9ac19a92008-09-09 10:57:09 +0200507 mgmt->u.deauth.reason_code = cpu_to_le16(reason);
508
Jouni Malinen9aed3cc2009-01-13 16:03:29 +0200509 add_extra_ies(skb, ies, ies_len);
510
Jouni Malinen5394af42009-01-08 13:31:59 +0200511 ieee80211_tx_skb(sdata, skb, ifsta->flags & IEEE80211_STA_MFP_ENABLED);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200512}
513
Johannes Berg60f8b392008-09-08 17:44:22 +0200514/* MLME */
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200515static void ieee80211_sta_def_wmm_params(struct ieee80211_sub_if_data *sdata,
Johannes Bergc2b13452008-09-11 00:01:55 +0200516 struct ieee80211_bss *bss)
Vladimir Koutnye2839d82008-03-18 21:14:07 +0100517{
Vladimir Koutnye2839d82008-03-18 21:14:07 +0100518 struct ieee80211_local *local = sdata->local;
519 int i, have_higher_than_11mbit = 0;
520
Vladimir Koutnye2839d82008-03-18 21:14:07 +0100521 /* cf. IEEE 802.11 9.2.12 */
522 for (i = 0; i < bss->supp_rates_len; i++)
523 if ((bss->supp_rates[i] & 0x7f) * 5 > 110)
524 have_higher_than_11mbit = 1;
525
526 if (local->hw.conf.channel->band == IEEE80211_BAND_2GHZ &&
527 have_higher_than_11mbit)
528 sdata->flags |= IEEE80211_SDATA_OPERATING_GMODE;
529 else
530 sdata->flags &= ~IEEE80211_SDATA_OPERATING_GMODE;
531
Johannes Berg3d35f7c2008-09-09 12:54:11 +0200532 ieee80211_set_wmm_default(sdata);
Vladimir Koutnye2839d82008-03-18 21:14:07 +0100533}
534
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200535static void ieee80211_sta_wmm_params(struct ieee80211_local *local,
Jiri Bencf0706e82007-05-05 11:45:53 -0700536 struct ieee80211_if_sta *ifsta,
537 u8 *wmm_param, size_t wmm_param_len)
538{
Jiri Bencf0706e82007-05-05 11:45:53 -0700539 struct ieee80211_tx_queue_params params;
540 size_t left;
541 int count;
542 u8 *pos;
543
Johannes Berg3434fbd2008-05-03 00:59:37 +0200544 if (!(ifsta->flags & IEEE80211_STA_WMM_ENABLED))
545 return;
546
547 if (!wmm_param)
548 return;
549
Jiri Bencf0706e82007-05-05 11:45:53 -0700550 if (wmm_param_len < 8 || wmm_param[5] /* version */ != 1)
551 return;
552 count = wmm_param[6] & 0x0f;
553 if (count == ifsta->wmm_last_param_set)
554 return;
555 ifsta->wmm_last_param_set = count;
556
557 pos = wmm_param + 8;
558 left = wmm_param_len - 8;
559
560 memset(&params, 0, sizeof(params));
561
562 if (!local->ops->conf_tx)
563 return;
564
565 local->wmm_acm = 0;
566 for (; left >= 4; left -= 4, pos += 4) {
567 int aci = (pos[0] >> 5) & 0x03;
568 int acm = (pos[0] >> 4) & 0x01;
569 int queue;
570
571 switch (aci) {
572 case 1:
Johannes Berge100bb62008-04-30 18:51:21 +0200573 queue = 3;
Johannes Berg988c0f72008-04-17 19:21:22 +0200574 if (acm)
Jiri Bencf0706e82007-05-05 11:45:53 -0700575 local->wmm_acm |= BIT(0) | BIT(3);
Jiri Bencf0706e82007-05-05 11:45:53 -0700576 break;
577 case 2:
Johannes Berge100bb62008-04-30 18:51:21 +0200578 queue = 1;
Johannes Berg988c0f72008-04-17 19:21:22 +0200579 if (acm)
Jiri Bencf0706e82007-05-05 11:45:53 -0700580 local->wmm_acm |= BIT(4) | BIT(5);
Jiri Bencf0706e82007-05-05 11:45:53 -0700581 break;
582 case 3:
Johannes Berge100bb62008-04-30 18:51:21 +0200583 queue = 0;
Johannes Berg988c0f72008-04-17 19:21:22 +0200584 if (acm)
Jiri Bencf0706e82007-05-05 11:45:53 -0700585 local->wmm_acm |= BIT(6) | BIT(7);
Jiri Bencf0706e82007-05-05 11:45:53 -0700586 break;
587 case 0:
588 default:
Johannes Berge100bb62008-04-30 18:51:21 +0200589 queue = 2;
Johannes Berg988c0f72008-04-17 19:21:22 +0200590 if (acm)
Jiri Bencf0706e82007-05-05 11:45:53 -0700591 local->wmm_acm |= BIT(1) | BIT(2);
Jiri Bencf0706e82007-05-05 11:45:53 -0700592 break;
593 }
594
595 params.aifs = pos[0] & 0x0f;
596 params.cw_max = ecw2cw((pos[1] & 0xf0) >> 4);
597 params.cw_min = ecw2cw(pos[1] & 0x0f);
Johannes Bergf434b2d2008-07-10 11:22:31 +0200598 params.txop = get_unaligned_le16(pos + 2);
Johannes Bergf4ea83d2008-06-30 15:10:46 +0200599#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Jiri Bencf0706e82007-05-05 11:45:53 -0700600 printk(KERN_DEBUG "%s: WMM queue=%d aci=%d acm=%d aifs=%d "
Johannes Berg3330d7b2008-02-10 16:49:38 +0100601 "cWmin=%d cWmax=%d txop=%d\n",
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200602 local->mdev->name, queue, aci, acm, params.aifs, params.cw_min,
Johannes Berg3330d7b2008-02-10 16:49:38 +0100603 params.cw_max, params.txop);
604#endif
Jiri Bencf0706e82007-05-05 11:45:53 -0700605 /* TODO: handle ACM (block TX, fallback to next lowest allowed
606 * AC for now) */
607 if (local->ops->conf_tx(local_to_hw(local), queue, &params)) {
608 printk(KERN_DEBUG "%s: failed to set TX queue "
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200609 "parameters for queue %d\n", local->mdev->name, queue);
Jiri Bencf0706e82007-05-05 11:45:53 -0700610 }
611 }
612}
613
Kalle Valo1fb36062009-02-10 17:09:24 +0200614static bool ieee80211_check_tim(struct ieee802_11_elems *elems, u16 aid)
Vivek Natarajana97b77b2008-12-23 18:39:02 -0800615{
616 u8 mask;
617 u8 index, indexn1, indexn2;
618 struct ieee80211_tim_ie *tim = (struct ieee80211_tim_ie *) elems->tim;
619
620 aid &= 0x3fff;
621 index = aid / 8;
622 mask = 1 << (aid & 7);
623
Vivek Natarajana97b77b2008-12-23 18:39:02 -0800624 indexn1 = tim->bitmap_ctrl & 0xfe;
625 indexn2 = elems->tim_len + indexn1 - 4;
626
627 if (index < indexn1 || index > indexn2)
628 return false;
629
630 index -= indexn1;
631
632 return !!(tim->virtual_map[index] & mask);
633}
634
Johannes Berg7a5158e2008-10-08 10:59:33 +0200635static u32 ieee80211_handle_bss_capability(struct ieee80211_sub_if_data *sdata,
636 u16 capab, bool erp_valid, u8 erp)
Daniel Drake56282212007-07-10 19:32:10 +0200637{
Johannes Bergbda39332008-10-11 01:51:51 +0200638 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
Tomas Winklerebd74482008-07-01 10:44:50 +0300639#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Daniel Drake56282212007-07-10 19:32:10 +0200640 struct ieee80211_if_sta *ifsta = &sdata->u.sta;
Tomas Winklerebd74482008-07-01 10:44:50 +0300641#endif
Johannes Berg471b3ef2007-12-28 14:32:58 +0100642 u32 changed = 0;
Johannes Berg7a5158e2008-10-08 10:59:33 +0200643 bool use_protection;
644 bool use_short_preamble;
645 bool use_short_slot;
646
647 if (erp_valid) {
648 use_protection = (erp & WLAN_ERP_USE_PROTECTION) != 0;
649 use_short_preamble = (erp & WLAN_ERP_BARKER_PREAMBLE) == 0;
650 } else {
651 use_protection = false;
652 use_short_preamble = !!(capab & WLAN_CAPABILITY_SHORT_PREAMBLE);
653 }
654
655 use_short_slot = !!(capab & WLAN_CAPABILITY_SHORT_SLOT_TIME);
Daniel Drake56282212007-07-10 19:32:10 +0200656
Johannes Berg471b3ef2007-12-28 14:32:58 +0100657 if (use_protection != bss_conf->use_cts_prot) {
Johannes Bergf4ea83d2008-06-30 15:10:46 +0200658#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Daniel Drake56282212007-07-10 19:32:10 +0200659 if (net_ratelimit()) {
Johannes Berg0c68ae262008-10-27 15:56:10 -0700660 printk(KERN_DEBUG "%s: CTS protection %s (BSSID=%pM)\n",
Johannes Berg471b3ef2007-12-28 14:32:58 +0100661 sdata->dev->name,
Daniel Drake56282212007-07-10 19:32:10 +0200662 use_protection ? "enabled" : "disabled",
Johannes Berg0c68ae262008-10-27 15:56:10 -0700663 ifsta->bssid);
Daniel Drake56282212007-07-10 19:32:10 +0200664 }
Johannes Bergf4ea83d2008-06-30 15:10:46 +0200665#endif
Johannes Berg471b3ef2007-12-28 14:32:58 +0100666 bss_conf->use_cts_prot = use_protection;
667 changed |= BSS_CHANGED_ERP_CTS_PROT;
Daniel Drake56282212007-07-10 19:32:10 +0200668 }
Daniel Drake7e9ed182007-07-27 15:43:24 +0200669
Vladimir Koutnyd43c7b32008-03-31 17:05:03 +0200670 if (use_short_preamble != bss_conf->use_short_preamble) {
Johannes Bergf4ea83d2008-06-30 15:10:46 +0200671#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Daniel Drake7e9ed182007-07-27 15:43:24 +0200672 if (net_ratelimit()) {
673 printk(KERN_DEBUG "%s: switched to %s barker preamble"
Johannes Berg0c68ae262008-10-27 15:56:10 -0700674 " (BSSID=%pM)\n",
Johannes Berg471b3ef2007-12-28 14:32:58 +0100675 sdata->dev->name,
Vladimir Koutnyd43c7b32008-03-31 17:05:03 +0200676 use_short_preamble ? "short" : "long",
Johannes Berg0c68ae262008-10-27 15:56:10 -0700677 ifsta->bssid);
Daniel Drake7e9ed182007-07-27 15:43:24 +0200678 }
Johannes Bergf4ea83d2008-06-30 15:10:46 +0200679#endif
Vladimir Koutnyd43c7b32008-03-31 17:05:03 +0200680 bss_conf->use_short_preamble = use_short_preamble;
Johannes Berg471b3ef2007-12-28 14:32:58 +0100681 changed |= BSS_CHANGED_ERP_PREAMBLE;
Daniel Drake7e9ed182007-07-27 15:43:24 +0200682 }
Daniel Draked9430a32007-07-27 15:43:24 +0200683
Johannes Berg7a5158e2008-10-08 10:59:33 +0200684 if (use_short_slot != bss_conf->use_short_slot) {
685#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
686 if (net_ratelimit()) {
Christian Lamparter391429c2009-01-18 02:24:15 +0100687 printk(KERN_DEBUG "%s: switched to %s slot time"
688 " (BSSID=%pM)\n",
Johannes Berg7a5158e2008-10-08 10:59:33 +0200689 sdata->dev->name,
690 use_short_slot ? "short" : "long",
691 ifsta->bssid);
692 }
693#endif
694 bss_conf->use_short_slot = use_short_slot;
695 changed |= BSS_CHANGED_ERP_SLOT;
John W. Linville50c4afb2008-04-15 14:09:27 -0400696 }
697
698 return changed;
699}
700
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200701static void ieee80211_sta_send_apinfo(struct ieee80211_sub_if_data *sdata,
702 struct ieee80211_if_sta *ifsta)
703{
704 union iwreq_data wrqu;
705 memset(&wrqu, 0, sizeof(wrqu));
706 if (ifsta->flags & IEEE80211_STA_ASSOCIATED)
707 memcpy(wrqu.ap_addr.sa_data, sdata->u.sta.bssid, ETH_ALEN);
708 wrqu.ap_addr.sa_family = ARPHRD_ETHER;
709 wireless_send_event(sdata->dev, SIOCGIWAP, &wrqu, NULL);
710}
711
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200712static void ieee80211_sta_send_associnfo(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -0700713 struct ieee80211_if_sta *ifsta)
714{
Linus Torvalds74af0252008-09-05 12:38:09 -0700715 char *buf;
716 size_t len;
717 int i;
Jiri Bencf0706e82007-05-05 11:45:53 -0700718 union iwreq_data wrqu;
719
Linus Torvalds74af0252008-09-05 12:38:09 -0700720 if (!ifsta->assocreq_ies && !ifsta->assocresp_ies)
721 return;
722
723 buf = kmalloc(50 + 2 * (ifsta->assocreq_ies_len +
724 ifsta->assocresp_ies_len), GFP_KERNEL);
725 if (!buf)
726 return;
727
728 len = sprintf(buf, "ASSOCINFO(");
Jiri Bencf0706e82007-05-05 11:45:53 -0700729 if (ifsta->assocreq_ies) {
Linus Torvalds74af0252008-09-05 12:38:09 -0700730 len += sprintf(buf + len, "ReqIEs=");
731 for (i = 0; i < ifsta->assocreq_ies_len; i++) {
732 len += sprintf(buf + len, "%02x",
733 ifsta->assocreq_ies[i]);
734 }
Jiri Bencf0706e82007-05-05 11:45:53 -0700735 }
736 if (ifsta->assocresp_ies) {
Linus Torvalds74af0252008-09-05 12:38:09 -0700737 if (ifsta->assocreq_ies)
738 len += sprintf(buf + len, " ");
739 len += sprintf(buf + len, "RespIEs=");
740 for (i = 0; i < ifsta->assocresp_ies_len; i++) {
741 len += sprintf(buf + len, "%02x",
742 ifsta->assocresp_ies[i]);
743 }
Jiri Bencf0706e82007-05-05 11:45:53 -0700744 }
Linus Torvalds74af0252008-09-05 12:38:09 -0700745 len += sprintf(buf + len, ")");
746
747 if (len > IW_CUSTOM_MAX) {
748 len = sprintf(buf, "ASSOCRESPIE=");
749 for (i = 0; i < ifsta->assocresp_ies_len; i++) {
750 len += sprintf(buf + len, "%02x",
751 ifsta->assocresp_ies[i]);
752 }
753 }
754
John W. Linvillead788b52008-10-01 15:45:02 -0400755 if (len <= IW_CUSTOM_MAX) {
756 memset(&wrqu, 0, sizeof(wrqu));
757 wrqu.data.length = len;
758 wireless_send_event(sdata->dev, IWEVCUSTOM, &wrqu, buf);
759 }
Linus Torvalds74af0252008-09-05 12:38:09 -0700760
761 kfree(buf);
Jiri Bencf0706e82007-05-05 11:45:53 -0700762}
763
764
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200765static void ieee80211_set_associated(struct ieee80211_sub_if_data *sdata,
Johannes Bergae5eb022008-10-14 16:58:37 +0200766 struct ieee80211_if_sta *ifsta,
767 u32 bss_info_changed)
Jiri Bencf0706e82007-05-05 11:45:53 -0700768{
Johannes Berg471b3ef2007-12-28 14:32:58 +0100769 struct ieee80211_local *local = sdata->local;
Tomas Winkler38668c02008-03-28 16:33:32 -0700770 struct ieee80211_conf *conf = &local_to_hw(local)->conf;
Jiri Bencf0706e82007-05-05 11:45:53 -0700771
Johannes Bergc2b13452008-09-11 00:01:55 +0200772 struct ieee80211_bss *bss;
Jiri Slabyd6f2da52007-08-28 17:01:54 -0400773
Johannes Bergae5eb022008-10-14 16:58:37 +0200774 bss_info_changed |= BSS_CHANGED_ASSOC;
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200775 ifsta->flags |= IEEE80211_STA_ASSOCIATED;
Jiri Slabyd6f2da52007-08-28 17:01:54 -0400776
Johannes Berg05c914f2008-09-11 00:01:58 +0200777 if (sdata->vif.type != NL80211_IFTYPE_STATION)
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200778 return;
Daniel Drake56282212007-07-10 19:32:10 +0200779
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200780 bss = ieee80211_rx_bss_get(local, ifsta->bssid,
781 conf->channel->center_freq,
782 ifsta->ssid, ifsta->ssid_len);
783 if (bss) {
784 /* set timing information */
Johannes Bergbda39332008-10-11 01:51:51 +0200785 sdata->vif.bss_conf.beacon_int = bss->beacon_int;
786 sdata->vif.bss_conf.timestamp = bss->timestamp;
787 sdata->vif.bss_conf.dtim_period = bss->dtim_period;
Tomas Winkler21c0cbe2008-03-28 16:33:34 -0700788
Johannes Bergae5eb022008-10-14 16:58:37 +0200789 bss_info_changed |= ieee80211_handle_bss_capability(sdata,
Johannes Berg7a5158e2008-10-08 10:59:33 +0200790 bss->capability, bss->has_erp_value, bss->erp_value);
Tomas Winkler21c0cbe2008-03-28 16:33:34 -0700791
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200792 ieee80211_rx_bss_put(local, bss);
Jiri Bencf0706e82007-05-05 11:45:53 -0700793 }
Johannes Berg471b3ef2007-12-28 14:32:58 +0100794
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200795 ifsta->flags |= IEEE80211_STA_PREV_BSSID_SET;
796 memcpy(ifsta->prev_bssid, sdata->u.sta.bssid, ETH_ALEN);
797 ieee80211_sta_send_associnfo(sdata, ifsta);
798
799 ifsta->last_probe = jiffies;
800 ieee80211_led_assoc(local, 1);
801
Johannes Bergbda39332008-10-11 01:51:51 +0200802 sdata->vif.bss_conf.assoc = 1;
Johannes Berg96dd22a2008-09-11 00:01:57 +0200803 /*
804 * For now just always ask the driver to update the basic rateset
805 * when we have associated, we aren't checking whether it actually
806 * changed or not.
807 */
Johannes Bergae5eb022008-10-14 16:58:37 +0200808 bss_info_changed |= BSS_CHANGED_BASIC_RATES;
809 ieee80211_bss_info_change_notify(sdata, bss_info_changed);
Guy Cohen8db93692008-07-03 19:56:13 +0300810
Johannes Berg4be8c382009-01-07 18:28:20 +0100811 if (local->powersave) {
812 if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS) &&
813 local->hw.conf.dynamic_ps_timeout > 0) {
Kalle Valo520eb822008-12-18 23:35:27 +0200814 mod_timer(&local->dynamic_ps_timer, jiffies +
Johannes Berg46f2c4b2009-01-06 18:13:18 +0100815 msecs_to_jiffies(
816 local->hw.conf.dynamic_ps_timeout));
Johannes Berg4be8c382009-01-07 18:28:20 +0100817 } else {
818 if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)
819 ieee80211_send_nullfunc(local, sdata, 1);
Kalle Valo520eb822008-12-18 23:35:27 +0200820 conf->flags |= IEEE80211_CONF_PS;
Johannes Berg4be8c382009-01-07 18:28:20 +0100821 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
Kalle Valo520eb822008-12-18 23:35:27 +0200822 }
Kalle Valoe0cb6862008-12-18 23:35:13 +0200823 }
824
Tomas Winkler24e64622008-09-08 17:33:40 +0200825 netif_tx_start_all_queues(sdata->dev);
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200826 netif_carrier_on(sdata->dev);
Guy Cohen8db93692008-07-03 19:56:13 +0300827
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200828 ieee80211_sta_send_apinfo(sdata, ifsta);
Jiri Bencf0706e82007-05-05 11:45:53 -0700829}
830
Ron Rindjunsky9859b812008-08-09 03:02:19 +0300831static void ieee80211_direct_probe(struct ieee80211_sub_if_data *sdata,
832 struct ieee80211_if_sta *ifsta)
833{
Ron Rindjunsky9859b812008-08-09 03:02:19 +0300834 ifsta->direct_probe_tries++;
835 if (ifsta->direct_probe_tries > IEEE80211_AUTH_MAX_TRIES) {
Johannes Berg0c68ae262008-10-27 15:56:10 -0700836 printk(KERN_DEBUG "%s: direct probe to AP %pM timed out\n",
837 sdata->dev->name, ifsta->bssid);
Ron Rindjunsky9859b812008-08-09 03:02:19 +0300838 ifsta->state = IEEE80211_STA_MLME_DISABLED;
Johannes Berg4a68ec52008-10-16 21:44:44 +0200839 ieee80211_sta_send_apinfo(sdata, ifsta);
Vasanthakumar Thiagarajan7a947082009-02-04 18:28:48 +0530840
841 /*
842 * Most likely AP is not in the range so remove the
843 * bss information associated to the AP
844 */
845 ieee80211_rx_bss_remove(sdata, ifsta->bssid,
846 sdata->local->hw.conf.channel->center_freq,
847 ifsta->ssid, ifsta->ssid_len);
Ron Rindjunsky9859b812008-08-09 03:02:19 +0300848 return;
849 }
850
Johannes Berg0c68ae262008-10-27 15:56:10 -0700851 printk(KERN_DEBUG "%s: direct probe to AP %pM try %d\n",
852 sdata->dev->name, ifsta->bssid,
Ron Rindjunsky9859b812008-08-09 03:02:19 +0300853 ifsta->direct_probe_tries);
854
855 ifsta->state = IEEE80211_STA_MLME_DIRECT_PROBE;
856
857 set_bit(IEEE80211_STA_REQ_DIRECT_PROBE, &ifsta->request);
858
859 /* Direct probe is sent to broadcast address as some APs
860 * will not answer to direct packet in unassociated state.
861 */
862 ieee80211_send_probe_req(sdata, NULL,
863 ifsta->ssid, ifsta->ssid_len);
864
865 mod_timer(&ifsta->timer, jiffies + IEEE80211_AUTH_TIMEOUT);
866}
867
Jiri Bencf0706e82007-05-05 11:45:53 -0700868
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200869static void ieee80211_authenticate(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -0700870 struct ieee80211_if_sta *ifsta)
871{
872 ifsta->auth_tries++;
873 if (ifsta->auth_tries > IEEE80211_AUTH_MAX_TRIES) {
Johannes Berg0c68ae262008-10-27 15:56:10 -0700874 printk(KERN_DEBUG "%s: authentication with AP %pM"
Jiri Bencf0706e82007-05-05 11:45:53 -0700875 " timed out\n",
Johannes Berg0c68ae262008-10-27 15:56:10 -0700876 sdata->dev->name, ifsta->bssid);
Tomas Winkler48c2fc52008-08-06 14:22:01 +0300877 ifsta->state = IEEE80211_STA_MLME_DISABLED;
Johannes Berg4a68ec52008-10-16 21:44:44 +0200878 ieee80211_sta_send_apinfo(sdata, ifsta);
Vasanthakumar Thiagarajan7a947082009-02-04 18:28:48 +0530879 ieee80211_rx_bss_remove(sdata, ifsta->bssid,
880 sdata->local->hw.conf.channel->center_freq,
881 ifsta->ssid, ifsta->ssid_len);
Jiri Bencf0706e82007-05-05 11:45:53 -0700882 return;
883 }
884
Tomas Winkler48c2fc52008-08-06 14:22:01 +0300885 ifsta->state = IEEE80211_STA_MLME_AUTHENTICATE;
Johannes Berg0c68ae262008-10-27 15:56:10 -0700886 printk(KERN_DEBUG "%s: authenticate with AP %pM\n",
887 sdata->dev->name, ifsta->bssid);
Jiri Bencf0706e82007-05-05 11:45:53 -0700888
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200889 ieee80211_send_auth(sdata, ifsta, 1, NULL, 0, 0);
Jiri Bencf0706e82007-05-05 11:45:53 -0700890
891 mod_timer(&ifsta->timer, jiffies + IEEE80211_AUTH_TIMEOUT);
892}
893
Vivek Natarajan5925d972008-11-21 22:19:50 -0800894/*
895 * The disassoc 'reason' argument can be either our own reason
896 * if self disconnected or a reason code from the AP.
897 */
Tomas Winkleraa458d12008-09-09 00:32:12 +0300898static void ieee80211_set_disassoc(struct ieee80211_sub_if_data *sdata,
899 struct ieee80211_if_sta *ifsta, bool deauth,
900 bool self_disconnected, u16 reason)
901{
902 struct ieee80211_local *local = sdata->local;
903 struct sta_info *sta;
Kalle Valoe0cb6862008-12-18 23:35:13 +0200904 u32 changed = 0, config_changed = 0;
Tomas Winkleraa458d12008-09-09 00:32:12 +0300905
906 rcu_read_lock();
907
908 sta = sta_info_get(local, ifsta->bssid);
909 if (!sta) {
910 rcu_read_unlock();
911 return;
912 }
913
914 if (deauth) {
915 ifsta->direct_probe_tries = 0;
916 ifsta->auth_tries = 0;
917 }
918 ifsta->assoc_scan_tries = 0;
919 ifsta->assoc_tries = 0;
920
Tomas Winkler24e64622008-09-08 17:33:40 +0200921 netif_tx_stop_all_queues(sdata->dev);
Tomas Winkleraa458d12008-09-09 00:32:12 +0300922 netif_carrier_off(sdata->dev);
923
Johannes Berg17741cd2008-09-11 00:02:02 +0200924 ieee80211_sta_tear_down_BA_sessions(sdata, sta->sta.addr);
Tomas Winkleraa458d12008-09-09 00:32:12 +0300925
926 if (self_disconnected) {
927 if (deauth)
Johannes Bergef422bc2008-09-09 10:58:25 +0200928 ieee80211_send_deauth_disassoc(sdata,
929 IEEE80211_STYPE_DEAUTH, reason);
Tomas Winkleraa458d12008-09-09 00:32:12 +0300930 else
Johannes Bergef422bc2008-09-09 10:58:25 +0200931 ieee80211_send_deauth_disassoc(sdata,
932 IEEE80211_STYPE_DISASSOC, reason);
Tomas Winkleraa458d12008-09-09 00:32:12 +0300933 }
934
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200935 ifsta->flags &= ~IEEE80211_STA_ASSOCIATED;
936 changed |= ieee80211_reset_erp_info(sdata);
937
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200938 ieee80211_led_assoc(local, 0);
Johannes Bergae5eb022008-10-14 16:58:37 +0200939 changed |= BSS_CHANGED_ASSOC;
940 sdata->vif.bss_conf.assoc = false;
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200941
942 ieee80211_sta_send_apinfo(sdata, ifsta);
Tomas Winkleraa458d12008-09-09 00:32:12 +0300943
Vasanthakumar Thiagarajan7a947082009-02-04 18:28:48 +0530944 if (self_disconnected || reason == WLAN_REASON_DISASSOC_STA_HAS_LEFT) {
Tomas Winkleraa458d12008-09-09 00:32:12 +0300945 ifsta->state = IEEE80211_STA_MLME_DISABLED;
Vasanthakumar Thiagarajan7a947082009-02-04 18:28:48 +0530946 ieee80211_rx_bss_remove(sdata, ifsta->bssid,
947 sdata->local->hw.conf.channel->center_freq,
948 ifsta->ssid, ifsta->ssid_len);
949 }
Tomas Winkleraa458d12008-09-09 00:32:12 +0300950
Tomas Winkleraa458d12008-09-09 00:32:12 +0300951 rcu_read_unlock();
952
Johannes Berg47979382009-01-07 10:13:27 +0100953 /* channel(_type) changes are handled by ieee80211_hw_config */
Sujith094d05d2008-12-12 11:57:43 +0530954 local->oper_channel_type = NL80211_CHAN_NO_HT;
Johannes Bergae5eb022008-10-14 16:58:37 +0200955
Vasanthakumar Thiagarajana8302de2009-01-09 18:14:15 +0530956 local->power_constr_level = 0;
957
Kalle Valo520eb822008-12-18 23:35:27 +0200958 del_timer_sync(&local->dynamic_ps_timer);
959 cancel_work_sync(&local->dynamic_ps_enable_work);
960
Kalle Valoe0cb6862008-12-18 23:35:13 +0200961 if (local->hw.conf.flags & IEEE80211_CONF_PS) {
962 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
963 config_changed |= IEEE80211_CONF_CHANGE_PS;
964 }
965
966 ieee80211_hw_config(local, config_changed);
Johannes Bergae5eb022008-10-14 16:58:37 +0200967 ieee80211_bss_info_change_notify(sdata, changed);
Tomas Winkler8e268e42008-11-25 13:05:44 +0200968
969 rcu_read_lock();
970
971 sta = sta_info_get(local, ifsta->bssid);
972 if (!sta) {
973 rcu_read_unlock();
974 return;
975 }
976
977 sta_info_unlink(&sta);
978
979 rcu_read_unlock();
980
981 sta_info_destroy(sta);
Tomas Winkleraa458d12008-09-09 00:32:12 +0300982}
Jiri Bencf0706e82007-05-05 11:45:53 -0700983
Johannes Berg9ac19a92008-09-09 10:57:09 +0200984static int ieee80211_sta_wep_configured(struct ieee80211_sub_if_data *sdata)
985{
986 if (!sdata || !sdata->default_key ||
987 sdata->default_key->conf.alg != ALG_WEP)
988 return 0;
989 return 1;
990}
991
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200992static int ieee80211_privacy_mismatch(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -0700993 struct ieee80211_if_sta *ifsta)
994{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200995 struct ieee80211_local *local = sdata->local;
Johannes Bergc2b13452008-09-11 00:01:55 +0200996 struct ieee80211_bss *bss;
Johannes Berg5b98b1f2007-11-03 13:11:10 +0000997 int bss_privacy;
998 int wep_privacy;
999 int privacy_invoked;
Jiri Bencf0706e82007-05-05 11:45:53 -07001000
Johannes Berg5b98b1f2007-11-03 13:11:10 +00001001 if (!ifsta || (ifsta->flags & IEEE80211_STA_MIXED_CELL))
Jiri Bencf0706e82007-05-05 11:45:53 -07001002 return 0;
1003
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001004 bss = ieee80211_rx_bss_get(local, ifsta->bssid,
Johannes Berg8318d782008-01-24 19:38:38 +01001005 local->hw.conf.channel->center_freq,
John W. Linvillecffdd302007-10-05 14:23:27 -04001006 ifsta->ssid, ifsta->ssid_len);
Jiri Bencf0706e82007-05-05 11:45:53 -07001007 if (!bss)
1008 return 0;
1009
Johannes Berg5b98b1f2007-11-03 13:11:10 +00001010 bss_privacy = !!(bss->capability & WLAN_CAPABILITY_PRIVACY);
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001011 wep_privacy = !!ieee80211_sta_wep_configured(sdata);
Johannes Berg5b98b1f2007-11-03 13:11:10 +00001012 privacy_invoked = !!(ifsta->flags & IEEE80211_STA_PRIVACY_INVOKED);
Jiri Bencf0706e82007-05-05 11:45:53 -07001013
Johannes Berg3e122be2008-07-09 14:40:34 +02001014 ieee80211_rx_bss_put(local, bss);
Jiri Bencf0706e82007-05-05 11:45:53 -07001015
Johannes Berg5b98b1f2007-11-03 13:11:10 +00001016 if ((bss_privacy == wep_privacy) || (bss_privacy == privacy_invoked))
1017 return 0;
1018
1019 return 1;
Jiri Bencf0706e82007-05-05 11:45:53 -07001020}
1021
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001022static void ieee80211_associate(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001023 struct ieee80211_if_sta *ifsta)
1024{
1025 ifsta->assoc_tries++;
1026 if (ifsta->assoc_tries > IEEE80211_ASSOC_MAX_TRIES) {
Johannes Berg0c68ae262008-10-27 15:56:10 -07001027 printk(KERN_DEBUG "%s: association with AP %pM"
Jiri Bencf0706e82007-05-05 11:45:53 -07001028 " timed out\n",
Johannes Berg0c68ae262008-10-27 15:56:10 -07001029 sdata->dev->name, ifsta->bssid);
Tomas Winkler48c2fc52008-08-06 14:22:01 +03001030 ifsta->state = IEEE80211_STA_MLME_DISABLED;
Johannes Berg4a68ec52008-10-16 21:44:44 +02001031 ieee80211_sta_send_apinfo(sdata, ifsta);
Vasanthakumar Thiagarajan7a947082009-02-04 18:28:48 +05301032 ieee80211_rx_bss_remove(sdata, ifsta->bssid,
1033 sdata->local->hw.conf.channel->center_freq,
1034 ifsta->ssid, ifsta->ssid_len);
Jiri Bencf0706e82007-05-05 11:45:53 -07001035 return;
1036 }
1037
Tomas Winkler48c2fc52008-08-06 14:22:01 +03001038 ifsta->state = IEEE80211_STA_MLME_ASSOCIATE;
Johannes Berg0c68ae262008-10-27 15:56:10 -07001039 printk(KERN_DEBUG "%s: associate with AP %pM\n",
1040 sdata->dev->name, ifsta->bssid);
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001041 if (ieee80211_privacy_mismatch(sdata, ifsta)) {
Jiri Bencf0706e82007-05-05 11:45:53 -07001042 printk(KERN_DEBUG "%s: mismatch in privacy configuration and "
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001043 "mixed-cell disabled - abort association\n", sdata->dev->name);
Tomas Winkler48c2fc52008-08-06 14:22:01 +03001044 ifsta->state = IEEE80211_STA_MLME_DISABLED;
Jiri Bencf0706e82007-05-05 11:45:53 -07001045 return;
1046 }
1047
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001048 ieee80211_send_assoc(sdata, ifsta);
Jiri Bencf0706e82007-05-05 11:45:53 -07001049
1050 mod_timer(&ifsta->timer, jiffies + IEEE80211_ASSOC_TIMEOUT);
1051}
1052
1053
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001054static void ieee80211_associated(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001055 struct ieee80211_if_sta *ifsta)
1056{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001057 struct ieee80211_local *local = sdata->local;
Jiri Bencf0706e82007-05-05 11:45:53 -07001058 struct sta_info *sta;
1059 int disassoc;
1060
1061 /* TODO: start monitoring current AP signal quality and number of
1062 * missed beacons. Scan other channels every now and then and search
1063 * for better APs. */
1064 /* TODO: remove expired BSSes */
1065
Tomas Winkler48c2fc52008-08-06 14:22:01 +03001066 ifsta->state = IEEE80211_STA_MLME_ASSOCIATED;
Jiri Bencf0706e82007-05-05 11:45:53 -07001067
Johannes Bergd0709a62008-02-25 16:27:46 +01001068 rcu_read_lock();
1069
Jiri Bencf0706e82007-05-05 11:45:53 -07001070 sta = sta_info_get(local, ifsta->bssid);
1071 if (!sta) {
Johannes Berg0c68ae262008-10-27 15:56:10 -07001072 printk(KERN_DEBUG "%s: No STA entry for own AP %pM\n",
1073 sdata->dev->name, ifsta->bssid);
Jiri Bencf0706e82007-05-05 11:45:53 -07001074 disassoc = 1;
1075 } else {
1076 disassoc = 0;
1077 if (time_after(jiffies,
1078 sta->last_rx + IEEE80211_MONITORING_INTERVAL)) {
Jiri Slabyd6f2da52007-08-28 17:01:54 -04001079 if (ifsta->flags & IEEE80211_STA_PROBEREQ_POLL) {
Jiri Bencf0706e82007-05-05 11:45:53 -07001080 printk(KERN_DEBUG "%s: No ProbeResp from "
Johannes Berg0c68ae262008-10-27 15:56:10 -07001081 "current AP %pM - assume out of "
Jiri Bencf0706e82007-05-05 11:45:53 -07001082 "range\n",
Johannes Berg0c68ae262008-10-27 15:56:10 -07001083 sdata->dev->name, ifsta->bssid);
Jiri Bencf0706e82007-05-05 11:45:53 -07001084 disassoc = 1;
Jiri Slabyd6f2da52007-08-28 17:01:54 -04001085 } else
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001086 ieee80211_send_probe_req(sdata, ifsta->bssid,
Johannes Berg4dfe51e2008-09-19 05:10:34 +02001087 ifsta->ssid,
1088 ifsta->ssid_len);
Jiri Slabyd6f2da52007-08-28 17:01:54 -04001089 ifsta->flags ^= IEEE80211_STA_PROBEREQ_POLL;
Jiri Bencf0706e82007-05-05 11:45:53 -07001090 } else {
Jiri Slabyd6f2da52007-08-28 17:01:54 -04001091 ifsta->flags &= ~IEEE80211_STA_PROBEREQ_POLL;
Jiri Bencf0706e82007-05-05 11:45:53 -07001092 if (time_after(jiffies, ifsta->last_probe +
1093 IEEE80211_PROBE_INTERVAL)) {
1094 ifsta->last_probe = jiffies;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001095 ieee80211_send_probe_req(sdata, ifsta->bssid,
Jiri Bencf0706e82007-05-05 11:45:53 -07001096 ifsta->ssid,
1097 ifsta->ssid_len);
1098 }
1099 }
Jiri Bencf0706e82007-05-05 11:45:53 -07001100 }
Johannes Bergd0709a62008-02-25 16:27:46 +01001101
1102 rcu_read_unlock();
1103
Vasanthakumar Thiagarajan7a947082009-02-04 18:28:48 +05301104 if (disassoc)
Tomas Winkleraa458d12008-09-09 00:32:12 +03001105 ieee80211_set_disassoc(sdata, ifsta, true, true,
1106 WLAN_REASON_PREV_AUTH_NOT_VALID);
Vasanthakumar Thiagarajan7a947082009-02-04 18:28:48 +05301107 else
Jiri Bencf0706e82007-05-05 11:45:53 -07001108 mod_timer(&ifsta->timer, jiffies +
1109 IEEE80211_MONITORING_INTERVAL);
Jiri Bencf0706e82007-05-05 11:45:53 -07001110}
1111
1112
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001113static void ieee80211_auth_completed(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001114 struct ieee80211_if_sta *ifsta)
1115{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001116 printk(KERN_DEBUG "%s: authenticated\n", sdata->dev->name);
Jiri Slabyd6f2da52007-08-28 17:01:54 -04001117 ifsta->flags |= IEEE80211_STA_AUTHENTICATED;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001118 ieee80211_associate(sdata, ifsta);
Jiri Bencf0706e82007-05-05 11:45:53 -07001119}
1120
1121
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001122static void ieee80211_auth_challenge(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001123 struct ieee80211_if_sta *ifsta,
1124 struct ieee80211_mgmt *mgmt,
1125 size_t len)
1126{
1127 u8 *pos;
1128 struct ieee802_11_elems elems;
1129
Jiri Bencf0706e82007-05-05 11:45:53 -07001130 pos = mgmt->u.auth.variable;
John W. Linville67a4cce2007-10-12 16:40:37 -04001131 ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), &elems);
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001132 if (!elems.challenge)
Jiri Bencf0706e82007-05-05 11:45:53 -07001133 return;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001134 ieee80211_send_auth(sdata, ifsta, 3, elems.challenge - 2,
Jiri Bencf0706e82007-05-05 11:45:53 -07001135 elems.challenge_len + 2, 1);
1136}
1137
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001138static void ieee80211_rx_mgmt_auth(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001139 struct ieee80211_if_sta *ifsta,
1140 struct ieee80211_mgmt *mgmt,
1141 size_t len)
1142{
Jiri Bencf0706e82007-05-05 11:45:53 -07001143 u16 auth_alg, auth_transaction, status_code;
1144
Tomas Winkler48c2fc52008-08-06 14:22:01 +03001145 if (ifsta->state != IEEE80211_STA_MLME_AUTHENTICATE &&
Johannes Berg05c914f2008-09-11 00:01:58 +02001146 sdata->vif.type != NL80211_IFTYPE_ADHOC)
Jiri Bencf0706e82007-05-05 11:45:53 -07001147 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001148
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001149 if (len < 24 + 6)
Jiri Bencf0706e82007-05-05 11:45:53 -07001150 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001151
Johannes Berg05c914f2008-09-11 00:01:58 +02001152 if (sdata->vif.type != NL80211_IFTYPE_ADHOC &&
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001153 memcmp(ifsta->bssid, mgmt->sa, ETH_ALEN) != 0)
Jiri Bencf0706e82007-05-05 11:45:53 -07001154 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001155
Johannes Berg05c914f2008-09-11 00:01:58 +02001156 if (sdata->vif.type != NL80211_IFTYPE_ADHOC &&
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001157 memcmp(ifsta->bssid, mgmt->bssid, ETH_ALEN) != 0)
Jiri Bencf0706e82007-05-05 11:45:53 -07001158 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001159
1160 auth_alg = le16_to_cpu(mgmt->u.auth.auth_alg);
1161 auth_transaction = le16_to_cpu(mgmt->u.auth.auth_transaction);
1162 status_code = le16_to_cpu(mgmt->u.auth.status_code);
1163
Johannes Berg05c914f2008-09-11 00:01:58 +02001164 if (sdata->vif.type == NL80211_IFTYPE_ADHOC) {
Johannes Berg135a2112008-06-16 20:55:29 +02001165 /*
1166 * IEEE 802.11 standard does not require authentication in IBSS
Jiri Bencf0706e82007-05-05 11:45:53 -07001167 * networks and most implementations do not seem to use it.
1168 * However, try to reply to authentication attempts if someone
1169 * has actually implemented this.
Johannes Berg135a2112008-06-16 20:55:29 +02001170 */
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001171 if (auth_alg != WLAN_AUTH_OPEN || auth_transaction != 1)
Jiri Bencf0706e82007-05-05 11:45:53 -07001172 return;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001173 ieee80211_send_auth(sdata, ifsta, 2, NULL, 0, 0);
Jiri Bencf0706e82007-05-05 11:45:53 -07001174 }
1175
1176 if (auth_alg != ifsta->auth_alg ||
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001177 auth_transaction != ifsta->auth_transaction)
Jiri Bencf0706e82007-05-05 11:45:53 -07001178 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001179
1180 if (status_code != WLAN_STATUS_SUCCESS) {
Jiri Bencf0706e82007-05-05 11:45:53 -07001181 if (status_code == WLAN_STATUS_NOT_SUPPORTED_AUTH_ALG) {
1182 u8 algs[3];
1183 const int num_algs = ARRAY_SIZE(algs);
1184 int i, pos;
1185 algs[0] = algs[1] = algs[2] = 0xff;
1186 if (ifsta->auth_algs & IEEE80211_AUTH_ALG_OPEN)
1187 algs[0] = WLAN_AUTH_OPEN;
1188 if (ifsta->auth_algs & IEEE80211_AUTH_ALG_SHARED_KEY)
1189 algs[1] = WLAN_AUTH_SHARED_KEY;
1190 if (ifsta->auth_algs & IEEE80211_AUTH_ALG_LEAP)
1191 algs[2] = WLAN_AUTH_LEAP;
1192 if (ifsta->auth_alg == WLAN_AUTH_OPEN)
1193 pos = 0;
1194 else if (ifsta->auth_alg == WLAN_AUTH_SHARED_KEY)
1195 pos = 1;
1196 else
1197 pos = 2;
1198 for (i = 0; i < num_algs; i++) {
1199 pos++;
1200 if (pos >= num_algs)
1201 pos = 0;
1202 if (algs[pos] == ifsta->auth_alg ||
1203 algs[pos] == 0xff)
1204 continue;
1205 if (algs[pos] == WLAN_AUTH_SHARED_KEY &&
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001206 !ieee80211_sta_wep_configured(sdata))
Jiri Bencf0706e82007-05-05 11:45:53 -07001207 continue;
1208 ifsta->auth_alg = algs[pos];
Jiri Bencf0706e82007-05-05 11:45:53 -07001209 break;
1210 }
1211 }
1212 return;
1213 }
1214
1215 switch (ifsta->auth_alg) {
1216 case WLAN_AUTH_OPEN:
1217 case WLAN_AUTH_LEAP:
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001218 ieee80211_auth_completed(sdata, ifsta);
Jiri Bencf0706e82007-05-05 11:45:53 -07001219 break;
1220 case WLAN_AUTH_SHARED_KEY:
1221 if (ifsta->auth_transaction == 4)
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001222 ieee80211_auth_completed(sdata, ifsta);
Jiri Bencf0706e82007-05-05 11:45:53 -07001223 else
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001224 ieee80211_auth_challenge(sdata, ifsta, mgmt, len);
Jiri Bencf0706e82007-05-05 11:45:53 -07001225 break;
1226 }
1227}
1228
1229
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001230static void ieee80211_rx_mgmt_deauth(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001231 struct ieee80211_if_sta *ifsta,
1232 struct ieee80211_mgmt *mgmt,
1233 size_t len)
1234{
1235 u16 reason_code;
1236
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001237 if (len < 24 + 2)
Jiri Bencf0706e82007-05-05 11:45:53 -07001238 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001239
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001240 if (memcmp(ifsta->bssid, mgmt->sa, ETH_ALEN))
Jiri Bencf0706e82007-05-05 11:45:53 -07001241 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001242
1243 reason_code = le16_to_cpu(mgmt->u.deauth.reason_code);
1244
Johannes Berg988c0f72008-04-17 19:21:22 +02001245 if (ifsta->flags & IEEE80211_STA_AUTHENTICATED)
Zhu Yi97c8b012008-10-28 15:58:31 +08001246 printk(KERN_DEBUG "%s: deauthenticated (Reason: %u)\n",
1247 sdata->dev->name, reason_code);
Jiri Bencf0706e82007-05-05 11:45:53 -07001248
Tomas Winkler48c2fc52008-08-06 14:22:01 +03001249 if (ifsta->state == IEEE80211_STA_MLME_AUTHENTICATE ||
1250 ifsta->state == IEEE80211_STA_MLME_ASSOCIATE ||
1251 ifsta->state == IEEE80211_STA_MLME_ASSOCIATED) {
Ron Rindjunsky9859b812008-08-09 03:02:19 +03001252 ifsta->state = IEEE80211_STA_MLME_DIRECT_PROBE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001253 mod_timer(&ifsta->timer, jiffies +
1254 IEEE80211_RETRY_AUTH_INTERVAL);
1255 }
1256
Tomas Winkleraa458d12008-09-09 00:32:12 +03001257 ieee80211_set_disassoc(sdata, ifsta, true, false, 0);
Jiri Slabyd6f2da52007-08-28 17:01:54 -04001258 ifsta->flags &= ~IEEE80211_STA_AUTHENTICATED;
Jiri Bencf0706e82007-05-05 11:45:53 -07001259}
1260
1261
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001262static void ieee80211_rx_mgmt_disassoc(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001263 struct ieee80211_if_sta *ifsta,
1264 struct ieee80211_mgmt *mgmt,
1265 size_t len)
1266{
1267 u16 reason_code;
1268
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001269 if (len < 24 + 2)
Jiri Bencf0706e82007-05-05 11:45:53 -07001270 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001271
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001272 if (memcmp(ifsta->bssid, mgmt->sa, ETH_ALEN))
Jiri Bencf0706e82007-05-05 11:45:53 -07001273 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001274
1275 reason_code = le16_to_cpu(mgmt->u.disassoc.reason_code);
1276
Jiri Slabyd6f2da52007-08-28 17:01:54 -04001277 if (ifsta->flags & IEEE80211_STA_ASSOCIATED)
Zhu Yi97c8b012008-10-28 15:58:31 +08001278 printk(KERN_DEBUG "%s: disassociated (Reason: %u)\n",
1279 sdata->dev->name, reason_code);
Jiri Bencf0706e82007-05-05 11:45:53 -07001280
Tomas Winkler48c2fc52008-08-06 14:22:01 +03001281 if (ifsta->state == IEEE80211_STA_MLME_ASSOCIATED) {
1282 ifsta->state = IEEE80211_STA_MLME_ASSOCIATE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001283 mod_timer(&ifsta->timer, jiffies +
1284 IEEE80211_RETRY_AUTH_INTERVAL);
1285 }
1286
Vivek Natarajan5925d972008-11-21 22:19:50 -08001287 ieee80211_set_disassoc(sdata, ifsta, false, false, reason_code);
Jiri Bencf0706e82007-05-05 11:45:53 -07001288}
1289
1290
Johannes Berg471b3ef2007-12-28 14:32:58 +01001291static void ieee80211_rx_mgmt_assoc_resp(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001292 struct ieee80211_if_sta *ifsta,
1293 struct ieee80211_mgmt *mgmt,
1294 size_t len,
1295 int reassoc)
1296{
Johannes Berg471b3ef2007-12-28 14:32:58 +01001297 struct ieee80211_local *local = sdata->local;
Johannes Berg8318d782008-01-24 19:38:38 +01001298 struct ieee80211_supported_band *sband;
Jiri Bencf0706e82007-05-05 11:45:53 -07001299 struct sta_info *sta;
Johannes Berg881d9482009-01-21 15:13:48 +01001300 u32 rates, basic_rates;
Jiri Bencf0706e82007-05-05 11:45:53 -07001301 u16 capab_info, status_code, aid;
1302 struct ieee802_11_elems elems;
Johannes Bergbda39332008-10-11 01:51:51 +02001303 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
Jiri Bencf0706e82007-05-05 11:45:53 -07001304 u8 *pos;
Johannes Bergae5eb022008-10-14 16:58:37 +02001305 u32 changed = 0;
Jiri Bencf0706e82007-05-05 11:45:53 -07001306 int i, j;
Johannes Bergddf4ac52008-10-22 11:41:38 +02001307 bool have_higher_than_11mbit = false, newsta = false;
Johannes Bergae5eb022008-10-14 16:58:37 +02001308 u16 ap_ht_cap_flags;
Jiri Bencf0706e82007-05-05 11:45:53 -07001309
1310 /* AssocResp and ReassocResp have identical structure, so process both
1311 * of them in this function. */
1312
Tomas Winkler48c2fc52008-08-06 14:22:01 +03001313 if (ifsta->state != IEEE80211_STA_MLME_ASSOCIATE)
Jiri Bencf0706e82007-05-05 11:45:53 -07001314 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001315
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001316 if (len < 24 + 6)
Jiri Bencf0706e82007-05-05 11:45:53 -07001317 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001318
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001319 if (memcmp(ifsta->bssid, mgmt->sa, ETH_ALEN) != 0)
Jiri Bencf0706e82007-05-05 11:45:53 -07001320 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001321
1322 capab_info = le16_to_cpu(mgmt->u.assoc_resp.capab_info);
1323 status_code = le16_to_cpu(mgmt->u.assoc_resp.status_code);
1324 aid = le16_to_cpu(mgmt->u.assoc_resp.aid);
Jiri Bencf0706e82007-05-05 11:45:53 -07001325
Johannes Berg0c68ae262008-10-27 15:56:10 -07001326 printk(KERN_DEBUG "%s: RX %sssocResp from %pM (capab=0x%x "
Jiri Bencf0706e82007-05-05 11:45:53 -07001327 "status=%d aid=%d)\n",
Johannes Berg0c68ae262008-10-27 15:56:10 -07001328 sdata->dev->name, reassoc ? "Rea" : "A", mgmt->sa,
Johannes Bergddd68582007-10-22 14:51:37 +02001329 capab_info, status_code, (u16)(aid & ~(BIT(15) | BIT(14))));
Jiri Bencf0706e82007-05-05 11:45:53 -07001330
Jouni Malinen63a5ab82009-01-08 13:32:09 +02001331 pos = mgmt->u.assoc_resp.variable;
1332 ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), &elems);
1333
1334 if (status_code == WLAN_STATUS_ASSOC_REJECTED_TEMPORARILY &&
Jouni Malinenf797eb72009-01-19 18:48:46 +02001335 elems.timeout_int && elems.timeout_int_len == 5 &&
1336 elems.timeout_int[0] == WLAN_TIMEOUT_ASSOC_COMEBACK) {
Jouni Malinen63a5ab82009-01-08 13:32:09 +02001337 u32 tu, ms;
Jouni Malinenf797eb72009-01-19 18:48:46 +02001338 tu = get_unaligned_le32(elems.timeout_int + 1);
Jouni Malinen63a5ab82009-01-08 13:32:09 +02001339 ms = tu * 1024 / 1000;
1340 printk(KERN_DEBUG "%s: AP rejected association temporarily; "
1341 "comeback duration %u TU (%u ms)\n",
1342 sdata->dev->name, tu, ms);
1343 if (ms > IEEE80211_ASSOC_TIMEOUT)
1344 mod_timer(&ifsta->timer,
1345 jiffies + msecs_to_jiffies(ms));
1346 return;
1347 }
1348
Jiri Bencf0706e82007-05-05 11:45:53 -07001349 if (status_code != WLAN_STATUS_SUCCESS) {
1350 printk(KERN_DEBUG "%s: AP denied association (code=%d)\n",
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001351 sdata->dev->name, status_code);
Daniel Drake8a69aa92007-07-27 15:43:23 +02001352 /* if this was a reassociation, ensure we try a "full"
1353 * association next time. This works around some broken APs
1354 * which do not correctly reject reassociation requests. */
Jiri Slabyd6f2da52007-08-28 17:01:54 -04001355 ifsta->flags &= ~IEEE80211_STA_PREV_BSSID_SET;
Jiri Bencf0706e82007-05-05 11:45:53 -07001356 return;
1357 }
1358
Johannes Berg1dd84aa2007-10-10 12:03:41 +02001359 if ((aid & (BIT(15) | BIT(14))) != (BIT(15) | BIT(14)))
1360 printk(KERN_DEBUG "%s: invalid aid value %d; bits 15:14 not "
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001361 "set\n", sdata->dev->name, aid);
Johannes Berg1dd84aa2007-10-10 12:03:41 +02001362 aid &= ~(BIT(15) | BIT(14));
1363
Jiri Bencf0706e82007-05-05 11:45:53 -07001364 if (!elems.supp_rates) {
1365 printk(KERN_DEBUG "%s: no SuppRates element in AssocResp\n",
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001366 sdata->dev->name);
Jiri Bencf0706e82007-05-05 11:45:53 -07001367 return;
1368 }
1369
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001370 printk(KERN_DEBUG "%s: associated\n", sdata->dev->name);
Jiri Bencf0706e82007-05-05 11:45:53 -07001371 ifsta->aid = aid;
1372 ifsta->ap_capab = capab_info;
1373
1374 kfree(ifsta->assocresp_ies);
1375 ifsta->assocresp_ies_len = len - (pos - (u8 *) mgmt);
Michael Wu0ec0b7a2007-07-27 15:43:24 +02001376 ifsta->assocresp_ies = kmalloc(ifsta->assocresp_ies_len, GFP_KERNEL);
Jiri Bencf0706e82007-05-05 11:45:53 -07001377 if (ifsta->assocresp_ies)
1378 memcpy(ifsta->assocresp_ies, pos, ifsta->assocresp_ies_len);
1379
Johannes Bergd0709a62008-02-25 16:27:46 +01001380 rcu_read_lock();
1381
Jiri Bencf0706e82007-05-05 11:45:53 -07001382 /* Add STA entry for the AP */
1383 sta = sta_info_get(local, ifsta->bssid);
1384 if (!sta) {
Johannes Bergc2b13452008-09-11 00:01:55 +02001385 struct ieee80211_bss *bss;
Johannes Bergddf4ac52008-10-22 11:41:38 +02001386
1387 newsta = true;
Johannes Bergd0709a62008-02-25 16:27:46 +01001388
Johannes Berg73651ee2008-02-25 16:27:47 +01001389 sta = sta_info_alloc(sdata, ifsta->bssid, GFP_ATOMIC);
1390 if (!sta) {
1391 printk(KERN_DEBUG "%s: failed to alloc STA entry for"
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001392 " the AP\n", sdata->dev->name);
Johannes Bergd0709a62008-02-25 16:27:46 +01001393 rcu_read_unlock();
Jiri Bencf0706e82007-05-05 11:45:53 -07001394 return;
1395 }
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001396 bss = ieee80211_rx_bss_get(local, ifsta->bssid,
Johannes Berg8318d782008-01-24 19:38:38 +01001397 local->hw.conf.channel->center_freq,
John W. Linvillecffdd302007-10-05 14:23:27 -04001398 ifsta->ssid, ifsta->ssid_len);
Jiri Bencf0706e82007-05-05 11:45:53 -07001399 if (bss) {
Jiri Bencf0706e82007-05-05 11:45:53 -07001400 sta->last_signal = bss->signal;
Bruno Randolf566bfe52008-05-08 19:15:40 +02001401 sta->last_qual = bss->qual;
Jiri Bencf0706e82007-05-05 11:45:53 -07001402 sta->last_noise = bss->noise;
Johannes Berg3e122be2008-07-09 14:40:34 +02001403 ieee80211_rx_bss_put(local, bss);
Jiri Bencf0706e82007-05-05 11:45:53 -07001404 }
Johannes Berg73651ee2008-02-25 16:27:47 +01001405
Ron Rindjunskya61dae12008-08-10 00:54:34 +03001406 /* update new sta with its last rx activity */
1407 sta->last_rx = jiffies;
Jiri Bencf0706e82007-05-05 11:45:53 -07001408 }
1409
Johannes Berg73651ee2008-02-25 16:27:47 +01001410 /*
1411 * FIXME: Do we really need to update the sta_info's information here?
1412 * We already know about the AP (we found it in our list) so it
1413 * should already be filled with the right info, no?
1414 * As is stands, all this is racy because typically we assume
1415 * the information that is filled in here (except flags) doesn't
1416 * change while a STA structure is alive. As such, it should move
1417 * to between the sta_info_alloc() and sta_info_insert() above.
1418 */
1419
Johannes Berg07346f812008-05-03 01:02:02 +02001420 set_sta_flags(sta, WLAN_STA_AUTH | WLAN_STA_ASSOC | WLAN_STA_ASSOC_AP |
1421 WLAN_STA_AUTHORIZED);
Jiri Bencf0706e82007-05-05 11:45:53 -07001422
1423 rates = 0;
Johannes Berg8318d782008-01-24 19:38:38 +01001424 basic_rates = 0;
1425 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
1426
Jiri Bencf0706e82007-05-05 11:45:53 -07001427 for (i = 0; i < elems.supp_rates_len; i++) {
1428 int rate = (elems.supp_rates[i] & 0x7f) * 5;
Tomas Winklerd61272c2008-10-30 17:08:08 +02001429 bool is_basic = !!(elems.supp_rates[i] & 0x80);
Johannes Berg8318d782008-01-24 19:38:38 +01001430
1431 if (rate > 110)
1432 have_higher_than_11mbit = true;
1433
1434 for (j = 0; j < sband->n_bitrates; j++) {
Tomas Winklerd61272c2008-10-30 17:08:08 +02001435 if (sband->bitrates[j].bitrate == rate) {
Jiri Bencf0706e82007-05-05 11:45:53 -07001436 rates |= BIT(j);
Tomas Winklerd61272c2008-10-30 17:08:08 +02001437 if (is_basic)
1438 basic_rates |= BIT(j);
1439 break;
1440 }
Johannes Berg8318d782008-01-24 19:38:38 +01001441 }
Jiri Bencf0706e82007-05-05 11:45:53 -07001442 }
Johannes Berg8318d782008-01-24 19:38:38 +01001443
Jiri Bencf0706e82007-05-05 11:45:53 -07001444 for (i = 0; i < elems.ext_supp_rates_len; i++) {
1445 int rate = (elems.ext_supp_rates[i] & 0x7f) * 5;
Tomas Winklerd61272c2008-10-30 17:08:08 +02001446 bool is_basic = !!(elems.supp_rates[i] & 0x80);
Johannes Berg8318d782008-01-24 19:38:38 +01001447
1448 if (rate > 110)
1449 have_higher_than_11mbit = true;
1450
1451 for (j = 0; j < sband->n_bitrates; j++) {
Tomas Winklerd61272c2008-10-30 17:08:08 +02001452 if (sband->bitrates[j].bitrate == rate) {
Jiri Bencf0706e82007-05-05 11:45:53 -07001453 rates |= BIT(j);
Tomas Winklerd61272c2008-10-30 17:08:08 +02001454 if (is_basic)
1455 basic_rates |= BIT(j);
1456 break;
1457 }
Johannes Berg8318d782008-01-24 19:38:38 +01001458 }
Jiri Bencf0706e82007-05-05 11:45:53 -07001459 }
Johannes Berg8318d782008-01-24 19:38:38 +01001460
Johannes Berg323ce792008-09-11 02:45:11 +02001461 sta->sta.supp_rates[local->hw.conf.channel->band] = rates;
Johannes Bergbda39332008-10-11 01:51:51 +02001462 sdata->vif.bss_conf.basic_rates = basic_rates;
Johannes Berg8318d782008-01-24 19:38:38 +01001463
1464 /* cf. IEEE 802.11 9.2.12 */
1465 if (local->hw.conf.channel->band == IEEE80211_BAND_2GHZ &&
1466 have_higher_than_11mbit)
1467 sdata->flags |= IEEE80211_SDATA_OPERATING_GMODE;
1468 else
1469 sdata->flags &= ~IEEE80211_SDATA_OPERATING_GMODE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001470
Johannes Bergae5eb022008-10-14 16:58:37 +02001471 if (elems.ht_cap_elem)
1472 ieee80211_ht_cap_ie_to_sta_ht_cap(sband,
Johannes Bergd9fe60d2008-10-09 12:13:49 +02001473 elems.ht_cap_elem, &sta->sta.ht_cap);
Johannes Bergae5eb022008-10-14 16:58:37 +02001474
1475 ap_ht_cap_flags = sta->sta.ht_cap.cap;
Ron Rindjunskyd3c990f2007-11-26 16:14:34 +02001476
Johannes Berg4b7679a2008-09-18 18:14:18 +02001477 rate_control_rate_init(sta);
Jiri Bencf0706e82007-05-05 11:45:53 -07001478
Jouni Malinen5394af42009-01-08 13:31:59 +02001479 if (ifsta->flags & IEEE80211_STA_MFP_ENABLED)
1480 set_sta_flags(sta, WLAN_STA_MFP);
1481
Johannes Bergddf4ac52008-10-22 11:41:38 +02001482 if (elems.wmm_param)
Johannes Berg07346f812008-05-03 01:02:02 +02001483 set_sta_flags(sta, WLAN_STA_WME);
Johannes Bergddf4ac52008-10-22 11:41:38 +02001484
1485 if (newsta) {
1486 int err = sta_info_insert(sta);
1487 if (err) {
1488 printk(KERN_DEBUG "%s: failed to insert STA entry for"
1489 " the AP (error %d)\n", sdata->dev->name, err);
1490 rcu_read_unlock();
1491 return;
1492 }
1493 }
1494
1495 rcu_read_unlock();
1496
1497 if (elems.wmm_param)
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001498 ieee80211_sta_wmm_params(local, ifsta, elems.wmm_param,
Jiri Bencf0706e82007-05-05 11:45:53 -07001499 elems.wmm_param_len);
Jiri Bencf0706e82007-05-05 11:45:53 -07001500
Johannes Bergae5eb022008-10-14 16:58:37 +02001501 if (elems.ht_info_elem && elems.wmm_param &&
1502 (ifsta->flags & IEEE80211_STA_WMM_ENABLED))
1503 changed |= ieee80211_enable_ht(sdata, elems.ht_info_elem,
1504 ap_ht_cap_flags);
1505
Tomas Winkler21c0cbe2008-03-28 16:33:34 -07001506 /* set AID and assoc capability,
1507 * ieee80211_set_associated() will tell the driver */
Johannes Berg8318d782008-01-24 19:38:38 +01001508 bss_conf->aid = aid;
Tomas Winkler21c0cbe2008-03-28 16:33:34 -07001509 bss_conf->assoc_capability = capab_info;
Johannes Bergae5eb022008-10-14 16:58:37 +02001510 ieee80211_set_associated(sdata, ifsta, changed);
Jiri Bencf0706e82007-05-05 11:45:53 -07001511
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001512 ieee80211_associated(sdata, ifsta);
Jiri Bencf0706e82007-05-05 11:45:53 -07001513}
1514
1515
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001516static int ieee80211_sta_join_ibss(struct ieee80211_sub_if_data *sdata,
Bruno Randolfa6072682008-02-18 11:21:15 +09001517 struct ieee80211_if_sta *ifsta,
Johannes Bergc2b13452008-09-11 00:01:55 +02001518 struct ieee80211_bss *bss)
Bruno Randolfa6072682008-02-18 11:21:15 +09001519{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001520 struct ieee80211_local *local = sdata->local;
Alina Friedrichsenc4e3a582009-01-29 13:56:20 +01001521 int res = 0, rates, i, j;
Bruno Randolfa6072682008-02-18 11:21:15 +09001522 struct sk_buff *skb;
1523 struct ieee80211_mgmt *mgmt;
Bruno Randolfa6072682008-02-18 11:21:15 +09001524 u8 *pos;
Bruno Randolfa6072682008-02-18 11:21:15 +09001525 struct ieee80211_supported_band *sband;
Dan Williams507b06d2008-06-03 23:39:55 -04001526 union iwreq_data wrqu;
Bruno Randolfa6072682008-02-18 11:21:15 +09001527
Alina Friedrichsenc4e3a582009-01-29 13:56:20 +01001528 if (local->ops->reset_tsf) {
1529 /* Reset own TSF to allow time synchronization work. */
1530 local->ops->reset_tsf(local_to_hw(local));
1531 }
1532
1533 if ((ifsta->flags & IEEE80211_STA_PREV_BSSID_SET) &&
1534 memcmp(ifsta->bssid, bss->bssid, ETH_ALEN) == 0)
1535 return res;
1536
Jouni Malinen9aed3cc2009-01-13 16:03:29 +02001537 skb = dev_alloc_skb(local->hw.extra_tx_headroom + 400 +
1538 sdata->u.sta.ie_proberesp_len);
Rami Rosene2ef12d2008-10-22 09:58:39 +02001539 if (!skb) {
1540 printk(KERN_DEBUG "%s: failed to allocate buffer for probe "
1541 "response\n", sdata->dev->name);
1542 return -ENOMEM;
1543 }
1544
Bruno Randolfa6072682008-02-18 11:21:15 +09001545 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
1546
Alina Friedrichsenc4e3a582009-01-29 13:56:20 +01001547 if (!(ifsta->flags & IEEE80211_STA_PREV_BSSID_SET)) {
1548 /* Remove possible STA entries from other IBSS networks. */
1549 sta_info_flush_delayed(sdata);
Bruno Randolfa6072682008-02-18 11:21:15 +09001550 }
Alina Friedrichsenc4e3a582009-01-29 13:56:20 +01001551
Bruno Randolfa6072682008-02-18 11:21:15 +09001552 memcpy(ifsta->bssid, bss->bssid, ETH_ALEN);
Johannes Berg9d139c82008-07-09 14:40:37 +02001553 res = ieee80211_if_config(sdata, IEEE80211_IFCC_BSSID);
Bruno Randolfa6072682008-02-18 11:21:15 +09001554 if (res)
1555 return res;
1556
1557 local->hw.conf.beacon_int = bss->beacon_int >= 10 ? bss->beacon_int : 10;
1558
Bruno Randolfa6072682008-02-18 11:21:15 +09001559 sdata->drop_unencrypted = bss->capability &
1560 WLAN_CAPABILITY_PRIVACY ? 1 : 0;
1561
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001562 res = ieee80211_set_freq(sdata, bss->freq);
Bruno Randolfa6072682008-02-18 11:21:15 +09001563
Assaf Kraussbe038b32008-06-05 19:55:21 +03001564 if (res)
1565 return res;
Bruno Randolfa6072682008-02-18 11:21:15 +09001566
Johannes Berg9d139c82008-07-09 14:40:37 +02001567 /* Build IBSS probe response */
Bruno Randolfa6072682008-02-18 11:21:15 +09001568
Rami Rosene2ef12d2008-10-22 09:58:39 +02001569 skb_reserve(skb, local->hw.extra_tx_headroom);
Bruno Randolfa6072682008-02-18 11:21:15 +09001570
Rami Rosene2ef12d2008-10-22 09:58:39 +02001571 mgmt = (struct ieee80211_mgmt *)
1572 skb_put(skb, 24 + sizeof(mgmt->u.beacon));
1573 memset(mgmt, 0, 24 + sizeof(mgmt->u.beacon));
1574 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
1575 IEEE80211_STYPE_PROBE_RESP);
1576 memset(mgmt->da, 0xff, ETH_ALEN);
1577 memcpy(mgmt->sa, sdata->dev->dev_addr, ETH_ALEN);
1578 memcpy(mgmt->bssid, ifsta->bssid, ETH_ALEN);
1579 mgmt->u.beacon.beacon_int =
1580 cpu_to_le16(local->hw.conf.beacon_int);
1581 mgmt->u.beacon.timestamp = cpu_to_le64(bss->timestamp);
1582 mgmt->u.beacon.capab_info = cpu_to_le16(bss->capability);
Bruno Randolfa6072682008-02-18 11:21:15 +09001583
Rami Rosene2ef12d2008-10-22 09:58:39 +02001584 pos = skb_put(skb, 2 + ifsta->ssid_len);
1585 *pos++ = WLAN_EID_SSID;
1586 *pos++ = ifsta->ssid_len;
1587 memcpy(pos, ifsta->ssid, ifsta->ssid_len);
Bruno Randolfa6072682008-02-18 11:21:15 +09001588
Rami Rosene2ef12d2008-10-22 09:58:39 +02001589 rates = bss->supp_rates_len;
1590 if (rates > 8)
1591 rates = 8;
1592 pos = skb_put(skb, 2 + rates);
1593 *pos++ = WLAN_EID_SUPP_RATES;
1594 *pos++ = rates;
1595 memcpy(pos, bss->supp_rates, rates);
Bruno Randolfa6072682008-02-18 11:21:15 +09001596
Rami Rosene2ef12d2008-10-22 09:58:39 +02001597 if (bss->band == IEEE80211_BAND_2GHZ) {
1598 pos = skb_put(skb, 2 + 1);
1599 *pos++ = WLAN_EID_DS_PARAMS;
1600 *pos++ = 1;
1601 *pos++ = ieee80211_frequency_to_channel(bss->freq);
Bruno Randolfa6072682008-02-18 11:21:15 +09001602 }
1603
Rami Rosene2ef12d2008-10-22 09:58:39 +02001604 pos = skb_put(skb, 2 + 2);
1605 *pos++ = WLAN_EID_IBSS_PARAMS;
1606 *pos++ = 2;
1607 /* FIX: set ATIM window based on scan results */
1608 *pos++ = 0;
1609 *pos++ = 0;
1610
1611 if (bss->supp_rates_len > 8) {
1612 rates = bss->supp_rates_len - 8;
1613 pos = skb_put(skb, 2 + rates);
1614 *pos++ = WLAN_EID_EXT_SUPP_RATES;
1615 *pos++ = rates;
1616 memcpy(pos, &bss->supp_rates[8], rates);
1617 }
1618
Jouni Malinen9aed3cc2009-01-13 16:03:29 +02001619 add_extra_ies(skb, sdata->u.sta.ie_proberesp,
1620 sdata->u.sta.ie_proberesp_len);
1621
Rami Rosene2ef12d2008-10-22 09:58:39 +02001622 ifsta->probe_resp = skb;
1623
Johannes Berg078e1e62009-01-22 18:07:31 +01001624 ieee80211_if_config(sdata, IEEE80211_IFCC_BEACON |
1625 IEEE80211_IFCC_BEACON_ENABLED);
Rami Rosene2ef12d2008-10-22 09:58:39 +02001626
1627
Johannes Berg9d139c82008-07-09 14:40:37 +02001628 rates = 0;
1629 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
1630 for (i = 0; i < bss->supp_rates_len; i++) {
1631 int bitrate = (bss->supp_rates[i] & 0x7f) * 5;
1632 for (j = 0; j < sband->n_bitrates; j++)
1633 if (sband->bitrates[j].bitrate == bitrate)
1634 rates |= BIT(j);
1635 }
1636 ifsta->supp_rates_bits[local->hw.conf.channel->band] = rates;
1637
Johannes Bergb079ada2008-09-09 09:32:59 +02001638 ieee80211_sta_def_wmm_params(sdata, bss);
Johannes Berg9d139c82008-07-09 14:40:37 +02001639
Alina Friedrichsendfe67012009-01-24 01:19:04 +01001640 ifsta->flags |= IEEE80211_STA_PREV_BSSID_SET;
Tomas Winkler48c2fc52008-08-06 14:22:01 +03001641 ifsta->state = IEEE80211_STA_MLME_IBSS_JOINED;
Bruno Randolfa6072682008-02-18 11:21:15 +09001642 mod_timer(&ifsta->timer, jiffies + IEEE80211_IBSS_MERGE_INTERVAL);
1643
Emmanuel Grumbach4492bea2008-09-22 17:10:10 +03001644 ieee80211_led_assoc(local, true);
1645
Dan Williams507b06d2008-06-03 23:39:55 -04001646 memset(&wrqu, 0, sizeof(wrqu));
1647 memcpy(wrqu.ap_addr.sa_data, bss->bssid, ETH_ALEN);
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001648 wireless_send_event(sdata->dev, SIOCGIWAP, &wrqu, NULL);
Bruno Randolfa6072682008-02-18 11:21:15 +09001649
1650 return res;
1651}
1652
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001653static void ieee80211_rx_bss_info(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001654 struct ieee80211_mgmt *mgmt,
1655 size_t len,
1656 struct ieee80211_rx_status *rx_status,
Johannes Berg98c8fcc2008-09-08 17:44:26 +02001657 struct ieee802_11_elems *elems,
1658 bool beacon)
Jiri Bencf0706e82007-05-05 11:45:53 -07001659{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001660 struct ieee80211_local *local = sdata->local;
Johannes Berg98c8fcc2008-09-08 17:44:26 +02001661 int freq;
Johannes Bergc2b13452008-09-11 00:01:55 +02001662 struct ieee80211_bss *bss;
Jiri Bencf0706e82007-05-05 11:45:53 -07001663 struct sta_info *sta;
Johannes Bergfab7d4a2008-03-16 18:42:44 +01001664 struct ieee80211_channel *channel;
Emmanuel Grumbach8e1535d2008-09-03 23:42:20 +03001665 u64 beacon_timestamp, rx_timestamp;
Johannes Berg881d9482009-01-21 15:13:48 +01001666 u32 supp_rates = 0;
Emmanuel Grumbach8e1535d2008-09-03 23:42:20 +03001667 enum ieee80211_band band = rx_status->band;
Jiri Bencf0706e82007-05-05 11:45:53 -07001668
Johannes Berg5bda6172008-09-08 11:05:10 +02001669 if (elems->ds_params && elems->ds_params_len == 1)
1670 freq = ieee80211_channel_to_frequency(elems->ds_params[0]);
1671 else
1672 freq = rx_status->freq;
1673
1674 channel = ieee80211_get_channel(local->hw.wiphy, freq);
1675
1676 if (!channel || channel->flags & IEEE80211_CHAN_DISABLED)
1677 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001678
Johannes Berg05c914f2008-09-11 00:01:58 +02001679 if (sdata->vif.type == NL80211_IFTYPE_ADHOC && elems->supp_rates &&
Emmanuel Grumbach8e1535d2008-09-03 23:42:20 +03001680 memcmp(mgmt->bssid, sdata->u.sta.bssid, ETH_ALEN) == 0) {
Emmanuel Grumbach8e1535d2008-09-03 23:42:20 +03001681 supp_rates = ieee80211_sta_get_rates(local, elems, band);
1682
Johannes Berg69e6c012008-09-08 11:05:08 +02001683 rcu_read_lock();
1684
Emmanuel Grumbach8e1535d2008-09-03 23:42:20 +03001685 sta = sta_info_get(local, mgmt->sa);
1686 if (sta) {
Johannes Berg881d9482009-01-21 15:13:48 +01001687 u32 prev_rates;
Emmanuel Grumbach8e1535d2008-09-03 23:42:20 +03001688
Johannes Berg323ce792008-09-11 02:45:11 +02001689 prev_rates = sta->sta.supp_rates[band];
Emmanuel Grumbach8e1535d2008-09-03 23:42:20 +03001690 /* make sure mandatory rates are always added */
Johannes Berg323ce792008-09-11 02:45:11 +02001691 sta->sta.supp_rates[band] = supp_rates |
Johannes Berg96dd22a2008-09-11 00:01:57 +02001692 ieee80211_mandatory_rates(local, band);
Emmanuel Grumbach8e1535d2008-09-03 23:42:20 +03001693
1694#ifdef CONFIG_MAC80211_IBSS_DEBUG
Johannes Berg323ce792008-09-11 02:45:11 +02001695 if (sta->sta.supp_rates[band] != prev_rates)
Emmanuel Grumbach8e1535d2008-09-03 23:42:20 +03001696 printk(KERN_DEBUG "%s: updated supp_rates set "
Johannes Berg0c68ae262008-10-27 15:56:10 -07001697 "for %pM based on beacon info (0x%llx | "
Emmanuel Grumbach8e1535d2008-09-03 23:42:20 +03001698 "0x%llx -> 0x%llx)\n",
Johannes Berg17741cd2008-09-11 00:02:02 +02001699 sdata->dev->name,
Johannes Berg0c68ae262008-10-27 15:56:10 -07001700 sta->sta.addr,
Emmanuel Grumbach8e1535d2008-09-03 23:42:20 +03001701 (unsigned long long) prev_rates,
1702 (unsigned long long) supp_rates,
Johannes Berg323ce792008-09-11 02:45:11 +02001703 (unsigned long long) sta->sta.supp_rates[band]);
Emmanuel Grumbach8e1535d2008-09-03 23:42:20 +03001704#endif
1705 } else {
Rami Rosenab1f5c02008-12-11 14:00:25 +02001706 ieee80211_ibss_add_sta(sdata, mgmt->bssid, mgmt->sa, supp_rates);
Jiri Bencf0706e82007-05-05 11:45:53 -07001707 }
Jiri Bencf0706e82007-05-05 11:45:53 -07001708
Johannes Berg69e6c012008-09-08 11:05:08 +02001709 rcu_read_unlock();
1710 }
Johannes Bergd0709a62008-02-25 16:27:46 +01001711
Johannes Berg98c8fcc2008-09-08 17:44:26 +02001712 bss = ieee80211_bss_info_update(local, rx_status, mgmt, len, elems,
1713 freq, beacon);
1714 if (!bss)
1715 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001716
Sujithc481ec92009-01-06 09:28:37 +05301717 if (elems->ch_switch_elem && (elems->ch_switch_elem_len == 3) &&
1718 (memcmp(mgmt->bssid, sdata->u.sta.bssid, ETH_ALEN) == 0)) {
1719 struct ieee80211_channel_sw_ie *sw_elem =
1720 (struct ieee80211_channel_sw_ie *)elems->ch_switch_elem;
1721 ieee80211_process_chanswitch(sdata, sw_elem, bss);
1722 }
1723
Johannes Berg98c8fcc2008-09-08 17:44:26 +02001724 /* was just updated in ieee80211_bss_info_update */
1725 beacon_timestamp = bss->timestamp;
Daniel Drake56282212007-07-10 19:32:10 +02001726
Johannes Berg30b89b02008-04-16 17:43:20 +02001727 /*
1728 * In STA mode, the remaining parameters should not be overridden
1729 * by beacons because they're not necessarily accurate there.
1730 */
Johannes Berg05c914f2008-09-11 00:01:58 +02001731 if (sdata->vif.type != NL80211_IFTYPE_ADHOC &&
Ron Rindjunsky9859b812008-08-09 03:02:19 +03001732 bss->last_probe_resp && beacon) {
Johannes Berg3e122be2008-07-09 14:40:34 +02001733 ieee80211_rx_bss_put(local, bss);
Johannes Berg30b89b02008-04-16 17:43:20 +02001734 return;
1735 }
1736
Bruno Randolf9d9bf772008-02-18 11:21:36 +09001737 /* check if we need to merge IBSS */
Johannes Berg05c914f2008-09-11 00:01:58 +02001738 if (sdata->vif.type == NL80211_IFTYPE_ADHOC && beacon &&
Alina Friedrichsen65f0e6a2009-01-06 03:08:10 +01001739 (!(sdata->u.sta.flags & IEEE80211_STA_BSSID_SET)) &&
Johannes Bergfba4a1e2008-02-21 11:08:33 +01001740 bss->capability & WLAN_CAPABILITY_IBSS &&
Bruno Randolf9d9bf772008-02-18 11:21:36 +09001741 bss->freq == local->oper_channel->center_freq &&
Ester Kummerae6a44e2008-06-27 18:54:48 +03001742 elems->ssid_len == sdata->u.sta.ssid_len &&
1743 memcmp(elems->ssid, sdata->u.sta.ssid,
1744 sdata->u.sta.ssid_len) == 0) {
Bruno Randolf9d9bf772008-02-18 11:21:36 +09001745 if (rx_status->flag & RX_FLAG_TSFT) {
1746 /* in order for correct IBSS merging we need mactime
1747 *
1748 * since mactime is defined as the time the first data
1749 * symbol of the frame hits the PHY, and the timestamp
1750 * of the beacon is defined as "the time that the data
1751 * symbol containing the first bit of the timestamp is
1752 * transmitted to the PHY plus the transmitting STA’s
1753 * delays through its local PHY from the MAC-PHY
1754 * interface to its interface with the WM"
1755 * (802.11 11.1.2) - equals the time this bit arrives at
1756 * the receiver - we have to take into account the
1757 * offset between the two.
1758 * e.g: at 1 MBit that means mactime is 192 usec earlier
1759 * (=24 bytes * 8 usecs/byte) than the beacon timestamp.
1760 */
Jouni Malinen0fb8ca42008-12-12 14:38:33 +02001761 int rate;
1762 if (rx_status->flag & RX_FLAG_HT) {
1763 rate = 65; /* TODO: HT rates */
1764 } else {
1765 rate = local->hw.wiphy->bands[band]->
Bruno Randolf9d9bf772008-02-18 11:21:36 +09001766 bitrates[rx_status->rate_idx].bitrate;
Jouni Malinen0fb8ca42008-12-12 14:38:33 +02001767 }
Bruno Randolf9d9bf772008-02-18 11:21:36 +09001768 rx_timestamp = rx_status->mactime + (24 * 8 * 10 / rate);
1769 } else if (local && local->ops && local->ops->get_tsf)
1770 /* second best option: get current TSF */
1771 rx_timestamp = local->ops->get_tsf(local_to_hw(local));
1772 else
1773 /* can't merge without knowing the TSF */
1774 rx_timestamp = -1LLU;
1775#ifdef CONFIG_MAC80211_IBSS_DEBUG
Johannes Berg0c68ae262008-10-27 15:56:10 -07001776 printk(KERN_DEBUG "RX beacon SA=%pM BSSID="
1777 "%pM TSF=0x%llx BCN=0x%llx diff=%lld @%lu\n",
1778 mgmt->sa, mgmt->bssid,
Bruno Randolf9d9bf772008-02-18 11:21:36 +09001779 (unsigned long long)rx_timestamp,
1780 (unsigned long long)beacon_timestamp,
1781 (unsigned long long)(rx_timestamp - beacon_timestamp),
1782 jiffies);
1783#endif /* CONFIG_MAC80211_IBSS_DEBUG */
1784 if (beacon_timestamp > rx_timestamp) {
John W. Linville576fdea2008-08-26 20:33:34 -04001785#ifdef CONFIG_MAC80211_IBSS_DEBUG
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001786 printk(KERN_DEBUG "%s: beacon TSF higher than "
Johannes Berg0c68ae262008-10-27 15:56:10 -07001787 "local TSF - IBSS merge with BSSID %pM\n",
1788 sdata->dev->name, mgmt->bssid);
Johannes Bergfba4a1e2008-02-21 11:08:33 +01001789#endif
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001790 ieee80211_sta_join_ibss(sdata, &sdata->u.sta, bss);
Rami Rosenab1f5c02008-12-11 14:00:25 +02001791 ieee80211_ibss_add_sta(sdata, mgmt->bssid, mgmt->sa, supp_rates);
Bruno Randolf9d9bf772008-02-18 11:21:36 +09001792 }
1793 }
1794
Johannes Berg3e122be2008-07-09 14:40:34 +02001795 ieee80211_rx_bss_put(local, bss);
Jiri Bencf0706e82007-05-05 11:45:53 -07001796}
1797
1798
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001799static void ieee80211_rx_mgmt_probe_resp(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001800 struct ieee80211_mgmt *mgmt,
1801 size_t len,
1802 struct ieee80211_rx_status *rx_status)
1803{
Ester Kummerae6a44e2008-06-27 18:54:48 +03001804 size_t baselen;
1805 struct ieee802_11_elems elems;
Ron Rindjunsky9859b812008-08-09 03:02:19 +03001806 struct ieee80211_if_sta *ifsta = &sdata->u.sta;
Ester Kummerae6a44e2008-06-27 18:54:48 +03001807
Tomas Winkler8e7cdbb2008-08-03 14:32:01 +03001808 if (memcmp(mgmt->da, sdata->dev->dev_addr, ETH_ALEN))
1809 return; /* ignore ProbeResp to foreign address */
1810
Ester Kummerae6a44e2008-06-27 18:54:48 +03001811 baselen = (u8 *) mgmt->u.probe_resp.variable - (u8 *) mgmt;
1812 if (baselen > len)
1813 return;
1814
1815 ieee802_11_parse_elems(mgmt->u.probe_resp.variable, len - baselen,
1816 &elems);
1817
Johannes Berg98c8fcc2008-09-08 17:44:26 +02001818 ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems, false);
Ron Rindjunsky9859b812008-08-09 03:02:19 +03001819
1820 /* direct probe may be part of the association flow */
1821 if (test_and_clear_bit(IEEE80211_STA_REQ_DIRECT_PROBE,
1822 &ifsta->request)) {
1823 printk(KERN_DEBUG "%s direct probe responded\n",
1824 sdata->dev->name);
1825 ieee80211_authenticate(sdata, ifsta);
1826 }
Jiri Bencf0706e82007-05-05 11:45:53 -07001827}
1828
1829
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001830static void ieee80211_rx_mgmt_beacon(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001831 struct ieee80211_mgmt *mgmt,
1832 size_t len,
1833 struct ieee80211_rx_status *rx_status)
1834{
Jiri Bencf0706e82007-05-05 11:45:53 -07001835 struct ieee80211_if_sta *ifsta;
Jiri Bencf0706e82007-05-05 11:45:53 -07001836 size_t baselen;
1837 struct ieee802_11_elems elems;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001838 struct ieee80211_local *local = sdata->local;
Johannes Berg471b3ef2007-12-28 14:32:58 +01001839 u32 changed = 0;
Kalle Valo1fb36062009-02-10 17:09:24 +02001840 bool erp_valid, directed_tim;
Johannes Berg7a5158e2008-10-08 10:59:33 +02001841 u8 erp_value = 0;
Jiri Bencf0706e82007-05-05 11:45:53 -07001842
Ester Kummerae6a44e2008-06-27 18:54:48 +03001843 /* Process beacon from the current BSS */
1844 baselen = (u8 *) mgmt->u.beacon.variable - (u8 *) mgmt;
1845 if (baselen > len)
1846 return;
1847
1848 ieee802_11_parse_elems(mgmt->u.beacon.variable, len - baselen, &elems);
1849
Johannes Berg98c8fcc2008-09-08 17:44:26 +02001850 ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems, true);
Jiri Bencf0706e82007-05-05 11:45:53 -07001851
Johannes Berg05c914f2008-09-11 00:01:58 +02001852 if (sdata->vif.type != NL80211_IFTYPE_STATION)
Jiri Bencf0706e82007-05-05 11:45:53 -07001853 return;
1854 ifsta = &sdata->u.sta;
1855
Jiri Slabyd6f2da52007-08-28 17:01:54 -04001856 if (!(ifsta->flags & IEEE80211_STA_ASSOCIATED) ||
Jiri Bencf0706e82007-05-05 11:45:53 -07001857 memcmp(ifsta->bssid, mgmt->bssid, ETH_ALEN) != 0)
1858 return;
1859
Sujithc481ec92009-01-06 09:28:37 +05301860 if (rx_status->freq != local->hw.conf.channel->center_freq)
1861 return;
1862
Johannes Bergfe3fa822008-09-08 11:05:09 +02001863 ieee80211_sta_wmm_params(local, ifsta, elems.wmm_param,
1864 elems.wmm_param_len);
1865
Johannes Berg4be8c382009-01-07 18:28:20 +01001866 if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK &&
1867 local->hw.conf.flags & IEEE80211_CONF_PS) {
Kalle Valo1fb36062009-02-10 17:09:24 +02001868 directed_tim = ieee80211_check_tim(&elems, ifsta->aid);
Vivek Natarajana97b77b2008-12-23 18:39:02 -08001869
Kalle Valo1fb36062009-02-10 17:09:24 +02001870 if (directed_tim) {
Johannes Berg4be8c382009-01-07 18:28:20 +01001871 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
1872 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
1873 ieee80211_send_nullfunc(local, sdata, 0);
Vivek Natarajana97b77b2008-12-23 18:39:02 -08001874 }
1875 }
Johannes Berg7a5158e2008-10-08 10:59:33 +02001876
1877 if (elems.erp_info && elems.erp_info_len >= 1) {
1878 erp_valid = true;
1879 erp_value = elems.erp_info[0];
1880 } else {
1881 erp_valid = false;
John W. Linville50c4afb2008-04-15 14:09:27 -04001882 }
Johannes Berg7a5158e2008-10-08 10:59:33 +02001883 changed |= ieee80211_handle_bss_capability(sdata,
1884 le16_to_cpu(mgmt->u.beacon.capab_info),
1885 erp_valid, erp_value);
Jiri Bencf0706e82007-05-05 11:45:53 -07001886
Ron Rindjunskyd3c990f2007-11-26 16:14:34 +02001887
Johannes Bergae5eb022008-10-14 16:58:37 +02001888 if (elems.ht_cap_elem && elems.ht_info_elem && elems.wmm_param) {
1889 struct sta_info *sta;
1890 struct ieee80211_supported_band *sband;
1891 u16 ap_ht_cap_flags;
1892
1893 rcu_read_lock();
1894
1895 sta = sta_info_get(local, ifsta->bssid);
1896 if (!sta) {
1897 rcu_read_unlock();
1898 return;
1899 }
1900
1901 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
1902
1903 ieee80211_ht_cap_ie_to_sta_ht_cap(sband,
1904 elems.ht_cap_elem, &sta->sta.ht_cap);
1905
1906 ap_ht_cap_flags = sta->sta.ht_cap.cap;
1907
1908 rcu_read_unlock();
1909
1910 changed |= ieee80211_enable_ht(sdata, elems.ht_info_elem,
1911 ap_ht_cap_flags);
Ron Rindjunskyd3c990f2007-11-26 16:14:34 +02001912 }
1913
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001914 if (elems.country_elem) {
1915 /* Note we are only reviewing this on beacons
1916 * for the BSSID we are associated to */
1917 regulatory_hint_11d(local->hw.wiphy,
1918 elems.country_elem, elems.country_elem_len);
Vasanthakumar Thiagarajana8302de2009-01-09 18:14:15 +05301919
1920 /* TODO: IBSS also needs this */
1921 if (elems.pwr_constr_elem)
1922 ieee80211_handle_pwr_constr(sdata,
1923 le16_to_cpu(mgmt->u.probe_resp.capab_info),
1924 elems.pwr_constr_elem,
1925 elems.pwr_constr_elem_len);
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001926 }
1927
Johannes Berg471b3ef2007-12-28 14:32:58 +01001928 ieee80211_bss_info_change_notify(sdata, changed);
Jiri Bencf0706e82007-05-05 11:45:53 -07001929}
1930
1931
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001932static void ieee80211_rx_mgmt_probe_req(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001933 struct ieee80211_if_sta *ifsta,
1934 struct ieee80211_mgmt *mgmt,
Rami Rosen504a71e2009-01-06 10:50:51 +02001935 size_t len)
Jiri Bencf0706e82007-05-05 11:45:53 -07001936{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001937 struct ieee80211_local *local = sdata->local;
Jiri Bencf0706e82007-05-05 11:45:53 -07001938 int tx_last_beacon;
1939 struct sk_buff *skb;
1940 struct ieee80211_mgmt *resp;
1941 u8 *pos, *end;
1942
Johannes Berg05c914f2008-09-11 00:01:58 +02001943 if (sdata->vif.type != NL80211_IFTYPE_ADHOC ||
Tomas Winkler48c2fc52008-08-06 14:22:01 +03001944 ifsta->state != IEEE80211_STA_MLME_IBSS_JOINED ||
Jiri Bencf0706e82007-05-05 11:45:53 -07001945 len < 24 + 2 || !ifsta->probe_resp)
1946 return;
1947
1948 if (local->ops->tx_last_beacon)
1949 tx_last_beacon = local->ops->tx_last_beacon(local_to_hw(local));
1950 else
1951 tx_last_beacon = 1;
1952
1953#ifdef CONFIG_MAC80211_IBSS_DEBUG
Johannes Berg0c68ae262008-10-27 15:56:10 -07001954 printk(KERN_DEBUG "%s: RX ProbeReq SA=%pM DA=%pM BSSID=%pM"
1955 " (tx_last_beacon=%d)\n",
1956 sdata->dev->name, mgmt->sa, mgmt->da,
1957 mgmt->bssid, tx_last_beacon);
Jiri Bencf0706e82007-05-05 11:45:53 -07001958#endif /* CONFIG_MAC80211_IBSS_DEBUG */
1959
1960 if (!tx_last_beacon)
1961 return;
1962
1963 if (memcmp(mgmt->bssid, ifsta->bssid, ETH_ALEN) != 0 &&
1964 memcmp(mgmt->bssid, "\xff\xff\xff\xff\xff\xff", ETH_ALEN) != 0)
1965 return;
1966
1967 end = ((u8 *) mgmt) + len;
1968 pos = mgmt->u.probe_req.variable;
1969 if (pos[0] != WLAN_EID_SSID ||
1970 pos + 2 + pos[1] > end) {
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001971#ifdef CONFIG_MAC80211_IBSS_DEBUG
1972 printk(KERN_DEBUG "%s: Invalid SSID IE in ProbeReq "
Johannes Berg0c68ae262008-10-27 15:56:10 -07001973 "from %pM\n",
1974 sdata->dev->name, mgmt->sa);
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001975#endif
Jiri Bencf0706e82007-05-05 11:45:53 -07001976 return;
1977 }
1978 if (pos[1] != 0 &&
1979 (pos[1] != ifsta->ssid_len ||
1980 memcmp(pos + 2, ifsta->ssid, ifsta->ssid_len) != 0)) {
1981 /* Ignore ProbeReq for foreign SSID */
1982 return;
1983 }
1984
1985 /* Reply with ProbeResp */
Michael Wu0ec0b7a2007-07-27 15:43:24 +02001986 skb = skb_copy(ifsta->probe_resp, GFP_KERNEL);
Jiri Bencf0706e82007-05-05 11:45:53 -07001987 if (!skb)
1988 return;
1989
1990 resp = (struct ieee80211_mgmt *) skb->data;
1991 memcpy(resp->da, mgmt->sa, ETH_ALEN);
1992#ifdef CONFIG_MAC80211_IBSS_DEBUG
Johannes Berg0c68ae262008-10-27 15:56:10 -07001993 printk(KERN_DEBUG "%s: Sending ProbeResp to %pM\n",
1994 sdata->dev->name, resp->da);
Jiri Bencf0706e82007-05-05 11:45:53 -07001995#endif /* CONFIG_MAC80211_IBSS_DEBUG */
Johannes Berge50db652008-09-09 15:07:09 +02001996 ieee80211_tx_skb(sdata, skb, 0);
Jiri Bencf0706e82007-05-05 11:45:53 -07001997}
1998
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001999void ieee80211_sta_rx_mgmt(struct ieee80211_sub_if_data *sdata, struct sk_buff *skb,
Jiri Bencf0706e82007-05-05 11:45:53 -07002000 struct ieee80211_rx_status *rx_status)
2001{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002002 struct ieee80211_local *local = sdata->local;
Jiri Bencf0706e82007-05-05 11:45:53 -07002003 struct ieee80211_if_sta *ifsta;
2004 struct ieee80211_mgmt *mgmt;
2005 u16 fc;
2006
2007 if (skb->len < 24)
2008 goto fail;
2009
Jiri Bencf0706e82007-05-05 11:45:53 -07002010 ifsta = &sdata->u.sta;
2011
2012 mgmt = (struct ieee80211_mgmt *) skb->data;
2013 fc = le16_to_cpu(mgmt->frame_control);
2014
2015 switch (fc & IEEE80211_FCTL_STYPE) {
2016 case IEEE80211_STYPE_PROBE_REQ:
2017 case IEEE80211_STYPE_PROBE_RESP:
2018 case IEEE80211_STYPE_BEACON:
2019 memcpy(skb->cb, rx_status, sizeof(*rx_status));
2020 case IEEE80211_STYPE_AUTH:
2021 case IEEE80211_STYPE_ASSOC_RESP:
2022 case IEEE80211_STYPE_REASSOC_RESP:
2023 case IEEE80211_STYPE_DEAUTH:
2024 case IEEE80211_STYPE_DISASSOC:
2025 skb_queue_tail(&ifsta->skb_queue, skb);
2026 queue_work(local->hw.workqueue, &ifsta->work);
2027 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07002028 }
2029
2030 fail:
2031 kfree_skb(skb);
2032}
2033
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002034static void ieee80211_sta_rx_queued_mgmt(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07002035 struct sk_buff *skb)
2036{
2037 struct ieee80211_rx_status *rx_status;
Jiri Bencf0706e82007-05-05 11:45:53 -07002038 struct ieee80211_if_sta *ifsta;
2039 struct ieee80211_mgmt *mgmt;
2040 u16 fc;
2041
Jiri Bencf0706e82007-05-05 11:45:53 -07002042 ifsta = &sdata->u.sta;
2043
2044 rx_status = (struct ieee80211_rx_status *) skb->cb;
2045 mgmt = (struct ieee80211_mgmt *) skb->data;
2046 fc = le16_to_cpu(mgmt->frame_control);
2047
2048 switch (fc & IEEE80211_FCTL_STYPE) {
2049 case IEEE80211_STYPE_PROBE_REQ:
Rami Rosen504a71e2009-01-06 10:50:51 +02002050 ieee80211_rx_mgmt_probe_req(sdata, ifsta, mgmt, skb->len);
Jiri Bencf0706e82007-05-05 11:45:53 -07002051 break;
2052 case IEEE80211_STYPE_PROBE_RESP:
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002053 ieee80211_rx_mgmt_probe_resp(sdata, mgmt, skb->len, rx_status);
Jiri Bencf0706e82007-05-05 11:45:53 -07002054 break;
2055 case IEEE80211_STYPE_BEACON:
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002056 ieee80211_rx_mgmt_beacon(sdata, mgmt, skb->len, rx_status);
Jiri Bencf0706e82007-05-05 11:45:53 -07002057 break;
2058 case IEEE80211_STYPE_AUTH:
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002059 ieee80211_rx_mgmt_auth(sdata, ifsta, mgmt, skb->len);
Jiri Bencf0706e82007-05-05 11:45:53 -07002060 break;
2061 case IEEE80211_STYPE_ASSOC_RESP:
Johannes Berg471b3ef2007-12-28 14:32:58 +01002062 ieee80211_rx_mgmt_assoc_resp(sdata, ifsta, mgmt, skb->len, 0);
Jiri Bencf0706e82007-05-05 11:45:53 -07002063 break;
2064 case IEEE80211_STYPE_REASSOC_RESP:
Johannes Berg471b3ef2007-12-28 14:32:58 +01002065 ieee80211_rx_mgmt_assoc_resp(sdata, ifsta, mgmt, skb->len, 1);
Jiri Bencf0706e82007-05-05 11:45:53 -07002066 break;
2067 case IEEE80211_STYPE_DEAUTH:
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002068 ieee80211_rx_mgmt_deauth(sdata, ifsta, mgmt, skb->len);
Jiri Bencf0706e82007-05-05 11:45:53 -07002069 break;
2070 case IEEE80211_STYPE_DISASSOC:
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002071 ieee80211_rx_mgmt_disassoc(sdata, ifsta, mgmt, skb->len);
Jiri Bencf0706e82007-05-05 11:45:53 -07002072 break;
2073 }
2074
2075 kfree_skb(skb);
2076}
2077
2078
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002079static int ieee80211_sta_active_ibss(struct ieee80211_sub_if_data *sdata)
Jiri Bencf0706e82007-05-05 11:45:53 -07002080{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002081 struct ieee80211_local *local = sdata->local;
Jiri Bencf0706e82007-05-05 11:45:53 -07002082 int active = 0;
2083 struct sta_info *sta;
2084
Johannes Bergd0709a62008-02-25 16:27:46 +01002085 rcu_read_lock();
2086
2087 list_for_each_entry_rcu(sta, &local->sta_list, list) {
2088 if (sta->sdata == sdata &&
Jiri Bencf0706e82007-05-05 11:45:53 -07002089 time_after(sta->last_rx + IEEE80211_IBSS_MERGE_INTERVAL,
2090 jiffies)) {
2091 active++;
2092 break;
2093 }
2094 }
Johannes Bergd0709a62008-02-25 16:27:46 +01002095
2096 rcu_read_unlock();
Jiri Bencf0706e82007-05-05 11:45:53 -07002097
2098 return active;
2099}
2100
2101
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002102static void ieee80211_sta_merge_ibss(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07002103 struct ieee80211_if_sta *ifsta)
2104{
2105 mod_timer(&ifsta->timer, jiffies + IEEE80211_IBSS_MERGE_INTERVAL);
2106
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002107 ieee80211_sta_expire(sdata, IEEE80211_IBSS_INACTIVITY_LIMIT);
2108 if (ieee80211_sta_active_ibss(sdata))
Jiri Bencf0706e82007-05-05 11:45:53 -07002109 return;
2110
Alina Friedrichsen137f9f42009-01-06 02:49:07 +01002111 if ((sdata->u.sta.flags & IEEE80211_STA_BSSID_SET) &&
2112 (!(sdata->u.sta.flags & IEEE80211_STA_AUTO_CHANNEL_SEL)))
2113 return;
2114
Jiri Bencf0706e82007-05-05 11:45:53 -07002115 printk(KERN_DEBUG "%s: No active IBSS STAs - trying to scan for other "
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002116 "IBSS networks with same SSID (merge)\n", sdata->dev->name);
Johannes Bergc2b13452008-09-11 00:01:55 +02002117 ieee80211_request_scan(sdata, ifsta->ssid, ifsta->ssid_len);
Jiri Bencf0706e82007-05-05 11:45:53 -07002118}
2119
2120
Johannes Berg9c6bd792008-09-11 00:01:52 +02002121static void ieee80211_sta_timer(unsigned long data)
Jiri Bencf0706e82007-05-05 11:45:53 -07002122{
2123 struct ieee80211_sub_if_data *sdata =
2124 (struct ieee80211_sub_if_data *) data;
2125 struct ieee80211_if_sta *ifsta = &sdata->u.sta;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002126 struct ieee80211_local *local = sdata->local;
Jiri Bencf0706e82007-05-05 11:45:53 -07002127
2128 set_bit(IEEE80211_STA_REQ_RUN, &ifsta->request);
2129 queue_work(local->hw.workqueue, &ifsta->work);
2130}
2131
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002132static void ieee80211_sta_reset_auth(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07002133 struct ieee80211_if_sta *ifsta)
2134{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002135 struct ieee80211_local *local = sdata->local;
Jiri Bencf0706e82007-05-05 11:45:53 -07002136
2137 if (local->ops->reset_tsf) {
2138 /* Reset own TSF to allow time synchronization work. */
2139 local->ops->reset_tsf(local_to_hw(local));
2140 }
2141
2142 ifsta->wmm_last_param_set = -1; /* allow any WMM update */
2143
2144
2145 if (ifsta->auth_algs & IEEE80211_AUTH_ALG_OPEN)
2146 ifsta->auth_alg = WLAN_AUTH_OPEN;
2147 else if (ifsta->auth_algs & IEEE80211_AUTH_ALG_SHARED_KEY)
2148 ifsta->auth_alg = WLAN_AUTH_SHARED_KEY;
2149 else if (ifsta->auth_algs & IEEE80211_AUTH_ALG_LEAP)
2150 ifsta->auth_alg = WLAN_AUTH_LEAP;
2151 else
2152 ifsta->auth_alg = WLAN_AUTH_OPEN;
Jiri Bencf0706e82007-05-05 11:45:53 -07002153 ifsta->auth_transaction = -1;
Jiri Slabyd6f2da52007-08-28 17:01:54 -04002154 ifsta->flags &= ~IEEE80211_STA_ASSOCIATED;
Ron Rindjunsky6042a3e2008-08-08 01:50:46 +03002155 ifsta->assoc_scan_tries = 0;
Ron Rindjunsky9859b812008-08-09 03:02:19 +03002156 ifsta->direct_probe_tries = 0;
Ron Rindjunsky6042a3e2008-08-08 01:50:46 +03002157 ifsta->auth_tries = 0;
2158 ifsta->assoc_tries = 0;
Tomas Winkler24e64622008-09-08 17:33:40 +02002159 netif_tx_stop_all_queues(sdata->dev);
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002160 netif_carrier_off(sdata->dev);
Jiri Bencf0706e82007-05-05 11:45:53 -07002161}
2162
2163
Jiri Bencf0706e82007-05-05 11:45:53 -07002164static int ieee80211_sta_match_ssid(struct ieee80211_if_sta *ifsta,
2165 const char *ssid, int ssid_len)
2166{
2167 int tmp, hidden_ssid;
2168
Michael Wu48225702007-10-19 17:14:36 -04002169 if (ssid_len == ifsta->ssid_len &&
2170 !memcmp(ifsta->ssid, ssid, ssid_len))
Jiri Bencf0706e82007-05-05 11:45:53 -07002171 return 1;
2172
Jiri Slabyd6f2da52007-08-28 17:01:54 -04002173 if (ifsta->flags & IEEE80211_STA_AUTO_BSSID_SEL)
Jiri Bencf0706e82007-05-05 11:45:53 -07002174 return 0;
2175
2176 hidden_ssid = 1;
2177 tmp = ssid_len;
2178 while (tmp--) {
2179 if (ssid[tmp] != '\0') {
2180 hidden_ssid = 0;
2181 break;
2182 }
2183 }
2184
Fabio Rossicb3da8c2008-11-26 22:44:23 +01002185 if (hidden_ssid && (ifsta->ssid_len == ssid_len || ssid_len == 0))
Jiri Bencf0706e82007-05-05 11:45:53 -07002186 return 1;
2187
2188 if (ssid_len == 1 && ssid[0] == ' ')
2189 return 1;
2190
2191 return 0;
2192}
2193
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002194static int ieee80211_sta_create_ibss(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07002195 struct ieee80211_if_sta *ifsta)
2196{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002197 struct ieee80211_local *local = sdata->local;
Johannes Bergc2b13452008-09-11 00:01:55 +02002198 struct ieee80211_bss *bss;
Johannes Berg8318d782008-01-24 19:38:38 +01002199 struct ieee80211_supported_band *sband;
Jiri Bencf0706e82007-05-05 11:45:53 -07002200 u8 bssid[ETH_ALEN], *pos;
2201 int i;
Tomas Winkler167ad6f2008-05-21 18:17:05 +03002202 int ret;
Jiri Bencf0706e82007-05-05 11:45:53 -07002203
Alina Friedrichsendfe67012009-01-24 01:19:04 +01002204 if (sdata->u.sta.flags & IEEE80211_STA_BSSID_SET) {
2205 memcpy(bssid, ifsta->bssid, ETH_ALEN);
2206 } else {
2207 /* Generate random, not broadcast, locally administered BSSID. Mix in
2208 * own MAC address to make sure that devices that do not have proper
2209 * random number generator get different BSSID. */
2210 get_random_bytes(bssid, ETH_ALEN);
2211 for (i = 0; i < ETH_ALEN; i++)
2212 bssid[i] ^= sdata->dev->dev_addr[i];
2213 bssid[0] &= ~0x01;
2214 bssid[0] |= 0x02;
2215 }
Jiri Bencf0706e82007-05-05 11:45:53 -07002216
Johannes Berg0c68ae262008-10-27 15:56:10 -07002217 printk(KERN_DEBUG "%s: Creating new IBSS network, BSSID %pM\n",
2218 sdata->dev->name, bssid);
Jiri Bencf0706e82007-05-05 11:45:53 -07002219
Johannes Berg98c8fcc2008-09-08 17:44:26 +02002220 bss = ieee80211_rx_bss_add(local, bssid,
Johannes Berg8318d782008-01-24 19:38:38 +01002221 local->hw.conf.channel->center_freq,
John W. Linvillecffdd302007-10-05 14:23:27 -04002222 sdata->u.sta.ssid, sdata->u.sta.ssid_len);
Jiri Bencf0706e82007-05-05 11:45:53 -07002223 if (!bss)
2224 return -ENOMEM;
2225
Johannes Berg8318d782008-01-24 19:38:38 +01002226 bss->band = local->hw.conf.channel->band;
2227 sband = local->hw.wiphy->bands[bss->band];
Jiri Bencf0706e82007-05-05 11:45:53 -07002228
2229 if (local->hw.conf.beacon_int == 0)
Tomas Winklerdc0ae302008-06-12 22:38:37 +03002230 local->hw.conf.beacon_int = 100;
Jiri Bencf0706e82007-05-05 11:45:53 -07002231 bss->beacon_int = local->hw.conf.beacon_int;
Jiri Bencf0706e82007-05-05 11:45:53 -07002232 bss->last_update = jiffies;
2233 bss->capability = WLAN_CAPABILITY_IBSS;
Johannes Berg988c0f72008-04-17 19:21:22 +02002234
2235 if (sdata->default_key)
Jiri Bencf0706e82007-05-05 11:45:53 -07002236 bss->capability |= WLAN_CAPABILITY_PRIVACY;
Johannes Berg988c0f72008-04-17 19:21:22 +02002237 else
Jiri Bencf0706e82007-05-05 11:45:53 -07002238 sdata->drop_unencrypted = 0;
Johannes Berg988c0f72008-04-17 19:21:22 +02002239
Johannes Berg8318d782008-01-24 19:38:38 +01002240 bss->supp_rates_len = sband->n_bitrates;
Jiri Bencf0706e82007-05-05 11:45:53 -07002241 pos = bss->supp_rates;
Johannes Berg8318d782008-01-24 19:38:38 +01002242 for (i = 0; i < sband->n_bitrates; i++) {
2243 int rate = sband->bitrates[i].bitrate;
Jiri Bencf0706e82007-05-05 11:45:53 -07002244 *pos++ = (u8) (rate / 5);
2245 }
2246
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002247 ret = ieee80211_sta_join_ibss(sdata, ifsta, bss);
Johannes Berg3e122be2008-07-09 14:40:34 +02002248 ieee80211_rx_bss_put(local, bss);
Tomas Winkler167ad6f2008-05-21 18:17:05 +03002249 return ret;
Jiri Bencf0706e82007-05-05 11:45:53 -07002250}
2251
2252
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002253static int ieee80211_sta_find_ibss(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07002254 struct ieee80211_if_sta *ifsta)
2255{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002256 struct ieee80211_local *local = sdata->local;
Johannes Bergc2b13452008-09-11 00:01:55 +02002257 struct ieee80211_bss *bss;
Jiri Bencf0706e82007-05-05 11:45:53 -07002258 int found = 0;
2259 u8 bssid[ETH_ALEN];
2260 int active_ibss;
2261
2262 if (ifsta->ssid_len == 0)
2263 return -EINVAL;
2264
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002265 active_ibss = ieee80211_sta_active_ibss(sdata);
Jiri Bencf0706e82007-05-05 11:45:53 -07002266#ifdef CONFIG_MAC80211_IBSS_DEBUG
2267 printk(KERN_DEBUG "%s: sta_find_ibss (active_ibss=%d)\n",
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002268 sdata->dev->name, active_ibss);
Jiri Bencf0706e82007-05-05 11:45:53 -07002269#endif /* CONFIG_MAC80211_IBSS_DEBUG */
Johannes Bergc2b13452008-09-11 00:01:55 +02002270 spin_lock_bh(&local->bss_lock);
2271 list_for_each_entry(bss, &local->bss_list, list) {
Jiri Bencf0706e82007-05-05 11:45:53 -07002272 if (ifsta->ssid_len != bss->ssid_len ||
2273 memcmp(ifsta->ssid, bss->ssid, bss->ssid_len) != 0
2274 || !(bss->capability & WLAN_CAPABILITY_IBSS))
2275 continue;
Alina Friedrichsendfe67012009-01-24 01:19:04 +01002276 if ((ifsta->flags & IEEE80211_STA_BSSID_SET) &&
2277 memcmp(ifsta->bssid, bss->bssid, ETH_ALEN) != 0)
2278 continue;
Jiri Bencf0706e82007-05-05 11:45:53 -07002279#ifdef CONFIG_MAC80211_IBSS_DEBUG
Johannes Berg0c68ae262008-10-27 15:56:10 -07002280 printk(KERN_DEBUG " bssid=%pM found\n", bss->bssid);
Jiri Bencf0706e82007-05-05 11:45:53 -07002281#endif /* CONFIG_MAC80211_IBSS_DEBUG */
2282 memcpy(bssid, bss->bssid, ETH_ALEN);
2283 found = 1;
2284 if (active_ibss || memcmp(bssid, ifsta->bssid, ETH_ALEN) != 0)
2285 break;
2286 }
Johannes Bergc2b13452008-09-11 00:01:55 +02002287 spin_unlock_bh(&local->bss_lock);
Jiri Bencf0706e82007-05-05 11:45:53 -07002288
2289#ifdef CONFIG_MAC80211_IBSS_DEBUG
Vladimir Koutny6e438292008-07-07 14:23:01 +02002290 if (found)
Johannes Berg0c68ae262008-10-27 15:56:10 -07002291 printk(KERN_DEBUG " sta_find_ibss: selected %pM current "
2292 "%pM\n", bssid, ifsta->bssid);
Jiri Bencf0706e82007-05-05 11:45:53 -07002293#endif /* CONFIG_MAC80211_IBSS_DEBUG */
Daniel Drake80693ce2008-07-19 23:31:17 +01002294
Alina Friedrichsendfe67012009-01-24 01:19:04 +01002295 if (found &&
2296 ((!(ifsta->flags & IEEE80211_STA_PREV_BSSID_SET)) ||
2297 memcmp(ifsta->bssid, bssid, ETH_ALEN) != 0)) {
Tomas Winkler167ad6f2008-05-21 18:17:05 +03002298 int ret;
Daniel Drake80693ce2008-07-19 23:31:17 +01002299 int search_freq;
2300
2301 if (ifsta->flags & IEEE80211_STA_AUTO_CHANNEL_SEL)
2302 search_freq = bss->freq;
2303 else
2304 search_freq = local->hw.conf.channel->center_freq;
2305
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002306 bss = ieee80211_rx_bss_get(local, bssid, search_freq,
Daniel Drake80693ce2008-07-19 23:31:17 +01002307 ifsta->ssid, ifsta->ssid_len);
2308 if (!bss)
2309 goto dont_join;
2310
Johannes Berg0c68ae262008-10-27 15:56:10 -07002311 printk(KERN_DEBUG "%s: Selected IBSS BSSID %pM"
Jiri Bencf0706e82007-05-05 11:45:53 -07002312 " based on configured SSID\n",
Johannes Berg0c68ae262008-10-27 15:56:10 -07002313 sdata->dev->name, bssid);
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002314 ret = ieee80211_sta_join_ibss(sdata, ifsta, bss);
Johannes Berg3e122be2008-07-09 14:40:34 +02002315 ieee80211_rx_bss_put(local, bss);
Tomas Winkler167ad6f2008-05-21 18:17:05 +03002316 return ret;
Jiri Bencf0706e82007-05-05 11:45:53 -07002317 }
Daniel Drake80693ce2008-07-19 23:31:17 +01002318
2319dont_join:
Jiri Bencf0706e82007-05-05 11:45:53 -07002320#ifdef CONFIG_MAC80211_IBSS_DEBUG
2321 printk(KERN_DEBUG " did not try to join ibss\n");
2322#endif /* CONFIG_MAC80211_IBSS_DEBUG */
2323
2324 /* Selected IBSS not found in current scan results - try to scan */
Tomas Winkler48c2fc52008-08-06 14:22:01 +03002325 if (ifsta->state == IEEE80211_STA_MLME_IBSS_JOINED &&
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002326 !ieee80211_sta_active_ibss(sdata)) {
Jiri Bencf0706e82007-05-05 11:45:53 -07002327 mod_timer(&ifsta->timer, jiffies +
2328 IEEE80211_IBSS_MERGE_INTERVAL);
2329 } else if (time_after(jiffies, local->last_scan_completed +
2330 IEEE80211_SCAN_INTERVAL)) {
2331 printk(KERN_DEBUG "%s: Trigger new scan to find an IBSS to "
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002332 "join\n", sdata->dev->name);
Johannes Bergc2b13452008-09-11 00:01:55 +02002333 return ieee80211_request_scan(sdata, ifsta->ssid,
Jiri Bencf0706e82007-05-05 11:45:53 -07002334 ifsta->ssid_len);
Tomas Winkler48c2fc52008-08-06 14:22:01 +03002335 } else if (ifsta->state != IEEE80211_STA_MLME_IBSS_JOINED) {
Jiri Bencf0706e82007-05-05 11:45:53 -07002336 int interval = IEEE80211_SCAN_INTERVAL;
2337
2338 if (time_after(jiffies, ifsta->ibss_join_req +
2339 IEEE80211_IBSS_JOIN_TIMEOUT)) {
Jiri Slabyd6f2da52007-08-28 17:01:54 -04002340 if ((ifsta->flags & IEEE80211_STA_CREATE_IBSS) &&
Johannes Berg8318d782008-01-24 19:38:38 +01002341 (!(local->oper_channel->flags &
2342 IEEE80211_CHAN_NO_IBSS)))
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002343 return ieee80211_sta_create_ibss(sdata, ifsta);
Jiri Slabyd6f2da52007-08-28 17:01:54 -04002344 if (ifsta->flags & IEEE80211_STA_CREATE_IBSS) {
Johannes Berg8318d782008-01-24 19:38:38 +01002345 printk(KERN_DEBUG "%s: IBSS not allowed on"
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002346 " %d MHz\n", sdata->dev->name,
Johannes Berg8318d782008-01-24 19:38:38 +01002347 local->hw.conf.channel->center_freq);
Jiri Bencf0706e82007-05-05 11:45:53 -07002348 }
2349
2350 /* No IBSS found - decrease scan interval and continue
2351 * scanning. */
2352 interval = IEEE80211_SCAN_INTERVAL_SLOW;
2353 }
2354
Tomas Winkler48c2fc52008-08-06 14:22:01 +03002355 ifsta->state = IEEE80211_STA_MLME_IBSS_SEARCH;
Jiri Bencf0706e82007-05-05 11:45:53 -07002356 mod_timer(&ifsta->timer, jiffies + interval);
2357 return 0;
2358 }
2359
2360 return 0;
2361}
2362
2363
Johannes Berg60f8b392008-09-08 17:44:22 +02002364static int ieee80211_sta_config_auth(struct ieee80211_sub_if_data *sdata,
2365 struct ieee80211_if_sta *ifsta)
2366{
2367 struct ieee80211_local *local = sdata->local;
Johannes Bergc2b13452008-09-11 00:01:55 +02002368 struct ieee80211_bss *bss, *selected = NULL;
Johannes Berg60f8b392008-09-08 17:44:22 +02002369 int top_rssi = 0, freq;
2370
Johannes Bergc2b13452008-09-11 00:01:55 +02002371 spin_lock_bh(&local->bss_lock);
Johannes Berg60f8b392008-09-08 17:44:22 +02002372 freq = local->oper_channel->center_freq;
Johannes Bergc2b13452008-09-11 00:01:55 +02002373 list_for_each_entry(bss, &local->bss_list, list) {
Johannes Berg60f8b392008-09-08 17:44:22 +02002374 if (!(bss->capability & WLAN_CAPABILITY_ESS))
2375 continue;
2376
2377 if ((ifsta->flags & (IEEE80211_STA_AUTO_SSID_SEL |
2378 IEEE80211_STA_AUTO_BSSID_SEL |
2379 IEEE80211_STA_AUTO_CHANNEL_SEL)) &&
2380 (!!(bss->capability & WLAN_CAPABILITY_PRIVACY) ^
2381 !!sdata->default_key))
2382 continue;
2383
2384 if (!(ifsta->flags & IEEE80211_STA_AUTO_CHANNEL_SEL) &&
2385 bss->freq != freq)
2386 continue;
2387
2388 if (!(ifsta->flags & IEEE80211_STA_AUTO_BSSID_SEL) &&
2389 memcmp(bss->bssid, ifsta->bssid, ETH_ALEN))
2390 continue;
2391
2392 if (!(ifsta->flags & IEEE80211_STA_AUTO_SSID_SEL) &&
2393 !ieee80211_sta_match_ssid(ifsta, bss->ssid, bss->ssid_len))
2394 continue;
2395
2396 if (!selected || top_rssi < bss->signal) {
2397 selected = bss;
2398 top_rssi = bss->signal;
2399 }
2400 }
2401 if (selected)
2402 atomic_inc(&selected->users);
Johannes Bergc2b13452008-09-11 00:01:55 +02002403 spin_unlock_bh(&local->bss_lock);
Johannes Berg60f8b392008-09-08 17:44:22 +02002404
2405 if (selected) {
2406 ieee80211_set_freq(sdata, selected->freq);
2407 if (!(ifsta->flags & IEEE80211_STA_SSID_SET))
2408 ieee80211_sta_set_ssid(sdata, selected->ssid,
2409 selected->ssid_len);
2410 ieee80211_sta_set_bssid(sdata, selected->bssid);
Johannes Bergb079ada2008-09-09 09:32:59 +02002411 ieee80211_sta_def_wmm_params(sdata, selected);
Jouni Malinenfdfacf02009-01-08 13:32:05 +02002412 if (sdata->u.sta.mfp == IEEE80211_MFP_REQUIRED)
2413 sdata->u.sta.flags |= IEEE80211_STA_MFP_ENABLED;
2414 else
2415 sdata->u.sta.flags &= ~IEEE80211_STA_MFP_ENABLED;
Johannes Berg60f8b392008-09-08 17:44:22 +02002416
2417 /* Send out direct probe if no probe resp was received or
2418 * the one we have is outdated
2419 */
2420 if (!selected->last_probe_resp ||
2421 time_after(jiffies, selected->last_probe_resp
2422 + IEEE80211_SCAN_RESULT_EXPIRE))
2423 ifsta->state = IEEE80211_STA_MLME_DIRECT_PROBE;
2424 else
2425 ifsta->state = IEEE80211_STA_MLME_AUTHENTICATE;
2426
2427 ieee80211_rx_bss_put(local, selected);
2428 ieee80211_sta_reset_auth(sdata, ifsta);
2429 return 0;
2430 } else {
2431 if (ifsta->assoc_scan_tries < IEEE80211_ASSOC_SCANS_MAX_TRIES) {
2432 ifsta->assoc_scan_tries++;
2433 if (ifsta->flags & IEEE80211_STA_AUTO_SSID_SEL)
Johannes Bergc2b13452008-09-11 00:01:55 +02002434 ieee80211_start_scan(sdata, NULL, 0);
Johannes Berg60f8b392008-09-08 17:44:22 +02002435 else
Johannes Bergc2b13452008-09-11 00:01:55 +02002436 ieee80211_start_scan(sdata, ifsta->ssid,
Johannes Berg60f8b392008-09-08 17:44:22 +02002437 ifsta->ssid_len);
2438 ifsta->state = IEEE80211_STA_MLME_AUTHENTICATE;
2439 set_bit(IEEE80211_STA_REQ_AUTH, &ifsta->request);
Sujithe3740552009-01-29 09:34:22 +05302440 } else {
2441 ifsta->assoc_scan_tries = 0;
Johannes Berg60f8b392008-09-08 17:44:22 +02002442 ifsta->state = IEEE80211_STA_MLME_DISABLED;
Sujithe3740552009-01-29 09:34:22 +05302443 }
Johannes Berg60f8b392008-09-08 17:44:22 +02002444 }
2445 return -1;
2446}
2447
2448
Johannes Berg9c6bd792008-09-11 00:01:52 +02002449static void ieee80211_sta_work(struct work_struct *work)
Johannes Berg60f8b392008-09-08 17:44:22 +02002450{
2451 struct ieee80211_sub_if_data *sdata =
2452 container_of(work, struct ieee80211_sub_if_data, u.sta.work);
2453 struct ieee80211_local *local = sdata->local;
2454 struct ieee80211_if_sta *ifsta;
2455 struct sk_buff *skb;
2456
2457 if (!netif_running(sdata->dev))
2458 return;
2459
Johannes Bergc2b13452008-09-11 00:01:55 +02002460 if (local->sw_scanning || local->hw_scanning)
Johannes Berg60f8b392008-09-08 17:44:22 +02002461 return;
2462
Johannes Berg05c914f2008-09-11 00:01:58 +02002463 if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION &&
2464 sdata->vif.type != NL80211_IFTYPE_ADHOC))
Johannes Berg60f8b392008-09-08 17:44:22 +02002465 return;
2466 ifsta = &sdata->u.sta;
2467
2468 while ((skb = skb_dequeue(&ifsta->skb_queue)))
2469 ieee80211_sta_rx_queued_mgmt(sdata, skb);
2470
Johannes Berg60f8b392008-09-08 17:44:22 +02002471 if (ifsta->state != IEEE80211_STA_MLME_DIRECT_PROBE &&
2472 ifsta->state != IEEE80211_STA_MLME_AUTHENTICATE &&
2473 ifsta->state != IEEE80211_STA_MLME_ASSOCIATE &&
2474 test_and_clear_bit(IEEE80211_STA_REQ_SCAN, &ifsta->request)) {
Johannes Bergc2b13452008-09-11 00:01:55 +02002475 ieee80211_start_scan(sdata, ifsta->scan_ssid,
2476 ifsta->scan_ssid_len);
Johannes Berg60f8b392008-09-08 17:44:22 +02002477 return;
2478 }
2479
2480 if (test_and_clear_bit(IEEE80211_STA_REQ_AUTH, &ifsta->request)) {
2481 if (ieee80211_sta_config_auth(sdata, ifsta))
2482 return;
2483 clear_bit(IEEE80211_STA_REQ_RUN, &ifsta->request);
2484 } else if (!test_and_clear_bit(IEEE80211_STA_REQ_RUN, &ifsta->request))
2485 return;
2486
2487 switch (ifsta->state) {
2488 case IEEE80211_STA_MLME_DISABLED:
2489 break;
2490 case IEEE80211_STA_MLME_DIRECT_PROBE:
2491 ieee80211_direct_probe(sdata, ifsta);
2492 break;
2493 case IEEE80211_STA_MLME_AUTHENTICATE:
2494 ieee80211_authenticate(sdata, ifsta);
2495 break;
2496 case IEEE80211_STA_MLME_ASSOCIATE:
2497 ieee80211_associate(sdata, ifsta);
2498 break;
2499 case IEEE80211_STA_MLME_ASSOCIATED:
2500 ieee80211_associated(sdata, ifsta);
2501 break;
2502 case IEEE80211_STA_MLME_IBSS_SEARCH:
2503 ieee80211_sta_find_ibss(sdata, ifsta);
2504 break;
2505 case IEEE80211_STA_MLME_IBSS_JOINED:
2506 ieee80211_sta_merge_ibss(sdata, ifsta);
2507 break;
Johannes Berg60f8b392008-09-08 17:44:22 +02002508 default:
2509 WARN_ON(1);
2510 break;
2511 }
2512
2513 if (ieee80211_privacy_mismatch(sdata, ifsta)) {
2514 printk(KERN_DEBUG "%s: privacy configuration mismatch and "
2515 "mixed-cell disabled - disassociate\n", sdata->dev->name);
2516
2517 ieee80211_set_disassoc(sdata, ifsta, false, true,
2518 WLAN_REASON_UNSPECIFIED);
2519 }
2520}
Johannes Berg0a51b272008-09-08 17:44:25 +02002521
Johannes Berga1678f82008-09-11 00:01:47 +02002522static void ieee80211_restart_sta_timer(struct ieee80211_sub_if_data *sdata)
2523{
Johannes Berg05c914f2008-09-11 00:01:58 +02002524 if (sdata->vif.type == NL80211_IFTYPE_STATION)
Johannes Berg7c950692008-09-11 00:01:48 +02002525 queue_work(sdata->local->hw.workqueue,
2526 &sdata->u.sta.work);
Johannes Berga1678f82008-09-11 00:01:47 +02002527}
2528
Johannes Berg9c6bd792008-09-11 00:01:52 +02002529/* interface setup */
2530void ieee80211_sta_setup_sdata(struct ieee80211_sub_if_data *sdata)
2531{
2532 struct ieee80211_if_sta *ifsta;
2533
2534 ifsta = &sdata->u.sta;
2535 INIT_WORK(&ifsta->work, ieee80211_sta_work);
Sujithc481ec92009-01-06 09:28:37 +05302536 INIT_WORK(&ifsta->chswitch_work, ieee80211_chswitch_work);
Johannes Berg9c6bd792008-09-11 00:01:52 +02002537 setup_timer(&ifsta->timer, ieee80211_sta_timer,
2538 (unsigned long) sdata);
Sujithc481ec92009-01-06 09:28:37 +05302539 setup_timer(&ifsta->chswitch_timer, ieee80211_chswitch_timer,
2540 (unsigned long) sdata);
Johannes Berg9c6bd792008-09-11 00:01:52 +02002541 skb_queue_head_init(&ifsta->skb_queue);
2542
2543 ifsta->capab = WLAN_CAPABILITY_ESS;
2544 ifsta->auth_algs = IEEE80211_AUTH_ALG_OPEN |
2545 IEEE80211_AUTH_ALG_SHARED_KEY;
2546 ifsta->flags |= IEEE80211_STA_CREATE_IBSS |
2547 IEEE80211_STA_AUTO_BSSID_SEL |
2548 IEEE80211_STA_AUTO_CHANNEL_SEL;
2549 if (ieee80211_num_regular_queues(&sdata->local->hw) >= 4)
2550 ifsta->flags |= IEEE80211_STA_WMM_ENABLED;
2551}
2552
2553/*
2554 * Add a new IBSS station, will also be called by the RX code when,
2555 * in IBSS mode, receiving a frame from a yet-unknown station, hence
2556 * must be callable in atomic context.
2557 */
2558struct sta_info *ieee80211_ibss_add_sta(struct ieee80211_sub_if_data *sdata,
Johannes Berg881d9482009-01-21 15:13:48 +01002559 u8 *bssid,u8 *addr, u32 supp_rates)
Johannes Berg9c6bd792008-09-11 00:01:52 +02002560{
2561 struct ieee80211_local *local = sdata->local;
2562 struct sta_info *sta;
Johannes Berg9c6bd792008-09-11 00:01:52 +02002563 int band = local->hw.conf.channel->band;
2564
2565 /* TODO: Could consider removing the least recently used entry and
2566 * allow new one to be added. */
2567 if (local->num_sta >= IEEE80211_IBSS_MAX_STA_ENTRIES) {
2568 if (net_ratelimit()) {
2569 printk(KERN_DEBUG "%s: No room for a new IBSS STA "
Johannes Berg0c68ae262008-10-27 15:56:10 -07002570 "entry %pM\n", sdata->dev->name, addr);
Johannes Berg9c6bd792008-09-11 00:01:52 +02002571 }
2572 return NULL;
2573 }
2574
2575 if (compare_ether_addr(bssid, sdata->u.sta.bssid))
2576 return NULL;
2577
2578#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Johannes Berg0c68ae262008-10-27 15:56:10 -07002579 printk(KERN_DEBUG "%s: Adding new IBSS station %pM (dev=%s)\n",
2580 wiphy_name(local->hw.wiphy), addr, sdata->dev->name);
Johannes Berg9c6bd792008-09-11 00:01:52 +02002581#endif
2582
2583 sta = sta_info_alloc(sdata, addr, GFP_ATOMIC);
2584 if (!sta)
2585 return NULL;
2586
2587 set_sta_flags(sta, WLAN_STA_AUTHORIZED);
2588
2589 /* make sure mandatory rates are always added */
Johannes Berg323ce792008-09-11 02:45:11 +02002590 sta->sta.supp_rates[band] = supp_rates |
Johannes Berg96dd22a2008-09-11 00:01:57 +02002591 ieee80211_mandatory_rates(local, band);
Johannes Berg9c6bd792008-09-11 00:01:52 +02002592
Johannes Berg4b7679a2008-09-18 18:14:18 +02002593 rate_control_rate_init(sta);
Johannes Berg9c6bd792008-09-11 00:01:52 +02002594
2595 if (sta_info_insert(sta))
2596 return NULL;
2597
2598 return sta;
2599}
2600
2601/* configuration hooks */
2602void ieee80211_sta_req_auth(struct ieee80211_sub_if_data *sdata,
2603 struct ieee80211_if_sta *ifsta)
2604{
2605 struct ieee80211_local *local = sdata->local;
2606
Johannes Berg05c914f2008-09-11 00:01:58 +02002607 if (sdata->vif.type != NL80211_IFTYPE_STATION)
Johannes Berg9c6bd792008-09-11 00:01:52 +02002608 return;
2609
2610 if ((ifsta->flags & (IEEE80211_STA_BSSID_SET |
2611 IEEE80211_STA_AUTO_BSSID_SEL)) &&
2612 (ifsta->flags & (IEEE80211_STA_SSID_SET |
2613 IEEE80211_STA_AUTO_SSID_SEL))) {
2614
2615 if (ifsta->state == IEEE80211_STA_MLME_ASSOCIATED)
2616 ieee80211_set_disassoc(sdata, ifsta, true, true,
2617 WLAN_REASON_DEAUTH_LEAVING);
2618
2619 set_bit(IEEE80211_STA_REQ_AUTH, &ifsta->request);
2620 queue_work(local->hw.workqueue, &ifsta->work);
2621 }
2622}
2623
2624int ieee80211_sta_set_ssid(struct ieee80211_sub_if_data *sdata, char *ssid, size_t len)
2625{
2626 struct ieee80211_if_sta *ifsta;
Johannes Berg9c6bd792008-09-11 00:01:52 +02002627
2628 if (len > IEEE80211_MAX_SSID_LEN)
2629 return -EINVAL;
2630
2631 ifsta = &sdata->u.sta;
2632
2633 if (ifsta->ssid_len != len || memcmp(ifsta->ssid, ssid, len) != 0) {
2634 memset(ifsta->ssid, 0, sizeof(ifsta->ssid));
2635 memcpy(ifsta->ssid, ssid, len);
2636 ifsta->ssid_len = len;
Johannes Berg9c6bd792008-09-11 00:01:52 +02002637 }
2638
Alina Friedrichsendfe67012009-01-24 01:19:04 +01002639 ifsta->flags &= ~IEEE80211_STA_PREV_BSSID_SET;
2640
Johannes Berg9c6bd792008-09-11 00:01:52 +02002641 if (len)
2642 ifsta->flags |= IEEE80211_STA_SSID_SET;
2643 else
2644 ifsta->flags &= ~IEEE80211_STA_SSID_SET;
2645
Alina Friedrichsendfe67012009-01-24 01:19:04 +01002646 if (sdata->vif.type == NL80211_IFTYPE_ADHOC) {
Johannes Berg9c6bd792008-09-11 00:01:52 +02002647 ifsta->ibss_join_req = jiffies;
2648 ifsta->state = IEEE80211_STA_MLME_IBSS_SEARCH;
2649 return ieee80211_sta_find_ibss(sdata, ifsta);
2650 }
2651
2652 return 0;
2653}
2654
2655int ieee80211_sta_get_ssid(struct ieee80211_sub_if_data *sdata, char *ssid, size_t *len)
2656{
2657 struct ieee80211_if_sta *ifsta = &sdata->u.sta;
2658 memcpy(ssid, ifsta->ssid, ifsta->ssid_len);
2659 *len = ifsta->ssid_len;
2660 return 0;
2661}
2662
2663int ieee80211_sta_set_bssid(struct ieee80211_sub_if_data *sdata, u8 *bssid)
2664{
2665 struct ieee80211_if_sta *ifsta;
Johannes Berg9c6bd792008-09-11 00:01:52 +02002666
2667 ifsta = &sdata->u.sta;
2668
Alina Friedrichsendfe67012009-01-24 01:19:04 +01002669 if (is_valid_ether_addr(bssid)) {
2670 memcpy(ifsta->bssid, bssid, ETH_ALEN);
2671 ifsta->flags |= IEEE80211_STA_BSSID_SET;
2672 } else {
2673 memset(ifsta->bssid, 0, ETH_ALEN);
2674 ifsta->flags &= ~IEEE80211_STA_BSSID_SET;
2675 }
2676
2677 if (netif_running(sdata->dev)) {
2678 if (ieee80211_if_config(sdata, IEEE80211_IFCC_BSSID)) {
Johannes Berg9c6bd792008-09-11 00:01:52 +02002679 printk(KERN_DEBUG "%s: Failed to config new BSSID to "
2680 "the low-level driver\n", sdata->dev->name);
Johannes Berg9c6bd792008-09-11 00:01:52 +02002681 }
2682 }
2683
Alina Friedrichsendfe67012009-01-24 01:19:04 +01002684 return ieee80211_sta_set_ssid(sdata, ifsta->ssid, ifsta->ssid_len);
Johannes Berg9c6bd792008-09-11 00:01:52 +02002685}
2686
2687int ieee80211_sta_set_extra_ie(struct ieee80211_sub_if_data *sdata, char *ie, size_t len)
2688{
2689 struct ieee80211_if_sta *ifsta = &sdata->u.sta;
2690
2691 kfree(ifsta->extra_ie);
2692 if (len == 0) {
2693 ifsta->extra_ie = NULL;
2694 ifsta->extra_ie_len = 0;
2695 return 0;
2696 }
2697 ifsta->extra_ie = kmalloc(len, GFP_KERNEL);
2698 if (!ifsta->extra_ie) {
2699 ifsta->extra_ie_len = 0;
2700 return -ENOMEM;
2701 }
2702 memcpy(ifsta->extra_ie, ie, len);
2703 ifsta->extra_ie_len = len;
2704 return 0;
2705}
2706
2707int ieee80211_sta_deauthenticate(struct ieee80211_sub_if_data *sdata, u16 reason)
2708{
2709 struct ieee80211_if_sta *ifsta = &sdata->u.sta;
2710
2711 printk(KERN_DEBUG "%s: deauthenticating by local choice (reason=%d)\n",
2712 sdata->dev->name, reason);
2713
Johannes Berg05c914f2008-09-11 00:01:58 +02002714 if (sdata->vif.type != NL80211_IFTYPE_STATION &&
2715 sdata->vif.type != NL80211_IFTYPE_ADHOC)
Johannes Berg9c6bd792008-09-11 00:01:52 +02002716 return -EINVAL;
2717
2718 ieee80211_set_disassoc(sdata, ifsta, true, true, reason);
2719 return 0;
2720}
2721
2722int ieee80211_sta_disassociate(struct ieee80211_sub_if_data *sdata, u16 reason)
2723{
2724 struct ieee80211_if_sta *ifsta = &sdata->u.sta;
2725
2726 printk(KERN_DEBUG "%s: disassociating by local choice (reason=%d)\n",
2727 sdata->dev->name, reason);
2728
Johannes Berg05c914f2008-09-11 00:01:58 +02002729 if (sdata->vif.type != NL80211_IFTYPE_STATION)
Johannes Berg9c6bd792008-09-11 00:01:52 +02002730 return -EINVAL;
2731
2732 if (!(ifsta->flags & IEEE80211_STA_ASSOCIATED))
2733 return -1;
2734
2735 ieee80211_set_disassoc(sdata, ifsta, false, true, reason);
2736 return 0;
2737}
2738
2739/* scan finished notification */
Johannes Berg0a51b272008-09-08 17:44:25 +02002740void ieee80211_mlme_notify_scan_completed(struct ieee80211_local *local)
2741{
2742 struct ieee80211_sub_if_data *sdata = local->scan_sdata;
2743 struct ieee80211_if_sta *ifsta;
2744
Johannes Berg05c914f2008-09-11 00:01:58 +02002745 if (sdata && sdata->vif.type == NL80211_IFTYPE_ADHOC) {
Johannes Berg0a51b272008-09-08 17:44:25 +02002746 ifsta = &sdata->u.sta;
Alina Friedrichsenc0415b52009-01-29 09:59:43 +01002747 if ((!(ifsta->flags & IEEE80211_STA_PREV_BSSID_SET)) ||
2748 !ieee80211_sta_active_ibss(sdata))
Johannes Berg0a51b272008-09-08 17:44:25 +02002749 ieee80211_sta_find_ibss(sdata, ifsta);
2750 }
Johannes Berga1678f82008-09-11 00:01:47 +02002751
2752 /* Restart STA timers */
2753 rcu_read_lock();
2754 list_for_each_entry_rcu(sdata, &local->interfaces, list)
2755 ieee80211_restart_sta_timer(sdata);
2756 rcu_read_unlock();
Johannes Berg0a51b272008-09-08 17:44:25 +02002757}
Kalle Valo520eb822008-12-18 23:35:27 +02002758
2759void ieee80211_dynamic_ps_disable_work(struct work_struct *work)
2760{
2761 struct ieee80211_local *local =
2762 container_of(work, struct ieee80211_local,
2763 dynamic_ps_disable_work);
2764
2765 if (local->hw.conf.flags & IEEE80211_CONF_PS) {
2766 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
2767 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
2768 }
2769
2770 ieee80211_wake_queues_by_reason(&local->hw,
2771 IEEE80211_QUEUE_STOP_REASON_PS);
2772}
2773
2774void ieee80211_dynamic_ps_enable_work(struct work_struct *work)
2775{
2776 struct ieee80211_local *local =
2777 container_of(work, struct ieee80211_local,
2778 dynamic_ps_enable_work);
Vivek Natarajana97b77b2008-12-23 18:39:02 -08002779 struct ieee80211_sub_if_data *sdata = local->scan_sdata;
Kalle Valo520eb822008-12-18 23:35:27 +02002780
2781 if (local->hw.conf.flags & IEEE80211_CONF_PS)
2782 return;
2783
Johannes Berg4be8c382009-01-07 18:28:20 +01002784 if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)
2785 ieee80211_send_nullfunc(local, sdata, 1);
Kalle Valo520eb822008-12-18 23:35:27 +02002786
Johannes Berg4be8c382009-01-07 18:28:20 +01002787 local->hw.conf.flags |= IEEE80211_CONF_PS;
Kalle Valo520eb822008-12-18 23:35:27 +02002788 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
2789}
2790
2791void ieee80211_dynamic_ps_timer(unsigned long data)
2792{
2793 struct ieee80211_local *local = (void *) data;
2794
2795 queue_work(local->hw.workqueue, &local->dynamic_ps_enable_work);
2796}