blob: 132938b073dc061327e8e3e47e00a8919119481e [file] [log] [blame]
Jiri Bencf0706e822007-05-05 11:45:53 -07001/*
2 * BSS client mode implementation
Jouni Malinen5394af42009-01-08 13:31:59 +02003 * Copyright 2003-2008, Jouni Malinen <j@w1.fi>
Jiri Bencf0706e822007-05-05 11:45:53 -07004 * Copyright 2004, Instant802 Networks, Inc.
5 * Copyright 2005, Devicescape Software, Inc.
6 * Copyright 2006-2007 Jiri Benc <jbenc@suse.cz>
7 * Copyright 2007, Michael Wu <flamingice@sourmilk.net>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 */
13
Geert Uytterhoeven5b323ed2007-05-08 18:40:27 -070014#include <linux/delay.h>
Jiri Bencf0706e822007-05-05 11:45:53 -070015#include <linux/if_ether.h>
16#include <linux/skbuff.h>
Jiri Bencf0706e822007-05-05 11:45:53 -070017#include <linux/if_arp.h>
Jiri Bencf0706e822007-05-05 11:45:53 -070018#include <linux/etherdevice.h>
Johannes Bergd0709a62008-02-25 16:27:46 +010019#include <linux/rtnetlink.h>
Jiri Bencf0706e822007-05-05 11:45:53 -070020#include <net/mac80211.h>
Johannes Berg472dbc42008-09-11 00:01:49 +020021#include <asm/unaligned.h>
Johannes Berg60f8b392008-09-08 17:44:22 +020022
Jiri Bencf0706e822007-05-05 11:45:53 -070023#include "ieee80211_i.h"
Johannes Berg2c8dccc2008-04-08 15:14:40 -040024#include "rate.h"
25#include "led.h"
Jiri Bencf0706e822007-05-05 11:45:53 -070026
Ron Rindjunsky6042a3e2008-08-08 01:50:46 +030027#define IEEE80211_ASSOC_SCANS_MAX_TRIES 2
Jiri Bencf0706e822007-05-05 11:45:53 -070028#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)
Kalle Valo15b7b062009-03-22 21:57:14 +020033#define IEEE80211_PROBE_IDLE_TIME (60 * HZ)
Jiri Bencf0706e822007-05-05 11:45:53 -070034#define IEEE80211_RETRY_AUTH_INTERVAL (1 * HZ)
Jiri Bencf0706e822007-05-05 11:45:53 -070035
Johannes Berg5484e232008-09-08 17:44:27 +020036/* utils */
37static int ecw2cw(int ecw)
Johannes Berg60f8b392008-09-08 17:44:22 +020038{
Johannes Berg5484e232008-09-08 17:44:27 +020039 return (1 << ecw) - 1;
Johannes Berg60f8b392008-09-08 17:44:22 +020040}
41
Johannes Bergc2b13452008-09-11 00:01:55 +020042static u8 *ieee80211_bss_get_ie(struct ieee80211_bss *bss, u8 ie)
Jouni Malinen43ac2ca2008-08-15 22:21:27 +030043{
44 u8 *end, *pos;
45
Johannes Berg00d3f142009-02-10 21:26:00 +010046 pos = bss->cbss.information_elements;
Jouni Malinen43ac2ca2008-08-15 22:21:27 +030047 if (pos == NULL)
48 return NULL;
Johannes Berg00d3f142009-02-10 21:26:00 +010049 end = pos + bss->cbss.len_information_elements;
Jouni Malinen43ac2ca2008-08-15 22:21:27 +030050
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
Johannes Bergc2b13452008-09-11 00:01:55 +020062static int ieee80211_compatible_rates(struct ieee80211_bss *bss,
Johannes Berg9ac19a92008-09-09 10:57:09 +020063 struct ieee80211_supported_band *sband,
Johannes Berg881d9482009-01-21 15:13:48 +010064 u32 *rates)
Johannes Berg9ac19a92008-09-09 10:57:09 +020065{
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
Johannes Berg9c6bd792008-09-11 00:01:52 +020083/* frame sending functions */
84
Johannes Berg46900292009-02-15 12:44:28 +010085static void ieee80211_send_assoc(struct ieee80211_sub_if_data *sdata)
Johannes Berg60f8b392008-09-08 17:44:22 +020086{
Johannes Berg46900292009-02-15 12:44:28 +010087 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg9ac19a92008-09-09 10:57:09 +020088 struct ieee80211_local *local = sdata->local;
89 struct sk_buff *skb;
90 struct ieee80211_mgmt *mgmt;
Jouni Malinen65fc73a2009-03-20 21:21:16 +020091 u8 *pos, *ies, *ht_ie;
Johannes Berg9ac19a92008-09-09 10:57:09 +020092 int i, len, count, rates_len, supp_rates_len;
93 u16 capab;
Johannes Bergc2b13452008-09-11 00:01:55 +020094 struct ieee80211_bss *bss;
Johannes Berg9ac19a92008-09-09 10:57:09 +020095 int wmm = 0;
96 struct ieee80211_supported_band *sband;
Johannes Berg881d9482009-01-21 15:13:48 +010097 u32 rates = 0;
Johannes Berg9ac19a92008-09-09 10:57:09 +020098
99 skb = dev_alloc_skb(local->hw.extra_tx_headroom +
Johannes Berg46900292009-02-15 12:44:28 +0100100 sizeof(*mgmt) + 200 + ifmgd->extra_ie_len +
Jouni Malinen65fc73a2009-03-20 21:21:16 +0200101 ifmgd->ssid_len);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200102 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
Johannes Berg46900292009-02-15 12:44:28 +0100111 capab = ifmgd->capab;
Johannes Berg9ac19a92008-09-09 10:57:09 +0200112
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
Johannes Berg46900292009-02-15 12:44:28 +0100120 bss = ieee80211_rx_bss_get(local, ifmgd->bssid,
Johannes Berg9ac19a92008-09-09 10:57:09 +0200121 local->hw.conf.channel->center_freq,
Johannes Berg46900292009-02-15 12:44:28 +0100122 ifmgd->ssid, ifmgd->ssid_len);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200123 if (bss) {
Johannes Berg00d3f142009-02-10 21:26:00 +0100124 if (bss->cbss.capability & WLAN_CAPABILITY_PRIVACY)
Johannes Berg9ac19a92008-09-09 10:57:09 +0200125 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
Johannes Berg00d3f142009-02-10 21:26:00 +0100135 if ((bss->cbss.capability & WLAN_CAPABILITY_SPECTRUM_MGMT) &&
Johannes Berg9ac19a92008-09-09 10:57:09 +0200136 (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);
Johannes Berg46900292009-02-15 12:44:28 +0100147 memcpy(mgmt->da, ifmgd->bssid, ETH_ALEN);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200148 memcpy(mgmt->sa, sdata->dev->dev_addr, ETH_ALEN);
Johannes Berg46900292009-02-15 12:44:28 +0100149 memcpy(mgmt->bssid, ifmgd->bssid, ETH_ALEN);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200150
Johannes Berg46900292009-02-15 12:44:28 +0100151 if (ifmgd->flags & IEEE80211_STA_PREV_BSSID_SET) {
Johannes Berg9ac19a92008-09-09 10:57:09 +0200152 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);
Johannes Berg46900292009-02-15 12:44:28 +0100158 memcpy(mgmt->u.reassoc_req.current_ap, ifmgd->prev_bssid,
Johannes Berg9ac19a92008-09-09 10:57:09 +0200159 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);
Rami Rosen13554122008-12-16 22:38:29 +0200165 mgmt->u.assoc_req.listen_interval =
Johannes Berg9ac19a92008-09-09 10:57:09 +0200166 cpu_to_le16(local->hw.conf.listen_interval);
167 }
168
169 /* SSID */
Johannes Berg46900292009-02-15 12:44:28 +0100170 ies = pos = skb_put(skb, 2 + ifmgd->ssid_len);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200171 *pos++ = WLAN_EID_SSID;
Johannes Berg46900292009-02-15 12:44:28 +0100172 *pos++ = ifmgd->ssid_len;
173 memcpy(pos, ifmgd->ssid, ifmgd->ssid_len);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200174
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
Johannes Berg46900292009-02-15 12:44:28 +0100228 if (ifmgd->extra_ie) {
229 pos = skb_put(skb, ifmgd->extra_ie_len);
230 memcpy(pos, ifmgd->extra_ie, ifmgd->extra_ie_len);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200231 }
232
Johannes Berg46900292009-02-15 12:44:28 +0100233 if (wmm && (ifmgd->flags & IEEE80211_STA_WMM_ENABLED)) {
Johannes Berg9ac19a92008-09-09 10:57:09 +0200234 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 */
Vasanthakumar Thiagarajaneb469362008-12-23 21:30:50 +0530247 /*
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 */
Johannes Berg46900292009-02-15 12:44:28 +0100253 if (wmm && (ifmgd->flags & IEEE80211_STA_WMM_ENABLED) &&
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200254 sband->ht_cap.ht_supported &&
255 (ht_ie = ieee80211_bss_get_ie(bss, WLAN_EID_HT_INFORMATION)) &&
Vasanthakumar Thiagarajaneb469362008-12-23 21:30:50 +0530256 ht_ie[1] >= sizeof(struct ieee80211_ht_info) &&
Johannes Berg46900292009-02-15 12:44:28 +0100257 (!(ifmgd->flags & IEEE80211_STA_TKIP_WEP_USED))) {
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200258 struct ieee80211_ht_info *ht_info =
259 (struct ieee80211_ht_info *)(ht_ie + 2);
260 u16 cap = sband->ht_cap.cap;
Johannes Berg9ac19a92008-09-09 10:57:09 +0200261 __le16 tmp;
262 u32 flags = local->hw.conf.channel->flags;
263
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200264 switch (ht_info->ht_param & IEEE80211_HT_PARAM_CHA_SEC_OFFSET) {
265 case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
Johannes Berg9ac19a92008-09-09 10:57:09 +0200266 if (flags & IEEE80211_CHAN_NO_FAT_ABOVE) {
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200267 cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
Johannes Berg9ac19a92008-09-09 10:57:09 +0200268 cap &= ~IEEE80211_HT_CAP_SGI_40;
269 }
270 break;
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200271 case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
Johannes Berg9ac19a92008-09-09 10:57:09 +0200272 if (flags & IEEE80211_CHAN_NO_FAT_BELOW) {
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200273 cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
Johannes Berg9ac19a92008-09-09 10:57:09 +0200274 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 */
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200287 *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));
Johannes Berg9ac19a92008-09-09 10:57:09 +0200290 }
291
Johannes Berg46900292009-02-15 12:44:28 +0100292 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);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200297
Johannes Berge50db652008-09-09 15:07:09 +0200298 ieee80211_tx_skb(sdata, skb, 0);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200299}
300
301
Johannes Bergef422bc2008-09-09 10:58:25 +0200302static void ieee80211_send_deauth_disassoc(struct ieee80211_sub_if_data *sdata,
303 u16 stype, u16 reason)
Johannes Berg9ac19a92008-09-09 10:57:09 +0200304{
305 struct ieee80211_local *local = sdata->local;
Johannes Berg46900292009-02-15 12:44:28 +0100306 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg9ac19a92008-09-09 10:57:09 +0200307 struct sk_buff *skb;
308 struct ieee80211_mgmt *mgmt;
309
Jouni Malinen65fc73a2009-03-20 21:21:16 +0200310 skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*mgmt));
Johannes Berg9ac19a92008-09-09 10:57:09 +0200311 if (!skb) {
Johannes Bergef422bc2008-09-09 10:58:25 +0200312 printk(KERN_DEBUG "%s: failed to allocate buffer for "
313 "deauth/disassoc frame\n", sdata->dev->name);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200314 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);
Johannes Berg46900292009-02-15 12:44:28 +0100320 memcpy(mgmt->da, ifmgd->bssid, ETH_ALEN);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200321 memcpy(mgmt->sa, sdata->dev->dev_addr, ETH_ALEN);
Johannes Berg46900292009-02-15 12:44:28 +0100322 memcpy(mgmt->bssid, ifmgd->bssid, ETH_ALEN);
Johannes Bergef422bc2008-09-09 10:58:25 +0200323 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT | stype);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200324 skb_put(skb, 2);
Johannes Bergef422bc2008-09-09 10:58:25 +0200325 /* u.deauth.reason_code == u.disassoc.reason_code */
Johannes Berg9ac19a92008-09-09 10:57:09 +0200326 mgmt->u.deauth.reason_code = cpu_to_le16(reason);
327
Johannes Berg46900292009-02-15 12:44:28 +0100328 ieee80211_tx_skb(sdata, skb, ifmgd->flags & IEEE80211_STA_MFP_ENABLED);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200329}
330
Kalle Valo572e0012009-02-10 17:09:31 +0200331void ieee80211_send_pspoll(struct ieee80211_local *local,
332 struct ieee80211_sub_if_data *sdata)
333{
Johannes Berg46900292009-02-15 12:44:28 +0100334 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Kalle Valo572e0012009-02-10 17:09:31 +0200335 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);
Johannes Berg46900292009-02-15 12:44:28 +0100351 pspoll->aid = cpu_to_le16(ifmgd->aid);
Kalle Valo572e0012009-02-10 17:09:31 +0200352
353 /* aid in PS-Poll has its two MSBs each set to 1 */
354 pspoll->aid |= cpu_to_le16(1 << 15 | 1 << 14);
355
Johannes Berg46900292009-02-15 12:44:28 +0100356 memcpy(pspoll->bssid, ifmgd->bssid, ETH_ALEN);
Kalle Valo572e0012009-02-10 17:09:31 +0200357 memcpy(pspoll->ta, sdata->dev->dev_addr, ETH_ALEN);
358
359 ieee80211_tx_skb(sdata, skb, 0);
Kalle Valo572e0012009-02-10 17:09:31 +0200360}
361
Johannes Berg60f8b392008-09-08 17:44:22 +0200362/* MLME */
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200363static void ieee80211_sta_wmm_params(struct ieee80211_local *local,
Johannes Berg46900292009-02-15 12:44:28 +0100364 struct ieee80211_if_managed *ifmgd,
Jiri Bencf0706e822007-05-05 11:45:53 -0700365 u8 *wmm_param, size_t wmm_param_len)
366{
Jiri Bencf0706e822007-05-05 11:45:53 -0700367 struct ieee80211_tx_queue_params params;
368 size_t left;
369 int count;
370 u8 *pos;
371
Johannes Berg46900292009-02-15 12:44:28 +0100372 if (!(ifmgd->flags & IEEE80211_STA_WMM_ENABLED))
Johannes Berg3434fbd2008-05-03 00:59:37 +0200373 return;
374
375 if (!wmm_param)
376 return;
377
Jiri Bencf0706e822007-05-05 11:45:53 -0700378 if (wmm_param_len < 8 || wmm_param[5] /* version */ != 1)
379 return;
380 count = wmm_param[6] & 0x0f;
Johannes Berg46900292009-02-15 12:44:28 +0100381 if (count == ifmgd->wmm_last_param_set)
Jiri Bencf0706e822007-05-05 11:45:53 -0700382 return;
Johannes Berg46900292009-02-15 12:44:28 +0100383 ifmgd->wmm_last_param_set = count;
Jiri Bencf0706e822007-05-05 11:45:53 -0700384
385 pos = wmm_param + 8;
386 left = wmm_param_len - 8;
387
388 memset(&params, 0, sizeof(params));
389
Jiri Bencf0706e822007-05-05 11:45:53 -0700390 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) {
Jouni Malinen0eeb59f2009-03-05 17:23:46 +0200397 case 1: /* AC_BK */
Johannes Berge100bb62008-04-30 18:51:21 +0200398 queue = 3;
Johannes Berg988c0f72008-04-17 19:21:22 +0200399 if (acm)
Jouni Malinen0eeb59f2009-03-05 17:23:46 +0200400 local->wmm_acm |= BIT(1) | BIT(2); /* BK/- */
Jiri Bencf0706e822007-05-05 11:45:53 -0700401 break;
Jouni Malinen0eeb59f2009-03-05 17:23:46 +0200402 case 2: /* AC_VI */
Johannes Berge100bb62008-04-30 18:51:21 +0200403 queue = 1;
Johannes Berg988c0f72008-04-17 19:21:22 +0200404 if (acm)
Jouni Malinen0eeb59f2009-03-05 17:23:46 +0200405 local->wmm_acm |= BIT(4) | BIT(5); /* CL/VI */
Jiri Bencf0706e822007-05-05 11:45:53 -0700406 break;
Jouni Malinen0eeb59f2009-03-05 17:23:46 +0200407 case 3: /* AC_VO */
Johannes Berge100bb62008-04-30 18:51:21 +0200408 queue = 0;
Johannes Berg988c0f72008-04-17 19:21:22 +0200409 if (acm)
Jouni Malinen0eeb59f2009-03-05 17:23:46 +0200410 local->wmm_acm |= BIT(6) | BIT(7); /* VO/NC */
Jiri Bencf0706e822007-05-05 11:45:53 -0700411 break;
Jouni Malinen0eeb59f2009-03-05 17:23:46 +0200412 case 0: /* AC_BE */
Jiri Bencf0706e822007-05-05 11:45:53 -0700413 default:
Johannes Berge100bb62008-04-30 18:51:21 +0200414 queue = 2;
Johannes Berg988c0f72008-04-17 19:21:22 +0200415 if (acm)
Jouni Malinen0eeb59f2009-03-05 17:23:46 +0200416 local->wmm_acm |= BIT(0) | BIT(3); /* BE/EE */
Jiri Bencf0706e822007-05-05 11:45:53 -0700417 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);
Johannes Bergf434b2d2008-07-10 11:22:31 +0200423 params.txop = get_unaligned_le16(pos + 2);
Johannes Bergf4ea83d2008-06-30 15:10:46 +0200424#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Jiri Bencf0706e822007-05-05 11:45:53 -0700425 printk(KERN_DEBUG "%s: WMM queue=%d aci=%d acm=%d aifs=%d "
Johannes Berg3330d7b2008-02-10 16:49:38 +0100426 "cWmin=%d cWmax=%d txop=%d\n",
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200427 local->mdev->name, queue, aci, acm, params.aifs, params.cw_min,
Johannes Berg3330d7b2008-02-10 16:49:38 +0100428 params.cw_max, params.txop);
429#endif
Jouni Malinen0eeb59f2009-03-05 17:23:46 +0200430 if (local->ops->conf_tx &&
431 local->ops->conf_tx(local_to_hw(local), queue, &params)) {
Jiri Bencf0706e822007-05-05 11:45:53 -0700432 printk(KERN_DEBUG "%s: failed to set TX queue "
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200433 "parameters for queue %d\n", local->mdev->name, queue);
Jiri Bencf0706e822007-05-05 11:45:53 -0700434 }
435 }
436}
437
Kalle Valo1fb36062009-02-10 17:09:24 +0200438static bool ieee80211_check_tim(struct ieee802_11_elems *elems, u16 aid)
Vivek Natarajana97b77b2008-12-23 18:39:02 -0800439{
440 u8 mask;
441 u8 index, indexn1, indexn2;
442 struct ieee80211_tim_ie *tim = (struct ieee80211_tim_ie *) elems->tim;
443
Johannes Berg60375542009-04-17 00:54:23 +0200444 if (unlikely(!tim || elems->tim_len < 4))
445 return false;
446
Vivek Natarajana97b77b2008-12-23 18:39:02 -0800447 aid &= 0x3fff;
448 index = aid / 8;
449 mask = 1 << (aid & 7);
450
Vivek Natarajana97b77b2008-12-23 18:39:02 -0800451 indexn1 = tim->bitmap_ctrl & 0xfe;
452 indexn2 = elems->tim_len + indexn1 - 4;
453
454 if (index < indexn1 || index > indexn2)
455 return false;
456
457 index -= indexn1;
458
459 return !!(tim->virtual_map[index] & mask);
460}
461
Johannes Berg7a5158e2008-10-08 10:59:33 +0200462static u32 ieee80211_handle_bss_capability(struct ieee80211_sub_if_data *sdata,
463 u16 capab, bool erp_valid, u8 erp)
Daniel Drake56282212007-07-10 19:32:10 +0200464{
Johannes Bergbda39332008-10-11 01:51:51 +0200465 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
Tomas Winklerebd74482008-07-01 10:44:50 +0300466#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Johannes Berg46900292009-02-15 12:44:28 +0100467 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Tomas Winklerebd74482008-07-01 10:44:50 +0300468#endif
Johannes Berg471b3ef2007-12-28 14:32:58 +0100469 u32 changed = 0;
Johannes Berg7a5158e2008-10-08 10:59:33 +0200470 bool use_protection;
471 bool use_short_preamble;
472 bool use_short_slot;
473
474 if (erp_valid) {
475 use_protection = (erp & WLAN_ERP_USE_PROTECTION) != 0;
476 use_short_preamble = (erp & WLAN_ERP_BARKER_PREAMBLE) == 0;
477 } else {
478 use_protection = false;
479 use_short_preamble = !!(capab & WLAN_CAPABILITY_SHORT_PREAMBLE);
480 }
481
482 use_short_slot = !!(capab & WLAN_CAPABILITY_SHORT_SLOT_TIME);
Daniel Drake56282212007-07-10 19:32:10 +0200483
Johannes Berg471b3ef2007-12-28 14:32:58 +0100484 if (use_protection != bss_conf->use_cts_prot) {
Johannes Bergf4ea83d2008-06-30 15:10:46 +0200485#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Daniel Drake56282212007-07-10 19:32:10 +0200486 if (net_ratelimit()) {
Johannes Berg0c68ae262008-10-27 15:56:10 -0700487 printk(KERN_DEBUG "%s: CTS protection %s (BSSID=%pM)\n",
Johannes Berg471b3ef2007-12-28 14:32:58 +0100488 sdata->dev->name,
Daniel Drake56282212007-07-10 19:32:10 +0200489 use_protection ? "enabled" : "disabled",
Johannes Berg46900292009-02-15 12:44:28 +0100490 ifmgd->bssid);
Daniel Drake56282212007-07-10 19:32:10 +0200491 }
Johannes Bergf4ea83d2008-06-30 15:10:46 +0200492#endif
Johannes Berg471b3ef2007-12-28 14:32:58 +0100493 bss_conf->use_cts_prot = use_protection;
494 changed |= BSS_CHANGED_ERP_CTS_PROT;
Daniel Drake56282212007-07-10 19:32:10 +0200495 }
Daniel Drake7e9ed182007-07-27 15:43:24 +0200496
Vladimir Koutnyd43c7b32008-03-31 17:05:03 +0200497 if (use_short_preamble != bss_conf->use_short_preamble) {
Johannes Bergf4ea83d2008-06-30 15:10:46 +0200498#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Daniel Drake7e9ed182007-07-27 15:43:24 +0200499 if (net_ratelimit()) {
500 printk(KERN_DEBUG "%s: switched to %s barker preamble"
Johannes Berg0c68ae262008-10-27 15:56:10 -0700501 " (BSSID=%pM)\n",
Johannes Berg471b3ef2007-12-28 14:32:58 +0100502 sdata->dev->name,
Vladimir Koutnyd43c7b32008-03-31 17:05:03 +0200503 use_short_preamble ? "short" : "long",
Johannes Berg46900292009-02-15 12:44:28 +0100504 ifmgd->bssid);
Daniel Drake7e9ed182007-07-27 15:43:24 +0200505 }
Johannes Bergf4ea83d2008-06-30 15:10:46 +0200506#endif
Vladimir Koutnyd43c7b32008-03-31 17:05:03 +0200507 bss_conf->use_short_preamble = use_short_preamble;
Johannes Berg471b3ef2007-12-28 14:32:58 +0100508 changed |= BSS_CHANGED_ERP_PREAMBLE;
Daniel Drake7e9ed182007-07-27 15:43:24 +0200509 }
Daniel Draked9430a32007-07-27 15:43:24 +0200510
Johannes Berg7a5158e2008-10-08 10:59:33 +0200511 if (use_short_slot != bss_conf->use_short_slot) {
512#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
513 if (net_ratelimit()) {
Christian Lamparter391429c2009-01-18 02:24:15 +0100514 printk(KERN_DEBUG "%s: switched to %s slot time"
515 " (BSSID=%pM)\n",
Johannes Berg7a5158e2008-10-08 10:59:33 +0200516 sdata->dev->name,
517 use_short_slot ? "short" : "long",
Johannes Berg46900292009-02-15 12:44:28 +0100518 ifmgd->bssid);
Johannes Berg7a5158e2008-10-08 10:59:33 +0200519 }
520#endif
521 bss_conf->use_short_slot = use_short_slot;
522 changed |= BSS_CHANGED_ERP_SLOT;
John W. Linville50c4afb2008-04-15 14:09:27 -0400523 }
524
525 return changed;
526}
527
Johannes Berg46900292009-02-15 12:44:28 +0100528static void ieee80211_sta_send_apinfo(struct ieee80211_sub_if_data *sdata)
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200529{
530 union iwreq_data wrqu;
Johannes Berg46900292009-02-15 12:44:28 +0100531
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200532 memset(&wrqu, 0, sizeof(wrqu));
Johannes Berg46900292009-02-15 12:44:28 +0100533 if (sdata->u.mgd.flags & IEEE80211_STA_ASSOCIATED)
534 memcpy(wrqu.ap_addr.sa_data, sdata->u.mgd.bssid, ETH_ALEN);
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200535 wrqu.ap_addr.sa_family = ARPHRD_ETHER;
536 wireless_send_event(sdata->dev, SIOCGIWAP, &wrqu, NULL);
537}
538
Johannes Berg46900292009-02-15 12:44:28 +0100539static void ieee80211_sta_send_associnfo(struct ieee80211_sub_if_data *sdata)
Jiri Bencf0706e822007-05-05 11:45:53 -0700540{
Johannes Berg46900292009-02-15 12:44:28 +0100541 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Linus Torvalds74af0252008-09-05 12:38:09 -0700542 char *buf;
543 size_t len;
544 int i;
Jiri Bencf0706e822007-05-05 11:45:53 -0700545 union iwreq_data wrqu;
546
Johannes Berg46900292009-02-15 12:44:28 +0100547 if (!ifmgd->assocreq_ies && !ifmgd->assocresp_ies)
Linus Torvalds74af0252008-09-05 12:38:09 -0700548 return;
549
Johannes Berg46900292009-02-15 12:44:28 +0100550 buf = kmalloc(50 + 2 * (ifmgd->assocreq_ies_len +
551 ifmgd->assocresp_ies_len), GFP_KERNEL);
Linus Torvalds74af0252008-09-05 12:38:09 -0700552 if (!buf)
553 return;
554
555 len = sprintf(buf, "ASSOCINFO(");
Johannes Berg46900292009-02-15 12:44:28 +0100556 if (ifmgd->assocreq_ies) {
Linus Torvalds74af0252008-09-05 12:38:09 -0700557 len += sprintf(buf + len, "ReqIEs=");
Johannes Berg46900292009-02-15 12:44:28 +0100558 for (i = 0; i < ifmgd->assocreq_ies_len; i++) {
Linus Torvalds74af0252008-09-05 12:38:09 -0700559 len += sprintf(buf + len, "%02x",
Johannes Berg46900292009-02-15 12:44:28 +0100560 ifmgd->assocreq_ies[i]);
Linus Torvalds74af0252008-09-05 12:38:09 -0700561 }
Jiri Bencf0706e822007-05-05 11:45:53 -0700562 }
Johannes Berg46900292009-02-15 12:44:28 +0100563 if (ifmgd->assocresp_ies) {
564 if (ifmgd->assocreq_ies)
Linus Torvalds74af0252008-09-05 12:38:09 -0700565 len += sprintf(buf + len, " ");
566 len += sprintf(buf + len, "RespIEs=");
Johannes Berg46900292009-02-15 12:44:28 +0100567 for (i = 0; i < ifmgd->assocresp_ies_len; i++) {
Linus Torvalds74af0252008-09-05 12:38:09 -0700568 len += sprintf(buf + len, "%02x",
Johannes Berg46900292009-02-15 12:44:28 +0100569 ifmgd->assocresp_ies[i]);
Linus Torvalds74af0252008-09-05 12:38:09 -0700570 }
Jiri Bencf0706e822007-05-05 11:45:53 -0700571 }
Linus Torvalds74af0252008-09-05 12:38:09 -0700572 len += sprintf(buf + len, ")");
573
574 if (len > IW_CUSTOM_MAX) {
575 len = sprintf(buf, "ASSOCRESPIE=");
Johannes Berg46900292009-02-15 12:44:28 +0100576 for (i = 0; i < ifmgd->assocresp_ies_len; i++) {
Linus Torvalds74af0252008-09-05 12:38:09 -0700577 len += sprintf(buf + len, "%02x",
Johannes Berg46900292009-02-15 12:44:28 +0100578 ifmgd->assocresp_ies[i]);
Linus Torvalds74af0252008-09-05 12:38:09 -0700579 }
580 }
581
John W. Linvillead788b52008-10-01 15:45:02 -0400582 if (len <= IW_CUSTOM_MAX) {
583 memset(&wrqu, 0, sizeof(wrqu));
584 wrqu.data.length = len;
585 wireless_send_event(sdata->dev, IWEVCUSTOM, &wrqu, buf);
586 }
Linus Torvalds74af0252008-09-05 12:38:09 -0700587
588 kfree(buf);
Jiri Bencf0706e822007-05-05 11:45:53 -0700589}
590
591
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200592static void ieee80211_set_associated(struct ieee80211_sub_if_data *sdata,
Johannes Bergae5eb022008-10-14 16:58:37 +0200593 u32 bss_info_changed)
Jiri Bencf0706e822007-05-05 11:45:53 -0700594{
Johannes Berg46900292009-02-15 12:44:28 +0100595 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg471b3ef2007-12-28 14:32:58 +0100596 struct ieee80211_local *local = sdata->local;
Tomas Winkler38668c02008-03-28 16:33:32 -0700597 struct ieee80211_conf *conf = &local_to_hw(local)->conf;
Jiri Bencf0706e822007-05-05 11:45:53 -0700598
Johannes Bergc2b13452008-09-11 00:01:55 +0200599 struct ieee80211_bss *bss;
Jiri Slabyd6f2da52007-08-28 17:01:54 -0400600
Johannes Bergae5eb022008-10-14 16:58:37 +0200601 bss_info_changed |= BSS_CHANGED_ASSOC;
Johannes Berg46900292009-02-15 12:44:28 +0100602 ifmgd->flags |= IEEE80211_STA_ASSOCIATED;
Jiri Slabyd6f2da52007-08-28 17:01:54 -0400603
Johannes Berg46900292009-02-15 12:44:28 +0100604 bss = ieee80211_rx_bss_get(local, ifmgd->bssid,
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200605 conf->channel->center_freq,
Johannes Berg46900292009-02-15 12:44:28 +0100606 ifmgd->ssid, ifmgd->ssid_len);
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200607 if (bss) {
608 /* set timing information */
Johannes Berg00d3f142009-02-10 21:26:00 +0100609 sdata->vif.bss_conf.beacon_int = bss->cbss.beacon_interval;
610 sdata->vif.bss_conf.timestamp = bss->cbss.tsf;
Johannes Bergbda39332008-10-11 01:51:51 +0200611 sdata->vif.bss_conf.dtim_period = bss->dtim_period;
Tomas Winkler21c0cbe2008-03-28 16:33:34 -0700612
Johannes Bergae5eb022008-10-14 16:58:37 +0200613 bss_info_changed |= ieee80211_handle_bss_capability(sdata,
Johannes Berg00d3f142009-02-10 21:26:00 +0100614 bss->cbss.capability, bss->has_erp_value, bss->erp_value);
Tomas Winkler21c0cbe2008-03-28 16:33:34 -0700615
Kalle Valo04de8382009-03-22 21:57:35 +0200616 cfg80211_hold_bss(&bss->cbss);
617
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200618 ieee80211_rx_bss_put(local, bss);
Jiri Bencf0706e822007-05-05 11:45:53 -0700619 }
Johannes Berg471b3ef2007-12-28 14:32:58 +0100620
Johannes Berg46900292009-02-15 12:44:28 +0100621 ifmgd->flags |= IEEE80211_STA_PREV_BSSID_SET;
622 memcpy(ifmgd->prev_bssid, sdata->u.mgd.bssid, ETH_ALEN);
623 ieee80211_sta_send_associnfo(sdata);
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200624
Johannes Berg46900292009-02-15 12:44:28 +0100625 ifmgd->last_probe = jiffies;
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200626 ieee80211_led_assoc(local, 1);
627
Johannes Bergbda39332008-10-11 01:51:51 +0200628 sdata->vif.bss_conf.assoc = 1;
Johannes Berg96dd22a2008-09-11 00:01:57 +0200629 /*
630 * For now just always ask the driver to update the basic rateset
631 * when we have associated, we aren't checking whether it actually
632 * changed or not.
633 */
Johannes Bergae5eb022008-10-14 16:58:37 +0200634 bss_info_changed |= BSS_CHANGED_BASIC_RATES;
635 ieee80211_bss_info_change_notify(sdata, bss_info_changed);
Guy Cohen8db93692008-07-03 19:56:13 +0300636
Johannes Berg4be8c382009-01-07 18:28:20 +0100637 if (local->powersave) {
638 if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS) &&
639 local->hw.conf.dynamic_ps_timeout > 0) {
Kalle Valo520eb822008-12-18 23:35:27 +0200640 mod_timer(&local->dynamic_ps_timer, jiffies +
Johannes Berg46f2c4b2009-01-06 18:13:18 +0100641 msecs_to_jiffies(
642 local->hw.conf.dynamic_ps_timeout));
Johannes Berg4be8c382009-01-07 18:28:20 +0100643 } else {
644 if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)
645 ieee80211_send_nullfunc(local, sdata, 1);
Kalle Valo520eb822008-12-18 23:35:27 +0200646 conf->flags |= IEEE80211_CONF_PS;
Johannes Berg4be8c382009-01-07 18:28:20 +0100647 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
Kalle Valo520eb822008-12-18 23:35:27 +0200648 }
Kalle Valoe0cb6862008-12-18 23:35:13 +0200649 }
650
Tomas Winkler24e64622008-09-08 17:33:40 +0200651 netif_tx_start_all_queues(sdata->dev);
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200652 netif_carrier_on(sdata->dev);
Guy Cohen8db93692008-07-03 19:56:13 +0300653
Johannes Berg46900292009-02-15 12:44:28 +0100654 ieee80211_sta_send_apinfo(sdata);
Jiri Bencf0706e822007-05-05 11:45:53 -0700655}
656
Johannes Berg46900292009-02-15 12:44:28 +0100657static void ieee80211_direct_probe(struct ieee80211_sub_if_data *sdata)
Ron Rindjunsky9859b812008-08-09 03:02:19 +0300658{
Johannes Berg46900292009-02-15 12:44:28 +0100659 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Helmut Schaa11432372009-03-12 14:04:34 +0100660 struct ieee80211_local *local = sdata->local;
Johannes Berg46900292009-02-15 12:44:28 +0100661
662 ifmgd->direct_probe_tries++;
663 if (ifmgd->direct_probe_tries > IEEE80211_AUTH_MAX_TRIES) {
Johannes Berg0c68ae262008-10-27 15:56:10 -0700664 printk(KERN_DEBUG "%s: direct probe to AP %pM timed out\n",
Johannes Berg46900292009-02-15 12:44:28 +0100665 sdata->dev->name, ifmgd->bssid);
666 ifmgd->state = IEEE80211_STA_MLME_DISABLED;
667 ieee80211_sta_send_apinfo(sdata);
Vasanthakumar Thiagarajan7a947082009-02-04 18:28:48 +0530668
669 /*
670 * Most likely AP is not in the range so remove the
671 * bss information associated to the AP
672 */
Johannes Berg46900292009-02-15 12:44:28 +0100673 ieee80211_rx_bss_remove(sdata, ifmgd->bssid,
Vasanthakumar Thiagarajan7a947082009-02-04 18:28:48 +0530674 sdata->local->hw.conf.channel->center_freq,
Johannes Berg46900292009-02-15 12:44:28 +0100675 ifmgd->ssid, ifmgd->ssid_len);
Helmut Schaa11432372009-03-12 14:04:34 +0100676
677 /*
678 * We might have a pending scan which had no chance to run yet
679 * due to state == IEEE80211_STA_MLME_DIRECT_PROBE.
680 * Hence, queue the STAs work again
681 */
682 queue_work(local->hw.workqueue, &ifmgd->work);
Ron Rindjunsky9859b812008-08-09 03:02:19 +0300683 return;
684 }
685
Johannes Berg0c68ae262008-10-27 15:56:10 -0700686 printk(KERN_DEBUG "%s: direct probe to AP %pM try %d\n",
Johannes Berg46900292009-02-15 12:44:28 +0100687 sdata->dev->name, ifmgd->bssid,
688 ifmgd->direct_probe_tries);
Ron Rindjunsky9859b812008-08-09 03:02:19 +0300689
Johannes Berg46900292009-02-15 12:44:28 +0100690 ifmgd->state = IEEE80211_STA_MLME_DIRECT_PROBE;
Ron Rindjunsky9859b812008-08-09 03:02:19 +0300691
Johannes Berg46900292009-02-15 12:44:28 +0100692 set_bit(IEEE80211_STA_REQ_DIRECT_PROBE, &ifmgd->request);
Ron Rindjunsky9859b812008-08-09 03:02:19 +0300693
694 /* Direct probe is sent to broadcast address as some APs
695 * will not answer to direct packet in unassociated state.
696 */
697 ieee80211_send_probe_req(sdata, NULL,
Jouni Malinen70692ad2009-02-16 19:39:13 +0200698 ifmgd->ssid, ifmgd->ssid_len, NULL, 0);
Ron Rindjunsky9859b812008-08-09 03:02:19 +0300699
Johannes Berg46900292009-02-15 12:44:28 +0100700 mod_timer(&ifmgd->timer, jiffies + IEEE80211_AUTH_TIMEOUT);
Ron Rindjunsky9859b812008-08-09 03:02:19 +0300701}
702
Jiri Bencf0706e822007-05-05 11:45:53 -0700703
Johannes Berg46900292009-02-15 12:44:28 +0100704static void ieee80211_authenticate(struct ieee80211_sub_if_data *sdata)
Jiri Bencf0706e822007-05-05 11:45:53 -0700705{
Johannes Berg46900292009-02-15 12:44:28 +0100706 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Helmut Schaa11432372009-03-12 14:04:34 +0100707 struct ieee80211_local *local = sdata->local;
Jouni Malinen636a5d32009-03-19 13:39:22 +0200708 u8 *ies;
709 size_t ies_len;
Johannes Berg46900292009-02-15 12:44:28 +0100710
711 ifmgd->auth_tries++;
712 if (ifmgd->auth_tries > IEEE80211_AUTH_MAX_TRIES) {
Johannes Berg0c68ae262008-10-27 15:56:10 -0700713 printk(KERN_DEBUG "%s: authentication with AP %pM"
Jiri Bencf0706e822007-05-05 11:45:53 -0700714 " timed out\n",
Johannes Berg46900292009-02-15 12:44:28 +0100715 sdata->dev->name, ifmgd->bssid);
716 ifmgd->state = IEEE80211_STA_MLME_DISABLED;
717 ieee80211_sta_send_apinfo(sdata);
718 ieee80211_rx_bss_remove(sdata, ifmgd->bssid,
Vasanthakumar Thiagarajan7a947082009-02-04 18:28:48 +0530719 sdata->local->hw.conf.channel->center_freq,
Johannes Berg46900292009-02-15 12:44:28 +0100720 ifmgd->ssid, ifmgd->ssid_len);
Helmut Schaa11432372009-03-12 14:04:34 +0100721
722 /*
723 * We might have a pending scan which had no chance to run yet
724 * due to state == IEEE80211_STA_MLME_AUTHENTICATE.
725 * Hence, queue the STAs work again
726 */
727 queue_work(local->hw.workqueue, &ifmgd->work);
Jiri Bencf0706e822007-05-05 11:45:53 -0700728 return;
729 }
730
Johannes Berg46900292009-02-15 12:44:28 +0100731 ifmgd->state = IEEE80211_STA_MLME_AUTHENTICATE;
Johannes Berg0c68ae262008-10-27 15:56:10 -0700732 printk(KERN_DEBUG "%s: authenticate with AP %pM\n",
Johannes Berg46900292009-02-15 12:44:28 +0100733 sdata->dev->name, ifmgd->bssid);
Jiri Bencf0706e822007-05-05 11:45:53 -0700734
Jouni Malinen636a5d32009-03-19 13:39:22 +0200735 if (ifmgd->flags & IEEE80211_STA_EXT_SME) {
736 ies = ifmgd->sme_auth_ie;
737 ies_len = ifmgd->sme_auth_ie_len;
738 } else {
739 ies = NULL;
740 ies_len = 0;
741 }
742 ieee80211_send_auth(sdata, 1, ifmgd->auth_alg, ies, ies_len,
Johannes Berg46900292009-02-15 12:44:28 +0100743 ifmgd->bssid, 0);
744 ifmgd->auth_transaction = 2;
Jiri Bencf0706e822007-05-05 11:45:53 -0700745
Johannes Berg46900292009-02-15 12:44:28 +0100746 mod_timer(&ifmgd->timer, jiffies + IEEE80211_AUTH_TIMEOUT);
Jiri Bencf0706e822007-05-05 11:45:53 -0700747}
748
Vivek Natarajan5925d972008-11-21 22:19:50 -0800749/*
750 * The disassoc 'reason' argument can be either our own reason
751 * if self disconnected or a reason code from the AP.
752 */
Tomas Winkleraa458d12008-09-09 00:32:12 +0300753static void ieee80211_set_disassoc(struct ieee80211_sub_if_data *sdata,
Johannes Berg46900292009-02-15 12:44:28 +0100754 bool deauth, bool self_disconnected,
755 u16 reason)
Tomas Winkleraa458d12008-09-09 00:32:12 +0300756{
Johannes Berg46900292009-02-15 12:44:28 +0100757 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Tomas Winkleraa458d12008-09-09 00:32:12 +0300758 struct ieee80211_local *local = sdata->local;
Kalle Valo04de8382009-03-22 21:57:35 +0200759 struct ieee80211_conf *conf = &local_to_hw(local)->conf;
760 struct ieee80211_bss *bss;
Tomas Winkleraa458d12008-09-09 00:32:12 +0300761 struct sta_info *sta;
Kalle Valoe0cb6862008-12-18 23:35:13 +0200762 u32 changed = 0, config_changed = 0;
Tomas Winkleraa458d12008-09-09 00:32:12 +0300763
764 rcu_read_lock();
765
Johannes Berg46900292009-02-15 12:44:28 +0100766 sta = sta_info_get(local, ifmgd->bssid);
Tomas Winkleraa458d12008-09-09 00:32:12 +0300767 if (!sta) {
768 rcu_read_unlock();
769 return;
770 }
771
772 if (deauth) {
Johannes Berg46900292009-02-15 12:44:28 +0100773 ifmgd->direct_probe_tries = 0;
774 ifmgd->auth_tries = 0;
Tomas Winkleraa458d12008-09-09 00:32:12 +0300775 }
Johannes Berg46900292009-02-15 12:44:28 +0100776 ifmgd->assoc_scan_tries = 0;
777 ifmgd->assoc_tries = 0;
Tomas Winkleraa458d12008-09-09 00:32:12 +0300778
Tomas Winkler24e64622008-09-08 17:33:40 +0200779 netif_tx_stop_all_queues(sdata->dev);
Tomas Winkleraa458d12008-09-09 00:32:12 +0300780 netif_carrier_off(sdata->dev);
781
Johannes Berg2dace102009-02-10 21:25:52 +0100782 ieee80211_sta_tear_down_BA_sessions(sta);
Tomas Winkleraa458d12008-09-09 00:32:12 +0300783
Kalle Valo04de8382009-03-22 21:57:35 +0200784 bss = ieee80211_rx_bss_get(local, ifmgd->bssid,
785 conf->channel->center_freq,
786 ifmgd->ssid, ifmgd->ssid_len);
787
788 if (bss) {
789 cfg80211_unhold_bss(&bss->cbss);
790 ieee80211_rx_bss_put(local, bss);
791 }
792
Tomas Winkleraa458d12008-09-09 00:32:12 +0300793 if (self_disconnected) {
794 if (deauth)
Johannes Bergef422bc2008-09-09 10:58:25 +0200795 ieee80211_send_deauth_disassoc(sdata,
796 IEEE80211_STYPE_DEAUTH, reason);
Tomas Winkleraa458d12008-09-09 00:32:12 +0300797 else
Johannes Bergef422bc2008-09-09 10:58:25 +0200798 ieee80211_send_deauth_disassoc(sdata,
799 IEEE80211_STYPE_DISASSOC, reason);
Tomas Winkleraa458d12008-09-09 00:32:12 +0300800 }
801
Johannes Berg46900292009-02-15 12:44:28 +0100802 ifmgd->flags &= ~IEEE80211_STA_ASSOCIATED;
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200803 changed |= ieee80211_reset_erp_info(sdata);
804
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200805 ieee80211_led_assoc(local, 0);
Johannes Bergae5eb022008-10-14 16:58:37 +0200806 changed |= BSS_CHANGED_ASSOC;
807 sdata->vif.bss_conf.assoc = false;
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200808
Johannes Berg46900292009-02-15 12:44:28 +0100809 ieee80211_sta_send_apinfo(sdata);
Tomas Winkleraa458d12008-09-09 00:32:12 +0300810
Vasanthakumar Thiagarajan7a947082009-02-04 18:28:48 +0530811 if (self_disconnected || reason == WLAN_REASON_DISASSOC_STA_HAS_LEFT) {
Johannes Berg46900292009-02-15 12:44:28 +0100812 ifmgd->state = IEEE80211_STA_MLME_DISABLED;
813 ieee80211_rx_bss_remove(sdata, ifmgd->bssid,
Vasanthakumar Thiagarajan7a947082009-02-04 18:28:48 +0530814 sdata->local->hw.conf.channel->center_freq,
Johannes Berg46900292009-02-15 12:44:28 +0100815 ifmgd->ssid, ifmgd->ssid_len);
Vasanthakumar Thiagarajan7a947082009-02-04 18:28:48 +0530816 }
Tomas Winkleraa458d12008-09-09 00:32:12 +0300817
Tomas Winkleraa458d12008-09-09 00:32:12 +0300818 rcu_read_unlock();
819
Johannes Berg47979382009-01-07 10:13:27 +0100820 /* channel(_type) changes are handled by ieee80211_hw_config */
Sujith094d05d2008-12-12 11:57:43 +0530821 local->oper_channel_type = NL80211_CHAN_NO_HT;
Johannes Bergae5eb022008-10-14 16:58:37 +0200822
Vasanthakumar Thiagarajana8302de2009-01-09 18:14:15 +0530823 local->power_constr_level = 0;
824
Kalle Valo520eb822008-12-18 23:35:27 +0200825 del_timer_sync(&local->dynamic_ps_timer);
826 cancel_work_sync(&local->dynamic_ps_enable_work);
827
Kalle Valoe0cb6862008-12-18 23:35:13 +0200828 if (local->hw.conf.flags & IEEE80211_CONF_PS) {
829 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
830 config_changed |= IEEE80211_CONF_CHANGE_PS;
831 }
832
833 ieee80211_hw_config(local, config_changed);
Johannes Bergae5eb022008-10-14 16:58:37 +0200834 ieee80211_bss_info_change_notify(sdata, changed);
Tomas Winkler8e268e42008-11-25 13:05:44 +0200835
836 rcu_read_lock();
837
Johannes Berg46900292009-02-15 12:44:28 +0100838 sta = sta_info_get(local, ifmgd->bssid);
Tomas Winkler8e268e42008-11-25 13:05:44 +0200839 if (!sta) {
840 rcu_read_unlock();
841 return;
842 }
843
844 sta_info_unlink(&sta);
845
846 rcu_read_unlock();
847
848 sta_info_destroy(sta);
Tomas Winkleraa458d12008-09-09 00:32:12 +0300849}
Jiri Bencf0706e822007-05-05 11:45:53 -0700850
Johannes Berg9ac19a92008-09-09 10:57:09 +0200851static int ieee80211_sta_wep_configured(struct ieee80211_sub_if_data *sdata)
852{
853 if (!sdata || !sdata->default_key ||
854 sdata->default_key->conf.alg != ALG_WEP)
855 return 0;
856 return 1;
857}
858
Johannes Berg46900292009-02-15 12:44:28 +0100859static int ieee80211_privacy_mismatch(struct ieee80211_sub_if_data *sdata)
Jiri Bencf0706e822007-05-05 11:45:53 -0700860{
Johannes Berg46900292009-02-15 12:44:28 +0100861 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200862 struct ieee80211_local *local = sdata->local;
Johannes Bergc2b13452008-09-11 00:01:55 +0200863 struct ieee80211_bss *bss;
Johannes Berg5b98b1f2007-11-03 13:11:10 +0000864 int bss_privacy;
865 int wep_privacy;
866 int privacy_invoked;
Jiri Bencf0706e822007-05-05 11:45:53 -0700867
Johannes Berg7986cf92009-03-21 17:08:43 +0100868 if (!ifmgd || (ifmgd->flags & IEEE80211_STA_EXT_SME))
Jiri Bencf0706e822007-05-05 11:45:53 -0700869 return 0;
870
Johannes Berg46900292009-02-15 12:44:28 +0100871 bss = ieee80211_rx_bss_get(local, ifmgd->bssid,
Johannes Berg8318d782008-01-24 19:38:38 +0100872 local->hw.conf.channel->center_freq,
Johannes Berg46900292009-02-15 12:44:28 +0100873 ifmgd->ssid, ifmgd->ssid_len);
Jiri Bencf0706e822007-05-05 11:45:53 -0700874 if (!bss)
875 return 0;
876
Johannes Berg00d3f142009-02-10 21:26:00 +0100877 bss_privacy = !!(bss->cbss.capability & WLAN_CAPABILITY_PRIVACY);
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200878 wep_privacy = !!ieee80211_sta_wep_configured(sdata);
Johannes Berg46900292009-02-15 12:44:28 +0100879 privacy_invoked = !!(ifmgd->flags & IEEE80211_STA_PRIVACY_INVOKED);
Jiri Bencf0706e822007-05-05 11:45:53 -0700880
Johannes Berg3e122be2008-07-09 14:40:34 +0200881 ieee80211_rx_bss_put(local, bss);
Jiri Bencf0706e822007-05-05 11:45:53 -0700882
Johannes Berg5b98b1f2007-11-03 13:11:10 +0000883 if ((bss_privacy == wep_privacy) || (bss_privacy == privacy_invoked))
884 return 0;
885
886 return 1;
Jiri Bencf0706e822007-05-05 11:45:53 -0700887}
888
Johannes Berg46900292009-02-15 12:44:28 +0100889static void ieee80211_associate(struct ieee80211_sub_if_data *sdata)
Jiri Bencf0706e822007-05-05 11:45:53 -0700890{
Johannes Berg46900292009-02-15 12:44:28 +0100891 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Helmut Schaa11432372009-03-12 14:04:34 +0100892 struct ieee80211_local *local = sdata->local;
Johannes Berg46900292009-02-15 12:44:28 +0100893
894 ifmgd->assoc_tries++;
895 if (ifmgd->assoc_tries > IEEE80211_ASSOC_MAX_TRIES) {
Johannes Berg0c68ae262008-10-27 15:56:10 -0700896 printk(KERN_DEBUG "%s: association with AP %pM"
Jiri Bencf0706e822007-05-05 11:45:53 -0700897 " timed out\n",
Johannes Berg46900292009-02-15 12:44:28 +0100898 sdata->dev->name, ifmgd->bssid);
899 ifmgd->state = IEEE80211_STA_MLME_DISABLED;
900 ieee80211_sta_send_apinfo(sdata);
901 ieee80211_rx_bss_remove(sdata, ifmgd->bssid,
Vasanthakumar Thiagarajan7a947082009-02-04 18:28:48 +0530902 sdata->local->hw.conf.channel->center_freq,
Johannes Berg46900292009-02-15 12:44:28 +0100903 ifmgd->ssid, ifmgd->ssid_len);
Helmut Schaa11432372009-03-12 14:04:34 +0100904 /*
905 * We might have a pending scan which had no chance to run yet
906 * due to state == IEEE80211_STA_MLME_ASSOCIATE.
907 * Hence, queue the STAs work again
908 */
909 queue_work(local->hw.workqueue, &ifmgd->work);
Jiri Bencf0706e822007-05-05 11:45:53 -0700910 return;
911 }
912
Johannes Berg46900292009-02-15 12:44:28 +0100913 ifmgd->state = IEEE80211_STA_MLME_ASSOCIATE;
Johannes Berg0c68ae262008-10-27 15:56:10 -0700914 printk(KERN_DEBUG "%s: associate with AP %pM\n",
Johannes Berg46900292009-02-15 12:44:28 +0100915 sdata->dev->name, ifmgd->bssid);
916 if (ieee80211_privacy_mismatch(sdata)) {
Jiri Bencf0706e822007-05-05 11:45:53 -0700917 printk(KERN_DEBUG "%s: mismatch in privacy configuration and "
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200918 "mixed-cell disabled - abort association\n", sdata->dev->name);
Johannes Berg46900292009-02-15 12:44:28 +0100919 ifmgd->state = IEEE80211_STA_MLME_DISABLED;
Jiri Bencf0706e822007-05-05 11:45:53 -0700920 return;
921 }
922
Johannes Berg46900292009-02-15 12:44:28 +0100923 ieee80211_send_assoc(sdata);
Jiri Bencf0706e822007-05-05 11:45:53 -0700924
Johannes Berg46900292009-02-15 12:44:28 +0100925 mod_timer(&ifmgd->timer, jiffies + IEEE80211_ASSOC_TIMEOUT);
Jiri Bencf0706e822007-05-05 11:45:53 -0700926}
927
Kalle Valo3cf335d2009-03-22 21:57:06 +0200928void ieee80211_sta_rx_notify(struct ieee80211_sub_if_data *sdata,
929 struct ieee80211_hdr *hdr)
930{
931 /*
932 * We can postpone the mgd.timer whenever receiving unicast frames
933 * from AP because we know that the connection is working both ways
934 * at that time. But multicast frames (and hence also beacons) must
935 * be ignored here, because we need to trigger the timer during
936 * data idle periods for sending the periodical probe request to
937 * the AP.
938 */
939 if (!is_multicast_ether_addr(hdr->addr1))
940 mod_timer(&sdata->u.mgd.timer,
941 jiffies + IEEE80211_MONITORING_INTERVAL);
942}
Jiri Bencf0706e822007-05-05 11:45:53 -0700943
Kalle Valo04de8382009-03-22 21:57:35 +0200944void ieee80211_beacon_loss_work(struct work_struct *work)
945{
946 struct ieee80211_sub_if_data *sdata =
947 container_of(work, struct ieee80211_sub_if_data,
948 u.mgd.beacon_loss_work);
949 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
950
Michael Buescha8604022009-04-15 14:41:22 -0400951#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
952 if (net_ratelimit()) {
953 printk(KERN_DEBUG "%s: driver reports beacon loss from AP %pM "
954 "- sending probe request\n", sdata->dev->name,
955 sdata->u.mgd.bssid);
956 }
957#endif
Kalle Valo04de8382009-03-22 21:57:35 +0200958
959 ifmgd->flags |= IEEE80211_STA_PROBEREQ_POLL;
960 ieee80211_send_probe_req(sdata, ifmgd->bssid, ifmgd->ssid,
961 ifmgd->ssid_len, NULL, 0);
962
963 mod_timer(&ifmgd->timer, jiffies + IEEE80211_MONITORING_INTERVAL);
964}
965
966void ieee80211_beacon_loss(struct ieee80211_vif *vif)
967{
968 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
969
970 queue_work(sdata->local->hw.workqueue,
971 &sdata->u.mgd.beacon_loss_work);
972}
973EXPORT_SYMBOL(ieee80211_beacon_loss);
974
Johannes Berg46900292009-02-15 12:44:28 +0100975static void ieee80211_associated(struct ieee80211_sub_if_data *sdata)
Jiri Bencf0706e822007-05-05 11:45:53 -0700976{
Johannes Berg46900292009-02-15 12:44:28 +0100977 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200978 struct ieee80211_local *local = sdata->local;
Jiri Bencf0706e822007-05-05 11:45:53 -0700979 struct sta_info *sta;
Kalle Valo15b7b062009-03-22 21:57:14 +0200980 bool disassoc = false;
Jiri Bencf0706e822007-05-05 11:45:53 -0700981
982 /* TODO: start monitoring current AP signal quality and number of
983 * missed beacons. Scan other channels every now and then and search
984 * for better APs. */
985 /* TODO: remove expired BSSes */
986
Johannes Berg46900292009-02-15 12:44:28 +0100987 ifmgd->state = IEEE80211_STA_MLME_ASSOCIATED;
Jiri Bencf0706e822007-05-05 11:45:53 -0700988
Johannes Bergd0709a62008-02-25 16:27:46 +0100989 rcu_read_lock();
990
Johannes Berg46900292009-02-15 12:44:28 +0100991 sta = sta_info_get(local, ifmgd->bssid);
Jiri Bencf0706e822007-05-05 11:45:53 -0700992 if (!sta) {
Johannes Berg0c68ae262008-10-27 15:56:10 -0700993 printk(KERN_DEBUG "%s: No STA entry for own AP %pM\n",
Johannes Berg46900292009-02-15 12:44:28 +0100994 sdata->dev->name, ifmgd->bssid);
Kalle Valo15b7b062009-03-22 21:57:14 +0200995 disassoc = true;
996 goto unlock;
Jiri Bencf0706e822007-05-05 11:45:53 -0700997 }
Johannes Bergd0709a62008-02-25 16:27:46 +0100998
Kalle Valo15b7b062009-03-22 21:57:14 +0200999 if ((ifmgd->flags & IEEE80211_STA_PROBEREQ_POLL) &&
1000 time_after(jiffies, sta->last_rx + IEEE80211_MONITORING_INTERVAL)) {
1001 printk(KERN_DEBUG "%s: no probe response from AP %pM "
1002 "- disassociating\n",
1003 sdata->dev->name, ifmgd->bssid);
1004 disassoc = true;
1005 ifmgd->flags &= ~IEEE80211_STA_PROBEREQ_POLL;
1006 goto unlock;
1007 }
1008
Kalle Valo04de8382009-03-22 21:57:35 +02001009 /*
1010 * Beacon filtering is only enabled with power save and then the
1011 * stack should not check for beacon loss.
1012 */
1013 if (!((local->hw.flags & IEEE80211_HW_BEACON_FILTER) &&
1014 (local->hw.conf.flags & IEEE80211_CONF_PS)) &&
1015 time_after(jiffies,
Kalle Valo15b7b062009-03-22 21:57:14 +02001016 ifmgd->last_beacon + IEEE80211_MONITORING_INTERVAL)) {
Michael Buescha8604022009-04-15 14:41:22 -04001017#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
1018 if (net_ratelimit()) {
1019 printk(KERN_DEBUG "%s: beacon loss from AP %pM "
1020 "- sending probe request\n",
1021 sdata->dev->name, ifmgd->bssid);
1022 }
1023#endif
Kalle Valo15b7b062009-03-22 21:57:14 +02001024 ifmgd->flags |= IEEE80211_STA_PROBEREQ_POLL;
1025 ieee80211_send_probe_req(sdata, ifmgd->bssid, ifmgd->ssid,
1026 ifmgd->ssid_len, NULL, 0);
1027 goto unlock;
1028
1029 }
1030
1031 if (time_after(jiffies, sta->last_rx + IEEE80211_PROBE_IDLE_TIME)) {
1032 ifmgd->flags |= IEEE80211_STA_PROBEREQ_POLL;
1033 ieee80211_send_probe_req(sdata, ifmgd->bssid, ifmgd->ssid,
1034 ifmgd->ssid_len, NULL, 0);
1035 }
1036
1037 unlock:
Johannes Bergd0709a62008-02-25 16:27:46 +01001038 rcu_read_unlock();
1039
Vasanthakumar Thiagarajan7a947082009-02-04 18:28:48 +05301040 if (disassoc)
Johannes Berg46900292009-02-15 12:44:28 +01001041 ieee80211_set_disassoc(sdata, true, true,
Tomas Winkleraa458d12008-09-09 00:32:12 +03001042 WLAN_REASON_PREV_AUTH_NOT_VALID);
Vasanthakumar Thiagarajan7a947082009-02-04 18:28:48 +05301043 else
Johannes Berg46900292009-02-15 12:44:28 +01001044 mod_timer(&ifmgd->timer, jiffies +
Jiri Bencf0706e822007-05-05 11:45:53 -07001045 IEEE80211_MONITORING_INTERVAL);
Jiri Bencf0706e822007-05-05 11:45:53 -07001046}
1047
1048
Johannes Berg46900292009-02-15 12:44:28 +01001049static void ieee80211_auth_completed(struct ieee80211_sub_if_data *sdata)
Jiri Bencf0706e822007-05-05 11:45:53 -07001050{
Johannes Berg46900292009-02-15 12:44:28 +01001051 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1052
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001053 printk(KERN_DEBUG "%s: authenticated\n", sdata->dev->name);
Johannes Berg46900292009-02-15 12:44:28 +01001054 ifmgd->flags |= IEEE80211_STA_AUTHENTICATED;
Jouni Malinen636a5d32009-03-19 13:39:22 +02001055 if (ifmgd->flags & IEEE80211_STA_EXT_SME) {
1056 /* Wait for SME to request association */
1057 ifmgd->state = IEEE80211_STA_MLME_DISABLED;
1058 } else
1059 ieee80211_associate(sdata);
Jiri Bencf0706e822007-05-05 11:45:53 -07001060}
1061
1062
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001063static void ieee80211_auth_challenge(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e822007-05-05 11:45:53 -07001064 struct ieee80211_mgmt *mgmt,
1065 size_t len)
1066{
1067 u8 *pos;
1068 struct ieee802_11_elems elems;
1069
Jiri Bencf0706e822007-05-05 11:45:53 -07001070 pos = mgmt->u.auth.variable;
John W. Linville67a4cce2007-10-12 16:40:37 -04001071 ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), &elems);
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001072 if (!elems.challenge)
Jiri Bencf0706e822007-05-05 11:45:53 -07001073 return;
Johannes Berg46900292009-02-15 12:44:28 +01001074 ieee80211_send_auth(sdata, 3, sdata->u.mgd.auth_alg,
1075 elems.challenge - 2, elems.challenge_len + 2,
1076 sdata->u.mgd.bssid, 1);
1077 sdata->u.mgd.auth_transaction = 4;
Johannes Bergfe3d2c32009-02-10 21:26:03 +01001078}
1079
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001080static void ieee80211_rx_mgmt_auth(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e822007-05-05 11:45:53 -07001081 struct ieee80211_mgmt *mgmt,
1082 size_t len)
1083{
Johannes Berg46900292009-02-15 12:44:28 +01001084 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jiri Bencf0706e822007-05-05 11:45:53 -07001085 u16 auth_alg, auth_transaction, status_code;
1086
Johannes Berg46900292009-02-15 12:44:28 +01001087 if (ifmgd->state != IEEE80211_STA_MLME_AUTHENTICATE)
Jiri Bencf0706e822007-05-05 11:45:53 -07001088 return;
Jiri Bencf0706e822007-05-05 11:45:53 -07001089
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001090 if (len < 24 + 6)
Jiri Bencf0706e822007-05-05 11:45:53 -07001091 return;
Jiri Bencf0706e822007-05-05 11:45:53 -07001092
Johannes Berg46900292009-02-15 12:44:28 +01001093 if (memcmp(ifmgd->bssid, mgmt->sa, ETH_ALEN) != 0)
Jiri Bencf0706e822007-05-05 11:45:53 -07001094 return;
Jiri Bencf0706e822007-05-05 11:45:53 -07001095
Johannes Berg46900292009-02-15 12:44:28 +01001096 if (memcmp(ifmgd->bssid, mgmt->bssid, ETH_ALEN) != 0)
Jiri Bencf0706e822007-05-05 11:45:53 -07001097 return;
Jiri Bencf0706e822007-05-05 11:45:53 -07001098
1099 auth_alg = le16_to_cpu(mgmt->u.auth.auth_alg);
1100 auth_transaction = le16_to_cpu(mgmt->u.auth.auth_transaction);
1101 status_code = le16_to_cpu(mgmt->u.auth.status_code);
1102
Johannes Berg46900292009-02-15 12:44:28 +01001103 if (auth_alg != ifmgd->auth_alg ||
1104 auth_transaction != ifmgd->auth_transaction)
Jiri Bencf0706e822007-05-05 11:45:53 -07001105 return;
Jiri Bencf0706e822007-05-05 11:45:53 -07001106
1107 if (status_code != WLAN_STATUS_SUCCESS) {
Jiri Bencf0706e822007-05-05 11:45:53 -07001108 if (status_code == WLAN_STATUS_NOT_SUPPORTED_AUTH_ALG) {
1109 u8 algs[3];
1110 const int num_algs = ARRAY_SIZE(algs);
1111 int i, pos;
1112 algs[0] = algs[1] = algs[2] = 0xff;
Johannes Berg46900292009-02-15 12:44:28 +01001113 if (ifmgd->auth_algs & IEEE80211_AUTH_ALG_OPEN)
Jiri Bencf0706e822007-05-05 11:45:53 -07001114 algs[0] = WLAN_AUTH_OPEN;
Johannes Berg46900292009-02-15 12:44:28 +01001115 if (ifmgd->auth_algs & IEEE80211_AUTH_ALG_SHARED_KEY)
Jiri Bencf0706e822007-05-05 11:45:53 -07001116 algs[1] = WLAN_AUTH_SHARED_KEY;
Johannes Berg46900292009-02-15 12:44:28 +01001117 if (ifmgd->auth_algs & IEEE80211_AUTH_ALG_LEAP)
Jiri Bencf0706e822007-05-05 11:45:53 -07001118 algs[2] = WLAN_AUTH_LEAP;
Johannes Berg46900292009-02-15 12:44:28 +01001119 if (ifmgd->auth_alg == WLAN_AUTH_OPEN)
Jiri Bencf0706e822007-05-05 11:45:53 -07001120 pos = 0;
Johannes Berg46900292009-02-15 12:44:28 +01001121 else if (ifmgd->auth_alg == WLAN_AUTH_SHARED_KEY)
Jiri Bencf0706e822007-05-05 11:45:53 -07001122 pos = 1;
1123 else
1124 pos = 2;
1125 for (i = 0; i < num_algs; i++) {
1126 pos++;
1127 if (pos >= num_algs)
1128 pos = 0;
Johannes Berg46900292009-02-15 12:44:28 +01001129 if (algs[pos] == ifmgd->auth_alg ||
Jiri Bencf0706e822007-05-05 11:45:53 -07001130 algs[pos] == 0xff)
1131 continue;
1132 if (algs[pos] == WLAN_AUTH_SHARED_KEY &&
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001133 !ieee80211_sta_wep_configured(sdata))
Jiri Bencf0706e822007-05-05 11:45:53 -07001134 continue;
Johannes Berg46900292009-02-15 12:44:28 +01001135 ifmgd->auth_alg = algs[pos];
Jiri Bencf0706e822007-05-05 11:45:53 -07001136 break;
1137 }
1138 }
1139 return;
1140 }
1141
Johannes Berg46900292009-02-15 12:44:28 +01001142 switch (ifmgd->auth_alg) {
Jiri Bencf0706e822007-05-05 11:45:53 -07001143 case WLAN_AUTH_OPEN:
1144 case WLAN_AUTH_LEAP:
Jouni Malinen636a5d32009-03-19 13:39:22 +02001145 case WLAN_AUTH_FT:
Johannes Berg46900292009-02-15 12:44:28 +01001146 ieee80211_auth_completed(sdata);
Jouni Malinen6039f6d2009-03-19 13:39:21 +02001147 cfg80211_send_rx_auth(sdata->dev, (u8 *) mgmt, len);
Jiri Bencf0706e822007-05-05 11:45:53 -07001148 break;
1149 case WLAN_AUTH_SHARED_KEY:
Jouni Malinen6039f6d2009-03-19 13:39:21 +02001150 if (ifmgd->auth_transaction == 4) {
Johannes Berg46900292009-02-15 12:44:28 +01001151 ieee80211_auth_completed(sdata);
Jouni Malinen6039f6d2009-03-19 13:39:21 +02001152 cfg80211_send_rx_auth(sdata->dev, (u8 *) mgmt, len);
1153 } else
Johannes Berg46900292009-02-15 12:44:28 +01001154 ieee80211_auth_challenge(sdata, mgmt, len);
Jiri Bencf0706e822007-05-05 11:45:53 -07001155 break;
1156 }
1157}
1158
1159
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001160static void ieee80211_rx_mgmt_deauth(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e822007-05-05 11:45:53 -07001161 struct ieee80211_mgmt *mgmt,
1162 size_t len)
1163{
Johannes Berg46900292009-02-15 12:44:28 +01001164 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jiri Bencf0706e822007-05-05 11:45:53 -07001165 u16 reason_code;
1166
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001167 if (len < 24 + 2)
Jiri Bencf0706e822007-05-05 11:45:53 -07001168 return;
Jiri Bencf0706e822007-05-05 11:45:53 -07001169
Johannes Berg46900292009-02-15 12:44:28 +01001170 if (memcmp(ifmgd->bssid, mgmt->sa, ETH_ALEN))
Jiri Bencf0706e822007-05-05 11:45:53 -07001171 return;
Jiri Bencf0706e822007-05-05 11:45:53 -07001172
1173 reason_code = le16_to_cpu(mgmt->u.deauth.reason_code);
1174
Johannes Berg46900292009-02-15 12:44:28 +01001175 if (ifmgd->flags & IEEE80211_STA_AUTHENTICATED)
Zhu Yi97c8b012008-10-28 15:58:31 +08001176 printk(KERN_DEBUG "%s: deauthenticated (Reason: %u)\n",
1177 sdata->dev->name, reason_code);
Jiri Bencf0706e822007-05-05 11:45:53 -07001178
Jouni Malinen636a5d32009-03-19 13:39:22 +02001179 if (!(ifmgd->flags & IEEE80211_STA_EXT_SME) &&
1180 (ifmgd->state == IEEE80211_STA_MLME_AUTHENTICATE ||
1181 ifmgd->state == IEEE80211_STA_MLME_ASSOCIATE ||
1182 ifmgd->state == IEEE80211_STA_MLME_ASSOCIATED)) {
Johannes Berg46900292009-02-15 12:44:28 +01001183 ifmgd->state = IEEE80211_STA_MLME_DIRECT_PROBE;
1184 mod_timer(&ifmgd->timer, jiffies +
Jiri Bencf0706e822007-05-05 11:45:53 -07001185 IEEE80211_RETRY_AUTH_INTERVAL);
1186 }
1187
Johannes Berg46900292009-02-15 12:44:28 +01001188 ieee80211_set_disassoc(sdata, true, false, 0);
1189 ifmgd->flags &= ~IEEE80211_STA_AUTHENTICATED;
Jouni Malinen6039f6d2009-03-19 13:39:21 +02001190 cfg80211_send_rx_deauth(sdata->dev, (u8 *) mgmt, len);
Jiri Bencf0706e822007-05-05 11:45:53 -07001191}
1192
1193
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001194static void ieee80211_rx_mgmt_disassoc(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e822007-05-05 11:45:53 -07001195 struct ieee80211_mgmt *mgmt,
1196 size_t len)
1197{
Johannes Berg46900292009-02-15 12:44:28 +01001198 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jiri Bencf0706e822007-05-05 11:45:53 -07001199 u16 reason_code;
1200
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001201 if (len < 24 + 2)
Jiri Bencf0706e822007-05-05 11:45:53 -07001202 return;
Jiri Bencf0706e822007-05-05 11:45:53 -07001203
Johannes Berg46900292009-02-15 12:44:28 +01001204 if (memcmp(ifmgd->bssid, mgmt->sa, ETH_ALEN))
Jiri Bencf0706e822007-05-05 11:45:53 -07001205 return;
Jiri Bencf0706e822007-05-05 11:45:53 -07001206
1207 reason_code = le16_to_cpu(mgmt->u.disassoc.reason_code);
1208
Johannes Berg46900292009-02-15 12:44:28 +01001209 if (ifmgd->flags & IEEE80211_STA_ASSOCIATED)
Zhu Yi97c8b012008-10-28 15:58:31 +08001210 printk(KERN_DEBUG "%s: disassociated (Reason: %u)\n",
1211 sdata->dev->name, reason_code);
Jiri Bencf0706e822007-05-05 11:45:53 -07001212
Jouni Malinen636a5d32009-03-19 13:39:22 +02001213 if (!(ifmgd->flags & IEEE80211_STA_EXT_SME) &&
1214 ifmgd->state == IEEE80211_STA_MLME_ASSOCIATED) {
Johannes Berg46900292009-02-15 12:44:28 +01001215 ifmgd->state = IEEE80211_STA_MLME_ASSOCIATE;
1216 mod_timer(&ifmgd->timer, jiffies +
Jiri Bencf0706e822007-05-05 11:45:53 -07001217 IEEE80211_RETRY_AUTH_INTERVAL);
1218 }
1219
Johannes Berg46900292009-02-15 12:44:28 +01001220 ieee80211_set_disassoc(sdata, false, false, reason_code);
Jouni Malinen6039f6d2009-03-19 13:39:21 +02001221 cfg80211_send_rx_disassoc(sdata->dev, (u8 *) mgmt, len);
Jiri Bencf0706e822007-05-05 11:45:53 -07001222}
1223
1224
Johannes Berg471b3ef2007-12-28 14:32:58 +01001225static void ieee80211_rx_mgmt_assoc_resp(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e822007-05-05 11:45:53 -07001226 struct ieee80211_mgmt *mgmt,
1227 size_t len,
1228 int reassoc)
1229{
Johannes Berg46900292009-02-15 12:44:28 +01001230 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg471b3ef2007-12-28 14:32:58 +01001231 struct ieee80211_local *local = sdata->local;
Johannes Berg8318d782008-01-24 19:38:38 +01001232 struct ieee80211_supported_band *sband;
Jiri Bencf0706e822007-05-05 11:45:53 -07001233 struct sta_info *sta;
Johannes Berg881d9482009-01-21 15:13:48 +01001234 u32 rates, basic_rates;
Jiri Bencf0706e822007-05-05 11:45:53 -07001235 u16 capab_info, status_code, aid;
1236 struct ieee802_11_elems elems;
Johannes Bergbda39332008-10-11 01:51:51 +02001237 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
Jiri Bencf0706e822007-05-05 11:45:53 -07001238 u8 *pos;
Johannes Bergae5eb022008-10-14 16:58:37 +02001239 u32 changed = 0;
Jiri Bencf0706e822007-05-05 11:45:53 -07001240 int i, j;
Johannes Bergddf4ac52008-10-22 11:41:38 +02001241 bool have_higher_than_11mbit = false, newsta = false;
Johannes Bergae5eb022008-10-14 16:58:37 +02001242 u16 ap_ht_cap_flags;
Jiri Bencf0706e822007-05-05 11:45:53 -07001243
1244 /* AssocResp and ReassocResp have identical structure, so process both
1245 * of them in this function. */
1246
Johannes Berg46900292009-02-15 12:44:28 +01001247 if (ifmgd->state != IEEE80211_STA_MLME_ASSOCIATE)
Jiri Bencf0706e822007-05-05 11:45:53 -07001248 return;
Jiri Bencf0706e822007-05-05 11:45:53 -07001249
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001250 if (len < 24 + 6)
Jiri Bencf0706e822007-05-05 11:45:53 -07001251 return;
Jiri Bencf0706e822007-05-05 11:45:53 -07001252
Johannes Berg46900292009-02-15 12:44:28 +01001253 if (memcmp(ifmgd->bssid, mgmt->sa, ETH_ALEN) != 0)
Jiri Bencf0706e822007-05-05 11:45:53 -07001254 return;
Jiri Bencf0706e822007-05-05 11:45:53 -07001255
1256 capab_info = le16_to_cpu(mgmt->u.assoc_resp.capab_info);
1257 status_code = le16_to_cpu(mgmt->u.assoc_resp.status_code);
1258 aid = le16_to_cpu(mgmt->u.assoc_resp.aid);
Jiri Bencf0706e822007-05-05 11:45:53 -07001259
Johannes Berg0c68ae262008-10-27 15:56:10 -07001260 printk(KERN_DEBUG "%s: RX %sssocResp from %pM (capab=0x%x "
Jiri Bencf0706e822007-05-05 11:45:53 -07001261 "status=%d aid=%d)\n",
Johannes Berg0c68ae262008-10-27 15:56:10 -07001262 sdata->dev->name, reassoc ? "Rea" : "A", mgmt->sa,
Johannes Bergddd68582007-10-22 14:51:37 +02001263 capab_info, status_code, (u16)(aid & ~(BIT(15) | BIT(14))));
Jiri Bencf0706e822007-05-05 11:45:53 -07001264
Jouni Malinen63a5ab82009-01-08 13:32:09 +02001265 pos = mgmt->u.assoc_resp.variable;
1266 ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), &elems);
1267
1268 if (status_code == WLAN_STATUS_ASSOC_REJECTED_TEMPORARILY &&
Jouni Malinenf797eb72009-01-19 18:48:46 +02001269 elems.timeout_int && elems.timeout_int_len == 5 &&
1270 elems.timeout_int[0] == WLAN_TIMEOUT_ASSOC_COMEBACK) {
Jouni Malinen63a5ab82009-01-08 13:32:09 +02001271 u32 tu, ms;
Jouni Malinenf797eb72009-01-19 18:48:46 +02001272 tu = get_unaligned_le32(elems.timeout_int + 1);
Jouni Malinen63a5ab82009-01-08 13:32:09 +02001273 ms = tu * 1024 / 1000;
1274 printk(KERN_DEBUG "%s: AP rejected association temporarily; "
1275 "comeback duration %u TU (%u ms)\n",
1276 sdata->dev->name, tu, ms);
1277 if (ms > IEEE80211_ASSOC_TIMEOUT)
Johannes Berg46900292009-02-15 12:44:28 +01001278 mod_timer(&ifmgd->timer,
Jouni Malinen63a5ab82009-01-08 13:32:09 +02001279 jiffies + msecs_to_jiffies(ms));
1280 return;
1281 }
1282
Jiri Bencf0706e822007-05-05 11:45:53 -07001283 if (status_code != WLAN_STATUS_SUCCESS) {
1284 printk(KERN_DEBUG "%s: AP denied association (code=%d)\n",
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001285 sdata->dev->name, status_code);
Daniel Drake8a69aa92007-07-27 15:43:23 +02001286 /* if this was a reassociation, ensure we try a "full"
1287 * association next time. This works around some broken APs
1288 * which do not correctly reject reassociation requests. */
Johannes Berg46900292009-02-15 12:44:28 +01001289 ifmgd->flags &= ~IEEE80211_STA_PREV_BSSID_SET;
Jiri Bencf0706e822007-05-05 11:45:53 -07001290 return;
1291 }
1292
Johannes Berg1dd84aa2007-10-10 12:03:41 +02001293 if ((aid & (BIT(15) | BIT(14))) != (BIT(15) | BIT(14)))
1294 printk(KERN_DEBUG "%s: invalid aid value %d; bits 15:14 not "
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001295 "set\n", sdata->dev->name, aid);
Johannes Berg1dd84aa2007-10-10 12:03:41 +02001296 aid &= ~(BIT(15) | BIT(14));
1297
Jiri Bencf0706e822007-05-05 11:45:53 -07001298 if (!elems.supp_rates) {
1299 printk(KERN_DEBUG "%s: no SuppRates element in AssocResp\n",
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001300 sdata->dev->name);
Jiri Bencf0706e822007-05-05 11:45:53 -07001301 return;
1302 }
1303
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001304 printk(KERN_DEBUG "%s: associated\n", sdata->dev->name);
Johannes Berg46900292009-02-15 12:44:28 +01001305 ifmgd->aid = aid;
1306 ifmgd->ap_capab = capab_info;
Jiri Bencf0706e822007-05-05 11:45:53 -07001307
Johannes Berg46900292009-02-15 12:44:28 +01001308 kfree(ifmgd->assocresp_ies);
1309 ifmgd->assocresp_ies_len = len - (pos - (u8 *) mgmt);
1310 ifmgd->assocresp_ies = kmalloc(ifmgd->assocresp_ies_len, GFP_KERNEL);
1311 if (ifmgd->assocresp_ies)
1312 memcpy(ifmgd->assocresp_ies, pos, ifmgd->assocresp_ies_len);
Jiri Bencf0706e822007-05-05 11:45:53 -07001313
Johannes Bergd0709a62008-02-25 16:27:46 +01001314 rcu_read_lock();
1315
Jiri Bencf0706e822007-05-05 11:45:53 -07001316 /* Add STA entry for the AP */
Johannes Berg46900292009-02-15 12:44:28 +01001317 sta = sta_info_get(local, ifmgd->bssid);
Jiri Bencf0706e822007-05-05 11:45:53 -07001318 if (!sta) {
Johannes Bergddf4ac52008-10-22 11:41:38 +02001319 newsta = true;
Johannes Bergd0709a62008-02-25 16:27:46 +01001320
Johannes Berg46900292009-02-15 12:44:28 +01001321 sta = sta_info_alloc(sdata, ifmgd->bssid, GFP_ATOMIC);
Johannes Berg73651ee2008-02-25 16:27:47 +01001322 if (!sta) {
1323 printk(KERN_DEBUG "%s: failed to alloc STA entry for"
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001324 " the AP\n", sdata->dev->name);
Johannes Bergd0709a62008-02-25 16:27:46 +01001325 rcu_read_unlock();
Jiri Bencf0706e822007-05-05 11:45:53 -07001326 return;
1327 }
Johannes Berg73651ee2008-02-25 16:27:47 +01001328
Ron Rindjunskya61dae12008-08-10 00:54:34 +03001329 /* update new sta with its last rx activity */
1330 sta->last_rx = jiffies;
Jiri Bencf0706e822007-05-05 11:45:53 -07001331 }
1332
Johannes Berg73651ee2008-02-25 16:27:47 +01001333 /*
1334 * FIXME: Do we really need to update the sta_info's information here?
1335 * We already know about the AP (we found it in our list) so it
1336 * should already be filled with the right info, no?
1337 * As is stands, all this is racy because typically we assume
1338 * the information that is filled in here (except flags) doesn't
1339 * change while a STA structure is alive. As such, it should move
1340 * to between the sta_info_alloc() and sta_info_insert() above.
1341 */
1342
Johannes Berg07346f812008-05-03 01:02:02 +02001343 set_sta_flags(sta, WLAN_STA_AUTH | WLAN_STA_ASSOC | WLAN_STA_ASSOC_AP |
1344 WLAN_STA_AUTHORIZED);
Jiri Bencf0706e822007-05-05 11:45:53 -07001345
1346 rates = 0;
Johannes Berg8318d782008-01-24 19:38:38 +01001347 basic_rates = 0;
1348 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
1349
Jiri Bencf0706e822007-05-05 11:45:53 -07001350 for (i = 0; i < elems.supp_rates_len; i++) {
1351 int rate = (elems.supp_rates[i] & 0x7f) * 5;
Tomas Winklerd61272c2008-10-30 17:08:08 +02001352 bool is_basic = !!(elems.supp_rates[i] & 0x80);
Johannes Berg8318d782008-01-24 19:38:38 +01001353
1354 if (rate > 110)
1355 have_higher_than_11mbit = true;
1356
1357 for (j = 0; j < sband->n_bitrates; j++) {
Tomas Winklerd61272c2008-10-30 17:08:08 +02001358 if (sband->bitrates[j].bitrate == rate) {
Jiri Bencf0706e822007-05-05 11:45:53 -07001359 rates |= BIT(j);
Tomas Winklerd61272c2008-10-30 17:08:08 +02001360 if (is_basic)
1361 basic_rates |= BIT(j);
1362 break;
1363 }
Johannes Berg8318d782008-01-24 19:38:38 +01001364 }
Jiri Bencf0706e822007-05-05 11:45:53 -07001365 }
Johannes Berg8318d782008-01-24 19:38:38 +01001366
Jiri Bencf0706e822007-05-05 11:45:53 -07001367 for (i = 0; i < elems.ext_supp_rates_len; i++) {
1368 int rate = (elems.ext_supp_rates[i] & 0x7f) * 5;
Johannes Berg7e0986c2009-04-19 13:22:11 +02001369 bool is_basic = !!(elems.ext_supp_rates[i] & 0x80);
Johannes Berg8318d782008-01-24 19:38:38 +01001370
1371 if (rate > 110)
1372 have_higher_than_11mbit = true;
1373
1374 for (j = 0; j < sband->n_bitrates; j++) {
Tomas Winklerd61272c2008-10-30 17:08:08 +02001375 if (sband->bitrates[j].bitrate == rate) {
Jiri Bencf0706e822007-05-05 11:45:53 -07001376 rates |= BIT(j);
Tomas Winklerd61272c2008-10-30 17:08:08 +02001377 if (is_basic)
1378 basic_rates |= BIT(j);
1379 break;
1380 }
Johannes Berg8318d782008-01-24 19:38:38 +01001381 }
Jiri Bencf0706e822007-05-05 11:45:53 -07001382 }
Johannes Berg8318d782008-01-24 19:38:38 +01001383
Johannes Berg323ce792008-09-11 02:45:11 +02001384 sta->sta.supp_rates[local->hw.conf.channel->band] = rates;
Johannes Bergbda39332008-10-11 01:51:51 +02001385 sdata->vif.bss_conf.basic_rates = basic_rates;
Johannes Berg8318d782008-01-24 19:38:38 +01001386
1387 /* cf. IEEE 802.11 9.2.12 */
1388 if (local->hw.conf.channel->band == IEEE80211_BAND_2GHZ &&
1389 have_higher_than_11mbit)
1390 sdata->flags |= IEEE80211_SDATA_OPERATING_GMODE;
1391 else
1392 sdata->flags &= ~IEEE80211_SDATA_OPERATING_GMODE;
Jiri Bencf0706e822007-05-05 11:45:53 -07001393
Sujithe65c2262009-03-02 13:28:31 +05301394 /* If TKIP/WEP is used, no need to parse AP's HT capabilities */
1395 if (elems.ht_cap_elem && !(ifmgd->flags & IEEE80211_STA_TKIP_WEP_USED))
Johannes Bergae5eb022008-10-14 16:58:37 +02001396 ieee80211_ht_cap_ie_to_sta_ht_cap(sband,
Johannes Bergd9fe60d2008-10-09 12:13:49 +02001397 elems.ht_cap_elem, &sta->sta.ht_cap);
Johannes Bergae5eb022008-10-14 16:58:37 +02001398
1399 ap_ht_cap_flags = sta->sta.ht_cap.cap;
Ron Rindjunskyd3c990f2007-11-26 16:14:34 +02001400
Johannes Berg4b7679a2008-09-18 18:14:18 +02001401 rate_control_rate_init(sta);
Jiri Bencf0706e822007-05-05 11:45:53 -07001402
Johannes Berg46900292009-02-15 12:44:28 +01001403 if (ifmgd->flags & IEEE80211_STA_MFP_ENABLED)
Jouni Malinen5394af42009-01-08 13:31:59 +02001404 set_sta_flags(sta, WLAN_STA_MFP);
1405
Johannes Bergddf4ac52008-10-22 11:41:38 +02001406 if (elems.wmm_param)
Johannes Berg07346f812008-05-03 01:02:02 +02001407 set_sta_flags(sta, WLAN_STA_WME);
Johannes Bergddf4ac52008-10-22 11:41:38 +02001408
1409 if (newsta) {
1410 int err = sta_info_insert(sta);
1411 if (err) {
1412 printk(KERN_DEBUG "%s: failed to insert STA entry for"
1413 " the AP (error %d)\n", sdata->dev->name, err);
1414 rcu_read_unlock();
1415 return;
1416 }
1417 }
1418
1419 rcu_read_unlock();
1420
1421 if (elems.wmm_param)
Johannes Berg46900292009-02-15 12:44:28 +01001422 ieee80211_sta_wmm_params(local, ifmgd, elems.wmm_param,
Jiri Bencf0706e822007-05-05 11:45:53 -07001423 elems.wmm_param_len);
Jiri Bencf0706e822007-05-05 11:45:53 -07001424
Johannes Bergae5eb022008-10-14 16:58:37 +02001425 if (elems.ht_info_elem && elems.wmm_param &&
Johannes Berg46900292009-02-15 12:44:28 +01001426 (ifmgd->flags & IEEE80211_STA_WMM_ENABLED) &&
1427 !(ifmgd->flags & IEEE80211_STA_TKIP_WEP_USED))
Johannes Bergae5eb022008-10-14 16:58:37 +02001428 changed |= ieee80211_enable_ht(sdata, elems.ht_info_elem,
1429 ap_ht_cap_flags);
1430
Tomas Winkler21c0cbe2008-03-28 16:33:34 -07001431 /* set AID and assoc capability,
1432 * ieee80211_set_associated() will tell the driver */
Johannes Berg8318d782008-01-24 19:38:38 +01001433 bss_conf->aid = aid;
Tomas Winkler21c0cbe2008-03-28 16:33:34 -07001434 bss_conf->assoc_capability = capab_info;
Johannes Berg46900292009-02-15 12:44:28 +01001435 ieee80211_set_associated(sdata, changed);
Jiri Bencf0706e822007-05-05 11:45:53 -07001436
Kalle Valo15b7b062009-03-22 21:57:14 +02001437 /*
1438 * initialise the time of last beacon to be the association time,
1439 * otherwise beacon loss check will trigger immediately
1440 */
1441 ifmgd->last_beacon = jiffies;
1442
Johannes Berg46900292009-02-15 12:44:28 +01001443 ieee80211_associated(sdata);
Jouni Malinen6039f6d2009-03-19 13:39:21 +02001444 cfg80211_send_rx_assoc(sdata->dev, (u8 *) mgmt, len);
Jiri Bencf0706e822007-05-05 11:45:53 -07001445}
1446
1447
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001448static void ieee80211_rx_bss_info(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e822007-05-05 11:45:53 -07001449 struct ieee80211_mgmt *mgmt,
1450 size_t len,
1451 struct ieee80211_rx_status *rx_status,
Johannes Berg98c8fcc2008-09-08 17:44:26 +02001452 struct ieee802_11_elems *elems,
1453 bool beacon)
Jiri Bencf0706e822007-05-05 11:45:53 -07001454{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001455 struct ieee80211_local *local = sdata->local;
Johannes Berg98c8fcc2008-09-08 17:44:26 +02001456 int freq;
Johannes Bergc2b13452008-09-11 00:01:55 +02001457 struct ieee80211_bss *bss;
Johannes Bergfab7d4a2008-03-16 18:42:44 +01001458 struct ieee80211_channel *channel;
Jiri Bencf0706e822007-05-05 11:45:53 -07001459
Johannes Berg5bda6172008-09-08 11:05:10 +02001460 if (elems->ds_params && elems->ds_params_len == 1)
1461 freq = ieee80211_channel_to_frequency(elems->ds_params[0]);
1462 else
1463 freq = rx_status->freq;
1464
1465 channel = ieee80211_get_channel(local->hw.wiphy, freq);
1466
1467 if (!channel || channel->flags & IEEE80211_CHAN_DISABLED)
1468 return;
Jiri Bencf0706e822007-05-05 11:45:53 -07001469
Johannes Berg98c8fcc2008-09-08 17:44:26 +02001470 bss = ieee80211_bss_info_update(local, rx_status, mgmt, len, elems,
Johannes Berg2a519312009-02-10 21:25:55 +01001471 channel, beacon);
Johannes Berg98c8fcc2008-09-08 17:44:26 +02001472 if (!bss)
1473 return;
Jiri Bencf0706e822007-05-05 11:45:53 -07001474
Sujithc481ec92009-01-06 09:28:37 +05301475 if (elems->ch_switch_elem && (elems->ch_switch_elem_len == 3) &&
Johannes Berg46900292009-02-15 12:44:28 +01001476 (memcmp(mgmt->bssid, sdata->u.mgd.bssid, ETH_ALEN) == 0)) {
Sujithc481ec92009-01-06 09:28:37 +05301477 struct ieee80211_channel_sw_ie *sw_elem =
1478 (struct ieee80211_channel_sw_ie *)elems->ch_switch_elem;
1479 ieee80211_process_chanswitch(sdata, sw_elem, bss);
1480 }
1481
Johannes Berg3e122be2008-07-09 14:40:34 +02001482 ieee80211_rx_bss_put(local, bss);
Jiri Bencf0706e822007-05-05 11:45:53 -07001483}
1484
1485
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001486static void ieee80211_rx_mgmt_probe_resp(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e822007-05-05 11:45:53 -07001487 struct ieee80211_mgmt *mgmt,
1488 size_t len,
1489 struct ieee80211_rx_status *rx_status)
1490{
Kalle Valo15b7b062009-03-22 21:57:14 +02001491 struct ieee80211_if_managed *ifmgd;
Ester Kummerae6a44e2008-06-27 18:54:48 +03001492 size_t baselen;
1493 struct ieee802_11_elems elems;
1494
Kalle Valo15b7b062009-03-22 21:57:14 +02001495 ifmgd = &sdata->u.mgd;
1496
Tomas Winkler8e7cdbb2008-08-03 14:32:01 +03001497 if (memcmp(mgmt->da, sdata->dev->dev_addr, ETH_ALEN))
1498 return; /* ignore ProbeResp to foreign address */
1499
Ester Kummerae6a44e2008-06-27 18:54:48 +03001500 baselen = (u8 *) mgmt->u.probe_resp.variable - (u8 *) mgmt;
1501 if (baselen > len)
1502 return;
1503
1504 ieee802_11_parse_elems(mgmt->u.probe_resp.variable, len - baselen,
1505 &elems);
1506
Johannes Berg98c8fcc2008-09-08 17:44:26 +02001507 ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems, false);
Ron Rindjunsky9859b812008-08-09 03:02:19 +03001508
1509 /* direct probe may be part of the association flow */
1510 if (test_and_clear_bit(IEEE80211_STA_REQ_DIRECT_PROBE,
Kalle Valo15b7b062009-03-22 21:57:14 +02001511 &ifmgd->request)) {
Ron Rindjunsky9859b812008-08-09 03:02:19 +03001512 printk(KERN_DEBUG "%s direct probe responded\n",
1513 sdata->dev->name);
Johannes Berg46900292009-02-15 12:44:28 +01001514 ieee80211_authenticate(sdata);
Ron Rindjunsky9859b812008-08-09 03:02:19 +03001515 }
Kalle Valo15b7b062009-03-22 21:57:14 +02001516
1517 if (ifmgd->flags & IEEE80211_STA_PROBEREQ_POLL)
1518 ifmgd->flags &= ~IEEE80211_STA_PROBEREQ_POLL;
Jiri Bencf0706e822007-05-05 11:45:53 -07001519}
1520
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001521static void ieee80211_rx_mgmt_beacon(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e822007-05-05 11:45:53 -07001522 struct ieee80211_mgmt *mgmt,
1523 size_t len,
1524 struct ieee80211_rx_status *rx_status)
1525{
Johannes Berg46900292009-02-15 12:44:28 +01001526 struct ieee80211_if_managed *ifmgd;
Jiri Bencf0706e822007-05-05 11:45:53 -07001527 size_t baselen;
1528 struct ieee802_11_elems elems;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001529 struct ieee80211_local *local = sdata->local;
Johannes Berg471b3ef2007-12-28 14:32:58 +01001530 u32 changed = 0;
Kalle Valo1fb36062009-02-10 17:09:24 +02001531 bool erp_valid, directed_tim;
Johannes Berg7a5158e2008-10-08 10:59:33 +02001532 u8 erp_value = 0;
Jiri Bencf0706e822007-05-05 11:45:53 -07001533
Ester Kummerae6a44e2008-06-27 18:54:48 +03001534 /* Process beacon from the current BSS */
1535 baselen = (u8 *) mgmt->u.beacon.variable - (u8 *) mgmt;
1536 if (baselen > len)
1537 return;
1538
1539 ieee802_11_parse_elems(mgmt->u.beacon.variable, len - baselen, &elems);
1540
Johannes Berg98c8fcc2008-09-08 17:44:26 +02001541 ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems, true);
Jiri Bencf0706e822007-05-05 11:45:53 -07001542
Johannes Berg05c914f2008-09-11 00:01:58 +02001543 if (sdata->vif.type != NL80211_IFTYPE_STATION)
Jiri Bencf0706e822007-05-05 11:45:53 -07001544 return;
Jiri Bencf0706e822007-05-05 11:45:53 -07001545
Johannes Berg46900292009-02-15 12:44:28 +01001546 ifmgd = &sdata->u.mgd;
1547
1548 if (!(ifmgd->flags & IEEE80211_STA_ASSOCIATED) ||
1549 memcmp(ifmgd->bssid, mgmt->bssid, ETH_ALEN) != 0)
Jiri Bencf0706e822007-05-05 11:45:53 -07001550 return;
1551
Sujithc481ec92009-01-06 09:28:37 +05301552 if (rx_status->freq != local->hw.conf.channel->center_freq)
1553 return;
1554
Johannes Berg46900292009-02-15 12:44:28 +01001555 ieee80211_sta_wmm_params(local, ifmgd, elems.wmm_param,
Johannes Bergfe3fa822008-09-08 11:05:09 +02001556 elems.wmm_param_len);
1557
Vivek Natarajan25c9c872009-03-02 20:20:30 +05301558 if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK) {
Johannes Berg46900292009-02-15 12:44:28 +01001559 directed_tim = ieee80211_check_tim(&elems, ifmgd->aid);
Vivek Natarajana97b77b2008-12-23 18:39:02 -08001560
Kalle Valo1fb36062009-02-10 17:09:24 +02001561 if (directed_tim) {
Kalle Valo572e0012009-02-10 17:09:31 +02001562 if (local->hw.conf.dynamic_ps_timeout > 0) {
1563 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
1564 ieee80211_hw_config(local,
1565 IEEE80211_CONF_CHANGE_PS);
1566 ieee80211_send_nullfunc(local, sdata, 0);
1567 } else {
1568 local->pspolling = true;
1569
1570 /*
1571 * Here is assumed that the driver will be
1572 * able to send ps-poll frame and receive a
1573 * response even though power save mode is
1574 * enabled, but some drivers might require
1575 * to disable power save here. This needs
1576 * to be investigated.
1577 */
1578 ieee80211_send_pspoll(local, sdata);
1579 }
Vivek Natarajana97b77b2008-12-23 18:39:02 -08001580 }
1581 }
Johannes Berg7a5158e2008-10-08 10:59:33 +02001582
1583 if (elems.erp_info && elems.erp_info_len >= 1) {
1584 erp_valid = true;
1585 erp_value = elems.erp_info[0];
1586 } else {
1587 erp_valid = false;
John W. Linville50c4afb2008-04-15 14:09:27 -04001588 }
Johannes Berg7a5158e2008-10-08 10:59:33 +02001589 changed |= ieee80211_handle_bss_capability(sdata,
1590 le16_to_cpu(mgmt->u.beacon.capab_info),
1591 erp_valid, erp_value);
Jiri Bencf0706e822007-05-05 11:45:53 -07001592
Ron Rindjunskyd3c990f2007-11-26 16:14:34 +02001593
Vasanthakumar Thiagarajan53d6f812009-02-11 22:18:49 +05301594 if (elems.ht_cap_elem && elems.ht_info_elem && elems.wmm_param &&
Johannes Berg46900292009-02-15 12:44:28 +01001595 !(ifmgd->flags & IEEE80211_STA_TKIP_WEP_USED)) {
Johannes Bergae5eb022008-10-14 16:58:37 +02001596 struct sta_info *sta;
1597 struct ieee80211_supported_band *sband;
1598 u16 ap_ht_cap_flags;
1599
1600 rcu_read_lock();
1601
Johannes Berg46900292009-02-15 12:44:28 +01001602 sta = sta_info_get(local, ifmgd->bssid);
Johannes Bergae5eb022008-10-14 16:58:37 +02001603 if (!sta) {
1604 rcu_read_unlock();
1605 return;
1606 }
1607
1608 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
1609
1610 ieee80211_ht_cap_ie_to_sta_ht_cap(sband,
1611 elems.ht_cap_elem, &sta->sta.ht_cap);
1612
1613 ap_ht_cap_flags = sta->sta.ht_cap.cap;
1614
1615 rcu_read_unlock();
1616
1617 changed |= ieee80211_enable_ht(sdata, elems.ht_info_elem,
1618 ap_ht_cap_flags);
Ron Rindjunskyd3c990f2007-11-26 16:14:34 +02001619 }
1620
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001621 if (elems.country_elem) {
1622 /* Note we are only reviewing this on beacons
1623 * for the BSSID we are associated to */
1624 regulatory_hint_11d(local->hw.wiphy,
1625 elems.country_elem, elems.country_elem_len);
Vasanthakumar Thiagarajana8302de2009-01-09 18:14:15 +05301626
1627 /* TODO: IBSS also needs this */
1628 if (elems.pwr_constr_elem)
1629 ieee80211_handle_pwr_constr(sdata,
1630 le16_to_cpu(mgmt->u.probe_resp.capab_info),
1631 elems.pwr_constr_elem,
1632 elems.pwr_constr_elem_len);
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001633 }
1634
Johannes Berg471b3ef2007-12-28 14:32:58 +01001635 ieee80211_bss_info_change_notify(sdata, changed);
Jiri Bencf0706e822007-05-05 11:45:53 -07001636}
1637
Johannes Berg46900292009-02-15 12:44:28 +01001638ieee80211_rx_result ieee80211_sta_rx_mgmt(struct ieee80211_sub_if_data *sdata,
1639 struct sk_buff *skb,
1640 struct ieee80211_rx_status *rx_status)
Jiri Bencf0706e822007-05-05 11:45:53 -07001641{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001642 struct ieee80211_local *local = sdata->local;
Jiri Bencf0706e822007-05-05 11:45:53 -07001643 struct ieee80211_mgmt *mgmt;
1644 u16 fc;
1645
1646 if (skb->len < 24)
Johannes Berg46900292009-02-15 12:44:28 +01001647 return RX_DROP_MONITOR;
Jiri Bencf0706e822007-05-05 11:45:53 -07001648
1649 mgmt = (struct ieee80211_mgmt *) skb->data;
1650 fc = le16_to_cpu(mgmt->frame_control);
1651
1652 switch (fc & IEEE80211_FCTL_STYPE) {
1653 case IEEE80211_STYPE_PROBE_REQ:
1654 case IEEE80211_STYPE_PROBE_RESP:
1655 case IEEE80211_STYPE_BEACON:
1656 memcpy(skb->cb, rx_status, sizeof(*rx_status));
1657 case IEEE80211_STYPE_AUTH:
1658 case IEEE80211_STYPE_ASSOC_RESP:
1659 case IEEE80211_STYPE_REASSOC_RESP:
1660 case IEEE80211_STYPE_DEAUTH:
1661 case IEEE80211_STYPE_DISASSOC:
Johannes Berg46900292009-02-15 12:44:28 +01001662 skb_queue_tail(&sdata->u.mgd.skb_queue, skb);
1663 queue_work(local->hw.workqueue, &sdata->u.mgd.work);
1664 return RX_QUEUED;
Jiri Bencf0706e822007-05-05 11:45:53 -07001665 }
1666
Johannes Berg46900292009-02-15 12:44:28 +01001667 return RX_DROP_MONITOR;
Jiri Bencf0706e822007-05-05 11:45:53 -07001668}
1669
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001670static void ieee80211_sta_rx_queued_mgmt(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e822007-05-05 11:45:53 -07001671 struct sk_buff *skb)
1672{
1673 struct ieee80211_rx_status *rx_status;
Jiri Bencf0706e822007-05-05 11:45:53 -07001674 struct ieee80211_mgmt *mgmt;
1675 u16 fc;
1676
Jiri Bencf0706e822007-05-05 11:45:53 -07001677 rx_status = (struct ieee80211_rx_status *) skb->cb;
1678 mgmt = (struct ieee80211_mgmt *) skb->data;
1679 fc = le16_to_cpu(mgmt->frame_control);
1680
Johannes Berg46900292009-02-15 12:44:28 +01001681 switch (fc & IEEE80211_FCTL_STYPE) {
1682 case IEEE80211_STYPE_PROBE_RESP:
1683 ieee80211_rx_mgmt_probe_resp(sdata, mgmt, skb->len,
1684 rx_status);
1685 break;
1686 case IEEE80211_STYPE_BEACON:
1687 ieee80211_rx_mgmt_beacon(sdata, mgmt, skb->len,
1688 rx_status);
1689 break;
1690 case IEEE80211_STYPE_AUTH:
1691 ieee80211_rx_mgmt_auth(sdata, mgmt, skb->len);
1692 break;
1693 case IEEE80211_STYPE_ASSOC_RESP:
1694 ieee80211_rx_mgmt_assoc_resp(sdata, mgmt, skb->len, 0);
1695 break;
1696 case IEEE80211_STYPE_REASSOC_RESP:
1697 ieee80211_rx_mgmt_assoc_resp(sdata, mgmt, skb->len, 1);
1698 break;
1699 case IEEE80211_STYPE_DEAUTH:
1700 ieee80211_rx_mgmt_deauth(sdata, mgmt, skb->len);
1701 break;
1702 case IEEE80211_STYPE_DISASSOC:
1703 ieee80211_rx_mgmt_disassoc(sdata, mgmt, skb->len);
1704 break;
Jiri Bencf0706e822007-05-05 11:45:53 -07001705 }
1706
1707 kfree_skb(skb);
1708}
1709
Johannes Berg9c6bd792008-09-11 00:01:52 +02001710static void ieee80211_sta_timer(unsigned long data)
Jiri Bencf0706e822007-05-05 11:45:53 -07001711{
1712 struct ieee80211_sub_if_data *sdata =
1713 (struct ieee80211_sub_if_data *) data;
Johannes Berg46900292009-02-15 12:44:28 +01001714 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001715 struct ieee80211_local *local = sdata->local;
Jiri Bencf0706e822007-05-05 11:45:53 -07001716
Johannes Berg46900292009-02-15 12:44:28 +01001717 set_bit(IEEE80211_STA_REQ_RUN, &ifmgd->request);
1718 queue_work(local->hw.workqueue, &ifmgd->work);
Jiri Bencf0706e822007-05-05 11:45:53 -07001719}
1720
Johannes Berg46900292009-02-15 12:44:28 +01001721static void ieee80211_sta_reset_auth(struct ieee80211_sub_if_data *sdata)
Jiri Bencf0706e822007-05-05 11:45:53 -07001722{
Johannes Berg46900292009-02-15 12:44:28 +01001723 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001724 struct ieee80211_local *local = sdata->local;
Jiri Bencf0706e822007-05-05 11:45:53 -07001725
1726 if (local->ops->reset_tsf) {
1727 /* Reset own TSF to allow time synchronization work. */
1728 local->ops->reset_tsf(local_to_hw(local));
1729 }
1730
Johannes Berg46900292009-02-15 12:44:28 +01001731 ifmgd->wmm_last_param_set = -1; /* allow any WMM update */
Jiri Bencf0706e822007-05-05 11:45:53 -07001732
1733
Johannes Berg46900292009-02-15 12:44:28 +01001734 if (ifmgd->auth_algs & IEEE80211_AUTH_ALG_OPEN)
1735 ifmgd->auth_alg = WLAN_AUTH_OPEN;
1736 else if (ifmgd->auth_algs & IEEE80211_AUTH_ALG_SHARED_KEY)
1737 ifmgd->auth_alg = WLAN_AUTH_SHARED_KEY;
1738 else if (ifmgd->auth_algs & IEEE80211_AUTH_ALG_LEAP)
1739 ifmgd->auth_alg = WLAN_AUTH_LEAP;
Jouni Malinen636a5d32009-03-19 13:39:22 +02001740 else if (ifmgd->auth_algs & IEEE80211_AUTH_ALG_FT)
1741 ifmgd->auth_alg = WLAN_AUTH_FT;
Jiri Bencf0706e822007-05-05 11:45:53 -07001742 else
Johannes Berg46900292009-02-15 12:44:28 +01001743 ifmgd->auth_alg = WLAN_AUTH_OPEN;
1744 ifmgd->auth_transaction = -1;
1745 ifmgd->flags &= ~IEEE80211_STA_ASSOCIATED;
1746 ifmgd->assoc_scan_tries = 0;
1747 ifmgd->direct_probe_tries = 0;
1748 ifmgd->auth_tries = 0;
1749 ifmgd->assoc_tries = 0;
Tomas Winkler24e64622008-09-08 17:33:40 +02001750 netif_tx_stop_all_queues(sdata->dev);
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001751 netif_carrier_off(sdata->dev);
Jiri Bencf0706e822007-05-05 11:45:53 -07001752}
1753
Johannes Berg46900292009-02-15 12:44:28 +01001754static int ieee80211_sta_config_auth(struct ieee80211_sub_if_data *sdata)
Jiri Bencf0706e822007-05-05 11:45:53 -07001755{
Johannes Berg46900292009-02-15 12:44:28 +01001756 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001757 struct ieee80211_local *local = sdata->local;
Johannes Bergc2b13452008-09-11 00:01:55 +02001758 struct ieee80211_bss *bss;
Johannes Berg46900292009-02-15 12:44:28 +01001759 u8 *bssid = ifmgd->bssid, *ssid = ifmgd->ssid;
1760 u8 ssid_len = ifmgd->ssid_len;
Johannes Berg00d3f142009-02-10 21:26:00 +01001761 u16 capa_mask = WLAN_CAPABILITY_ESS;
1762 u16 capa_val = WLAN_CAPABILITY_ESS;
1763 struct ieee80211_channel *chan = local->oper_channel;
Johannes Berg60f8b392008-09-08 17:44:22 +02001764
Jouni Malinen636a5d32009-03-19 13:39:22 +02001765 if (!(ifmgd->flags & IEEE80211_STA_EXT_SME) &&
1766 ifmgd->flags & (IEEE80211_STA_AUTO_SSID_SEL |
Johannes Berg00d3f142009-02-10 21:26:00 +01001767 IEEE80211_STA_AUTO_BSSID_SEL |
1768 IEEE80211_STA_AUTO_CHANNEL_SEL)) {
1769 capa_mask |= WLAN_CAPABILITY_PRIVACY;
1770 if (sdata->default_key)
1771 capa_val |= WLAN_CAPABILITY_PRIVACY;
Johannes Berg60f8b392008-09-08 17:44:22 +02001772 }
Johannes Berg60f8b392008-09-08 17:44:22 +02001773
Johannes Berg46900292009-02-15 12:44:28 +01001774 if (ifmgd->flags & IEEE80211_STA_AUTO_CHANNEL_SEL)
Johannes Berg00d3f142009-02-10 21:26:00 +01001775 chan = NULL;
1776
Johannes Berg46900292009-02-15 12:44:28 +01001777 if (ifmgd->flags & IEEE80211_STA_AUTO_BSSID_SEL)
Johannes Berg00d3f142009-02-10 21:26:00 +01001778 bssid = NULL;
1779
Johannes Berg46900292009-02-15 12:44:28 +01001780 if (ifmgd->flags & IEEE80211_STA_AUTO_SSID_SEL) {
Johannes Berg00d3f142009-02-10 21:26:00 +01001781 ssid = NULL;
1782 ssid_len = 0;
1783 }
1784
1785 bss = (void *)cfg80211_get_bss(local->hw.wiphy, chan,
1786 bssid, ssid, ssid_len,
1787 capa_mask, capa_val);
1788
1789 if (bss) {
1790 ieee80211_set_freq(sdata, bss->cbss.channel->center_freq);
Johannes Berg46900292009-02-15 12:44:28 +01001791 if (!(ifmgd->flags & IEEE80211_STA_SSID_SET))
Johannes Berg00d3f142009-02-10 21:26:00 +01001792 ieee80211_sta_set_ssid(sdata, bss->ssid,
1793 bss->ssid_len);
1794 ieee80211_sta_set_bssid(sdata, bss->cbss.bssid);
1795 ieee80211_sta_def_wmm_params(sdata, bss->supp_rates_len,
1796 bss->supp_rates);
Johannes Berg46900292009-02-15 12:44:28 +01001797 if (sdata->u.mgd.mfp == IEEE80211_MFP_REQUIRED)
1798 sdata->u.mgd.flags |= IEEE80211_STA_MFP_ENABLED;
Jouni Malinenfdfacf02009-01-08 13:32:05 +02001799 else
Johannes Berg46900292009-02-15 12:44:28 +01001800 sdata->u.mgd.flags &= ~IEEE80211_STA_MFP_ENABLED;
Johannes Berg60f8b392008-09-08 17:44:22 +02001801
1802 /* Send out direct probe if no probe resp was received or
1803 * the one we have is outdated
1804 */
Johannes Berg00d3f142009-02-10 21:26:00 +01001805 if (!bss->last_probe_resp ||
1806 time_after(jiffies, bss->last_probe_resp
Johannes Berg60f8b392008-09-08 17:44:22 +02001807 + IEEE80211_SCAN_RESULT_EXPIRE))
Johannes Berg46900292009-02-15 12:44:28 +01001808 ifmgd->state = IEEE80211_STA_MLME_DIRECT_PROBE;
Johannes Berg60f8b392008-09-08 17:44:22 +02001809 else
Johannes Berg46900292009-02-15 12:44:28 +01001810 ifmgd->state = IEEE80211_STA_MLME_AUTHENTICATE;
Johannes Berg60f8b392008-09-08 17:44:22 +02001811
Johannes Berg00d3f142009-02-10 21:26:00 +01001812 ieee80211_rx_bss_put(local, bss);
Johannes Berg46900292009-02-15 12:44:28 +01001813 ieee80211_sta_reset_auth(sdata);
Johannes Berg60f8b392008-09-08 17:44:22 +02001814 return 0;
1815 } else {
Johannes Berg46900292009-02-15 12:44:28 +01001816 if (ifmgd->assoc_scan_tries < IEEE80211_ASSOC_SCANS_MAX_TRIES) {
1817 ifmgd->assoc_scan_tries++;
Johannes Berg2a519312009-02-10 21:25:55 +01001818 /* XXX maybe racy? */
1819 if (local->scan_req)
1820 return -1;
1821 memcpy(local->int_scan_req.ssids[0].ssid,
Johannes Berg46900292009-02-15 12:44:28 +01001822 ifmgd->ssid, IEEE80211_MAX_SSID_LEN);
1823 if (ifmgd->flags & IEEE80211_STA_AUTO_SSID_SEL)
Johannes Berg2a519312009-02-10 21:25:55 +01001824 local->int_scan_req.ssids[0].ssid_len = 0;
Johannes Berg60f8b392008-09-08 17:44:22 +02001825 else
Johannes Berg46900292009-02-15 12:44:28 +01001826 local->int_scan_req.ssids[0].ssid_len = ifmgd->ssid_len;
Helmut Schaaaf88b902009-03-09 15:47:08 +01001827
1828 if (ieee80211_start_scan(sdata, &local->int_scan_req))
1829 ieee80211_scan_failed(local);
1830
Johannes Berg46900292009-02-15 12:44:28 +01001831 ifmgd->state = IEEE80211_STA_MLME_AUTHENTICATE;
1832 set_bit(IEEE80211_STA_REQ_AUTH, &ifmgd->request);
Sujithe3740552009-01-29 09:34:22 +05301833 } else {
Johannes Berg46900292009-02-15 12:44:28 +01001834 ifmgd->assoc_scan_tries = 0;
1835 ifmgd->state = IEEE80211_STA_MLME_DISABLED;
Sujithe3740552009-01-29 09:34:22 +05301836 }
Johannes Berg60f8b392008-09-08 17:44:22 +02001837 }
1838 return -1;
1839}
1840
1841
Johannes Berg9c6bd792008-09-11 00:01:52 +02001842static void ieee80211_sta_work(struct work_struct *work)
Johannes Berg60f8b392008-09-08 17:44:22 +02001843{
1844 struct ieee80211_sub_if_data *sdata =
Johannes Berg46900292009-02-15 12:44:28 +01001845 container_of(work, struct ieee80211_sub_if_data, u.mgd.work);
Johannes Berg60f8b392008-09-08 17:44:22 +02001846 struct ieee80211_local *local = sdata->local;
Johannes Berg46900292009-02-15 12:44:28 +01001847 struct ieee80211_if_managed *ifmgd;
Johannes Berg60f8b392008-09-08 17:44:22 +02001848 struct sk_buff *skb;
1849
1850 if (!netif_running(sdata->dev))
1851 return;
1852
Johannes Bergc2b13452008-09-11 00:01:55 +02001853 if (local->sw_scanning || local->hw_scanning)
Johannes Berg60f8b392008-09-08 17:44:22 +02001854 return;
1855
Johannes Berg46900292009-02-15 12:44:28 +01001856 if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION))
Johannes Berg60f8b392008-09-08 17:44:22 +02001857 return;
Johannes Berg46900292009-02-15 12:44:28 +01001858 ifmgd = &sdata->u.mgd;
Johannes Berg60f8b392008-09-08 17:44:22 +02001859
Johannes Berg46900292009-02-15 12:44:28 +01001860 while ((skb = skb_dequeue(&ifmgd->skb_queue)))
Johannes Berg60f8b392008-09-08 17:44:22 +02001861 ieee80211_sta_rx_queued_mgmt(sdata, skb);
1862
Johannes Berg46900292009-02-15 12:44:28 +01001863 if (ifmgd->state != IEEE80211_STA_MLME_DIRECT_PROBE &&
1864 ifmgd->state != IEEE80211_STA_MLME_AUTHENTICATE &&
1865 ifmgd->state != IEEE80211_STA_MLME_ASSOCIATE &&
1866 test_and_clear_bit(IEEE80211_STA_REQ_SCAN, &ifmgd->request)) {
Helmut Schaaaf88b902009-03-09 15:47:08 +01001867 /*
1868 * The call to ieee80211_start_scan can fail but ieee80211_request_scan
1869 * (which queued ieee80211_sta_work) did not return an error. Thus, call
1870 * ieee80211_scan_failed here if ieee80211_start_scan fails in order to
1871 * notify the scan requester.
1872 */
1873 if (ieee80211_start_scan(sdata, local->scan_req))
1874 ieee80211_scan_failed(local);
Johannes Berg60f8b392008-09-08 17:44:22 +02001875 return;
1876 }
1877
Johannes Berg46900292009-02-15 12:44:28 +01001878 if (test_and_clear_bit(IEEE80211_STA_REQ_AUTH, &ifmgd->request)) {
1879 if (ieee80211_sta_config_auth(sdata))
Johannes Berg60f8b392008-09-08 17:44:22 +02001880 return;
Johannes Berg46900292009-02-15 12:44:28 +01001881 clear_bit(IEEE80211_STA_REQ_RUN, &ifmgd->request);
1882 } else if (!test_and_clear_bit(IEEE80211_STA_REQ_RUN, &ifmgd->request))
Johannes Berg60f8b392008-09-08 17:44:22 +02001883 return;
1884
Johannes Berg46900292009-02-15 12:44:28 +01001885 switch (ifmgd->state) {
Johannes Berg60f8b392008-09-08 17:44:22 +02001886 case IEEE80211_STA_MLME_DISABLED:
1887 break;
1888 case IEEE80211_STA_MLME_DIRECT_PROBE:
Johannes Berg46900292009-02-15 12:44:28 +01001889 ieee80211_direct_probe(sdata);
Johannes Berg60f8b392008-09-08 17:44:22 +02001890 break;
1891 case IEEE80211_STA_MLME_AUTHENTICATE:
Johannes Berg46900292009-02-15 12:44:28 +01001892 ieee80211_authenticate(sdata);
Johannes Berg60f8b392008-09-08 17:44:22 +02001893 break;
1894 case IEEE80211_STA_MLME_ASSOCIATE:
Johannes Berg46900292009-02-15 12:44:28 +01001895 ieee80211_associate(sdata);
Johannes Berg60f8b392008-09-08 17:44:22 +02001896 break;
1897 case IEEE80211_STA_MLME_ASSOCIATED:
Johannes Berg46900292009-02-15 12:44:28 +01001898 ieee80211_associated(sdata);
Johannes Berg60f8b392008-09-08 17:44:22 +02001899 break;
Johannes Berg60f8b392008-09-08 17:44:22 +02001900 default:
1901 WARN_ON(1);
1902 break;
1903 }
1904
Johannes Berg46900292009-02-15 12:44:28 +01001905 if (ieee80211_privacy_mismatch(sdata)) {
Johannes Berg60f8b392008-09-08 17:44:22 +02001906 printk(KERN_DEBUG "%s: privacy configuration mismatch and "
1907 "mixed-cell disabled - disassociate\n", sdata->dev->name);
1908
Johannes Berg46900292009-02-15 12:44:28 +01001909 ieee80211_set_disassoc(sdata, false, true,
Johannes Berg60f8b392008-09-08 17:44:22 +02001910 WLAN_REASON_UNSPECIFIED);
1911 }
1912}
Johannes Berg0a51b272008-09-08 17:44:25 +02001913
Johannes Berga1678f82008-09-11 00:01:47 +02001914static void ieee80211_restart_sta_timer(struct ieee80211_sub_if_data *sdata)
1915{
Kalle Vaload935682009-04-19 08:47:19 +03001916 if (sdata->vif.type == NL80211_IFTYPE_STATION) {
1917 /*
1918 * Need to update last_beacon to avoid beacon loss
1919 * test to trigger.
1920 */
1921 sdata->u.mgd.last_beacon = jiffies;
1922
1923
Johannes Berg7c950692008-09-11 00:01:48 +02001924 queue_work(sdata->local->hw.workqueue,
Johannes Berg46900292009-02-15 12:44:28 +01001925 &sdata->u.mgd.work);
Kalle Vaload935682009-04-19 08:47:19 +03001926 }
Johannes Berga1678f82008-09-11 00:01:47 +02001927}
1928
Johannes Berg9c6bd792008-09-11 00:01:52 +02001929/* interface setup */
1930void ieee80211_sta_setup_sdata(struct ieee80211_sub_if_data *sdata)
1931{
Johannes Berg46900292009-02-15 12:44:28 +01001932 struct ieee80211_if_managed *ifmgd;
Johannes Berg9c6bd792008-09-11 00:01:52 +02001933
Johannes Berg46900292009-02-15 12:44:28 +01001934 ifmgd = &sdata->u.mgd;
1935 INIT_WORK(&ifmgd->work, ieee80211_sta_work);
1936 INIT_WORK(&ifmgd->chswitch_work, ieee80211_chswitch_work);
Kalle Valo04de8382009-03-22 21:57:35 +02001937 INIT_WORK(&ifmgd->beacon_loss_work, ieee80211_beacon_loss_work);
Johannes Berg46900292009-02-15 12:44:28 +01001938 setup_timer(&ifmgd->timer, ieee80211_sta_timer,
Johannes Berg9c6bd792008-09-11 00:01:52 +02001939 (unsigned long) sdata);
Johannes Berg46900292009-02-15 12:44:28 +01001940 setup_timer(&ifmgd->chswitch_timer, ieee80211_chswitch_timer,
Sujithc481ec92009-01-06 09:28:37 +05301941 (unsigned long) sdata);
Johannes Berg46900292009-02-15 12:44:28 +01001942 skb_queue_head_init(&ifmgd->skb_queue);
Johannes Berg9c6bd792008-09-11 00:01:52 +02001943
Johannes Berg46900292009-02-15 12:44:28 +01001944 ifmgd->capab = WLAN_CAPABILITY_ESS;
1945 ifmgd->auth_algs = IEEE80211_AUTH_ALG_OPEN |
Johannes Berg9c6bd792008-09-11 00:01:52 +02001946 IEEE80211_AUTH_ALG_SHARED_KEY;
Johannes Berg46900292009-02-15 12:44:28 +01001947 ifmgd->flags |= IEEE80211_STA_CREATE_IBSS |
Johannes Berg9c6bd792008-09-11 00:01:52 +02001948 IEEE80211_STA_AUTO_BSSID_SEL |
1949 IEEE80211_STA_AUTO_CHANNEL_SEL;
Johannes Berg176be722009-03-12 23:49:28 +01001950 if (sdata->local->hw.queues >= 4)
Johannes Berg46900292009-02-15 12:44:28 +01001951 ifmgd->flags |= IEEE80211_STA_WMM_ENABLED;
Johannes Berg9c6bd792008-09-11 00:01:52 +02001952}
1953
1954/* configuration hooks */
Johannes Berg46900292009-02-15 12:44:28 +01001955void ieee80211_sta_req_auth(struct ieee80211_sub_if_data *sdata)
Johannes Berg9c6bd792008-09-11 00:01:52 +02001956{
Johannes Berg46900292009-02-15 12:44:28 +01001957 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg9c6bd792008-09-11 00:01:52 +02001958 struct ieee80211_local *local = sdata->local;
1959
Johannes Berg46900292009-02-15 12:44:28 +01001960 if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION))
Johannes Berg9c6bd792008-09-11 00:01:52 +02001961 return;
1962
Johannes Berg46900292009-02-15 12:44:28 +01001963 if ((ifmgd->flags & (IEEE80211_STA_BSSID_SET |
Johannes Berg9c6bd792008-09-11 00:01:52 +02001964 IEEE80211_STA_AUTO_BSSID_SEL)) &&
Johannes Berg46900292009-02-15 12:44:28 +01001965 (ifmgd->flags & (IEEE80211_STA_SSID_SET |
Johannes Berg9c6bd792008-09-11 00:01:52 +02001966 IEEE80211_STA_AUTO_SSID_SEL))) {
1967
Johannes Berg46900292009-02-15 12:44:28 +01001968 if (ifmgd->state == IEEE80211_STA_MLME_ASSOCIATED)
1969 ieee80211_set_disassoc(sdata, true, true,
Johannes Berg9c6bd792008-09-11 00:01:52 +02001970 WLAN_REASON_DEAUTH_LEAVING);
1971
Jouni Malinen636a5d32009-03-19 13:39:22 +02001972 if (!(ifmgd->flags & IEEE80211_STA_EXT_SME) ||
1973 ifmgd->state != IEEE80211_STA_MLME_ASSOCIATE)
1974 set_bit(IEEE80211_STA_REQ_AUTH, &ifmgd->request);
1975 else if (ifmgd->flags & IEEE80211_STA_EXT_SME)
1976 set_bit(IEEE80211_STA_REQ_RUN, &ifmgd->request);
Johannes Berg46900292009-02-15 12:44:28 +01001977 queue_work(local->hw.workqueue, &ifmgd->work);
Johannes Berg9c6bd792008-09-11 00:01:52 +02001978 }
1979}
1980
Alina Friedrichsen79f64402009-02-21 01:27:29 +01001981int ieee80211_sta_commit(struct ieee80211_sub_if_data *sdata)
1982{
1983 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1984
Alina Friedrichsen79f64402009-02-21 01:27:29 +01001985 if (ifmgd->ssid_len)
1986 ifmgd->flags |= IEEE80211_STA_SSID_SET;
1987 else
1988 ifmgd->flags &= ~IEEE80211_STA_SSID_SET;
1989
1990 return 0;
1991}
1992
Johannes Berg9c6bd792008-09-11 00:01:52 +02001993int ieee80211_sta_set_ssid(struct ieee80211_sub_if_data *sdata, char *ssid, size_t len)
1994{
Johannes Berg46900292009-02-15 12:44:28 +01001995 struct ieee80211_if_managed *ifmgd;
Johannes Berg9c6bd792008-09-11 00:01:52 +02001996
1997 if (len > IEEE80211_MAX_SSID_LEN)
1998 return -EINVAL;
1999
Johannes Berg46900292009-02-15 12:44:28 +01002000 ifmgd = &sdata->u.mgd;
Johannes Berg9c6bd792008-09-11 00:01:52 +02002001
Johannes Berg46900292009-02-15 12:44:28 +01002002 if (ifmgd->ssid_len != len || memcmp(ifmgd->ssid, ssid, len) != 0) {
Jouni Malinena2995422009-03-19 13:39:20 +02002003 /*
2004 * Do not use reassociation if SSID is changed (different ESS).
2005 */
2006 ifmgd->flags &= ~IEEE80211_STA_PREV_BSSID_SET;
Johannes Berg46900292009-02-15 12:44:28 +01002007 memset(ifmgd->ssid, 0, sizeof(ifmgd->ssid));
2008 memcpy(ifmgd->ssid, ssid, len);
2009 ifmgd->ssid_len = len;
Johannes Berg9c6bd792008-09-11 00:01:52 +02002010 }
2011
Alina Friedrichsen79f64402009-02-21 01:27:29 +01002012 return ieee80211_sta_commit(sdata);
Johannes Berg9c6bd792008-09-11 00:01:52 +02002013}
2014
2015int ieee80211_sta_get_ssid(struct ieee80211_sub_if_data *sdata, char *ssid, size_t *len)
2016{
Johannes Berg46900292009-02-15 12:44:28 +01002017 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2018 memcpy(ssid, ifmgd->ssid, ifmgd->ssid_len);
2019 *len = ifmgd->ssid_len;
Johannes Berg9c6bd792008-09-11 00:01:52 +02002020 return 0;
2021}
2022
2023int ieee80211_sta_set_bssid(struct ieee80211_sub_if_data *sdata, u8 *bssid)
2024{
Johannes Berg46900292009-02-15 12:44:28 +01002025 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg9c6bd792008-09-11 00:01:52 +02002026
Alina Friedrichsendfe67012009-01-24 01:19:04 +01002027 if (is_valid_ether_addr(bssid)) {
Johannes Berg46900292009-02-15 12:44:28 +01002028 memcpy(ifmgd->bssid, bssid, ETH_ALEN);
2029 ifmgd->flags |= IEEE80211_STA_BSSID_SET;
Alina Friedrichsendfe67012009-01-24 01:19:04 +01002030 } else {
Johannes Berg46900292009-02-15 12:44:28 +01002031 memset(ifmgd->bssid, 0, ETH_ALEN);
2032 ifmgd->flags &= ~IEEE80211_STA_BSSID_SET;
Alina Friedrichsendfe67012009-01-24 01:19:04 +01002033 }
2034
2035 if (netif_running(sdata->dev)) {
2036 if (ieee80211_if_config(sdata, IEEE80211_IFCC_BSSID)) {
Johannes Berg9c6bd792008-09-11 00:01:52 +02002037 printk(KERN_DEBUG "%s: Failed to config new BSSID to "
2038 "the low-level driver\n", sdata->dev->name);
Johannes Berg9c6bd792008-09-11 00:01:52 +02002039 }
2040 }
2041
Alina Friedrichsen79f64402009-02-21 01:27:29 +01002042 return ieee80211_sta_commit(sdata);
Johannes Berg9c6bd792008-09-11 00:01:52 +02002043}
2044
Jouni Malinen636a5d32009-03-19 13:39:22 +02002045int ieee80211_sta_set_extra_ie(struct ieee80211_sub_if_data *sdata,
2046 const char *ie, size_t len)
Johannes Berg9c6bd792008-09-11 00:01:52 +02002047{
Johannes Berg46900292009-02-15 12:44:28 +01002048 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg9c6bd792008-09-11 00:01:52 +02002049
Johannes Berg46900292009-02-15 12:44:28 +01002050 kfree(ifmgd->extra_ie);
Johannes Berg9c6bd792008-09-11 00:01:52 +02002051 if (len == 0) {
Johannes Berg46900292009-02-15 12:44:28 +01002052 ifmgd->extra_ie = NULL;
2053 ifmgd->extra_ie_len = 0;
Johannes Berg9c6bd792008-09-11 00:01:52 +02002054 return 0;
2055 }
Johannes Berg46900292009-02-15 12:44:28 +01002056 ifmgd->extra_ie = kmalloc(len, GFP_KERNEL);
2057 if (!ifmgd->extra_ie) {
2058 ifmgd->extra_ie_len = 0;
Johannes Berg9c6bd792008-09-11 00:01:52 +02002059 return -ENOMEM;
2060 }
Johannes Berg46900292009-02-15 12:44:28 +01002061 memcpy(ifmgd->extra_ie, ie, len);
2062 ifmgd->extra_ie_len = len;
Johannes Berg9c6bd792008-09-11 00:01:52 +02002063 return 0;
2064}
2065
2066int ieee80211_sta_deauthenticate(struct ieee80211_sub_if_data *sdata, u16 reason)
2067{
Johannes Berg9c6bd792008-09-11 00:01:52 +02002068 printk(KERN_DEBUG "%s: deauthenticating by local choice (reason=%d)\n",
2069 sdata->dev->name, reason);
2070
Johannes Berg46900292009-02-15 12:44:28 +01002071 if (sdata->vif.type != NL80211_IFTYPE_STATION)
Johannes Berg9c6bd792008-09-11 00:01:52 +02002072 return -EINVAL;
2073
Johannes Berg46900292009-02-15 12:44:28 +01002074 ieee80211_set_disassoc(sdata, true, true, reason);
Johannes Berg9c6bd792008-09-11 00:01:52 +02002075 return 0;
2076}
2077
2078int ieee80211_sta_disassociate(struct ieee80211_sub_if_data *sdata, u16 reason)
2079{
Johannes Berg46900292009-02-15 12:44:28 +01002080 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg9c6bd792008-09-11 00:01:52 +02002081
2082 printk(KERN_DEBUG "%s: disassociating by local choice (reason=%d)\n",
2083 sdata->dev->name, reason);
2084
Johannes Berg05c914f2008-09-11 00:01:58 +02002085 if (sdata->vif.type != NL80211_IFTYPE_STATION)
Johannes Berg9c6bd792008-09-11 00:01:52 +02002086 return -EINVAL;
2087
Johannes Berg46900292009-02-15 12:44:28 +01002088 if (!(ifmgd->flags & IEEE80211_STA_ASSOCIATED))
2089 return -ENOLINK;
Johannes Berg9c6bd792008-09-11 00:01:52 +02002090
Johannes Berg46900292009-02-15 12:44:28 +01002091 ieee80211_set_disassoc(sdata, false, true, reason);
Johannes Berg9c6bd792008-09-11 00:01:52 +02002092 return 0;
2093}
2094
2095/* scan finished notification */
Johannes Berg0a51b272008-09-08 17:44:25 +02002096void ieee80211_mlme_notify_scan_completed(struct ieee80211_local *local)
2097{
2098 struct ieee80211_sub_if_data *sdata = local->scan_sdata;
Johannes Berga1678f82008-09-11 00:01:47 +02002099
2100 /* Restart STA timers */
2101 rcu_read_lock();
2102 list_for_each_entry_rcu(sdata, &local->interfaces, list)
2103 ieee80211_restart_sta_timer(sdata);
2104 rcu_read_unlock();
Johannes Berg0a51b272008-09-08 17:44:25 +02002105}
Kalle Valo520eb822008-12-18 23:35:27 +02002106
2107void ieee80211_dynamic_ps_disable_work(struct work_struct *work)
2108{
2109 struct ieee80211_local *local =
2110 container_of(work, struct ieee80211_local,
2111 dynamic_ps_disable_work);
2112
2113 if (local->hw.conf.flags & IEEE80211_CONF_PS) {
2114 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
2115 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
2116 }
2117
2118 ieee80211_wake_queues_by_reason(&local->hw,
2119 IEEE80211_QUEUE_STOP_REASON_PS);
2120}
2121
2122void ieee80211_dynamic_ps_enable_work(struct work_struct *work)
2123{
2124 struct ieee80211_local *local =
2125 container_of(work, struct ieee80211_local,
2126 dynamic_ps_enable_work);
Johannes Berg7181d462009-04-15 21:33:15 +02002127 /* XXX: using scan_sdata is completely broken! */
Vivek Natarajana97b77b2008-12-23 18:39:02 -08002128 struct ieee80211_sub_if_data *sdata = local->scan_sdata;
Kalle Valo520eb822008-12-18 23:35:27 +02002129
2130 if (local->hw.conf.flags & IEEE80211_CONF_PS)
2131 return;
2132
Johannes Berg7181d462009-04-15 21:33:15 +02002133 if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK && sdata)
Johannes Berg4be8c382009-01-07 18:28:20 +01002134 ieee80211_send_nullfunc(local, sdata, 1);
Kalle Valo520eb822008-12-18 23:35:27 +02002135
Johannes Berg4be8c382009-01-07 18:28:20 +01002136 local->hw.conf.flags |= IEEE80211_CONF_PS;
Kalle Valo520eb822008-12-18 23:35:27 +02002137 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
2138}
2139
2140void ieee80211_dynamic_ps_timer(unsigned long data)
2141{
2142 struct ieee80211_local *local = (void *) data;
2143
2144 queue_work(local->hw.workqueue, &local->dynamic_ps_enable_work);
2145}
Johannes Berg46900292009-02-15 12:44:28 +01002146
2147void ieee80211_send_nullfunc(struct ieee80211_local *local,
2148 struct ieee80211_sub_if_data *sdata,
2149 int powersave)
2150{
2151 struct sk_buff *skb;
2152 struct ieee80211_hdr *nullfunc;
2153 __le16 fc;
2154
2155 if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION))
2156 return;
2157
2158 skb = dev_alloc_skb(local->hw.extra_tx_headroom + 24);
2159 if (!skb) {
2160 printk(KERN_DEBUG "%s: failed to allocate buffer for nullfunc "
2161 "frame\n", sdata->dev->name);
2162 return;
2163 }
2164 skb_reserve(skb, local->hw.extra_tx_headroom);
2165
2166 nullfunc = (struct ieee80211_hdr *) skb_put(skb, 24);
2167 memset(nullfunc, 0, 24);
2168 fc = cpu_to_le16(IEEE80211_FTYPE_DATA | IEEE80211_STYPE_NULLFUNC |
2169 IEEE80211_FCTL_TODS);
2170 if (powersave)
2171 fc |= cpu_to_le16(IEEE80211_FCTL_PM);
2172 nullfunc->frame_control = fc;
2173 memcpy(nullfunc->addr1, sdata->u.mgd.bssid, ETH_ALEN);
2174 memcpy(nullfunc->addr2, sdata->dev->dev_addr, ETH_ALEN);
2175 memcpy(nullfunc->addr3, sdata->u.mgd.bssid, ETH_ALEN);
2176
2177 ieee80211_tx_skb(sdata, skb, 0);
2178}