blob: 81b2269e8f3af465d89d6b8144637b510ffd4245 [file] [log] [blame]
Jiri Bencf0706e82007-05-05 11:45:53 -07001/*
2 * BSS client mode implementation
Jouni Malinen5394af42009-01-08 13:31:59 +02003 * Copyright 2003-2008, Jouni Malinen <j@w1.fi>
Jiri Bencf0706e82007-05-05 11:45:53 -07004 * Copyright 2004, Instant802 Networks, Inc.
5 * Copyright 2005, Devicescape Software, Inc.
6 * Copyright 2006-2007 Jiri Benc <jbenc@suse.cz>
7 * Copyright 2007, Michael Wu <flamingice@sourmilk.net>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 */
13
Geert Uytterhoeven5b323ed2007-05-08 18:40:27 -070014#include <linux/delay.h>
Jiri Bencf0706e82007-05-05 11:45:53 -070015#include <linux/if_ether.h>
16#include <linux/skbuff.h>
Jiri Bencf0706e82007-05-05 11:45:53 -070017#include <linux/if_arp.h>
Jiri Bencf0706e82007-05-05 11:45:53 -070018#include <linux/etherdevice.h>
Paul Gortmakerd9b93842011-09-18 13:21:27 -040019#include <linux/moduleparam.h>
Johannes Bergd0709a62008-02-25 16:27:46 +010020#include <linux/rtnetlink.h>
Jean Pihete8db0be2011-08-25 15:35:03 +020021#include <linux/pm_qos.h>
Johannes Bergd91f36d2009-04-16 13:17:26 +020022#include <linux/crc32.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090023#include <linux/slab.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040024#include <linux/export.h>
Jiri Bencf0706e82007-05-05 11:45:53 -070025#include <net/mac80211.h>
Johannes Berg472dbc42008-09-11 00:01:49 +020026#include <asm/unaligned.h>
Johannes Berg60f8b392008-09-08 17:44:22 +020027
Jiri Bencf0706e82007-05-05 11:45:53 -070028#include "ieee80211_i.h"
Johannes Berg24487982009-04-23 18:52:52 +020029#include "driver-ops.h"
Johannes Berg2c8dccc2008-04-08 15:14:40 -040030#include "rate.h"
31#include "led.h"
Jiri Bencf0706e82007-05-05 11:45:53 -070032
Johannes Berg66e67e42012-01-20 13:55:27 +010033#define IEEE80211_AUTH_TIMEOUT (HZ / 5)
34#define IEEE80211_AUTH_MAX_TRIES 3
35#define IEEE80211_AUTH_WAIT_ASSOC (HZ * 5)
36#define IEEE80211_ASSOC_TIMEOUT (HZ / 5)
37#define IEEE80211_ASSOC_MAX_TRIES 3
38
Ben Greear180205b2011-02-04 15:30:24 -080039static int max_nullfunc_tries = 2;
40module_param(max_nullfunc_tries, int, 0644);
41MODULE_PARM_DESC(max_nullfunc_tries,
42 "Maximum nullfunc tx tries before disconnecting (reason 4).");
43
44static int max_probe_tries = 5;
45module_param(max_probe_tries, int, 0644);
46MODULE_PARM_DESC(max_probe_tries,
47 "Maximum probe tries before disconnecting (reason 4).");
Johannes Bergb291ba12009-07-10 15:29:03 +020048
49/*
Felix Fietkau7ccc8bd2010-11-19 22:55:38 +010050 * Beacon loss timeout is calculated as N frames times the
51 * advertised beacon interval. This may need to be somewhat
52 * higher than what hardware might detect to account for
53 * delays in the host processing frames. But since we also
54 * probe on beacon miss before declaring the connection lost
55 * default to what we want.
Johannes Bergb291ba12009-07-10 15:29:03 +020056 */
Felix Fietkau7ccc8bd2010-11-19 22:55:38 +010057#define IEEE80211_BEACON_LOSS_COUNT 7
58
Johannes Bergb291ba12009-07-10 15:29:03 +020059/*
60 * Time the connection can be idle before we probe
61 * it to see if we can still talk to the AP.
62 */
Maxim Levitskyd1c50912009-07-31 18:54:23 +030063#define IEEE80211_CONNECTION_IDLE_TIME (30 * HZ)
Johannes Bergb291ba12009-07-10 15:29:03 +020064/*
65 * Time we wait for a probe response after sending
66 * a probe request because of beacon loss or for
67 * checking the connection still works.
68 */
Ben Greear180205b2011-02-04 15:30:24 -080069static int probe_wait_ms = 500;
70module_param(probe_wait_ms, int, 0644);
71MODULE_PARM_DESC(probe_wait_ms,
72 "Maximum time(ms) to wait for probe response"
73 " before disconnecting (reason 4).");
Jiri Bencf0706e82007-05-05 11:45:53 -070074
Jouni Malinen17e4ec12010-03-29 23:28:30 -070075/*
76 * Weight given to the latest Beacon frame when calculating average signal
77 * strength for Beacon frames received in the current BSS. This must be
78 * between 1 and 15.
79 */
80#define IEEE80211_SIGNAL_AVE_WEIGHT 3
81
Jouni Malinen391a2002010-08-27 22:22:00 +030082/*
83 * How many Beacon frames need to have been used in average signal strength
84 * before starting to indicate signal change events.
85 */
86#define IEEE80211_SIGNAL_AVE_MIN_COUNT 4
87
Johannes Berg5bb644a2009-05-17 11:40:42 +020088#define TMR_RUNNING_TIMER 0
89#define TMR_RUNNING_CHANSW 1
90
Johannes Berg5fef7db2012-02-24 13:50:52 +010091#define DEAUTH_DISASSOC_LEN (24 /* hdr */ + 2 /* reason */)
92
Johannes Berg77fdaa12009-07-07 03:45:17 +020093/*
94 * All cfg80211 functions have to be called outside a locked
95 * section so that they can acquire a lock themselves... This
96 * is much simpler than queuing up things in cfg80211, but we
97 * do need some indirection for that here.
98 */
99enum rx_mgmt_action {
100 /* no action required */
101 RX_MGMT_NONE,
102
Johannes Berg77fdaa12009-07-07 03:45:17 +0200103 /* caller must call cfg80211_send_deauth() */
104 RX_MGMT_CFG80211_DEAUTH,
105
106 /* caller must call cfg80211_send_disassoc() */
107 RX_MGMT_CFG80211_DISASSOC,
Johannes Berg66e67e42012-01-20 13:55:27 +0100108
109 /* caller must call cfg80211_send_rx_auth() */
110 RX_MGMT_CFG80211_RX_AUTH,
111
112 /* caller must call cfg80211_send_rx_assoc() */
113 RX_MGMT_CFG80211_RX_ASSOC,
114
115 /* caller must call cfg80211_send_assoc_timeout() */
116 RX_MGMT_CFG80211_ASSOC_TIMEOUT,
Johannes Berg77fdaa12009-07-07 03:45:17 +0200117};
118
Johannes Berg5484e232008-09-08 17:44:27 +0200119/* utils */
Johannes Berg77fdaa12009-07-07 03:45:17 +0200120static inline void ASSERT_MGD_MTX(struct ieee80211_if_managed *ifmgd)
121{
Johannes Berg46a5eba2010-09-15 13:28:15 +0200122 lockdep_assert_held(&ifmgd->mtx);
Johannes Berg77fdaa12009-07-07 03:45:17 +0200123}
124
Johannes Bergca386f32009-07-10 02:39:48 +0200125/*
126 * We can have multiple work items (and connection probing)
127 * scheduling this timer, but we need to take care to only
128 * reschedule it when it should fire _earlier_ than it was
129 * asked for before, or if it's not pending right now. This
130 * function ensures that. Note that it then is required to
131 * run this function for all timeouts after the first one
132 * has happened -- the work that runs from this timer will
133 * do that.
134 */
Johannes Berg66e67e42012-01-20 13:55:27 +0100135static void run_again(struct ieee80211_if_managed *ifmgd, unsigned long timeout)
Johannes Bergca386f32009-07-10 02:39:48 +0200136{
137 ASSERT_MGD_MTX(ifmgd);
138
139 if (!timer_pending(&ifmgd->timer) ||
140 time_before(timeout, ifmgd->timer.expires))
141 mod_timer(&ifmgd->timer, timeout);
142}
143
Luis R. Rodriguezd3a910a2010-09-16 15:12:32 -0400144void ieee80211_sta_reset_beacon_monitor(struct ieee80211_sub_if_data *sdata)
Johannes Bergb291ba12009-07-10 15:29:03 +0200145{
Johannes Bergc1288b12012-01-19 09:29:57 +0100146 if (sdata->vif.driver_flags & IEEE80211_VIF_BEACON_FILTER)
Johannes Bergb291ba12009-07-10 15:29:03 +0200147 return;
148
Johannes Berg7eeff742012-07-18 10:27:27 +0200149 if (sdata->local->hw.flags & IEEE80211_HW_CONNECTION_MONITOR)
150 return;
151
Johannes Bergb291ba12009-07-10 15:29:03 +0200152 mod_timer(&sdata->u.mgd.bcn_mon_timer,
Felix Fietkau7ccc8bd2010-11-19 22:55:38 +0100153 round_jiffies_up(jiffies + sdata->u.mgd.beacon_timeout));
Johannes Bergb291ba12009-07-10 15:29:03 +0200154}
155
Luis R. Rodriguezbe099e82010-09-16 15:12:29 -0400156void ieee80211_sta_reset_conn_monitor(struct ieee80211_sub_if_data *sdata)
157{
Luis R. Rodriguez0c699c32010-09-16 15:12:30 -0400158 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
159
Stanislaw Gruszka86281722011-02-25 14:46:02 +0100160 if (unlikely(!sdata->u.mgd.associated))
161 return;
162
Luis R. Rodriguezbe099e82010-09-16 15:12:29 -0400163 if (sdata->local->hw.flags & IEEE80211_HW_CONNECTION_MONITOR)
164 return;
165
166 mod_timer(&sdata->u.mgd.conn_mon_timer,
167 round_jiffies_up(jiffies + IEEE80211_CONNECTION_IDLE_TIME));
Luis R. Rodriguez0c699c32010-09-16 15:12:30 -0400168
169 ifmgd->probe_send_count = 0;
Luis R. Rodriguezbe099e82010-09-16 15:12:29 -0400170}
171
Johannes Berg5484e232008-09-08 17:44:27 +0200172static int ecw2cw(int ecw)
Johannes Berg60f8b392008-09-08 17:44:22 +0200173{
Johannes Berg5484e232008-09-08 17:44:27 +0200174 return (1 << ecw) - 1;
Johannes Berg60f8b392008-09-08 17:44:22 +0200175}
176
Johannes Berg24398e32012-03-28 10:58:36 +0200177static u32 ieee80211_config_ht_tx(struct ieee80211_sub_if_data *sdata,
178 struct ieee80211_ht_operation *ht_oper,
179 const u8 *bssid, bool reconfig)
Johannes Bergd5522e02009-03-30 13:23:35 +0200180{
181 struct ieee80211_local *local = sdata->local;
182 struct ieee80211_supported_band *sband;
Johannes Bergd5522e02009-03-30 13:23:35 +0200183 struct sta_info *sta;
184 u32 changed = 0;
Johannes Berg9ed6bcc2009-05-08 20:47:39 +0200185 u16 ht_opmode;
Johannes Berg64f68e52012-03-28 10:58:37 +0200186 bool disable_40 = false;
Johannes Bergd5522e02009-03-30 13:23:35 +0200187
188 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
Johannes Berg0aaffa92010-05-05 15:28:27 +0200189
Johannes Berg64f68e52012-03-28 10:58:37 +0200190 switch (sdata->vif.bss_conf.channel_type) {
191 case NL80211_CHAN_HT40PLUS:
192 if (local->hw.conf.channel->flags & IEEE80211_CHAN_NO_HT40PLUS)
193 disable_40 = true;
194 break;
195 case NL80211_CHAN_HT40MINUS:
196 if (local->hw.conf.channel->flags & IEEE80211_CHAN_NO_HT40MINUS)
197 disable_40 = true;
198 break;
199 default:
200 break;
201 }
Johannes Bergd5522e02009-03-30 13:23:35 +0200202
Johannes Berg24398e32012-03-28 10:58:36 +0200203 /* This can change during the lifetime of the BSS */
204 if (!(ht_oper->ht_param & IEEE80211_HT_PARAM_CHAN_WIDTH_ANY))
Johannes Berg64f68e52012-03-28 10:58:37 +0200205 disable_40 = true;
Johannes Bergd5522e02009-03-30 13:23:35 +0200206
Johannes Berg64f68e52012-03-28 10:58:37 +0200207 mutex_lock(&local->sta_mtx);
208 sta = sta_info_get(sdata, bssid);
209
210 WARN_ON_ONCE(!sta);
211
212 if (sta && !sta->supports_40mhz)
213 disable_40 = true;
214
215 if (sta && (!reconfig ||
Rajkumar Manoharan91a00992012-04-25 20:24:24 +0530216 (disable_40 != !(sta->sta.ht_cap.cap &
Johannes Berg64f68e52012-03-28 10:58:37 +0200217 IEEE80211_HT_CAP_SUP_WIDTH_20_40)))) {
Rajkumar Manoharan7cc44ed2011-09-16 15:32:34 +0530218
Johannes Berg64f68e52012-03-28 10:58:37 +0200219 if (disable_40)
220 sta->sta.ht_cap.cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
221 else
222 sta->sta.ht_cap.cap |= IEEE80211_HT_CAP_SUP_WIDTH_20_40;
Rajkumar Manoharan7cc44ed2011-09-16 15:32:34 +0530223
Johannes Berg64f68e52012-03-28 10:58:37 +0200224 rate_control_rate_update(local, sband, sta,
Johannes Berg8f727ef2012-03-30 08:43:32 +0200225 IEEE80211_RC_BW_CHANGED);
Johannes Berg0aaffa92010-05-05 15:28:27 +0200226 }
Johannes Berg64f68e52012-03-28 10:58:37 +0200227 mutex_unlock(&local->sta_mtx);
Johannes Bergd5522e02009-03-30 13:23:35 +0200228
Johannes Berg074d46d2012-03-15 19:45:16 +0100229 ht_opmode = le16_to_cpu(ht_oper->operation_mode);
Johannes Bergd5522e02009-03-30 13:23:35 +0200230
231 /* if bss configuration changed store the new one */
Johannes Berg24398e32012-03-28 10:58:36 +0200232 if (!reconfig || (sdata->vif.bss_conf.ht_operation_mode != ht_opmode)) {
Johannes Bergd5522e02009-03-30 13:23:35 +0200233 changed |= BSS_CHANGED_HT;
Johannes Berg9ed6bcc2009-05-08 20:47:39 +0200234 sdata->vif.bss_conf.ht_operation_mode = ht_opmode;
Johannes Bergd5522e02009-03-30 13:23:35 +0200235 }
236
237 return changed;
238}
239
Johannes Berg9c6bd792008-09-11 00:01:52 +0200240/* frame sending functions */
241
Johannes Berg66e67e42012-01-20 13:55:27 +0100242static int ieee80211_compatible_rates(const u8 *supp_rates, int supp_rates_len,
243 struct ieee80211_supported_band *sband,
244 u32 *rates)
245{
246 int i, j, count;
247 *rates = 0;
248 count = 0;
249 for (i = 0; i < supp_rates_len; i++) {
250 int rate = (supp_rates[i] & 0x7F) * 5;
251
252 for (j = 0; j < sband->n_bitrates; j++)
253 if (sband->bitrates[j].bitrate == rate) {
254 *rates |= BIT(j);
255 count++;
256 break;
257 }
258 }
259
260 return count;
261}
262
263static void ieee80211_add_ht_ie(struct ieee80211_sub_if_data *sdata,
Johannes Berg9dde6422012-05-16 23:43:19 +0200264 struct sk_buff *skb, u8 ap_ht_param,
Johannes Berg66e67e42012-01-20 13:55:27 +0100265 struct ieee80211_supported_band *sband,
266 struct ieee80211_channel *channel,
267 enum ieee80211_smps_mode smps)
268{
Johannes Berg66e67e42012-01-20 13:55:27 +0100269 u8 *pos;
270 u32 flags = channel->flags;
271 u16 cap;
272 struct ieee80211_sta_ht_cap ht_cap;
273
274 BUILD_BUG_ON(sizeof(ht_cap) != sizeof(sband->ht_cap));
275
Johannes Berg66e67e42012-01-20 13:55:27 +0100276 memcpy(&ht_cap, &sband->ht_cap, sizeof(ht_cap));
277 ieee80211_apply_htcap_overrides(sdata, &ht_cap);
278
Johannes Berg66e67e42012-01-20 13:55:27 +0100279 /* determine capability flags */
280 cap = ht_cap.cap;
281
Johannes Berg9dde6422012-05-16 23:43:19 +0200282 switch (ap_ht_param & IEEE80211_HT_PARAM_CHA_SEC_OFFSET) {
Johannes Berg66e67e42012-01-20 13:55:27 +0100283 case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
284 if (flags & IEEE80211_CHAN_NO_HT40PLUS) {
285 cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
286 cap &= ~IEEE80211_HT_CAP_SGI_40;
287 }
288 break;
289 case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
290 if (flags & IEEE80211_CHAN_NO_HT40MINUS) {
291 cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
292 cap &= ~IEEE80211_HT_CAP_SGI_40;
293 }
294 break;
295 }
296
Johannes Berg24398e32012-03-28 10:58:36 +0200297 /*
298 * If 40 MHz was disabled associate as though we weren't
299 * capable of 40 MHz -- some broken APs will never fall
300 * back to trying to transmit in 20 MHz.
301 */
302 if (sdata->u.mgd.flags & IEEE80211_STA_DISABLE_40MHZ) {
303 cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
304 cap &= ~IEEE80211_HT_CAP_SGI_40;
305 }
306
Johannes Berg66e67e42012-01-20 13:55:27 +0100307 /* set SM PS mode properly */
308 cap &= ~IEEE80211_HT_CAP_SM_PS;
309 switch (smps) {
310 case IEEE80211_SMPS_AUTOMATIC:
311 case IEEE80211_SMPS_NUM_MODES:
312 WARN_ON(1);
313 case IEEE80211_SMPS_OFF:
314 cap |= WLAN_HT_CAP_SM_PS_DISABLED <<
315 IEEE80211_HT_CAP_SM_PS_SHIFT;
316 break;
317 case IEEE80211_SMPS_STATIC:
318 cap |= WLAN_HT_CAP_SM_PS_STATIC <<
319 IEEE80211_HT_CAP_SM_PS_SHIFT;
320 break;
321 case IEEE80211_SMPS_DYNAMIC:
322 cap |= WLAN_HT_CAP_SM_PS_DYNAMIC <<
323 IEEE80211_HT_CAP_SM_PS_SHIFT;
324 break;
325 }
326
327 /* reserve and fill IE */
328 pos = skb_put(skb, sizeof(struct ieee80211_ht_cap) + 2);
329 ieee80211_ie_build_ht_cap(pos, &ht_cap, cap);
330}
331
Mahesh Palivelad545dab2012-07-24 03:33:10 +0000332static void ieee80211_add_vht_ie(struct ieee80211_sub_if_data *sdata,
333 struct sk_buff *skb,
334 struct ieee80211_supported_band *sband)
335{
336 u8 *pos;
337 u32 cap;
338 struct ieee80211_sta_vht_cap vht_cap;
339
340 BUILD_BUG_ON(sizeof(vht_cap) != sizeof(sband->vht_cap));
341
342 memcpy(&vht_cap, &sband->vht_cap, sizeof(vht_cap));
343
344 /* determine capability flags */
345 cap = vht_cap.cap;
346
347 /* reserve and fill IE */
348 pos = skb_put(skb, sizeof(struct ieee80211_vht_capabilities) + 2);
349 ieee80211_ie_build_vht_cap(pos, &vht_cap, cap);
350}
351
Johannes Berg66e67e42012-01-20 13:55:27 +0100352static void ieee80211_send_assoc(struct ieee80211_sub_if_data *sdata)
353{
354 struct ieee80211_local *local = sdata->local;
355 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
356 struct ieee80211_mgd_assoc_data *assoc_data = ifmgd->assoc_data;
357 struct sk_buff *skb;
358 struct ieee80211_mgmt *mgmt;
359 u8 *pos, qos_info;
360 size_t offset = 0, noffset;
361 int i, count, rates_len, supp_rates_len;
362 u16 capab;
363 struct ieee80211_supported_band *sband;
364 u32 rates = 0;
Johannes Berg66e67e42012-01-20 13:55:27 +0100365
366 lockdep_assert_held(&ifmgd->mtx);
367
368 sband = local->hw.wiphy->bands[local->oper_channel->band];
369
370 if (assoc_data->supp_rates_len) {
371 /*
372 * Get all rates supported by the device and the AP as
373 * some APs don't like getting a superset of their rates
374 * in the association request (e.g. D-Link DAP 1353 in
375 * b-only mode)...
376 */
377 rates_len = ieee80211_compatible_rates(assoc_data->supp_rates,
378 assoc_data->supp_rates_len,
379 sband, &rates);
380 } else {
381 /*
382 * In case AP not provide any supported rates information
383 * before association, we send information element(s) with
384 * all rates that we support.
385 */
386 rates = ~0;
387 rates_len = sband->n_bitrates;
388 }
389
390 skb = alloc_skb(local->hw.extra_tx_headroom +
391 sizeof(*mgmt) + /* bit too much but doesn't matter */
392 2 + assoc_data->ssid_len + /* SSID */
393 4 + rates_len + /* (extended) rates */
394 4 + /* power capability */
395 2 + 2 * sband->n_channels + /* supported channels */
396 2 + sizeof(struct ieee80211_ht_cap) + /* HT */
Mahesh Palivelad545dab2012-07-24 03:33:10 +0000397 2 + sizeof(struct ieee80211_vht_capabilities) + /* VHT */
Johannes Berg66e67e42012-01-20 13:55:27 +0100398 assoc_data->ie_len + /* extra IEs */
399 9, /* WMM */
400 GFP_KERNEL);
401 if (!skb)
402 return;
403
404 skb_reserve(skb, local->hw.extra_tx_headroom);
405
406 capab = WLAN_CAPABILITY_ESS;
407
408 if (sband->band == IEEE80211_BAND_2GHZ) {
409 if (!(local->hw.flags & IEEE80211_HW_2GHZ_SHORT_SLOT_INCAPABLE))
410 capab |= WLAN_CAPABILITY_SHORT_SLOT_TIME;
411 if (!(local->hw.flags & IEEE80211_HW_2GHZ_SHORT_PREAMBLE_INCAPABLE))
412 capab |= WLAN_CAPABILITY_SHORT_PREAMBLE;
413 }
414
415 if (assoc_data->capability & WLAN_CAPABILITY_PRIVACY)
416 capab |= WLAN_CAPABILITY_PRIVACY;
417
418 if ((assoc_data->capability & WLAN_CAPABILITY_SPECTRUM_MGMT) &&
419 (local->hw.flags & IEEE80211_HW_SPECTRUM_MGMT))
420 capab |= WLAN_CAPABILITY_SPECTRUM_MGMT;
421
422 mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24);
423 memset(mgmt, 0, 24);
424 memcpy(mgmt->da, assoc_data->bss->bssid, ETH_ALEN);
425 memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN);
426 memcpy(mgmt->bssid, assoc_data->bss->bssid, ETH_ALEN);
427
428 if (!is_zero_ether_addr(assoc_data->prev_bssid)) {
429 skb_put(skb, 10);
430 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
431 IEEE80211_STYPE_REASSOC_REQ);
432 mgmt->u.reassoc_req.capab_info = cpu_to_le16(capab);
433 mgmt->u.reassoc_req.listen_interval =
434 cpu_to_le16(local->hw.conf.listen_interval);
435 memcpy(mgmt->u.reassoc_req.current_ap, assoc_data->prev_bssid,
436 ETH_ALEN);
437 } else {
438 skb_put(skb, 4);
439 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
440 IEEE80211_STYPE_ASSOC_REQ);
441 mgmt->u.assoc_req.capab_info = cpu_to_le16(capab);
442 mgmt->u.assoc_req.listen_interval =
443 cpu_to_le16(local->hw.conf.listen_interval);
444 }
445
446 /* SSID */
447 pos = skb_put(skb, 2 + assoc_data->ssid_len);
448 *pos++ = WLAN_EID_SSID;
449 *pos++ = assoc_data->ssid_len;
450 memcpy(pos, assoc_data->ssid, assoc_data->ssid_len);
451
452 /* add all rates which were marked to be used above */
453 supp_rates_len = rates_len;
454 if (supp_rates_len > 8)
455 supp_rates_len = 8;
456
457 pos = skb_put(skb, supp_rates_len + 2);
458 *pos++ = WLAN_EID_SUPP_RATES;
459 *pos++ = supp_rates_len;
460
461 count = 0;
462 for (i = 0; i < sband->n_bitrates; i++) {
463 if (BIT(i) & rates) {
464 int rate = sband->bitrates[i].bitrate;
465 *pos++ = (u8) (rate / 5);
466 if (++count == 8)
467 break;
468 }
469 }
470
471 if (rates_len > count) {
472 pos = skb_put(skb, rates_len - count + 2);
473 *pos++ = WLAN_EID_EXT_SUPP_RATES;
474 *pos++ = rates_len - count;
475
476 for (i++; i < sband->n_bitrates; i++) {
477 if (BIT(i) & rates) {
478 int rate = sband->bitrates[i].bitrate;
479 *pos++ = (u8) (rate / 5);
480 }
481 }
482 }
483
484 if (capab & WLAN_CAPABILITY_SPECTRUM_MGMT) {
485 /* 1. power capabilities */
486 pos = skb_put(skb, 4);
487 *pos++ = WLAN_EID_PWR_CAPABILITY;
488 *pos++ = 2;
489 *pos++ = 0; /* min tx power */
490 *pos++ = local->oper_channel->max_power; /* max tx power */
491
492 /* 2. supported channels */
493 /* TODO: get this in reg domain format */
494 pos = skb_put(skb, 2 * sband->n_channels + 2);
495 *pos++ = WLAN_EID_SUPPORTED_CHANNELS;
496 *pos++ = 2 * sband->n_channels;
497 for (i = 0; i < sband->n_channels; i++) {
498 *pos++ = ieee80211_frequency_to_channel(
499 sband->channels[i].center_freq);
500 *pos++ = 1; /* one channel in the subband*/
501 }
502 }
503
504 /* if present, add any custom IEs that go before HT */
505 if (assoc_data->ie_len && assoc_data->ie) {
506 static const u8 before_ht[] = {
507 WLAN_EID_SSID,
508 WLAN_EID_SUPP_RATES,
509 WLAN_EID_EXT_SUPP_RATES,
510 WLAN_EID_PWR_CAPABILITY,
511 WLAN_EID_SUPPORTED_CHANNELS,
512 WLAN_EID_RSN,
513 WLAN_EID_QOS_CAPA,
514 WLAN_EID_RRM_ENABLED_CAPABILITIES,
515 WLAN_EID_MOBILITY_DOMAIN,
516 WLAN_EID_SUPPORTED_REGULATORY_CLASSES,
517 };
518 noffset = ieee80211_ie_split(assoc_data->ie, assoc_data->ie_len,
519 before_ht, ARRAY_SIZE(before_ht),
520 offset);
521 pos = skb_put(skb, noffset - offset);
522 memcpy(pos, assoc_data->ie + offset, noffset - offset);
523 offset = noffset;
524 }
525
Johannes Berg4e74bfd2012-03-08 15:02:04 +0100526 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_11N))
Johannes Berg9dde6422012-05-16 23:43:19 +0200527 ieee80211_add_ht_ie(sdata, skb, assoc_data->ap_ht_param,
Johannes Berg66e67e42012-01-20 13:55:27 +0100528 sband, local->oper_channel, ifmgd->ap_smps);
529
Mahesh Palivelad545dab2012-07-24 03:33:10 +0000530 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_VHT))
531 ieee80211_add_vht_ie(sdata, skb, sband);
532
Johannes Berg66e67e42012-01-20 13:55:27 +0100533 /* if present, add any custom non-vendor IEs that go after HT */
534 if (assoc_data->ie_len && assoc_data->ie) {
535 noffset = ieee80211_ie_split_vendor(assoc_data->ie,
536 assoc_data->ie_len,
537 offset);
538 pos = skb_put(skb, noffset - offset);
539 memcpy(pos, assoc_data->ie + offset, noffset - offset);
540 offset = noffset;
541 }
542
Johannes Berg76f03032012-03-08 15:02:05 +0100543 if (assoc_data->wmm) {
544 if (assoc_data->uapsd) {
Eliad Pellerdc41e4d2012-03-14 16:15:03 +0200545 qos_info = ifmgd->uapsd_queues;
546 qos_info |= (ifmgd->uapsd_max_sp_len <<
Johannes Berg66e67e42012-01-20 13:55:27 +0100547 IEEE80211_WMM_IE_STA_QOSINFO_SP_SHIFT);
548 } else {
549 qos_info = 0;
550 }
551
552 pos = skb_put(skb, 9);
553 *pos++ = WLAN_EID_VENDOR_SPECIFIC;
554 *pos++ = 7; /* len */
555 *pos++ = 0x00; /* Microsoft OUI 00:50:F2 */
556 *pos++ = 0x50;
557 *pos++ = 0xf2;
558 *pos++ = 2; /* WME */
559 *pos++ = 0; /* WME info */
560 *pos++ = 1; /* WME ver */
561 *pos++ = qos_info;
562 }
563
564 /* add any remaining custom (i.e. vendor specific here) IEs */
565 if (assoc_data->ie_len && assoc_data->ie) {
566 noffset = assoc_data->ie_len;
567 pos = skb_put(skb, noffset - offset);
568 memcpy(pos, assoc_data->ie + offset, noffset - offset);
569 }
570
Johannes Berga1845fc2012-06-27 13:18:36 +0200571 drv_mgd_prepare_tx(local, sdata);
572
Johannes Berg66e67e42012-01-20 13:55:27 +0100573 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
574 ieee80211_tx_skb(sdata, skb);
575}
576
Johannes Bergef422bc2008-09-09 10:58:25 +0200577static void ieee80211_send_deauth_disassoc(struct ieee80211_sub_if_data *sdata,
Johannes Berg63c9c5e2012-02-24 13:50:51 +0100578 const u8 *bssid, u16 stype,
Johannes Berg5fef7db2012-02-24 13:50:52 +0100579 u16 reason, bool send_frame,
580 u8 *frame_buf)
Johannes Berg9ac19a92008-09-09 10:57:09 +0200581{
582 struct ieee80211_local *local = sdata->local;
Johannes Berg46900292009-02-15 12:44:28 +0100583 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg9ac19a92008-09-09 10:57:09 +0200584 struct sk_buff *skb;
Johannes Berg5fef7db2012-02-24 13:50:52 +0100585 struct ieee80211_mgmt *mgmt = (void *)frame_buf;
Johannes Berg9ac19a92008-09-09 10:57:09 +0200586
Johannes Berg5fef7db2012-02-24 13:50:52 +0100587 /* build frame */
588 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT | stype);
589 mgmt->duration = 0; /* initialize only */
590 mgmt->seq_ctrl = 0; /* initialize only */
Johannes Berg77fdaa12009-07-07 03:45:17 +0200591 memcpy(mgmt->da, bssid, ETH_ALEN);
Johannes Berg47846c92009-11-25 17:46:19 +0100592 memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN);
Johannes Berg77fdaa12009-07-07 03:45:17 +0200593 memcpy(mgmt->bssid, bssid, ETH_ALEN);
Johannes Bergef422bc2008-09-09 10:58:25 +0200594 /* u.deauth.reason_code == u.disassoc.reason_code */
Johannes Berg9ac19a92008-09-09 10:57:09 +0200595 mgmt->u.deauth.reason_code = cpu_to_le16(reason);
596
Johannes Berg5fef7db2012-02-24 13:50:52 +0100597 if (send_frame) {
598 skb = dev_alloc_skb(local->hw.extra_tx_headroom +
599 DEAUTH_DISASSOC_LEN);
600 if (!skb)
601 return;
Jouni Malinend5cdfac2010-04-04 09:37:19 +0300602
Johannes Berg5fef7db2012-02-24 13:50:52 +0100603 skb_reserve(skb, local->hw.extra_tx_headroom);
604
605 /* copy in frame */
606 memcpy(skb_put(skb, DEAUTH_DISASSOC_LEN),
607 mgmt, DEAUTH_DISASSOC_LEN);
608
609 if (!(ifmgd->flags & IEEE80211_STA_MFP_ENABLED))
610 IEEE80211_SKB_CB(skb)->flags |=
611 IEEE80211_TX_INTFL_DONT_ENCRYPT;
Johannes Berga1845fc2012-06-27 13:18:36 +0200612
613 drv_mgd_prepare_tx(local, sdata);
614
Jouni Malinend5cdfac2010-04-04 09:37:19 +0300615 ieee80211_tx_skb(sdata, skb);
Johannes Berg5fef7db2012-02-24 13:50:52 +0100616 }
Johannes Berg9ac19a92008-09-09 10:57:09 +0200617}
618
Kalle Valo572e0012009-02-10 17:09:31 +0200619void ieee80211_send_pspoll(struct ieee80211_local *local,
620 struct ieee80211_sub_if_data *sdata)
621{
Kalle Valo572e0012009-02-10 17:09:31 +0200622 struct ieee80211_pspoll *pspoll;
623 struct sk_buff *skb;
Kalle Valo572e0012009-02-10 17:09:31 +0200624
Kalle Valod8cd1892010-01-05 20:16:26 +0200625 skb = ieee80211_pspoll_get(&local->hw, &sdata->vif);
626 if (!skb)
Kalle Valo572e0012009-02-10 17:09:31 +0200627 return;
Kalle Valo572e0012009-02-10 17:09:31 +0200628
Kalle Valod8cd1892010-01-05 20:16:26 +0200629 pspoll = (struct ieee80211_pspoll *) skb->data;
630 pspoll->frame_control |= cpu_to_le16(IEEE80211_FCTL_PM);
Kalle Valo572e0012009-02-10 17:09:31 +0200631
Johannes Berg62ae67b2009-11-18 18:42:05 +0100632 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
633 ieee80211_tx_skb(sdata, skb);
Kalle Valo572e0012009-02-10 17:09:31 +0200634}
635
Johannes Berg965beda2009-04-16 13:17:24 +0200636void ieee80211_send_nullfunc(struct ieee80211_local *local,
637 struct ieee80211_sub_if_data *sdata,
638 int powersave)
639{
640 struct sk_buff *skb;
Kalle Valod8cd1892010-01-05 20:16:26 +0200641 struct ieee80211_hdr_3addr *nullfunc;
Rajkumar Manoharanb6f35302011-09-29 20:34:04 +0530642 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg965beda2009-04-16 13:17:24 +0200643
Kalle Valod8cd1892010-01-05 20:16:26 +0200644 skb = ieee80211_nullfunc_get(&local->hw, &sdata->vif);
645 if (!skb)
Johannes Berg965beda2009-04-16 13:17:24 +0200646 return;
647
Kalle Valod8cd1892010-01-05 20:16:26 +0200648 nullfunc = (struct ieee80211_hdr_3addr *) skb->data;
Johannes Berg965beda2009-04-16 13:17:24 +0200649 if (powersave)
Kalle Valod8cd1892010-01-05 20:16:26 +0200650 nullfunc->frame_control |= cpu_to_le16(IEEE80211_FCTL_PM);
Johannes Berg965beda2009-04-16 13:17:24 +0200651
Johannes Berg62ae67b2009-11-18 18:42:05 +0100652 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
Rajkumar Manoharanb6f35302011-09-29 20:34:04 +0530653 if (ifmgd->flags & (IEEE80211_STA_BEACON_POLL |
654 IEEE80211_STA_CONNECTION_POLL))
655 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_CTL_USE_MINRATE;
656
Johannes Berg62ae67b2009-11-18 18:42:05 +0100657 ieee80211_tx_skb(sdata, skb);
Johannes Berg965beda2009-04-16 13:17:24 +0200658}
659
Felix Fietkaud5242152010-01-08 18:06:26 +0100660static void ieee80211_send_4addr_nullfunc(struct ieee80211_local *local,
661 struct ieee80211_sub_if_data *sdata)
662{
663 struct sk_buff *skb;
664 struct ieee80211_hdr *nullfunc;
665 __le16 fc;
666
667 if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION))
668 return;
669
670 skb = dev_alloc_skb(local->hw.extra_tx_headroom + 30);
Joe Perchesd15b8452011-08-29 14:17:31 -0700671 if (!skb)
Felix Fietkaud5242152010-01-08 18:06:26 +0100672 return;
Joe Perchesd15b8452011-08-29 14:17:31 -0700673
Felix Fietkaud5242152010-01-08 18:06:26 +0100674 skb_reserve(skb, local->hw.extra_tx_headroom);
675
676 nullfunc = (struct ieee80211_hdr *) skb_put(skb, 30);
677 memset(nullfunc, 0, 30);
678 fc = cpu_to_le16(IEEE80211_FTYPE_DATA | IEEE80211_STYPE_NULLFUNC |
679 IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS);
680 nullfunc->frame_control = fc;
681 memcpy(nullfunc->addr1, sdata->u.mgd.bssid, ETH_ALEN);
682 memcpy(nullfunc->addr2, sdata->vif.addr, ETH_ALEN);
683 memcpy(nullfunc->addr3, sdata->u.mgd.bssid, ETH_ALEN);
684 memcpy(nullfunc->addr4, sdata->vif.addr, ETH_ALEN);
685
686 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
687 ieee80211_tx_skb(sdata, skb);
688}
689
Johannes Bergcc32abd2009-05-15 11:52:31 +0200690/* spectrum management related things */
691static void ieee80211_chswitch_work(struct work_struct *work)
692{
693 struct ieee80211_sub_if_data *sdata =
694 container_of(work, struct ieee80211_sub_if_data, u.mgd.chswitch_work);
Johannes Bergcc32abd2009-05-15 11:52:31 +0200695 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
696
Johannes Berg9607e6b2009-12-23 13:15:31 +0100697 if (!ieee80211_sdata_running(sdata))
Johannes Bergcc32abd2009-05-15 11:52:31 +0200698 return;
699
Johannes Berg77fdaa12009-07-07 03:45:17 +0200700 mutex_lock(&ifmgd->mtx);
701 if (!ifmgd->associated)
702 goto out;
Johannes Bergcc32abd2009-05-15 11:52:31 +0200703
704 sdata->local->oper_channel = sdata->local->csa_channel;
Johannes Berg5ce6e432010-05-11 16:20:57 +0200705 if (!sdata->local->ops->channel_switch) {
706 /* call "hw_config" only if doing sw channel switch */
707 ieee80211_hw_config(sdata->local,
708 IEEE80211_CONF_CHANGE_CHANNEL);
Shahar Levi1ea57b12011-09-08 08:44:05 +0300709 } else {
710 /* update the device channel directly */
711 sdata->local->hw.conf.channel = sdata->local->oper_channel;
Johannes Berg5ce6e432010-05-11 16:20:57 +0200712 }
Johannes Bergcc32abd2009-05-15 11:52:31 +0200713
Johannes Berg77fdaa12009-07-07 03:45:17 +0200714 /* XXX: shouldn't really modify cfg80211-owned data! */
Johannes Berg0c1ad2c2009-12-23 13:15:39 +0100715 ifmgd->associated->channel = sdata->local->oper_channel;
Johannes Berg77fdaa12009-07-07 03:45:17 +0200716
Johannes Bergcc32abd2009-05-15 11:52:31 +0200717 ieee80211_wake_queues_by_reason(&sdata->local->hw,
718 IEEE80211_QUEUE_STOP_REASON_CSA);
Johannes Berg77fdaa12009-07-07 03:45:17 +0200719 out:
720 ifmgd->flags &= ~IEEE80211_STA_CSA_RECEIVED;
721 mutex_unlock(&ifmgd->mtx);
Johannes Bergcc32abd2009-05-15 11:52:31 +0200722}
723
Johannes Berg5ce6e432010-05-11 16:20:57 +0200724void ieee80211_chswitch_done(struct ieee80211_vif *vif, bool success)
725{
726 struct ieee80211_sub_if_data *sdata;
727 struct ieee80211_if_managed *ifmgd;
728
729 sdata = vif_to_sdata(vif);
730 ifmgd = &sdata->u.mgd;
731
732 trace_api_chswitch_done(sdata, success);
733 if (!success) {
734 /*
735 * If the channel switch was not successful, stay
736 * around on the old channel. We currently lack
737 * good handling of this situation, possibly we
738 * should just drop the association.
739 */
740 sdata->local->csa_channel = sdata->local->oper_channel;
741 }
742
743 ieee80211_queue_work(&sdata->local->hw, &ifmgd->chswitch_work);
744}
745EXPORT_SYMBOL(ieee80211_chswitch_done);
746
Johannes Bergcc32abd2009-05-15 11:52:31 +0200747static void ieee80211_chswitch_timer(unsigned long data)
748{
749 struct ieee80211_sub_if_data *sdata =
750 (struct ieee80211_sub_if_data *) data;
751 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
752
Johannes Berg5bb644a2009-05-17 11:40:42 +0200753 if (sdata->local->quiescing) {
754 set_bit(TMR_RUNNING_CHANSW, &ifmgd->timers_running);
755 return;
756 }
757
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -0400758 ieee80211_queue_work(&sdata->local->hw, &ifmgd->chswitch_work);
Johannes Bergcc32abd2009-05-15 11:52:31 +0200759}
760
761void ieee80211_sta_process_chanswitch(struct ieee80211_sub_if_data *sdata,
762 struct ieee80211_channel_sw_ie *sw_elem,
Johannes Berg5ce6e432010-05-11 16:20:57 +0200763 struct ieee80211_bss *bss,
764 u64 timestamp)
Johannes Bergcc32abd2009-05-15 11:52:31 +0200765{
Johannes Berg0c1ad2c2009-12-23 13:15:39 +0100766 struct cfg80211_bss *cbss =
767 container_of((void *)bss, struct cfg80211_bss, priv);
Johannes Bergcc32abd2009-05-15 11:52:31 +0200768 struct ieee80211_channel *new_ch;
769 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Bruno Randolf59eb21a2011-01-17 13:37:28 +0900770 int new_freq = ieee80211_channel_to_frequency(sw_elem->new_ch_num,
771 cbss->channel->band);
Johannes Bergcc32abd2009-05-15 11:52:31 +0200772
Johannes Berg77fdaa12009-07-07 03:45:17 +0200773 ASSERT_MGD_MTX(ifmgd);
774
775 if (!ifmgd->associated)
Johannes Bergcc32abd2009-05-15 11:52:31 +0200776 return;
777
Helmut Schaafbe9c422009-07-23 12:14:04 +0200778 if (sdata->local->scanning)
Johannes Bergcc32abd2009-05-15 11:52:31 +0200779 return;
780
781 /* Disregard subsequent beacons if we are already running a timer
782 processing a CSA */
783
784 if (ifmgd->flags & IEEE80211_STA_CSA_RECEIVED)
785 return;
786
787 new_ch = ieee80211_get_channel(sdata->local->hw.wiphy, new_freq);
788 if (!new_ch || new_ch->flags & IEEE80211_CHAN_DISABLED)
789 return;
790
791 sdata->local->csa_channel = new_ch;
792
Johannes Berg5ce6e432010-05-11 16:20:57 +0200793 if (sdata->local->ops->channel_switch) {
794 /* use driver's channel switch callback */
795 struct ieee80211_channel_switch ch_switch;
796 memset(&ch_switch, 0, sizeof(ch_switch));
797 ch_switch.timestamp = timestamp;
798 if (sw_elem->mode) {
799 ch_switch.block_tx = true;
800 ieee80211_stop_queues_by_reason(&sdata->local->hw,
801 IEEE80211_QUEUE_STOP_REASON_CSA);
802 }
803 ch_switch.channel = new_ch;
804 ch_switch.count = sw_elem->count;
805 ifmgd->flags |= IEEE80211_STA_CSA_RECEIVED;
806 drv_channel_switch(sdata->local, &ch_switch);
807 return;
808 }
809
810 /* channel switch handled in software */
Johannes Bergcc32abd2009-05-15 11:52:31 +0200811 if (sw_elem->count <= 1) {
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -0400812 ieee80211_queue_work(&sdata->local->hw, &ifmgd->chswitch_work);
Johannes Bergcc32abd2009-05-15 11:52:31 +0200813 } else {
Wey-Yi Guy9feaddc2010-05-05 20:34:02 -0700814 if (sw_elem->mode)
815 ieee80211_stop_queues_by_reason(&sdata->local->hw,
Johannes Bergcc32abd2009-05-15 11:52:31 +0200816 IEEE80211_QUEUE_STOP_REASON_CSA);
817 ifmgd->flags |= IEEE80211_STA_CSA_RECEIVED;
818 mod_timer(&ifmgd->chswitch_timer,
819 jiffies +
820 msecs_to_jiffies(sw_elem->count *
Johannes Berg0c1ad2c2009-12-23 13:15:39 +0100821 cbss->beacon_interval));
Johannes Bergcc32abd2009-05-15 11:52:31 +0200822 }
823}
824
825static void ieee80211_handle_pwr_constr(struct ieee80211_sub_if_data *sdata,
826 u16 capab_info, u8 *pwr_constr_elem,
827 u8 pwr_constr_elem_len)
828{
829 struct ieee80211_conf *conf = &sdata->local->hw.conf;
830
831 if (!(capab_info & WLAN_CAPABILITY_SPECTRUM_MGMT))
832 return;
833
834 /* Power constraint IE length should be 1 octet */
835 if (pwr_constr_elem_len != 1)
836 return;
837
Hong Wua48b13a2012-01-11 20:34:30 +0200838 if ((*pwr_constr_elem <= conf->channel->max_reg_power) &&
Johannes Bergcc32abd2009-05-15 11:52:31 +0200839 (*pwr_constr_elem != sdata->local->power_constr_level)) {
840 sdata->local->power_constr_level = *pwr_constr_elem;
841 ieee80211_hw_config(sdata->local, 0);
842 }
843}
844
Juuso Oikarinenf90754c2010-06-21 08:59:39 +0300845void ieee80211_enable_dyn_ps(struct ieee80211_vif *vif)
846{
847 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
848 struct ieee80211_local *local = sdata->local;
849 struct ieee80211_conf *conf = &local->hw.conf;
850
851 WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION ||
852 !(local->hw.flags & IEEE80211_HW_SUPPORTS_PS) ||
853 (local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS));
854
855 local->disable_dynamic_ps = false;
856 conf->dynamic_ps_timeout = local->dynamic_ps_user_timeout;
857}
858EXPORT_SYMBOL(ieee80211_enable_dyn_ps);
859
860void ieee80211_disable_dyn_ps(struct ieee80211_vif *vif)
861{
862 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
863 struct ieee80211_local *local = sdata->local;
864 struct ieee80211_conf *conf = &local->hw.conf;
865
866 WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION ||
867 !(local->hw.flags & IEEE80211_HW_SUPPORTS_PS) ||
868 (local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS));
869
870 local->disable_dynamic_ps = true;
871 conf->dynamic_ps_timeout = 0;
872 del_timer_sync(&local->dynamic_ps_timer);
873 ieee80211_queue_work(&local->hw,
874 &local->dynamic_ps_enable_work);
875}
876EXPORT_SYMBOL(ieee80211_disable_dyn_ps);
877
Johannes Berg965beda2009-04-16 13:17:24 +0200878/* powersave */
879static void ieee80211_enable_ps(struct ieee80211_local *local,
880 struct ieee80211_sub_if_data *sdata)
881{
882 struct ieee80211_conf *conf = &local->hw.conf;
883
Johannes Bergd5edaed2009-04-22 23:02:51 +0200884 /*
885 * If we are scanning right now then the parameters will
886 * take effect when scan finishes.
887 */
Helmut Schaafbe9c422009-07-23 12:14:04 +0200888 if (local->scanning)
Johannes Bergd5edaed2009-04-22 23:02:51 +0200889 return;
890
Johannes Berg965beda2009-04-16 13:17:24 +0200891 if (conf->dynamic_ps_timeout > 0 &&
892 !(local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS)) {
893 mod_timer(&local->dynamic_ps_timer, jiffies +
894 msecs_to_jiffies(conf->dynamic_ps_timeout));
895 } else {
896 if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)
897 ieee80211_send_nullfunc(local, sdata, 1);
Vivek Natarajan375177b2010-02-09 14:50:28 +0530898
Juuso Oikarinen2a130522010-03-09 14:25:02 +0200899 if ((local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK) &&
900 (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS))
901 return;
902
903 conf->flags |= IEEE80211_CONF_PS;
904 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
Johannes Berg965beda2009-04-16 13:17:24 +0200905 }
906}
907
908static void ieee80211_change_ps(struct ieee80211_local *local)
909{
910 struct ieee80211_conf *conf = &local->hw.conf;
911
912 if (local->ps_sdata) {
Johannes Berg965beda2009-04-16 13:17:24 +0200913 ieee80211_enable_ps(local, local->ps_sdata);
914 } else if (conf->flags & IEEE80211_CONF_PS) {
915 conf->flags &= ~IEEE80211_CONF_PS;
916 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
917 del_timer_sync(&local->dynamic_ps_timer);
918 cancel_work_sync(&local->dynamic_ps_enable_work);
919 }
920}
921
Jason Young808118c2011-03-10 16:43:19 -0800922static bool ieee80211_powersave_allowed(struct ieee80211_sub_if_data *sdata)
923{
924 struct ieee80211_if_managed *mgd = &sdata->u.mgd;
925 struct sta_info *sta = NULL;
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200926 bool authorized = false;
Jason Young808118c2011-03-10 16:43:19 -0800927
928 if (!mgd->powersave)
929 return false;
930
Johannes Berg05cb9102011-10-28 11:59:47 +0200931 if (mgd->broken_ap)
932 return false;
933
Jason Young808118c2011-03-10 16:43:19 -0800934 if (!mgd->associated)
935 return false;
936
Jason Young808118c2011-03-10 16:43:19 -0800937 if (mgd->flags & (IEEE80211_STA_BEACON_POLL |
938 IEEE80211_STA_CONNECTION_POLL))
939 return false;
940
941 rcu_read_lock();
942 sta = sta_info_get(sdata, mgd->bssid);
943 if (sta)
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200944 authorized = test_sta_flag(sta, WLAN_STA_AUTHORIZED);
Jason Young808118c2011-03-10 16:43:19 -0800945 rcu_read_unlock();
946
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200947 return authorized;
Jason Young808118c2011-03-10 16:43:19 -0800948}
949
Johannes Berg965beda2009-04-16 13:17:24 +0200950/* need to hold RTNL or interface lock */
Johannes Berg10f644a2009-04-16 13:17:25 +0200951void ieee80211_recalc_ps(struct ieee80211_local *local, s32 latency)
Johannes Berg965beda2009-04-16 13:17:24 +0200952{
953 struct ieee80211_sub_if_data *sdata, *found = NULL;
954 int count = 0;
Juuso Oikarinen195e2942010-04-27 12:47:40 +0300955 int timeout;
Johannes Berg965beda2009-04-16 13:17:24 +0200956
957 if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_PS)) {
958 local->ps_sdata = NULL;
959 return;
960 }
961
962 list_for_each_entry(sdata, &local->interfaces, list) {
Johannes Berg9607e6b2009-12-23 13:15:31 +0100963 if (!ieee80211_sdata_running(sdata))
Johannes Berg965beda2009-04-16 13:17:24 +0200964 continue;
Rajkumar Manoharan8c7914d2011-02-01 00:28:59 +0530965 if (sdata->vif.type == NL80211_IFTYPE_AP) {
966 /* If an AP vif is found, then disable PS
967 * by setting the count to zero thereby setting
968 * ps_sdata to NULL.
969 */
970 count = 0;
971 break;
972 }
Johannes Berg965beda2009-04-16 13:17:24 +0200973 if (sdata->vif.type != NL80211_IFTYPE_STATION)
974 continue;
975 found = sdata;
976 count++;
977 }
978
Jason Young808118c2011-03-10 16:43:19 -0800979 if (count == 1 && ieee80211_powersave_allowed(found)) {
Juuso Oikarinenf90754c2010-06-21 08:59:39 +0300980 struct ieee80211_conf *conf = &local->hw.conf;
Johannes Berg10f644a2009-04-16 13:17:25 +0200981 s32 beaconint_us;
982
983 if (latency < 0)
Mark Grossed771342010-05-06 01:59:26 +0200984 latency = pm_qos_request(PM_QOS_NETWORK_LATENCY);
Johannes Berg10f644a2009-04-16 13:17:25 +0200985
986 beaconint_us = ieee80211_tu_to_usec(
987 found->vif.bss_conf.beacon_int);
988
Juuso Oikarinenff616382010-06-09 09:51:52 +0300989 timeout = local->dynamic_ps_forced_timeout;
Juuso Oikarinen195e2942010-04-27 12:47:40 +0300990 if (timeout < 0) {
991 /*
Juuso Oikarinenff616382010-06-09 09:51:52 +0300992 * Go to full PSM if the user configures a very low
993 * latency requirement.
Eliad Peller0ab82b02010-12-03 02:16:23 +0200994 * The 2000 second value is there for compatibility
995 * until the PM_QOS_NETWORK_LATENCY is configured
996 * with real values.
Juuso Oikarinen195e2942010-04-27 12:47:40 +0300997 */
Eliad Peller0ab82b02010-12-03 02:16:23 +0200998 if (latency > (1900 * USEC_PER_MSEC) &&
999 latency != (2000 * USEC_PER_SEC))
Juuso Oikarinen195e2942010-04-27 12:47:40 +03001000 timeout = 0;
Juuso Oikarinenff616382010-06-09 09:51:52 +03001001 else
1002 timeout = 100;
Juuso Oikarinen195e2942010-04-27 12:47:40 +03001003 }
Juuso Oikarinenf90754c2010-06-21 08:59:39 +03001004 local->dynamic_ps_user_timeout = timeout;
1005 if (!local->disable_dynamic_ps)
1006 conf->dynamic_ps_timeout =
1007 local->dynamic_ps_user_timeout;
Juuso Oikarinen195e2942010-04-27 12:47:40 +03001008
Johannes Berg04fe2032009-04-22 18:44:37 +02001009 if (beaconint_us > latency) {
Johannes Berg10f644a2009-04-16 13:17:25 +02001010 local->ps_sdata = NULL;
Johannes Berg04fe2032009-04-22 18:44:37 +02001011 } else {
Johannes Berg56007a02010-01-26 14:19:52 +01001012 struct ieee80211_bss *bss;
Johannes Berg04fe2032009-04-22 18:44:37 +02001013 int maxslp = 1;
Johannes Berg56007a02010-01-26 14:19:52 +01001014 u8 dtimper;
Johannes Berg04fe2032009-04-22 18:44:37 +02001015
Johannes Berg56007a02010-01-26 14:19:52 +01001016 bss = (void *)found->u.mgd.associated->priv;
1017 dtimper = bss->dtim_period;
1018
1019 /* If the TIM IE is invalid, pretend the value is 1 */
1020 if (!dtimper)
1021 dtimper = 1;
1022 else if (dtimper > 1)
Johannes Berg04fe2032009-04-22 18:44:37 +02001023 maxslp = min_t(int, dtimper,
1024 latency / beaconint_us);
1025
Johannes Berg9ccebe62009-04-23 10:32:36 +02001026 local->hw.conf.max_sleep_period = maxslp;
Johannes Berg56007a02010-01-26 14:19:52 +01001027 local->hw.conf.ps_dtim_period = dtimper;
Johannes Berg10f644a2009-04-16 13:17:25 +02001028 local->ps_sdata = found;
Johannes Berg04fe2032009-04-22 18:44:37 +02001029 }
Johannes Berg10f644a2009-04-16 13:17:25 +02001030 } else {
Johannes Berg965beda2009-04-16 13:17:24 +02001031 local->ps_sdata = NULL;
Johannes Berg10f644a2009-04-16 13:17:25 +02001032 }
Johannes Berg965beda2009-04-16 13:17:24 +02001033
1034 ieee80211_change_ps(local);
1035}
1036
1037void ieee80211_dynamic_ps_disable_work(struct work_struct *work)
1038{
1039 struct ieee80211_local *local =
1040 container_of(work, struct ieee80211_local,
1041 dynamic_ps_disable_work);
1042
1043 if (local->hw.conf.flags & IEEE80211_CONF_PS) {
1044 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
1045 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
1046 }
1047
1048 ieee80211_wake_queues_by_reason(&local->hw,
1049 IEEE80211_QUEUE_STOP_REASON_PS);
1050}
1051
1052void ieee80211_dynamic_ps_enable_work(struct work_struct *work)
1053{
1054 struct ieee80211_local *local =
1055 container_of(work, struct ieee80211_local,
1056 dynamic_ps_enable_work);
1057 struct ieee80211_sub_if_data *sdata = local->ps_sdata;
Christian Lamparter5e340692011-06-30 21:08:43 +02001058 struct ieee80211_if_managed *ifmgd;
Rajkumar Manoharan1ddc2862011-05-03 17:03:59 +05301059 unsigned long flags;
1060 int q;
Johannes Berg965beda2009-04-16 13:17:24 +02001061
1062 /* can only happen when PS was just disabled anyway */
1063 if (!sdata)
1064 return;
1065
Christian Lamparter5e340692011-06-30 21:08:43 +02001066 ifmgd = &sdata->u.mgd;
1067
Johannes Berg965beda2009-04-16 13:17:24 +02001068 if (local->hw.conf.flags & IEEE80211_CONF_PS)
1069 return;
1070
Arik Nemtsov77b70232011-06-26 12:06:54 +03001071 if (!local->disable_dynamic_ps &&
1072 local->hw.conf.dynamic_ps_timeout > 0) {
1073 /* don't enter PS if TX frames are pending */
1074 if (drv_tx_frames_pending(local)) {
Rajkumar Manoharan1ddc2862011-05-03 17:03:59 +05301075 mod_timer(&local->dynamic_ps_timer, jiffies +
1076 msecs_to_jiffies(
1077 local->hw.conf.dynamic_ps_timeout));
1078 return;
1079 }
Arik Nemtsov77b70232011-06-26 12:06:54 +03001080
1081 /*
1082 * transmission can be stopped by others which leads to
1083 * dynamic_ps_timer expiry. Postpone the ps timer if it
1084 * is not the actual idle state.
1085 */
1086 spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
1087 for (q = 0; q < local->hw.queues; q++) {
1088 if (local->queue_stop_reasons[q]) {
1089 spin_unlock_irqrestore(&local->queue_stop_reason_lock,
1090 flags);
1091 mod_timer(&local->dynamic_ps_timer, jiffies +
1092 msecs_to_jiffies(
1093 local->hw.conf.dynamic_ps_timeout));
1094 return;
1095 }
1096 }
1097 spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
Rajkumar Manoharan1ddc2862011-05-03 17:03:59 +05301098 }
Rajkumar Manoharan1ddc2862011-05-03 17:03:59 +05301099
Vivek Natarajan375177b2010-02-09 14:50:28 +05301100 if ((local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK) &&
Mohammed Shafi Shajakhan9c38a8b2011-12-14 19:46:07 +05301101 !(ifmgd->flags & IEEE80211_STA_NULLFUNC_ACKED)) {
Vivek Natarajanf3e85b92011-02-23 13:04:32 +05301102 netif_tx_stop_all_queues(sdata->dev);
Johannes Berg965beda2009-04-16 13:17:24 +02001103
Vivek Natarajane8306f92011-04-06 11:41:10 +05301104 if (drv_tx_frames_pending(local))
1105 mod_timer(&local->dynamic_ps_timer, jiffies +
1106 msecs_to_jiffies(
1107 local->hw.conf.dynamic_ps_timeout));
1108 else {
1109 ieee80211_send_nullfunc(local, sdata, 1);
1110 /* Flush to get the tx status of nullfunc frame */
1111 drv_flush(local, false);
1112 }
Vivek Natarajanf3e85b92011-02-23 13:04:32 +05301113 }
1114
Juuso Oikarinen2a130522010-03-09 14:25:02 +02001115 if (!((local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS) &&
1116 (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)) ||
Vivek Natarajan375177b2010-02-09 14:50:28 +05301117 (ifmgd->flags & IEEE80211_STA_NULLFUNC_ACKED)) {
1118 ifmgd->flags &= ~IEEE80211_STA_NULLFUNC_ACKED;
1119 local->hw.conf.flags |= IEEE80211_CONF_PS;
1120 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
1121 }
Vivek Natarajanf3e85b92011-02-23 13:04:32 +05301122
Arik Nemtsov77b70232011-06-26 12:06:54 +03001123 if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)
1124 netif_tx_wake_all_queues(sdata->dev);
Johannes Berg965beda2009-04-16 13:17:24 +02001125}
1126
1127void ieee80211_dynamic_ps_timer(unsigned long data)
1128{
1129 struct ieee80211_local *local = (void *) data;
1130
Luis R. Rodriguez78f1a8b2009-07-27 08:38:25 -07001131 if (local->quiescing || local->suspended)
Johannes Berg5bb644a2009-05-17 11:40:42 +02001132 return;
1133
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04001134 ieee80211_queue_work(&local->hw, &local->dynamic_ps_enable_work);
Johannes Berg965beda2009-04-16 13:17:24 +02001135}
1136
Johannes Berg60f8b392008-09-08 17:44:22 +02001137/* MLME */
Johannes Berg7d257452012-07-06 17:37:43 +02001138static bool ieee80211_sta_wmm_params(struct ieee80211_local *local,
Johannes Berg4ced3f72010-07-19 16:39:04 +02001139 struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001140 u8 *wmm_param, size_t wmm_param_len)
1141{
Jiri Bencf0706e82007-05-05 11:45:53 -07001142 struct ieee80211_tx_queue_params params;
Johannes Berg4ced3f72010-07-19 16:39:04 +02001143 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jiri Bencf0706e82007-05-05 11:45:53 -07001144 size_t left;
1145 int count;
Kalle Valoab133152010-01-12 10:42:31 +02001146 u8 *pos, uapsd_queues = 0;
Jiri Bencf0706e82007-05-05 11:45:53 -07001147
Stanislaw Gruszkae1b3ec12010-03-29 12:18:34 +02001148 if (!local->ops->conf_tx)
Johannes Berg7d257452012-07-06 17:37:43 +02001149 return false;
Stanislaw Gruszkae1b3ec12010-03-29 12:18:34 +02001150
Johannes Berg32c5057b2012-03-28 11:04:29 +02001151 if (local->hw.queues < IEEE80211_NUM_ACS)
Johannes Berg7d257452012-07-06 17:37:43 +02001152 return false;
Johannes Berg3434fbd2008-05-03 00:59:37 +02001153
1154 if (!wmm_param)
Johannes Berg7d257452012-07-06 17:37:43 +02001155 return false;
Johannes Berg3434fbd2008-05-03 00:59:37 +02001156
Jiri Bencf0706e82007-05-05 11:45:53 -07001157 if (wmm_param_len < 8 || wmm_param[5] /* version */ != 1)
Johannes Berg7d257452012-07-06 17:37:43 +02001158 return false;
Kalle Valoab133152010-01-12 10:42:31 +02001159
1160 if (ifmgd->flags & IEEE80211_STA_UAPSD_ENABLED)
Eliad Pellerdc41e4d2012-03-14 16:15:03 +02001161 uapsd_queues = ifmgd->uapsd_queues;
Kalle Valoab133152010-01-12 10:42:31 +02001162
Jiri Bencf0706e82007-05-05 11:45:53 -07001163 count = wmm_param[6] & 0x0f;
Johannes Berg46900292009-02-15 12:44:28 +01001164 if (count == ifmgd->wmm_last_param_set)
Johannes Berg7d257452012-07-06 17:37:43 +02001165 return false;
Johannes Berg46900292009-02-15 12:44:28 +01001166 ifmgd->wmm_last_param_set = count;
Jiri Bencf0706e82007-05-05 11:45:53 -07001167
1168 pos = wmm_param + 8;
1169 left = wmm_param_len - 8;
1170
1171 memset(&params, 0, sizeof(params));
1172
Yoni Divinsky00e96de2012-06-20 15:39:13 +03001173 sdata->wmm_acm = 0;
Jiri Bencf0706e82007-05-05 11:45:53 -07001174 for (; left >= 4; left -= 4, pos += 4) {
1175 int aci = (pos[0] >> 5) & 0x03;
1176 int acm = (pos[0] >> 4) & 0x01;
Kalle Valoab133152010-01-12 10:42:31 +02001177 bool uapsd = false;
Jiri Bencf0706e82007-05-05 11:45:53 -07001178 int queue;
1179
1180 switch (aci) {
Jouni Malinen0eeb59f2009-03-05 17:23:46 +02001181 case 1: /* AC_BK */
Johannes Berge100bb62008-04-30 18:51:21 +02001182 queue = 3;
Johannes Berg988c0f72008-04-17 19:21:22 +02001183 if (acm)
Yoni Divinsky00e96de2012-06-20 15:39:13 +03001184 sdata->wmm_acm |= BIT(1) | BIT(2); /* BK/- */
Kalle Valoab133152010-01-12 10:42:31 +02001185 if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_BK)
1186 uapsd = true;
Jiri Bencf0706e82007-05-05 11:45:53 -07001187 break;
Jouni Malinen0eeb59f2009-03-05 17:23:46 +02001188 case 2: /* AC_VI */
Johannes Berge100bb62008-04-30 18:51:21 +02001189 queue = 1;
Johannes Berg988c0f72008-04-17 19:21:22 +02001190 if (acm)
Yoni Divinsky00e96de2012-06-20 15:39:13 +03001191 sdata->wmm_acm |= BIT(4) | BIT(5); /* CL/VI */
Kalle Valoab133152010-01-12 10:42:31 +02001192 if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_VI)
1193 uapsd = true;
Jiri Bencf0706e82007-05-05 11:45:53 -07001194 break;
Jouni Malinen0eeb59f2009-03-05 17:23:46 +02001195 case 3: /* AC_VO */
Johannes Berge100bb62008-04-30 18:51:21 +02001196 queue = 0;
Johannes Berg988c0f72008-04-17 19:21:22 +02001197 if (acm)
Yoni Divinsky00e96de2012-06-20 15:39:13 +03001198 sdata->wmm_acm |= BIT(6) | BIT(7); /* VO/NC */
Kalle Valoab133152010-01-12 10:42:31 +02001199 if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_VO)
1200 uapsd = true;
Jiri Bencf0706e82007-05-05 11:45:53 -07001201 break;
Jouni Malinen0eeb59f2009-03-05 17:23:46 +02001202 case 0: /* AC_BE */
Jiri Bencf0706e82007-05-05 11:45:53 -07001203 default:
Johannes Berge100bb62008-04-30 18:51:21 +02001204 queue = 2;
Johannes Berg988c0f72008-04-17 19:21:22 +02001205 if (acm)
Yoni Divinsky00e96de2012-06-20 15:39:13 +03001206 sdata->wmm_acm |= BIT(0) | BIT(3); /* BE/EE */
Kalle Valoab133152010-01-12 10:42:31 +02001207 if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_BE)
1208 uapsd = true;
Jiri Bencf0706e82007-05-05 11:45:53 -07001209 break;
1210 }
1211
1212 params.aifs = pos[0] & 0x0f;
1213 params.cw_max = ecw2cw((pos[1] & 0xf0) >> 4);
1214 params.cw_min = ecw2cw(pos[1] & 0x0f);
Johannes Bergf434b2d2008-07-10 11:22:31 +02001215 params.txop = get_unaligned_le16(pos + 2);
Kalle Valoab133152010-01-12 10:42:31 +02001216 params.uapsd = uapsd;
1217
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02001218 mlme_dbg(sdata,
1219 "WMM queue=%d aci=%d acm=%d aifs=%d cWmin=%d cWmax=%d txop=%d uapsd=%d\n",
1220 queue, aci, acm,
1221 params.aifs, params.cw_min, params.cw_max,
1222 params.txop, params.uapsd);
Eliad Pellerf6f3def2011-09-25 20:06:54 +03001223 sdata->tx_conf[queue] = params;
1224 if (drv_conf_tx(local, sdata, queue, &params))
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02001225 sdata_err(sdata,
1226 "failed to set TX queue parameters for queue %d\n",
1227 queue);
Jiri Bencf0706e82007-05-05 11:45:53 -07001228 }
Stanislaw Gruszkae1b3ec12010-03-29 12:18:34 +02001229
1230 /* enable WMM or activate new settings */
Johannes Berg4ced3f72010-07-19 16:39:04 +02001231 sdata->vif.bss_conf.qos = true;
Johannes Berg7d257452012-07-06 17:37:43 +02001232 return true;
Jiri Bencf0706e82007-05-05 11:45:53 -07001233}
1234
Stanislaw Gruszka925e64c2012-05-16 15:27:20 +02001235static void __ieee80211_stop_poll(struct ieee80211_sub_if_data *sdata)
1236{
1237 lockdep_assert_held(&sdata->local->mtx);
1238
1239 sdata->u.mgd.flags &= ~(IEEE80211_STA_CONNECTION_POLL |
1240 IEEE80211_STA_BEACON_POLL);
1241 ieee80211_run_deferred_scan(sdata->local);
1242}
1243
1244static void ieee80211_stop_poll(struct ieee80211_sub_if_data *sdata)
1245{
1246 mutex_lock(&sdata->local->mtx);
1247 __ieee80211_stop_poll(sdata);
1248 mutex_unlock(&sdata->local->mtx);
1249}
1250
Johannes Berg7a5158e2008-10-08 10:59:33 +02001251static u32 ieee80211_handle_bss_capability(struct ieee80211_sub_if_data *sdata,
1252 u16 capab, bool erp_valid, u8 erp)
Daniel Drake56282212007-07-10 19:32:10 +02001253{
Johannes Bergbda39332008-10-11 01:51:51 +02001254 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
Johannes Berg471b3ef2007-12-28 14:32:58 +01001255 u32 changed = 0;
Johannes Berg7a5158e2008-10-08 10:59:33 +02001256 bool use_protection;
1257 bool use_short_preamble;
1258 bool use_short_slot;
1259
1260 if (erp_valid) {
1261 use_protection = (erp & WLAN_ERP_USE_PROTECTION) != 0;
1262 use_short_preamble = (erp & WLAN_ERP_BARKER_PREAMBLE) == 0;
1263 } else {
1264 use_protection = false;
1265 use_short_preamble = !!(capab & WLAN_CAPABILITY_SHORT_PREAMBLE);
1266 }
1267
1268 use_short_slot = !!(capab & WLAN_CAPABILITY_SHORT_SLOT_TIME);
Felix Fietkau43d35342010-01-15 03:00:48 +01001269 if (sdata->local->hw.conf.channel->band == IEEE80211_BAND_5GHZ)
1270 use_short_slot = true;
Daniel Drake56282212007-07-10 19:32:10 +02001271
Johannes Berg471b3ef2007-12-28 14:32:58 +01001272 if (use_protection != bss_conf->use_cts_prot) {
Johannes Berg471b3ef2007-12-28 14:32:58 +01001273 bss_conf->use_cts_prot = use_protection;
1274 changed |= BSS_CHANGED_ERP_CTS_PROT;
Daniel Drake56282212007-07-10 19:32:10 +02001275 }
Daniel Drake7e9ed182007-07-27 15:43:24 +02001276
Vladimir Koutnyd43c7b32008-03-31 17:05:03 +02001277 if (use_short_preamble != bss_conf->use_short_preamble) {
Vladimir Koutnyd43c7b32008-03-31 17:05:03 +02001278 bss_conf->use_short_preamble = use_short_preamble;
Johannes Berg471b3ef2007-12-28 14:32:58 +01001279 changed |= BSS_CHANGED_ERP_PREAMBLE;
Daniel Drake7e9ed182007-07-27 15:43:24 +02001280 }
Daniel Draked9430a32007-07-27 15:43:24 +02001281
Johannes Berg7a5158e2008-10-08 10:59:33 +02001282 if (use_short_slot != bss_conf->use_short_slot) {
Johannes Berg7a5158e2008-10-08 10:59:33 +02001283 bss_conf->use_short_slot = use_short_slot;
1284 changed |= BSS_CHANGED_ERP_SLOT;
John W. Linville50c4afb2008-04-15 14:09:27 -04001285 }
1286
1287 return changed;
1288}
1289
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001290static void ieee80211_set_associated(struct ieee80211_sub_if_data *sdata,
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01001291 struct cfg80211_bss *cbss,
Johannes Bergae5eb022008-10-14 16:58:37 +02001292 u32 bss_info_changed)
Jiri Bencf0706e82007-05-05 11:45:53 -07001293{
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01001294 struct ieee80211_bss *bss = (void *)cbss->priv;
Johannes Berg471b3ef2007-12-28 14:32:58 +01001295 struct ieee80211_local *local = sdata->local;
Juuso Oikarinen68542962010-06-09 13:43:26 +03001296 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
Jiri Slabyd6f2da52007-08-28 17:01:54 -04001297
Johannes Bergae5eb022008-10-14 16:58:37 +02001298 bss_info_changed |= BSS_CHANGED_ASSOC;
Johannes Berg77fdaa12009-07-07 03:45:17 +02001299 bss_info_changed |= ieee80211_handle_bss_capability(sdata,
Luciano Coelho50ae34a2012-06-20 17:23:24 +03001300 bss_conf->assoc_capability, bss->has_erp_value, bss->erp_value);
Tomas Winkler21c0cbe2008-03-28 16:33:34 -07001301
Felix Fietkau7ccc8bd2010-11-19 22:55:38 +01001302 sdata->u.mgd.beacon_timeout = usecs_to_jiffies(ieee80211_tu_to_usec(
1303 IEEE80211_BEACON_LOSS_COUNT * bss_conf->beacon_int));
1304
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01001305 sdata->u.mgd.associated = cbss;
1306 memcpy(sdata->u.mgd.bssid, cbss->bssid, ETH_ALEN);
Johannes Berg471b3ef2007-12-28 14:32:58 +01001307
Jouni Malinen17e4ec12010-03-29 23:28:30 -07001308 sdata->u.mgd.flags |= IEEE80211_STA_RESET_SIGNAL_AVE;
1309
Johannes Bergb291ba12009-07-10 15:29:03 +02001310 /* just to be sure */
Stanislaw Gruszka925e64c2012-05-16 15:27:20 +02001311 ieee80211_stop_poll(sdata);
Johannes Bergb291ba12009-07-10 15:29:03 +02001312
Tomas Winklerf5e5bf22008-09-08 17:33:39 +02001313 ieee80211_led_assoc(local, 1);
1314
Johannes Berge5b900d2010-07-29 16:08:55 +02001315 if (local->hw.flags & IEEE80211_HW_NEED_DTIM_PERIOD)
1316 bss_conf->dtim_period = bss->dtim_period;
1317 else
1318 bss_conf->dtim_period = 0;
1319
Juuso Oikarinen68542962010-06-09 13:43:26 +03001320 bss_conf->assoc = 1;
Johannes Berg9cef8732009-05-14 13:10:14 +02001321
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02001322 /* Tell the driver to monitor connection quality (if supported) */
Johannes Bergea086352012-01-19 09:29:58 +01001323 if (sdata->vif.driver_flags & IEEE80211_VIF_SUPPORTS_CQM_RSSI &&
Juuso Oikarinen68542962010-06-09 13:43:26 +03001324 bss_conf->cqm_rssi_thold)
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02001325 bss_info_changed |= BSS_CHANGED_CQM;
1326
Juuso Oikarinen68542962010-06-09 13:43:26 +03001327 /* Enable ARP filtering */
1328 if (bss_conf->arp_filter_enabled != sdata->arp_filter_state) {
1329 bss_conf->arp_filter_enabled = sdata->arp_filter_state;
1330 bss_info_changed |= BSS_CHANGED_ARP_FILTER;
1331 }
1332
Johannes Bergae5eb022008-10-14 16:58:37 +02001333 ieee80211_bss_info_change_notify(sdata, bss_info_changed);
Guy Cohen8db93692008-07-03 19:56:13 +03001334
Johannes Berg056508d2009-07-30 21:43:55 +02001335 mutex_lock(&local->iflist_mtx);
1336 ieee80211_recalc_ps(local, -1);
Johannes Berg025e6be2010-10-05 10:41:47 +02001337 ieee80211_recalc_smps(local);
Johannes Berg056508d2009-07-30 21:43:55 +02001338 mutex_unlock(&local->iflist_mtx);
Kalle Valoe0cb6862008-12-18 23:35:13 +02001339
John W. Linville8a5b33f2010-01-06 15:39:39 -05001340 netif_tx_start_all_queues(sdata->dev);
Tomas Winklerf5e5bf22008-09-08 17:33:39 +02001341 netif_carrier_on(sdata->dev);
Jiri Bencf0706e82007-05-05 11:45:53 -07001342}
1343
Jouni Malinene69e95d2010-03-29 23:29:31 -07001344static void ieee80211_set_disassoc(struct ieee80211_sub_if_data *sdata,
Johannes Berg37ad3882012-02-24 13:50:54 +01001345 u16 stype, u16 reason, bool tx,
1346 u8 *frame_buf)
Tomas Winkleraa458d12008-09-09 00:32:12 +03001347{
Johannes Berg46900292009-02-15 12:44:28 +01001348 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Tomas Winkleraa458d12008-09-09 00:32:12 +03001349 struct ieee80211_local *local = sdata->local;
1350 struct sta_info *sta;
Johannes Berg3cc52402012-03-09 13:12:35 +01001351 u32 changed = 0;
Tomas Winkleraa458d12008-09-09 00:32:12 +03001352
Johannes Berg77fdaa12009-07-07 03:45:17 +02001353 ASSERT_MGD_MTX(ifmgd);
1354
Johannes Berg37ad3882012-02-24 13:50:54 +01001355 if (WARN_ON_ONCE(tx && !frame_buf))
1356 return;
1357
Johannes Bergb291ba12009-07-10 15:29:03 +02001358 if (WARN_ON(!ifmgd->associated))
1359 return;
1360
David Spinadel79543d82012-06-12 09:59:45 +03001361 ieee80211_stop_poll(sdata);
1362
Johannes Berg77fdaa12009-07-07 03:45:17 +02001363 ifmgd->associated = NULL;
Johannes Berg77fdaa12009-07-07 03:45:17 +02001364
1365 /*
1366 * we need to commit the associated = NULL change because the
1367 * scan code uses that to determine whether this iface should
1368 * go to/wake up from powersave or not -- and could otherwise
1369 * wake the queues erroneously.
1370 */
1371 smp_mb();
1372
1373 /*
1374 * Thus, we can only afterwards stop the queues -- to account
1375 * for the case where another CPU is finishing a scan at this
1376 * time -- we don't want the scan code to enable queues.
1377 */
Tomas Winkleraa458d12008-09-09 00:32:12 +03001378
John W. Linville8a5b33f2010-01-06 15:39:39 -05001379 netif_tx_stop_all_queues(sdata->dev);
Tomas Winkleraa458d12008-09-09 00:32:12 +03001380 netif_carrier_off(sdata->dev);
1381
Johannes Berg2a419052010-06-10 10:21:29 +02001382 mutex_lock(&local->sta_mtx);
Eliad Peller88a9e312012-06-01 11:14:03 +03001383 sta = sta_info_get(sdata, ifmgd->bssid);
Sujith4cad6c72010-02-10 14:52:21 +05301384 if (sta) {
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001385 set_sta_flag(sta, WLAN_STA_BLOCK_BA);
Johannes Berg53f73c02010-10-05 19:37:40 +02001386 ieee80211_sta_tear_down_BA_sessions(sta, tx);
Sujith4cad6c72010-02-10 14:52:21 +05301387 }
Johannes Berg2a419052010-06-10 10:21:29 +02001388 mutex_unlock(&local->sta_mtx);
Tomas Winkleraa458d12008-09-09 00:32:12 +03001389
Eliad Peller88bc40e2012-07-12 17:35:33 +03001390 /*
1391 * if we want to get out of ps before disassoc (why?) we have
1392 * to do it before sending disassoc, as otherwise the null-packet
1393 * won't be valid.
1394 */
1395 if (local->hw.conf.flags & IEEE80211_CONF_PS) {
1396 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
1397 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
1398 }
1399 local->ps_sdata = NULL;
1400
Eliad Pellerf8239812012-06-27 14:18:22 +03001401 /* flush out any pending frame (e.g. DELBA) before deauth/disassoc */
1402 if (tx)
1403 drv_flush(local, false);
1404
Johannes Berg37ad3882012-02-24 13:50:54 +01001405 /* deauthenticate/disassociate now */
1406 if (tx || frame_buf)
Eliad Peller88a9e312012-06-01 11:14:03 +03001407 ieee80211_send_deauth_disassoc(sdata, ifmgd->bssid, stype,
1408 reason, tx, frame_buf);
Johannes Berg37ad3882012-02-24 13:50:54 +01001409
1410 /* flush out frame */
1411 if (tx)
1412 drv_flush(local, false);
1413
Eliad Peller88a9e312012-06-01 11:14:03 +03001414 /* clear bssid only after building the needed mgmt frames */
1415 memset(ifmgd->bssid, 0, ETH_ALEN);
1416
Johannes Berg37ad3882012-02-24 13:50:54 +01001417 /* remove AP and TDLS peers */
1418 sta_info_flush(local, sdata);
1419
1420 /* finally reset all BSS / config parameters */
Tomas Winklerf5e5bf22008-09-08 17:33:39 +02001421 changed |= ieee80211_reset_erp_info(sdata);
1422
Tomas Winklerf5e5bf22008-09-08 17:33:39 +02001423 ieee80211_led_assoc(local, 0);
Johannes Bergae5eb022008-10-14 16:58:37 +02001424 changed |= BSS_CHANGED_ASSOC;
1425 sdata->vif.bss_conf.assoc = false;
Tomas Winklerf5e5bf22008-09-08 17:33:39 +02001426
Johannes Berg413ad502009-05-08 21:21:06 +02001427 /* on the next assoc, re-program HT parameters */
Ben Greearef96a8422011-11-18 11:32:00 -08001428 memset(&ifmgd->ht_capa, 0, sizeof(ifmgd->ht_capa));
1429 memset(&ifmgd->ht_capa_mask, 0, sizeof(ifmgd->ht_capa_mask));
Johannes Berg413ad502009-05-08 21:21:06 +02001430
Vasanthakumar Thiagarajana8302de2009-01-09 18:14:15 +05301431 local->power_constr_level = 0;
1432
Kalle Valo520eb822008-12-18 23:35:27 +02001433 del_timer_sync(&local->dynamic_ps_timer);
1434 cancel_work_sync(&local->dynamic_ps_enable_work);
1435
Juuso Oikarinen68542962010-06-09 13:43:26 +03001436 /* Disable ARP filtering */
1437 if (sdata->vif.bss_conf.arp_filter_enabled) {
1438 sdata->vif.bss_conf.arp_filter_enabled = false;
1439 changed |= BSS_CHANGED_ARP_FILTER;
1440 }
1441
Johannes Berg3abead52012-03-02 15:56:59 +01001442 sdata->vif.bss_conf.qos = false;
1443 changed |= BSS_CHANGED_QOS;
1444
Johannes Berg0aaffa92010-05-05 15:28:27 +02001445 /* The BSSID (not really interesting) and HT changed */
1446 changed |= BSS_CHANGED_BSSID | BSS_CHANGED_HT;
Johannes Bergae5eb022008-10-14 16:58:37 +02001447 ieee80211_bss_info_change_notify(sdata, changed);
Tomas Winkler8e268e42008-11-25 13:05:44 +02001448
Johannes Berg3cc52402012-03-09 13:12:35 +01001449 /* channel(_type) changes are handled by ieee80211_hw_config */
1450 WARN_ON(!ieee80211_set_channel_type(local, sdata, NL80211_CHAN_NO_HT));
1451 ieee80211_hw_config(local, 0);
1452
Johannes Berg3abead52012-03-02 15:56:59 +01001453 /* disassociated - set to defaults now */
1454 ieee80211_set_wmm_default(sdata, false);
1455
Johannes Bergb9dcf712010-08-27 12:35:54 +02001456 del_timer_sync(&sdata->u.mgd.conn_mon_timer);
1457 del_timer_sync(&sdata->u.mgd.bcn_mon_timer);
1458 del_timer_sync(&sdata->u.mgd.timer);
1459 del_timer_sync(&sdata->u.mgd.chswitch_timer);
Tomas Winkleraa458d12008-09-09 00:32:12 +03001460}
Jiri Bencf0706e82007-05-05 11:45:53 -07001461
Kalle Valo3cf335d2009-03-22 21:57:06 +02001462void ieee80211_sta_rx_notify(struct ieee80211_sub_if_data *sdata,
1463 struct ieee80211_hdr *hdr)
1464{
1465 /*
1466 * We can postpone the mgd.timer whenever receiving unicast frames
1467 * from AP because we know that the connection is working both ways
1468 * at that time. But multicast frames (and hence also beacons) must
1469 * be ignored here, because we need to trigger the timer during
Johannes Bergb291ba12009-07-10 15:29:03 +02001470 * data idle periods for sending the periodic probe request to the
1471 * AP we're connected to.
Kalle Valo3cf335d2009-03-22 21:57:06 +02001472 */
Johannes Bergb291ba12009-07-10 15:29:03 +02001473 if (is_multicast_ether_addr(hdr->addr1))
1474 return;
1475
Luis R. Rodriguezbe099e82010-09-16 15:12:29 -04001476 ieee80211_sta_reset_conn_monitor(sdata);
Kalle Valo3cf335d2009-03-22 21:57:06 +02001477}
Jiri Bencf0706e82007-05-05 11:45:53 -07001478
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001479static void ieee80211_reset_ap_probe(struct ieee80211_sub_if_data *sdata)
1480{
1481 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001482 struct ieee80211_local *local = sdata->local;
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001483
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001484 mutex_lock(&local->mtx);
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001485 if (!(ifmgd->flags & (IEEE80211_STA_BEACON_POLL |
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001486 IEEE80211_STA_CONNECTION_POLL))) {
1487 mutex_unlock(&local->mtx);
1488 return;
1489 }
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001490
Stanislaw Gruszka925e64c2012-05-16 15:27:20 +02001491 __ieee80211_stop_poll(sdata);
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001492
1493 mutex_lock(&local->iflist_mtx);
1494 ieee80211_recalc_ps(local, -1);
1495 mutex_unlock(&local->iflist_mtx);
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001496
1497 if (sdata->local->hw.flags & IEEE80211_HW_CONNECTION_MONITOR)
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001498 goto out;
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001499
1500 /*
1501 * We've received a probe response, but are not sure whether
1502 * we have or will be receiving any beacons or data, so let's
1503 * schedule the timers again, just in case.
1504 */
1505 ieee80211_sta_reset_beacon_monitor(sdata);
1506
1507 mod_timer(&ifmgd->conn_mon_timer,
1508 round_jiffies_up(jiffies +
1509 IEEE80211_CONNECTION_IDLE_TIME));
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001510out:
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001511 mutex_unlock(&local->mtx);
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001512}
1513
1514void ieee80211_sta_tx_notify(struct ieee80211_sub_if_data *sdata,
Felix Fietkau04ac3c02010-12-02 21:01:08 +01001515 struct ieee80211_hdr *hdr, bool ack)
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001516{
Felix Fietkau75706d02010-12-02 21:01:07 +01001517 if (!ieee80211_is_data(hdr->frame_control))
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001518 return;
1519
Felix Fietkau04ac3c02010-12-02 21:01:08 +01001520 if (ack)
1521 ieee80211_sta_reset_conn_monitor(sdata);
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001522
1523 if (ieee80211_is_nullfunc(hdr->frame_control) &&
1524 sdata->u.mgd.probe_send_count > 0) {
Felix Fietkau04ac3c02010-12-02 21:01:08 +01001525 if (ack)
1526 sdata->u.mgd.probe_send_count = 0;
1527 else
1528 sdata->u.mgd.nullfunc_failed = true;
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001529 ieee80211_queue_work(&sdata->local->hw, &sdata->work);
1530 }
1531}
1532
Maxim Levitskya43abf22009-07-31 18:54:12 +03001533static void ieee80211_mgd_probe_ap_send(struct ieee80211_sub_if_data *sdata)
1534{
1535 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1536 const u8 *ssid;
Luis R. Rodriguezf01a0672010-09-16 15:12:34 -04001537 u8 *dst = ifmgd->associated->bssid;
Ben Greear180205b2011-02-04 15:30:24 -08001538 u8 unicast_limit = max(1, max_probe_tries - 3);
Luis R. Rodriguezf01a0672010-09-16 15:12:34 -04001539
1540 /*
1541 * Try sending broadcast probe requests for the last three
1542 * probe requests after the first ones failed since some
1543 * buggy APs only support broadcast probe requests.
1544 */
1545 if (ifmgd->probe_send_count >= unicast_limit)
1546 dst = NULL;
Maxim Levitskya43abf22009-07-31 18:54:12 +03001547
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001548 /*
1549 * When the hardware reports an accurate Tx ACK status, it's
1550 * better to send a nullfunc frame instead of a probe request,
1551 * as it will kick us off the AP quickly if we aren't associated
1552 * anymore. The timeout will be reset if the frame is ACKed by
1553 * the AP.
1554 */
Soumik Das992e68b2012-05-20 15:31:13 +05301555 ifmgd->probe_send_count++;
1556
Felix Fietkau04ac3c02010-12-02 21:01:08 +01001557 if (sdata->local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS) {
1558 ifmgd->nullfunc_failed = false;
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001559 ieee80211_send_nullfunc(sdata->local, sdata, 0);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01001560 } else {
Stanislaw Gruszka88c868c2012-03-29 16:30:41 +02001561 int ssid_len;
1562
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001563 ssid = ieee80211_bss_get_ie(ifmgd->associated, WLAN_EID_SSID);
Stanislaw Gruszka88c868c2012-03-29 16:30:41 +02001564 if (WARN_ON_ONCE(ssid == NULL))
1565 ssid_len = 0;
1566 else
1567 ssid_len = ssid[1];
1568
1569 ieee80211_send_probe_req(sdata, dst, ssid + 2, ssid_len, NULL,
1570 0, (u32) -1, true, false);
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001571 }
Maxim Levitskya43abf22009-07-31 18:54:12 +03001572
Ben Greear180205b2011-02-04 15:30:24 -08001573 ifmgd->probe_timeout = jiffies + msecs_to_jiffies(probe_wait_ms);
Maxim Levitskya43abf22009-07-31 18:54:12 +03001574 run_again(ifmgd, ifmgd->probe_timeout);
Rajkumar Manoharanf69b9c72012-03-15 06:15:26 +05301575 if (sdata->local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS)
1576 drv_flush(sdata->local, false);
Maxim Levitskya43abf22009-07-31 18:54:12 +03001577}
1578
Johannes Bergb291ba12009-07-10 15:29:03 +02001579static void ieee80211_mgd_probe_ap(struct ieee80211_sub_if_data *sdata,
1580 bool beacon)
Kalle Valo04de8382009-03-22 21:57:35 +02001581{
Kalle Valo04de8382009-03-22 21:57:35 +02001582 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Bergb291ba12009-07-10 15:29:03 +02001583 bool already = false;
Johannes Berg34bfc412009-05-12 19:58:12 +02001584
Johannes Berg9607e6b2009-12-23 13:15:31 +01001585 if (!ieee80211_sdata_running(sdata))
Johannes Berg0e2b6282009-07-13 13:23:39 +02001586 return;
1587
Johannes Berg77fdaa12009-07-07 03:45:17 +02001588 mutex_lock(&ifmgd->mtx);
1589
1590 if (!ifmgd->associated)
1591 goto out;
1592
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001593 mutex_lock(&sdata->local->mtx);
1594
1595 if (sdata->local->tmp_channel || sdata->local->scanning) {
1596 mutex_unlock(&sdata->local->mtx);
1597 goto out;
1598 }
1599
Joe Perchese87cc472012-05-13 21:56:26 +00001600 if (beacon)
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02001601 mlme_dbg_ratelimited(sdata,
1602 "detected beacon loss from AP - sending probe request\n");
1603
Holger Schurig6efb71b2012-05-15 15:38:59 +02001604 ieee80211_cqm_rssi_notify(&sdata->vif,
1605 NL80211_CQM_RSSI_BEACON_LOSS_EVENT, GFP_KERNEL);
Kalle Valo04de8382009-03-22 21:57:35 +02001606
Johannes Bergb291ba12009-07-10 15:29:03 +02001607 /*
1608 * The driver/our work has already reported this event or the
1609 * connection monitoring has kicked in and we have already sent
1610 * a probe request. Or maybe the AP died and the driver keeps
1611 * reporting until we disassociate...
1612 *
1613 * In either case we have to ignore the current call to this
1614 * function (except for setting the correct probe reason bit)
1615 * because otherwise we would reset the timer every time and
1616 * never check whether we received a probe response!
1617 */
1618 if (ifmgd->flags & (IEEE80211_STA_BEACON_POLL |
1619 IEEE80211_STA_CONNECTION_POLL))
1620 already = true;
1621
1622 if (beacon)
1623 ifmgd->flags |= IEEE80211_STA_BEACON_POLL;
1624 else
1625 ifmgd->flags |= IEEE80211_STA_CONNECTION_POLL;
1626
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001627 mutex_unlock(&sdata->local->mtx);
1628
Johannes Bergb291ba12009-07-10 15:29:03 +02001629 if (already)
1630 goto out;
1631
Johannes Berg4e751842009-06-10 15:16:52 +02001632 mutex_lock(&sdata->local->iflist_mtx);
1633 ieee80211_recalc_ps(sdata->local, -1);
1634 mutex_unlock(&sdata->local->iflist_mtx);
1635
Maxim Levitskya43abf22009-07-31 18:54:12 +03001636 ifmgd->probe_send_count = 0;
1637 ieee80211_mgd_probe_ap_send(sdata);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001638 out:
1639 mutex_unlock(&ifmgd->mtx);
Kalle Valo04de8382009-03-22 21:57:35 +02001640}
1641
Juuso Oikarinena619a4c2010-11-11 08:50:18 +02001642struct sk_buff *ieee80211_ap_probereq_get(struct ieee80211_hw *hw,
1643 struct ieee80211_vif *vif)
1644{
1645 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
1646 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Eliad Pellerd9b3b282012-06-28 15:03:13 +03001647 struct cfg80211_bss *cbss;
Juuso Oikarinena619a4c2010-11-11 08:50:18 +02001648 struct sk_buff *skb;
1649 const u8 *ssid;
Stanislaw Gruszka88c868c2012-03-29 16:30:41 +02001650 int ssid_len;
Juuso Oikarinena619a4c2010-11-11 08:50:18 +02001651
1652 if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION))
1653 return NULL;
1654
1655 ASSERT_MGD_MTX(ifmgd);
1656
Eliad Pellerd9b3b282012-06-28 15:03:13 +03001657 if (ifmgd->associated)
1658 cbss = ifmgd->associated;
1659 else if (ifmgd->auth_data)
1660 cbss = ifmgd->auth_data->bss;
1661 else if (ifmgd->assoc_data)
1662 cbss = ifmgd->assoc_data->bss;
1663 else
Juuso Oikarinena619a4c2010-11-11 08:50:18 +02001664 return NULL;
1665
Eliad Pellerd9b3b282012-06-28 15:03:13 +03001666 ssid = ieee80211_bss_get_ie(cbss, WLAN_EID_SSID);
Stanislaw Gruszka88c868c2012-03-29 16:30:41 +02001667 if (WARN_ON_ONCE(ssid == NULL))
1668 ssid_len = 0;
1669 else
1670 ssid_len = ssid[1];
1671
Eliad Pellerd9b3b282012-06-28 15:03:13 +03001672 skb = ieee80211_build_probe_req(sdata, cbss->bssid,
Stanislaw Gruszka88c868c2012-03-29 16:30:41 +02001673 (u32) -1, ssid + 2, ssid_len,
Johannes Berg85a237f2011-07-18 18:08:36 +02001674 NULL, 0, true);
Juuso Oikarinena619a4c2010-11-11 08:50:18 +02001675
1676 return skb;
1677}
1678EXPORT_SYMBOL(ieee80211_ap_probereq_get);
1679
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02001680static void __ieee80211_connection_loss(struct ieee80211_sub_if_data *sdata)
1681{
1682 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1683 struct ieee80211_local *local = sdata->local;
1684 u8 bssid[ETH_ALEN];
Johannes Berg5fef7db2012-02-24 13:50:52 +01001685 u8 frame_buf[DEAUTH_DISASSOC_LEN];
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02001686
1687 mutex_lock(&ifmgd->mtx);
1688 if (!ifmgd->associated) {
1689 mutex_unlock(&ifmgd->mtx);
1690 return;
1691 }
1692
1693 memcpy(bssid, ifmgd->associated->bssid, ETH_ALEN);
1694
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02001695 sdata_info(sdata, "Connection to AP %pM lost\n", bssid);
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02001696
Johannes Berg37ad3882012-02-24 13:50:54 +01001697 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH,
1698 WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY,
1699 false, frame_buf);
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02001700 mutex_unlock(&ifmgd->mtx);
Johannes Berg7da7cc12010-08-05 17:02:38 +02001701
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02001702 /*
1703 * must be outside lock due to cfg80211,
1704 * but that's not a problem.
1705 */
Johannes Berg5fef7db2012-02-24 13:50:52 +01001706 cfg80211_send_deauth(sdata->dev, frame_buf, DEAUTH_DISASSOC_LEN);
Felix Fietkaufcac4fb2011-11-16 13:34:55 +01001707
1708 mutex_lock(&local->mtx);
1709 ieee80211_recalc_idle(local);
1710 mutex_unlock(&local->mtx);
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02001711}
1712
1713void ieee80211_beacon_connection_loss_work(struct work_struct *work)
Johannes Bergb291ba12009-07-10 15:29:03 +02001714{
1715 struct ieee80211_sub_if_data *sdata =
1716 container_of(work, struct ieee80211_sub_if_data,
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02001717 u.mgd.beacon_connection_loss_work);
Paul Stewarta85e1d52011-12-09 11:01:49 -08001718 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1719 struct sta_info *sta;
1720
1721 if (ifmgd->associated) {
Mohammed Shafi Shajakhan30fa9042011-12-27 18:54:07 +05301722 rcu_read_lock();
Paul Stewarta85e1d52011-12-09 11:01:49 -08001723 sta = sta_info_get(sdata, ifmgd->bssid);
1724 if (sta)
1725 sta->beacon_loss_count++;
Mohammed Shafi Shajakhan30fa9042011-12-27 18:54:07 +05301726 rcu_read_unlock();
Paul Stewarta85e1d52011-12-09 11:01:49 -08001727 }
Johannes Bergb291ba12009-07-10 15:29:03 +02001728
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02001729 if (sdata->local->hw.flags & IEEE80211_HW_CONNECTION_MONITOR)
1730 __ieee80211_connection_loss(sdata);
1731 else
1732 ieee80211_mgd_probe_ap(sdata, true);
Johannes Bergb291ba12009-07-10 15:29:03 +02001733}
1734
Kalle Valo04de8382009-03-22 21:57:35 +02001735void ieee80211_beacon_loss(struct ieee80211_vif *vif)
1736{
1737 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02001738 struct ieee80211_hw *hw = &sdata->local->hw;
Kalle Valo04de8382009-03-22 21:57:35 +02001739
Johannes Bergb5878a22010-04-07 16:48:40 +02001740 trace_api_beacon_loss(sdata);
1741
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02001742 WARN_ON(hw->flags & IEEE80211_HW_CONNECTION_MONITOR);
1743 ieee80211_queue_work(hw, &sdata->u.mgd.beacon_connection_loss_work);
Kalle Valo04de8382009-03-22 21:57:35 +02001744}
1745EXPORT_SYMBOL(ieee80211_beacon_loss);
1746
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02001747void ieee80211_connection_loss(struct ieee80211_vif *vif)
1748{
1749 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
1750 struct ieee80211_hw *hw = &sdata->local->hw;
1751
Johannes Bergb5878a22010-04-07 16:48:40 +02001752 trace_api_connection_loss(sdata);
1753
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02001754 WARN_ON(!(hw->flags & IEEE80211_HW_CONNECTION_MONITOR));
1755 ieee80211_queue_work(hw, &sdata->u.mgd.beacon_connection_loss_work);
1756}
1757EXPORT_SYMBOL(ieee80211_connection_loss);
1758
1759
Johannes Berg66e67e42012-01-20 13:55:27 +01001760static void ieee80211_destroy_auth_data(struct ieee80211_sub_if_data *sdata,
1761 bool assoc)
1762{
1763 struct ieee80211_mgd_auth_data *auth_data = sdata->u.mgd.auth_data;
1764
1765 lockdep_assert_held(&sdata->u.mgd.mtx);
1766
Johannes Berg66e67e42012-01-20 13:55:27 +01001767 if (!assoc) {
1768 sta_info_destroy_addr(sdata, auth_data->bss->bssid);
1769
1770 memset(sdata->u.mgd.bssid, 0, ETH_ALEN);
1771 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BSSID);
1772 }
1773
1774 cfg80211_put_bss(auth_data->bss);
1775 kfree(auth_data);
1776 sdata->u.mgd.auth_data = NULL;
1777}
1778
1779static void ieee80211_auth_challenge(struct ieee80211_sub_if_data *sdata,
1780 struct ieee80211_mgmt *mgmt, size_t len)
1781{
1782 struct ieee80211_mgd_auth_data *auth_data = sdata->u.mgd.auth_data;
1783 u8 *pos;
1784 struct ieee802_11_elems elems;
1785
1786 pos = mgmt->u.auth.variable;
1787 ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), &elems);
1788 if (!elems.challenge)
1789 return;
1790 auth_data->expected_transaction = 4;
Johannes Berga1845fc2012-06-27 13:18:36 +02001791 drv_mgd_prepare_tx(sdata->local, sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01001792 ieee80211_send_auth(sdata, 3, auth_data->algorithm,
1793 elems.challenge - 2, elems.challenge_len + 2,
1794 auth_data->bss->bssid, auth_data->bss->bssid,
1795 auth_data->key, auth_data->key_len,
1796 auth_data->key_idx);
1797}
1798
1799static enum rx_mgmt_action __must_check
1800ieee80211_rx_mgmt_auth(struct ieee80211_sub_if_data *sdata,
1801 struct ieee80211_mgmt *mgmt, size_t len)
1802{
1803 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1804 u8 bssid[ETH_ALEN];
1805 u16 auth_alg, auth_transaction, status_code;
1806 struct sta_info *sta;
1807
1808 lockdep_assert_held(&ifmgd->mtx);
1809
1810 if (len < 24 + 6)
1811 return RX_MGMT_NONE;
1812
1813 if (!ifmgd->auth_data || ifmgd->auth_data->done)
1814 return RX_MGMT_NONE;
1815
1816 memcpy(bssid, ifmgd->auth_data->bss->bssid, ETH_ALEN);
1817
Joe Perchesb203ca32012-05-08 18:56:52 +00001818 if (!ether_addr_equal(bssid, mgmt->bssid))
Johannes Berg66e67e42012-01-20 13:55:27 +01001819 return RX_MGMT_NONE;
1820
1821 auth_alg = le16_to_cpu(mgmt->u.auth.auth_alg);
1822 auth_transaction = le16_to_cpu(mgmt->u.auth.auth_transaction);
1823 status_code = le16_to_cpu(mgmt->u.auth.status_code);
1824
1825 if (auth_alg != ifmgd->auth_data->algorithm ||
1826 auth_transaction != ifmgd->auth_data->expected_transaction)
1827 return RX_MGMT_NONE;
1828
1829 if (status_code != WLAN_STATUS_SUCCESS) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02001830 sdata_info(sdata, "%pM denied authentication (status %d)\n",
1831 mgmt->sa, status_code);
Eliad Pellerdac211e2012-05-13 18:07:04 +03001832 ieee80211_destroy_auth_data(sdata, false);
1833 return RX_MGMT_CFG80211_RX_AUTH;
Johannes Berg66e67e42012-01-20 13:55:27 +01001834 }
1835
1836 switch (ifmgd->auth_data->algorithm) {
1837 case WLAN_AUTH_OPEN:
1838 case WLAN_AUTH_LEAP:
1839 case WLAN_AUTH_FT:
1840 break;
1841 case WLAN_AUTH_SHARED_KEY:
1842 if (ifmgd->auth_data->expected_transaction != 4) {
1843 ieee80211_auth_challenge(sdata, mgmt, len);
1844 /* need another frame */
1845 return RX_MGMT_NONE;
1846 }
1847 break;
1848 default:
1849 WARN_ONCE(1, "invalid auth alg %d",
1850 ifmgd->auth_data->algorithm);
1851 return RX_MGMT_NONE;
1852 }
1853
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02001854 sdata_info(sdata, "authenticated\n");
Johannes Berg66e67e42012-01-20 13:55:27 +01001855 ifmgd->auth_data->done = true;
1856 ifmgd->auth_data->timeout = jiffies + IEEE80211_AUTH_WAIT_ASSOC;
1857 run_again(ifmgd, ifmgd->auth_data->timeout);
1858
1859 /* move station state to auth */
1860 mutex_lock(&sdata->local->sta_mtx);
1861 sta = sta_info_get(sdata, bssid);
1862 if (!sta) {
1863 WARN_ONCE(1, "%s: STA %pM not found", sdata->name, bssid);
1864 goto out_err;
1865 }
1866 if (sta_info_move_state(sta, IEEE80211_STA_AUTH)) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02001867 sdata_info(sdata, "failed moving %pM to auth\n", bssid);
Johannes Berg66e67e42012-01-20 13:55:27 +01001868 goto out_err;
1869 }
1870 mutex_unlock(&sdata->local->sta_mtx);
1871
1872 return RX_MGMT_CFG80211_RX_AUTH;
1873 out_err:
1874 mutex_unlock(&sdata->local->sta_mtx);
1875 /* ignore frame -- wait for timeout */
1876 return RX_MGMT_NONE;
1877}
1878
1879
Johannes Berg77fdaa12009-07-07 03:45:17 +02001880static enum rx_mgmt_action __must_check
1881ieee80211_rx_mgmt_deauth(struct ieee80211_sub_if_data *sdata,
Johannes Berg77fdaa12009-07-07 03:45:17 +02001882 struct ieee80211_mgmt *mgmt, size_t len)
Jiri Bencf0706e82007-05-05 11:45:53 -07001883{
Johannes Berg46900292009-02-15 12:44:28 +01001884 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg77fdaa12009-07-07 03:45:17 +02001885 const u8 *bssid = NULL;
Jiri Bencf0706e82007-05-05 11:45:53 -07001886 u16 reason_code;
1887
Johannes Berg66e67e42012-01-20 13:55:27 +01001888 lockdep_assert_held(&ifmgd->mtx);
1889
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001890 if (len < 24 + 2)
Johannes Berg77fdaa12009-07-07 03:45:17 +02001891 return RX_MGMT_NONE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001892
Johannes Berg66e67e42012-01-20 13:55:27 +01001893 if (!ifmgd->associated ||
Joe Perchesb203ca32012-05-08 18:56:52 +00001894 !ether_addr_equal(mgmt->bssid, ifmgd->associated->bssid))
Johannes Berg66e67e42012-01-20 13:55:27 +01001895 return RX_MGMT_NONE;
Johannes Berg77fdaa12009-07-07 03:45:17 +02001896
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01001897 bssid = ifmgd->associated->bssid;
Jiri Bencf0706e82007-05-05 11:45:53 -07001898
1899 reason_code = le16_to_cpu(mgmt->u.deauth.reason_code);
1900
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02001901 sdata_info(sdata, "deauthenticated from %pM (Reason: %u)\n",
1902 bssid, reason_code);
Jiri Bencf0706e82007-05-05 11:45:53 -07001903
Johannes Berg37ad3882012-02-24 13:50:54 +01001904 ieee80211_set_disassoc(sdata, 0, 0, false, NULL);
1905
Johannes Berg7da7cc12010-08-05 17:02:38 +02001906 mutex_lock(&sdata->local->mtx);
Johannes Berg63f170e2009-12-23 13:15:33 +01001907 ieee80211_recalc_idle(sdata->local);
Johannes Berg7da7cc12010-08-05 17:02:38 +02001908 mutex_unlock(&sdata->local->mtx);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001909
1910 return RX_MGMT_CFG80211_DEAUTH;
Jiri Bencf0706e82007-05-05 11:45:53 -07001911}
1912
1913
Johannes Berg77fdaa12009-07-07 03:45:17 +02001914static enum rx_mgmt_action __must_check
1915ieee80211_rx_mgmt_disassoc(struct ieee80211_sub_if_data *sdata,
1916 struct ieee80211_mgmt *mgmt, size_t len)
Jiri Bencf0706e82007-05-05 11:45:53 -07001917{
Johannes Berg46900292009-02-15 12:44:28 +01001918 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jiri Bencf0706e82007-05-05 11:45:53 -07001919 u16 reason_code;
1920
Johannes Berg66e67e42012-01-20 13:55:27 +01001921 lockdep_assert_held(&ifmgd->mtx);
1922
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001923 if (len < 24 + 2)
Johannes Berg77fdaa12009-07-07 03:45:17 +02001924 return RX_MGMT_NONE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001925
Johannes Berg66e67e42012-01-20 13:55:27 +01001926 if (!ifmgd->associated ||
Joe Perchesb203ca32012-05-08 18:56:52 +00001927 !ether_addr_equal(mgmt->bssid, ifmgd->associated->bssid))
Johannes Berg77fdaa12009-07-07 03:45:17 +02001928 return RX_MGMT_NONE;
Jiri Bencf0706e82007-05-05 11:45:53 -07001929
1930 reason_code = le16_to_cpu(mgmt->u.disassoc.reason_code);
1931
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02001932 sdata_info(sdata, "disassociated from %pM (Reason: %u)\n",
1933 mgmt->sa, reason_code);
Jiri Bencf0706e82007-05-05 11:45:53 -07001934
Johannes Berg37ad3882012-02-24 13:50:54 +01001935 ieee80211_set_disassoc(sdata, 0, 0, false, NULL);
1936
Johannes Berg7da7cc12010-08-05 17:02:38 +02001937 mutex_lock(&sdata->local->mtx);
Johannes Bergbc83b682009-11-29 12:19:06 +01001938 ieee80211_recalc_idle(sdata->local);
Johannes Berg7da7cc12010-08-05 17:02:38 +02001939 mutex_unlock(&sdata->local->mtx);
Johannes Berg37ad3882012-02-24 13:50:54 +01001940
Johannes Berg77fdaa12009-07-07 03:45:17 +02001941 return RX_MGMT_CFG80211_DISASSOC;
Jiri Bencf0706e82007-05-05 11:45:53 -07001942}
1943
Christian Lamparterc74d0842011-10-15 00:14:49 +02001944static void ieee80211_get_rates(struct ieee80211_supported_band *sband,
1945 u8 *supp_rates, unsigned int supp_rates_len,
1946 u32 *rates, u32 *basic_rates,
1947 bool *have_higher_than_11mbit,
1948 int *min_rate, int *min_rate_index)
1949{
1950 int i, j;
1951
1952 for (i = 0; i < supp_rates_len; i++) {
1953 int rate = (supp_rates[i] & 0x7f) * 5;
1954 bool is_basic = !!(supp_rates[i] & 0x80);
1955
1956 if (rate > 110)
1957 *have_higher_than_11mbit = true;
1958
1959 /*
1960 * BSS_MEMBERSHIP_SELECTOR_HT_PHY is defined in 802.11n-2009
1961 * 7.3.2.2 as a magic value instead of a rate. Hence, skip it.
1962 *
1963 * Note: Even through the membership selector and the basic
1964 * rate flag share the same bit, they are not exactly
1965 * the same.
1966 */
1967 if (!!(supp_rates[i] & 0x80) &&
1968 (supp_rates[i] & 0x7f) == BSS_MEMBERSHIP_SELECTOR_HT_PHY)
1969 continue;
1970
1971 for (j = 0; j < sband->n_bitrates; j++) {
1972 if (sband->bitrates[j].bitrate == rate) {
1973 *rates |= BIT(j);
1974 if (is_basic)
1975 *basic_rates |= BIT(j);
1976 if (rate < *min_rate) {
1977 *min_rate = rate;
1978 *min_rate_index = j;
1979 }
1980 break;
1981 }
1982 }
1983 }
1984}
Jiri Bencf0706e82007-05-05 11:45:53 -07001985
Johannes Berg66e67e42012-01-20 13:55:27 +01001986static void ieee80211_destroy_assoc_data(struct ieee80211_sub_if_data *sdata,
1987 bool assoc)
1988{
1989 struct ieee80211_mgd_assoc_data *assoc_data = sdata->u.mgd.assoc_data;
1990
1991 lockdep_assert_held(&sdata->u.mgd.mtx);
1992
Johannes Berg66e67e42012-01-20 13:55:27 +01001993 if (!assoc) {
1994 sta_info_destroy_addr(sdata, assoc_data->bss->bssid);
1995
1996 memset(sdata->u.mgd.bssid, 0, ETH_ALEN);
1997 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BSSID);
1998 }
1999
2000 kfree(assoc_data);
2001 sdata->u.mgd.assoc_data = NULL;
2002}
2003
2004static bool ieee80211_assoc_success(struct ieee80211_sub_if_data *sdata,
2005 struct cfg80211_bss *cbss,
Johannes Bergaf6b6372009-12-23 13:15:35 +01002006 struct ieee80211_mgmt *mgmt, size_t len)
Jiri Bencf0706e82007-05-05 11:45:53 -07002007{
Johannes Berg46900292009-02-15 12:44:28 +01002008 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg471b3ef2007-12-28 14:32:58 +01002009 struct ieee80211_local *local = sdata->local;
Johannes Berg8318d782008-01-24 19:38:38 +01002010 struct ieee80211_supported_band *sband;
Jiri Bencf0706e82007-05-05 11:45:53 -07002011 struct sta_info *sta;
Johannes Bergaf6b6372009-12-23 13:15:35 +01002012 u8 *pos;
Johannes Bergaf6b6372009-12-23 13:15:35 +01002013 u16 capab_info, aid;
Jiri Bencf0706e82007-05-05 11:45:53 -07002014 struct ieee802_11_elems elems;
Johannes Bergbda39332008-10-11 01:51:51 +02002015 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
Johannes Bergae5eb022008-10-14 16:58:37 +02002016 u32 changed = 0;
Christian Lamparterc74d0842011-10-15 00:14:49 +02002017 int err;
Jiri Bencf0706e82007-05-05 11:45:53 -07002018
Johannes Bergaf6b6372009-12-23 13:15:35 +01002019 /* AssocResp and ReassocResp have identical structure */
Jiri Bencf0706e82007-05-05 11:45:53 -07002020
Jiri Bencf0706e82007-05-05 11:45:53 -07002021 aid = le16_to_cpu(mgmt->u.assoc_resp.aid);
Johannes Bergaf6b6372009-12-23 13:15:35 +01002022 capab_info = le16_to_cpu(mgmt->u.assoc_resp.capab_info);
Jiri Bencf0706e82007-05-05 11:45:53 -07002023
Johannes Berg1dd84aa2007-10-10 12:03:41 +02002024 if ((aid & (BIT(15) | BIT(14))) != (BIT(15) | BIT(14)))
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002025 sdata_info(sdata, "invalid AID value 0x%x; bits 15:14 not set\n",
2026 aid);
Johannes Berg1dd84aa2007-10-10 12:03:41 +02002027 aid &= ~(BIT(15) | BIT(14));
2028
Johannes Berg05cb9102011-10-28 11:59:47 +02002029 ifmgd->broken_ap = false;
2030
2031 if (aid == 0 || aid > IEEE80211_MAX_AID) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002032 sdata_info(sdata, "invalid AID value %d (out of range), turn off PS\n",
2033 aid);
Johannes Berg05cb9102011-10-28 11:59:47 +02002034 aid = 0;
2035 ifmgd->broken_ap = true;
2036 }
2037
Johannes Bergaf6b6372009-12-23 13:15:35 +01002038 pos = mgmt->u.assoc_resp.variable;
2039 ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), &elems);
2040
Jiri Bencf0706e82007-05-05 11:45:53 -07002041 if (!elems.supp_rates) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002042 sdata_info(sdata, "no SuppRates element in AssocResp\n");
Johannes Bergaf6b6372009-12-23 13:15:35 +01002043 return false;
Jiri Bencf0706e82007-05-05 11:45:53 -07002044 }
2045
Johannes Berg46900292009-02-15 12:44:28 +01002046 ifmgd->aid = aid;
Jiri Bencf0706e82007-05-05 11:45:53 -07002047
Guy Eilam2a33bee2011-08-17 15:18:15 +03002048 mutex_lock(&sdata->local->sta_mtx);
2049 /*
2050 * station info was already allocated and inserted before
2051 * the association and should be available to us
2052 */
Johannes Berg7852e362012-01-20 13:55:24 +01002053 sta = sta_info_get(sdata, cbss->bssid);
Guy Eilam2a33bee2011-08-17 15:18:15 +03002054 if (WARN_ON(!sta)) {
2055 mutex_unlock(&sdata->local->sta_mtx);
Johannes Bergaf6b6372009-12-23 13:15:35 +01002056 return false;
Jiri Bencf0706e82007-05-05 11:45:53 -07002057 }
2058
Johannes Berg66e67e42012-01-20 13:55:27 +01002059 sband = local->hw.wiphy->bands[local->oper_channel->band];
Johannes Berg8318d782008-01-24 19:38:38 +01002060
Johannes Bergab1faea2009-07-01 21:41:17 +02002061 if (elems.ht_cap_elem && !(ifmgd->flags & IEEE80211_STA_DISABLE_11N))
Ben Greearef96a8422011-11-18 11:32:00 -08002062 ieee80211_ht_cap_ie_to_sta_ht_cap(sdata, sband,
Johannes Bergd9fe60d2008-10-09 12:13:49 +02002063 elems.ht_cap_elem, &sta->sta.ht_cap);
Johannes Bergae5eb022008-10-14 16:58:37 +02002064
Johannes Berg64f68e52012-03-28 10:58:37 +02002065 sta->supports_40mhz =
2066 sta->sta.ht_cap.cap & IEEE80211_HT_CAP_SUP_WIDTH_20_40;
2067
Johannes Berg4b7679a2008-09-18 18:14:18 +02002068 rate_control_rate_init(sta);
Jiri Bencf0706e82007-05-05 11:45:53 -07002069
Johannes Berg46900292009-02-15 12:44:28 +01002070 if (ifmgd->flags & IEEE80211_STA_MFP_ENABLED)
Johannes Bergc2c98fd2011-09-29 16:04:36 +02002071 set_sta_flag(sta, WLAN_STA_MFP);
Jouni Malinen5394af42009-01-08 13:31:59 +02002072
Johannes Bergddf4ac52008-10-22 11:41:38 +02002073 if (elems.wmm_param)
Johannes Bergc2c98fd2011-09-29 16:04:36 +02002074 set_sta_flag(sta, WLAN_STA_WME);
Johannes Bergddf4ac52008-10-22 11:41:38 +02002075
Johannes Bergc8987872012-01-20 13:55:17 +01002076 err = sta_info_move_state(sta, IEEE80211_STA_AUTH);
2077 if (!err)
2078 err = sta_info_move_state(sta, IEEE80211_STA_ASSOC);
2079 if (!err && !(ifmgd->flags & IEEE80211_STA_CONTROL_PORT))
2080 err = sta_info_move_state(sta, IEEE80211_STA_AUTHORIZED);
2081 if (err) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002082 sdata_info(sdata,
2083 "failed to move station %pM to desired state\n",
2084 sta->sta.addr);
Johannes Bergc8987872012-01-20 13:55:17 +01002085 WARN_ON(__sta_info_destroy(sta));
2086 mutex_unlock(&sdata->local->sta_mtx);
2087 return false;
2088 }
2089
Johannes Berg7852e362012-01-20 13:55:24 +01002090 mutex_unlock(&sdata->local->sta_mtx);
Johannes Bergddf4ac52008-10-22 11:41:38 +02002091
Juuso Oikarinenf2176d72010-09-28 14:39:32 +03002092 /*
2093 * Always handle WMM once after association regardless
2094 * of the first value the AP uses. Setting -1 here has
2095 * that effect because the AP values is an unsigned
2096 * 4-bit value.
2097 */
2098 ifmgd->wmm_last_param_set = -1;
2099
Johannes Bergddf4ac52008-10-22 11:41:38 +02002100 if (elems.wmm_param)
Johannes Berg4ced3f72010-07-19 16:39:04 +02002101 ieee80211_sta_wmm_params(local, sdata, elems.wmm_param,
Jiri Bencf0706e82007-05-05 11:45:53 -07002102 elems.wmm_param_len);
Johannes Bergaa837e12009-05-07 16:16:24 +02002103 else
Johannes Berg3abead52012-03-02 15:56:59 +01002104 ieee80211_set_wmm_default(sdata, false);
2105 changed |= BSS_CHANGED_QOS;
Jiri Bencf0706e82007-05-05 11:45:53 -07002106
Johannes Berg074d46d2012-03-15 19:45:16 +01002107 if (elems.ht_operation && elems.wmm_param &&
Johannes Bergab1faea2009-07-01 21:41:17 +02002108 !(ifmgd->flags & IEEE80211_STA_DISABLE_11N))
Johannes Berg24398e32012-03-28 10:58:36 +02002109 changed |= ieee80211_config_ht_tx(sdata, elems.ht_operation,
2110 cbss->bssid, false);
Johannes Bergae5eb022008-10-14 16:58:37 +02002111
Tomas Winkler21c0cbe2008-03-28 16:33:34 -07002112 /* set AID and assoc capability,
2113 * ieee80211_set_associated() will tell the driver */
Johannes Berg8318d782008-01-24 19:38:38 +01002114 bss_conf->aid = aid;
Tomas Winkler21c0cbe2008-03-28 16:33:34 -07002115 bss_conf->assoc_capability = capab_info;
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01002116 ieee80211_set_associated(sdata, cbss, changed);
Jiri Bencf0706e82007-05-05 11:45:53 -07002117
Kalle Valo15b7b062009-03-22 21:57:14 +02002118 /*
Felix Fietkaud5242152010-01-08 18:06:26 +01002119 * If we're using 4-addr mode, let the AP know that we're
2120 * doing so, so that it can create the STA VLAN on its side
2121 */
2122 if (ifmgd->use_4addr)
2123 ieee80211_send_4addr_nullfunc(local, sdata);
2124
2125 /*
Johannes Bergb291ba12009-07-10 15:29:03 +02002126 * Start timer to probe the connection to the AP now.
2127 * Also start the timer that will detect beacon loss.
Kalle Valo15b7b062009-03-22 21:57:14 +02002128 */
Johannes Bergb291ba12009-07-10 15:29:03 +02002129 ieee80211_sta_rx_notify(sdata, (struct ieee80211_hdr *)mgmt);
Luis R. Rodriguezd3a910a2010-09-16 15:12:32 -04002130 ieee80211_sta_reset_beacon_monitor(sdata);
Kalle Valo15b7b062009-03-22 21:57:14 +02002131
Johannes Bergaf6b6372009-12-23 13:15:35 +01002132 return true;
Jiri Bencf0706e82007-05-05 11:45:53 -07002133}
2134
Johannes Berg66e67e42012-01-20 13:55:27 +01002135static enum rx_mgmt_action __must_check
2136ieee80211_rx_mgmt_assoc_resp(struct ieee80211_sub_if_data *sdata,
2137 struct ieee80211_mgmt *mgmt, size_t len,
2138 struct cfg80211_bss **bss)
2139{
2140 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2141 struct ieee80211_mgd_assoc_data *assoc_data = ifmgd->assoc_data;
2142 u16 capab_info, status_code, aid;
2143 struct ieee802_11_elems elems;
2144 u8 *pos;
2145 bool reassoc;
Jiri Bencf0706e82007-05-05 11:45:53 -07002146
Johannes Berg66e67e42012-01-20 13:55:27 +01002147 lockdep_assert_held(&ifmgd->mtx);
2148
2149 if (!assoc_data)
2150 return RX_MGMT_NONE;
Joe Perchesb203ca32012-05-08 18:56:52 +00002151 if (!ether_addr_equal(assoc_data->bss->bssid, mgmt->bssid))
Johannes Berg66e67e42012-01-20 13:55:27 +01002152 return RX_MGMT_NONE;
2153
2154 /*
2155 * AssocResp and ReassocResp have identical structure, so process both
2156 * of them in this function.
2157 */
2158
2159 if (len < 24 + 6)
2160 return RX_MGMT_NONE;
2161
2162 reassoc = ieee80211_is_reassoc_req(mgmt->frame_control);
2163 capab_info = le16_to_cpu(mgmt->u.assoc_resp.capab_info);
2164 status_code = le16_to_cpu(mgmt->u.assoc_resp.status_code);
2165 aid = le16_to_cpu(mgmt->u.assoc_resp.aid);
2166
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002167 sdata_info(sdata,
2168 "RX %sssocResp from %pM (capab=0x%x status=%d aid=%d)\n",
2169 reassoc ? "Rea" : "A", mgmt->sa,
2170 capab_info, status_code, (u16)(aid & ~(BIT(15) | BIT(14))));
Johannes Berg66e67e42012-01-20 13:55:27 +01002171
2172 pos = mgmt->u.assoc_resp.variable;
2173 ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), &elems);
2174
2175 if (status_code == WLAN_STATUS_ASSOC_REJECTED_TEMPORARILY &&
2176 elems.timeout_int && elems.timeout_int_len == 5 &&
2177 elems.timeout_int[0] == WLAN_TIMEOUT_ASSOC_COMEBACK) {
2178 u32 tu, ms;
2179 tu = get_unaligned_le32(elems.timeout_int + 1);
2180 ms = tu * 1024 / 1000;
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002181 sdata_info(sdata,
2182 "%pM rejected association temporarily; comeback duration %u TU (%u ms)\n",
2183 mgmt->sa, tu, ms);
Johannes Berg66e67e42012-01-20 13:55:27 +01002184 assoc_data->timeout = jiffies + msecs_to_jiffies(ms);
2185 if (ms > IEEE80211_ASSOC_TIMEOUT)
2186 run_again(ifmgd, assoc_data->timeout);
2187 return RX_MGMT_NONE;
2188 }
2189
2190 *bss = assoc_data->bss;
2191
2192 if (status_code != WLAN_STATUS_SUCCESS) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002193 sdata_info(sdata, "%pM denied association (code=%d)\n",
2194 mgmt->sa, status_code);
Johannes Berg66e67e42012-01-20 13:55:27 +01002195 ieee80211_destroy_assoc_data(sdata, false);
2196 } else {
Johannes Berg66e67e42012-01-20 13:55:27 +01002197 if (!ieee80211_assoc_success(sdata, *bss, mgmt, len)) {
2198 /* oops -- internal error -- send timeout for now */
Eliad Peller10a91092012-07-02 14:42:03 +03002199 ieee80211_destroy_assoc_data(sdata, false);
Johannes Berg66e67e42012-01-20 13:55:27 +01002200 cfg80211_put_bss(*bss);
2201 return RX_MGMT_CFG80211_ASSOC_TIMEOUT;
2202 }
John W. Linville635d9992012-07-09 16:34:34 -04002203 sdata_info(sdata, "associated\n");
Johannes Berg79ebfb82012-02-20 14:19:58 +01002204
2205 /*
2206 * destroy assoc_data afterwards, as otherwise an idle
2207 * recalc after assoc_data is NULL but before associated
2208 * is set can cause the interface to go idle
2209 */
2210 ieee80211_destroy_assoc_data(sdata, true);
Johannes Berg66e67e42012-01-20 13:55:27 +01002211 }
2212
2213 return RX_MGMT_CFG80211_RX_ASSOC;
2214}
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002215static void ieee80211_rx_bss_info(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07002216 struct ieee80211_mgmt *mgmt,
2217 size_t len,
2218 struct ieee80211_rx_status *rx_status,
Johannes Berg98c8fcc2008-09-08 17:44:26 +02002219 struct ieee802_11_elems *elems,
2220 bool beacon)
Jiri Bencf0706e82007-05-05 11:45:53 -07002221{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002222 struct ieee80211_local *local = sdata->local;
Johannes Berg98c8fcc2008-09-08 17:44:26 +02002223 int freq;
Johannes Bergc2b13452008-09-11 00:01:55 +02002224 struct ieee80211_bss *bss;
Johannes Bergfab7d4a2008-03-16 18:42:44 +01002225 struct ieee80211_channel *channel;
Johannes Berg56007a02010-01-26 14:19:52 +01002226 bool need_ps = false;
2227
Johannes Berg66e67e42012-01-20 13:55:27 +01002228 if (sdata->u.mgd.associated &&
Joe Perchesb203ca32012-05-08 18:56:52 +00002229 ether_addr_equal(mgmt->bssid, sdata->u.mgd.associated->bssid)) {
Johannes Berg56007a02010-01-26 14:19:52 +01002230 bss = (void *)sdata->u.mgd.associated->priv;
2231 /* not previously set so we may need to recalc */
2232 need_ps = !bss->dtim_period;
2233 }
Jiri Bencf0706e82007-05-05 11:45:53 -07002234
Johannes Berg5bda6172008-09-08 11:05:10 +02002235 if (elems->ds_params && elems->ds_params_len == 1)
Bruno Randolf59eb21a2011-01-17 13:37:28 +09002236 freq = ieee80211_channel_to_frequency(elems->ds_params[0],
2237 rx_status->band);
Johannes Berg5bda6172008-09-08 11:05:10 +02002238 else
2239 freq = rx_status->freq;
2240
2241 channel = ieee80211_get_channel(local->hw.wiphy, freq);
2242
2243 if (!channel || channel->flags & IEEE80211_CHAN_DISABLED)
2244 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07002245
Johannes Berg98c8fcc2008-09-08 17:44:26 +02002246 bss = ieee80211_bss_info_update(local, rx_status, mgmt, len, elems,
Johannes Berg2a519312009-02-10 21:25:55 +01002247 channel, beacon);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002248 if (bss)
2249 ieee80211_rx_bss_put(local, bss);
2250
2251 if (!sdata->u.mgd.associated)
Johannes Berg98c8fcc2008-09-08 17:44:26 +02002252 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07002253
Johannes Berg56007a02010-01-26 14:19:52 +01002254 if (need_ps) {
2255 mutex_lock(&local->iflist_mtx);
2256 ieee80211_recalc_ps(local, -1);
2257 mutex_unlock(&local->iflist_mtx);
2258 }
2259
Sujithc481ec92009-01-06 09:28:37 +05302260 if (elems->ch_switch_elem && (elems->ch_switch_elem_len == 3) &&
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01002261 (memcmp(mgmt->bssid, sdata->u.mgd.associated->bssid,
Johannes Berg77fdaa12009-07-07 03:45:17 +02002262 ETH_ALEN) == 0)) {
Sujithc481ec92009-01-06 09:28:37 +05302263 struct ieee80211_channel_sw_ie *sw_elem =
2264 (struct ieee80211_channel_sw_ie *)elems->ch_switch_elem;
Johannes Berg5ce6e432010-05-11 16:20:57 +02002265 ieee80211_sta_process_chanswitch(sdata, sw_elem,
2266 bss, rx_status->mactime);
Sujithc481ec92009-01-06 09:28:37 +05302267 }
Jiri Bencf0706e82007-05-05 11:45:53 -07002268}
2269
2270
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002271static void ieee80211_rx_mgmt_probe_resp(struct ieee80211_sub_if_data *sdata,
Johannes Bergaf6b6372009-12-23 13:15:35 +01002272 struct sk_buff *skb)
Jiri Bencf0706e82007-05-05 11:45:53 -07002273{
Johannes Bergaf6b6372009-12-23 13:15:35 +01002274 struct ieee80211_mgmt *mgmt = (void *)skb->data;
Kalle Valo15b7b062009-03-22 21:57:14 +02002275 struct ieee80211_if_managed *ifmgd;
Johannes Bergaf6b6372009-12-23 13:15:35 +01002276 struct ieee80211_rx_status *rx_status = (void *) skb->cb;
2277 size_t baselen, len = skb->len;
Ester Kummerae6a44e2008-06-27 18:54:48 +03002278 struct ieee802_11_elems elems;
2279
Kalle Valo15b7b062009-03-22 21:57:14 +02002280 ifmgd = &sdata->u.mgd;
2281
Johannes Berg77fdaa12009-07-07 03:45:17 +02002282 ASSERT_MGD_MTX(ifmgd);
2283
Joe Perchesb203ca32012-05-08 18:56:52 +00002284 if (!ether_addr_equal(mgmt->da, sdata->vif.addr))
Tomas Winkler8e7cdbb2008-08-03 14:32:01 +03002285 return; /* ignore ProbeResp to foreign address */
2286
Ester Kummerae6a44e2008-06-27 18:54:48 +03002287 baselen = (u8 *) mgmt->u.probe_resp.variable - (u8 *) mgmt;
2288 if (baselen > len)
2289 return;
2290
2291 ieee802_11_parse_elems(mgmt->u.probe_resp.variable, len - baselen,
2292 &elems);
2293
Johannes Berg98c8fcc2008-09-08 17:44:26 +02002294 ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems, false);
Ron Rindjunsky9859b812008-08-09 03:02:19 +03002295
Johannes Berg77fdaa12009-07-07 03:45:17 +02002296 if (ifmgd->associated &&
Joe Perchesb203ca32012-05-08 18:56:52 +00002297 ether_addr_equal(mgmt->bssid, ifmgd->associated->bssid))
Felix Fietkau4e5ff372010-11-23 03:10:31 +01002298 ieee80211_reset_ap_probe(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01002299
2300 if (ifmgd->auth_data && !ifmgd->auth_data->bss->proberesp_ies &&
Joe Perchesb203ca32012-05-08 18:56:52 +00002301 ether_addr_equal(mgmt->bssid, ifmgd->auth_data->bss->bssid)) {
Johannes Berg66e67e42012-01-20 13:55:27 +01002302 /* got probe response, continue with auth */
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002303 sdata_info(sdata, "direct probe responded\n");
Johannes Berg66e67e42012-01-20 13:55:27 +01002304 ifmgd->auth_data->tries = 0;
2305 ifmgd->auth_data->timeout = jiffies;
2306 run_again(ifmgd, ifmgd->auth_data->timeout);
2307 }
Jiri Bencf0706e82007-05-05 11:45:53 -07002308}
2309
Johannes Bergd91f36d2009-04-16 13:17:26 +02002310/*
2311 * This is the canonical list of information elements we care about,
2312 * the filter code also gives us all changes to the Microsoft OUI
2313 * (00:50:F2) vendor IE which is used for WMM which we need to track.
2314 *
2315 * We implement beacon filtering in software since that means we can
2316 * avoid processing the frame here and in cfg80211, and userspace
2317 * will not be able to tell whether the hardware supports it or not.
2318 *
2319 * XXX: This list needs to be dynamic -- userspace needs to be able to
2320 * add items it requires. It also needs to be able to tell us to
2321 * look out for other vendor IEs.
2322 */
2323static const u64 care_about_ies =
Johannes Berg1d4df3a2009-04-22 11:25:43 +02002324 (1ULL << WLAN_EID_COUNTRY) |
2325 (1ULL << WLAN_EID_ERP_INFO) |
2326 (1ULL << WLAN_EID_CHANNEL_SWITCH) |
2327 (1ULL << WLAN_EID_PWR_CONSTRAINT) |
2328 (1ULL << WLAN_EID_HT_CAPABILITY) |
Johannes Berg074d46d2012-03-15 19:45:16 +01002329 (1ULL << WLAN_EID_HT_OPERATION);
Johannes Bergd91f36d2009-04-16 13:17:26 +02002330
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002331static void ieee80211_rx_mgmt_beacon(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07002332 struct ieee80211_mgmt *mgmt,
2333 size_t len,
2334 struct ieee80211_rx_status *rx_status)
2335{
Johannes Bergd91f36d2009-04-16 13:17:26 +02002336 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jouni Malinen17e4ec12010-03-29 23:28:30 -07002337 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
Jiri Bencf0706e82007-05-05 11:45:53 -07002338 size_t baselen;
2339 struct ieee802_11_elems elems;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002340 struct ieee80211_local *local = sdata->local;
Johannes Berg471b3ef2007-12-28 14:32:58 +01002341 u32 changed = 0;
Johannes Bergd91f36d2009-04-16 13:17:26 +02002342 bool erp_valid, directed_tim = false;
Johannes Berg7a5158e2008-10-08 10:59:33 +02002343 u8 erp_value = 0;
Johannes Bergd91f36d2009-04-16 13:17:26 +02002344 u32 ncrc;
Johannes Berg77fdaa12009-07-07 03:45:17 +02002345 u8 *bssid;
2346
Johannes Berg66e67e42012-01-20 13:55:27 +01002347 lockdep_assert_held(&ifmgd->mtx);
Jiri Bencf0706e82007-05-05 11:45:53 -07002348
Ester Kummerae6a44e2008-06-27 18:54:48 +03002349 /* Process beacon from the current BSS */
2350 baselen = (u8 *) mgmt->u.beacon.variable - (u8 *) mgmt;
2351 if (baselen > len)
2352 return;
2353
Johannes Bergd91f36d2009-04-16 13:17:26 +02002354 if (rx_status->freq != local->hw.conf.channel->center_freq)
Jiri Bencf0706e82007-05-05 11:45:53 -07002355 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07002356
Johannes Berg66e67e42012-01-20 13:55:27 +01002357 if (ifmgd->assoc_data && !ifmgd->assoc_data->have_beacon &&
Joe Perchesb203ca32012-05-08 18:56:52 +00002358 ether_addr_equal(mgmt->bssid, ifmgd->assoc_data->bss->bssid)) {
Johannes Berg66e67e42012-01-20 13:55:27 +01002359 ieee802_11_parse_elems(mgmt->u.beacon.variable,
2360 len - baselen, &elems);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002361
Johannes Berg66e67e42012-01-20 13:55:27 +01002362 ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems,
2363 false);
2364 ifmgd->assoc_data->have_beacon = true;
2365 ifmgd->assoc_data->sent_assoc = false;
2366 /* continue assoc process */
2367 ifmgd->assoc_data->timeout = jiffies;
2368 run_again(ifmgd, ifmgd->assoc_data->timeout);
2369 return;
2370 }
2371
2372 if (!ifmgd->associated ||
Joe Perchesb203ca32012-05-08 18:56:52 +00002373 !ether_addr_equal(mgmt->bssid, ifmgd->associated->bssid))
Johannes Berg66e67e42012-01-20 13:55:27 +01002374 return;
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01002375 bssid = ifmgd->associated->bssid;
Johannes Berg77fdaa12009-07-07 03:45:17 +02002376
Jouni Malinen17e4ec12010-03-29 23:28:30 -07002377 /* Track average RSSI from the Beacon frames of the current AP */
2378 ifmgd->last_beacon_signal = rx_status->signal;
2379 if (ifmgd->flags & IEEE80211_STA_RESET_SIGNAL_AVE) {
2380 ifmgd->flags &= ~IEEE80211_STA_RESET_SIGNAL_AVE;
Jouni Malinen3ba06c62010-08-27 22:21:13 +03002381 ifmgd->ave_beacon_signal = rx_status->signal * 16;
Jouni Malinen17e4ec12010-03-29 23:28:30 -07002382 ifmgd->last_cqm_event_signal = 0;
Jouni Malinen391a2002010-08-27 22:22:00 +03002383 ifmgd->count_beacon_signal = 1;
Meenakshi Venkataraman615f7b92011-07-08 08:46:22 -07002384 ifmgd->last_ave_beacon_signal = 0;
Jouni Malinen17e4ec12010-03-29 23:28:30 -07002385 } else {
2386 ifmgd->ave_beacon_signal =
2387 (IEEE80211_SIGNAL_AVE_WEIGHT * rx_status->signal * 16 +
2388 (16 - IEEE80211_SIGNAL_AVE_WEIGHT) *
2389 ifmgd->ave_beacon_signal) / 16;
Jouni Malinen391a2002010-08-27 22:22:00 +03002390 ifmgd->count_beacon_signal++;
Jouni Malinen17e4ec12010-03-29 23:28:30 -07002391 }
Meenakshi Venkataraman615f7b92011-07-08 08:46:22 -07002392
2393 if (ifmgd->rssi_min_thold != ifmgd->rssi_max_thold &&
2394 ifmgd->count_beacon_signal >= IEEE80211_SIGNAL_AVE_MIN_COUNT) {
2395 int sig = ifmgd->ave_beacon_signal;
2396 int last_sig = ifmgd->last_ave_beacon_signal;
2397
2398 /*
2399 * if signal crosses either of the boundaries, invoke callback
2400 * with appropriate parameters
2401 */
2402 if (sig > ifmgd->rssi_max_thold &&
2403 (last_sig <= ifmgd->rssi_min_thold || last_sig == 0)) {
2404 ifmgd->last_ave_beacon_signal = sig;
2405 drv_rssi_callback(local, RSSI_EVENT_HIGH);
2406 } else if (sig < ifmgd->rssi_min_thold &&
2407 (last_sig >= ifmgd->rssi_max_thold ||
2408 last_sig == 0)) {
2409 ifmgd->last_ave_beacon_signal = sig;
2410 drv_rssi_callback(local, RSSI_EVENT_LOW);
2411 }
2412 }
2413
Jouni Malinen17e4ec12010-03-29 23:28:30 -07002414 if (bss_conf->cqm_rssi_thold &&
Jouni Malinen391a2002010-08-27 22:22:00 +03002415 ifmgd->count_beacon_signal >= IEEE80211_SIGNAL_AVE_MIN_COUNT &&
Johannes Bergea086352012-01-19 09:29:58 +01002416 !(sdata->vif.driver_flags & IEEE80211_VIF_SUPPORTS_CQM_RSSI)) {
Jouni Malinen17e4ec12010-03-29 23:28:30 -07002417 int sig = ifmgd->ave_beacon_signal / 16;
2418 int last_event = ifmgd->last_cqm_event_signal;
2419 int thold = bss_conf->cqm_rssi_thold;
2420 int hyst = bss_conf->cqm_rssi_hyst;
2421 if (sig < thold &&
2422 (last_event == 0 || sig < last_event - hyst)) {
2423 ifmgd->last_cqm_event_signal = sig;
2424 ieee80211_cqm_rssi_notify(
2425 &sdata->vif,
2426 NL80211_CQM_RSSI_THRESHOLD_EVENT_LOW,
2427 GFP_KERNEL);
2428 } else if (sig > thold &&
2429 (last_event == 0 || sig > last_event + hyst)) {
2430 ifmgd->last_cqm_event_signal = sig;
2431 ieee80211_cqm_rssi_notify(
2432 &sdata->vif,
2433 NL80211_CQM_RSSI_THRESHOLD_EVENT_HIGH,
2434 GFP_KERNEL);
2435 }
2436 }
2437
Johannes Bergb291ba12009-07-10 15:29:03 +02002438 if (ifmgd->flags & IEEE80211_STA_BEACON_POLL) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002439 mlme_dbg_ratelimited(sdata,
2440 "cancelling probereq poll due to a received beacon\n");
Stanislaw Gruszka925e64c2012-05-16 15:27:20 +02002441 mutex_lock(&local->mtx);
Johannes Bergb291ba12009-07-10 15:29:03 +02002442 ifmgd->flags &= ~IEEE80211_STA_BEACON_POLL;
Stanislaw Gruszka925e64c2012-05-16 15:27:20 +02002443 ieee80211_run_deferred_scan(local);
2444 mutex_unlock(&local->mtx);
2445
Johannes Berg4e751842009-06-10 15:16:52 +02002446 mutex_lock(&local->iflist_mtx);
2447 ieee80211_recalc_ps(local, -1);
2448 mutex_unlock(&local->iflist_mtx);
Jouni Malinen92778182009-05-14 21:15:36 +03002449 }
2450
Johannes Bergb291ba12009-07-10 15:29:03 +02002451 /*
2452 * Push the beacon loss detection into the future since
2453 * we are processing a beacon from the AP just now.
2454 */
Luis R. Rodriguezd3a910a2010-09-16 15:12:32 -04002455 ieee80211_sta_reset_beacon_monitor(sdata);
Johannes Bergb291ba12009-07-10 15:29:03 +02002456
Johannes Bergd91f36d2009-04-16 13:17:26 +02002457 ncrc = crc32_be(0, (void *)&mgmt->u.beacon.beacon_int, 4);
2458 ncrc = ieee802_11_parse_elems_crc(mgmt->u.beacon.variable,
2459 len - baselen, &elems,
2460 care_about_ies, ncrc);
2461
2462 if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)
Johannes Berge7ec86f2009-04-18 17:33:24 +02002463 directed_tim = ieee80211_check_tim(elems.tim, elems.tim_len,
2464 ifmgd->aid);
Johannes Bergd91f36d2009-04-16 13:17:26 +02002465
Vivek Natarajan25c9c872009-03-02 20:20:30 +05302466 if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK) {
Kalle Valo1fb36062009-02-10 17:09:24 +02002467 if (directed_tim) {
Kalle Valo572e0012009-02-10 17:09:31 +02002468 if (local->hw.conf.dynamic_ps_timeout > 0) {
Ronald Wahl70b12f22012-03-19 14:37:20 +01002469 if (local->hw.conf.flags & IEEE80211_CONF_PS) {
2470 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
2471 ieee80211_hw_config(local,
2472 IEEE80211_CONF_CHANGE_PS);
2473 }
Kalle Valo572e0012009-02-10 17:09:31 +02002474 ieee80211_send_nullfunc(local, sdata, 0);
Rajkumar Manoharan6f0756a2012-03-15 05:50:36 +05302475 } else if (!local->pspolling && sdata->u.mgd.powersave) {
Kalle Valo572e0012009-02-10 17:09:31 +02002476 local->pspolling = true;
2477
2478 /*
2479 * Here is assumed that the driver will be
2480 * able to send ps-poll frame and receive a
2481 * response even though power save mode is
2482 * enabled, but some drivers might require
2483 * to disable power save here. This needs
2484 * to be investigated.
2485 */
2486 ieee80211_send_pspoll(local, sdata);
2487 }
Vivek Natarajana97b77b2008-12-23 18:39:02 -08002488 }
2489 }
Johannes Berg7a5158e2008-10-08 10:59:33 +02002490
Juuso Oikarinend8ec4432010-10-01 16:02:31 +03002491 if (ncrc == ifmgd->beacon_crc && ifmgd->beacon_crc_valid)
Jouni Malinen30196672009-05-19 17:01:43 +03002492 return;
2493 ifmgd->beacon_crc = ncrc;
Juuso Oikarinend8ec4432010-10-01 16:02:31 +03002494 ifmgd->beacon_crc_valid = true;
Jouni Malinen30196672009-05-19 17:01:43 +03002495
Johannes Berg7d257452012-07-06 17:37:43 +02002496 ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems,
2497 true);
2498
2499 if (ieee80211_sta_wmm_params(local, sdata, elems.wmm_param,
2500 elems.wmm_param_len))
2501 changed |= BSS_CHANGED_QOS;
2502
Johannes Berg7a5158e2008-10-08 10:59:33 +02002503 if (elems.erp_info && elems.erp_info_len >= 1) {
2504 erp_valid = true;
2505 erp_value = elems.erp_info[0];
2506 } else {
2507 erp_valid = false;
John W. Linville50c4afb2008-04-15 14:09:27 -04002508 }
Johannes Berg7a5158e2008-10-08 10:59:33 +02002509 changed |= ieee80211_handle_bss_capability(sdata,
2510 le16_to_cpu(mgmt->u.beacon.capab_info),
2511 erp_valid, erp_value);
Jiri Bencf0706e82007-05-05 11:45:53 -07002512
Ron Rindjunskyd3c990f2007-11-26 16:14:34 +02002513
Johannes Berg074d46d2012-03-15 19:45:16 +01002514 if (elems.ht_cap_elem && elems.ht_operation && elems.wmm_param &&
Johannes Bergab1faea2009-07-01 21:41:17 +02002515 !(ifmgd->flags & IEEE80211_STA_DISABLE_11N)) {
Johannes Bergae5eb022008-10-14 16:58:37 +02002516 struct ieee80211_supported_band *sband;
Johannes Bergae5eb022008-10-14 16:58:37 +02002517
2518 sband = local->hw.wiphy->bands[local->hw.conf.channel->band];
2519
Johannes Berg24398e32012-03-28 10:58:36 +02002520 changed |= ieee80211_config_ht_tx(sdata, elems.ht_operation,
2521 bssid, true);
Ron Rindjunskyd3c990f2007-11-26 16:14:34 +02002522 }
2523
Luis R. Rodriguez8b19e6c2009-07-30 17:38:09 -07002524 /* Note: country IE parsing is done for us by cfg80211 */
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002525 if (elems.country_elem) {
Vasanthakumar Thiagarajana8302de2009-01-09 18:14:15 +05302526 /* TODO: IBSS also needs this */
2527 if (elems.pwr_constr_elem)
2528 ieee80211_handle_pwr_constr(sdata,
2529 le16_to_cpu(mgmt->u.probe_resp.capab_info),
2530 elems.pwr_constr_elem,
2531 elems.pwr_constr_elem_len);
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002532 }
2533
Johannes Berg471b3ef2007-12-28 14:32:58 +01002534 ieee80211_bss_info_change_notify(sdata, changed);
Jiri Bencf0706e82007-05-05 11:45:53 -07002535}
2536
Johannes Berg1fa57d02010-06-10 10:21:32 +02002537void ieee80211_sta_rx_queued_mgmt(struct ieee80211_sub_if_data *sdata,
2538 struct sk_buff *skb)
Jiri Bencf0706e82007-05-05 11:45:53 -07002539{
Johannes Berg77fdaa12009-07-07 03:45:17 +02002540 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jiri Bencf0706e82007-05-05 11:45:53 -07002541 struct ieee80211_rx_status *rx_status;
Jiri Bencf0706e82007-05-05 11:45:53 -07002542 struct ieee80211_mgmt *mgmt;
Johannes Berg66e67e42012-01-20 13:55:27 +01002543 struct cfg80211_bss *bss = NULL;
Johannes Berg77fdaa12009-07-07 03:45:17 +02002544 enum rx_mgmt_action rma = RX_MGMT_NONE;
Jiri Bencf0706e82007-05-05 11:45:53 -07002545 u16 fc;
2546
Jiri Bencf0706e82007-05-05 11:45:53 -07002547 rx_status = (struct ieee80211_rx_status *) skb->cb;
2548 mgmt = (struct ieee80211_mgmt *) skb->data;
2549 fc = le16_to_cpu(mgmt->frame_control);
2550
Johannes Berg77fdaa12009-07-07 03:45:17 +02002551 mutex_lock(&ifmgd->mtx);
2552
Johannes Berg66e67e42012-01-20 13:55:27 +01002553 switch (fc & IEEE80211_FCTL_STYPE) {
2554 case IEEE80211_STYPE_BEACON:
2555 ieee80211_rx_mgmt_beacon(sdata, mgmt, skb->len, rx_status);
2556 break;
2557 case IEEE80211_STYPE_PROBE_RESP:
2558 ieee80211_rx_mgmt_probe_resp(sdata, skb);
2559 break;
2560 case IEEE80211_STYPE_AUTH:
2561 rma = ieee80211_rx_mgmt_auth(sdata, mgmt, skb->len);
2562 break;
2563 case IEEE80211_STYPE_DEAUTH:
2564 rma = ieee80211_rx_mgmt_deauth(sdata, mgmt, skb->len);
2565 break;
2566 case IEEE80211_STYPE_DISASSOC:
2567 rma = ieee80211_rx_mgmt_disassoc(sdata, mgmt, skb->len);
2568 break;
2569 case IEEE80211_STYPE_ASSOC_RESP:
2570 case IEEE80211_STYPE_REASSOC_RESP:
2571 rma = ieee80211_rx_mgmt_assoc_resp(sdata, mgmt, skb->len, &bss);
2572 break;
2573 case IEEE80211_STYPE_ACTION:
2574 switch (mgmt->u.action.category) {
2575 case WLAN_CATEGORY_SPECTRUM_MGMT:
2576 ieee80211_sta_process_chanswitch(sdata,
2577 &mgmt->u.action.u.chan_switch.sw_elem,
2578 (void *)ifmgd->associated->priv,
2579 rx_status->mactime);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002580 break;
Johannes Berg77fdaa12009-07-07 03:45:17 +02002581 }
Johannes Berg77fdaa12009-07-07 03:45:17 +02002582 }
Johannes Berg77fdaa12009-07-07 03:45:17 +02002583 mutex_unlock(&ifmgd->mtx);
2584
Johannes Berg66e67e42012-01-20 13:55:27 +01002585 switch (rma) {
2586 case RX_MGMT_NONE:
2587 /* no action */
2588 break;
2589 case RX_MGMT_CFG80211_DEAUTH:
Holger Schurigce470612009-10-13 13:28:13 +02002590 cfg80211_send_deauth(sdata->dev, (u8 *)mgmt, skb->len);
Johannes Berg66e67e42012-01-20 13:55:27 +01002591 break;
2592 case RX_MGMT_CFG80211_DISASSOC:
2593 cfg80211_send_disassoc(sdata->dev, (u8 *)mgmt, skb->len);
2594 break;
2595 case RX_MGMT_CFG80211_RX_AUTH:
2596 cfg80211_send_rx_auth(sdata->dev, (u8 *)mgmt, skb->len);
2597 break;
2598 case RX_MGMT_CFG80211_RX_ASSOC:
2599 cfg80211_send_rx_assoc(sdata->dev, bss, (u8 *)mgmt, skb->len);
2600 break;
2601 case RX_MGMT_CFG80211_ASSOC_TIMEOUT:
2602 cfg80211_send_assoc_timeout(sdata->dev, mgmt->bssid);
2603 break;
2604 default:
2605 WARN(1, "unexpected: %d", rma);
Johannes Bergb054b742010-06-07 21:50:07 +02002606 }
Jiri Bencf0706e82007-05-05 11:45:53 -07002607}
2608
Johannes Berg9c6bd792008-09-11 00:01:52 +02002609static void ieee80211_sta_timer(unsigned long data)
Jiri Bencf0706e82007-05-05 11:45:53 -07002610{
2611 struct ieee80211_sub_if_data *sdata =
2612 (struct ieee80211_sub_if_data *) data;
Johannes Berg46900292009-02-15 12:44:28 +01002613 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002614 struct ieee80211_local *local = sdata->local;
Jiri Bencf0706e82007-05-05 11:45:53 -07002615
Johannes Berg5bb644a2009-05-17 11:40:42 +02002616 if (local->quiescing) {
2617 set_bit(TMR_RUNNING_TIMER, &ifmgd->timers_running);
2618 return;
2619 }
2620
Johannes Berg64592c82010-06-10 10:21:31 +02002621 ieee80211_queue_work(&local->hw, &sdata->work);
Jiri Bencf0706e82007-05-05 11:45:53 -07002622}
2623
Felix Fietkau04ac3c02010-12-02 21:01:08 +01002624static void ieee80211_sta_connection_lost(struct ieee80211_sub_if_data *sdata,
Johannes Berg95acac62011-07-12 12:30:59 +02002625 u8 *bssid, u8 reason)
Felix Fietkau04ac3c02010-12-02 21:01:08 +01002626{
2627 struct ieee80211_local *local = sdata->local;
2628 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg5fef7db2012-02-24 13:50:52 +01002629 u8 frame_buf[DEAUTH_DISASSOC_LEN];
Felix Fietkau04ac3c02010-12-02 21:01:08 +01002630
Johannes Berg37ad3882012-02-24 13:50:54 +01002631 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH, reason,
2632 false, frame_buf);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01002633 mutex_unlock(&ifmgd->mtx);
Johannes Berg37ad3882012-02-24 13:50:54 +01002634
Felix Fietkau04ac3c02010-12-02 21:01:08 +01002635 /*
2636 * must be outside lock due to cfg80211,
2637 * but that's not a problem.
2638 */
Johannes Berg5fef7db2012-02-24 13:50:52 +01002639 cfg80211_send_deauth(sdata->dev, frame_buf, DEAUTH_DISASSOC_LEN);
Felix Fietkaufcac4fb2011-11-16 13:34:55 +01002640
2641 mutex_lock(&local->mtx);
2642 ieee80211_recalc_idle(local);
2643 mutex_unlock(&local->mtx);
2644
Felix Fietkau04ac3c02010-12-02 21:01:08 +01002645 mutex_lock(&ifmgd->mtx);
2646}
2647
Johannes Berg66e67e42012-01-20 13:55:27 +01002648static int ieee80211_probe_auth(struct ieee80211_sub_if_data *sdata)
2649{
2650 struct ieee80211_local *local = sdata->local;
2651 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2652 struct ieee80211_mgd_auth_data *auth_data = ifmgd->auth_data;
2653
2654 lockdep_assert_held(&ifmgd->mtx);
2655
2656 if (WARN_ON_ONCE(!auth_data))
2657 return -EINVAL;
2658
Johannes Berg66e67e42012-01-20 13:55:27 +01002659 auth_data->tries++;
2660
2661 if (auth_data->tries > IEEE80211_AUTH_MAX_TRIES) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002662 sdata_info(sdata, "authentication with %pM timed out\n",
2663 auth_data->bss->bssid);
Johannes Berg66e67e42012-01-20 13:55:27 +01002664
2665 /*
2666 * Most likely AP is not in the range so remove the
2667 * bss struct for that AP.
2668 */
2669 cfg80211_unlink_bss(local->hw.wiphy, auth_data->bss);
2670
2671 return -ETIMEDOUT;
2672 }
2673
Johannes Berga1845fc2012-06-27 13:18:36 +02002674 drv_mgd_prepare_tx(local, sdata);
2675
Johannes Berg66e67e42012-01-20 13:55:27 +01002676 if (auth_data->bss->proberesp_ies) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002677 sdata_info(sdata, "send auth to %pM (try %d/%d)\n",
2678 auth_data->bss->bssid, auth_data->tries,
2679 IEEE80211_AUTH_MAX_TRIES);
Johannes Berg66e67e42012-01-20 13:55:27 +01002680
2681 auth_data->expected_transaction = 2;
2682 ieee80211_send_auth(sdata, 1, auth_data->algorithm,
2683 auth_data->ie, auth_data->ie_len,
2684 auth_data->bss->bssid,
2685 auth_data->bss->bssid, NULL, 0, 0);
2686 } else {
2687 const u8 *ssidie;
2688
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002689 sdata_info(sdata, "direct probe to %pM (try %d/%i)\n",
2690 auth_data->bss->bssid, auth_data->tries,
2691 IEEE80211_AUTH_MAX_TRIES);
Johannes Berg66e67e42012-01-20 13:55:27 +01002692
2693 ssidie = ieee80211_bss_get_ie(auth_data->bss, WLAN_EID_SSID);
2694 if (!ssidie)
2695 return -EINVAL;
2696 /*
2697 * Direct probe is sent to broadcast address as some APs
2698 * will not answer to direct packet in unassociated state.
2699 */
2700 ieee80211_send_probe_req(sdata, NULL, ssidie + 2, ssidie[1],
2701 NULL, 0, (u32) -1, true, false);
2702 }
2703
2704 auth_data->timeout = jiffies + IEEE80211_AUTH_TIMEOUT;
2705 run_again(ifmgd, auth_data->timeout);
2706
2707 return 0;
2708}
2709
2710static int ieee80211_do_assoc(struct ieee80211_sub_if_data *sdata)
2711{
2712 struct ieee80211_mgd_assoc_data *assoc_data = sdata->u.mgd.assoc_data;
2713 struct ieee80211_local *local = sdata->local;
2714
2715 lockdep_assert_held(&sdata->u.mgd.mtx);
2716
Johannes Berg66e67e42012-01-20 13:55:27 +01002717 assoc_data->tries++;
2718 if (assoc_data->tries > IEEE80211_ASSOC_MAX_TRIES) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002719 sdata_info(sdata, "association with %pM timed out\n",
2720 assoc_data->bss->bssid);
Johannes Berg66e67e42012-01-20 13:55:27 +01002721
2722 /*
2723 * Most likely AP is not in the range so remove the
2724 * bss struct for that AP.
2725 */
2726 cfg80211_unlink_bss(local->hw.wiphy, assoc_data->bss);
2727
2728 return -ETIMEDOUT;
2729 }
2730
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002731 sdata_info(sdata, "associate with %pM (try %d/%d)\n",
2732 assoc_data->bss->bssid, assoc_data->tries,
2733 IEEE80211_ASSOC_MAX_TRIES);
Johannes Berg66e67e42012-01-20 13:55:27 +01002734 ieee80211_send_assoc(sdata);
2735
2736 assoc_data->timeout = jiffies + IEEE80211_ASSOC_TIMEOUT;
2737 run_again(&sdata->u.mgd, assoc_data->timeout);
2738
2739 return 0;
2740}
2741
Johannes Berg1fa57d02010-06-10 10:21:32 +02002742void ieee80211_sta_work(struct ieee80211_sub_if_data *sdata)
Johannes Berg60f8b392008-09-08 17:44:22 +02002743{
Johannes Berg60f8b392008-09-08 17:44:22 +02002744 struct ieee80211_local *local = sdata->local;
Johannes Berg1fa57d02010-06-10 10:21:32 +02002745 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg60f8b392008-09-08 17:44:22 +02002746
Johannes Berg77fdaa12009-07-07 03:45:17 +02002747 mutex_lock(&ifmgd->mtx);
Johannes Berg60f8b392008-09-08 17:44:22 +02002748
Johannes Berg66e67e42012-01-20 13:55:27 +01002749 if (ifmgd->auth_data &&
2750 time_after(jiffies, ifmgd->auth_data->timeout)) {
2751 if (ifmgd->auth_data->done) {
2752 /*
2753 * ok ... we waited for assoc but userspace didn't,
2754 * so let's just kill the auth data
2755 */
2756 ieee80211_destroy_auth_data(sdata, false);
2757 } else if (ieee80211_probe_auth(sdata)) {
2758 u8 bssid[ETH_ALEN];
2759
2760 memcpy(bssid, ifmgd->auth_data->bss->bssid, ETH_ALEN);
2761
2762 ieee80211_destroy_auth_data(sdata, false);
2763
2764 mutex_unlock(&ifmgd->mtx);
2765 cfg80211_send_auth_timeout(sdata->dev, bssid);
2766 mutex_lock(&ifmgd->mtx);
2767 }
2768 } else if (ifmgd->auth_data)
2769 run_again(ifmgd, ifmgd->auth_data->timeout);
2770
2771 if (ifmgd->assoc_data &&
2772 time_after(jiffies, ifmgd->assoc_data->timeout)) {
2773 if (!ifmgd->assoc_data->have_beacon ||
2774 ieee80211_do_assoc(sdata)) {
2775 u8 bssid[ETH_ALEN];
2776
2777 memcpy(bssid, ifmgd->assoc_data->bss->bssid, ETH_ALEN);
2778
2779 ieee80211_destroy_assoc_data(sdata, false);
2780
2781 mutex_unlock(&ifmgd->mtx);
2782 cfg80211_send_assoc_timeout(sdata->dev, bssid);
2783 mutex_lock(&ifmgd->mtx);
2784 }
2785 } else if (ifmgd->assoc_data)
2786 run_again(ifmgd, ifmgd->assoc_data->timeout);
2787
Johannes Bergb291ba12009-07-10 15:29:03 +02002788 if (ifmgd->flags & (IEEE80211_STA_BEACON_POLL |
2789 IEEE80211_STA_CONNECTION_POLL) &&
2790 ifmgd->associated) {
Maxim Levitskya43abf22009-07-31 18:54:12 +03002791 u8 bssid[ETH_ALEN];
Felix Fietkau72a8a3e2010-11-23 03:10:32 +01002792 int max_tries;
Maxim Levitskya43abf22009-07-31 18:54:12 +03002793
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01002794 memcpy(bssid, ifmgd->associated->bssid, ETH_ALEN);
Felix Fietkau4e5ff372010-11-23 03:10:31 +01002795
Felix Fietkau72a8a3e2010-11-23 03:10:32 +01002796 if (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS)
Ben Greear180205b2011-02-04 15:30:24 -08002797 max_tries = max_nullfunc_tries;
Felix Fietkau72a8a3e2010-11-23 03:10:32 +01002798 else
Ben Greear180205b2011-02-04 15:30:24 -08002799 max_tries = max_probe_tries;
Felix Fietkau72a8a3e2010-11-23 03:10:32 +01002800
Felix Fietkau4e5ff372010-11-23 03:10:31 +01002801 /* ACK received for nullfunc probing frame */
2802 if (!ifmgd->probe_send_count)
2803 ieee80211_reset_ap_probe(sdata);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01002804 else if (ifmgd->nullfunc_failed) {
2805 if (ifmgd->probe_send_count < max_tries) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002806 mlme_dbg(sdata,
2807 "No ack for nullfunc frame to AP %pM, try %d/%i\n",
2808 bssid, ifmgd->probe_send_count,
2809 max_tries);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01002810 ieee80211_mgd_probe_ap_send(sdata);
2811 } else {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002812 mlme_dbg(sdata,
2813 "No ack for nullfunc frame to AP %pM, disconnecting.\n",
2814 bssid);
Johannes Berg95acac62011-07-12 12:30:59 +02002815 ieee80211_sta_connection_lost(sdata, bssid,
2816 WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01002817 }
2818 } else if (time_is_after_jiffies(ifmgd->probe_timeout))
Johannes Bergb291ba12009-07-10 15:29:03 +02002819 run_again(ifmgd, ifmgd->probe_timeout);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01002820 else if (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002821 mlme_dbg(sdata,
2822 "Failed to send nullfunc to AP %pM after %dms, disconnecting\n",
2823 bssid, probe_wait_ms);
Johannes Berg95acac62011-07-12 12:30:59 +02002824 ieee80211_sta_connection_lost(sdata, bssid,
2825 WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01002826 } else if (ifmgd->probe_send_count < max_tries) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002827 mlme_dbg(sdata,
2828 "No probe response from AP %pM after %dms, try %d/%i\n",
2829 bssid, probe_wait_ms,
2830 ifmgd->probe_send_count, max_tries);
Maxim Levitskya43abf22009-07-31 18:54:12 +03002831 ieee80211_mgd_probe_ap_send(sdata);
2832 } else {
Johannes Bergb291ba12009-07-10 15:29:03 +02002833 /*
2834 * We actually lost the connection ... or did we?
2835 * Let's make sure!
2836 */
Ben Greearb38afa82010-10-07 16:12:06 -07002837 wiphy_debug(local->hw.wiphy,
2838 "%s: No probe response from AP %pM"
2839 " after %dms, disconnecting.\n",
2840 sdata->name,
Ben Greear180205b2011-02-04 15:30:24 -08002841 bssid, probe_wait_ms);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01002842
Johannes Berg95acac62011-07-12 12:30:59 +02002843 ieee80211_sta_connection_lost(sdata, bssid,
2844 WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY);
Johannes Bergb291ba12009-07-10 15:29:03 +02002845 }
2846 }
2847
Johannes Berg77fdaa12009-07-07 03:45:17 +02002848 mutex_unlock(&ifmgd->mtx);
Johannes Berg66e67e42012-01-20 13:55:27 +01002849
2850 mutex_lock(&local->mtx);
2851 ieee80211_recalc_idle(local);
2852 mutex_unlock(&local->mtx);
Johannes Berg60f8b392008-09-08 17:44:22 +02002853}
Johannes Berg0a51b272008-09-08 17:44:25 +02002854
Johannes Bergb291ba12009-07-10 15:29:03 +02002855static void ieee80211_sta_bcn_mon_timer(unsigned long data)
2856{
2857 struct ieee80211_sub_if_data *sdata =
2858 (struct ieee80211_sub_if_data *) data;
2859 struct ieee80211_local *local = sdata->local;
2860
2861 if (local->quiescing)
2862 return;
2863
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02002864 ieee80211_queue_work(&sdata->local->hw,
2865 &sdata->u.mgd.beacon_connection_loss_work);
Johannes Bergb291ba12009-07-10 15:29:03 +02002866}
2867
2868static void ieee80211_sta_conn_mon_timer(unsigned long data)
2869{
2870 struct ieee80211_sub_if_data *sdata =
2871 (struct ieee80211_sub_if_data *) data;
2872 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2873 struct ieee80211_local *local = sdata->local;
2874
2875 if (local->quiescing)
2876 return;
2877
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04002878 ieee80211_queue_work(&local->hw, &ifmgd->monitor_work);
Johannes Bergb291ba12009-07-10 15:29:03 +02002879}
2880
2881static void ieee80211_sta_monitor_work(struct work_struct *work)
2882{
2883 struct ieee80211_sub_if_data *sdata =
2884 container_of(work, struct ieee80211_sub_if_data,
2885 u.mgd.monitor_work);
2886
2887 ieee80211_mgd_probe_ap(sdata, false);
2888}
2889
Johannes Berga1678f82008-09-11 00:01:47 +02002890static void ieee80211_restart_sta_timer(struct ieee80211_sub_if_data *sdata)
2891{
Eliad Peller494f1fe2012-02-19 15:26:09 +02002892 u32 flags;
2893
Kalle Vaload935682009-04-19 08:47:19 +03002894 if (sdata->vif.type == NL80211_IFTYPE_STATION) {
Stanislaw Gruszka925e64c2012-05-16 15:27:20 +02002895 __ieee80211_stop_poll(sdata);
Kalle Vaload935682009-04-19 08:47:19 +03002896
Johannes Bergb291ba12009-07-10 15:29:03 +02002897 /* let's probe the connection once */
Eliad Peller494f1fe2012-02-19 15:26:09 +02002898 flags = sdata->local->hw.flags;
2899 if (!(flags & IEEE80211_HW_CONNECTION_MONITOR))
2900 ieee80211_queue_work(&sdata->local->hw,
2901 &sdata->u.mgd.monitor_work);
Johannes Bergb291ba12009-07-10 15:29:03 +02002902 /* and do all the other regular work too */
Johannes Berg64592c82010-06-10 10:21:31 +02002903 ieee80211_queue_work(&sdata->local->hw, &sdata->work);
Kalle Vaload935682009-04-19 08:47:19 +03002904 }
Johannes Berga1678f82008-09-11 00:01:47 +02002905}
2906
Johannes Berg5bb644a2009-05-17 11:40:42 +02002907#ifdef CONFIG_PM
2908void ieee80211_sta_quiesce(struct ieee80211_sub_if_data *sdata)
2909{
2910 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2911
2912 /*
2913 * we need to use atomic bitops for the running bits
2914 * only because both timers might fire at the same
2915 * time -- the code here is properly synchronised.
2916 */
2917
Johannes Bergd1f5b7a2010-08-05 17:05:55 +02002918 cancel_work_sync(&ifmgd->request_smps_work);
2919
Johannes Berg0ecfe802011-11-09 12:14:16 +01002920 cancel_work_sync(&ifmgd->monitor_work);
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02002921 cancel_work_sync(&ifmgd->beacon_connection_loss_work);
Johannes Berg5bb644a2009-05-17 11:40:42 +02002922 if (del_timer_sync(&ifmgd->timer))
2923 set_bit(TMR_RUNNING_TIMER, &ifmgd->timers_running);
2924
2925 cancel_work_sync(&ifmgd->chswitch_work);
2926 if (del_timer_sync(&ifmgd->chswitch_timer))
2927 set_bit(TMR_RUNNING_CHANSW, &ifmgd->timers_running);
Johannes Bergb291ba12009-07-10 15:29:03 +02002928
Johannes Bergb291ba12009-07-10 15:29:03 +02002929 /* these will just be re-established on connection */
2930 del_timer_sync(&ifmgd->conn_mon_timer);
2931 del_timer_sync(&ifmgd->bcn_mon_timer);
Johannes Berg5bb644a2009-05-17 11:40:42 +02002932}
2933
2934void ieee80211_sta_restart(struct ieee80211_sub_if_data *sdata)
2935{
2936 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2937
Rajkumar Manoharan676b58c2011-07-07 23:33:39 +05302938 if (!ifmgd->associated)
2939 return;
2940
Johannes Berg95acac62011-07-12 12:30:59 +02002941 if (sdata->flags & IEEE80211_SDATA_DISCONNECT_RESUME) {
2942 sdata->flags &= ~IEEE80211_SDATA_DISCONNECT_RESUME;
2943 mutex_lock(&ifmgd->mtx);
2944 if (ifmgd->associated) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002945 mlme_dbg(sdata,
2946 "driver requested disconnect after resume\n");
Johannes Berg95acac62011-07-12 12:30:59 +02002947 ieee80211_sta_connection_lost(sdata,
2948 ifmgd->associated->bssid,
2949 WLAN_REASON_UNSPECIFIED);
2950 mutex_unlock(&ifmgd->mtx);
2951 return;
2952 }
2953 mutex_unlock(&ifmgd->mtx);
2954 }
2955
Johannes Berg5bb644a2009-05-17 11:40:42 +02002956 if (test_and_clear_bit(TMR_RUNNING_TIMER, &ifmgd->timers_running))
2957 add_timer(&ifmgd->timer);
2958 if (test_and_clear_bit(TMR_RUNNING_CHANSW, &ifmgd->timers_running))
2959 add_timer(&ifmgd->chswitch_timer);
Felix Fietkauc8a79722010-11-19 22:55:37 +01002960 ieee80211_sta_reset_beacon_monitor(sdata);
Stanislaw Gruszka925e64c2012-05-16 15:27:20 +02002961
2962 mutex_lock(&sdata->local->mtx);
Felix Fietkau46090972010-11-23 20:28:03 +01002963 ieee80211_restart_sta_timer(sdata);
Stanislaw Gruszka925e64c2012-05-16 15:27:20 +02002964 mutex_unlock(&sdata->local->mtx);
Johannes Berg5bb644a2009-05-17 11:40:42 +02002965}
2966#endif
2967
Johannes Berg9c6bd792008-09-11 00:01:52 +02002968/* interface setup */
2969void ieee80211_sta_setup_sdata(struct ieee80211_sub_if_data *sdata)
2970{
Johannes Berg46900292009-02-15 12:44:28 +01002971 struct ieee80211_if_managed *ifmgd;
Johannes Berg9c6bd792008-09-11 00:01:52 +02002972
Johannes Berg46900292009-02-15 12:44:28 +01002973 ifmgd = &sdata->u.mgd;
Johannes Bergb291ba12009-07-10 15:29:03 +02002974 INIT_WORK(&ifmgd->monitor_work, ieee80211_sta_monitor_work);
Johannes Berg46900292009-02-15 12:44:28 +01002975 INIT_WORK(&ifmgd->chswitch_work, ieee80211_chswitch_work);
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02002976 INIT_WORK(&ifmgd->beacon_connection_loss_work,
2977 ieee80211_beacon_connection_loss_work);
Johannes Bergd1f5b7a2010-08-05 17:05:55 +02002978 INIT_WORK(&ifmgd->request_smps_work, ieee80211_request_smps_work);
Johannes Berg46900292009-02-15 12:44:28 +01002979 setup_timer(&ifmgd->timer, ieee80211_sta_timer,
Johannes Berg9c6bd792008-09-11 00:01:52 +02002980 (unsigned long) sdata);
Johannes Bergb291ba12009-07-10 15:29:03 +02002981 setup_timer(&ifmgd->bcn_mon_timer, ieee80211_sta_bcn_mon_timer,
2982 (unsigned long) sdata);
2983 setup_timer(&ifmgd->conn_mon_timer, ieee80211_sta_conn_mon_timer,
2984 (unsigned long) sdata);
Johannes Berg46900292009-02-15 12:44:28 +01002985 setup_timer(&ifmgd->chswitch_timer, ieee80211_chswitch_timer,
Sujithc481ec92009-01-06 09:28:37 +05302986 (unsigned long) sdata);
Johannes Berg9c6bd792008-09-11 00:01:52 +02002987
Johannes Bergab1faea2009-07-01 21:41:17 +02002988 ifmgd->flags = 0;
Mohammed Shafi Shajakhan1478acb2011-12-14 19:46:08 +05302989 ifmgd->powersave = sdata->wdev.ps;
Eliad Pellerdc41e4d2012-03-14 16:15:03 +02002990 ifmgd->uapsd_queues = IEEE80211_DEFAULT_UAPSD_QUEUES;
2991 ifmgd->uapsd_max_sp_len = IEEE80211_DEFAULT_MAX_SP_LEN;
Johannes Bergbbbdff92009-04-16 13:27:42 +02002992
Johannes Berg77fdaa12009-07-07 03:45:17 +02002993 mutex_init(&ifmgd->mtx);
Johannes Berg0f782312009-12-01 13:37:02 +01002994
2995 if (sdata->local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_SMPS)
2996 ifmgd->req_smps = IEEE80211_SMPS_AUTOMATIC;
2997 else
2998 ifmgd->req_smps = IEEE80211_SMPS_OFF;
Johannes Berg9c6bd792008-09-11 00:01:52 +02002999}
3000
3001/* scan finished notification */
Johannes Berg0a51b272008-09-08 17:44:25 +02003002void ieee80211_mlme_notify_scan_completed(struct ieee80211_local *local)
3003{
Johannes Berg31ee67a2012-07-06 21:18:24 +02003004 struct ieee80211_sub_if_data *sdata;
Johannes Berga1678f82008-09-11 00:01:47 +02003005
3006 /* Restart STA timers */
3007 rcu_read_lock();
3008 list_for_each_entry_rcu(sdata, &local->interfaces, list)
3009 ieee80211_restart_sta_timer(sdata);
3010 rcu_read_unlock();
Johannes Berg0a51b272008-09-08 17:44:25 +02003011}
Johannes Berg10f644a2009-04-16 13:17:25 +02003012
3013int ieee80211_max_network_latency(struct notifier_block *nb,
3014 unsigned long data, void *dummy)
3015{
3016 s32 latency_usec = (s32) data;
3017 struct ieee80211_local *local =
3018 container_of(nb, struct ieee80211_local,
3019 network_latency_notifier);
3020
3021 mutex_lock(&local->iflist_mtx);
3022 ieee80211_recalc_ps(local, latency_usec);
3023 mutex_unlock(&local->iflist_mtx);
3024
3025 return 0;
3026}
Johannes Berg77fdaa12009-07-07 03:45:17 +02003027
Johannes Berga1cf7752012-03-08 15:02:07 +01003028static int ieee80211_prep_connection(struct ieee80211_sub_if_data *sdata,
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003029 struct cfg80211_bss *cbss, bool assoc)
Johannes Berga1cf7752012-03-08 15:02:07 +01003030{
3031 struct ieee80211_local *local = sdata->local;
3032 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003033 struct ieee80211_bss *bss = (void *)cbss->priv;
Luciano Coelho6df653c2012-06-18 15:52:51 +03003034 struct sta_info *sta = NULL;
Johannes Berga1cf7752012-03-08 15:02:07 +01003035 bool have_sta = false;
3036 int err;
Johannes Berg24398e32012-03-28 10:58:36 +02003037 int ht_cfreq;
3038 enum nl80211_channel_type channel_type = NL80211_CHAN_NO_HT;
3039 const u8 *ht_oper_ie;
3040 const struct ieee80211_ht_operation *ht_oper = NULL;
3041 struct ieee80211_supported_band *sband;
Johannes Berga1cf7752012-03-08 15:02:07 +01003042
3043 if (WARN_ON(!ifmgd->auth_data && !ifmgd->assoc_data))
3044 return -EINVAL;
3045
3046 if (assoc) {
3047 rcu_read_lock();
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003048 have_sta = sta_info_get(sdata, cbss->bssid);
Johannes Berga1cf7752012-03-08 15:02:07 +01003049 rcu_read_unlock();
3050 }
3051
3052 if (!have_sta) {
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003053 sta = sta_info_alloc(sdata, cbss->bssid, GFP_KERNEL);
Johannes Berga1cf7752012-03-08 15:02:07 +01003054 if (!sta)
3055 return -ENOMEM;
3056 }
3057
3058 mutex_lock(&local->mtx);
3059 ieee80211_recalc_idle(sdata->local);
3060 mutex_unlock(&local->mtx);
3061
3062 /* switch to the right channel */
Johannes Berg24398e32012-03-28 10:58:36 +02003063 sband = local->hw.wiphy->bands[cbss->channel->band];
3064
3065 ifmgd->flags &= ~IEEE80211_STA_DISABLE_40MHZ;
3066
3067 if (sband->ht_cap.ht_supported) {
3068 ht_oper_ie = cfg80211_find_ie(WLAN_EID_HT_OPERATION,
3069 cbss->information_elements,
3070 cbss->len_information_elements);
3071 if (ht_oper_ie && ht_oper_ie[1] >= sizeof(*ht_oper))
3072 ht_oper = (void *)(ht_oper_ie + 2);
3073 }
3074
3075 if (ht_oper) {
3076 ht_cfreq = ieee80211_channel_to_frequency(ht_oper->primary_chan,
3077 cbss->channel->band);
3078 /* check that channel matches the right operating channel */
3079 if (cbss->channel->center_freq != ht_cfreq) {
3080 /*
3081 * It's possible that some APs are confused here;
3082 * Netgear WNDR3700 sometimes reports 4 higher than
3083 * the actual channel in association responses, but
3084 * since we look at probe response/beacon data here
3085 * it should be OK.
3086 */
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003087 sdata_info(sdata,
3088 "Wrong control channel: center-freq: %d ht-cfreq: %d ht->primary_chan: %d band: %d - Disabling HT\n",
3089 cbss->channel->center_freq,
3090 ht_cfreq, ht_oper->primary_chan,
3091 cbss->channel->band);
Johannes Berg24398e32012-03-28 10:58:36 +02003092 ht_oper = NULL;
3093 }
3094 }
3095
3096 if (ht_oper) {
3097 channel_type = NL80211_CHAN_HT20;
3098
3099 if (sband->ht_cap.cap & IEEE80211_HT_CAP_SUP_WIDTH_20_40) {
3100 switch (ht_oper->ht_param &
3101 IEEE80211_HT_PARAM_CHA_SEC_OFFSET) {
3102 case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
3103 channel_type = NL80211_CHAN_HT40PLUS;
3104 break;
3105 case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
3106 channel_type = NL80211_CHAN_HT40MINUS;
3107 break;
3108 }
3109 }
3110 }
3111
3112 if (!ieee80211_set_channel_type(local, sdata, channel_type)) {
3113 /* can only fail due to HT40+/- mismatch */
3114 channel_type = NL80211_CHAN_HT20;
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003115 sdata_info(sdata,
3116 "disabling 40 MHz due to multi-vif mismatch\n");
Johannes Berg24398e32012-03-28 10:58:36 +02003117 ifmgd->flags |= IEEE80211_STA_DISABLE_40MHZ;
3118 WARN_ON(!ieee80211_set_channel_type(local, sdata,
3119 channel_type));
3120 }
3121
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003122 local->oper_channel = cbss->channel;
Stanislaw Gruszka6aee4ca2012-06-07 14:47:21 +02003123 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_CHANNEL);
Johannes Berga1cf7752012-03-08 15:02:07 +01003124
Luciano Coelho6df653c2012-06-18 15:52:51 +03003125 if (sta) {
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003126 u32 rates = 0, basic_rates = 0;
3127 bool have_higher_than_11mbit;
3128 int min_rate = INT_MAX, min_rate_index = -1;
3129
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003130 ieee80211_get_rates(sband, bss->supp_rates,
3131 bss->supp_rates_len,
3132 &rates, &basic_rates,
3133 &have_higher_than_11mbit,
3134 &min_rate, &min_rate_index);
3135
3136 /*
3137 * This used to be a workaround for basic rates missing
3138 * in the association response frame. Now that we no
3139 * longer use the basic rates from there, it probably
3140 * doesn't happen any more, but keep the workaround so
3141 * in case some *other* APs are buggy in different ways
3142 * we can connect -- with a warning.
3143 */
3144 if (!basic_rates && min_rate_index >= 0) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003145 sdata_info(sdata,
3146 "No basic rates, using min rate instead\n");
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003147 basic_rates = BIT(min_rate_index);
3148 }
3149
3150 sta->sta.supp_rates[cbss->channel->band] = rates;
3151 sdata->vif.bss_conf.basic_rates = basic_rates;
3152
3153 /* cf. IEEE 802.11 9.2.12 */
3154 if (local->oper_channel->band == IEEE80211_BAND_2GHZ &&
3155 have_higher_than_11mbit)
3156 sdata->flags |= IEEE80211_SDATA_OPERATING_GMODE;
3157 else
3158 sdata->flags &= ~IEEE80211_SDATA_OPERATING_GMODE;
3159
3160 memcpy(ifmgd->bssid, cbss->bssid, ETH_ALEN);
3161
Johannes Berg8c358bc2012-05-22 22:13:05 +02003162 /* set timing information */
3163 sdata->vif.bss_conf.beacon_int = cbss->beacon_interval;
3164 sdata->vif.bss_conf.sync_tsf = cbss->tsf;
3165 sdata->vif.bss_conf.sync_device_ts = bss->device_ts;
3166
3167 /* tell driver about BSSID, basic rates and timing */
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003168 ieee80211_bss_info_change_notify(sdata,
Johannes Berg8c358bc2012-05-22 22:13:05 +02003169 BSS_CHANGED_BSSID | BSS_CHANGED_BASIC_RATES |
3170 BSS_CHANGED_BEACON_INT);
Johannes Berga1cf7752012-03-08 15:02:07 +01003171
3172 if (assoc)
3173 sta_info_pre_move_state(sta, IEEE80211_STA_AUTH);
3174
3175 err = sta_info_insert(sta);
3176 sta = NULL;
3177 if (err) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003178 sdata_info(sdata,
3179 "failed to insert STA entry for the AP (error %d)\n",
3180 err);
Johannes Berga1cf7752012-03-08 15:02:07 +01003181 return err;
3182 }
3183 } else
Joe Perchesb203ca32012-05-08 18:56:52 +00003184 WARN_ON_ONCE(!ether_addr_equal(ifmgd->bssid, cbss->bssid));
Johannes Berga1cf7752012-03-08 15:02:07 +01003185
3186 return 0;
3187}
3188
Johannes Berg77fdaa12009-07-07 03:45:17 +02003189/* config hooks */
3190int ieee80211_mgd_auth(struct ieee80211_sub_if_data *sdata,
3191 struct cfg80211_auth_request *req)
3192{
Johannes Berg66e67e42012-01-20 13:55:27 +01003193 struct ieee80211_local *local = sdata->local;
3194 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3195 struct ieee80211_mgd_auth_data *auth_data;
Johannes Berg77fdaa12009-07-07 03:45:17 +02003196 u16 auth_alg;
Johannes Berg66e67e42012-01-20 13:55:27 +01003197 int err;
3198
3199 /* prepare auth data structure */
Johannes Berg77fdaa12009-07-07 03:45:17 +02003200
3201 switch (req->auth_type) {
3202 case NL80211_AUTHTYPE_OPEN_SYSTEM:
3203 auth_alg = WLAN_AUTH_OPEN;
3204 break;
3205 case NL80211_AUTHTYPE_SHARED_KEY:
Johannes Berg66e67e42012-01-20 13:55:27 +01003206 if (IS_ERR(local->wep_tx_tfm))
Johannes Berg9dca9c42010-07-21 10:09:25 +02003207 return -EOPNOTSUPP;
Johannes Berg77fdaa12009-07-07 03:45:17 +02003208 auth_alg = WLAN_AUTH_SHARED_KEY;
3209 break;
3210 case NL80211_AUTHTYPE_FT:
3211 auth_alg = WLAN_AUTH_FT;
3212 break;
3213 case NL80211_AUTHTYPE_NETWORK_EAP:
3214 auth_alg = WLAN_AUTH_LEAP;
3215 break;
3216 default:
3217 return -EOPNOTSUPP;
3218 }
3219
Johannes Berg66e67e42012-01-20 13:55:27 +01003220 auth_data = kzalloc(sizeof(*auth_data) + req->ie_len, GFP_KERNEL);
3221 if (!auth_data)
Johannes Berg77fdaa12009-07-07 03:45:17 +02003222 return -ENOMEM;
3223
Johannes Berg66e67e42012-01-20 13:55:27 +01003224 auth_data->bss = req->bss;
Johannes Berg77fdaa12009-07-07 03:45:17 +02003225
3226 if (req->ie && req->ie_len) {
Johannes Berg66e67e42012-01-20 13:55:27 +01003227 memcpy(auth_data->ie, req->ie, req->ie_len);
3228 auth_data->ie_len = req->ie_len;
Johannes Berg77fdaa12009-07-07 03:45:17 +02003229 }
3230
Johannes Bergfffd0932009-07-08 14:22:54 +02003231 if (req->key && req->key_len) {
Johannes Berg66e67e42012-01-20 13:55:27 +01003232 auth_data->key_len = req->key_len;
3233 auth_data->key_idx = req->key_idx;
3234 memcpy(auth_data->key, req->key, req->key_len);
Johannes Bergfffd0932009-07-08 14:22:54 +02003235 }
3236
Johannes Berg66e67e42012-01-20 13:55:27 +01003237 auth_data->algorithm = auth_alg;
Johannes Berg77fdaa12009-07-07 03:45:17 +02003238
Johannes Berg66e67e42012-01-20 13:55:27 +01003239 /* try to authenticate/probe */
Johannes Bergf679f652009-12-23 13:15:34 +01003240
Johannes Berg66e67e42012-01-20 13:55:27 +01003241 mutex_lock(&ifmgd->mtx);
Johannes Berg77fdaa12009-07-07 03:45:17 +02003242
Johannes Berg66e67e42012-01-20 13:55:27 +01003243 if ((ifmgd->auth_data && !ifmgd->auth_data->done) ||
3244 ifmgd->assoc_data) {
3245 err = -EBUSY;
3246 goto err_free;
3247 }
Johannes Berg77fdaa12009-07-07 03:45:17 +02003248
Johannes Berg66e67e42012-01-20 13:55:27 +01003249 if (ifmgd->auth_data)
3250 ieee80211_destroy_auth_data(sdata, false);
Guy Eilam2a33bee2011-08-17 15:18:15 +03003251
Johannes Berg66e67e42012-01-20 13:55:27 +01003252 /* prep auth_data so we don't go into idle on disassoc */
3253 ifmgd->auth_data = auth_data;
3254
3255 if (ifmgd->associated)
Johannes Berg37ad3882012-02-24 13:50:54 +01003256 ieee80211_set_disassoc(sdata, 0, 0, false, NULL);
Johannes Berg66e67e42012-01-20 13:55:27 +01003257
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003258 sdata_info(sdata, "authenticate with %pM\n", req->bss->bssid);
Johannes Berg66e67e42012-01-20 13:55:27 +01003259
Johannes Berga1cf7752012-03-08 15:02:07 +01003260 err = ieee80211_prep_connection(sdata, req->bss, false);
3261 if (err)
Johannes Berg66e67e42012-01-20 13:55:27 +01003262 goto err_clear;
Guy Eilam2a33bee2011-08-17 15:18:15 +03003263
Johannes Berg66e67e42012-01-20 13:55:27 +01003264 err = ieee80211_probe_auth(sdata);
3265 if (err) {
Johannes Berg66e67e42012-01-20 13:55:27 +01003266 sta_info_destroy_addr(sdata, req->bss->bssid);
3267 goto err_clear;
Johannes Bergaf6b6372009-12-23 13:15:35 +01003268 }
3269
Johannes Berg66e67e42012-01-20 13:55:27 +01003270 /* hold our own reference */
3271 cfg80211_ref_bss(auth_data->bss);
3272 err = 0;
3273 goto out_unlock;
Johannes Berge5b900d2010-07-29 16:08:55 +02003274
Johannes Berg66e67e42012-01-20 13:55:27 +01003275 err_clear:
3276 ifmgd->auth_data = NULL;
3277 err_free:
3278 kfree(auth_data);
3279 out_unlock:
3280 mutex_unlock(&ifmgd->mtx);
Johannes Berge5b900d2010-07-29 16:08:55 +02003281
Johannes Berg66e67e42012-01-20 13:55:27 +01003282 return err;
Johannes Bergaf6b6372009-12-23 13:15:35 +01003283}
3284
Johannes Berg77fdaa12009-07-07 03:45:17 +02003285int ieee80211_mgd_assoc(struct ieee80211_sub_if_data *sdata,
3286 struct cfg80211_assoc_request *req)
3287{
Johannes Berg66e67e42012-01-20 13:55:27 +01003288 struct ieee80211_local *local = sdata->local;
Johannes Berg77fdaa12009-07-07 03:45:17 +02003289 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01003290 struct ieee80211_bss *bss = (void *)req->bss->priv;
Johannes Berg66e67e42012-01-20 13:55:27 +01003291 struct ieee80211_mgd_assoc_data *assoc_data;
Johannes Berg4e74bfd2012-03-08 15:02:04 +01003292 struct ieee80211_supported_band *sband;
Johannes Berg9dde6422012-05-16 23:43:19 +02003293 const u8 *ssidie, *ht_ie;
Guy Eilam2a33bee2011-08-17 15:18:15 +03003294 int i, err;
Johannes Berg77fdaa12009-07-07 03:45:17 +02003295
Johannes Berg66e67e42012-01-20 13:55:27 +01003296 ssidie = ieee80211_bss_get_ie(req->bss, WLAN_EID_SSID);
3297 if (!ssidie)
3298 return -EINVAL;
Jouni Malinen9c87ba62010-02-28 12:13:46 +02003299
Johannes Berg66e67e42012-01-20 13:55:27 +01003300 assoc_data = kzalloc(sizeof(*assoc_data) + req->ie_len, GFP_KERNEL);
3301 if (!assoc_data)
Johannes Bergaf6b6372009-12-23 13:15:35 +01003302 return -ENOMEM;
Johannes Berg77fdaa12009-07-07 03:45:17 +02003303
Johannes Berg66e67e42012-01-20 13:55:27 +01003304 mutex_lock(&ifmgd->mtx);
3305
3306 if (ifmgd->associated)
Johannes Berg37ad3882012-02-24 13:50:54 +01003307 ieee80211_set_disassoc(sdata, 0, 0, false, NULL);
Johannes Berg66e67e42012-01-20 13:55:27 +01003308
3309 if (ifmgd->auth_data && !ifmgd->auth_data->done) {
3310 err = -EBUSY;
3311 goto err_free;
Guy Eilam2a33bee2011-08-17 15:18:15 +03003312 }
3313
Johannes Berg66e67e42012-01-20 13:55:27 +01003314 if (ifmgd->assoc_data) {
3315 err = -EBUSY;
3316 goto err_free;
3317 }
3318
3319 if (ifmgd->auth_data) {
3320 bool match;
3321
3322 /* keep sta info, bssid if matching */
Joe Perchesb203ca32012-05-08 18:56:52 +00003323 match = ether_addr_equal(ifmgd->bssid, req->bss->bssid);
Johannes Berg66e67e42012-01-20 13:55:27 +01003324 ieee80211_destroy_auth_data(sdata, match);
3325 }
3326
3327 /* prepare assoc data */
3328
Johannes Berg77fdaa12009-07-07 03:45:17 +02003329 ifmgd->flags &= ~IEEE80211_STA_DISABLE_11N;
Vivek Natarajan375177b2010-02-09 14:50:28 +05303330 ifmgd->flags &= ~IEEE80211_STA_NULLFUNC_ACKED;
Mahesh Palivelad545dab2012-07-24 03:33:10 +00003331 ifmgd->flags &= ~IEEE80211_STA_DISABLE_VHT;
Johannes Berg77fdaa12009-07-07 03:45:17 +02003332
Juuso Oikarinend8ec4432010-10-01 16:02:31 +03003333 ifmgd->beacon_crc_valid = false;
3334
Johannes Bergde5036a2012-03-08 15:02:03 +01003335 /*
3336 * IEEE802.11n does not allow TKIP/WEP as pairwise ciphers in HT mode.
3337 * We still associate in non-HT mode (11a/b/g) if any one of these
3338 * ciphers is configured as pairwise.
3339 * We can set this to true for non-11n hardware, that'll be checked
3340 * separately along with the peer capabilities.
3341 */
Johannes Berg1c4cb922012-05-30 15:57:00 +02003342 for (i = 0; i < req->crypto.n_ciphers_pairwise; i++) {
Johannes Berg77fdaa12009-07-07 03:45:17 +02003343 if (req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_WEP40 ||
3344 req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_TKIP ||
Johannes Berg1c4cb922012-05-30 15:57:00 +02003345 req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_WEP104) {
Johannes Berg77fdaa12009-07-07 03:45:17 +02003346 ifmgd->flags |= IEEE80211_STA_DISABLE_11N;
Mahesh Palivelad545dab2012-07-24 03:33:10 +00003347 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
Johannes Berg1c4cb922012-05-30 15:57:00 +02003348 netdev_info(sdata->dev,
Mahesh Palivelad545dab2012-07-24 03:33:10 +00003349 "disabling HT/VHT due to WEP/TKIP use\n");
Johannes Berg1c4cb922012-05-30 15:57:00 +02003350 }
3351 }
Johannes Berg77fdaa12009-07-07 03:45:17 +02003352
Mahesh Palivelad545dab2012-07-24 03:33:10 +00003353 if (req->flags & ASSOC_REQ_DISABLE_HT) {
Ben Greearef96a8422011-11-18 11:32:00 -08003354 ifmgd->flags |= IEEE80211_STA_DISABLE_11N;
Mahesh Palivelad545dab2012-07-24 03:33:10 +00003355 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
3356 }
Ben Greearef96a8422011-11-18 11:32:00 -08003357
Johannes Berg4e74bfd2012-03-08 15:02:04 +01003358 /* Also disable HT if we don't support it or the AP doesn't use WMM */
3359 sband = local->hw.wiphy->bands[req->bss->channel->band];
3360 if (!sband->ht_cap.ht_supported ||
Johannes Berg1c4cb922012-05-30 15:57:00 +02003361 local->hw.queues < IEEE80211_NUM_ACS || !bss->wmm_used) {
Johannes Berg4e74bfd2012-03-08 15:02:04 +01003362 ifmgd->flags |= IEEE80211_STA_DISABLE_11N;
Johannes Berg1c4cb922012-05-30 15:57:00 +02003363 netdev_info(sdata->dev,
3364 "disabling HT as WMM/QoS is not supported\n");
3365 }
Johannes Berg4e74bfd2012-03-08 15:02:04 +01003366
Mahesh Palivelad545dab2012-07-24 03:33:10 +00003367 /* disable VHT if we don't support it or the AP doesn't use WMM */
3368 if (!sband->vht_cap.vht_supported ||
3369 local->hw.queues < IEEE80211_NUM_ACS || !bss->wmm_used) {
3370 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
3371 netdev_info(sdata->dev,
3372 "disabling VHT as WMM/QoS is not supported\n");
3373 }
3374
Ben Greearef96a8422011-11-18 11:32:00 -08003375 memcpy(&ifmgd->ht_capa, &req->ht_capa, sizeof(ifmgd->ht_capa));
3376 memcpy(&ifmgd->ht_capa_mask, &req->ht_capa_mask,
3377 sizeof(ifmgd->ht_capa_mask));
3378
Johannes Berg77fdaa12009-07-07 03:45:17 +02003379 if (req->ie && req->ie_len) {
Johannes Berg66e67e42012-01-20 13:55:27 +01003380 memcpy(assoc_data->ie, req->ie, req->ie_len);
3381 assoc_data->ie_len = req->ie_len;
3382 }
Johannes Berg77fdaa12009-07-07 03:45:17 +02003383
Johannes Berg66e67e42012-01-20 13:55:27 +01003384 assoc_data->bss = req->bss;
Johannes Bergf679f652009-12-23 13:15:34 +01003385
Johannes Bergaf6b6372009-12-23 13:15:35 +01003386 if (ifmgd->req_smps == IEEE80211_SMPS_AUTOMATIC) {
3387 if (ifmgd->powersave)
3388 ifmgd->ap_smps = IEEE80211_SMPS_DYNAMIC;
3389 else
3390 ifmgd->ap_smps = IEEE80211_SMPS_OFF;
3391 } else
3392 ifmgd->ap_smps = ifmgd->req_smps;
3393
Johannes Berg66e67e42012-01-20 13:55:27 +01003394 assoc_data->capability = req->bss->capability;
Johannes Berg32c5057b2012-03-28 11:04:29 +02003395 assoc_data->wmm = bss->wmm_used &&
3396 (local->hw.queues >= IEEE80211_NUM_ACS);
Johannes Berg66e67e42012-01-20 13:55:27 +01003397 assoc_data->supp_rates = bss->supp_rates;
3398 assoc_data->supp_rates_len = bss->supp_rates_len;
Johannes Berg9dde6422012-05-16 23:43:19 +02003399
3400 ht_ie = ieee80211_bss_get_ie(req->bss, WLAN_EID_HT_OPERATION);
3401 if (ht_ie && ht_ie[1] >= sizeof(struct ieee80211_ht_operation))
3402 assoc_data->ap_ht_param =
3403 ((struct ieee80211_ht_operation *)(ht_ie + 2))->ht_param;
3404 else
3405 ifmgd->flags |= IEEE80211_STA_DISABLE_11N;
Johannes Berg63f170e2009-12-23 13:15:33 +01003406
Kalle Valoab133152010-01-12 10:42:31 +02003407 if (bss->wmm_used && bss->uapsd_supported &&
3408 (sdata->local->hw.flags & IEEE80211_HW_SUPPORTS_UAPSD)) {
Johannes Berg76f03032012-03-08 15:02:05 +01003409 assoc_data->uapsd = true;
Kalle Valoab133152010-01-12 10:42:31 +02003410 ifmgd->flags |= IEEE80211_STA_UAPSD_ENABLED;
3411 } else {
Johannes Berg76f03032012-03-08 15:02:05 +01003412 assoc_data->uapsd = false;
Kalle Valoab133152010-01-12 10:42:31 +02003413 ifmgd->flags &= ~IEEE80211_STA_UAPSD_ENABLED;
3414 }
3415
Johannes Berg66e67e42012-01-20 13:55:27 +01003416 memcpy(assoc_data->ssid, ssidie + 2, ssidie[1]);
3417 assoc_data->ssid_len = ssidie[1];
Johannes Berg63f170e2009-12-23 13:15:33 +01003418
Johannes Berg77fdaa12009-07-07 03:45:17 +02003419 if (req->prev_bssid)
Johannes Berg66e67e42012-01-20 13:55:27 +01003420 memcpy(assoc_data->prev_bssid, req->prev_bssid, ETH_ALEN);
Johannes Berg77fdaa12009-07-07 03:45:17 +02003421
3422 if (req->use_mfp) {
3423 ifmgd->mfp = IEEE80211_MFP_REQUIRED;
3424 ifmgd->flags |= IEEE80211_STA_MFP_ENABLED;
3425 } else {
3426 ifmgd->mfp = IEEE80211_MFP_DISABLED;
3427 ifmgd->flags &= ~IEEE80211_STA_MFP_ENABLED;
3428 }
3429
3430 if (req->crypto.control_port)
3431 ifmgd->flags |= IEEE80211_STA_CONTROL_PORT;
3432 else
3433 ifmgd->flags &= ~IEEE80211_STA_CONTROL_PORT;
3434
Johannes Berga621fa42010-08-27 14:26:54 +03003435 sdata->control_port_protocol = req->crypto.control_port_ethertype;
3436 sdata->control_port_no_encrypt = req->crypto.control_port_no_encrypt;
3437
Johannes Berg66e67e42012-01-20 13:55:27 +01003438 /* kick off associate process */
3439
3440 ifmgd->assoc_data = assoc_data;
3441
Johannes Berga1cf7752012-03-08 15:02:07 +01003442 err = ieee80211_prep_connection(sdata, req->bss, true);
3443 if (err)
3444 goto err_clear;
Johannes Berg66e67e42012-01-20 13:55:27 +01003445
3446 if (!bss->dtim_period &&
3447 sdata->local->hw.flags & IEEE80211_HW_NEED_DTIM_PERIOD) {
3448 /*
3449 * Wait up to one beacon interval ...
3450 * should this be more if we miss one?
3451 */
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003452 sdata_info(sdata, "waiting for beacon from %pM\n",
3453 ifmgd->bssid);
Johannes Berg3f9768a2012-03-28 21:02:46 +02003454 assoc_data->timeout = TU_TO_EXP_TIME(req->bss->beacon_interval);
Johannes Berg66e67e42012-01-20 13:55:27 +01003455 } else {
3456 assoc_data->have_beacon = true;
3457 assoc_data->sent_assoc = false;
3458 assoc_data->timeout = jiffies;
3459 }
3460 run_again(ifmgd, assoc_data->timeout);
3461
Paul Stewartfcff4f12012-02-23 17:59:53 -08003462 if (bss->corrupt_data) {
3463 char *corrupt_type = "data";
3464 if (bss->corrupt_data & IEEE80211_BSS_CORRUPT_BEACON) {
3465 if (bss->corrupt_data &
3466 IEEE80211_BSS_CORRUPT_PROBE_RESP)
3467 corrupt_type = "beacon and probe response";
3468 else
3469 corrupt_type = "beacon";
3470 } else if (bss->corrupt_data & IEEE80211_BSS_CORRUPT_PROBE_RESP)
3471 corrupt_type = "probe response";
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003472 sdata_info(sdata, "associating with AP with corrupt %s\n",
3473 corrupt_type);
Paul Stewartfcff4f12012-02-23 17:59:53 -08003474 }
3475
Johannes Berg66e67e42012-01-20 13:55:27 +01003476 err = 0;
3477 goto out;
3478 err_clear:
3479 ifmgd->assoc_data = NULL;
3480 err_free:
3481 kfree(assoc_data);
3482 out:
3483 mutex_unlock(&ifmgd->mtx);
3484
3485 return err;
Johannes Berg77fdaa12009-07-07 03:45:17 +02003486}
3487
3488int ieee80211_mgd_deauth(struct ieee80211_sub_if_data *sdata,
Johannes Berg63c9c5e2012-02-24 13:50:51 +01003489 struct cfg80211_deauth_request *req)
Johannes Berg77fdaa12009-07-07 03:45:17 +02003490{
3491 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg5fef7db2012-02-24 13:50:52 +01003492 u8 frame_buf[DEAUTH_DISASSOC_LEN];
Johannes Berg77fdaa12009-07-07 03:45:17 +02003493
Johannes Berg77fdaa12009-07-07 03:45:17 +02003494 mutex_lock(&ifmgd->mtx);
3495
Johannes Berg37ad3882012-02-24 13:50:54 +01003496 if (ifmgd->auth_data) {
Johannes Berg66e67e42012-01-20 13:55:27 +01003497 ieee80211_destroy_auth_data(sdata, false);
Johannes Bergaf6b6372009-12-23 13:15:35 +01003498 mutex_unlock(&ifmgd->mtx);
Johannes Berg66e67e42012-01-20 13:55:27 +01003499 return 0;
Johannes Bergaf6b6372009-12-23 13:15:35 +01003500 }
Johannes Berg77fdaa12009-07-07 03:45:17 +02003501
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003502 sdata_info(sdata,
3503 "deauthenticating from %pM by local choice (reason=%d)\n",
3504 req->bssid, req->reason_code);
Johannes Berg0ff71612009-09-26 14:45:41 +02003505
Johannes Berg37ad3882012-02-24 13:50:54 +01003506 if (ifmgd->associated &&
Joe Perchesb203ca32012-05-08 18:56:52 +00003507 ether_addr_equal(ifmgd->associated->bssid, req->bssid))
Johannes Berg37ad3882012-02-24 13:50:54 +01003508 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH,
Johannes Berg5fef7db2012-02-24 13:50:52 +01003509 req->reason_code, true, frame_buf);
Johannes Berg37ad3882012-02-24 13:50:54 +01003510 else
3511 ieee80211_send_deauth_disassoc(sdata, req->bssid,
3512 IEEE80211_STYPE_DEAUTH,
3513 req->reason_code, true,
3514 frame_buf);
3515 mutex_unlock(&ifmgd->mtx);
3516
Johannes Berg5fef7db2012-02-24 13:50:52 +01003517 __cfg80211_send_deauth(sdata->dev, frame_buf, DEAUTH_DISASSOC_LEN);
Johannes Berg77fdaa12009-07-07 03:45:17 +02003518
Johannes Berg7da7cc12010-08-05 17:02:38 +02003519 mutex_lock(&sdata->local->mtx);
Johannes Bergbc83b682009-11-29 12:19:06 +01003520 ieee80211_recalc_idle(sdata->local);
Johannes Berg7da7cc12010-08-05 17:02:38 +02003521 mutex_unlock(&sdata->local->mtx);
Johannes Bergbc83b682009-11-29 12:19:06 +01003522
Johannes Berg77fdaa12009-07-07 03:45:17 +02003523 return 0;
3524}
3525
3526int ieee80211_mgd_disassoc(struct ieee80211_sub_if_data *sdata,
Johannes Berg63c9c5e2012-02-24 13:50:51 +01003527 struct cfg80211_disassoc_request *req)
Johannes Berg77fdaa12009-07-07 03:45:17 +02003528{
3529 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jouni Malinene69e95d2010-03-29 23:29:31 -07003530 u8 bssid[ETH_ALEN];
Johannes Berg5fef7db2012-02-24 13:50:52 +01003531 u8 frame_buf[DEAUTH_DISASSOC_LEN];
Johannes Berg77fdaa12009-07-07 03:45:17 +02003532
Johannes Berg77fdaa12009-07-07 03:45:17 +02003533 mutex_lock(&ifmgd->mtx);
3534
Johannes Berg8d8b2612009-07-25 11:58:36 +02003535 /*
3536 * cfg80211 should catch this ... but it's racy since
3537 * we can receive a disassoc frame, process it, hand it
3538 * to cfg80211 while that's in a locked section already
3539 * trying to tell us that the user wants to disconnect.
3540 */
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01003541 if (ifmgd->associated != req->bss) {
Johannes Berg77fdaa12009-07-07 03:45:17 +02003542 mutex_unlock(&ifmgd->mtx);
3543 return -ENOLINK;
3544 }
3545
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003546 sdata_info(sdata,
3547 "disassociating from %pM by local choice (reason=%d)\n",
3548 req->bss->bssid, req->reason_code);
Johannes Berg0ff71612009-09-26 14:45:41 +02003549
Jouni Malinene69e95d2010-03-29 23:29:31 -07003550 memcpy(bssid, req->bss->bssid, ETH_ALEN);
Johannes Berg37ad3882012-02-24 13:50:54 +01003551 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DISASSOC,
3552 req->reason_code, !req->local_state_change,
3553 frame_buf);
Johannes Berg77fdaa12009-07-07 03:45:17 +02003554 mutex_unlock(&ifmgd->mtx);
3555
Johannes Berg5fef7db2012-02-24 13:50:52 +01003556 __cfg80211_send_disassoc(sdata->dev, frame_buf, DEAUTH_DISASSOC_LEN);
Johannes Bergbc83b682009-11-29 12:19:06 +01003557
Johannes Berg7da7cc12010-08-05 17:02:38 +02003558 mutex_lock(&sdata->local->mtx);
Johannes Bergbc83b682009-11-29 12:19:06 +01003559 ieee80211_recalc_idle(sdata->local);
Johannes Berg7da7cc12010-08-05 17:02:38 +02003560 mutex_unlock(&sdata->local->mtx);
Johannes Bergbc83b682009-11-29 12:19:06 +01003561
Johannes Berg77fdaa12009-07-07 03:45:17 +02003562 return 0;
3563}
Jouni Malinen026331c2010-02-15 12:53:10 +02003564
Eliad Pellerafa762f2012-04-23 14:45:15 +03003565void ieee80211_mgd_stop(struct ieee80211_sub_if_data *sdata)
Johannes Berg54e4ffb2012-02-25 21:48:08 +01003566{
3567 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3568
3569 mutex_lock(&ifmgd->mtx);
3570 if (ifmgd->assoc_data)
3571 ieee80211_destroy_assoc_data(sdata, false);
3572 if (ifmgd->auth_data)
3573 ieee80211_destroy_auth_data(sdata, false);
3574 del_timer_sync(&ifmgd->timer);
3575 mutex_unlock(&ifmgd->mtx);
3576}
3577
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02003578void ieee80211_cqm_rssi_notify(struct ieee80211_vif *vif,
3579 enum nl80211_cqm_rssi_threshold_event rssi_event,
3580 gfp_t gfp)
3581{
3582 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
3583
Johannes Bergb5878a22010-04-07 16:48:40 +02003584 trace_api_cqm_rssi_notify(sdata, rssi_event);
3585
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02003586 cfg80211_cqm_rssi_notify(sdata->dev, rssi_event, gfp);
3587}
3588EXPORT_SYMBOL(ieee80211_cqm_rssi_notify);