blob: dcc14e99227c03ed9dccbd2d1db8481dabe5c138 [file] [log] [blame]
Jiri Bencf0706e82007-05-05 11:45:53 -07001/*
2 * BSS client mode implementation
Jouni Malinen5394af42009-01-08 13:31:59 +02003 * Copyright 2003-2008, Jouni Malinen <j@w1.fi>
Jiri Bencf0706e82007-05-05 11:45:53 -07004 * Copyright 2004, Instant802 Networks, Inc.
5 * Copyright 2005, Devicescape Software, Inc.
6 * Copyright 2006-2007 Jiri Benc <jbenc@suse.cz>
7 * Copyright 2007, Michael Wu <flamingice@sourmilk.net>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 */
13
Geert Uytterhoeven5b323ed2007-05-08 18:40:27 -070014#include <linux/delay.h>
Jiri Bencf0706e82007-05-05 11:45:53 -070015#include <linux/if_ether.h>
16#include <linux/skbuff.h>
Jiri Bencf0706e82007-05-05 11:45:53 -070017#include <linux/if_arp.h>
Jiri Bencf0706e82007-05-05 11:45:53 -070018#include <linux/etherdevice.h>
Johannes Bergd0709a62008-02-25 16:27:46 +010019#include <linux/rtnetlink.h>
Johannes Berg10f644a2009-04-16 13:17:25 +020020#include <linux/pm_qos_params.h>
Johannes Bergd91f36d2009-04-16 13:17:26 +020021#include <linux/crc32.h>
Jiri Bencf0706e82007-05-05 11:45:53 -070022#include <net/mac80211.h>
Johannes Berg472dbc42008-09-11 00:01:49 +020023#include <asm/unaligned.h>
Johannes Berg60f8b392008-09-08 17:44:22 +020024
Jiri Bencf0706e82007-05-05 11:45:53 -070025#include "ieee80211_i.h"
Johannes Berg24487982009-04-23 18:52:52 +020026#include "driver-ops.h"
Johannes Berg2c8dccc2008-04-08 15:14:40 -040027#include "rate.h"
28#include "led.h"
Jiri Bencf0706e82007-05-05 11:45:53 -070029
30#define IEEE80211_AUTH_TIMEOUT (HZ / 5)
31#define IEEE80211_AUTH_MAX_TRIES 3
32#define IEEE80211_ASSOC_TIMEOUT (HZ / 5)
33#define IEEE80211_ASSOC_MAX_TRIES 3
Maxim Levitskya43abf22009-07-31 18:54:12 +030034#define IEEE80211_MAX_PROBE_TRIES 5
Johannes Bergb291ba12009-07-10 15:29:03 +020035
36/*
37 * beacon loss detection timeout
38 * XXX: should depend on beacon interval
39 */
40#define IEEE80211_BEACON_LOSS_TIME (2 * HZ)
41/*
42 * Time the connection can be idle before we probe
43 * it to see if we can still talk to the AP.
44 */
Maxim Levitskyd1c50912009-07-31 18:54:23 +030045#define IEEE80211_CONNECTION_IDLE_TIME (30 * HZ)
Johannes Bergb291ba12009-07-10 15:29:03 +020046/*
47 * Time we wait for a probe response after sending
48 * a probe request because of beacon loss or for
49 * checking the connection still works.
50 */
Maxim Levitskyd1c50912009-07-31 18:54:23 +030051#define IEEE80211_PROBE_WAIT (HZ / 2)
Jiri Bencf0706e82007-05-05 11:45:53 -070052
Johannes Berg5bb644a2009-05-17 11:40:42 +020053#define TMR_RUNNING_TIMER 0
54#define TMR_RUNNING_CHANSW 1
55
Johannes Berg77fdaa12009-07-07 03:45:17 +020056/*
57 * All cfg80211 functions have to be called outside a locked
58 * section so that they can acquire a lock themselves... This
59 * is much simpler than queuing up things in cfg80211, but we
60 * do need some indirection for that here.
61 */
62enum rx_mgmt_action {
63 /* no action required */
64 RX_MGMT_NONE,
65
66 /* caller must call cfg80211_send_rx_auth() */
67 RX_MGMT_CFG80211_AUTH,
68
69 /* caller must call cfg80211_send_rx_assoc() */
70 RX_MGMT_CFG80211_ASSOC,
71
72 /* caller must call cfg80211_send_deauth() */
73 RX_MGMT_CFG80211_DEAUTH,
74
75 /* caller must call cfg80211_send_disassoc() */
76 RX_MGMT_CFG80211_DISASSOC,
77
78 /* caller must call cfg80211_auth_timeout() & free work */
79 RX_MGMT_CFG80211_AUTH_TO,
80
81 /* caller must call cfg80211_assoc_timeout() & free work */
82 RX_MGMT_CFG80211_ASSOC_TO,
83};
84
Johannes Berg5484e232008-09-08 17:44:27 +020085/* utils */
Johannes Berg77fdaa12009-07-07 03:45:17 +020086static inline void ASSERT_MGD_MTX(struct ieee80211_if_managed *ifmgd)
87{
88 WARN_ON(!mutex_is_locked(&ifmgd->mtx));
89}
90
Johannes Bergca386f32009-07-10 02:39:48 +020091/*
92 * We can have multiple work items (and connection probing)
93 * scheduling this timer, but we need to take care to only
94 * reschedule it when it should fire _earlier_ than it was
95 * asked for before, or if it's not pending right now. This
96 * function ensures that. Note that it then is required to
97 * run this function for all timeouts after the first one
98 * has happened -- the work that runs from this timer will
99 * do that.
100 */
101static void run_again(struct ieee80211_if_managed *ifmgd,
102 unsigned long timeout)
103{
104 ASSERT_MGD_MTX(ifmgd);
105
106 if (!timer_pending(&ifmgd->timer) ||
107 time_before(timeout, ifmgd->timer.expires))
108 mod_timer(&ifmgd->timer, timeout);
109}
110
Johannes Bergb291ba12009-07-10 15:29:03 +0200111static void mod_beacon_timer(struct ieee80211_sub_if_data *sdata)
112{
113 if (sdata->local->hw.flags & IEEE80211_HW_BEACON_FILTER)
114 return;
115
116 mod_timer(&sdata->u.mgd.bcn_mon_timer,
117 round_jiffies_up(jiffies + IEEE80211_BEACON_LOSS_TIME));
118}
119
Johannes Berg5484e232008-09-08 17:44:27 +0200120static int ecw2cw(int ecw)
Johannes Berg60f8b392008-09-08 17:44:22 +0200121{
Johannes Berg5484e232008-09-08 17:44:27 +0200122 return (1 << ecw) - 1;
Johannes Berg60f8b392008-09-08 17:44:22 +0200123}
124
Johannes Bergc2b13452008-09-11 00:01:55 +0200125static int ieee80211_compatible_rates(struct ieee80211_bss *bss,
Johannes Berg9ac19a92008-09-09 10:57:09 +0200126 struct ieee80211_supported_band *sband,
Johannes Berg881d9482009-01-21 15:13:48 +0100127 u32 *rates)
Johannes Berg9ac19a92008-09-09 10:57:09 +0200128{
129 int i, j, count;
130 *rates = 0;
131 count = 0;
132 for (i = 0; i < bss->supp_rates_len; i++) {
133 int rate = (bss->supp_rates[i] & 0x7F) * 5;
134
135 for (j = 0; j < sband->n_bitrates; j++)
136 if (sband->bitrates[j].bitrate == rate) {
137 *rates |= BIT(j);
138 count++;
139 break;
140 }
141 }
142
143 return count;
144}
145
Johannes Bergd5522e02009-03-30 13:23:35 +0200146/*
147 * ieee80211_enable_ht should be called only after the operating band
148 * has been determined as ht configuration depends on the hw's
149 * HT abilities for a specific band.
150 */
151static u32 ieee80211_enable_ht(struct ieee80211_sub_if_data *sdata,
152 struct ieee80211_ht_info *hti,
Johannes Berg77fdaa12009-07-07 03:45:17 +0200153 const u8 *bssid, u16 ap_ht_cap_flags)
Johannes Bergd5522e02009-03-30 13:23:35 +0200154{
155 struct ieee80211_local *local = sdata->local;
156 struct ieee80211_supported_band *sband;
Johannes Bergd5522e02009-03-30 13:23:35 +0200157 struct sta_info *sta;
158 u32 changed = 0;
Johannes Berg9ed6bcc2009-05-08 20:47:39 +0200159 u16 ht_opmode;
Johannes Bergd5522e02009-03-30 13:23:35 +0200160 bool enable_ht = true, ht_changed;
161 enum nl80211_channel_type channel_type = NL80211_CHAN_NO_HT;
162
163 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
164
Johannes Bergd5522e02009-03-30 13:23:35 +0200165 /* HT is not supported */
166 if (!sband->ht_cap.ht_supported)
167 enable_ht = false;
168
169 /* check that channel matches the right operating channel */
170 if (local->hw.conf.channel->center_freq !=
171 ieee80211_channel_to_frequency(hti->control_chan))
172 enable_ht = false;
173
174 if (enable_ht) {
175 channel_type = NL80211_CHAN_HT20;
176
177 if (!(ap_ht_cap_flags & IEEE80211_HT_CAP_40MHZ_INTOLERANT) &&
178 (sband->ht_cap.cap & IEEE80211_HT_CAP_SUP_WIDTH_20_40) &&
179 (hti->ht_param & IEEE80211_HT_PARAM_CHAN_WIDTH_ANY)) {
180 switch(hti->ht_param & IEEE80211_HT_PARAM_CHA_SEC_OFFSET) {
181 case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
Luis R. Rodriguez768777e2009-05-02 00:37:19 -0400182 if (!(local->hw.conf.channel->flags &
183 IEEE80211_CHAN_NO_HT40PLUS))
184 channel_type = NL80211_CHAN_HT40PLUS;
Johannes Bergd5522e02009-03-30 13:23:35 +0200185 break;
186 case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
Luis R. Rodriguez768777e2009-05-02 00:37:19 -0400187 if (!(local->hw.conf.channel->flags &
188 IEEE80211_CHAN_NO_HT40MINUS))
189 channel_type = NL80211_CHAN_HT40MINUS;
Johannes Bergd5522e02009-03-30 13:23:35 +0200190 break;
191 }
192 }
193 }
194
195 ht_changed = conf_is_ht(&local->hw.conf) != enable_ht ||
196 channel_type != local->hw.conf.channel_type;
197
198 local->oper_channel_type = channel_type;
199
200 if (ht_changed) {
201 /* channel_type change automatically detected */
202 ieee80211_hw_config(local, 0);
203
204 rcu_read_lock();
Johannes Berg77fdaa12009-07-07 03:45:17 +0200205 sta = sta_info_get(local, bssid);
Johannes Bergd5522e02009-03-30 13:23:35 +0200206 if (sta)
207 rate_control_rate_update(local, sband, sta,
208 IEEE80211_RC_HT_CHANGED);
Johannes Bergd5522e02009-03-30 13:23:35 +0200209 rcu_read_unlock();
Johannes Bergd5522e02009-03-30 13:23:35 +0200210 }
211
212 /* disable HT */
213 if (!enable_ht)
214 return 0;
215
Johannes Berg9ed6bcc2009-05-08 20:47:39 +0200216 ht_opmode = le16_to_cpu(hti->operation_mode);
Johannes Bergd5522e02009-03-30 13:23:35 +0200217
218 /* if bss configuration changed store the new one */
Johannes Berg413ad502009-05-08 21:21:06 +0200219 if (!sdata->ht_opmode_valid ||
220 sdata->vif.bss_conf.ht_operation_mode != ht_opmode) {
Johannes Bergd5522e02009-03-30 13:23:35 +0200221 changed |= BSS_CHANGED_HT;
Johannes Berg9ed6bcc2009-05-08 20:47:39 +0200222 sdata->vif.bss_conf.ht_operation_mode = ht_opmode;
Johannes Berg413ad502009-05-08 21:21:06 +0200223 sdata->ht_opmode_valid = true;
Johannes Bergd5522e02009-03-30 13:23:35 +0200224 }
225
226 return changed;
227}
228
Johannes Berg9c6bd792008-09-11 00:01:52 +0200229/* frame sending functions */
230
Johannes Berg77fdaa12009-07-07 03:45:17 +0200231static void ieee80211_send_assoc(struct ieee80211_sub_if_data *sdata,
232 struct ieee80211_mgd_work *wk)
Johannes Berg60f8b392008-09-08 17:44:22 +0200233{
Johannes Berg46900292009-02-15 12:44:28 +0100234 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg9ac19a92008-09-09 10:57:09 +0200235 struct ieee80211_local *local = sdata->local;
236 struct sk_buff *skb;
237 struct ieee80211_mgmt *mgmt;
Johannes Berg517357c2009-07-02 17:18:40 +0200238 u8 *pos;
239 const u8 *ies, *ht_ie;
Johannes Berg9ac19a92008-09-09 10:57:09 +0200240 int i, len, count, rates_len, supp_rates_len;
241 u16 capab;
Johannes Berg9ac19a92008-09-09 10:57:09 +0200242 int wmm = 0;
243 struct ieee80211_supported_band *sband;
Johannes Berg881d9482009-01-21 15:13:48 +0100244 u32 rates = 0;
Johannes Berg9ac19a92008-09-09 10:57:09 +0200245
246 skb = dev_alloc_skb(local->hw.extra_tx_headroom +
Johannes Berg77fdaa12009-07-07 03:45:17 +0200247 sizeof(*mgmt) + 200 + wk->ie_len +
248 wk->ssid_len);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200249 if (!skb) {
250 printk(KERN_DEBUG "%s: failed to allocate buffer for assoc "
251 "frame\n", sdata->dev->name);
252 return;
253 }
254 skb_reserve(skb, local->hw.extra_tx_headroom);
255
256 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
257
Johannes Berg46900292009-02-15 12:44:28 +0100258 capab = ifmgd->capab;
Johannes Berg9ac19a92008-09-09 10:57:09 +0200259
260 if (local->hw.conf.channel->band == IEEE80211_BAND_2GHZ) {
261 if (!(local->hw.flags & IEEE80211_HW_2GHZ_SHORT_SLOT_INCAPABLE))
262 capab |= WLAN_CAPABILITY_SHORT_SLOT_TIME;
263 if (!(local->hw.flags & IEEE80211_HW_2GHZ_SHORT_PREAMBLE_INCAPABLE))
264 capab |= WLAN_CAPABILITY_SHORT_PREAMBLE;
265 }
266
Johannes Berg77fdaa12009-07-07 03:45:17 +0200267 if (wk->bss->cbss.capability & WLAN_CAPABILITY_PRIVACY)
268 capab |= WLAN_CAPABILITY_PRIVACY;
269 if (wk->bss->wmm_used)
270 wmm = 1;
Johannes Berg9ac19a92008-09-09 10:57:09 +0200271
Johannes Berg77fdaa12009-07-07 03:45:17 +0200272 /* get all rates supported by the device and the AP as
273 * some APs don't like getting a superset of their rates
274 * in the association request (e.g. D-Link DAP 1353 in
275 * b-only mode) */
276 rates_len = ieee80211_compatible_rates(wk->bss, sband, &rates);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200277
Johannes Berg77fdaa12009-07-07 03:45:17 +0200278 if ((wk->bss->cbss.capability & WLAN_CAPABILITY_SPECTRUM_MGMT) &&
279 (local->hw.flags & IEEE80211_HW_SPECTRUM_MGMT))
280 capab |= WLAN_CAPABILITY_SPECTRUM_MGMT;
Johannes Berg9ac19a92008-09-09 10:57:09 +0200281
282 mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24);
283 memset(mgmt, 0, 24);
Johannes Berg77fdaa12009-07-07 03:45:17 +0200284 memcpy(mgmt->da, wk->bss->cbss.bssid, ETH_ALEN);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200285 memcpy(mgmt->sa, sdata->dev->dev_addr, ETH_ALEN);
Johannes Berg77fdaa12009-07-07 03:45:17 +0200286 memcpy(mgmt->bssid, wk->bss->cbss.bssid, ETH_ALEN);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200287
Johannes Berg77fdaa12009-07-07 03:45:17 +0200288 if (!is_zero_ether_addr(wk->prev_bssid)) {
Johannes Berg9ac19a92008-09-09 10:57:09 +0200289 skb_put(skb, 10);
290 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
291 IEEE80211_STYPE_REASSOC_REQ);
292 mgmt->u.reassoc_req.capab_info = cpu_to_le16(capab);
293 mgmt->u.reassoc_req.listen_interval =
294 cpu_to_le16(local->hw.conf.listen_interval);
Johannes Berg77fdaa12009-07-07 03:45:17 +0200295 memcpy(mgmt->u.reassoc_req.current_ap, wk->prev_bssid,
Johannes Berg9ac19a92008-09-09 10:57:09 +0200296 ETH_ALEN);
297 } else {
298 skb_put(skb, 4);
299 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
300 IEEE80211_STYPE_ASSOC_REQ);
301 mgmt->u.assoc_req.capab_info = cpu_to_le16(capab);
Rami Rosen13554122008-12-16 22:38:29 +0200302 mgmt->u.assoc_req.listen_interval =
Johannes Berg9ac19a92008-09-09 10:57:09 +0200303 cpu_to_le16(local->hw.conf.listen_interval);
304 }
305
306 /* SSID */
Johannes Berg77fdaa12009-07-07 03:45:17 +0200307 ies = pos = skb_put(skb, 2 + wk->ssid_len);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200308 *pos++ = WLAN_EID_SSID;
Johannes Berg77fdaa12009-07-07 03:45:17 +0200309 *pos++ = wk->ssid_len;
310 memcpy(pos, wk->ssid, wk->ssid_len);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200311
312 /* add all rates which were marked to be used above */
313 supp_rates_len = rates_len;
314 if (supp_rates_len > 8)
315 supp_rates_len = 8;
316
317 len = sband->n_bitrates;
318 pos = skb_put(skb, supp_rates_len + 2);
319 *pos++ = WLAN_EID_SUPP_RATES;
320 *pos++ = supp_rates_len;
321
322 count = 0;
323 for (i = 0; i < sband->n_bitrates; i++) {
324 if (BIT(i) & rates) {
325 int rate = sband->bitrates[i].bitrate;
326 *pos++ = (u8) (rate / 5);
327 if (++count == 8)
328 break;
329 }
330 }
331
332 if (rates_len > count) {
333 pos = skb_put(skb, rates_len - count + 2);
334 *pos++ = WLAN_EID_EXT_SUPP_RATES;
335 *pos++ = rates_len - count;
336
337 for (i++; i < sband->n_bitrates; i++) {
338 if (BIT(i) & rates) {
339 int rate = sband->bitrates[i].bitrate;
340 *pos++ = (u8) (rate / 5);
341 }
342 }
343 }
344
345 if (capab & WLAN_CAPABILITY_SPECTRUM_MGMT) {
346 /* 1. power capabilities */
347 pos = skb_put(skb, 4);
348 *pos++ = WLAN_EID_PWR_CAPABILITY;
349 *pos++ = 2;
350 *pos++ = 0; /* min tx power */
351 *pos++ = local->hw.conf.channel->max_power; /* max tx power */
352
353 /* 2. supported channels */
354 /* TODO: get this in reg domain format */
355 pos = skb_put(skb, 2 * sband->n_channels + 2);
356 *pos++ = WLAN_EID_SUPPORTED_CHANNELS;
357 *pos++ = 2 * sband->n_channels;
358 for (i = 0; i < sband->n_channels; i++) {
359 *pos++ = ieee80211_frequency_to_channel(
360 sband->channels[i].center_freq);
361 *pos++ = 1; /* one channel in the subband*/
362 }
363 }
364
Johannes Berg77fdaa12009-07-07 03:45:17 +0200365 if (wk->ie_len && wk->ie) {
366 pos = skb_put(skb, wk->ie_len);
367 memcpy(pos, wk->ie, wk->ie_len);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200368 }
369
Johannes Berg46900292009-02-15 12:44:28 +0100370 if (wmm && (ifmgd->flags & IEEE80211_STA_WMM_ENABLED)) {
Johannes Berg9ac19a92008-09-09 10:57:09 +0200371 pos = skb_put(skb, 9);
372 *pos++ = WLAN_EID_VENDOR_SPECIFIC;
373 *pos++ = 7; /* len */
374 *pos++ = 0x00; /* Microsoft OUI 00:50:F2 */
375 *pos++ = 0x50;
376 *pos++ = 0xf2;
377 *pos++ = 2; /* WME */
378 *pos++ = 0; /* WME info */
379 *pos++ = 1; /* WME ver */
380 *pos++ = 0;
381 }
382
383 /* wmm support is a must to HT */
Vasanthakumar Thiagarajaneb469362008-12-23 21:30:50 +0530384 /*
385 * IEEE802.11n does not allow TKIP/WEP as pairwise
386 * ciphers in HT mode. We still associate in non-ht
387 * mode (11a/b/g) if any one of these ciphers is
388 * configured as pairwise.
389 */
Johannes Berg46900292009-02-15 12:44:28 +0100390 if (wmm && (ifmgd->flags & IEEE80211_STA_WMM_ENABLED) &&
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200391 sband->ht_cap.ht_supported &&
Johannes Berg77fdaa12009-07-07 03:45:17 +0200392 (ht_ie = ieee80211_bss_get_ie(&wk->bss->cbss, WLAN_EID_HT_INFORMATION)) &&
Vasanthakumar Thiagarajaneb469362008-12-23 21:30:50 +0530393 ht_ie[1] >= sizeof(struct ieee80211_ht_info) &&
Johannes Bergab1faea2009-07-01 21:41:17 +0200394 (!(ifmgd->flags & IEEE80211_STA_DISABLE_11N))) {
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200395 struct ieee80211_ht_info *ht_info =
396 (struct ieee80211_ht_info *)(ht_ie + 2);
397 u16 cap = sband->ht_cap.cap;
Johannes Berg9ac19a92008-09-09 10:57:09 +0200398 __le16 tmp;
399 u32 flags = local->hw.conf.channel->flags;
400
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200401 switch (ht_info->ht_param & IEEE80211_HT_PARAM_CHA_SEC_OFFSET) {
402 case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
Luis R. Rodriguez689da1b2009-05-02 00:37:18 -0400403 if (flags & IEEE80211_CHAN_NO_HT40PLUS) {
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200404 cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
Johannes Berg9ac19a92008-09-09 10:57:09 +0200405 cap &= ~IEEE80211_HT_CAP_SGI_40;
406 }
407 break;
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200408 case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
Luis R. Rodriguez689da1b2009-05-02 00:37:18 -0400409 if (flags & IEEE80211_CHAN_NO_HT40MINUS) {
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200410 cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
Johannes Berg9ac19a92008-09-09 10:57:09 +0200411 cap &= ~IEEE80211_HT_CAP_SGI_40;
412 }
413 break;
414 }
415
416 tmp = cpu_to_le16(cap);
417 pos = skb_put(skb, sizeof(struct ieee80211_ht_cap)+2);
418 *pos++ = WLAN_EID_HT_CAPABILITY;
419 *pos++ = sizeof(struct ieee80211_ht_cap);
420 memset(pos, 0, sizeof(struct ieee80211_ht_cap));
421 memcpy(pos, &tmp, sizeof(u16));
422 pos += sizeof(u16);
423 /* TODO: needs a define here for << 2 */
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200424 *pos++ = sband->ht_cap.ampdu_factor |
425 (sband->ht_cap.ampdu_density << 2);
426 memcpy(pos, &sband->ht_cap.mcs, sizeof(sband->ht_cap.mcs));
Johannes Berg9ac19a92008-09-09 10:57:09 +0200427 }
428
Johannes Berge50db652008-09-09 15:07:09 +0200429 ieee80211_tx_skb(sdata, skb, 0);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200430}
431
432
Johannes Bergef422bc2008-09-09 10:58:25 +0200433static void ieee80211_send_deauth_disassoc(struct ieee80211_sub_if_data *sdata,
Johannes Berg667503d2009-07-07 03:56:11 +0200434 const u8 *bssid, u16 stype, u16 reason,
435 void *cookie)
Johannes Berg9ac19a92008-09-09 10:57:09 +0200436{
437 struct ieee80211_local *local = sdata->local;
Johannes Berg46900292009-02-15 12:44:28 +0100438 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg9ac19a92008-09-09 10:57:09 +0200439 struct sk_buff *skb;
440 struct ieee80211_mgmt *mgmt;
441
Jouni Malinen65fc73a2009-03-20 21:21:16 +0200442 skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*mgmt));
Johannes Berg9ac19a92008-09-09 10:57:09 +0200443 if (!skb) {
Johannes Bergef422bc2008-09-09 10:58:25 +0200444 printk(KERN_DEBUG "%s: failed to allocate buffer for "
445 "deauth/disassoc frame\n", sdata->dev->name);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200446 return;
447 }
448 skb_reserve(skb, local->hw.extra_tx_headroom);
449
450 mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24);
451 memset(mgmt, 0, 24);
Johannes Berg77fdaa12009-07-07 03:45:17 +0200452 memcpy(mgmt->da, bssid, ETH_ALEN);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200453 memcpy(mgmt->sa, sdata->dev->dev_addr, ETH_ALEN);
Johannes Berg77fdaa12009-07-07 03:45:17 +0200454 memcpy(mgmt->bssid, bssid, ETH_ALEN);
Johannes Bergef422bc2008-09-09 10:58:25 +0200455 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT | stype);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200456 skb_put(skb, 2);
Johannes Bergef422bc2008-09-09 10:58:25 +0200457 /* u.deauth.reason_code == u.disassoc.reason_code */
Johannes Berg9ac19a92008-09-09 10:57:09 +0200458 mgmt->u.deauth.reason_code = cpu_to_le16(reason);
459
Jouni Malinen53b46b82009-03-27 20:53:56 +0200460 if (stype == IEEE80211_STYPE_DEAUTH)
Holger Schurigce470612009-10-13 13:28:13 +0200461 if (cookie)
462 __cfg80211_send_deauth(sdata->dev, (u8 *)mgmt, skb->len);
463 else
464 cfg80211_send_deauth(sdata->dev, (u8 *)mgmt, skb->len);
Jouni Malinen53b46b82009-03-27 20:53:56 +0200465 else
Holger Schurigce470612009-10-13 13:28:13 +0200466 if (cookie)
467 __cfg80211_send_disassoc(sdata->dev, (u8 *)mgmt, skb->len);
468 else
469 cfg80211_send_disassoc(sdata->dev, (u8 *)mgmt, skb->len);
Johannes Berg46900292009-02-15 12:44:28 +0100470 ieee80211_tx_skb(sdata, skb, ifmgd->flags & IEEE80211_STA_MFP_ENABLED);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200471}
472
Kalle Valo572e0012009-02-10 17:09:31 +0200473void ieee80211_send_pspoll(struct ieee80211_local *local,
474 struct ieee80211_sub_if_data *sdata)
475{
Johannes Berg46900292009-02-15 12:44:28 +0100476 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Kalle Valo572e0012009-02-10 17:09:31 +0200477 struct ieee80211_pspoll *pspoll;
478 struct sk_buff *skb;
479 u16 fc;
480
481 skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*pspoll));
482 if (!skb) {
483 printk(KERN_DEBUG "%s: failed to allocate buffer for "
484 "pspoll frame\n", sdata->dev->name);
485 return;
486 }
487 skb_reserve(skb, local->hw.extra_tx_headroom);
488
489 pspoll = (struct ieee80211_pspoll *) skb_put(skb, sizeof(*pspoll));
490 memset(pspoll, 0, sizeof(*pspoll));
491 fc = IEEE80211_FTYPE_CTL | IEEE80211_STYPE_PSPOLL | IEEE80211_FCTL_PM;
492 pspoll->frame_control = cpu_to_le16(fc);
Johannes Berg46900292009-02-15 12:44:28 +0100493 pspoll->aid = cpu_to_le16(ifmgd->aid);
Kalle Valo572e0012009-02-10 17:09:31 +0200494
495 /* aid in PS-Poll has its two MSBs each set to 1 */
496 pspoll->aid |= cpu_to_le16(1 << 15 | 1 << 14);
497
Johannes Berg46900292009-02-15 12:44:28 +0100498 memcpy(pspoll->bssid, ifmgd->bssid, ETH_ALEN);
Kalle Valo572e0012009-02-10 17:09:31 +0200499 memcpy(pspoll->ta, sdata->dev->dev_addr, ETH_ALEN);
500
501 ieee80211_tx_skb(sdata, skb, 0);
Kalle Valo572e0012009-02-10 17:09:31 +0200502}
503
Johannes Berg965beda2009-04-16 13:17:24 +0200504void ieee80211_send_nullfunc(struct ieee80211_local *local,
505 struct ieee80211_sub_if_data *sdata,
506 int powersave)
507{
508 struct sk_buff *skb;
509 struct ieee80211_hdr *nullfunc;
510 __le16 fc;
511
512 if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION))
513 return;
514
515 skb = dev_alloc_skb(local->hw.extra_tx_headroom + 24);
516 if (!skb) {
517 printk(KERN_DEBUG "%s: failed to allocate buffer for nullfunc "
518 "frame\n", sdata->dev->name);
519 return;
520 }
521 skb_reserve(skb, local->hw.extra_tx_headroom);
522
523 nullfunc = (struct ieee80211_hdr *) skb_put(skb, 24);
524 memset(nullfunc, 0, 24);
525 fc = cpu_to_le16(IEEE80211_FTYPE_DATA | IEEE80211_STYPE_NULLFUNC |
526 IEEE80211_FCTL_TODS);
527 if (powersave)
528 fc |= cpu_to_le16(IEEE80211_FCTL_PM);
529 nullfunc->frame_control = fc;
530 memcpy(nullfunc->addr1, sdata->u.mgd.bssid, ETH_ALEN);
531 memcpy(nullfunc->addr2, sdata->dev->dev_addr, ETH_ALEN);
532 memcpy(nullfunc->addr3, sdata->u.mgd.bssid, ETH_ALEN);
533
534 ieee80211_tx_skb(sdata, skb, 0);
535}
536
Johannes Bergcc32abd2009-05-15 11:52:31 +0200537/* spectrum management related things */
538static void ieee80211_chswitch_work(struct work_struct *work)
539{
540 struct ieee80211_sub_if_data *sdata =
541 container_of(work, struct ieee80211_sub_if_data, u.mgd.chswitch_work);
Johannes Bergcc32abd2009-05-15 11:52:31 +0200542 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
543
544 if (!netif_running(sdata->dev))
545 return;
546
Johannes Berg77fdaa12009-07-07 03:45:17 +0200547 mutex_lock(&ifmgd->mtx);
548 if (!ifmgd->associated)
549 goto out;
Johannes Bergcc32abd2009-05-15 11:52:31 +0200550
551 sdata->local->oper_channel = sdata->local->csa_channel;
Johannes Berg77fdaa12009-07-07 03:45:17 +0200552 ieee80211_hw_config(sdata->local, IEEE80211_CONF_CHANGE_CHANNEL);
Johannes Bergcc32abd2009-05-15 11:52:31 +0200553
Johannes Berg77fdaa12009-07-07 03:45:17 +0200554 /* XXX: shouldn't really modify cfg80211-owned data! */
555 ifmgd->associated->cbss.channel = sdata->local->oper_channel;
556
Johannes Bergcc32abd2009-05-15 11:52:31 +0200557 ieee80211_wake_queues_by_reason(&sdata->local->hw,
558 IEEE80211_QUEUE_STOP_REASON_CSA);
Johannes Berg77fdaa12009-07-07 03:45:17 +0200559 out:
560 ifmgd->flags &= ~IEEE80211_STA_CSA_RECEIVED;
561 mutex_unlock(&ifmgd->mtx);
Johannes Bergcc32abd2009-05-15 11:52:31 +0200562}
563
564static void ieee80211_chswitch_timer(unsigned long data)
565{
566 struct ieee80211_sub_if_data *sdata =
567 (struct ieee80211_sub_if_data *) data;
568 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
569
Johannes Berg5bb644a2009-05-17 11:40:42 +0200570 if (sdata->local->quiescing) {
571 set_bit(TMR_RUNNING_CHANSW, &ifmgd->timers_running);
572 return;
573 }
574
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -0400575 ieee80211_queue_work(&sdata->local->hw, &ifmgd->chswitch_work);
Johannes Bergcc32abd2009-05-15 11:52:31 +0200576}
577
578void ieee80211_sta_process_chanswitch(struct ieee80211_sub_if_data *sdata,
579 struct ieee80211_channel_sw_ie *sw_elem,
580 struct ieee80211_bss *bss)
581{
582 struct ieee80211_channel *new_ch;
583 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
584 int new_freq = ieee80211_channel_to_frequency(sw_elem->new_ch_num);
585
Johannes Berg77fdaa12009-07-07 03:45:17 +0200586 ASSERT_MGD_MTX(ifmgd);
587
588 if (!ifmgd->associated)
Johannes Bergcc32abd2009-05-15 11:52:31 +0200589 return;
590
Helmut Schaafbe9c422009-07-23 12:14:04 +0200591 if (sdata->local->scanning)
Johannes Bergcc32abd2009-05-15 11:52:31 +0200592 return;
593
594 /* Disregard subsequent beacons if we are already running a timer
595 processing a CSA */
596
597 if (ifmgd->flags & IEEE80211_STA_CSA_RECEIVED)
598 return;
599
600 new_ch = ieee80211_get_channel(sdata->local->hw.wiphy, new_freq);
601 if (!new_ch || new_ch->flags & IEEE80211_CHAN_DISABLED)
602 return;
603
604 sdata->local->csa_channel = new_ch;
605
606 if (sw_elem->count <= 1) {
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -0400607 ieee80211_queue_work(&sdata->local->hw, &ifmgd->chswitch_work);
Johannes Bergcc32abd2009-05-15 11:52:31 +0200608 } else {
609 ieee80211_stop_queues_by_reason(&sdata->local->hw,
610 IEEE80211_QUEUE_STOP_REASON_CSA);
611 ifmgd->flags |= IEEE80211_STA_CSA_RECEIVED;
612 mod_timer(&ifmgd->chswitch_timer,
613 jiffies +
614 msecs_to_jiffies(sw_elem->count *
615 bss->cbss.beacon_interval));
616 }
617}
618
619static void ieee80211_handle_pwr_constr(struct ieee80211_sub_if_data *sdata,
620 u16 capab_info, u8 *pwr_constr_elem,
621 u8 pwr_constr_elem_len)
622{
623 struct ieee80211_conf *conf = &sdata->local->hw.conf;
624
625 if (!(capab_info & WLAN_CAPABILITY_SPECTRUM_MGMT))
626 return;
627
628 /* Power constraint IE length should be 1 octet */
629 if (pwr_constr_elem_len != 1)
630 return;
631
632 if ((*pwr_constr_elem <= conf->channel->max_power) &&
633 (*pwr_constr_elem != sdata->local->power_constr_level)) {
634 sdata->local->power_constr_level = *pwr_constr_elem;
635 ieee80211_hw_config(sdata->local, 0);
636 }
637}
638
Johannes Berg965beda2009-04-16 13:17:24 +0200639/* powersave */
640static void ieee80211_enable_ps(struct ieee80211_local *local,
641 struct ieee80211_sub_if_data *sdata)
642{
643 struct ieee80211_conf *conf = &local->hw.conf;
644
Johannes Bergd5edaed2009-04-22 23:02:51 +0200645 /*
646 * If we are scanning right now then the parameters will
647 * take effect when scan finishes.
648 */
Helmut Schaafbe9c422009-07-23 12:14:04 +0200649 if (local->scanning)
Johannes Bergd5edaed2009-04-22 23:02:51 +0200650 return;
651
Johannes Berg965beda2009-04-16 13:17:24 +0200652 if (conf->dynamic_ps_timeout > 0 &&
653 !(local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS)) {
654 mod_timer(&local->dynamic_ps_timer, jiffies +
655 msecs_to_jiffies(conf->dynamic_ps_timeout));
656 } else {
657 if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)
658 ieee80211_send_nullfunc(local, sdata, 1);
659 conf->flags |= IEEE80211_CONF_PS;
660 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
661 }
662}
663
664static void ieee80211_change_ps(struct ieee80211_local *local)
665{
666 struct ieee80211_conf *conf = &local->hw.conf;
667
668 if (local->ps_sdata) {
Johannes Berg965beda2009-04-16 13:17:24 +0200669 ieee80211_enable_ps(local, local->ps_sdata);
670 } else if (conf->flags & IEEE80211_CONF_PS) {
671 conf->flags &= ~IEEE80211_CONF_PS;
672 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
673 del_timer_sync(&local->dynamic_ps_timer);
674 cancel_work_sync(&local->dynamic_ps_enable_work);
675 }
676}
677
678/* need to hold RTNL or interface lock */
Johannes Berg10f644a2009-04-16 13:17:25 +0200679void ieee80211_recalc_ps(struct ieee80211_local *local, s32 latency)
Johannes Berg965beda2009-04-16 13:17:24 +0200680{
681 struct ieee80211_sub_if_data *sdata, *found = NULL;
682 int count = 0;
683
684 if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_PS)) {
685 local->ps_sdata = NULL;
686 return;
687 }
688
689 list_for_each_entry(sdata, &local->interfaces, list) {
690 if (!netif_running(sdata->dev))
691 continue;
692 if (sdata->vif.type != NL80211_IFTYPE_STATION)
693 continue;
694 found = sdata;
695 count++;
696 }
697
Luis R. Rodriguez43f78532009-06-10 15:16:15 +0200698 if (count == 1 && found->u.mgd.powersave &&
Johannes Berg77fdaa12009-07-07 03:45:17 +0200699 found->u.mgd.associated && list_empty(&found->u.mgd.work_list) &&
Johannes Bergb291ba12009-07-10 15:29:03 +0200700 !(found->u.mgd.flags & (IEEE80211_STA_BEACON_POLL |
701 IEEE80211_STA_CONNECTION_POLL))) {
Johannes Berg10f644a2009-04-16 13:17:25 +0200702 s32 beaconint_us;
703
704 if (latency < 0)
705 latency = pm_qos_requirement(PM_QOS_NETWORK_LATENCY);
706
707 beaconint_us = ieee80211_tu_to_usec(
708 found->vif.bss_conf.beacon_int);
709
Johannes Berg04fe2032009-04-22 18:44:37 +0200710 if (beaconint_us > latency) {
Johannes Berg10f644a2009-04-16 13:17:25 +0200711 local->ps_sdata = NULL;
Johannes Berg04fe2032009-04-22 18:44:37 +0200712 } else {
713 u8 dtimper = found->vif.bss_conf.dtim_period;
714 int maxslp = 1;
715
716 if (dtimper > 1)
717 maxslp = min_t(int, dtimper,
718 latency / beaconint_us);
719
Johannes Berg9ccebe62009-04-23 10:32:36 +0200720 local->hw.conf.max_sleep_period = maxslp;
Johannes Berg10f644a2009-04-16 13:17:25 +0200721 local->ps_sdata = found;
Johannes Berg04fe2032009-04-22 18:44:37 +0200722 }
Johannes Berg10f644a2009-04-16 13:17:25 +0200723 } else {
Johannes Berg965beda2009-04-16 13:17:24 +0200724 local->ps_sdata = NULL;
Johannes Berg10f644a2009-04-16 13:17:25 +0200725 }
Johannes Berg965beda2009-04-16 13:17:24 +0200726
727 ieee80211_change_ps(local);
728}
729
730void ieee80211_dynamic_ps_disable_work(struct work_struct *work)
731{
732 struct ieee80211_local *local =
733 container_of(work, struct ieee80211_local,
734 dynamic_ps_disable_work);
735
736 if (local->hw.conf.flags & IEEE80211_CONF_PS) {
737 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
738 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
739 }
740
741 ieee80211_wake_queues_by_reason(&local->hw,
742 IEEE80211_QUEUE_STOP_REASON_PS);
743}
744
745void ieee80211_dynamic_ps_enable_work(struct work_struct *work)
746{
747 struct ieee80211_local *local =
748 container_of(work, struct ieee80211_local,
749 dynamic_ps_enable_work);
750 struct ieee80211_sub_if_data *sdata = local->ps_sdata;
751
752 /* can only happen when PS was just disabled anyway */
753 if (!sdata)
754 return;
755
756 if (local->hw.conf.flags & IEEE80211_CONF_PS)
757 return;
758
759 if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)
760 ieee80211_send_nullfunc(local, sdata, 1);
761
762 local->hw.conf.flags |= IEEE80211_CONF_PS;
763 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
764}
765
766void ieee80211_dynamic_ps_timer(unsigned long data)
767{
768 struct ieee80211_local *local = (void *) data;
769
Luis R. Rodriguez78f1a8b2009-07-27 08:38:25 -0700770 if (local->quiescing || local->suspended)
Johannes Berg5bb644a2009-05-17 11:40:42 +0200771 return;
772
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -0400773 ieee80211_queue_work(&local->hw, &local->dynamic_ps_enable_work);
Johannes Berg965beda2009-04-16 13:17:24 +0200774}
775
Johannes Berg60f8b392008-09-08 17:44:22 +0200776/* MLME */
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200777static void ieee80211_sta_wmm_params(struct ieee80211_local *local,
Johannes Berg46900292009-02-15 12:44:28 +0100778 struct ieee80211_if_managed *ifmgd,
Jiri Bencf0706e82007-05-05 11:45:53 -0700779 u8 *wmm_param, size_t wmm_param_len)
780{
Jiri Bencf0706e82007-05-05 11:45:53 -0700781 struct ieee80211_tx_queue_params params;
782 size_t left;
783 int count;
784 u8 *pos;
785
Johannes Berg46900292009-02-15 12:44:28 +0100786 if (!(ifmgd->flags & IEEE80211_STA_WMM_ENABLED))
Johannes Berg3434fbd2008-05-03 00:59:37 +0200787 return;
788
789 if (!wmm_param)
790 return;
791
Jiri Bencf0706e82007-05-05 11:45:53 -0700792 if (wmm_param_len < 8 || wmm_param[5] /* version */ != 1)
793 return;
794 count = wmm_param[6] & 0x0f;
Johannes Berg46900292009-02-15 12:44:28 +0100795 if (count == ifmgd->wmm_last_param_set)
Jiri Bencf0706e82007-05-05 11:45:53 -0700796 return;
Johannes Berg46900292009-02-15 12:44:28 +0100797 ifmgd->wmm_last_param_set = count;
Jiri Bencf0706e82007-05-05 11:45:53 -0700798
799 pos = wmm_param + 8;
800 left = wmm_param_len - 8;
801
802 memset(&params, 0, sizeof(params));
803
Jiri Bencf0706e82007-05-05 11:45:53 -0700804 local->wmm_acm = 0;
805 for (; left >= 4; left -= 4, pos += 4) {
806 int aci = (pos[0] >> 5) & 0x03;
807 int acm = (pos[0] >> 4) & 0x01;
808 int queue;
809
810 switch (aci) {
Jouni Malinen0eeb59f2009-03-05 17:23:46 +0200811 case 1: /* AC_BK */
Johannes Berge100bb62008-04-30 18:51:21 +0200812 queue = 3;
Johannes Berg988c0f72008-04-17 19:21:22 +0200813 if (acm)
Jouni Malinen0eeb59f2009-03-05 17:23:46 +0200814 local->wmm_acm |= BIT(1) | BIT(2); /* BK/- */
Jiri Bencf0706e82007-05-05 11:45:53 -0700815 break;
Jouni Malinen0eeb59f2009-03-05 17:23:46 +0200816 case 2: /* AC_VI */
Johannes Berge100bb62008-04-30 18:51:21 +0200817 queue = 1;
Johannes Berg988c0f72008-04-17 19:21:22 +0200818 if (acm)
Jouni Malinen0eeb59f2009-03-05 17:23:46 +0200819 local->wmm_acm |= BIT(4) | BIT(5); /* CL/VI */
Jiri Bencf0706e82007-05-05 11:45:53 -0700820 break;
Jouni Malinen0eeb59f2009-03-05 17:23:46 +0200821 case 3: /* AC_VO */
Johannes Berge100bb62008-04-30 18:51:21 +0200822 queue = 0;
Johannes Berg988c0f72008-04-17 19:21:22 +0200823 if (acm)
Jouni Malinen0eeb59f2009-03-05 17:23:46 +0200824 local->wmm_acm |= BIT(6) | BIT(7); /* VO/NC */
Jiri Bencf0706e82007-05-05 11:45:53 -0700825 break;
Jouni Malinen0eeb59f2009-03-05 17:23:46 +0200826 case 0: /* AC_BE */
Jiri Bencf0706e82007-05-05 11:45:53 -0700827 default:
Johannes Berge100bb62008-04-30 18:51:21 +0200828 queue = 2;
Johannes Berg988c0f72008-04-17 19:21:22 +0200829 if (acm)
Jouni Malinen0eeb59f2009-03-05 17:23:46 +0200830 local->wmm_acm |= BIT(0) | BIT(3); /* BE/EE */
Jiri Bencf0706e82007-05-05 11:45:53 -0700831 break;
832 }
833
834 params.aifs = pos[0] & 0x0f;
835 params.cw_max = ecw2cw((pos[1] & 0xf0) >> 4);
836 params.cw_min = ecw2cw(pos[1] & 0x0f);
Johannes Bergf434b2d2008-07-10 11:22:31 +0200837 params.txop = get_unaligned_le16(pos + 2);
Johannes Bergf4ea83d2008-06-30 15:10:46 +0200838#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Jiri Bencf0706e82007-05-05 11:45:53 -0700839 printk(KERN_DEBUG "%s: WMM queue=%d aci=%d acm=%d aifs=%d "
Johannes Berg3330d7be2008-02-10 16:49:38 +0100840 "cWmin=%d cWmax=%d txop=%d\n",
Johannes Berg0bffe402009-06-09 16:18:32 +0200841 wiphy_name(local->hw.wiphy), queue, aci, acm,
842 params.aifs, params.cw_min, params.cw_max, params.txop);
Johannes Berg3330d7be2008-02-10 16:49:38 +0100843#endif
Johannes Berg24487982009-04-23 18:52:52 +0200844 if (drv_conf_tx(local, queue, &params) && local->ops->conf_tx)
Jiri Bencf0706e82007-05-05 11:45:53 -0700845 printk(KERN_DEBUG "%s: failed to set TX queue "
Johannes Berg0bffe402009-06-09 16:18:32 +0200846 "parameters for queue %d\n",
847 wiphy_name(local->hw.wiphy), queue);
Jiri Bencf0706e82007-05-05 11:45:53 -0700848 }
849}
850
Johannes Berg7a5158e2008-10-08 10:59:33 +0200851static u32 ieee80211_handle_bss_capability(struct ieee80211_sub_if_data *sdata,
852 u16 capab, bool erp_valid, u8 erp)
Daniel Drake56282212007-07-10 19:32:10 +0200853{
Johannes Bergbda39332008-10-11 01:51:51 +0200854 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
Johannes Berg471b3ef2007-12-28 14:32:58 +0100855 u32 changed = 0;
Johannes Berg7a5158e2008-10-08 10:59:33 +0200856 bool use_protection;
857 bool use_short_preamble;
858 bool use_short_slot;
859
860 if (erp_valid) {
861 use_protection = (erp & WLAN_ERP_USE_PROTECTION) != 0;
862 use_short_preamble = (erp & WLAN_ERP_BARKER_PREAMBLE) == 0;
863 } else {
864 use_protection = false;
865 use_short_preamble = !!(capab & WLAN_CAPABILITY_SHORT_PREAMBLE);
866 }
867
868 use_short_slot = !!(capab & WLAN_CAPABILITY_SHORT_SLOT_TIME);
Daniel Drake56282212007-07-10 19:32:10 +0200869
Johannes Berg471b3ef2007-12-28 14:32:58 +0100870 if (use_protection != bss_conf->use_cts_prot) {
Johannes Berg471b3ef2007-12-28 14:32:58 +0100871 bss_conf->use_cts_prot = use_protection;
872 changed |= BSS_CHANGED_ERP_CTS_PROT;
Daniel Drake56282212007-07-10 19:32:10 +0200873 }
Daniel Drake7e9ed182007-07-27 15:43:24 +0200874
Vladimir Koutnyd43c7b32008-03-31 17:05:03 +0200875 if (use_short_preamble != bss_conf->use_short_preamble) {
Vladimir Koutnyd43c7b32008-03-31 17:05:03 +0200876 bss_conf->use_short_preamble = use_short_preamble;
Johannes Berg471b3ef2007-12-28 14:32:58 +0100877 changed |= BSS_CHANGED_ERP_PREAMBLE;
Daniel Drake7e9ed182007-07-27 15:43:24 +0200878 }
Daniel Draked9430a32007-07-27 15:43:24 +0200879
Johannes Berg7a5158e2008-10-08 10:59:33 +0200880 if (use_short_slot != bss_conf->use_short_slot) {
Johannes Berg7a5158e2008-10-08 10:59:33 +0200881 bss_conf->use_short_slot = use_short_slot;
882 changed |= BSS_CHANGED_ERP_SLOT;
John W. Linville50c4afb2008-04-15 14:09:27 -0400883 }
884
885 return changed;
886}
887
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200888static void ieee80211_set_associated(struct ieee80211_sub_if_data *sdata,
Johannes Berge21546a2009-08-06 20:41:32 +0200889 struct ieee80211_mgd_work *wk,
Johannes Bergae5eb022008-10-14 16:58:37 +0200890 u32 bss_info_changed)
Jiri Bencf0706e82007-05-05 11:45:53 -0700891{
Johannes Berg471b3ef2007-12-28 14:32:58 +0100892 struct ieee80211_local *local = sdata->local;
Johannes Berge21546a2009-08-06 20:41:32 +0200893 struct ieee80211_bss *bss = wk->bss;
Jiri Slabyd6f2da52007-08-28 17:01:54 -0400894
Johannes Bergae5eb022008-10-14 16:58:37 +0200895 bss_info_changed |= BSS_CHANGED_ASSOC;
Johannes Berg77fdaa12009-07-07 03:45:17 +0200896 /* set timing information */
897 sdata->vif.bss_conf.beacon_int = bss->cbss.beacon_interval;
898 sdata->vif.bss_conf.timestamp = bss->cbss.tsf;
899 sdata->vif.bss_conf.dtim_period = bss->dtim_period;
Jiri Slabyd6f2da52007-08-28 17:01:54 -0400900
Johannes Berg77fdaa12009-07-07 03:45:17 +0200901 bss_info_changed |= BSS_CHANGED_BEACON_INT;
902 bss_info_changed |= ieee80211_handle_bss_capability(sdata,
903 bss->cbss.capability, bss->has_erp_value, bss->erp_value);
Tomas Winkler21c0cbe2008-03-28 16:33:34 -0700904
Johannes Berg77fdaa12009-07-07 03:45:17 +0200905 sdata->u.mgd.associated = bss;
Johannes Berge21546a2009-08-06 20:41:32 +0200906 sdata->u.mgd.old_associate_work = wk;
Johannes Berg77fdaa12009-07-07 03:45:17 +0200907 memcpy(sdata->u.mgd.bssid, bss->cbss.bssid, ETH_ALEN);
Johannes Berg471b3ef2007-12-28 14:32:58 +0100908
Johannes Bergb291ba12009-07-10 15:29:03 +0200909 /* just to be sure */
910 sdata->u.mgd.flags &= ~(IEEE80211_STA_CONNECTION_POLL |
911 IEEE80211_STA_BEACON_POLL);
912
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200913 ieee80211_led_assoc(local, 1);
914
Johannes Bergbda39332008-10-11 01:51:51 +0200915 sdata->vif.bss_conf.assoc = 1;
Johannes Berg96dd22a2008-09-11 00:01:57 +0200916 /*
917 * For now just always ask the driver to update the basic rateset
918 * when we have associated, we aren't checking whether it actually
919 * changed or not.
920 */
Johannes Bergae5eb022008-10-14 16:58:37 +0200921 bss_info_changed |= BSS_CHANGED_BASIC_RATES;
Johannes Berg9cef8732009-05-14 13:10:14 +0200922
923 /* And the BSSID changed - we're associated now */
924 bss_info_changed |= BSS_CHANGED_BSSID;
925
Johannes Bergae5eb022008-10-14 16:58:37 +0200926 ieee80211_bss_info_change_notify(sdata, bss_info_changed);
Guy Cohen8db93692008-07-03 19:56:13 +0300927
Johannes Berg056508d2009-07-30 21:43:55 +0200928 mutex_lock(&local->iflist_mtx);
929 ieee80211_recalc_ps(local, -1);
930 mutex_unlock(&local->iflist_mtx);
Kalle Valoe0cb6862008-12-18 23:35:13 +0200931
John W. Linville53623f12009-10-15 15:10:16 -0400932 netif_start_queue(sdata->dev);
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200933 netif_carrier_on(sdata->dev);
Jiri Bencf0706e82007-05-05 11:45:53 -0700934}
935
Johannes Berg77fdaa12009-07-07 03:45:17 +0200936static enum rx_mgmt_action __must_check
937ieee80211_direct_probe(struct ieee80211_sub_if_data *sdata,
938 struct ieee80211_mgd_work *wk)
Ron Rindjunsky9859b812008-08-09 03:02:19 +0300939{
Johannes Berg46900292009-02-15 12:44:28 +0100940 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Helmut Schaa11432372009-03-12 14:04:34 +0100941 struct ieee80211_local *local = sdata->local;
Johannes Berg46900292009-02-15 12:44:28 +0100942
Johannes Berg77fdaa12009-07-07 03:45:17 +0200943 wk->tries++;
944 if (wk->tries > IEEE80211_AUTH_MAX_TRIES) {
Johannes Berg0c68ae262008-10-27 15:56:10 -0700945 printk(KERN_DEBUG "%s: direct probe to AP %pM timed out\n",
Johannes Berg77fdaa12009-07-07 03:45:17 +0200946 sdata->dev->name, wk->bss->cbss.bssid);
Vasanthakumar Thiagarajan7a947082009-02-04 18:28:48 +0530947
948 /*
949 * Most likely AP is not in the range so remove the
Johannes Berg77fdaa12009-07-07 03:45:17 +0200950 * bss struct for that AP.
Vasanthakumar Thiagarajan7a947082009-02-04 18:28:48 +0530951 */
Johannes Berg77fdaa12009-07-07 03:45:17 +0200952 cfg80211_unlink_bss(local->hw.wiphy, &wk->bss->cbss);
Helmut Schaa11432372009-03-12 14:04:34 +0100953
954 /*
955 * We might have a pending scan which had no chance to run yet
Johannes Berg77fdaa12009-07-07 03:45:17 +0200956 * due to work needing to be done. Hence, queue the STAs work
957 * again for that.
Helmut Schaa11432372009-03-12 14:04:34 +0100958 */
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -0400959 ieee80211_queue_work(&local->hw, &ifmgd->work);
Johannes Berg77fdaa12009-07-07 03:45:17 +0200960 return RX_MGMT_CFG80211_AUTH_TO;
Ron Rindjunsky9859b812008-08-09 03:02:19 +0300961 }
962
Johannes Berg77fdaa12009-07-07 03:45:17 +0200963 printk(KERN_DEBUG "%s: direct probe to AP %pM (try %d)\n",
964 sdata->dev->name, wk->bss->cbss.bssid,
965 wk->tries);
Ron Rindjunsky9859b812008-08-09 03:02:19 +0300966
Johannes Berg77fdaa12009-07-07 03:45:17 +0200967 /*
968 * Direct probe is sent to broadcast address as some APs
Ron Rindjunsky9859b812008-08-09 03:02:19 +0300969 * will not answer to direct packet in unassociated state.
970 */
Johannes Berg77fdaa12009-07-07 03:45:17 +0200971 ieee80211_send_probe_req(sdata, NULL, wk->ssid, wk->ssid_len, NULL, 0);
Ron Rindjunsky9859b812008-08-09 03:02:19 +0300972
Johannes Berg77fdaa12009-07-07 03:45:17 +0200973 wk->timeout = jiffies + IEEE80211_AUTH_TIMEOUT;
Johannes Bergca386f32009-07-10 02:39:48 +0200974 run_again(ifmgd, wk->timeout);
Johannes Berg77fdaa12009-07-07 03:45:17 +0200975
976 return RX_MGMT_NONE;
Ron Rindjunsky9859b812008-08-09 03:02:19 +0300977}
978
Jiri Bencf0706e82007-05-05 11:45:53 -0700979
Johannes Berg77fdaa12009-07-07 03:45:17 +0200980static enum rx_mgmt_action __must_check
981ieee80211_authenticate(struct ieee80211_sub_if_data *sdata,
982 struct ieee80211_mgd_work *wk)
Jiri Bencf0706e82007-05-05 11:45:53 -0700983{
Johannes Berg46900292009-02-15 12:44:28 +0100984 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Helmut Schaa11432372009-03-12 14:04:34 +0100985 struct ieee80211_local *local = sdata->local;
Johannes Berg46900292009-02-15 12:44:28 +0100986
Johannes Berg77fdaa12009-07-07 03:45:17 +0200987 wk->tries++;
988 if (wk->tries > IEEE80211_AUTH_MAX_TRIES) {
Johannes Berg0c68ae262008-10-27 15:56:10 -0700989 printk(KERN_DEBUG "%s: authentication with AP %pM"
Jiri Bencf0706e82007-05-05 11:45:53 -0700990 " timed out\n",
Johannes Berg77fdaa12009-07-07 03:45:17 +0200991 sdata->dev->name, wk->bss->cbss.bssid);
992
993 /*
994 * Most likely AP is not in the range so remove the
995 * bss struct for that AP.
996 */
997 cfg80211_unlink_bss(local->hw.wiphy, &wk->bss->cbss);
Helmut Schaa11432372009-03-12 14:04:34 +0100998
999 /*
1000 * We might have a pending scan which had no chance to run yet
Johannes Berg77fdaa12009-07-07 03:45:17 +02001001 * due to work needing to be done. Hence, queue the STAs work
1002 * again for that.
Helmut Schaa11432372009-03-12 14:04:34 +01001003 */
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04001004 ieee80211_queue_work(&local->hw, &ifmgd->work);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001005 return RX_MGMT_CFG80211_AUTH_TO;
Jiri Bencf0706e82007-05-05 11:45:53 -07001006 }
1007
Johannes Berg77fdaa12009-07-07 03:45:17 +02001008 printk(KERN_DEBUG "%s: authenticate with AP %pM (try %d)\n",
1009 sdata->dev->name, wk->bss->cbss.bssid, wk->tries);
Jiri Bencf0706e82007-05-05 11:45:53 -07001010
Johannes Berg77fdaa12009-07-07 03:45:17 +02001011 ieee80211_send_auth(sdata, 1, wk->auth_alg, wk->ie, wk->ie_len,
Johannes Bergfffd0932009-07-08 14:22:54 +02001012 wk->bss->cbss.bssid, NULL, 0, 0);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001013 wk->auth_transaction = 2;
Jiri Bencf0706e82007-05-05 11:45:53 -07001014
Johannes Berg77fdaa12009-07-07 03:45:17 +02001015 wk->timeout = jiffies + IEEE80211_AUTH_TIMEOUT;
Johannes Bergca386f32009-07-10 02:39:48 +02001016 run_again(ifmgd, wk->timeout);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001017
1018 return RX_MGMT_NONE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001019}
1020
Johannes Berge21546a2009-08-06 20:41:32 +02001021static void ieee80211_set_disassoc(struct ieee80211_sub_if_data *sdata,
1022 bool deauth)
Tomas Winkleraa458d12008-09-09 00:32:12 +03001023{
Johannes Berg46900292009-02-15 12:44:28 +01001024 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Tomas Winkleraa458d12008-09-09 00:32:12 +03001025 struct ieee80211_local *local = sdata->local;
1026 struct sta_info *sta;
Kalle Valoe0cb6862008-12-18 23:35:13 +02001027 u32 changed = 0, config_changed = 0;
Johannes Bergb291ba12009-07-10 15:29:03 +02001028 u8 bssid[ETH_ALEN];
Tomas Winkleraa458d12008-09-09 00:32:12 +03001029
Johannes Berg77fdaa12009-07-07 03:45:17 +02001030 ASSERT_MGD_MTX(ifmgd);
1031
Johannes Bergb291ba12009-07-10 15:29:03 +02001032 if (WARN_ON(!ifmgd->associated))
1033 return;
1034
1035 memcpy(bssid, ifmgd->associated->cbss.bssid, ETH_ALEN);
1036
Johannes Berg77fdaa12009-07-07 03:45:17 +02001037 ifmgd->associated = NULL;
1038 memset(ifmgd->bssid, 0, ETH_ALEN);
1039
Johannes Berge21546a2009-08-06 20:41:32 +02001040 if (deauth) {
1041 kfree(ifmgd->old_associate_work);
1042 ifmgd->old_associate_work = NULL;
1043 } else {
1044 struct ieee80211_mgd_work *wk = ifmgd->old_associate_work;
1045
1046 wk->state = IEEE80211_MGD_STATE_IDLE;
1047 list_add(&wk->list, &ifmgd->work_list);
1048 }
1049
Johannes Berg77fdaa12009-07-07 03:45:17 +02001050 /*
1051 * we need to commit the associated = NULL change because the
1052 * scan code uses that to determine whether this iface should
1053 * go to/wake up from powersave or not -- and could otherwise
1054 * wake the queues erroneously.
1055 */
1056 smp_mb();
1057
1058 /*
1059 * Thus, we can only afterwards stop the queues -- to account
1060 * for the case where another CPU is finishing a scan at this
1061 * time -- we don't want the scan code to enable queues.
1062 */
Tomas Winkleraa458d12008-09-09 00:32:12 +03001063
John W. Linville53623f12009-10-15 15:10:16 -04001064 netif_stop_queue(sdata->dev);
Tomas Winkleraa458d12008-09-09 00:32:12 +03001065 netif_carrier_off(sdata->dev);
1066
Johannes Berg1fa6f4a2009-06-15 18:13:58 +02001067 rcu_read_lock();
Johannes Berg77fdaa12009-07-07 03:45:17 +02001068 sta = sta_info_get(local, bssid);
Johannes Berg1fa6f4a2009-06-15 18:13:58 +02001069 if (sta)
1070 ieee80211_sta_tear_down_BA_sessions(sta);
1071 rcu_read_unlock();
Tomas Winkleraa458d12008-09-09 00:32:12 +03001072
Tomas Winklerf5e5bf22008-09-08 17:33:39 +02001073 changed |= ieee80211_reset_erp_info(sdata);
1074
Tomas Winklerf5e5bf22008-09-08 17:33:39 +02001075 ieee80211_led_assoc(local, 0);
Johannes Bergae5eb022008-10-14 16:58:37 +02001076 changed |= BSS_CHANGED_ASSOC;
1077 sdata->vif.bss_conf.assoc = false;
Tomas Winklerf5e5bf22008-09-08 17:33:39 +02001078
Johannes Bergaa837e12009-05-07 16:16:24 +02001079 ieee80211_set_wmm_default(sdata);
1080
Johannes Berg5cff20e2009-04-29 12:26:17 +02001081 ieee80211_recalc_idle(local);
1082
Johannes Berg47979382009-01-07 10:13:27 +01001083 /* channel(_type) changes are handled by ieee80211_hw_config */
Sujith094d05d2008-12-12 11:57:43 +05301084 local->oper_channel_type = NL80211_CHAN_NO_HT;
Johannes Bergae5eb022008-10-14 16:58:37 +02001085
Johannes Berg413ad502009-05-08 21:21:06 +02001086 /* on the next assoc, re-program HT parameters */
1087 sdata->ht_opmode_valid = false;
1088
Vasanthakumar Thiagarajana8302de2009-01-09 18:14:15 +05301089 local->power_constr_level = 0;
1090
Kalle Valo520eb822008-12-18 23:35:27 +02001091 del_timer_sync(&local->dynamic_ps_timer);
1092 cancel_work_sync(&local->dynamic_ps_enable_work);
1093
Kalle Valoe0cb6862008-12-18 23:35:13 +02001094 if (local->hw.conf.flags & IEEE80211_CONF_PS) {
1095 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
1096 config_changed |= IEEE80211_CONF_CHANGE_PS;
1097 }
1098
1099 ieee80211_hw_config(local, config_changed);
Johannes Berg9cef8732009-05-14 13:10:14 +02001100
1101 /* And the BSSID changed -- not very interesting here */
1102 changed |= BSS_CHANGED_BSSID;
Johannes Bergae5eb022008-10-14 16:58:37 +02001103 ieee80211_bss_info_change_notify(sdata, changed);
Tomas Winkler8e268e42008-11-25 13:05:44 +02001104
1105 rcu_read_lock();
1106
Johannes Berg77fdaa12009-07-07 03:45:17 +02001107 sta = sta_info_get(local, bssid);
Tomas Winkler8e268e42008-11-25 13:05:44 +02001108 if (!sta) {
1109 rcu_read_unlock();
1110 return;
1111 }
1112
1113 sta_info_unlink(&sta);
1114
1115 rcu_read_unlock();
1116
1117 sta_info_destroy(sta);
Tomas Winkleraa458d12008-09-09 00:32:12 +03001118}
Jiri Bencf0706e82007-05-05 11:45:53 -07001119
Johannes Berg77fdaa12009-07-07 03:45:17 +02001120static enum rx_mgmt_action __must_check
1121ieee80211_associate(struct ieee80211_sub_if_data *sdata,
1122 struct ieee80211_mgd_work *wk)
Jiri Bencf0706e82007-05-05 11:45:53 -07001123{
Johannes Berg46900292009-02-15 12:44:28 +01001124 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Helmut Schaa11432372009-03-12 14:04:34 +01001125 struct ieee80211_local *local = sdata->local;
Johannes Berg46900292009-02-15 12:44:28 +01001126
Johannes Berg77fdaa12009-07-07 03:45:17 +02001127 wk->tries++;
1128 if (wk->tries > IEEE80211_ASSOC_MAX_TRIES) {
Johannes Berg0c68ae262008-10-27 15:56:10 -07001129 printk(KERN_DEBUG "%s: association with AP %pM"
Jiri Bencf0706e82007-05-05 11:45:53 -07001130 " timed out\n",
Johannes Berg77fdaa12009-07-07 03:45:17 +02001131 sdata->dev->name, wk->bss->cbss.bssid);
1132
1133 /*
1134 * Most likely AP is not in the range so remove the
1135 * bss struct for that AP.
1136 */
1137 cfg80211_unlink_bss(local->hw.wiphy, &wk->bss->cbss);
1138
Helmut Schaa11432372009-03-12 14:04:34 +01001139 /*
1140 * We might have a pending scan which had no chance to run yet
Johannes Berg77fdaa12009-07-07 03:45:17 +02001141 * due to work needing to be done. Hence, queue the STAs work
1142 * again for that.
Helmut Schaa11432372009-03-12 14:04:34 +01001143 */
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04001144 ieee80211_queue_work(&local->hw, &ifmgd->work);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001145 return RX_MGMT_CFG80211_ASSOC_TO;
Jiri Bencf0706e82007-05-05 11:45:53 -07001146 }
1147
Johannes Berg77fdaa12009-07-07 03:45:17 +02001148 printk(KERN_DEBUG "%s: associate with AP %pM (try %d)\n",
1149 sdata->dev->name, wk->bss->cbss.bssid, wk->tries);
1150 ieee80211_send_assoc(sdata, wk);
Jiri Bencf0706e82007-05-05 11:45:53 -07001151
Johannes Berg77fdaa12009-07-07 03:45:17 +02001152 wk->timeout = jiffies + IEEE80211_ASSOC_TIMEOUT;
Johannes Bergca386f32009-07-10 02:39:48 +02001153 run_again(ifmgd, wk->timeout);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001154
1155 return RX_MGMT_NONE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001156}
1157
Kalle Valo3cf335d2009-03-22 21:57:06 +02001158void ieee80211_sta_rx_notify(struct ieee80211_sub_if_data *sdata,
1159 struct ieee80211_hdr *hdr)
1160{
1161 /*
1162 * We can postpone the mgd.timer whenever receiving unicast frames
1163 * from AP because we know that the connection is working both ways
1164 * at that time. But multicast frames (and hence also beacons) must
1165 * be ignored here, because we need to trigger the timer during
Johannes Bergb291ba12009-07-10 15:29:03 +02001166 * data idle periods for sending the periodic probe request to the
1167 * AP we're connected to.
Kalle Valo3cf335d2009-03-22 21:57:06 +02001168 */
Johannes Bergb291ba12009-07-10 15:29:03 +02001169 if (is_multicast_ether_addr(hdr->addr1))
1170 return;
1171
1172 mod_timer(&sdata->u.mgd.conn_mon_timer,
1173 round_jiffies_up(jiffies + IEEE80211_CONNECTION_IDLE_TIME));
Kalle Valo3cf335d2009-03-22 21:57:06 +02001174}
Jiri Bencf0706e82007-05-05 11:45:53 -07001175
Maxim Levitskya43abf22009-07-31 18:54:12 +03001176static void ieee80211_mgd_probe_ap_send(struct ieee80211_sub_if_data *sdata)
1177{
1178 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1179 const u8 *ssid;
1180
1181 ssid = ieee80211_bss_get_ie(&ifmgd->associated->cbss, WLAN_EID_SSID);
1182 ieee80211_send_probe_req(sdata, ifmgd->associated->cbss.bssid,
1183 ssid + 2, ssid[1], NULL, 0);
1184
1185 ifmgd->probe_send_count++;
1186 ifmgd->probe_timeout = jiffies + IEEE80211_PROBE_WAIT;
1187 run_again(ifmgd, ifmgd->probe_timeout);
1188}
1189
Johannes Bergb291ba12009-07-10 15:29:03 +02001190static void ieee80211_mgd_probe_ap(struct ieee80211_sub_if_data *sdata,
1191 bool beacon)
Kalle Valo04de8382009-03-22 21:57:35 +02001192{
Kalle Valo04de8382009-03-22 21:57:35 +02001193 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Bergb291ba12009-07-10 15:29:03 +02001194 bool already = false;
Johannes Berg34bfc412009-05-12 19:58:12 +02001195
Johannes Berg0e2b6282009-07-13 13:23:39 +02001196 if (!netif_running(sdata->dev))
1197 return;
1198
Luis R. Rodriguez91a3bd72009-07-23 16:37:47 -07001199 if (sdata->local->scanning)
1200 return;
1201
Johannes Berg77fdaa12009-07-07 03:45:17 +02001202 mutex_lock(&ifmgd->mtx);
1203
1204 if (!ifmgd->associated)
1205 goto out;
1206
Michael Buescha8604022009-04-15 14:41:22 -04001207#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Johannes Bergb291ba12009-07-10 15:29:03 +02001208 if (beacon && net_ratelimit())
1209 printk(KERN_DEBUG "%s: detected beacon loss from AP "
Johannes Berg77fdaa12009-07-07 03:45:17 +02001210 "- sending probe request\n", sdata->dev->name);
Michael Buescha8604022009-04-15 14:41:22 -04001211#endif
Kalle Valo04de8382009-03-22 21:57:35 +02001212
Johannes Bergb291ba12009-07-10 15:29:03 +02001213 /*
1214 * The driver/our work has already reported this event or the
1215 * connection monitoring has kicked in and we have already sent
1216 * a probe request. Or maybe the AP died and the driver keeps
1217 * reporting until we disassociate...
1218 *
1219 * In either case we have to ignore the current call to this
1220 * function (except for setting the correct probe reason bit)
1221 * because otherwise we would reset the timer every time and
1222 * never check whether we received a probe response!
1223 */
1224 if (ifmgd->flags & (IEEE80211_STA_BEACON_POLL |
1225 IEEE80211_STA_CONNECTION_POLL))
1226 already = true;
1227
1228 if (beacon)
1229 ifmgd->flags |= IEEE80211_STA_BEACON_POLL;
1230 else
1231 ifmgd->flags |= IEEE80211_STA_CONNECTION_POLL;
1232
1233 if (already)
1234 goto out;
1235
Johannes Berg4e751842009-06-10 15:16:52 +02001236 mutex_lock(&sdata->local->iflist_mtx);
1237 ieee80211_recalc_ps(sdata->local, -1);
1238 mutex_unlock(&sdata->local->iflist_mtx);
1239
Maxim Levitskya43abf22009-07-31 18:54:12 +03001240 ifmgd->probe_send_count = 0;
1241 ieee80211_mgd_probe_ap_send(sdata);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001242 out:
1243 mutex_unlock(&ifmgd->mtx);
Kalle Valo04de8382009-03-22 21:57:35 +02001244}
1245
Johannes Bergb291ba12009-07-10 15:29:03 +02001246void ieee80211_beacon_loss_work(struct work_struct *work)
1247{
1248 struct ieee80211_sub_if_data *sdata =
1249 container_of(work, struct ieee80211_sub_if_data,
1250 u.mgd.beacon_loss_work);
1251
1252 ieee80211_mgd_probe_ap(sdata, true);
1253}
1254
Kalle Valo04de8382009-03-22 21:57:35 +02001255void ieee80211_beacon_loss(struct ieee80211_vif *vif)
1256{
1257 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
1258
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04001259 ieee80211_queue_work(&sdata->local->hw, &sdata->u.mgd.beacon_loss_work);
Kalle Valo04de8382009-03-22 21:57:35 +02001260}
1261EXPORT_SYMBOL(ieee80211_beacon_loss);
1262
Johannes Berg77fdaa12009-07-07 03:45:17 +02001263static void ieee80211_auth_completed(struct ieee80211_sub_if_data *sdata,
1264 struct ieee80211_mgd_work *wk)
Jiri Bencf0706e82007-05-05 11:45:53 -07001265{
Johannes Berg77fdaa12009-07-07 03:45:17 +02001266 wk->state = IEEE80211_MGD_STATE_IDLE;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001267 printk(KERN_DEBUG "%s: authenticated\n", sdata->dev->name);
Jiri Bencf0706e82007-05-05 11:45:53 -07001268}
1269
1270
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001271static void ieee80211_auth_challenge(struct ieee80211_sub_if_data *sdata,
Johannes Berg77fdaa12009-07-07 03:45:17 +02001272 struct ieee80211_mgd_work *wk,
Jiri Bencf0706e82007-05-05 11:45:53 -07001273 struct ieee80211_mgmt *mgmt,
1274 size_t len)
1275{
1276 u8 *pos;
1277 struct ieee802_11_elems elems;
1278
Jiri Bencf0706e82007-05-05 11:45:53 -07001279 pos = mgmt->u.auth.variable;
John W. Linville67a4cce2007-10-12 16:40:37 -04001280 ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), &elems);
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001281 if (!elems.challenge)
Jiri Bencf0706e82007-05-05 11:45:53 -07001282 return;
Johannes Berg77fdaa12009-07-07 03:45:17 +02001283 ieee80211_send_auth(sdata, 3, wk->auth_alg,
Johannes Berg46900292009-02-15 12:44:28 +01001284 elems.challenge - 2, elems.challenge_len + 2,
Johannes Bergfffd0932009-07-08 14:22:54 +02001285 wk->bss->cbss.bssid,
1286 wk->key, wk->key_len, wk->key_idx);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001287 wk->auth_transaction = 4;
Johannes Bergfe3d2c32009-02-10 21:26:03 +01001288}
1289
Johannes Berg77fdaa12009-07-07 03:45:17 +02001290static enum rx_mgmt_action __must_check
1291ieee80211_rx_mgmt_auth(struct ieee80211_sub_if_data *sdata,
1292 struct ieee80211_mgd_work *wk,
1293 struct ieee80211_mgmt *mgmt, size_t len)
Jiri Bencf0706e82007-05-05 11:45:53 -07001294{
Jiri Bencf0706e82007-05-05 11:45:53 -07001295 u16 auth_alg, auth_transaction, status_code;
1296
Johannes Berg77fdaa12009-07-07 03:45:17 +02001297 if (wk->state != IEEE80211_MGD_STATE_AUTH)
1298 return RX_MGMT_NONE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001299
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001300 if (len < 24 + 6)
Johannes Berg77fdaa12009-07-07 03:45:17 +02001301 return RX_MGMT_NONE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001302
Johannes Berg77fdaa12009-07-07 03:45:17 +02001303 if (memcmp(wk->bss->cbss.bssid, mgmt->sa, ETH_ALEN) != 0)
1304 return RX_MGMT_NONE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001305
Johannes Berg77fdaa12009-07-07 03:45:17 +02001306 if (memcmp(wk->bss->cbss.bssid, mgmt->bssid, ETH_ALEN) != 0)
1307 return RX_MGMT_NONE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001308
1309 auth_alg = le16_to_cpu(mgmt->u.auth.auth_alg);
1310 auth_transaction = le16_to_cpu(mgmt->u.auth.auth_transaction);
1311 status_code = le16_to_cpu(mgmt->u.auth.status_code);
1312
Johannes Berg77fdaa12009-07-07 03:45:17 +02001313 if (auth_alg != wk->auth_alg ||
1314 auth_transaction != wk->auth_transaction)
1315 return RX_MGMT_NONE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001316
1317 if (status_code != WLAN_STATUS_SUCCESS) {
Johannes Berg77fdaa12009-07-07 03:45:17 +02001318 list_del(&wk->list);
1319 kfree(wk);
1320 return RX_MGMT_CFG80211_AUTH;
Jiri Bencf0706e82007-05-05 11:45:53 -07001321 }
1322
Johannes Berg77fdaa12009-07-07 03:45:17 +02001323 switch (wk->auth_alg) {
Jiri Bencf0706e82007-05-05 11:45:53 -07001324 case WLAN_AUTH_OPEN:
1325 case WLAN_AUTH_LEAP:
Jouni Malinen636a5d32009-03-19 13:39:22 +02001326 case WLAN_AUTH_FT:
Johannes Berg77fdaa12009-07-07 03:45:17 +02001327 ieee80211_auth_completed(sdata, wk);
1328 return RX_MGMT_CFG80211_AUTH;
Jiri Bencf0706e82007-05-05 11:45:53 -07001329 case WLAN_AUTH_SHARED_KEY:
Johannes Berg77fdaa12009-07-07 03:45:17 +02001330 if (wk->auth_transaction == 4) {
1331 ieee80211_auth_completed(sdata, wk);
1332 return RX_MGMT_CFG80211_AUTH;
Jouni Malinen6039f6d2009-03-19 13:39:21 +02001333 } else
Johannes Berg77fdaa12009-07-07 03:45:17 +02001334 ieee80211_auth_challenge(sdata, wk, mgmt, len);
Jiri Bencf0706e82007-05-05 11:45:53 -07001335 break;
1336 }
Johannes Berg77fdaa12009-07-07 03:45:17 +02001337
1338 return RX_MGMT_NONE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001339}
1340
1341
Johannes Berg77fdaa12009-07-07 03:45:17 +02001342static enum rx_mgmt_action __must_check
1343ieee80211_rx_mgmt_deauth(struct ieee80211_sub_if_data *sdata,
1344 struct ieee80211_mgd_work *wk,
1345 struct ieee80211_mgmt *mgmt, size_t len)
Jiri Bencf0706e82007-05-05 11:45:53 -07001346{
Johannes Berg46900292009-02-15 12:44:28 +01001347 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg77fdaa12009-07-07 03:45:17 +02001348 const u8 *bssid = NULL;
Jiri Bencf0706e82007-05-05 11:45:53 -07001349 u16 reason_code;
1350
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001351 if (len < 24 + 2)
Johannes Berg77fdaa12009-07-07 03:45:17 +02001352 return RX_MGMT_NONE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001353
Johannes Berg77fdaa12009-07-07 03:45:17 +02001354 ASSERT_MGD_MTX(ifmgd);
1355
1356 if (wk)
1357 bssid = wk->bss->cbss.bssid;
1358 else
1359 bssid = ifmgd->associated->cbss.bssid;
Jiri Bencf0706e82007-05-05 11:45:53 -07001360
1361 reason_code = le16_to_cpu(mgmt->u.deauth.reason_code);
1362
Johannes Berg77fdaa12009-07-07 03:45:17 +02001363 printk(KERN_DEBUG "%s: deauthenticated from %pM (Reason: %u)\n",
1364 sdata->dev->name, bssid, reason_code);
Jiri Bencf0706e82007-05-05 11:45:53 -07001365
Johannes Berg77fdaa12009-07-07 03:45:17 +02001366 if (!wk) {
Johannes Berge21546a2009-08-06 20:41:32 +02001367 ieee80211_set_disassoc(sdata, true);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001368 } else {
1369 list_del(&wk->list);
1370 kfree(wk);
1371 }
1372
1373 return RX_MGMT_CFG80211_DEAUTH;
Jiri Bencf0706e82007-05-05 11:45:53 -07001374}
1375
1376
Johannes Berg77fdaa12009-07-07 03:45:17 +02001377static enum rx_mgmt_action __must_check
1378ieee80211_rx_mgmt_disassoc(struct ieee80211_sub_if_data *sdata,
1379 struct ieee80211_mgmt *mgmt, size_t len)
Jiri Bencf0706e82007-05-05 11:45:53 -07001380{
Johannes Berg46900292009-02-15 12:44:28 +01001381 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jiri Bencf0706e82007-05-05 11:45:53 -07001382 u16 reason_code;
1383
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001384 if (len < 24 + 2)
Johannes Berg77fdaa12009-07-07 03:45:17 +02001385 return RX_MGMT_NONE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001386
Johannes Berg77fdaa12009-07-07 03:45:17 +02001387 ASSERT_MGD_MTX(ifmgd);
1388
1389 if (WARN_ON(!ifmgd->associated))
1390 return RX_MGMT_NONE;
1391
1392 if (WARN_ON(memcmp(ifmgd->associated->cbss.bssid, mgmt->sa, ETH_ALEN)))
1393 return RX_MGMT_NONE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001394
1395 reason_code = le16_to_cpu(mgmt->u.disassoc.reason_code);
1396
Johannes Berg0ff71612009-09-26 14:45:41 +02001397 printk(KERN_DEBUG "%s: disassociated from %pM (Reason: %u)\n",
1398 sdata->dev->name, mgmt->sa, reason_code);
Jiri Bencf0706e82007-05-05 11:45:53 -07001399
Johannes Berge21546a2009-08-06 20:41:32 +02001400 ieee80211_set_disassoc(sdata, false);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001401 return RX_MGMT_CFG80211_DISASSOC;
Jiri Bencf0706e82007-05-05 11:45:53 -07001402}
1403
1404
Johannes Berg77fdaa12009-07-07 03:45:17 +02001405static enum rx_mgmt_action __must_check
1406ieee80211_rx_mgmt_assoc_resp(struct ieee80211_sub_if_data *sdata,
1407 struct ieee80211_mgd_work *wk,
1408 struct ieee80211_mgmt *mgmt, size_t len,
1409 bool reassoc)
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 Berg471b3ef2007-12-28 14:32:58 +01001412 struct ieee80211_local *local = sdata->local;
Johannes Berg8318d782008-01-24 19:38:38 +01001413 struct ieee80211_supported_band *sband;
Jiri Bencf0706e82007-05-05 11:45:53 -07001414 struct sta_info *sta;
Johannes Berg881d9482009-01-21 15:13:48 +01001415 u32 rates, basic_rates;
Jiri Bencf0706e82007-05-05 11:45:53 -07001416 u16 capab_info, status_code, aid;
1417 struct ieee802_11_elems elems;
Johannes Bergbda39332008-10-11 01:51:51 +02001418 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
Jiri Bencf0706e82007-05-05 11:45:53 -07001419 u8 *pos;
Johannes Bergae5eb022008-10-14 16:58:37 +02001420 u32 changed = 0;
Jiri Bencf0706e82007-05-05 11:45:53 -07001421 int i, j;
Johannes Bergddf4ac52008-10-22 11:41:38 +02001422 bool have_higher_than_11mbit = false, newsta = false;
Johannes Bergae5eb022008-10-14 16:58:37 +02001423 u16 ap_ht_cap_flags;
Jiri Bencf0706e82007-05-05 11:45:53 -07001424
Johannes Berg77fdaa12009-07-07 03:45:17 +02001425 /*
1426 * AssocResp and ReassocResp have identical structure, so process both
1427 * of them in this function.
1428 */
Jiri Bencf0706e82007-05-05 11:45:53 -07001429
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001430 if (len < 24 + 6)
Johannes Berg77fdaa12009-07-07 03:45:17 +02001431 return RX_MGMT_NONE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001432
Johannes Berg77fdaa12009-07-07 03:45:17 +02001433 if (memcmp(wk->bss->cbss.bssid, mgmt->sa, ETH_ALEN) != 0)
1434 return RX_MGMT_NONE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001435
1436 capab_info = le16_to_cpu(mgmt->u.assoc_resp.capab_info);
1437 status_code = le16_to_cpu(mgmt->u.assoc_resp.status_code);
1438 aid = le16_to_cpu(mgmt->u.assoc_resp.aid);
Jiri Bencf0706e82007-05-05 11:45:53 -07001439
Johannes Berg0c68ae262008-10-27 15:56:10 -07001440 printk(KERN_DEBUG "%s: RX %sssocResp from %pM (capab=0x%x "
Jiri Bencf0706e82007-05-05 11:45:53 -07001441 "status=%d aid=%d)\n",
Johannes Berg0c68ae262008-10-27 15:56:10 -07001442 sdata->dev->name, reassoc ? "Rea" : "A", mgmt->sa,
Johannes Bergddd68582007-10-22 14:51:37 +02001443 capab_info, status_code, (u16)(aid & ~(BIT(15) | BIT(14))));
Jiri Bencf0706e82007-05-05 11:45:53 -07001444
Jouni Malinen63a5ab82009-01-08 13:32:09 +02001445 pos = mgmt->u.assoc_resp.variable;
1446 ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), &elems);
1447
1448 if (status_code == WLAN_STATUS_ASSOC_REJECTED_TEMPORARILY &&
Jouni Malinenf797eb72009-01-19 18:48:46 +02001449 elems.timeout_int && elems.timeout_int_len == 5 &&
1450 elems.timeout_int[0] == WLAN_TIMEOUT_ASSOC_COMEBACK) {
Jouni Malinen63a5ab82009-01-08 13:32:09 +02001451 u32 tu, ms;
Jouni Malinenf797eb72009-01-19 18:48:46 +02001452 tu = get_unaligned_le32(elems.timeout_int + 1);
Jouni Malinen63a5ab82009-01-08 13:32:09 +02001453 ms = tu * 1024 / 1000;
1454 printk(KERN_DEBUG "%s: AP rejected association temporarily; "
1455 "comeback duration %u TU (%u ms)\n",
1456 sdata->dev->name, tu, ms);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001457 wk->timeout = jiffies + msecs_to_jiffies(ms);
Jouni Malinen63a5ab82009-01-08 13:32:09 +02001458 if (ms > IEEE80211_ASSOC_TIMEOUT)
Johannes Bergca386f32009-07-10 02:39:48 +02001459 run_again(ifmgd, jiffies + msecs_to_jiffies(ms));
Johannes Berg77fdaa12009-07-07 03:45:17 +02001460 return RX_MGMT_NONE;
Jouni Malinen63a5ab82009-01-08 13:32:09 +02001461 }
1462
Jiri Bencf0706e82007-05-05 11:45:53 -07001463 if (status_code != WLAN_STATUS_SUCCESS) {
1464 printk(KERN_DEBUG "%s: AP denied association (code=%d)\n",
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001465 sdata->dev->name, status_code);
Johannes Berg2ef6e442009-10-20 15:08:12 +09001466 wk->state = IEEE80211_MGD_STATE_IDLE;
Johannes Berg77fdaa12009-07-07 03:45:17 +02001467 return RX_MGMT_CFG80211_ASSOC;
Jiri Bencf0706e82007-05-05 11:45:53 -07001468 }
1469
Johannes Berg1dd84aa2007-10-10 12:03:41 +02001470 if ((aid & (BIT(15) | BIT(14))) != (BIT(15) | BIT(14)))
1471 printk(KERN_DEBUG "%s: invalid aid value %d; bits 15:14 not "
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001472 "set\n", sdata->dev->name, aid);
Johannes Berg1dd84aa2007-10-10 12:03:41 +02001473 aid &= ~(BIT(15) | BIT(14));
1474
Jiri Bencf0706e82007-05-05 11:45:53 -07001475 if (!elems.supp_rates) {
1476 printk(KERN_DEBUG "%s: no SuppRates element in AssocResp\n",
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001477 sdata->dev->name);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001478 return RX_MGMT_NONE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001479 }
1480
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001481 printk(KERN_DEBUG "%s: associated\n", sdata->dev->name);
Johannes Berg46900292009-02-15 12:44:28 +01001482 ifmgd->aid = aid;
Jiri Bencf0706e82007-05-05 11:45:53 -07001483
Johannes Bergd0709a62008-02-25 16:27:46 +01001484 rcu_read_lock();
1485
Jiri Bencf0706e82007-05-05 11:45:53 -07001486 /* Add STA entry for the AP */
Johannes Berg77fdaa12009-07-07 03:45:17 +02001487 sta = sta_info_get(local, wk->bss->cbss.bssid);
Jiri Bencf0706e82007-05-05 11:45:53 -07001488 if (!sta) {
Johannes Bergddf4ac52008-10-22 11:41:38 +02001489 newsta = true;
Johannes Bergd0709a62008-02-25 16:27:46 +01001490
Johannes Berg77fdaa12009-07-07 03:45:17 +02001491 rcu_read_unlock();
1492
1493 sta = sta_info_alloc(sdata, wk->bss->cbss.bssid, GFP_KERNEL);
Johannes Berg73651ee2008-02-25 16:27:47 +01001494 if (!sta) {
1495 printk(KERN_DEBUG "%s: failed to alloc STA entry for"
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001496 " the AP\n", sdata->dev->name);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001497 return RX_MGMT_NONE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001498 }
Johannes Berg73651ee2008-02-25 16:27:47 +01001499
Johannes Berg77fdaa12009-07-07 03:45:17 +02001500 set_sta_flags(sta, WLAN_STA_AUTH | WLAN_STA_ASSOC |
1501 WLAN_STA_ASSOC_AP);
1502 if (!(ifmgd->flags & IEEE80211_STA_CONTROL_PORT))
1503 set_sta_flags(sta, WLAN_STA_AUTHORIZED);
1504
1505 rcu_read_lock();
Jiri Bencf0706e82007-05-05 11:45:53 -07001506 }
1507
Jiri Bencf0706e82007-05-05 11:45:53 -07001508 rates = 0;
Johannes Berg8318d782008-01-24 19:38:38 +01001509 basic_rates = 0;
1510 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
1511
Jiri Bencf0706e82007-05-05 11:45:53 -07001512 for (i = 0; i < elems.supp_rates_len; i++) {
1513 int rate = (elems.supp_rates[i] & 0x7f) * 5;
Tomas Winklerd61272c2008-10-30 17:08:08 +02001514 bool is_basic = !!(elems.supp_rates[i] & 0x80);
Johannes Berg8318d782008-01-24 19:38:38 +01001515
1516 if (rate > 110)
1517 have_higher_than_11mbit = true;
1518
1519 for (j = 0; j < sband->n_bitrates; j++) {
Tomas Winklerd61272c2008-10-30 17:08:08 +02001520 if (sband->bitrates[j].bitrate == rate) {
Jiri Bencf0706e82007-05-05 11:45:53 -07001521 rates |= BIT(j);
Tomas Winklerd61272c2008-10-30 17:08:08 +02001522 if (is_basic)
1523 basic_rates |= BIT(j);
1524 break;
1525 }
Johannes Berg8318d782008-01-24 19:38:38 +01001526 }
Jiri Bencf0706e82007-05-05 11:45:53 -07001527 }
Johannes Berg8318d782008-01-24 19:38:38 +01001528
Jiri Bencf0706e82007-05-05 11:45:53 -07001529 for (i = 0; i < elems.ext_supp_rates_len; i++) {
1530 int rate = (elems.ext_supp_rates[i] & 0x7f) * 5;
Johannes Berg7e0986c2009-04-19 13:22:11 +02001531 bool is_basic = !!(elems.ext_supp_rates[i] & 0x80);
Johannes Berg8318d782008-01-24 19:38:38 +01001532
1533 if (rate > 110)
1534 have_higher_than_11mbit = true;
1535
1536 for (j = 0; j < sband->n_bitrates; j++) {
Tomas Winklerd61272c2008-10-30 17:08:08 +02001537 if (sband->bitrates[j].bitrate == rate) {
Jiri Bencf0706e82007-05-05 11:45:53 -07001538 rates |= BIT(j);
Tomas Winklerd61272c2008-10-30 17:08:08 +02001539 if (is_basic)
1540 basic_rates |= BIT(j);
1541 break;
1542 }
Johannes Berg8318d782008-01-24 19:38:38 +01001543 }
Jiri Bencf0706e82007-05-05 11:45:53 -07001544 }
Johannes Berg8318d782008-01-24 19:38:38 +01001545
Johannes Berg323ce792008-09-11 02:45:11 +02001546 sta->sta.supp_rates[local->hw.conf.channel->band] = rates;
Johannes Bergbda39332008-10-11 01:51:51 +02001547 sdata->vif.bss_conf.basic_rates = basic_rates;
Johannes Berg8318d782008-01-24 19:38:38 +01001548
1549 /* cf. IEEE 802.11 9.2.12 */
1550 if (local->hw.conf.channel->band == IEEE80211_BAND_2GHZ &&
1551 have_higher_than_11mbit)
1552 sdata->flags |= IEEE80211_SDATA_OPERATING_GMODE;
1553 else
1554 sdata->flags &= ~IEEE80211_SDATA_OPERATING_GMODE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001555
Johannes Bergab1faea2009-07-01 21:41:17 +02001556 if (elems.ht_cap_elem && !(ifmgd->flags & IEEE80211_STA_DISABLE_11N))
Johannes Bergae5eb022008-10-14 16:58:37 +02001557 ieee80211_ht_cap_ie_to_sta_ht_cap(sband,
Johannes Bergd9fe60d2008-10-09 12:13:49 +02001558 elems.ht_cap_elem, &sta->sta.ht_cap);
Johannes Bergae5eb022008-10-14 16:58:37 +02001559
1560 ap_ht_cap_flags = sta->sta.ht_cap.cap;
Ron Rindjunskyd3c990f2007-11-26 16:14:34 +02001561
Johannes Berg4b7679a2008-09-18 18:14:18 +02001562 rate_control_rate_init(sta);
Jiri Bencf0706e82007-05-05 11:45:53 -07001563
Johannes Berg46900292009-02-15 12:44:28 +01001564 if (ifmgd->flags & IEEE80211_STA_MFP_ENABLED)
Jouni Malinen5394af42009-01-08 13:31:59 +02001565 set_sta_flags(sta, WLAN_STA_MFP);
1566
Johannes Bergddf4ac52008-10-22 11:41:38 +02001567 if (elems.wmm_param)
Johannes Berg07346f812008-05-03 01:02:02 +02001568 set_sta_flags(sta, WLAN_STA_WME);
Johannes Bergddf4ac52008-10-22 11:41:38 +02001569
1570 if (newsta) {
1571 int err = sta_info_insert(sta);
1572 if (err) {
1573 printk(KERN_DEBUG "%s: failed to insert STA entry for"
1574 " the AP (error %d)\n", sdata->dev->name, err);
1575 rcu_read_unlock();
Johannes Berg77fdaa12009-07-07 03:45:17 +02001576 return RX_MGMT_NONE;
Johannes Bergddf4ac52008-10-22 11:41:38 +02001577 }
1578 }
1579
1580 rcu_read_unlock();
1581
1582 if (elems.wmm_param)
Johannes Berg46900292009-02-15 12:44:28 +01001583 ieee80211_sta_wmm_params(local, ifmgd, elems.wmm_param,
Jiri Bencf0706e82007-05-05 11:45:53 -07001584 elems.wmm_param_len);
Johannes Bergaa837e12009-05-07 16:16:24 +02001585 else
1586 ieee80211_set_wmm_default(sdata);
Jiri Bencf0706e82007-05-05 11:45:53 -07001587
Johannes Bergae5eb022008-10-14 16:58:37 +02001588 if (elems.ht_info_elem && elems.wmm_param &&
Johannes Berg46900292009-02-15 12:44:28 +01001589 (ifmgd->flags & IEEE80211_STA_WMM_ENABLED) &&
Johannes Bergab1faea2009-07-01 21:41:17 +02001590 !(ifmgd->flags & IEEE80211_STA_DISABLE_11N))
Johannes Bergae5eb022008-10-14 16:58:37 +02001591 changed |= ieee80211_enable_ht(sdata, elems.ht_info_elem,
Johannes Berg77fdaa12009-07-07 03:45:17 +02001592 wk->bss->cbss.bssid,
Johannes Bergae5eb022008-10-14 16:58:37 +02001593 ap_ht_cap_flags);
1594
Johannes Berg056508d2009-07-30 21:43:55 +02001595 /* delete work item -- must be before set_associated for PS */
1596 list_del(&wk->list);
1597
Tomas Winkler21c0cbe2008-03-28 16:33:34 -07001598 /* set AID and assoc capability,
1599 * ieee80211_set_associated() will tell the driver */
Johannes Berg8318d782008-01-24 19:38:38 +01001600 bss_conf->aid = aid;
Tomas Winkler21c0cbe2008-03-28 16:33:34 -07001601 bss_conf->assoc_capability = capab_info;
Johannes Berge21546a2009-08-06 20:41:32 +02001602 /* this will take ownership of wk */
1603 ieee80211_set_associated(sdata, wk, changed);
Jiri Bencf0706e82007-05-05 11:45:53 -07001604
Kalle Valo15b7b062009-03-22 21:57:14 +02001605 /*
Johannes Bergb291ba12009-07-10 15:29:03 +02001606 * Start timer to probe the connection to the AP now.
1607 * Also start the timer that will detect beacon loss.
Kalle Valo15b7b062009-03-22 21:57:14 +02001608 */
Johannes Bergb291ba12009-07-10 15:29:03 +02001609 ieee80211_sta_rx_notify(sdata, (struct ieee80211_hdr *)mgmt);
1610 mod_beacon_timer(sdata);
Kalle Valo15b7b062009-03-22 21:57:14 +02001611
Johannes Berg77fdaa12009-07-07 03:45:17 +02001612 return RX_MGMT_CFG80211_ASSOC;
Jiri Bencf0706e82007-05-05 11:45:53 -07001613}
1614
1615
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001616static void ieee80211_rx_bss_info(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001617 struct ieee80211_mgmt *mgmt,
1618 size_t len,
1619 struct ieee80211_rx_status *rx_status,
Johannes Berg98c8fcc2008-09-08 17:44:26 +02001620 struct ieee802_11_elems *elems,
1621 bool beacon)
Jiri Bencf0706e82007-05-05 11:45:53 -07001622{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001623 struct ieee80211_local *local = sdata->local;
Johannes Berg98c8fcc2008-09-08 17:44:26 +02001624 int freq;
Johannes Bergc2b13452008-09-11 00:01:55 +02001625 struct ieee80211_bss *bss;
Johannes Bergfab7d4a2008-03-16 18:42:44 +01001626 struct ieee80211_channel *channel;
Jiri Bencf0706e82007-05-05 11:45:53 -07001627
Johannes Berg5bda6172008-09-08 11:05:10 +02001628 if (elems->ds_params && elems->ds_params_len == 1)
1629 freq = ieee80211_channel_to_frequency(elems->ds_params[0]);
1630 else
1631 freq = rx_status->freq;
1632
1633 channel = ieee80211_get_channel(local->hw.wiphy, freq);
1634
1635 if (!channel || channel->flags & IEEE80211_CHAN_DISABLED)
1636 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001637
Johannes Berg98c8fcc2008-09-08 17:44:26 +02001638 bss = ieee80211_bss_info_update(local, rx_status, mgmt, len, elems,
Johannes Berg2a519312009-02-10 21:25:55 +01001639 channel, beacon);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001640 if (bss)
1641 ieee80211_rx_bss_put(local, bss);
1642
1643 if (!sdata->u.mgd.associated)
Johannes Berg98c8fcc2008-09-08 17:44:26 +02001644 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001645
Sujithc481ec92009-01-06 09:28:37 +05301646 if (elems->ch_switch_elem && (elems->ch_switch_elem_len == 3) &&
Johannes Berg77fdaa12009-07-07 03:45:17 +02001647 (memcmp(mgmt->bssid, sdata->u.mgd.associated->cbss.bssid,
1648 ETH_ALEN) == 0)) {
Sujithc481ec92009-01-06 09:28:37 +05301649 struct ieee80211_channel_sw_ie *sw_elem =
1650 (struct ieee80211_channel_sw_ie *)elems->ch_switch_elem;
Johannes Bergcc32abd2009-05-15 11:52:31 +02001651 ieee80211_sta_process_chanswitch(sdata, sw_elem, bss);
Sujithc481ec92009-01-06 09:28:37 +05301652 }
Jiri Bencf0706e82007-05-05 11:45:53 -07001653}
1654
1655
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001656static void ieee80211_rx_mgmt_probe_resp(struct ieee80211_sub_if_data *sdata,
Johannes Berg77fdaa12009-07-07 03:45:17 +02001657 struct ieee80211_mgd_work *wk,
1658 struct ieee80211_mgmt *mgmt, size_t len,
Jiri Bencf0706e82007-05-05 11:45:53 -07001659 struct ieee80211_rx_status *rx_status)
1660{
Kalle Valo15b7b062009-03-22 21:57:14 +02001661 struct ieee80211_if_managed *ifmgd;
Ester Kummerae6a44e2008-06-27 18:54:48 +03001662 size_t baselen;
1663 struct ieee802_11_elems elems;
1664
Kalle Valo15b7b062009-03-22 21:57:14 +02001665 ifmgd = &sdata->u.mgd;
1666
Johannes Berg77fdaa12009-07-07 03:45:17 +02001667 ASSERT_MGD_MTX(ifmgd);
1668
Tomas Winkler8e7cdbb2008-08-03 14:32:01 +03001669 if (memcmp(mgmt->da, sdata->dev->dev_addr, ETH_ALEN))
1670 return; /* ignore ProbeResp to foreign address */
1671
Ester Kummerae6a44e2008-06-27 18:54:48 +03001672 baselen = (u8 *) mgmt->u.probe_resp.variable - (u8 *) mgmt;
1673 if (baselen > len)
1674 return;
1675
1676 ieee802_11_parse_elems(mgmt->u.probe_resp.variable, len - baselen,
1677 &elems);
1678
Johannes Berg98c8fcc2008-09-08 17:44:26 +02001679 ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems, false);
Ron Rindjunsky9859b812008-08-09 03:02:19 +03001680
1681 /* direct probe may be part of the association flow */
Johannes Berg77fdaa12009-07-07 03:45:17 +02001682 if (wk && wk->state == IEEE80211_MGD_STATE_PROBE) {
Johannes Berg0ff71612009-09-26 14:45:41 +02001683 printk(KERN_DEBUG "%s: direct probe responded\n",
Ron Rindjunsky9859b812008-08-09 03:02:19 +03001684 sdata->dev->name);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001685 wk->tries = 0;
1686 wk->state = IEEE80211_MGD_STATE_AUTH;
1687 WARN_ON(ieee80211_authenticate(sdata, wk) != RX_MGMT_NONE);
Ron Rindjunsky9859b812008-08-09 03:02:19 +03001688 }
Kalle Valo15b7b062009-03-22 21:57:14 +02001689
Johannes Berg77fdaa12009-07-07 03:45:17 +02001690 if (ifmgd->associated &&
1691 memcmp(mgmt->bssid, ifmgd->associated->cbss.bssid, ETH_ALEN) == 0 &&
Johannes Bergb291ba12009-07-10 15:29:03 +02001692 ifmgd->flags & (IEEE80211_STA_BEACON_POLL |
1693 IEEE80211_STA_CONNECTION_POLL)) {
1694 ifmgd->flags &= ~(IEEE80211_STA_CONNECTION_POLL |
1695 IEEE80211_STA_BEACON_POLL);
Johannes Berg4e751842009-06-10 15:16:52 +02001696 mutex_lock(&sdata->local->iflist_mtx);
1697 ieee80211_recalc_ps(sdata->local, -1);
1698 mutex_unlock(&sdata->local->iflist_mtx);
Johannes Bergb291ba12009-07-10 15:29:03 +02001699 /*
1700 * We've received a probe response, but are not sure whether
1701 * we have or will be receiving any beacons or data, so let's
1702 * schedule the timers again, just in case.
1703 */
1704 mod_beacon_timer(sdata);
1705 mod_timer(&ifmgd->conn_mon_timer,
1706 round_jiffies_up(jiffies +
1707 IEEE80211_CONNECTION_IDLE_TIME));
Johannes Berg4e751842009-06-10 15:16:52 +02001708 }
Jiri Bencf0706e82007-05-05 11:45:53 -07001709}
1710
Johannes Bergd91f36d2009-04-16 13:17:26 +02001711/*
1712 * This is the canonical list of information elements we care about,
1713 * the filter code also gives us all changes to the Microsoft OUI
1714 * (00:50:F2) vendor IE which is used for WMM which we need to track.
1715 *
1716 * We implement beacon filtering in software since that means we can
1717 * avoid processing the frame here and in cfg80211, and userspace
1718 * will not be able to tell whether the hardware supports it or not.
1719 *
1720 * XXX: This list needs to be dynamic -- userspace needs to be able to
1721 * add items it requires. It also needs to be able to tell us to
1722 * look out for other vendor IEs.
1723 */
1724static const u64 care_about_ies =
Johannes Berg1d4df3a2009-04-22 11:25:43 +02001725 (1ULL << WLAN_EID_COUNTRY) |
1726 (1ULL << WLAN_EID_ERP_INFO) |
1727 (1ULL << WLAN_EID_CHANNEL_SWITCH) |
1728 (1ULL << WLAN_EID_PWR_CONSTRAINT) |
1729 (1ULL << WLAN_EID_HT_CAPABILITY) |
1730 (1ULL << WLAN_EID_HT_INFORMATION);
Johannes Bergd91f36d2009-04-16 13:17:26 +02001731
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001732static void ieee80211_rx_mgmt_beacon(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001733 struct ieee80211_mgmt *mgmt,
1734 size_t len,
1735 struct ieee80211_rx_status *rx_status)
1736{
Johannes Bergd91f36d2009-04-16 13:17:26 +02001737 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jiri Bencf0706e82007-05-05 11:45:53 -07001738 size_t baselen;
1739 struct ieee802_11_elems elems;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001740 struct ieee80211_local *local = sdata->local;
Johannes Berg471b3ef2007-12-28 14:32:58 +01001741 u32 changed = 0;
Johannes Bergd91f36d2009-04-16 13:17:26 +02001742 bool erp_valid, directed_tim = false;
Johannes Berg7a5158e2008-10-08 10:59:33 +02001743 u8 erp_value = 0;
Johannes Bergd91f36d2009-04-16 13:17:26 +02001744 u32 ncrc;
Johannes Berg77fdaa12009-07-07 03:45:17 +02001745 u8 *bssid;
1746
1747 ASSERT_MGD_MTX(ifmgd);
Jiri Bencf0706e82007-05-05 11:45:53 -07001748
Ester Kummerae6a44e2008-06-27 18:54:48 +03001749 /* Process beacon from the current BSS */
1750 baselen = (u8 *) mgmt->u.beacon.variable - (u8 *) mgmt;
1751 if (baselen > len)
1752 return;
1753
Johannes Bergd91f36d2009-04-16 13:17:26 +02001754 if (rx_status->freq != local->hw.conf.channel->center_freq)
Jiri Bencf0706e82007-05-05 11:45:53 -07001755 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07001756
Johannes Bergb291ba12009-07-10 15:29:03 +02001757 /*
1758 * We might have received a number of frames, among them a
1759 * disassoc frame and a beacon...
1760 */
1761 if (!ifmgd->associated)
Johannes Berg77fdaa12009-07-07 03:45:17 +02001762 return;
1763
1764 bssid = ifmgd->associated->cbss.bssid;
1765
Johannes Bergb291ba12009-07-10 15:29:03 +02001766 /*
1767 * And in theory even frames from a different AP we were just
1768 * associated to a split-second ago!
1769 */
1770 if (memcmp(bssid, mgmt->bssid, ETH_ALEN) != 0)
Jiri Bencf0706e82007-05-05 11:45:53 -07001771 return;
1772
Johannes Bergb291ba12009-07-10 15:29:03 +02001773 if (ifmgd->flags & IEEE80211_STA_BEACON_POLL) {
Jouni Malinen92778182009-05-14 21:15:36 +03001774#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
1775 if (net_ratelimit()) {
1776 printk(KERN_DEBUG "%s: cancelling probereq poll due "
1777 "to a received beacon\n", sdata->dev->name);
1778 }
1779#endif
Johannes Bergb291ba12009-07-10 15:29:03 +02001780 ifmgd->flags &= ~IEEE80211_STA_BEACON_POLL;
Johannes Berg4e751842009-06-10 15:16:52 +02001781 mutex_lock(&local->iflist_mtx);
1782 ieee80211_recalc_ps(local, -1);
1783 mutex_unlock(&local->iflist_mtx);
Jouni Malinen92778182009-05-14 21:15:36 +03001784 }
1785
Johannes Bergb291ba12009-07-10 15:29:03 +02001786 /*
1787 * Push the beacon loss detection into the future since
1788 * we are processing a beacon from the AP just now.
1789 */
1790 mod_beacon_timer(sdata);
1791
Johannes Bergd91f36d2009-04-16 13:17:26 +02001792 ncrc = crc32_be(0, (void *)&mgmt->u.beacon.beacon_int, 4);
1793 ncrc = ieee802_11_parse_elems_crc(mgmt->u.beacon.variable,
1794 len - baselen, &elems,
1795 care_about_ies, ncrc);
1796
1797 if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)
Johannes Berge7ec86f2009-04-18 17:33:24 +02001798 directed_tim = ieee80211_check_tim(elems.tim, elems.tim_len,
1799 ifmgd->aid);
Johannes Bergd91f36d2009-04-16 13:17:26 +02001800
Jouni Malinen30196672009-05-19 17:01:43 +03001801 if (ncrc != ifmgd->beacon_crc) {
1802 ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems,
1803 true);
Johannes Bergd91f36d2009-04-16 13:17:26 +02001804
Jouni Malinen30196672009-05-19 17:01:43 +03001805 ieee80211_sta_wmm_params(local, ifmgd, elems.wmm_param,
1806 elems.wmm_param_len);
1807 }
Johannes Bergfe3fa822008-09-08 11:05:09 +02001808
Vivek Natarajan25c9c872009-03-02 20:20:30 +05301809 if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK) {
Kalle Valo1fb36062009-02-10 17:09:24 +02001810 if (directed_tim) {
Kalle Valo572e0012009-02-10 17:09:31 +02001811 if (local->hw.conf.dynamic_ps_timeout > 0) {
1812 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
1813 ieee80211_hw_config(local,
1814 IEEE80211_CONF_CHANGE_PS);
1815 ieee80211_send_nullfunc(local, sdata, 0);
1816 } else {
1817 local->pspolling = true;
1818
1819 /*
1820 * Here is assumed that the driver will be
1821 * able to send ps-poll frame and receive a
1822 * response even though power save mode is
1823 * enabled, but some drivers might require
1824 * to disable power save here. This needs
1825 * to be investigated.
1826 */
1827 ieee80211_send_pspoll(local, sdata);
1828 }
Vivek Natarajana97b77b2008-12-23 18:39:02 -08001829 }
1830 }
Johannes Berg7a5158e2008-10-08 10:59:33 +02001831
Jouni Malinen30196672009-05-19 17:01:43 +03001832 if (ncrc == ifmgd->beacon_crc)
1833 return;
1834 ifmgd->beacon_crc = ncrc;
1835
Johannes Berg7a5158e2008-10-08 10:59:33 +02001836 if (elems.erp_info && elems.erp_info_len >= 1) {
1837 erp_valid = true;
1838 erp_value = elems.erp_info[0];
1839 } else {
1840 erp_valid = false;
John W. Linville50c4afb2008-04-15 14:09:27 -04001841 }
Johannes Berg7a5158e2008-10-08 10:59:33 +02001842 changed |= ieee80211_handle_bss_capability(sdata,
1843 le16_to_cpu(mgmt->u.beacon.capab_info),
1844 erp_valid, erp_value);
Jiri Bencf0706e82007-05-05 11:45:53 -07001845
Ron Rindjunskyd3c990f2007-11-26 16:14:34 +02001846
Vasanthakumar Thiagarajan53d6f812009-02-11 22:18:49 +05301847 if (elems.ht_cap_elem && elems.ht_info_elem && elems.wmm_param &&
Johannes Bergab1faea2009-07-01 21:41:17 +02001848 !(ifmgd->flags & IEEE80211_STA_DISABLE_11N)) {
Johannes Bergae5eb022008-10-14 16:58:37 +02001849 struct sta_info *sta;
1850 struct ieee80211_supported_band *sband;
1851 u16 ap_ht_cap_flags;
1852
1853 rcu_read_lock();
1854
Johannes Berg77fdaa12009-07-07 03:45:17 +02001855 sta = sta_info_get(local, bssid);
1856 if (WARN_ON(!sta)) {
Johannes Bergae5eb022008-10-14 16:58:37 +02001857 rcu_read_unlock();
1858 return;
1859 }
1860
1861 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
1862
1863 ieee80211_ht_cap_ie_to_sta_ht_cap(sband,
1864 elems.ht_cap_elem, &sta->sta.ht_cap);
1865
1866 ap_ht_cap_flags = sta->sta.ht_cap.cap;
1867
1868 rcu_read_unlock();
1869
1870 changed |= ieee80211_enable_ht(sdata, elems.ht_info_elem,
Johannes Berg77fdaa12009-07-07 03:45:17 +02001871 bssid, ap_ht_cap_flags);
Ron Rindjunskyd3c990f2007-11-26 16:14:34 +02001872 }
1873
Luis R. Rodriguez8b19e6c2009-07-30 17:38:09 -07001874 /* Note: country IE parsing is done for us by cfg80211 */
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001875 if (elems.country_elem) {
Vasanthakumar Thiagarajana8302de2009-01-09 18:14:15 +05301876 /* TODO: IBSS also needs this */
1877 if (elems.pwr_constr_elem)
1878 ieee80211_handle_pwr_constr(sdata,
1879 le16_to_cpu(mgmt->u.probe_resp.capab_info),
1880 elems.pwr_constr_elem,
1881 elems.pwr_constr_elem_len);
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001882 }
1883
Johannes Berg471b3ef2007-12-28 14:32:58 +01001884 ieee80211_bss_info_change_notify(sdata, changed);
Jiri Bencf0706e82007-05-05 11:45:53 -07001885}
1886
Johannes Berg46900292009-02-15 12:44:28 +01001887ieee80211_rx_result ieee80211_sta_rx_mgmt(struct ieee80211_sub_if_data *sdata,
Johannes Bergf1d58c22009-06-17 13:13:00 +02001888 struct sk_buff *skb)
Jiri Bencf0706e82007-05-05 11:45:53 -07001889{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001890 struct ieee80211_local *local = sdata->local;
Jiri Bencf0706e82007-05-05 11:45:53 -07001891 struct ieee80211_mgmt *mgmt;
1892 u16 fc;
1893
1894 if (skb->len < 24)
Johannes Berg46900292009-02-15 12:44:28 +01001895 return RX_DROP_MONITOR;
Jiri Bencf0706e82007-05-05 11:45:53 -07001896
1897 mgmt = (struct ieee80211_mgmt *) skb->data;
1898 fc = le16_to_cpu(mgmt->frame_control);
1899
1900 switch (fc & IEEE80211_FCTL_STYPE) {
1901 case IEEE80211_STYPE_PROBE_REQ:
1902 case IEEE80211_STYPE_PROBE_RESP:
1903 case IEEE80211_STYPE_BEACON:
Jiri Bencf0706e82007-05-05 11:45:53 -07001904 case IEEE80211_STYPE_AUTH:
1905 case IEEE80211_STYPE_ASSOC_RESP:
1906 case IEEE80211_STYPE_REASSOC_RESP:
1907 case IEEE80211_STYPE_DEAUTH:
1908 case IEEE80211_STYPE_DISASSOC:
Johannes Berg77fdaa12009-07-07 03:45:17 +02001909 case IEEE80211_STYPE_ACTION:
Johannes Berg46900292009-02-15 12:44:28 +01001910 skb_queue_tail(&sdata->u.mgd.skb_queue, skb);
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04001911 ieee80211_queue_work(&local->hw, &sdata->u.mgd.work);
Johannes Berg46900292009-02-15 12:44:28 +01001912 return RX_QUEUED;
Jiri Bencf0706e82007-05-05 11:45:53 -07001913 }
1914
Johannes Berg46900292009-02-15 12:44:28 +01001915 return RX_DROP_MONITOR;
Jiri Bencf0706e82007-05-05 11:45:53 -07001916}
1917
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001918static void ieee80211_sta_rx_queued_mgmt(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001919 struct sk_buff *skb)
1920{
Johannes Berg77fdaa12009-07-07 03:45:17 +02001921 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jiri Bencf0706e82007-05-05 11:45:53 -07001922 struct ieee80211_rx_status *rx_status;
Jiri Bencf0706e82007-05-05 11:45:53 -07001923 struct ieee80211_mgmt *mgmt;
Johannes Berg77fdaa12009-07-07 03:45:17 +02001924 struct ieee80211_mgd_work *wk;
1925 enum rx_mgmt_action rma = RX_MGMT_NONE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001926 u16 fc;
1927
Jiri Bencf0706e82007-05-05 11:45:53 -07001928 rx_status = (struct ieee80211_rx_status *) skb->cb;
1929 mgmt = (struct ieee80211_mgmt *) skb->data;
1930 fc = le16_to_cpu(mgmt->frame_control);
1931
Johannes Berg77fdaa12009-07-07 03:45:17 +02001932 mutex_lock(&ifmgd->mtx);
1933
1934 if (ifmgd->associated &&
1935 memcmp(ifmgd->associated->cbss.bssid, mgmt->bssid,
1936 ETH_ALEN) == 0) {
1937 switch (fc & IEEE80211_FCTL_STYPE) {
1938 case IEEE80211_STYPE_BEACON:
1939 ieee80211_rx_mgmt_beacon(sdata, mgmt, skb->len,
1940 rx_status);
1941 break;
1942 case IEEE80211_STYPE_PROBE_RESP:
1943 ieee80211_rx_mgmt_probe_resp(sdata, NULL, mgmt,
1944 skb->len, rx_status);
1945 break;
1946 case IEEE80211_STYPE_DEAUTH:
1947 rma = ieee80211_rx_mgmt_deauth(sdata, NULL,
1948 mgmt, skb->len);
1949 break;
1950 case IEEE80211_STYPE_DISASSOC:
1951 rma = ieee80211_rx_mgmt_disassoc(sdata, mgmt, skb->len);
1952 break;
1953 case IEEE80211_STYPE_ACTION:
1954 /* XXX: differentiate, can only happen for CSA now! */
1955 ieee80211_sta_process_chanswitch(sdata,
1956 &mgmt->u.action.u.chan_switch.sw_elem,
1957 ifmgd->associated);
1958 break;
1959 }
1960 mutex_unlock(&ifmgd->mtx);
1961
1962 switch (rma) {
1963 case RX_MGMT_NONE:
1964 /* no action */
1965 break;
1966 case RX_MGMT_CFG80211_DEAUTH:
Holger Schurigce470612009-10-13 13:28:13 +02001967 cfg80211_send_deauth(sdata->dev, (u8 *)mgmt, skb->len);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001968 break;
1969 case RX_MGMT_CFG80211_DISASSOC:
Holger Schurigce470612009-10-13 13:28:13 +02001970 cfg80211_send_disassoc(sdata->dev, (u8 *)mgmt, skb->len);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001971 break;
1972 default:
1973 WARN(1, "unexpected: %d", rma);
1974 }
1975 goto out;
1976 }
1977
1978 list_for_each_entry(wk, &ifmgd->work_list, list) {
1979 if (memcmp(wk->bss->cbss.bssid, mgmt->bssid, ETH_ALEN) != 0)
1980 continue;
1981
1982 switch (fc & IEEE80211_FCTL_STYPE) {
1983 case IEEE80211_STYPE_PROBE_RESP:
1984 ieee80211_rx_mgmt_probe_resp(sdata, wk, mgmt, skb->len,
1985 rx_status);
1986 break;
1987 case IEEE80211_STYPE_AUTH:
1988 rma = ieee80211_rx_mgmt_auth(sdata, wk, mgmt, skb->len);
1989 break;
1990 case IEEE80211_STYPE_ASSOC_RESP:
1991 rma = ieee80211_rx_mgmt_assoc_resp(sdata, wk, mgmt,
1992 skb->len, false);
1993 break;
1994 case IEEE80211_STYPE_REASSOC_RESP:
1995 rma = ieee80211_rx_mgmt_assoc_resp(sdata, wk, mgmt,
1996 skb->len, true);
1997 break;
1998 case IEEE80211_STYPE_DEAUTH:
1999 rma = ieee80211_rx_mgmt_deauth(sdata, wk, mgmt,
2000 skb->len);
2001 break;
2002 }
2003 /*
2004 * We've processed this frame for that work, so it can't
2005 * belong to another work struct.
2006 * NB: this is also required for correctness because the
2007 * called functions can free 'wk', and for 'rma'!
2008 */
Johannes Berg46900292009-02-15 12:44:28 +01002009 break;
Jiri Bencf0706e82007-05-05 11:45:53 -07002010 }
2011
Johannes Berg77fdaa12009-07-07 03:45:17 +02002012 mutex_unlock(&ifmgd->mtx);
2013
2014 switch (rma) {
2015 case RX_MGMT_NONE:
2016 /* no action */
2017 break;
2018 case RX_MGMT_CFG80211_AUTH:
Johannes Bergcb0b4be2009-07-07 03:56:07 +02002019 cfg80211_send_rx_auth(sdata->dev, (u8 *) mgmt, skb->len);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002020 break;
2021 case RX_MGMT_CFG80211_ASSOC:
Johannes Bergcb0b4be2009-07-07 03:56:07 +02002022 cfg80211_send_rx_assoc(sdata->dev, (u8 *) mgmt, skb->len);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002023 break;
Johannes Berg8d8b2612009-07-25 11:58:36 +02002024 case RX_MGMT_CFG80211_DEAUTH:
Holger Schurigce470612009-10-13 13:28:13 +02002025 cfg80211_send_deauth(sdata->dev, (u8 *)mgmt, skb->len);
Johannes Berg8d8b2612009-07-25 11:58:36 +02002026 break;
Johannes Berg77fdaa12009-07-07 03:45:17 +02002027 default:
2028 WARN(1, "unexpected: %d", rma);
2029 }
2030
2031 out:
Jiri Bencf0706e82007-05-05 11:45:53 -07002032 kfree_skb(skb);
2033}
2034
Johannes Berg9c6bd792008-09-11 00:01:52 +02002035static void ieee80211_sta_timer(unsigned long data)
Jiri Bencf0706e82007-05-05 11:45:53 -07002036{
2037 struct ieee80211_sub_if_data *sdata =
2038 (struct ieee80211_sub_if_data *) data;
Johannes Berg46900292009-02-15 12:44:28 +01002039 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002040 struct ieee80211_local *local = sdata->local;
Jiri Bencf0706e82007-05-05 11:45:53 -07002041
Johannes Berg5bb644a2009-05-17 11:40:42 +02002042 if (local->quiescing) {
2043 set_bit(TMR_RUNNING_TIMER, &ifmgd->timers_running);
2044 return;
2045 }
2046
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04002047 ieee80211_queue_work(&local->hw, &ifmgd->work);
Jiri Bencf0706e82007-05-05 11:45:53 -07002048}
2049
Johannes Berg9c6bd792008-09-11 00:01:52 +02002050static void ieee80211_sta_work(struct work_struct *work)
Johannes Berg60f8b392008-09-08 17:44:22 +02002051{
2052 struct ieee80211_sub_if_data *sdata =
Johannes Berg46900292009-02-15 12:44:28 +01002053 container_of(work, struct ieee80211_sub_if_data, u.mgd.work);
Johannes Berg60f8b392008-09-08 17:44:22 +02002054 struct ieee80211_local *local = sdata->local;
Johannes Berg46900292009-02-15 12:44:28 +01002055 struct ieee80211_if_managed *ifmgd;
Johannes Berg60f8b392008-09-08 17:44:22 +02002056 struct sk_buff *skb;
Johannes Berg77fdaa12009-07-07 03:45:17 +02002057 struct ieee80211_mgd_work *wk, *tmp;
2058 LIST_HEAD(free_work);
2059 enum rx_mgmt_action rma;
2060 bool anybusy = false;
Johannes Berg60f8b392008-09-08 17:44:22 +02002061
2062 if (!netif_running(sdata->dev))
2063 return;
2064
Helmut Schaafbe9c422009-07-23 12:14:04 +02002065 if (local->scanning)
Johannes Berg60f8b392008-09-08 17:44:22 +02002066 return;
2067
Johannes Berg46900292009-02-15 12:44:28 +01002068 if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION))
Johannes Berg60f8b392008-09-08 17:44:22 +02002069 return;
Johannes Berg5bb644a2009-05-17 11:40:42 +02002070
2071 /*
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04002072 * ieee80211_queue_work() should have picked up most cases,
2073 * here we'll pick the the rest.
Johannes Berg5bb644a2009-05-17 11:40:42 +02002074 */
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04002075 if (WARN(local->suspended, "STA MLME work scheduled while "
2076 "going to suspend\n"))
Johannes Berg5bb644a2009-05-17 11:40:42 +02002077 return;
2078
Johannes Berg46900292009-02-15 12:44:28 +01002079 ifmgd = &sdata->u.mgd;
Johannes Berg60f8b392008-09-08 17:44:22 +02002080
Johannes Berg77fdaa12009-07-07 03:45:17 +02002081 /* first process frames to avoid timing out while a frame is pending */
Johannes Berg46900292009-02-15 12:44:28 +01002082 while ((skb = skb_dequeue(&ifmgd->skb_queue)))
Johannes Berg60f8b392008-09-08 17:44:22 +02002083 ieee80211_sta_rx_queued_mgmt(sdata, skb);
2084
Johannes Berg77fdaa12009-07-07 03:45:17 +02002085 /* then process the rest of the work */
2086 mutex_lock(&ifmgd->mtx);
Johannes Berg60f8b392008-09-08 17:44:22 +02002087
Johannes Bergb291ba12009-07-10 15:29:03 +02002088 if (ifmgd->flags & (IEEE80211_STA_BEACON_POLL |
2089 IEEE80211_STA_CONNECTION_POLL) &&
2090 ifmgd->associated) {
Maxim Levitskya43abf22009-07-31 18:54:12 +03002091 u8 bssid[ETH_ALEN];
2092
2093 memcpy(bssid, ifmgd->associated->cbss.bssid, ETH_ALEN);
Johannes Bergb291ba12009-07-10 15:29:03 +02002094 if (time_is_after_jiffies(ifmgd->probe_timeout))
2095 run_again(ifmgd, ifmgd->probe_timeout);
Maxim Levitskya43abf22009-07-31 18:54:12 +03002096
2097 else if (ifmgd->probe_send_count < IEEE80211_MAX_PROBE_TRIES) {
2098#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
2099 printk(KERN_DEBUG "No probe response from AP %pM"
2100 " after %dms, try %d\n", bssid,
2101 (1000 * IEEE80211_PROBE_WAIT)/HZ,
2102 ifmgd->probe_send_count);
2103#endif
2104 ieee80211_mgd_probe_ap_send(sdata);
2105 } else {
Johannes Bergb291ba12009-07-10 15:29:03 +02002106 /*
2107 * We actually lost the connection ... or did we?
2108 * Let's make sure!
2109 */
2110 ifmgd->flags &= ~(IEEE80211_STA_CONNECTION_POLL |
2111 IEEE80211_STA_BEACON_POLL);
Johannes Bergb291ba12009-07-10 15:29:03 +02002112 printk(KERN_DEBUG "No probe response from AP %pM"
2113 " after %dms, disconnecting.\n",
2114 bssid, (1000 * IEEE80211_PROBE_WAIT)/HZ);
Johannes Berge21546a2009-08-06 20:41:32 +02002115 ieee80211_set_disassoc(sdata, true);
Johannes Bergb291ba12009-07-10 15:29:03 +02002116 mutex_unlock(&ifmgd->mtx);
2117 /*
2118 * must be outside lock due to cfg80211,
2119 * but that's not a problem.
2120 */
2121 ieee80211_send_deauth_disassoc(sdata, bssid,
2122 IEEE80211_STYPE_DEAUTH,
2123 WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY,
2124 NULL);
2125 mutex_lock(&ifmgd->mtx);
2126 }
2127 }
2128
Johannes Berg60f8b392008-09-08 17:44:22 +02002129
Johannes Berg5cff20e2009-04-29 12:26:17 +02002130 ieee80211_recalc_idle(local);
2131
Johannes Berg77fdaa12009-07-07 03:45:17 +02002132 list_for_each_entry_safe(wk, tmp, &ifmgd->work_list, list) {
Johannes Bergca386f32009-07-10 02:39:48 +02002133 if (time_is_after_jiffies(wk->timeout)) {
2134 /*
2135 * This work item isn't supposed to be worked on
2136 * right now, but take care to adjust the timer
2137 * properly.
2138 */
2139 run_again(ifmgd, wk->timeout);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002140 continue;
Johannes Bergca386f32009-07-10 02:39:48 +02002141 }
Johannes Berg77fdaa12009-07-07 03:45:17 +02002142
2143 switch (wk->state) {
2144 default:
2145 WARN_ON(1);
2146 /* fall through */
2147 case IEEE80211_MGD_STATE_IDLE:
2148 /* nothing */
2149 rma = RX_MGMT_NONE;
2150 break;
2151 case IEEE80211_MGD_STATE_PROBE:
2152 rma = ieee80211_direct_probe(sdata, wk);
2153 break;
2154 case IEEE80211_MGD_STATE_AUTH:
2155 rma = ieee80211_authenticate(sdata, wk);
2156 break;
2157 case IEEE80211_MGD_STATE_ASSOC:
2158 rma = ieee80211_associate(sdata, wk);
2159 break;
2160 }
2161
2162 switch (rma) {
2163 case RX_MGMT_NONE:
2164 /* no action required */
2165 break;
2166 case RX_MGMT_CFG80211_AUTH_TO:
2167 case RX_MGMT_CFG80211_ASSOC_TO:
2168 list_del(&wk->list);
2169 list_add(&wk->list, &free_work);
2170 wk->tries = rma; /* small abuse but only local */
2171 break;
2172 default:
2173 WARN(1, "unexpected: %d", rma);
2174 }
2175 }
2176
Jouni Malinen5bf6fcc2009-08-25 17:44:28 +03002177 list_for_each_entry(wk, &ifmgd->work_list, list) {
2178 if (wk->state != IEEE80211_MGD_STATE_IDLE) {
2179 anybusy = true;
2180 break;
2181 }
2182 }
2183 if (!anybusy &&
2184 test_and_clear_bit(IEEE80211_STA_REQ_SCAN, &ifmgd->request))
2185 ieee80211_queue_delayed_work(&local->hw,
2186 &local->scan_work,
2187 round_jiffies_relative(0));
2188
Johannes Berg77fdaa12009-07-07 03:45:17 +02002189 mutex_unlock(&ifmgd->mtx);
2190
2191 list_for_each_entry_safe(wk, tmp, &free_work, list) {
2192 switch (wk->tries) {
2193 case RX_MGMT_CFG80211_AUTH_TO:
2194 cfg80211_send_auth_timeout(sdata->dev,
Johannes Bergcb0b4be2009-07-07 03:56:07 +02002195 wk->bss->cbss.bssid);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002196 break;
2197 case RX_MGMT_CFG80211_ASSOC_TO:
Johannes Bergcb0b4be2009-07-07 03:56:07 +02002198 cfg80211_send_assoc_timeout(sdata->dev,
2199 wk->bss->cbss.bssid);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002200 break;
2201 default:
2202 WARN(1, "unexpected: %d", wk->tries);
2203 }
2204
2205 list_del(&wk->list);
2206 kfree(wk);
2207 }
2208
2209 ieee80211_recalc_idle(local);
Johannes Berg60f8b392008-09-08 17:44:22 +02002210}
Johannes Berg0a51b272008-09-08 17:44:25 +02002211
Johannes Bergb291ba12009-07-10 15:29:03 +02002212static void ieee80211_sta_bcn_mon_timer(unsigned long data)
2213{
2214 struct ieee80211_sub_if_data *sdata =
2215 (struct ieee80211_sub_if_data *) data;
2216 struct ieee80211_local *local = sdata->local;
2217
2218 if (local->quiescing)
2219 return;
2220
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04002221 ieee80211_queue_work(&sdata->local->hw, &sdata->u.mgd.beacon_loss_work);
Johannes Bergb291ba12009-07-10 15:29:03 +02002222}
2223
2224static void ieee80211_sta_conn_mon_timer(unsigned long data)
2225{
2226 struct ieee80211_sub_if_data *sdata =
2227 (struct ieee80211_sub_if_data *) data;
2228 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2229 struct ieee80211_local *local = sdata->local;
2230
2231 if (local->quiescing)
2232 return;
2233
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04002234 ieee80211_queue_work(&local->hw, &ifmgd->monitor_work);
Johannes Bergb291ba12009-07-10 15:29:03 +02002235}
2236
2237static void ieee80211_sta_monitor_work(struct work_struct *work)
2238{
2239 struct ieee80211_sub_if_data *sdata =
2240 container_of(work, struct ieee80211_sub_if_data,
2241 u.mgd.monitor_work);
2242
2243 ieee80211_mgd_probe_ap(sdata, false);
2244}
2245
Johannes Berga1678f82008-09-11 00:01:47 +02002246static void ieee80211_restart_sta_timer(struct ieee80211_sub_if_data *sdata)
2247{
Kalle Vaload935682009-04-19 08:47:19 +03002248 if (sdata->vif.type == NL80211_IFTYPE_STATION) {
Johannes Bergb291ba12009-07-10 15:29:03 +02002249 sdata->u.mgd.flags &= ~(IEEE80211_STA_BEACON_POLL |
2250 IEEE80211_STA_CONNECTION_POLL);
Kalle Vaload935682009-04-19 08:47:19 +03002251
Johannes Bergb291ba12009-07-10 15:29:03 +02002252 /* let's probe the connection once */
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04002253 ieee80211_queue_work(&sdata->local->hw,
Johannes Bergb291ba12009-07-10 15:29:03 +02002254 &sdata->u.mgd.monitor_work);
2255 /* and do all the other regular work too */
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04002256 ieee80211_queue_work(&sdata->local->hw,
Johannes Berg46900292009-02-15 12:44:28 +01002257 &sdata->u.mgd.work);
Kalle Vaload935682009-04-19 08:47:19 +03002258 }
Johannes Berga1678f82008-09-11 00:01:47 +02002259}
2260
Johannes Berg5bb644a2009-05-17 11:40:42 +02002261#ifdef CONFIG_PM
2262void ieee80211_sta_quiesce(struct ieee80211_sub_if_data *sdata)
2263{
2264 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2265
2266 /*
2267 * we need to use atomic bitops for the running bits
2268 * only because both timers might fire at the same
2269 * time -- the code here is properly synchronised.
2270 */
2271
2272 cancel_work_sync(&ifmgd->work);
2273 cancel_work_sync(&ifmgd->beacon_loss_work);
2274 if (del_timer_sync(&ifmgd->timer))
2275 set_bit(TMR_RUNNING_TIMER, &ifmgd->timers_running);
2276
2277 cancel_work_sync(&ifmgd->chswitch_work);
2278 if (del_timer_sync(&ifmgd->chswitch_timer))
2279 set_bit(TMR_RUNNING_CHANSW, &ifmgd->timers_running);
Johannes Bergb291ba12009-07-10 15:29:03 +02002280
2281 cancel_work_sync(&ifmgd->monitor_work);
2282 /* these will just be re-established on connection */
2283 del_timer_sync(&ifmgd->conn_mon_timer);
2284 del_timer_sync(&ifmgd->bcn_mon_timer);
Johannes Berg5bb644a2009-05-17 11:40:42 +02002285}
2286
2287void ieee80211_sta_restart(struct ieee80211_sub_if_data *sdata)
2288{
2289 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2290
2291 if (test_and_clear_bit(TMR_RUNNING_TIMER, &ifmgd->timers_running))
2292 add_timer(&ifmgd->timer);
2293 if (test_and_clear_bit(TMR_RUNNING_CHANSW, &ifmgd->timers_running))
2294 add_timer(&ifmgd->chswitch_timer);
2295}
2296#endif
2297
Johannes Berg9c6bd792008-09-11 00:01:52 +02002298/* interface setup */
2299void ieee80211_sta_setup_sdata(struct ieee80211_sub_if_data *sdata)
2300{
Johannes Berg46900292009-02-15 12:44:28 +01002301 struct ieee80211_if_managed *ifmgd;
Johannes Berg9c6bd792008-09-11 00:01:52 +02002302
Johannes Berg46900292009-02-15 12:44:28 +01002303 ifmgd = &sdata->u.mgd;
2304 INIT_WORK(&ifmgd->work, ieee80211_sta_work);
Johannes Bergb291ba12009-07-10 15:29:03 +02002305 INIT_WORK(&ifmgd->monitor_work, ieee80211_sta_monitor_work);
Johannes Berg46900292009-02-15 12:44:28 +01002306 INIT_WORK(&ifmgd->chswitch_work, ieee80211_chswitch_work);
Kalle Valo04de8382009-03-22 21:57:35 +02002307 INIT_WORK(&ifmgd->beacon_loss_work, ieee80211_beacon_loss_work);
Johannes Berg46900292009-02-15 12:44:28 +01002308 setup_timer(&ifmgd->timer, ieee80211_sta_timer,
Johannes Berg9c6bd792008-09-11 00:01:52 +02002309 (unsigned long) sdata);
Johannes Bergb291ba12009-07-10 15:29:03 +02002310 setup_timer(&ifmgd->bcn_mon_timer, ieee80211_sta_bcn_mon_timer,
2311 (unsigned long) sdata);
2312 setup_timer(&ifmgd->conn_mon_timer, ieee80211_sta_conn_mon_timer,
2313 (unsigned long) sdata);
Johannes Berg46900292009-02-15 12:44:28 +01002314 setup_timer(&ifmgd->chswitch_timer, ieee80211_chswitch_timer,
Sujithc481ec92009-01-06 09:28:37 +05302315 (unsigned long) sdata);
Johannes Berg46900292009-02-15 12:44:28 +01002316 skb_queue_head_init(&ifmgd->skb_queue);
Johannes Berg9c6bd792008-09-11 00:01:52 +02002317
Johannes Berg77fdaa12009-07-07 03:45:17 +02002318 INIT_LIST_HEAD(&ifmgd->work_list);
2319
Johannes Berg46900292009-02-15 12:44:28 +01002320 ifmgd->capab = WLAN_CAPABILITY_ESS;
Johannes Bergab1faea2009-07-01 21:41:17 +02002321 ifmgd->flags = 0;
Johannes Berg176be722009-03-12 23:49:28 +01002322 if (sdata->local->hw.queues >= 4)
Johannes Berg46900292009-02-15 12:44:28 +01002323 ifmgd->flags |= IEEE80211_STA_WMM_ENABLED;
Johannes Bergbbbdff92009-04-16 13:27:42 +02002324
Johannes Berg77fdaa12009-07-07 03:45:17 +02002325 mutex_init(&ifmgd->mtx);
Johannes Berg9c6bd792008-09-11 00:01:52 +02002326}
2327
2328/* scan finished notification */
Johannes Berg0a51b272008-09-08 17:44:25 +02002329void ieee80211_mlme_notify_scan_completed(struct ieee80211_local *local)
2330{
2331 struct ieee80211_sub_if_data *sdata = local->scan_sdata;
Johannes Berga1678f82008-09-11 00:01:47 +02002332
2333 /* Restart STA timers */
2334 rcu_read_lock();
2335 list_for_each_entry_rcu(sdata, &local->interfaces, list)
2336 ieee80211_restart_sta_timer(sdata);
2337 rcu_read_unlock();
Johannes Berg0a51b272008-09-08 17:44:25 +02002338}
Johannes Berg10f644a2009-04-16 13:17:25 +02002339
2340int ieee80211_max_network_latency(struct notifier_block *nb,
2341 unsigned long data, void *dummy)
2342{
2343 s32 latency_usec = (s32) data;
2344 struct ieee80211_local *local =
2345 container_of(nb, struct ieee80211_local,
2346 network_latency_notifier);
2347
2348 mutex_lock(&local->iflist_mtx);
2349 ieee80211_recalc_ps(local, latency_usec);
2350 mutex_unlock(&local->iflist_mtx);
2351
2352 return 0;
2353}
Johannes Berg77fdaa12009-07-07 03:45:17 +02002354
2355/* config hooks */
2356int ieee80211_mgd_auth(struct ieee80211_sub_if_data *sdata,
2357 struct cfg80211_auth_request *req)
2358{
2359 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2360 const u8 *ssid;
2361 struct ieee80211_mgd_work *wk;
2362 u16 auth_alg;
2363
2364 switch (req->auth_type) {
2365 case NL80211_AUTHTYPE_OPEN_SYSTEM:
2366 auth_alg = WLAN_AUTH_OPEN;
2367 break;
2368 case NL80211_AUTHTYPE_SHARED_KEY:
2369 auth_alg = WLAN_AUTH_SHARED_KEY;
2370 break;
2371 case NL80211_AUTHTYPE_FT:
2372 auth_alg = WLAN_AUTH_FT;
2373 break;
2374 case NL80211_AUTHTYPE_NETWORK_EAP:
2375 auth_alg = WLAN_AUTH_LEAP;
2376 break;
2377 default:
2378 return -EOPNOTSUPP;
2379 }
2380
2381 wk = kzalloc(sizeof(*wk) + req->ie_len, GFP_KERNEL);
2382 if (!wk)
2383 return -ENOMEM;
2384
2385 wk->bss = (void *)req->bss;
2386
2387 if (req->ie && req->ie_len) {
2388 memcpy(wk->ie, req->ie, req->ie_len);
2389 wk->ie_len = req->ie_len;
2390 }
2391
Johannes Bergfffd0932009-07-08 14:22:54 +02002392 if (req->key && req->key_len) {
2393 wk->key_len = req->key_len;
2394 wk->key_idx = req->key_idx;
2395 memcpy(wk->key, req->key, req->key_len);
2396 }
2397
Johannes Berg77fdaa12009-07-07 03:45:17 +02002398 ssid = ieee80211_bss_get_ie(req->bss, WLAN_EID_SSID);
2399 memcpy(wk->ssid, ssid + 2, ssid[1]);
2400 wk->ssid_len = ssid[1];
2401
2402 wk->state = IEEE80211_MGD_STATE_PROBE;
2403 wk->auth_alg = auth_alg;
Johannes Berg48531842009-07-23 16:50:16 +02002404 wk->timeout = jiffies; /* run right away */
Johannes Berg77fdaa12009-07-07 03:45:17 +02002405
2406 /*
2407 * XXX: if still associated need to tell AP that we're going
2408 * to sleep and then change channel etc.
2409 */
2410 sdata->local->oper_channel = req->bss->channel;
2411 ieee80211_hw_config(sdata->local, 0);
2412
2413 mutex_lock(&ifmgd->mtx);
2414 list_add(&wk->list, &sdata->u.mgd.work_list);
2415 mutex_unlock(&ifmgd->mtx);
2416
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04002417 ieee80211_queue_work(&sdata->local->hw, &sdata->u.mgd.work);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002418 return 0;
2419}
2420
2421int ieee80211_mgd_assoc(struct ieee80211_sub_if_data *sdata,
2422 struct cfg80211_assoc_request *req)
2423{
2424 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2425 struct ieee80211_mgd_work *wk, *found = NULL;
2426 int i, err;
2427
2428 mutex_lock(&ifmgd->mtx);
2429
2430 list_for_each_entry(wk, &ifmgd->work_list, list) {
2431 if (&wk->bss->cbss == req->bss &&
2432 wk->state == IEEE80211_MGD_STATE_IDLE) {
2433 found = wk;
2434 break;
2435 }
2436 }
2437
2438 if (!found) {
2439 err = -ENOLINK;
2440 goto out;
2441 }
2442
2443 list_del(&found->list);
2444
2445 wk = krealloc(found, sizeof(*wk) + req->ie_len, GFP_KERNEL);
2446 if (!wk) {
2447 list_add(&found->list, &ifmgd->work_list);
2448 err = -ENOMEM;
2449 goto out;
2450 }
2451
2452 list_add(&wk->list, &ifmgd->work_list);
2453
2454 ifmgd->flags &= ~IEEE80211_STA_DISABLE_11N;
2455
2456 for (i = 0; i < req->crypto.n_ciphers_pairwise; i++)
2457 if (req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_WEP40 ||
2458 req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_TKIP ||
2459 req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_WEP104)
2460 ifmgd->flags |= IEEE80211_STA_DISABLE_11N;
2461
2462 sdata->local->oper_channel = req->bss->channel;
2463 ieee80211_hw_config(sdata->local, 0);
2464
2465 if (req->ie && req->ie_len) {
2466 memcpy(wk->ie, req->ie, req->ie_len);
2467 wk->ie_len = req->ie_len;
2468 } else
2469 wk->ie_len = 0;
2470
2471 if (req->prev_bssid)
2472 memcpy(wk->prev_bssid, req->prev_bssid, ETH_ALEN);
2473
2474 wk->state = IEEE80211_MGD_STATE_ASSOC;
2475 wk->tries = 0;
Johannes Berg48531842009-07-23 16:50:16 +02002476 wk->timeout = jiffies; /* run right away */
Johannes Berg77fdaa12009-07-07 03:45:17 +02002477
2478 if (req->use_mfp) {
2479 ifmgd->mfp = IEEE80211_MFP_REQUIRED;
2480 ifmgd->flags |= IEEE80211_STA_MFP_ENABLED;
2481 } else {
2482 ifmgd->mfp = IEEE80211_MFP_DISABLED;
2483 ifmgd->flags &= ~IEEE80211_STA_MFP_ENABLED;
2484 }
2485
2486 if (req->crypto.control_port)
2487 ifmgd->flags |= IEEE80211_STA_CONTROL_PORT;
2488 else
2489 ifmgd->flags &= ~IEEE80211_STA_CONTROL_PORT;
2490
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04002491 ieee80211_queue_work(&sdata->local->hw, &sdata->u.mgd.work);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002492
2493 err = 0;
2494
2495 out:
2496 mutex_unlock(&ifmgd->mtx);
2497 return err;
2498}
2499
2500int ieee80211_mgd_deauth(struct ieee80211_sub_if_data *sdata,
Johannes Berg667503d2009-07-07 03:56:11 +02002501 struct cfg80211_deauth_request *req,
2502 void *cookie)
Johannes Berg77fdaa12009-07-07 03:45:17 +02002503{
2504 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2505 struct ieee80211_mgd_work *wk;
2506 const u8 *bssid = NULL;
2507
Johannes Berg77fdaa12009-07-07 03:45:17 +02002508 mutex_lock(&ifmgd->mtx);
2509
2510 if (ifmgd->associated && &ifmgd->associated->cbss == req->bss) {
2511 bssid = req->bss->bssid;
Johannes Berge21546a2009-08-06 20:41:32 +02002512 ieee80211_set_disassoc(sdata, true);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002513 } else list_for_each_entry(wk, &ifmgd->work_list, list) {
2514 if (&wk->bss->cbss == req->bss) {
2515 bssid = req->bss->bssid;
2516 list_del(&wk->list);
2517 kfree(wk);
2518 break;
2519 }
2520 }
2521
Johannes Berg8d8b2612009-07-25 11:58:36 +02002522 /*
2523 * cfg80211 should catch this ... but it's racy since
2524 * we can receive a deauth frame, process it, hand it
2525 * to cfg80211 while that's in a locked section already
2526 * trying to tell us that the user wants to disconnect.
2527 */
2528 if (!bssid) {
Johannes Berg77fdaa12009-07-07 03:45:17 +02002529 mutex_unlock(&ifmgd->mtx);
2530 return -ENOLINK;
2531 }
2532
2533 mutex_unlock(&ifmgd->mtx);
2534
Johannes Berg0ff71612009-09-26 14:45:41 +02002535 printk(KERN_DEBUG "%s: deauthenticating from %pM by local choice (reason=%d)\n",
2536 sdata->dev->name, bssid, req->reason_code);
2537
Johannes Berg77fdaa12009-07-07 03:45:17 +02002538 ieee80211_send_deauth_disassoc(sdata, bssid,
Johannes Berg667503d2009-07-07 03:56:11 +02002539 IEEE80211_STYPE_DEAUTH, req->reason_code,
2540 cookie);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002541
2542 return 0;
2543}
2544
2545int ieee80211_mgd_disassoc(struct ieee80211_sub_if_data *sdata,
Johannes Berg667503d2009-07-07 03:56:11 +02002546 struct cfg80211_disassoc_request *req,
2547 void *cookie)
Johannes Berg77fdaa12009-07-07 03:45:17 +02002548{
2549 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2550
Johannes Berg77fdaa12009-07-07 03:45:17 +02002551 mutex_lock(&ifmgd->mtx);
2552
Johannes Berg8d8b2612009-07-25 11:58:36 +02002553 /*
2554 * cfg80211 should catch this ... but it's racy since
2555 * we can receive a disassoc frame, process it, hand it
2556 * to cfg80211 while that's in a locked section already
2557 * trying to tell us that the user wants to disconnect.
2558 */
2559 if (&ifmgd->associated->cbss != req->bss) {
Johannes Berg77fdaa12009-07-07 03:45:17 +02002560 mutex_unlock(&ifmgd->mtx);
2561 return -ENOLINK;
2562 }
2563
Johannes Berg0ff71612009-09-26 14:45:41 +02002564 printk(KERN_DEBUG "%s: disassociating from %pM by local choice (reason=%d)\n",
2565 sdata->dev->name, req->bss->bssid, req->reason_code);
2566
Johannes Berge21546a2009-08-06 20:41:32 +02002567 ieee80211_set_disassoc(sdata, false);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002568
2569 mutex_unlock(&ifmgd->mtx);
2570
2571 ieee80211_send_deauth_disassoc(sdata, req->bss->bssid,
Johannes Berg667503d2009-07-07 03:56:11 +02002572 IEEE80211_STYPE_DISASSOC, req->reason_code,
2573 cookie);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002574 return 0;
2575}