blob: 5174bfc5710dc662d396e7f4456f539fbc42573d [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
Johannes Berg5d1ec852009-12-02 12:43:43 +010078 /* caller must tell cfg80211 about internal error */
79 RX_MGMT_CFG80211_ASSOC_ERROR,
80
Johannes Berg77fdaa12009-07-07 03:45:17 +020081 /* caller must call cfg80211_auth_timeout() & free work */
82 RX_MGMT_CFG80211_AUTH_TO,
83
84 /* caller must call cfg80211_assoc_timeout() & free work */
85 RX_MGMT_CFG80211_ASSOC_TO,
86};
87
Johannes Berg5484e232008-09-08 17:44:27 +020088/* utils */
Johannes Berg77fdaa12009-07-07 03:45:17 +020089static inline void ASSERT_MGD_MTX(struct ieee80211_if_managed *ifmgd)
90{
91 WARN_ON(!mutex_is_locked(&ifmgd->mtx));
92}
93
Johannes Bergca386f32009-07-10 02:39:48 +020094/*
95 * We can have multiple work items (and connection probing)
96 * scheduling this timer, but we need to take care to only
97 * reschedule it when it should fire _earlier_ than it was
98 * asked for before, or if it's not pending right now. This
99 * function ensures that. Note that it then is required to
100 * run this function for all timeouts after the first one
101 * has happened -- the work that runs from this timer will
102 * do that.
103 */
104static void run_again(struct ieee80211_if_managed *ifmgd,
105 unsigned long timeout)
106{
107 ASSERT_MGD_MTX(ifmgd);
108
109 if (!timer_pending(&ifmgd->timer) ||
110 time_before(timeout, ifmgd->timer.expires))
111 mod_timer(&ifmgd->timer, timeout);
112}
113
Johannes Bergb291ba12009-07-10 15:29:03 +0200114static void mod_beacon_timer(struct ieee80211_sub_if_data *sdata)
115{
116 if (sdata->local->hw.flags & IEEE80211_HW_BEACON_FILTER)
117 return;
118
119 mod_timer(&sdata->u.mgd.bcn_mon_timer,
120 round_jiffies_up(jiffies + IEEE80211_BEACON_LOSS_TIME));
121}
122
Johannes Berg5484e232008-09-08 17:44:27 +0200123static int ecw2cw(int ecw)
Johannes Berg60f8b392008-09-08 17:44:22 +0200124{
Johannes Berg5484e232008-09-08 17:44:27 +0200125 return (1 << ecw) - 1;
Johannes Berg60f8b392008-09-08 17:44:22 +0200126}
127
Johannes Bergc2b13452008-09-11 00:01:55 +0200128static int ieee80211_compatible_rates(struct ieee80211_bss *bss,
Johannes Berg9ac19a92008-09-09 10:57:09 +0200129 struct ieee80211_supported_band *sband,
Johannes Berg881d9482009-01-21 15:13:48 +0100130 u32 *rates)
Johannes Berg9ac19a92008-09-09 10:57:09 +0200131{
132 int i, j, count;
133 *rates = 0;
134 count = 0;
135 for (i = 0; i < bss->supp_rates_len; i++) {
136 int rate = (bss->supp_rates[i] & 0x7F) * 5;
137
138 for (j = 0; j < sband->n_bitrates; j++)
139 if (sband->bitrates[j].bitrate == rate) {
140 *rates |= BIT(j);
141 count++;
142 break;
143 }
144 }
145
146 return count;
147}
148
Johannes Bergd5522e02009-03-30 13:23:35 +0200149/*
150 * ieee80211_enable_ht should be called only after the operating band
151 * has been determined as ht configuration depends on the hw's
152 * HT abilities for a specific band.
153 */
154static u32 ieee80211_enable_ht(struct ieee80211_sub_if_data *sdata,
155 struct ieee80211_ht_info *hti,
Johannes Berg77fdaa12009-07-07 03:45:17 +0200156 const u8 *bssid, u16 ap_ht_cap_flags)
Johannes Bergd5522e02009-03-30 13:23:35 +0200157{
158 struct ieee80211_local *local = sdata->local;
159 struct ieee80211_supported_band *sband;
Johannes Bergd5522e02009-03-30 13:23:35 +0200160 struct sta_info *sta;
161 u32 changed = 0;
Johannes Berg9ed6bcc2009-05-08 20:47:39 +0200162 u16 ht_opmode;
Johannes Bergd5522e02009-03-30 13:23:35 +0200163 bool enable_ht = true, ht_changed;
164 enum nl80211_channel_type channel_type = NL80211_CHAN_NO_HT;
165
166 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
167
Johannes Bergd5522e02009-03-30 13:23:35 +0200168 /* HT is not supported */
169 if (!sband->ht_cap.ht_supported)
170 enable_ht = false;
171
172 /* check that channel matches the right operating channel */
173 if (local->hw.conf.channel->center_freq !=
174 ieee80211_channel_to_frequency(hti->control_chan))
175 enable_ht = false;
176
177 if (enable_ht) {
178 channel_type = NL80211_CHAN_HT20;
179
180 if (!(ap_ht_cap_flags & IEEE80211_HT_CAP_40MHZ_INTOLERANT) &&
181 (sband->ht_cap.cap & IEEE80211_HT_CAP_SUP_WIDTH_20_40) &&
182 (hti->ht_param & IEEE80211_HT_PARAM_CHAN_WIDTH_ANY)) {
183 switch(hti->ht_param & IEEE80211_HT_PARAM_CHA_SEC_OFFSET) {
184 case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
Luis R. Rodriguez768777e2009-05-02 00:37:19 -0400185 if (!(local->hw.conf.channel->flags &
186 IEEE80211_CHAN_NO_HT40PLUS))
187 channel_type = NL80211_CHAN_HT40PLUS;
Johannes Bergd5522e02009-03-30 13:23:35 +0200188 break;
189 case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
Luis R. Rodriguez768777e2009-05-02 00:37:19 -0400190 if (!(local->hw.conf.channel->flags &
191 IEEE80211_CHAN_NO_HT40MINUS))
192 channel_type = NL80211_CHAN_HT40MINUS;
Johannes Bergd5522e02009-03-30 13:23:35 +0200193 break;
194 }
195 }
196 }
197
198 ht_changed = conf_is_ht(&local->hw.conf) != enable_ht ||
199 channel_type != local->hw.conf.channel_type;
200
201 local->oper_channel_type = channel_type;
202
203 if (ht_changed) {
204 /* channel_type change automatically detected */
205 ieee80211_hw_config(local, 0);
206
207 rcu_read_lock();
Johannes Bergabe60632009-11-25 17:46:18 +0100208 sta = sta_info_get(sdata, bssid);
Johannes Bergd5522e02009-03-30 13:23:35 +0200209 if (sta)
210 rate_control_rate_update(local, sband, sta,
211 IEEE80211_RC_HT_CHANGED);
Johannes Bergd5522e02009-03-30 13:23:35 +0200212 rcu_read_unlock();
Johannes Bergd5522e02009-03-30 13:23:35 +0200213 }
214
215 /* disable HT */
216 if (!enable_ht)
217 return 0;
218
Johannes Berg9ed6bcc2009-05-08 20:47:39 +0200219 ht_opmode = le16_to_cpu(hti->operation_mode);
Johannes Bergd5522e02009-03-30 13:23:35 +0200220
221 /* if bss configuration changed store the new one */
Johannes Berg413ad502009-05-08 21:21:06 +0200222 if (!sdata->ht_opmode_valid ||
223 sdata->vif.bss_conf.ht_operation_mode != ht_opmode) {
Johannes Bergd5522e02009-03-30 13:23:35 +0200224 changed |= BSS_CHANGED_HT;
Johannes Berg9ed6bcc2009-05-08 20:47:39 +0200225 sdata->vif.bss_conf.ht_operation_mode = ht_opmode;
Johannes Berg413ad502009-05-08 21:21:06 +0200226 sdata->ht_opmode_valid = true;
Johannes Bergd5522e02009-03-30 13:23:35 +0200227 }
228
229 return changed;
230}
231
Johannes Berg9c6bd792008-09-11 00:01:52 +0200232/* frame sending functions */
233
Johannes Berg77fdaa12009-07-07 03:45:17 +0200234static void ieee80211_send_assoc(struct ieee80211_sub_if_data *sdata,
235 struct ieee80211_mgd_work *wk)
Johannes Berg60f8b392008-09-08 17:44:22 +0200236{
Johannes Berg46900292009-02-15 12:44:28 +0100237 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg9ac19a92008-09-09 10:57:09 +0200238 struct ieee80211_local *local = sdata->local;
239 struct sk_buff *skb;
240 struct ieee80211_mgmt *mgmt;
Johannes Berg517357c2009-07-02 17:18:40 +0200241 u8 *pos;
242 const u8 *ies, *ht_ie;
Johannes Berg9ac19a92008-09-09 10:57:09 +0200243 int i, len, count, rates_len, supp_rates_len;
244 u16 capab;
Johannes Berg9ac19a92008-09-09 10:57:09 +0200245 int wmm = 0;
246 struct ieee80211_supported_band *sband;
Johannes Berg881d9482009-01-21 15:13:48 +0100247 u32 rates = 0;
Johannes Berg9ac19a92008-09-09 10:57:09 +0200248
249 skb = dev_alloc_skb(local->hw.extra_tx_headroom +
Johannes Berg77fdaa12009-07-07 03:45:17 +0200250 sizeof(*mgmt) + 200 + wk->ie_len +
251 wk->ssid_len);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200252 if (!skb) {
253 printk(KERN_DEBUG "%s: failed to allocate buffer for assoc "
Johannes Berg47846c92009-11-25 17:46:19 +0100254 "frame\n", sdata->name);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200255 return;
256 }
257 skb_reserve(skb, local->hw.extra_tx_headroom);
258
259 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
260
Johannes Berg46900292009-02-15 12:44:28 +0100261 capab = ifmgd->capab;
Johannes Berg9ac19a92008-09-09 10:57:09 +0200262
263 if (local->hw.conf.channel->band == IEEE80211_BAND_2GHZ) {
264 if (!(local->hw.flags & IEEE80211_HW_2GHZ_SHORT_SLOT_INCAPABLE))
265 capab |= WLAN_CAPABILITY_SHORT_SLOT_TIME;
266 if (!(local->hw.flags & IEEE80211_HW_2GHZ_SHORT_PREAMBLE_INCAPABLE))
267 capab |= WLAN_CAPABILITY_SHORT_PREAMBLE;
268 }
269
Johannes Berg77fdaa12009-07-07 03:45:17 +0200270 if (wk->bss->cbss.capability & WLAN_CAPABILITY_PRIVACY)
271 capab |= WLAN_CAPABILITY_PRIVACY;
272 if (wk->bss->wmm_used)
273 wmm = 1;
Johannes Berg9ac19a92008-09-09 10:57:09 +0200274
Johannes Berg77fdaa12009-07-07 03:45:17 +0200275 /* get all rates supported by the device and the AP as
276 * some APs don't like getting a superset of their rates
277 * in the association request (e.g. D-Link DAP 1353 in
278 * b-only mode) */
279 rates_len = ieee80211_compatible_rates(wk->bss, sband, &rates);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200280
Johannes Berg77fdaa12009-07-07 03:45:17 +0200281 if ((wk->bss->cbss.capability & WLAN_CAPABILITY_SPECTRUM_MGMT) &&
282 (local->hw.flags & IEEE80211_HW_SPECTRUM_MGMT))
283 capab |= WLAN_CAPABILITY_SPECTRUM_MGMT;
Johannes Berg9ac19a92008-09-09 10:57:09 +0200284
285 mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24);
286 memset(mgmt, 0, 24);
Johannes Berg77fdaa12009-07-07 03:45:17 +0200287 memcpy(mgmt->da, wk->bss->cbss.bssid, ETH_ALEN);
Johannes Berg47846c92009-11-25 17:46:19 +0100288 memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN);
Johannes Berg77fdaa12009-07-07 03:45:17 +0200289 memcpy(mgmt->bssid, wk->bss->cbss.bssid, ETH_ALEN);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200290
Johannes Berg77fdaa12009-07-07 03:45:17 +0200291 if (!is_zero_ether_addr(wk->prev_bssid)) {
Johannes Berg9ac19a92008-09-09 10:57:09 +0200292 skb_put(skb, 10);
293 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
294 IEEE80211_STYPE_REASSOC_REQ);
295 mgmt->u.reassoc_req.capab_info = cpu_to_le16(capab);
296 mgmt->u.reassoc_req.listen_interval =
297 cpu_to_le16(local->hw.conf.listen_interval);
Johannes Berg77fdaa12009-07-07 03:45:17 +0200298 memcpy(mgmt->u.reassoc_req.current_ap, wk->prev_bssid,
Johannes Berg9ac19a92008-09-09 10:57:09 +0200299 ETH_ALEN);
300 } else {
301 skb_put(skb, 4);
302 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
303 IEEE80211_STYPE_ASSOC_REQ);
304 mgmt->u.assoc_req.capab_info = cpu_to_le16(capab);
Rami Rosen13554122008-12-16 22:38:29 +0200305 mgmt->u.assoc_req.listen_interval =
Johannes Berg9ac19a92008-09-09 10:57:09 +0200306 cpu_to_le16(local->hw.conf.listen_interval);
307 }
308
309 /* SSID */
Johannes Berg77fdaa12009-07-07 03:45:17 +0200310 ies = pos = skb_put(skb, 2 + wk->ssid_len);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200311 *pos++ = WLAN_EID_SSID;
Johannes Berg77fdaa12009-07-07 03:45:17 +0200312 *pos++ = wk->ssid_len;
313 memcpy(pos, wk->ssid, wk->ssid_len);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200314
315 /* add all rates which were marked to be used above */
316 supp_rates_len = rates_len;
317 if (supp_rates_len > 8)
318 supp_rates_len = 8;
319
320 len = sband->n_bitrates;
321 pos = skb_put(skb, supp_rates_len + 2);
322 *pos++ = WLAN_EID_SUPP_RATES;
323 *pos++ = supp_rates_len;
324
325 count = 0;
326 for (i = 0; i < sband->n_bitrates; i++) {
327 if (BIT(i) & rates) {
328 int rate = sband->bitrates[i].bitrate;
329 *pos++ = (u8) (rate / 5);
330 if (++count == 8)
331 break;
332 }
333 }
334
335 if (rates_len > count) {
336 pos = skb_put(skb, rates_len - count + 2);
337 *pos++ = WLAN_EID_EXT_SUPP_RATES;
338 *pos++ = rates_len - count;
339
340 for (i++; i < sband->n_bitrates; i++) {
341 if (BIT(i) & rates) {
342 int rate = sband->bitrates[i].bitrate;
343 *pos++ = (u8) (rate / 5);
344 }
345 }
346 }
347
348 if (capab & WLAN_CAPABILITY_SPECTRUM_MGMT) {
349 /* 1. power capabilities */
350 pos = skb_put(skb, 4);
351 *pos++ = WLAN_EID_PWR_CAPABILITY;
352 *pos++ = 2;
353 *pos++ = 0; /* min tx power */
354 *pos++ = local->hw.conf.channel->max_power; /* max tx power */
355
356 /* 2. supported channels */
357 /* TODO: get this in reg domain format */
358 pos = skb_put(skb, 2 * sband->n_channels + 2);
359 *pos++ = WLAN_EID_SUPPORTED_CHANNELS;
360 *pos++ = 2 * sband->n_channels;
361 for (i = 0; i < sband->n_channels; i++) {
362 *pos++ = ieee80211_frequency_to_channel(
363 sband->channels[i].center_freq);
364 *pos++ = 1; /* one channel in the subband*/
365 }
366 }
367
Johannes Berg77fdaa12009-07-07 03:45:17 +0200368 if (wk->ie_len && wk->ie) {
369 pos = skb_put(skb, wk->ie_len);
370 memcpy(pos, wk->ie, wk->ie_len);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200371 }
372
Johannes Berg46900292009-02-15 12:44:28 +0100373 if (wmm && (ifmgd->flags & IEEE80211_STA_WMM_ENABLED)) {
Johannes Berg9ac19a92008-09-09 10:57:09 +0200374 pos = skb_put(skb, 9);
375 *pos++ = WLAN_EID_VENDOR_SPECIFIC;
376 *pos++ = 7; /* len */
377 *pos++ = 0x00; /* Microsoft OUI 00:50:F2 */
378 *pos++ = 0x50;
379 *pos++ = 0xf2;
380 *pos++ = 2; /* WME */
381 *pos++ = 0; /* WME info */
382 *pos++ = 1; /* WME ver */
383 *pos++ = 0;
384 }
385
386 /* wmm support is a must to HT */
Vasanthakumar Thiagarajaneb469362008-12-23 21:30:50 +0530387 /*
388 * IEEE802.11n does not allow TKIP/WEP as pairwise
389 * ciphers in HT mode. We still associate in non-ht
390 * mode (11a/b/g) if any one of these ciphers is
391 * configured as pairwise.
392 */
Johannes Berg46900292009-02-15 12:44:28 +0100393 if (wmm && (ifmgd->flags & IEEE80211_STA_WMM_ENABLED) &&
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200394 sband->ht_cap.ht_supported &&
Johannes Berg77fdaa12009-07-07 03:45:17 +0200395 (ht_ie = ieee80211_bss_get_ie(&wk->bss->cbss, WLAN_EID_HT_INFORMATION)) &&
Vasanthakumar Thiagarajaneb469362008-12-23 21:30:50 +0530396 ht_ie[1] >= sizeof(struct ieee80211_ht_info) &&
Johannes Bergab1faea2009-07-01 21:41:17 +0200397 (!(ifmgd->flags & IEEE80211_STA_DISABLE_11N))) {
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200398 struct ieee80211_ht_info *ht_info =
399 (struct ieee80211_ht_info *)(ht_ie + 2);
400 u16 cap = sband->ht_cap.cap;
Johannes Berg9ac19a92008-09-09 10:57:09 +0200401 __le16 tmp;
402 u32 flags = local->hw.conf.channel->flags;
403
Johannes Berg0f782312009-12-01 13:37:02 +0100404 /* determine capability flags */
405
Johannes Bergf38fd122009-12-01 18:29:42 +0100406 if (ieee80211_disable_40mhz_24ghz &&
407 sband->band == IEEE80211_BAND_2GHZ) {
408 cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
409 cap &= ~IEEE80211_HT_CAP_SGI_40;
410 }
411
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200412 switch (ht_info->ht_param & IEEE80211_HT_PARAM_CHA_SEC_OFFSET) {
413 case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
Luis R. Rodriguez689da1b2009-05-02 00:37:18 -0400414 if (flags & IEEE80211_CHAN_NO_HT40PLUS) {
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200415 cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
Johannes Berg9ac19a92008-09-09 10:57:09 +0200416 cap &= ~IEEE80211_HT_CAP_SGI_40;
417 }
418 break;
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200419 case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
Luis R. Rodriguez689da1b2009-05-02 00:37:18 -0400420 if (flags & IEEE80211_CHAN_NO_HT40MINUS) {
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200421 cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
Johannes Berg9ac19a92008-09-09 10:57:09 +0200422 cap &= ~IEEE80211_HT_CAP_SGI_40;
423 }
424 break;
425 }
426
Johannes Berg0f782312009-12-01 13:37:02 +0100427 /* set SM PS mode properly */
428 cap &= ~IEEE80211_HT_CAP_SM_PS;
429 /* new association always uses requested smps mode */
430 if (ifmgd->req_smps == IEEE80211_SMPS_AUTOMATIC) {
431 if (ifmgd->powersave)
432 ifmgd->ap_smps = IEEE80211_SMPS_DYNAMIC;
433 else
434 ifmgd->ap_smps = IEEE80211_SMPS_OFF;
435 } else
436 ifmgd->ap_smps = ifmgd->req_smps;
437
438 switch (ifmgd->ap_smps) {
439 case IEEE80211_SMPS_AUTOMATIC:
440 case IEEE80211_SMPS_NUM_MODES:
441 WARN_ON(1);
442 case IEEE80211_SMPS_OFF:
443 cap |= WLAN_HT_CAP_SM_PS_DISABLED <<
444 IEEE80211_HT_CAP_SM_PS_SHIFT;
445 break;
446 case IEEE80211_SMPS_STATIC:
447 cap |= WLAN_HT_CAP_SM_PS_STATIC <<
448 IEEE80211_HT_CAP_SM_PS_SHIFT;
449 break;
450 case IEEE80211_SMPS_DYNAMIC:
451 cap |= WLAN_HT_CAP_SM_PS_DYNAMIC <<
452 IEEE80211_HT_CAP_SM_PS_SHIFT;
453 break;
454 }
455
456 /* reserve and fill IE */
457
458 pos = skb_put(skb, sizeof(struct ieee80211_ht_cap) + 2);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200459 *pos++ = WLAN_EID_HT_CAPABILITY;
460 *pos++ = sizeof(struct ieee80211_ht_cap);
461 memset(pos, 0, sizeof(struct ieee80211_ht_cap));
Johannes Berg0f782312009-12-01 13:37:02 +0100462
463 /* capability flags */
464 tmp = cpu_to_le16(cap);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200465 memcpy(pos, &tmp, sizeof(u16));
466 pos += sizeof(u16);
Johannes Berg0f782312009-12-01 13:37:02 +0100467
468 /* AMPDU parameters */
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200469 *pos++ = sband->ht_cap.ampdu_factor |
Johannes Berg0f782312009-12-01 13:37:02 +0100470 (sband->ht_cap.ampdu_density <<
471 IEEE80211_HT_AMPDU_PARM_DENSITY_SHIFT);
472
473 /* MCS set */
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200474 memcpy(pos, &sband->ht_cap.mcs, sizeof(sband->ht_cap.mcs));
Johannes Berg0f782312009-12-01 13:37:02 +0100475 pos += sizeof(sband->ht_cap.mcs);
476
477 /* extended capabilities */
478 pos += sizeof(__le16);
479
480 /* BF capabilities */
481 pos += sizeof(__le32);
482
483 /* antenna selection */
484 pos += sizeof(u8);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200485 }
486
Johannes Berg62ae67b2009-11-18 18:42:05 +0100487 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
488 ieee80211_tx_skb(sdata, skb);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200489}
490
491
Johannes Bergef422bc2008-09-09 10:58:25 +0200492static void ieee80211_send_deauth_disassoc(struct ieee80211_sub_if_data *sdata,
Johannes Berg667503d2009-07-07 03:56:11 +0200493 const u8 *bssid, u16 stype, u16 reason,
494 void *cookie)
Johannes Berg9ac19a92008-09-09 10:57:09 +0200495{
496 struct ieee80211_local *local = sdata->local;
Johannes Berg46900292009-02-15 12:44:28 +0100497 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg9ac19a92008-09-09 10:57:09 +0200498 struct sk_buff *skb;
499 struct ieee80211_mgmt *mgmt;
500
Jouni Malinen65fc73a2009-03-20 21:21:16 +0200501 skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*mgmt));
Johannes Berg9ac19a92008-09-09 10:57:09 +0200502 if (!skb) {
Johannes Bergef422bc2008-09-09 10:58:25 +0200503 printk(KERN_DEBUG "%s: failed to allocate buffer for "
Johannes Berg47846c92009-11-25 17:46:19 +0100504 "deauth/disassoc frame\n", sdata->name);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200505 return;
506 }
507 skb_reserve(skb, local->hw.extra_tx_headroom);
508
509 mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24);
510 memset(mgmt, 0, 24);
Johannes Berg77fdaa12009-07-07 03:45:17 +0200511 memcpy(mgmt->da, bssid, ETH_ALEN);
Johannes Berg47846c92009-11-25 17:46:19 +0100512 memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN);
Johannes Berg77fdaa12009-07-07 03:45:17 +0200513 memcpy(mgmt->bssid, bssid, ETH_ALEN);
Johannes Bergef422bc2008-09-09 10:58:25 +0200514 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT | stype);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200515 skb_put(skb, 2);
Johannes Bergef422bc2008-09-09 10:58:25 +0200516 /* u.deauth.reason_code == u.disassoc.reason_code */
Johannes Berg9ac19a92008-09-09 10:57:09 +0200517 mgmt->u.deauth.reason_code = cpu_to_le16(reason);
518
Jouni Malinen53b46b82009-03-27 20:53:56 +0200519 if (stype == IEEE80211_STYPE_DEAUTH)
Holger Schurigce470612009-10-13 13:28:13 +0200520 if (cookie)
521 __cfg80211_send_deauth(sdata->dev, (u8 *)mgmt, skb->len);
522 else
523 cfg80211_send_deauth(sdata->dev, (u8 *)mgmt, skb->len);
Jouni Malinen53b46b82009-03-27 20:53:56 +0200524 else
Holger Schurigce470612009-10-13 13:28:13 +0200525 if (cookie)
526 __cfg80211_send_disassoc(sdata->dev, (u8 *)mgmt, skb->len);
527 else
528 cfg80211_send_disassoc(sdata->dev, (u8 *)mgmt, skb->len);
Johannes Berg62ae67b2009-11-18 18:42:05 +0100529 if (!(ifmgd->flags & IEEE80211_STA_MFP_ENABLED))
530 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
531 ieee80211_tx_skb(sdata, skb);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200532}
533
Kalle Valo572e0012009-02-10 17:09:31 +0200534void ieee80211_send_pspoll(struct ieee80211_local *local,
535 struct ieee80211_sub_if_data *sdata)
536{
Johannes Berg46900292009-02-15 12:44:28 +0100537 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Kalle Valo572e0012009-02-10 17:09:31 +0200538 struct ieee80211_pspoll *pspoll;
539 struct sk_buff *skb;
540 u16 fc;
541
542 skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*pspoll));
543 if (!skb) {
544 printk(KERN_DEBUG "%s: failed to allocate buffer for "
Johannes Berg47846c92009-11-25 17:46:19 +0100545 "pspoll frame\n", sdata->name);
Kalle Valo572e0012009-02-10 17:09:31 +0200546 return;
547 }
548 skb_reserve(skb, local->hw.extra_tx_headroom);
549
550 pspoll = (struct ieee80211_pspoll *) skb_put(skb, sizeof(*pspoll));
551 memset(pspoll, 0, sizeof(*pspoll));
552 fc = IEEE80211_FTYPE_CTL | IEEE80211_STYPE_PSPOLL | IEEE80211_FCTL_PM;
553 pspoll->frame_control = cpu_to_le16(fc);
Johannes Berg46900292009-02-15 12:44:28 +0100554 pspoll->aid = cpu_to_le16(ifmgd->aid);
Kalle Valo572e0012009-02-10 17:09:31 +0200555
556 /* aid in PS-Poll has its two MSBs each set to 1 */
557 pspoll->aid |= cpu_to_le16(1 << 15 | 1 << 14);
558
Johannes Berg46900292009-02-15 12:44:28 +0100559 memcpy(pspoll->bssid, ifmgd->bssid, ETH_ALEN);
Johannes Berg47846c92009-11-25 17:46:19 +0100560 memcpy(pspoll->ta, sdata->vif.addr, ETH_ALEN);
Kalle Valo572e0012009-02-10 17:09:31 +0200561
Johannes Berg62ae67b2009-11-18 18:42:05 +0100562 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
563 ieee80211_tx_skb(sdata, skb);
Kalle Valo572e0012009-02-10 17:09:31 +0200564}
565
Johannes Berg965beda2009-04-16 13:17:24 +0200566void ieee80211_send_nullfunc(struct ieee80211_local *local,
567 struct ieee80211_sub_if_data *sdata,
568 int powersave)
569{
570 struct sk_buff *skb;
571 struct ieee80211_hdr *nullfunc;
572 __le16 fc;
573
574 if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION))
575 return;
576
577 skb = dev_alloc_skb(local->hw.extra_tx_headroom + 24);
578 if (!skb) {
579 printk(KERN_DEBUG "%s: failed to allocate buffer for nullfunc "
Johannes Berg47846c92009-11-25 17:46:19 +0100580 "frame\n", sdata->name);
Johannes Berg965beda2009-04-16 13:17:24 +0200581 return;
582 }
583 skb_reserve(skb, local->hw.extra_tx_headroom);
584
585 nullfunc = (struct ieee80211_hdr *) skb_put(skb, 24);
586 memset(nullfunc, 0, 24);
587 fc = cpu_to_le16(IEEE80211_FTYPE_DATA | IEEE80211_STYPE_NULLFUNC |
588 IEEE80211_FCTL_TODS);
589 if (powersave)
590 fc |= cpu_to_le16(IEEE80211_FCTL_PM);
591 nullfunc->frame_control = fc;
592 memcpy(nullfunc->addr1, sdata->u.mgd.bssid, ETH_ALEN);
Johannes Berg47846c92009-11-25 17:46:19 +0100593 memcpy(nullfunc->addr2, sdata->vif.addr, ETH_ALEN);
Johannes Berg965beda2009-04-16 13:17:24 +0200594 memcpy(nullfunc->addr3, sdata->u.mgd.bssid, ETH_ALEN);
595
Johannes Berg62ae67b2009-11-18 18:42:05 +0100596 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
597 ieee80211_tx_skb(sdata, skb);
Johannes Berg965beda2009-04-16 13:17:24 +0200598}
599
Johannes Bergcc32abd2009-05-15 11:52:31 +0200600/* spectrum management related things */
601static void ieee80211_chswitch_work(struct work_struct *work)
602{
603 struct ieee80211_sub_if_data *sdata =
604 container_of(work, struct ieee80211_sub_if_data, u.mgd.chswitch_work);
Johannes Bergcc32abd2009-05-15 11:52:31 +0200605 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
606
607 if (!netif_running(sdata->dev))
608 return;
609
Johannes Berg77fdaa12009-07-07 03:45:17 +0200610 mutex_lock(&ifmgd->mtx);
611 if (!ifmgd->associated)
612 goto out;
Johannes Bergcc32abd2009-05-15 11:52:31 +0200613
614 sdata->local->oper_channel = sdata->local->csa_channel;
Johannes Berg77fdaa12009-07-07 03:45:17 +0200615 ieee80211_hw_config(sdata->local, IEEE80211_CONF_CHANGE_CHANNEL);
Johannes Bergcc32abd2009-05-15 11:52:31 +0200616
Johannes Berg77fdaa12009-07-07 03:45:17 +0200617 /* XXX: shouldn't really modify cfg80211-owned data! */
618 ifmgd->associated->cbss.channel = sdata->local->oper_channel;
619
Johannes Bergcc32abd2009-05-15 11:52:31 +0200620 ieee80211_wake_queues_by_reason(&sdata->local->hw,
621 IEEE80211_QUEUE_STOP_REASON_CSA);
Johannes Berg77fdaa12009-07-07 03:45:17 +0200622 out:
623 ifmgd->flags &= ~IEEE80211_STA_CSA_RECEIVED;
624 mutex_unlock(&ifmgd->mtx);
Johannes Bergcc32abd2009-05-15 11:52:31 +0200625}
626
627static void ieee80211_chswitch_timer(unsigned long data)
628{
629 struct ieee80211_sub_if_data *sdata =
630 (struct ieee80211_sub_if_data *) data;
631 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
632
Johannes Berg5bb644a2009-05-17 11:40:42 +0200633 if (sdata->local->quiescing) {
634 set_bit(TMR_RUNNING_CHANSW, &ifmgd->timers_running);
635 return;
636 }
637
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -0400638 ieee80211_queue_work(&sdata->local->hw, &ifmgd->chswitch_work);
Johannes Bergcc32abd2009-05-15 11:52:31 +0200639}
640
641void ieee80211_sta_process_chanswitch(struct ieee80211_sub_if_data *sdata,
642 struct ieee80211_channel_sw_ie *sw_elem,
643 struct ieee80211_bss *bss)
644{
645 struct ieee80211_channel *new_ch;
646 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
647 int new_freq = ieee80211_channel_to_frequency(sw_elem->new_ch_num);
648
Johannes Berg77fdaa12009-07-07 03:45:17 +0200649 ASSERT_MGD_MTX(ifmgd);
650
651 if (!ifmgd->associated)
Johannes Bergcc32abd2009-05-15 11:52:31 +0200652 return;
653
Helmut Schaafbe9c422009-07-23 12:14:04 +0200654 if (sdata->local->scanning)
Johannes Bergcc32abd2009-05-15 11:52:31 +0200655 return;
656
657 /* Disregard subsequent beacons if we are already running a timer
658 processing a CSA */
659
660 if (ifmgd->flags & IEEE80211_STA_CSA_RECEIVED)
661 return;
662
663 new_ch = ieee80211_get_channel(sdata->local->hw.wiphy, new_freq);
664 if (!new_ch || new_ch->flags & IEEE80211_CHAN_DISABLED)
665 return;
666
667 sdata->local->csa_channel = new_ch;
668
669 if (sw_elem->count <= 1) {
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -0400670 ieee80211_queue_work(&sdata->local->hw, &ifmgd->chswitch_work);
Johannes Bergcc32abd2009-05-15 11:52:31 +0200671 } else {
672 ieee80211_stop_queues_by_reason(&sdata->local->hw,
673 IEEE80211_QUEUE_STOP_REASON_CSA);
674 ifmgd->flags |= IEEE80211_STA_CSA_RECEIVED;
675 mod_timer(&ifmgd->chswitch_timer,
676 jiffies +
677 msecs_to_jiffies(sw_elem->count *
678 bss->cbss.beacon_interval));
679 }
680}
681
682static void ieee80211_handle_pwr_constr(struct ieee80211_sub_if_data *sdata,
683 u16 capab_info, u8 *pwr_constr_elem,
684 u8 pwr_constr_elem_len)
685{
686 struct ieee80211_conf *conf = &sdata->local->hw.conf;
687
688 if (!(capab_info & WLAN_CAPABILITY_SPECTRUM_MGMT))
689 return;
690
691 /* Power constraint IE length should be 1 octet */
692 if (pwr_constr_elem_len != 1)
693 return;
694
695 if ((*pwr_constr_elem <= conf->channel->max_power) &&
696 (*pwr_constr_elem != sdata->local->power_constr_level)) {
697 sdata->local->power_constr_level = *pwr_constr_elem;
698 ieee80211_hw_config(sdata->local, 0);
699 }
700}
701
Johannes Berg965beda2009-04-16 13:17:24 +0200702/* powersave */
703static void ieee80211_enable_ps(struct ieee80211_local *local,
704 struct ieee80211_sub_if_data *sdata)
705{
706 struct ieee80211_conf *conf = &local->hw.conf;
707
Johannes Bergd5edaed2009-04-22 23:02:51 +0200708 /*
709 * If we are scanning right now then the parameters will
710 * take effect when scan finishes.
711 */
Helmut Schaafbe9c422009-07-23 12:14:04 +0200712 if (local->scanning)
Johannes Bergd5edaed2009-04-22 23:02:51 +0200713 return;
714
Johannes Berg965beda2009-04-16 13:17:24 +0200715 if (conf->dynamic_ps_timeout > 0 &&
716 !(local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS)) {
717 mod_timer(&local->dynamic_ps_timer, jiffies +
718 msecs_to_jiffies(conf->dynamic_ps_timeout));
719 } else {
720 if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)
721 ieee80211_send_nullfunc(local, sdata, 1);
722 conf->flags |= IEEE80211_CONF_PS;
723 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
724 }
725}
726
727static void ieee80211_change_ps(struct ieee80211_local *local)
728{
729 struct ieee80211_conf *conf = &local->hw.conf;
730
731 if (local->ps_sdata) {
Johannes Berg965beda2009-04-16 13:17:24 +0200732 ieee80211_enable_ps(local, local->ps_sdata);
733 } else if (conf->flags & IEEE80211_CONF_PS) {
734 conf->flags &= ~IEEE80211_CONF_PS;
735 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
736 del_timer_sync(&local->dynamic_ps_timer);
737 cancel_work_sync(&local->dynamic_ps_enable_work);
738 }
739}
740
741/* need to hold RTNL or interface lock */
Johannes Berg10f644a2009-04-16 13:17:25 +0200742void ieee80211_recalc_ps(struct ieee80211_local *local, s32 latency)
Johannes Berg965beda2009-04-16 13:17:24 +0200743{
744 struct ieee80211_sub_if_data *sdata, *found = NULL;
745 int count = 0;
746
747 if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_PS)) {
748 local->ps_sdata = NULL;
749 return;
750 }
751
752 list_for_each_entry(sdata, &local->interfaces, list) {
753 if (!netif_running(sdata->dev))
754 continue;
755 if (sdata->vif.type != NL80211_IFTYPE_STATION)
756 continue;
757 found = sdata;
758 count++;
759 }
760
Luis R. Rodriguez43f78532009-06-10 15:16:15 +0200761 if (count == 1 && found->u.mgd.powersave &&
Johannes Berg77fdaa12009-07-07 03:45:17 +0200762 found->u.mgd.associated && list_empty(&found->u.mgd.work_list) &&
Johannes Bergb291ba12009-07-10 15:29:03 +0200763 !(found->u.mgd.flags & (IEEE80211_STA_BEACON_POLL |
764 IEEE80211_STA_CONNECTION_POLL))) {
Johannes Berg10f644a2009-04-16 13:17:25 +0200765 s32 beaconint_us;
766
767 if (latency < 0)
768 latency = pm_qos_requirement(PM_QOS_NETWORK_LATENCY);
769
770 beaconint_us = ieee80211_tu_to_usec(
771 found->vif.bss_conf.beacon_int);
772
Johannes Berg04fe2032009-04-22 18:44:37 +0200773 if (beaconint_us > latency) {
Johannes Berg10f644a2009-04-16 13:17:25 +0200774 local->ps_sdata = NULL;
Johannes Berg04fe2032009-04-22 18:44:37 +0200775 } else {
776 u8 dtimper = found->vif.bss_conf.dtim_period;
777 int maxslp = 1;
778
779 if (dtimper > 1)
780 maxslp = min_t(int, dtimper,
781 latency / beaconint_us);
782
Johannes Berg9ccebe62009-04-23 10:32:36 +0200783 local->hw.conf.max_sleep_period = maxslp;
Johannes Berg10f644a2009-04-16 13:17:25 +0200784 local->ps_sdata = found;
Johannes Berg04fe2032009-04-22 18:44:37 +0200785 }
Johannes Berg10f644a2009-04-16 13:17:25 +0200786 } else {
Johannes Berg965beda2009-04-16 13:17:24 +0200787 local->ps_sdata = NULL;
Johannes Berg10f644a2009-04-16 13:17:25 +0200788 }
Johannes Berg965beda2009-04-16 13:17:24 +0200789
790 ieee80211_change_ps(local);
791}
792
793void ieee80211_dynamic_ps_disable_work(struct work_struct *work)
794{
795 struct ieee80211_local *local =
796 container_of(work, struct ieee80211_local,
797 dynamic_ps_disable_work);
798
799 if (local->hw.conf.flags & IEEE80211_CONF_PS) {
800 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
801 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
802 }
803
804 ieee80211_wake_queues_by_reason(&local->hw,
805 IEEE80211_QUEUE_STOP_REASON_PS);
806}
807
808void ieee80211_dynamic_ps_enable_work(struct work_struct *work)
809{
810 struct ieee80211_local *local =
811 container_of(work, struct ieee80211_local,
812 dynamic_ps_enable_work);
813 struct ieee80211_sub_if_data *sdata = local->ps_sdata;
814
815 /* can only happen when PS was just disabled anyway */
816 if (!sdata)
817 return;
818
819 if (local->hw.conf.flags & IEEE80211_CONF_PS)
820 return;
821
822 if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)
823 ieee80211_send_nullfunc(local, sdata, 1);
824
825 local->hw.conf.flags |= IEEE80211_CONF_PS;
826 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
827}
828
829void ieee80211_dynamic_ps_timer(unsigned long data)
830{
831 struct ieee80211_local *local = (void *) data;
832
Luis R. Rodriguez78f1a8b2009-07-27 08:38:25 -0700833 if (local->quiescing || local->suspended)
Johannes Berg5bb644a2009-05-17 11:40:42 +0200834 return;
835
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -0400836 ieee80211_queue_work(&local->hw, &local->dynamic_ps_enable_work);
Johannes Berg965beda2009-04-16 13:17:24 +0200837}
838
Johannes Berg60f8b392008-09-08 17:44:22 +0200839/* MLME */
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200840static void ieee80211_sta_wmm_params(struct ieee80211_local *local,
Johannes Berg46900292009-02-15 12:44:28 +0100841 struct ieee80211_if_managed *ifmgd,
Jiri Bencf0706e82007-05-05 11:45:53 -0700842 u8 *wmm_param, size_t wmm_param_len)
843{
Jiri Bencf0706e82007-05-05 11:45:53 -0700844 struct ieee80211_tx_queue_params params;
845 size_t left;
846 int count;
847 u8 *pos;
848
Johannes Berg46900292009-02-15 12:44:28 +0100849 if (!(ifmgd->flags & IEEE80211_STA_WMM_ENABLED))
Johannes Berg3434fbd2008-05-03 00:59:37 +0200850 return;
851
852 if (!wmm_param)
853 return;
854
Jiri Bencf0706e82007-05-05 11:45:53 -0700855 if (wmm_param_len < 8 || wmm_param[5] /* version */ != 1)
856 return;
857 count = wmm_param[6] & 0x0f;
Johannes Berg46900292009-02-15 12:44:28 +0100858 if (count == ifmgd->wmm_last_param_set)
Jiri Bencf0706e82007-05-05 11:45:53 -0700859 return;
Johannes Berg46900292009-02-15 12:44:28 +0100860 ifmgd->wmm_last_param_set = count;
Jiri Bencf0706e82007-05-05 11:45:53 -0700861
862 pos = wmm_param + 8;
863 left = wmm_param_len - 8;
864
865 memset(&params, 0, sizeof(params));
866
Jiri Bencf0706e82007-05-05 11:45:53 -0700867 local->wmm_acm = 0;
868 for (; left >= 4; left -= 4, pos += 4) {
869 int aci = (pos[0] >> 5) & 0x03;
870 int acm = (pos[0] >> 4) & 0x01;
871 int queue;
872
873 switch (aci) {
Jouni Malinen0eeb59f2009-03-05 17:23:46 +0200874 case 1: /* AC_BK */
Johannes Berge100bb62008-04-30 18:51:21 +0200875 queue = 3;
Johannes Berg988c0f72008-04-17 19:21:22 +0200876 if (acm)
Jouni Malinen0eeb59f2009-03-05 17:23:46 +0200877 local->wmm_acm |= BIT(1) | BIT(2); /* BK/- */
Jiri Bencf0706e82007-05-05 11:45:53 -0700878 break;
Jouni Malinen0eeb59f2009-03-05 17:23:46 +0200879 case 2: /* AC_VI */
Johannes Berge100bb62008-04-30 18:51:21 +0200880 queue = 1;
Johannes Berg988c0f72008-04-17 19:21:22 +0200881 if (acm)
Jouni Malinen0eeb59f2009-03-05 17:23:46 +0200882 local->wmm_acm |= BIT(4) | BIT(5); /* CL/VI */
Jiri Bencf0706e82007-05-05 11:45:53 -0700883 break;
Jouni Malinen0eeb59f2009-03-05 17:23:46 +0200884 case 3: /* AC_VO */
Johannes Berge100bb62008-04-30 18:51:21 +0200885 queue = 0;
Johannes Berg988c0f72008-04-17 19:21:22 +0200886 if (acm)
Jouni Malinen0eeb59f2009-03-05 17:23:46 +0200887 local->wmm_acm |= BIT(6) | BIT(7); /* VO/NC */
Jiri Bencf0706e82007-05-05 11:45:53 -0700888 break;
Jouni Malinen0eeb59f2009-03-05 17:23:46 +0200889 case 0: /* AC_BE */
Jiri Bencf0706e82007-05-05 11:45:53 -0700890 default:
Johannes Berge100bb62008-04-30 18:51:21 +0200891 queue = 2;
Johannes Berg988c0f72008-04-17 19:21:22 +0200892 if (acm)
Jouni Malinen0eeb59f2009-03-05 17:23:46 +0200893 local->wmm_acm |= BIT(0) | BIT(3); /* BE/EE */
Jiri Bencf0706e82007-05-05 11:45:53 -0700894 break;
895 }
896
897 params.aifs = pos[0] & 0x0f;
898 params.cw_max = ecw2cw((pos[1] & 0xf0) >> 4);
899 params.cw_min = ecw2cw(pos[1] & 0x0f);
Johannes Bergf434b2d2008-07-10 11:22:31 +0200900 params.txop = get_unaligned_le16(pos + 2);
Johannes Bergf4ea83d2008-06-30 15:10:46 +0200901#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Jiri Bencf0706e82007-05-05 11:45:53 -0700902 printk(KERN_DEBUG "%s: WMM queue=%d aci=%d acm=%d aifs=%d "
Johannes Berg3330d7b2008-02-10 16:49:38 +0100903 "cWmin=%d cWmax=%d txop=%d\n",
Johannes Berg0bffe402009-06-09 16:18:32 +0200904 wiphy_name(local->hw.wiphy), queue, aci, acm,
905 params.aifs, params.cw_min, params.cw_max, params.txop);
Johannes Berg3330d7b2008-02-10 16:49:38 +0100906#endif
Johannes Berg24487982009-04-23 18:52:52 +0200907 if (drv_conf_tx(local, queue, &params) && local->ops->conf_tx)
Jiri Bencf0706e82007-05-05 11:45:53 -0700908 printk(KERN_DEBUG "%s: failed to set TX queue "
Johannes Berg0bffe402009-06-09 16:18:32 +0200909 "parameters for queue %d\n",
910 wiphy_name(local->hw.wiphy), queue);
Jiri Bencf0706e82007-05-05 11:45:53 -0700911 }
912}
913
Johannes Berg7a5158e2008-10-08 10:59:33 +0200914static u32 ieee80211_handle_bss_capability(struct ieee80211_sub_if_data *sdata,
915 u16 capab, bool erp_valid, u8 erp)
Daniel Drake56282212007-07-10 19:32:10 +0200916{
Johannes Bergbda39332008-10-11 01:51:51 +0200917 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
Johannes Berg471b3ef2007-12-28 14:32:58 +0100918 u32 changed = 0;
Johannes Berg7a5158e2008-10-08 10:59:33 +0200919 bool use_protection;
920 bool use_short_preamble;
921 bool use_short_slot;
922
923 if (erp_valid) {
924 use_protection = (erp & WLAN_ERP_USE_PROTECTION) != 0;
925 use_short_preamble = (erp & WLAN_ERP_BARKER_PREAMBLE) == 0;
926 } else {
927 use_protection = false;
928 use_short_preamble = !!(capab & WLAN_CAPABILITY_SHORT_PREAMBLE);
929 }
930
931 use_short_slot = !!(capab & WLAN_CAPABILITY_SHORT_SLOT_TIME);
Daniel Drake56282212007-07-10 19:32:10 +0200932
Johannes Berg471b3ef2007-12-28 14:32:58 +0100933 if (use_protection != bss_conf->use_cts_prot) {
Johannes Berg471b3ef2007-12-28 14:32:58 +0100934 bss_conf->use_cts_prot = use_protection;
935 changed |= BSS_CHANGED_ERP_CTS_PROT;
Daniel Drake56282212007-07-10 19:32:10 +0200936 }
Daniel Drake7e9ed182007-07-27 15:43:24 +0200937
Vladimir Koutnyd43c7b32008-03-31 17:05:03 +0200938 if (use_short_preamble != bss_conf->use_short_preamble) {
Vladimir Koutnyd43c7b32008-03-31 17:05:03 +0200939 bss_conf->use_short_preamble = use_short_preamble;
Johannes Berg471b3ef2007-12-28 14:32:58 +0100940 changed |= BSS_CHANGED_ERP_PREAMBLE;
Daniel Drake7e9ed182007-07-27 15:43:24 +0200941 }
Daniel Draked9430a32007-07-27 15:43:24 +0200942
Johannes Berg7a5158e2008-10-08 10:59:33 +0200943 if (use_short_slot != bss_conf->use_short_slot) {
Johannes Berg7a5158e2008-10-08 10:59:33 +0200944 bss_conf->use_short_slot = use_short_slot;
945 changed |= BSS_CHANGED_ERP_SLOT;
John W. Linville50c4afb2008-04-15 14:09:27 -0400946 }
947
948 return changed;
949}
950
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200951static void ieee80211_set_associated(struct ieee80211_sub_if_data *sdata,
Johannes Berge21546a2009-08-06 20:41:32 +0200952 struct ieee80211_mgd_work *wk,
Johannes Bergae5eb022008-10-14 16:58:37 +0200953 u32 bss_info_changed)
Jiri Bencf0706e82007-05-05 11:45:53 -0700954{
Johannes Berg471b3ef2007-12-28 14:32:58 +0100955 struct ieee80211_local *local = sdata->local;
Johannes Berge21546a2009-08-06 20:41:32 +0200956 struct ieee80211_bss *bss = wk->bss;
Jiri Slabyd6f2da52007-08-28 17:01:54 -0400957
Johannes Bergae5eb022008-10-14 16:58:37 +0200958 bss_info_changed |= BSS_CHANGED_ASSOC;
Johannes Berg77fdaa12009-07-07 03:45:17 +0200959 /* set timing information */
960 sdata->vif.bss_conf.beacon_int = bss->cbss.beacon_interval;
961 sdata->vif.bss_conf.timestamp = bss->cbss.tsf;
962 sdata->vif.bss_conf.dtim_period = bss->dtim_period;
Jiri Slabyd6f2da52007-08-28 17:01:54 -0400963
Johannes Berg77fdaa12009-07-07 03:45:17 +0200964 bss_info_changed |= BSS_CHANGED_BEACON_INT;
965 bss_info_changed |= ieee80211_handle_bss_capability(sdata,
966 bss->cbss.capability, bss->has_erp_value, bss->erp_value);
Tomas Winkler21c0cbe2008-03-28 16:33:34 -0700967
Johannes Berg77fdaa12009-07-07 03:45:17 +0200968 sdata->u.mgd.associated = bss;
Johannes Berge21546a2009-08-06 20:41:32 +0200969 sdata->u.mgd.old_associate_work = wk;
Johannes Berg77fdaa12009-07-07 03:45:17 +0200970 memcpy(sdata->u.mgd.bssid, bss->cbss.bssid, ETH_ALEN);
Johannes Berg471b3ef2007-12-28 14:32:58 +0100971
Johannes Bergb291ba12009-07-10 15:29:03 +0200972 /* just to be sure */
973 sdata->u.mgd.flags &= ~(IEEE80211_STA_CONNECTION_POLL |
974 IEEE80211_STA_BEACON_POLL);
975
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200976 ieee80211_led_assoc(local, 1);
977
Johannes Bergbda39332008-10-11 01:51:51 +0200978 sdata->vif.bss_conf.assoc = 1;
Johannes Berg96dd22a2008-09-11 00:01:57 +0200979 /*
980 * For now just always ask the driver to update the basic rateset
981 * when we have associated, we aren't checking whether it actually
982 * changed or not.
983 */
Johannes Bergae5eb022008-10-14 16:58:37 +0200984 bss_info_changed |= BSS_CHANGED_BASIC_RATES;
Johannes Berg9cef8732009-05-14 13:10:14 +0200985
986 /* And the BSSID changed - we're associated now */
987 bss_info_changed |= BSS_CHANGED_BSSID;
988
Johannes Bergae5eb022008-10-14 16:58:37 +0200989 ieee80211_bss_info_change_notify(sdata, bss_info_changed);
Guy Cohen8db93692008-07-03 19:56:13 +0300990
Johannes Berg056508d2009-07-30 21:43:55 +0200991 mutex_lock(&local->iflist_mtx);
992 ieee80211_recalc_ps(local, -1);
Johannes Berg0f782312009-12-01 13:37:02 +0100993 ieee80211_recalc_smps(local, sdata);
Johannes Berg056508d2009-07-30 21:43:55 +0200994 mutex_unlock(&local->iflist_mtx);
Kalle Valoe0cb6862008-12-18 23:35:13 +0200995
John W. Linville53623f12009-10-15 15:10:16 -0400996 netif_start_queue(sdata->dev);
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200997 netif_carrier_on(sdata->dev);
Jiri Bencf0706e82007-05-05 11:45:53 -0700998}
999
Johannes Berg77fdaa12009-07-07 03:45:17 +02001000static enum rx_mgmt_action __must_check
1001ieee80211_direct_probe(struct ieee80211_sub_if_data *sdata,
1002 struct ieee80211_mgd_work *wk)
Ron Rindjunsky9859b812008-08-09 03:02:19 +03001003{
Johannes Berg46900292009-02-15 12:44:28 +01001004 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Helmut Schaa11432372009-03-12 14:04:34 +01001005 struct ieee80211_local *local = sdata->local;
Johannes Berg46900292009-02-15 12:44:28 +01001006
Johannes Berg77fdaa12009-07-07 03:45:17 +02001007 wk->tries++;
1008 if (wk->tries > IEEE80211_AUTH_MAX_TRIES) {
Johannes Berg0c68ae262008-10-27 15:56:10 -07001009 printk(KERN_DEBUG "%s: direct probe to AP %pM timed out\n",
Johannes Berg47846c92009-11-25 17:46:19 +01001010 sdata->name, wk->bss->cbss.bssid);
Vasanthakumar Thiagarajan7a947082009-02-04 18:28:48 +05301011
1012 /*
1013 * Most likely AP is not in the range so remove the
Johannes Berg77fdaa12009-07-07 03:45:17 +02001014 * bss struct for that AP.
Vasanthakumar Thiagarajan7a947082009-02-04 18:28:48 +05301015 */
Johannes Berg77fdaa12009-07-07 03:45:17 +02001016 cfg80211_unlink_bss(local->hw.wiphy, &wk->bss->cbss);
Helmut Schaa11432372009-03-12 14:04:34 +01001017
1018 /*
1019 * We might have a pending scan which had no chance to run yet
Johannes Berg77fdaa12009-07-07 03:45:17 +02001020 * due to work needing to be done. Hence, queue the STAs work
1021 * again for that.
Helmut Schaa11432372009-03-12 14:04:34 +01001022 */
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04001023 ieee80211_queue_work(&local->hw, &ifmgd->work);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001024 return RX_MGMT_CFG80211_AUTH_TO;
Ron Rindjunsky9859b812008-08-09 03:02:19 +03001025 }
1026
Johannes Berg77fdaa12009-07-07 03:45:17 +02001027 printk(KERN_DEBUG "%s: direct probe to AP %pM (try %d)\n",
Johannes Berg47846c92009-11-25 17:46:19 +01001028 sdata->name, wk->bss->cbss.bssid,
Johannes Berg77fdaa12009-07-07 03:45:17 +02001029 wk->tries);
Ron Rindjunsky9859b812008-08-09 03:02:19 +03001030
Johannes Berg77fdaa12009-07-07 03:45:17 +02001031 /*
1032 * Direct probe is sent to broadcast address as some APs
Ron Rindjunsky9859b812008-08-09 03:02:19 +03001033 * will not answer to direct packet in unassociated state.
1034 */
Johannes Berg77fdaa12009-07-07 03:45:17 +02001035 ieee80211_send_probe_req(sdata, NULL, wk->ssid, wk->ssid_len, NULL, 0);
Ron Rindjunsky9859b812008-08-09 03:02:19 +03001036
Johannes Berg77fdaa12009-07-07 03:45:17 +02001037 wk->timeout = jiffies + IEEE80211_AUTH_TIMEOUT;
Johannes Bergca386f32009-07-10 02:39:48 +02001038 run_again(ifmgd, wk->timeout);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001039
1040 return RX_MGMT_NONE;
Ron Rindjunsky9859b812008-08-09 03:02:19 +03001041}
1042
Jiri Bencf0706e82007-05-05 11:45:53 -07001043
Johannes Berg77fdaa12009-07-07 03:45:17 +02001044static enum rx_mgmt_action __must_check
1045ieee80211_authenticate(struct ieee80211_sub_if_data *sdata,
1046 struct ieee80211_mgd_work *wk)
Jiri Bencf0706e82007-05-05 11:45:53 -07001047{
Johannes Berg46900292009-02-15 12:44:28 +01001048 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Helmut Schaa11432372009-03-12 14:04:34 +01001049 struct ieee80211_local *local = sdata->local;
Johannes Berg46900292009-02-15 12:44:28 +01001050
Johannes Berg77fdaa12009-07-07 03:45:17 +02001051 wk->tries++;
1052 if (wk->tries > IEEE80211_AUTH_MAX_TRIES) {
Johannes Berg0c68ae262008-10-27 15:56:10 -07001053 printk(KERN_DEBUG "%s: authentication with AP %pM"
Jiri Bencf0706e82007-05-05 11:45:53 -07001054 " timed out\n",
Johannes Berg47846c92009-11-25 17:46:19 +01001055 sdata->name, wk->bss->cbss.bssid);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001056
1057 /*
1058 * Most likely AP is not in the range so remove the
1059 * bss struct for that AP.
1060 */
1061 cfg80211_unlink_bss(local->hw.wiphy, &wk->bss->cbss);
Helmut Schaa11432372009-03-12 14:04:34 +01001062
1063 /*
1064 * We might have a pending scan which had no chance to run yet
Johannes Berg77fdaa12009-07-07 03:45:17 +02001065 * due to work needing to be done. Hence, queue the STAs work
1066 * again for that.
Helmut Schaa11432372009-03-12 14:04:34 +01001067 */
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04001068 ieee80211_queue_work(&local->hw, &ifmgd->work);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001069 return RX_MGMT_CFG80211_AUTH_TO;
Jiri Bencf0706e82007-05-05 11:45:53 -07001070 }
1071
Johannes Berg77fdaa12009-07-07 03:45:17 +02001072 printk(KERN_DEBUG "%s: authenticate with AP %pM (try %d)\n",
Johannes Berg47846c92009-11-25 17:46:19 +01001073 sdata->name, wk->bss->cbss.bssid, wk->tries);
Jiri Bencf0706e82007-05-05 11:45:53 -07001074
Johannes Berg77fdaa12009-07-07 03:45:17 +02001075 ieee80211_send_auth(sdata, 1, wk->auth_alg, wk->ie, wk->ie_len,
Johannes Bergfffd0932009-07-08 14:22:54 +02001076 wk->bss->cbss.bssid, NULL, 0, 0);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001077 wk->auth_transaction = 2;
Jiri Bencf0706e82007-05-05 11:45:53 -07001078
Johannes Berg77fdaa12009-07-07 03:45:17 +02001079 wk->timeout = jiffies + IEEE80211_AUTH_TIMEOUT;
Johannes Bergca386f32009-07-10 02:39:48 +02001080 run_again(ifmgd, wk->timeout);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001081
1082 return RX_MGMT_NONE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001083}
1084
Johannes Berge21546a2009-08-06 20:41:32 +02001085static void ieee80211_set_disassoc(struct ieee80211_sub_if_data *sdata,
1086 bool deauth)
Tomas Winkleraa458d172008-09-09 00:32:12 +03001087{
Johannes Berg46900292009-02-15 12:44:28 +01001088 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Tomas Winkleraa458d172008-09-09 00:32:12 +03001089 struct ieee80211_local *local = sdata->local;
1090 struct sta_info *sta;
Kalle Valoe0cb6862008-12-18 23:35:13 +02001091 u32 changed = 0, config_changed = 0;
Johannes Bergb291ba12009-07-10 15:29:03 +02001092 u8 bssid[ETH_ALEN];
Tomas Winkleraa458d172008-09-09 00:32:12 +03001093
Johannes Berg77fdaa12009-07-07 03:45:17 +02001094 ASSERT_MGD_MTX(ifmgd);
1095
Johannes Bergb291ba12009-07-10 15:29:03 +02001096 if (WARN_ON(!ifmgd->associated))
1097 return;
1098
1099 memcpy(bssid, ifmgd->associated->cbss.bssid, ETH_ALEN);
1100
Johannes Berg77fdaa12009-07-07 03:45:17 +02001101 ifmgd->associated = NULL;
1102 memset(ifmgd->bssid, 0, ETH_ALEN);
1103
Johannes Berge21546a2009-08-06 20:41:32 +02001104 if (deauth) {
1105 kfree(ifmgd->old_associate_work);
1106 ifmgd->old_associate_work = NULL;
1107 } else {
1108 struct ieee80211_mgd_work *wk = ifmgd->old_associate_work;
1109
1110 wk->state = IEEE80211_MGD_STATE_IDLE;
1111 list_add(&wk->list, &ifmgd->work_list);
1112 }
1113
Johannes Berg77fdaa12009-07-07 03:45:17 +02001114 /*
1115 * we need to commit the associated = NULL change because the
1116 * scan code uses that to determine whether this iface should
1117 * go to/wake up from powersave or not -- and could otherwise
1118 * wake the queues erroneously.
1119 */
1120 smp_mb();
1121
1122 /*
1123 * Thus, we can only afterwards stop the queues -- to account
1124 * for the case where another CPU is finishing a scan at this
1125 * time -- we don't want the scan code to enable queues.
1126 */
Tomas Winkleraa458d172008-09-09 00:32:12 +03001127
John W. Linville53623f12009-10-15 15:10:16 -04001128 netif_stop_queue(sdata->dev);
Tomas Winkleraa458d172008-09-09 00:32:12 +03001129 netif_carrier_off(sdata->dev);
1130
Johannes Berg1fa6f4a2009-06-15 18:13:58 +02001131 rcu_read_lock();
Johannes Bergabe60632009-11-25 17:46:18 +01001132 sta = sta_info_get(sdata, bssid);
Johannes Berg1fa6f4a2009-06-15 18:13:58 +02001133 if (sta)
1134 ieee80211_sta_tear_down_BA_sessions(sta);
1135 rcu_read_unlock();
Tomas Winkleraa458d172008-09-09 00:32:12 +03001136
Tomas Winklerf5e5bf22008-09-08 17:33:39 +02001137 changed |= ieee80211_reset_erp_info(sdata);
1138
Tomas Winklerf5e5bf22008-09-08 17:33:39 +02001139 ieee80211_led_assoc(local, 0);
Johannes Bergae5eb022008-10-14 16:58:37 +02001140 changed |= BSS_CHANGED_ASSOC;
1141 sdata->vif.bss_conf.assoc = false;
Tomas Winklerf5e5bf22008-09-08 17:33:39 +02001142
Johannes Bergaa837e12009-05-07 16:16:24 +02001143 ieee80211_set_wmm_default(sdata);
1144
Johannes Berg5cff20e2009-04-29 12:26:17 +02001145 ieee80211_recalc_idle(local);
1146
Johannes Berg47979382009-01-07 10:13:27 +01001147 /* channel(_type) changes are handled by ieee80211_hw_config */
Sujith094d05d2008-12-12 11:57:43 +05301148 local->oper_channel_type = NL80211_CHAN_NO_HT;
Johannes Bergae5eb022008-10-14 16:58:37 +02001149
Johannes Berg413ad502009-05-08 21:21:06 +02001150 /* on the next assoc, re-program HT parameters */
1151 sdata->ht_opmode_valid = false;
1152
Vasanthakumar Thiagarajana8302de2009-01-09 18:14:15 +05301153 local->power_constr_level = 0;
1154
Kalle Valo520eb822008-12-18 23:35:27 +02001155 del_timer_sync(&local->dynamic_ps_timer);
1156 cancel_work_sync(&local->dynamic_ps_enable_work);
1157
Kalle Valoe0cb6862008-12-18 23:35:13 +02001158 if (local->hw.conf.flags & IEEE80211_CONF_PS) {
1159 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
1160 config_changed |= IEEE80211_CONF_CHANGE_PS;
1161 }
1162
1163 ieee80211_hw_config(local, config_changed);
Johannes Berg9cef8732009-05-14 13:10:14 +02001164
1165 /* And the BSSID changed -- not very interesting here */
1166 changed |= BSS_CHANGED_BSSID;
Johannes Bergae5eb022008-10-14 16:58:37 +02001167 ieee80211_bss_info_change_notify(sdata, changed);
Tomas Winkler8e268e42008-11-25 13:05:44 +02001168
1169 rcu_read_lock();
1170
Johannes Bergabe60632009-11-25 17:46:18 +01001171 sta = sta_info_get(sdata, bssid);
Tomas Winkler8e268e42008-11-25 13:05:44 +02001172 if (!sta) {
1173 rcu_read_unlock();
1174 return;
1175 }
1176
1177 sta_info_unlink(&sta);
1178
1179 rcu_read_unlock();
1180
1181 sta_info_destroy(sta);
Tomas Winkleraa458d172008-09-09 00:32:12 +03001182}
Jiri Bencf0706e82007-05-05 11:45:53 -07001183
Johannes Berg77fdaa12009-07-07 03:45:17 +02001184static enum rx_mgmt_action __must_check
1185ieee80211_associate(struct ieee80211_sub_if_data *sdata,
1186 struct ieee80211_mgd_work *wk)
Jiri Bencf0706e82007-05-05 11:45:53 -07001187{
Johannes Berg46900292009-02-15 12:44:28 +01001188 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Helmut Schaa11432372009-03-12 14:04:34 +01001189 struct ieee80211_local *local = sdata->local;
Johannes Berg46900292009-02-15 12:44:28 +01001190
Johannes Berg77fdaa12009-07-07 03:45:17 +02001191 wk->tries++;
1192 if (wk->tries > IEEE80211_ASSOC_MAX_TRIES) {
Johannes Berg0c68ae262008-10-27 15:56:10 -07001193 printk(KERN_DEBUG "%s: association with AP %pM"
Jiri Bencf0706e82007-05-05 11:45:53 -07001194 " timed out\n",
Johannes Berg47846c92009-11-25 17:46:19 +01001195 sdata->name, wk->bss->cbss.bssid);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001196
1197 /*
1198 * Most likely AP is not in the range so remove the
1199 * bss struct for that AP.
1200 */
1201 cfg80211_unlink_bss(local->hw.wiphy, &wk->bss->cbss);
1202
Helmut Schaa11432372009-03-12 14:04:34 +01001203 /*
1204 * We might have a pending scan which had no chance to run yet
Johannes Berg77fdaa12009-07-07 03:45:17 +02001205 * due to work needing to be done. Hence, queue the STAs work
1206 * again for that.
Helmut Schaa11432372009-03-12 14:04:34 +01001207 */
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04001208 ieee80211_queue_work(&local->hw, &ifmgd->work);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001209 return RX_MGMT_CFG80211_ASSOC_TO;
Jiri Bencf0706e82007-05-05 11:45:53 -07001210 }
1211
Johannes Berg77fdaa12009-07-07 03:45:17 +02001212 printk(KERN_DEBUG "%s: associate with AP %pM (try %d)\n",
Johannes Berg47846c92009-11-25 17:46:19 +01001213 sdata->name, wk->bss->cbss.bssid, wk->tries);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001214 ieee80211_send_assoc(sdata, wk);
Jiri Bencf0706e82007-05-05 11:45:53 -07001215
Johannes Berg77fdaa12009-07-07 03:45:17 +02001216 wk->timeout = jiffies + IEEE80211_ASSOC_TIMEOUT;
Johannes Bergca386f32009-07-10 02:39:48 +02001217 run_again(ifmgd, wk->timeout);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001218
1219 return RX_MGMT_NONE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001220}
1221
Kalle Valo3cf335d2009-03-22 21:57:06 +02001222void ieee80211_sta_rx_notify(struct ieee80211_sub_if_data *sdata,
1223 struct ieee80211_hdr *hdr)
1224{
1225 /*
1226 * We can postpone the mgd.timer whenever receiving unicast frames
1227 * from AP because we know that the connection is working both ways
1228 * at that time. But multicast frames (and hence also beacons) must
1229 * be ignored here, because we need to trigger the timer during
Johannes Bergb291ba12009-07-10 15:29:03 +02001230 * data idle periods for sending the periodic probe request to the
1231 * AP we're connected to.
Kalle Valo3cf335d2009-03-22 21:57:06 +02001232 */
Johannes Bergb291ba12009-07-10 15:29:03 +02001233 if (is_multicast_ether_addr(hdr->addr1))
1234 return;
1235
1236 mod_timer(&sdata->u.mgd.conn_mon_timer,
1237 round_jiffies_up(jiffies + IEEE80211_CONNECTION_IDLE_TIME));
Kalle Valo3cf335d2009-03-22 21:57:06 +02001238}
Jiri Bencf0706e82007-05-05 11:45:53 -07001239
Maxim Levitskya43abf22009-07-31 18:54:12 +03001240static void ieee80211_mgd_probe_ap_send(struct ieee80211_sub_if_data *sdata)
1241{
1242 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1243 const u8 *ssid;
1244
1245 ssid = ieee80211_bss_get_ie(&ifmgd->associated->cbss, WLAN_EID_SSID);
1246 ieee80211_send_probe_req(sdata, ifmgd->associated->cbss.bssid,
1247 ssid + 2, ssid[1], NULL, 0);
1248
1249 ifmgd->probe_send_count++;
1250 ifmgd->probe_timeout = jiffies + IEEE80211_PROBE_WAIT;
1251 run_again(ifmgd, ifmgd->probe_timeout);
1252}
1253
Johannes Bergb291ba12009-07-10 15:29:03 +02001254static void ieee80211_mgd_probe_ap(struct ieee80211_sub_if_data *sdata,
1255 bool beacon)
Kalle Valo04de8382009-03-22 21:57:35 +02001256{
Kalle Valo04de8382009-03-22 21:57:35 +02001257 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Bergb291ba12009-07-10 15:29:03 +02001258 bool already = false;
Johannes Berg34bfc412009-05-12 19:58:12 +02001259
Johannes Berg0e2b6282009-07-13 13:23:39 +02001260 if (!netif_running(sdata->dev))
1261 return;
1262
Luis R. Rodriguez91a3bd72009-07-23 16:37:47 -07001263 if (sdata->local->scanning)
1264 return;
1265
Johannes Berg77fdaa12009-07-07 03:45:17 +02001266 mutex_lock(&ifmgd->mtx);
1267
1268 if (!ifmgd->associated)
1269 goto out;
1270
Michael Buescha8604022009-04-15 14:41:22 -04001271#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Johannes Bergb291ba12009-07-10 15:29:03 +02001272 if (beacon && net_ratelimit())
1273 printk(KERN_DEBUG "%s: detected beacon loss from AP "
Johannes Berg47846c92009-11-25 17:46:19 +01001274 "- sending probe request\n", sdata->name);
Michael Buescha8604022009-04-15 14:41:22 -04001275#endif
Kalle Valo04de8382009-03-22 21:57:35 +02001276
Johannes Bergb291ba12009-07-10 15:29:03 +02001277 /*
1278 * The driver/our work has already reported this event or the
1279 * connection monitoring has kicked in and we have already sent
1280 * a probe request. Or maybe the AP died and the driver keeps
1281 * reporting until we disassociate...
1282 *
1283 * In either case we have to ignore the current call to this
1284 * function (except for setting the correct probe reason bit)
1285 * because otherwise we would reset the timer every time and
1286 * never check whether we received a probe response!
1287 */
1288 if (ifmgd->flags & (IEEE80211_STA_BEACON_POLL |
1289 IEEE80211_STA_CONNECTION_POLL))
1290 already = true;
1291
1292 if (beacon)
1293 ifmgd->flags |= IEEE80211_STA_BEACON_POLL;
1294 else
1295 ifmgd->flags |= IEEE80211_STA_CONNECTION_POLL;
1296
1297 if (already)
1298 goto out;
1299
Johannes Berg4e751842009-06-10 15:16:52 +02001300 mutex_lock(&sdata->local->iflist_mtx);
1301 ieee80211_recalc_ps(sdata->local, -1);
1302 mutex_unlock(&sdata->local->iflist_mtx);
1303
Maxim Levitskya43abf22009-07-31 18:54:12 +03001304 ifmgd->probe_send_count = 0;
1305 ieee80211_mgd_probe_ap_send(sdata);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001306 out:
1307 mutex_unlock(&ifmgd->mtx);
Kalle Valo04de8382009-03-22 21:57:35 +02001308}
1309
Johannes Bergb291ba12009-07-10 15:29:03 +02001310void ieee80211_beacon_loss_work(struct work_struct *work)
1311{
1312 struct ieee80211_sub_if_data *sdata =
1313 container_of(work, struct ieee80211_sub_if_data,
1314 u.mgd.beacon_loss_work);
1315
1316 ieee80211_mgd_probe_ap(sdata, true);
1317}
1318
Kalle Valo04de8382009-03-22 21:57:35 +02001319void ieee80211_beacon_loss(struct ieee80211_vif *vif)
1320{
1321 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
1322
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04001323 ieee80211_queue_work(&sdata->local->hw, &sdata->u.mgd.beacon_loss_work);
Kalle Valo04de8382009-03-22 21:57:35 +02001324}
1325EXPORT_SYMBOL(ieee80211_beacon_loss);
1326
Johannes Berg77fdaa12009-07-07 03:45:17 +02001327static void ieee80211_auth_completed(struct ieee80211_sub_if_data *sdata,
1328 struct ieee80211_mgd_work *wk)
Jiri Bencf0706e82007-05-05 11:45:53 -07001329{
Johannes Berg77fdaa12009-07-07 03:45:17 +02001330 wk->state = IEEE80211_MGD_STATE_IDLE;
Johannes Berg47846c92009-11-25 17:46:19 +01001331 printk(KERN_DEBUG "%s: authenticated\n", sdata->name);
Jiri Bencf0706e82007-05-05 11:45:53 -07001332}
1333
1334
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001335static void ieee80211_auth_challenge(struct ieee80211_sub_if_data *sdata,
Johannes Berg77fdaa12009-07-07 03:45:17 +02001336 struct ieee80211_mgd_work *wk,
Jiri Bencf0706e82007-05-05 11:45:53 -07001337 struct ieee80211_mgmt *mgmt,
1338 size_t len)
1339{
1340 u8 *pos;
1341 struct ieee802_11_elems elems;
1342
Jiri Bencf0706e82007-05-05 11:45:53 -07001343 pos = mgmt->u.auth.variable;
John W. Linville67a4cce2007-10-12 16:40:37 -04001344 ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), &elems);
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001345 if (!elems.challenge)
Jiri Bencf0706e82007-05-05 11:45:53 -07001346 return;
Johannes Berg77fdaa12009-07-07 03:45:17 +02001347 ieee80211_send_auth(sdata, 3, wk->auth_alg,
Johannes Berg46900292009-02-15 12:44:28 +01001348 elems.challenge - 2, elems.challenge_len + 2,
Johannes Bergfffd0932009-07-08 14:22:54 +02001349 wk->bss->cbss.bssid,
1350 wk->key, wk->key_len, wk->key_idx);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001351 wk->auth_transaction = 4;
Johannes Bergfe3d2c32009-02-10 21:26:03 +01001352}
1353
Johannes Berg77fdaa12009-07-07 03:45:17 +02001354static enum rx_mgmt_action __must_check
1355ieee80211_rx_mgmt_auth(struct ieee80211_sub_if_data *sdata,
1356 struct ieee80211_mgd_work *wk,
1357 struct ieee80211_mgmt *mgmt, size_t len)
Jiri Bencf0706e82007-05-05 11:45:53 -07001358{
Jiri Bencf0706e82007-05-05 11:45:53 -07001359 u16 auth_alg, auth_transaction, status_code;
1360
Johannes Berg77fdaa12009-07-07 03:45:17 +02001361 if (wk->state != IEEE80211_MGD_STATE_AUTH)
1362 return RX_MGMT_NONE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001363
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001364 if (len < 24 + 6)
Johannes Berg77fdaa12009-07-07 03:45:17 +02001365 return RX_MGMT_NONE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001366
Johannes Berg77fdaa12009-07-07 03:45:17 +02001367 if (memcmp(wk->bss->cbss.bssid, mgmt->sa, ETH_ALEN) != 0)
1368 return RX_MGMT_NONE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001369
Johannes Berg77fdaa12009-07-07 03:45:17 +02001370 if (memcmp(wk->bss->cbss.bssid, mgmt->bssid, ETH_ALEN) != 0)
1371 return RX_MGMT_NONE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001372
1373 auth_alg = le16_to_cpu(mgmt->u.auth.auth_alg);
1374 auth_transaction = le16_to_cpu(mgmt->u.auth.auth_transaction);
1375 status_code = le16_to_cpu(mgmt->u.auth.status_code);
1376
Johannes Berg77fdaa12009-07-07 03:45:17 +02001377 if (auth_alg != wk->auth_alg ||
1378 auth_transaction != wk->auth_transaction)
1379 return RX_MGMT_NONE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001380
1381 if (status_code != WLAN_STATUS_SUCCESS) {
Johannes Berg77fdaa12009-07-07 03:45:17 +02001382 list_del(&wk->list);
1383 kfree(wk);
1384 return RX_MGMT_CFG80211_AUTH;
Jiri Bencf0706e82007-05-05 11:45:53 -07001385 }
1386
Johannes Berg77fdaa12009-07-07 03:45:17 +02001387 switch (wk->auth_alg) {
Jiri Bencf0706e82007-05-05 11:45:53 -07001388 case WLAN_AUTH_OPEN:
1389 case WLAN_AUTH_LEAP:
Jouni Malinen636a5d32009-03-19 13:39:22 +02001390 case WLAN_AUTH_FT:
Johannes Berg77fdaa12009-07-07 03:45:17 +02001391 ieee80211_auth_completed(sdata, wk);
1392 return RX_MGMT_CFG80211_AUTH;
Jiri Bencf0706e82007-05-05 11:45:53 -07001393 case WLAN_AUTH_SHARED_KEY:
Johannes Berg77fdaa12009-07-07 03:45:17 +02001394 if (wk->auth_transaction == 4) {
1395 ieee80211_auth_completed(sdata, wk);
1396 return RX_MGMT_CFG80211_AUTH;
Jouni Malinen6039f6d2009-03-19 13:39:21 +02001397 } else
Johannes Berg77fdaa12009-07-07 03:45:17 +02001398 ieee80211_auth_challenge(sdata, wk, mgmt, len);
Jiri Bencf0706e82007-05-05 11:45:53 -07001399 break;
1400 }
Johannes Berg77fdaa12009-07-07 03:45:17 +02001401
1402 return RX_MGMT_NONE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001403}
1404
1405
Johannes Berg77fdaa12009-07-07 03:45:17 +02001406static enum rx_mgmt_action __must_check
1407ieee80211_rx_mgmt_deauth(struct ieee80211_sub_if_data *sdata,
1408 struct ieee80211_mgd_work *wk,
1409 struct ieee80211_mgmt *mgmt, size_t len)
Jiri Bencf0706e82007-05-05 11:45:53 -07001410{
Johannes Berg46900292009-02-15 12:44:28 +01001411 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg77fdaa12009-07-07 03:45:17 +02001412 const u8 *bssid = NULL;
Jiri Bencf0706e82007-05-05 11:45:53 -07001413 u16 reason_code;
1414
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001415 if (len < 24 + 2)
Johannes Berg77fdaa12009-07-07 03:45:17 +02001416 return RX_MGMT_NONE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001417
Johannes Berg77fdaa12009-07-07 03:45:17 +02001418 ASSERT_MGD_MTX(ifmgd);
1419
1420 if (wk)
1421 bssid = wk->bss->cbss.bssid;
1422 else
1423 bssid = ifmgd->associated->cbss.bssid;
Jiri Bencf0706e82007-05-05 11:45:53 -07001424
1425 reason_code = le16_to_cpu(mgmt->u.deauth.reason_code);
1426
Johannes Berg77fdaa12009-07-07 03:45:17 +02001427 printk(KERN_DEBUG "%s: deauthenticated from %pM (Reason: %u)\n",
Johannes Berg47846c92009-11-25 17:46:19 +01001428 sdata->name, bssid, reason_code);
Jiri Bencf0706e82007-05-05 11:45:53 -07001429
Johannes Berg77fdaa12009-07-07 03:45:17 +02001430 if (!wk) {
Johannes Berge21546a2009-08-06 20:41:32 +02001431 ieee80211_set_disassoc(sdata, true);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001432 } else {
1433 list_del(&wk->list);
1434 kfree(wk);
1435 }
1436
1437 return RX_MGMT_CFG80211_DEAUTH;
Jiri Bencf0706e82007-05-05 11:45:53 -07001438}
1439
1440
Johannes Berg77fdaa12009-07-07 03:45:17 +02001441static enum rx_mgmt_action __must_check
1442ieee80211_rx_mgmt_disassoc(struct ieee80211_sub_if_data *sdata,
1443 struct ieee80211_mgmt *mgmt, size_t len)
Jiri Bencf0706e82007-05-05 11:45:53 -07001444{
Johannes Berg46900292009-02-15 12:44:28 +01001445 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jiri Bencf0706e82007-05-05 11:45:53 -07001446 u16 reason_code;
1447
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001448 if (len < 24 + 2)
Johannes Berg77fdaa12009-07-07 03:45:17 +02001449 return RX_MGMT_NONE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001450
Johannes Berg77fdaa12009-07-07 03:45:17 +02001451 ASSERT_MGD_MTX(ifmgd);
1452
1453 if (WARN_ON(!ifmgd->associated))
1454 return RX_MGMT_NONE;
1455
1456 if (WARN_ON(memcmp(ifmgd->associated->cbss.bssid, mgmt->sa, ETH_ALEN)))
1457 return RX_MGMT_NONE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001458
1459 reason_code = le16_to_cpu(mgmt->u.disassoc.reason_code);
1460
Johannes Berg0ff71612009-09-26 14:45:41 +02001461 printk(KERN_DEBUG "%s: disassociated from %pM (Reason: %u)\n",
Johannes Berg47846c92009-11-25 17:46:19 +01001462 sdata->name, mgmt->sa, reason_code);
Jiri Bencf0706e82007-05-05 11:45:53 -07001463
Johannes Berge21546a2009-08-06 20:41:32 +02001464 ieee80211_set_disassoc(sdata, false);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001465 return RX_MGMT_CFG80211_DISASSOC;
Jiri Bencf0706e82007-05-05 11:45:53 -07001466}
1467
1468
Johannes Berg77fdaa12009-07-07 03:45:17 +02001469static enum rx_mgmt_action __must_check
1470ieee80211_rx_mgmt_assoc_resp(struct ieee80211_sub_if_data *sdata,
1471 struct ieee80211_mgd_work *wk,
1472 struct ieee80211_mgmt *mgmt, size_t len,
1473 bool reassoc)
Jiri Bencf0706e82007-05-05 11:45:53 -07001474{
Johannes Berg46900292009-02-15 12:44:28 +01001475 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg471b3ef2007-12-28 14:32:58 +01001476 struct ieee80211_local *local = sdata->local;
Johannes Berg8318d782008-01-24 19:38:38 +01001477 struct ieee80211_supported_band *sband;
Jiri Bencf0706e82007-05-05 11:45:53 -07001478 struct sta_info *sta;
Johannes Berg881d9482009-01-21 15:13:48 +01001479 u32 rates, basic_rates;
Jiri Bencf0706e82007-05-05 11:45:53 -07001480 u16 capab_info, status_code, aid;
1481 struct ieee802_11_elems elems;
Johannes Bergbda39332008-10-11 01:51:51 +02001482 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
Jiri Bencf0706e82007-05-05 11:45:53 -07001483 u8 *pos;
Johannes Bergae5eb022008-10-14 16:58:37 +02001484 u32 changed = 0;
Johannes Berg5d1ec852009-12-02 12:43:43 +01001485 int i, j, err;
1486 bool have_higher_than_11mbit = false;
Johannes Bergae5eb022008-10-14 16:58:37 +02001487 u16 ap_ht_cap_flags;
Jiri Bencf0706e82007-05-05 11:45:53 -07001488
Johannes Berg77fdaa12009-07-07 03:45:17 +02001489 /*
1490 * AssocResp and ReassocResp have identical structure, so process both
1491 * of them in this function.
1492 */
Jiri Bencf0706e82007-05-05 11:45:53 -07001493
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001494 if (len < 24 + 6)
Johannes Berg77fdaa12009-07-07 03:45:17 +02001495 return RX_MGMT_NONE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001496
Johannes Berg77fdaa12009-07-07 03:45:17 +02001497 if (memcmp(wk->bss->cbss.bssid, mgmt->sa, ETH_ALEN) != 0)
1498 return RX_MGMT_NONE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001499
1500 capab_info = le16_to_cpu(mgmt->u.assoc_resp.capab_info);
1501 status_code = le16_to_cpu(mgmt->u.assoc_resp.status_code);
1502 aid = le16_to_cpu(mgmt->u.assoc_resp.aid);
Jiri Bencf0706e82007-05-05 11:45:53 -07001503
Johannes Berg0c68ae262008-10-27 15:56:10 -07001504 printk(KERN_DEBUG "%s: RX %sssocResp from %pM (capab=0x%x "
Jiri Bencf0706e82007-05-05 11:45:53 -07001505 "status=%d aid=%d)\n",
Johannes Berg47846c92009-11-25 17:46:19 +01001506 sdata->name, reassoc ? "Rea" : "A", mgmt->sa,
Johannes Bergddd68582007-10-22 14:51:37 +02001507 capab_info, status_code, (u16)(aid & ~(BIT(15) | BIT(14))));
Jiri Bencf0706e82007-05-05 11:45:53 -07001508
Jouni Malinen63a5ab82009-01-08 13:32:09 +02001509 pos = mgmt->u.assoc_resp.variable;
1510 ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), &elems);
1511
1512 if (status_code == WLAN_STATUS_ASSOC_REJECTED_TEMPORARILY &&
Jouni Malinenf797eb72009-01-19 18:48:46 +02001513 elems.timeout_int && elems.timeout_int_len == 5 &&
1514 elems.timeout_int[0] == WLAN_TIMEOUT_ASSOC_COMEBACK) {
Jouni Malinen63a5ab82009-01-08 13:32:09 +02001515 u32 tu, ms;
Jouni Malinenf797eb72009-01-19 18:48:46 +02001516 tu = get_unaligned_le32(elems.timeout_int + 1);
Jouni Malinen63a5ab82009-01-08 13:32:09 +02001517 ms = tu * 1024 / 1000;
1518 printk(KERN_DEBUG "%s: AP rejected association temporarily; "
1519 "comeback duration %u TU (%u ms)\n",
Johannes Berg47846c92009-11-25 17:46:19 +01001520 sdata->name, tu, ms);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001521 wk->timeout = jiffies + msecs_to_jiffies(ms);
Jouni Malinen63a5ab82009-01-08 13:32:09 +02001522 if (ms > IEEE80211_ASSOC_TIMEOUT)
Johannes Bergca386f32009-07-10 02:39:48 +02001523 run_again(ifmgd, jiffies + msecs_to_jiffies(ms));
Johannes Berg77fdaa12009-07-07 03:45:17 +02001524 return RX_MGMT_NONE;
Jouni Malinen63a5ab82009-01-08 13:32:09 +02001525 }
1526
Jiri Bencf0706e82007-05-05 11:45:53 -07001527 if (status_code != WLAN_STATUS_SUCCESS) {
1528 printk(KERN_DEBUG "%s: AP denied association (code=%d)\n",
Johannes Berg47846c92009-11-25 17:46:19 +01001529 sdata->name, status_code);
Johannes Berg2ef6e442009-10-20 15:08:12 +09001530 wk->state = IEEE80211_MGD_STATE_IDLE;
Johannes Berg77fdaa12009-07-07 03:45:17 +02001531 return RX_MGMT_CFG80211_ASSOC;
Jiri Bencf0706e82007-05-05 11:45:53 -07001532 }
1533
Johannes Berg1dd84aa2007-10-10 12:03:41 +02001534 if ((aid & (BIT(15) | BIT(14))) != (BIT(15) | BIT(14)))
1535 printk(KERN_DEBUG "%s: invalid aid value %d; bits 15:14 not "
Johannes Berg47846c92009-11-25 17:46:19 +01001536 "set\n", sdata->name, aid);
Johannes Berg1dd84aa2007-10-10 12:03:41 +02001537 aid &= ~(BIT(15) | BIT(14));
1538
Jiri Bencf0706e82007-05-05 11:45:53 -07001539 if (!elems.supp_rates) {
1540 printk(KERN_DEBUG "%s: no SuppRates element in AssocResp\n",
Johannes Berg47846c92009-11-25 17:46:19 +01001541 sdata->name);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001542 return RX_MGMT_NONE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001543 }
1544
Johannes Berg47846c92009-11-25 17:46:19 +01001545 printk(KERN_DEBUG "%s: associated\n", sdata->name);
Johannes Berg46900292009-02-15 12:44:28 +01001546 ifmgd->aid = aid;
Jiri Bencf0706e82007-05-05 11:45:53 -07001547
Johannes Berg5d1ec852009-12-02 12:43:43 +01001548 sta = sta_info_alloc(sdata, wk->bss->cbss.bssid, GFP_KERNEL);
Jiri Bencf0706e82007-05-05 11:45:53 -07001549 if (!sta) {
Johannes Berg5d1ec852009-12-02 12:43:43 +01001550 printk(KERN_DEBUG "%s: failed to alloc STA entry for"
1551 " the AP\n", sdata->name);
1552 return RX_MGMT_CFG80211_ASSOC_ERROR;
Jiri Bencf0706e82007-05-05 11:45:53 -07001553 }
1554
Johannes Berg5d1ec852009-12-02 12:43:43 +01001555 set_sta_flags(sta, WLAN_STA_AUTH | WLAN_STA_ASSOC |
1556 WLAN_STA_ASSOC_AP);
1557 if (!(ifmgd->flags & IEEE80211_STA_CONTROL_PORT))
1558 set_sta_flags(sta, WLAN_STA_AUTHORIZED);
1559
Jiri Bencf0706e82007-05-05 11:45:53 -07001560 rates = 0;
Johannes Berg8318d782008-01-24 19:38:38 +01001561 basic_rates = 0;
1562 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
1563
Jiri Bencf0706e82007-05-05 11:45:53 -07001564 for (i = 0; i < elems.supp_rates_len; i++) {
1565 int rate = (elems.supp_rates[i] & 0x7f) * 5;
Tomas Winklerd61272c2008-10-30 17:08:08 +02001566 bool is_basic = !!(elems.supp_rates[i] & 0x80);
Johannes Berg8318d782008-01-24 19:38:38 +01001567
1568 if (rate > 110)
1569 have_higher_than_11mbit = true;
1570
1571 for (j = 0; j < sband->n_bitrates; j++) {
Tomas Winklerd61272c2008-10-30 17:08:08 +02001572 if (sband->bitrates[j].bitrate == rate) {
Jiri Bencf0706e82007-05-05 11:45:53 -07001573 rates |= BIT(j);
Tomas Winklerd61272c2008-10-30 17:08:08 +02001574 if (is_basic)
1575 basic_rates |= BIT(j);
1576 break;
1577 }
Johannes Berg8318d782008-01-24 19:38:38 +01001578 }
Jiri Bencf0706e82007-05-05 11:45:53 -07001579 }
Johannes Berg8318d782008-01-24 19:38:38 +01001580
Jiri Bencf0706e82007-05-05 11:45:53 -07001581 for (i = 0; i < elems.ext_supp_rates_len; i++) {
1582 int rate = (elems.ext_supp_rates[i] & 0x7f) * 5;
Johannes Berg7e0986c2009-04-19 13:22:11 +02001583 bool is_basic = !!(elems.ext_supp_rates[i] & 0x80);
Johannes Berg8318d782008-01-24 19:38:38 +01001584
1585 if (rate > 110)
1586 have_higher_than_11mbit = true;
1587
1588 for (j = 0; j < sband->n_bitrates; j++) {
Tomas Winklerd61272c2008-10-30 17:08:08 +02001589 if (sband->bitrates[j].bitrate == rate) {
Jiri Bencf0706e82007-05-05 11:45:53 -07001590 rates |= BIT(j);
Tomas Winklerd61272c2008-10-30 17:08:08 +02001591 if (is_basic)
1592 basic_rates |= BIT(j);
1593 break;
1594 }
Johannes Berg8318d782008-01-24 19:38:38 +01001595 }
Jiri Bencf0706e82007-05-05 11:45:53 -07001596 }
Johannes Berg8318d782008-01-24 19:38:38 +01001597
Johannes Berg323ce792008-09-11 02:45:11 +02001598 sta->sta.supp_rates[local->hw.conf.channel->band] = rates;
Johannes Bergbda39332008-10-11 01:51:51 +02001599 sdata->vif.bss_conf.basic_rates = basic_rates;
Johannes Berg8318d782008-01-24 19:38:38 +01001600
1601 /* cf. IEEE 802.11 9.2.12 */
1602 if (local->hw.conf.channel->band == IEEE80211_BAND_2GHZ &&
1603 have_higher_than_11mbit)
1604 sdata->flags |= IEEE80211_SDATA_OPERATING_GMODE;
1605 else
1606 sdata->flags &= ~IEEE80211_SDATA_OPERATING_GMODE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001607
Johannes Bergab1faea2009-07-01 21:41:17 +02001608 if (elems.ht_cap_elem && !(ifmgd->flags & IEEE80211_STA_DISABLE_11N))
Johannes Bergae5eb022008-10-14 16:58:37 +02001609 ieee80211_ht_cap_ie_to_sta_ht_cap(sband,
Johannes Bergd9fe60d2008-10-09 12:13:49 +02001610 elems.ht_cap_elem, &sta->sta.ht_cap);
Johannes Bergae5eb022008-10-14 16:58:37 +02001611
1612 ap_ht_cap_flags = sta->sta.ht_cap.cap;
Ron Rindjunskyd3c990f2007-11-26 16:14:34 +02001613
Johannes Berg4b7679a2008-09-18 18:14:18 +02001614 rate_control_rate_init(sta);
Jiri Bencf0706e82007-05-05 11:45:53 -07001615
Johannes Berg46900292009-02-15 12:44:28 +01001616 if (ifmgd->flags & IEEE80211_STA_MFP_ENABLED)
Jouni Malinen5394af42009-01-08 13:31:59 +02001617 set_sta_flags(sta, WLAN_STA_MFP);
1618
Johannes Bergddf4ac52008-10-22 11:41:38 +02001619 if (elems.wmm_param)
Johannes Berg07346f812008-05-03 01:02:02 +02001620 set_sta_flags(sta, WLAN_STA_WME);
Johannes Bergddf4ac52008-10-22 11:41:38 +02001621
Johannes Berg5d1ec852009-12-02 12:43:43 +01001622 err = sta_info_insert(sta);
1623 sta = NULL;
1624 if (err) {
1625 printk(KERN_DEBUG "%s: failed to insert STA entry for"
1626 " the AP (error %d)\n", sdata->name, err);
1627 return RX_MGMT_CFG80211_ASSOC_ERROR;
Johannes Bergddf4ac52008-10-22 11:41:38 +02001628 }
1629
Johannes Bergddf4ac52008-10-22 11:41:38 +02001630 if (elems.wmm_param)
Johannes Berg46900292009-02-15 12:44:28 +01001631 ieee80211_sta_wmm_params(local, ifmgd, elems.wmm_param,
Jiri Bencf0706e82007-05-05 11:45:53 -07001632 elems.wmm_param_len);
Johannes Bergaa837e12009-05-07 16:16:24 +02001633 else
1634 ieee80211_set_wmm_default(sdata);
Jiri Bencf0706e82007-05-05 11:45:53 -07001635
Johannes Bergae5eb022008-10-14 16:58:37 +02001636 if (elems.ht_info_elem && elems.wmm_param &&
Johannes Berg46900292009-02-15 12:44:28 +01001637 (ifmgd->flags & IEEE80211_STA_WMM_ENABLED) &&
Johannes Bergab1faea2009-07-01 21:41:17 +02001638 !(ifmgd->flags & IEEE80211_STA_DISABLE_11N))
Johannes Bergae5eb022008-10-14 16:58:37 +02001639 changed |= ieee80211_enable_ht(sdata, elems.ht_info_elem,
Johannes Berg77fdaa12009-07-07 03:45:17 +02001640 wk->bss->cbss.bssid,
Johannes Bergae5eb022008-10-14 16:58:37 +02001641 ap_ht_cap_flags);
1642
Johannes Berg056508d2009-07-30 21:43:55 +02001643 /* delete work item -- must be before set_associated for PS */
1644 list_del(&wk->list);
1645
Tomas Winkler21c0cbe2008-03-28 16:33:34 -07001646 /* set AID and assoc capability,
1647 * ieee80211_set_associated() will tell the driver */
Johannes Berg8318d782008-01-24 19:38:38 +01001648 bss_conf->aid = aid;
Tomas Winkler21c0cbe2008-03-28 16:33:34 -07001649 bss_conf->assoc_capability = capab_info;
Johannes Berge21546a2009-08-06 20:41:32 +02001650 /* this will take ownership of wk */
1651 ieee80211_set_associated(sdata, wk, changed);
Jiri Bencf0706e82007-05-05 11:45:53 -07001652
Kalle Valo15b7b062009-03-22 21:57:14 +02001653 /*
Johannes Bergb291ba12009-07-10 15:29:03 +02001654 * Start timer to probe the connection to the AP now.
1655 * Also start the timer that will detect beacon loss.
Kalle Valo15b7b062009-03-22 21:57:14 +02001656 */
Johannes Bergb291ba12009-07-10 15:29:03 +02001657 ieee80211_sta_rx_notify(sdata, (struct ieee80211_hdr *)mgmt);
1658 mod_beacon_timer(sdata);
Kalle Valo15b7b062009-03-22 21:57:14 +02001659
Johannes Berg77fdaa12009-07-07 03:45:17 +02001660 return RX_MGMT_CFG80211_ASSOC;
Jiri Bencf0706e82007-05-05 11:45:53 -07001661}
1662
1663
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001664static void ieee80211_rx_bss_info(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001665 struct ieee80211_mgmt *mgmt,
1666 size_t len,
1667 struct ieee80211_rx_status *rx_status,
Johannes Berg98c8fcc2008-09-08 17:44:26 +02001668 struct ieee802_11_elems *elems,
1669 bool beacon)
Jiri Bencf0706e82007-05-05 11:45:53 -07001670{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001671 struct ieee80211_local *local = sdata->local;
Johannes Berg98c8fcc2008-09-08 17:44:26 +02001672 int freq;
Johannes Bergc2b13452008-09-11 00:01:55 +02001673 struct ieee80211_bss *bss;
Johannes Bergfab7d4a2008-03-16 18:42:44 +01001674 struct ieee80211_channel *channel;
Jiri Bencf0706e82007-05-05 11:45:53 -07001675
Johannes Berg5bda6172008-09-08 11:05:10 +02001676 if (elems->ds_params && elems->ds_params_len == 1)
1677 freq = ieee80211_channel_to_frequency(elems->ds_params[0]);
1678 else
1679 freq = rx_status->freq;
1680
1681 channel = ieee80211_get_channel(local->hw.wiphy, freq);
1682
1683 if (!channel || channel->flags & IEEE80211_CHAN_DISABLED)
1684 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001685
Johannes Berg98c8fcc2008-09-08 17:44:26 +02001686 bss = ieee80211_bss_info_update(local, rx_status, mgmt, len, elems,
Johannes Berg2a519312009-02-10 21:25:55 +01001687 channel, beacon);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001688 if (bss)
1689 ieee80211_rx_bss_put(local, bss);
1690
1691 if (!sdata->u.mgd.associated)
Johannes Berg98c8fcc2008-09-08 17:44:26 +02001692 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001693
Sujithc481ec92009-01-06 09:28:37 +05301694 if (elems->ch_switch_elem && (elems->ch_switch_elem_len == 3) &&
Johannes Berg77fdaa12009-07-07 03:45:17 +02001695 (memcmp(mgmt->bssid, sdata->u.mgd.associated->cbss.bssid,
1696 ETH_ALEN) == 0)) {
Sujithc481ec92009-01-06 09:28:37 +05301697 struct ieee80211_channel_sw_ie *sw_elem =
1698 (struct ieee80211_channel_sw_ie *)elems->ch_switch_elem;
Johannes Bergcc32abd2009-05-15 11:52:31 +02001699 ieee80211_sta_process_chanswitch(sdata, sw_elem, bss);
Sujithc481ec92009-01-06 09:28:37 +05301700 }
Jiri Bencf0706e82007-05-05 11:45:53 -07001701}
1702
1703
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001704static void ieee80211_rx_mgmt_probe_resp(struct ieee80211_sub_if_data *sdata,
Johannes Berg77fdaa12009-07-07 03:45:17 +02001705 struct ieee80211_mgd_work *wk,
1706 struct ieee80211_mgmt *mgmt, size_t len,
Jiri Bencf0706e82007-05-05 11:45:53 -07001707 struct ieee80211_rx_status *rx_status)
1708{
Kalle Valo15b7b062009-03-22 21:57:14 +02001709 struct ieee80211_if_managed *ifmgd;
Ester Kummerae6a44e2008-06-27 18:54:48 +03001710 size_t baselen;
1711 struct ieee802_11_elems elems;
1712
Kalle Valo15b7b062009-03-22 21:57:14 +02001713 ifmgd = &sdata->u.mgd;
1714
Johannes Berg77fdaa12009-07-07 03:45:17 +02001715 ASSERT_MGD_MTX(ifmgd);
1716
Johannes Berg47846c92009-11-25 17:46:19 +01001717 if (memcmp(mgmt->da, sdata->vif.addr, ETH_ALEN))
Tomas Winkler8e7cdbb2008-08-03 14:32:01 +03001718 return; /* ignore ProbeResp to foreign address */
1719
Ester Kummerae6a44e2008-06-27 18:54:48 +03001720 baselen = (u8 *) mgmt->u.probe_resp.variable - (u8 *) mgmt;
1721 if (baselen > len)
1722 return;
1723
1724 ieee802_11_parse_elems(mgmt->u.probe_resp.variable, len - baselen,
1725 &elems);
1726
Johannes Berg98c8fcc2008-09-08 17:44:26 +02001727 ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems, false);
Ron Rindjunsky9859b812008-08-09 03:02:19 +03001728
1729 /* direct probe may be part of the association flow */
Johannes Berg77fdaa12009-07-07 03:45:17 +02001730 if (wk && wk->state == IEEE80211_MGD_STATE_PROBE) {
Johannes Berg0ff71612009-09-26 14:45:41 +02001731 printk(KERN_DEBUG "%s: direct probe responded\n",
Johannes Berg47846c92009-11-25 17:46:19 +01001732 sdata->name);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001733 wk->tries = 0;
1734 wk->state = IEEE80211_MGD_STATE_AUTH;
1735 WARN_ON(ieee80211_authenticate(sdata, wk) != RX_MGMT_NONE);
Ron Rindjunsky9859b812008-08-09 03:02:19 +03001736 }
Kalle Valo15b7b062009-03-22 21:57:14 +02001737
Johannes Berg77fdaa12009-07-07 03:45:17 +02001738 if (ifmgd->associated &&
1739 memcmp(mgmt->bssid, ifmgd->associated->cbss.bssid, ETH_ALEN) == 0 &&
Johannes Bergb291ba12009-07-10 15:29:03 +02001740 ifmgd->flags & (IEEE80211_STA_BEACON_POLL |
1741 IEEE80211_STA_CONNECTION_POLL)) {
1742 ifmgd->flags &= ~(IEEE80211_STA_CONNECTION_POLL |
1743 IEEE80211_STA_BEACON_POLL);
Johannes Berg4e751842009-06-10 15:16:52 +02001744 mutex_lock(&sdata->local->iflist_mtx);
1745 ieee80211_recalc_ps(sdata->local, -1);
1746 mutex_unlock(&sdata->local->iflist_mtx);
Johannes Bergb291ba12009-07-10 15:29:03 +02001747 /*
1748 * We've received a probe response, but are not sure whether
1749 * we have or will be receiving any beacons or data, so let's
1750 * schedule the timers again, just in case.
1751 */
1752 mod_beacon_timer(sdata);
1753 mod_timer(&ifmgd->conn_mon_timer,
1754 round_jiffies_up(jiffies +
1755 IEEE80211_CONNECTION_IDLE_TIME));
Johannes Berg4e751842009-06-10 15:16:52 +02001756 }
Jiri Bencf0706e82007-05-05 11:45:53 -07001757}
1758
Johannes Bergd91f36d2009-04-16 13:17:26 +02001759/*
1760 * This is the canonical list of information elements we care about,
1761 * the filter code also gives us all changes to the Microsoft OUI
1762 * (00:50:F2) vendor IE which is used for WMM which we need to track.
1763 *
1764 * We implement beacon filtering in software since that means we can
1765 * avoid processing the frame here and in cfg80211, and userspace
1766 * will not be able to tell whether the hardware supports it or not.
1767 *
1768 * XXX: This list needs to be dynamic -- userspace needs to be able to
1769 * add items it requires. It also needs to be able to tell us to
1770 * look out for other vendor IEs.
1771 */
1772static const u64 care_about_ies =
Johannes Berg1d4df3a2009-04-22 11:25:43 +02001773 (1ULL << WLAN_EID_COUNTRY) |
1774 (1ULL << WLAN_EID_ERP_INFO) |
1775 (1ULL << WLAN_EID_CHANNEL_SWITCH) |
1776 (1ULL << WLAN_EID_PWR_CONSTRAINT) |
1777 (1ULL << WLAN_EID_HT_CAPABILITY) |
1778 (1ULL << WLAN_EID_HT_INFORMATION);
Johannes Bergd91f36d2009-04-16 13:17:26 +02001779
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001780static void ieee80211_rx_mgmt_beacon(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001781 struct ieee80211_mgmt *mgmt,
1782 size_t len,
1783 struct ieee80211_rx_status *rx_status)
1784{
Johannes Bergd91f36d2009-04-16 13:17:26 +02001785 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jiri Bencf0706e82007-05-05 11:45:53 -07001786 size_t baselen;
1787 struct ieee802_11_elems elems;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001788 struct ieee80211_local *local = sdata->local;
Johannes Berg471b3ef2007-12-28 14:32:58 +01001789 u32 changed = 0;
Johannes Bergd91f36d2009-04-16 13:17:26 +02001790 bool erp_valid, directed_tim = false;
Johannes Berg7a5158e2008-10-08 10:59:33 +02001791 u8 erp_value = 0;
Johannes Bergd91f36d2009-04-16 13:17:26 +02001792 u32 ncrc;
Johannes Berg77fdaa12009-07-07 03:45:17 +02001793 u8 *bssid;
1794
1795 ASSERT_MGD_MTX(ifmgd);
Jiri Bencf0706e82007-05-05 11:45:53 -07001796
Ester Kummerae6a44e2008-06-27 18:54:48 +03001797 /* Process beacon from the current BSS */
1798 baselen = (u8 *) mgmt->u.beacon.variable - (u8 *) mgmt;
1799 if (baselen > len)
1800 return;
1801
Johannes Bergd91f36d2009-04-16 13:17:26 +02001802 if (rx_status->freq != local->hw.conf.channel->center_freq)
Jiri Bencf0706e82007-05-05 11:45:53 -07001803 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001804
Johannes Bergb291ba12009-07-10 15:29:03 +02001805 /*
1806 * We might have received a number of frames, among them a
1807 * disassoc frame and a beacon...
1808 */
1809 if (!ifmgd->associated)
Johannes Berg77fdaa12009-07-07 03:45:17 +02001810 return;
1811
1812 bssid = ifmgd->associated->cbss.bssid;
1813
Johannes Bergb291ba12009-07-10 15:29:03 +02001814 /*
1815 * And in theory even frames from a different AP we were just
1816 * associated to a split-second ago!
1817 */
1818 if (memcmp(bssid, mgmt->bssid, ETH_ALEN) != 0)
Jiri Bencf0706e82007-05-05 11:45:53 -07001819 return;
1820
Johannes Bergb291ba12009-07-10 15:29:03 +02001821 if (ifmgd->flags & IEEE80211_STA_BEACON_POLL) {
Jouni Malinen92778182009-05-14 21:15:36 +03001822#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
1823 if (net_ratelimit()) {
1824 printk(KERN_DEBUG "%s: cancelling probereq poll due "
Johannes Berg47846c92009-11-25 17:46:19 +01001825 "to a received beacon\n", sdata->name);
Jouni Malinen92778182009-05-14 21:15:36 +03001826 }
1827#endif
Johannes Bergb291ba12009-07-10 15:29:03 +02001828 ifmgd->flags &= ~IEEE80211_STA_BEACON_POLL;
Johannes Berg4e751842009-06-10 15:16:52 +02001829 mutex_lock(&local->iflist_mtx);
1830 ieee80211_recalc_ps(local, -1);
1831 mutex_unlock(&local->iflist_mtx);
Jouni Malinen92778182009-05-14 21:15:36 +03001832 }
1833
Johannes Bergb291ba12009-07-10 15:29:03 +02001834 /*
1835 * Push the beacon loss detection into the future since
1836 * we are processing a beacon from the AP just now.
1837 */
1838 mod_beacon_timer(sdata);
1839
Johannes Bergd91f36d2009-04-16 13:17:26 +02001840 ncrc = crc32_be(0, (void *)&mgmt->u.beacon.beacon_int, 4);
1841 ncrc = ieee802_11_parse_elems_crc(mgmt->u.beacon.variable,
1842 len - baselen, &elems,
1843 care_about_ies, ncrc);
1844
1845 if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)
Johannes Berge7ec86f2009-04-18 17:33:24 +02001846 directed_tim = ieee80211_check_tim(elems.tim, elems.tim_len,
1847 ifmgd->aid);
Johannes Bergd91f36d2009-04-16 13:17:26 +02001848
Jouni Malinen30196672009-05-19 17:01:43 +03001849 if (ncrc != ifmgd->beacon_crc) {
1850 ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems,
1851 true);
Johannes Bergd91f36d2009-04-16 13:17:26 +02001852
Jouni Malinen30196672009-05-19 17:01:43 +03001853 ieee80211_sta_wmm_params(local, ifmgd, elems.wmm_param,
1854 elems.wmm_param_len);
1855 }
Johannes Bergfe3fa822008-09-08 11:05:09 +02001856
Vivek Natarajan25c9c872009-03-02 20:20:30 +05301857 if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK) {
Kalle Valo1fb36062009-02-10 17:09:24 +02001858 if (directed_tim) {
Kalle Valo572e0012009-02-10 17:09:31 +02001859 if (local->hw.conf.dynamic_ps_timeout > 0) {
1860 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
1861 ieee80211_hw_config(local,
1862 IEEE80211_CONF_CHANGE_PS);
1863 ieee80211_send_nullfunc(local, sdata, 0);
1864 } else {
1865 local->pspolling = true;
1866
1867 /*
1868 * Here is assumed that the driver will be
1869 * able to send ps-poll frame and receive a
1870 * response even though power save mode is
1871 * enabled, but some drivers might require
1872 * to disable power save here. This needs
1873 * to be investigated.
1874 */
1875 ieee80211_send_pspoll(local, sdata);
1876 }
Vivek Natarajana97b77b2008-12-23 18:39:02 -08001877 }
1878 }
Johannes Berg7a5158e2008-10-08 10:59:33 +02001879
Jouni Malinen30196672009-05-19 17:01:43 +03001880 if (ncrc == ifmgd->beacon_crc)
1881 return;
1882 ifmgd->beacon_crc = ncrc;
1883
Johannes Berg7a5158e2008-10-08 10:59:33 +02001884 if (elems.erp_info && elems.erp_info_len >= 1) {
1885 erp_valid = true;
1886 erp_value = elems.erp_info[0];
1887 } else {
1888 erp_valid = false;
John W. Linville50c4afb2008-04-15 14:09:27 -04001889 }
Johannes Berg7a5158e2008-10-08 10:59:33 +02001890 changed |= ieee80211_handle_bss_capability(sdata,
1891 le16_to_cpu(mgmt->u.beacon.capab_info),
1892 erp_valid, erp_value);
Jiri Bencf0706e82007-05-05 11:45:53 -07001893
Ron Rindjunskyd3c990f2007-11-26 16:14:34 +02001894
Vasanthakumar Thiagarajan53d6f81c2009-02-11 22:18:49 +05301895 if (elems.ht_cap_elem && elems.ht_info_elem && elems.wmm_param &&
Johannes Bergab1faea2009-07-01 21:41:17 +02001896 !(ifmgd->flags & IEEE80211_STA_DISABLE_11N)) {
Johannes Bergae5eb022008-10-14 16:58:37 +02001897 struct sta_info *sta;
1898 struct ieee80211_supported_band *sband;
1899 u16 ap_ht_cap_flags;
1900
1901 rcu_read_lock();
1902
Johannes Bergabe60632009-11-25 17:46:18 +01001903 sta = sta_info_get(sdata, bssid);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001904 if (WARN_ON(!sta)) {
Johannes Bergae5eb022008-10-14 16:58:37 +02001905 rcu_read_unlock();
1906 return;
1907 }
1908
1909 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
1910
1911 ieee80211_ht_cap_ie_to_sta_ht_cap(sband,
1912 elems.ht_cap_elem, &sta->sta.ht_cap);
1913
1914 ap_ht_cap_flags = sta->sta.ht_cap.cap;
1915
1916 rcu_read_unlock();
1917
1918 changed |= ieee80211_enable_ht(sdata, elems.ht_info_elem,
Johannes Berg77fdaa12009-07-07 03:45:17 +02001919 bssid, ap_ht_cap_flags);
Ron Rindjunskyd3c990f2007-11-26 16:14:34 +02001920 }
1921
Luis R. Rodriguez8b19e6c2009-07-30 17:38:09 -07001922 /* Note: country IE parsing is done for us by cfg80211 */
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001923 if (elems.country_elem) {
Vasanthakumar Thiagarajana8302de2009-01-09 18:14:15 +05301924 /* TODO: IBSS also needs this */
1925 if (elems.pwr_constr_elem)
1926 ieee80211_handle_pwr_constr(sdata,
1927 le16_to_cpu(mgmt->u.probe_resp.capab_info),
1928 elems.pwr_constr_elem,
1929 elems.pwr_constr_elem_len);
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001930 }
1931
Johannes Berg471b3ef2007-12-28 14:32:58 +01001932 ieee80211_bss_info_change_notify(sdata, changed);
Jiri Bencf0706e82007-05-05 11:45:53 -07001933}
1934
Johannes Berg46900292009-02-15 12:44:28 +01001935ieee80211_rx_result ieee80211_sta_rx_mgmt(struct ieee80211_sub_if_data *sdata,
Johannes Bergf1d58c22009-06-17 13:13:00 +02001936 struct sk_buff *skb)
Jiri Bencf0706e82007-05-05 11:45:53 -07001937{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001938 struct ieee80211_local *local = sdata->local;
Jiri Bencf0706e82007-05-05 11:45:53 -07001939 struct ieee80211_mgmt *mgmt;
1940 u16 fc;
1941
1942 if (skb->len < 24)
Johannes Berg46900292009-02-15 12:44:28 +01001943 return RX_DROP_MONITOR;
Jiri Bencf0706e82007-05-05 11:45:53 -07001944
1945 mgmt = (struct ieee80211_mgmt *) skb->data;
1946 fc = le16_to_cpu(mgmt->frame_control);
1947
1948 switch (fc & IEEE80211_FCTL_STYPE) {
Jiri Bencf0706e82007-05-05 11:45:53 -07001949 case IEEE80211_STYPE_PROBE_RESP:
1950 case IEEE80211_STYPE_BEACON:
Jiri Bencf0706e82007-05-05 11:45:53 -07001951 case IEEE80211_STYPE_AUTH:
1952 case IEEE80211_STYPE_ASSOC_RESP:
1953 case IEEE80211_STYPE_REASSOC_RESP:
1954 case IEEE80211_STYPE_DEAUTH:
1955 case IEEE80211_STYPE_DISASSOC:
Johannes Berg77fdaa12009-07-07 03:45:17 +02001956 case IEEE80211_STYPE_ACTION:
Johannes Berg46900292009-02-15 12:44:28 +01001957 skb_queue_tail(&sdata->u.mgd.skb_queue, skb);
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04001958 ieee80211_queue_work(&local->hw, &sdata->u.mgd.work);
Johannes Berg46900292009-02-15 12:44:28 +01001959 return RX_QUEUED;
Jiri Bencf0706e82007-05-05 11:45:53 -07001960 }
1961
Johannes Berg46900292009-02-15 12:44:28 +01001962 return RX_DROP_MONITOR;
Jiri Bencf0706e82007-05-05 11:45:53 -07001963}
1964
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001965static void ieee80211_sta_rx_queued_mgmt(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001966 struct sk_buff *skb)
1967{
Johannes Berg77fdaa12009-07-07 03:45:17 +02001968 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jiri Bencf0706e82007-05-05 11:45:53 -07001969 struct ieee80211_rx_status *rx_status;
Jiri Bencf0706e82007-05-05 11:45:53 -07001970 struct ieee80211_mgmt *mgmt;
Johannes Berg77fdaa12009-07-07 03:45:17 +02001971 struct ieee80211_mgd_work *wk;
1972 enum rx_mgmt_action rma = RX_MGMT_NONE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001973 u16 fc;
1974
Jiri Bencf0706e82007-05-05 11:45:53 -07001975 rx_status = (struct ieee80211_rx_status *) skb->cb;
1976 mgmt = (struct ieee80211_mgmt *) skb->data;
1977 fc = le16_to_cpu(mgmt->frame_control);
1978
Johannes Berg77fdaa12009-07-07 03:45:17 +02001979 mutex_lock(&ifmgd->mtx);
1980
1981 if (ifmgd->associated &&
1982 memcmp(ifmgd->associated->cbss.bssid, mgmt->bssid,
1983 ETH_ALEN) == 0) {
1984 switch (fc & IEEE80211_FCTL_STYPE) {
1985 case IEEE80211_STYPE_BEACON:
1986 ieee80211_rx_mgmt_beacon(sdata, mgmt, skb->len,
1987 rx_status);
1988 break;
1989 case IEEE80211_STYPE_PROBE_RESP:
1990 ieee80211_rx_mgmt_probe_resp(sdata, NULL, mgmt,
1991 skb->len, rx_status);
1992 break;
1993 case IEEE80211_STYPE_DEAUTH:
1994 rma = ieee80211_rx_mgmt_deauth(sdata, NULL,
1995 mgmt, skb->len);
1996 break;
1997 case IEEE80211_STYPE_DISASSOC:
1998 rma = ieee80211_rx_mgmt_disassoc(sdata, mgmt, skb->len);
1999 break;
2000 case IEEE80211_STYPE_ACTION:
2001 /* XXX: differentiate, can only happen for CSA now! */
2002 ieee80211_sta_process_chanswitch(sdata,
2003 &mgmt->u.action.u.chan_switch.sw_elem,
2004 ifmgd->associated);
2005 break;
2006 }
2007 mutex_unlock(&ifmgd->mtx);
2008
2009 switch (rma) {
2010 case RX_MGMT_NONE:
2011 /* no action */
2012 break;
2013 case RX_MGMT_CFG80211_DEAUTH:
Holger Schurigce470612009-10-13 13:28:13 +02002014 cfg80211_send_deauth(sdata->dev, (u8 *)mgmt, skb->len);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002015 break;
2016 case RX_MGMT_CFG80211_DISASSOC:
Holger Schurigce470612009-10-13 13:28:13 +02002017 cfg80211_send_disassoc(sdata->dev, (u8 *)mgmt, skb->len);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002018 break;
2019 default:
2020 WARN(1, "unexpected: %d", rma);
2021 }
2022 goto out;
2023 }
2024
2025 list_for_each_entry(wk, &ifmgd->work_list, list) {
2026 if (memcmp(wk->bss->cbss.bssid, mgmt->bssid, ETH_ALEN) != 0)
2027 continue;
2028
2029 switch (fc & IEEE80211_FCTL_STYPE) {
2030 case IEEE80211_STYPE_PROBE_RESP:
2031 ieee80211_rx_mgmt_probe_resp(sdata, wk, mgmt, skb->len,
2032 rx_status);
2033 break;
2034 case IEEE80211_STYPE_AUTH:
2035 rma = ieee80211_rx_mgmt_auth(sdata, wk, mgmt, skb->len);
2036 break;
2037 case IEEE80211_STYPE_ASSOC_RESP:
2038 rma = ieee80211_rx_mgmt_assoc_resp(sdata, wk, mgmt,
2039 skb->len, false);
2040 break;
2041 case IEEE80211_STYPE_REASSOC_RESP:
2042 rma = ieee80211_rx_mgmt_assoc_resp(sdata, wk, mgmt,
2043 skb->len, true);
2044 break;
2045 case IEEE80211_STYPE_DEAUTH:
2046 rma = ieee80211_rx_mgmt_deauth(sdata, wk, mgmt,
2047 skb->len);
2048 break;
2049 }
2050 /*
2051 * We've processed this frame for that work, so it can't
2052 * belong to another work struct.
2053 * NB: this is also required for correctness because the
2054 * called functions can free 'wk', and for 'rma'!
2055 */
Johannes Berg46900292009-02-15 12:44:28 +01002056 break;
Jiri Bencf0706e82007-05-05 11:45:53 -07002057 }
2058
Johannes Berg77fdaa12009-07-07 03:45:17 +02002059 mutex_unlock(&ifmgd->mtx);
2060
2061 switch (rma) {
2062 case RX_MGMT_NONE:
2063 /* no action */
2064 break;
2065 case RX_MGMT_CFG80211_AUTH:
Johannes Bergcb0b4be2009-07-07 03:56:07 +02002066 cfg80211_send_rx_auth(sdata->dev, (u8 *) mgmt, skb->len);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002067 break;
2068 case RX_MGMT_CFG80211_ASSOC:
Johannes Bergcb0b4be2009-07-07 03:56:07 +02002069 cfg80211_send_rx_assoc(sdata->dev, (u8 *) mgmt, skb->len);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002070 break;
Johannes Berg8d8b2612009-07-25 11:58:36 +02002071 case RX_MGMT_CFG80211_DEAUTH:
Holger Schurigce470612009-10-13 13:28:13 +02002072 cfg80211_send_deauth(sdata->dev, (u8 *)mgmt, skb->len);
Johannes Berg8d8b2612009-07-25 11:58:36 +02002073 break;
Johannes Berg5d1ec852009-12-02 12:43:43 +01002074 case RX_MGMT_CFG80211_ASSOC_ERROR:
2075 /* an internal error -- pretend timeout for now */
2076 cfg80211_send_assoc_timeout(sdata->dev, mgmt->bssid);
2077 break;
Johannes Berg77fdaa12009-07-07 03:45:17 +02002078 default:
2079 WARN(1, "unexpected: %d", rma);
2080 }
2081
2082 out:
Jiri Bencf0706e82007-05-05 11:45:53 -07002083 kfree_skb(skb);
2084}
2085
Johannes Berg9c6bd792008-09-11 00:01:52 +02002086static void ieee80211_sta_timer(unsigned long data)
Jiri Bencf0706e82007-05-05 11:45:53 -07002087{
2088 struct ieee80211_sub_if_data *sdata =
2089 (struct ieee80211_sub_if_data *) data;
Johannes Berg46900292009-02-15 12:44:28 +01002090 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002091 struct ieee80211_local *local = sdata->local;
Jiri Bencf0706e82007-05-05 11:45:53 -07002092
Johannes Berg5bb644a2009-05-17 11:40:42 +02002093 if (local->quiescing) {
2094 set_bit(TMR_RUNNING_TIMER, &ifmgd->timers_running);
2095 return;
2096 }
2097
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04002098 ieee80211_queue_work(&local->hw, &ifmgd->work);
Jiri Bencf0706e82007-05-05 11:45:53 -07002099}
2100
Johannes Berg9c6bd792008-09-11 00:01:52 +02002101static void ieee80211_sta_work(struct work_struct *work)
Johannes Berg60f8b392008-09-08 17:44:22 +02002102{
2103 struct ieee80211_sub_if_data *sdata =
Johannes Berg46900292009-02-15 12:44:28 +01002104 container_of(work, struct ieee80211_sub_if_data, u.mgd.work);
Johannes Berg60f8b392008-09-08 17:44:22 +02002105 struct ieee80211_local *local = sdata->local;
Johannes Berg46900292009-02-15 12:44:28 +01002106 struct ieee80211_if_managed *ifmgd;
Johannes Berg60f8b392008-09-08 17:44:22 +02002107 struct sk_buff *skb;
Johannes Berg77fdaa12009-07-07 03:45:17 +02002108 struct ieee80211_mgd_work *wk, *tmp;
2109 LIST_HEAD(free_work);
2110 enum rx_mgmt_action rma;
2111 bool anybusy = false;
Johannes Berg60f8b392008-09-08 17:44:22 +02002112
2113 if (!netif_running(sdata->dev))
2114 return;
2115
Helmut Schaafbe9c422009-07-23 12:14:04 +02002116 if (local->scanning)
Johannes Berg60f8b392008-09-08 17:44:22 +02002117 return;
2118
Johannes Berg46900292009-02-15 12:44:28 +01002119 if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION))
Johannes Berg60f8b392008-09-08 17:44:22 +02002120 return;
Johannes Berg5bb644a2009-05-17 11:40:42 +02002121
2122 /*
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04002123 * ieee80211_queue_work() should have picked up most cases,
2124 * here we'll pick the the rest.
Johannes Berg5bb644a2009-05-17 11:40:42 +02002125 */
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04002126 if (WARN(local->suspended, "STA MLME work scheduled while "
2127 "going to suspend\n"))
Johannes Berg5bb644a2009-05-17 11:40:42 +02002128 return;
2129
Johannes Berg46900292009-02-15 12:44:28 +01002130 ifmgd = &sdata->u.mgd;
Johannes Berg60f8b392008-09-08 17:44:22 +02002131
Johannes Berg77fdaa12009-07-07 03:45:17 +02002132 /* first process frames to avoid timing out while a frame is pending */
Johannes Berg46900292009-02-15 12:44:28 +01002133 while ((skb = skb_dequeue(&ifmgd->skb_queue)))
Johannes Berg60f8b392008-09-08 17:44:22 +02002134 ieee80211_sta_rx_queued_mgmt(sdata, skb);
2135
Johannes Berg77fdaa12009-07-07 03:45:17 +02002136 /* then process the rest of the work */
2137 mutex_lock(&ifmgd->mtx);
Johannes Berg60f8b392008-09-08 17:44:22 +02002138
Johannes Bergb291ba12009-07-10 15:29:03 +02002139 if (ifmgd->flags & (IEEE80211_STA_BEACON_POLL |
2140 IEEE80211_STA_CONNECTION_POLL) &&
2141 ifmgd->associated) {
Maxim Levitskya43abf22009-07-31 18:54:12 +03002142 u8 bssid[ETH_ALEN];
2143
2144 memcpy(bssid, ifmgd->associated->cbss.bssid, ETH_ALEN);
Johannes Bergb291ba12009-07-10 15:29:03 +02002145 if (time_is_after_jiffies(ifmgd->probe_timeout))
2146 run_again(ifmgd, ifmgd->probe_timeout);
Maxim Levitskya43abf22009-07-31 18:54:12 +03002147
2148 else if (ifmgd->probe_send_count < IEEE80211_MAX_PROBE_TRIES) {
2149#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
2150 printk(KERN_DEBUG "No probe response from AP %pM"
2151 " after %dms, try %d\n", bssid,
2152 (1000 * IEEE80211_PROBE_WAIT)/HZ,
2153 ifmgd->probe_send_count);
2154#endif
2155 ieee80211_mgd_probe_ap_send(sdata);
2156 } else {
Johannes Bergb291ba12009-07-10 15:29:03 +02002157 /*
2158 * We actually lost the connection ... or did we?
2159 * Let's make sure!
2160 */
2161 ifmgd->flags &= ~(IEEE80211_STA_CONNECTION_POLL |
2162 IEEE80211_STA_BEACON_POLL);
Johannes Bergb291ba12009-07-10 15:29:03 +02002163 printk(KERN_DEBUG "No probe response from AP %pM"
2164 " after %dms, disconnecting.\n",
2165 bssid, (1000 * IEEE80211_PROBE_WAIT)/HZ);
Johannes Berge21546a2009-08-06 20:41:32 +02002166 ieee80211_set_disassoc(sdata, true);
Johannes Bergb291ba12009-07-10 15:29:03 +02002167 mutex_unlock(&ifmgd->mtx);
2168 /*
2169 * must be outside lock due to cfg80211,
2170 * but that's not a problem.
2171 */
2172 ieee80211_send_deauth_disassoc(sdata, bssid,
2173 IEEE80211_STYPE_DEAUTH,
2174 WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY,
2175 NULL);
2176 mutex_lock(&ifmgd->mtx);
2177 }
2178 }
2179
Johannes Berg60f8b392008-09-08 17:44:22 +02002180
Johannes Berg5cff20e2009-04-29 12:26:17 +02002181 ieee80211_recalc_idle(local);
2182
Johannes Berg77fdaa12009-07-07 03:45:17 +02002183 list_for_each_entry_safe(wk, tmp, &ifmgd->work_list, list) {
Johannes Bergca386f32009-07-10 02:39:48 +02002184 if (time_is_after_jiffies(wk->timeout)) {
2185 /*
2186 * This work item isn't supposed to be worked on
2187 * right now, but take care to adjust the timer
2188 * properly.
2189 */
2190 run_again(ifmgd, wk->timeout);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002191 continue;
Johannes Bergca386f32009-07-10 02:39:48 +02002192 }
Johannes Berg77fdaa12009-07-07 03:45:17 +02002193
2194 switch (wk->state) {
2195 default:
2196 WARN_ON(1);
2197 /* fall through */
2198 case IEEE80211_MGD_STATE_IDLE:
2199 /* nothing */
2200 rma = RX_MGMT_NONE;
2201 break;
2202 case IEEE80211_MGD_STATE_PROBE:
2203 rma = ieee80211_direct_probe(sdata, wk);
2204 break;
2205 case IEEE80211_MGD_STATE_AUTH:
2206 rma = ieee80211_authenticate(sdata, wk);
2207 break;
2208 case IEEE80211_MGD_STATE_ASSOC:
2209 rma = ieee80211_associate(sdata, wk);
2210 break;
2211 }
2212
2213 switch (rma) {
2214 case RX_MGMT_NONE:
2215 /* no action required */
2216 break;
2217 case RX_MGMT_CFG80211_AUTH_TO:
2218 case RX_MGMT_CFG80211_ASSOC_TO:
2219 list_del(&wk->list);
2220 list_add(&wk->list, &free_work);
2221 wk->tries = rma; /* small abuse but only local */
2222 break;
2223 default:
2224 WARN(1, "unexpected: %d", rma);
2225 }
2226 }
2227
Jouni Malinen5bf6fcc2009-08-25 17:44:28 +03002228 list_for_each_entry(wk, &ifmgd->work_list, list) {
2229 if (wk->state != IEEE80211_MGD_STATE_IDLE) {
2230 anybusy = true;
2231 break;
2232 }
2233 }
2234 if (!anybusy &&
2235 test_and_clear_bit(IEEE80211_STA_REQ_SCAN, &ifmgd->request))
2236 ieee80211_queue_delayed_work(&local->hw,
2237 &local->scan_work,
2238 round_jiffies_relative(0));
2239
Johannes Berg77fdaa12009-07-07 03:45:17 +02002240 mutex_unlock(&ifmgd->mtx);
2241
2242 list_for_each_entry_safe(wk, tmp, &free_work, list) {
2243 switch (wk->tries) {
2244 case RX_MGMT_CFG80211_AUTH_TO:
2245 cfg80211_send_auth_timeout(sdata->dev,
Johannes Bergcb0b4be2009-07-07 03:56:07 +02002246 wk->bss->cbss.bssid);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002247 break;
2248 case RX_MGMT_CFG80211_ASSOC_TO:
Johannes Bergcb0b4be2009-07-07 03:56:07 +02002249 cfg80211_send_assoc_timeout(sdata->dev,
2250 wk->bss->cbss.bssid);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002251 break;
2252 default:
2253 WARN(1, "unexpected: %d", wk->tries);
2254 }
2255
2256 list_del(&wk->list);
2257 kfree(wk);
2258 }
2259
2260 ieee80211_recalc_idle(local);
Johannes Berg60f8b392008-09-08 17:44:22 +02002261}
Johannes Berg0a51b272008-09-08 17:44:25 +02002262
Johannes Bergb291ba12009-07-10 15:29:03 +02002263static void ieee80211_sta_bcn_mon_timer(unsigned long data)
2264{
2265 struct ieee80211_sub_if_data *sdata =
2266 (struct ieee80211_sub_if_data *) data;
2267 struct ieee80211_local *local = sdata->local;
2268
2269 if (local->quiescing)
2270 return;
2271
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04002272 ieee80211_queue_work(&sdata->local->hw, &sdata->u.mgd.beacon_loss_work);
Johannes Bergb291ba12009-07-10 15:29:03 +02002273}
2274
2275static void ieee80211_sta_conn_mon_timer(unsigned long data)
2276{
2277 struct ieee80211_sub_if_data *sdata =
2278 (struct ieee80211_sub_if_data *) data;
2279 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2280 struct ieee80211_local *local = sdata->local;
2281
2282 if (local->quiescing)
2283 return;
2284
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04002285 ieee80211_queue_work(&local->hw, &ifmgd->monitor_work);
Johannes Bergb291ba12009-07-10 15:29:03 +02002286}
2287
2288static void ieee80211_sta_monitor_work(struct work_struct *work)
2289{
2290 struct ieee80211_sub_if_data *sdata =
2291 container_of(work, struct ieee80211_sub_if_data,
2292 u.mgd.monitor_work);
2293
2294 ieee80211_mgd_probe_ap(sdata, false);
2295}
2296
Johannes Berga1678f82008-09-11 00:01:47 +02002297static void ieee80211_restart_sta_timer(struct ieee80211_sub_if_data *sdata)
2298{
Kalle Vaload935682009-04-19 08:47:19 +03002299 if (sdata->vif.type == NL80211_IFTYPE_STATION) {
Johannes Bergb291ba12009-07-10 15:29:03 +02002300 sdata->u.mgd.flags &= ~(IEEE80211_STA_BEACON_POLL |
2301 IEEE80211_STA_CONNECTION_POLL);
Kalle Vaload935682009-04-19 08:47:19 +03002302
Johannes Bergb291ba12009-07-10 15:29:03 +02002303 /* let's probe the connection once */
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04002304 ieee80211_queue_work(&sdata->local->hw,
Johannes Bergb291ba12009-07-10 15:29:03 +02002305 &sdata->u.mgd.monitor_work);
2306 /* and do all the other regular work too */
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04002307 ieee80211_queue_work(&sdata->local->hw,
Johannes Berg46900292009-02-15 12:44:28 +01002308 &sdata->u.mgd.work);
Kalle Vaload935682009-04-19 08:47:19 +03002309 }
Johannes Berga1678f82008-09-11 00:01:47 +02002310}
2311
Johannes Berg5bb644a2009-05-17 11:40:42 +02002312#ifdef CONFIG_PM
2313void ieee80211_sta_quiesce(struct ieee80211_sub_if_data *sdata)
2314{
2315 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2316
2317 /*
2318 * we need to use atomic bitops for the running bits
2319 * only because both timers might fire at the same
2320 * time -- the code here is properly synchronised.
2321 */
2322
2323 cancel_work_sync(&ifmgd->work);
2324 cancel_work_sync(&ifmgd->beacon_loss_work);
2325 if (del_timer_sync(&ifmgd->timer))
2326 set_bit(TMR_RUNNING_TIMER, &ifmgd->timers_running);
2327
2328 cancel_work_sync(&ifmgd->chswitch_work);
2329 if (del_timer_sync(&ifmgd->chswitch_timer))
2330 set_bit(TMR_RUNNING_CHANSW, &ifmgd->timers_running);
Johannes Bergb291ba12009-07-10 15:29:03 +02002331
2332 cancel_work_sync(&ifmgd->monitor_work);
2333 /* these will just be re-established on connection */
2334 del_timer_sync(&ifmgd->conn_mon_timer);
2335 del_timer_sync(&ifmgd->bcn_mon_timer);
Johannes Berg5bb644a2009-05-17 11:40:42 +02002336}
2337
2338void ieee80211_sta_restart(struct ieee80211_sub_if_data *sdata)
2339{
2340 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2341
2342 if (test_and_clear_bit(TMR_RUNNING_TIMER, &ifmgd->timers_running))
2343 add_timer(&ifmgd->timer);
2344 if (test_and_clear_bit(TMR_RUNNING_CHANSW, &ifmgd->timers_running))
2345 add_timer(&ifmgd->chswitch_timer);
2346}
2347#endif
2348
Johannes Berg9c6bd792008-09-11 00:01:52 +02002349/* interface setup */
2350void ieee80211_sta_setup_sdata(struct ieee80211_sub_if_data *sdata)
2351{
Johannes Berg46900292009-02-15 12:44:28 +01002352 struct ieee80211_if_managed *ifmgd;
Johannes Berg9c6bd792008-09-11 00:01:52 +02002353
Johannes Berg46900292009-02-15 12:44:28 +01002354 ifmgd = &sdata->u.mgd;
2355 INIT_WORK(&ifmgd->work, ieee80211_sta_work);
Johannes Bergb291ba12009-07-10 15:29:03 +02002356 INIT_WORK(&ifmgd->monitor_work, ieee80211_sta_monitor_work);
Johannes Berg46900292009-02-15 12:44:28 +01002357 INIT_WORK(&ifmgd->chswitch_work, ieee80211_chswitch_work);
Kalle Valo04de8382009-03-22 21:57:35 +02002358 INIT_WORK(&ifmgd->beacon_loss_work, ieee80211_beacon_loss_work);
Johannes Berg46900292009-02-15 12:44:28 +01002359 setup_timer(&ifmgd->timer, ieee80211_sta_timer,
Johannes Berg9c6bd792008-09-11 00:01:52 +02002360 (unsigned long) sdata);
Johannes Bergb291ba12009-07-10 15:29:03 +02002361 setup_timer(&ifmgd->bcn_mon_timer, ieee80211_sta_bcn_mon_timer,
2362 (unsigned long) sdata);
2363 setup_timer(&ifmgd->conn_mon_timer, ieee80211_sta_conn_mon_timer,
2364 (unsigned long) sdata);
Johannes Berg46900292009-02-15 12:44:28 +01002365 setup_timer(&ifmgd->chswitch_timer, ieee80211_chswitch_timer,
Sujithc481ec92009-01-06 09:28:37 +05302366 (unsigned long) sdata);
Johannes Berg46900292009-02-15 12:44:28 +01002367 skb_queue_head_init(&ifmgd->skb_queue);
Johannes Berg9c6bd792008-09-11 00:01:52 +02002368
Johannes Berg77fdaa12009-07-07 03:45:17 +02002369 INIT_LIST_HEAD(&ifmgd->work_list);
2370
Johannes Berg46900292009-02-15 12:44:28 +01002371 ifmgd->capab = WLAN_CAPABILITY_ESS;
Johannes Bergab1faea2009-07-01 21:41:17 +02002372 ifmgd->flags = 0;
Johannes Berg176be722009-03-12 23:49:28 +01002373 if (sdata->local->hw.queues >= 4)
Johannes Berg46900292009-02-15 12:44:28 +01002374 ifmgd->flags |= IEEE80211_STA_WMM_ENABLED;
Johannes Bergbbbdff92009-04-16 13:27:42 +02002375
Johannes Berg77fdaa12009-07-07 03:45:17 +02002376 mutex_init(&ifmgd->mtx);
Johannes Berg0f782312009-12-01 13:37:02 +01002377
2378 if (sdata->local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_SMPS)
2379 ifmgd->req_smps = IEEE80211_SMPS_AUTOMATIC;
2380 else
2381 ifmgd->req_smps = IEEE80211_SMPS_OFF;
Johannes Berg9c6bd792008-09-11 00:01:52 +02002382}
2383
2384/* scan finished notification */
Johannes Berg0a51b272008-09-08 17:44:25 +02002385void ieee80211_mlme_notify_scan_completed(struct ieee80211_local *local)
2386{
2387 struct ieee80211_sub_if_data *sdata = local->scan_sdata;
Johannes Berga1678f82008-09-11 00:01:47 +02002388
2389 /* Restart STA timers */
2390 rcu_read_lock();
2391 list_for_each_entry_rcu(sdata, &local->interfaces, list)
2392 ieee80211_restart_sta_timer(sdata);
2393 rcu_read_unlock();
Johannes Berg0a51b272008-09-08 17:44:25 +02002394}
Johannes Berg10f644a2009-04-16 13:17:25 +02002395
2396int ieee80211_max_network_latency(struct notifier_block *nb,
2397 unsigned long data, void *dummy)
2398{
2399 s32 latency_usec = (s32) data;
2400 struct ieee80211_local *local =
2401 container_of(nb, struct ieee80211_local,
2402 network_latency_notifier);
2403
2404 mutex_lock(&local->iflist_mtx);
2405 ieee80211_recalc_ps(local, latency_usec);
2406 mutex_unlock(&local->iflist_mtx);
2407
2408 return 0;
2409}
Johannes Berg77fdaa12009-07-07 03:45:17 +02002410
2411/* config hooks */
2412int ieee80211_mgd_auth(struct ieee80211_sub_if_data *sdata,
2413 struct cfg80211_auth_request *req)
2414{
2415 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2416 const u8 *ssid;
2417 struct ieee80211_mgd_work *wk;
2418 u16 auth_alg;
2419
2420 switch (req->auth_type) {
2421 case NL80211_AUTHTYPE_OPEN_SYSTEM:
2422 auth_alg = WLAN_AUTH_OPEN;
2423 break;
2424 case NL80211_AUTHTYPE_SHARED_KEY:
2425 auth_alg = WLAN_AUTH_SHARED_KEY;
2426 break;
2427 case NL80211_AUTHTYPE_FT:
2428 auth_alg = WLAN_AUTH_FT;
2429 break;
2430 case NL80211_AUTHTYPE_NETWORK_EAP:
2431 auth_alg = WLAN_AUTH_LEAP;
2432 break;
2433 default:
2434 return -EOPNOTSUPP;
2435 }
2436
2437 wk = kzalloc(sizeof(*wk) + req->ie_len, GFP_KERNEL);
2438 if (!wk)
2439 return -ENOMEM;
2440
2441 wk->bss = (void *)req->bss;
2442
2443 if (req->ie && req->ie_len) {
2444 memcpy(wk->ie, req->ie, req->ie_len);
2445 wk->ie_len = req->ie_len;
2446 }
2447
Johannes Bergfffd0932009-07-08 14:22:54 +02002448 if (req->key && req->key_len) {
2449 wk->key_len = req->key_len;
2450 wk->key_idx = req->key_idx;
2451 memcpy(wk->key, req->key, req->key_len);
2452 }
2453
Johannes Berg77fdaa12009-07-07 03:45:17 +02002454 ssid = ieee80211_bss_get_ie(req->bss, WLAN_EID_SSID);
2455 memcpy(wk->ssid, ssid + 2, ssid[1]);
2456 wk->ssid_len = ssid[1];
2457
2458 wk->state = IEEE80211_MGD_STATE_PROBE;
2459 wk->auth_alg = auth_alg;
Johannes Berg48531842009-07-23 16:50:16 +02002460 wk->timeout = jiffies; /* run right away */
Johannes Berg77fdaa12009-07-07 03:45:17 +02002461
2462 /*
2463 * XXX: if still associated need to tell AP that we're going
2464 * to sleep and then change channel etc.
2465 */
2466 sdata->local->oper_channel = req->bss->channel;
2467 ieee80211_hw_config(sdata->local, 0);
2468
2469 mutex_lock(&ifmgd->mtx);
2470 list_add(&wk->list, &sdata->u.mgd.work_list);
2471 mutex_unlock(&ifmgd->mtx);
2472
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04002473 ieee80211_queue_work(&sdata->local->hw, &sdata->u.mgd.work);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002474 return 0;
2475}
2476
2477int ieee80211_mgd_assoc(struct ieee80211_sub_if_data *sdata,
2478 struct cfg80211_assoc_request *req)
2479{
2480 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2481 struct ieee80211_mgd_work *wk, *found = NULL;
2482 int i, err;
2483
2484 mutex_lock(&ifmgd->mtx);
2485
2486 list_for_each_entry(wk, &ifmgd->work_list, list) {
2487 if (&wk->bss->cbss == req->bss &&
2488 wk->state == IEEE80211_MGD_STATE_IDLE) {
2489 found = wk;
2490 break;
2491 }
2492 }
2493
2494 if (!found) {
2495 err = -ENOLINK;
2496 goto out;
2497 }
2498
2499 list_del(&found->list);
2500
2501 wk = krealloc(found, sizeof(*wk) + req->ie_len, GFP_KERNEL);
2502 if (!wk) {
2503 list_add(&found->list, &ifmgd->work_list);
2504 err = -ENOMEM;
2505 goto out;
2506 }
2507
2508 list_add(&wk->list, &ifmgd->work_list);
2509
2510 ifmgd->flags &= ~IEEE80211_STA_DISABLE_11N;
2511
2512 for (i = 0; i < req->crypto.n_ciphers_pairwise; i++)
2513 if (req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_WEP40 ||
2514 req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_TKIP ||
2515 req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_WEP104)
2516 ifmgd->flags |= IEEE80211_STA_DISABLE_11N;
2517
2518 sdata->local->oper_channel = req->bss->channel;
2519 ieee80211_hw_config(sdata->local, 0);
2520
2521 if (req->ie && req->ie_len) {
2522 memcpy(wk->ie, req->ie, req->ie_len);
2523 wk->ie_len = req->ie_len;
2524 } else
2525 wk->ie_len = 0;
2526
2527 if (req->prev_bssid)
2528 memcpy(wk->prev_bssid, req->prev_bssid, ETH_ALEN);
2529
2530 wk->state = IEEE80211_MGD_STATE_ASSOC;
2531 wk->tries = 0;
Johannes Berg48531842009-07-23 16:50:16 +02002532 wk->timeout = jiffies; /* run right away */
Johannes Berg77fdaa12009-07-07 03:45:17 +02002533
2534 if (req->use_mfp) {
2535 ifmgd->mfp = IEEE80211_MFP_REQUIRED;
2536 ifmgd->flags |= IEEE80211_STA_MFP_ENABLED;
2537 } else {
2538 ifmgd->mfp = IEEE80211_MFP_DISABLED;
2539 ifmgd->flags &= ~IEEE80211_STA_MFP_ENABLED;
2540 }
2541
2542 if (req->crypto.control_port)
2543 ifmgd->flags |= IEEE80211_STA_CONTROL_PORT;
2544 else
2545 ifmgd->flags &= ~IEEE80211_STA_CONTROL_PORT;
2546
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04002547 ieee80211_queue_work(&sdata->local->hw, &sdata->u.mgd.work);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002548
2549 err = 0;
2550
2551 out:
2552 mutex_unlock(&ifmgd->mtx);
2553 return err;
2554}
2555
2556int ieee80211_mgd_deauth(struct ieee80211_sub_if_data *sdata,
Johannes Berg667503d2009-07-07 03:56:11 +02002557 struct cfg80211_deauth_request *req,
2558 void *cookie)
Johannes Berg77fdaa12009-07-07 03:45:17 +02002559{
2560 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2561 struct ieee80211_mgd_work *wk;
2562 const u8 *bssid = NULL;
Johannes Berga58ce432009-11-19 12:45:42 +01002563 bool not_auth_yet = false;
Johannes Berg77fdaa12009-07-07 03:45:17 +02002564
Johannes Berg77fdaa12009-07-07 03:45:17 +02002565 mutex_lock(&ifmgd->mtx);
2566
2567 if (ifmgd->associated && &ifmgd->associated->cbss == req->bss) {
2568 bssid = req->bss->bssid;
Johannes Berge21546a2009-08-06 20:41:32 +02002569 ieee80211_set_disassoc(sdata, true);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002570 } else list_for_each_entry(wk, &ifmgd->work_list, list) {
2571 if (&wk->bss->cbss == req->bss) {
2572 bssid = req->bss->bssid;
Johannes Berga58ce432009-11-19 12:45:42 +01002573 if (wk->state == IEEE80211_MGD_STATE_PROBE)
2574 not_auth_yet = true;
Johannes Berg77fdaa12009-07-07 03:45:17 +02002575 list_del(&wk->list);
2576 kfree(wk);
2577 break;
2578 }
2579 }
2580
Johannes Berg8d8b2612009-07-25 11:58:36 +02002581 /*
Johannes Berga58ce432009-11-19 12:45:42 +01002582 * If somebody requests authentication and we haven't
2583 * sent out an auth frame yet there's no need to send
2584 * out a deauth frame either. If the state was PROBE,
2585 * then this is the case. If it's AUTH we have sent a
2586 * frame, and if it's IDLE we have completed the auth
2587 * process already.
2588 */
2589 if (not_auth_yet) {
2590 mutex_unlock(&ifmgd->mtx);
2591 __cfg80211_auth_canceled(sdata->dev, bssid);
2592 return 0;
2593 }
2594
2595 /*
Johannes Berg8d8b2612009-07-25 11:58:36 +02002596 * cfg80211 should catch this ... but it's racy since
2597 * we can receive a deauth frame, process it, hand it
2598 * to cfg80211 while that's in a locked section already
2599 * trying to tell us that the user wants to disconnect.
2600 */
2601 if (!bssid) {
Johannes Berg77fdaa12009-07-07 03:45:17 +02002602 mutex_unlock(&ifmgd->mtx);
2603 return -ENOLINK;
2604 }
2605
2606 mutex_unlock(&ifmgd->mtx);
2607
Johannes Berg0ff71612009-09-26 14:45:41 +02002608 printk(KERN_DEBUG "%s: deauthenticating from %pM by local choice (reason=%d)\n",
Johannes Berg47846c92009-11-25 17:46:19 +01002609 sdata->name, bssid, req->reason_code);
Johannes Berg0ff71612009-09-26 14:45:41 +02002610
Johannes Berg77fdaa12009-07-07 03:45:17 +02002611 ieee80211_send_deauth_disassoc(sdata, bssid,
Johannes Berg667503d2009-07-07 03:56:11 +02002612 IEEE80211_STYPE_DEAUTH, req->reason_code,
2613 cookie);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002614
2615 return 0;
2616}
2617
2618int ieee80211_mgd_disassoc(struct ieee80211_sub_if_data *sdata,
Johannes Berg667503d2009-07-07 03:56:11 +02002619 struct cfg80211_disassoc_request *req,
2620 void *cookie)
Johannes Berg77fdaa12009-07-07 03:45:17 +02002621{
2622 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2623
Johannes Berg77fdaa12009-07-07 03:45:17 +02002624 mutex_lock(&ifmgd->mtx);
2625
Johannes Berg8d8b2612009-07-25 11:58:36 +02002626 /*
2627 * cfg80211 should catch this ... but it's racy since
2628 * we can receive a disassoc frame, process it, hand it
2629 * to cfg80211 while that's in a locked section already
2630 * trying to tell us that the user wants to disconnect.
2631 */
2632 if (&ifmgd->associated->cbss != req->bss) {
Johannes Berg77fdaa12009-07-07 03:45:17 +02002633 mutex_unlock(&ifmgd->mtx);
2634 return -ENOLINK;
2635 }
2636
Johannes Berg0ff71612009-09-26 14:45:41 +02002637 printk(KERN_DEBUG "%s: disassociating from %pM by local choice (reason=%d)\n",
Johannes Berg47846c92009-11-25 17:46:19 +01002638 sdata->name, req->bss->bssid, req->reason_code);
Johannes Berg0ff71612009-09-26 14:45:41 +02002639
Johannes Berge21546a2009-08-06 20:41:32 +02002640 ieee80211_set_disassoc(sdata, false);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002641
2642 mutex_unlock(&ifmgd->mtx);
2643
2644 ieee80211_send_deauth_disassoc(sdata, req->bss->bssid,
Johannes Berg667503d2009-07-07 03:56:11 +02002645 IEEE80211_STYPE_DISASSOC, req->reason_code,
2646 cookie);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002647 return 0;
2648}