blob: 3e1eab963b8e55a73c17c566bf909e0eb6e21c89 [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>
Johannes Berg10f644a2009-04-16 13:17:25 +020020#include <linux/pm_qos_params.h>
Johannes Bergd91f36d2009-04-16 13:17:26 +020021#include <linux/crc32.h>
Jiri Bencf0706e82007-05-05 11:45:53 -070022#include <net/mac80211.h>
Johannes Berg472dbc42008-09-11 00:01:49 +020023#include <asm/unaligned.h>
Johannes Berg60f8b392008-09-08 17:44:22 +020024
Jiri Bencf0706e82007-05-05 11:45:53 -070025#include "ieee80211_i.h"
Johannes Berg24487982009-04-23 18:52:52 +020026#include "driver-ops.h"
Johannes Berg2c8dccc2008-04-08 15:14:40 -040027#include "rate.h"
28#include "led.h"
Jiri Bencf0706e82007-05-05 11:45:53 -070029
30#define IEEE80211_AUTH_TIMEOUT (HZ / 5)
31#define IEEE80211_AUTH_MAX_TRIES 3
32#define IEEE80211_ASSOC_TIMEOUT (HZ / 5)
33#define IEEE80211_ASSOC_MAX_TRIES 3
Maxim Levitskya43abf22009-07-31 18:54:12 +030034#define IEEE80211_MAX_PROBE_TRIES 5
Johannes Bergb291ba12009-07-10 15:29:03 +020035
36/*
37 * beacon loss detection timeout
38 * XXX: should depend on beacon interval
39 */
40#define IEEE80211_BEACON_LOSS_TIME (2 * HZ)
41/*
42 * Time the connection can be idle before we probe
43 * it to see if we can still talk to the AP.
44 */
Maxim Levitskyd1c50912009-07-31 18:54:23 +030045#define IEEE80211_CONNECTION_IDLE_TIME (30 * HZ)
Johannes Bergb291ba12009-07-10 15:29:03 +020046/*
47 * Time we wait for a probe response after sending
48 * a probe request because of beacon loss or for
49 * checking the connection still works.
50 */
Maxim Levitskyd1c50912009-07-31 18:54:23 +030051#define IEEE80211_PROBE_WAIT (HZ / 2)
Jiri Bencf0706e82007-05-05 11:45:53 -070052
Johannes Berg5bb644a2009-05-17 11:40:42 +020053#define TMR_RUNNING_TIMER 0
54#define TMR_RUNNING_CHANSW 1
55
Johannes Berg77fdaa12009-07-07 03:45:17 +020056/*
57 * All cfg80211 functions have to be called outside a locked
58 * section so that they can acquire a lock themselves... This
59 * is much simpler than queuing up things in cfg80211, but we
60 * do need some indirection for that here.
61 */
62enum rx_mgmt_action {
63 /* no action required */
64 RX_MGMT_NONE,
65
66 /* caller must call cfg80211_send_rx_auth() */
67 RX_MGMT_CFG80211_AUTH,
68
69 /* caller must call cfg80211_send_rx_assoc() */
70 RX_MGMT_CFG80211_ASSOC,
71
72 /* caller must call cfg80211_send_deauth() */
73 RX_MGMT_CFG80211_DEAUTH,
74
75 /* caller must call cfg80211_send_disassoc() */
76 RX_MGMT_CFG80211_DISASSOC,
77
78 /* caller must call cfg80211_auth_timeout() & free work */
79 RX_MGMT_CFG80211_AUTH_TO,
80
81 /* caller must call cfg80211_assoc_timeout() & free work */
82 RX_MGMT_CFG80211_ASSOC_TO,
83};
84
Johannes Berg5484e232008-09-08 17:44:27 +020085/* utils */
Johannes Berg77fdaa12009-07-07 03:45:17 +020086static inline void ASSERT_MGD_MTX(struct ieee80211_if_managed *ifmgd)
87{
88 WARN_ON(!mutex_is_locked(&ifmgd->mtx));
89}
90
Johannes Bergca386f32009-07-10 02:39:48 +020091/*
92 * We can have multiple work items (and connection probing)
93 * scheduling this timer, but we need to take care to only
94 * reschedule it when it should fire _earlier_ than it was
95 * asked for before, or if it's not pending right now. This
96 * function ensures that. Note that it then is required to
97 * run this function for all timeouts after the first one
98 * has happened -- the work that runs from this timer will
99 * do that.
100 */
101static void run_again(struct ieee80211_if_managed *ifmgd,
102 unsigned long timeout)
103{
104 ASSERT_MGD_MTX(ifmgd);
105
106 if (!timer_pending(&ifmgd->timer) ||
107 time_before(timeout, ifmgd->timer.expires))
108 mod_timer(&ifmgd->timer, timeout);
109}
110
Johannes Bergb291ba12009-07-10 15:29:03 +0200111static void mod_beacon_timer(struct ieee80211_sub_if_data *sdata)
112{
113 if (sdata->local->hw.flags & IEEE80211_HW_BEACON_FILTER)
114 return;
115
116 mod_timer(&sdata->u.mgd.bcn_mon_timer,
117 round_jiffies_up(jiffies + IEEE80211_BEACON_LOSS_TIME));
118}
119
Johannes Berg5484e232008-09-08 17:44:27 +0200120static int ecw2cw(int ecw)
Johannes Berg60f8b392008-09-08 17:44:22 +0200121{
Johannes Berg5484e232008-09-08 17:44:27 +0200122 return (1 << ecw) - 1;
Johannes Berg60f8b392008-09-08 17:44:22 +0200123}
124
Johannes Bergc2b13452008-09-11 00:01:55 +0200125static int ieee80211_compatible_rates(struct ieee80211_bss *bss,
Johannes Berg9ac19a92008-09-09 10:57:09 +0200126 struct ieee80211_supported_band *sband,
Johannes Berg881d9482009-01-21 15:13:48 +0100127 u32 *rates)
Johannes Berg9ac19a92008-09-09 10:57:09 +0200128{
129 int i, j, count;
130 *rates = 0;
131 count = 0;
132 for (i = 0; i < bss->supp_rates_len; i++) {
133 int rate = (bss->supp_rates[i] & 0x7F) * 5;
134
135 for (j = 0; j < sband->n_bitrates; j++)
136 if (sband->bitrates[j].bitrate == rate) {
137 *rates |= BIT(j);
138 count++;
139 break;
140 }
141 }
142
143 return count;
144}
145
Johannes Bergd5522e02009-03-30 13:23:35 +0200146/*
147 * ieee80211_enable_ht should be called only after the operating band
148 * has been determined as ht configuration depends on the hw's
149 * HT abilities for a specific band.
150 */
151static u32 ieee80211_enable_ht(struct ieee80211_sub_if_data *sdata,
152 struct ieee80211_ht_info *hti,
Johannes Berg77fdaa12009-07-07 03:45:17 +0200153 const u8 *bssid, u16 ap_ht_cap_flags)
Johannes Bergd5522e02009-03-30 13:23:35 +0200154{
155 struct ieee80211_local *local = sdata->local;
156 struct ieee80211_supported_band *sband;
Johannes Bergd5522e02009-03-30 13:23:35 +0200157 struct sta_info *sta;
158 u32 changed = 0;
Johannes Berg9ed6bcc2009-05-08 20:47:39 +0200159 u16 ht_opmode;
Johannes Bergd5522e02009-03-30 13:23:35 +0200160 bool enable_ht = true, ht_changed;
161 enum nl80211_channel_type channel_type = NL80211_CHAN_NO_HT;
162
163 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
164
Johannes Bergd5522e02009-03-30 13:23:35 +0200165 /* HT is not supported */
166 if (!sband->ht_cap.ht_supported)
167 enable_ht = false;
168
169 /* check that channel matches the right operating channel */
170 if (local->hw.conf.channel->center_freq !=
171 ieee80211_channel_to_frequency(hti->control_chan))
172 enable_ht = false;
173
174 if (enable_ht) {
175 channel_type = NL80211_CHAN_HT20;
176
177 if (!(ap_ht_cap_flags & IEEE80211_HT_CAP_40MHZ_INTOLERANT) &&
178 (sband->ht_cap.cap & IEEE80211_HT_CAP_SUP_WIDTH_20_40) &&
179 (hti->ht_param & IEEE80211_HT_PARAM_CHAN_WIDTH_ANY)) {
180 switch(hti->ht_param & IEEE80211_HT_PARAM_CHA_SEC_OFFSET) {
181 case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
Luis R. Rodriguez768777e2009-05-02 00:37:19 -0400182 if (!(local->hw.conf.channel->flags &
183 IEEE80211_CHAN_NO_HT40PLUS))
184 channel_type = NL80211_CHAN_HT40PLUS;
Johannes Bergd5522e02009-03-30 13:23:35 +0200185 break;
186 case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
Luis R. Rodriguez768777e2009-05-02 00:37:19 -0400187 if (!(local->hw.conf.channel->flags &
188 IEEE80211_CHAN_NO_HT40MINUS))
189 channel_type = NL80211_CHAN_HT40MINUS;
Johannes Bergd5522e02009-03-30 13:23:35 +0200190 break;
191 }
192 }
193 }
194
195 ht_changed = conf_is_ht(&local->hw.conf) != enable_ht ||
196 channel_type != local->hw.conf.channel_type;
197
198 local->oper_channel_type = channel_type;
199
200 if (ht_changed) {
201 /* channel_type change automatically detected */
202 ieee80211_hw_config(local, 0);
203
204 rcu_read_lock();
Johannes Berg77fdaa12009-07-07 03:45:17 +0200205 sta = sta_info_get(local, bssid);
Johannes Bergd5522e02009-03-30 13:23:35 +0200206 if (sta)
207 rate_control_rate_update(local, sband, sta,
208 IEEE80211_RC_HT_CHANGED);
Johannes Bergd5522e02009-03-30 13:23:35 +0200209 rcu_read_unlock();
Johannes Bergd5522e02009-03-30 13:23:35 +0200210 }
211
212 /* disable HT */
213 if (!enable_ht)
214 return 0;
215
Johannes Berg9ed6bcc2009-05-08 20:47:39 +0200216 ht_opmode = le16_to_cpu(hti->operation_mode);
Johannes Bergd5522e02009-03-30 13:23:35 +0200217
218 /* if bss configuration changed store the new one */
Johannes Berg413ad502009-05-08 21:21:06 +0200219 if (!sdata->ht_opmode_valid ||
220 sdata->vif.bss_conf.ht_operation_mode != ht_opmode) {
Johannes Bergd5522e02009-03-30 13:23:35 +0200221 changed |= BSS_CHANGED_HT;
Johannes Berg9ed6bcc2009-05-08 20:47:39 +0200222 sdata->vif.bss_conf.ht_operation_mode = ht_opmode;
Johannes Berg413ad502009-05-08 21:21:06 +0200223 sdata->ht_opmode_valid = true;
Johannes Bergd5522e02009-03-30 13:23:35 +0200224 }
225
226 return changed;
227}
228
Johannes Berg9c6bd792008-09-11 00:01:52 +0200229/* frame sending functions */
230
Johannes Berg77fdaa12009-07-07 03:45:17 +0200231static void ieee80211_send_assoc(struct ieee80211_sub_if_data *sdata,
232 struct ieee80211_mgd_work *wk)
Johannes Berg60f8b392008-09-08 17:44:22 +0200233{
Johannes Berg46900292009-02-15 12:44:28 +0100234 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg9ac19a92008-09-09 10:57:09 +0200235 struct ieee80211_local *local = sdata->local;
236 struct sk_buff *skb;
237 struct ieee80211_mgmt *mgmt;
Johannes Berg517357c2009-07-02 17:18:40 +0200238 u8 *pos;
239 const u8 *ies, *ht_ie;
Johannes Berg9ac19a92008-09-09 10:57:09 +0200240 int i, len, count, rates_len, supp_rates_len;
241 u16 capab;
Johannes Berg9ac19a92008-09-09 10:57:09 +0200242 int wmm = 0;
243 struct ieee80211_supported_band *sband;
Johannes Berg881d9482009-01-21 15:13:48 +0100244 u32 rates = 0;
Johannes Berg9ac19a92008-09-09 10:57:09 +0200245
246 skb = dev_alloc_skb(local->hw.extra_tx_headroom +
Johannes Berg77fdaa12009-07-07 03:45:17 +0200247 sizeof(*mgmt) + 200 + wk->ie_len +
248 wk->ssid_len);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200249 if (!skb) {
250 printk(KERN_DEBUG "%s: failed to allocate buffer for assoc "
251 "frame\n", sdata->dev->name);
252 return;
253 }
254 skb_reserve(skb, local->hw.extra_tx_headroom);
255
256 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
257
Johannes Berg46900292009-02-15 12:44:28 +0100258 capab = ifmgd->capab;
Johannes Berg9ac19a92008-09-09 10:57:09 +0200259
260 if (local->hw.conf.channel->band == IEEE80211_BAND_2GHZ) {
261 if (!(local->hw.flags & IEEE80211_HW_2GHZ_SHORT_SLOT_INCAPABLE))
262 capab |= WLAN_CAPABILITY_SHORT_SLOT_TIME;
263 if (!(local->hw.flags & IEEE80211_HW_2GHZ_SHORT_PREAMBLE_INCAPABLE))
264 capab |= WLAN_CAPABILITY_SHORT_PREAMBLE;
265 }
266
Johannes Berg77fdaa12009-07-07 03:45:17 +0200267 if (wk->bss->cbss.capability & WLAN_CAPABILITY_PRIVACY)
268 capab |= WLAN_CAPABILITY_PRIVACY;
269 if (wk->bss->wmm_used)
270 wmm = 1;
Johannes Berg9ac19a92008-09-09 10:57:09 +0200271
Johannes Berg77fdaa12009-07-07 03:45:17 +0200272 /* get all rates supported by the device and the AP as
273 * some APs don't like getting a superset of their rates
274 * in the association request (e.g. D-Link DAP 1353 in
275 * b-only mode) */
276 rates_len = ieee80211_compatible_rates(wk->bss, sband, &rates);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200277
Johannes Berg77fdaa12009-07-07 03:45:17 +0200278 if ((wk->bss->cbss.capability & WLAN_CAPABILITY_SPECTRUM_MGMT) &&
279 (local->hw.flags & IEEE80211_HW_SPECTRUM_MGMT))
280 capab |= WLAN_CAPABILITY_SPECTRUM_MGMT;
Johannes Berg9ac19a92008-09-09 10:57:09 +0200281
282 mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24);
283 memset(mgmt, 0, 24);
Johannes Berg77fdaa12009-07-07 03:45:17 +0200284 memcpy(mgmt->da, wk->bss->cbss.bssid, ETH_ALEN);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200285 memcpy(mgmt->sa, sdata->dev->dev_addr, ETH_ALEN);
Johannes Berg77fdaa12009-07-07 03:45:17 +0200286 memcpy(mgmt->bssid, wk->bss->cbss.bssid, ETH_ALEN);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200287
Johannes Berg77fdaa12009-07-07 03:45:17 +0200288 if (!is_zero_ether_addr(wk->prev_bssid)) {
Johannes Berg9ac19a92008-09-09 10:57:09 +0200289 skb_put(skb, 10);
290 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
291 IEEE80211_STYPE_REASSOC_REQ);
292 mgmt->u.reassoc_req.capab_info = cpu_to_le16(capab);
293 mgmt->u.reassoc_req.listen_interval =
294 cpu_to_le16(local->hw.conf.listen_interval);
Johannes Berg77fdaa12009-07-07 03:45:17 +0200295 memcpy(mgmt->u.reassoc_req.current_ap, wk->prev_bssid,
Johannes Berg9ac19a92008-09-09 10:57:09 +0200296 ETH_ALEN);
297 } else {
298 skb_put(skb, 4);
299 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
300 IEEE80211_STYPE_ASSOC_REQ);
301 mgmt->u.assoc_req.capab_info = cpu_to_le16(capab);
Rami Rosen13554122008-12-16 22:38:29 +0200302 mgmt->u.assoc_req.listen_interval =
Johannes Berg9ac19a92008-09-09 10:57:09 +0200303 cpu_to_le16(local->hw.conf.listen_interval);
304 }
305
306 /* SSID */
Johannes Berg77fdaa12009-07-07 03:45:17 +0200307 ies = pos = skb_put(skb, 2 + wk->ssid_len);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200308 *pos++ = WLAN_EID_SSID;
Johannes Berg77fdaa12009-07-07 03:45:17 +0200309 *pos++ = wk->ssid_len;
310 memcpy(pos, wk->ssid, wk->ssid_len);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200311
312 /* add all rates which were marked to be used above */
313 supp_rates_len = rates_len;
314 if (supp_rates_len > 8)
315 supp_rates_len = 8;
316
317 len = sband->n_bitrates;
318 pos = skb_put(skb, supp_rates_len + 2);
319 *pos++ = WLAN_EID_SUPP_RATES;
320 *pos++ = supp_rates_len;
321
322 count = 0;
323 for (i = 0; i < sband->n_bitrates; i++) {
324 if (BIT(i) & rates) {
325 int rate = sband->bitrates[i].bitrate;
326 *pos++ = (u8) (rate / 5);
327 if (++count == 8)
328 break;
329 }
330 }
331
332 if (rates_len > count) {
333 pos = skb_put(skb, rates_len - count + 2);
334 *pos++ = WLAN_EID_EXT_SUPP_RATES;
335 *pos++ = rates_len - count;
336
337 for (i++; i < sband->n_bitrates; i++) {
338 if (BIT(i) & rates) {
339 int rate = sband->bitrates[i].bitrate;
340 *pos++ = (u8) (rate / 5);
341 }
342 }
343 }
344
345 if (capab & WLAN_CAPABILITY_SPECTRUM_MGMT) {
346 /* 1. power capabilities */
347 pos = skb_put(skb, 4);
348 *pos++ = WLAN_EID_PWR_CAPABILITY;
349 *pos++ = 2;
350 *pos++ = 0; /* min tx power */
351 *pos++ = local->hw.conf.channel->max_power; /* max tx power */
352
353 /* 2. supported channels */
354 /* TODO: get this in reg domain format */
355 pos = skb_put(skb, 2 * sband->n_channels + 2);
356 *pos++ = WLAN_EID_SUPPORTED_CHANNELS;
357 *pos++ = 2 * sband->n_channels;
358 for (i = 0; i < sband->n_channels; i++) {
359 *pos++ = ieee80211_frequency_to_channel(
360 sband->channels[i].center_freq);
361 *pos++ = 1; /* one channel in the subband*/
362 }
363 }
364
Johannes Berg77fdaa12009-07-07 03:45:17 +0200365 if (wk->ie_len && wk->ie) {
366 pos = skb_put(skb, wk->ie_len);
367 memcpy(pos, wk->ie, wk->ie_len);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200368 }
369
Johannes Berg46900292009-02-15 12:44:28 +0100370 if (wmm && (ifmgd->flags & IEEE80211_STA_WMM_ENABLED)) {
Johannes Berg9ac19a92008-09-09 10:57:09 +0200371 pos = skb_put(skb, 9);
372 *pos++ = WLAN_EID_VENDOR_SPECIFIC;
373 *pos++ = 7; /* len */
374 *pos++ = 0x00; /* Microsoft OUI 00:50:F2 */
375 *pos++ = 0x50;
376 *pos++ = 0xf2;
377 *pos++ = 2; /* WME */
378 *pos++ = 0; /* WME info */
379 *pos++ = 1; /* WME ver */
380 *pos++ = 0;
381 }
382
383 /* wmm support is a must to HT */
Vasanthakumar Thiagarajaneb469362008-12-23 21:30:50 +0530384 /*
385 * IEEE802.11n does not allow TKIP/WEP as pairwise
386 * ciphers in HT mode. We still associate in non-ht
387 * mode (11a/b/g) if any one of these ciphers is
388 * configured as pairwise.
389 */
Johannes Berg46900292009-02-15 12:44:28 +0100390 if (wmm && (ifmgd->flags & IEEE80211_STA_WMM_ENABLED) &&
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200391 sband->ht_cap.ht_supported &&
Johannes Berg77fdaa12009-07-07 03:45:17 +0200392 (ht_ie = ieee80211_bss_get_ie(&wk->bss->cbss, WLAN_EID_HT_INFORMATION)) &&
Vasanthakumar Thiagarajaneb469362008-12-23 21:30:50 +0530393 ht_ie[1] >= sizeof(struct ieee80211_ht_info) &&
Johannes Bergab1faea2009-07-01 21:41:17 +0200394 (!(ifmgd->flags & IEEE80211_STA_DISABLE_11N))) {
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200395 struct ieee80211_ht_info *ht_info =
396 (struct ieee80211_ht_info *)(ht_ie + 2);
397 u16 cap = sband->ht_cap.cap;
Johannes Berg9ac19a92008-09-09 10:57:09 +0200398 __le16 tmp;
399 u32 flags = local->hw.conf.channel->flags;
400
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200401 switch (ht_info->ht_param & IEEE80211_HT_PARAM_CHA_SEC_OFFSET) {
402 case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
Luis R. Rodriguez689da1b2009-05-02 00:37:18 -0400403 if (flags & IEEE80211_CHAN_NO_HT40PLUS) {
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200404 cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
Johannes Berg9ac19a92008-09-09 10:57:09 +0200405 cap &= ~IEEE80211_HT_CAP_SGI_40;
406 }
407 break;
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200408 case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
Luis R. Rodriguez689da1b2009-05-02 00:37:18 -0400409 if (flags & IEEE80211_CHAN_NO_HT40MINUS) {
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200410 cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
Johannes Berg9ac19a92008-09-09 10:57:09 +0200411 cap &= ~IEEE80211_HT_CAP_SGI_40;
412 }
413 break;
414 }
415
416 tmp = cpu_to_le16(cap);
417 pos = skb_put(skb, sizeof(struct ieee80211_ht_cap)+2);
418 *pos++ = WLAN_EID_HT_CAPABILITY;
419 *pos++ = sizeof(struct ieee80211_ht_cap);
420 memset(pos, 0, sizeof(struct ieee80211_ht_cap));
421 memcpy(pos, &tmp, sizeof(u16));
422 pos += sizeof(u16);
423 /* TODO: needs a define here for << 2 */
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200424 *pos++ = sband->ht_cap.ampdu_factor |
425 (sband->ht_cap.ampdu_density << 2);
426 memcpy(pos, &sband->ht_cap.mcs, sizeof(sband->ht_cap.mcs));
Johannes Berg9ac19a92008-09-09 10:57:09 +0200427 }
428
Johannes Berg62ae67b2009-11-18 18:42:05 +0100429 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
430 ieee80211_tx_skb(sdata, skb);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200431}
432
433
Johannes Bergef422bc2008-09-09 10:58:25 +0200434static void ieee80211_send_deauth_disassoc(struct ieee80211_sub_if_data *sdata,
Johannes Berg667503dd2009-07-07 03:56:11 +0200435 const u8 *bssid, u16 stype, u16 reason,
436 void *cookie)
Johannes Berg9ac19a92008-09-09 10:57:09 +0200437{
438 struct ieee80211_local *local = sdata->local;
Johannes Berg46900292009-02-15 12:44:28 +0100439 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg9ac19a92008-09-09 10:57:09 +0200440 struct sk_buff *skb;
441 struct ieee80211_mgmt *mgmt;
442
Jouni Malinen65fc73a2009-03-20 21:21:16 +0200443 skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*mgmt));
Johannes Berg9ac19a92008-09-09 10:57:09 +0200444 if (!skb) {
Johannes Bergef422bc2008-09-09 10:58:25 +0200445 printk(KERN_DEBUG "%s: failed to allocate buffer for "
446 "deauth/disassoc frame\n", sdata->dev->name);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200447 return;
448 }
449 skb_reserve(skb, local->hw.extra_tx_headroom);
450
451 mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24);
452 memset(mgmt, 0, 24);
Johannes Berg77fdaa12009-07-07 03:45:17 +0200453 memcpy(mgmt->da, bssid, ETH_ALEN);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200454 memcpy(mgmt->sa, sdata->dev->dev_addr, ETH_ALEN);
Johannes Berg77fdaa12009-07-07 03:45:17 +0200455 memcpy(mgmt->bssid, bssid, ETH_ALEN);
Johannes Bergef422bc2008-09-09 10:58:25 +0200456 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT | stype);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200457 skb_put(skb, 2);
Johannes Bergef422bc2008-09-09 10:58:25 +0200458 /* u.deauth.reason_code == u.disassoc.reason_code */
Johannes Berg9ac19a92008-09-09 10:57:09 +0200459 mgmt->u.deauth.reason_code = cpu_to_le16(reason);
460
Jouni Malinen53b46b82009-03-27 20:53:56 +0200461 if (stype == IEEE80211_STYPE_DEAUTH)
Holger Schurigce470612009-10-13 13:28:13 +0200462 if (cookie)
463 __cfg80211_send_deauth(sdata->dev, (u8 *)mgmt, skb->len);
464 else
465 cfg80211_send_deauth(sdata->dev, (u8 *)mgmt, skb->len);
Jouni Malinen53b46b82009-03-27 20:53:56 +0200466 else
Holger Schurigce470612009-10-13 13:28:13 +0200467 if (cookie)
468 __cfg80211_send_disassoc(sdata->dev, (u8 *)mgmt, skb->len);
469 else
470 cfg80211_send_disassoc(sdata->dev, (u8 *)mgmt, skb->len);
Johannes Berg62ae67b2009-11-18 18:42:05 +0100471 if (!(ifmgd->flags & IEEE80211_STA_MFP_ENABLED))
472 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
473 ieee80211_tx_skb(sdata, skb);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200474}
475
Kalle Valo572e0012009-02-10 17:09:31 +0200476void ieee80211_send_pspoll(struct ieee80211_local *local,
477 struct ieee80211_sub_if_data *sdata)
478{
Johannes Berg46900292009-02-15 12:44:28 +0100479 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Kalle Valo572e0012009-02-10 17:09:31 +0200480 struct ieee80211_pspoll *pspoll;
481 struct sk_buff *skb;
482 u16 fc;
483
484 skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*pspoll));
485 if (!skb) {
486 printk(KERN_DEBUG "%s: failed to allocate buffer for "
487 "pspoll frame\n", sdata->dev->name);
488 return;
489 }
490 skb_reserve(skb, local->hw.extra_tx_headroom);
491
492 pspoll = (struct ieee80211_pspoll *) skb_put(skb, sizeof(*pspoll));
493 memset(pspoll, 0, sizeof(*pspoll));
494 fc = IEEE80211_FTYPE_CTL | IEEE80211_STYPE_PSPOLL | IEEE80211_FCTL_PM;
495 pspoll->frame_control = cpu_to_le16(fc);
Johannes Berg46900292009-02-15 12:44:28 +0100496 pspoll->aid = cpu_to_le16(ifmgd->aid);
Kalle Valo572e0012009-02-10 17:09:31 +0200497
498 /* aid in PS-Poll has its two MSBs each set to 1 */
499 pspoll->aid |= cpu_to_le16(1 << 15 | 1 << 14);
500
Johannes Berg46900292009-02-15 12:44:28 +0100501 memcpy(pspoll->bssid, ifmgd->bssid, ETH_ALEN);
Kalle Valo572e0012009-02-10 17:09:31 +0200502 memcpy(pspoll->ta, sdata->dev->dev_addr, ETH_ALEN);
503
Johannes Berg62ae67b2009-11-18 18:42:05 +0100504 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
505 ieee80211_tx_skb(sdata, skb);
Kalle Valo572e0012009-02-10 17:09:31 +0200506}
507
Johannes Berg965beda2009-04-16 13:17:24 +0200508void ieee80211_send_nullfunc(struct ieee80211_local *local,
509 struct ieee80211_sub_if_data *sdata,
510 int powersave)
511{
512 struct sk_buff *skb;
513 struct ieee80211_hdr *nullfunc;
514 __le16 fc;
515
516 if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION))
517 return;
518
519 skb = dev_alloc_skb(local->hw.extra_tx_headroom + 24);
520 if (!skb) {
521 printk(KERN_DEBUG "%s: failed to allocate buffer for nullfunc "
522 "frame\n", sdata->dev->name);
523 return;
524 }
525 skb_reserve(skb, local->hw.extra_tx_headroom);
526
527 nullfunc = (struct ieee80211_hdr *) skb_put(skb, 24);
528 memset(nullfunc, 0, 24);
529 fc = cpu_to_le16(IEEE80211_FTYPE_DATA | IEEE80211_STYPE_NULLFUNC |
530 IEEE80211_FCTL_TODS);
531 if (powersave)
532 fc |= cpu_to_le16(IEEE80211_FCTL_PM);
533 nullfunc->frame_control = fc;
534 memcpy(nullfunc->addr1, sdata->u.mgd.bssid, ETH_ALEN);
535 memcpy(nullfunc->addr2, sdata->dev->dev_addr, ETH_ALEN);
536 memcpy(nullfunc->addr3, sdata->u.mgd.bssid, ETH_ALEN);
537
Johannes Berg62ae67b2009-11-18 18:42:05 +0100538 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
539 ieee80211_tx_skb(sdata, skb);
Johannes Berg965beda2009-04-16 13:17:24 +0200540}
541
Johannes Bergcc32abd2009-05-15 11:52:31 +0200542/* spectrum management related things */
543static void ieee80211_chswitch_work(struct work_struct *work)
544{
545 struct ieee80211_sub_if_data *sdata =
546 container_of(work, struct ieee80211_sub_if_data, u.mgd.chswitch_work);
Johannes Bergcc32abd2009-05-15 11:52:31 +0200547 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
548
549 if (!netif_running(sdata->dev))
550 return;
551
Johannes Berg77fdaa12009-07-07 03:45:17 +0200552 mutex_lock(&ifmgd->mtx);
553 if (!ifmgd->associated)
554 goto out;
Johannes Bergcc32abd2009-05-15 11:52:31 +0200555
556 sdata->local->oper_channel = sdata->local->csa_channel;
Johannes Berg77fdaa12009-07-07 03:45:17 +0200557 ieee80211_hw_config(sdata->local, IEEE80211_CONF_CHANGE_CHANNEL);
Johannes Bergcc32abd2009-05-15 11:52:31 +0200558
Johannes Berg77fdaa12009-07-07 03:45:17 +0200559 /* XXX: shouldn't really modify cfg80211-owned data! */
560 ifmgd->associated->cbss.channel = sdata->local->oper_channel;
561
Johannes Bergcc32abd2009-05-15 11:52:31 +0200562 ieee80211_wake_queues_by_reason(&sdata->local->hw,
563 IEEE80211_QUEUE_STOP_REASON_CSA);
Johannes Berg77fdaa12009-07-07 03:45:17 +0200564 out:
565 ifmgd->flags &= ~IEEE80211_STA_CSA_RECEIVED;
566 mutex_unlock(&ifmgd->mtx);
Johannes Bergcc32abd2009-05-15 11:52:31 +0200567}
568
569static void ieee80211_chswitch_timer(unsigned long data)
570{
571 struct ieee80211_sub_if_data *sdata =
572 (struct ieee80211_sub_if_data *) data;
573 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
574
Johannes Berg5bb644a2009-05-17 11:40:42 +0200575 if (sdata->local->quiescing) {
576 set_bit(TMR_RUNNING_CHANSW, &ifmgd->timers_running);
577 return;
578 }
579
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -0400580 ieee80211_queue_work(&sdata->local->hw, &ifmgd->chswitch_work);
Johannes Bergcc32abd2009-05-15 11:52:31 +0200581}
582
583void ieee80211_sta_process_chanswitch(struct ieee80211_sub_if_data *sdata,
584 struct ieee80211_channel_sw_ie *sw_elem,
585 struct ieee80211_bss *bss)
586{
587 struct ieee80211_channel *new_ch;
588 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
589 int new_freq = ieee80211_channel_to_frequency(sw_elem->new_ch_num);
590
Johannes Berg77fdaa12009-07-07 03:45:17 +0200591 ASSERT_MGD_MTX(ifmgd);
592
593 if (!ifmgd->associated)
Johannes Bergcc32abd2009-05-15 11:52:31 +0200594 return;
595
Helmut Schaafbe9c422009-07-23 12:14:04 +0200596 if (sdata->local->scanning)
Johannes Bergcc32abd2009-05-15 11:52:31 +0200597 return;
598
599 /* Disregard subsequent beacons if we are already running a timer
600 processing a CSA */
601
602 if (ifmgd->flags & IEEE80211_STA_CSA_RECEIVED)
603 return;
604
605 new_ch = ieee80211_get_channel(sdata->local->hw.wiphy, new_freq);
606 if (!new_ch || new_ch->flags & IEEE80211_CHAN_DISABLED)
607 return;
608
609 sdata->local->csa_channel = new_ch;
610
611 if (sw_elem->count <= 1) {
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -0400612 ieee80211_queue_work(&sdata->local->hw, &ifmgd->chswitch_work);
Johannes Bergcc32abd2009-05-15 11:52:31 +0200613 } else {
614 ieee80211_stop_queues_by_reason(&sdata->local->hw,
615 IEEE80211_QUEUE_STOP_REASON_CSA);
616 ifmgd->flags |= IEEE80211_STA_CSA_RECEIVED;
617 mod_timer(&ifmgd->chswitch_timer,
618 jiffies +
619 msecs_to_jiffies(sw_elem->count *
620 bss->cbss.beacon_interval));
621 }
622}
623
624static void ieee80211_handle_pwr_constr(struct ieee80211_sub_if_data *sdata,
625 u16 capab_info, u8 *pwr_constr_elem,
626 u8 pwr_constr_elem_len)
627{
628 struct ieee80211_conf *conf = &sdata->local->hw.conf;
629
630 if (!(capab_info & WLAN_CAPABILITY_SPECTRUM_MGMT))
631 return;
632
633 /* Power constraint IE length should be 1 octet */
634 if (pwr_constr_elem_len != 1)
635 return;
636
637 if ((*pwr_constr_elem <= conf->channel->max_power) &&
638 (*pwr_constr_elem != sdata->local->power_constr_level)) {
639 sdata->local->power_constr_level = *pwr_constr_elem;
640 ieee80211_hw_config(sdata->local, 0);
641 }
642}
643
Johannes Berg965beda2009-04-16 13:17:24 +0200644/* powersave */
645static void ieee80211_enable_ps(struct ieee80211_local *local,
646 struct ieee80211_sub_if_data *sdata)
647{
648 struct ieee80211_conf *conf = &local->hw.conf;
649
Johannes Bergd5edaed2009-04-22 23:02:51 +0200650 /*
651 * If we are scanning right now then the parameters will
652 * take effect when scan finishes.
653 */
Helmut Schaafbe9c422009-07-23 12:14:04 +0200654 if (local->scanning)
Johannes Bergd5edaed2009-04-22 23:02:51 +0200655 return;
656
Johannes Berg965beda2009-04-16 13:17:24 +0200657 if (conf->dynamic_ps_timeout > 0 &&
658 !(local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS)) {
659 mod_timer(&local->dynamic_ps_timer, jiffies +
660 msecs_to_jiffies(conf->dynamic_ps_timeout));
661 } else {
662 if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)
663 ieee80211_send_nullfunc(local, sdata, 1);
664 conf->flags |= IEEE80211_CONF_PS;
665 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
666 }
667}
668
669static void ieee80211_change_ps(struct ieee80211_local *local)
670{
671 struct ieee80211_conf *conf = &local->hw.conf;
672
673 if (local->ps_sdata) {
Johannes Berg965beda2009-04-16 13:17:24 +0200674 ieee80211_enable_ps(local, local->ps_sdata);
675 } else if (conf->flags & IEEE80211_CONF_PS) {
676 conf->flags &= ~IEEE80211_CONF_PS;
677 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
678 del_timer_sync(&local->dynamic_ps_timer);
679 cancel_work_sync(&local->dynamic_ps_enable_work);
680 }
681}
682
683/* need to hold RTNL or interface lock */
Johannes Berg10f644a2009-04-16 13:17:25 +0200684void ieee80211_recalc_ps(struct ieee80211_local *local, s32 latency)
Johannes Berg965beda2009-04-16 13:17:24 +0200685{
686 struct ieee80211_sub_if_data *sdata, *found = NULL;
687 int count = 0;
688
689 if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_PS)) {
690 local->ps_sdata = NULL;
691 return;
692 }
693
694 list_for_each_entry(sdata, &local->interfaces, list) {
695 if (!netif_running(sdata->dev))
696 continue;
697 if (sdata->vif.type != NL80211_IFTYPE_STATION)
698 continue;
699 found = sdata;
700 count++;
701 }
702
Luis R. Rodriguez43f78532009-06-10 15:16:15 +0200703 if (count == 1 && found->u.mgd.powersave &&
Johannes Berg77fdaa12009-07-07 03:45:17 +0200704 found->u.mgd.associated && list_empty(&found->u.mgd.work_list) &&
Johannes Bergb291ba12009-07-10 15:29:03 +0200705 !(found->u.mgd.flags & (IEEE80211_STA_BEACON_POLL |
706 IEEE80211_STA_CONNECTION_POLL))) {
Johannes Berg10f644a2009-04-16 13:17:25 +0200707 s32 beaconint_us;
708
709 if (latency < 0)
710 latency = pm_qos_requirement(PM_QOS_NETWORK_LATENCY);
711
712 beaconint_us = ieee80211_tu_to_usec(
713 found->vif.bss_conf.beacon_int);
714
Johannes Berg04fe2032009-04-22 18:44:37 +0200715 if (beaconint_us > latency) {
Johannes Berg10f644a2009-04-16 13:17:25 +0200716 local->ps_sdata = NULL;
Johannes Berg04fe2032009-04-22 18:44:37 +0200717 } else {
718 u8 dtimper = found->vif.bss_conf.dtim_period;
719 int maxslp = 1;
720
721 if (dtimper > 1)
722 maxslp = min_t(int, dtimper,
723 latency / beaconint_us);
724
Johannes Berg9ccebe62009-04-23 10:32:36 +0200725 local->hw.conf.max_sleep_period = maxslp;
Johannes Berg10f644a2009-04-16 13:17:25 +0200726 local->ps_sdata = found;
Johannes Berg04fe2032009-04-22 18:44:37 +0200727 }
Johannes Berg10f644a2009-04-16 13:17:25 +0200728 } else {
Johannes Berg965beda2009-04-16 13:17:24 +0200729 local->ps_sdata = NULL;
Johannes Berg10f644a2009-04-16 13:17:25 +0200730 }
Johannes Berg965beda2009-04-16 13:17:24 +0200731
732 ieee80211_change_ps(local);
733}
734
735void ieee80211_dynamic_ps_disable_work(struct work_struct *work)
736{
737 struct ieee80211_local *local =
738 container_of(work, struct ieee80211_local,
739 dynamic_ps_disable_work);
740
741 if (local->hw.conf.flags & IEEE80211_CONF_PS) {
742 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
743 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
744 }
745
746 ieee80211_wake_queues_by_reason(&local->hw,
747 IEEE80211_QUEUE_STOP_REASON_PS);
748}
749
750void ieee80211_dynamic_ps_enable_work(struct work_struct *work)
751{
752 struct ieee80211_local *local =
753 container_of(work, struct ieee80211_local,
754 dynamic_ps_enable_work);
755 struct ieee80211_sub_if_data *sdata = local->ps_sdata;
756
757 /* can only happen when PS was just disabled anyway */
758 if (!sdata)
759 return;
760
761 if (local->hw.conf.flags & IEEE80211_CONF_PS)
762 return;
763
764 if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)
765 ieee80211_send_nullfunc(local, sdata, 1);
766
767 local->hw.conf.flags |= IEEE80211_CONF_PS;
768 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
769}
770
771void ieee80211_dynamic_ps_timer(unsigned long data)
772{
773 struct ieee80211_local *local = (void *) data;
774
Luis R. Rodriguez78f1a8b2009-07-27 08:38:25 -0700775 if (local->quiescing || local->suspended)
Johannes Berg5bb644a2009-05-17 11:40:42 +0200776 return;
777
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -0400778 ieee80211_queue_work(&local->hw, &local->dynamic_ps_enable_work);
Johannes Berg965beda2009-04-16 13:17:24 +0200779}
780
Johannes Berg60f8b392008-09-08 17:44:22 +0200781/* MLME */
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200782static void ieee80211_sta_wmm_params(struct ieee80211_local *local,
Johannes Berg46900292009-02-15 12:44:28 +0100783 struct ieee80211_if_managed *ifmgd,
Jiri Bencf0706e82007-05-05 11:45:53 -0700784 u8 *wmm_param, size_t wmm_param_len)
785{
Jiri Bencf0706e82007-05-05 11:45:53 -0700786 struct ieee80211_tx_queue_params params;
787 size_t left;
788 int count;
789 u8 *pos;
790
Johannes Berg46900292009-02-15 12:44:28 +0100791 if (!(ifmgd->flags & IEEE80211_STA_WMM_ENABLED))
Johannes Berg3434fbd2008-05-03 00:59:37 +0200792 return;
793
794 if (!wmm_param)
795 return;
796
Jiri Bencf0706e82007-05-05 11:45:53 -0700797 if (wmm_param_len < 8 || wmm_param[5] /* version */ != 1)
798 return;
799 count = wmm_param[6] & 0x0f;
Johannes Berg46900292009-02-15 12:44:28 +0100800 if (count == ifmgd->wmm_last_param_set)
Jiri Bencf0706e82007-05-05 11:45:53 -0700801 return;
Johannes Berg46900292009-02-15 12:44:28 +0100802 ifmgd->wmm_last_param_set = count;
Jiri Bencf0706e82007-05-05 11:45:53 -0700803
804 pos = wmm_param + 8;
805 left = wmm_param_len - 8;
806
807 memset(&params, 0, sizeof(params));
808
Jiri Bencf0706e82007-05-05 11:45:53 -0700809 local->wmm_acm = 0;
810 for (; left >= 4; left -= 4, pos += 4) {
811 int aci = (pos[0] >> 5) & 0x03;
812 int acm = (pos[0] >> 4) & 0x01;
813 int queue;
814
815 switch (aci) {
Jouni Malinen0eeb59f2009-03-05 17:23:46 +0200816 case 1: /* AC_BK */
Johannes Berge100bb62008-04-30 18:51:21 +0200817 queue = 3;
Johannes Berg988c0f72008-04-17 19:21:22 +0200818 if (acm)
Jouni Malinen0eeb59f2009-03-05 17:23:46 +0200819 local->wmm_acm |= BIT(1) | BIT(2); /* BK/- */
Jiri Bencf0706e82007-05-05 11:45:53 -0700820 break;
Jouni Malinen0eeb59f2009-03-05 17:23:46 +0200821 case 2: /* AC_VI */
Johannes Berge100bb62008-04-30 18:51:21 +0200822 queue = 1;
Johannes Berg988c0f72008-04-17 19:21:22 +0200823 if (acm)
Jouni Malinen0eeb59f2009-03-05 17:23:46 +0200824 local->wmm_acm |= BIT(4) | BIT(5); /* CL/VI */
Jiri Bencf0706e82007-05-05 11:45:53 -0700825 break;
Jouni Malinen0eeb59f2009-03-05 17:23:46 +0200826 case 3: /* AC_VO */
Johannes Berge100bb62008-04-30 18:51:21 +0200827 queue = 0;
Johannes Berg988c0f72008-04-17 19:21:22 +0200828 if (acm)
Jouni Malinen0eeb59f2009-03-05 17:23:46 +0200829 local->wmm_acm |= BIT(6) | BIT(7); /* VO/NC */
Jiri Bencf0706e82007-05-05 11:45:53 -0700830 break;
Jouni Malinen0eeb59f2009-03-05 17:23:46 +0200831 case 0: /* AC_BE */
Jiri Bencf0706e82007-05-05 11:45:53 -0700832 default:
Johannes Berge100bb62008-04-30 18:51:21 +0200833 queue = 2;
Johannes Berg988c0f72008-04-17 19:21:22 +0200834 if (acm)
Jouni Malinen0eeb59f2009-03-05 17:23:46 +0200835 local->wmm_acm |= BIT(0) | BIT(3); /* BE/EE */
Jiri Bencf0706e82007-05-05 11:45:53 -0700836 break;
837 }
838
839 params.aifs = pos[0] & 0x0f;
840 params.cw_max = ecw2cw((pos[1] & 0xf0) >> 4);
841 params.cw_min = ecw2cw(pos[1] & 0x0f);
Johannes Bergf434b2d2008-07-10 11:22:31 +0200842 params.txop = get_unaligned_le16(pos + 2);
Johannes Bergf4ea83d2008-06-30 15:10:46 +0200843#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Jiri Bencf0706e82007-05-05 11:45:53 -0700844 printk(KERN_DEBUG "%s: WMM queue=%d aci=%d acm=%d aifs=%d "
Johannes Berg3330d7b2008-02-10 16:49:38 +0100845 "cWmin=%d cWmax=%d txop=%d\n",
Johannes Berg0bffe402009-06-09 16:18:32 +0200846 wiphy_name(local->hw.wiphy), queue, aci, acm,
847 params.aifs, params.cw_min, params.cw_max, params.txop);
Johannes Berg3330d7b2008-02-10 16:49:38 +0100848#endif
Johannes Berg24487982009-04-23 18:52:52 +0200849 if (drv_conf_tx(local, queue, &params) && local->ops->conf_tx)
Jiri Bencf0706e82007-05-05 11:45:53 -0700850 printk(KERN_DEBUG "%s: failed to set TX queue "
Johannes Berg0bffe402009-06-09 16:18:32 +0200851 "parameters for queue %d\n",
852 wiphy_name(local->hw.wiphy), queue);
Jiri Bencf0706e82007-05-05 11:45:53 -0700853 }
854}
855
Johannes Berg7a5158e2008-10-08 10:59:33 +0200856static u32 ieee80211_handle_bss_capability(struct ieee80211_sub_if_data *sdata,
857 u16 capab, bool erp_valid, u8 erp)
Daniel Drake56282212007-07-10 19:32:10 +0200858{
Johannes Bergbda39332008-10-11 01:51:51 +0200859 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
Johannes Berg471b3ef2007-12-28 14:32:58 +0100860 u32 changed = 0;
Johannes Berg7a5158e2008-10-08 10:59:33 +0200861 bool use_protection;
862 bool use_short_preamble;
863 bool use_short_slot;
864
865 if (erp_valid) {
866 use_protection = (erp & WLAN_ERP_USE_PROTECTION) != 0;
867 use_short_preamble = (erp & WLAN_ERP_BARKER_PREAMBLE) == 0;
868 } else {
869 use_protection = false;
870 use_short_preamble = !!(capab & WLAN_CAPABILITY_SHORT_PREAMBLE);
871 }
872
873 use_short_slot = !!(capab & WLAN_CAPABILITY_SHORT_SLOT_TIME);
Daniel Drake56282212007-07-10 19:32:10 +0200874
Johannes Berg471b3ef2007-12-28 14:32:58 +0100875 if (use_protection != bss_conf->use_cts_prot) {
Johannes Berg471b3ef2007-12-28 14:32:58 +0100876 bss_conf->use_cts_prot = use_protection;
877 changed |= BSS_CHANGED_ERP_CTS_PROT;
Daniel Drake56282212007-07-10 19:32:10 +0200878 }
Daniel Drake7e9ed182007-07-27 15:43:24 +0200879
Vladimir Koutnyd43c7b32008-03-31 17:05:03 +0200880 if (use_short_preamble != bss_conf->use_short_preamble) {
Vladimir Koutnyd43c7b32008-03-31 17:05:03 +0200881 bss_conf->use_short_preamble = use_short_preamble;
Johannes Berg471b3ef2007-12-28 14:32:58 +0100882 changed |= BSS_CHANGED_ERP_PREAMBLE;
Daniel Drake7e9ed182007-07-27 15:43:24 +0200883 }
Daniel Draked9430a32007-07-27 15:43:24 +0200884
Johannes Berg7a5158e2008-10-08 10:59:33 +0200885 if (use_short_slot != bss_conf->use_short_slot) {
Johannes Berg7a5158e2008-10-08 10:59:33 +0200886 bss_conf->use_short_slot = use_short_slot;
887 changed |= BSS_CHANGED_ERP_SLOT;
John W. Linville50c4afb2008-04-15 14:09:27 -0400888 }
889
890 return changed;
891}
892
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200893static void ieee80211_set_associated(struct ieee80211_sub_if_data *sdata,
Johannes Berge21546a2009-08-06 20:41:32 +0200894 struct ieee80211_mgd_work *wk,
Johannes Bergae5eb022008-10-14 16:58:37 +0200895 u32 bss_info_changed)
Jiri Bencf0706e82007-05-05 11:45:53 -0700896{
Johannes Berg471b3ef2007-12-28 14:32:58 +0100897 struct ieee80211_local *local = sdata->local;
Johannes Berge21546a2009-08-06 20:41:32 +0200898 struct ieee80211_bss *bss = wk->bss;
Jiri Slabyd6f2da52007-08-28 17:01:54 -0400899
Johannes Bergae5eb022008-10-14 16:58:37 +0200900 bss_info_changed |= BSS_CHANGED_ASSOC;
Johannes Berg77fdaa12009-07-07 03:45:17 +0200901 /* set timing information */
902 sdata->vif.bss_conf.beacon_int = bss->cbss.beacon_interval;
903 sdata->vif.bss_conf.timestamp = bss->cbss.tsf;
904 sdata->vif.bss_conf.dtim_period = bss->dtim_period;
Jiri Slabyd6f2da52007-08-28 17:01:54 -0400905
Johannes Berg77fdaa12009-07-07 03:45:17 +0200906 bss_info_changed |= BSS_CHANGED_BEACON_INT;
907 bss_info_changed |= ieee80211_handle_bss_capability(sdata,
908 bss->cbss.capability, bss->has_erp_value, bss->erp_value);
Tomas Winkler21c0cbe2008-03-28 16:33:34 -0700909
Johannes Berg77fdaa12009-07-07 03:45:17 +0200910 sdata->u.mgd.associated = bss;
Johannes Berge21546a2009-08-06 20:41:32 +0200911 sdata->u.mgd.old_associate_work = wk;
Johannes Berg77fdaa12009-07-07 03:45:17 +0200912 memcpy(sdata->u.mgd.bssid, bss->cbss.bssid, ETH_ALEN);
Johannes Berg471b3ef2007-12-28 14:32:58 +0100913
Johannes Bergb291ba12009-07-10 15:29:03 +0200914 /* just to be sure */
915 sdata->u.mgd.flags &= ~(IEEE80211_STA_CONNECTION_POLL |
916 IEEE80211_STA_BEACON_POLL);
917
Johannes Berg01838262009-12-17 16:16:53 +0100918 /*
919 * Always handle WMM once after association regardless
920 * of the first value the AP uses. Setting -1 here has
921 * that effect because the AP values is an unsigned
922 * 4-bit value.
923 */
924 sdata->u.mgd.wmm_last_param_set = -1;
925
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200926 ieee80211_led_assoc(local, 1);
927
Johannes Bergbda39332008-10-11 01:51:51 +0200928 sdata->vif.bss_conf.assoc = 1;
Johannes Berg96dd22a2008-09-11 00:01:57 +0200929 /*
930 * For now just always ask the driver to update the basic rateset
931 * when we have associated, we aren't checking whether it actually
932 * changed or not.
933 */
Johannes Bergae5eb022008-10-14 16:58:37 +0200934 bss_info_changed |= BSS_CHANGED_BASIC_RATES;
Johannes Berg9cef8732009-05-14 13:10:14 +0200935
936 /* And the BSSID changed - we're associated now */
937 bss_info_changed |= BSS_CHANGED_BSSID;
938
Johannes Bergae5eb022008-10-14 16:58:37 +0200939 ieee80211_bss_info_change_notify(sdata, bss_info_changed);
Guy Cohen8db93692008-07-03 19:56:13 +0300940
Johannes Berg056508d2009-07-30 21:43:55 +0200941 mutex_lock(&local->iflist_mtx);
942 ieee80211_recalc_ps(local, -1);
943 mutex_unlock(&local->iflist_mtx);
Kalle Valoe0cb6862008-12-18 23:35:13 +0200944
John W. Linville8a5b33f2010-01-06 15:39:39 -0500945 netif_tx_start_all_queues(sdata->dev);
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200946 netif_carrier_on(sdata->dev);
Jiri Bencf0706e82007-05-05 11:45:53 -0700947}
948
Johannes Berg77fdaa12009-07-07 03:45:17 +0200949static enum rx_mgmt_action __must_check
950ieee80211_direct_probe(struct ieee80211_sub_if_data *sdata,
951 struct ieee80211_mgd_work *wk)
Ron Rindjunsky9859b812008-08-09 03:02:19 +0300952{
Johannes Berg46900292009-02-15 12:44:28 +0100953 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Helmut Schaa11432372009-03-12 14:04:34 +0100954 struct ieee80211_local *local = sdata->local;
Johannes Berg46900292009-02-15 12:44:28 +0100955
Johannes Berg77fdaa12009-07-07 03:45:17 +0200956 wk->tries++;
957 if (wk->tries > IEEE80211_AUTH_MAX_TRIES) {
Johannes Berg0c68ae262008-10-27 15:56:10 -0700958 printk(KERN_DEBUG "%s: direct probe to AP %pM timed out\n",
Johannes Berg77fdaa12009-07-07 03:45:17 +0200959 sdata->dev->name, wk->bss->cbss.bssid);
Vasanthakumar Thiagarajan7a947082009-02-04 18:28:48 +0530960
961 /*
962 * Most likely AP is not in the range so remove the
Johannes Berg77fdaa12009-07-07 03:45:17 +0200963 * bss struct for that AP.
Vasanthakumar Thiagarajan7a947082009-02-04 18:28:48 +0530964 */
Johannes Berg77fdaa12009-07-07 03:45:17 +0200965 cfg80211_unlink_bss(local->hw.wiphy, &wk->bss->cbss);
Helmut Schaa11432372009-03-12 14:04:34 +0100966
967 /*
968 * We might have a pending scan which had no chance to run yet
Johannes Berg77fdaa12009-07-07 03:45:17 +0200969 * due to work needing to be done. Hence, queue the STAs work
970 * again for that.
Helmut Schaa11432372009-03-12 14:04:34 +0100971 */
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -0400972 ieee80211_queue_work(&local->hw, &ifmgd->work);
Johannes Berg77fdaa12009-07-07 03:45:17 +0200973 return RX_MGMT_CFG80211_AUTH_TO;
Ron Rindjunsky9859b812008-08-09 03:02:19 +0300974 }
975
Johannes Berg77fdaa12009-07-07 03:45:17 +0200976 printk(KERN_DEBUG "%s: direct probe to AP %pM (try %d)\n",
977 sdata->dev->name, wk->bss->cbss.bssid,
978 wk->tries);
Ron Rindjunsky9859b812008-08-09 03:02:19 +0300979
Johannes Berg77fdaa12009-07-07 03:45:17 +0200980 /*
981 * Direct probe is sent to broadcast address as some APs
Ron Rindjunsky9859b812008-08-09 03:02:19 +0300982 * will not answer to direct packet in unassociated state.
983 */
Johannes Berg77fdaa12009-07-07 03:45:17 +0200984 ieee80211_send_probe_req(sdata, NULL, wk->ssid, wk->ssid_len, NULL, 0);
Ron Rindjunsky9859b812008-08-09 03:02:19 +0300985
Johannes Berg77fdaa12009-07-07 03:45:17 +0200986 wk->timeout = jiffies + IEEE80211_AUTH_TIMEOUT;
Johannes Bergca386f32009-07-10 02:39:48 +0200987 run_again(ifmgd, wk->timeout);
Johannes Berg77fdaa12009-07-07 03:45:17 +0200988
989 return RX_MGMT_NONE;
Ron Rindjunsky9859b812008-08-09 03:02:19 +0300990}
991
Jiri Bencf0706e82007-05-05 11:45:53 -0700992
Johannes Berg77fdaa12009-07-07 03:45:17 +0200993static enum rx_mgmt_action __must_check
994ieee80211_authenticate(struct ieee80211_sub_if_data *sdata,
995 struct ieee80211_mgd_work *wk)
Jiri Bencf0706e82007-05-05 11:45:53 -0700996{
Johannes Berg46900292009-02-15 12:44:28 +0100997 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Helmut Schaa11432372009-03-12 14:04:34 +0100998 struct ieee80211_local *local = sdata->local;
Johannes Berg46900292009-02-15 12:44:28 +0100999
Johannes Berg77fdaa12009-07-07 03:45:17 +02001000 wk->tries++;
1001 if (wk->tries > IEEE80211_AUTH_MAX_TRIES) {
Johannes Berg0c68ae262008-10-27 15:56:10 -07001002 printk(KERN_DEBUG "%s: authentication with AP %pM"
Jiri Bencf0706e82007-05-05 11:45:53 -07001003 " timed out\n",
Johannes Berg77fdaa12009-07-07 03:45:17 +02001004 sdata->dev->name, wk->bss->cbss.bssid);
1005
1006 /*
1007 * Most likely AP is not in the range so remove the
1008 * bss struct for that AP.
1009 */
1010 cfg80211_unlink_bss(local->hw.wiphy, &wk->bss->cbss);
Helmut Schaa11432372009-03-12 14:04:34 +01001011
1012 /*
1013 * We might have a pending scan which had no chance to run yet
Johannes Berg77fdaa12009-07-07 03:45:17 +02001014 * due to work needing to be done. Hence, queue the STAs work
1015 * again for that.
Helmut Schaa11432372009-03-12 14:04:34 +01001016 */
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04001017 ieee80211_queue_work(&local->hw, &ifmgd->work);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001018 return RX_MGMT_CFG80211_AUTH_TO;
Jiri Bencf0706e82007-05-05 11:45:53 -07001019 }
1020
Johannes Berg77fdaa12009-07-07 03:45:17 +02001021 printk(KERN_DEBUG "%s: authenticate with AP %pM (try %d)\n",
1022 sdata->dev->name, wk->bss->cbss.bssid, wk->tries);
Jiri Bencf0706e82007-05-05 11:45:53 -07001023
Johannes Berg77fdaa12009-07-07 03:45:17 +02001024 ieee80211_send_auth(sdata, 1, wk->auth_alg, wk->ie, wk->ie_len,
Johannes Bergfffd0932009-07-08 14:22:54 +02001025 wk->bss->cbss.bssid, NULL, 0, 0);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001026 wk->auth_transaction = 2;
Jiri Bencf0706e82007-05-05 11:45:53 -07001027
Johannes Berg77fdaa12009-07-07 03:45:17 +02001028 wk->timeout = jiffies + IEEE80211_AUTH_TIMEOUT;
Johannes Bergca386f32009-07-10 02:39:48 +02001029 run_again(ifmgd, wk->timeout);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001030
1031 return RX_MGMT_NONE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001032}
1033
Johannes Berge21546a2009-08-06 20:41:32 +02001034static void ieee80211_set_disassoc(struct ieee80211_sub_if_data *sdata,
1035 bool deauth)
Tomas Winkleraa458d12008-09-09 00:32:12 +03001036{
Johannes Berg46900292009-02-15 12:44:28 +01001037 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Tomas Winkleraa458d12008-09-09 00:32:12 +03001038 struct ieee80211_local *local = sdata->local;
1039 struct sta_info *sta;
Kalle Valoe0cb6862008-12-18 23:35:13 +02001040 u32 changed = 0, config_changed = 0;
Johannes Bergb291ba12009-07-10 15:29:03 +02001041 u8 bssid[ETH_ALEN];
Tomas Winkleraa458d12008-09-09 00:32:12 +03001042
Johannes Berg77fdaa12009-07-07 03:45:17 +02001043 ASSERT_MGD_MTX(ifmgd);
1044
Johannes Bergb291ba12009-07-10 15:29:03 +02001045 if (WARN_ON(!ifmgd->associated))
1046 return;
1047
1048 memcpy(bssid, ifmgd->associated->cbss.bssid, ETH_ALEN);
1049
Johannes Berg77fdaa12009-07-07 03:45:17 +02001050 ifmgd->associated = NULL;
1051 memset(ifmgd->bssid, 0, ETH_ALEN);
1052
Johannes Berge21546a2009-08-06 20:41:32 +02001053 if (deauth) {
1054 kfree(ifmgd->old_associate_work);
1055 ifmgd->old_associate_work = NULL;
1056 } else {
1057 struct ieee80211_mgd_work *wk = ifmgd->old_associate_work;
1058
1059 wk->state = IEEE80211_MGD_STATE_IDLE;
1060 list_add(&wk->list, &ifmgd->work_list);
1061 }
1062
Johannes Berg77fdaa12009-07-07 03:45:17 +02001063 /*
1064 * we need to commit the associated = NULL change because the
1065 * scan code uses that to determine whether this iface should
1066 * go to/wake up from powersave or not -- and could otherwise
1067 * wake the queues erroneously.
1068 */
1069 smp_mb();
1070
1071 /*
1072 * Thus, we can only afterwards stop the queues -- to account
1073 * for the case where another CPU is finishing a scan at this
1074 * time -- we don't want the scan code to enable queues.
1075 */
Tomas Winkleraa458d12008-09-09 00:32:12 +03001076
John W. Linville8a5b33f2010-01-06 15:39:39 -05001077 netif_tx_stop_all_queues(sdata->dev);
Tomas Winkleraa458d12008-09-09 00:32:12 +03001078 netif_carrier_off(sdata->dev);
1079
Johannes Berg1fa6f4a2009-06-15 18:13:58 +02001080 rcu_read_lock();
Johannes Berg77fdaa12009-07-07 03:45:17 +02001081 sta = sta_info_get(local, bssid);
Johannes Berg1fa6f4a2009-06-15 18:13:58 +02001082 if (sta)
1083 ieee80211_sta_tear_down_BA_sessions(sta);
1084 rcu_read_unlock();
Tomas Winkleraa458d12008-09-09 00:32:12 +03001085
Tomas Winklerf5e5bf22008-09-08 17:33:39 +02001086 changed |= ieee80211_reset_erp_info(sdata);
1087
Tomas Winklerf5e5bf22008-09-08 17:33:39 +02001088 ieee80211_led_assoc(local, 0);
Johannes Bergae5eb022008-10-14 16:58:37 +02001089 changed |= BSS_CHANGED_ASSOC;
1090 sdata->vif.bss_conf.assoc = false;
Tomas Winklerf5e5bf22008-09-08 17:33:39 +02001091
Johannes Bergaa837e12009-05-07 16:16:24 +02001092 ieee80211_set_wmm_default(sdata);
1093
Johannes Berg47979382009-01-07 10:13:27 +01001094 /* channel(_type) changes are handled by ieee80211_hw_config */
Sujith094d05d2008-12-12 11:57:43 +05301095 local->oper_channel_type = NL80211_CHAN_NO_HT;
Johannes Bergae5eb022008-10-14 16:58:37 +02001096
Johannes Berg413ad502009-05-08 21:21:06 +02001097 /* on the next assoc, re-program HT parameters */
1098 sdata->ht_opmode_valid = false;
1099
Vasanthakumar Thiagarajana8302de2009-01-09 18:14:15 +05301100 local->power_constr_level = 0;
1101
Kalle Valo520eb822008-12-18 23:35:27 +02001102 del_timer_sync(&local->dynamic_ps_timer);
1103 cancel_work_sync(&local->dynamic_ps_enable_work);
1104
Kalle Valoe0cb6862008-12-18 23:35:13 +02001105 if (local->hw.conf.flags & IEEE80211_CONF_PS) {
1106 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
1107 config_changed |= IEEE80211_CONF_CHANGE_PS;
1108 }
1109
1110 ieee80211_hw_config(local, config_changed);
Johannes Berg9cef8732009-05-14 13:10:14 +02001111
1112 /* And the BSSID changed -- not very interesting here */
1113 changed |= BSS_CHANGED_BSSID;
Johannes Bergae5eb022008-10-14 16:58:37 +02001114 ieee80211_bss_info_change_notify(sdata, changed);
Tomas Winkler8e268e42008-11-25 13:05:44 +02001115
1116 rcu_read_lock();
1117
Johannes Berg77fdaa12009-07-07 03:45:17 +02001118 sta = sta_info_get(local, bssid);
Tomas Winkler8e268e42008-11-25 13:05:44 +02001119 if (!sta) {
1120 rcu_read_unlock();
1121 return;
1122 }
1123
1124 sta_info_unlink(&sta);
1125
1126 rcu_read_unlock();
1127
1128 sta_info_destroy(sta);
Tomas Winkleraa458d12008-09-09 00:32:12 +03001129}
Jiri Bencf0706e82007-05-05 11:45:53 -07001130
Johannes Berg77fdaa12009-07-07 03:45:17 +02001131static enum rx_mgmt_action __must_check
1132ieee80211_associate(struct ieee80211_sub_if_data *sdata,
1133 struct ieee80211_mgd_work *wk)
Jiri Bencf0706e82007-05-05 11:45:53 -07001134{
Johannes Berg46900292009-02-15 12:44:28 +01001135 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Helmut Schaa11432372009-03-12 14:04:34 +01001136 struct ieee80211_local *local = sdata->local;
Johannes Berg46900292009-02-15 12:44:28 +01001137
Johannes Berg77fdaa12009-07-07 03:45:17 +02001138 wk->tries++;
1139 if (wk->tries > IEEE80211_ASSOC_MAX_TRIES) {
Johannes Berg0c68ae262008-10-27 15:56:10 -07001140 printk(KERN_DEBUG "%s: association with AP %pM"
Jiri Bencf0706e82007-05-05 11:45:53 -07001141 " timed out\n",
Johannes Berg77fdaa12009-07-07 03:45:17 +02001142 sdata->dev->name, wk->bss->cbss.bssid);
1143
1144 /*
1145 * Most likely AP is not in the range so remove the
1146 * bss struct for that AP.
1147 */
1148 cfg80211_unlink_bss(local->hw.wiphy, &wk->bss->cbss);
1149
Helmut Schaa11432372009-03-12 14:04:34 +01001150 /*
1151 * We might have a pending scan which had no chance to run yet
Johannes Berg77fdaa12009-07-07 03:45:17 +02001152 * due to work needing to be done. Hence, queue the STAs work
1153 * again for that.
Helmut Schaa11432372009-03-12 14:04:34 +01001154 */
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04001155 ieee80211_queue_work(&local->hw, &ifmgd->work);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001156 return RX_MGMT_CFG80211_ASSOC_TO;
Jiri Bencf0706e82007-05-05 11:45:53 -07001157 }
1158
Johannes Berg77fdaa12009-07-07 03:45:17 +02001159 printk(KERN_DEBUG "%s: associate with AP %pM (try %d)\n",
1160 sdata->dev->name, wk->bss->cbss.bssid, wk->tries);
1161 ieee80211_send_assoc(sdata, wk);
Jiri Bencf0706e82007-05-05 11:45:53 -07001162
Johannes Berg77fdaa12009-07-07 03:45:17 +02001163 wk->timeout = jiffies + IEEE80211_ASSOC_TIMEOUT;
Johannes Bergca386f32009-07-10 02:39:48 +02001164 run_again(ifmgd, wk->timeout);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001165
1166 return RX_MGMT_NONE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001167}
1168
Kalle Valo3cf335d2009-03-22 21:57:06 +02001169void ieee80211_sta_rx_notify(struct ieee80211_sub_if_data *sdata,
1170 struct ieee80211_hdr *hdr)
1171{
1172 /*
1173 * We can postpone the mgd.timer whenever receiving unicast frames
1174 * from AP because we know that the connection is working both ways
1175 * at that time. But multicast frames (and hence also beacons) must
1176 * be ignored here, because we need to trigger the timer during
Johannes Bergb291ba12009-07-10 15:29:03 +02001177 * data idle periods for sending the periodic probe request to the
1178 * AP we're connected to.
Kalle Valo3cf335d2009-03-22 21:57:06 +02001179 */
Johannes Bergb291ba12009-07-10 15:29:03 +02001180 if (is_multicast_ether_addr(hdr->addr1))
1181 return;
1182
1183 mod_timer(&sdata->u.mgd.conn_mon_timer,
1184 round_jiffies_up(jiffies + IEEE80211_CONNECTION_IDLE_TIME));
Kalle Valo3cf335d2009-03-22 21:57:06 +02001185}
Jiri Bencf0706e82007-05-05 11:45:53 -07001186
Maxim Levitskya43abf22009-07-31 18:54:12 +03001187static void ieee80211_mgd_probe_ap_send(struct ieee80211_sub_if_data *sdata)
1188{
1189 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1190 const u8 *ssid;
1191
1192 ssid = ieee80211_bss_get_ie(&ifmgd->associated->cbss, WLAN_EID_SSID);
1193 ieee80211_send_probe_req(sdata, ifmgd->associated->cbss.bssid,
1194 ssid + 2, ssid[1], NULL, 0);
1195
1196 ifmgd->probe_send_count++;
1197 ifmgd->probe_timeout = jiffies + IEEE80211_PROBE_WAIT;
1198 run_again(ifmgd, ifmgd->probe_timeout);
1199}
1200
Johannes Bergb291ba12009-07-10 15:29:03 +02001201static void ieee80211_mgd_probe_ap(struct ieee80211_sub_if_data *sdata,
1202 bool beacon)
Kalle Valo04de8382009-03-22 21:57:35 +02001203{
Kalle Valo04de8382009-03-22 21:57:35 +02001204 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Bergb291ba12009-07-10 15:29:03 +02001205 bool already = false;
Johannes Berg34bfc412009-05-12 19:58:12 +02001206
Johannes Berg0e2b6282009-07-13 13:23:39 +02001207 if (!netif_running(sdata->dev))
1208 return;
1209
Luis R. Rodriguez91a3bd72009-07-23 16:37:47 -07001210 if (sdata->local->scanning)
1211 return;
1212
Johannes Berg77fdaa12009-07-07 03:45:17 +02001213 mutex_lock(&ifmgd->mtx);
1214
1215 if (!ifmgd->associated)
1216 goto out;
1217
Michael Buescha8604022009-04-15 14:41:22 -04001218#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Johannes Bergb291ba12009-07-10 15:29:03 +02001219 if (beacon && net_ratelimit())
1220 printk(KERN_DEBUG "%s: detected beacon loss from AP "
Johannes Berg77fdaa12009-07-07 03:45:17 +02001221 "- sending probe request\n", sdata->dev->name);
Michael Buescha8604022009-04-15 14:41:22 -04001222#endif
Kalle Valo04de8382009-03-22 21:57:35 +02001223
Johannes Bergb291ba12009-07-10 15:29:03 +02001224 /*
1225 * The driver/our work has already reported this event or the
1226 * connection monitoring has kicked in and we have already sent
1227 * a probe request. Or maybe the AP died and the driver keeps
1228 * reporting until we disassociate...
1229 *
1230 * In either case we have to ignore the current call to this
1231 * function (except for setting the correct probe reason bit)
1232 * because otherwise we would reset the timer every time and
1233 * never check whether we received a probe response!
1234 */
1235 if (ifmgd->flags & (IEEE80211_STA_BEACON_POLL |
1236 IEEE80211_STA_CONNECTION_POLL))
1237 already = true;
1238
1239 if (beacon)
1240 ifmgd->flags |= IEEE80211_STA_BEACON_POLL;
1241 else
1242 ifmgd->flags |= IEEE80211_STA_CONNECTION_POLL;
1243
1244 if (already)
1245 goto out;
1246
Johannes Berg4e751842009-06-10 15:16:52 +02001247 mutex_lock(&sdata->local->iflist_mtx);
1248 ieee80211_recalc_ps(sdata->local, -1);
1249 mutex_unlock(&sdata->local->iflist_mtx);
1250
Maxim Levitskya43abf22009-07-31 18:54:12 +03001251 ifmgd->probe_send_count = 0;
1252 ieee80211_mgd_probe_ap_send(sdata);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001253 out:
1254 mutex_unlock(&ifmgd->mtx);
Kalle Valo04de8382009-03-22 21:57:35 +02001255}
1256
Johannes Bergb291ba12009-07-10 15:29:03 +02001257void ieee80211_beacon_loss_work(struct work_struct *work)
1258{
1259 struct ieee80211_sub_if_data *sdata =
1260 container_of(work, struct ieee80211_sub_if_data,
1261 u.mgd.beacon_loss_work);
1262
1263 ieee80211_mgd_probe_ap(sdata, true);
1264}
1265
Kalle Valo04de8382009-03-22 21:57:35 +02001266void ieee80211_beacon_loss(struct ieee80211_vif *vif)
1267{
1268 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
1269
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04001270 ieee80211_queue_work(&sdata->local->hw, &sdata->u.mgd.beacon_loss_work);
Kalle Valo04de8382009-03-22 21:57:35 +02001271}
1272EXPORT_SYMBOL(ieee80211_beacon_loss);
1273
Johannes Berg77fdaa12009-07-07 03:45:17 +02001274static void ieee80211_auth_completed(struct ieee80211_sub_if_data *sdata,
1275 struct ieee80211_mgd_work *wk)
Jiri Bencf0706e82007-05-05 11:45:53 -07001276{
Johannes Berg77fdaa12009-07-07 03:45:17 +02001277 wk->state = IEEE80211_MGD_STATE_IDLE;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001278 printk(KERN_DEBUG "%s: authenticated\n", sdata->dev->name);
Jiri Bencf0706e82007-05-05 11:45:53 -07001279}
1280
1281
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001282static void ieee80211_auth_challenge(struct ieee80211_sub_if_data *sdata,
Johannes Berg77fdaa12009-07-07 03:45:17 +02001283 struct ieee80211_mgd_work *wk,
Jiri Bencf0706e82007-05-05 11:45:53 -07001284 struct ieee80211_mgmt *mgmt,
1285 size_t len)
1286{
1287 u8 *pos;
1288 struct ieee802_11_elems elems;
1289
Jiri Bencf0706e82007-05-05 11:45:53 -07001290 pos = mgmt->u.auth.variable;
John W. Linville67a4cce2007-10-12 16:40:37 -04001291 ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), &elems);
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001292 if (!elems.challenge)
Jiri Bencf0706e82007-05-05 11:45:53 -07001293 return;
Johannes Berg77fdaa12009-07-07 03:45:17 +02001294 ieee80211_send_auth(sdata, 3, wk->auth_alg,
Johannes Berg46900292009-02-15 12:44:28 +01001295 elems.challenge - 2, elems.challenge_len + 2,
Johannes Bergfffd0932009-07-08 14:22:54 +02001296 wk->bss->cbss.bssid,
1297 wk->key, wk->key_len, wk->key_idx);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001298 wk->auth_transaction = 4;
Johannes Bergfe3d2c32009-02-10 21:26:03 +01001299}
1300
Johannes Berg77fdaa12009-07-07 03:45:17 +02001301static enum rx_mgmt_action __must_check
1302ieee80211_rx_mgmt_auth(struct ieee80211_sub_if_data *sdata,
1303 struct ieee80211_mgd_work *wk,
1304 struct ieee80211_mgmt *mgmt, size_t len)
Jiri Bencf0706e82007-05-05 11:45:53 -07001305{
Jiri Bencf0706e82007-05-05 11:45:53 -07001306 u16 auth_alg, auth_transaction, status_code;
1307
Johannes Berg77fdaa12009-07-07 03:45:17 +02001308 if (wk->state != IEEE80211_MGD_STATE_AUTH)
1309 return RX_MGMT_NONE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001310
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001311 if (len < 24 + 6)
Johannes Berg77fdaa12009-07-07 03:45:17 +02001312 return RX_MGMT_NONE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001313
Johannes Berg77fdaa12009-07-07 03:45:17 +02001314 if (memcmp(wk->bss->cbss.bssid, mgmt->sa, ETH_ALEN) != 0)
1315 return RX_MGMT_NONE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001316
Johannes Berg77fdaa12009-07-07 03:45:17 +02001317 if (memcmp(wk->bss->cbss.bssid, mgmt->bssid, ETH_ALEN) != 0)
1318 return RX_MGMT_NONE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001319
1320 auth_alg = le16_to_cpu(mgmt->u.auth.auth_alg);
1321 auth_transaction = le16_to_cpu(mgmt->u.auth.auth_transaction);
1322 status_code = le16_to_cpu(mgmt->u.auth.status_code);
1323
Johannes Berg77fdaa12009-07-07 03:45:17 +02001324 if (auth_alg != wk->auth_alg ||
1325 auth_transaction != wk->auth_transaction)
1326 return RX_MGMT_NONE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001327
1328 if (status_code != WLAN_STATUS_SUCCESS) {
Johannes Berg77fdaa12009-07-07 03:45:17 +02001329 list_del(&wk->list);
1330 kfree(wk);
1331 return RX_MGMT_CFG80211_AUTH;
Jiri Bencf0706e82007-05-05 11:45:53 -07001332 }
1333
Johannes Berg77fdaa12009-07-07 03:45:17 +02001334 switch (wk->auth_alg) {
Jiri Bencf0706e82007-05-05 11:45:53 -07001335 case WLAN_AUTH_OPEN:
1336 case WLAN_AUTH_LEAP:
Jouni Malinen636a5d32009-03-19 13:39:22 +02001337 case WLAN_AUTH_FT:
Johannes Berg77fdaa12009-07-07 03:45:17 +02001338 ieee80211_auth_completed(sdata, wk);
1339 return RX_MGMT_CFG80211_AUTH;
Jiri Bencf0706e82007-05-05 11:45:53 -07001340 case WLAN_AUTH_SHARED_KEY:
Johannes Berg77fdaa12009-07-07 03:45:17 +02001341 if (wk->auth_transaction == 4) {
1342 ieee80211_auth_completed(sdata, wk);
1343 return RX_MGMT_CFG80211_AUTH;
Jouni Malinen6039f6d2009-03-19 13:39:21 +02001344 } else
Johannes Berg77fdaa12009-07-07 03:45:17 +02001345 ieee80211_auth_challenge(sdata, wk, mgmt, len);
Jiri Bencf0706e82007-05-05 11:45:53 -07001346 break;
1347 }
Johannes Berg77fdaa12009-07-07 03:45:17 +02001348
1349 return RX_MGMT_NONE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001350}
1351
1352
Johannes Berg77fdaa12009-07-07 03:45:17 +02001353static enum rx_mgmt_action __must_check
1354ieee80211_rx_mgmt_deauth(struct ieee80211_sub_if_data *sdata,
1355 struct ieee80211_mgd_work *wk,
1356 struct ieee80211_mgmt *mgmt, size_t len)
Jiri Bencf0706e82007-05-05 11:45:53 -07001357{
Johannes Berg46900292009-02-15 12:44:28 +01001358 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg77fdaa12009-07-07 03:45:17 +02001359 const u8 *bssid = NULL;
Jiri Bencf0706e82007-05-05 11:45:53 -07001360 u16 reason_code;
1361
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001362 if (len < 24 + 2)
Johannes Berg77fdaa12009-07-07 03:45:17 +02001363 return RX_MGMT_NONE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001364
Johannes Berg77fdaa12009-07-07 03:45:17 +02001365 ASSERT_MGD_MTX(ifmgd);
1366
1367 if (wk)
1368 bssid = wk->bss->cbss.bssid;
1369 else
1370 bssid = ifmgd->associated->cbss.bssid;
Jiri Bencf0706e82007-05-05 11:45:53 -07001371
1372 reason_code = le16_to_cpu(mgmt->u.deauth.reason_code);
1373
Johannes Berg77fdaa12009-07-07 03:45:17 +02001374 printk(KERN_DEBUG "%s: deauthenticated from %pM (Reason: %u)\n",
1375 sdata->dev->name, bssid, reason_code);
Jiri Bencf0706e82007-05-05 11:45:53 -07001376
Johannes Berg77fdaa12009-07-07 03:45:17 +02001377 if (!wk) {
Johannes Berge21546a2009-08-06 20:41:32 +02001378 ieee80211_set_disassoc(sdata, true);
Johannes Bergbc83b682009-11-29 12:19:06 +01001379 ieee80211_recalc_idle(sdata->local);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001380 } else {
1381 list_del(&wk->list);
1382 kfree(wk);
1383 }
1384
1385 return RX_MGMT_CFG80211_DEAUTH;
Jiri Bencf0706e82007-05-05 11:45:53 -07001386}
1387
1388
Johannes Berg77fdaa12009-07-07 03:45:17 +02001389static enum rx_mgmt_action __must_check
1390ieee80211_rx_mgmt_disassoc(struct ieee80211_sub_if_data *sdata,
1391 struct ieee80211_mgmt *mgmt, size_t len)
Jiri Bencf0706e82007-05-05 11:45:53 -07001392{
Johannes Berg46900292009-02-15 12:44:28 +01001393 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jiri Bencf0706e82007-05-05 11:45:53 -07001394 u16 reason_code;
1395
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001396 if (len < 24 + 2)
Johannes Berg77fdaa12009-07-07 03:45:17 +02001397 return RX_MGMT_NONE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001398
Johannes Berg77fdaa12009-07-07 03:45:17 +02001399 ASSERT_MGD_MTX(ifmgd);
1400
1401 if (WARN_ON(!ifmgd->associated))
1402 return RX_MGMT_NONE;
1403
1404 if (WARN_ON(memcmp(ifmgd->associated->cbss.bssid, mgmt->sa, ETH_ALEN)))
1405 return RX_MGMT_NONE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001406
1407 reason_code = le16_to_cpu(mgmt->u.disassoc.reason_code);
1408
Johannes Berg0ff71612009-09-26 14:45:41 +02001409 printk(KERN_DEBUG "%s: disassociated from %pM (Reason: %u)\n",
1410 sdata->dev->name, mgmt->sa, reason_code);
Jiri Bencf0706e82007-05-05 11:45:53 -07001411
Johannes Berge21546a2009-08-06 20:41:32 +02001412 ieee80211_set_disassoc(sdata, false);
Johannes Bergbc83b682009-11-29 12:19:06 +01001413 ieee80211_recalc_idle(sdata->local);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001414 return RX_MGMT_CFG80211_DISASSOC;
Jiri Bencf0706e82007-05-05 11:45:53 -07001415}
1416
1417
Johannes Berg77fdaa12009-07-07 03:45:17 +02001418static enum rx_mgmt_action __must_check
1419ieee80211_rx_mgmt_assoc_resp(struct ieee80211_sub_if_data *sdata,
1420 struct ieee80211_mgd_work *wk,
1421 struct ieee80211_mgmt *mgmt, size_t len,
1422 bool reassoc)
Jiri Bencf0706e82007-05-05 11:45:53 -07001423{
Johannes Berg46900292009-02-15 12:44:28 +01001424 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg471b3ef2007-12-28 14:32:58 +01001425 struct ieee80211_local *local = sdata->local;
Johannes Berg8318d782008-01-24 19:38:38 +01001426 struct ieee80211_supported_band *sband;
Jiri Bencf0706e82007-05-05 11:45:53 -07001427 struct sta_info *sta;
Johannes Berg881d9482009-01-21 15:13:48 +01001428 u32 rates, basic_rates;
Jiri Bencf0706e82007-05-05 11:45:53 -07001429 u16 capab_info, status_code, aid;
1430 struct ieee802_11_elems elems;
Johannes Bergbda39332008-10-11 01:51:51 +02001431 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
Jiri Bencf0706e82007-05-05 11:45:53 -07001432 u8 *pos;
Johannes Bergae5eb022008-10-14 16:58:37 +02001433 u32 changed = 0;
Jiri Bencf0706e82007-05-05 11:45:53 -07001434 int i, j;
Johannes Bergddf4ac52008-10-22 11:41:38 +02001435 bool have_higher_than_11mbit = false, newsta = false;
Johannes Bergae5eb022008-10-14 16:58:37 +02001436 u16 ap_ht_cap_flags;
Jiri Bencf0706e82007-05-05 11:45:53 -07001437
Johannes Berg77fdaa12009-07-07 03:45:17 +02001438 /*
1439 * AssocResp and ReassocResp have identical structure, so process both
1440 * of them in this function.
1441 */
Jiri Bencf0706e82007-05-05 11:45:53 -07001442
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001443 if (len < 24 + 6)
Johannes Berg77fdaa12009-07-07 03:45:17 +02001444 return RX_MGMT_NONE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001445
Johannes Berg77fdaa12009-07-07 03:45:17 +02001446 if (memcmp(wk->bss->cbss.bssid, mgmt->sa, ETH_ALEN) != 0)
1447 return RX_MGMT_NONE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001448
1449 capab_info = le16_to_cpu(mgmt->u.assoc_resp.capab_info);
1450 status_code = le16_to_cpu(mgmt->u.assoc_resp.status_code);
1451 aid = le16_to_cpu(mgmt->u.assoc_resp.aid);
Jiri Bencf0706e82007-05-05 11:45:53 -07001452
Johannes Berg0c68ae262008-10-27 15:56:10 -07001453 printk(KERN_DEBUG "%s: RX %sssocResp from %pM (capab=0x%x "
Jiri Bencf0706e82007-05-05 11:45:53 -07001454 "status=%d aid=%d)\n",
Johannes Berg0c68ae262008-10-27 15:56:10 -07001455 sdata->dev->name, reassoc ? "Rea" : "A", mgmt->sa,
Johannes Bergddd68582007-10-22 14:51:37 +02001456 capab_info, status_code, (u16)(aid & ~(BIT(15) | BIT(14))));
Jiri Bencf0706e82007-05-05 11:45:53 -07001457
Jouni Malinen63a5ab82009-01-08 13:32:09 +02001458 pos = mgmt->u.assoc_resp.variable;
1459 ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), &elems);
1460
1461 if (status_code == WLAN_STATUS_ASSOC_REJECTED_TEMPORARILY &&
Jouni Malinenf797eb72009-01-19 18:48:46 +02001462 elems.timeout_int && elems.timeout_int_len == 5 &&
1463 elems.timeout_int[0] == WLAN_TIMEOUT_ASSOC_COMEBACK) {
Jouni Malinen63a5ab82009-01-08 13:32:09 +02001464 u32 tu, ms;
Jouni Malinenf797eb72009-01-19 18:48:46 +02001465 tu = get_unaligned_le32(elems.timeout_int + 1);
Jouni Malinen63a5ab82009-01-08 13:32:09 +02001466 ms = tu * 1024 / 1000;
1467 printk(KERN_DEBUG "%s: AP rejected association temporarily; "
1468 "comeback duration %u TU (%u ms)\n",
1469 sdata->dev->name, tu, ms);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001470 wk->timeout = jiffies + msecs_to_jiffies(ms);
Jouni Malinen63a5ab82009-01-08 13:32:09 +02001471 if (ms > IEEE80211_ASSOC_TIMEOUT)
Johannes Bergca386f32009-07-10 02:39:48 +02001472 run_again(ifmgd, jiffies + msecs_to_jiffies(ms));
Johannes Berg77fdaa12009-07-07 03:45:17 +02001473 return RX_MGMT_NONE;
Jouni Malinen63a5ab82009-01-08 13:32:09 +02001474 }
1475
Jiri Bencf0706e82007-05-05 11:45:53 -07001476 if (status_code != WLAN_STATUS_SUCCESS) {
1477 printk(KERN_DEBUG "%s: AP denied association (code=%d)\n",
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001478 sdata->dev->name, status_code);
Johannes Berg2ef6e442009-10-20 15:08:12 +09001479 wk->state = IEEE80211_MGD_STATE_IDLE;
Johannes Berg77fdaa12009-07-07 03:45:17 +02001480 return RX_MGMT_CFG80211_ASSOC;
Jiri Bencf0706e82007-05-05 11:45:53 -07001481 }
1482
Johannes Berg1dd84aa2007-10-10 12:03:41 +02001483 if ((aid & (BIT(15) | BIT(14))) != (BIT(15) | BIT(14)))
1484 printk(KERN_DEBUG "%s: invalid aid value %d; bits 15:14 not "
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001485 "set\n", sdata->dev->name, aid);
Johannes Berg1dd84aa2007-10-10 12:03:41 +02001486 aid &= ~(BIT(15) | BIT(14));
1487
Jiri Bencf0706e82007-05-05 11:45:53 -07001488 if (!elems.supp_rates) {
1489 printk(KERN_DEBUG "%s: no SuppRates element in AssocResp\n",
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001490 sdata->dev->name);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001491 return RX_MGMT_NONE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001492 }
1493
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001494 printk(KERN_DEBUG "%s: associated\n", sdata->dev->name);
Johannes Berg46900292009-02-15 12:44:28 +01001495 ifmgd->aid = aid;
Jiri Bencf0706e82007-05-05 11:45:53 -07001496
Johannes Bergd0709a62008-02-25 16:27:46 +01001497 rcu_read_lock();
1498
Jiri Bencf0706e82007-05-05 11:45:53 -07001499 /* Add STA entry for the AP */
Johannes Berg77fdaa12009-07-07 03:45:17 +02001500 sta = sta_info_get(local, wk->bss->cbss.bssid);
Jiri Bencf0706e82007-05-05 11:45:53 -07001501 if (!sta) {
Johannes Bergddf4ac52008-10-22 11:41:38 +02001502 newsta = true;
Johannes Bergd0709a62008-02-25 16:27:46 +01001503
Johannes Berg77fdaa12009-07-07 03:45:17 +02001504 rcu_read_unlock();
1505
1506 sta = sta_info_alloc(sdata, wk->bss->cbss.bssid, GFP_KERNEL);
Johannes Berg73651ee2008-02-25 16:27:47 +01001507 if (!sta) {
1508 printk(KERN_DEBUG "%s: failed to alloc STA entry for"
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001509 " the AP\n", sdata->dev->name);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001510 return RX_MGMT_NONE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001511 }
Johannes Berg73651ee2008-02-25 16:27:47 +01001512
Johannes Berg77fdaa12009-07-07 03:45:17 +02001513 set_sta_flags(sta, WLAN_STA_AUTH | WLAN_STA_ASSOC |
1514 WLAN_STA_ASSOC_AP);
1515 if (!(ifmgd->flags & IEEE80211_STA_CONTROL_PORT))
1516 set_sta_flags(sta, WLAN_STA_AUTHORIZED);
1517
1518 rcu_read_lock();
Jiri Bencf0706e82007-05-05 11:45:53 -07001519 }
1520
Jiri Bencf0706e82007-05-05 11:45:53 -07001521 rates = 0;
Johannes Berg8318d782008-01-24 19:38:38 +01001522 basic_rates = 0;
1523 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
1524
Jiri Bencf0706e82007-05-05 11:45:53 -07001525 for (i = 0; i < elems.supp_rates_len; i++) {
1526 int rate = (elems.supp_rates[i] & 0x7f) * 5;
Tomas Winklerd61272c2008-10-30 17:08:08 +02001527 bool is_basic = !!(elems.supp_rates[i] & 0x80);
Johannes Berg8318d782008-01-24 19:38:38 +01001528
1529 if (rate > 110)
1530 have_higher_than_11mbit = true;
1531
1532 for (j = 0; j < sband->n_bitrates; j++) {
Tomas Winklerd61272c2008-10-30 17:08:08 +02001533 if (sband->bitrates[j].bitrate == rate) {
Jiri Bencf0706e82007-05-05 11:45:53 -07001534 rates |= BIT(j);
Tomas Winklerd61272c2008-10-30 17:08:08 +02001535 if (is_basic)
1536 basic_rates |= BIT(j);
1537 break;
1538 }
Johannes Berg8318d782008-01-24 19:38:38 +01001539 }
Jiri Bencf0706e82007-05-05 11:45:53 -07001540 }
Johannes Berg8318d782008-01-24 19:38:38 +01001541
Jiri Bencf0706e82007-05-05 11:45:53 -07001542 for (i = 0; i < elems.ext_supp_rates_len; i++) {
1543 int rate = (elems.ext_supp_rates[i] & 0x7f) * 5;
Johannes Berg7e0986c2009-04-19 13:22:11 +02001544 bool is_basic = !!(elems.ext_supp_rates[i] & 0x80);
Johannes Berg8318d782008-01-24 19:38:38 +01001545
1546 if (rate > 110)
1547 have_higher_than_11mbit = true;
1548
1549 for (j = 0; j < sband->n_bitrates; j++) {
Tomas Winklerd61272c2008-10-30 17:08:08 +02001550 if (sband->bitrates[j].bitrate == rate) {
Jiri Bencf0706e82007-05-05 11:45:53 -07001551 rates |= BIT(j);
Tomas Winklerd61272c2008-10-30 17:08:08 +02001552 if (is_basic)
1553 basic_rates |= BIT(j);
1554 break;
1555 }
Johannes Berg8318d782008-01-24 19:38:38 +01001556 }
Jiri Bencf0706e82007-05-05 11:45:53 -07001557 }
Johannes Berg8318d782008-01-24 19:38:38 +01001558
Johannes Berg323ce792008-09-11 02:45:11 +02001559 sta->sta.supp_rates[local->hw.conf.channel->band] = rates;
Johannes Bergbda39332008-10-11 01:51:51 +02001560 sdata->vif.bss_conf.basic_rates = basic_rates;
Johannes Berg8318d782008-01-24 19:38:38 +01001561
1562 /* cf. IEEE 802.11 9.2.12 */
1563 if (local->hw.conf.channel->band == IEEE80211_BAND_2GHZ &&
1564 have_higher_than_11mbit)
1565 sdata->flags |= IEEE80211_SDATA_OPERATING_GMODE;
1566 else
1567 sdata->flags &= ~IEEE80211_SDATA_OPERATING_GMODE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001568
Johannes Bergab1faea2009-07-01 21:41:17 +02001569 if (elems.ht_cap_elem && !(ifmgd->flags & IEEE80211_STA_DISABLE_11N))
Johannes Bergae5eb022008-10-14 16:58:37 +02001570 ieee80211_ht_cap_ie_to_sta_ht_cap(sband,
Johannes Bergd9fe60d2008-10-09 12:13:49 +02001571 elems.ht_cap_elem, &sta->sta.ht_cap);
Johannes Bergae5eb022008-10-14 16:58:37 +02001572
1573 ap_ht_cap_flags = sta->sta.ht_cap.cap;
Ron Rindjunskyd3c990f2007-11-26 16:14:34 +02001574
Johannes Berg4b7679a2008-09-18 18:14:18 +02001575 rate_control_rate_init(sta);
Jiri Bencf0706e82007-05-05 11:45:53 -07001576
Johannes Berg46900292009-02-15 12:44:28 +01001577 if (ifmgd->flags & IEEE80211_STA_MFP_ENABLED)
Jouni Malinen5394af42009-01-08 13:31:59 +02001578 set_sta_flags(sta, WLAN_STA_MFP);
1579
Johannes Bergddf4ac52008-10-22 11:41:38 +02001580 if (elems.wmm_param)
Johannes Berg07346f812008-05-03 01:02:02 +02001581 set_sta_flags(sta, WLAN_STA_WME);
Johannes Bergddf4ac52008-10-22 11:41:38 +02001582
1583 if (newsta) {
1584 int err = sta_info_insert(sta);
1585 if (err) {
1586 printk(KERN_DEBUG "%s: failed to insert STA entry for"
1587 " the AP (error %d)\n", sdata->dev->name, err);
1588 rcu_read_unlock();
Johannes Berg77fdaa12009-07-07 03:45:17 +02001589 return RX_MGMT_NONE;
Johannes Bergddf4ac52008-10-22 11:41:38 +02001590 }
1591 }
1592
1593 rcu_read_unlock();
1594
1595 if (elems.wmm_param)
Johannes Berg46900292009-02-15 12:44:28 +01001596 ieee80211_sta_wmm_params(local, ifmgd, elems.wmm_param,
Jiri Bencf0706e82007-05-05 11:45:53 -07001597 elems.wmm_param_len);
Johannes Bergaa837e12009-05-07 16:16:24 +02001598 else
1599 ieee80211_set_wmm_default(sdata);
Jiri Bencf0706e82007-05-05 11:45:53 -07001600
Johannes Bergae5eb022008-10-14 16:58:37 +02001601 if (elems.ht_info_elem && elems.wmm_param &&
Johannes Berg46900292009-02-15 12:44:28 +01001602 (ifmgd->flags & IEEE80211_STA_WMM_ENABLED) &&
Johannes Bergab1faea2009-07-01 21:41:17 +02001603 !(ifmgd->flags & IEEE80211_STA_DISABLE_11N))
Johannes Bergae5eb022008-10-14 16:58:37 +02001604 changed |= ieee80211_enable_ht(sdata, elems.ht_info_elem,
Johannes Berg77fdaa12009-07-07 03:45:17 +02001605 wk->bss->cbss.bssid,
Johannes Bergae5eb022008-10-14 16:58:37 +02001606 ap_ht_cap_flags);
1607
Johannes Berg056508d2009-07-30 21:43:55 +02001608 /* delete work item -- must be before set_associated for PS */
1609 list_del(&wk->list);
1610
Tomas Winkler21c0cbe2008-03-28 16:33:34 -07001611 /* set AID and assoc capability,
1612 * ieee80211_set_associated() will tell the driver */
Johannes Berg8318d782008-01-24 19:38:38 +01001613 bss_conf->aid = aid;
Tomas Winkler21c0cbe2008-03-28 16:33:34 -07001614 bss_conf->assoc_capability = capab_info;
Johannes Berge21546a2009-08-06 20:41:32 +02001615 /* this will take ownership of wk */
1616 ieee80211_set_associated(sdata, wk, changed);
Jiri Bencf0706e82007-05-05 11:45:53 -07001617
Kalle Valo15b7b062009-03-22 21:57:14 +02001618 /*
Johannes Bergb291ba12009-07-10 15:29:03 +02001619 * Start timer to probe the connection to the AP now.
1620 * Also start the timer that will detect beacon loss.
Kalle Valo15b7b062009-03-22 21:57:14 +02001621 */
Johannes Bergb291ba12009-07-10 15:29:03 +02001622 ieee80211_sta_rx_notify(sdata, (struct ieee80211_hdr *)mgmt);
1623 mod_beacon_timer(sdata);
Kalle Valo15b7b062009-03-22 21:57:14 +02001624
Johannes Berg77fdaa12009-07-07 03:45:17 +02001625 return RX_MGMT_CFG80211_ASSOC;
Jiri Bencf0706e82007-05-05 11:45:53 -07001626}
1627
1628
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001629static void ieee80211_rx_bss_info(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001630 struct ieee80211_mgmt *mgmt,
1631 size_t len,
1632 struct ieee80211_rx_status *rx_status,
Johannes Berg98c8fcc2008-09-08 17:44:26 +02001633 struct ieee802_11_elems *elems,
1634 bool beacon)
Jiri Bencf0706e82007-05-05 11:45:53 -07001635{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001636 struct ieee80211_local *local = sdata->local;
Johannes Berg98c8fcc2008-09-08 17:44:26 +02001637 int freq;
Johannes Bergc2b13452008-09-11 00:01:55 +02001638 struct ieee80211_bss *bss;
Johannes Bergfab7d4a2008-03-16 18:42:44 +01001639 struct ieee80211_channel *channel;
Jiri Bencf0706e82007-05-05 11:45:53 -07001640
Johannes Berg5bda6172008-09-08 11:05:10 +02001641 if (elems->ds_params && elems->ds_params_len == 1)
1642 freq = ieee80211_channel_to_frequency(elems->ds_params[0]);
1643 else
1644 freq = rx_status->freq;
1645
1646 channel = ieee80211_get_channel(local->hw.wiphy, freq);
1647
1648 if (!channel || channel->flags & IEEE80211_CHAN_DISABLED)
1649 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001650
Johannes Berg98c8fcc2008-09-08 17:44:26 +02001651 bss = ieee80211_bss_info_update(local, rx_status, mgmt, len, elems,
Johannes Berg2a519312009-02-10 21:25:55 +01001652 channel, beacon);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001653 if (bss)
1654 ieee80211_rx_bss_put(local, bss);
1655
1656 if (!sdata->u.mgd.associated)
Johannes Berg98c8fcc2008-09-08 17:44:26 +02001657 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001658
Sujithc481ec92009-01-06 09:28:37 +05301659 if (elems->ch_switch_elem && (elems->ch_switch_elem_len == 3) &&
Johannes Berg77fdaa12009-07-07 03:45:17 +02001660 (memcmp(mgmt->bssid, sdata->u.mgd.associated->cbss.bssid,
1661 ETH_ALEN) == 0)) {
Sujithc481ec92009-01-06 09:28:37 +05301662 struct ieee80211_channel_sw_ie *sw_elem =
1663 (struct ieee80211_channel_sw_ie *)elems->ch_switch_elem;
Johannes Bergcc32abd2009-05-15 11:52:31 +02001664 ieee80211_sta_process_chanswitch(sdata, sw_elem, bss);
Sujithc481ec92009-01-06 09:28:37 +05301665 }
Jiri Bencf0706e82007-05-05 11:45:53 -07001666}
1667
1668
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001669static void ieee80211_rx_mgmt_probe_resp(struct ieee80211_sub_if_data *sdata,
Johannes Berg77fdaa12009-07-07 03:45:17 +02001670 struct ieee80211_mgd_work *wk,
1671 struct ieee80211_mgmt *mgmt, size_t len,
Jiri Bencf0706e82007-05-05 11:45:53 -07001672 struct ieee80211_rx_status *rx_status)
1673{
Kalle Valo15b7b062009-03-22 21:57:14 +02001674 struct ieee80211_if_managed *ifmgd;
Ester Kummerae6a44e2008-06-27 18:54:48 +03001675 size_t baselen;
1676 struct ieee802_11_elems elems;
1677
Kalle Valo15b7b062009-03-22 21:57:14 +02001678 ifmgd = &sdata->u.mgd;
1679
Johannes Berg77fdaa12009-07-07 03:45:17 +02001680 ASSERT_MGD_MTX(ifmgd);
1681
Tomas Winkler8e7cdbb2008-08-03 14:32:01 +03001682 if (memcmp(mgmt->da, sdata->dev->dev_addr, ETH_ALEN))
1683 return; /* ignore ProbeResp to foreign address */
1684
Ester Kummerae6a44e2008-06-27 18:54:48 +03001685 baselen = (u8 *) mgmt->u.probe_resp.variable - (u8 *) mgmt;
1686 if (baselen > len)
1687 return;
1688
1689 ieee802_11_parse_elems(mgmt->u.probe_resp.variable, len - baselen,
1690 &elems);
1691
Johannes Berg98c8fcc2008-09-08 17:44:26 +02001692 ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems, false);
Ron Rindjunsky9859b812008-08-09 03:02:19 +03001693
1694 /* direct probe may be part of the association flow */
Johannes Berg77fdaa12009-07-07 03:45:17 +02001695 if (wk && wk->state == IEEE80211_MGD_STATE_PROBE) {
Johannes Berg0ff71612009-09-26 14:45:41 +02001696 printk(KERN_DEBUG "%s: direct probe responded\n",
Ron Rindjunsky9859b812008-08-09 03:02:19 +03001697 sdata->dev->name);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001698 wk->tries = 0;
1699 wk->state = IEEE80211_MGD_STATE_AUTH;
1700 WARN_ON(ieee80211_authenticate(sdata, wk) != RX_MGMT_NONE);
Ron Rindjunsky9859b812008-08-09 03:02:19 +03001701 }
Kalle Valo15b7b062009-03-22 21:57:14 +02001702
Johannes Berg77fdaa12009-07-07 03:45:17 +02001703 if (ifmgd->associated &&
1704 memcmp(mgmt->bssid, ifmgd->associated->cbss.bssid, ETH_ALEN) == 0 &&
Johannes Bergb291ba12009-07-10 15:29:03 +02001705 ifmgd->flags & (IEEE80211_STA_BEACON_POLL |
1706 IEEE80211_STA_CONNECTION_POLL)) {
1707 ifmgd->flags &= ~(IEEE80211_STA_CONNECTION_POLL |
1708 IEEE80211_STA_BEACON_POLL);
Johannes Berg4e751842009-06-10 15:16:52 +02001709 mutex_lock(&sdata->local->iflist_mtx);
1710 ieee80211_recalc_ps(sdata->local, -1);
1711 mutex_unlock(&sdata->local->iflist_mtx);
Johannes Bergb291ba12009-07-10 15:29:03 +02001712 /*
1713 * We've received a probe response, but are not sure whether
1714 * we have or will be receiving any beacons or data, so let's
1715 * schedule the timers again, just in case.
1716 */
1717 mod_beacon_timer(sdata);
1718 mod_timer(&ifmgd->conn_mon_timer,
1719 round_jiffies_up(jiffies +
1720 IEEE80211_CONNECTION_IDLE_TIME));
Johannes Berg4e751842009-06-10 15:16:52 +02001721 }
Jiri Bencf0706e82007-05-05 11:45:53 -07001722}
1723
Johannes Bergd91f36d2009-04-16 13:17:26 +02001724/*
1725 * This is the canonical list of information elements we care about,
1726 * the filter code also gives us all changes to the Microsoft OUI
1727 * (00:50:F2) vendor IE which is used for WMM which we need to track.
1728 *
1729 * We implement beacon filtering in software since that means we can
1730 * avoid processing the frame here and in cfg80211, and userspace
1731 * will not be able to tell whether the hardware supports it or not.
1732 *
1733 * XXX: This list needs to be dynamic -- userspace needs to be able to
1734 * add items it requires. It also needs to be able to tell us to
1735 * look out for other vendor IEs.
1736 */
1737static const u64 care_about_ies =
Johannes Berg1d4df3a2009-04-22 11:25:43 +02001738 (1ULL << WLAN_EID_COUNTRY) |
1739 (1ULL << WLAN_EID_ERP_INFO) |
1740 (1ULL << WLAN_EID_CHANNEL_SWITCH) |
1741 (1ULL << WLAN_EID_PWR_CONSTRAINT) |
1742 (1ULL << WLAN_EID_HT_CAPABILITY) |
1743 (1ULL << WLAN_EID_HT_INFORMATION);
Johannes Bergd91f36d2009-04-16 13:17:26 +02001744
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001745static void ieee80211_rx_mgmt_beacon(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001746 struct ieee80211_mgmt *mgmt,
1747 size_t len,
1748 struct ieee80211_rx_status *rx_status)
1749{
Johannes Bergd91f36d2009-04-16 13:17:26 +02001750 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jiri Bencf0706e82007-05-05 11:45:53 -07001751 size_t baselen;
1752 struct ieee802_11_elems elems;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001753 struct ieee80211_local *local = sdata->local;
Johannes Berg471b3ef2007-12-28 14:32:58 +01001754 u32 changed = 0;
Johannes Bergd91f36d2009-04-16 13:17:26 +02001755 bool erp_valid, directed_tim = false;
Johannes Berg7a5158e2008-10-08 10:59:33 +02001756 u8 erp_value = 0;
Johannes Bergd91f36d2009-04-16 13:17:26 +02001757 u32 ncrc;
Johannes Berg77fdaa12009-07-07 03:45:17 +02001758 u8 *bssid;
1759
1760 ASSERT_MGD_MTX(ifmgd);
Jiri Bencf0706e82007-05-05 11:45:53 -07001761
Ester Kummerae6a44e2008-06-27 18:54:48 +03001762 /* Process beacon from the current BSS */
1763 baselen = (u8 *) mgmt->u.beacon.variable - (u8 *) mgmt;
1764 if (baselen > len)
1765 return;
1766
Johannes Bergd91f36d2009-04-16 13:17:26 +02001767 if (rx_status->freq != local->hw.conf.channel->center_freq)
Jiri Bencf0706e82007-05-05 11:45:53 -07001768 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001769
Johannes Bergb291ba12009-07-10 15:29:03 +02001770 /*
1771 * We might have received a number of frames, among them a
1772 * disassoc frame and a beacon...
1773 */
1774 if (!ifmgd->associated)
Johannes Berg77fdaa12009-07-07 03:45:17 +02001775 return;
1776
1777 bssid = ifmgd->associated->cbss.bssid;
1778
Johannes Bergb291ba12009-07-10 15:29:03 +02001779 /*
1780 * And in theory even frames from a different AP we were just
1781 * associated to a split-second ago!
1782 */
1783 if (memcmp(bssid, mgmt->bssid, ETH_ALEN) != 0)
Jiri Bencf0706e82007-05-05 11:45:53 -07001784 return;
1785
Johannes Bergb291ba12009-07-10 15:29:03 +02001786 if (ifmgd->flags & IEEE80211_STA_BEACON_POLL) {
Jouni Malinen92778182009-05-14 21:15:36 +03001787#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
1788 if (net_ratelimit()) {
1789 printk(KERN_DEBUG "%s: cancelling probereq poll due "
1790 "to a received beacon\n", sdata->dev->name);
1791 }
1792#endif
Johannes Bergb291ba12009-07-10 15:29:03 +02001793 ifmgd->flags &= ~IEEE80211_STA_BEACON_POLL;
Johannes Berg4e751842009-06-10 15:16:52 +02001794 mutex_lock(&local->iflist_mtx);
1795 ieee80211_recalc_ps(local, -1);
1796 mutex_unlock(&local->iflist_mtx);
Jouni Malinen92778182009-05-14 21:15:36 +03001797 }
1798
Johannes Bergb291ba12009-07-10 15:29:03 +02001799 /*
1800 * Push the beacon loss detection into the future since
1801 * we are processing a beacon from the AP just now.
1802 */
1803 mod_beacon_timer(sdata);
1804
Johannes Bergd91f36d2009-04-16 13:17:26 +02001805 ncrc = crc32_be(0, (void *)&mgmt->u.beacon.beacon_int, 4);
1806 ncrc = ieee802_11_parse_elems_crc(mgmt->u.beacon.variable,
1807 len - baselen, &elems,
1808 care_about_ies, ncrc);
1809
1810 if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)
Johannes Berge7ec86f2009-04-18 17:33:24 +02001811 directed_tim = ieee80211_check_tim(elems.tim, elems.tim_len,
1812 ifmgd->aid);
Johannes Bergd91f36d2009-04-16 13:17:26 +02001813
Jouni Malinen30196672009-05-19 17:01:43 +03001814 if (ncrc != ifmgd->beacon_crc) {
1815 ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems,
1816 true);
Johannes Bergd91f36d2009-04-16 13:17:26 +02001817
Jouni Malinen30196672009-05-19 17:01:43 +03001818 ieee80211_sta_wmm_params(local, ifmgd, elems.wmm_param,
1819 elems.wmm_param_len);
1820 }
Johannes Bergfe3fa822008-09-08 11:05:09 +02001821
Vivek Natarajan25c9c872009-03-02 20:20:30 +05301822 if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK) {
Kalle Valo1fb36062009-02-10 17:09:24 +02001823 if (directed_tim) {
Kalle Valo572e0012009-02-10 17:09:31 +02001824 if (local->hw.conf.dynamic_ps_timeout > 0) {
1825 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
1826 ieee80211_hw_config(local,
1827 IEEE80211_CONF_CHANGE_PS);
1828 ieee80211_send_nullfunc(local, sdata, 0);
1829 } else {
1830 local->pspolling = true;
1831
1832 /*
1833 * Here is assumed that the driver will be
1834 * able to send ps-poll frame and receive a
1835 * response even though power save mode is
1836 * enabled, but some drivers might require
1837 * to disable power save here. This needs
1838 * to be investigated.
1839 */
1840 ieee80211_send_pspoll(local, sdata);
1841 }
Vivek Natarajana97b77b2008-12-23 18:39:02 -08001842 }
1843 }
Johannes Berg7a5158e2008-10-08 10:59:33 +02001844
Jouni Malinen30196672009-05-19 17:01:43 +03001845 if (ncrc == ifmgd->beacon_crc)
1846 return;
1847 ifmgd->beacon_crc = ncrc;
1848
Johannes Berg7a5158e2008-10-08 10:59:33 +02001849 if (elems.erp_info && elems.erp_info_len >= 1) {
1850 erp_valid = true;
1851 erp_value = elems.erp_info[0];
1852 } else {
1853 erp_valid = false;
John W. Linville50c4afb2008-04-15 14:09:27 -04001854 }
Johannes Berg7a5158e2008-10-08 10:59:33 +02001855 changed |= ieee80211_handle_bss_capability(sdata,
1856 le16_to_cpu(mgmt->u.beacon.capab_info),
1857 erp_valid, erp_value);
Jiri Bencf0706e82007-05-05 11:45:53 -07001858
Ron Rindjunskyd3c990f2007-11-26 16:14:34 +02001859
Vasanthakumar Thiagarajan53d6f81c2009-02-11 22:18:49 +05301860 if (elems.ht_cap_elem && elems.ht_info_elem && elems.wmm_param &&
Johannes Bergab1faea2009-07-01 21:41:17 +02001861 !(ifmgd->flags & IEEE80211_STA_DISABLE_11N)) {
Johannes Bergae5eb022008-10-14 16:58:37 +02001862 struct sta_info *sta;
1863 struct ieee80211_supported_band *sband;
1864 u16 ap_ht_cap_flags;
1865
1866 rcu_read_lock();
1867
Johannes Berg77fdaa12009-07-07 03:45:17 +02001868 sta = sta_info_get(local, bssid);
1869 if (WARN_ON(!sta)) {
Johannes Bergae5eb022008-10-14 16:58:37 +02001870 rcu_read_unlock();
1871 return;
1872 }
1873
1874 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
1875
1876 ieee80211_ht_cap_ie_to_sta_ht_cap(sband,
1877 elems.ht_cap_elem, &sta->sta.ht_cap);
1878
1879 ap_ht_cap_flags = sta->sta.ht_cap.cap;
1880
1881 rcu_read_unlock();
1882
1883 changed |= ieee80211_enable_ht(sdata, elems.ht_info_elem,
Johannes Berg77fdaa12009-07-07 03:45:17 +02001884 bssid, ap_ht_cap_flags);
Ron Rindjunskyd3c990f2007-11-26 16:14:34 +02001885 }
1886
Luis R. Rodriguez8b19e6c2009-07-30 17:38:09 -07001887 /* Note: country IE parsing is done for us by cfg80211 */
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001888 if (elems.country_elem) {
Vasanthakumar Thiagarajana8302de2009-01-09 18:14:15 +05301889 /* TODO: IBSS also needs this */
1890 if (elems.pwr_constr_elem)
1891 ieee80211_handle_pwr_constr(sdata,
1892 le16_to_cpu(mgmt->u.probe_resp.capab_info),
1893 elems.pwr_constr_elem,
1894 elems.pwr_constr_elem_len);
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001895 }
1896
Johannes Berg471b3ef2007-12-28 14:32:58 +01001897 ieee80211_bss_info_change_notify(sdata, changed);
Jiri Bencf0706e82007-05-05 11:45:53 -07001898}
1899
Johannes Berg46900292009-02-15 12:44:28 +01001900ieee80211_rx_result ieee80211_sta_rx_mgmt(struct ieee80211_sub_if_data *sdata,
Johannes Bergf1d58c22009-06-17 13:13:00 +02001901 struct sk_buff *skb)
Jiri Bencf0706e82007-05-05 11:45:53 -07001902{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001903 struct ieee80211_local *local = sdata->local;
Jiri Bencf0706e82007-05-05 11:45:53 -07001904 struct ieee80211_mgmt *mgmt;
1905 u16 fc;
1906
1907 if (skb->len < 24)
Johannes Berg46900292009-02-15 12:44:28 +01001908 return RX_DROP_MONITOR;
Jiri Bencf0706e82007-05-05 11:45:53 -07001909
1910 mgmt = (struct ieee80211_mgmt *) skb->data;
1911 fc = le16_to_cpu(mgmt->frame_control);
1912
1913 switch (fc & IEEE80211_FCTL_STYPE) {
Jiri Bencf0706e82007-05-05 11:45:53 -07001914 case IEEE80211_STYPE_PROBE_RESP:
1915 case IEEE80211_STYPE_BEACON:
Jiri Bencf0706e82007-05-05 11:45:53 -07001916 case IEEE80211_STYPE_AUTH:
1917 case IEEE80211_STYPE_ASSOC_RESP:
1918 case IEEE80211_STYPE_REASSOC_RESP:
1919 case IEEE80211_STYPE_DEAUTH:
1920 case IEEE80211_STYPE_DISASSOC:
Johannes Berg77fdaa12009-07-07 03:45:17 +02001921 case IEEE80211_STYPE_ACTION:
Johannes Berg46900292009-02-15 12:44:28 +01001922 skb_queue_tail(&sdata->u.mgd.skb_queue, skb);
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04001923 ieee80211_queue_work(&local->hw, &sdata->u.mgd.work);
Johannes Berg46900292009-02-15 12:44:28 +01001924 return RX_QUEUED;
Jiri Bencf0706e82007-05-05 11:45:53 -07001925 }
1926
Johannes Berg46900292009-02-15 12:44:28 +01001927 return RX_DROP_MONITOR;
Jiri Bencf0706e82007-05-05 11:45:53 -07001928}
1929
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001930static void ieee80211_sta_rx_queued_mgmt(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001931 struct sk_buff *skb)
1932{
Johannes Berg77fdaa12009-07-07 03:45:17 +02001933 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jiri Bencf0706e82007-05-05 11:45:53 -07001934 struct ieee80211_rx_status *rx_status;
Jiri Bencf0706e82007-05-05 11:45:53 -07001935 struct ieee80211_mgmt *mgmt;
Johannes Berg77fdaa12009-07-07 03:45:17 +02001936 struct ieee80211_mgd_work *wk;
1937 enum rx_mgmt_action rma = RX_MGMT_NONE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001938 u16 fc;
1939
Jiri Bencf0706e82007-05-05 11:45:53 -07001940 rx_status = (struct ieee80211_rx_status *) skb->cb;
1941 mgmt = (struct ieee80211_mgmt *) skb->data;
1942 fc = le16_to_cpu(mgmt->frame_control);
1943
Johannes Berg77fdaa12009-07-07 03:45:17 +02001944 mutex_lock(&ifmgd->mtx);
1945
1946 if (ifmgd->associated &&
1947 memcmp(ifmgd->associated->cbss.bssid, mgmt->bssid,
1948 ETH_ALEN) == 0) {
1949 switch (fc & IEEE80211_FCTL_STYPE) {
1950 case IEEE80211_STYPE_BEACON:
1951 ieee80211_rx_mgmt_beacon(sdata, mgmt, skb->len,
1952 rx_status);
1953 break;
1954 case IEEE80211_STYPE_PROBE_RESP:
1955 ieee80211_rx_mgmt_probe_resp(sdata, NULL, mgmt,
1956 skb->len, rx_status);
1957 break;
1958 case IEEE80211_STYPE_DEAUTH:
1959 rma = ieee80211_rx_mgmt_deauth(sdata, NULL,
1960 mgmt, skb->len);
1961 break;
1962 case IEEE80211_STYPE_DISASSOC:
1963 rma = ieee80211_rx_mgmt_disassoc(sdata, mgmt, skb->len);
1964 break;
1965 case IEEE80211_STYPE_ACTION:
1966 /* XXX: differentiate, can only happen for CSA now! */
1967 ieee80211_sta_process_chanswitch(sdata,
1968 &mgmt->u.action.u.chan_switch.sw_elem,
1969 ifmgd->associated);
1970 break;
1971 }
1972 mutex_unlock(&ifmgd->mtx);
1973
1974 switch (rma) {
1975 case RX_MGMT_NONE:
1976 /* no action */
1977 break;
1978 case RX_MGMT_CFG80211_DEAUTH:
Holger Schurigce470612009-10-13 13:28:13 +02001979 cfg80211_send_deauth(sdata->dev, (u8 *)mgmt, skb->len);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001980 break;
1981 case RX_MGMT_CFG80211_DISASSOC:
Holger Schurigce470612009-10-13 13:28:13 +02001982 cfg80211_send_disassoc(sdata->dev, (u8 *)mgmt, skb->len);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001983 break;
1984 default:
1985 WARN(1, "unexpected: %d", rma);
1986 }
1987 goto out;
1988 }
1989
1990 list_for_each_entry(wk, &ifmgd->work_list, list) {
1991 if (memcmp(wk->bss->cbss.bssid, mgmt->bssid, ETH_ALEN) != 0)
1992 continue;
1993
1994 switch (fc & IEEE80211_FCTL_STYPE) {
1995 case IEEE80211_STYPE_PROBE_RESP:
1996 ieee80211_rx_mgmt_probe_resp(sdata, wk, mgmt, skb->len,
1997 rx_status);
1998 break;
1999 case IEEE80211_STYPE_AUTH:
2000 rma = ieee80211_rx_mgmt_auth(sdata, wk, mgmt, skb->len);
2001 break;
2002 case IEEE80211_STYPE_ASSOC_RESP:
2003 rma = ieee80211_rx_mgmt_assoc_resp(sdata, wk, mgmt,
2004 skb->len, false);
2005 break;
2006 case IEEE80211_STYPE_REASSOC_RESP:
2007 rma = ieee80211_rx_mgmt_assoc_resp(sdata, wk, mgmt,
2008 skb->len, true);
2009 break;
2010 case IEEE80211_STYPE_DEAUTH:
2011 rma = ieee80211_rx_mgmt_deauth(sdata, wk, mgmt,
2012 skb->len);
2013 break;
2014 }
2015 /*
2016 * We've processed this frame for that work, so it can't
2017 * belong to another work struct.
2018 * NB: this is also required for correctness because the
2019 * called functions can free 'wk', and for 'rma'!
2020 */
Johannes Berg46900292009-02-15 12:44:28 +01002021 break;
Jiri Bencf0706e82007-05-05 11:45:53 -07002022 }
2023
Johannes Berg77fdaa12009-07-07 03:45:17 +02002024 mutex_unlock(&ifmgd->mtx);
2025
2026 switch (rma) {
2027 case RX_MGMT_NONE:
2028 /* no action */
2029 break;
2030 case RX_MGMT_CFG80211_AUTH:
Johannes Bergcb0b4be2009-07-07 03:56:07 +02002031 cfg80211_send_rx_auth(sdata->dev, (u8 *) mgmt, skb->len);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002032 break;
2033 case RX_MGMT_CFG80211_ASSOC:
Johannes Bergcb0b4be2009-07-07 03:56:07 +02002034 cfg80211_send_rx_assoc(sdata->dev, (u8 *) mgmt, skb->len);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002035 break;
Johannes Berg8d8b2612009-07-25 11:58:36 +02002036 case RX_MGMT_CFG80211_DEAUTH:
Holger Schurigce470612009-10-13 13:28:13 +02002037 cfg80211_send_deauth(sdata->dev, (u8 *)mgmt, skb->len);
Johannes Berg8d8b2612009-07-25 11:58:36 +02002038 break;
Johannes Berg77fdaa12009-07-07 03:45:17 +02002039 default:
2040 WARN(1, "unexpected: %d", rma);
2041 }
2042
2043 out:
Jiri Bencf0706e82007-05-05 11:45:53 -07002044 kfree_skb(skb);
2045}
2046
Johannes Berg9c6bd792008-09-11 00:01:52 +02002047static void ieee80211_sta_timer(unsigned long data)
Jiri Bencf0706e82007-05-05 11:45:53 -07002048{
2049 struct ieee80211_sub_if_data *sdata =
2050 (struct ieee80211_sub_if_data *) data;
Johannes Berg46900292009-02-15 12:44:28 +01002051 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002052 struct ieee80211_local *local = sdata->local;
Jiri Bencf0706e82007-05-05 11:45:53 -07002053
Johannes Berg5bb644a2009-05-17 11:40:42 +02002054 if (local->quiescing) {
2055 set_bit(TMR_RUNNING_TIMER, &ifmgd->timers_running);
2056 return;
2057 }
2058
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04002059 ieee80211_queue_work(&local->hw, &ifmgd->work);
Jiri Bencf0706e82007-05-05 11:45:53 -07002060}
2061
Johannes Berg9c6bd792008-09-11 00:01:52 +02002062static void ieee80211_sta_work(struct work_struct *work)
Johannes Berg60f8b392008-09-08 17:44:22 +02002063{
2064 struct ieee80211_sub_if_data *sdata =
Johannes Berg46900292009-02-15 12:44:28 +01002065 container_of(work, struct ieee80211_sub_if_data, u.mgd.work);
Johannes Berg60f8b392008-09-08 17:44:22 +02002066 struct ieee80211_local *local = sdata->local;
Johannes Berg46900292009-02-15 12:44:28 +01002067 struct ieee80211_if_managed *ifmgd;
Johannes Berg60f8b392008-09-08 17:44:22 +02002068 struct sk_buff *skb;
Johannes Berg77fdaa12009-07-07 03:45:17 +02002069 struct ieee80211_mgd_work *wk, *tmp;
2070 LIST_HEAD(free_work);
2071 enum rx_mgmt_action rma;
2072 bool anybusy = false;
Johannes Berg60f8b392008-09-08 17:44:22 +02002073
2074 if (!netif_running(sdata->dev))
2075 return;
2076
Helmut Schaafbe9c422009-07-23 12:14:04 +02002077 if (local->scanning)
Johannes Berg60f8b392008-09-08 17:44:22 +02002078 return;
2079
Johannes Berg46900292009-02-15 12:44:28 +01002080 if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION))
Johannes Berg60f8b392008-09-08 17:44:22 +02002081 return;
Johannes Berg5bb644a2009-05-17 11:40:42 +02002082
2083 /*
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04002084 * ieee80211_queue_work() should have picked up most cases,
2085 * here we'll pick the the rest.
Johannes Berg5bb644a2009-05-17 11:40:42 +02002086 */
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04002087 if (WARN(local->suspended, "STA MLME work scheduled while "
2088 "going to suspend\n"))
Johannes Berg5bb644a2009-05-17 11:40:42 +02002089 return;
2090
Johannes Berg46900292009-02-15 12:44:28 +01002091 ifmgd = &sdata->u.mgd;
Johannes Berg60f8b392008-09-08 17:44:22 +02002092
Johannes Berg77fdaa12009-07-07 03:45:17 +02002093 /* first process frames to avoid timing out while a frame is pending */
Johannes Berg46900292009-02-15 12:44:28 +01002094 while ((skb = skb_dequeue(&ifmgd->skb_queue)))
Johannes Berg60f8b392008-09-08 17:44:22 +02002095 ieee80211_sta_rx_queued_mgmt(sdata, skb);
2096
Johannes Berg77fdaa12009-07-07 03:45:17 +02002097 /* then process the rest of the work */
2098 mutex_lock(&ifmgd->mtx);
Johannes Berg60f8b392008-09-08 17:44:22 +02002099
Johannes Bergb291ba12009-07-10 15:29:03 +02002100 if (ifmgd->flags & (IEEE80211_STA_BEACON_POLL |
2101 IEEE80211_STA_CONNECTION_POLL) &&
2102 ifmgd->associated) {
Maxim Levitskya43abf22009-07-31 18:54:12 +03002103 u8 bssid[ETH_ALEN];
2104
2105 memcpy(bssid, ifmgd->associated->cbss.bssid, ETH_ALEN);
Johannes Bergb291ba12009-07-10 15:29:03 +02002106 if (time_is_after_jiffies(ifmgd->probe_timeout))
2107 run_again(ifmgd, ifmgd->probe_timeout);
Maxim Levitskya43abf22009-07-31 18:54:12 +03002108
2109 else if (ifmgd->probe_send_count < IEEE80211_MAX_PROBE_TRIES) {
2110#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
2111 printk(KERN_DEBUG "No probe response from AP %pM"
2112 " after %dms, try %d\n", bssid,
2113 (1000 * IEEE80211_PROBE_WAIT)/HZ,
2114 ifmgd->probe_send_count);
2115#endif
2116 ieee80211_mgd_probe_ap_send(sdata);
2117 } else {
Johannes Bergb291ba12009-07-10 15:29:03 +02002118 /*
2119 * We actually lost the connection ... or did we?
2120 * Let's make sure!
2121 */
2122 ifmgd->flags &= ~(IEEE80211_STA_CONNECTION_POLL |
2123 IEEE80211_STA_BEACON_POLL);
Johannes Bergb291ba12009-07-10 15:29:03 +02002124 printk(KERN_DEBUG "No probe response from AP %pM"
2125 " after %dms, disconnecting.\n",
2126 bssid, (1000 * IEEE80211_PROBE_WAIT)/HZ);
Johannes Berge21546a2009-08-06 20:41:32 +02002127 ieee80211_set_disassoc(sdata, true);
Johannes Bergbc83b682009-11-29 12:19:06 +01002128 ieee80211_recalc_idle(local);
Johannes Bergb291ba12009-07-10 15:29:03 +02002129 mutex_unlock(&ifmgd->mtx);
2130 /*
2131 * must be outside lock due to cfg80211,
2132 * but that's not a problem.
2133 */
2134 ieee80211_send_deauth_disassoc(sdata, bssid,
2135 IEEE80211_STYPE_DEAUTH,
2136 WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY,
2137 NULL);
2138 mutex_lock(&ifmgd->mtx);
2139 }
2140 }
2141
Johannes Berg60f8b392008-09-08 17:44:22 +02002142
Johannes Berg5cff20e2009-04-29 12:26:17 +02002143 ieee80211_recalc_idle(local);
2144
Johannes Berg77fdaa12009-07-07 03:45:17 +02002145 list_for_each_entry_safe(wk, tmp, &ifmgd->work_list, list) {
Johannes Bergca386f32009-07-10 02:39:48 +02002146 if (time_is_after_jiffies(wk->timeout)) {
2147 /*
2148 * This work item isn't supposed to be worked on
2149 * right now, but take care to adjust the timer
2150 * properly.
2151 */
2152 run_again(ifmgd, wk->timeout);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002153 continue;
Johannes Bergca386f32009-07-10 02:39:48 +02002154 }
Johannes Berg77fdaa12009-07-07 03:45:17 +02002155
2156 switch (wk->state) {
2157 default:
2158 WARN_ON(1);
2159 /* fall through */
2160 case IEEE80211_MGD_STATE_IDLE:
2161 /* nothing */
2162 rma = RX_MGMT_NONE;
2163 break;
2164 case IEEE80211_MGD_STATE_PROBE:
2165 rma = ieee80211_direct_probe(sdata, wk);
2166 break;
2167 case IEEE80211_MGD_STATE_AUTH:
2168 rma = ieee80211_authenticate(sdata, wk);
2169 break;
2170 case IEEE80211_MGD_STATE_ASSOC:
2171 rma = ieee80211_associate(sdata, wk);
2172 break;
2173 }
2174
2175 switch (rma) {
2176 case RX_MGMT_NONE:
2177 /* no action required */
2178 break;
2179 case RX_MGMT_CFG80211_AUTH_TO:
2180 case RX_MGMT_CFG80211_ASSOC_TO:
2181 list_del(&wk->list);
2182 list_add(&wk->list, &free_work);
2183 wk->tries = rma; /* small abuse but only local */
2184 break;
2185 default:
2186 WARN(1, "unexpected: %d", rma);
2187 }
2188 }
2189
Jouni Malinen5bf6fcc2009-08-25 17:44:28 +03002190 list_for_each_entry(wk, &ifmgd->work_list, list) {
2191 if (wk->state != IEEE80211_MGD_STATE_IDLE) {
2192 anybusy = true;
2193 break;
2194 }
2195 }
2196 if (!anybusy &&
2197 test_and_clear_bit(IEEE80211_STA_REQ_SCAN, &ifmgd->request))
2198 ieee80211_queue_delayed_work(&local->hw,
2199 &local->scan_work,
2200 round_jiffies_relative(0));
2201
Johannes Berg77fdaa12009-07-07 03:45:17 +02002202 mutex_unlock(&ifmgd->mtx);
2203
2204 list_for_each_entry_safe(wk, tmp, &free_work, list) {
2205 switch (wk->tries) {
2206 case RX_MGMT_CFG80211_AUTH_TO:
2207 cfg80211_send_auth_timeout(sdata->dev,
Johannes Bergcb0b4be2009-07-07 03:56:07 +02002208 wk->bss->cbss.bssid);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002209 break;
2210 case RX_MGMT_CFG80211_ASSOC_TO:
Johannes Bergcb0b4be2009-07-07 03:56:07 +02002211 cfg80211_send_assoc_timeout(sdata->dev,
2212 wk->bss->cbss.bssid);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002213 break;
2214 default:
2215 WARN(1, "unexpected: %d", wk->tries);
2216 }
2217
2218 list_del(&wk->list);
2219 kfree(wk);
2220 }
2221
2222 ieee80211_recalc_idle(local);
Johannes Berg60f8b392008-09-08 17:44:22 +02002223}
Johannes Berg0a51b272008-09-08 17:44:25 +02002224
Johannes Bergb291ba12009-07-10 15:29:03 +02002225static void ieee80211_sta_bcn_mon_timer(unsigned long data)
2226{
2227 struct ieee80211_sub_if_data *sdata =
2228 (struct ieee80211_sub_if_data *) data;
2229 struct ieee80211_local *local = sdata->local;
2230
2231 if (local->quiescing)
2232 return;
2233
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04002234 ieee80211_queue_work(&sdata->local->hw, &sdata->u.mgd.beacon_loss_work);
Johannes Bergb291ba12009-07-10 15:29:03 +02002235}
2236
2237static void ieee80211_sta_conn_mon_timer(unsigned long data)
2238{
2239 struct ieee80211_sub_if_data *sdata =
2240 (struct ieee80211_sub_if_data *) data;
2241 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2242 struct ieee80211_local *local = sdata->local;
2243
2244 if (local->quiescing)
2245 return;
2246
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04002247 ieee80211_queue_work(&local->hw, &ifmgd->monitor_work);
Johannes Bergb291ba12009-07-10 15:29:03 +02002248}
2249
2250static void ieee80211_sta_monitor_work(struct work_struct *work)
2251{
2252 struct ieee80211_sub_if_data *sdata =
2253 container_of(work, struct ieee80211_sub_if_data,
2254 u.mgd.monitor_work);
2255
2256 ieee80211_mgd_probe_ap(sdata, false);
2257}
2258
Johannes Berga1678f82008-09-11 00:01:47 +02002259static void ieee80211_restart_sta_timer(struct ieee80211_sub_if_data *sdata)
2260{
Kalle Vaload935682009-04-19 08:47:19 +03002261 if (sdata->vif.type == NL80211_IFTYPE_STATION) {
Johannes Bergb291ba12009-07-10 15:29:03 +02002262 sdata->u.mgd.flags &= ~(IEEE80211_STA_BEACON_POLL |
2263 IEEE80211_STA_CONNECTION_POLL);
Kalle Vaload935682009-04-19 08:47:19 +03002264
Johannes Bergb291ba12009-07-10 15:29:03 +02002265 /* let's probe the connection once */
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04002266 ieee80211_queue_work(&sdata->local->hw,
Johannes Bergb291ba12009-07-10 15:29:03 +02002267 &sdata->u.mgd.monitor_work);
2268 /* and do all the other regular work too */
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04002269 ieee80211_queue_work(&sdata->local->hw,
Johannes Berg46900292009-02-15 12:44:28 +01002270 &sdata->u.mgd.work);
Kalle Vaload935682009-04-19 08:47:19 +03002271 }
Johannes Berga1678f82008-09-11 00:01:47 +02002272}
2273
Johannes Berg5bb644a2009-05-17 11:40:42 +02002274#ifdef CONFIG_PM
2275void ieee80211_sta_quiesce(struct ieee80211_sub_if_data *sdata)
2276{
2277 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2278
2279 /*
2280 * we need to use atomic bitops for the running bits
2281 * only because both timers might fire at the same
2282 * time -- the code here is properly synchronised.
2283 */
2284
2285 cancel_work_sync(&ifmgd->work);
2286 cancel_work_sync(&ifmgd->beacon_loss_work);
2287 if (del_timer_sync(&ifmgd->timer))
2288 set_bit(TMR_RUNNING_TIMER, &ifmgd->timers_running);
2289
2290 cancel_work_sync(&ifmgd->chswitch_work);
2291 if (del_timer_sync(&ifmgd->chswitch_timer))
2292 set_bit(TMR_RUNNING_CHANSW, &ifmgd->timers_running);
Johannes Bergb291ba12009-07-10 15:29:03 +02002293
2294 cancel_work_sync(&ifmgd->monitor_work);
2295 /* these will just be re-established on connection */
2296 del_timer_sync(&ifmgd->conn_mon_timer);
2297 del_timer_sync(&ifmgd->bcn_mon_timer);
Johannes Berg5bb644a2009-05-17 11:40:42 +02002298}
2299
2300void ieee80211_sta_restart(struct ieee80211_sub_if_data *sdata)
2301{
2302 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2303
2304 if (test_and_clear_bit(TMR_RUNNING_TIMER, &ifmgd->timers_running))
2305 add_timer(&ifmgd->timer);
2306 if (test_and_clear_bit(TMR_RUNNING_CHANSW, &ifmgd->timers_running))
2307 add_timer(&ifmgd->chswitch_timer);
2308}
2309#endif
2310
Johannes Berg9c6bd792008-09-11 00:01:52 +02002311/* interface setup */
2312void ieee80211_sta_setup_sdata(struct ieee80211_sub_if_data *sdata)
2313{
Johannes Berg46900292009-02-15 12:44:28 +01002314 struct ieee80211_if_managed *ifmgd;
Johannes Berg9c6bd792008-09-11 00:01:52 +02002315
Johannes Berg46900292009-02-15 12:44:28 +01002316 ifmgd = &sdata->u.mgd;
2317 INIT_WORK(&ifmgd->work, ieee80211_sta_work);
Johannes Bergb291ba12009-07-10 15:29:03 +02002318 INIT_WORK(&ifmgd->monitor_work, ieee80211_sta_monitor_work);
Johannes Berg46900292009-02-15 12:44:28 +01002319 INIT_WORK(&ifmgd->chswitch_work, ieee80211_chswitch_work);
Kalle Valo04de8382009-03-22 21:57:35 +02002320 INIT_WORK(&ifmgd->beacon_loss_work, ieee80211_beacon_loss_work);
Johannes Berg46900292009-02-15 12:44:28 +01002321 setup_timer(&ifmgd->timer, ieee80211_sta_timer,
Johannes Berg9c6bd792008-09-11 00:01:52 +02002322 (unsigned long) sdata);
Johannes Bergb291ba12009-07-10 15:29:03 +02002323 setup_timer(&ifmgd->bcn_mon_timer, ieee80211_sta_bcn_mon_timer,
2324 (unsigned long) sdata);
2325 setup_timer(&ifmgd->conn_mon_timer, ieee80211_sta_conn_mon_timer,
2326 (unsigned long) sdata);
Johannes Berg46900292009-02-15 12:44:28 +01002327 setup_timer(&ifmgd->chswitch_timer, ieee80211_chswitch_timer,
Sujithc481ec92009-01-06 09:28:37 +05302328 (unsigned long) sdata);
Johannes Berg46900292009-02-15 12:44:28 +01002329 skb_queue_head_init(&ifmgd->skb_queue);
Johannes Berg9c6bd792008-09-11 00:01:52 +02002330
Johannes Berg77fdaa12009-07-07 03:45:17 +02002331 INIT_LIST_HEAD(&ifmgd->work_list);
2332
Johannes Berg46900292009-02-15 12:44:28 +01002333 ifmgd->capab = WLAN_CAPABILITY_ESS;
Johannes Bergab1faea2009-07-01 21:41:17 +02002334 ifmgd->flags = 0;
Johannes Berg176be722009-03-12 23:49:28 +01002335 if (sdata->local->hw.queues >= 4)
Johannes Berg46900292009-02-15 12:44:28 +01002336 ifmgd->flags |= IEEE80211_STA_WMM_ENABLED;
Johannes Bergbbbdff92009-04-16 13:27:42 +02002337
Johannes Berg77fdaa12009-07-07 03:45:17 +02002338 mutex_init(&ifmgd->mtx);
Johannes Berg9c6bd792008-09-11 00:01:52 +02002339}
2340
2341/* scan finished notification */
Johannes Berg0a51b272008-09-08 17:44:25 +02002342void ieee80211_mlme_notify_scan_completed(struct ieee80211_local *local)
2343{
2344 struct ieee80211_sub_if_data *sdata = local->scan_sdata;
Johannes Berga1678f82008-09-11 00:01:47 +02002345
2346 /* Restart STA timers */
2347 rcu_read_lock();
2348 list_for_each_entry_rcu(sdata, &local->interfaces, list)
2349 ieee80211_restart_sta_timer(sdata);
2350 rcu_read_unlock();
Johannes Berg0a51b272008-09-08 17:44:25 +02002351}
Johannes Berg10f644a2009-04-16 13:17:25 +02002352
2353int ieee80211_max_network_latency(struct notifier_block *nb,
2354 unsigned long data, void *dummy)
2355{
2356 s32 latency_usec = (s32) data;
2357 struct ieee80211_local *local =
2358 container_of(nb, struct ieee80211_local,
2359 network_latency_notifier);
2360
2361 mutex_lock(&local->iflist_mtx);
2362 ieee80211_recalc_ps(local, latency_usec);
2363 mutex_unlock(&local->iflist_mtx);
2364
2365 return 0;
2366}
Johannes Berg77fdaa12009-07-07 03:45:17 +02002367
2368/* config hooks */
2369int ieee80211_mgd_auth(struct ieee80211_sub_if_data *sdata,
2370 struct cfg80211_auth_request *req)
2371{
2372 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2373 const u8 *ssid;
2374 struct ieee80211_mgd_work *wk;
2375 u16 auth_alg;
2376
2377 switch (req->auth_type) {
2378 case NL80211_AUTHTYPE_OPEN_SYSTEM:
2379 auth_alg = WLAN_AUTH_OPEN;
2380 break;
2381 case NL80211_AUTHTYPE_SHARED_KEY:
2382 auth_alg = WLAN_AUTH_SHARED_KEY;
2383 break;
2384 case NL80211_AUTHTYPE_FT:
2385 auth_alg = WLAN_AUTH_FT;
2386 break;
2387 case NL80211_AUTHTYPE_NETWORK_EAP:
2388 auth_alg = WLAN_AUTH_LEAP;
2389 break;
2390 default:
2391 return -EOPNOTSUPP;
2392 }
2393
2394 wk = kzalloc(sizeof(*wk) + req->ie_len, GFP_KERNEL);
2395 if (!wk)
2396 return -ENOMEM;
2397
2398 wk->bss = (void *)req->bss;
2399
2400 if (req->ie && req->ie_len) {
2401 memcpy(wk->ie, req->ie, req->ie_len);
2402 wk->ie_len = req->ie_len;
2403 }
2404
Johannes Bergfffd0932009-07-08 14:22:54 +02002405 if (req->key && req->key_len) {
2406 wk->key_len = req->key_len;
2407 wk->key_idx = req->key_idx;
2408 memcpy(wk->key, req->key, req->key_len);
2409 }
2410
Johannes Berg77fdaa12009-07-07 03:45:17 +02002411 ssid = ieee80211_bss_get_ie(req->bss, WLAN_EID_SSID);
2412 memcpy(wk->ssid, ssid + 2, ssid[1]);
2413 wk->ssid_len = ssid[1];
2414
2415 wk->state = IEEE80211_MGD_STATE_PROBE;
2416 wk->auth_alg = auth_alg;
Johannes Berg48531842009-07-23 16:50:16 +02002417 wk->timeout = jiffies; /* run right away */
Johannes Berg77fdaa12009-07-07 03:45:17 +02002418
2419 /*
2420 * XXX: if still associated need to tell AP that we're going
2421 * to sleep and then change channel etc.
2422 */
2423 sdata->local->oper_channel = req->bss->channel;
2424 ieee80211_hw_config(sdata->local, 0);
2425
2426 mutex_lock(&ifmgd->mtx);
2427 list_add(&wk->list, &sdata->u.mgd.work_list);
2428 mutex_unlock(&ifmgd->mtx);
2429
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04002430 ieee80211_queue_work(&sdata->local->hw, &sdata->u.mgd.work);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002431 return 0;
2432}
2433
2434int ieee80211_mgd_assoc(struct ieee80211_sub_if_data *sdata,
2435 struct cfg80211_assoc_request *req)
2436{
2437 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2438 struct ieee80211_mgd_work *wk, *found = NULL;
2439 int i, err;
2440
2441 mutex_lock(&ifmgd->mtx);
2442
2443 list_for_each_entry(wk, &ifmgd->work_list, list) {
2444 if (&wk->bss->cbss == req->bss &&
2445 wk->state == IEEE80211_MGD_STATE_IDLE) {
2446 found = wk;
2447 break;
2448 }
2449 }
2450
2451 if (!found) {
2452 err = -ENOLINK;
2453 goto out;
2454 }
2455
2456 list_del(&found->list);
2457
2458 wk = krealloc(found, sizeof(*wk) + req->ie_len, GFP_KERNEL);
2459 if (!wk) {
2460 list_add(&found->list, &ifmgd->work_list);
2461 err = -ENOMEM;
2462 goto out;
2463 }
2464
2465 list_add(&wk->list, &ifmgd->work_list);
2466
2467 ifmgd->flags &= ~IEEE80211_STA_DISABLE_11N;
2468
2469 for (i = 0; i < req->crypto.n_ciphers_pairwise; i++)
2470 if (req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_WEP40 ||
2471 req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_TKIP ||
2472 req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_WEP104)
2473 ifmgd->flags |= IEEE80211_STA_DISABLE_11N;
2474
2475 sdata->local->oper_channel = req->bss->channel;
2476 ieee80211_hw_config(sdata->local, 0);
2477
2478 if (req->ie && req->ie_len) {
2479 memcpy(wk->ie, req->ie, req->ie_len);
2480 wk->ie_len = req->ie_len;
2481 } else
2482 wk->ie_len = 0;
2483
2484 if (req->prev_bssid)
2485 memcpy(wk->prev_bssid, req->prev_bssid, ETH_ALEN);
2486
2487 wk->state = IEEE80211_MGD_STATE_ASSOC;
2488 wk->tries = 0;
Johannes Berg48531842009-07-23 16:50:16 +02002489 wk->timeout = jiffies; /* run right away */
Johannes Berg77fdaa12009-07-07 03:45:17 +02002490
2491 if (req->use_mfp) {
2492 ifmgd->mfp = IEEE80211_MFP_REQUIRED;
2493 ifmgd->flags |= IEEE80211_STA_MFP_ENABLED;
2494 } else {
2495 ifmgd->mfp = IEEE80211_MFP_DISABLED;
2496 ifmgd->flags &= ~IEEE80211_STA_MFP_ENABLED;
2497 }
2498
2499 if (req->crypto.control_port)
2500 ifmgd->flags |= IEEE80211_STA_CONTROL_PORT;
2501 else
2502 ifmgd->flags &= ~IEEE80211_STA_CONTROL_PORT;
2503
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04002504 ieee80211_queue_work(&sdata->local->hw, &sdata->u.mgd.work);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002505
2506 err = 0;
2507
2508 out:
2509 mutex_unlock(&ifmgd->mtx);
2510 return err;
2511}
2512
2513int ieee80211_mgd_deauth(struct ieee80211_sub_if_data *sdata,
Johannes Berg667503dd2009-07-07 03:56:11 +02002514 struct cfg80211_deauth_request *req,
2515 void *cookie)
Johannes Berg77fdaa12009-07-07 03:45:17 +02002516{
2517 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2518 struct ieee80211_mgd_work *wk;
2519 const u8 *bssid = NULL;
Johannes Berga58ce432009-11-19 12:45:42 +01002520 bool not_auth_yet = false;
Johannes Berg77fdaa12009-07-07 03:45:17 +02002521
Johannes Berg77fdaa12009-07-07 03:45:17 +02002522 mutex_lock(&ifmgd->mtx);
2523
2524 if (ifmgd->associated && &ifmgd->associated->cbss == req->bss) {
2525 bssid = req->bss->bssid;
Johannes Berge21546a2009-08-06 20:41:32 +02002526 ieee80211_set_disassoc(sdata, true);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002527 } else list_for_each_entry(wk, &ifmgd->work_list, list) {
2528 if (&wk->bss->cbss == req->bss) {
2529 bssid = req->bss->bssid;
Johannes Berga58ce432009-11-19 12:45:42 +01002530 if (wk->state == IEEE80211_MGD_STATE_PROBE)
2531 not_auth_yet = true;
Johannes Berg77fdaa12009-07-07 03:45:17 +02002532 list_del(&wk->list);
2533 kfree(wk);
2534 break;
2535 }
2536 }
2537
Johannes Berg8d8b2612009-07-25 11:58:36 +02002538 /*
Johannes Berga58ce432009-11-19 12:45:42 +01002539 * If somebody requests authentication and we haven't
2540 * sent out an auth frame yet there's no need to send
2541 * out a deauth frame either. If the state was PROBE,
2542 * then this is the case. If it's AUTH we have sent a
2543 * frame, and if it's IDLE we have completed the auth
2544 * process already.
2545 */
2546 if (not_auth_yet) {
2547 mutex_unlock(&ifmgd->mtx);
2548 __cfg80211_auth_canceled(sdata->dev, bssid);
2549 return 0;
2550 }
2551
2552 /*
Johannes Berg8d8b2612009-07-25 11:58:36 +02002553 * cfg80211 should catch this ... but it's racy since
2554 * we can receive a deauth frame, process it, hand it
2555 * to cfg80211 while that's in a locked section already
2556 * trying to tell us that the user wants to disconnect.
2557 */
2558 if (!bssid) {
Johannes Berg77fdaa12009-07-07 03:45:17 +02002559 mutex_unlock(&ifmgd->mtx);
2560 return -ENOLINK;
2561 }
2562
2563 mutex_unlock(&ifmgd->mtx);
2564
Johannes Berg0ff71612009-09-26 14:45:41 +02002565 printk(KERN_DEBUG "%s: deauthenticating from %pM by local choice (reason=%d)\n",
2566 sdata->dev->name, bssid, req->reason_code);
2567
Johannes Berg77fdaa12009-07-07 03:45:17 +02002568 ieee80211_send_deauth_disassoc(sdata, bssid,
Johannes Berg667503dd2009-07-07 03:56:11 +02002569 IEEE80211_STYPE_DEAUTH, req->reason_code,
2570 cookie);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002571
Johannes Bergbc83b682009-11-29 12:19:06 +01002572 ieee80211_recalc_idle(sdata->local);
2573
Johannes Berg77fdaa12009-07-07 03:45:17 +02002574 return 0;
2575}
2576
2577int ieee80211_mgd_disassoc(struct ieee80211_sub_if_data *sdata,
Johannes Berg667503dd2009-07-07 03:56:11 +02002578 struct cfg80211_disassoc_request *req,
2579 void *cookie)
Johannes Berg77fdaa12009-07-07 03:45:17 +02002580{
2581 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2582
Johannes Berg77fdaa12009-07-07 03:45:17 +02002583 mutex_lock(&ifmgd->mtx);
2584
Johannes Berg8d8b2612009-07-25 11:58:36 +02002585 /*
2586 * cfg80211 should catch this ... but it's racy since
2587 * we can receive a disassoc frame, process it, hand it
2588 * to cfg80211 while that's in a locked section already
2589 * trying to tell us that the user wants to disconnect.
2590 */
2591 if (&ifmgd->associated->cbss != req->bss) {
Johannes Berg77fdaa12009-07-07 03:45:17 +02002592 mutex_unlock(&ifmgd->mtx);
2593 return -ENOLINK;
2594 }
2595
Johannes Berg0ff71612009-09-26 14:45:41 +02002596 printk(KERN_DEBUG "%s: disassociating from %pM by local choice (reason=%d)\n",
2597 sdata->dev->name, req->bss->bssid, req->reason_code);
2598
Johannes Berge21546a2009-08-06 20:41:32 +02002599 ieee80211_set_disassoc(sdata, false);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002600
2601 mutex_unlock(&ifmgd->mtx);
2602
2603 ieee80211_send_deauth_disassoc(sdata, req->bss->bssid,
Johannes Berg667503dd2009-07-07 03:56:11 +02002604 IEEE80211_STYPE_DISASSOC, req->reason_code,
2605 cookie);
Johannes Bergbc83b682009-11-29 12:19:06 +01002606
2607 ieee80211_recalc_idle(sdata->local);
2608
Johannes Berg77fdaa12009-07-07 03:45:17 +02002609 return 0;
2610}