blob: c05be09b9c6f5db67a85742d4b0f61e9724ac4c5 [file] [log] [blame]
Jiri Bencf0706e82007-05-05 11:45:53 -07001/*
2 * BSS client mode implementation
Jouni Malinen5394af42009-01-08 13:31:59 +02003 * Copyright 2003-2008, Jouni Malinen <j@w1.fi>
Jiri Bencf0706e82007-05-05 11:45:53 -07004 * Copyright 2004, Instant802 Networks, Inc.
5 * Copyright 2005, Devicescape Software, Inc.
6 * Copyright 2006-2007 Jiri Benc <jbenc@suse.cz>
7 * Copyright 2007, Michael Wu <flamingice@sourmilk.net>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 */
13
Geert Uytterhoeven5b323ed2007-05-08 18:40:27 -070014#include <linux/delay.h>
Jiri Bencf0706e82007-05-05 11:45:53 -070015#include <linux/if_ether.h>
16#include <linux/skbuff.h>
Jiri Bencf0706e82007-05-05 11:45:53 -070017#include <linux/if_arp.h>
Jiri Bencf0706e82007-05-05 11:45:53 -070018#include <linux/etherdevice.h>
Johannes Bergd0709a62008-02-25 16:27:46 +010019#include <linux/rtnetlink.h>
Jiri Bencf0706e82007-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 Bencf0706e82007-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 Bencf0706e82007-05-05 11:45:53 -070026
Ron Rindjunsky6042a3e2008-08-08 01:50:46 +030027#define IEEE80211_ASSOC_SCANS_MAX_TRIES 2
Jiri Bencf0706e82007-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)
33#define IEEE80211_PROBE_INTERVAL (60 * HZ)
34#define IEEE80211_RETRY_AUTH_INTERVAL (1 * HZ)
Jiri Bencf0706e82007-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 Bencf0706e82007-05-05 11:45:53 -0700365 u8 *wmm_param, size_t wmm_param_len)
366{
Jiri Bencf0706e82007-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 Bencf0706e82007-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 Bencf0706e82007-05-05 11:45:53 -0700382 return;
Johannes Berg46900292009-02-15 12:44:28 +0100383 ifmgd->wmm_last_param_set = count;
Jiri Bencf0706e82007-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 Bencf0706e82007-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 Bencf0706e82007-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 Bencf0706e82007-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 Bencf0706e82007-05-05 11:45:53 -0700411 break;
Jouni Malinen0eeb59f2009-03-05 17:23:46 +0200412 case 0: /* AC_BE */
Jiri Bencf0706e82007-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 Bencf0706e82007-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 Bencf0706e82007-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 Bencf0706e82007-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 Bencf0706e82007-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
444 aid &= 0x3fff;
445 index = aid / 8;
446 mask = 1 << (aid & 7);
447
Vivek Natarajana97b77b2008-12-23 18:39:02 -0800448 indexn1 = tim->bitmap_ctrl & 0xfe;
449 indexn2 = elems->tim_len + indexn1 - 4;
450
451 if (index < indexn1 || index > indexn2)
452 return false;
453
454 index -= indexn1;
455
456 return !!(tim->virtual_map[index] & mask);
457}
458
Johannes Berg7a5158e2008-10-08 10:59:33 +0200459static u32 ieee80211_handle_bss_capability(struct ieee80211_sub_if_data *sdata,
460 u16 capab, bool erp_valid, u8 erp)
Daniel Drake56282212007-07-10 19:32:10 +0200461{
Johannes Bergbda39332008-10-11 01:51:51 +0200462 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
Tomas Winklerebd74482008-07-01 10:44:50 +0300463#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Johannes Berg46900292009-02-15 12:44:28 +0100464 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Tomas Winklerebd74482008-07-01 10:44:50 +0300465#endif
Johannes Berg471b3ef2007-12-28 14:32:58 +0100466 u32 changed = 0;
Johannes Berg7a5158e2008-10-08 10:59:33 +0200467 bool use_protection;
468 bool use_short_preamble;
469 bool use_short_slot;
470
471 if (erp_valid) {
472 use_protection = (erp & WLAN_ERP_USE_PROTECTION) != 0;
473 use_short_preamble = (erp & WLAN_ERP_BARKER_PREAMBLE) == 0;
474 } else {
475 use_protection = false;
476 use_short_preamble = !!(capab & WLAN_CAPABILITY_SHORT_PREAMBLE);
477 }
478
479 use_short_slot = !!(capab & WLAN_CAPABILITY_SHORT_SLOT_TIME);
Daniel Drake56282212007-07-10 19:32:10 +0200480
Johannes Berg471b3ef2007-12-28 14:32:58 +0100481 if (use_protection != bss_conf->use_cts_prot) {
Johannes Bergf4ea83d2008-06-30 15:10:46 +0200482#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Daniel Drake56282212007-07-10 19:32:10 +0200483 if (net_ratelimit()) {
Johannes Berg0c68ae262008-10-27 15:56:10 -0700484 printk(KERN_DEBUG "%s: CTS protection %s (BSSID=%pM)\n",
Johannes Berg471b3ef2007-12-28 14:32:58 +0100485 sdata->dev->name,
Daniel Drake56282212007-07-10 19:32:10 +0200486 use_protection ? "enabled" : "disabled",
Johannes Berg46900292009-02-15 12:44:28 +0100487 ifmgd->bssid);
Daniel Drake56282212007-07-10 19:32:10 +0200488 }
Johannes Bergf4ea83d2008-06-30 15:10:46 +0200489#endif
Johannes Berg471b3ef2007-12-28 14:32:58 +0100490 bss_conf->use_cts_prot = use_protection;
491 changed |= BSS_CHANGED_ERP_CTS_PROT;
Daniel Drake56282212007-07-10 19:32:10 +0200492 }
Daniel Drake7e9ed182007-07-27 15:43:24 +0200493
Vladimir Koutnyd43c7b32008-03-31 17:05:03 +0200494 if (use_short_preamble != bss_conf->use_short_preamble) {
Johannes Bergf4ea83d2008-06-30 15:10:46 +0200495#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Daniel Drake7e9ed182007-07-27 15:43:24 +0200496 if (net_ratelimit()) {
497 printk(KERN_DEBUG "%s: switched to %s barker preamble"
Johannes Berg0c68ae262008-10-27 15:56:10 -0700498 " (BSSID=%pM)\n",
Johannes Berg471b3ef2007-12-28 14:32:58 +0100499 sdata->dev->name,
Vladimir Koutnyd43c7b32008-03-31 17:05:03 +0200500 use_short_preamble ? "short" : "long",
Johannes Berg46900292009-02-15 12:44:28 +0100501 ifmgd->bssid);
Daniel Drake7e9ed182007-07-27 15:43:24 +0200502 }
Johannes Bergf4ea83d2008-06-30 15:10:46 +0200503#endif
Vladimir Koutnyd43c7b32008-03-31 17:05:03 +0200504 bss_conf->use_short_preamble = use_short_preamble;
Johannes Berg471b3ef2007-12-28 14:32:58 +0100505 changed |= BSS_CHANGED_ERP_PREAMBLE;
Daniel Drake7e9ed182007-07-27 15:43:24 +0200506 }
Daniel Draked9430a32007-07-27 15:43:24 +0200507
Johannes Berg7a5158e2008-10-08 10:59:33 +0200508 if (use_short_slot != bss_conf->use_short_slot) {
509#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
510 if (net_ratelimit()) {
Christian Lamparter391429c2009-01-18 02:24:15 +0100511 printk(KERN_DEBUG "%s: switched to %s slot time"
512 " (BSSID=%pM)\n",
Johannes Berg7a5158e2008-10-08 10:59:33 +0200513 sdata->dev->name,
514 use_short_slot ? "short" : "long",
Johannes Berg46900292009-02-15 12:44:28 +0100515 ifmgd->bssid);
Johannes Berg7a5158e2008-10-08 10:59:33 +0200516 }
517#endif
518 bss_conf->use_short_slot = use_short_slot;
519 changed |= BSS_CHANGED_ERP_SLOT;
John W. Linville50c4afb2008-04-15 14:09:27 -0400520 }
521
522 return changed;
523}
524
Johannes Berg46900292009-02-15 12:44:28 +0100525static void ieee80211_sta_send_apinfo(struct ieee80211_sub_if_data *sdata)
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200526{
527 union iwreq_data wrqu;
Johannes Berg46900292009-02-15 12:44:28 +0100528
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200529 memset(&wrqu, 0, sizeof(wrqu));
Johannes Berg46900292009-02-15 12:44:28 +0100530 if (sdata->u.mgd.flags & IEEE80211_STA_ASSOCIATED)
531 memcpy(wrqu.ap_addr.sa_data, sdata->u.mgd.bssid, ETH_ALEN);
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200532 wrqu.ap_addr.sa_family = ARPHRD_ETHER;
533 wireless_send_event(sdata->dev, SIOCGIWAP, &wrqu, NULL);
534}
535
Johannes Berg46900292009-02-15 12:44:28 +0100536static void ieee80211_sta_send_associnfo(struct ieee80211_sub_if_data *sdata)
Jiri Bencf0706e82007-05-05 11:45:53 -0700537{
Johannes Berg46900292009-02-15 12:44:28 +0100538 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Linus Torvalds74af0252008-09-05 12:38:09 -0700539 char *buf;
540 size_t len;
541 int i;
Jiri Bencf0706e82007-05-05 11:45:53 -0700542 union iwreq_data wrqu;
543
Johannes Berg46900292009-02-15 12:44:28 +0100544 if (!ifmgd->assocreq_ies && !ifmgd->assocresp_ies)
Linus Torvalds74af0252008-09-05 12:38:09 -0700545 return;
546
Johannes Berg46900292009-02-15 12:44:28 +0100547 buf = kmalloc(50 + 2 * (ifmgd->assocreq_ies_len +
548 ifmgd->assocresp_ies_len), GFP_KERNEL);
Linus Torvalds74af0252008-09-05 12:38:09 -0700549 if (!buf)
550 return;
551
552 len = sprintf(buf, "ASSOCINFO(");
Johannes Berg46900292009-02-15 12:44:28 +0100553 if (ifmgd->assocreq_ies) {
Linus Torvalds74af0252008-09-05 12:38:09 -0700554 len += sprintf(buf + len, "ReqIEs=");
Johannes Berg46900292009-02-15 12:44:28 +0100555 for (i = 0; i < ifmgd->assocreq_ies_len; i++) {
Linus Torvalds74af0252008-09-05 12:38:09 -0700556 len += sprintf(buf + len, "%02x",
Johannes Berg46900292009-02-15 12:44:28 +0100557 ifmgd->assocreq_ies[i]);
Linus Torvalds74af0252008-09-05 12:38:09 -0700558 }
Jiri Bencf0706e82007-05-05 11:45:53 -0700559 }
Johannes Berg46900292009-02-15 12:44:28 +0100560 if (ifmgd->assocresp_ies) {
561 if (ifmgd->assocreq_ies)
Linus Torvalds74af0252008-09-05 12:38:09 -0700562 len += sprintf(buf + len, " ");
563 len += sprintf(buf + len, "RespIEs=");
Johannes Berg46900292009-02-15 12:44:28 +0100564 for (i = 0; i < ifmgd->assocresp_ies_len; i++) {
Linus Torvalds74af0252008-09-05 12:38:09 -0700565 len += sprintf(buf + len, "%02x",
Johannes Berg46900292009-02-15 12:44:28 +0100566 ifmgd->assocresp_ies[i]);
Linus Torvalds74af0252008-09-05 12:38:09 -0700567 }
Jiri Bencf0706e82007-05-05 11:45:53 -0700568 }
Linus Torvalds74af0252008-09-05 12:38:09 -0700569 len += sprintf(buf + len, ")");
570
571 if (len > IW_CUSTOM_MAX) {
572 len = sprintf(buf, "ASSOCRESPIE=");
Johannes Berg46900292009-02-15 12:44:28 +0100573 for (i = 0; i < ifmgd->assocresp_ies_len; i++) {
Linus Torvalds74af0252008-09-05 12:38:09 -0700574 len += sprintf(buf + len, "%02x",
Johannes Berg46900292009-02-15 12:44:28 +0100575 ifmgd->assocresp_ies[i]);
Linus Torvalds74af0252008-09-05 12:38:09 -0700576 }
577 }
578
John W. Linvillead788b52008-10-01 15:45:02 -0400579 if (len <= IW_CUSTOM_MAX) {
580 memset(&wrqu, 0, sizeof(wrqu));
581 wrqu.data.length = len;
582 wireless_send_event(sdata->dev, IWEVCUSTOM, &wrqu, buf);
583 }
Linus Torvalds74af0252008-09-05 12:38:09 -0700584
585 kfree(buf);
Jiri Bencf0706e82007-05-05 11:45:53 -0700586}
587
588
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200589static void ieee80211_set_associated(struct ieee80211_sub_if_data *sdata,
Johannes Bergae5eb022008-10-14 16:58:37 +0200590 u32 bss_info_changed)
Jiri Bencf0706e82007-05-05 11:45:53 -0700591{
Johannes Berg46900292009-02-15 12:44:28 +0100592 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg471b3ef2007-12-28 14:32:58 +0100593 struct ieee80211_local *local = sdata->local;
Tomas Winkler38668c02008-03-28 16:33:32 -0700594 struct ieee80211_conf *conf = &local_to_hw(local)->conf;
Jiri Bencf0706e82007-05-05 11:45:53 -0700595
Johannes Bergc2b13452008-09-11 00:01:55 +0200596 struct ieee80211_bss *bss;
Jiri Slabyd6f2da52007-08-28 17:01:54 -0400597
Johannes Bergae5eb022008-10-14 16:58:37 +0200598 bss_info_changed |= BSS_CHANGED_ASSOC;
Johannes Berg46900292009-02-15 12:44:28 +0100599 ifmgd->flags |= IEEE80211_STA_ASSOCIATED;
Jiri Slabyd6f2da52007-08-28 17:01:54 -0400600
Johannes Berg46900292009-02-15 12:44:28 +0100601 bss = ieee80211_rx_bss_get(local, ifmgd->bssid,
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200602 conf->channel->center_freq,
Johannes Berg46900292009-02-15 12:44:28 +0100603 ifmgd->ssid, ifmgd->ssid_len);
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200604 if (bss) {
605 /* set timing information */
Johannes Berg00d3f142009-02-10 21:26:00 +0100606 sdata->vif.bss_conf.beacon_int = bss->cbss.beacon_interval;
607 sdata->vif.bss_conf.timestamp = bss->cbss.tsf;
Johannes Bergbda39332008-10-11 01:51:51 +0200608 sdata->vif.bss_conf.dtim_period = bss->dtim_period;
Tomas Winkler21c0cbe2008-03-28 16:33:34 -0700609
Johannes Bergae5eb022008-10-14 16:58:37 +0200610 bss_info_changed |= ieee80211_handle_bss_capability(sdata,
Johannes Berg00d3f142009-02-10 21:26:00 +0100611 bss->cbss.capability, bss->has_erp_value, bss->erp_value);
Tomas Winkler21c0cbe2008-03-28 16:33:34 -0700612
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200613 ieee80211_rx_bss_put(local, bss);
Jiri Bencf0706e82007-05-05 11:45:53 -0700614 }
Johannes Berg471b3ef2007-12-28 14:32:58 +0100615
Johannes Berg46900292009-02-15 12:44:28 +0100616 ifmgd->flags |= IEEE80211_STA_PREV_BSSID_SET;
617 memcpy(ifmgd->prev_bssid, sdata->u.mgd.bssid, ETH_ALEN);
618 ieee80211_sta_send_associnfo(sdata);
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200619
Johannes Berg46900292009-02-15 12:44:28 +0100620 ifmgd->last_probe = jiffies;
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200621 ieee80211_led_assoc(local, 1);
622
Johannes Bergbda39332008-10-11 01:51:51 +0200623 sdata->vif.bss_conf.assoc = 1;
Johannes Berg96dd22a2008-09-11 00:01:57 +0200624 /*
625 * For now just always ask the driver to update the basic rateset
626 * when we have associated, we aren't checking whether it actually
627 * changed or not.
628 */
Johannes Bergae5eb022008-10-14 16:58:37 +0200629 bss_info_changed |= BSS_CHANGED_BASIC_RATES;
630 ieee80211_bss_info_change_notify(sdata, bss_info_changed);
Guy Cohen8db93692008-07-03 19:56:13 +0300631
Johannes Berg4be8c382009-01-07 18:28:20 +0100632 if (local->powersave) {
633 if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS) &&
634 local->hw.conf.dynamic_ps_timeout > 0) {
Kalle Valo520eb822008-12-18 23:35:27 +0200635 mod_timer(&local->dynamic_ps_timer, jiffies +
Johannes Berg46f2c4b2009-01-06 18:13:18 +0100636 msecs_to_jiffies(
637 local->hw.conf.dynamic_ps_timeout));
Johannes Berg4be8c382009-01-07 18:28:20 +0100638 } else {
639 if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)
640 ieee80211_send_nullfunc(local, sdata, 1);
Kalle Valo520eb822008-12-18 23:35:27 +0200641 conf->flags |= IEEE80211_CONF_PS;
Johannes Berg4be8c382009-01-07 18:28:20 +0100642 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
Kalle Valo520eb822008-12-18 23:35:27 +0200643 }
Kalle Valoe0cb6862008-12-18 23:35:13 +0200644 }
645
Tomas Winkler24e64622008-09-08 17:33:40 +0200646 netif_tx_start_all_queues(sdata->dev);
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200647 netif_carrier_on(sdata->dev);
Guy Cohen8db93692008-07-03 19:56:13 +0300648
Johannes Berg46900292009-02-15 12:44:28 +0100649 ieee80211_sta_send_apinfo(sdata);
Jiri Bencf0706e82007-05-05 11:45:53 -0700650}
651
Johannes Berg46900292009-02-15 12:44:28 +0100652static void ieee80211_direct_probe(struct ieee80211_sub_if_data *sdata)
Ron Rindjunsky9859b812008-08-09 03:02:19 +0300653{
Johannes Berg46900292009-02-15 12:44:28 +0100654 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Helmut Schaa11432372009-03-12 14:04:34 +0100655 struct ieee80211_local *local = sdata->local;
Johannes Berg46900292009-02-15 12:44:28 +0100656
657 ifmgd->direct_probe_tries++;
658 if (ifmgd->direct_probe_tries > IEEE80211_AUTH_MAX_TRIES) {
Johannes Berg0c68ae262008-10-27 15:56:10 -0700659 printk(KERN_DEBUG "%s: direct probe to AP %pM timed out\n",
Johannes Berg46900292009-02-15 12:44:28 +0100660 sdata->dev->name, ifmgd->bssid);
661 ifmgd->state = IEEE80211_STA_MLME_DISABLED;
662 ieee80211_sta_send_apinfo(sdata);
Vasanthakumar Thiagarajan7a947082009-02-04 18:28:48 +0530663
664 /*
665 * Most likely AP is not in the range so remove the
666 * bss information associated to the AP
667 */
Johannes Berg46900292009-02-15 12:44:28 +0100668 ieee80211_rx_bss_remove(sdata, ifmgd->bssid,
Vasanthakumar Thiagarajan7a947082009-02-04 18:28:48 +0530669 sdata->local->hw.conf.channel->center_freq,
Johannes Berg46900292009-02-15 12:44:28 +0100670 ifmgd->ssid, ifmgd->ssid_len);
Helmut Schaa11432372009-03-12 14:04:34 +0100671
672 /*
673 * We might have a pending scan which had no chance to run yet
674 * due to state == IEEE80211_STA_MLME_DIRECT_PROBE.
675 * Hence, queue the STAs work again
676 */
677 queue_work(local->hw.workqueue, &ifmgd->work);
Ron Rindjunsky9859b812008-08-09 03:02:19 +0300678 return;
679 }
680
Johannes Berg0c68ae262008-10-27 15:56:10 -0700681 printk(KERN_DEBUG "%s: direct probe to AP %pM try %d\n",
Johannes Berg46900292009-02-15 12:44:28 +0100682 sdata->dev->name, ifmgd->bssid,
683 ifmgd->direct_probe_tries);
Ron Rindjunsky9859b812008-08-09 03:02:19 +0300684
Johannes Berg46900292009-02-15 12:44:28 +0100685 ifmgd->state = IEEE80211_STA_MLME_DIRECT_PROBE;
Ron Rindjunsky9859b812008-08-09 03:02:19 +0300686
Johannes Berg46900292009-02-15 12:44:28 +0100687 set_bit(IEEE80211_STA_REQ_DIRECT_PROBE, &ifmgd->request);
Ron Rindjunsky9859b812008-08-09 03:02:19 +0300688
689 /* Direct probe is sent to broadcast address as some APs
690 * will not answer to direct packet in unassociated state.
691 */
692 ieee80211_send_probe_req(sdata, NULL,
Jouni Malinen70692ad2009-02-16 19:39:13 +0200693 ifmgd->ssid, ifmgd->ssid_len, NULL, 0);
Ron Rindjunsky9859b812008-08-09 03:02:19 +0300694
Johannes Berg46900292009-02-15 12:44:28 +0100695 mod_timer(&ifmgd->timer, jiffies + IEEE80211_AUTH_TIMEOUT);
Ron Rindjunsky9859b812008-08-09 03:02:19 +0300696}
697
Jiri Bencf0706e82007-05-05 11:45:53 -0700698
Johannes Berg46900292009-02-15 12:44:28 +0100699static void ieee80211_authenticate(struct ieee80211_sub_if_data *sdata)
Jiri Bencf0706e82007-05-05 11:45:53 -0700700{
Johannes Berg46900292009-02-15 12:44:28 +0100701 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Helmut Schaa11432372009-03-12 14:04:34 +0100702 struct ieee80211_local *local = sdata->local;
Jouni Malinen636a5d32009-03-19 13:39:22 +0200703 u8 *ies;
704 size_t ies_len;
Johannes Berg46900292009-02-15 12:44:28 +0100705
706 ifmgd->auth_tries++;
707 if (ifmgd->auth_tries > IEEE80211_AUTH_MAX_TRIES) {
Johannes Berg0c68ae262008-10-27 15:56:10 -0700708 printk(KERN_DEBUG "%s: authentication with AP %pM"
Jiri Bencf0706e82007-05-05 11:45:53 -0700709 " timed out\n",
Johannes Berg46900292009-02-15 12:44:28 +0100710 sdata->dev->name, ifmgd->bssid);
711 ifmgd->state = IEEE80211_STA_MLME_DISABLED;
712 ieee80211_sta_send_apinfo(sdata);
713 ieee80211_rx_bss_remove(sdata, ifmgd->bssid,
Vasanthakumar Thiagarajan7a947082009-02-04 18:28:48 +0530714 sdata->local->hw.conf.channel->center_freq,
Johannes Berg46900292009-02-15 12:44:28 +0100715 ifmgd->ssid, ifmgd->ssid_len);
Helmut Schaa11432372009-03-12 14:04:34 +0100716
717 /*
718 * We might have a pending scan which had no chance to run yet
719 * due to state == IEEE80211_STA_MLME_AUTHENTICATE.
720 * Hence, queue the STAs work again
721 */
722 queue_work(local->hw.workqueue, &ifmgd->work);
Jiri Bencf0706e82007-05-05 11:45:53 -0700723 return;
724 }
725
Johannes Berg46900292009-02-15 12:44:28 +0100726 ifmgd->state = IEEE80211_STA_MLME_AUTHENTICATE;
Johannes Berg0c68ae262008-10-27 15:56:10 -0700727 printk(KERN_DEBUG "%s: authenticate with AP %pM\n",
Johannes Berg46900292009-02-15 12:44:28 +0100728 sdata->dev->name, ifmgd->bssid);
Jiri Bencf0706e82007-05-05 11:45:53 -0700729
Jouni Malinen636a5d32009-03-19 13:39:22 +0200730 if (ifmgd->flags & IEEE80211_STA_EXT_SME) {
731 ies = ifmgd->sme_auth_ie;
732 ies_len = ifmgd->sme_auth_ie_len;
733 } else {
734 ies = NULL;
735 ies_len = 0;
736 }
737 ieee80211_send_auth(sdata, 1, ifmgd->auth_alg, ies, ies_len,
Johannes Berg46900292009-02-15 12:44:28 +0100738 ifmgd->bssid, 0);
739 ifmgd->auth_transaction = 2;
Jiri Bencf0706e82007-05-05 11:45:53 -0700740
Johannes Berg46900292009-02-15 12:44:28 +0100741 mod_timer(&ifmgd->timer, jiffies + IEEE80211_AUTH_TIMEOUT);
Jiri Bencf0706e82007-05-05 11:45:53 -0700742}
743
Vivek Natarajan5925d972008-11-21 22:19:50 -0800744/*
745 * The disassoc 'reason' argument can be either our own reason
746 * if self disconnected or a reason code from the AP.
747 */
Tomas Winkleraa458d172008-09-09 00:32:12 +0300748static void ieee80211_set_disassoc(struct ieee80211_sub_if_data *sdata,
Johannes Berg46900292009-02-15 12:44:28 +0100749 bool deauth, bool self_disconnected,
750 u16 reason)
Tomas Winkleraa458d172008-09-09 00:32:12 +0300751{
Johannes Berg46900292009-02-15 12:44:28 +0100752 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Tomas Winkleraa458d172008-09-09 00:32:12 +0300753 struct ieee80211_local *local = sdata->local;
754 struct sta_info *sta;
Kalle Valoe0cb6862008-12-18 23:35:13 +0200755 u32 changed = 0, config_changed = 0;
Tomas Winkleraa458d172008-09-09 00:32:12 +0300756
757 rcu_read_lock();
758
Johannes Berg46900292009-02-15 12:44:28 +0100759 sta = sta_info_get(local, ifmgd->bssid);
Tomas Winkleraa458d172008-09-09 00:32:12 +0300760 if (!sta) {
761 rcu_read_unlock();
762 return;
763 }
764
765 if (deauth) {
Johannes Berg46900292009-02-15 12:44:28 +0100766 ifmgd->direct_probe_tries = 0;
767 ifmgd->auth_tries = 0;
Tomas Winkleraa458d172008-09-09 00:32:12 +0300768 }
Johannes Berg46900292009-02-15 12:44:28 +0100769 ifmgd->assoc_scan_tries = 0;
770 ifmgd->assoc_tries = 0;
Tomas Winkleraa458d172008-09-09 00:32:12 +0300771
Tomas Winkler24e64622008-09-08 17:33:40 +0200772 netif_tx_stop_all_queues(sdata->dev);
Tomas Winkleraa458d172008-09-09 00:32:12 +0300773 netif_carrier_off(sdata->dev);
774
Johannes Berg2dace102009-02-10 21:25:52 +0100775 ieee80211_sta_tear_down_BA_sessions(sta);
Tomas Winkleraa458d172008-09-09 00:32:12 +0300776
777 if (self_disconnected) {
778 if (deauth)
Johannes Bergef422bc2008-09-09 10:58:25 +0200779 ieee80211_send_deauth_disassoc(sdata,
780 IEEE80211_STYPE_DEAUTH, reason);
Tomas Winkleraa458d172008-09-09 00:32:12 +0300781 else
Johannes Bergef422bc2008-09-09 10:58:25 +0200782 ieee80211_send_deauth_disassoc(sdata,
783 IEEE80211_STYPE_DISASSOC, reason);
Tomas Winkleraa458d172008-09-09 00:32:12 +0300784 }
785
Johannes Berg46900292009-02-15 12:44:28 +0100786 ifmgd->flags &= ~IEEE80211_STA_ASSOCIATED;
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200787 changed |= ieee80211_reset_erp_info(sdata);
788
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200789 ieee80211_led_assoc(local, 0);
Johannes Bergae5eb022008-10-14 16:58:37 +0200790 changed |= BSS_CHANGED_ASSOC;
791 sdata->vif.bss_conf.assoc = false;
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200792
Johannes Berg46900292009-02-15 12:44:28 +0100793 ieee80211_sta_send_apinfo(sdata);
Tomas Winkleraa458d172008-09-09 00:32:12 +0300794
Vasanthakumar Thiagarajan7a947082009-02-04 18:28:48 +0530795 if (self_disconnected || reason == WLAN_REASON_DISASSOC_STA_HAS_LEFT) {
Johannes Berg46900292009-02-15 12:44:28 +0100796 ifmgd->state = IEEE80211_STA_MLME_DISABLED;
797 ieee80211_rx_bss_remove(sdata, ifmgd->bssid,
Vasanthakumar Thiagarajan7a947082009-02-04 18:28:48 +0530798 sdata->local->hw.conf.channel->center_freq,
Johannes Berg46900292009-02-15 12:44:28 +0100799 ifmgd->ssid, ifmgd->ssid_len);
Vasanthakumar Thiagarajan7a947082009-02-04 18:28:48 +0530800 }
Tomas Winkleraa458d172008-09-09 00:32:12 +0300801
Tomas Winkleraa458d172008-09-09 00:32:12 +0300802 rcu_read_unlock();
803
Johannes Berg47979382009-01-07 10:13:27 +0100804 /* channel(_type) changes are handled by ieee80211_hw_config */
Sujith094d05d2008-12-12 11:57:43 +0530805 local->oper_channel_type = NL80211_CHAN_NO_HT;
Johannes Bergae5eb022008-10-14 16:58:37 +0200806
Vasanthakumar Thiagarajana8302de2009-01-09 18:14:15 +0530807 local->power_constr_level = 0;
808
Kalle Valo520eb822008-12-18 23:35:27 +0200809 del_timer_sync(&local->dynamic_ps_timer);
810 cancel_work_sync(&local->dynamic_ps_enable_work);
811
Kalle Valoe0cb6862008-12-18 23:35:13 +0200812 if (local->hw.conf.flags & IEEE80211_CONF_PS) {
813 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
814 config_changed |= IEEE80211_CONF_CHANGE_PS;
815 }
816
817 ieee80211_hw_config(local, config_changed);
Johannes Bergae5eb022008-10-14 16:58:37 +0200818 ieee80211_bss_info_change_notify(sdata, changed);
Tomas Winkler8e268e42008-11-25 13:05:44 +0200819
820 rcu_read_lock();
821
Johannes Berg46900292009-02-15 12:44:28 +0100822 sta = sta_info_get(local, ifmgd->bssid);
Tomas Winkler8e268e42008-11-25 13:05:44 +0200823 if (!sta) {
824 rcu_read_unlock();
825 return;
826 }
827
828 sta_info_unlink(&sta);
829
830 rcu_read_unlock();
831
832 sta_info_destroy(sta);
Tomas Winkleraa458d172008-09-09 00:32:12 +0300833}
Jiri Bencf0706e82007-05-05 11:45:53 -0700834
Johannes Berg9ac19a92008-09-09 10:57:09 +0200835static int ieee80211_sta_wep_configured(struct ieee80211_sub_if_data *sdata)
836{
837 if (!sdata || !sdata->default_key ||
838 sdata->default_key->conf.alg != ALG_WEP)
839 return 0;
840 return 1;
841}
842
Johannes Berg46900292009-02-15 12:44:28 +0100843static int ieee80211_privacy_mismatch(struct ieee80211_sub_if_data *sdata)
Jiri Bencf0706e82007-05-05 11:45:53 -0700844{
Johannes Berg46900292009-02-15 12:44:28 +0100845 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200846 struct ieee80211_local *local = sdata->local;
Johannes Bergc2b13452008-09-11 00:01:55 +0200847 struct ieee80211_bss *bss;
Johannes Berg5b98b1f2007-11-03 13:11:10 +0000848 int bss_privacy;
849 int wep_privacy;
850 int privacy_invoked;
Jiri Bencf0706e82007-05-05 11:45:53 -0700851
Johannes Berg7986cf92009-03-21 17:08:43 +0100852 if (!ifmgd || (ifmgd->flags & IEEE80211_STA_EXT_SME))
Jiri Bencf0706e82007-05-05 11:45:53 -0700853 return 0;
854
Johannes Berg46900292009-02-15 12:44:28 +0100855 bss = ieee80211_rx_bss_get(local, ifmgd->bssid,
Johannes Berg8318d782008-01-24 19:38:38 +0100856 local->hw.conf.channel->center_freq,
Johannes Berg46900292009-02-15 12:44:28 +0100857 ifmgd->ssid, ifmgd->ssid_len);
Jiri Bencf0706e82007-05-05 11:45:53 -0700858 if (!bss)
859 return 0;
860
Johannes Berg00d3f142009-02-10 21:26:00 +0100861 bss_privacy = !!(bss->cbss.capability & WLAN_CAPABILITY_PRIVACY);
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200862 wep_privacy = !!ieee80211_sta_wep_configured(sdata);
Johannes Berg46900292009-02-15 12:44:28 +0100863 privacy_invoked = !!(ifmgd->flags & IEEE80211_STA_PRIVACY_INVOKED);
Jiri Bencf0706e82007-05-05 11:45:53 -0700864
Johannes Berg3e122be2008-07-09 14:40:34 +0200865 ieee80211_rx_bss_put(local, bss);
Jiri Bencf0706e82007-05-05 11:45:53 -0700866
Johannes Berg5b98b1f2007-11-03 13:11:10 +0000867 if ((bss_privacy == wep_privacy) || (bss_privacy == privacy_invoked))
868 return 0;
869
870 return 1;
Jiri Bencf0706e82007-05-05 11:45:53 -0700871}
872
Johannes Berg46900292009-02-15 12:44:28 +0100873static void ieee80211_associate(struct ieee80211_sub_if_data *sdata)
Jiri Bencf0706e82007-05-05 11:45:53 -0700874{
Johannes Berg46900292009-02-15 12:44:28 +0100875 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Helmut Schaa11432372009-03-12 14:04:34 +0100876 struct ieee80211_local *local = sdata->local;
Johannes Berg46900292009-02-15 12:44:28 +0100877
878 ifmgd->assoc_tries++;
879 if (ifmgd->assoc_tries > IEEE80211_ASSOC_MAX_TRIES) {
Johannes Berg0c68ae262008-10-27 15:56:10 -0700880 printk(KERN_DEBUG "%s: association with AP %pM"
Jiri Bencf0706e82007-05-05 11:45:53 -0700881 " timed out\n",
Johannes Berg46900292009-02-15 12:44:28 +0100882 sdata->dev->name, ifmgd->bssid);
883 ifmgd->state = IEEE80211_STA_MLME_DISABLED;
884 ieee80211_sta_send_apinfo(sdata);
885 ieee80211_rx_bss_remove(sdata, ifmgd->bssid,
Vasanthakumar Thiagarajan7a947082009-02-04 18:28:48 +0530886 sdata->local->hw.conf.channel->center_freq,
Johannes Berg46900292009-02-15 12:44:28 +0100887 ifmgd->ssid, ifmgd->ssid_len);
Helmut Schaa11432372009-03-12 14:04:34 +0100888 /*
889 * We might have a pending scan which had no chance to run yet
890 * due to state == IEEE80211_STA_MLME_ASSOCIATE.
891 * Hence, queue the STAs work again
892 */
893 queue_work(local->hw.workqueue, &ifmgd->work);
Jiri Bencf0706e82007-05-05 11:45:53 -0700894 return;
895 }
896
Johannes Berg46900292009-02-15 12:44:28 +0100897 ifmgd->state = IEEE80211_STA_MLME_ASSOCIATE;
Johannes Berg0c68ae262008-10-27 15:56:10 -0700898 printk(KERN_DEBUG "%s: associate with AP %pM\n",
Johannes Berg46900292009-02-15 12:44:28 +0100899 sdata->dev->name, ifmgd->bssid);
900 if (ieee80211_privacy_mismatch(sdata)) {
Jiri Bencf0706e82007-05-05 11:45:53 -0700901 printk(KERN_DEBUG "%s: mismatch in privacy configuration and "
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200902 "mixed-cell disabled - abort association\n", sdata->dev->name);
Johannes Berg46900292009-02-15 12:44:28 +0100903 ifmgd->state = IEEE80211_STA_MLME_DISABLED;
Jiri Bencf0706e82007-05-05 11:45:53 -0700904 return;
905 }
906
Johannes Berg46900292009-02-15 12:44:28 +0100907 ieee80211_send_assoc(sdata);
Jiri Bencf0706e82007-05-05 11:45:53 -0700908
Johannes Berg46900292009-02-15 12:44:28 +0100909 mod_timer(&ifmgd->timer, jiffies + IEEE80211_ASSOC_TIMEOUT);
Jiri Bencf0706e82007-05-05 11:45:53 -0700910}
911
912
Johannes Berg46900292009-02-15 12:44:28 +0100913static void ieee80211_associated(struct ieee80211_sub_if_data *sdata)
Jiri Bencf0706e82007-05-05 11:45:53 -0700914{
Johannes Berg46900292009-02-15 12:44:28 +0100915 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200916 struct ieee80211_local *local = sdata->local;
Jiri Bencf0706e82007-05-05 11:45:53 -0700917 struct sta_info *sta;
918 int disassoc;
919
920 /* TODO: start monitoring current AP signal quality and number of
921 * missed beacons. Scan other channels every now and then and search
922 * for better APs. */
923 /* TODO: remove expired BSSes */
924
Johannes Berg46900292009-02-15 12:44:28 +0100925 ifmgd->state = IEEE80211_STA_MLME_ASSOCIATED;
Jiri Bencf0706e82007-05-05 11:45:53 -0700926
Johannes Bergd0709a62008-02-25 16:27:46 +0100927 rcu_read_lock();
928
Johannes Berg46900292009-02-15 12:44:28 +0100929 sta = sta_info_get(local, ifmgd->bssid);
Jiri Bencf0706e82007-05-05 11:45:53 -0700930 if (!sta) {
Johannes Berg0c68ae262008-10-27 15:56:10 -0700931 printk(KERN_DEBUG "%s: No STA entry for own AP %pM\n",
Johannes Berg46900292009-02-15 12:44:28 +0100932 sdata->dev->name, ifmgd->bssid);
Jiri Bencf0706e82007-05-05 11:45:53 -0700933 disassoc = 1;
934 } else {
935 disassoc = 0;
936 if (time_after(jiffies,
937 sta->last_rx + IEEE80211_MONITORING_INTERVAL)) {
Johannes Berg46900292009-02-15 12:44:28 +0100938 if (ifmgd->flags & IEEE80211_STA_PROBEREQ_POLL) {
Jiri Bencf0706e82007-05-05 11:45:53 -0700939 printk(KERN_DEBUG "%s: No ProbeResp from "
Johannes Berg0c68ae262008-10-27 15:56:10 -0700940 "current AP %pM - assume out of "
Jiri Bencf0706e82007-05-05 11:45:53 -0700941 "range\n",
Johannes Berg46900292009-02-15 12:44:28 +0100942 sdata->dev->name, ifmgd->bssid);
Jiri Bencf0706e82007-05-05 11:45:53 -0700943 disassoc = 1;
Jiri Slabyd6f2da52007-08-28 17:01:54 -0400944 } else
Johannes Berg46900292009-02-15 12:44:28 +0100945 ieee80211_send_probe_req(sdata, ifmgd->bssid,
946 ifmgd->ssid,
Jouni Malinen70692ad2009-02-16 19:39:13 +0200947 ifmgd->ssid_len,
948 NULL, 0);
Johannes Berg46900292009-02-15 12:44:28 +0100949 ifmgd->flags ^= IEEE80211_STA_PROBEREQ_POLL;
Jiri Bencf0706e82007-05-05 11:45:53 -0700950 } else {
Johannes Berg46900292009-02-15 12:44:28 +0100951 ifmgd->flags &= ~IEEE80211_STA_PROBEREQ_POLL;
952 if (time_after(jiffies, ifmgd->last_probe +
Jiri Bencf0706e82007-05-05 11:45:53 -0700953 IEEE80211_PROBE_INTERVAL)) {
Johannes Berg46900292009-02-15 12:44:28 +0100954 ifmgd->last_probe = jiffies;
955 ieee80211_send_probe_req(sdata, ifmgd->bssid,
956 ifmgd->ssid,
Jouni Malinen70692ad2009-02-16 19:39:13 +0200957 ifmgd->ssid_len,
958 NULL, 0);
Jiri Bencf0706e82007-05-05 11:45:53 -0700959 }
960 }
Jiri Bencf0706e82007-05-05 11:45:53 -0700961 }
Johannes Bergd0709a62008-02-25 16:27:46 +0100962
963 rcu_read_unlock();
964
Vasanthakumar Thiagarajan7a947082009-02-04 18:28:48 +0530965 if (disassoc)
Johannes Berg46900292009-02-15 12:44:28 +0100966 ieee80211_set_disassoc(sdata, true, true,
Tomas Winkleraa458d172008-09-09 00:32:12 +0300967 WLAN_REASON_PREV_AUTH_NOT_VALID);
Vasanthakumar Thiagarajan7a947082009-02-04 18:28:48 +0530968 else
Johannes Berg46900292009-02-15 12:44:28 +0100969 mod_timer(&ifmgd->timer, jiffies +
Jiri Bencf0706e82007-05-05 11:45:53 -0700970 IEEE80211_MONITORING_INTERVAL);
Jiri Bencf0706e82007-05-05 11:45:53 -0700971}
972
973
Johannes Berg46900292009-02-15 12:44:28 +0100974static void ieee80211_auth_completed(struct ieee80211_sub_if_data *sdata)
Jiri Bencf0706e82007-05-05 11:45:53 -0700975{
Johannes Berg46900292009-02-15 12:44:28 +0100976 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
977
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200978 printk(KERN_DEBUG "%s: authenticated\n", sdata->dev->name);
Johannes Berg46900292009-02-15 12:44:28 +0100979 ifmgd->flags |= IEEE80211_STA_AUTHENTICATED;
Jouni Malinen636a5d32009-03-19 13:39:22 +0200980 if (ifmgd->flags & IEEE80211_STA_EXT_SME) {
981 /* Wait for SME to request association */
982 ifmgd->state = IEEE80211_STA_MLME_DISABLED;
983 } else
984 ieee80211_associate(sdata);
Jiri Bencf0706e82007-05-05 11:45:53 -0700985}
986
987
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200988static void ieee80211_auth_challenge(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -0700989 struct ieee80211_mgmt *mgmt,
990 size_t len)
991{
992 u8 *pos;
993 struct ieee802_11_elems elems;
994
Jiri Bencf0706e82007-05-05 11:45:53 -0700995 pos = mgmt->u.auth.variable;
John W. Linville67a4cce2007-10-12 16:40:37 -0400996 ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), &elems);
Johannes Bergf4ea83d2008-06-30 15:10:46 +0200997 if (!elems.challenge)
Jiri Bencf0706e82007-05-05 11:45:53 -0700998 return;
Johannes Berg46900292009-02-15 12:44:28 +0100999 ieee80211_send_auth(sdata, 3, sdata->u.mgd.auth_alg,
1000 elems.challenge - 2, elems.challenge_len + 2,
1001 sdata->u.mgd.bssid, 1);
1002 sdata->u.mgd.auth_transaction = 4;
Johannes Bergfe3d2c32009-02-10 21:26:03 +01001003}
1004
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001005static void ieee80211_rx_mgmt_auth(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001006 struct ieee80211_mgmt *mgmt,
1007 size_t len)
1008{
Johannes Berg46900292009-02-15 12:44:28 +01001009 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jiri Bencf0706e82007-05-05 11:45:53 -07001010 u16 auth_alg, auth_transaction, status_code;
1011
Johannes Berg46900292009-02-15 12:44:28 +01001012 if (ifmgd->state != IEEE80211_STA_MLME_AUTHENTICATE)
Jiri Bencf0706e82007-05-05 11:45:53 -07001013 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001014
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001015 if (len < 24 + 6)
Jiri Bencf0706e82007-05-05 11:45:53 -07001016 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001017
Johannes Berg46900292009-02-15 12:44:28 +01001018 if (memcmp(ifmgd->bssid, mgmt->sa, ETH_ALEN) != 0)
Jiri Bencf0706e82007-05-05 11:45:53 -07001019 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001020
Johannes Berg46900292009-02-15 12:44:28 +01001021 if (memcmp(ifmgd->bssid, mgmt->bssid, ETH_ALEN) != 0)
Jiri Bencf0706e82007-05-05 11:45:53 -07001022 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001023
1024 auth_alg = le16_to_cpu(mgmt->u.auth.auth_alg);
1025 auth_transaction = le16_to_cpu(mgmt->u.auth.auth_transaction);
1026 status_code = le16_to_cpu(mgmt->u.auth.status_code);
1027
Johannes Berg46900292009-02-15 12:44:28 +01001028 if (auth_alg != ifmgd->auth_alg ||
1029 auth_transaction != ifmgd->auth_transaction)
Jiri Bencf0706e82007-05-05 11:45:53 -07001030 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001031
1032 if (status_code != WLAN_STATUS_SUCCESS) {
Jiri Bencf0706e82007-05-05 11:45:53 -07001033 if (status_code == WLAN_STATUS_NOT_SUPPORTED_AUTH_ALG) {
1034 u8 algs[3];
1035 const int num_algs = ARRAY_SIZE(algs);
1036 int i, pos;
1037 algs[0] = algs[1] = algs[2] = 0xff;
Johannes Berg46900292009-02-15 12:44:28 +01001038 if (ifmgd->auth_algs & IEEE80211_AUTH_ALG_OPEN)
Jiri Bencf0706e82007-05-05 11:45:53 -07001039 algs[0] = WLAN_AUTH_OPEN;
Johannes Berg46900292009-02-15 12:44:28 +01001040 if (ifmgd->auth_algs & IEEE80211_AUTH_ALG_SHARED_KEY)
Jiri Bencf0706e82007-05-05 11:45:53 -07001041 algs[1] = WLAN_AUTH_SHARED_KEY;
Johannes Berg46900292009-02-15 12:44:28 +01001042 if (ifmgd->auth_algs & IEEE80211_AUTH_ALG_LEAP)
Jiri Bencf0706e82007-05-05 11:45:53 -07001043 algs[2] = WLAN_AUTH_LEAP;
Johannes Berg46900292009-02-15 12:44:28 +01001044 if (ifmgd->auth_alg == WLAN_AUTH_OPEN)
Jiri Bencf0706e82007-05-05 11:45:53 -07001045 pos = 0;
Johannes Berg46900292009-02-15 12:44:28 +01001046 else if (ifmgd->auth_alg == WLAN_AUTH_SHARED_KEY)
Jiri Bencf0706e82007-05-05 11:45:53 -07001047 pos = 1;
1048 else
1049 pos = 2;
1050 for (i = 0; i < num_algs; i++) {
1051 pos++;
1052 if (pos >= num_algs)
1053 pos = 0;
Johannes Berg46900292009-02-15 12:44:28 +01001054 if (algs[pos] == ifmgd->auth_alg ||
Jiri Bencf0706e82007-05-05 11:45:53 -07001055 algs[pos] == 0xff)
1056 continue;
1057 if (algs[pos] == WLAN_AUTH_SHARED_KEY &&
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001058 !ieee80211_sta_wep_configured(sdata))
Jiri Bencf0706e82007-05-05 11:45:53 -07001059 continue;
Johannes Berg46900292009-02-15 12:44:28 +01001060 ifmgd->auth_alg = algs[pos];
Jiri Bencf0706e82007-05-05 11:45:53 -07001061 break;
1062 }
1063 }
1064 return;
1065 }
1066
Johannes Berg46900292009-02-15 12:44:28 +01001067 switch (ifmgd->auth_alg) {
Jiri Bencf0706e82007-05-05 11:45:53 -07001068 case WLAN_AUTH_OPEN:
1069 case WLAN_AUTH_LEAP:
Jouni Malinen636a5d32009-03-19 13:39:22 +02001070 case WLAN_AUTH_FT:
Johannes Berg46900292009-02-15 12:44:28 +01001071 ieee80211_auth_completed(sdata);
Jouni Malinen6039f6d2009-03-19 13:39:21 +02001072 cfg80211_send_rx_auth(sdata->dev, (u8 *) mgmt, len);
Jiri Bencf0706e82007-05-05 11:45:53 -07001073 break;
1074 case WLAN_AUTH_SHARED_KEY:
Jouni Malinen6039f6d2009-03-19 13:39:21 +02001075 if (ifmgd->auth_transaction == 4) {
Johannes Berg46900292009-02-15 12:44:28 +01001076 ieee80211_auth_completed(sdata);
Jouni Malinen6039f6d2009-03-19 13:39:21 +02001077 cfg80211_send_rx_auth(sdata->dev, (u8 *) mgmt, len);
1078 } else
Johannes Berg46900292009-02-15 12:44:28 +01001079 ieee80211_auth_challenge(sdata, mgmt, len);
Jiri Bencf0706e82007-05-05 11:45:53 -07001080 break;
1081 }
1082}
1083
1084
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001085static void ieee80211_rx_mgmt_deauth(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001086 struct ieee80211_mgmt *mgmt,
1087 size_t len)
1088{
Johannes Berg46900292009-02-15 12:44:28 +01001089 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jiri Bencf0706e82007-05-05 11:45:53 -07001090 u16 reason_code;
1091
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001092 if (len < 24 + 2)
Jiri Bencf0706e82007-05-05 11:45:53 -07001093 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001094
Johannes Berg46900292009-02-15 12:44:28 +01001095 if (memcmp(ifmgd->bssid, mgmt->sa, ETH_ALEN))
Jiri Bencf0706e82007-05-05 11:45:53 -07001096 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001097
1098 reason_code = le16_to_cpu(mgmt->u.deauth.reason_code);
1099
Johannes Berg46900292009-02-15 12:44:28 +01001100 if (ifmgd->flags & IEEE80211_STA_AUTHENTICATED)
Zhu Yi97c8b012008-10-28 15:58:31 +08001101 printk(KERN_DEBUG "%s: deauthenticated (Reason: %u)\n",
1102 sdata->dev->name, reason_code);
Jiri Bencf0706e82007-05-05 11:45:53 -07001103
Jouni Malinen636a5d32009-03-19 13:39:22 +02001104 if (!(ifmgd->flags & IEEE80211_STA_EXT_SME) &&
1105 (ifmgd->state == IEEE80211_STA_MLME_AUTHENTICATE ||
1106 ifmgd->state == IEEE80211_STA_MLME_ASSOCIATE ||
1107 ifmgd->state == IEEE80211_STA_MLME_ASSOCIATED)) {
Johannes Berg46900292009-02-15 12:44:28 +01001108 ifmgd->state = IEEE80211_STA_MLME_DIRECT_PROBE;
1109 mod_timer(&ifmgd->timer, jiffies +
Jiri Bencf0706e82007-05-05 11:45:53 -07001110 IEEE80211_RETRY_AUTH_INTERVAL);
1111 }
1112
Johannes Berg46900292009-02-15 12:44:28 +01001113 ieee80211_set_disassoc(sdata, true, false, 0);
1114 ifmgd->flags &= ~IEEE80211_STA_AUTHENTICATED;
Jouni Malinen6039f6d2009-03-19 13:39:21 +02001115 cfg80211_send_rx_deauth(sdata->dev, (u8 *) mgmt, len);
Jiri Bencf0706e82007-05-05 11:45:53 -07001116}
1117
1118
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001119static void ieee80211_rx_mgmt_disassoc(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001120 struct ieee80211_mgmt *mgmt,
1121 size_t len)
1122{
Johannes Berg46900292009-02-15 12:44:28 +01001123 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jiri Bencf0706e82007-05-05 11:45:53 -07001124 u16 reason_code;
1125
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001126 if (len < 24 + 2)
Jiri Bencf0706e82007-05-05 11:45:53 -07001127 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001128
Johannes Berg46900292009-02-15 12:44:28 +01001129 if (memcmp(ifmgd->bssid, mgmt->sa, ETH_ALEN))
Jiri Bencf0706e82007-05-05 11:45:53 -07001130 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001131
1132 reason_code = le16_to_cpu(mgmt->u.disassoc.reason_code);
1133
Johannes Berg46900292009-02-15 12:44:28 +01001134 if (ifmgd->flags & IEEE80211_STA_ASSOCIATED)
Zhu Yi97c8b012008-10-28 15:58:31 +08001135 printk(KERN_DEBUG "%s: disassociated (Reason: %u)\n",
1136 sdata->dev->name, reason_code);
Jiri Bencf0706e82007-05-05 11:45:53 -07001137
Jouni Malinen636a5d32009-03-19 13:39:22 +02001138 if (!(ifmgd->flags & IEEE80211_STA_EXT_SME) &&
1139 ifmgd->state == IEEE80211_STA_MLME_ASSOCIATED) {
Johannes Berg46900292009-02-15 12:44:28 +01001140 ifmgd->state = IEEE80211_STA_MLME_ASSOCIATE;
1141 mod_timer(&ifmgd->timer, jiffies +
Jiri Bencf0706e82007-05-05 11:45:53 -07001142 IEEE80211_RETRY_AUTH_INTERVAL);
1143 }
1144
Johannes Berg46900292009-02-15 12:44:28 +01001145 ieee80211_set_disassoc(sdata, false, false, reason_code);
Jouni Malinen6039f6d2009-03-19 13:39:21 +02001146 cfg80211_send_rx_disassoc(sdata->dev, (u8 *) mgmt, len);
Jiri Bencf0706e82007-05-05 11:45:53 -07001147}
1148
1149
Johannes Berg471b3ef2007-12-28 14:32:58 +01001150static void ieee80211_rx_mgmt_assoc_resp(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001151 struct ieee80211_mgmt *mgmt,
1152 size_t len,
1153 int reassoc)
1154{
Johannes Berg46900292009-02-15 12:44:28 +01001155 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg471b3ef2007-12-28 14:32:58 +01001156 struct ieee80211_local *local = sdata->local;
Johannes Berg8318d782008-01-24 19:38:38 +01001157 struct ieee80211_supported_band *sband;
Jiri Bencf0706e82007-05-05 11:45:53 -07001158 struct sta_info *sta;
Johannes Berg881d9482009-01-21 15:13:48 +01001159 u32 rates, basic_rates;
Jiri Bencf0706e82007-05-05 11:45:53 -07001160 u16 capab_info, status_code, aid;
1161 struct ieee802_11_elems elems;
Johannes Bergbda39332008-10-11 01:51:51 +02001162 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
Jiri Bencf0706e82007-05-05 11:45:53 -07001163 u8 *pos;
Johannes Bergae5eb022008-10-14 16:58:37 +02001164 u32 changed = 0;
Jiri Bencf0706e82007-05-05 11:45:53 -07001165 int i, j;
Johannes Bergddf4ac52008-10-22 11:41:38 +02001166 bool have_higher_than_11mbit = false, newsta = false;
Johannes Bergae5eb022008-10-14 16:58:37 +02001167 u16 ap_ht_cap_flags;
Jiri Bencf0706e82007-05-05 11:45:53 -07001168
1169 /* AssocResp and ReassocResp have identical structure, so process both
1170 * of them in this function. */
1171
Johannes Berg46900292009-02-15 12:44:28 +01001172 if (ifmgd->state != IEEE80211_STA_MLME_ASSOCIATE)
Jiri Bencf0706e82007-05-05 11:45:53 -07001173 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001174
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001175 if (len < 24 + 6)
Jiri Bencf0706e82007-05-05 11:45:53 -07001176 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001177
Johannes Berg46900292009-02-15 12:44:28 +01001178 if (memcmp(ifmgd->bssid, mgmt->sa, ETH_ALEN) != 0)
Jiri Bencf0706e82007-05-05 11:45:53 -07001179 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001180
1181 capab_info = le16_to_cpu(mgmt->u.assoc_resp.capab_info);
1182 status_code = le16_to_cpu(mgmt->u.assoc_resp.status_code);
1183 aid = le16_to_cpu(mgmt->u.assoc_resp.aid);
Jiri Bencf0706e82007-05-05 11:45:53 -07001184
Johannes Berg0c68ae262008-10-27 15:56:10 -07001185 printk(KERN_DEBUG "%s: RX %sssocResp from %pM (capab=0x%x "
Jiri Bencf0706e82007-05-05 11:45:53 -07001186 "status=%d aid=%d)\n",
Johannes Berg0c68ae262008-10-27 15:56:10 -07001187 sdata->dev->name, reassoc ? "Rea" : "A", mgmt->sa,
Johannes Bergddd68582007-10-22 14:51:37 +02001188 capab_info, status_code, (u16)(aid & ~(BIT(15) | BIT(14))));
Jiri Bencf0706e82007-05-05 11:45:53 -07001189
Jouni Malinen63a5ab82009-01-08 13:32:09 +02001190 pos = mgmt->u.assoc_resp.variable;
1191 ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), &elems);
1192
1193 if (status_code == WLAN_STATUS_ASSOC_REJECTED_TEMPORARILY &&
Jouni Malinenf797eb72009-01-19 18:48:46 +02001194 elems.timeout_int && elems.timeout_int_len == 5 &&
1195 elems.timeout_int[0] == WLAN_TIMEOUT_ASSOC_COMEBACK) {
Jouni Malinen63a5ab82009-01-08 13:32:09 +02001196 u32 tu, ms;
Jouni Malinenf797eb72009-01-19 18:48:46 +02001197 tu = get_unaligned_le32(elems.timeout_int + 1);
Jouni Malinen63a5ab82009-01-08 13:32:09 +02001198 ms = tu * 1024 / 1000;
1199 printk(KERN_DEBUG "%s: AP rejected association temporarily; "
1200 "comeback duration %u TU (%u ms)\n",
1201 sdata->dev->name, tu, ms);
1202 if (ms > IEEE80211_ASSOC_TIMEOUT)
Johannes Berg46900292009-02-15 12:44:28 +01001203 mod_timer(&ifmgd->timer,
Jouni Malinen63a5ab82009-01-08 13:32:09 +02001204 jiffies + msecs_to_jiffies(ms));
1205 return;
1206 }
1207
Jiri Bencf0706e82007-05-05 11:45:53 -07001208 if (status_code != WLAN_STATUS_SUCCESS) {
1209 printk(KERN_DEBUG "%s: AP denied association (code=%d)\n",
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001210 sdata->dev->name, status_code);
Daniel Drake8a69aa92007-07-27 15:43:23 +02001211 /* if this was a reassociation, ensure we try a "full"
1212 * association next time. This works around some broken APs
1213 * which do not correctly reject reassociation requests. */
Johannes Berg46900292009-02-15 12:44:28 +01001214 ifmgd->flags &= ~IEEE80211_STA_PREV_BSSID_SET;
Jiri Bencf0706e82007-05-05 11:45:53 -07001215 return;
1216 }
1217
Johannes Berg1dd84aa2007-10-10 12:03:41 +02001218 if ((aid & (BIT(15) | BIT(14))) != (BIT(15) | BIT(14)))
1219 printk(KERN_DEBUG "%s: invalid aid value %d; bits 15:14 not "
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001220 "set\n", sdata->dev->name, aid);
Johannes Berg1dd84aa2007-10-10 12:03:41 +02001221 aid &= ~(BIT(15) | BIT(14));
1222
Jiri Bencf0706e82007-05-05 11:45:53 -07001223 if (!elems.supp_rates) {
1224 printk(KERN_DEBUG "%s: no SuppRates element in AssocResp\n",
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001225 sdata->dev->name);
Jiri Bencf0706e82007-05-05 11:45:53 -07001226 return;
1227 }
1228
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001229 printk(KERN_DEBUG "%s: associated\n", sdata->dev->name);
Johannes Berg46900292009-02-15 12:44:28 +01001230 ifmgd->aid = aid;
1231 ifmgd->ap_capab = capab_info;
Jiri Bencf0706e82007-05-05 11:45:53 -07001232
Johannes Berg46900292009-02-15 12:44:28 +01001233 kfree(ifmgd->assocresp_ies);
1234 ifmgd->assocresp_ies_len = len - (pos - (u8 *) mgmt);
1235 ifmgd->assocresp_ies = kmalloc(ifmgd->assocresp_ies_len, GFP_KERNEL);
1236 if (ifmgd->assocresp_ies)
1237 memcpy(ifmgd->assocresp_ies, pos, ifmgd->assocresp_ies_len);
Jiri Bencf0706e82007-05-05 11:45:53 -07001238
Johannes Bergd0709a62008-02-25 16:27:46 +01001239 rcu_read_lock();
1240
Jiri Bencf0706e82007-05-05 11:45:53 -07001241 /* Add STA entry for the AP */
Johannes Berg46900292009-02-15 12:44:28 +01001242 sta = sta_info_get(local, ifmgd->bssid);
Jiri Bencf0706e82007-05-05 11:45:53 -07001243 if (!sta) {
Johannes Bergddf4ac52008-10-22 11:41:38 +02001244 newsta = true;
Johannes Bergd0709a62008-02-25 16:27:46 +01001245
Johannes Berg46900292009-02-15 12:44:28 +01001246 sta = sta_info_alloc(sdata, ifmgd->bssid, GFP_ATOMIC);
Johannes Berg73651ee2008-02-25 16:27:47 +01001247 if (!sta) {
1248 printk(KERN_DEBUG "%s: failed to alloc STA entry for"
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001249 " the AP\n", sdata->dev->name);
Johannes Bergd0709a62008-02-25 16:27:46 +01001250 rcu_read_unlock();
Jiri Bencf0706e82007-05-05 11:45:53 -07001251 return;
1252 }
Johannes Berg73651ee2008-02-25 16:27:47 +01001253
Ron Rindjunskya61dae12008-08-10 00:54:34 +03001254 /* update new sta with its last rx activity */
1255 sta->last_rx = jiffies;
Jiri Bencf0706e82007-05-05 11:45:53 -07001256 }
1257
Johannes Berg73651ee2008-02-25 16:27:47 +01001258 /*
1259 * FIXME: Do we really need to update the sta_info's information here?
1260 * We already know about the AP (we found it in our list) so it
1261 * should already be filled with the right info, no?
1262 * As is stands, all this is racy because typically we assume
1263 * the information that is filled in here (except flags) doesn't
1264 * change while a STA structure is alive. As such, it should move
1265 * to between the sta_info_alloc() and sta_info_insert() above.
1266 */
1267
Johannes Berg07346f812008-05-03 01:02:02 +02001268 set_sta_flags(sta, WLAN_STA_AUTH | WLAN_STA_ASSOC | WLAN_STA_ASSOC_AP |
1269 WLAN_STA_AUTHORIZED);
Jiri Bencf0706e82007-05-05 11:45:53 -07001270
1271 rates = 0;
Johannes Berg8318d782008-01-24 19:38:38 +01001272 basic_rates = 0;
1273 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
1274
Jiri Bencf0706e82007-05-05 11:45:53 -07001275 for (i = 0; i < elems.supp_rates_len; i++) {
1276 int rate = (elems.supp_rates[i] & 0x7f) * 5;
Tomas Winklerd61272c2008-10-30 17:08:08 +02001277 bool is_basic = !!(elems.supp_rates[i] & 0x80);
Johannes Berg8318d782008-01-24 19:38:38 +01001278
1279 if (rate > 110)
1280 have_higher_than_11mbit = true;
1281
1282 for (j = 0; j < sband->n_bitrates; j++) {
Tomas Winklerd61272c2008-10-30 17:08:08 +02001283 if (sband->bitrates[j].bitrate == rate) {
Jiri Bencf0706e82007-05-05 11:45:53 -07001284 rates |= BIT(j);
Tomas Winklerd61272c2008-10-30 17:08:08 +02001285 if (is_basic)
1286 basic_rates |= BIT(j);
1287 break;
1288 }
Johannes Berg8318d782008-01-24 19:38:38 +01001289 }
Jiri Bencf0706e82007-05-05 11:45:53 -07001290 }
Johannes Berg8318d782008-01-24 19:38:38 +01001291
Jiri Bencf0706e82007-05-05 11:45:53 -07001292 for (i = 0; i < elems.ext_supp_rates_len; i++) {
1293 int rate = (elems.ext_supp_rates[i] & 0x7f) * 5;
Tomas Winklerd61272c2008-10-30 17:08:08 +02001294 bool is_basic = !!(elems.supp_rates[i] & 0x80);
Johannes Berg8318d782008-01-24 19:38:38 +01001295
1296 if (rate > 110)
1297 have_higher_than_11mbit = true;
1298
1299 for (j = 0; j < sband->n_bitrates; j++) {
Tomas Winklerd61272c2008-10-30 17:08:08 +02001300 if (sband->bitrates[j].bitrate == rate) {
Jiri Bencf0706e82007-05-05 11:45:53 -07001301 rates |= BIT(j);
Tomas Winklerd61272c2008-10-30 17:08:08 +02001302 if (is_basic)
1303 basic_rates |= BIT(j);
1304 break;
1305 }
Johannes Berg8318d782008-01-24 19:38:38 +01001306 }
Jiri Bencf0706e82007-05-05 11:45:53 -07001307 }
Johannes Berg8318d782008-01-24 19:38:38 +01001308
Johannes Berg323ce792008-09-11 02:45:11 +02001309 sta->sta.supp_rates[local->hw.conf.channel->band] = rates;
Johannes Bergbda39332008-10-11 01:51:51 +02001310 sdata->vif.bss_conf.basic_rates = basic_rates;
Johannes Berg8318d782008-01-24 19:38:38 +01001311
1312 /* cf. IEEE 802.11 9.2.12 */
1313 if (local->hw.conf.channel->band == IEEE80211_BAND_2GHZ &&
1314 have_higher_than_11mbit)
1315 sdata->flags |= IEEE80211_SDATA_OPERATING_GMODE;
1316 else
1317 sdata->flags &= ~IEEE80211_SDATA_OPERATING_GMODE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001318
Sujithe65c2262009-03-02 13:28:31 +05301319 /* If TKIP/WEP is used, no need to parse AP's HT capabilities */
1320 if (elems.ht_cap_elem && !(ifmgd->flags & IEEE80211_STA_TKIP_WEP_USED))
Johannes Bergae5eb022008-10-14 16:58:37 +02001321 ieee80211_ht_cap_ie_to_sta_ht_cap(sband,
Johannes Bergd9fe60d2008-10-09 12:13:49 +02001322 elems.ht_cap_elem, &sta->sta.ht_cap);
Johannes Bergae5eb022008-10-14 16:58:37 +02001323
1324 ap_ht_cap_flags = sta->sta.ht_cap.cap;
Ron Rindjunskyd3c990f2007-11-26 16:14:34 +02001325
Johannes Berg4b7679a2008-09-18 18:14:18 +02001326 rate_control_rate_init(sta);
Jiri Bencf0706e82007-05-05 11:45:53 -07001327
Johannes Berg46900292009-02-15 12:44:28 +01001328 if (ifmgd->flags & IEEE80211_STA_MFP_ENABLED)
Jouni Malinen5394af42009-01-08 13:31:59 +02001329 set_sta_flags(sta, WLAN_STA_MFP);
1330
Johannes Bergddf4ac52008-10-22 11:41:38 +02001331 if (elems.wmm_param)
Johannes Berg07346f812008-05-03 01:02:02 +02001332 set_sta_flags(sta, WLAN_STA_WME);
Johannes Bergddf4ac52008-10-22 11:41:38 +02001333
1334 if (newsta) {
1335 int err = sta_info_insert(sta);
1336 if (err) {
1337 printk(KERN_DEBUG "%s: failed to insert STA entry for"
1338 " the AP (error %d)\n", sdata->dev->name, err);
1339 rcu_read_unlock();
1340 return;
1341 }
1342 }
1343
1344 rcu_read_unlock();
1345
1346 if (elems.wmm_param)
Johannes Berg46900292009-02-15 12:44:28 +01001347 ieee80211_sta_wmm_params(local, ifmgd, elems.wmm_param,
Jiri Bencf0706e82007-05-05 11:45:53 -07001348 elems.wmm_param_len);
Jiri Bencf0706e82007-05-05 11:45:53 -07001349
Johannes Bergae5eb022008-10-14 16:58:37 +02001350 if (elems.ht_info_elem && elems.wmm_param &&
Johannes Berg46900292009-02-15 12:44:28 +01001351 (ifmgd->flags & IEEE80211_STA_WMM_ENABLED) &&
1352 !(ifmgd->flags & IEEE80211_STA_TKIP_WEP_USED))
Johannes Bergae5eb022008-10-14 16:58:37 +02001353 changed |= ieee80211_enable_ht(sdata, elems.ht_info_elem,
1354 ap_ht_cap_flags);
1355
Tomas Winkler21c0cbe2008-03-28 16:33:34 -07001356 /* set AID and assoc capability,
1357 * ieee80211_set_associated() will tell the driver */
Johannes Berg8318d782008-01-24 19:38:38 +01001358 bss_conf->aid = aid;
Tomas Winkler21c0cbe2008-03-28 16:33:34 -07001359 bss_conf->assoc_capability = capab_info;
Johannes Berg46900292009-02-15 12:44:28 +01001360 ieee80211_set_associated(sdata, changed);
Jiri Bencf0706e82007-05-05 11:45:53 -07001361
Johannes Berg46900292009-02-15 12:44:28 +01001362 ieee80211_associated(sdata);
Jouni Malinen6039f6d2009-03-19 13:39:21 +02001363 cfg80211_send_rx_assoc(sdata->dev, (u8 *) mgmt, len);
Jiri Bencf0706e82007-05-05 11:45:53 -07001364}
1365
1366
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001367static void ieee80211_rx_bss_info(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001368 struct ieee80211_mgmt *mgmt,
1369 size_t len,
1370 struct ieee80211_rx_status *rx_status,
Johannes Berg98c8fcc2008-09-08 17:44:26 +02001371 struct ieee802_11_elems *elems,
1372 bool beacon)
Jiri Bencf0706e82007-05-05 11:45:53 -07001373{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001374 struct ieee80211_local *local = sdata->local;
Johannes Berg98c8fcc2008-09-08 17:44:26 +02001375 int freq;
Johannes Bergc2b13452008-09-11 00:01:55 +02001376 struct ieee80211_bss *bss;
Johannes Bergfab7d4a2008-03-16 18:42:44 +01001377 struct ieee80211_channel *channel;
Jiri Bencf0706e82007-05-05 11:45:53 -07001378
Johannes Berg5bda6172008-09-08 11:05:10 +02001379 if (elems->ds_params && elems->ds_params_len == 1)
1380 freq = ieee80211_channel_to_frequency(elems->ds_params[0]);
1381 else
1382 freq = rx_status->freq;
1383
1384 channel = ieee80211_get_channel(local->hw.wiphy, freq);
1385
1386 if (!channel || channel->flags & IEEE80211_CHAN_DISABLED)
1387 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001388
Johannes Berg98c8fcc2008-09-08 17:44:26 +02001389 bss = ieee80211_bss_info_update(local, rx_status, mgmt, len, elems,
Johannes Berg2a519312009-02-10 21:25:55 +01001390 channel, beacon);
Johannes Berg98c8fcc2008-09-08 17:44:26 +02001391 if (!bss)
1392 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001393
Sujithc481ec92009-01-06 09:28:37 +05301394 if (elems->ch_switch_elem && (elems->ch_switch_elem_len == 3) &&
Johannes Berg46900292009-02-15 12:44:28 +01001395 (memcmp(mgmt->bssid, sdata->u.mgd.bssid, ETH_ALEN) == 0)) {
Sujithc481ec92009-01-06 09:28:37 +05301396 struct ieee80211_channel_sw_ie *sw_elem =
1397 (struct ieee80211_channel_sw_ie *)elems->ch_switch_elem;
1398 ieee80211_process_chanswitch(sdata, sw_elem, bss);
1399 }
1400
Johannes Berg3e122be2008-07-09 14:40:34 +02001401 ieee80211_rx_bss_put(local, bss);
Jiri Bencf0706e82007-05-05 11:45:53 -07001402}
1403
1404
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001405static void ieee80211_rx_mgmt_probe_resp(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001406 struct ieee80211_mgmt *mgmt,
1407 size_t len,
1408 struct ieee80211_rx_status *rx_status)
1409{
Ester Kummerae6a44e2008-06-27 18:54:48 +03001410 size_t baselen;
1411 struct ieee802_11_elems elems;
1412
Tomas Winkler8e7cdbb2008-08-03 14:32:01 +03001413 if (memcmp(mgmt->da, sdata->dev->dev_addr, ETH_ALEN))
1414 return; /* ignore ProbeResp to foreign address */
1415
Ester Kummerae6a44e2008-06-27 18:54:48 +03001416 baselen = (u8 *) mgmt->u.probe_resp.variable - (u8 *) mgmt;
1417 if (baselen > len)
1418 return;
1419
1420 ieee802_11_parse_elems(mgmt->u.probe_resp.variable, len - baselen,
1421 &elems);
1422
Johannes Berg98c8fcc2008-09-08 17:44:26 +02001423 ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems, false);
Ron Rindjunsky9859b812008-08-09 03:02:19 +03001424
1425 /* direct probe may be part of the association flow */
1426 if (test_and_clear_bit(IEEE80211_STA_REQ_DIRECT_PROBE,
Johannes Berg46900292009-02-15 12:44:28 +01001427 &sdata->u.mgd.request)) {
Ron Rindjunsky9859b812008-08-09 03:02:19 +03001428 printk(KERN_DEBUG "%s direct probe responded\n",
1429 sdata->dev->name);
Johannes Berg46900292009-02-15 12:44:28 +01001430 ieee80211_authenticate(sdata);
Ron Rindjunsky9859b812008-08-09 03:02:19 +03001431 }
Jiri Bencf0706e82007-05-05 11:45:53 -07001432}
1433
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001434static void ieee80211_rx_mgmt_beacon(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001435 struct ieee80211_mgmt *mgmt,
1436 size_t len,
1437 struct ieee80211_rx_status *rx_status)
1438{
Johannes Berg46900292009-02-15 12:44:28 +01001439 struct ieee80211_if_managed *ifmgd;
Jiri Bencf0706e82007-05-05 11:45:53 -07001440 size_t baselen;
1441 struct ieee802_11_elems elems;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001442 struct ieee80211_local *local = sdata->local;
Johannes Berg471b3ef2007-12-28 14:32:58 +01001443 u32 changed = 0;
Kalle Valo1fb36062009-02-10 17:09:24 +02001444 bool erp_valid, directed_tim;
Johannes Berg7a5158e2008-10-08 10:59:33 +02001445 u8 erp_value = 0;
Jiri Bencf0706e82007-05-05 11:45:53 -07001446
Ester Kummerae6a44e2008-06-27 18:54:48 +03001447 /* Process beacon from the current BSS */
1448 baselen = (u8 *) mgmt->u.beacon.variable - (u8 *) mgmt;
1449 if (baselen > len)
1450 return;
1451
1452 ieee802_11_parse_elems(mgmt->u.beacon.variable, len - baselen, &elems);
1453
Johannes Berg98c8fcc2008-09-08 17:44:26 +02001454 ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems, true);
Jiri Bencf0706e82007-05-05 11:45:53 -07001455
Johannes Berg05c914f2008-09-11 00:01:58 +02001456 if (sdata->vif.type != NL80211_IFTYPE_STATION)
Jiri Bencf0706e82007-05-05 11:45:53 -07001457 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001458
Johannes Berg46900292009-02-15 12:44:28 +01001459 ifmgd = &sdata->u.mgd;
1460
1461 if (!(ifmgd->flags & IEEE80211_STA_ASSOCIATED) ||
1462 memcmp(ifmgd->bssid, mgmt->bssid, ETH_ALEN) != 0)
Jiri Bencf0706e82007-05-05 11:45:53 -07001463 return;
1464
Sujithc481ec92009-01-06 09:28:37 +05301465 if (rx_status->freq != local->hw.conf.channel->center_freq)
1466 return;
1467
Johannes Berg46900292009-02-15 12:44:28 +01001468 ieee80211_sta_wmm_params(local, ifmgd, elems.wmm_param,
Johannes Bergfe3fa822008-09-08 11:05:09 +02001469 elems.wmm_param_len);
1470
Vivek Natarajan25c9c872009-03-02 20:20:30 +05301471 if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK) {
Johannes Berg46900292009-02-15 12:44:28 +01001472 directed_tim = ieee80211_check_tim(&elems, ifmgd->aid);
Vivek Natarajana97b77b2008-12-23 18:39:02 -08001473
Kalle Valo1fb36062009-02-10 17:09:24 +02001474 if (directed_tim) {
Kalle Valo572e0012009-02-10 17:09:31 +02001475 if (local->hw.conf.dynamic_ps_timeout > 0) {
1476 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
1477 ieee80211_hw_config(local,
1478 IEEE80211_CONF_CHANGE_PS);
1479 ieee80211_send_nullfunc(local, sdata, 0);
1480 } else {
1481 local->pspolling = true;
1482
1483 /*
1484 * Here is assumed that the driver will be
1485 * able to send ps-poll frame and receive a
1486 * response even though power save mode is
1487 * enabled, but some drivers might require
1488 * to disable power save here. This needs
1489 * to be investigated.
1490 */
1491 ieee80211_send_pspoll(local, sdata);
1492 }
Vivek Natarajana97b77b2008-12-23 18:39:02 -08001493 }
1494 }
Johannes Berg7a5158e2008-10-08 10:59:33 +02001495
1496 if (elems.erp_info && elems.erp_info_len >= 1) {
1497 erp_valid = true;
1498 erp_value = elems.erp_info[0];
1499 } else {
1500 erp_valid = false;
John W. Linville50c4afb2008-04-15 14:09:27 -04001501 }
Johannes Berg7a5158e2008-10-08 10:59:33 +02001502 changed |= ieee80211_handle_bss_capability(sdata,
1503 le16_to_cpu(mgmt->u.beacon.capab_info),
1504 erp_valid, erp_value);
Jiri Bencf0706e82007-05-05 11:45:53 -07001505
Ron Rindjunskyd3c990f2007-11-26 16:14:34 +02001506
Vasanthakumar Thiagarajan53d6f81c2009-02-11 22:18:49 +05301507 if (elems.ht_cap_elem && elems.ht_info_elem && elems.wmm_param &&
Johannes Berg46900292009-02-15 12:44:28 +01001508 !(ifmgd->flags & IEEE80211_STA_TKIP_WEP_USED)) {
Johannes Bergae5eb022008-10-14 16:58:37 +02001509 struct sta_info *sta;
1510 struct ieee80211_supported_band *sband;
1511 u16 ap_ht_cap_flags;
1512
1513 rcu_read_lock();
1514
Johannes Berg46900292009-02-15 12:44:28 +01001515 sta = sta_info_get(local, ifmgd->bssid);
Johannes Bergae5eb022008-10-14 16:58:37 +02001516 if (!sta) {
1517 rcu_read_unlock();
1518 return;
1519 }
1520
1521 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
1522
1523 ieee80211_ht_cap_ie_to_sta_ht_cap(sband,
1524 elems.ht_cap_elem, &sta->sta.ht_cap);
1525
1526 ap_ht_cap_flags = sta->sta.ht_cap.cap;
1527
1528 rcu_read_unlock();
1529
1530 changed |= ieee80211_enable_ht(sdata, elems.ht_info_elem,
1531 ap_ht_cap_flags);
Ron Rindjunskyd3c990f2007-11-26 16:14:34 +02001532 }
1533
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001534 if (elems.country_elem) {
1535 /* Note we are only reviewing this on beacons
1536 * for the BSSID we are associated to */
1537 regulatory_hint_11d(local->hw.wiphy,
1538 elems.country_elem, elems.country_elem_len);
Vasanthakumar Thiagarajana8302de2009-01-09 18:14:15 +05301539
1540 /* TODO: IBSS also needs this */
1541 if (elems.pwr_constr_elem)
1542 ieee80211_handle_pwr_constr(sdata,
1543 le16_to_cpu(mgmt->u.probe_resp.capab_info),
1544 elems.pwr_constr_elem,
1545 elems.pwr_constr_elem_len);
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001546 }
1547
Johannes Berg471b3ef2007-12-28 14:32:58 +01001548 ieee80211_bss_info_change_notify(sdata, changed);
Jiri Bencf0706e82007-05-05 11:45:53 -07001549}
1550
Johannes Berg46900292009-02-15 12:44:28 +01001551ieee80211_rx_result ieee80211_sta_rx_mgmt(struct ieee80211_sub_if_data *sdata,
1552 struct sk_buff *skb,
1553 struct ieee80211_rx_status *rx_status)
Jiri Bencf0706e82007-05-05 11:45:53 -07001554{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001555 struct ieee80211_local *local = sdata->local;
Jiri Bencf0706e82007-05-05 11:45:53 -07001556 struct ieee80211_mgmt *mgmt;
1557 u16 fc;
1558
1559 if (skb->len < 24)
Johannes Berg46900292009-02-15 12:44:28 +01001560 return RX_DROP_MONITOR;
Jiri Bencf0706e82007-05-05 11:45:53 -07001561
1562 mgmt = (struct ieee80211_mgmt *) skb->data;
1563 fc = le16_to_cpu(mgmt->frame_control);
1564
1565 switch (fc & IEEE80211_FCTL_STYPE) {
1566 case IEEE80211_STYPE_PROBE_REQ:
1567 case IEEE80211_STYPE_PROBE_RESP:
1568 case IEEE80211_STYPE_BEACON:
1569 memcpy(skb->cb, rx_status, sizeof(*rx_status));
1570 case IEEE80211_STYPE_AUTH:
1571 case IEEE80211_STYPE_ASSOC_RESP:
1572 case IEEE80211_STYPE_REASSOC_RESP:
1573 case IEEE80211_STYPE_DEAUTH:
1574 case IEEE80211_STYPE_DISASSOC:
Johannes Berg46900292009-02-15 12:44:28 +01001575 skb_queue_tail(&sdata->u.mgd.skb_queue, skb);
1576 queue_work(local->hw.workqueue, &sdata->u.mgd.work);
1577 return RX_QUEUED;
Jiri Bencf0706e82007-05-05 11:45:53 -07001578 }
1579
Johannes Berg46900292009-02-15 12:44:28 +01001580 return RX_DROP_MONITOR;
Jiri Bencf0706e82007-05-05 11:45:53 -07001581}
1582
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001583static void ieee80211_sta_rx_queued_mgmt(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001584 struct sk_buff *skb)
1585{
1586 struct ieee80211_rx_status *rx_status;
Jiri Bencf0706e82007-05-05 11:45:53 -07001587 struct ieee80211_mgmt *mgmt;
1588 u16 fc;
1589
Jiri Bencf0706e82007-05-05 11:45:53 -07001590 rx_status = (struct ieee80211_rx_status *) skb->cb;
1591 mgmt = (struct ieee80211_mgmt *) skb->data;
1592 fc = le16_to_cpu(mgmt->frame_control);
1593
Johannes Berg46900292009-02-15 12:44:28 +01001594 switch (fc & IEEE80211_FCTL_STYPE) {
1595 case IEEE80211_STYPE_PROBE_RESP:
1596 ieee80211_rx_mgmt_probe_resp(sdata, mgmt, skb->len,
1597 rx_status);
1598 break;
1599 case IEEE80211_STYPE_BEACON:
1600 ieee80211_rx_mgmt_beacon(sdata, mgmt, skb->len,
1601 rx_status);
1602 break;
1603 case IEEE80211_STYPE_AUTH:
1604 ieee80211_rx_mgmt_auth(sdata, mgmt, skb->len);
1605 break;
1606 case IEEE80211_STYPE_ASSOC_RESP:
1607 ieee80211_rx_mgmt_assoc_resp(sdata, mgmt, skb->len, 0);
1608 break;
1609 case IEEE80211_STYPE_REASSOC_RESP:
1610 ieee80211_rx_mgmt_assoc_resp(sdata, mgmt, skb->len, 1);
1611 break;
1612 case IEEE80211_STYPE_DEAUTH:
1613 ieee80211_rx_mgmt_deauth(sdata, mgmt, skb->len);
1614 break;
1615 case IEEE80211_STYPE_DISASSOC:
1616 ieee80211_rx_mgmt_disassoc(sdata, mgmt, skb->len);
1617 break;
Jiri Bencf0706e82007-05-05 11:45:53 -07001618 }
1619
1620 kfree_skb(skb);
1621}
1622
Johannes Berg9c6bd792008-09-11 00:01:52 +02001623static void ieee80211_sta_timer(unsigned long data)
Jiri Bencf0706e82007-05-05 11:45:53 -07001624{
1625 struct ieee80211_sub_if_data *sdata =
1626 (struct ieee80211_sub_if_data *) data;
Johannes Berg46900292009-02-15 12:44:28 +01001627 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001628 struct ieee80211_local *local = sdata->local;
Jiri Bencf0706e82007-05-05 11:45:53 -07001629
Johannes Berg46900292009-02-15 12:44:28 +01001630 set_bit(IEEE80211_STA_REQ_RUN, &ifmgd->request);
1631 queue_work(local->hw.workqueue, &ifmgd->work);
Jiri Bencf0706e82007-05-05 11:45:53 -07001632}
1633
Johannes Berg46900292009-02-15 12:44:28 +01001634static void ieee80211_sta_reset_auth(struct ieee80211_sub_if_data *sdata)
Jiri Bencf0706e82007-05-05 11:45:53 -07001635{
Johannes Berg46900292009-02-15 12:44:28 +01001636 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001637 struct ieee80211_local *local = sdata->local;
Jiri Bencf0706e82007-05-05 11:45:53 -07001638
1639 if (local->ops->reset_tsf) {
1640 /* Reset own TSF to allow time synchronization work. */
1641 local->ops->reset_tsf(local_to_hw(local));
1642 }
1643
Johannes Berg46900292009-02-15 12:44:28 +01001644 ifmgd->wmm_last_param_set = -1; /* allow any WMM update */
Jiri Bencf0706e82007-05-05 11:45:53 -07001645
1646
Johannes Berg46900292009-02-15 12:44:28 +01001647 if (ifmgd->auth_algs & IEEE80211_AUTH_ALG_OPEN)
1648 ifmgd->auth_alg = WLAN_AUTH_OPEN;
1649 else if (ifmgd->auth_algs & IEEE80211_AUTH_ALG_SHARED_KEY)
1650 ifmgd->auth_alg = WLAN_AUTH_SHARED_KEY;
1651 else if (ifmgd->auth_algs & IEEE80211_AUTH_ALG_LEAP)
1652 ifmgd->auth_alg = WLAN_AUTH_LEAP;
Jouni Malinen636a5d32009-03-19 13:39:22 +02001653 else if (ifmgd->auth_algs & IEEE80211_AUTH_ALG_FT)
1654 ifmgd->auth_alg = WLAN_AUTH_FT;
Jiri Bencf0706e82007-05-05 11:45:53 -07001655 else
Johannes Berg46900292009-02-15 12:44:28 +01001656 ifmgd->auth_alg = WLAN_AUTH_OPEN;
1657 ifmgd->auth_transaction = -1;
1658 ifmgd->flags &= ~IEEE80211_STA_ASSOCIATED;
1659 ifmgd->assoc_scan_tries = 0;
1660 ifmgd->direct_probe_tries = 0;
1661 ifmgd->auth_tries = 0;
1662 ifmgd->assoc_tries = 0;
Tomas Winkler24e64622008-09-08 17:33:40 +02001663 netif_tx_stop_all_queues(sdata->dev);
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001664 netif_carrier_off(sdata->dev);
Jiri Bencf0706e82007-05-05 11:45:53 -07001665}
1666
Johannes Berg46900292009-02-15 12:44:28 +01001667static int ieee80211_sta_config_auth(struct ieee80211_sub_if_data *sdata)
Jiri Bencf0706e82007-05-05 11:45:53 -07001668{
Johannes Berg46900292009-02-15 12:44:28 +01001669 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001670 struct ieee80211_local *local = sdata->local;
Johannes Bergc2b13452008-09-11 00:01:55 +02001671 struct ieee80211_bss *bss;
Johannes Berg46900292009-02-15 12:44:28 +01001672 u8 *bssid = ifmgd->bssid, *ssid = ifmgd->ssid;
1673 u8 ssid_len = ifmgd->ssid_len;
Johannes Berg00d3f142009-02-10 21:26:00 +01001674 u16 capa_mask = WLAN_CAPABILITY_ESS;
1675 u16 capa_val = WLAN_CAPABILITY_ESS;
1676 struct ieee80211_channel *chan = local->oper_channel;
Johannes Berg60f8b392008-09-08 17:44:22 +02001677
Jouni Malinen636a5d32009-03-19 13:39:22 +02001678 if (!(ifmgd->flags & IEEE80211_STA_EXT_SME) &&
1679 ifmgd->flags & (IEEE80211_STA_AUTO_SSID_SEL |
Johannes Berg00d3f142009-02-10 21:26:00 +01001680 IEEE80211_STA_AUTO_BSSID_SEL |
1681 IEEE80211_STA_AUTO_CHANNEL_SEL)) {
1682 capa_mask |= WLAN_CAPABILITY_PRIVACY;
1683 if (sdata->default_key)
1684 capa_val |= WLAN_CAPABILITY_PRIVACY;
Johannes Berg60f8b392008-09-08 17:44:22 +02001685 }
Johannes Berg60f8b392008-09-08 17:44:22 +02001686
Johannes Berg46900292009-02-15 12:44:28 +01001687 if (ifmgd->flags & IEEE80211_STA_AUTO_CHANNEL_SEL)
Johannes Berg00d3f142009-02-10 21:26:00 +01001688 chan = NULL;
1689
Johannes Berg46900292009-02-15 12:44:28 +01001690 if (ifmgd->flags & IEEE80211_STA_AUTO_BSSID_SEL)
Johannes Berg00d3f142009-02-10 21:26:00 +01001691 bssid = NULL;
1692
Johannes Berg46900292009-02-15 12:44:28 +01001693 if (ifmgd->flags & IEEE80211_STA_AUTO_SSID_SEL) {
Johannes Berg00d3f142009-02-10 21:26:00 +01001694 ssid = NULL;
1695 ssid_len = 0;
1696 }
1697
1698 bss = (void *)cfg80211_get_bss(local->hw.wiphy, chan,
1699 bssid, ssid, ssid_len,
1700 capa_mask, capa_val);
1701
1702 if (bss) {
1703 ieee80211_set_freq(sdata, bss->cbss.channel->center_freq);
Johannes Berg46900292009-02-15 12:44:28 +01001704 if (!(ifmgd->flags & IEEE80211_STA_SSID_SET))
Johannes Berg00d3f142009-02-10 21:26:00 +01001705 ieee80211_sta_set_ssid(sdata, bss->ssid,
1706 bss->ssid_len);
1707 ieee80211_sta_set_bssid(sdata, bss->cbss.bssid);
1708 ieee80211_sta_def_wmm_params(sdata, bss->supp_rates_len,
1709 bss->supp_rates);
Johannes Berg46900292009-02-15 12:44:28 +01001710 if (sdata->u.mgd.mfp == IEEE80211_MFP_REQUIRED)
1711 sdata->u.mgd.flags |= IEEE80211_STA_MFP_ENABLED;
Jouni Malinenfdfacf02009-01-08 13:32:05 +02001712 else
Johannes Berg46900292009-02-15 12:44:28 +01001713 sdata->u.mgd.flags &= ~IEEE80211_STA_MFP_ENABLED;
Johannes Berg60f8b392008-09-08 17:44:22 +02001714
1715 /* Send out direct probe if no probe resp was received or
1716 * the one we have is outdated
1717 */
Johannes Berg00d3f142009-02-10 21:26:00 +01001718 if (!bss->last_probe_resp ||
1719 time_after(jiffies, bss->last_probe_resp
Johannes Berg60f8b392008-09-08 17:44:22 +02001720 + IEEE80211_SCAN_RESULT_EXPIRE))
Johannes Berg46900292009-02-15 12:44:28 +01001721 ifmgd->state = IEEE80211_STA_MLME_DIRECT_PROBE;
Johannes Berg60f8b392008-09-08 17:44:22 +02001722 else
Johannes Berg46900292009-02-15 12:44:28 +01001723 ifmgd->state = IEEE80211_STA_MLME_AUTHENTICATE;
Johannes Berg60f8b392008-09-08 17:44:22 +02001724
Johannes Berg00d3f142009-02-10 21:26:00 +01001725 ieee80211_rx_bss_put(local, bss);
Johannes Berg46900292009-02-15 12:44:28 +01001726 ieee80211_sta_reset_auth(sdata);
Johannes Berg60f8b392008-09-08 17:44:22 +02001727 return 0;
1728 } else {
Johannes Berg46900292009-02-15 12:44:28 +01001729 if (ifmgd->assoc_scan_tries < IEEE80211_ASSOC_SCANS_MAX_TRIES) {
1730 ifmgd->assoc_scan_tries++;
Johannes Berg2a519312009-02-10 21:25:55 +01001731 /* XXX maybe racy? */
1732 if (local->scan_req)
1733 return -1;
1734 memcpy(local->int_scan_req.ssids[0].ssid,
Johannes Berg46900292009-02-15 12:44:28 +01001735 ifmgd->ssid, IEEE80211_MAX_SSID_LEN);
1736 if (ifmgd->flags & IEEE80211_STA_AUTO_SSID_SEL)
Johannes Berg2a519312009-02-10 21:25:55 +01001737 local->int_scan_req.ssids[0].ssid_len = 0;
Johannes Berg60f8b392008-09-08 17:44:22 +02001738 else
Johannes Berg46900292009-02-15 12:44:28 +01001739 local->int_scan_req.ssids[0].ssid_len = ifmgd->ssid_len;
Helmut Schaaaf88b902009-03-09 15:47:08 +01001740
1741 if (ieee80211_start_scan(sdata, &local->int_scan_req))
1742 ieee80211_scan_failed(local);
1743
Johannes Berg46900292009-02-15 12:44:28 +01001744 ifmgd->state = IEEE80211_STA_MLME_AUTHENTICATE;
1745 set_bit(IEEE80211_STA_REQ_AUTH, &ifmgd->request);
Sujithe3740552009-01-29 09:34:22 +05301746 } else {
Johannes Berg46900292009-02-15 12:44:28 +01001747 ifmgd->assoc_scan_tries = 0;
1748 ifmgd->state = IEEE80211_STA_MLME_DISABLED;
Sujithe3740552009-01-29 09:34:22 +05301749 }
Johannes Berg60f8b392008-09-08 17:44:22 +02001750 }
1751 return -1;
1752}
1753
1754
Johannes Berg9c6bd792008-09-11 00:01:52 +02001755static void ieee80211_sta_work(struct work_struct *work)
Johannes Berg60f8b392008-09-08 17:44:22 +02001756{
1757 struct ieee80211_sub_if_data *sdata =
Johannes Berg46900292009-02-15 12:44:28 +01001758 container_of(work, struct ieee80211_sub_if_data, u.mgd.work);
Johannes Berg60f8b392008-09-08 17:44:22 +02001759 struct ieee80211_local *local = sdata->local;
Johannes Berg46900292009-02-15 12:44:28 +01001760 struct ieee80211_if_managed *ifmgd;
Johannes Berg60f8b392008-09-08 17:44:22 +02001761 struct sk_buff *skb;
1762
1763 if (!netif_running(sdata->dev))
1764 return;
1765
Johannes Bergc2b13452008-09-11 00:01:55 +02001766 if (local->sw_scanning || local->hw_scanning)
Johannes Berg60f8b392008-09-08 17:44:22 +02001767 return;
1768
Johannes Berg46900292009-02-15 12:44:28 +01001769 if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION))
Johannes Berg60f8b392008-09-08 17:44:22 +02001770 return;
Johannes Berg46900292009-02-15 12:44:28 +01001771 ifmgd = &sdata->u.mgd;
Johannes Berg60f8b392008-09-08 17:44:22 +02001772
Johannes Berg46900292009-02-15 12:44:28 +01001773 while ((skb = skb_dequeue(&ifmgd->skb_queue)))
Johannes Berg60f8b392008-09-08 17:44:22 +02001774 ieee80211_sta_rx_queued_mgmt(sdata, skb);
1775
Johannes Berg46900292009-02-15 12:44:28 +01001776 if (ifmgd->state != IEEE80211_STA_MLME_DIRECT_PROBE &&
1777 ifmgd->state != IEEE80211_STA_MLME_AUTHENTICATE &&
1778 ifmgd->state != IEEE80211_STA_MLME_ASSOCIATE &&
1779 test_and_clear_bit(IEEE80211_STA_REQ_SCAN, &ifmgd->request)) {
Helmut Schaaaf88b902009-03-09 15:47:08 +01001780 /*
1781 * The call to ieee80211_start_scan can fail but ieee80211_request_scan
1782 * (which queued ieee80211_sta_work) did not return an error. Thus, call
1783 * ieee80211_scan_failed here if ieee80211_start_scan fails in order to
1784 * notify the scan requester.
1785 */
1786 if (ieee80211_start_scan(sdata, local->scan_req))
1787 ieee80211_scan_failed(local);
Johannes Berg60f8b392008-09-08 17:44:22 +02001788 return;
1789 }
1790
Johannes Berg46900292009-02-15 12:44:28 +01001791 if (test_and_clear_bit(IEEE80211_STA_REQ_AUTH, &ifmgd->request)) {
1792 if (ieee80211_sta_config_auth(sdata))
Johannes Berg60f8b392008-09-08 17:44:22 +02001793 return;
Johannes Berg46900292009-02-15 12:44:28 +01001794 clear_bit(IEEE80211_STA_REQ_RUN, &ifmgd->request);
1795 } else if (!test_and_clear_bit(IEEE80211_STA_REQ_RUN, &ifmgd->request))
Johannes Berg60f8b392008-09-08 17:44:22 +02001796 return;
1797
Johannes Berg46900292009-02-15 12:44:28 +01001798 switch (ifmgd->state) {
Johannes Berg60f8b392008-09-08 17:44:22 +02001799 case IEEE80211_STA_MLME_DISABLED:
1800 break;
1801 case IEEE80211_STA_MLME_DIRECT_PROBE:
Johannes Berg46900292009-02-15 12:44:28 +01001802 ieee80211_direct_probe(sdata);
Johannes Berg60f8b392008-09-08 17:44:22 +02001803 break;
1804 case IEEE80211_STA_MLME_AUTHENTICATE:
Johannes Berg46900292009-02-15 12:44:28 +01001805 ieee80211_authenticate(sdata);
Johannes Berg60f8b392008-09-08 17:44:22 +02001806 break;
1807 case IEEE80211_STA_MLME_ASSOCIATE:
Johannes Berg46900292009-02-15 12:44:28 +01001808 ieee80211_associate(sdata);
Johannes Berg60f8b392008-09-08 17:44:22 +02001809 break;
1810 case IEEE80211_STA_MLME_ASSOCIATED:
Johannes Berg46900292009-02-15 12:44:28 +01001811 ieee80211_associated(sdata);
Johannes Berg60f8b392008-09-08 17:44:22 +02001812 break;
Johannes Berg60f8b392008-09-08 17:44:22 +02001813 default:
1814 WARN_ON(1);
1815 break;
1816 }
1817
Johannes Berg46900292009-02-15 12:44:28 +01001818 if (ieee80211_privacy_mismatch(sdata)) {
Johannes Berg60f8b392008-09-08 17:44:22 +02001819 printk(KERN_DEBUG "%s: privacy configuration mismatch and "
1820 "mixed-cell disabled - disassociate\n", sdata->dev->name);
1821
Johannes Berg46900292009-02-15 12:44:28 +01001822 ieee80211_set_disassoc(sdata, false, true,
Johannes Berg60f8b392008-09-08 17:44:22 +02001823 WLAN_REASON_UNSPECIFIED);
1824 }
1825}
Johannes Berg0a51b272008-09-08 17:44:25 +02001826
Johannes Berga1678f82008-09-11 00:01:47 +02001827static void ieee80211_restart_sta_timer(struct ieee80211_sub_if_data *sdata)
1828{
Johannes Berg05c914f2008-09-11 00:01:58 +02001829 if (sdata->vif.type == NL80211_IFTYPE_STATION)
Johannes Berg7c950692008-09-11 00:01:48 +02001830 queue_work(sdata->local->hw.workqueue,
Johannes Berg46900292009-02-15 12:44:28 +01001831 &sdata->u.mgd.work);
Johannes Berga1678f82008-09-11 00:01:47 +02001832}
1833
Johannes Berg9c6bd792008-09-11 00:01:52 +02001834/* interface setup */
1835void ieee80211_sta_setup_sdata(struct ieee80211_sub_if_data *sdata)
1836{
Johannes Berg46900292009-02-15 12:44:28 +01001837 struct ieee80211_if_managed *ifmgd;
Johannes Berg9c6bd792008-09-11 00:01:52 +02001838
Johannes Berg46900292009-02-15 12:44:28 +01001839 ifmgd = &sdata->u.mgd;
1840 INIT_WORK(&ifmgd->work, ieee80211_sta_work);
1841 INIT_WORK(&ifmgd->chswitch_work, ieee80211_chswitch_work);
1842 setup_timer(&ifmgd->timer, ieee80211_sta_timer,
Johannes Berg9c6bd792008-09-11 00:01:52 +02001843 (unsigned long) sdata);
Johannes Berg46900292009-02-15 12:44:28 +01001844 setup_timer(&ifmgd->chswitch_timer, ieee80211_chswitch_timer,
Sujithc481ec92009-01-06 09:28:37 +05301845 (unsigned long) sdata);
Johannes Berg46900292009-02-15 12:44:28 +01001846 skb_queue_head_init(&ifmgd->skb_queue);
Johannes Berg9c6bd792008-09-11 00:01:52 +02001847
Johannes Berg46900292009-02-15 12:44:28 +01001848 ifmgd->capab = WLAN_CAPABILITY_ESS;
1849 ifmgd->auth_algs = IEEE80211_AUTH_ALG_OPEN |
Johannes Berg9c6bd792008-09-11 00:01:52 +02001850 IEEE80211_AUTH_ALG_SHARED_KEY;
Johannes Berg46900292009-02-15 12:44:28 +01001851 ifmgd->flags |= IEEE80211_STA_CREATE_IBSS |
Johannes Berg9c6bd792008-09-11 00:01:52 +02001852 IEEE80211_STA_AUTO_BSSID_SEL |
1853 IEEE80211_STA_AUTO_CHANNEL_SEL;
Johannes Berg176be722009-03-12 23:49:28 +01001854 if (sdata->local->hw.queues >= 4)
Johannes Berg46900292009-02-15 12:44:28 +01001855 ifmgd->flags |= IEEE80211_STA_WMM_ENABLED;
Johannes Berg9c6bd792008-09-11 00:01:52 +02001856}
1857
1858/* configuration hooks */
Johannes Berg46900292009-02-15 12:44:28 +01001859void ieee80211_sta_req_auth(struct ieee80211_sub_if_data *sdata)
Johannes Berg9c6bd792008-09-11 00:01:52 +02001860{
Johannes Berg46900292009-02-15 12:44:28 +01001861 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg9c6bd792008-09-11 00:01:52 +02001862 struct ieee80211_local *local = sdata->local;
1863
Johannes Berg46900292009-02-15 12:44:28 +01001864 if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION))
Johannes Berg9c6bd792008-09-11 00:01:52 +02001865 return;
1866
Johannes Berg46900292009-02-15 12:44:28 +01001867 if ((ifmgd->flags & (IEEE80211_STA_BSSID_SET |
Johannes Berg9c6bd792008-09-11 00:01:52 +02001868 IEEE80211_STA_AUTO_BSSID_SEL)) &&
Johannes Berg46900292009-02-15 12:44:28 +01001869 (ifmgd->flags & (IEEE80211_STA_SSID_SET |
Johannes Berg9c6bd792008-09-11 00:01:52 +02001870 IEEE80211_STA_AUTO_SSID_SEL))) {
1871
Johannes Berg46900292009-02-15 12:44:28 +01001872 if (ifmgd->state == IEEE80211_STA_MLME_ASSOCIATED)
1873 ieee80211_set_disassoc(sdata, true, true,
Johannes Berg9c6bd792008-09-11 00:01:52 +02001874 WLAN_REASON_DEAUTH_LEAVING);
1875
Jouni Malinen636a5d32009-03-19 13:39:22 +02001876 if (!(ifmgd->flags & IEEE80211_STA_EXT_SME) ||
1877 ifmgd->state != IEEE80211_STA_MLME_ASSOCIATE)
1878 set_bit(IEEE80211_STA_REQ_AUTH, &ifmgd->request);
1879 else if (ifmgd->flags & IEEE80211_STA_EXT_SME)
1880 set_bit(IEEE80211_STA_REQ_RUN, &ifmgd->request);
Johannes Berg46900292009-02-15 12:44:28 +01001881 queue_work(local->hw.workqueue, &ifmgd->work);
Johannes Berg9c6bd792008-09-11 00:01:52 +02001882 }
1883}
1884
Alina Friedrichsen79f64402009-02-21 01:27:29 +01001885int ieee80211_sta_commit(struct ieee80211_sub_if_data *sdata)
1886{
1887 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1888
Alina Friedrichsen79f64402009-02-21 01:27:29 +01001889 if (ifmgd->ssid_len)
1890 ifmgd->flags |= IEEE80211_STA_SSID_SET;
1891 else
1892 ifmgd->flags &= ~IEEE80211_STA_SSID_SET;
1893
1894 return 0;
1895}
1896
Johannes Berg9c6bd792008-09-11 00:01:52 +02001897int ieee80211_sta_set_ssid(struct ieee80211_sub_if_data *sdata, char *ssid, size_t len)
1898{
Johannes Berg46900292009-02-15 12:44:28 +01001899 struct ieee80211_if_managed *ifmgd;
Johannes Berg9c6bd792008-09-11 00:01:52 +02001900
1901 if (len > IEEE80211_MAX_SSID_LEN)
1902 return -EINVAL;
1903
Johannes Berg46900292009-02-15 12:44:28 +01001904 ifmgd = &sdata->u.mgd;
Johannes Berg9c6bd792008-09-11 00:01:52 +02001905
Johannes Berg46900292009-02-15 12:44:28 +01001906 if (ifmgd->ssid_len != len || memcmp(ifmgd->ssid, ssid, len) != 0) {
Jouni Malinena2995422009-03-19 13:39:20 +02001907 /*
1908 * Do not use reassociation if SSID is changed (different ESS).
1909 */
1910 ifmgd->flags &= ~IEEE80211_STA_PREV_BSSID_SET;
Johannes Berg46900292009-02-15 12:44:28 +01001911 memset(ifmgd->ssid, 0, sizeof(ifmgd->ssid));
1912 memcpy(ifmgd->ssid, ssid, len);
1913 ifmgd->ssid_len = len;
Johannes Berg9c6bd792008-09-11 00:01:52 +02001914 }
1915
Alina Friedrichsen79f64402009-02-21 01:27:29 +01001916 return ieee80211_sta_commit(sdata);
Johannes Berg9c6bd792008-09-11 00:01:52 +02001917}
1918
1919int ieee80211_sta_get_ssid(struct ieee80211_sub_if_data *sdata, char *ssid, size_t *len)
1920{
Johannes Berg46900292009-02-15 12:44:28 +01001921 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1922 memcpy(ssid, ifmgd->ssid, ifmgd->ssid_len);
1923 *len = ifmgd->ssid_len;
Johannes Berg9c6bd792008-09-11 00:01:52 +02001924 return 0;
1925}
1926
1927int ieee80211_sta_set_bssid(struct ieee80211_sub_if_data *sdata, u8 *bssid)
1928{
Johannes Berg46900292009-02-15 12:44:28 +01001929 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg9c6bd792008-09-11 00:01:52 +02001930
Alina Friedrichsendfe67012009-01-24 01:19:04 +01001931 if (is_valid_ether_addr(bssid)) {
Johannes Berg46900292009-02-15 12:44:28 +01001932 memcpy(ifmgd->bssid, bssid, ETH_ALEN);
1933 ifmgd->flags |= IEEE80211_STA_BSSID_SET;
Alina Friedrichsendfe67012009-01-24 01:19:04 +01001934 } else {
Johannes Berg46900292009-02-15 12:44:28 +01001935 memset(ifmgd->bssid, 0, ETH_ALEN);
1936 ifmgd->flags &= ~IEEE80211_STA_BSSID_SET;
Alina Friedrichsendfe67012009-01-24 01:19:04 +01001937 }
1938
1939 if (netif_running(sdata->dev)) {
1940 if (ieee80211_if_config(sdata, IEEE80211_IFCC_BSSID)) {
Johannes Berg9c6bd792008-09-11 00:01:52 +02001941 printk(KERN_DEBUG "%s: Failed to config new BSSID to "
1942 "the low-level driver\n", sdata->dev->name);
Johannes Berg9c6bd792008-09-11 00:01:52 +02001943 }
1944 }
1945
Alina Friedrichsen79f64402009-02-21 01:27:29 +01001946 return ieee80211_sta_commit(sdata);
Johannes Berg9c6bd792008-09-11 00:01:52 +02001947}
1948
Jouni Malinen636a5d32009-03-19 13:39:22 +02001949int ieee80211_sta_set_extra_ie(struct ieee80211_sub_if_data *sdata,
1950 const char *ie, size_t len)
Johannes Berg9c6bd792008-09-11 00:01:52 +02001951{
Johannes Berg46900292009-02-15 12:44:28 +01001952 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg9c6bd792008-09-11 00:01:52 +02001953
Johannes Berg46900292009-02-15 12:44:28 +01001954 kfree(ifmgd->extra_ie);
Johannes Berg9c6bd792008-09-11 00:01:52 +02001955 if (len == 0) {
Johannes Berg46900292009-02-15 12:44:28 +01001956 ifmgd->extra_ie = NULL;
1957 ifmgd->extra_ie_len = 0;
Johannes Berg9c6bd792008-09-11 00:01:52 +02001958 return 0;
1959 }
Johannes Berg46900292009-02-15 12:44:28 +01001960 ifmgd->extra_ie = kmalloc(len, GFP_KERNEL);
1961 if (!ifmgd->extra_ie) {
1962 ifmgd->extra_ie_len = 0;
Johannes Berg9c6bd792008-09-11 00:01:52 +02001963 return -ENOMEM;
1964 }
Johannes Berg46900292009-02-15 12:44:28 +01001965 memcpy(ifmgd->extra_ie, ie, len);
1966 ifmgd->extra_ie_len = len;
Johannes Berg9c6bd792008-09-11 00:01:52 +02001967 return 0;
1968}
1969
1970int ieee80211_sta_deauthenticate(struct ieee80211_sub_if_data *sdata, u16 reason)
1971{
Johannes Berg9c6bd792008-09-11 00:01:52 +02001972 printk(KERN_DEBUG "%s: deauthenticating by local choice (reason=%d)\n",
1973 sdata->dev->name, reason);
1974
Johannes Berg46900292009-02-15 12:44:28 +01001975 if (sdata->vif.type != NL80211_IFTYPE_STATION)
Johannes Berg9c6bd792008-09-11 00:01:52 +02001976 return -EINVAL;
1977
Johannes Berg46900292009-02-15 12:44:28 +01001978 ieee80211_set_disassoc(sdata, true, true, reason);
Johannes Berg9c6bd792008-09-11 00:01:52 +02001979 return 0;
1980}
1981
1982int ieee80211_sta_disassociate(struct ieee80211_sub_if_data *sdata, u16 reason)
1983{
Johannes Berg46900292009-02-15 12:44:28 +01001984 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg9c6bd792008-09-11 00:01:52 +02001985
1986 printk(KERN_DEBUG "%s: disassociating by local choice (reason=%d)\n",
1987 sdata->dev->name, reason);
1988
Johannes Berg05c914f2008-09-11 00:01:58 +02001989 if (sdata->vif.type != NL80211_IFTYPE_STATION)
Johannes Berg9c6bd792008-09-11 00:01:52 +02001990 return -EINVAL;
1991
Johannes Berg46900292009-02-15 12:44:28 +01001992 if (!(ifmgd->flags & IEEE80211_STA_ASSOCIATED))
1993 return -ENOLINK;
Johannes Berg9c6bd792008-09-11 00:01:52 +02001994
Johannes Berg46900292009-02-15 12:44:28 +01001995 ieee80211_set_disassoc(sdata, false, true, reason);
Johannes Berg9c6bd792008-09-11 00:01:52 +02001996 return 0;
1997}
1998
1999/* scan finished notification */
Johannes Berg0a51b272008-09-08 17:44:25 +02002000void ieee80211_mlme_notify_scan_completed(struct ieee80211_local *local)
2001{
2002 struct ieee80211_sub_if_data *sdata = local->scan_sdata;
Johannes Berga1678f82008-09-11 00:01:47 +02002003
2004 /* Restart STA timers */
2005 rcu_read_lock();
2006 list_for_each_entry_rcu(sdata, &local->interfaces, list)
2007 ieee80211_restart_sta_timer(sdata);
2008 rcu_read_unlock();
Johannes Berg0a51b272008-09-08 17:44:25 +02002009}
Kalle Valo520eb822008-12-18 23:35:27 +02002010
2011void ieee80211_dynamic_ps_disable_work(struct work_struct *work)
2012{
2013 struct ieee80211_local *local =
2014 container_of(work, struct ieee80211_local,
2015 dynamic_ps_disable_work);
2016
2017 if (local->hw.conf.flags & IEEE80211_CONF_PS) {
2018 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
2019 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
2020 }
2021
2022 ieee80211_wake_queues_by_reason(&local->hw,
2023 IEEE80211_QUEUE_STOP_REASON_PS);
2024}
2025
2026void ieee80211_dynamic_ps_enable_work(struct work_struct *work)
2027{
2028 struct ieee80211_local *local =
2029 container_of(work, struct ieee80211_local,
2030 dynamic_ps_enable_work);
Vivek Natarajana97b77b2008-12-23 18:39:02 -08002031 struct ieee80211_sub_if_data *sdata = local->scan_sdata;
Kalle Valo520eb822008-12-18 23:35:27 +02002032
2033 if (local->hw.conf.flags & IEEE80211_CONF_PS)
2034 return;
2035
Johannes Berg4be8c382009-01-07 18:28:20 +01002036 if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)
2037 ieee80211_send_nullfunc(local, sdata, 1);
Kalle Valo520eb822008-12-18 23:35:27 +02002038
Johannes Berg4be8c382009-01-07 18:28:20 +01002039 local->hw.conf.flags |= IEEE80211_CONF_PS;
Kalle Valo520eb822008-12-18 23:35:27 +02002040 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
2041}
2042
2043void ieee80211_dynamic_ps_timer(unsigned long data)
2044{
2045 struct ieee80211_local *local = (void *) data;
2046
2047 queue_work(local->hw.workqueue, &local->dynamic_ps_enable_work);
2048}
Johannes Berg46900292009-02-15 12:44:28 +01002049
2050void ieee80211_send_nullfunc(struct ieee80211_local *local,
2051 struct ieee80211_sub_if_data *sdata,
2052 int powersave)
2053{
2054 struct sk_buff *skb;
2055 struct ieee80211_hdr *nullfunc;
2056 __le16 fc;
2057
2058 if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION))
2059 return;
2060
2061 skb = dev_alloc_skb(local->hw.extra_tx_headroom + 24);
2062 if (!skb) {
2063 printk(KERN_DEBUG "%s: failed to allocate buffer for nullfunc "
2064 "frame\n", sdata->dev->name);
2065 return;
2066 }
2067 skb_reserve(skb, local->hw.extra_tx_headroom);
2068
2069 nullfunc = (struct ieee80211_hdr *) skb_put(skb, 24);
2070 memset(nullfunc, 0, 24);
2071 fc = cpu_to_le16(IEEE80211_FTYPE_DATA | IEEE80211_STYPE_NULLFUNC |
2072 IEEE80211_FCTL_TODS);
2073 if (powersave)
2074 fc |= cpu_to_le16(IEEE80211_FCTL_PM);
2075 nullfunc->frame_control = fc;
2076 memcpy(nullfunc->addr1, sdata->u.mgd.bssid, ETH_ALEN);
2077 memcpy(nullfunc->addr2, sdata->dev->dev_addr, ETH_ALEN);
2078 memcpy(nullfunc->addr3, sdata->u.mgd.bssid, ETH_ALEN);
2079
2080 ieee80211_tx_skb(sdata, skb, 0);
2081}