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>
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.
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>
23 #include "ieee80211_i.h"
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)
37 static int ecw2cw(int ecw)
39 return (1 << ecw) - 1;
42 static u8 *ieee80211_bss_get_ie(struct ieee80211_bss *bss, u8 ie)
46 pos = bss->cbss.information_elements;
49 end = pos + bss->cbss.len_information_elements;
51 while (pos + 1 < end) {
52 if (pos + 2 + pos[1] > end)
62 static int ieee80211_compatible_rates(struct ieee80211_bss *bss,
63 struct ieee80211_supported_band *sband,
69 for (i = 0; i < bss->supp_rates_len; i++) {
70 int rate = (bss->supp_rates[i] & 0x7F) * 5;
72 for (j = 0; j < sband->n_bitrates; j++)
73 if (sband->bitrates[j].bitrate == rate) {
83 /* frame sending functions */
85 static void ieee80211_send_assoc(struct ieee80211_sub_if_data *sdata)
87 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
88 struct ieee80211_local *local = sdata->local;
90 struct ieee80211_mgmt *mgmt;
91 u8 *pos, *ies, *ht_ie;
92 int i, len, count, rates_len, supp_rates_len;
94 struct ieee80211_bss *bss;
96 struct ieee80211_supported_band *sband;
99 skb = dev_alloc_skb(local->hw.extra_tx_headroom +
100 sizeof(*mgmt) + 200 + ifmgd->extra_ie_len +
103 printk(KERN_DEBUG "%s: failed to allocate buffer for assoc "
104 "frame\n", sdata->dev->name);
107 skb_reserve(skb, local->hw.extra_tx_headroom);
109 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
111 capab = ifmgd->capab;
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;
120 bss = ieee80211_rx_bss_get(local, ifmgd->bssid,
121 local->hw.conf.channel->center_freq,
122 ifmgd->ssid, ifmgd->ssid_len);
124 if (bss->cbss.capability & WLAN_CAPABILITY_PRIVACY)
125 capab |= WLAN_CAPABILITY_PRIVACY;
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
133 rates_len = ieee80211_compatible_rates(bss, sband, &rates);
135 if ((bss->cbss.capability & WLAN_CAPABILITY_SPECTRUM_MGMT) &&
136 (local->hw.flags & IEEE80211_HW_SPECTRUM_MGMT))
137 capab |= WLAN_CAPABILITY_SPECTRUM_MGMT;
139 ieee80211_rx_bss_put(local, bss);
142 rates_len = sband->n_bitrates;
145 mgmt = (struct ieee80211_mgmt *) skb_put(skb, 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);
151 if (ifmgd->flags & IEEE80211_STA_PREV_BSSID_SET) {
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,
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);
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);
175 /* add all rates which were marked to be used above */
176 supp_rates_len = rates_len;
177 if (supp_rates_len > 8)
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;
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);
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;
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);
208 if (capab & WLAN_CAPABILITY_SPECTRUM_MGMT) {
209 /* 1. power capabilities */
210 pos = skb_put(skb, 4);
211 *pos++ = WLAN_EID_PWR_CAPABILITY;
213 *pos++ = 0; /* min tx power */
214 *pos++ = local->hw.conf.channel->max_power; /* max tx power */
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*/
228 if (ifmgd->extra_ie) {
229 pos = skb_put(skb, ifmgd->extra_ie_len);
230 memcpy(pos, ifmgd->extra_ie, ifmgd->extra_ie_len);
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 */
240 *pos++ = 2; /* WME */
241 *pos++ = 0; /* WME info */
242 *pos++ = 1; /* WME ver */
246 /* wmm support is a must to HT */
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.
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;
262 u32 flags = local->hw.conf.channel->flags;
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;
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;
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));
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));
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);
298 ieee80211_tx_skb(sdata, skb, 0);
302 static void ieee80211_send_deauth_disassoc(struct ieee80211_sub_if_data *sdata,
303 u16 stype, u16 reason)
305 struct ieee80211_local *local = sdata->local;
306 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
308 struct ieee80211_mgmt *mgmt;
310 skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*mgmt));
312 printk(KERN_DEBUG "%s: failed to allocate buffer for "
313 "deauth/disassoc frame\n", sdata->dev->name);
316 skb_reserve(skb, local->hw.extra_tx_headroom);
318 mgmt = (struct ieee80211_mgmt *) skb_put(skb, 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);
325 /* u.deauth.reason_code == u.disassoc.reason_code */
326 mgmt->u.deauth.reason_code = cpu_to_le16(reason);
328 ieee80211_tx_skb(sdata, skb, ifmgd->flags & IEEE80211_STA_MFP_ENABLED);
331 void ieee80211_send_pspoll(struct ieee80211_local *local,
332 struct ieee80211_sub_if_data *sdata)
334 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
335 struct ieee80211_pspoll *pspoll;
339 skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*pspoll));
341 printk(KERN_DEBUG "%s: failed to allocate buffer for "
342 "pspoll frame\n", sdata->dev->name);
345 skb_reserve(skb, local->hw.extra_tx_headroom);
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);
353 /* aid in PS-Poll has its two MSBs each set to 1 */
354 pspoll->aid |= cpu_to_le16(1 << 15 | 1 << 14);
356 memcpy(pspoll->bssid, ifmgd->bssid, ETH_ALEN);
357 memcpy(pspoll->ta, sdata->dev->dev_addr, ETH_ALEN);
359 ieee80211_tx_skb(sdata, skb, 0);
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)
367 struct ieee80211_tx_queue_params params;
372 if (!(ifmgd->flags & IEEE80211_STA_WMM_ENABLED))
378 if (wmm_param_len < 8 || wmm_param[5] /* version */ != 1)
380 count = wmm_param[6] & 0x0f;
381 if (count == ifmgd->wmm_last_param_set)
383 ifmgd->wmm_last_param_set = count;
386 left = wmm_param_len - 8;
388 memset(¶ms, 0, sizeof(params));
391 for (; left >= 4; left -= 4, pos += 4) {
392 int aci = (pos[0] >> 5) & 0x03;
393 int acm = (pos[0] >> 4) & 0x01;
400 local->wmm_acm |= BIT(1) | BIT(2); /* BK/- */
405 local->wmm_acm |= BIT(4) | BIT(5); /* CL/VI */
410 local->wmm_acm |= BIT(6) | BIT(7); /* VO/NC */
416 local->wmm_acm |= BIT(0) | BIT(3); /* BE/EE */
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);
430 if (local->ops->conf_tx &&
431 local->ops->conf_tx(local_to_hw(local), queue, ¶ms)) {
432 printk(KERN_DEBUG "%s: failed to set TX queue "
433 "parameters for queue %d\n", local->mdev->name, queue);
438 static bool ieee80211_check_tim(struct ieee802_11_elems *elems, u16 aid)
441 u8 index, indexn1, indexn2;
442 struct ieee80211_tim_ie *tim = (struct ieee80211_tim_ie *) elems->tim;
446 mask = 1 << (aid & 7);
448 indexn1 = tim->bitmap_ctrl & 0xfe;
449 indexn2 = elems->tim_len + indexn1 - 4;
451 if (index < indexn1 || index > indexn2)
456 return !!(tim->virtual_map[index] & mask);
459 static u32 ieee80211_handle_bss_capability(struct ieee80211_sub_if_data *sdata,
460 u16 capab, bool erp_valid, u8 erp)
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;
468 bool use_short_preamble;
472 use_protection = (erp & WLAN_ERP_USE_PROTECTION) != 0;
473 use_short_preamble = (erp & WLAN_ERP_BARKER_PREAMBLE) == 0;
475 use_protection = false;
476 use_short_preamble = !!(capab & WLAN_CAPABILITY_SHORT_PREAMBLE);
479 use_short_slot = !!(capab & WLAN_CAPABILITY_SHORT_SLOT_TIME);
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",
486 use_protection ? "enabled" : "disabled",
490 bss_conf->use_cts_prot = use_protection;
491 changed |= BSS_CHANGED_ERP_CTS_PROT;
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"
500 use_short_preamble ? "short" : "long",
504 bss_conf->use_short_preamble = use_short_preamble;
505 changed |= BSS_CHANGED_ERP_PREAMBLE;
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"
514 use_short_slot ? "short" : "long",
518 bss_conf->use_short_slot = use_short_slot;
519 changed |= BSS_CHANGED_ERP_SLOT;
525 static void ieee80211_sta_send_apinfo(struct ieee80211_sub_if_data *sdata)
527 union iwreq_data wrqu;
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);
536 static void ieee80211_sta_send_associnfo(struct ieee80211_sub_if_data *sdata)
538 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
542 union iwreq_data wrqu;
544 if (!ifmgd->assocreq_ies && !ifmgd->assocresp_ies)
547 buf = kmalloc(50 + 2 * (ifmgd->assocreq_ies_len +
548 ifmgd->assocresp_ies_len), GFP_KERNEL);
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]);
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]);
569 len += sprintf(buf + len, ")");
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]);
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);
589 static void ieee80211_set_associated(struct ieee80211_sub_if_data *sdata,
590 u32 bss_info_changed)
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;
596 struct ieee80211_bss *bss;
598 bss_info_changed |= BSS_CHANGED_ASSOC;
599 ifmgd->flags |= IEEE80211_STA_ASSOCIATED;
601 bss = ieee80211_rx_bss_get(local, ifmgd->bssid,
602 conf->channel->center_freq,
603 ifmgd->ssid, ifmgd->ssid_len);
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;
610 bss_info_changed |= ieee80211_handle_bss_capability(sdata,
611 bss->cbss.capability, bss->has_erp_value, bss->erp_value);
613 ieee80211_rx_bss_put(local, bss);
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);
620 ifmgd->last_probe = jiffies;
621 ieee80211_led_assoc(local, 1);
623 sdata->vif.bss_conf.assoc = 1;
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
629 bss_info_changed |= BSS_CHANGED_BASIC_RATES;
630 ieee80211_bss_info_change_notify(sdata, bss_info_changed);
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 +
637 local->hw.conf.dynamic_ps_timeout));
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);
646 netif_tx_start_all_queues(sdata->dev);
647 netif_carrier_on(sdata->dev);
649 ieee80211_sta_send_apinfo(sdata);
652 static void ieee80211_direct_probe(struct ieee80211_sub_if_data *sdata)
654 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
655 struct ieee80211_local *local = sdata->local;
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);
665 * Most likely AP is not in the range so remove the
666 * bss information associated to the AP
668 ieee80211_rx_bss_remove(sdata, ifmgd->bssid,
669 sdata->local->hw.conf.channel->center_freq,
670 ifmgd->ssid, ifmgd->ssid_len);
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
677 queue_work(local->hw.workqueue, &ifmgd->work);
681 printk(KERN_DEBUG "%s: direct probe to AP %pM try %d\n",
682 sdata->dev->name, ifmgd->bssid,
683 ifmgd->direct_probe_tries);
685 ifmgd->state = IEEE80211_STA_MLME_DIRECT_PROBE;
687 set_bit(IEEE80211_STA_REQ_DIRECT_PROBE, &ifmgd->request);
689 /* Direct probe is sent to broadcast address as some APs
690 * will not answer to direct packet in unassociated state.
692 ieee80211_send_probe_req(sdata, NULL,
693 ifmgd->ssid, ifmgd->ssid_len, NULL, 0);
695 mod_timer(&ifmgd->timer, jiffies + IEEE80211_AUTH_TIMEOUT);
699 static void ieee80211_authenticate(struct ieee80211_sub_if_data *sdata)
701 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
702 struct ieee80211_local *local = sdata->local;
707 if (ifmgd->auth_tries > IEEE80211_AUTH_MAX_TRIES) {
708 printk(KERN_DEBUG "%s: authentication with AP %pM"
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);
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
722 queue_work(local->hw.workqueue, &ifmgd->work);
726 ifmgd->state = IEEE80211_STA_MLME_AUTHENTICATE;
727 printk(KERN_DEBUG "%s: authenticate with AP %pM\n",
728 sdata->dev->name, ifmgd->bssid);
730 if (ifmgd->flags & IEEE80211_STA_EXT_SME) {
731 ies = ifmgd->sme_auth_ie;
732 ies_len = ifmgd->sme_auth_ie_len;
737 ieee80211_send_auth(sdata, 1, ifmgd->auth_alg, ies, ies_len,
739 ifmgd->auth_transaction = 2;
741 mod_timer(&ifmgd->timer, jiffies + IEEE80211_AUTH_TIMEOUT);
745 * The disassoc 'reason' argument can be either our own reason
746 * if self disconnected or a reason code from the AP.
748 static void ieee80211_set_disassoc(struct ieee80211_sub_if_data *sdata,
749 bool deauth, bool self_disconnected,
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;
759 sta = sta_info_get(local, ifmgd->bssid);
766 ifmgd->direct_probe_tries = 0;
767 ifmgd->auth_tries = 0;
769 ifmgd->assoc_scan_tries = 0;
770 ifmgd->assoc_tries = 0;
772 netif_tx_stop_all_queues(sdata->dev);
773 netif_carrier_off(sdata->dev);
775 ieee80211_sta_tear_down_BA_sessions(sta);
777 if (self_disconnected) {
779 ieee80211_send_deauth_disassoc(sdata,
780 IEEE80211_STYPE_DEAUTH, reason);
782 ieee80211_send_deauth_disassoc(sdata,
783 IEEE80211_STYPE_DISASSOC, reason);
786 ifmgd->flags &= ~IEEE80211_STA_ASSOCIATED;
787 changed |= ieee80211_reset_erp_info(sdata);
789 ieee80211_led_assoc(local, 0);
790 changed |= BSS_CHANGED_ASSOC;
791 sdata->vif.bss_conf.assoc = false;
793 ieee80211_sta_send_apinfo(sdata);
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);
804 /* channel(_type) changes are handled by ieee80211_hw_config */
805 local->oper_channel_type = NL80211_CHAN_NO_HT;
807 local->power_constr_level = 0;
809 del_timer_sync(&local->dynamic_ps_timer);
810 cancel_work_sync(&local->dynamic_ps_enable_work);
812 if (local->hw.conf.flags & IEEE80211_CONF_PS) {
813 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
814 config_changed |= IEEE80211_CONF_CHANGE_PS;
817 ieee80211_hw_config(local, config_changed);
818 ieee80211_bss_info_change_notify(sdata, changed);
822 sta = sta_info_get(local, ifmgd->bssid);
828 sta_info_unlink(&sta);
832 sta_info_destroy(sta);
835 static int ieee80211_sta_wep_configured(struct ieee80211_sub_if_data *sdata)
837 if (!sdata || !sdata->default_key ||
838 sdata->default_key->conf.alg != ALG_WEP)
843 static int ieee80211_privacy_mismatch(struct ieee80211_sub_if_data *sdata)
845 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
846 struct ieee80211_local *local = sdata->local;
847 struct ieee80211_bss *bss;
852 if (!ifmgd || (ifmgd->flags & IEEE80211_STA_EXT_SME))
855 bss = ieee80211_rx_bss_get(local, ifmgd->bssid,
856 local->hw.conf.channel->center_freq,
857 ifmgd->ssid, ifmgd->ssid_len);
861 bss_privacy = !!(bss->cbss.capability & WLAN_CAPABILITY_PRIVACY);
862 wep_privacy = !!ieee80211_sta_wep_configured(sdata);
863 privacy_invoked = !!(ifmgd->flags & IEEE80211_STA_PRIVACY_INVOKED);
865 ieee80211_rx_bss_put(local, bss);
867 if ((bss_privacy == wep_privacy) || (bss_privacy == privacy_invoked))
873 static void ieee80211_associate(struct ieee80211_sub_if_data *sdata)
875 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
876 struct ieee80211_local *local = sdata->local;
878 ifmgd->assoc_tries++;
879 if (ifmgd->assoc_tries > IEEE80211_ASSOC_MAX_TRIES) {
880 printk(KERN_DEBUG "%s: association with AP %pM"
882 sdata->dev->name, ifmgd->bssid);
883 ifmgd->state = IEEE80211_STA_MLME_DISABLED;
884 ieee80211_sta_send_apinfo(sdata);
885 ieee80211_rx_bss_remove(sdata, ifmgd->bssid,
886 sdata->local->hw.conf.channel->center_freq,
887 ifmgd->ssid, ifmgd->ssid_len);
889 * We might have a pending scan which had no chance to run yet
890 * due to state == IEEE80211_STA_MLME_ASSOCIATE.
891 * Hence, queue the STAs work again
893 queue_work(local->hw.workqueue, &ifmgd->work);
897 ifmgd->state = IEEE80211_STA_MLME_ASSOCIATE;
898 printk(KERN_DEBUG "%s: associate with AP %pM\n",
899 sdata->dev->name, ifmgd->bssid);
900 if (ieee80211_privacy_mismatch(sdata)) {
901 printk(KERN_DEBUG "%s: mismatch in privacy configuration and "
902 "mixed-cell disabled - abort association\n", sdata->dev->name);
903 ifmgd->state = IEEE80211_STA_MLME_DISABLED;
907 ieee80211_send_assoc(sdata);
909 mod_timer(&ifmgd->timer, jiffies + IEEE80211_ASSOC_TIMEOUT);
912 void ieee80211_sta_rx_notify(struct ieee80211_sub_if_data *sdata,
913 struct ieee80211_hdr *hdr)
916 * We can postpone the mgd.timer whenever receiving unicast frames
917 * from AP because we know that the connection is working both ways
918 * at that time. But multicast frames (and hence also beacons) must
919 * be ignored here, because we need to trigger the timer during
920 * data idle periods for sending the periodical probe request to
923 if (!is_multicast_ether_addr(hdr->addr1))
924 mod_timer(&sdata->u.mgd.timer,
925 jiffies + IEEE80211_MONITORING_INTERVAL);
928 static void ieee80211_associated(struct ieee80211_sub_if_data *sdata)
930 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
931 struct ieee80211_local *local = sdata->local;
932 struct sta_info *sta;
935 /* TODO: start monitoring current AP signal quality and number of
936 * missed beacons. Scan other channels every now and then and search
938 /* TODO: remove expired BSSes */
940 ifmgd->state = IEEE80211_STA_MLME_ASSOCIATED;
944 sta = sta_info_get(local, ifmgd->bssid);
946 printk(KERN_DEBUG "%s: No STA entry for own AP %pM\n",
947 sdata->dev->name, ifmgd->bssid);
951 if (time_after(jiffies,
952 sta->last_rx + IEEE80211_MONITORING_INTERVAL)) {
953 if (ifmgd->flags & IEEE80211_STA_PROBEREQ_POLL) {
954 printk(KERN_DEBUG "%s: No ProbeResp from "
955 "current AP %pM - assume out of "
957 sdata->dev->name, ifmgd->bssid);
960 ieee80211_send_probe_req(sdata, ifmgd->bssid,
964 ifmgd->flags ^= IEEE80211_STA_PROBEREQ_POLL;
966 ifmgd->flags &= ~IEEE80211_STA_PROBEREQ_POLL;
967 if (time_after(jiffies, ifmgd->last_probe +
968 IEEE80211_PROBE_INTERVAL)) {
969 ifmgd->last_probe = jiffies;
970 ieee80211_send_probe_req(sdata, ifmgd->bssid,
981 ieee80211_set_disassoc(sdata, true, true,
982 WLAN_REASON_PREV_AUTH_NOT_VALID);
984 mod_timer(&ifmgd->timer, jiffies +
985 IEEE80211_MONITORING_INTERVAL);
989 static void ieee80211_auth_completed(struct ieee80211_sub_if_data *sdata)
991 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
993 printk(KERN_DEBUG "%s: authenticated\n", sdata->dev->name);
994 ifmgd->flags |= IEEE80211_STA_AUTHENTICATED;
995 if (ifmgd->flags & IEEE80211_STA_EXT_SME) {
996 /* Wait for SME to request association */
997 ifmgd->state = IEEE80211_STA_MLME_DISABLED;
999 ieee80211_associate(sdata);
1003 static void ieee80211_auth_challenge(struct ieee80211_sub_if_data *sdata,
1004 struct ieee80211_mgmt *mgmt,
1008 struct ieee802_11_elems elems;
1010 pos = mgmt->u.auth.variable;
1011 ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), &elems);
1012 if (!elems.challenge)
1014 ieee80211_send_auth(sdata, 3, sdata->u.mgd.auth_alg,
1015 elems.challenge - 2, elems.challenge_len + 2,
1016 sdata->u.mgd.bssid, 1);
1017 sdata->u.mgd.auth_transaction = 4;
1020 static void ieee80211_rx_mgmt_auth(struct ieee80211_sub_if_data *sdata,
1021 struct ieee80211_mgmt *mgmt,
1024 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1025 u16 auth_alg, auth_transaction, status_code;
1027 if (ifmgd->state != IEEE80211_STA_MLME_AUTHENTICATE)
1033 if (memcmp(ifmgd->bssid, mgmt->sa, ETH_ALEN) != 0)
1036 if (memcmp(ifmgd->bssid, mgmt->bssid, ETH_ALEN) != 0)
1039 auth_alg = le16_to_cpu(mgmt->u.auth.auth_alg);
1040 auth_transaction = le16_to_cpu(mgmt->u.auth.auth_transaction);
1041 status_code = le16_to_cpu(mgmt->u.auth.status_code);
1043 if (auth_alg != ifmgd->auth_alg ||
1044 auth_transaction != ifmgd->auth_transaction)
1047 if (status_code != WLAN_STATUS_SUCCESS) {
1048 if (status_code == WLAN_STATUS_NOT_SUPPORTED_AUTH_ALG) {
1050 const int num_algs = ARRAY_SIZE(algs);
1052 algs[0] = algs[1] = algs[2] = 0xff;
1053 if (ifmgd->auth_algs & IEEE80211_AUTH_ALG_OPEN)
1054 algs[0] = WLAN_AUTH_OPEN;
1055 if (ifmgd->auth_algs & IEEE80211_AUTH_ALG_SHARED_KEY)
1056 algs[1] = WLAN_AUTH_SHARED_KEY;
1057 if (ifmgd->auth_algs & IEEE80211_AUTH_ALG_LEAP)
1058 algs[2] = WLAN_AUTH_LEAP;
1059 if (ifmgd->auth_alg == WLAN_AUTH_OPEN)
1061 else if (ifmgd->auth_alg == WLAN_AUTH_SHARED_KEY)
1065 for (i = 0; i < num_algs; i++) {
1067 if (pos >= num_algs)
1069 if (algs[pos] == ifmgd->auth_alg ||
1072 if (algs[pos] == WLAN_AUTH_SHARED_KEY &&
1073 !ieee80211_sta_wep_configured(sdata))
1075 ifmgd->auth_alg = algs[pos];
1082 switch (ifmgd->auth_alg) {
1083 case WLAN_AUTH_OPEN:
1084 case WLAN_AUTH_LEAP:
1086 ieee80211_auth_completed(sdata);
1087 cfg80211_send_rx_auth(sdata->dev, (u8 *) mgmt, len);
1089 case WLAN_AUTH_SHARED_KEY:
1090 if (ifmgd->auth_transaction == 4) {
1091 ieee80211_auth_completed(sdata);
1092 cfg80211_send_rx_auth(sdata->dev, (u8 *) mgmt, len);
1094 ieee80211_auth_challenge(sdata, mgmt, len);
1100 static void ieee80211_rx_mgmt_deauth(struct ieee80211_sub_if_data *sdata,
1101 struct ieee80211_mgmt *mgmt,
1104 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1110 if (memcmp(ifmgd->bssid, mgmt->sa, ETH_ALEN))
1113 reason_code = le16_to_cpu(mgmt->u.deauth.reason_code);
1115 if (ifmgd->flags & IEEE80211_STA_AUTHENTICATED)
1116 printk(KERN_DEBUG "%s: deauthenticated (Reason: %u)\n",
1117 sdata->dev->name, reason_code);
1119 if (!(ifmgd->flags & IEEE80211_STA_EXT_SME) &&
1120 (ifmgd->state == IEEE80211_STA_MLME_AUTHENTICATE ||
1121 ifmgd->state == IEEE80211_STA_MLME_ASSOCIATE ||
1122 ifmgd->state == IEEE80211_STA_MLME_ASSOCIATED)) {
1123 ifmgd->state = IEEE80211_STA_MLME_DIRECT_PROBE;
1124 mod_timer(&ifmgd->timer, jiffies +
1125 IEEE80211_RETRY_AUTH_INTERVAL);
1128 ieee80211_set_disassoc(sdata, true, false, 0);
1129 ifmgd->flags &= ~IEEE80211_STA_AUTHENTICATED;
1130 cfg80211_send_rx_deauth(sdata->dev, (u8 *) mgmt, len);
1134 static void ieee80211_rx_mgmt_disassoc(struct ieee80211_sub_if_data *sdata,
1135 struct ieee80211_mgmt *mgmt,
1138 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1144 if (memcmp(ifmgd->bssid, mgmt->sa, ETH_ALEN))
1147 reason_code = le16_to_cpu(mgmt->u.disassoc.reason_code);
1149 if (ifmgd->flags & IEEE80211_STA_ASSOCIATED)
1150 printk(KERN_DEBUG "%s: disassociated (Reason: %u)\n",
1151 sdata->dev->name, reason_code);
1153 if (!(ifmgd->flags & IEEE80211_STA_EXT_SME) &&
1154 ifmgd->state == IEEE80211_STA_MLME_ASSOCIATED) {
1155 ifmgd->state = IEEE80211_STA_MLME_ASSOCIATE;
1156 mod_timer(&ifmgd->timer, jiffies +
1157 IEEE80211_RETRY_AUTH_INTERVAL);
1160 ieee80211_set_disassoc(sdata, false, false, reason_code);
1161 cfg80211_send_rx_disassoc(sdata->dev, (u8 *) mgmt, len);
1165 static void ieee80211_rx_mgmt_assoc_resp(struct ieee80211_sub_if_data *sdata,
1166 struct ieee80211_mgmt *mgmt,
1170 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1171 struct ieee80211_local *local = sdata->local;
1172 struct ieee80211_supported_band *sband;
1173 struct sta_info *sta;
1174 u32 rates, basic_rates;
1175 u16 capab_info, status_code, aid;
1176 struct ieee802_11_elems elems;
1177 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
1181 bool have_higher_than_11mbit = false, newsta = false;
1182 u16 ap_ht_cap_flags;
1184 /* AssocResp and ReassocResp have identical structure, so process both
1185 * of them in this function. */
1187 if (ifmgd->state != IEEE80211_STA_MLME_ASSOCIATE)
1193 if (memcmp(ifmgd->bssid, mgmt->sa, ETH_ALEN) != 0)
1196 capab_info = le16_to_cpu(mgmt->u.assoc_resp.capab_info);
1197 status_code = le16_to_cpu(mgmt->u.assoc_resp.status_code);
1198 aid = le16_to_cpu(mgmt->u.assoc_resp.aid);
1200 printk(KERN_DEBUG "%s: RX %sssocResp from %pM (capab=0x%x "
1201 "status=%d aid=%d)\n",
1202 sdata->dev->name, reassoc ? "Rea" : "A", mgmt->sa,
1203 capab_info, status_code, (u16)(aid & ~(BIT(15) | BIT(14))));
1205 pos = mgmt->u.assoc_resp.variable;
1206 ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), &elems);
1208 if (status_code == WLAN_STATUS_ASSOC_REJECTED_TEMPORARILY &&
1209 elems.timeout_int && elems.timeout_int_len == 5 &&
1210 elems.timeout_int[0] == WLAN_TIMEOUT_ASSOC_COMEBACK) {
1212 tu = get_unaligned_le32(elems.timeout_int + 1);
1213 ms = tu * 1024 / 1000;
1214 printk(KERN_DEBUG "%s: AP rejected association temporarily; "
1215 "comeback duration %u TU (%u ms)\n",
1216 sdata->dev->name, tu, ms);
1217 if (ms > IEEE80211_ASSOC_TIMEOUT)
1218 mod_timer(&ifmgd->timer,
1219 jiffies + msecs_to_jiffies(ms));
1223 if (status_code != WLAN_STATUS_SUCCESS) {
1224 printk(KERN_DEBUG "%s: AP denied association (code=%d)\n",
1225 sdata->dev->name, status_code);
1226 /* if this was a reassociation, ensure we try a "full"
1227 * association next time. This works around some broken APs
1228 * which do not correctly reject reassociation requests. */
1229 ifmgd->flags &= ~IEEE80211_STA_PREV_BSSID_SET;
1233 if ((aid & (BIT(15) | BIT(14))) != (BIT(15) | BIT(14)))
1234 printk(KERN_DEBUG "%s: invalid aid value %d; bits 15:14 not "
1235 "set\n", sdata->dev->name, aid);
1236 aid &= ~(BIT(15) | BIT(14));
1238 if (!elems.supp_rates) {
1239 printk(KERN_DEBUG "%s: no SuppRates element in AssocResp\n",
1244 printk(KERN_DEBUG "%s: associated\n", sdata->dev->name);
1246 ifmgd->ap_capab = capab_info;
1248 kfree(ifmgd->assocresp_ies);
1249 ifmgd->assocresp_ies_len = len - (pos - (u8 *) mgmt);
1250 ifmgd->assocresp_ies = kmalloc(ifmgd->assocresp_ies_len, GFP_KERNEL);
1251 if (ifmgd->assocresp_ies)
1252 memcpy(ifmgd->assocresp_ies, pos, ifmgd->assocresp_ies_len);
1256 /* Add STA entry for the AP */
1257 sta = sta_info_get(local, ifmgd->bssid);
1261 sta = sta_info_alloc(sdata, ifmgd->bssid, GFP_ATOMIC);
1263 printk(KERN_DEBUG "%s: failed to alloc STA entry for"
1264 " the AP\n", sdata->dev->name);
1269 /* update new sta with its last rx activity */
1270 sta->last_rx = jiffies;
1274 * FIXME: Do we really need to update the sta_info's information here?
1275 * We already know about the AP (we found it in our list) so it
1276 * should already be filled with the right info, no?
1277 * As is stands, all this is racy because typically we assume
1278 * the information that is filled in here (except flags) doesn't
1279 * change while a STA structure is alive. As such, it should move
1280 * to between the sta_info_alloc() and sta_info_insert() above.
1283 set_sta_flags(sta, WLAN_STA_AUTH | WLAN_STA_ASSOC | WLAN_STA_ASSOC_AP |
1284 WLAN_STA_AUTHORIZED);
1288 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
1290 for (i = 0; i < elems.supp_rates_len; i++) {
1291 int rate = (elems.supp_rates[i] & 0x7f) * 5;
1292 bool is_basic = !!(elems.supp_rates[i] & 0x80);
1295 have_higher_than_11mbit = true;
1297 for (j = 0; j < sband->n_bitrates; j++) {
1298 if (sband->bitrates[j].bitrate == rate) {
1301 basic_rates |= BIT(j);
1307 for (i = 0; i < elems.ext_supp_rates_len; i++) {
1308 int rate = (elems.ext_supp_rates[i] & 0x7f) * 5;
1309 bool is_basic = !!(elems.supp_rates[i] & 0x80);
1312 have_higher_than_11mbit = true;
1314 for (j = 0; j < sband->n_bitrates; j++) {
1315 if (sband->bitrates[j].bitrate == rate) {
1318 basic_rates |= BIT(j);
1324 sta->sta.supp_rates[local->hw.conf.channel->band] = rates;
1325 sdata->vif.bss_conf.basic_rates = basic_rates;
1327 /* cf. IEEE 802.11 9.2.12 */
1328 if (local->hw.conf.channel->band == IEEE80211_BAND_2GHZ &&
1329 have_higher_than_11mbit)
1330 sdata->flags |= IEEE80211_SDATA_OPERATING_GMODE;
1332 sdata->flags &= ~IEEE80211_SDATA_OPERATING_GMODE;
1334 /* If TKIP/WEP is used, no need to parse AP's HT capabilities */
1335 if (elems.ht_cap_elem && !(ifmgd->flags & IEEE80211_STA_TKIP_WEP_USED))
1336 ieee80211_ht_cap_ie_to_sta_ht_cap(sband,
1337 elems.ht_cap_elem, &sta->sta.ht_cap);
1339 ap_ht_cap_flags = sta->sta.ht_cap.cap;
1341 rate_control_rate_init(sta);
1343 if (ifmgd->flags & IEEE80211_STA_MFP_ENABLED)
1344 set_sta_flags(sta, WLAN_STA_MFP);
1346 if (elems.wmm_param)
1347 set_sta_flags(sta, WLAN_STA_WME);
1350 int err = sta_info_insert(sta);
1352 printk(KERN_DEBUG "%s: failed to insert STA entry for"
1353 " the AP (error %d)\n", sdata->dev->name, err);
1361 if (elems.wmm_param)
1362 ieee80211_sta_wmm_params(local, ifmgd, elems.wmm_param,
1363 elems.wmm_param_len);
1365 if (elems.ht_info_elem && elems.wmm_param &&
1366 (ifmgd->flags & IEEE80211_STA_WMM_ENABLED) &&
1367 !(ifmgd->flags & IEEE80211_STA_TKIP_WEP_USED))
1368 changed |= ieee80211_enable_ht(sdata, elems.ht_info_elem,
1371 /* set AID and assoc capability,
1372 * ieee80211_set_associated() will tell the driver */
1373 bss_conf->aid = aid;
1374 bss_conf->assoc_capability = capab_info;
1375 ieee80211_set_associated(sdata, changed);
1377 ieee80211_associated(sdata);
1378 cfg80211_send_rx_assoc(sdata->dev, (u8 *) mgmt, len);
1382 static void ieee80211_rx_bss_info(struct ieee80211_sub_if_data *sdata,
1383 struct ieee80211_mgmt *mgmt,
1385 struct ieee80211_rx_status *rx_status,
1386 struct ieee802_11_elems *elems,
1389 struct ieee80211_local *local = sdata->local;
1391 struct ieee80211_bss *bss;
1392 struct ieee80211_channel *channel;
1394 if (elems->ds_params && elems->ds_params_len == 1)
1395 freq = ieee80211_channel_to_frequency(elems->ds_params[0]);
1397 freq = rx_status->freq;
1399 channel = ieee80211_get_channel(local->hw.wiphy, freq);
1401 if (!channel || channel->flags & IEEE80211_CHAN_DISABLED)
1404 bss = ieee80211_bss_info_update(local, rx_status, mgmt, len, elems,
1409 if (elems->ch_switch_elem && (elems->ch_switch_elem_len == 3) &&
1410 (memcmp(mgmt->bssid, sdata->u.mgd.bssid, ETH_ALEN) == 0)) {
1411 struct ieee80211_channel_sw_ie *sw_elem =
1412 (struct ieee80211_channel_sw_ie *)elems->ch_switch_elem;
1413 ieee80211_process_chanswitch(sdata, sw_elem, bss);
1416 ieee80211_rx_bss_put(local, bss);
1420 static void ieee80211_rx_mgmt_probe_resp(struct ieee80211_sub_if_data *sdata,
1421 struct ieee80211_mgmt *mgmt,
1423 struct ieee80211_rx_status *rx_status)
1426 struct ieee802_11_elems elems;
1428 if (memcmp(mgmt->da, sdata->dev->dev_addr, ETH_ALEN))
1429 return; /* ignore ProbeResp to foreign address */
1431 baselen = (u8 *) mgmt->u.probe_resp.variable - (u8 *) mgmt;
1435 ieee802_11_parse_elems(mgmt->u.probe_resp.variable, len - baselen,
1438 ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems, false);
1440 /* direct probe may be part of the association flow */
1441 if (test_and_clear_bit(IEEE80211_STA_REQ_DIRECT_PROBE,
1442 &sdata->u.mgd.request)) {
1443 printk(KERN_DEBUG "%s direct probe responded\n",
1445 ieee80211_authenticate(sdata);
1449 static void ieee80211_rx_mgmt_beacon(struct ieee80211_sub_if_data *sdata,
1450 struct ieee80211_mgmt *mgmt,
1452 struct ieee80211_rx_status *rx_status)
1454 struct ieee80211_if_managed *ifmgd;
1456 struct ieee802_11_elems elems;
1457 struct ieee80211_local *local = sdata->local;
1459 bool erp_valid, directed_tim;
1462 /* Process beacon from the current BSS */
1463 baselen = (u8 *) mgmt->u.beacon.variable - (u8 *) mgmt;
1467 ieee802_11_parse_elems(mgmt->u.beacon.variable, len - baselen, &elems);
1469 ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems, true);
1471 if (sdata->vif.type != NL80211_IFTYPE_STATION)
1474 ifmgd = &sdata->u.mgd;
1476 if (!(ifmgd->flags & IEEE80211_STA_ASSOCIATED) ||
1477 memcmp(ifmgd->bssid, mgmt->bssid, ETH_ALEN) != 0)
1480 if (rx_status->freq != local->hw.conf.channel->center_freq)
1483 ieee80211_sta_wmm_params(local, ifmgd, elems.wmm_param,
1484 elems.wmm_param_len);
1486 if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK) {
1487 directed_tim = ieee80211_check_tim(&elems, ifmgd->aid);
1490 if (local->hw.conf.dynamic_ps_timeout > 0) {
1491 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
1492 ieee80211_hw_config(local,
1493 IEEE80211_CONF_CHANGE_PS);
1494 ieee80211_send_nullfunc(local, sdata, 0);
1496 local->pspolling = true;
1499 * Here is assumed that the driver will be
1500 * able to send ps-poll frame and receive a
1501 * response even though power save mode is
1502 * enabled, but some drivers might require
1503 * to disable power save here. This needs
1504 * to be investigated.
1506 ieee80211_send_pspoll(local, sdata);
1511 if (elems.erp_info && elems.erp_info_len >= 1) {
1513 erp_value = elems.erp_info[0];
1517 changed |= ieee80211_handle_bss_capability(sdata,
1518 le16_to_cpu(mgmt->u.beacon.capab_info),
1519 erp_valid, erp_value);
1522 if (elems.ht_cap_elem && elems.ht_info_elem && elems.wmm_param &&
1523 !(ifmgd->flags & IEEE80211_STA_TKIP_WEP_USED)) {
1524 struct sta_info *sta;
1525 struct ieee80211_supported_band *sband;
1526 u16 ap_ht_cap_flags;
1530 sta = sta_info_get(local, ifmgd->bssid);
1536 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
1538 ieee80211_ht_cap_ie_to_sta_ht_cap(sband,
1539 elems.ht_cap_elem, &sta->sta.ht_cap);
1541 ap_ht_cap_flags = sta->sta.ht_cap.cap;
1545 changed |= ieee80211_enable_ht(sdata, elems.ht_info_elem,
1549 if (elems.country_elem) {
1550 /* Note we are only reviewing this on beacons
1551 * for the BSSID we are associated to */
1552 regulatory_hint_11d(local->hw.wiphy,
1553 elems.country_elem, elems.country_elem_len);
1555 /* TODO: IBSS also needs this */
1556 if (elems.pwr_constr_elem)
1557 ieee80211_handle_pwr_constr(sdata,
1558 le16_to_cpu(mgmt->u.probe_resp.capab_info),
1559 elems.pwr_constr_elem,
1560 elems.pwr_constr_elem_len);
1563 ieee80211_bss_info_change_notify(sdata, changed);
1566 ieee80211_rx_result ieee80211_sta_rx_mgmt(struct ieee80211_sub_if_data *sdata,
1567 struct sk_buff *skb,
1568 struct ieee80211_rx_status *rx_status)
1570 struct ieee80211_local *local = sdata->local;
1571 struct ieee80211_mgmt *mgmt;
1575 return RX_DROP_MONITOR;
1577 mgmt = (struct ieee80211_mgmt *) skb->data;
1578 fc = le16_to_cpu(mgmt->frame_control);
1580 switch (fc & IEEE80211_FCTL_STYPE) {
1581 case IEEE80211_STYPE_PROBE_REQ:
1582 case IEEE80211_STYPE_PROBE_RESP:
1583 case IEEE80211_STYPE_BEACON:
1584 memcpy(skb->cb, rx_status, sizeof(*rx_status));
1585 case IEEE80211_STYPE_AUTH:
1586 case IEEE80211_STYPE_ASSOC_RESP:
1587 case IEEE80211_STYPE_REASSOC_RESP:
1588 case IEEE80211_STYPE_DEAUTH:
1589 case IEEE80211_STYPE_DISASSOC:
1590 skb_queue_tail(&sdata->u.mgd.skb_queue, skb);
1591 queue_work(local->hw.workqueue, &sdata->u.mgd.work);
1595 return RX_DROP_MONITOR;
1598 static void ieee80211_sta_rx_queued_mgmt(struct ieee80211_sub_if_data *sdata,
1599 struct sk_buff *skb)
1601 struct ieee80211_rx_status *rx_status;
1602 struct ieee80211_mgmt *mgmt;
1605 rx_status = (struct ieee80211_rx_status *) skb->cb;
1606 mgmt = (struct ieee80211_mgmt *) skb->data;
1607 fc = le16_to_cpu(mgmt->frame_control);
1609 switch (fc & IEEE80211_FCTL_STYPE) {
1610 case IEEE80211_STYPE_PROBE_RESP:
1611 ieee80211_rx_mgmt_probe_resp(sdata, mgmt, skb->len,
1614 case IEEE80211_STYPE_BEACON:
1615 ieee80211_rx_mgmt_beacon(sdata, mgmt, skb->len,
1618 case IEEE80211_STYPE_AUTH:
1619 ieee80211_rx_mgmt_auth(sdata, mgmt, skb->len);
1621 case IEEE80211_STYPE_ASSOC_RESP:
1622 ieee80211_rx_mgmt_assoc_resp(sdata, mgmt, skb->len, 0);
1624 case IEEE80211_STYPE_REASSOC_RESP:
1625 ieee80211_rx_mgmt_assoc_resp(sdata, mgmt, skb->len, 1);
1627 case IEEE80211_STYPE_DEAUTH:
1628 ieee80211_rx_mgmt_deauth(sdata, mgmt, skb->len);
1630 case IEEE80211_STYPE_DISASSOC:
1631 ieee80211_rx_mgmt_disassoc(sdata, mgmt, skb->len);
1638 static void ieee80211_sta_timer(unsigned long data)
1640 struct ieee80211_sub_if_data *sdata =
1641 (struct ieee80211_sub_if_data *) data;
1642 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1643 struct ieee80211_local *local = sdata->local;
1645 set_bit(IEEE80211_STA_REQ_RUN, &ifmgd->request);
1646 queue_work(local->hw.workqueue, &ifmgd->work);
1649 static void ieee80211_sta_reset_auth(struct ieee80211_sub_if_data *sdata)
1651 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1652 struct ieee80211_local *local = sdata->local;
1654 if (local->ops->reset_tsf) {
1655 /* Reset own TSF to allow time synchronization work. */
1656 local->ops->reset_tsf(local_to_hw(local));
1659 ifmgd->wmm_last_param_set = -1; /* allow any WMM update */
1662 if (ifmgd->auth_algs & IEEE80211_AUTH_ALG_OPEN)
1663 ifmgd->auth_alg = WLAN_AUTH_OPEN;
1664 else if (ifmgd->auth_algs & IEEE80211_AUTH_ALG_SHARED_KEY)
1665 ifmgd->auth_alg = WLAN_AUTH_SHARED_KEY;
1666 else if (ifmgd->auth_algs & IEEE80211_AUTH_ALG_LEAP)
1667 ifmgd->auth_alg = WLAN_AUTH_LEAP;
1668 else if (ifmgd->auth_algs & IEEE80211_AUTH_ALG_FT)
1669 ifmgd->auth_alg = WLAN_AUTH_FT;
1671 ifmgd->auth_alg = WLAN_AUTH_OPEN;
1672 ifmgd->auth_transaction = -1;
1673 ifmgd->flags &= ~IEEE80211_STA_ASSOCIATED;
1674 ifmgd->assoc_scan_tries = 0;
1675 ifmgd->direct_probe_tries = 0;
1676 ifmgd->auth_tries = 0;
1677 ifmgd->assoc_tries = 0;
1678 netif_tx_stop_all_queues(sdata->dev);
1679 netif_carrier_off(sdata->dev);
1682 static int ieee80211_sta_config_auth(struct ieee80211_sub_if_data *sdata)
1684 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1685 struct ieee80211_local *local = sdata->local;
1686 struct ieee80211_bss *bss;
1687 u8 *bssid = ifmgd->bssid, *ssid = ifmgd->ssid;
1688 u8 ssid_len = ifmgd->ssid_len;
1689 u16 capa_mask = WLAN_CAPABILITY_ESS;
1690 u16 capa_val = WLAN_CAPABILITY_ESS;
1691 struct ieee80211_channel *chan = local->oper_channel;
1693 if (!(ifmgd->flags & IEEE80211_STA_EXT_SME) &&
1694 ifmgd->flags & (IEEE80211_STA_AUTO_SSID_SEL |
1695 IEEE80211_STA_AUTO_BSSID_SEL |
1696 IEEE80211_STA_AUTO_CHANNEL_SEL)) {
1697 capa_mask |= WLAN_CAPABILITY_PRIVACY;
1698 if (sdata->default_key)
1699 capa_val |= WLAN_CAPABILITY_PRIVACY;
1702 if (ifmgd->flags & IEEE80211_STA_AUTO_CHANNEL_SEL)
1705 if (ifmgd->flags & IEEE80211_STA_AUTO_BSSID_SEL)
1708 if (ifmgd->flags & IEEE80211_STA_AUTO_SSID_SEL) {
1713 bss = (void *)cfg80211_get_bss(local->hw.wiphy, chan,
1714 bssid, ssid, ssid_len,
1715 capa_mask, capa_val);
1718 ieee80211_set_freq(sdata, bss->cbss.channel->center_freq);
1719 if (!(ifmgd->flags & IEEE80211_STA_SSID_SET))
1720 ieee80211_sta_set_ssid(sdata, bss->ssid,
1722 ieee80211_sta_set_bssid(sdata, bss->cbss.bssid);
1723 ieee80211_sta_def_wmm_params(sdata, bss->supp_rates_len,
1725 if (sdata->u.mgd.mfp == IEEE80211_MFP_REQUIRED)
1726 sdata->u.mgd.flags |= IEEE80211_STA_MFP_ENABLED;
1728 sdata->u.mgd.flags &= ~IEEE80211_STA_MFP_ENABLED;
1730 /* Send out direct probe if no probe resp was received or
1731 * the one we have is outdated
1733 if (!bss->last_probe_resp ||
1734 time_after(jiffies, bss->last_probe_resp
1735 + IEEE80211_SCAN_RESULT_EXPIRE))
1736 ifmgd->state = IEEE80211_STA_MLME_DIRECT_PROBE;
1738 ifmgd->state = IEEE80211_STA_MLME_AUTHENTICATE;
1740 ieee80211_rx_bss_put(local, bss);
1741 ieee80211_sta_reset_auth(sdata);
1744 if (ifmgd->assoc_scan_tries < IEEE80211_ASSOC_SCANS_MAX_TRIES) {
1745 ifmgd->assoc_scan_tries++;
1746 /* XXX maybe racy? */
1747 if (local->scan_req)
1749 memcpy(local->int_scan_req.ssids[0].ssid,
1750 ifmgd->ssid, IEEE80211_MAX_SSID_LEN);
1751 if (ifmgd->flags & IEEE80211_STA_AUTO_SSID_SEL)
1752 local->int_scan_req.ssids[0].ssid_len = 0;
1754 local->int_scan_req.ssids[0].ssid_len = ifmgd->ssid_len;
1756 if (ieee80211_start_scan(sdata, &local->int_scan_req))
1757 ieee80211_scan_failed(local);
1759 ifmgd->state = IEEE80211_STA_MLME_AUTHENTICATE;
1760 set_bit(IEEE80211_STA_REQ_AUTH, &ifmgd->request);
1762 ifmgd->assoc_scan_tries = 0;
1763 ifmgd->state = IEEE80211_STA_MLME_DISABLED;
1770 static void ieee80211_sta_work(struct work_struct *work)
1772 struct ieee80211_sub_if_data *sdata =
1773 container_of(work, struct ieee80211_sub_if_data, u.mgd.work);
1774 struct ieee80211_local *local = sdata->local;
1775 struct ieee80211_if_managed *ifmgd;
1776 struct sk_buff *skb;
1778 if (!netif_running(sdata->dev))
1781 if (local->sw_scanning || local->hw_scanning)
1784 if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION))
1786 ifmgd = &sdata->u.mgd;
1788 while ((skb = skb_dequeue(&ifmgd->skb_queue)))
1789 ieee80211_sta_rx_queued_mgmt(sdata, skb);
1791 if (ifmgd->state != IEEE80211_STA_MLME_DIRECT_PROBE &&
1792 ifmgd->state != IEEE80211_STA_MLME_AUTHENTICATE &&
1793 ifmgd->state != IEEE80211_STA_MLME_ASSOCIATE &&
1794 test_and_clear_bit(IEEE80211_STA_REQ_SCAN, &ifmgd->request)) {
1796 * The call to ieee80211_start_scan can fail but ieee80211_request_scan
1797 * (which queued ieee80211_sta_work) did not return an error. Thus, call
1798 * ieee80211_scan_failed here if ieee80211_start_scan fails in order to
1799 * notify the scan requester.
1801 if (ieee80211_start_scan(sdata, local->scan_req))
1802 ieee80211_scan_failed(local);
1806 if (test_and_clear_bit(IEEE80211_STA_REQ_AUTH, &ifmgd->request)) {
1807 if (ieee80211_sta_config_auth(sdata))
1809 clear_bit(IEEE80211_STA_REQ_RUN, &ifmgd->request);
1810 } else if (!test_and_clear_bit(IEEE80211_STA_REQ_RUN, &ifmgd->request))
1813 switch (ifmgd->state) {
1814 case IEEE80211_STA_MLME_DISABLED:
1816 case IEEE80211_STA_MLME_DIRECT_PROBE:
1817 ieee80211_direct_probe(sdata);
1819 case IEEE80211_STA_MLME_AUTHENTICATE:
1820 ieee80211_authenticate(sdata);
1822 case IEEE80211_STA_MLME_ASSOCIATE:
1823 ieee80211_associate(sdata);
1825 case IEEE80211_STA_MLME_ASSOCIATED:
1826 ieee80211_associated(sdata);
1833 if (ieee80211_privacy_mismatch(sdata)) {
1834 printk(KERN_DEBUG "%s: privacy configuration mismatch and "
1835 "mixed-cell disabled - disassociate\n", sdata->dev->name);
1837 ieee80211_set_disassoc(sdata, false, true,
1838 WLAN_REASON_UNSPECIFIED);
1842 static void ieee80211_restart_sta_timer(struct ieee80211_sub_if_data *sdata)
1844 if (sdata->vif.type == NL80211_IFTYPE_STATION)
1845 queue_work(sdata->local->hw.workqueue,
1846 &sdata->u.mgd.work);
1849 /* interface setup */
1850 void ieee80211_sta_setup_sdata(struct ieee80211_sub_if_data *sdata)
1852 struct ieee80211_if_managed *ifmgd;
1854 ifmgd = &sdata->u.mgd;
1855 INIT_WORK(&ifmgd->work, ieee80211_sta_work);
1856 INIT_WORK(&ifmgd->chswitch_work, ieee80211_chswitch_work);
1857 setup_timer(&ifmgd->timer, ieee80211_sta_timer,
1858 (unsigned long) sdata);
1859 setup_timer(&ifmgd->chswitch_timer, ieee80211_chswitch_timer,
1860 (unsigned long) sdata);
1861 skb_queue_head_init(&ifmgd->skb_queue);
1863 ifmgd->capab = WLAN_CAPABILITY_ESS;
1864 ifmgd->auth_algs = IEEE80211_AUTH_ALG_OPEN |
1865 IEEE80211_AUTH_ALG_SHARED_KEY;
1866 ifmgd->flags |= IEEE80211_STA_CREATE_IBSS |
1867 IEEE80211_STA_AUTO_BSSID_SEL |
1868 IEEE80211_STA_AUTO_CHANNEL_SEL;
1869 if (sdata->local->hw.queues >= 4)
1870 ifmgd->flags |= IEEE80211_STA_WMM_ENABLED;
1873 /* configuration hooks */
1874 void ieee80211_sta_req_auth(struct ieee80211_sub_if_data *sdata)
1876 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1877 struct ieee80211_local *local = sdata->local;
1879 if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION))
1882 if ((ifmgd->flags & (IEEE80211_STA_BSSID_SET |
1883 IEEE80211_STA_AUTO_BSSID_SEL)) &&
1884 (ifmgd->flags & (IEEE80211_STA_SSID_SET |
1885 IEEE80211_STA_AUTO_SSID_SEL))) {
1887 if (ifmgd->state == IEEE80211_STA_MLME_ASSOCIATED)
1888 ieee80211_set_disassoc(sdata, true, true,
1889 WLAN_REASON_DEAUTH_LEAVING);
1891 if (!(ifmgd->flags & IEEE80211_STA_EXT_SME) ||
1892 ifmgd->state != IEEE80211_STA_MLME_ASSOCIATE)
1893 set_bit(IEEE80211_STA_REQ_AUTH, &ifmgd->request);
1894 else if (ifmgd->flags & IEEE80211_STA_EXT_SME)
1895 set_bit(IEEE80211_STA_REQ_RUN, &ifmgd->request);
1896 queue_work(local->hw.workqueue, &ifmgd->work);
1900 int ieee80211_sta_commit(struct ieee80211_sub_if_data *sdata)
1902 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1904 if (ifmgd->ssid_len)
1905 ifmgd->flags |= IEEE80211_STA_SSID_SET;
1907 ifmgd->flags &= ~IEEE80211_STA_SSID_SET;
1912 int ieee80211_sta_set_ssid(struct ieee80211_sub_if_data *sdata, char *ssid, size_t len)
1914 struct ieee80211_if_managed *ifmgd;
1916 if (len > IEEE80211_MAX_SSID_LEN)
1919 ifmgd = &sdata->u.mgd;
1921 if (ifmgd->ssid_len != len || memcmp(ifmgd->ssid, ssid, len) != 0) {
1923 * Do not use reassociation if SSID is changed (different ESS).
1925 ifmgd->flags &= ~IEEE80211_STA_PREV_BSSID_SET;
1926 memset(ifmgd->ssid, 0, sizeof(ifmgd->ssid));
1927 memcpy(ifmgd->ssid, ssid, len);
1928 ifmgd->ssid_len = len;
1931 return ieee80211_sta_commit(sdata);
1934 int ieee80211_sta_get_ssid(struct ieee80211_sub_if_data *sdata, char *ssid, size_t *len)
1936 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1937 memcpy(ssid, ifmgd->ssid, ifmgd->ssid_len);
1938 *len = ifmgd->ssid_len;
1942 int ieee80211_sta_set_bssid(struct ieee80211_sub_if_data *sdata, u8 *bssid)
1944 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1946 if (is_valid_ether_addr(bssid)) {
1947 memcpy(ifmgd->bssid, bssid, ETH_ALEN);
1948 ifmgd->flags |= IEEE80211_STA_BSSID_SET;
1950 memset(ifmgd->bssid, 0, ETH_ALEN);
1951 ifmgd->flags &= ~IEEE80211_STA_BSSID_SET;
1954 if (netif_running(sdata->dev)) {
1955 if (ieee80211_if_config(sdata, IEEE80211_IFCC_BSSID)) {
1956 printk(KERN_DEBUG "%s: Failed to config new BSSID to "
1957 "the low-level driver\n", sdata->dev->name);
1961 return ieee80211_sta_commit(sdata);
1964 int ieee80211_sta_set_extra_ie(struct ieee80211_sub_if_data *sdata,
1965 const char *ie, size_t len)
1967 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1969 kfree(ifmgd->extra_ie);
1971 ifmgd->extra_ie = NULL;
1972 ifmgd->extra_ie_len = 0;
1975 ifmgd->extra_ie = kmalloc(len, GFP_KERNEL);
1976 if (!ifmgd->extra_ie) {
1977 ifmgd->extra_ie_len = 0;
1980 memcpy(ifmgd->extra_ie, ie, len);
1981 ifmgd->extra_ie_len = len;
1985 int ieee80211_sta_deauthenticate(struct ieee80211_sub_if_data *sdata, u16 reason)
1987 printk(KERN_DEBUG "%s: deauthenticating by local choice (reason=%d)\n",
1988 sdata->dev->name, reason);
1990 if (sdata->vif.type != NL80211_IFTYPE_STATION)
1993 ieee80211_set_disassoc(sdata, true, true, reason);
1997 int ieee80211_sta_disassociate(struct ieee80211_sub_if_data *sdata, u16 reason)
1999 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2001 printk(KERN_DEBUG "%s: disassociating by local choice (reason=%d)\n",
2002 sdata->dev->name, reason);
2004 if (sdata->vif.type != NL80211_IFTYPE_STATION)
2007 if (!(ifmgd->flags & IEEE80211_STA_ASSOCIATED))
2010 ieee80211_set_disassoc(sdata, false, true, reason);
2014 /* scan finished notification */
2015 void ieee80211_mlme_notify_scan_completed(struct ieee80211_local *local)
2017 struct ieee80211_sub_if_data *sdata = local->scan_sdata;
2019 /* Restart STA timers */
2021 list_for_each_entry_rcu(sdata, &local->interfaces, list)
2022 ieee80211_restart_sta_timer(sdata);
2026 void ieee80211_dynamic_ps_disable_work(struct work_struct *work)
2028 struct ieee80211_local *local =
2029 container_of(work, struct ieee80211_local,
2030 dynamic_ps_disable_work);
2032 if (local->hw.conf.flags & IEEE80211_CONF_PS) {
2033 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
2034 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
2037 ieee80211_wake_queues_by_reason(&local->hw,
2038 IEEE80211_QUEUE_STOP_REASON_PS);
2041 void ieee80211_dynamic_ps_enable_work(struct work_struct *work)
2043 struct ieee80211_local *local =
2044 container_of(work, struct ieee80211_local,
2045 dynamic_ps_enable_work);
2046 struct ieee80211_sub_if_data *sdata = local->scan_sdata;
2048 if (local->hw.conf.flags & IEEE80211_CONF_PS)
2051 if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)
2052 ieee80211_send_nullfunc(local, sdata, 1);
2054 local->hw.conf.flags |= IEEE80211_CONF_PS;
2055 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
2058 void ieee80211_dynamic_ps_timer(unsigned long data)
2060 struct ieee80211_local *local = (void *) data;
2062 queue_work(local->hw.workqueue, &local->dynamic_ps_enable_work);
2065 void ieee80211_send_nullfunc(struct ieee80211_local *local,
2066 struct ieee80211_sub_if_data *sdata,
2069 struct sk_buff *skb;
2070 struct ieee80211_hdr *nullfunc;
2073 if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION))
2076 skb = dev_alloc_skb(local->hw.extra_tx_headroom + 24);
2078 printk(KERN_DEBUG "%s: failed to allocate buffer for nullfunc "
2079 "frame\n", sdata->dev->name);
2082 skb_reserve(skb, local->hw.extra_tx_headroom);
2084 nullfunc = (struct ieee80211_hdr *) skb_put(skb, 24);
2085 memset(nullfunc, 0, 24);
2086 fc = cpu_to_le16(IEEE80211_FTYPE_DATA | IEEE80211_STYPE_NULLFUNC |
2087 IEEE80211_FCTL_TODS);
2089 fc |= cpu_to_le16(IEEE80211_FCTL_PM);
2090 nullfunc->frame_control = fc;
2091 memcpy(nullfunc->addr1, sdata->u.mgd.bssid, ETH_ALEN);
2092 memcpy(nullfunc->addr2, sdata->dev->dev_addr, ETH_ALEN);
2093 memcpy(nullfunc->addr3, sdata->u.mgd.bssid, ETH_ALEN);
2095 ieee80211_tx_skb(sdata, skb, 0);