nl80211: Remove NL80211_CMD_SET_MGMT_EXTRA_IE
[safe/jmp/linux-2.6] / net / mac80211 / mlme.c
1 /*
2  * BSS client mode implementation
3  * Copyright 2003-2008, Jouni Malinen <j@w1.fi>
4  * Copyright 2004, Instant802 Networks, Inc.
5  * Copyright 2005, Devicescape Software, Inc.
6  * Copyright 2006-2007  Jiri Benc <jbenc@suse.cz>
7  * Copyright 2007, Michael Wu <flamingice@sourmilk.net>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License version 2 as
11  * published by the Free Software Foundation.
12  */
13
14 #include <linux/delay.h>
15 #include <linux/if_ether.h>
16 #include <linux/skbuff.h>
17 #include <linux/if_arp.h>
18 #include <linux/etherdevice.h>
19 #include <linux/rtnetlink.h>
20 #include <net/mac80211.h>
21 #include <asm/unaligned.h>
22
23 #include "ieee80211_i.h"
24 #include "rate.h"
25 #include "led.h"
26
27 #define IEEE80211_ASSOC_SCANS_MAX_TRIES 2
28 #define IEEE80211_AUTH_TIMEOUT (HZ / 5)
29 #define IEEE80211_AUTH_MAX_TRIES 3
30 #define IEEE80211_ASSOC_TIMEOUT (HZ / 5)
31 #define IEEE80211_ASSOC_MAX_TRIES 3
32 #define IEEE80211_MONITORING_INTERVAL (2 * HZ)
33 #define IEEE80211_PROBE_INTERVAL (60 * HZ)
34 #define IEEE80211_RETRY_AUTH_INTERVAL (1 * HZ)
35
36 /* utils */
37 static int ecw2cw(int ecw)
38 {
39         return (1 << ecw) - 1;
40 }
41
42 static u8 *ieee80211_bss_get_ie(struct ieee80211_bss *bss, u8 ie)
43 {
44         u8 *end, *pos;
45
46         pos = bss->cbss.information_elements;
47         if (pos == NULL)
48                 return NULL;
49         end = pos + bss->cbss.len_information_elements;
50
51         while (pos + 1 < end) {
52                 if (pos + 2 + pos[1] > end)
53                         break;
54                 if (pos[0] == ie)
55                         return pos;
56                 pos += 2 + pos[1];
57         }
58
59         return NULL;
60 }
61
62 static int ieee80211_compatible_rates(struct ieee80211_bss *bss,
63                                       struct ieee80211_supported_band *sband,
64                                       u32 *rates)
65 {
66         int i, j, count;
67         *rates = 0;
68         count = 0;
69         for (i = 0; i < bss->supp_rates_len; i++) {
70                 int rate = (bss->supp_rates[i] & 0x7F) * 5;
71
72                 for (j = 0; j < sband->n_bitrates; j++)
73                         if (sband->bitrates[j].bitrate == rate) {
74                                 *rates |= BIT(j);
75                                 count++;
76                                 break;
77                         }
78         }
79
80         return count;
81 }
82
83 /* frame sending functions */
84
85 static void ieee80211_send_assoc(struct ieee80211_sub_if_data *sdata)
86 {
87         struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
88         struct ieee80211_local *local = sdata->local;
89         struct sk_buff *skb;
90         struct ieee80211_mgmt *mgmt;
91         u8 *pos, *ies, *ht_ie;
92         int i, len, count, rates_len, supp_rates_len;
93         u16 capab;
94         struct ieee80211_bss *bss;
95         int wmm = 0;
96         struct ieee80211_supported_band *sband;
97         u32 rates = 0;
98
99         skb = dev_alloc_skb(local->hw.extra_tx_headroom +
100                             sizeof(*mgmt) + 200 + ifmgd->extra_ie_len +
101                             ifmgd->ssid_len);
102         if (!skb) {
103                 printk(KERN_DEBUG "%s: failed to allocate buffer for assoc "
104                        "frame\n", sdata->dev->name);
105                 return;
106         }
107         skb_reserve(skb, local->hw.extra_tx_headroom);
108
109         sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
110
111         capab = ifmgd->capab;
112
113         if (local->hw.conf.channel->band == IEEE80211_BAND_2GHZ) {
114                 if (!(local->hw.flags & IEEE80211_HW_2GHZ_SHORT_SLOT_INCAPABLE))
115                         capab |= WLAN_CAPABILITY_SHORT_SLOT_TIME;
116                 if (!(local->hw.flags & IEEE80211_HW_2GHZ_SHORT_PREAMBLE_INCAPABLE))
117                         capab |= WLAN_CAPABILITY_SHORT_PREAMBLE;
118         }
119
120         bss = ieee80211_rx_bss_get(local, ifmgd->bssid,
121                                    local->hw.conf.channel->center_freq,
122                                    ifmgd->ssid, ifmgd->ssid_len);
123         if (bss) {
124                 if (bss->cbss.capability & WLAN_CAPABILITY_PRIVACY)
125                         capab |= WLAN_CAPABILITY_PRIVACY;
126                 if (bss->wmm_used)
127                         wmm = 1;
128
129                 /* get all rates supported by the device and the AP as
130                  * some APs don't like getting a superset of their rates
131                  * in the association request (e.g. D-Link DAP 1353 in
132                  * b-only mode) */
133                 rates_len = ieee80211_compatible_rates(bss, sband, &rates);
134
135                 if ((bss->cbss.capability & WLAN_CAPABILITY_SPECTRUM_MGMT) &&
136                     (local->hw.flags & IEEE80211_HW_SPECTRUM_MGMT))
137                         capab |= WLAN_CAPABILITY_SPECTRUM_MGMT;
138
139                 ieee80211_rx_bss_put(local, bss);
140         } else {
141                 rates = ~0;
142                 rates_len = sband->n_bitrates;
143         }
144
145         mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24);
146         memset(mgmt, 0, 24);
147         memcpy(mgmt->da, ifmgd->bssid, ETH_ALEN);
148         memcpy(mgmt->sa, sdata->dev->dev_addr, ETH_ALEN);
149         memcpy(mgmt->bssid, ifmgd->bssid, ETH_ALEN);
150
151         if (ifmgd->flags & IEEE80211_STA_PREV_BSSID_SET) {
152                 skb_put(skb, 10);
153                 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
154                                                   IEEE80211_STYPE_REASSOC_REQ);
155                 mgmt->u.reassoc_req.capab_info = cpu_to_le16(capab);
156                 mgmt->u.reassoc_req.listen_interval =
157                                 cpu_to_le16(local->hw.conf.listen_interval);
158                 memcpy(mgmt->u.reassoc_req.current_ap, ifmgd->prev_bssid,
159                        ETH_ALEN);
160         } else {
161                 skb_put(skb, 4);
162                 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
163                                                   IEEE80211_STYPE_ASSOC_REQ);
164                 mgmt->u.assoc_req.capab_info = cpu_to_le16(capab);
165                 mgmt->u.assoc_req.listen_interval =
166                                 cpu_to_le16(local->hw.conf.listen_interval);
167         }
168
169         /* SSID */
170         ies = pos = skb_put(skb, 2 + ifmgd->ssid_len);
171         *pos++ = WLAN_EID_SSID;
172         *pos++ = ifmgd->ssid_len;
173         memcpy(pos, ifmgd->ssid, ifmgd->ssid_len);
174
175         /* add all rates which were marked to be used above */
176         supp_rates_len = rates_len;
177         if (supp_rates_len > 8)
178                 supp_rates_len = 8;
179
180         len = sband->n_bitrates;
181         pos = skb_put(skb, supp_rates_len + 2);
182         *pos++ = WLAN_EID_SUPP_RATES;
183         *pos++ = supp_rates_len;
184
185         count = 0;
186         for (i = 0; i < sband->n_bitrates; i++) {
187                 if (BIT(i) & rates) {
188                         int rate = sband->bitrates[i].bitrate;
189                         *pos++ = (u8) (rate / 5);
190                         if (++count == 8)
191                                 break;
192                 }
193         }
194
195         if (rates_len > count) {
196                 pos = skb_put(skb, rates_len - count + 2);
197                 *pos++ = WLAN_EID_EXT_SUPP_RATES;
198                 *pos++ = rates_len - count;
199
200                 for (i++; i < sband->n_bitrates; i++) {
201                         if (BIT(i) & rates) {
202                                 int rate = sband->bitrates[i].bitrate;
203                                 *pos++ = (u8) (rate / 5);
204                         }
205                 }
206         }
207
208         if (capab & WLAN_CAPABILITY_SPECTRUM_MGMT) {
209                 /* 1. power capabilities */
210                 pos = skb_put(skb, 4);
211                 *pos++ = WLAN_EID_PWR_CAPABILITY;
212                 *pos++ = 2;
213                 *pos++ = 0; /* min tx power */
214                 *pos++ = local->hw.conf.channel->max_power; /* max tx power */
215
216                 /* 2. supported channels */
217                 /* TODO: get this in reg domain format */
218                 pos = skb_put(skb, 2 * sband->n_channels + 2);
219                 *pos++ = WLAN_EID_SUPPORTED_CHANNELS;
220                 *pos++ = 2 * sband->n_channels;
221                 for (i = 0; i < sband->n_channels; i++) {
222                         *pos++ = ieee80211_frequency_to_channel(
223                                         sband->channels[i].center_freq);
224                         *pos++ = 1; /* one channel in the subband*/
225                 }
226         }
227
228         if (ifmgd->extra_ie) {
229                 pos = skb_put(skb, ifmgd->extra_ie_len);
230                 memcpy(pos, ifmgd->extra_ie, ifmgd->extra_ie_len);
231         }
232
233         if (wmm && (ifmgd->flags & IEEE80211_STA_WMM_ENABLED)) {
234                 pos = skb_put(skb, 9);
235                 *pos++ = WLAN_EID_VENDOR_SPECIFIC;
236                 *pos++ = 7; /* len */
237                 *pos++ = 0x00; /* Microsoft OUI 00:50:F2 */
238                 *pos++ = 0x50;
239                 *pos++ = 0xf2;
240                 *pos++ = 2; /* WME */
241                 *pos++ = 0; /* WME info */
242                 *pos++ = 1; /* WME ver */
243                 *pos++ = 0;
244         }
245
246         /* wmm support is a must to HT */
247         /*
248          * IEEE802.11n does not allow TKIP/WEP as pairwise
249          * ciphers in HT mode. We still associate in non-ht
250          * mode (11a/b/g) if any one of these ciphers is
251          * configured as pairwise.
252          */
253         if (wmm && (ifmgd->flags & IEEE80211_STA_WMM_ENABLED) &&
254             sband->ht_cap.ht_supported &&
255             (ht_ie = ieee80211_bss_get_ie(bss, WLAN_EID_HT_INFORMATION)) &&
256             ht_ie[1] >= sizeof(struct ieee80211_ht_info) &&
257             (!(ifmgd->flags & IEEE80211_STA_TKIP_WEP_USED))) {
258                 struct ieee80211_ht_info *ht_info =
259                         (struct ieee80211_ht_info *)(ht_ie + 2);
260                 u16 cap = sband->ht_cap.cap;
261                 __le16 tmp;
262                 u32 flags = local->hw.conf.channel->flags;
263
264                 switch (ht_info->ht_param & IEEE80211_HT_PARAM_CHA_SEC_OFFSET) {
265                 case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
266                         if (flags & IEEE80211_CHAN_NO_FAT_ABOVE) {
267                                 cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
268                                 cap &= ~IEEE80211_HT_CAP_SGI_40;
269                         }
270                         break;
271                 case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
272                         if (flags & IEEE80211_CHAN_NO_FAT_BELOW) {
273                                 cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
274                                 cap &= ~IEEE80211_HT_CAP_SGI_40;
275                         }
276                         break;
277                 }
278
279                 tmp = cpu_to_le16(cap);
280                 pos = skb_put(skb, sizeof(struct ieee80211_ht_cap)+2);
281                 *pos++ = WLAN_EID_HT_CAPABILITY;
282                 *pos++ = sizeof(struct ieee80211_ht_cap);
283                 memset(pos, 0, sizeof(struct ieee80211_ht_cap));
284                 memcpy(pos, &tmp, sizeof(u16));
285                 pos += sizeof(u16);
286                 /* TODO: needs a define here for << 2 */
287                 *pos++ = sband->ht_cap.ampdu_factor |
288                          (sband->ht_cap.ampdu_density << 2);
289                 memcpy(pos, &sband->ht_cap.mcs, sizeof(sband->ht_cap.mcs));
290         }
291
292         kfree(ifmgd->assocreq_ies);
293         ifmgd->assocreq_ies_len = (skb->data + skb->len) - ies;
294         ifmgd->assocreq_ies = kmalloc(ifmgd->assocreq_ies_len, GFP_KERNEL);
295         if (ifmgd->assocreq_ies)
296                 memcpy(ifmgd->assocreq_ies, ies, ifmgd->assocreq_ies_len);
297
298         ieee80211_tx_skb(sdata, skb, 0);
299 }
300
301
302 static void ieee80211_send_deauth_disassoc(struct ieee80211_sub_if_data *sdata,
303                                            u16 stype, u16 reason)
304 {
305         struct ieee80211_local *local = sdata->local;
306         struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
307         struct sk_buff *skb;
308         struct ieee80211_mgmt *mgmt;
309
310         skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*mgmt));
311         if (!skb) {
312                 printk(KERN_DEBUG "%s: failed to allocate buffer for "
313                        "deauth/disassoc frame\n", sdata->dev->name);
314                 return;
315         }
316         skb_reserve(skb, local->hw.extra_tx_headroom);
317
318         mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24);
319         memset(mgmt, 0, 24);
320         memcpy(mgmt->da, ifmgd->bssid, ETH_ALEN);
321         memcpy(mgmt->sa, sdata->dev->dev_addr, ETH_ALEN);
322         memcpy(mgmt->bssid, ifmgd->bssid, ETH_ALEN);
323         mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT | stype);
324         skb_put(skb, 2);
325         /* u.deauth.reason_code == u.disassoc.reason_code */
326         mgmt->u.deauth.reason_code = cpu_to_le16(reason);
327
328         ieee80211_tx_skb(sdata, skb, ifmgd->flags & IEEE80211_STA_MFP_ENABLED);
329 }
330
331 void ieee80211_send_pspoll(struct ieee80211_local *local,
332                            struct ieee80211_sub_if_data *sdata)
333 {
334         struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
335         struct ieee80211_pspoll *pspoll;
336         struct sk_buff *skb;
337         u16 fc;
338
339         skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*pspoll));
340         if (!skb) {
341                 printk(KERN_DEBUG "%s: failed to allocate buffer for "
342                        "pspoll frame\n", sdata->dev->name);
343                 return;
344         }
345         skb_reserve(skb, local->hw.extra_tx_headroom);
346
347         pspoll = (struct ieee80211_pspoll *) skb_put(skb, sizeof(*pspoll));
348         memset(pspoll, 0, sizeof(*pspoll));
349         fc = IEEE80211_FTYPE_CTL | IEEE80211_STYPE_PSPOLL | IEEE80211_FCTL_PM;
350         pspoll->frame_control = cpu_to_le16(fc);
351         pspoll->aid = cpu_to_le16(ifmgd->aid);
352
353         /* aid in PS-Poll has its two MSBs each set to 1 */
354         pspoll->aid |= cpu_to_le16(1 << 15 | 1 << 14);
355
356         memcpy(pspoll->bssid, ifmgd->bssid, ETH_ALEN);
357         memcpy(pspoll->ta, sdata->dev->dev_addr, ETH_ALEN);
358
359         ieee80211_tx_skb(sdata, skb, 0);
360 }
361
362 /* MLME */
363 static void ieee80211_sta_wmm_params(struct ieee80211_local *local,
364                                      struct ieee80211_if_managed *ifmgd,
365                                      u8 *wmm_param, size_t wmm_param_len)
366 {
367         struct ieee80211_tx_queue_params params;
368         size_t left;
369         int count;
370         u8 *pos;
371
372         if (!(ifmgd->flags & IEEE80211_STA_WMM_ENABLED))
373                 return;
374
375         if (!wmm_param)
376                 return;
377
378         if (wmm_param_len < 8 || wmm_param[5] /* version */ != 1)
379                 return;
380         count = wmm_param[6] & 0x0f;
381         if (count == ifmgd->wmm_last_param_set)
382                 return;
383         ifmgd->wmm_last_param_set = count;
384
385         pos = wmm_param + 8;
386         left = wmm_param_len - 8;
387
388         memset(&params, 0, sizeof(params));
389
390         local->wmm_acm = 0;
391         for (; left >= 4; left -= 4, pos += 4) {
392                 int aci = (pos[0] >> 5) & 0x03;
393                 int acm = (pos[0] >> 4) & 0x01;
394                 int queue;
395
396                 switch (aci) {
397                 case 1: /* AC_BK */
398                         queue = 3;
399                         if (acm)
400                                 local->wmm_acm |= BIT(1) | BIT(2); /* BK/- */
401                         break;
402                 case 2: /* AC_VI */
403                         queue = 1;
404                         if (acm)
405                                 local->wmm_acm |= BIT(4) | BIT(5); /* CL/VI */
406                         break;
407                 case 3: /* AC_VO */
408                         queue = 0;
409                         if (acm)
410                                 local->wmm_acm |= BIT(6) | BIT(7); /* VO/NC */
411                         break;
412                 case 0: /* AC_BE */
413                 default:
414                         queue = 2;
415                         if (acm)
416                                 local->wmm_acm |= BIT(0) | BIT(3); /* BE/EE */
417                         break;
418                 }
419
420                 params.aifs = pos[0] & 0x0f;
421                 params.cw_max = ecw2cw((pos[1] & 0xf0) >> 4);
422                 params.cw_min = ecw2cw(pos[1] & 0x0f);
423                 params.txop = get_unaligned_le16(pos + 2);
424 #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
425                 printk(KERN_DEBUG "%s: WMM queue=%d aci=%d acm=%d aifs=%d "
426                        "cWmin=%d cWmax=%d txop=%d\n",
427                        local->mdev->name, queue, aci, acm, params.aifs, params.cw_min,
428                        params.cw_max, params.txop);
429 #endif
430                 if (local->ops->conf_tx &&
431                     local->ops->conf_tx(local_to_hw(local), queue, &params)) {
432                         printk(KERN_DEBUG "%s: failed to set TX queue "
433                                "parameters for queue %d\n", local->mdev->name, queue);
434                 }
435         }
436 }
437
438 static bool ieee80211_check_tim(struct ieee802_11_elems *elems, u16 aid)
439 {
440         u8 mask;
441         u8 index, indexn1, indexn2;
442         struct ieee80211_tim_ie *tim = (struct ieee80211_tim_ie *) elems->tim;
443
444         aid &= 0x3fff;
445         index = aid / 8;
446         mask  = 1 << (aid & 7);
447
448         indexn1 = tim->bitmap_ctrl & 0xfe;
449         indexn2 = elems->tim_len + indexn1 - 4;
450
451         if (index < indexn1 || index > indexn2)
452                 return false;
453
454         index -= indexn1;
455
456         return !!(tim->virtual_map[index] & mask);
457 }
458
459 static u32 ieee80211_handle_bss_capability(struct ieee80211_sub_if_data *sdata,
460                                            u16 capab, bool erp_valid, u8 erp)
461 {
462         struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
463 #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
464         struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
465 #endif
466         u32 changed = 0;
467         bool use_protection;
468         bool use_short_preamble;
469         bool use_short_slot;
470
471         if (erp_valid) {
472                 use_protection = (erp & WLAN_ERP_USE_PROTECTION) != 0;
473                 use_short_preamble = (erp & WLAN_ERP_BARKER_PREAMBLE) == 0;
474         } else {
475                 use_protection = false;
476                 use_short_preamble = !!(capab & WLAN_CAPABILITY_SHORT_PREAMBLE);
477         }
478
479         use_short_slot = !!(capab & WLAN_CAPABILITY_SHORT_SLOT_TIME);
480
481         if (use_protection != bss_conf->use_cts_prot) {
482 #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
483                 if (net_ratelimit()) {
484                         printk(KERN_DEBUG "%s: CTS protection %s (BSSID=%pM)\n",
485                                sdata->dev->name,
486                                use_protection ? "enabled" : "disabled",
487                                ifmgd->bssid);
488                 }
489 #endif
490                 bss_conf->use_cts_prot = use_protection;
491                 changed |= BSS_CHANGED_ERP_CTS_PROT;
492         }
493
494         if (use_short_preamble != bss_conf->use_short_preamble) {
495 #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
496                 if (net_ratelimit()) {
497                         printk(KERN_DEBUG "%s: switched to %s barker preamble"
498                                " (BSSID=%pM)\n",
499                                sdata->dev->name,
500                                use_short_preamble ? "short" : "long",
501                                ifmgd->bssid);
502                 }
503 #endif
504                 bss_conf->use_short_preamble = use_short_preamble;
505                 changed |= BSS_CHANGED_ERP_PREAMBLE;
506         }
507
508         if (use_short_slot != bss_conf->use_short_slot) {
509 #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
510                 if (net_ratelimit()) {
511                         printk(KERN_DEBUG "%s: switched to %s slot time"
512                                " (BSSID=%pM)\n",
513                                sdata->dev->name,
514                                use_short_slot ? "short" : "long",
515                                ifmgd->bssid);
516                 }
517 #endif
518                 bss_conf->use_short_slot = use_short_slot;
519                 changed |= BSS_CHANGED_ERP_SLOT;
520         }
521
522         return changed;
523 }
524
525 static void ieee80211_sta_send_apinfo(struct ieee80211_sub_if_data *sdata)
526 {
527         union iwreq_data wrqu;
528
529         memset(&wrqu, 0, sizeof(wrqu));
530         if (sdata->u.mgd.flags & IEEE80211_STA_ASSOCIATED)
531                 memcpy(wrqu.ap_addr.sa_data, sdata->u.mgd.bssid, ETH_ALEN);
532         wrqu.ap_addr.sa_family = ARPHRD_ETHER;
533         wireless_send_event(sdata->dev, SIOCGIWAP, &wrqu, NULL);
534 }
535
536 static void ieee80211_sta_send_associnfo(struct ieee80211_sub_if_data *sdata)
537 {
538         struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
539         char *buf;
540         size_t len;
541         int i;
542         union iwreq_data wrqu;
543
544         if (!ifmgd->assocreq_ies && !ifmgd->assocresp_ies)
545                 return;
546
547         buf = kmalloc(50 + 2 * (ifmgd->assocreq_ies_len +
548                                 ifmgd->assocresp_ies_len), GFP_KERNEL);
549         if (!buf)
550                 return;
551
552         len = sprintf(buf, "ASSOCINFO(");
553         if (ifmgd->assocreq_ies) {
554                 len += sprintf(buf + len, "ReqIEs=");
555                 for (i = 0; i < ifmgd->assocreq_ies_len; i++) {
556                         len += sprintf(buf + len, "%02x",
557                                        ifmgd->assocreq_ies[i]);
558                 }
559         }
560         if (ifmgd->assocresp_ies) {
561                 if (ifmgd->assocreq_ies)
562                         len += sprintf(buf + len, " ");
563                 len += sprintf(buf + len, "RespIEs=");
564                 for (i = 0; i < ifmgd->assocresp_ies_len; i++) {
565                         len += sprintf(buf + len, "%02x",
566                                        ifmgd->assocresp_ies[i]);
567                 }
568         }
569         len += sprintf(buf + len, ")");
570
571         if (len > IW_CUSTOM_MAX) {
572                 len = sprintf(buf, "ASSOCRESPIE=");
573                 for (i = 0; i < ifmgd->assocresp_ies_len; i++) {
574                         len += sprintf(buf + len, "%02x",
575                                        ifmgd->assocresp_ies[i]);
576                 }
577         }
578
579         if (len <= IW_CUSTOM_MAX) {
580                 memset(&wrqu, 0, sizeof(wrqu));
581                 wrqu.data.length = len;
582                 wireless_send_event(sdata->dev, IWEVCUSTOM, &wrqu, buf);
583         }
584
585         kfree(buf);
586 }
587
588
589 static void ieee80211_set_associated(struct ieee80211_sub_if_data *sdata,
590                                      u32 bss_info_changed)
591 {
592         struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
593         struct ieee80211_local *local = sdata->local;
594         struct ieee80211_conf *conf = &local_to_hw(local)->conf;
595
596         struct ieee80211_bss *bss;
597
598         bss_info_changed |= BSS_CHANGED_ASSOC;
599         ifmgd->flags |= IEEE80211_STA_ASSOCIATED;
600
601         bss = ieee80211_rx_bss_get(local, ifmgd->bssid,
602                                    conf->channel->center_freq,
603                                    ifmgd->ssid, ifmgd->ssid_len);
604         if (bss) {
605                 /* set timing information */
606                 sdata->vif.bss_conf.beacon_int = bss->cbss.beacon_interval;
607                 sdata->vif.bss_conf.timestamp = bss->cbss.tsf;
608                 sdata->vif.bss_conf.dtim_period = bss->dtim_period;
609
610                 bss_info_changed |= ieee80211_handle_bss_capability(sdata,
611                         bss->cbss.capability, bss->has_erp_value, bss->erp_value);
612
613                 ieee80211_rx_bss_put(local, bss);
614         }
615
616         ifmgd->flags |= IEEE80211_STA_PREV_BSSID_SET;
617         memcpy(ifmgd->prev_bssid, sdata->u.mgd.bssid, ETH_ALEN);
618         ieee80211_sta_send_associnfo(sdata);
619
620         ifmgd->last_probe = jiffies;
621         ieee80211_led_assoc(local, 1);
622
623         sdata->vif.bss_conf.assoc = 1;
624         /*
625          * For now just always ask the driver to update the basic rateset
626          * when we have associated, we aren't checking whether it actually
627          * changed or not.
628          */
629         bss_info_changed |= BSS_CHANGED_BASIC_RATES;
630         ieee80211_bss_info_change_notify(sdata, bss_info_changed);
631
632         if (local->powersave) {
633                 if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS) &&
634                     local->hw.conf.dynamic_ps_timeout > 0) {
635                         mod_timer(&local->dynamic_ps_timer, jiffies +
636                                   msecs_to_jiffies(
637                                         local->hw.conf.dynamic_ps_timeout));
638                 } else {
639                         if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)
640                                 ieee80211_send_nullfunc(local, sdata, 1);
641                         conf->flags |= IEEE80211_CONF_PS;
642                         ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
643                 }
644         }
645
646         netif_tx_start_all_queues(sdata->dev);
647         netif_carrier_on(sdata->dev);
648
649         ieee80211_sta_send_apinfo(sdata);
650 }
651
652 static void ieee80211_direct_probe(struct ieee80211_sub_if_data *sdata)
653 {
654         struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
655         struct ieee80211_local *local = sdata->local;
656
657         ifmgd->direct_probe_tries++;
658         if (ifmgd->direct_probe_tries > IEEE80211_AUTH_MAX_TRIES) {
659                 printk(KERN_DEBUG "%s: direct probe to AP %pM timed out\n",
660                        sdata->dev->name, ifmgd->bssid);
661                 ifmgd->state = IEEE80211_STA_MLME_DISABLED;
662                 ieee80211_sta_send_apinfo(sdata);
663
664                 /*
665                  * Most likely AP is not in the range so remove the
666                  * bss information associated to the AP
667                  */
668                 ieee80211_rx_bss_remove(sdata, ifmgd->bssid,
669                                 sdata->local->hw.conf.channel->center_freq,
670                                 ifmgd->ssid, ifmgd->ssid_len);
671
672                 /*
673                  * We might have a pending scan which had no chance to run yet
674                  * due to state == IEEE80211_STA_MLME_DIRECT_PROBE.
675                  * Hence, queue the STAs work again
676                  */
677                 queue_work(local->hw.workqueue, &ifmgd->work);
678                 return;
679         }
680
681         printk(KERN_DEBUG "%s: direct probe to AP %pM try %d\n",
682                         sdata->dev->name, ifmgd->bssid,
683                         ifmgd->direct_probe_tries);
684
685         ifmgd->state = IEEE80211_STA_MLME_DIRECT_PROBE;
686
687         set_bit(IEEE80211_STA_REQ_DIRECT_PROBE, &ifmgd->request);
688
689         /* Direct probe is sent to broadcast address as some APs
690          * will not answer to direct packet in unassociated state.
691          */
692         ieee80211_send_probe_req(sdata, NULL,
693                                  ifmgd->ssid, ifmgd->ssid_len, NULL, 0);
694
695         mod_timer(&ifmgd->timer, jiffies + IEEE80211_AUTH_TIMEOUT);
696 }
697
698
699 static void ieee80211_authenticate(struct ieee80211_sub_if_data *sdata)
700 {
701         struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
702         struct ieee80211_local *local = sdata->local;
703         u8 *ies;
704         size_t ies_len;
705
706         ifmgd->auth_tries++;
707         if (ifmgd->auth_tries > IEEE80211_AUTH_MAX_TRIES) {
708                 printk(KERN_DEBUG "%s: authentication with AP %pM"
709                        " timed out\n",
710                        sdata->dev->name, ifmgd->bssid);
711                 ifmgd->state = IEEE80211_STA_MLME_DISABLED;
712                 ieee80211_sta_send_apinfo(sdata);
713                 ieee80211_rx_bss_remove(sdata, ifmgd->bssid,
714                                 sdata->local->hw.conf.channel->center_freq,
715                                 ifmgd->ssid, ifmgd->ssid_len);
716
717                 /*
718                  * We might have a pending scan which had no chance to run yet
719                  * due to state == IEEE80211_STA_MLME_AUTHENTICATE.
720                  * Hence, queue the STAs work again
721                  */
722                 queue_work(local->hw.workqueue, &ifmgd->work);
723                 return;
724         }
725
726         ifmgd->state = IEEE80211_STA_MLME_AUTHENTICATE;
727         printk(KERN_DEBUG "%s: authenticate with AP %pM\n",
728                sdata->dev->name, ifmgd->bssid);
729
730         if (ifmgd->flags & IEEE80211_STA_EXT_SME) {
731                 ies = ifmgd->sme_auth_ie;
732                 ies_len = ifmgd->sme_auth_ie_len;
733         } else {
734                 ies = NULL;
735                 ies_len = 0;
736         }
737         ieee80211_send_auth(sdata, 1, ifmgd->auth_alg, ies, ies_len,
738                             ifmgd->bssid, 0);
739         ifmgd->auth_transaction = 2;
740
741         mod_timer(&ifmgd->timer, jiffies + IEEE80211_AUTH_TIMEOUT);
742 }
743
744 /*
745  * The disassoc 'reason' argument can be either our own reason
746  * if self disconnected or a reason code from the AP.
747  */
748 static void ieee80211_set_disassoc(struct ieee80211_sub_if_data *sdata,
749                                    bool deauth, bool self_disconnected,
750                                    u16 reason)
751 {
752         struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
753         struct ieee80211_local *local = sdata->local;
754         struct sta_info *sta;
755         u32 changed = 0, config_changed = 0;
756
757         rcu_read_lock();
758
759         sta = sta_info_get(local, ifmgd->bssid);
760         if (!sta) {
761                 rcu_read_unlock();
762                 return;
763         }
764
765         if (deauth) {
766                 ifmgd->direct_probe_tries = 0;
767                 ifmgd->auth_tries = 0;
768         }
769         ifmgd->assoc_scan_tries = 0;
770         ifmgd->assoc_tries = 0;
771
772         netif_tx_stop_all_queues(sdata->dev);
773         netif_carrier_off(sdata->dev);
774
775         ieee80211_sta_tear_down_BA_sessions(sta);
776
777         if (self_disconnected) {
778                 if (deauth)
779                         ieee80211_send_deauth_disassoc(sdata,
780                                 IEEE80211_STYPE_DEAUTH, reason);
781                 else
782                         ieee80211_send_deauth_disassoc(sdata,
783                                 IEEE80211_STYPE_DISASSOC, reason);
784         }
785
786         ifmgd->flags &= ~IEEE80211_STA_ASSOCIATED;
787         changed |= ieee80211_reset_erp_info(sdata);
788
789         ieee80211_led_assoc(local, 0);
790         changed |= BSS_CHANGED_ASSOC;
791         sdata->vif.bss_conf.assoc = false;
792
793         ieee80211_sta_send_apinfo(sdata);
794
795         if (self_disconnected || reason == WLAN_REASON_DISASSOC_STA_HAS_LEFT) {
796                 ifmgd->state = IEEE80211_STA_MLME_DISABLED;
797                 ieee80211_rx_bss_remove(sdata, ifmgd->bssid,
798                                 sdata->local->hw.conf.channel->center_freq,
799                                 ifmgd->ssid, ifmgd->ssid_len);
800         }
801
802         rcu_read_unlock();
803
804         /* channel(_type) changes are handled by ieee80211_hw_config */
805         local->oper_channel_type = NL80211_CHAN_NO_HT;
806
807         local->power_constr_level = 0;
808
809         del_timer_sync(&local->dynamic_ps_timer);
810         cancel_work_sync(&local->dynamic_ps_enable_work);
811
812         if (local->hw.conf.flags & IEEE80211_CONF_PS) {
813                 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
814                 config_changed |= IEEE80211_CONF_CHANGE_PS;
815         }
816
817         ieee80211_hw_config(local, config_changed);
818         ieee80211_bss_info_change_notify(sdata, changed);
819
820         rcu_read_lock();
821
822         sta = sta_info_get(local, ifmgd->bssid);
823         if (!sta) {
824                 rcu_read_unlock();
825                 return;
826         }
827
828         sta_info_unlink(&sta);
829
830         rcu_read_unlock();
831
832         sta_info_destroy(sta);
833 }
834
835 static int ieee80211_sta_wep_configured(struct ieee80211_sub_if_data *sdata)
836 {
837         if (!sdata || !sdata->default_key ||
838             sdata->default_key->conf.alg != ALG_WEP)
839                 return 0;
840         return 1;
841 }
842
843 static int ieee80211_privacy_mismatch(struct ieee80211_sub_if_data *sdata)
844 {
845         struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
846         struct ieee80211_local *local = sdata->local;
847         struct ieee80211_bss *bss;
848         int bss_privacy;
849         int wep_privacy;
850         int privacy_invoked;
851
852         if (!ifmgd || (ifmgd->flags & (IEEE80211_STA_MIXED_CELL |
853                                        IEEE80211_STA_EXT_SME)))
854                 return 0;
855
856         bss = ieee80211_rx_bss_get(local, ifmgd->bssid,
857                                    local->hw.conf.channel->center_freq,
858                                    ifmgd->ssid, ifmgd->ssid_len);
859         if (!bss)
860                 return 0;
861
862         bss_privacy = !!(bss->cbss.capability & WLAN_CAPABILITY_PRIVACY);
863         wep_privacy = !!ieee80211_sta_wep_configured(sdata);
864         privacy_invoked = !!(ifmgd->flags & IEEE80211_STA_PRIVACY_INVOKED);
865
866         ieee80211_rx_bss_put(local, bss);
867
868         if ((bss_privacy == wep_privacy) || (bss_privacy == privacy_invoked))
869                 return 0;
870
871         return 1;
872 }
873
874 static void ieee80211_associate(struct ieee80211_sub_if_data *sdata)
875 {
876         struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
877         struct ieee80211_local *local = sdata->local;
878
879         ifmgd->assoc_tries++;
880         if (ifmgd->assoc_tries > IEEE80211_ASSOC_MAX_TRIES) {
881                 printk(KERN_DEBUG "%s: association with AP %pM"
882                        " timed out\n",
883                        sdata->dev->name, ifmgd->bssid);
884                 ifmgd->state = IEEE80211_STA_MLME_DISABLED;
885                 ieee80211_sta_send_apinfo(sdata);
886                 ieee80211_rx_bss_remove(sdata, ifmgd->bssid,
887                                 sdata->local->hw.conf.channel->center_freq,
888                                 ifmgd->ssid, ifmgd->ssid_len);
889                 /*
890                  * We might have a pending scan which had no chance to run yet
891                  * due to state == IEEE80211_STA_MLME_ASSOCIATE.
892                  * Hence, queue the STAs work again
893                  */
894                 queue_work(local->hw.workqueue, &ifmgd->work);
895                 return;
896         }
897
898         ifmgd->state = IEEE80211_STA_MLME_ASSOCIATE;
899         printk(KERN_DEBUG "%s: associate with AP %pM\n",
900                sdata->dev->name, ifmgd->bssid);
901         if (ieee80211_privacy_mismatch(sdata)) {
902                 printk(KERN_DEBUG "%s: mismatch in privacy configuration and "
903                        "mixed-cell disabled - abort association\n", sdata->dev->name);
904                 ifmgd->state = IEEE80211_STA_MLME_DISABLED;
905                 return;
906         }
907
908         ieee80211_send_assoc(sdata);
909
910         mod_timer(&ifmgd->timer, jiffies + IEEE80211_ASSOC_TIMEOUT);
911 }
912
913
914 static void ieee80211_associated(struct ieee80211_sub_if_data *sdata)
915 {
916         struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
917         struct ieee80211_local *local = sdata->local;
918         struct sta_info *sta;
919         int disassoc;
920
921         /* TODO: start monitoring current AP signal quality and number of
922          * missed beacons. Scan other channels every now and then and search
923          * for better APs. */
924         /* TODO: remove expired BSSes */
925
926         ifmgd->state = IEEE80211_STA_MLME_ASSOCIATED;
927
928         rcu_read_lock();
929
930         sta = sta_info_get(local, ifmgd->bssid);
931         if (!sta) {
932                 printk(KERN_DEBUG "%s: No STA entry for own AP %pM\n",
933                        sdata->dev->name, ifmgd->bssid);
934                 disassoc = 1;
935         } else {
936                 disassoc = 0;
937                 if (time_after(jiffies,
938                                sta->last_rx + IEEE80211_MONITORING_INTERVAL)) {
939                         if (ifmgd->flags & IEEE80211_STA_PROBEREQ_POLL) {
940                                 printk(KERN_DEBUG "%s: No ProbeResp from "
941                                        "current AP %pM - assume out of "
942                                        "range\n",
943                                        sdata->dev->name, ifmgd->bssid);
944                                 disassoc = 1;
945                         } else
946                                 ieee80211_send_probe_req(sdata, ifmgd->bssid,
947                                                          ifmgd->ssid,
948                                                          ifmgd->ssid_len,
949                                                          NULL, 0);
950                         ifmgd->flags ^= IEEE80211_STA_PROBEREQ_POLL;
951                 } else {
952                         ifmgd->flags &= ~IEEE80211_STA_PROBEREQ_POLL;
953                         if (time_after(jiffies, ifmgd->last_probe +
954                                        IEEE80211_PROBE_INTERVAL)) {
955                                 ifmgd->last_probe = jiffies;
956                                 ieee80211_send_probe_req(sdata, ifmgd->bssid,
957                                                          ifmgd->ssid,
958                                                          ifmgd->ssid_len,
959                                                          NULL, 0);
960                         }
961                 }
962         }
963
964         rcu_read_unlock();
965
966         if (disassoc)
967                 ieee80211_set_disassoc(sdata, true, true,
968                                         WLAN_REASON_PREV_AUTH_NOT_VALID);
969         else
970                 mod_timer(&ifmgd->timer, jiffies +
971                                       IEEE80211_MONITORING_INTERVAL);
972 }
973
974
975 static void ieee80211_auth_completed(struct ieee80211_sub_if_data *sdata)
976 {
977         struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
978
979         printk(KERN_DEBUG "%s: authenticated\n", sdata->dev->name);
980         ifmgd->flags |= IEEE80211_STA_AUTHENTICATED;
981         if (ifmgd->flags & IEEE80211_STA_EXT_SME) {
982                 /* Wait for SME to request association */
983                 ifmgd->state = IEEE80211_STA_MLME_DISABLED;
984         } else
985                 ieee80211_associate(sdata);
986 }
987
988
989 static void ieee80211_auth_challenge(struct ieee80211_sub_if_data *sdata,
990                                      struct ieee80211_mgmt *mgmt,
991                                      size_t len)
992 {
993         u8 *pos;
994         struct ieee802_11_elems elems;
995
996         pos = mgmt->u.auth.variable;
997         ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), &elems);
998         if (!elems.challenge)
999                 return;
1000         ieee80211_send_auth(sdata, 3, sdata->u.mgd.auth_alg,
1001                             elems.challenge - 2, elems.challenge_len + 2,
1002                             sdata->u.mgd.bssid, 1);
1003         sdata->u.mgd.auth_transaction = 4;
1004 }
1005
1006 static void ieee80211_rx_mgmt_auth(struct ieee80211_sub_if_data *sdata,
1007                                    struct ieee80211_mgmt *mgmt,
1008                                    size_t len)
1009 {
1010         struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1011         u16 auth_alg, auth_transaction, status_code;
1012
1013         if (ifmgd->state != IEEE80211_STA_MLME_AUTHENTICATE)
1014                 return;
1015
1016         if (len < 24 + 6)
1017                 return;
1018
1019         if (memcmp(ifmgd->bssid, mgmt->sa, ETH_ALEN) != 0)
1020                 return;
1021
1022         if (memcmp(ifmgd->bssid, mgmt->bssid, ETH_ALEN) != 0)
1023                 return;
1024
1025         auth_alg = le16_to_cpu(mgmt->u.auth.auth_alg);
1026         auth_transaction = le16_to_cpu(mgmt->u.auth.auth_transaction);
1027         status_code = le16_to_cpu(mgmt->u.auth.status_code);
1028
1029         if (auth_alg != ifmgd->auth_alg ||
1030             auth_transaction != ifmgd->auth_transaction)
1031                 return;
1032
1033         if (status_code != WLAN_STATUS_SUCCESS) {
1034                 if (status_code == WLAN_STATUS_NOT_SUPPORTED_AUTH_ALG) {
1035                         u8 algs[3];
1036                         const int num_algs = ARRAY_SIZE(algs);
1037                         int i, pos;
1038                         algs[0] = algs[1] = algs[2] = 0xff;
1039                         if (ifmgd->auth_algs & IEEE80211_AUTH_ALG_OPEN)
1040                                 algs[0] = WLAN_AUTH_OPEN;
1041                         if (ifmgd->auth_algs & IEEE80211_AUTH_ALG_SHARED_KEY)
1042                                 algs[1] = WLAN_AUTH_SHARED_KEY;
1043                         if (ifmgd->auth_algs & IEEE80211_AUTH_ALG_LEAP)
1044                                 algs[2] = WLAN_AUTH_LEAP;
1045                         if (ifmgd->auth_alg == WLAN_AUTH_OPEN)
1046                                 pos = 0;
1047                         else if (ifmgd->auth_alg == WLAN_AUTH_SHARED_KEY)
1048                                 pos = 1;
1049                         else
1050                                 pos = 2;
1051                         for (i = 0; i < num_algs; i++) {
1052                                 pos++;
1053                                 if (pos >= num_algs)
1054                                         pos = 0;
1055                                 if (algs[pos] == ifmgd->auth_alg ||
1056                                     algs[pos] == 0xff)
1057                                         continue;
1058                                 if (algs[pos] == WLAN_AUTH_SHARED_KEY &&
1059                                     !ieee80211_sta_wep_configured(sdata))
1060                                         continue;
1061                                 ifmgd->auth_alg = algs[pos];
1062                                 break;
1063                         }
1064                 }
1065                 return;
1066         }
1067
1068         switch (ifmgd->auth_alg) {
1069         case WLAN_AUTH_OPEN:
1070         case WLAN_AUTH_LEAP:
1071         case WLAN_AUTH_FT:
1072                 ieee80211_auth_completed(sdata);
1073                 cfg80211_send_rx_auth(sdata->dev, (u8 *) mgmt, len);
1074                 break;
1075         case WLAN_AUTH_SHARED_KEY:
1076                 if (ifmgd->auth_transaction == 4) {
1077                         ieee80211_auth_completed(sdata);
1078                         cfg80211_send_rx_auth(sdata->dev, (u8 *) mgmt, len);
1079                 } else
1080                         ieee80211_auth_challenge(sdata, mgmt, len);
1081                 break;
1082         }
1083 }
1084
1085
1086 static void ieee80211_rx_mgmt_deauth(struct ieee80211_sub_if_data *sdata,
1087                                      struct ieee80211_mgmt *mgmt,
1088                                      size_t len)
1089 {
1090         struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1091         u16 reason_code;
1092
1093         if (len < 24 + 2)
1094                 return;
1095
1096         if (memcmp(ifmgd->bssid, mgmt->sa, ETH_ALEN))
1097                 return;
1098
1099         reason_code = le16_to_cpu(mgmt->u.deauth.reason_code);
1100
1101         if (ifmgd->flags & IEEE80211_STA_AUTHENTICATED)
1102                 printk(KERN_DEBUG "%s: deauthenticated (Reason: %u)\n",
1103                                 sdata->dev->name, reason_code);
1104
1105         if (!(ifmgd->flags & IEEE80211_STA_EXT_SME) &&
1106             (ifmgd->state == IEEE80211_STA_MLME_AUTHENTICATE ||
1107              ifmgd->state == IEEE80211_STA_MLME_ASSOCIATE ||
1108              ifmgd->state == IEEE80211_STA_MLME_ASSOCIATED)) {
1109                 ifmgd->state = IEEE80211_STA_MLME_DIRECT_PROBE;
1110                 mod_timer(&ifmgd->timer, jiffies +
1111                                       IEEE80211_RETRY_AUTH_INTERVAL);
1112         }
1113
1114         ieee80211_set_disassoc(sdata, true, false, 0);
1115         ifmgd->flags &= ~IEEE80211_STA_AUTHENTICATED;
1116         cfg80211_send_rx_deauth(sdata->dev, (u8 *) mgmt, len);
1117 }
1118
1119
1120 static void ieee80211_rx_mgmt_disassoc(struct ieee80211_sub_if_data *sdata,
1121                                        struct ieee80211_mgmt *mgmt,
1122                                        size_t len)
1123 {
1124         struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1125         u16 reason_code;
1126
1127         if (len < 24 + 2)
1128                 return;
1129
1130         if (memcmp(ifmgd->bssid, mgmt->sa, ETH_ALEN))
1131                 return;
1132
1133         reason_code = le16_to_cpu(mgmt->u.disassoc.reason_code);
1134
1135         if (ifmgd->flags & IEEE80211_STA_ASSOCIATED)
1136                 printk(KERN_DEBUG "%s: disassociated (Reason: %u)\n",
1137                                 sdata->dev->name, reason_code);
1138
1139         if (!(ifmgd->flags & IEEE80211_STA_EXT_SME) &&
1140             ifmgd->state == IEEE80211_STA_MLME_ASSOCIATED) {
1141                 ifmgd->state = IEEE80211_STA_MLME_ASSOCIATE;
1142                 mod_timer(&ifmgd->timer, jiffies +
1143                                       IEEE80211_RETRY_AUTH_INTERVAL);
1144         }
1145
1146         ieee80211_set_disassoc(sdata, false, false, reason_code);
1147         cfg80211_send_rx_disassoc(sdata->dev, (u8 *) mgmt, len);
1148 }
1149
1150
1151 static void ieee80211_rx_mgmt_assoc_resp(struct ieee80211_sub_if_data *sdata,
1152                                          struct ieee80211_mgmt *mgmt,
1153                                          size_t len,
1154                                          int reassoc)
1155 {
1156         struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1157         struct ieee80211_local *local = sdata->local;
1158         struct ieee80211_supported_band *sband;
1159         struct sta_info *sta;
1160         u32 rates, basic_rates;
1161         u16 capab_info, status_code, aid;
1162         struct ieee802_11_elems elems;
1163         struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
1164         u8 *pos;
1165         u32 changed = 0;
1166         int i, j;
1167         bool have_higher_than_11mbit = false, newsta = false;
1168         u16 ap_ht_cap_flags;
1169
1170         /* AssocResp and ReassocResp have identical structure, so process both
1171          * of them in this function. */
1172
1173         if (ifmgd->state != IEEE80211_STA_MLME_ASSOCIATE)
1174                 return;
1175
1176         if (len < 24 + 6)
1177                 return;
1178
1179         if (memcmp(ifmgd->bssid, mgmt->sa, ETH_ALEN) != 0)
1180                 return;
1181
1182         capab_info = le16_to_cpu(mgmt->u.assoc_resp.capab_info);
1183         status_code = le16_to_cpu(mgmt->u.assoc_resp.status_code);
1184         aid = le16_to_cpu(mgmt->u.assoc_resp.aid);
1185
1186         printk(KERN_DEBUG "%s: RX %sssocResp from %pM (capab=0x%x "
1187                "status=%d aid=%d)\n",
1188                sdata->dev->name, reassoc ? "Rea" : "A", mgmt->sa,
1189                capab_info, status_code, (u16)(aid & ~(BIT(15) | BIT(14))));
1190
1191         pos = mgmt->u.assoc_resp.variable;
1192         ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), &elems);
1193
1194         if (status_code == WLAN_STATUS_ASSOC_REJECTED_TEMPORARILY &&
1195             elems.timeout_int && elems.timeout_int_len == 5 &&
1196             elems.timeout_int[0] == WLAN_TIMEOUT_ASSOC_COMEBACK) {
1197                 u32 tu, ms;
1198                 tu = get_unaligned_le32(elems.timeout_int + 1);
1199                 ms = tu * 1024 / 1000;
1200                 printk(KERN_DEBUG "%s: AP rejected association temporarily; "
1201                        "comeback duration %u TU (%u ms)\n",
1202                        sdata->dev->name, tu, ms);
1203                 if (ms > IEEE80211_ASSOC_TIMEOUT)
1204                         mod_timer(&ifmgd->timer,
1205                                   jiffies + msecs_to_jiffies(ms));
1206                 return;
1207         }
1208
1209         if (status_code != WLAN_STATUS_SUCCESS) {
1210                 printk(KERN_DEBUG "%s: AP denied association (code=%d)\n",
1211                        sdata->dev->name, status_code);
1212                 /* if this was a reassociation, ensure we try a "full"
1213                  * association next time. This works around some broken APs
1214                  * which do not correctly reject reassociation requests. */
1215                 ifmgd->flags &= ~IEEE80211_STA_PREV_BSSID_SET;
1216                 return;
1217         }
1218
1219         if ((aid & (BIT(15) | BIT(14))) != (BIT(15) | BIT(14)))
1220                 printk(KERN_DEBUG "%s: invalid aid value %d; bits 15:14 not "
1221                        "set\n", sdata->dev->name, aid);
1222         aid &= ~(BIT(15) | BIT(14));
1223
1224         if (!elems.supp_rates) {
1225                 printk(KERN_DEBUG "%s: no SuppRates element in AssocResp\n",
1226                        sdata->dev->name);
1227                 return;
1228         }
1229
1230         printk(KERN_DEBUG "%s: associated\n", sdata->dev->name);
1231         ifmgd->aid = aid;
1232         ifmgd->ap_capab = capab_info;
1233
1234         kfree(ifmgd->assocresp_ies);
1235         ifmgd->assocresp_ies_len = len - (pos - (u8 *) mgmt);
1236         ifmgd->assocresp_ies = kmalloc(ifmgd->assocresp_ies_len, GFP_KERNEL);
1237         if (ifmgd->assocresp_ies)
1238                 memcpy(ifmgd->assocresp_ies, pos, ifmgd->assocresp_ies_len);
1239
1240         rcu_read_lock();
1241
1242         /* Add STA entry for the AP */
1243         sta = sta_info_get(local, ifmgd->bssid);
1244         if (!sta) {
1245                 newsta = true;
1246
1247                 sta = sta_info_alloc(sdata, ifmgd->bssid, GFP_ATOMIC);
1248                 if (!sta) {
1249                         printk(KERN_DEBUG "%s: failed to alloc STA entry for"
1250                                " the AP\n", sdata->dev->name);
1251                         rcu_read_unlock();
1252                         return;
1253                 }
1254
1255                 /* update new sta with its last rx activity */
1256                 sta->last_rx = jiffies;
1257         }
1258
1259         /*
1260          * FIXME: Do we really need to update the sta_info's information here?
1261          *        We already know about the AP (we found it in our list) so it
1262          *        should already be filled with the right info, no?
1263          *        As is stands, all this is racy because typically we assume
1264          *        the information that is filled in here (except flags) doesn't
1265          *        change while a STA structure is alive. As such, it should move
1266          *        to between the sta_info_alloc() and sta_info_insert() above.
1267          */
1268
1269         set_sta_flags(sta, WLAN_STA_AUTH | WLAN_STA_ASSOC | WLAN_STA_ASSOC_AP |
1270                            WLAN_STA_AUTHORIZED);
1271
1272         rates = 0;
1273         basic_rates = 0;
1274         sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
1275
1276         for (i = 0; i < elems.supp_rates_len; i++) {
1277                 int rate = (elems.supp_rates[i] & 0x7f) * 5;
1278                 bool is_basic = !!(elems.supp_rates[i] & 0x80);
1279
1280                 if (rate > 110)
1281                         have_higher_than_11mbit = true;
1282
1283                 for (j = 0; j < sband->n_bitrates; j++) {
1284                         if (sband->bitrates[j].bitrate == rate) {
1285                                 rates |= BIT(j);
1286                                 if (is_basic)
1287                                         basic_rates |= BIT(j);
1288                                 break;
1289                         }
1290                 }
1291         }
1292
1293         for (i = 0; i < elems.ext_supp_rates_len; i++) {
1294                 int rate = (elems.ext_supp_rates[i] & 0x7f) * 5;
1295                 bool is_basic = !!(elems.supp_rates[i] & 0x80);
1296
1297                 if (rate > 110)
1298                         have_higher_than_11mbit = true;
1299
1300                 for (j = 0; j < sband->n_bitrates; j++) {
1301                         if (sband->bitrates[j].bitrate == rate) {
1302                                 rates |= BIT(j);
1303                                 if (is_basic)
1304                                         basic_rates |= BIT(j);
1305                                 break;
1306                         }
1307                 }
1308         }
1309
1310         sta->sta.supp_rates[local->hw.conf.channel->band] = rates;
1311         sdata->vif.bss_conf.basic_rates = basic_rates;
1312
1313         /* cf. IEEE 802.11 9.2.12 */
1314         if (local->hw.conf.channel->band == IEEE80211_BAND_2GHZ &&
1315             have_higher_than_11mbit)
1316                 sdata->flags |= IEEE80211_SDATA_OPERATING_GMODE;
1317         else
1318                 sdata->flags &= ~IEEE80211_SDATA_OPERATING_GMODE;
1319
1320         /* If TKIP/WEP is used, no need to parse AP's HT capabilities */
1321         if (elems.ht_cap_elem && !(ifmgd->flags & IEEE80211_STA_TKIP_WEP_USED))
1322                 ieee80211_ht_cap_ie_to_sta_ht_cap(sband,
1323                                 elems.ht_cap_elem, &sta->sta.ht_cap);
1324
1325         ap_ht_cap_flags = sta->sta.ht_cap.cap;
1326
1327         rate_control_rate_init(sta);
1328
1329         if (ifmgd->flags & IEEE80211_STA_MFP_ENABLED)
1330                 set_sta_flags(sta, WLAN_STA_MFP);
1331
1332         if (elems.wmm_param)
1333                 set_sta_flags(sta, WLAN_STA_WME);
1334
1335         if (newsta) {
1336                 int err = sta_info_insert(sta);
1337                 if (err) {
1338                         printk(KERN_DEBUG "%s: failed to insert STA entry for"
1339                                " the AP (error %d)\n", sdata->dev->name, err);
1340                         rcu_read_unlock();
1341                         return;
1342                 }
1343         }
1344
1345         rcu_read_unlock();
1346
1347         if (elems.wmm_param)
1348                 ieee80211_sta_wmm_params(local, ifmgd, elems.wmm_param,
1349                                          elems.wmm_param_len);
1350
1351         if (elems.ht_info_elem && elems.wmm_param &&
1352             (ifmgd->flags & IEEE80211_STA_WMM_ENABLED) &&
1353             !(ifmgd->flags & IEEE80211_STA_TKIP_WEP_USED))
1354                 changed |= ieee80211_enable_ht(sdata, elems.ht_info_elem,
1355                                                ap_ht_cap_flags);
1356
1357         /* set AID and assoc capability,
1358          * ieee80211_set_associated() will tell the driver */
1359         bss_conf->aid = aid;
1360         bss_conf->assoc_capability = capab_info;
1361         ieee80211_set_associated(sdata, changed);
1362
1363         ieee80211_associated(sdata);
1364         cfg80211_send_rx_assoc(sdata->dev, (u8 *) mgmt, len);
1365 }
1366
1367
1368 static void ieee80211_rx_bss_info(struct ieee80211_sub_if_data *sdata,
1369                                   struct ieee80211_mgmt *mgmt,
1370                                   size_t len,
1371                                   struct ieee80211_rx_status *rx_status,
1372                                   struct ieee802_11_elems *elems,
1373                                   bool beacon)
1374 {
1375         struct ieee80211_local *local = sdata->local;
1376         int freq;
1377         struct ieee80211_bss *bss;
1378         struct ieee80211_channel *channel;
1379
1380         if (elems->ds_params && elems->ds_params_len == 1)
1381                 freq = ieee80211_channel_to_frequency(elems->ds_params[0]);
1382         else
1383                 freq = rx_status->freq;
1384
1385         channel = ieee80211_get_channel(local->hw.wiphy, freq);
1386
1387         if (!channel || channel->flags & IEEE80211_CHAN_DISABLED)
1388                 return;
1389
1390         bss = ieee80211_bss_info_update(local, rx_status, mgmt, len, elems,
1391                                         channel, beacon);
1392         if (!bss)
1393                 return;
1394
1395         if (elems->ch_switch_elem && (elems->ch_switch_elem_len == 3) &&
1396             (memcmp(mgmt->bssid, sdata->u.mgd.bssid, ETH_ALEN) == 0)) {
1397                 struct ieee80211_channel_sw_ie *sw_elem =
1398                         (struct ieee80211_channel_sw_ie *)elems->ch_switch_elem;
1399                 ieee80211_process_chanswitch(sdata, sw_elem, bss);
1400         }
1401
1402         ieee80211_rx_bss_put(local, bss);
1403 }
1404
1405
1406 static void ieee80211_rx_mgmt_probe_resp(struct ieee80211_sub_if_data *sdata,
1407                                          struct ieee80211_mgmt *mgmt,
1408                                          size_t len,
1409                                          struct ieee80211_rx_status *rx_status)
1410 {
1411         size_t baselen;
1412         struct ieee802_11_elems elems;
1413
1414         if (memcmp(mgmt->da, sdata->dev->dev_addr, ETH_ALEN))
1415                 return; /* ignore ProbeResp to foreign address */
1416
1417         baselen = (u8 *) mgmt->u.probe_resp.variable - (u8 *) mgmt;
1418         if (baselen > len)
1419                 return;
1420
1421         ieee802_11_parse_elems(mgmt->u.probe_resp.variable, len - baselen,
1422                                 &elems);
1423
1424         ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems, false);
1425
1426         /* direct probe may be part of the association flow */
1427         if (test_and_clear_bit(IEEE80211_STA_REQ_DIRECT_PROBE,
1428             &sdata->u.mgd.request)) {
1429                 printk(KERN_DEBUG "%s direct probe responded\n",
1430                        sdata->dev->name);
1431                 ieee80211_authenticate(sdata);
1432         }
1433 }
1434
1435 static void ieee80211_rx_mgmt_beacon(struct ieee80211_sub_if_data *sdata,
1436                                      struct ieee80211_mgmt *mgmt,
1437                                      size_t len,
1438                                      struct ieee80211_rx_status *rx_status)
1439 {
1440         struct ieee80211_if_managed *ifmgd;
1441         size_t baselen;
1442         struct ieee802_11_elems elems;
1443         struct ieee80211_local *local = sdata->local;
1444         u32 changed = 0;
1445         bool erp_valid, directed_tim;
1446         u8 erp_value = 0;
1447
1448         /* Process beacon from the current BSS */
1449         baselen = (u8 *) mgmt->u.beacon.variable - (u8 *) mgmt;
1450         if (baselen > len)
1451                 return;
1452
1453         ieee802_11_parse_elems(mgmt->u.beacon.variable, len - baselen, &elems);
1454
1455         ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems, true);
1456
1457         if (sdata->vif.type != NL80211_IFTYPE_STATION)
1458                 return;
1459
1460         ifmgd = &sdata->u.mgd;
1461
1462         if (!(ifmgd->flags & IEEE80211_STA_ASSOCIATED) ||
1463             memcmp(ifmgd->bssid, mgmt->bssid, ETH_ALEN) != 0)
1464                 return;
1465
1466         if (rx_status->freq != local->hw.conf.channel->center_freq)
1467                 return;
1468
1469         ieee80211_sta_wmm_params(local, ifmgd, elems.wmm_param,
1470                                  elems.wmm_param_len);
1471
1472         if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK) {
1473                 directed_tim = ieee80211_check_tim(&elems, ifmgd->aid);
1474
1475                 if (directed_tim) {
1476                         if (local->hw.conf.dynamic_ps_timeout > 0) {
1477                                 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
1478                                 ieee80211_hw_config(local,
1479                                                     IEEE80211_CONF_CHANGE_PS);
1480                                 ieee80211_send_nullfunc(local, sdata, 0);
1481                         } else {
1482                                 local->pspolling = true;
1483
1484                                 /*
1485                                  * Here is assumed that the driver will be
1486                                  * able to send ps-poll frame and receive a
1487                                  * response even though power save mode is
1488                                  * enabled, but some drivers might require
1489                                  * to disable power save here. This needs
1490                                  * to be investigated.
1491                                  */
1492                                 ieee80211_send_pspoll(local, sdata);
1493                         }
1494                 }
1495         }
1496
1497         if (elems.erp_info && elems.erp_info_len >= 1) {
1498                 erp_valid = true;
1499                 erp_value = elems.erp_info[0];
1500         } else {
1501                 erp_valid = false;
1502         }
1503         changed |= ieee80211_handle_bss_capability(sdata,
1504                         le16_to_cpu(mgmt->u.beacon.capab_info),
1505                         erp_valid, erp_value);
1506
1507
1508         if (elems.ht_cap_elem && elems.ht_info_elem && elems.wmm_param &&
1509             !(ifmgd->flags & IEEE80211_STA_TKIP_WEP_USED)) {
1510                 struct sta_info *sta;
1511                 struct ieee80211_supported_band *sband;
1512                 u16 ap_ht_cap_flags;
1513
1514                 rcu_read_lock();
1515
1516                 sta = sta_info_get(local, ifmgd->bssid);
1517                 if (!sta) {
1518                         rcu_read_unlock();
1519                         return;
1520                 }
1521
1522                 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
1523
1524                 ieee80211_ht_cap_ie_to_sta_ht_cap(sband,
1525                                 elems.ht_cap_elem, &sta->sta.ht_cap);
1526
1527                 ap_ht_cap_flags = sta->sta.ht_cap.cap;
1528
1529                 rcu_read_unlock();
1530
1531                 changed |= ieee80211_enable_ht(sdata, elems.ht_info_elem,
1532                                                ap_ht_cap_flags);
1533         }
1534
1535         if (elems.country_elem) {
1536                 /* Note we are only reviewing this on beacons
1537                  * for the BSSID we are associated to */
1538                 regulatory_hint_11d(local->hw.wiphy,
1539                         elems.country_elem, elems.country_elem_len);
1540
1541                 /* TODO: IBSS also needs this */
1542                 if (elems.pwr_constr_elem)
1543                         ieee80211_handle_pwr_constr(sdata,
1544                                 le16_to_cpu(mgmt->u.probe_resp.capab_info),
1545                                 elems.pwr_constr_elem,
1546                                 elems.pwr_constr_elem_len);
1547         }
1548
1549         ieee80211_bss_info_change_notify(sdata, changed);
1550 }
1551
1552 ieee80211_rx_result ieee80211_sta_rx_mgmt(struct ieee80211_sub_if_data *sdata,
1553                                           struct sk_buff *skb,
1554                                           struct ieee80211_rx_status *rx_status)
1555 {
1556         struct ieee80211_local *local = sdata->local;
1557         struct ieee80211_mgmt *mgmt;
1558         u16 fc;
1559
1560         if (skb->len < 24)
1561                 return RX_DROP_MONITOR;
1562
1563         mgmt = (struct ieee80211_mgmt *) skb->data;
1564         fc = le16_to_cpu(mgmt->frame_control);
1565
1566         switch (fc & IEEE80211_FCTL_STYPE) {
1567         case IEEE80211_STYPE_PROBE_REQ:
1568         case IEEE80211_STYPE_PROBE_RESP:
1569         case IEEE80211_STYPE_BEACON:
1570                 memcpy(skb->cb, rx_status, sizeof(*rx_status));
1571         case IEEE80211_STYPE_AUTH:
1572         case IEEE80211_STYPE_ASSOC_RESP:
1573         case IEEE80211_STYPE_REASSOC_RESP:
1574         case IEEE80211_STYPE_DEAUTH:
1575         case IEEE80211_STYPE_DISASSOC:
1576                 skb_queue_tail(&sdata->u.mgd.skb_queue, skb);
1577                 queue_work(local->hw.workqueue, &sdata->u.mgd.work);
1578                 return RX_QUEUED;
1579         }
1580
1581         return RX_DROP_MONITOR;
1582 }
1583
1584 static void ieee80211_sta_rx_queued_mgmt(struct ieee80211_sub_if_data *sdata,
1585                                          struct sk_buff *skb)
1586 {
1587         struct ieee80211_rx_status *rx_status;
1588         struct ieee80211_mgmt *mgmt;
1589         u16 fc;
1590
1591         rx_status = (struct ieee80211_rx_status *) skb->cb;
1592         mgmt = (struct ieee80211_mgmt *) skb->data;
1593         fc = le16_to_cpu(mgmt->frame_control);
1594
1595         switch (fc & IEEE80211_FCTL_STYPE) {
1596         case IEEE80211_STYPE_PROBE_RESP:
1597                 ieee80211_rx_mgmt_probe_resp(sdata, mgmt, skb->len,
1598                                              rx_status);
1599                 break;
1600         case IEEE80211_STYPE_BEACON:
1601                 ieee80211_rx_mgmt_beacon(sdata, mgmt, skb->len,
1602                                          rx_status);
1603                 break;
1604         case IEEE80211_STYPE_AUTH:
1605                 ieee80211_rx_mgmt_auth(sdata, mgmt, skb->len);
1606                 break;
1607         case IEEE80211_STYPE_ASSOC_RESP:
1608                 ieee80211_rx_mgmt_assoc_resp(sdata, mgmt, skb->len, 0);
1609                 break;
1610         case IEEE80211_STYPE_REASSOC_RESP:
1611                 ieee80211_rx_mgmt_assoc_resp(sdata, mgmt, skb->len, 1);
1612                 break;
1613         case IEEE80211_STYPE_DEAUTH:
1614                 ieee80211_rx_mgmt_deauth(sdata, mgmt, skb->len);
1615                 break;
1616         case IEEE80211_STYPE_DISASSOC:
1617                 ieee80211_rx_mgmt_disassoc(sdata, mgmt, skb->len);
1618                 break;
1619         }
1620
1621         kfree_skb(skb);
1622 }
1623
1624 static void ieee80211_sta_timer(unsigned long data)
1625 {
1626         struct ieee80211_sub_if_data *sdata =
1627                 (struct ieee80211_sub_if_data *) data;
1628         struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1629         struct ieee80211_local *local = sdata->local;
1630
1631         set_bit(IEEE80211_STA_REQ_RUN, &ifmgd->request);
1632         queue_work(local->hw.workqueue, &ifmgd->work);
1633 }
1634
1635 static void ieee80211_sta_reset_auth(struct ieee80211_sub_if_data *sdata)
1636 {
1637         struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1638         struct ieee80211_local *local = sdata->local;
1639
1640         if (local->ops->reset_tsf) {
1641                 /* Reset own TSF to allow time synchronization work. */
1642                 local->ops->reset_tsf(local_to_hw(local));
1643         }
1644
1645         ifmgd->wmm_last_param_set = -1; /* allow any WMM update */
1646
1647
1648         if (ifmgd->auth_algs & IEEE80211_AUTH_ALG_OPEN)
1649                 ifmgd->auth_alg = WLAN_AUTH_OPEN;
1650         else if (ifmgd->auth_algs & IEEE80211_AUTH_ALG_SHARED_KEY)
1651                 ifmgd->auth_alg = WLAN_AUTH_SHARED_KEY;
1652         else if (ifmgd->auth_algs & IEEE80211_AUTH_ALG_LEAP)
1653                 ifmgd->auth_alg = WLAN_AUTH_LEAP;
1654         else if (ifmgd->auth_algs & IEEE80211_AUTH_ALG_FT)
1655                 ifmgd->auth_alg = WLAN_AUTH_FT;
1656         else
1657                 ifmgd->auth_alg = WLAN_AUTH_OPEN;
1658         ifmgd->auth_transaction = -1;
1659         ifmgd->flags &= ~IEEE80211_STA_ASSOCIATED;
1660         ifmgd->assoc_scan_tries = 0;
1661         ifmgd->direct_probe_tries = 0;
1662         ifmgd->auth_tries = 0;
1663         ifmgd->assoc_tries = 0;
1664         netif_tx_stop_all_queues(sdata->dev);
1665         netif_carrier_off(sdata->dev);
1666 }
1667
1668 static int ieee80211_sta_config_auth(struct ieee80211_sub_if_data *sdata)
1669 {
1670         struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1671         struct ieee80211_local *local = sdata->local;
1672         struct ieee80211_bss *bss;
1673         u8 *bssid = ifmgd->bssid, *ssid = ifmgd->ssid;
1674         u8 ssid_len = ifmgd->ssid_len;
1675         u16 capa_mask = WLAN_CAPABILITY_ESS;
1676         u16 capa_val = WLAN_CAPABILITY_ESS;
1677         struct ieee80211_channel *chan = local->oper_channel;
1678
1679         if (!(ifmgd->flags & IEEE80211_STA_EXT_SME) &&
1680             ifmgd->flags & (IEEE80211_STA_AUTO_SSID_SEL |
1681                             IEEE80211_STA_AUTO_BSSID_SEL |
1682                             IEEE80211_STA_AUTO_CHANNEL_SEL)) {
1683                 capa_mask |= WLAN_CAPABILITY_PRIVACY;
1684                 if (sdata->default_key)
1685                         capa_val |= WLAN_CAPABILITY_PRIVACY;
1686         }
1687
1688         if (ifmgd->flags & IEEE80211_STA_AUTO_CHANNEL_SEL)
1689                 chan = NULL;
1690
1691         if (ifmgd->flags & IEEE80211_STA_AUTO_BSSID_SEL)
1692                 bssid = NULL;
1693
1694         if (ifmgd->flags & IEEE80211_STA_AUTO_SSID_SEL) {
1695                 ssid = NULL;
1696                 ssid_len = 0;
1697         }
1698
1699         bss = (void *)cfg80211_get_bss(local->hw.wiphy, chan,
1700                                        bssid, ssid, ssid_len,
1701                                        capa_mask, capa_val);
1702
1703         if (bss) {
1704                 ieee80211_set_freq(sdata, bss->cbss.channel->center_freq);
1705                 if (!(ifmgd->flags & IEEE80211_STA_SSID_SET))
1706                         ieee80211_sta_set_ssid(sdata, bss->ssid,
1707                                                bss->ssid_len);
1708                 ieee80211_sta_set_bssid(sdata, bss->cbss.bssid);
1709                 ieee80211_sta_def_wmm_params(sdata, bss->supp_rates_len,
1710                                                     bss->supp_rates);
1711                 if (sdata->u.mgd.mfp == IEEE80211_MFP_REQUIRED)
1712                         sdata->u.mgd.flags |= IEEE80211_STA_MFP_ENABLED;
1713                 else
1714                         sdata->u.mgd.flags &= ~IEEE80211_STA_MFP_ENABLED;
1715
1716                 /* Send out direct probe if no probe resp was received or
1717                  * the one we have is outdated
1718                  */
1719                 if (!bss->last_probe_resp ||
1720                     time_after(jiffies, bss->last_probe_resp
1721                                         + IEEE80211_SCAN_RESULT_EXPIRE))
1722                         ifmgd->state = IEEE80211_STA_MLME_DIRECT_PROBE;
1723                 else
1724                         ifmgd->state = IEEE80211_STA_MLME_AUTHENTICATE;
1725
1726                 ieee80211_rx_bss_put(local, bss);
1727                 ieee80211_sta_reset_auth(sdata);
1728                 return 0;
1729         } else {
1730                 if (ifmgd->assoc_scan_tries < IEEE80211_ASSOC_SCANS_MAX_TRIES) {
1731                         ifmgd->assoc_scan_tries++;
1732                         /* XXX maybe racy? */
1733                         if (local->scan_req)
1734                                 return -1;
1735                         memcpy(local->int_scan_req.ssids[0].ssid,
1736                                ifmgd->ssid, IEEE80211_MAX_SSID_LEN);
1737                         if (ifmgd->flags & IEEE80211_STA_AUTO_SSID_SEL)
1738                                 local->int_scan_req.ssids[0].ssid_len = 0;
1739                         else
1740                                 local->int_scan_req.ssids[0].ssid_len = ifmgd->ssid_len;
1741
1742                         if (ieee80211_start_scan(sdata, &local->int_scan_req))
1743                                 ieee80211_scan_failed(local);
1744
1745                         ifmgd->state = IEEE80211_STA_MLME_AUTHENTICATE;
1746                         set_bit(IEEE80211_STA_REQ_AUTH, &ifmgd->request);
1747                 } else {
1748                         ifmgd->assoc_scan_tries = 0;
1749                         ifmgd->state = IEEE80211_STA_MLME_DISABLED;
1750                 }
1751         }
1752         return -1;
1753 }
1754
1755
1756 static void ieee80211_sta_work(struct work_struct *work)
1757 {
1758         struct ieee80211_sub_if_data *sdata =
1759                 container_of(work, struct ieee80211_sub_if_data, u.mgd.work);
1760         struct ieee80211_local *local = sdata->local;
1761         struct ieee80211_if_managed *ifmgd;
1762         struct sk_buff *skb;
1763
1764         if (!netif_running(sdata->dev))
1765                 return;
1766
1767         if (local->sw_scanning || local->hw_scanning)
1768                 return;
1769
1770         if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION))
1771                 return;
1772         ifmgd = &sdata->u.mgd;
1773
1774         while ((skb = skb_dequeue(&ifmgd->skb_queue)))
1775                 ieee80211_sta_rx_queued_mgmt(sdata, skb);
1776
1777         if (ifmgd->state != IEEE80211_STA_MLME_DIRECT_PROBE &&
1778             ifmgd->state != IEEE80211_STA_MLME_AUTHENTICATE &&
1779             ifmgd->state != IEEE80211_STA_MLME_ASSOCIATE &&
1780             test_and_clear_bit(IEEE80211_STA_REQ_SCAN, &ifmgd->request)) {
1781                 /*
1782                  * The call to ieee80211_start_scan can fail but ieee80211_request_scan
1783                  * (which queued ieee80211_sta_work) did not return an error. Thus, call
1784                  * ieee80211_scan_failed here if ieee80211_start_scan fails in order to
1785                  * notify the scan requester.
1786                  */
1787                 if (ieee80211_start_scan(sdata, local->scan_req))
1788                         ieee80211_scan_failed(local);
1789                 return;
1790         }
1791
1792         if (test_and_clear_bit(IEEE80211_STA_REQ_AUTH, &ifmgd->request)) {
1793                 if (ieee80211_sta_config_auth(sdata))
1794                         return;
1795                 clear_bit(IEEE80211_STA_REQ_RUN, &ifmgd->request);
1796         } else if (!test_and_clear_bit(IEEE80211_STA_REQ_RUN, &ifmgd->request))
1797                 return;
1798
1799         switch (ifmgd->state) {
1800         case IEEE80211_STA_MLME_DISABLED:
1801                 break;
1802         case IEEE80211_STA_MLME_DIRECT_PROBE:
1803                 ieee80211_direct_probe(sdata);
1804                 break;
1805         case IEEE80211_STA_MLME_AUTHENTICATE:
1806                 ieee80211_authenticate(sdata);
1807                 break;
1808         case IEEE80211_STA_MLME_ASSOCIATE:
1809                 ieee80211_associate(sdata);
1810                 break;
1811         case IEEE80211_STA_MLME_ASSOCIATED:
1812                 ieee80211_associated(sdata);
1813                 break;
1814         default:
1815                 WARN_ON(1);
1816                 break;
1817         }
1818
1819         if (ieee80211_privacy_mismatch(sdata)) {
1820                 printk(KERN_DEBUG "%s: privacy configuration mismatch and "
1821                        "mixed-cell disabled - disassociate\n", sdata->dev->name);
1822
1823                 ieee80211_set_disassoc(sdata, false, true,
1824                                         WLAN_REASON_UNSPECIFIED);
1825         }
1826 }
1827
1828 static void ieee80211_restart_sta_timer(struct ieee80211_sub_if_data *sdata)
1829 {
1830         if (sdata->vif.type == NL80211_IFTYPE_STATION)
1831                 queue_work(sdata->local->hw.workqueue,
1832                            &sdata->u.mgd.work);
1833 }
1834
1835 /* interface setup */
1836 void ieee80211_sta_setup_sdata(struct ieee80211_sub_if_data *sdata)
1837 {
1838         struct ieee80211_if_managed *ifmgd;
1839
1840         ifmgd = &sdata->u.mgd;
1841         INIT_WORK(&ifmgd->work, ieee80211_sta_work);
1842         INIT_WORK(&ifmgd->chswitch_work, ieee80211_chswitch_work);
1843         setup_timer(&ifmgd->timer, ieee80211_sta_timer,
1844                     (unsigned long) sdata);
1845         setup_timer(&ifmgd->chswitch_timer, ieee80211_chswitch_timer,
1846                     (unsigned long) sdata);
1847         skb_queue_head_init(&ifmgd->skb_queue);
1848
1849         ifmgd->capab = WLAN_CAPABILITY_ESS;
1850         ifmgd->auth_algs = IEEE80211_AUTH_ALG_OPEN |
1851                 IEEE80211_AUTH_ALG_SHARED_KEY;
1852         ifmgd->flags |= IEEE80211_STA_CREATE_IBSS |
1853                 IEEE80211_STA_AUTO_BSSID_SEL |
1854                 IEEE80211_STA_AUTO_CHANNEL_SEL;
1855         if (sdata->local->hw.queues >= 4)
1856                 ifmgd->flags |= IEEE80211_STA_WMM_ENABLED;
1857 }
1858
1859 /* configuration hooks */
1860 void ieee80211_sta_req_auth(struct ieee80211_sub_if_data *sdata)
1861 {
1862         struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1863         struct ieee80211_local *local = sdata->local;
1864
1865         if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION))
1866                 return;
1867
1868         if ((ifmgd->flags & (IEEE80211_STA_BSSID_SET |
1869                              IEEE80211_STA_AUTO_BSSID_SEL)) &&
1870             (ifmgd->flags & (IEEE80211_STA_SSID_SET |
1871                              IEEE80211_STA_AUTO_SSID_SEL))) {
1872
1873                 if (ifmgd->state == IEEE80211_STA_MLME_ASSOCIATED)
1874                         ieee80211_set_disassoc(sdata, true, true,
1875                                                WLAN_REASON_DEAUTH_LEAVING);
1876
1877                 if (!(ifmgd->flags & IEEE80211_STA_EXT_SME) ||
1878                     ifmgd->state != IEEE80211_STA_MLME_ASSOCIATE)
1879                         set_bit(IEEE80211_STA_REQ_AUTH, &ifmgd->request);
1880                 else if (ifmgd->flags & IEEE80211_STA_EXT_SME)
1881                         set_bit(IEEE80211_STA_REQ_RUN, &ifmgd->request);
1882                 queue_work(local->hw.workqueue, &ifmgd->work);
1883         }
1884 }
1885
1886 int ieee80211_sta_commit(struct ieee80211_sub_if_data *sdata)
1887 {
1888         struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1889
1890         if (ifmgd->ssid_len)
1891                 ifmgd->flags |= IEEE80211_STA_SSID_SET;
1892         else
1893                 ifmgd->flags &= ~IEEE80211_STA_SSID_SET;
1894
1895         return 0;
1896 }
1897
1898 int ieee80211_sta_set_ssid(struct ieee80211_sub_if_data *sdata, char *ssid, size_t len)
1899 {
1900         struct ieee80211_if_managed *ifmgd;
1901
1902         if (len > IEEE80211_MAX_SSID_LEN)
1903                 return -EINVAL;
1904
1905         ifmgd = &sdata->u.mgd;
1906
1907         if (ifmgd->ssid_len != len || memcmp(ifmgd->ssid, ssid, len) != 0) {
1908                 /*
1909                  * Do not use reassociation if SSID is changed (different ESS).
1910                  */
1911                 ifmgd->flags &= ~IEEE80211_STA_PREV_BSSID_SET;
1912                 memset(ifmgd->ssid, 0, sizeof(ifmgd->ssid));
1913                 memcpy(ifmgd->ssid, ssid, len);
1914                 ifmgd->ssid_len = len;
1915         }
1916
1917         return ieee80211_sta_commit(sdata);
1918 }
1919
1920 int ieee80211_sta_get_ssid(struct ieee80211_sub_if_data *sdata, char *ssid, size_t *len)
1921 {
1922         struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1923         memcpy(ssid, ifmgd->ssid, ifmgd->ssid_len);
1924         *len = ifmgd->ssid_len;
1925         return 0;
1926 }
1927
1928 int ieee80211_sta_set_bssid(struct ieee80211_sub_if_data *sdata, u8 *bssid)
1929 {
1930         struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1931
1932         if (is_valid_ether_addr(bssid)) {
1933                 memcpy(ifmgd->bssid, bssid, ETH_ALEN);
1934                 ifmgd->flags |= IEEE80211_STA_BSSID_SET;
1935         } else {
1936                 memset(ifmgd->bssid, 0, ETH_ALEN);
1937                 ifmgd->flags &= ~IEEE80211_STA_BSSID_SET;
1938         }
1939
1940         if (netif_running(sdata->dev)) {
1941                 if (ieee80211_if_config(sdata, IEEE80211_IFCC_BSSID)) {
1942                         printk(KERN_DEBUG "%s: Failed to config new BSSID to "
1943                                "the low-level driver\n", sdata->dev->name);
1944                 }
1945         }
1946
1947         return ieee80211_sta_commit(sdata);
1948 }
1949
1950 int ieee80211_sta_set_extra_ie(struct ieee80211_sub_if_data *sdata,
1951                                const char *ie, size_t len)
1952 {
1953         struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1954
1955         kfree(ifmgd->extra_ie);
1956         if (len == 0) {
1957                 ifmgd->extra_ie = NULL;
1958                 ifmgd->extra_ie_len = 0;
1959                 return 0;
1960         }
1961         ifmgd->extra_ie = kmalloc(len, GFP_KERNEL);
1962         if (!ifmgd->extra_ie) {
1963                 ifmgd->extra_ie_len = 0;
1964                 return -ENOMEM;
1965         }
1966         memcpy(ifmgd->extra_ie, ie, len);
1967         ifmgd->extra_ie_len = len;
1968         return 0;
1969 }
1970
1971 int ieee80211_sta_deauthenticate(struct ieee80211_sub_if_data *sdata, u16 reason)
1972 {
1973         printk(KERN_DEBUG "%s: deauthenticating by local choice (reason=%d)\n",
1974                sdata->dev->name, reason);
1975
1976         if (sdata->vif.type != NL80211_IFTYPE_STATION)
1977                 return -EINVAL;
1978
1979         ieee80211_set_disassoc(sdata, true, true, reason);
1980         return 0;
1981 }
1982
1983 int ieee80211_sta_disassociate(struct ieee80211_sub_if_data *sdata, u16 reason)
1984 {
1985         struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1986
1987         printk(KERN_DEBUG "%s: disassociating by local choice (reason=%d)\n",
1988                sdata->dev->name, reason);
1989
1990         if (sdata->vif.type != NL80211_IFTYPE_STATION)
1991                 return -EINVAL;
1992
1993         if (!(ifmgd->flags & IEEE80211_STA_ASSOCIATED))
1994                 return -ENOLINK;
1995
1996         ieee80211_set_disassoc(sdata, false, true, reason);
1997         return 0;
1998 }
1999
2000 /* scan finished notification */
2001 void ieee80211_mlme_notify_scan_completed(struct ieee80211_local *local)
2002 {
2003         struct ieee80211_sub_if_data *sdata = local->scan_sdata;
2004
2005         /* Restart STA timers */
2006         rcu_read_lock();
2007         list_for_each_entry_rcu(sdata, &local->interfaces, list)
2008                 ieee80211_restart_sta_timer(sdata);
2009         rcu_read_unlock();
2010 }
2011
2012 void ieee80211_dynamic_ps_disable_work(struct work_struct *work)
2013 {
2014         struct ieee80211_local *local =
2015                 container_of(work, struct ieee80211_local,
2016                              dynamic_ps_disable_work);
2017
2018         if (local->hw.conf.flags & IEEE80211_CONF_PS) {
2019                 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
2020                 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
2021         }
2022
2023         ieee80211_wake_queues_by_reason(&local->hw,
2024                                         IEEE80211_QUEUE_STOP_REASON_PS);
2025 }
2026
2027 void ieee80211_dynamic_ps_enable_work(struct work_struct *work)
2028 {
2029         struct ieee80211_local *local =
2030                 container_of(work, struct ieee80211_local,
2031                              dynamic_ps_enable_work);
2032         struct ieee80211_sub_if_data *sdata = local->scan_sdata;
2033
2034         if (local->hw.conf.flags & IEEE80211_CONF_PS)
2035                 return;
2036
2037         if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)
2038                 ieee80211_send_nullfunc(local, sdata, 1);
2039
2040         local->hw.conf.flags |= IEEE80211_CONF_PS;
2041         ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
2042 }
2043
2044 void ieee80211_dynamic_ps_timer(unsigned long data)
2045 {
2046         struct ieee80211_local *local = (void *) data;
2047
2048         queue_work(local->hw.workqueue, &local->dynamic_ps_enable_work);
2049 }
2050
2051 void ieee80211_send_nullfunc(struct ieee80211_local *local,
2052                              struct ieee80211_sub_if_data *sdata,
2053                              int powersave)
2054 {
2055         struct sk_buff *skb;
2056         struct ieee80211_hdr *nullfunc;
2057         __le16 fc;
2058
2059         if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION))
2060                 return;
2061
2062         skb = dev_alloc_skb(local->hw.extra_tx_headroom + 24);
2063         if (!skb) {
2064                 printk(KERN_DEBUG "%s: failed to allocate buffer for nullfunc "
2065                        "frame\n", sdata->dev->name);
2066                 return;
2067         }
2068         skb_reserve(skb, local->hw.extra_tx_headroom);
2069
2070         nullfunc = (struct ieee80211_hdr *) skb_put(skb, 24);
2071         memset(nullfunc, 0, 24);
2072         fc = cpu_to_le16(IEEE80211_FTYPE_DATA | IEEE80211_STYPE_NULLFUNC |
2073                          IEEE80211_FCTL_TODS);
2074         if (powersave)
2075                 fc |= cpu_to_le16(IEEE80211_FCTL_PM);
2076         nullfunc->frame_control = fc;
2077         memcpy(nullfunc->addr1, sdata->u.mgd.bssid, ETH_ALEN);
2078         memcpy(nullfunc->addr2, sdata->dev->dev_addr, ETH_ALEN);
2079         memcpy(nullfunc->addr3, sdata->u.mgd.bssid, ETH_ALEN);
2080
2081         ieee80211_tx_skb(sdata, skb, 0);
2082 }