blob: c9e4091cd2bb915ae7d96718654e1ca3d5bba789 [file] [log] [blame]
Jiri Bencf0706e822007-05-05 11:45:53 -07001/*
2 * BSS client mode implementation
Jouni Malinen5394af42009-01-08 13:31:59 +02003 * Copyright 2003-2008, Jouni Malinen <j@w1.fi>
Jiri Bencf0706e822007-05-05 11:45:53 -07004 * Copyright 2004, Instant802 Networks, Inc.
5 * Copyright 2005, Devicescape Software, Inc.
6 * Copyright 2006-2007 Jiri Benc <jbenc@suse.cz>
7 * Copyright 2007, Michael Wu <flamingice@sourmilk.net>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 */
13
Geert Uytterhoeven5b323ed2007-05-08 18:40:27 -070014#include <linux/delay.h>
Jiri Bencf0706e822007-05-05 11:45:53 -070015#include <linux/if_ether.h>
16#include <linux/skbuff.h>
Jiri Bencf0706e822007-05-05 11:45:53 -070017#include <linux/if_arp.h>
Jiri Bencf0706e822007-05-05 11:45:53 -070018#include <linux/etherdevice.h>
Johannes Bergd0709a62008-02-25 16:27:46 +010019#include <linux/rtnetlink.h>
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 Bencf0706e822007-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 Bencf0706e822007-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 Bencf0706e822007-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
Johannes Bergb291ba12009-07-10 15:29:03 +020034
35/*
36 * beacon loss detection timeout
37 * XXX: should depend on beacon interval
38 */
39#define IEEE80211_BEACON_LOSS_TIME (2 * HZ)
40/*
41 * Time the connection can be idle before we probe
42 * it to see if we can still talk to the AP.
43 */
44#define IEEE80211_CONNECTION_IDLE_TIME (2 * HZ)
45/*
46 * Time we wait for a probe response after sending
47 * a probe request because of beacon loss or for
48 * checking the connection still works.
49 */
50#define IEEE80211_PROBE_WAIT (HZ / 5)
Jiri Bencf0706e822007-05-05 11:45:53 -070051
Johannes Berg5bb644a2009-05-17 11:40:42 +020052#define TMR_RUNNING_TIMER 0
53#define TMR_RUNNING_CHANSW 1
54
Johannes Berg77fdaa12009-07-07 03:45:17 +020055/*
56 * All cfg80211 functions have to be called outside a locked
57 * section so that they can acquire a lock themselves... This
58 * is much simpler than queuing up things in cfg80211, but we
59 * do need some indirection for that here.
60 */
61enum rx_mgmt_action {
62 /* no action required */
63 RX_MGMT_NONE,
64
65 /* caller must call cfg80211_send_rx_auth() */
66 RX_MGMT_CFG80211_AUTH,
67
68 /* caller must call cfg80211_send_rx_assoc() */
69 RX_MGMT_CFG80211_ASSOC,
70
71 /* caller must call cfg80211_send_deauth() */
72 RX_MGMT_CFG80211_DEAUTH,
73
74 /* caller must call cfg80211_send_disassoc() */
75 RX_MGMT_CFG80211_DISASSOC,
76
77 /* caller must call cfg80211_auth_timeout() & free work */
78 RX_MGMT_CFG80211_AUTH_TO,
79
80 /* caller must call cfg80211_assoc_timeout() & free work */
81 RX_MGMT_CFG80211_ASSOC_TO,
82};
83
Johannes Berg5484e232008-09-08 17:44:27 +020084/* utils */
Johannes Berg77fdaa12009-07-07 03:45:17 +020085static inline void ASSERT_MGD_MTX(struct ieee80211_if_managed *ifmgd)
86{
87 WARN_ON(!mutex_is_locked(&ifmgd->mtx));
88}
89
Johannes Bergca386f32009-07-10 02:39:48 +020090/*
91 * We can have multiple work items (and connection probing)
92 * scheduling this timer, but we need to take care to only
93 * reschedule it when it should fire _earlier_ than it was
94 * asked for before, or if it's not pending right now. This
95 * function ensures that. Note that it then is required to
96 * run this function for all timeouts after the first one
97 * has happened -- the work that runs from this timer will
98 * do that.
99 */
100static void run_again(struct ieee80211_if_managed *ifmgd,
101 unsigned long timeout)
102{
103 ASSERT_MGD_MTX(ifmgd);
104
105 if (!timer_pending(&ifmgd->timer) ||
106 time_before(timeout, ifmgd->timer.expires))
107 mod_timer(&ifmgd->timer, timeout);
108}
109
Johannes Bergb291ba12009-07-10 15:29:03 +0200110static void mod_beacon_timer(struct ieee80211_sub_if_data *sdata)
111{
112 if (sdata->local->hw.flags & IEEE80211_HW_BEACON_FILTER)
113 return;
114
115 mod_timer(&sdata->u.mgd.bcn_mon_timer,
116 round_jiffies_up(jiffies + IEEE80211_BEACON_LOSS_TIME));
117}
118
Johannes Berg5484e232008-09-08 17:44:27 +0200119static int ecw2cw(int ecw)
Johannes Berg60f8b392008-09-08 17:44:22 +0200120{
Johannes Berg5484e232008-09-08 17:44:27 +0200121 return (1 << ecw) - 1;
Johannes Berg60f8b392008-09-08 17:44:22 +0200122}
123
Johannes Bergc2b13452008-09-11 00:01:55 +0200124static int ieee80211_compatible_rates(struct ieee80211_bss *bss,
Johannes Berg9ac19a92008-09-09 10:57:09 +0200125 struct ieee80211_supported_band *sband,
Johannes Berg881d9482009-01-21 15:13:48 +0100126 u32 *rates)
Johannes Berg9ac19a92008-09-09 10:57:09 +0200127{
128 int i, j, count;
129 *rates = 0;
130 count = 0;
131 for (i = 0; i < bss->supp_rates_len; i++) {
132 int rate = (bss->supp_rates[i] & 0x7F) * 5;
133
134 for (j = 0; j < sband->n_bitrates; j++)
135 if (sband->bitrates[j].bitrate == rate) {
136 *rates |= BIT(j);
137 count++;
138 break;
139 }
140 }
141
142 return count;
143}
144
Johannes Bergd5522e02009-03-30 13:23:35 +0200145/*
146 * ieee80211_enable_ht should be called only after the operating band
147 * has been determined as ht configuration depends on the hw's
148 * HT abilities for a specific band.
149 */
150static u32 ieee80211_enable_ht(struct ieee80211_sub_if_data *sdata,
151 struct ieee80211_ht_info *hti,
Johannes Berg77fdaa12009-07-07 03:45:17 +0200152 const u8 *bssid, u16 ap_ht_cap_flags)
Johannes Bergd5522e02009-03-30 13:23:35 +0200153{
154 struct ieee80211_local *local = sdata->local;
155 struct ieee80211_supported_band *sband;
Johannes Bergd5522e02009-03-30 13:23:35 +0200156 struct sta_info *sta;
157 u32 changed = 0;
Johannes Berg9ed6bcc2009-05-08 20:47:39 +0200158 u16 ht_opmode;
Johannes Bergd5522e02009-03-30 13:23:35 +0200159 bool enable_ht = true, ht_changed;
160 enum nl80211_channel_type channel_type = NL80211_CHAN_NO_HT;
161
162 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
163
Johannes Bergd5522e02009-03-30 13:23:35 +0200164 /* HT is not supported */
165 if (!sband->ht_cap.ht_supported)
166 enable_ht = false;
167
168 /* check that channel matches the right operating channel */
169 if (local->hw.conf.channel->center_freq !=
170 ieee80211_channel_to_frequency(hti->control_chan))
171 enable_ht = false;
172
173 if (enable_ht) {
174 channel_type = NL80211_CHAN_HT20;
175
176 if (!(ap_ht_cap_flags & IEEE80211_HT_CAP_40MHZ_INTOLERANT) &&
177 (sband->ht_cap.cap & IEEE80211_HT_CAP_SUP_WIDTH_20_40) &&
178 (hti->ht_param & IEEE80211_HT_PARAM_CHAN_WIDTH_ANY)) {
179 switch(hti->ht_param & IEEE80211_HT_PARAM_CHA_SEC_OFFSET) {
180 case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
Luis R. Rodriguez768777e2009-05-02 00:37:19 -0400181 if (!(local->hw.conf.channel->flags &
182 IEEE80211_CHAN_NO_HT40PLUS))
183 channel_type = NL80211_CHAN_HT40PLUS;
Johannes Bergd5522e02009-03-30 13:23:35 +0200184 break;
185 case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
Luis R. Rodriguez768777e2009-05-02 00:37:19 -0400186 if (!(local->hw.conf.channel->flags &
187 IEEE80211_CHAN_NO_HT40MINUS))
188 channel_type = NL80211_CHAN_HT40MINUS;
Johannes Bergd5522e02009-03-30 13:23:35 +0200189 break;
190 }
191 }
192 }
193
194 ht_changed = conf_is_ht(&local->hw.conf) != enable_ht ||
195 channel_type != local->hw.conf.channel_type;
196
197 local->oper_channel_type = channel_type;
198
199 if (ht_changed) {
200 /* channel_type change automatically detected */
201 ieee80211_hw_config(local, 0);
202
203 rcu_read_lock();
Johannes Berg77fdaa12009-07-07 03:45:17 +0200204 sta = sta_info_get(local, bssid);
Johannes Bergd5522e02009-03-30 13:23:35 +0200205 if (sta)
206 rate_control_rate_update(local, sband, sta,
207 IEEE80211_RC_HT_CHANGED);
Johannes Bergd5522e02009-03-30 13:23:35 +0200208 rcu_read_unlock();
Johannes Bergd5522e02009-03-30 13:23:35 +0200209 }
210
211 /* disable HT */
212 if (!enable_ht)
213 return 0;
214
Johannes Berg9ed6bcc2009-05-08 20:47:39 +0200215 ht_opmode = le16_to_cpu(hti->operation_mode);
Johannes Bergd5522e02009-03-30 13:23:35 +0200216
217 /* if bss configuration changed store the new one */
Johannes Berg413ad502009-05-08 21:21:06 +0200218 if (!sdata->ht_opmode_valid ||
219 sdata->vif.bss_conf.ht_operation_mode != ht_opmode) {
Johannes Bergd5522e02009-03-30 13:23:35 +0200220 changed |= BSS_CHANGED_HT;
Johannes Berg9ed6bcc2009-05-08 20:47:39 +0200221 sdata->vif.bss_conf.ht_operation_mode = ht_opmode;
Johannes Berg413ad502009-05-08 21:21:06 +0200222 sdata->ht_opmode_valid = true;
Johannes Bergd5522e02009-03-30 13:23:35 +0200223 }
224
225 return changed;
226}
227
Johannes Berg9c6bd792008-09-11 00:01:52 +0200228/* frame sending functions */
229
Johannes Berg77fdaa12009-07-07 03:45:17 +0200230static void ieee80211_send_assoc(struct ieee80211_sub_if_data *sdata,
231 struct ieee80211_mgd_work *wk)
Johannes Berg60f8b392008-09-08 17:44:22 +0200232{
Johannes Berg46900292009-02-15 12:44:28 +0100233 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg9ac19a92008-09-09 10:57:09 +0200234 struct ieee80211_local *local = sdata->local;
235 struct sk_buff *skb;
236 struct ieee80211_mgmt *mgmt;
Johannes Berg517357c2009-07-02 17:18:40 +0200237 u8 *pos;
238 const u8 *ies, *ht_ie;
Johannes Berg9ac19a92008-09-09 10:57:09 +0200239 int i, len, count, rates_len, supp_rates_len;
240 u16 capab;
Johannes Berg9ac19a92008-09-09 10:57:09 +0200241 int wmm = 0;
242 struct ieee80211_supported_band *sband;
Johannes Berg881d9482009-01-21 15:13:48 +0100243 u32 rates = 0;
Johannes Berg9ac19a92008-09-09 10:57:09 +0200244
245 skb = dev_alloc_skb(local->hw.extra_tx_headroom +
Johannes Berg77fdaa12009-07-07 03:45:17 +0200246 sizeof(*mgmt) + 200 + wk->ie_len +
247 wk->ssid_len);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200248 if (!skb) {
249 printk(KERN_DEBUG "%s: failed to allocate buffer for assoc "
250 "frame\n", sdata->dev->name);
251 return;
252 }
253 skb_reserve(skb, local->hw.extra_tx_headroom);
254
255 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
256
Johannes Berg46900292009-02-15 12:44:28 +0100257 capab = ifmgd->capab;
Johannes Berg9ac19a92008-09-09 10:57:09 +0200258
259 if (local->hw.conf.channel->band == IEEE80211_BAND_2GHZ) {
260 if (!(local->hw.flags & IEEE80211_HW_2GHZ_SHORT_SLOT_INCAPABLE))
261 capab |= WLAN_CAPABILITY_SHORT_SLOT_TIME;
262 if (!(local->hw.flags & IEEE80211_HW_2GHZ_SHORT_PREAMBLE_INCAPABLE))
263 capab |= WLAN_CAPABILITY_SHORT_PREAMBLE;
264 }
265
Johannes Berg77fdaa12009-07-07 03:45:17 +0200266 if (wk->bss->cbss.capability & WLAN_CAPABILITY_PRIVACY)
267 capab |= WLAN_CAPABILITY_PRIVACY;
268 if (wk->bss->wmm_used)
269 wmm = 1;
Johannes Berg9ac19a92008-09-09 10:57:09 +0200270
Johannes Berg77fdaa12009-07-07 03:45:17 +0200271 /* get all rates supported by the device and the AP as
272 * some APs don't like getting a superset of their rates
273 * in the association request (e.g. D-Link DAP 1353 in
274 * b-only mode) */
275 rates_len = ieee80211_compatible_rates(wk->bss, sband, &rates);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200276
Johannes Berg77fdaa12009-07-07 03:45:17 +0200277 if ((wk->bss->cbss.capability & WLAN_CAPABILITY_SPECTRUM_MGMT) &&
278 (local->hw.flags & IEEE80211_HW_SPECTRUM_MGMT))
279 capab |= WLAN_CAPABILITY_SPECTRUM_MGMT;
Johannes Berg9ac19a92008-09-09 10:57:09 +0200280
281 mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24);
282 memset(mgmt, 0, 24);
Johannes Berg77fdaa12009-07-07 03:45:17 +0200283 memcpy(mgmt->da, wk->bss->cbss.bssid, ETH_ALEN);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200284 memcpy(mgmt->sa, sdata->dev->dev_addr, ETH_ALEN);
Johannes Berg77fdaa12009-07-07 03:45:17 +0200285 memcpy(mgmt->bssid, wk->bss->cbss.bssid, ETH_ALEN);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200286
Johannes Berg77fdaa12009-07-07 03:45:17 +0200287 if (!is_zero_ether_addr(wk->prev_bssid)) {
Johannes Berg9ac19a92008-09-09 10:57:09 +0200288 skb_put(skb, 10);
289 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
290 IEEE80211_STYPE_REASSOC_REQ);
291 mgmt->u.reassoc_req.capab_info = cpu_to_le16(capab);
292 mgmt->u.reassoc_req.listen_interval =
293 cpu_to_le16(local->hw.conf.listen_interval);
Johannes Berg77fdaa12009-07-07 03:45:17 +0200294 memcpy(mgmt->u.reassoc_req.current_ap, wk->prev_bssid,
Johannes Berg9ac19a92008-09-09 10:57:09 +0200295 ETH_ALEN);
296 } else {
297 skb_put(skb, 4);
298 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
299 IEEE80211_STYPE_ASSOC_REQ);
300 mgmt->u.assoc_req.capab_info = cpu_to_le16(capab);
Rami Rosen13554122008-12-16 22:38:29 +0200301 mgmt->u.assoc_req.listen_interval =
Johannes Berg9ac19a92008-09-09 10:57:09 +0200302 cpu_to_le16(local->hw.conf.listen_interval);
303 }
304
305 /* SSID */
Johannes Berg77fdaa12009-07-07 03:45:17 +0200306 ies = pos = skb_put(skb, 2 + wk->ssid_len);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200307 *pos++ = WLAN_EID_SSID;
Johannes Berg77fdaa12009-07-07 03:45:17 +0200308 *pos++ = wk->ssid_len;
309 memcpy(pos, wk->ssid, wk->ssid_len);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200310
311 /* add all rates which were marked to be used above */
312 supp_rates_len = rates_len;
313 if (supp_rates_len > 8)
314 supp_rates_len = 8;
315
316 len = sband->n_bitrates;
317 pos = skb_put(skb, supp_rates_len + 2);
318 *pos++ = WLAN_EID_SUPP_RATES;
319 *pos++ = supp_rates_len;
320
321 count = 0;
322 for (i = 0; i < sband->n_bitrates; i++) {
323 if (BIT(i) & rates) {
324 int rate = sband->bitrates[i].bitrate;
325 *pos++ = (u8) (rate / 5);
326 if (++count == 8)
327 break;
328 }
329 }
330
331 if (rates_len > count) {
332 pos = skb_put(skb, rates_len - count + 2);
333 *pos++ = WLAN_EID_EXT_SUPP_RATES;
334 *pos++ = rates_len - count;
335
336 for (i++; i < sband->n_bitrates; i++) {
337 if (BIT(i) & rates) {
338 int rate = sband->bitrates[i].bitrate;
339 *pos++ = (u8) (rate / 5);
340 }
341 }
342 }
343
344 if (capab & WLAN_CAPABILITY_SPECTRUM_MGMT) {
345 /* 1. power capabilities */
346 pos = skb_put(skb, 4);
347 *pos++ = WLAN_EID_PWR_CAPABILITY;
348 *pos++ = 2;
349 *pos++ = 0; /* min tx power */
350 *pos++ = local->hw.conf.channel->max_power; /* max tx power */
351
352 /* 2. supported channels */
353 /* TODO: get this in reg domain format */
354 pos = skb_put(skb, 2 * sband->n_channels + 2);
355 *pos++ = WLAN_EID_SUPPORTED_CHANNELS;
356 *pos++ = 2 * sband->n_channels;
357 for (i = 0; i < sband->n_channels; i++) {
358 *pos++ = ieee80211_frequency_to_channel(
359 sband->channels[i].center_freq);
360 *pos++ = 1; /* one channel in the subband*/
361 }
362 }
363
Johannes Berg77fdaa12009-07-07 03:45:17 +0200364 if (wk->ie_len && wk->ie) {
365 pos = skb_put(skb, wk->ie_len);
366 memcpy(pos, wk->ie, wk->ie_len);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200367 }
368
Johannes Berg46900292009-02-15 12:44:28 +0100369 if (wmm && (ifmgd->flags & IEEE80211_STA_WMM_ENABLED)) {
Johannes Berg9ac19a92008-09-09 10:57:09 +0200370 pos = skb_put(skb, 9);
371 *pos++ = WLAN_EID_VENDOR_SPECIFIC;
372 *pos++ = 7; /* len */
373 *pos++ = 0x00; /* Microsoft OUI 00:50:F2 */
374 *pos++ = 0x50;
375 *pos++ = 0xf2;
376 *pos++ = 2; /* WME */
377 *pos++ = 0; /* WME info */
378 *pos++ = 1; /* WME ver */
379 *pos++ = 0;
380 }
381
382 /* wmm support is a must to HT */
Vasanthakumar Thiagarajaneb469362008-12-23 21:30:50 +0530383 /*
384 * IEEE802.11n does not allow TKIP/WEP as pairwise
385 * ciphers in HT mode. We still associate in non-ht
386 * mode (11a/b/g) if any one of these ciphers is
387 * configured as pairwise.
388 */
Johannes Berg46900292009-02-15 12:44:28 +0100389 if (wmm && (ifmgd->flags & IEEE80211_STA_WMM_ENABLED) &&
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200390 sband->ht_cap.ht_supported &&
Johannes Berg77fdaa12009-07-07 03:45:17 +0200391 (ht_ie = ieee80211_bss_get_ie(&wk->bss->cbss, WLAN_EID_HT_INFORMATION)) &&
Vasanthakumar Thiagarajaneb469362008-12-23 21:30:50 +0530392 ht_ie[1] >= sizeof(struct ieee80211_ht_info) &&
Johannes Bergab1faea2009-07-01 21:41:17 +0200393 (!(ifmgd->flags & IEEE80211_STA_DISABLE_11N))) {
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200394 struct ieee80211_ht_info *ht_info =
395 (struct ieee80211_ht_info *)(ht_ie + 2);
396 u16 cap = sband->ht_cap.cap;
Johannes Berg9ac19a92008-09-09 10:57:09 +0200397 __le16 tmp;
398 u32 flags = local->hw.conf.channel->flags;
399
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200400 switch (ht_info->ht_param & IEEE80211_HT_PARAM_CHA_SEC_OFFSET) {
401 case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
Luis R. Rodriguez689da1b2009-05-02 00:37:18 -0400402 if (flags & IEEE80211_CHAN_NO_HT40PLUS) {
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200403 cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
Johannes Berg9ac19a92008-09-09 10:57:09 +0200404 cap &= ~IEEE80211_HT_CAP_SGI_40;
405 }
406 break;
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200407 case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
Luis R. Rodriguez689da1b2009-05-02 00:37:18 -0400408 if (flags & IEEE80211_CHAN_NO_HT40MINUS) {
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200409 cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
Johannes Berg9ac19a92008-09-09 10:57:09 +0200410 cap &= ~IEEE80211_HT_CAP_SGI_40;
411 }
412 break;
413 }
414
415 tmp = cpu_to_le16(cap);
416 pos = skb_put(skb, sizeof(struct ieee80211_ht_cap)+2);
417 *pos++ = WLAN_EID_HT_CAPABILITY;
418 *pos++ = sizeof(struct ieee80211_ht_cap);
419 memset(pos, 0, sizeof(struct ieee80211_ht_cap));
420 memcpy(pos, &tmp, sizeof(u16));
421 pos += sizeof(u16);
422 /* TODO: needs a define here for << 2 */
Johannes Bergd9fe60d2008-10-09 12:13:49 +0200423 *pos++ = sband->ht_cap.ampdu_factor |
424 (sband->ht_cap.ampdu_density << 2);
425 memcpy(pos, &sband->ht_cap.mcs, sizeof(sband->ht_cap.mcs));
Johannes Berg9ac19a92008-09-09 10:57:09 +0200426 }
427
Johannes Berge50db652008-09-09 15:07:09 +0200428 ieee80211_tx_skb(sdata, skb, 0);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200429}
430
431
Johannes Bergef422bc2008-09-09 10:58:25 +0200432static void ieee80211_send_deauth_disassoc(struct ieee80211_sub_if_data *sdata,
Johannes Berg667503d2009-07-07 03:56:11 +0200433 const u8 *bssid, u16 stype, u16 reason,
434 void *cookie)
Johannes Berg9ac19a92008-09-09 10:57:09 +0200435{
436 struct ieee80211_local *local = sdata->local;
Johannes Berg46900292009-02-15 12:44:28 +0100437 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg9ac19a92008-09-09 10:57:09 +0200438 struct sk_buff *skb;
439 struct ieee80211_mgmt *mgmt;
440
Jouni Malinen65fc73a2009-03-20 21:21:16 +0200441 skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*mgmt));
Johannes Berg9ac19a92008-09-09 10:57:09 +0200442 if (!skb) {
Johannes Bergef422bc2008-09-09 10:58:25 +0200443 printk(KERN_DEBUG "%s: failed to allocate buffer for "
444 "deauth/disassoc frame\n", sdata->dev->name);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200445 return;
446 }
447 skb_reserve(skb, local->hw.extra_tx_headroom);
448
449 mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24);
450 memset(mgmt, 0, 24);
Johannes Berg77fdaa12009-07-07 03:45:17 +0200451 memcpy(mgmt->da, bssid, ETH_ALEN);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200452 memcpy(mgmt->sa, sdata->dev->dev_addr, ETH_ALEN);
Johannes Berg77fdaa12009-07-07 03:45:17 +0200453 memcpy(mgmt->bssid, bssid, ETH_ALEN);
Johannes Bergef422bc2008-09-09 10:58:25 +0200454 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT | stype);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200455 skb_put(skb, 2);
Johannes Bergef422bc2008-09-09 10:58:25 +0200456 /* u.deauth.reason_code == u.disassoc.reason_code */
Johannes Berg9ac19a92008-09-09 10:57:09 +0200457 mgmt->u.deauth.reason_code = cpu_to_le16(reason);
458
Jouni Malinen53b46b82009-03-27 20:53:56 +0200459 if (stype == IEEE80211_STYPE_DEAUTH)
Johannes Berg667503d2009-07-07 03:56:11 +0200460 cfg80211_send_deauth(sdata->dev, (u8 *)mgmt, skb->len, cookie);
Jouni Malinen53b46b82009-03-27 20:53:56 +0200461 else
Johannes Berg667503d2009-07-07 03:56:11 +0200462 cfg80211_send_disassoc(sdata->dev, (u8 *)mgmt, skb->len, cookie);
Johannes Berg46900292009-02-15 12:44:28 +0100463 ieee80211_tx_skb(sdata, skb, ifmgd->flags & IEEE80211_STA_MFP_ENABLED);
Johannes Berg9ac19a92008-09-09 10:57:09 +0200464}
465
Kalle Valo572e0012009-02-10 17:09:31 +0200466void ieee80211_send_pspoll(struct ieee80211_local *local,
467 struct ieee80211_sub_if_data *sdata)
468{
Johannes Berg46900292009-02-15 12:44:28 +0100469 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Kalle Valo572e0012009-02-10 17:09:31 +0200470 struct ieee80211_pspoll *pspoll;
471 struct sk_buff *skb;
472 u16 fc;
473
474 skb = dev_alloc_skb(local->hw.extra_tx_headroom + sizeof(*pspoll));
475 if (!skb) {
476 printk(KERN_DEBUG "%s: failed to allocate buffer for "
477 "pspoll frame\n", sdata->dev->name);
478 return;
479 }
480 skb_reserve(skb, local->hw.extra_tx_headroom);
481
482 pspoll = (struct ieee80211_pspoll *) skb_put(skb, sizeof(*pspoll));
483 memset(pspoll, 0, sizeof(*pspoll));
484 fc = IEEE80211_FTYPE_CTL | IEEE80211_STYPE_PSPOLL | IEEE80211_FCTL_PM;
485 pspoll->frame_control = cpu_to_le16(fc);
Johannes Berg46900292009-02-15 12:44:28 +0100486 pspoll->aid = cpu_to_le16(ifmgd->aid);
Kalle Valo572e0012009-02-10 17:09:31 +0200487
488 /* aid in PS-Poll has its two MSBs each set to 1 */
489 pspoll->aid |= cpu_to_le16(1 << 15 | 1 << 14);
490
Johannes Berg46900292009-02-15 12:44:28 +0100491 memcpy(pspoll->bssid, ifmgd->bssid, ETH_ALEN);
Kalle Valo572e0012009-02-10 17:09:31 +0200492 memcpy(pspoll->ta, sdata->dev->dev_addr, ETH_ALEN);
493
494 ieee80211_tx_skb(sdata, skb, 0);
Kalle Valo572e0012009-02-10 17:09:31 +0200495}
496
Johannes Berg965beda2009-04-16 13:17:24 +0200497void ieee80211_send_nullfunc(struct ieee80211_local *local,
498 struct ieee80211_sub_if_data *sdata,
499 int powersave)
500{
501 struct sk_buff *skb;
502 struct ieee80211_hdr *nullfunc;
503 __le16 fc;
504
505 if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION))
506 return;
507
508 skb = dev_alloc_skb(local->hw.extra_tx_headroom + 24);
509 if (!skb) {
510 printk(KERN_DEBUG "%s: failed to allocate buffer for nullfunc "
511 "frame\n", sdata->dev->name);
512 return;
513 }
514 skb_reserve(skb, local->hw.extra_tx_headroom);
515
516 nullfunc = (struct ieee80211_hdr *) skb_put(skb, 24);
517 memset(nullfunc, 0, 24);
518 fc = cpu_to_le16(IEEE80211_FTYPE_DATA | IEEE80211_STYPE_NULLFUNC |
519 IEEE80211_FCTL_TODS);
520 if (powersave)
521 fc |= cpu_to_le16(IEEE80211_FCTL_PM);
522 nullfunc->frame_control = fc;
523 memcpy(nullfunc->addr1, sdata->u.mgd.bssid, ETH_ALEN);
524 memcpy(nullfunc->addr2, sdata->dev->dev_addr, ETH_ALEN);
525 memcpy(nullfunc->addr3, sdata->u.mgd.bssid, ETH_ALEN);
526
527 ieee80211_tx_skb(sdata, skb, 0);
528}
529
Johannes Bergcc32abd2009-05-15 11:52:31 +0200530/* spectrum management related things */
531static void ieee80211_chswitch_work(struct work_struct *work)
532{
533 struct ieee80211_sub_if_data *sdata =
534 container_of(work, struct ieee80211_sub_if_data, u.mgd.chswitch_work);
Johannes Bergcc32abd2009-05-15 11:52:31 +0200535 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
536
537 if (!netif_running(sdata->dev))
538 return;
539
Johannes Berg77fdaa12009-07-07 03:45:17 +0200540 mutex_lock(&ifmgd->mtx);
541 if (!ifmgd->associated)
542 goto out;
Johannes Bergcc32abd2009-05-15 11:52:31 +0200543
544 sdata->local->oper_channel = sdata->local->csa_channel;
Johannes Berg77fdaa12009-07-07 03:45:17 +0200545 ieee80211_hw_config(sdata->local, IEEE80211_CONF_CHANGE_CHANNEL);
Johannes Bergcc32abd2009-05-15 11:52:31 +0200546
Johannes Berg77fdaa12009-07-07 03:45:17 +0200547 /* XXX: shouldn't really modify cfg80211-owned data! */
548 ifmgd->associated->cbss.channel = sdata->local->oper_channel;
549
Johannes Bergcc32abd2009-05-15 11:52:31 +0200550 ieee80211_wake_queues_by_reason(&sdata->local->hw,
551 IEEE80211_QUEUE_STOP_REASON_CSA);
Johannes Berg77fdaa12009-07-07 03:45:17 +0200552 out:
553 ifmgd->flags &= ~IEEE80211_STA_CSA_RECEIVED;
554 mutex_unlock(&ifmgd->mtx);
Johannes Bergcc32abd2009-05-15 11:52:31 +0200555}
556
557static void ieee80211_chswitch_timer(unsigned long data)
558{
559 struct ieee80211_sub_if_data *sdata =
560 (struct ieee80211_sub_if_data *) data;
561 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
562
Johannes Berg5bb644a2009-05-17 11:40:42 +0200563 if (sdata->local->quiescing) {
564 set_bit(TMR_RUNNING_CHANSW, &ifmgd->timers_running);
565 return;
566 }
567
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -0400568 ieee80211_queue_work(&sdata->local->hw, &ifmgd->chswitch_work);
Johannes Bergcc32abd2009-05-15 11:52:31 +0200569}
570
571void ieee80211_sta_process_chanswitch(struct ieee80211_sub_if_data *sdata,
572 struct ieee80211_channel_sw_ie *sw_elem,
573 struct ieee80211_bss *bss)
574{
575 struct ieee80211_channel *new_ch;
576 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
577 int new_freq = ieee80211_channel_to_frequency(sw_elem->new_ch_num);
578
Johannes Berg77fdaa12009-07-07 03:45:17 +0200579 ASSERT_MGD_MTX(ifmgd);
580
581 if (!ifmgd->associated)
Johannes Bergcc32abd2009-05-15 11:52:31 +0200582 return;
583
Helmut Schaafbe9c422009-07-23 12:14:04 +0200584 if (sdata->local->scanning)
Johannes Bergcc32abd2009-05-15 11:52:31 +0200585 return;
586
587 /* Disregard subsequent beacons if we are already running a timer
588 processing a CSA */
589
590 if (ifmgd->flags & IEEE80211_STA_CSA_RECEIVED)
591 return;
592
593 new_ch = ieee80211_get_channel(sdata->local->hw.wiphy, new_freq);
594 if (!new_ch || new_ch->flags & IEEE80211_CHAN_DISABLED)
595 return;
596
597 sdata->local->csa_channel = new_ch;
598
599 if (sw_elem->count <= 1) {
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -0400600 ieee80211_queue_work(&sdata->local->hw, &ifmgd->chswitch_work);
Johannes Bergcc32abd2009-05-15 11:52:31 +0200601 } else {
602 ieee80211_stop_queues_by_reason(&sdata->local->hw,
603 IEEE80211_QUEUE_STOP_REASON_CSA);
604 ifmgd->flags |= IEEE80211_STA_CSA_RECEIVED;
605 mod_timer(&ifmgd->chswitch_timer,
606 jiffies +
607 msecs_to_jiffies(sw_elem->count *
608 bss->cbss.beacon_interval));
609 }
610}
611
612static void ieee80211_handle_pwr_constr(struct ieee80211_sub_if_data *sdata,
613 u16 capab_info, u8 *pwr_constr_elem,
614 u8 pwr_constr_elem_len)
615{
616 struct ieee80211_conf *conf = &sdata->local->hw.conf;
617
618 if (!(capab_info & WLAN_CAPABILITY_SPECTRUM_MGMT))
619 return;
620
621 /* Power constraint IE length should be 1 octet */
622 if (pwr_constr_elem_len != 1)
623 return;
624
625 if ((*pwr_constr_elem <= conf->channel->max_power) &&
626 (*pwr_constr_elem != sdata->local->power_constr_level)) {
627 sdata->local->power_constr_level = *pwr_constr_elem;
628 ieee80211_hw_config(sdata->local, 0);
629 }
630}
631
Johannes Berg965beda2009-04-16 13:17:24 +0200632/* powersave */
633static void ieee80211_enable_ps(struct ieee80211_local *local,
634 struct ieee80211_sub_if_data *sdata)
635{
636 struct ieee80211_conf *conf = &local->hw.conf;
637
Johannes Bergd5edaed2009-04-22 23:02:51 +0200638 /*
639 * If we are scanning right now then the parameters will
640 * take effect when scan finishes.
641 */
Helmut Schaafbe9c422009-07-23 12:14:04 +0200642 if (local->scanning)
Johannes Bergd5edaed2009-04-22 23:02:51 +0200643 return;
644
Johannes Berg965beda2009-04-16 13:17:24 +0200645 if (conf->dynamic_ps_timeout > 0 &&
646 !(local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS)) {
647 mod_timer(&local->dynamic_ps_timer, jiffies +
648 msecs_to_jiffies(conf->dynamic_ps_timeout));
649 } else {
650 if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)
651 ieee80211_send_nullfunc(local, sdata, 1);
652 conf->flags |= IEEE80211_CONF_PS;
653 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
654 }
655}
656
657static void ieee80211_change_ps(struct ieee80211_local *local)
658{
659 struct ieee80211_conf *conf = &local->hw.conf;
660
661 if (local->ps_sdata) {
Johannes Berg965beda2009-04-16 13:17:24 +0200662 ieee80211_enable_ps(local, local->ps_sdata);
663 } else if (conf->flags & IEEE80211_CONF_PS) {
664 conf->flags &= ~IEEE80211_CONF_PS;
665 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
666 del_timer_sync(&local->dynamic_ps_timer);
667 cancel_work_sync(&local->dynamic_ps_enable_work);
668 }
669}
670
671/* need to hold RTNL or interface lock */
Johannes Berg10f644a2009-04-16 13:17:25 +0200672void ieee80211_recalc_ps(struct ieee80211_local *local, s32 latency)
Johannes Berg965beda2009-04-16 13:17:24 +0200673{
674 struct ieee80211_sub_if_data *sdata, *found = NULL;
675 int count = 0;
676
677 if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_PS)) {
678 local->ps_sdata = NULL;
679 return;
680 }
681
682 list_for_each_entry(sdata, &local->interfaces, list) {
683 if (!netif_running(sdata->dev))
684 continue;
685 if (sdata->vif.type != NL80211_IFTYPE_STATION)
686 continue;
687 found = sdata;
688 count++;
689 }
690
Luis R. Rodriguez43f78532009-06-10 15:16:15 +0200691 if (count == 1 && found->u.mgd.powersave &&
Johannes Berg77fdaa12009-07-07 03:45:17 +0200692 found->u.mgd.associated && list_empty(&found->u.mgd.work_list) &&
Johannes Bergb291ba12009-07-10 15:29:03 +0200693 !(found->u.mgd.flags & (IEEE80211_STA_BEACON_POLL |
694 IEEE80211_STA_CONNECTION_POLL))) {
Johannes Berg10f644a2009-04-16 13:17:25 +0200695 s32 beaconint_us;
696
697 if (latency < 0)
698 latency = pm_qos_requirement(PM_QOS_NETWORK_LATENCY);
699
700 beaconint_us = ieee80211_tu_to_usec(
701 found->vif.bss_conf.beacon_int);
702
Johannes Berg04fe2032009-04-22 18:44:37 +0200703 if (beaconint_us > latency) {
Johannes Berg10f644a2009-04-16 13:17:25 +0200704 local->ps_sdata = NULL;
Johannes Berg04fe2032009-04-22 18:44:37 +0200705 } else {
706 u8 dtimper = found->vif.bss_conf.dtim_period;
707 int maxslp = 1;
708
709 if (dtimper > 1)
710 maxslp = min_t(int, dtimper,
711 latency / beaconint_us);
712
Johannes Berg9ccebe62009-04-23 10:32:36 +0200713 local->hw.conf.max_sleep_period = maxslp;
Johannes Berg10f644a2009-04-16 13:17:25 +0200714 local->ps_sdata = found;
Johannes Berg04fe2032009-04-22 18:44:37 +0200715 }
Johannes Berg10f644a2009-04-16 13:17:25 +0200716 } else {
Johannes Berg965beda2009-04-16 13:17:24 +0200717 local->ps_sdata = NULL;
Johannes Berg10f644a2009-04-16 13:17:25 +0200718 }
Johannes Berg965beda2009-04-16 13:17:24 +0200719
720 ieee80211_change_ps(local);
721}
722
723void ieee80211_dynamic_ps_disable_work(struct work_struct *work)
724{
725 struct ieee80211_local *local =
726 container_of(work, struct ieee80211_local,
727 dynamic_ps_disable_work);
728
729 if (local->hw.conf.flags & IEEE80211_CONF_PS) {
730 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
731 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
732 }
733
734 ieee80211_wake_queues_by_reason(&local->hw,
735 IEEE80211_QUEUE_STOP_REASON_PS);
736}
737
738void ieee80211_dynamic_ps_enable_work(struct work_struct *work)
739{
740 struct ieee80211_local *local =
741 container_of(work, struct ieee80211_local,
742 dynamic_ps_enable_work);
743 struct ieee80211_sub_if_data *sdata = local->ps_sdata;
744
745 /* can only happen when PS was just disabled anyway */
746 if (!sdata)
747 return;
748
749 if (local->hw.conf.flags & IEEE80211_CONF_PS)
750 return;
751
752 if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)
753 ieee80211_send_nullfunc(local, sdata, 1);
754
755 local->hw.conf.flags |= IEEE80211_CONF_PS;
756 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
757}
758
759void ieee80211_dynamic_ps_timer(unsigned long data)
760{
761 struct ieee80211_local *local = (void *) data;
762
Luis R. Rodriguez78f1a8b2009-07-27 08:38:25 -0700763 if (local->quiescing || local->suspended)
Johannes Berg5bb644a2009-05-17 11:40:42 +0200764 return;
765
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -0400766 ieee80211_queue_work(&local->hw, &local->dynamic_ps_enable_work);
Johannes Berg965beda2009-04-16 13:17:24 +0200767}
768
Johannes Berg60f8b392008-09-08 17:44:22 +0200769/* MLME */
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200770static void ieee80211_sta_wmm_params(struct ieee80211_local *local,
Johannes Berg46900292009-02-15 12:44:28 +0100771 struct ieee80211_if_managed *ifmgd,
Jiri Bencf0706e822007-05-05 11:45:53 -0700772 u8 *wmm_param, size_t wmm_param_len)
773{
Jiri Bencf0706e822007-05-05 11:45:53 -0700774 struct ieee80211_tx_queue_params params;
775 size_t left;
776 int count;
777 u8 *pos;
778
Johannes Berg46900292009-02-15 12:44:28 +0100779 if (!(ifmgd->flags & IEEE80211_STA_WMM_ENABLED))
Johannes Berg3434fbd2008-05-03 00:59:37 +0200780 return;
781
782 if (!wmm_param)
783 return;
784
Jiri Bencf0706e822007-05-05 11:45:53 -0700785 if (wmm_param_len < 8 || wmm_param[5] /* version */ != 1)
786 return;
787 count = wmm_param[6] & 0x0f;
Johannes Berg46900292009-02-15 12:44:28 +0100788 if (count == ifmgd->wmm_last_param_set)
Jiri Bencf0706e822007-05-05 11:45:53 -0700789 return;
Johannes Berg46900292009-02-15 12:44:28 +0100790 ifmgd->wmm_last_param_set = count;
Jiri Bencf0706e822007-05-05 11:45:53 -0700791
792 pos = wmm_param + 8;
793 left = wmm_param_len - 8;
794
795 memset(&params, 0, sizeof(params));
796
Jiri Bencf0706e822007-05-05 11:45:53 -0700797 local->wmm_acm = 0;
798 for (; left >= 4; left -= 4, pos += 4) {
799 int aci = (pos[0] >> 5) & 0x03;
800 int acm = (pos[0] >> 4) & 0x01;
801 int queue;
802
803 switch (aci) {
Jouni Malinen0eeb59f2009-03-05 17:23:46 +0200804 case 1: /* AC_BK */
Johannes Berge100bb62008-04-30 18:51:21 +0200805 queue = 3;
Johannes Berg988c0f72008-04-17 19:21:22 +0200806 if (acm)
Jouni Malinen0eeb59f2009-03-05 17:23:46 +0200807 local->wmm_acm |= BIT(1) | BIT(2); /* BK/- */
Jiri Bencf0706e822007-05-05 11:45:53 -0700808 break;
Jouni Malinen0eeb59f2009-03-05 17:23:46 +0200809 case 2: /* AC_VI */
Johannes Berge100bb62008-04-30 18:51:21 +0200810 queue = 1;
Johannes Berg988c0f72008-04-17 19:21:22 +0200811 if (acm)
Jouni Malinen0eeb59f2009-03-05 17:23:46 +0200812 local->wmm_acm |= BIT(4) | BIT(5); /* CL/VI */
Jiri Bencf0706e822007-05-05 11:45:53 -0700813 break;
Jouni Malinen0eeb59f2009-03-05 17:23:46 +0200814 case 3: /* AC_VO */
Johannes Berge100bb62008-04-30 18:51:21 +0200815 queue = 0;
Johannes Berg988c0f72008-04-17 19:21:22 +0200816 if (acm)
Jouni Malinen0eeb59f2009-03-05 17:23:46 +0200817 local->wmm_acm |= BIT(6) | BIT(7); /* VO/NC */
Jiri Bencf0706e822007-05-05 11:45:53 -0700818 break;
Jouni Malinen0eeb59f2009-03-05 17:23:46 +0200819 case 0: /* AC_BE */
Jiri Bencf0706e822007-05-05 11:45:53 -0700820 default:
Johannes Berge100bb62008-04-30 18:51:21 +0200821 queue = 2;
Johannes Berg988c0f72008-04-17 19:21:22 +0200822 if (acm)
Jouni Malinen0eeb59f2009-03-05 17:23:46 +0200823 local->wmm_acm |= BIT(0) | BIT(3); /* BE/EE */
Jiri Bencf0706e822007-05-05 11:45:53 -0700824 break;
825 }
826
827 params.aifs = pos[0] & 0x0f;
828 params.cw_max = ecw2cw((pos[1] & 0xf0) >> 4);
829 params.cw_min = ecw2cw(pos[1] & 0x0f);
Johannes Bergf434b2d2008-07-10 11:22:31 +0200830 params.txop = get_unaligned_le16(pos + 2);
Johannes Bergf4ea83d2008-06-30 15:10:46 +0200831#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Jiri Bencf0706e822007-05-05 11:45:53 -0700832 printk(KERN_DEBUG "%s: WMM queue=%d aci=%d acm=%d aifs=%d "
Johannes Berg3330d7b2008-02-10 16:49:38 +0100833 "cWmin=%d cWmax=%d txop=%d\n",
Johannes Berg0bffe402009-06-09 16:18:32 +0200834 wiphy_name(local->hw.wiphy), queue, aci, acm,
835 params.aifs, params.cw_min, params.cw_max, params.txop);
Johannes Berg3330d7b2008-02-10 16:49:38 +0100836#endif
Johannes Berg24487982009-04-23 18:52:52 +0200837 if (drv_conf_tx(local, queue, &params) && local->ops->conf_tx)
Jiri Bencf0706e822007-05-05 11:45:53 -0700838 printk(KERN_DEBUG "%s: failed to set TX queue "
Johannes Berg0bffe402009-06-09 16:18:32 +0200839 "parameters for queue %d\n",
840 wiphy_name(local->hw.wiphy), queue);
Jiri Bencf0706e822007-05-05 11:45:53 -0700841 }
842}
843
Johannes Berg7a5158e2008-10-08 10:59:33 +0200844static u32 ieee80211_handle_bss_capability(struct ieee80211_sub_if_data *sdata,
845 u16 capab, bool erp_valid, u8 erp)
Daniel Drake56282212007-07-10 19:32:10 +0200846{
Johannes Bergbda39332008-10-11 01:51:51 +0200847 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
Johannes Berg471b3ef2007-12-28 14:32:58 +0100848 u32 changed = 0;
Johannes Berg7a5158e2008-10-08 10:59:33 +0200849 bool use_protection;
850 bool use_short_preamble;
851 bool use_short_slot;
852
853 if (erp_valid) {
854 use_protection = (erp & WLAN_ERP_USE_PROTECTION) != 0;
855 use_short_preamble = (erp & WLAN_ERP_BARKER_PREAMBLE) == 0;
856 } else {
857 use_protection = false;
858 use_short_preamble = !!(capab & WLAN_CAPABILITY_SHORT_PREAMBLE);
859 }
860
861 use_short_slot = !!(capab & WLAN_CAPABILITY_SHORT_SLOT_TIME);
Daniel Drake56282212007-07-10 19:32:10 +0200862
Johannes Berg471b3ef2007-12-28 14:32:58 +0100863 if (use_protection != bss_conf->use_cts_prot) {
Johannes Berg471b3ef2007-12-28 14:32:58 +0100864 bss_conf->use_cts_prot = use_protection;
865 changed |= BSS_CHANGED_ERP_CTS_PROT;
Daniel Drake56282212007-07-10 19:32:10 +0200866 }
Daniel Drake7e9ed182007-07-27 15:43:24 +0200867
Vladimir Koutnyd43c7b32008-03-31 17:05:03 +0200868 if (use_short_preamble != bss_conf->use_short_preamble) {
Vladimir Koutnyd43c7b32008-03-31 17:05:03 +0200869 bss_conf->use_short_preamble = use_short_preamble;
Johannes Berg471b3ef2007-12-28 14:32:58 +0100870 changed |= BSS_CHANGED_ERP_PREAMBLE;
Daniel Drake7e9ed182007-07-27 15:43:24 +0200871 }
Daniel Draked9430a32007-07-27 15:43:24 +0200872
Johannes Berg7a5158e2008-10-08 10:59:33 +0200873 if (use_short_slot != bss_conf->use_short_slot) {
Johannes Berg7a5158e2008-10-08 10:59:33 +0200874 bss_conf->use_short_slot = use_short_slot;
875 changed |= BSS_CHANGED_ERP_SLOT;
John W. Linville50c4afb2008-04-15 14:09:27 -0400876 }
877
878 return changed;
879}
880
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200881static void ieee80211_set_associated(struct ieee80211_sub_if_data *sdata,
Johannes Berg77fdaa12009-07-07 03:45:17 +0200882 struct ieee80211_bss *bss,
Johannes Bergae5eb022008-10-14 16:58:37 +0200883 u32 bss_info_changed)
Jiri Bencf0706e822007-05-05 11:45:53 -0700884{
Johannes Berg471b3ef2007-12-28 14:32:58 +0100885 struct ieee80211_local *local = sdata->local;
Jiri Slabyd6f2da52007-08-28 17:01:54 -0400886
Johannes Bergae5eb022008-10-14 16:58:37 +0200887 bss_info_changed |= BSS_CHANGED_ASSOC;
Johannes Berg77fdaa12009-07-07 03:45:17 +0200888 /* set timing information */
889 sdata->vif.bss_conf.beacon_int = bss->cbss.beacon_interval;
890 sdata->vif.bss_conf.timestamp = bss->cbss.tsf;
891 sdata->vif.bss_conf.dtim_period = bss->dtim_period;
Jiri Slabyd6f2da52007-08-28 17:01:54 -0400892
Johannes Berg77fdaa12009-07-07 03:45:17 +0200893 bss_info_changed |= BSS_CHANGED_BEACON_INT;
894 bss_info_changed |= ieee80211_handle_bss_capability(sdata,
895 bss->cbss.capability, bss->has_erp_value, bss->erp_value);
Tomas Winkler21c0cbe2008-03-28 16:33:34 -0700896
Johannes Berg77fdaa12009-07-07 03:45:17 +0200897 sdata->u.mgd.associated = bss;
898 memcpy(sdata->u.mgd.bssid, bss->cbss.bssid, ETH_ALEN);
Johannes Berg471b3ef2007-12-28 14:32:58 +0100899
Johannes Bergb291ba12009-07-10 15:29:03 +0200900 /* just to be sure */
901 sdata->u.mgd.flags &= ~(IEEE80211_STA_CONNECTION_POLL |
902 IEEE80211_STA_BEACON_POLL);
903
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200904 ieee80211_led_assoc(local, 1);
905
Johannes Bergbda39332008-10-11 01:51:51 +0200906 sdata->vif.bss_conf.assoc = 1;
Johannes Berg96dd22a2008-09-11 00:01:57 +0200907 /*
908 * For now just always ask the driver to update the basic rateset
909 * when we have associated, we aren't checking whether it actually
910 * changed or not.
911 */
Johannes Bergae5eb022008-10-14 16:58:37 +0200912 bss_info_changed |= BSS_CHANGED_BASIC_RATES;
Johannes Berg9cef8732009-05-14 13:10:14 +0200913
914 /* And the BSSID changed - we're associated now */
915 bss_info_changed |= BSS_CHANGED_BSSID;
916
Johannes Bergae5eb022008-10-14 16:58:37 +0200917 ieee80211_bss_info_change_notify(sdata, bss_info_changed);
Guy Cohen8db93692008-07-03 19:56:13 +0300918
Johannes Berg056508d2009-07-30 21:43:55 +0200919 mutex_lock(&local->iflist_mtx);
920 ieee80211_recalc_ps(local, -1);
921 mutex_unlock(&local->iflist_mtx);
Kalle Valoe0cb6862008-12-18 23:35:13 +0200922
Tomas Winkler24e64622008-09-08 17:33:40 +0200923 netif_tx_start_all_queues(sdata->dev);
Tomas Winklerf5e5bf22008-09-08 17:33:39 +0200924 netif_carrier_on(sdata->dev);
Jiri Bencf0706e822007-05-05 11:45:53 -0700925}
926
Johannes Berg77fdaa12009-07-07 03:45:17 +0200927static enum rx_mgmt_action __must_check
928ieee80211_direct_probe(struct ieee80211_sub_if_data *sdata,
929 struct ieee80211_mgd_work *wk)
Ron Rindjunsky9859b812008-08-09 03:02:19 +0300930{
Johannes Berg46900292009-02-15 12:44:28 +0100931 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Helmut Schaa11432372009-03-12 14:04:34 +0100932 struct ieee80211_local *local = sdata->local;
Johannes Berg46900292009-02-15 12:44:28 +0100933
Johannes Berg77fdaa12009-07-07 03:45:17 +0200934 wk->tries++;
935 if (wk->tries > IEEE80211_AUTH_MAX_TRIES) {
Johannes Berg0c68ae262008-10-27 15:56:10 -0700936 printk(KERN_DEBUG "%s: direct probe to AP %pM timed out\n",
Johannes Berg77fdaa12009-07-07 03:45:17 +0200937 sdata->dev->name, wk->bss->cbss.bssid);
Vasanthakumar Thiagarajan7a947082009-02-04 18:28:48 +0530938
939 /*
940 * Most likely AP is not in the range so remove the
Johannes Berg77fdaa12009-07-07 03:45:17 +0200941 * bss struct for that AP.
Vasanthakumar Thiagarajan7a947082009-02-04 18:28:48 +0530942 */
Johannes Berg77fdaa12009-07-07 03:45:17 +0200943 cfg80211_unlink_bss(local->hw.wiphy, &wk->bss->cbss);
Helmut Schaa11432372009-03-12 14:04:34 +0100944
945 /*
946 * We might have a pending scan which had no chance to run yet
Johannes Berg77fdaa12009-07-07 03:45:17 +0200947 * due to work needing to be done. Hence, queue the STAs work
948 * again for that.
Helmut Schaa11432372009-03-12 14:04:34 +0100949 */
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -0400950 ieee80211_queue_work(&local->hw, &ifmgd->work);
Johannes Berg77fdaa12009-07-07 03:45:17 +0200951 return RX_MGMT_CFG80211_AUTH_TO;
Ron Rindjunsky9859b812008-08-09 03:02:19 +0300952 }
953
Johannes Berg77fdaa12009-07-07 03:45:17 +0200954 printk(KERN_DEBUG "%s: direct probe to AP %pM (try %d)\n",
955 sdata->dev->name, wk->bss->cbss.bssid,
956 wk->tries);
Ron Rindjunsky9859b812008-08-09 03:02:19 +0300957
Johannes Berg77fdaa12009-07-07 03:45:17 +0200958 /*
959 * Direct probe is sent to broadcast address as some APs
Ron Rindjunsky9859b812008-08-09 03:02:19 +0300960 * will not answer to direct packet in unassociated state.
961 */
Johannes Berg77fdaa12009-07-07 03:45:17 +0200962 ieee80211_send_probe_req(sdata, NULL, wk->ssid, wk->ssid_len, NULL, 0);
Ron Rindjunsky9859b812008-08-09 03:02:19 +0300963
Johannes Berg77fdaa12009-07-07 03:45:17 +0200964 wk->timeout = jiffies + IEEE80211_AUTH_TIMEOUT;
Johannes Bergca386f32009-07-10 02:39:48 +0200965 run_again(ifmgd, wk->timeout);
Johannes Berg77fdaa12009-07-07 03:45:17 +0200966
967 return RX_MGMT_NONE;
Ron Rindjunsky9859b812008-08-09 03:02:19 +0300968}
969
Jiri Bencf0706e822007-05-05 11:45:53 -0700970
Johannes Berg77fdaa12009-07-07 03:45:17 +0200971static enum rx_mgmt_action __must_check
972ieee80211_authenticate(struct ieee80211_sub_if_data *sdata,
973 struct ieee80211_mgd_work *wk)
Jiri Bencf0706e822007-05-05 11:45:53 -0700974{
Johannes Berg46900292009-02-15 12:44:28 +0100975 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Helmut Schaa11432372009-03-12 14:04:34 +0100976 struct ieee80211_local *local = sdata->local;
Johannes Berg46900292009-02-15 12:44:28 +0100977
Johannes Berg77fdaa12009-07-07 03:45:17 +0200978 wk->tries++;
979 if (wk->tries > IEEE80211_AUTH_MAX_TRIES) {
Johannes Berg0c68ae262008-10-27 15:56:10 -0700980 printk(KERN_DEBUG "%s: authentication with AP %pM"
Jiri Bencf0706e822007-05-05 11:45:53 -0700981 " timed out\n",
Johannes Berg77fdaa12009-07-07 03:45:17 +0200982 sdata->dev->name, wk->bss->cbss.bssid);
983
984 /*
985 * Most likely AP is not in the range so remove the
986 * bss struct for that AP.
987 */
988 cfg80211_unlink_bss(local->hw.wiphy, &wk->bss->cbss);
Helmut Schaa11432372009-03-12 14:04:34 +0100989
990 /*
991 * We might have a pending scan which had no chance to run yet
Johannes Berg77fdaa12009-07-07 03:45:17 +0200992 * due to work needing to be done. Hence, queue the STAs work
993 * again for that.
Helmut Schaa11432372009-03-12 14:04:34 +0100994 */
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -0400995 ieee80211_queue_work(&local->hw, &ifmgd->work);
Johannes Berg77fdaa12009-07-07 03:45:17 +0200996 return RX_MGMT_CFG80211_AUTH_TO;
Jiri Bencf0706e822007-05-05 11:45:53 -0700997 }
998
Johannes Berg77fdaa12009-07-07 03:45:17 +0200999 printk(KERN_DEBUG "%s: authenticate with AP %pM (try %d)\n",
1000 sdata->dev->name, wk->bss->cbss.bssid, wk->tries);
Jiri Bencf0706e822007-05-05 11:45:53 -07001001
Johannes Berg77fdaa12009-07-07 03:45:17 +02001002 ieee80211_send_auth(sdata, 1, wk->auth_alg, wk->ie, wk->ie_len,
Johannes Bergfffd0932009-07-08 14:22:54 +02001003 wk->bss->cbss.bssid, NULL, 0, 0);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001004 wk->auth_transaction = 2;
Jiri Bencf0706e822007-05-05 11:45:53 -07001005
Johannes Berg77fdaa12009-07-07 03:45:17 +02001006 wk->timeout = jiffies + IEEE80211_AUTH_TIMEOUT;
Johannes Bergca386f32009-07-10 02:39:48 +02001007 run_again(ifmgd, wk->timeout);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001008
1009 return RX_MGMT_NONE;
Jiri Bencf0706e822007-05-05 11:45:53 -07001010}
1011
Johannes Bergb291ba12009-07-10 15:29:03 +02001012static void ieee80211_set_disassoc(struct ieee80211_sub_if_data *sdata)
Tomas Winkleraa458d12008-09-09 00:32:12 +03001013{
Johannes Berg46900292009-02-15 12:44:28 +01001014 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Tomas Winkleraa458d12008-09-09 00:32:12 +03001015 struct ieee80211_local *local = sdata->local;
1016 struct sta_info *sta;
Kalle Valoe0cb6862008-12-18 23:35:13 +02001017 u32 changed = 0, config_changed = 0;
Johannes Bergb291ba12009-07-10 15:29:03 +02001018 u8 bssid[ETH_ALEN];
Tomas Winkleraa458d12008-09-09 00:32:12 +03001019
Johannes Berg77fdaa12009-07-07 03:45:17 +02001020 ASSERT_MGD_MTX(ifmgd);
1021
Johannes Bergb291ba12009-07-10 15:29:03 +02001022 if (WARN_ON(!ifmgd->associated))
1023 return;
1024
1025 memcpy(bssid, ifmgd->associated->cbss.bssid, ETH_ALEN);
1026
Johannes Berg77fdaa12009-07-07 03:45:17 +02001027 ifmgd->associated = NULL;
1028 memset(ifmgd->bssid, 0, ETH_ALEN);
1029
1030 /*
1031 * we need to commit the associated = NULL change because the
1032 * scan code uses that to determine whether this iface should
1033 * go to/wake up from powersave or not -- and could otherwise
1034 * wake the queues erroneously.
1035 */
1036 smp_mb();
1037
1038 /*
1039 * Thus, we can only afterwards stop the queues -- to account
1040 * for the case where another CPU is finishing a scan at this
1041 * time -- we don't want the scan code to enable queues.
1042 */
Tomas Winkleraa458d12008-09-09 00:32:12 +03001043
Tomas Winkler24e64622008-09-08 17:33:40 +02001044 netif_tx_stop_all_queues(sdata->dev);
Tomas Winkleraa458d12008-09-09 00:32:12 +03001045 netif_carrier_off(sdata->dev);
1046
Johannes Berg1fa6f4a2009-06-15 18:13:58 +02001047 rcu_read_lock();
Johannes Berg77fdaa12009-07-07 03:45:17 +02001048 sta = sta_info_get(local, bssid);
Johannes Berg1fa6f4a2009-06-15 18:13:58 +02001049 if (sta)
1050 ieee80211_sta_tear_down_BA_sessions(sta);
1051 rcu_read_unlock();
Tomas Winkleraa458d12008-09-09 00:32:12 +03001052
Tomas Winklerf5e5bf22008-09-08 17:33:39 +02001053 changed |= ieee80211_reset_erp_info(sdata);
1054
Tomas Winklerf5e5bf22008-09-08 17:33:39 +02001055 ieee80211_led_assoc(local, 0);
Johannes Bergae5eb022008-10-14 16:58:37 +02001056 changed |= BSS_CHANGED_ASSOC;
1057 sdata->vif.bss_conf.assoc = false;
Tomas Winklerf5e5bf22008-09-08 17:33:39 +02001058
Johannes Bergaa837e12009-05-07 16:16:24 +02001059 ieee80211_set_wmm_default(sdata);
1060
Johannes Berg5cff20e2009-04-29 12:26:17 +02001061 ieee80211_recalc_idle(local);
1062
Johannes Berg47979382009-01-07 10:13:27 +01001063 /* channel(_type) changes are handled by ieee80211_hw_config */
Sujith094d05d2008-12-12 11:57:43 +05301064 local->oper_channel_type = NL80211_CHAN_NO_HT;
Johannes Bergae5eb022008-10-14 16:58:37 +02001065
Johannes Berg413ad502009-05-08 21:21:06 +02001066 /* on the next assoc, re-program HT parameters */
1067 sdata->ht_opmode_valid = false;
1068
Vasanthakumar Thiagarajana8302de2009-01-09 18:14:15 +05301069 local->power_constr_level = 0;
1070
Kalle Valo520eb822008-12-18 23:35:27 +02001071 del_timer_sync(&local->dynamic_ps_timer);
1072 cancel_work_sync(&local->dynamic_ps_enable_work);
1073
Kalle Valoe0cb6862008-12-18 23:35:13 +02001074 if (local->hw.conf.flags & IEEE80211_CONF_PS) {
1075 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
1076 config_changed |= IEEE80211_CONF_CHANGE_PS;
1077 }
1078
1079 ieee80211_hw_config(local, config_changed);
Johannes Berg9cef8732009-05-14 13:10:14 +02001080
1081 /* And the BSSID changed -- not very interesting here */
1082 changed |= BSS_CHANGED_BSSID;
Johannes Bergae5eb022008-10-14 16:58:37 +02001083 ieee80211_bss_info_change_notify(sdata, changed);
Tomas Winkler8e268e42008-11-25 13:05:44 +02001084
1085 rcu_read_lock();
1086
Johannes Berg77fdaa12009-07-07 03:45:17 +02001087 sta = sta_info_get(local, bssid);
Tomas Winkler8e268e42008-11-25 13:05:44 +02001088 if (!sta) {
1089 rcu_read_unlock();
1090 return;
1091 }
1092
1093 sta_info_unlink(&sta);
1094
1095 rcu_read_unlock();
1096
1097 sta_info_destroy(sta);
Tomas Winkleraa458d12008-09-09 00:32:12 +03001098}
Jiri Bencf0706e822007-05-05 11:45:53 -07001099
Johannes Berg77fdaa12009-07-07 03:45:17 +02001100static enum rx_mgmt_action __must_check
1101ieee80211_associate(struct ieee80211_sub_if_data *sdata,
1102 struct ieee80211_mgd_work *wk)
Jiri Bencf0706e822007-05-05 11:45:53 -07001103{
Johannes Berg46900292009-02-15 12:44:28 +01001104 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Helmut Schaa11432372009-03-12 14:04:34 +01001105 struct ieee80211_local *local = sdata->local;
Johannes Berg46900292009-02-15 12:44:28 +01001106
Johannes Berg77fdaa12009-07-07 03:45:17 +02001107 wk->tries++;
1108 if (wk->tries > IEEE80211_ASSOC_MAX_TRIES) {
Johannes Berg0c68ae262008-10-27 15:56:10 -07001109 printk(KERN_DEBUG "%s: association with AP %pM"
Jiri Bencf0706e822007-05-05 11:45:53 -07001110 " timed out\n",
Johannes Berg77fdaa12009-07-07 03:45:17 +02001111 sdata->dev->name, wk->bss->cbss.bssid);
1112
1113 /*
1114 * Most likely AP is not in the range so remove the
1115 * bss struct for that AP.
1116 */
1117 cfg80211_unlink_bss(local->hw.wiphy, &wk->bss->cbss);
1118
Helmut Schaa11432372009-03-12 14:04:34 +01001119 /*
1120 * We might have a pending scan which had no chance to run yet
Johannes Berg77fdaa12009-07-07 03:45:17 +02001121 * due to work needing to be done. Hence, queue the STAs work
1122 * again for that.
Helmut Schaa11432372009-03-12 14:04:34 +01001123 */
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04001124 ieee80211_queue_work(&local->hw, &ifmgd->work);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001125 return RX_MGMT_CFG80211_ASSOC_TO;
Jiri Bencf0706e822007-05-05 11:45:53 -07001126 }
1127
Johannes Berg77fdaa12009-07-07 03:45:17 +02001128 printk(KERN_DEBUG "%s: associate with AP %pM (try %d)\n",
1129 sdata->dev->name, wk->bss->cbss.bssid, wk->tries);
1130 ieee80211_send_assoc(sdata, wk);
Jiri Bencf0706e822007-05-05 11:45:53 -07001131
Johannes Berg77fdaa12009-07-07 03:45:17 +02001132 wk->timeout = jiffies + IEEE80211_ASSOC_TIMEOUT;
Johannes Bergca386f32009-07-10 02:39:48 +02001133 run_again(ifmgd, wk->timeout);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001134
1135 return RX_MGMT_NONE;
Jiri Bencf0706e822007-05-05 11:45:53 -07001136}
1137
Kalle Valo3cf335d2009-03-22 21:57:06 +02001138void ieee80211_sta_rx_notify(struct ieee80211_sub_if_data *sdata,
1139 struct ieee80211_hdr *hdr)
1140{
1141 /*
1142 * We can postpone the mgd.timer whenever receiving unicast frames
1143 * from AP because we know that the connection is working both ways
1144 * at that time. But multicast frames (and hence also beacons) must
1145 * be ignored here, because we need to trigger the timer during
Johannes Bergb291ba12009-07-10 15:29:03 +02001146 * data idle periods for sending the periodic probe request to the
1147 * AP we're connected to.
Kalle Valo3cf335d2009-03-22 21:57:06 +02001148 */
Johannes Bergb291ba12009-07-10 15:29:03 +02001149 if (is_multicast_ether_addr(hdr->addr1))
1150 return;
1151
1152 mod_timer(&sdata->u.mgd.conn_mon_timer,
1153 round_jiffies_up(jiffies + IEEE80211_CONNECTION_IDLE_TIME));
Kalle Valo3cf335d2009-03-22 21:57:06 +02001154}
Jiri Bencf0706e822007-05-05 11:45:53 -07001155
Johannes Bergb291ba12009-07-10 15:29:03 +02001156static void ieee80211_mgd_probe_ap(struct ieee80211_sub_if_data *sdata,
1157 bool beacon)
Kalle Valo04de8382009-03-22 21:57:35 +02001158{
Kalle Valo04de8382009-03-22 21:57:35 +02001159 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg77fdaa12009-07-07 03:45:17 +02001160 const u8 *ssid;
Johannes Bergb291ba12009-07-10 15:29:03 +02001161 bool already = false;
Johannes Berg34bfc412009-05-12 19:58:12 +02001162
Johannes Berg0e2b6282009-07-13 13:23:39 +02001163 if (!netif_running(sdata->dev))
1164 return;
1165
Luis R. Rodriguez91a3bd72009-07-23 16:37:47 -07001166 if (sdata->local->scanning)
1167 return;
1168
Johannes Berg77fdaa12009-07-07 03:45:17 +02001169 mutex_lock(&ifmgd->mtx);
1170
1171 if (!ifmgd->associated)
1172 goto out;
1173
Michael Buescha8604022009-04-15 14:41:22 -04001174#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Johannes Bergb291ba12009-07-10 15:29:03 +02001175 if (beacon && net_ratelimit())
1176 printk(KERN_DEBUG "%s: detected beacon loss from AP "
Johannes Berg77fdaa12009-07-07 03:45:17 +02001177 "- sending probe request\n", sdata->dev->name);
Michael Buescha8604022009-04-15 14:41:22 -04001178#endif
Kalle Valo04de8382009-03-22 21:57:35 +02001179
Johannes Bergb291ba12009-07-10 15:29:03 +02001180 /*
1181 * The driver/our work has already reported this event or the
1182 * connection monitoring has kicked in and we have already sent
1183 * a probe request. Or maybe the AP died and the driver keeps
1184 * reporting until we disassociate...
1185 *
1186 * In either case we have to ignore the current call to this
1187 * function (except for setting the correct probe reason bit)
1188 * because otherwise we would reset the timer every time and
1189 * never check whether we received a probe response!
1190 */
1191 if (ifmgd->flags & (IEEE80211_STA_BEACON_POLL |
1192 IEEE80211_STA_CONNECTION_POLL))
1193 already = true;
1194
1195 if (beacon)
1196 ifmgd->flags |= IEEE80211_STA_BEACON_POLL;
1197 else
1198 ifmgd->flags |= IEEE80211_STA_CONNECTION_POLL;
1199
1200 if (already)
1201 goto out;
1202
1203 ifmgd->probe_timeout = jiffies + IEEE80211_PROBE_WAIT;
Johannes Berg4e751842009-06-10 15:16:52 +02001204
1205 mutex_lock(&sdata->local->iflist_mtx);
1206 ieee80211_recalc_ps(sdata->local, -1);
1207 mutex_unlock(&sdata->local->iflist_mtx);
1208
Johannes Berg77fdaa12009-07-07 03:45:17 +02001209 ssid = ieee80211_bss_get_ie(&ifmgd->associated->cbss, WLAN_EID_SSID);
1210 ieee80211_send_probe_req(sdata, ifmgd->associated->cbss.bssid,
1211 ssid + 2, ssid[1], NULL, 0);
Kalle Valo04de8382009-03-22 21:57:35 +02001212
Johannes Bergb291ba12009-07-10 15:29:03 +02001213 run_again(ifmgd, ifmgd->probe_timeout);
1214
Johannes Berg77fdaa12009-07-07 03:45:17 +02001215 out:
1216 mutex_unlock(&ifmgd->mtx);
Kalle Valo04de8382009-03-22 21:57:35 +02001217}
1218
Johannes Bergb291ba12009-07-10 15:29:03 +02001219void ieee80211_beacon_loss_work(struct work_struct *work)
1220{
1221 struct ieee80211_sub_if_data *sdata =
1222 container_of(work, struct ieee80211_sub_if_data,
1223 u.mgd.beacon_loss_work);
1224
1225 ieee80211_mgd_probe_ap(sdata, true);
1226}
1227
Kalle Valo04de8382009-03-22 21:57:35 +02001228void ieee80211_beacon_loss(struct ieee80211_vif *vif)
1229{
1230 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
1231
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04001232 ieee80211_queue_work(&sdata->local->hw, &sdata->u.mgd.beacon_loss_work);
Kalle Valo04de8382009-03-22 21:57:35 +02001233}
1234EXPORT_SYMBOL(ieee80211_beacon_loss);
1235
Johannes Berg77fdaa12009-07-07 03:45:17 +02001236static void ieee80211_auth_completed(struct ieee80211_sub_if_data *sdata,
1237 struct ieee80211_mgd_work *wk)
Jiri Bencf0706e822007-05-05 11:45:53 -07001238{
Johannes Berg77fdaa12009-07-07 03:45:17 +02001239 wk->state = IEEE80211_MGD_STATE_IDLE;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001240 printk(KERN_DEBUG "%s: authenticated\n", sdata->dev->name);
Jiri Bencf0706e822007-05-05 11:45:53 -07001241}
1242
1243
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001244static void ieee80211_auth_challenge(struct ieee80211_sub_if_data *sdata,
Johannes Berg77fdaa12009-07-07 03:45:17 +02001245 struct ieee80211_mgd_work *wk,
Jiri Bencf0706e822007-05-05 11:45:53 -07001246 struct ieee80211_mgmt *mgmt,
1247 size_t len)
1248{
1249 u8 *pos;
1250 struct ieee802_11_elems elems;
1251
Jiri Bencf0706e822007-05-05 11:45:53 -07001252 pos = mgmt->u.auth.variable;
John W. Linville67a4cce2007-10-12 16:40:37 -04001253 ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), &elems);
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001254 if (!elems.challenge)
Jiri Bencf0706e822007-05-05 11:45:53 -07001255 return;
Johannes Berg77fdaa12009-07-07 03:45:17 +02001256 ieee80211_send_auth(sdata, 3, wk->auth_alg,
Johannes Berg46900292009-02-15 12:44:28 +01001257 elems.challenge - 2, elems.challenge_len + 2,
Johannes Bergfffd0932009-07-08 14:22:54 +02001258 wk->bss->cbss.bssid,
1259 wk->key, wk->key_len, wk->key_idx);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001260 wk->auth_transaction = 4;
Johannes Bergfe3d2c32009-02-10 21:26:03 +01001261}
1262
Johannes Berg77fdaa12009-07-07 03:45:17 +02001263static enum rx_mgmt_action __must_check
1264ieee80211_rx_mgmt_auth(struct ieee80211_sub_if_data *sdata,
1265 struct ieee80211_mgd_work *wk,
1266 struct ieee80211_mgmt *mgmt, size_t len)
Jiri Bencf0706e822007-05-05 11:45:53 -07001267{
Jiri Bencf0706e822007-05-05 11:45:53 -07001268 u16 auth_alg, auth_transaction, status_code;
1269
Johannes Berg77fdaa12009-07-07 03:45:17 +02001270 if (wk->state != IEEE80211_MGD_STATE_AUTH)
1271 return RX_MGMT_NONE;
Jiri Bencf0706e822007-05-05 11:45:53 -07001272
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001273 if (len < 24 + 6)
Johannes Berg77fdaa12009-07-07 03:45:17 +02001274 return RX_MGMT_NONE;
Jiri Bencf0706e822007-05-05 11:45:53 -07001275
Johannes Berg77fdaa12009-07-07 03:45:17 +02001276 if (memcmp(wk->bss->cbss.bssid, mgmt->sa, ETH_ALEN) != 0)
1277 return RX_MGMT_NONE;
Jiri Bencf0706e822007-05-05 11:45:53 -07001278
Johannes Berg77fdaa12009-07-07 03:45:17 +02001279 if (memcmp(wk->bss->cbss.bssid, mgmt->bssid, ETH_ALEN) != 0)
1280 return RX_MGMT_NONE;
Jiri Bencf0706e822007-05-05 11:45:53 -07001281
1282 auth_alg = le16_to_cpu(mgmt->u.auth.auth_alg);
1283 auth_transaction = le16_to_cpu(mgmt->u.auth.auth_transaction);
1284 status_code = le16_to_cpu(mgmt->u.auth.status_code);
1285
Johannes Berg77fdaa12009-07-07 03:45:17 +02001286 if (auth_alg != wk->auth_alg ||
1287 auth_transaction != wk->auth_transaction)
1288 return RX_MGMT_NONE;
Jiri Bencf0706e822007-05-05 11:45:53 -07001289
1290 if (status_code != WLAN_STATUS_SUCCESS) {
Johannes Berg77fdaa12009-07-07 03:45:17 +02001291 list_del(&wk->list);
1292 kfree(wk);
1293 return RX_MGMT_CFG80211_AUTH;
Jiri Bencf0706e822007-05-05 11:45:53 -07001294 }
1295
Johannes Berg77fdaa12009-07-07 03:45:17 +02001296 switch (wk->auth_alg) {
Jiri Bencf0706e822007-05-05 11:45:53 -07001297 case WLAN_AUTH_OPEN:
1298 case WLAN_AUTH_LEAP:
Jouni Malinen636a5d32009-03-19 13:39:22 +02001299 case WLAN_AUTH_FT:
Johannes Berg77fdaa12009-07-07 03:45:17 +02001300 ieee80211_auth_completed(sdata, wk);
1301 return RX_MGMT_CFG80211_AUTH;
Jiri Bencf0706e822007-05-05 11:45:53 -07001302 case WLAN_AUTH_SHARED_KEY:
Johannes Berg77fdaa12009-07-07 03:45:17 +02001303 if (wk->auth_transaction == 4) {
1304 ieee80211_auth_completed(sdata, wk);
1305 return RX_MGMT_CFG80211_AUTH;
Jouni Malinen6039f6d2009-03-19 13:39:21 +02001306 } else
Johannes Berg77fdaa12009-07-07 03:45:17 +02001307 ieee80211_auth_challenge(sdata, wk, mgmt, len);
Jiri Bencf0706e822007-05-05 11:45:53 -07001308 break;
1309 }
Johannes Berg77fdaa12009-07-07 03:45:17 +02001310
1311 return RX_MGMT_NONE;
Jiri Bencf0706e822007-05-05 11:45:53 -07001312}
1313
1314
Johannes Berg77fdaa12009-07-07 03:45:17 +02001315static enum rx_mgmt_action __must_check
1316ieee80211_rx_mgmt_deauth(struct ieee80211_sub_if_data *sdata,
1317 struct ieee80211_mgd_work *wk,
1318 struct ieee80211_mgmt *mgmt, size_t len)
Jiri Bencf0706e822007-05-05 11:45:53 -07001319{
Johannes Berg46900292009-02-15 12:44:28 +01001320 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg77fdaa12009-07-07 03:45:17 +02001321 const u8 *bssid = NULL;
Jiri Bencf0706e822007-05-05 11:45:53 -07001322 u16 reason_code;
1323
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001324 if (len < 24 + 2)
Johannes Berg77fdaa12009-07-07 03:45:17 +02001325 return RX_MGMT_NONE;
Jiri Bencf0706e822007-05-05 11:45:53 -07001326
Johannes Berg77fdaa12009-07-07 03:45:17 +02001327 ASSERT_MGD_MTX(ifmgd);
1328
1329 if (wk)
1330 bssid = wk->bss->cbss.bssid;
1331 else
1332 bssid = ifmgd->associated->cbss.bssid;
Jiri Bencf0706e822007-05-05 11:45:53 -07001333
1334 reason_code = le16_to_cpu(mgmt->u.deauth.reason_code);
1335
Johannes Berg77fdaa12009-07-07 03:45:17 +02001336 printk(KERN_DEBUG "%s: deauthenticated from %pM (Reason: %u)\n",
1337 sdata->dev->name, bssid, reason_code);
Jiri Bencf0706e822007-05-05 11:45:53 -07001338
Johannes Berg77fdaa12009-07-07 03:45:17 +02001339 if (!wk) {
Johannes Bergb291ba12009-07-10 15:29:03 +02001340 ieee80211_set_disassoc(sdata);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001341 } else {
1342 list_del(&wk->list);
1343 kfree(wk);
1344 }
1345
1346 return RX_MGMT_CFG80211_DEAUTH;
Jiri Bencf0706e822007-05-05 11:45:53 -07001347}
1348
1349
Johannes Berg77fdaa12009-07-07 03:45:17 +02001350static enum rx_mgmt_action __must_check
1351ieee80211_rx_mgmt_disassoc(struct ieee80211_sub_if_data *sdata,
1352 struct ieee80211_mgmt *mgmt, size_t len)
Jiri Bencf0706e822007-05-05 11:45:53 -07001353{
Johannes Berg46900292009-02-15 12:44:28 +01001354 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jiri Bencf0706e822007-05-05 11:45:53 -07001355 u16 reason_code;
1356
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001357 if (len < 24 + 2)
Johannes Berg77fdaa12009-07-07 03:45:17 +02001358 return RX_MGMT_NONE;
Jiri Bencf0706e822007-05-05 11:45:53 -07001359
Johannes Berg77fdaa12009-07-07 03:45:17 +02001360 ASSERT_MGD_MTX(ifmgd);
1361
1362 if (WARN_ON(!ifmgd->associated))
1363 return RX_MGMT_NONE;
1364
1365 if (WARN_ON(memcmp(ifmgd->associated->cbss.bssid, mgmt->sa, ETH_ALEN)))
1366 return RX_MGMT_NONE;
Jiri Bencf0706e822007-05-05 11:45:53 -07001367
1368 reason_code = le16_to_cpu(mgmt->u.disassoc.reason_code);
1369
Johannes Berg77fdaa12009-07-07 03:45:17 +02001370 printk(KERN_DEBUG "%s: disassociated (Reason: %u)\n",
1371 sdata->dev->name, reason_code);
Jiri Bencf0706e822007-05-05 11:45:53 -07001372
Johannes Bergb291ba12009-07-10 15:29:03 +02001373 ieee80211_set_disassoc(sdata);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001374 return RX_MGMT_CFG80211_DISASSOC;
Jiri Bencf0706e822007-05-05 11:45:53 -07001375}
1376
1377
Johannes Berg77fdaa12009-07-07 03:45:17 +02001378static enum rx_mgmt_action __must_check
1379ieee80211_rx_mgmt_assoc_resp(struct ieee80211_sub_if_data *sdata,
1380 struct ieee80211_mgd_work *wk,
1381 struct ieee80211_mgmt *mgmt, size_t len,
1382 bool reassoc)
Jiri Bencf0706e822007-05-05 11:45:53 -07001383{
Johannes Berg46900292009-02-15 12:44:28 +01001384 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg471b3ef2007-12-28 14:32:58 +01001385 struct ieee80211_local *local = sdata->local;
Johannes Berg8318d782008-01-24 19:38:38 +01001386 struct ieee80211_supported_band *sband;
Jiri Bencf0706e822007-05-05 11:45:53 -07001387 struct sta_info *sta;
Johannes Berg881d9482009-01-21 15:13:48 +01001388 u32 rates, basic_rates;
Jiri Bencf0706e822007-05-05 11:45:53 -07001389 u16 capab_info, status_code, aid;
1390 struct ieee802_11_elems elems;
Johannes Bergbda39332008-10-11 01:51:51 +02001391 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
Jiri Bencf0706e822007-05-05 11:45:53 -07001392 u8 *pos;
Johannes Bergae5eb022008-10-14 16:58:37 +02001393 u32 changed = 0;
Jiri Bencf0706e822007-05-05 11:45:53 -07001394 int i, j;
Johannes Bergddf4ac52008-10-22 11:41:38 +02001395 bool have_higher_than_11mbit = false, newsta = false;
Johannes Bergae5eb022008-10-14 16:58:37 +02001396 u16 ap_ht_cap_flags;
Jiri Bencf0706e822007-05-05 11:45:53 -07001397
Johannes Berg77fdaa12009-07-07 03:45:17 +02001398 /*
1399 * AssocResp and ReassocResp have identical structure, so process both
1400 * of them in this function.
1401 */
Jiri Bencf0706e822007-05-05 11:45:53 -07001402
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001403 if (len < 24 + 6)
Johannes Berg77fdaa12009-07-07 03:45:17 +02001404 return RX_MGMT_NONE;
Jiri Bencf0706e822007-05-05 11:45:53 -07001405
Johannes Berg77fdaa12009-07-07 03:45:17 +02001406 if (memcmp(wk->bss->cbss.bssid, mgmt->sa, ETH_ALEN) != 0)
1407 return RX_MGMT_NONE;
Jiri Bencf0706e822007-05-05 11:45:53 -07001408
1409 capab_info = le16_to_cpu(mgmt->u.assoc_resp.capab_info);
1410 status_code = le16_to_cpu(mgmt->u.assoc_resp.status_code);
1411 aid = le16_to_cpu(mgmt->u.assoc_resp.aid);
Jiri Bencf0706e822007-05-05 11:45:53 -07001412
Johannes Berg0c68ae262008-10-27 15:56:10 -07001413 printk(KERN_DEBUG "%s: RX %sssocResp from %pM (capab=0x%x "
Jiri Bencf0706e822007-05-05 11:45:53 -07001414 "status=%d aid=%d)\n",
Johannes Berg0c68ae262008-10-27 15:56:10 -07001415 sdata->dev->name, reassoc ? "Rea" : "A", mgmt->sa,
Johannes Bergddd68582007-10-22 14:51:37 +02001416 capab_info, status_code, (u16)(aid & ~(BIT(15) | BIT(14))));
Jiri Bencf0706e822007-05-05 11:45:53 -07001417
Jouni Malinen63a5ab82009-01-08 13:32:09 +02001418 pos = mgmt->u.assoc_resp.variable;
1419 ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), &elems);
1420
1421 if (status_code == WLAN_STATUS_ASSOC_REJECTED_TEMPORARILY &&
Jouni Malinenf797eb72009-01-19 18:48:46 +02001422 elems.timeout_int && elems.timeout_int_len == 5 &&
1423 elems.timeout_int[0] == WLAN_TIMEOUT_ASSOC_COMEBACK) {
Jouni Malinen63a5ab82009-01-08 13:32:09 +02001424 u32 tu, ms;
Jouni Malinenf797eb72009-01-19 18:48:46 +02001425 tu = get_unaligned_le32(elems.timeout_int + 1);
Jouni Malinen63a5ab82009-01-08 13:32:09 +02001426 ms = tu * 1024 / 1000;
1427 printk(KERN_DEBUG "%s: AP rejected association temporarily; "
1428 "comeback duration %u TU (%u ms)\n",
1429 sdata->dev->name, tu, ms);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001430 wk->timeout = jiffies + msecs_to_jiffies(ms);
Jouni Malinen63a5ab82009-01-08 13:32:09 +02001431 if (ms > IEEE80211_ASSOC_TIMEOUT)
Johannes Bergca386f32009-07-10 02:39:48 +02001432 run_again(ifmgd, jiffies + msecs_to_jiffies(ms));
Johannes Berg77fdaa12009-07-07 03:45:17 +02001433 return RX_MGMT_NONE;
Jouni Malinen63a5ab82009-01-08 13:32:09 +02001434 }
1435
Jiri Bencf0706e822007-05-05 11:45:53 -07001436 if (status_code != WLAN_STATUS_SUCCESS) {
1437 printk(KERN_DEBUG "%s: AP denied association (code=%d)\n",
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001438 sdata->dev->name, status_code);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001439 list_del(&wk->list);
1440 kfree(wk);
1441 return RX_MGMT_CFG80211_ASSOC;
Jiri Bencf0706e822007-05-05 11:45:53 -07001442 }
1443
Johannes Berg1dd84aa2007-10-10 12:03:41 +02001444 if ((aid & (BIT(15) | BIT(14))) != (BIT(15) | BIT(14)))
1445 printk(KERN_DEBUG "%s: invalid aid value %d; bits 15:14 not "
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001446 "set\n", sdata->dev->name, aid);
Johannes Berg1dd84aa2007-10-10 12:03:41 +02001447 aid &= ~(BIT(15) | BIT(14));
1448
Jiri Bencf0706e822007-05-05 11:45:53 -07001449 if (!elems.supp_rates) {
1450 printk(KERN_DEBUG "%s: no SuppRates element in AssocResp\n",
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001451 sdata->dev->name);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001452 return RX_MGMT_NONE;
Jiri Bencf0706e822007-05-05 11:45:53 -07001453 }
1454
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001455 printk(KERN_DEBUG "%s: associated\n", sdata->dev->name);
Johannes Berg46900292009-02-15 12:44:28 +01001456 ifmgd->aid = aid;
Jiri Bencf0706e822007-05-05 11:45:53 -07001457
Johannes Bergd0709a62008-02-25 16:27:46 +01001458 rcu_read_lock();
1459
Jiri Bencf0706e822007-05-05 11:45:53 -07001460 /* Add STA entry for the AP */
Johannes Berg77fdaa12009-07-07 03:45:17 +02001461 sta = sta_info_get(local, wk->bss->cbss.bssid);
Jiri Bencf0706e822007-05-05 11:45:53 -07001462 if (!sta) {
Johannes Bergddf4ac52008-10-22 11:41:38 +02001463 newsta = true;
Johannes Bergd0709a62008-02-25 16:27:46 +01001464
Johannes Berg77fdaa12009-07-07 03:45:17 +02001465 rcu_read_unlock();
1466
1467 sta = sta_info_alloc(sdata, wk->bss->cbss.bssid, GFP_KERNEL);
Johannes Berg73651ee2008-02-25 16:27:47 +01001468 if (!sta) {
1469 printk(KERN_DEBUG "%s: failed to alloc STA entry for"
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001470 " the AP\n", sdata->dev->name);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001471 return RX_MGMT_NONE;
Jiri Bencf0706e822007-05-05 11:45:53 -07001472 }
Johannes Berg73651ee2008-02-25 16:27:47 +01001473
Johannes Berg77fdaa12009-07-07 03:45:17 +02001474 set_sta_flags(sta, WLAN_STA_AUTH | WLAN_STA_ASSOC |
1475 WLAN_STA_ASSOC_AP);
1476 if (!(ifmgd->flags & IEEE80211_STA_CONTROL_PORT))
1477 set_sta_flags(sta, WLAN_STA_AUTHORIZED);
1478
1479 rcu_read_lock();
Jiri Bencf0706e822007-05-05 11:45:53 -07001480 }
1481
Jiri Bencf0706e822007-05-05 11:45:53 -07001482 rates = 0;
Johannes Berg8318d782008-01-24 19:38:38 +01001483 basic_rates = 0;
1484 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
1485
Jiri Bencf0706e822007-05-05 11:45:53 -07001486 for (i = 0; i < elems.supp_rates_len; i++) {
1487 int rate = (elems.supp_rates[i] & 0x7f) * 5;
Tomas Winklerd61272c2008-10-30 17:08:08 +02001488 bool is_basic = !!(elems.supp_rates[i] & 0x80);
Johannes Berg8318d782008-01-24 19:38:38 +01001489
1490 if (rate > 110)
1491 have_higher_than_11mbit = true;
1492
1493 for (j = 0; j < sband->n_bitrates; j++) {
Tomas Winklerd61272c2008-10-30 17:08:08 +02001494 if (sband->bitrates[j].bitrate == rate) {
Jiri Bencf0706e822007-05-05 11:45:53 -07001495 rates |= BIT(j);
Tomas Winklerd61272c2008-10-30 17:08:08 +02001496 if (is_basic)
1497 basic_rates |= BIT(j);
1498 break;
1499 }
Johannes Berg8318d782008-01-24 19:38:38 +01001500 }
Jiri Bencf0706e822007-05-05 11:45:53 -07001501 }
Johannes Berg8318d782008-01-24 19:38:38 +01001502
Jiri Bencf0706e822007-05-05 11:45:53 -07001503 for (i = 0; i < elems.ext_supp_rates_len; i++) {
1504 int rate = (elems.ext_supp_rates[i] & 0x7f) * 5;
Johannes Berg7e0986c2009-04-19 13:22:11 +02001505 bool is_basic = !!(elems.ext_supp_rates[i] & 0x80);
Johannes Berg8318d782008-01-24 19:38:38 +01001506
1507 if (rate > 110)
1508 have_higher_than_11mbit = true;
1509
1510 for (j = 0; j < sband->n_bitrates; j++) {
Tomas Winklerd61272c2008-10-30 17:08:08 +02001511 if (sband->bitrates[j].bitrate == rate) {
Jiri Bencf0706e822007-05-05 11:45:53 -07001512 rates |= BIT(j);
Tomas Winklerd61272c2008-10-30 17:08:08 +02001513 if (is_basic)
1514 basic_rates |= BIT(j);
1515 break;
1516 }
Johannes Berg8318d782008-01-24 19:38:38 +01001517 }
Jiri Bencf0706e822007-05-05 11:45:53 -07001518 }
Johannes Berg8318d782008-01-24 19:38:38 +01001519
Johannes Berg323ce792008-09-11 02:45:11 +02001520 sta->sta.supp_rates[local->hw.conf.channel->band] = rates;
Johannes Bergbda39332008-10-11 01:51:51 +02001521 sdata->vif.bss_conf.basic_rates = basic_rates;
Johannes Berg8318d782008-01-24 19:38:38 +01001522
1523 /* cf. IEEE 802.11 9.2.12 */
1524 if (local->hw.conf.channel->band == IEEE80211_BAND_2GHZ &&
1525 have_higher_than_11mbit)
1526 sdata->flags |= IEEE80211_SDATA_OPERATING_GMODE;
1527 else
1528 sdata->flags &= ~IEEE80211_SDATA_OPERATING_GMODE;
Jiri Bencf0706e822007-05-05 11:45:53 -07001529
Johannes Bergab1faea2009-07-01 21:41:17 +02001530 if (elems.ht_cap_elem && !(ifmgd->flags & IEEE80211_STA_DISABLE_11N))
Johannes Bergae5eb022008-10-14 16:58:37 +02001531 ieee80211_ht_cap_ie_to_sta_ht_cap(sband,
Johannes Bergd9fe60d2008-10-09 12:13:49 +02001532 elems.ht_cap_elem, &sta->sta.ht_cap);
Johannes Bergae5eb022008-10-14 16:58:37 +02001533
1534 ap_ht_cap_flags = sta->sta.ht_cap.cap;
Ron Rindjunskyd3c990f2007-11-26 16:14:34 +02001535
Johannes Berg4b7679a2008-09-18 18:14:18 +02001536 rate_control_rate_init(sta);
Jiri Bencf0706e822007-05-05 11:45:53 -07001537
Johannes Berg46900292009-02-15 12:44:28 +01001538 if (ifmgd->flags & IEEE80211_STA_MFP_ENABLED)
Jouni Malinen5394af42009-01-08 13:31:59 +02001539 set_sta_flags(sta, WLAN_STA_MFP);
1540
Johannes Bergddf4ac52008-10-22 11:41:38 +02001541 if (elems.wmm_param)
Johannes Berg07346f812008-05-03 01:02:02 +02001542 set_sta_flags(sta, WLAN_STA_WME);
Johannes Bergddf4ac52008-10-22 11:41:38 +02001543
1544 if (newsta) {
1545 int err = sta_info_insert(sta);
1546 if (err) {
1547 printk(KERN_DEBUG "%s: failed to insert STA entry for"
1548 " the AP (error %d)\n", sdata->dev->name, err);
1549 rcu_read_unlock();
Johannes Berg77fdaa12009-07-07 03:45:17 +02001550 return RX_MGMT_NONE;
Johannes Bergddf4ac52008-10-22 11:41:38 +02001551 }
1552 }
1553
1554 rcu_read_unlock();
1555
1556 if (elems.wmm_param)
Johannes Berg46900292009-02-15 12:44:28 +01001557 ieee80211_sta_wmm_params(local, ifmgd, elems.wmm_param,
Jiri Bencf0706e822007-05-05 11:45:53 -07001558 elems.wmm_param_len);
Johannes Bergaa837e12009-05-07 16:16:24 +02001559 else
1560 ieee80211_set_wmm_default(sdata);
Jiri Bencf0706e822007-05-05 11:45:53 -07001561
Johannes Bergae5eb022008-10-14 16:58:37 +02001562 if (elems.ht_info_elem && elems.wmm_param &&
Johannes Berg46900292009-02-15 12:44:28 +01001563 (ifmgd->flags & IEEE80211_STA_WMM_ENABLED) &&
Johannes Bergab1faea2009-07-01 21:41:17 +02001564 !(ifmgd->flags & IEEE80211_STA_DISABLE_11N))
Johannes Bergae5eb022008-10-14 16:58:37 +02001565 changed |= ieee80211_enable_ht(sdata, elems.ht_info_elem,
Johannes Berg77fdaa12009-07-07 03:45:17 +02001566 wk->bss->cbss.bssid,
Johannes Bergae5eb022008-10-14 16:58:37 +02001567 ap_ht_cap_flags);
1568
Johannes Berg056508d2009-07-30 21:43:55 +02001569 /* delete work item -- must be before set_associated for PS */
1570 list_del(&wk->list);
1571
Tomas Winkler21c0cbe2008-03-28 16:33:34 -07001572 /* set AID and assoc capability,
1573 * ieee80211_set_associated() will tell the driver */
Johannes Berg8318d782008-01-24 19:38:38 +01001574 bss_conf->aid = aid;
Tomas Winkler21c0cbe2008-03-28 16:33:34 -07001575 bss_conf->assoc_capability = capab_info;
Johannes Berg77fdaa12009-07-07 03:45:17 +02001576 ieee80211_set_associated(sdata, wk->bss, changed);
Jiri Bencf0706e822007-05-05 11:45:53 -07001577
Kalle Valo15b7b062009-03-22 21:57:14 +02001578 /*
Johannes Bergb291ba12009-07-10 15:29:03 +02001579 * Start timer to probe the connection to the AP now.
1580 * Also start the timer that will detect beacon loss.
Kalle Valo15b7b062009-03-22 21:57:14 +02001581 */
Johannes Bergb291ba12009-07-10 15:29:03 +02001582 ieee80211_sta_rx_notify(sdata, (struct ieee80211_hdr *)mgmt);
1583 mod_beacon_timer(sdata);
Kalle Valo15b7b062009-03-22 21:57:14 +02001584
Johannes Berg77fdaa12009-07-07 03:45:17 +02001585 kfree(wk);
1586 return RX_MGMT_CFG80211_ASSOC;
Jiri Bencf0706e822007-05-05 11:45:53 -07001587}
1588
1589
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001590static void ieee80211_rx_bss_info(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e822007-05-05 11:45:53 -07001591 struct ieee80211_mgmt *mgmt,
1592 size_t len,
1593 struct ieee80211_rx_status *rx_status,
Johannes Berg98c8fcc2008-09-08 17:44:26 +02001594 struct ieee802_11_elems *elems,
1595 bool beacon)
Jiri Bencf0706e822007-05-05 11:45:53 -07001596{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001597 struct ieee80211_local *local = sdata->local;
Johannes Berg98c8fcc2008-09-08 17:44:26 +02001598 int freq;
Johannes Bergc2b13452008-09-11 00:01:55 +02001599 struct ieee80211_bss *bss;
Johannes Bergfab7d4a2008-03-16 18:42:44 +01001600 struct ieee80211_channel *channel;
Jiri Bencf0706e822007-05-05 11:45:53 -07001601
Johannes Berg5bda6172008-09-08 11:05:10 +02001602 if (elems->ds_params && elems->ds_params_len == 1)
1603 freq = ieee80211_channel_to_frequency(elems->ds_params[0]);
1604 else
1605 freq = rx_status->freq;
1606
1607 channel = ieee80211_get_channel(local->hw.wiphy, freq);
1608
1609 if (!channel || channel->flags & IEEE80211_CHAN_DISABLED)
1610 return;
Jiri Bencf0706e822007-05-05 11:45:53 -07001611
Johannes Berg98c8fcc2008-09-08 17:44:26 +02001612 bss = ieee80211_bss_info_update(local, rx_status, mgmt, len, elems,
Johannes Berg2a519312009-02-10 21:25:55 +01001613 channel, beacon);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001614 if (bss)
1615 ieee80211_rx_bss_put(local, bss);
1616
1617 if (!sdata->u.mgd.associated)
Johannes Berg98c8fcc2008-09-08 17:44:26 +02001618 return;
Jiri Bencf0706e822007-05-05 11:45:53 -07001619
Sujithc481ec92009-01-06 09:28:37 +05301620 if (elems->ch_switch_elem && (elems->ch_switch_elem_len == 3) &&
Johannes Berg77fdaa12009-07-07 03:45:17 +02001621 (memcmp(mgmt->bssid, sdata->u.mgd.associated->cbss.bssid,
1622 ETH_ALEN) == 0)) {
Sujithc481ec92009-01-06 09:28:37 +05301623 struct ieee80211_channel_sw_ie *sw_elem =
1624 (struct ieee80211_channel_sw_ie *)elems->ch_switch_elem;
Johannes Bergcc32abd2009-05-15 11:52:31 +02001625 ieee80211_sta_process_chanswitch(sdata, sw_elem, bss);
Sujithc481ec92009-01-06 09:28:37 +05301626 }
Jiri Bencf0706e822007-05-05 11:45:53 -07001627}
1628
1629
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001630static void ieee80211_rx_mgmt_probe_resp(struct ieee80211_sub_if_data *sdata,
Johannes Berg77fdaa12009-07-07 03:45:17 +02001631 struct ieee80211_mgd_work *wk,
1632 struct ieee80211_mgmt *mgmt, size_t len,
Jiri Bencf0706e822007-05-05 11:45:53 -07001633 struct ieee80211_rx_status *rx_status)
1634{
Kalle Valo15b7b062009-03-22 21:57:14 +02001635 struct ieee80211_if_managed *ifmgd;
Ester Kummerae6a44e2008-06-27 18:54:48 +03001636 size_t baselen;
1637 struct ieee802_11_elems elems;
1638
Kalle Valo15b7b062009-03-22 21:57:14 +02001639 ifmgd = &sdata->u.mgd;
1640
Johannes Berg77fdaa12009-07-07 03:45:17 +02001641 ASSERT_MGD_MTX(ifmgd);
1642
Tomas Winkler8e7cdbb2008-08-03 14:32:01 +03001643 if (memcmp(mgmt->da, sdata->dev->dev_addr, ETH_ALEN))
1644 return; /* ignore ProbeResp to foreign address */
1645
Ester Kummerae6a44e2008-06-27 18:54:48 +03001646 baselen = (u8 *) mgmt->u.probe_resp.variable - (u8 *) mgmt;
1647 if (baselen > len)
1648 return;
1649
1650 ieee802_11_parse_elems(mgmt->u.probe_resp.variable, len - baselen,
1651 &elems);
1652
Johannes Berg98c8fcc2008-09-08 17:44:26 +02001653 ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems, false);
Ron Rindjunsky9859b812008-08-09 03:02:19 +03001654
1655 /* direct probe may be part of the association flow */
Johannes Berg77fdaa12009-07-07 03:45:17 +02001656 if (wk && wk->state == IEEE80211_MGD_STATE_PROBE) {
Ron Rindjunsky9859b812008-08-09 03:02:19 +03001657 printk(KERN_DEBUG "%s direct probe responded\n",
1658 sdata->dev->name);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001659 wk->tries = 0;
1660 wk->state = IEEE80211_MGD_STATE_AUTH;
1661 WARN_ON(ieee80211_authenticate(sdata, wk) != RX_MGMT_NONE);
Ron Rindjunsky9859b812008-08-09 03:02:19 +03001662 }
Kalle Valo15b7b062009-03-22 21:57:14 +02001663
Johannes Berg77fdaa12009-07-07 03:45:17 +02001664 if (ifmgd->associated &&
1665 memcmp(mgmt->bssid, ifmgd->associated->cbss.bssid, ETH_ALEN) == 0 &&
Johannes Bergb291ba12009-07-10 15:29:03 +02001666 ifmgd->flags & (IEEE80211_STA_BEACON_POLL |
1667 IEEE80211_STA_CONNECTION_POLL)) {
1668 ifmgd->flags &= ~(IEEE80211_STA_CONNECTION_POLL |
1669 IEEE80211_STA_BEACON_POLL);
Johannes Berg4e751842009-06-10 15:16:52 +02001670 mutex_lock(&sdata->local->iflist_mtx);
1671 ieee80211_recalc_ps(sdata->local, -1);
1672 mutex_unlock(&sdata->local->iflist_mtx);
Johannes Bergb291ba12009-07-10 15:29:03 +02001673 /*
1674 * We've received a probe response, but are not sure whether
1675 * we have or will be receiving any beacons or data, so let's
1676 * schedule the timers again, just in case.
1677 */
1678 mod_beacon_timer(sdata);
1679 mod_timer(&ifmgd->conn_mon_timer,
1680 round_jiffies_up(jiffies +
1681 IEEE80211_CONNECTION_IDLE_TIME));
Johannes Berg4e751842009-06-10 15:16:52 +02001682 }
Jiri Bencf0706e822007-05-05 11:45:53 -07001683}
1684
Johannes Bergd91f36d2009-04-16 13:17:26 +02001685/*
1686 * This is the canonical list of information elements we care about,
1687 * the filter code also gives us all changes to the Microsoft OUI
1688 * (00:50:F2) vendor IE which is used for WMM which we need to track.
1689 *
1690 * We implement beacon filtering in software since that means we can
1691 * avoid processing the frame here and in cfg80211, and userspace
1692 * will not be able to tell whether the hardware supports it or not.
1693 *
1694 * XXX: This list needs to be dynamic -- userspace needs to be able to
1695 * add items it requires. It also needs to be able to tell us to
1696 * look out for other vendor IEs.
1697 */
1698static const u64 care_about_ies =
Johannes Berg1d4df3a2009-04-22 11:25:43 +02001699 (1ULL << WLAN_EID_COUNTRY) |
1700 (1ULL << WLAN_EID_ERP_INFO) |
1701 (1ULL << WLAN_EID_CHANNEL_SWITCH) |
1702 (1ULL << WLAN_EID_PWR_CONSTRAINT) |
1703 (1ULL << WLAN_EID_HT_CAPABILITY) |
1704 (1ULL << WLAN_EID_HT_INFORMATION);
Johannes Bergd91f36d2009-04-16 13:17:26 +02001705
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001706static void ieee80211_rx_mgmt_beacon(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e822007-05-05 11:45:53 -07001707 struct ieee80211_mgmt *mgmt,
1708 size_t len,
1709 struct ieee80211_rx_status *rx_status)
1710{
Johannes Bergd91f36d2009-04-16 13:17:26 +02001711 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jiri Bencf0706e822007-05-05 11:45:53 -07001712 size_t baselen;
1713 struct ieee802_11_elems elems;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001714 struct ieee80211_local *local = sdata->local;
Johannes Berg471b3ef2007-12-28 14:32:58 +01001715 u32 changed = 0;
Johannes Bergd91f36d2009-04-16 13:17:26 +02001716 bool erp_valid, directed_tim = false;
Johannes Berg7a5158e2008-10-08 10:59:33 +02001717 u8 erp_value = 0;
Johannes Bergd91f36d2009-04-16 13:17:26 +02001718 u32 ncrc;
Johannes Berg77fdaa12009-07-07 03:45:17 +02001719 u8 *bssid;
1720
1721 ASSERT_MGD_MTX(ifmgd);
Jiri Bencf0706e822007-05-05 11:45:53 -07001722
Ester Kummerae6a44e2008-06-27 18:54:48 +03001723 /* Process beacon from the current BSS */
1724 baselen = (u8 *) mgmt->u.beacon.variable - (u8 *) mgmt;
1725 if (baselen > len)
1726 return;
1727
Johannes Bergd91f36d2009-04-16 13:17:26 +02001728 if (rx_status->freq != local->hw.conf.channel->center_freq)
Jiri Bencf0706e822007-05-05 11:45:53 -07001729 return;
Jiri Bencf0706e822007-05-05 11:45:53 -07001730
Johannes Bergb291ba12009-07-10 15:29:03 +02001731 /*
1732 * We might have received a number of frames, among them a
1733 * disassoc frame and a beacon...
1734 */
1735 if (!ifmgd->associated)
Johannes Berg77fdaa12009-07-07 03:45:17 +02001736 return;
1737
1738 bssid = ifmgd->associated->cbss.bssid;
1739
Johannes Bergb291ba12009-07-10 15:29:03 +02001740 /*
1741 * And in theory even frames from a different AP we were just
1742 * associated to a split-second ago!
1743 */
1744 if (memcmp(bssid, mgmt->bssid, ETH_ALEN) != 0)
Jiri Bencf0706e822007-05-05 11:45:53 -07001745 return;
1746
Johannes Bergb291ba12009-07-10 15:29:03 +02001747 if (ifmgd->flags & IEEE80211_STA_BEACON_POLL) {
Jouni Malinen92778182009-05-14 21:15:36 +03001748#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
1749 if (net_ratelimit()) {
1750 printk(KERN_DEBUG "%s: cancelling probereq poll due "
1751 "to a received beacon\n", sdata->dev->name);
1752 }
1753#endif
Johannes Bergb291ba12009-07-10 15:29:03 +02001754 ifmgd->flags &= ~IEEE80211_STA_BEACON_POLL;
Johannes Berg4e751842009-06-10 15:16:52 +02001755 mutex_lock(&local->iflist_mtx);
1756 ieee80211_recalc_ps(local, -1);
1757 mutex_unlock(&local->iflist_mtx);
Jouni Malinen92778182009-05-14 21:15:36 +03001758 }
1759
Johannes Bergb291ba12009-07-10 15:29:03 +02001760 /*
1761 * Push the beacon loss detection into the future since
1762 * we are processing a beacon from the AP just now.
1763 */
1764 mod_beacon_timer(sdata);
1765
Johannes Bergd91f36d2009-04-16 13:17:26 +02001766 ncrc = crc32_be(0, (void *)&mgmt->u.beacon.beacon_int, 4);
1767 ncrc = ieee802_11_parse_elems_crc(mgmt->u.beacon.variable,
1768 len - baselen, &elems,
1769 care_about_ies, ncrc);
1770
1771 if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)
Johannes Berge7ec86f2009-04-18 17:33:24 +02001772 directed_tim = ieee80211_check_tim(elems.tim, elems.tim_len,
1773 ifmgd->aid);
Johannes Bergd91f36d2009-04-16 13:17:26 +02001774
Jouni Malinen30196672009-05-19 17:01:43 +03001775 if (ncrc != ifmgd->beacon_crc) {
1776 ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems,
1777 true);
Johannes Bergd91f36d2009-04-16 13:17:26 +02001778
Jouni Malinen30196672009-05-19 17:01:43 +03001779 ieee80211_sta_wmm_params(local, ifmgd, elems.wmm_param,
1780 elems.wmm_param_len);
1781 }
Johannes Bergfe3fa822008-09-08 11:05:09 +02001782
Vivek Natarajan25c9c872009-03-02 20:20:30 +05301783 if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK) {
Kalle Valo1fb36062009-02-10 17:09:24 +02001784 if (directed_tim) {
Kalle Valo572e0012009-02-10 17:09:31 +02001785 if (local->hw.conf.dynamic_ps_timeout > 0) {
1786 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
1787 ieee80211_hw_config(local,
1788 IEEE80211_CONF_CHANGE_PS);
1789 ieee80211_send_nullfunc(local, sdata, 0);
1790 } else {
1791 local->pspolling = true;
1792
1793 /*
1794 * Here is assumed that the driver will be
1795 * able to send ps-poll frame and receive a
1796 * response even though power save mode is
1797 * enabled, but some drivers might require
1798 * to disable power save here. This needs
1799 * to be investigated.
1800 */
1801 ieee80211_send_pspoll(local, sdata);
1802 }
Vivek Natarajana97b77b2008-12-23 18:39:02 -08001803 }
1804 }
Johannes Berg7a5158e2008-10-08 10:59:33 +02001805
Jouni Malinen30196672009-05-19 17:01:43 +03001806 if (ncrc == ifmgd->beacon_crc)
1807 return;
1808 ifmgd->beacon_crc = ncrc;
1809
Johannes Berg7a5158e2008-10-08 10:59:33 +02001810 if (elems.erp_info && elems.erp_info_len >= 1) {
1811 erp_valid = true;
1812 erp_value = elems.erp_info[0];
1813 } else {
1814 erp_valid = false;
John W. Linville50c4afb2008-04-15 14:09:27 -04001815 }
Johannes Berg7a5158e2008-10-08 10:59:33 +02001816 changed |= ieee80211_handle_bss_capability(sdata,
1817 le16_to_cpu(mgmt->u.beacon.capab_info),
1818 erp_valid, erp_value);
Jiri Bencf0706e822007-05-05 11:45:53 -07001819
Ron Rindjunskyd3c990f2007-11-26 16:14:34 +02001820
Vasanthakumar Thiagarajan53d6f812009-02-11 22:18:49 +05301821 if (elems.ht_cap_elem && elems.ht_info_elem && elems.wmm_param &&
Johannes Bergab1faea2009-07-01 21:41:17 +02001822 !(ifmgd->flags & IEEE80211_STA_DISABLE_11N)) {
Johannes Bergae5eb022008-10-14 16:58:37 +02001823 struct sta_info *sta;
1824 struct ieee80211_supported_band *sband;
1825 u16 ap_ht_cap_flags;
1826
1827 rcu_read_lock();
1828
Johannes Berg77fdaa12009-07-07 03:45:17 +02001829 sta = sta_info_get(local, bssid);
1830 if (WARN_ON(!sta)) {
Johannes Bergae5eb022008-10-14 16:58:37 +02001831 rcu_read_unlock();
1832 return;
1833 }
1834
1835 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
1836
1837 ieee80211_ht_cap_ie_to_sta_ht_cap(sband,
1838 elems.ht_cap_elem, &sta->sta.ht_cap);
1839
1840 ap_ht_cap_flags = sta->sta.ht_cap.cap;
1841
1842 rcu_read_unlock();
1843
1844 changed |= ieee80211_enable_ht(sdata, elems.ht_info_elem,
Johannes Berg77fdaa12009-07-07 03:45:17 +02001845 bssid, ap_ht_cap_flags);
Ron Rindjunskyd3c990f2007-11-26 16:14:34 +02001846 }
1847
Luis R. Rodriguez8b19e6c2009-07-30 17:38:09 -07001848 /* Note: country IE parsing is done for us by cfg80211 */
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001849 if (elems.country_elem) {
Vasanthakumar Thiagarajana8302de2009-01-09 18:14:15 +05301850 /* TODO: IBSS also needs this */
1851 if (elems.pwr_constr_elem)
1852 ieee80211_handle_pwr_constr(sdata,
1853 le16_to_cpu(mgmt->u.probe_resp.capab_info),
1854 elems.pwr_constr_elem,
1855 elems.pwr_constr_elem_len);
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08001856 }
1857
Johannes Berg471b3ef2007-12-28 14:32:58 +01001858 ieee80211_bss_info_change_notify(sdata, changed);
Jiri Bencf0706e822007-05-05 11:45:53 -07001859}
1860
Johannes Berg46900292009-02-15 12:44:28 +01001861ieee80211_rx_result ieee80211_sta_rx_mgmt(struct ieee80211_sub_if_data *sdata,
Johannes Bergf1d58c22009-06-17 13:13:00 +02001862 struct sk_buff *skb)
Jiri Bencf0706e822007-05-05 11:45:53 -07001863{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001864 struct ieee80211_local *local = sdata->local;
Jiri Bencf0706e822007-05-05 11:45:53 -07001865 struct ieee80211_mgmt *mgmt;
1866 u16 fc;
1867
1868 if (skb->len < 24)
Johannes Berg46900292009-02-15 12:44:28 +01001869 return RX_DROP_MONITOR;
Jiri Bencf0706e822007-05-05 11:45:53 -07001870
1871 mgmt = (struct ieee80211_mgmt *) skb->data;
1872 fc = le16_to_cpu(mgmt->frame_control);
1873
1874 switch (fc & IEEE80211_FCTL_STYPE) {
1875 case IEEE80211_STYPE_PROBE_REQ:
1876 case IEEE80211_STYPE_PROBE_RESP:
1877 case IEEE80211_STYPE_BEACON:
Jiri Bencf0706e822007-05-05 11:45:53 -07001878 case IEEE80211_STYPE_AUTH:
1879 case IEEE80211_STYPE_ASSOC_RESP:
1880 case IEEE80211_STYPE_REASSOC_RESP:
1881 case IEEE80211_STYPE_DEAUTH:
1882 case IEEE80211_STYPE_DISASSOC:
Johannes Berg77fdaa12009-07-07 03:45:17 +02001883 case IEEE80211_STYPE_ACTION:
Johannes Berg46900292009-02-15 12:44:28 +01001884 skb_queue_tail(&sdata->u.mgd.skb_queue, skb);
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04001885 ieee80211_queue_work(&local->hw, &sdata->u.mgd.work);
Johannes Berg46900292009-02-15 12:44:28 +01001886 return RX_QUEUED;
Jiri Bencf0706e822007-05-05 11:45:53 -07001887 }
1888
Johannes Berg46900292009-02-15 12:44:28 +01001889 return RX_DROP_MONITOR;
Jiri Bencf0706e822007-05-05 11:45:53 -07001890}
1891
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001892static void ieee80211_sta_rx_queued_mgmt(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e822007-05-05 11:45:53 -07001893 struct sk_buff *skb)
1894{
Johannes Berg77fdaa12009-07-07 03:45:17 +02001895 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jiri Bencf0706e822007-05-05 11:45:53 -07001896 struct ieee80211_rx_status *rx_status;
Jiri Bencf0706e822007-05-05 11:45:53 -07001897 struct ieee80211_mgmt *mgmt;
Johannes Berg77fdaa12009-07-07 03:45:17 +02001898 struct ieee80211_mgd_work *wk;
1899 enum rx_mgmt_action rma = RX_MGMT_NONE;
Jiri Bencf0706e822007-05-05 11:45:53 -07001900 u16 fc;
1901
Jiri Bencf0706e822007-05-05 11:45:53 -07001902 rx_status = (struct ieee80211_rx_status *) skb->cb;
1903 mgmt = (struct ieee80211_mgmt *) skb->data;
1904 fc = le16_to_cpu(mgmt->frame_control);
1905
Johannes Berg77fdaa12009-07-07 03:45:17 +02001906 mutex_lock(&ifmgd->mtx);
1907
1908 if (ifmgd->associated &&
1909 memcmp(ifmgd->associated->cbss.bssid, mgmt->bssid,
1910 ETH_ALEN) == 0) {
1911 switch (fc & IEEE80211_FCTL_STYPE) {
1912 case IEEE80211_STYPE_BEACON:
1913 ieee80211_rx_mgmt_beacon(sdata, mgmt, skb->len,
1914 rx_status);
1915 break;
1916 case IEEE80211_STYPE_PROBE_RESP:
1917 ieee80211_rx_mgmt_probe_resp(sdata, NULL, mgmt,
1918 skb->len, rx_status);
1919 break;
1920 case IEEE80211_STYPE_DEAUTH:
1921 rma = ieee80211_rx_mgmt_deauth(sdata, NULL,
1922 mgmt, skb->len);
1923 break;
1924 case IEEE80211_STYPE_DISASSOC:
1925 rma = ieee80211_rx_mgmt_disassoc(sdata, mgmt, skb->len);
1926 break;
1927 case IEEE80211_STYPE_ACTION:
1928 /* XXX: differentiate, can only happen for CSA now! */
1929 ieee80211_sta_process_chanswitch(sdata,
1930 &mgmt->u.action.u.chan_switch.sw_elem,
1931 ifmgd->associated);
1932 break;
1933 }
1934 mutex_unlock(&ifmgd->mtx);
1935
1936 switch (rma) {
1937 case RX_MGMT_NONE:
1938 /* no action */
1939 break;
1940 case RX_MGMT_CFG80211_DEAUTH:
Johannes Berg667503d2009-07-07 03:56:11 +02001941 cfg80211_send_deauth(sdata->dev, (u8 *)mgmt, skb->len,
1942 NULL);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001943 break;
1944 case RX_MGMT_CFG80211_DISASSOC:
Johannes Berg667503d2009-07-07 03:56:11 +02001945 cfg80211_send_disassoc(sdata->dev, (u8 *)mgmt, skb->len,
1946 NULL);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001947 break;
1948 default:
1949 WARN(1, "unexpected: %d", rma);
1950 }
1951 goto out;
1952 }
1953
1954 list_for_each_entry(wk, &ifmgd->work_list, list) {
1955 if (memcmp(wk->bss->cbss.bssid, mgmt->bssid, ETH_ALEN) != 0)
1956 continue;
1957
1958 switch (fc & IEEE80211_FCTL_STYPE) {
1959 case IEEE80211_STYPE_PROBE_RESP:
1960 ieee80211_rx_mgmt_probe_resp(sdata, wk, mgmt, skb->len,
1961 rx_status);
1962 break;
1963 case IEEE80211_STYPE_AUTH:
1964 rma = ieee80211_rx_mgmt_auth(sdata, wk, mgmt, skb->len);
1965 break;
1966 case IEEE80211_STYPE_ASSOC_RESP:
1967 rma = ieee80211_rx_mgmt_assoc_resp(sdata, wk, mgmt,
1968 skb->len, false);
1969 break;
1970 case IEEE80211_STYPE_REASSOC_RESP:
1971 rma = ieee80211_rx_mgmt_assoc_resp(sdata, wk, mgmt,
1972 skb->len, true);
1973 break;
1974 case IEEE80211_STYPE_DEAUTH:
1975 rma = ieee80211_rx_mgmt_deauth(sdata, wk, mgmt,
1976 skb->len);
1977 break;
1978 }
1979 /*
1980 * We've processed this frame for that work, so it can't
1981 * belong to another work struct.
1982 * NB: this is also required for correctness because the
1983 * called functions can free 'wk', and for 'rma'!
1984 */
Johannes Berg46900292009-02-15 12:44:28 +01001985 break;
Jiri Bencf0706e822007-05-05 11:45:53 -07001986 }
1987
Johannes Berg77fdaa12009-07-07 03:45:17 +02001988 mutex_unlock(&ifmgd->mtx);
1989
1990 switch (rma) {
1991 case RX_MGMT_NONE:
1992 /* no action */
1993 break;
1994 case RX_MGMT_CFG80211_AUTH:
Johannes Bergcb0b4be2009-07-07 03:56:07 +02001995 cfg80211_send_rx_auth(sdata->dev, (u8 *) mgmt, skb->len);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001996 break;
1997 case RX_MGMT_CFG80211_ASSOC:
Johannes Bergcb0b4be2009-07-07 03:56:07 +02001998 cfg80211_send_rx_assoc(sdata->dev, (u8 *) mgmt, skb->len);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001999 break;
Johannes Berg8d8b2612009-07-25 11:58:36 +02002000 case RX_MGMT_CFG80211_DEAUTH:
2001 cfg80211_send_deauth(sdata->dev, (u8 *)mgmt, skb->len, NULL);
2002 break;
Johannes Berg77fdaa12009-07-07 03:45:17 +02002003 default:
2004 WARN(1, "unexpected: %d", rma);
2005 }
2006
2007 out:
Jiri Bencf0706e822007-05-05 11:45:53 -07002008 kfree_skb(skb);
2009}
2010
Johannes Berg9c6bd792008-09-11 00:01:52 +02002011static void ieee80211_sta_timer(unsigned long data)
Jiri Bencf0706e822007-05-05 11:45:53 -07002012{
2013 struct ieee80211_sub_if_data *sdata =
2014 (struct ieee80211_sub_if_data *) data;
Johannes Berg46900292009-02-15 12:44:28 +01002015 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002016 struct ieee80211_local *local = sdata->local;
Jiri Bencf0706e822007-05-05 11:45:53 -07002017
Johannes Berg5bb644a2009-05-17 11:40:42 +02002018 if (local->quiescing) {
2019 set_bit(TMR_RUNNING_TIMER, &ifmgd->timers_running);
2020 return;
2021 }
2022
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04002023 ieee80211_queue_work(&local->hw, &ifmgd->work);
Jiri Bencf0706e822007-05-05 11:45:53 -07002024}
2025
Johannes Berg9c6bd792008-09-11 00:01:52 +02002026static void ieee80211_sta_work(struct work_struct *work)
Johannes Berg60f8b392008-09-08 17:44:22 +02002027{
2028 struct ieee80211_sub_if_data *sdata =
Johannes Berg46900292009-02-15 12:44:28 +01002029 container_of(work, struct ieee80211_sub_if_data, u.mgd.work);
Johannes Berg60f8b392008-09-08 17:44:22 +02002030 struct ieee80211_local *local = sdata->local;
Johannes Berg46900292009-02-15 12:44:28 +01002031 struct ieee80211_if_managed *ifmgd;
Johannes Berg60f8b392008-09-08 17:44:22 +02002032 struct sk_buff *skb;
Johannes Berg77fdaa12009-07-07 03:45:17 +02002033 struct ieee80211_mgd_work *wk, *tmp;
2034 LIST_HEAD(free_work);
2035 enum rx_mgmt_action rma;
2036 bool anybusy = false;
Johannes Berg60f8b392008-09-08 17:44:22 +02002037
2038 if (!netif_running(sdata->dev))
2039 return;
2040
Helmut Schaafbe9c422009-07-23 12:14:04 +02002041 if (local->scanning)
Johannes Berg60f8b392008-09-08 17:44:22 +02002042 return;
2043
Johannes Berg46900292009-02-15 12:44:28 +01002044 if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION))
Johannes Berg60f8b392008-09-08 17:44:22 +02002045 return;
Johannes Berg5bb644a2009-05-17 11:40:42 +02002046
2047 /*
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04002048 * ieee80211_queue_work() should have picked up most cases,
2049 * here we'll pick the the rest.
Johannes Berg5bb644a2009-05-17 11:40:42 +02002050 */
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04002051 if (WARN(local->suspended, "STA MLME work scheduled while "
2052 "going to suspend\n"))
Johannes Berg5bb644a2009-05-17 11:40:42 +02002053 return;
2054
Johannes Berg46900292009-02-15 12:44:28 +01002055 ifmgd = &sdata->u.mgd;
Johannes Berg60f8b392008-09-08 17:44:22 +02002056
Johannes Berg77fdaa12009-07-07 03:45:17 +02002057 /* first process frames to avoid timing out while a frame is pending */
Johannes Berg46900292009-02-15 12:44:28 +01002058 while ((skb = skb_dequeue(&ifmgd->skb_queue)))
Johannes Berg60f8b392008-09-08 17:44:22 +02002059 ieee80211_sta_rx_queued_mgmt(sdata, skb);
2060
Johannes Berg77fdaa12009-07-07 03:45:17 +02002061 /* then process the rest of the work */
2062 mutex_lock(&ifmgd->mtx);
Johannes Berg60f8b392008-09-08 17:44:22 +02002063
Johannes Bergb291ba12009-07-10 15:29:03 +02002064 if (ifmgd->flags & (IEEE80211_STA_BEACON_POLL |
2065 IEEE80211_STA_CONNECTION_POLL) &&
2066 ifmgd->associated) {
2067 if (time_is_after_jiffies(ifmgd->probe_timeout))
2068 run_again(ifmgd, ifmgd->probe_timeout);
2069 else {
2070 u8 bssid[ETH_ALEN];
2071 /*
2072 * We actually lost the connection ... or did we?
2073 * Let's make sure!
2074 */
2075 ifmgd->flags &= ~(IEEE80211_STA_CONNECTION_POLL |
2076 IEEE80211_STA_BEACON_POLL);
2077 memcpy(bssid, ifmgd->associated->cbss.bssid, ETH_ALEN);
2078 printk(KERN_DEBUG "No probe response from AP %pM"
2079 " after %dms, disconnecting.\n",
2080 bssid, (1000 * IEEE80211_PROBE_WAIT)/HZ);
2081 ieee80211_set_disassoc(sdata);
2082 mutex_unlock(&ifmgd->mtx);
2083 /*
2084 * must be outside lock due to cfg80211,
2085 * but that's not a problem.
2086 */
2087 ieee80211_send_deauth_disassoc(sdata, bssid,
2088 IEEE80211_STYPE_DEAUTH,
2089 WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY,
2090 NULL);
2091 mutex_lock(&ifmgd->mtx);
2092 }
2093 }
2094
Johannes Berg77fdaa12009-07-07 03:45:17 +02002095 list_for_each_entry(wk, &ifmgd->work_list, list) {
2096 if (wk->state != IEEE80211_MGD_STATE_IDLE) {
2097 anybusy = true;
2098 break;
2099 }
2100 }
Johannes Berg60f8b392008-09-08 17:44:22 +02002101
Johannes Berg5cff20e2009-04-29 12:26:17 +02002102 ieee80211_recalc_idle(local);
2103
Johannes Berg77fdaa12009-07-07 03:45:17 +02002104 if (!anybusy) {
2105 mutex_unlock(&ifmgd->mtx);
2106
2107 if (test_and_clear_bit(IEEE80211_STA_REQ_SCAN, &ifmgd->request))
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04002108 ieee80211_queue_delayed_work(&local->hw,
2109 &local->scan_work,
2110 round_jiffies_relative(0));
Johannes Berg77fdaa12009-07-07 03:45:17 +02002111 return;
Johannes Berg60f8b392008-09-08 17:44:22 +02002112 }
Johannes Berg77fdaa12009-07-07 03:45:17 +02002113
2114 list_for_each_entry_safe(wk, tmp, &ifmgd->work_list, list) {
Johannes Bergca386f32009-07-10 02:39:48 +02002115 if (time_is_after_jiffies(wk->timeout)) {
2116 /*
2117 * This work item isn't supposed to be worked on
2118 * right now, but take care to adjust the timer
2119 * properly.
2120 */
2121 run_again(ifmgd, wk->timeout);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002122 continue;
Johannes Bergca386f32009-07-10 02:39:48 +02002123 }
Johannes Berg77fdaa12009-07-07 03:45:17 +02002124
2125 switch (wk->state) {
2126 default:
2127 WARN_ON(1);
2128 /* fall through */
2129 case IEEE80211_MGD_STATE_IDLE:
2130 /* nothing */
2131 rma = RX_MGMT_NONE;
2132 break;
2133 case IEEE80211_MGD_STATE_PROBE:
2134 rma = ieee80211_direct_probe(sdata, wk);
2135 break;
2136 case IEEE80211_MGD_STATE_AUTH:
2137 rma = ieee80211_authenticate(sdata, wk);
2138 break;
2139 case IEEE80211_MGD_STATE_ASSOC:
2140 rma = ieee80211_associate(sdata, wk);
2141 break;
2142 }
2143
2144 switch (rma) {
2145 case RX_MGMT_NONE:
2146 /* no action required */
2147 break;
2148 case RX_MGMT_CFG80211_AUTH_TO:
2149 case RX_MGMT_CFG80211_ASSOC_TO:
2150 list_del(&wk->list);
2151 list_add(&wk->list, &free_work);
2152 wk->tries = rma; /* small abuse but only local */
2153 break;
2154 default:
2155 WARN(1, "unexpected: %d", rma);
2156 }
2157 }
2158
2159 mutex_unlock(&ifmgd->mtx);
2160
2161 list_for_each_entry_safe(wk, tmp, &free_work, list) {
2162 switch (wk->tries) {
2163 case RX_MGMT_CFG80211_AUTH_TO:
2164 cfg80211_send_auth_timeout(sdata->dev,
Johannes Bergcb0b4be2009-07-07 03:56:07 +02002165 wk->bss->cbss.bssid);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002166 break;
2167 case RX_MGMT_CFG80211_ASSOC_TO:
Johannes Bergcb0b4be2009-07-07 03:56:07 +02002168 cfg80211_send_assoc_timeout(sdata->dev,
2169 wk->bss->cbss.bssid);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002170 break;
2171 default:
2172 WARN(1, "unexpected: %d", wk->tries);
2173 }
2174
2175 list_del(&wk->list);
2176 kfree(wk);
2177 }
2178
2179 ieee80211_recalc_idle(local);
Johannes Berg60f8b392008-09-08 17:44:22 +02002180}
Johannes Berg0a51b272008-09-08 17:44:25 +02002181
Johannes Bergb291ba12009-07-10 15:29:03 +02002182static void ieee80211_sta_bcn_mon_timer(unsigned long data)
2183{
2184 struct ieee80211_sub_if_data *sdata =
2185 (struct ieee80211_sub_if_data *) data;
2186 struct ieee80211_local *local = sdata->local;
2187
2188 if (local->quiescing)
2189 return;
2190
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04002191 ieee80211_queue_work(&sdata->local->hw, &sdata->u.mgd.beacon_loss_work);
Johannes Bergb291ba12009-07-10 15:29:03 +02002192}
2193
2194static void ieee80211_sta_conn_mon_timer(unsigned long data)
2195{
2196 struct ieee80211_sub_if_data *sdata =
2197 (struct ieee80211_sub_if_data *) data;
2198 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2199 struct ieee80211_local *local = sdata->local;
2200
2201 if (local->quiescing)
2202 return;
2203
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04002204 ieee80211_queue_work(&local->hw, &ifmgd->monitor_work);
Johannes Bergb291ba12009-07-10 15:29:03 +02002205}
2206
2207static void ieee80211_sta_monitor_work(struct work_struct *work)
2208{
2209 struct ieee80211_sub_if_data *sdata =
2210 container_of(work, struct ieee80211_sub_if_data,
2211 u.mgd.monitor_work);
2212
2213 ieee80211_mgd_probe_ap(sdata, false);
2214}
2215
Johannes Berga1678f82008-09-11 00:01:47 +02002216static void ieee80211_restart_sta_timer(struct ieee80211_sub_if_data *sdata)
2217{
Kalle Vaload935682009-04-19 08:47:19 +03002218 if (sdata->vif.type == NL80211_IFTYPE_STATION) {
Johannes Bergb291ba12009-07-10 15:29:03 +02002219 sdata->u.mgd.flags &= ~(IEEE80211_STA_BEACON_POLL |
2220 IEEE80211_STA_CONNECTION_POLL);
Kalle Vaload935682009-04-19 08:47:19 +03002221
Johannes Bergb291ba12009-07-10 15:29:03 +02002222 /* let's probe the connection once */
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04002223 ieee80211_queue_work(&sdata->local->hw,
Johannes Bergb291ba12009-07-10 15:29:03 +02002224 &sdata->u.mgd.monitor_work);
2225 /* and do all the other regular work too */
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04002226 ieee80211_queue_work(&sdata->local->hw,
Johannes Berg46900292009-02-15 12:44:28 +01002227 &sdata->u.mgd.work);
Kalle Vaload935682009-04-19 08:47:19 +03002228 }
Johannes Berga1678f82008-09-11 00:01:47 +02002229}
2230
Johannes Berg5bb644a2009-05-17 11:40:42 +02002231#ifdef CONFIG_PM
2232void ieee80211_sta_quiesce(struct ieee80211_sub_if_data *sdata)
2233{
2234 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2235
2236 /*
2237 * we need to use atomic bitops for the running bits
2238 * only because both timers might fire at the same
2239 * time -- the code here is properly synchronised.
2240 */
2241
2242 cancel_work_sync(&ifmgd->work);
2243 cancel_work_sync(&ifmgd->beacon_loss_work);
2244 if (del_timer_sync(&ifmgd->timer))
2245 set_bit(TMR_RUNNING_TIMER, &ifmgd->timers_running);
2246
2247 cancel_work_sync(&ifmgd->chswitch_work);
2248 if (del_timer_sync(&ifmgd->chswitch_timer))
2249 set_bit(TMR_RUNNING_CHANSW, &ifmgd->timers_running);
Johannes Bergb291ba12009-07-10 15:29:03 +02002250
2251 cancel_work_sync(&ifmgd->monitor_work);
2252 /* these will just be re-established on connection */
2253 del_timer_sync(&ifmgd->conn_mon_timer);
2254 del_timer_sync(&ifmgd->bcn_mon_timer);
Johannes Berg5bb644a2009-05-17 11:40:42 +02002255}
2256
2257void ieee80211_sta_restart(struct ieee80211_sub_if_data *sdata)
2258{
2259 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2260
2261 if (test_and_clear_bit(TMR_RUNNING_TIMER, &ifmgd->timers_running))
2262 add_timer(&ifmgd->timer);
2263 if (test_and_clear_bit(TMR_RUNNING_CHANSW, &ifmgd->timers_running))
2264 add_timer(&ifmgd->chswitch_timer);
2265}
2266#endif
2267
Johannes Berg9c6bd792008-09-11 00:01:52 +02002268/* interface setup */
2269void ieee80211_sta_setup_sdata(struct ieee80211_sub_if_data *sdata)
2270{
Johannes Berg46900292009-02-15 12:44:28 +01002271 struct ieee80211_if_managed *ifmgd;
Johannes Berg9c6bd792008-09-11 00:01:52 +02002272
Johannes Berg46900292009-02-15 12:44:28 +01002273 ifmgd = &sdata->u.mgd;
2274 INIT_WORK(&ifmgd->work, ieee80211_sta_work);
Johannes Bergb291ba12009-07-10 15:29:03 +02002275 INIT_WORK(&ifmgd->monitor_work, ieee80211_sta_monitor_work);
Johannes Berg46900292009-02-15 12:44:28 +01002276 INIT_WORK(&ifmgd->chswitch_work, ieee80211_chswitch_work);
Kalle Valo04de8382009-03-22 21:57:35 +02002277 INIT_WORK(&ifmgd->beacon_loss_work, ieee80211_beacon_loss_work);
Johannes Berg46900292009-02-15 12:44:28 +01002278 setup_timer(&ifmgd->timer, ieee80211_sta_timer,
Johannes Berg9c6bd792008-09-11 00:01:52 +02002279 (unsigned long) sdata);
Johannes Bergb291ba12009-07-10 15:29:03 +02002280 setup_timer(&ifmgd->bcn_mon_timer, ieee80211_sta_bcn_mon_timer,
2281 (unsigned long) sdata);
2282 setup_timer(&ifmgd->conn_mon_timer, ieee80211_sta_conn_mon_timer,
2283 (unsigned long) sdata);
Johannes Berg46900292009-02-15 12:44:28 +01002284 setup_timer(&ifmgd->chswitch_timer, ieee80211_chswitch_timer,
Sujithc481ec92009-01-06 09:28:37 +05302285 (unsigned long) sdata);
Johannes Berg46900292009-02-15 12:44:28 +01002286 skb_queue_head_init(&ifmgd->skb_queue);
Johannes Berg9c6bd792008-09-11 00:01:52 +02002287
Johannes Berg77fdaa12009-07-07 03:45:17 +02002288 INIT_LIST_HEAD(&ifmgd->work_list);
2289
Johannes Berg46900292009-02-15 12:44:28 +01002290 ifmgd->capab = WLAN_CAPABILITY_ESS;
Johannes Bergab1faea2009-07-01 21:41:17 +02002291 ifmgd->flags = 0;
Johannes Berg176be722009-03-12 23:49:28 +01002292 if (sdata->local->hw.queues >= 4)
Johannes Berg46900292009-02-15 12:44:28 +01002293 ifmgd->flags |= IEEE80211_STA_WMM_ENABLED;
Johannes Bergbbbdff92009-04-16 13:27:42 +02002294
Johannes Berg77fdaa12009-07-07 03:45:17 +02002295 mutex_init(&ifmgd->mtx);
Johannes Berg9c6bd792008-09-11 00:01:52 +02002296}
2297
2298/* scan finished notification */
Johannes Berg0a51b272008-09-08 17:44:25 +02002299void ieee80211_mlme_notify_scan_completed(struct ieee80211_local *local)
2300{
2301 struct ieee80211_sub_if_data *sdata = local->scan_sdata;
Johannes Berga1678f82008-09-11 00:01:47 +02002302
2303 /* Restart STA timers */
2304 rcu_read_lock();
2305 list_for_each_entry_rcu(sdata, &local->interfaces, list)
2306 ieee80211_restart_sta_timer(sdata);
2307 rcu_read_unlock();
Johannes Berg0a51b272008-09-08 17:44:25 +02002308}
Johannes Berg10f644a2009-04-16 13:17:25 +02002309
2310int ieee80211_max_network_latency(struct notifier_block *nb,
2311 unsigned long data, void *dummy)
2312{
2313 s32 latency_usec = (s32) data;
2314 struct ieee80211_local *local =
2315 container_of(nb, struct ieee80211_local,
2316 network_latency_notifier);
2317
2318 mutex_lock(&local->iflist_mtx);
2319 ieee80211_recalc_ps(local, latency_usec);
2320 mutex_unlock(&local->iflist_mtx);
2321
2322 return 0;
2323}
Johannes Berg77fdaa12009-07-07 03:45:17 +02002324
2325/* config hooks */
2326int ieee80211_mgd_auth(struct ieee80211_sub_if_data *sdata,
2327 struct cfg80211_auth_request *req)
2328{
2329 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2330 const u8 *ssid;
2331 struct ieee80211_mgd_work *wk;
2332 u16 auth_alg;
2333
2334 switch (req->auth_type) {
2335 case NL80211_AUTHTYPE_OPEN_SYSTEM:
2336 auth_alg = WLAN_AUTH_OPEN;
2337 break;
2338 case NL80211_AUTHTYPE_SHARED_KEY:
2339 auth_alg = WLAN_AUTH_SHARED_KEY;
2340 break;
2341 case NL80211_AUTHTYPE_FT:
2342 auth_alg = WLAN_AUTH_FT;
2343 break;
2344 case NL80211_AUTHTYPE_NETWORK_EAP:
2345 auth_alg = WLAN_AUTH_LEAP;
2346 break;
2347 default:
2348 return -EOPNOTSUPP;
2349 }
2350
2351 wk = kzalloc(sizeof(*wk) + req->ie_len, GFP_KERNEL);
2352 if (!wk)
2353 return -ENOMEM;
2354
2355 wk->bss = (void *)req->bss;
2356
2357 if (req->ie && req->ie_len) {
2358 memcpy(wk->ie, req->ie, req->ie_len);
2359 wk->ie_len = req->ie_len;
2360 }
2361
Johannes Bergfffd0932009-07-08 14:22:54 +02002362 if (req->key && req->key_len) {
2363 wk->key_len = req->key_len;
2364 wk->key_idx = req->key_idx;
2365 memcpy(wk->key, req->key, req->key_len);
2366 }
2367
Johannes Berg77fdaa12009-07-07 03:45:17 +02002368 ssid = ieee80211_bss_get_ie(req->bss, WLAN_EID_SSID);
2369 memcpy(wk->ssid, ssid + 2, ssid[1]);
2370 wk->ssid_len = ssid[1];
2371
2372 wk->state = IEEE80211_MGD_STATE_PROBE;
2373 wk->auth_alg = auth_alg;
Johannes Berg48531842009-07-23 16:50:16 +02002374 wk->timeout = jiffies; /* run right away */
Johannes Berg77fdaa12009-07-07 03:45:17 +02002375
2376 /*
2377 * XXX: if still associated need to tell AP that we're going
2378 * to sleep and then change channel etc.
2379 */
2380 sdata->local->oper_channel = req->bss->channel;
2381 ieee80211_hw_config(sdata->local, 0);
2382
2383 mutex_lock(&ifmgd->mtx);
2384 list_add(&wk->list, &sdata->u.mgd.work_list);
2385 mutex_unlock(&ifmgd->mtx);
2386
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04002387 ieee80211_queue_work(&sdata->local->hw, &sdata->u.mgd.work);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002388 return 0;
2389}
2390
2391int ieee80211_mgd_assoc(struct ieee80211_sub_if_data *sdata,
2392 struct cfg80211_assoc_request *req)
2393{
2394 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2395 struct ieee80211_mgd_work *wk, *found = NULL;
2396 int i, err;
2397
2398 mutex_lock(&ifmgd->mtx);
2399
2400 list_for_each_entry(wk, &ifmgd->work_list, list) {
2401 if (&wk->bss->cbss == req->bss &&
2402 wk->state == IEEE80211_MGD_STATE_IDLE) {
2403 found = wk;
2404 break;
2405 }
2406 }
2407
2408 if (!found) {
2409 err = -ENOLINK;
2410 goto out;
2411 }
2412
2413 list_del(&found->list);
2414
2415 wk = krealloc(found, sizeof(*wk) + req->ie_len, GFP_KERNEL);
2416 if (!wk) {
2417 list_add(&found->list, &ifmgd->work_list);
2418 err = -ENOMEM;
2419 goto out;
2420 }
2421
2422 list_add(&wk->list, &ifmgd->work_list);
2423
2424 ifmgd->flags &= ~IEEE80211_STA_DISABLE_11N;
2425
2426 for (i = 0; i < req->crypto.n_ciphers_pairwise; i++)
2427 if (req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_WEP40 ||
2428 req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_TKIP ||
2429 req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_WEP104)
2430 ifmgd->flags |= IEEE80211_STA_DISABLE_11N;
2431
2432 sdata->local->oper_channel = req->bss->channel;
2433 ieee80211_hw_config(sdata->local, 0);
2434
2435 if (req->ie && req->ie_len) {
2436 memcpy(wk->ie, req->ie, req->ie_len);
2437 wk->ie_len = req->ie_len;
2438 } else
2439 wk->ie_len = 0;
2440
2441 if (req->prev_bssid)
2442 memcpy(wk->prev_bssid, req->prev_bssid, ETH_ALEN);
2443
2444 wk->state = IEEE80211_MGD_STATE_ASSOC;
2445 wk->tries = 0;
Johannes Berg48531842009-07-23 16:50:16 +02002446 wk->timeout = jiffies; /* run right away */
Johannes Berg77fdaa12009-07-07 03:45:17 +02002447
2448 if (req->use_mfp) {
2449 ifmgd->mfp = IEEE80211_MFP_REQUIRED;
2450 ifmgd->flags |= IEEE80211_STA_MFP_ENABLED;
2451 } else {
2452 ifmgd->mfp = IEEE80211_MFP_DISABLED;
2453 ifmgd->flags &= ~IEEE80211_STA_MFP_ENABLED;
2454 }
2455
2456 if (req->crypto.control_port)
2457 ifmgd->flags |= IEEE80211_STA_CONTROL_PORT;
2458 else
2459 ifmgd->flags &= ~IEEE80211_STA_CONTROL_PORT;
2460
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04002461 ieee80211_queue_work(&sdata->local->hw, &sdata->u.mgd.work);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002462
2463 err = 0;
2464
2465 out:
2466 mutex_unlock(&ifmgd->mtx);
2467 return err;
2468}
2469
2470int ieee80211_mgd_deauth(struct ieee80211_sub_if_data *sdata,
Johannes Berg667503d2009-07-07 03:56:11 +02002471 struct cfg80211_deauth_request *req,
2472 void *cookie)
Johannes Berg77fdaa12009-07-07 03:45:17 +02002473{
2474 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2475 struct ieee80211_mgd_work *wk;
2476 const u8 *bssid = NULL;
2477
2478 printk(KERN_DEBUG "%s: deauthenticating by local choice (reason=%d)\n",
2479 sdata->dev->name, req->reason_code);
2480
2481 mutex_lock(&ifmgd->mtx);
2482
2483 if (ifmgd->associated && &ifmgd->associated->cbss == req->bss) {
2484 bssid = req->bss->bssid;
Johannes Bergb291ba12009-07-10 15:29:03 +02002485 ieee80211_set_disassoc(sdata);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002486 } else list_for_each_entry(wk, &ifmgd->work_list, list) {
2487 if (&wk->bss->cbss == req->bss) {
2488 bssid = req->bss->bssid;
2489 list_del(&wk->list);
2490 kfree(wk);
2491 break;
2492 }
2493 }
2494
Johannes Berg8d8b2612009-07-25 11:58:36 +02002495 /*
2496 * cfg80211 should catch this ... but it's racy since
2497 * we can receive a deauth frame, process it, hand it
2498 * to cfg80211 while that's in a locked section already
2499 * trying to tell us that the user wants to disconnect.
2500 */
2501 if (!bssid) {
Johannes Berg77fdaa12009-07-07 03:45:17 +02002502 mutex_unlock(&ifmgd->mtx);
2503 return -ENOLINK;
2504 }
2505
2506 mutex_unlock(&ifmgd->mtx);
2507
2508 ieee80211_send_deauth_disassoc(sdata, bssid,
Johannes Berg667503d2009-07-07 03:56:11 +02002509 IEEE80211_STYPE_DEAUTH, req->reason_code,
2510 cookie);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002511
2512 return 0;
2513}
2514
2515int ieee80211_mgd_disassoc(struct ieee80211_sub_if_data *sdata,
Johannes Berg667503d2009-07-07 03:56:11 +02002516 struct cfg80211_disassoc_request *req,
2517 void *cookie)
Johannes Berg77fdaa12009-07-07 03:45:17 +02002518{
2519 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2520
2521 printk(KERN_DEBUG "%s: disassociating by local choice (reason=%d)\n",
2522 sdata->dev->name, req->reason_code);
2523
2524 mutex_lock(&ifmgd->mtx);
2525
Johannes Berg8d8b2612009-07-25 11:58:36 +02002526 /*
2527 * cfg80211 should catch this ... but it's racy since
2528 * we can receive a disassoc frame, process it, hand it
2529 * to cfg80211 while that's in a locked section already
2530 * trying to tell us that the user wants to disconnect.
2531 */
2532 if (&ifmgd->associated->cbss != req->bss) {
Johannes Berg77fdaa12009-07-07 03:45:17 +02002533 mutex_unlock(&ifmgd->mtx);
2534 return -ENOLINK;
2535 }
2536
Johannes Bergb291ba12009-07-10 15:29:03 +02002537 ieee80211_set_disassoc(sdata);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002538
2539 mutex_unlock(&ifmgd->mtx);
2540
2541 ieee80211_send_deauth_disassoc(sdata, req->bss->bssid,
Johannes Berg667503d2009-07-07 03:56:11 +02002542 IEEE80211_STYPE_DISASSOC, req->reason_code,
2543 cookie);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002544 return 0;
2545}