blob: be114728680104a46e61e789c6ba4081ba2a61e6 [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 Berg1672c0e32013-01-29 15:02:27 +010033#define IEEE80211_AUTH_TIMEOUT (HZ / 5)
34#define IEEE80211_AUTH_TIMEOUT_SHORT (HZ / 10)
35#define IEEE80211_AUTH_MAX_TRIES 3
36#define IEEE80211_AUTH_WAIT_ASSOC (HZ * 5)
37#define IEEE80211_ASSOC_TIMEOUT (HZ / 5)
38#define IEEE80211_ASSOC_TIMEOUT_SHORT (HZ / 10)
39#define IEEE80211_ASSOC_MAX_TRIES 3
Johannes Berg66e67e42012-01-20 13:55:27 +010040
Ben Greear180205b2011-02-04 15:30:24 -080041static int max_nullfunc_tries = 2;
42module_param(max_nullfunc_tries, int, 0644);
43MODULE_PARM_DESC(max_nullfunc_tries,
44 "Maximum nullfunc tx tries before disconnecting (reason 4).");
45
46static int max_probe_tries = 5;
47module_param(max_probe_tries, int, 0644);
48MODULE_PARM_DESC(max_probe_tries,
49 "Maximum probe tries before disconnecting (reason 4).");
Johannes Bergb291ba12009-07-10 15:29:03 +020050
51/*
Felix Fietkau7ccc8bd2010-11-19 22:55:38 +010052 * Beacon loss timeout is calculated as N frames times the
53 * advertised beacon interval. This may need to be somewhat
54 * higher than what hardware might detect to account for
55 * delays in the host processing frames. But since we also
56 * probe on beacon miss before declaring the connection lost
57 * default to what we want.
Johannes Bergb291ba12009-07-10 15:29:03 +020058 */
Felix Fietkau7ccc8bd2010-11-19 22:55:38 +010059#define IEEE80211_BEACON_LOSS_COUNT 7
60
Johannes Bergb291ba12009-07-10 15:29:03 +020061/*
62 * Time the connection can be idle before we probe
63 * it to see if we can still talk to the AP.
64 */
Maxim Levitskyd1c50912009-07-31 18:54:23 +030065#define IEEE80211_CONNECTION_IDLE_TIME (30 * HZ)
Johannes Bergb291ba12009-07-10 15:29:03 +020066/*
67 * Time we wait for a probe response after sending
68 * a probe request because of beacon loss or for
69 * checking the connection still works.
70 */
Ben Greear180205b2011-02-04 15:30:24 -080071static int probe_wait_ms = 500;
72module_param(probe_wait_ms, int, 0644);
73MODULE_PARM_DESC(probe_wait_ms,
74 "Maximum time(ms) to wait for probe response"
75 " before disconnecting (reason 4).");
Jiri Bencf0706e82007-05-05 11:45:53 -070076
Jouni Malinen17e4ec12010-03-29 23:28:30 -070077/*
78 * Weight given to the latest Beacon frame when calculating average signal
79 * strength for Beacon frames received in the current BSS. This must be
80 * between 1 and 15.
81 */
82#define IEEE80211_SIGNAL_AVE_WEIGHT 3
83
Jouni Malinen391a2002010-08-27 22:22:00 +030084/*
85 * How many Beacon frames need to have been used in average signal strength
86 * before starting to indicate signal change events.
87 */
88#define IEEE80211_SIGNAL_AVE_MIN_COUNT 4
89
Johannes Berg5bb644a2009-05-17 11:40:42 +020090#define TMR_RUNNING_TIMER 0
91#define TMR_RUNNING_CHANSW 1
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 Berg55de9082012-07-26 17:24:39 +0200183 struct ieee80211_chanctx_conf *chanctx_conf;
184 struct ieee80211_channel *chan;
Johannes Bergd5522e02009-03-30 13:23:35 +0200185 struct sta_info *sta;
186 u32 changed = 0;
Johannes Berg9ed6bcc2009-05-08 20:47:39 +0200187 u16 ht_opmode;
Johannes Berg64f68e52012-03-28 10:58:37 +0200188 bool disable_40 = false;
Johannes Bergd5522e02009-03-30 13:23:35 +0200189
Johannes Berg55de9082012-07-26 17:24:39 +0200190 rcu_read_lock();
191 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
192 if (WARN_ON(!chanctx_conf)) {
193 rcu_read_unlock();
194 return 0;
195 }
Johannes Berg4bf88532012-11-09 11:39:59 +0100196 chan = chanctx_conf->def.chan;
Johannes Berg55de9082012-07-26 17:24:39 +0200197 rcu_read_unlock();
198 sband = local->hw.wiphy->bands[chan->band];
Johannes Berg0aaffa92010-05-05 15:28:27 +0200199
Johannes Berg4bf88532012-11-09 11:39:59 +0100200 switch (sdata->vif.bss_conf.chandef.width) {
201 case NL80211_CHAN_WIDTH_40:
202 if (sdata->vif.bss_conf.chandef.chan->center_freq >
203 sdata->vif.bss_conf.chandef.center_freq1 &&
Johannes Berg75e69342013-01-11 12:32:37 +0100204 chan->flags & IEEE80211_CHAN_NO_HT40MINUS)
Johannes Berg64f68e52012-03-28 10:58:37 +0200205 disable_40 = true;
Johannes Berg4bf88532012-11-09 11:39:59 +0100206 if (sdata->vif.bss_conf.chandef.chan->center_freq <
207 sdata->vif.bss_conf.chandef.center_freq1 &&
Johannes Berg75e69342013-01-11 12:32:37 +0100208 chan->flags & IEEE80211_CHAN_NO_HT40PLUS)
Johannes Berg64f68e52012-03-28 10:58:37 +0200209 disable_40 = true;
210 break;
211 default:
212 break;
213 }
Johannes Bergd5522e02009-03-30 13:23:35 +0200214
Johannes Berg24398e32012-03-28 10:58:36 +0200215 /* This can change during the lifetime of the BSS */
216 if (!(ht_oper->ht_param & IEEE80211_HT_PARAM_CHAN_WIDTH_ANY))
Johannes Berg64f68e52012-03-28 10:58:37 +0200217 disable_40 = true;
Johannes Bergd5522e02009-03-30 13:23:35 +0200218
Johannes Berg64f68e52012-03-28 10:58:37 +0200219 mutex_lock(&local->sta_mtx);
220 sta = sta_info_get(sdata, bssid);
221
Johannes Berge1a0c6b2013-02-07 11:47:44 +0100222 if (WARN_ON_ONCE(!sta)) {
223 mutex_unlock(&local->sta_mtx);
224 return changed;
225 }
Johannes Berg64f68e52012-03-28 10:58:37 +0200226
Johannes Berge1a0c6b2013-02-07 11:47:44 +0100227 if (!(sta->sta.ht_cap.cap & IEEE80211_HT_CAP_SUP_WIDTH_20_40))
Johannes Berg64f68e52012-03-28 10:58:37 +0200228 disable_40 = true;
229
Johannes Berge1a0c6b2013-02-07 11:47:44 +0100230 if (!reconfig ||
231 disable_40 != (sta->sta.bandwidth < IEEE80211_STA_RX_BW_40)) {
Johannes Berg64f68e52012-03-28 10:58:37 +0200232 if (disable_40)
Johannes Berge1a0c6b2013-02-07 11:47:44 +0100233 sta->sta.bandwidth = IEEE80211_STA_RX_BW_20;
Johannes Berg64f68e52012-03-28 10:58:37 +0200234 else
Johannes Berge1a0c6b2013-02-07 11:47:44 +0100235 sta->sta.bandwidth = ieee80211_sta_cur_vht_bw(sta);
Rajkumar Manoharan7cc44ed2011-09-16 15:32:34 +0530236
Johannes Berg64f68e52012-03-28 10:58:37 +0200237 rate_control_rate_update(local, sband, sta,
Johannes Berg8f727ef2012-03-30 08:43:32 +0200238 IEEE80211_RC_BW_CHANGED);
Johannes Berg0aaffa92010-05-05 15:28:27 +0200239 }
Johannes Berg64f68e52012-03-28 10:58:37 +0200240 mutex_unlock(&local->sta_mtx);
Johannes Bergd5522e02009-03-30 13:23:35 +0200241
Johannes Berg074d46d2012-03-15 19:45:16 +0100242 ht_opmode = le16_to_cpu(ht_oper->operation_mode);
Johannes Bergd5522e02009-03-30 13:23:35 +0200243
244 /* if bss configuration changed store the new one */
Johannes Berg24398e32012-03-28 10:58:36 +0200245 if (!reconfig || (sdata->vif.bss_conf.ht_operation_mode != ht_opmode)) {
Johannes Bergd5522e02009-03-30 13:23:35 +0200246 changed |= BSS_CHANGED_HT;
Johannes Berg9ed6bcc2009-05-08 20:47:39 +0200247 sdata->vif.bss_conf.ht_operation_mode = ht_opmode;
Johannes Bergd5522e02009-03-30 13:23:35 +0200248 }
249
250 return changed;
251}
252
Johannes Berg9c6bd792008-09-11 00:01:52 +0200253/* frame sending functions */
254
Johannes Berg66e67e42012-01-20 13:55:27 +0100255static int ieee80211_compatible_rates(const u8 *supp_rates, int supp_rates_len,
256 struct ieee80211_supported_band *sband,
257 u32 *rates)
258{
259 int i, j, count;
260 *rates = 0;
261 count = 0;
262 for (i = 0; i < supp_rates_len; i++) {
263 int rate = (supp_rates[i] & 0x7F) * 5;
264
265 for (j = 0; j < sband->n_bitrates; j++)
266 if (sband->bitrates[j].bitrate == rate) {
267 *rates |= BIT(j);
268 count++;
269 break;
270 }
271 }
272
273 return count;
274}
275
276static void ieee80211_add_ht_ie(struct ieee80211_sub_if_data *sdata,
Johannes Berg9dde6422012-05-16 23:43:19 +0200277 struct sk_buff *skb, u8 ap_ht_param,
Johannes Berg66e67e42012-01-20 13:55:27 +0100278 struct ieee80211_supported_band *sband,
279 struct ieee80211_channel *channel,
280 enum ieee80211_smps_mode smps)
281{
Johannes Berg66e67e42012-01-20 13:55:27 +0100282 u8 *pos;
283 u32 flags = channel->flags;
284 u16 cap;
285 struct ieee80211_sta_ht_cap ht_cap;
286
287 BUILD_BUG_ON(sizeof(ht_cap) != sizeof(sband->ht_cap));
288
Johannes Berg66e67e42012-01-20 13:55:27 +0100289 memcpy(&ht_cap, &sband->ht_cap, sizeof(ht_cap));
290 ieee80211_apply_htcap_overrides(sdata, &ht_cap);
291
Johannes Berg66e67e42012-01-20 13:55:27 +0100292 /* determine capability flags */
293 cap = ht_cap.cap;
294
Johannes Berg9dde6422012-05-16 23:43:19 +0200295 switch (ap_ht_param & IEEE80211_HT_PARAM_CHA_SEC_OFFSET) {
Johannes Berg66e67e42012-01-20 13:55:27 +0100296 case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
297 if (flags & IEEE80211_CHAN_NO_HT40PLUS) {
298 cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
299 cap &= ~IEEE80211_HT_CAP_SGI_40;
300 }
301 break;
302 case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
303 if (flags & IEEE80211_CHAN_NO_HT40MINUS) {
304 cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
305 cap &= ~IEEE80211_HT_CAP_SGI_40;
306 }
307 break;
308 }
309
Johannes Berg24398e32012-03-28 10:58:36 +0200310 /*
311 * If 40 MHz was disabled associate as though we weren't
312 * capable of 40 MHz -- some broken APs will never fall
313 * back to trying to transmit in 20 MHz.
314 */
315 if (sdata->u.mgd.flags & IEEE80211_STA_DISABLE_40MHZ) {
316 cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
317 cap &= ~IEEE80211_HT_CAP_SGI_40;
318 }
319
Johannes Berg66e67e42012-01-20 13:55:27 +0100320 /* set SM PS mode properly */
321 cap &= ~IEEE80211_HT_CAP_SM_PS;
322 switch (smps) {
323 case IEEE80211_SMPS_AUTOMATIC:
324 case IEEE80211_SMPS_NUM_MODES:
325 WARN_ON(1);
326 case IEEE80211_SMPS_OFF:
327 cap |= WLAN_HT_CAP_SM_PS_DISABLED <<
328 IEEE80211_HT_CAP_SM_PS_SHIFT;
329 break;
330 case IEEE80211_SMPS_STATIC:
331 cap |= WLAN_HT_CAP_SM_PS_STATIC <<
332 IEEE80211_HT_CAP_SM_PS_SHIFT;
333 break;
334 case IEEE80211_SMPS_DYNAMIC:
335 cap |= WLAN_HT_CAP_SM_PS_DYNAMIC <<
336 IEEE80211_HT_CAP_SM_PS_SHIFT;
337 break;
338 }
339
340 /* reserve and fill IE */
341 pos = skb_put(skb, sizeof(struct ieee80211_ht_cap) + 2);
342 ieee80211_ie_build_ht_cap(pos, &ht_cap, cap);
343}
344
Mahesh Palivelad545dab2012-07-24 03:33:10 +0000345static void ieee80211_add_vht_ie(struct ieee80211_sub_if_data *sdata,
346 struct sk_buff *skb,
Johannes Bergb08fbbd2012-12-07 13:06:48 +0100347 struct ieee80211_supported_band *sband,
348 struct ieee80211_vht_cap *ap_vht_cap)
Mahesh Palivelad545dab2012-07-24 03:33:10 +0000349{
350 u8 *pos;
351 u32 cap;
352 struct ieee80211_sta_vht_cap vht_cap;
Johannes Bergb08fbbd2012-12-07 13:06:48 +0100353 int i;
Mahesh Palivelad545dab2012-07-24 03:33:10 +0000354
355 BUILD_BUG_ON(sizeof(vht_cap) != sizeof(sband->vht_cap));
356
357 memcpy(&vht_cap, &sband->vht_cap, sizeof(vht_cap));
358
359 /* determine capability flags */
360 cap = vht_cap.cap;
361
Johannes Bergf2d9d272012-11-22 14:11:39 +0100362 if (sdata->u.mgd.flags & IEEE80211_STA_DISABLE_80P80MHZ) {
363 cap &= ~IEEE80211_VHT_CAP_SUPP_CHAN_WIDTH_160_80PLUS80MHZ;
364 cap |= IEEE80211_VHT_CAP_SUPP_CHAN_WIDTH_160MHZ;
365 }
366
367 if (sdata->u.mgd.flags & IEEE80211_STA_DISABLE_160MHZ) {
368 cap &= ~IEEE80211_VHT_CAP_SHORT_GI_160;
369 cap &= ~IEEE80211_VHT_CAP_SUPP_CHAN_WIDTH_160MHZ;
370 }
371
Johannes Bergb08fbbd2012-12-07 13:06:48 +0100372 /*
373 * Some APs apparently get confused if our capabilities are better
374 * than theirs, so restrict what we advertise in the assoc request.
375 */
376 if (!(ap_vht_cap->vht_cap_info &
377 cpu_to_le32(IEEE80211_VHT_CAP_SU_BEAMFORMER_CAPABLE)))
378 cap &= ~IEEE80211_VHT_CAP_SU_BEAMFORMEE_CAPABLE;
379
380 if (!(ap_vht_cap->vht_cap_info &
381 cpu_to_le32(IEEE80211_VHT_CAP_TXSTBC)))
382 cap &= ~(IEEE80211_VHT_CAP_RXSTBC_1 |
383 IEEE80211_VHT_CAP_RXSTBC_3 |
384 IEEE80211_VHT_CAP_RXSTBC_4);
385
386 for (i = 0; i < 8; i++) {
387 int shift = i * 2;
388 u16 mask = IEEE80211_VHT_MCS_NOT_SUPPORTED << shift;
389 u16 ap_mcs, our_mcs;
390
391 ap_mcs = (le16_to_cpu(ap_vht_cap->supp_mcs.tx_mcs_map) &
392 mask) >> shift;
393 our_mcs = (le16_to_cpu(vht_cap.vht_mcs.rx_mcs_map) &
394 mask) >> shift;
395
396 switch (ap_mcs) {
397 default:
398 if (our_mcs <= ap_mcs)
399 break;
400 /* fall through */
401 case IEEE80211_VHT_MCS_NOT_SUPPORTED:
402 vht_cap.vht_mcs.rx_mcs_map &= cpu_to_le16(~mask);
403 vht_cap.vht_mcs.rx_mcs_map |=
404 cpu_to_le16(ap_mcs << shift);
405 }
406 }
407
Mahesh Palivelad545dab2012-07-24 03:33:10 +0000408 /* reserve and fill IE */
Mahesh Palivelad4950282012-10-10 11:25:40 +0000409 pos = skb_put(skb, sizeof(struct ieee80211_vht_cap) + 2);
Mahesh Palivelad545dab2012-07-24 03:33:10 +0000410 ieee80211_ie_build_vht_cap(pos, &vht_cap, cap);
411}
412
Johannes Berg66e67e42012-01-20 13:55:27 +0100413static void ieee80211_send_assoc(struct ieee80211_sub_if_data *sdata)
414{
415 struct ieee80211_local *local = sdata->local;
416 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
417 struct ieee80211_mgd_assoc_data *assoc_data = ifmgd->assoc_data;
418 struct sk_buff *skb;
419 struct ieee80211_mgmt *mgmt;
420 u8 *pos, qos_info;
421 size_t offset = 0, noffset;
422 int i, count, rates_len, supp_rates_len;
423 u16 capab;
424 struct ieee80211_supported_band *sband;
Johannes Berg55de9082012-07-26 17:24:39 +0200425 struct ieee80211_chanctx_conf *chanctx_conf;
426 struct ieee80211_channel *chan;
Johannes Berg66e67e42012-01-20 13:55:27 +0100427 u32 rates = 0;
Johannes Berg66e67e42012-01-20 13:55:27 +0100428
429 lockdep_assert_held(&ifmgd->mtx);
430
Johannes Berg55de9082012-07-26 17:24:39 +0200431 rcu_read_lock();
432 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
433 if (WARN_ON(!chanctx_conf)) {
434 rcu_read_unlock();
435 return;
436 }
Johannes Berg4bf88532012-11-09 11:39:59 +0100437 chan = chanctx_conf->def.chan;
Johannes Berg55de9082012-07-26 17:24:39 +0200438 rcu_read_unlock();
439 sband = local->hw.wiphy->bands[chan->band];
Johannes Berg66e67e42012-01-20 13:55:27 +0100440
441 if (assoc_data->supp_rates_len) {
442 /*
443 * Get all rates supported by the device and the AP as
444 * some APs don't like getting a superset of their rates
445 * in the association request (e.g. D-Link DAP 1353 in
446 * b-only mode)...
447 */
448 rates_len = ieee80211_compatible_rates(assoc_data->supp_rates,
449 assoc_data->supp_rates_len,
450 sband, &rates);
451 } else {
452 /*
453 * In case AP not provide any supported rates information
454 * before association, we send information element(s) with
455 * all rates that we support.
456 */
457 rates = ~0;
458 rates_len = sband->n_bitrates;
459 }
460
461 skb = alloc_skb(local->hw.extra_tx_headroom +
462 sizeof(*mgmt) + /* bit too much but doesn't matter */
463 2 + assoc_data->ssid_len + /* SSID */
464 4 + rates_len + /* (extended) rates */
465 4 + /* power capability */
466 2 + 2 * sband->n_channels + /* supported channels */
467 2 + sizeof(struct ieee80211_ht_cap) + /* HT */
Mahesh Palivelad4950282012-10-10 11:25:40 +0000468 2 + sizeof(struct ieee80211_vht_cap) + /* VHT */
Johannes Berg66e67e42012-01-20 13:55:27 +0100469 assoc_data->ie_len + /* extra IEs */
470 9, /* WMM */
471 GFP_KERNEL);
472 if (!skb)
473 return;
474
475 skb_reserve(skb, local->hw.extra_tx_headroom);
476
477 capab = WLAN_CAPABILITY_ESS;
478
479 if (sband->band == IEEE80211_BAND_2GHZ) {
480 if (!(local->hw.flags & IEEE80211_HW_2GHZ_SHORT_SLOT_INCAPABLE))
481 capab |= WLAN_CAPABILITY_SHORT_SLOT_TIME;
482 if (!(local->hw.flags & IEEE80211_HW_2GHZ_SHORT_PREAMBLE_INCAPABLE))
483 capab |= WLAN_CAPABILITY_SHORT_PREAMBLE;
484 }
485
486 if (assoc_data->capability & WLAN_CAPABILITY_PRIVACY)
487 capab |= WLAN_CAPABILITY_PRIVACY;
488
489 if ((assoc_data->capability & WLAN_CAPABILITY_SPECTRUM_MGMT) &&
490 (local->hw.flags & IEEE80211_HW_SPECTRUM_MGMT))
491 capab |= WLAN_CAPABILITY_SPECTRUM_MGMT;
492
493 mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24);
494 memset(mgmt, 0, 24);
495 memcpy(mgmt->da, assoc_data->bss->bssid, ETH_ALEN);
496 memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN);
497 memcpy(mgmt->bssid, assoc_data->bss->bssid, ETH_ALEN);
498
499 if (!is_zero_ether_addr(assoc_data->prev_bssid)) {
500 skb_put(skb, 10);
501 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
502 IEEE80211_STYPE_REASSOC_REQ);
503 mgmt->u.reassoc_req.capab_info = cpu_to_le16(capab);
504 mgmt->u.reassoc_req.listen_interval =
505 cpu_to_le16(local->hw.conf.listen_interval);
506 memcpy(mgmt->u.reassoc_req.current_ap, assoc_data->prev_bssid,
507 ETH_ALEN);
508 } else {
509 skb_put(skb, 4);
510 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
511 IEEE80211_STYPE_ASSOC_REQ);
512 mgmt->u.assoc_req.capab_info = cpu_to_le16(capab);
513 mgmt->u.assoc_req.listen_interval =
514 cpu_to_le16(local->hw.conf.listen_interval);
515 }
516
517 /* SSID */
518 pos = skb_put(skb, 2 + assoc_data->ssid_len);
519 *pos++ = WLAN_EID_SSID;
520 *pos++ = assoc_data->ssid_len;
521 memcpy(pos, assoc_data->ssid, assoc_data->ssid_len);
522
523 /* add all rates which were marked to be used above */
524 supp_rates_len = rates_len;
525 if (supp_rates_len > 8)
526 supp_rates_len = 8;
527
528 pos = skb_put(skb, supp_rates_len + 2);
529 *pos++ = WLAN_EID_SUPP_RATES;
530 *pos++ = supp_rates_len;
531
532 count = 0;
533 for (i = 0; i < sband->n_bitrates; i++) {
534 if (BIT(i) & rates) {
535 int rate = sband->bitrates[i].bitrate;
536 *pos++ = (u8) (rate / 5);
537 if (++count == 8)
538 break;
539 }
540 }
541
542 if (rates_len > count) {
543 pos = skb_put(skb, rates_len - count + 2);
544 *pos++ = WLAN_EID_EXT_SUPP_RATES;
545 *pos++ = rates_len - count;
546
547 for (i++; i < sband->n_bitrates; i++) {
548 if (BIT(i) & rates) {
549 int rate = sband->bitrates[i].bitrate;
550 *pos++ = (u8) (rate / 5);
551 }
552 }
553 }
554
555 if (capab & WLAN_CAPABILITY_SPECTRUM_MGMT) {
556 /* 1. power capabilities */
557 pos = skb_put(skb, 4);
558 *pos++ = WLAN_EID_PWR_CAPABILITY;
559 *pos++ = 2;
560 *pos++ = 0; /* min tx power */
Johannes Berg55de9082012-07-26 17:24:39 +0200561 *pos++ = chan->max_power; /* max tx power */
Johannes Berg66e67e42012-01-20 13:55:27 +0100562
563 /* 2. supported channels */
564 /* TODO: get this in reg domain format */
565 pos = skb_put(skb, 2 * sband->n_channels + 2);
566 *pos++ = WLAN_EID_SUPPORTED_CHANNELS;
567 *pos++ = 2 * sband->n_channels;
568 for (i = 0; i < sband->n_channels; i++) {
569 *pos++ = ieee80211_frequency_to_channel(
570 sband->channels[i].center_freq);
571 *pos++ = 1; /* one channel in the subband*/
572 }
573 }
574
575 /* if present, add any custom IEs that go before HT */
576 if (assoc_data->ie_len && assoc_data->ie) {
577 static const u8 before_ht[] = {
578 WLAN_EID_SSID,
579 WLAN_EID_SUPP_RATES,
580 WLAN_EID_EXT_SUPP_RATES,
581 WLAN_EID_PWR_CAPABILITY,
582 WLAN_EID_SUPPORTED_CHANNELS,
583 WLAN_EID_RSN,
584 WLAN_EID_QOS_CAPA,
585 WLAN_EID_RRM_ENABLED_CAPABILITIES,
586 WLAN_EID_MOBILITY_DOMAIN,
587 WLAN_EID_SUPPORTED_REGULATORY_CLASSES,
588 };
589 noffset = ieee80211_ie_split(assoc_data->ie, assoc_data->ie_len,
590 before_ht, ARRAY_SIZE(before_ht),
591 offset);
592 pos = skb_put(skb, noffset - offset);
593 memcpy(pos, assoc_data->ie + offset, noffset - offset);
594 offset = noffset;
595 }
596
Johannes Bergf2d9d272012-11-22 14:11:39 +0100597 if (WARN_ON_ONCE((ifmgd->flags & IEEE80211_STA_DISABLE_HT) &&
598 !(ifmgd->flags & IEEE80211_STA_DISABLE_VHT)))
599 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
600
Johannes Berga8243b72012-11-22 14:32:09 +0100601 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_HT))
Johannes Berg9dde6422012-05-16 23:43:19 +0200602 ieee80211_add_ht_ie(sdata, skb, assoc_data->ap_ht_param,
Johannes Berg04ecd252012-09-11 14:34:12 +0200603 sband, chan, sdata->smps_mode);
Johannes Berg66e67e42012-01-20 13:55:27 +0100604
Mahesh Palivelad545dab2012-07-24 03:33:10 +0000605 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_VHT))
Johannes Bergb08fbbd2012-12-07 13:06:48 +0100606 ieee80211_add_vht_ie(sdata, skb, sband,
607 &assoc_data->ap_vht_cap);
Mahesh Palivelad545dab2012-07-24 03:33:10 +0000608
Johannes Berg66e67e42012-01-20 13:55:27 +0100609 /* if present, add any custom non-vendor IEs that go after HT */
610 if (assoc_data->ie_len && assoc_data->ie) {
611 noffset = ieee80211_ie_split_vendor(assoc_data->ie,
612 assoc_data->ie_len,
613 offset);
614 pos = skb_put(skb, noffset - offset);
615 memcpy(pos, assoc_data->ie + offset, noffset - offset);
616 offset = noffset;
617 }
618
Johannes Berg76f03032012-03-08 15:02:05 +0100619 if (assoc_data->wmm) {
620 if (assoc_data->uapsd) {
Eliad Pellerdc41e4d2012-03-14 16:15:03 +0200621 qos_info = ifmgd->uapsd_queues;
622 qos_info |= (ifmgd->uapsd_max_sp_len <<
Johannes Berg66e67e42012-01-20 13:55:27 +0100623 IEEE80211_WMM_IE_STA_QOSINFO_SP_SHIFT);
624 } else {
625 qos_info = 0;
626 }
627
628 pos = skb_put(skb, 9);
629 *pos++ = WLAN_EID_VENDOR_SPECIFIC;
630 *pos++ = 7; /* len */
631 *pos++ = 0x00; /* Microsoft OUI 00:50:F2 */
632 *pos++ = 0x50;
633 *pos++ = 0xf2;
634 *pos++ = 2; /* WME */
635 *pos++ = 0; /* WME info */
636 *pos++ = 1; /* WME ver */
637 *pos++ = qos_info;
638 }
639
640 /* add any remaining custom (i.e. vendor specific here) IEs */
641 if (assoc_data->ie_len && assoc_data->ie) {
642 noffset = assoc_data->ie_len;
643 pos = skb_put(skb, noffset - offset);
644 memcpy(pos, assoc_data->ie + offset, noffset - offset);
645 }
646
Johannes Berga1845fc2012-06-27 13:18:36 +0200647 drv_mgd_prepare_tx(local, sdata);
648
Johannes Berg66e67e42012-01-20 13:55:27 +0100649 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
Johannes Berg1672c0e32013-01-29 15:02:27 +0100650 if (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS)
651 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_CTL_REQ_TX_STATUS |
652 IEEE80211_TX_INTFL_MLME_CONN_TX;
Johannes Berg66e67e42012-01-20 13:55:27 +0100653 ieee80211_tx_skb(sdata, skb);
654}
655
Kalle Valo572e0012009-02-10 17:09:31 +0200656void ieee80211_send_pspoll(struct ieee80211_local *local,
657 struct ieee80211_sub_if_data *sdata)
658{
Kalle Valo572e0012009-02-10 17:09:31 +0200659 struct ieee80211_pspoll *pspoll;
660 struct sk_buff *skb;
Kalle Valo572e0012009-02-10 17:09:31 +0200661
Kalle Valod8cd1892010-01-05 20:16:26 +0200662 skb = ieee80211_pspoll_get(&local->hw, &sdata->vif);
663 if (!skb)
Kalle Valo572e0012009-02-10 17:09:31 +0200664 return;
Kalle Valo572e0012009-02-10 17:09:31 +0200665
Kalle Valod8cd1892010-01-05 20:16:26 +0200666 pspoll = (struct ieee80211_pspoll *) skb->data;
667 pspoll->frame_control |= cpu_to_le16(IEEE80211_FCTL_PM);
Kalle Valo572e0012009-02-10 17:09:31 +0200668
Johannes Berg62ae67b2009-11-18 18:42:05 +0100669 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
670 ieee80211_tx_skb(sdata, skb);
Kalle Valo572e0012009-02-10 17:09:31 +0200671}
672
Johannes Berg965beda2009-04-16 13:17:24 +0200673void ieee80211_send_nullfunc(struct ieee80211_local *local,
674 struct ieee80211_sub_if_data *sdata,
675 int powersave)
676{
677 struct sk_buff *skb;
Kalle Valod8cd1892010-01-05 20:16:26 +0200678 struct ieee80211_hdr_3addr *nullfunc;
Rajkumar Manoharanb6f35302011-09-29 20:34:04 +0530679 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg965beda2009-04-16 13:17:24 +0200680
Kalle Valod8cd1892010-01-05 20:16:26 +0200681 skb = ieee80211_nullfunc_get(&local->hw, &sdata->vif);
682 if (!skb)
Johannes Berg965beda2009-04-16 13:17:24 +0200683 return;
684
Kalle Valod8cd1892010-01-05 20:16:26 +0200685 nullfunc = (struct ieee80211_hdr_3addr *) skb->data;
Johannes Berg965beda2009-04-16 13:17:24 +0200686 if (powersave)
Kalle Valod8cd1892010-01-05 20:16:26 +0200687 nullfunc->frame_control |= cpu_to_le16(IEEE80211_FCTL_PM);
Johannes Berg965beda2009-04-16 13:17:24 +0200688
Seth Forshee6c17b772013-02-11 11:21:07 -0600689 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT |
690 IEEE80211_TX_INTFL_OFFCHAN_TX_OK;
Rajkumar Manoharanb6f35302011-09-29 20:34:04 +0530691 if (ifmgd->flags & (IEEE80211_STA_BEACON_POLL |
692 IEEE80211_STA_CONNECTION_POLL))
693 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_CTL_USE_MINRATE;
694
Johannes Berg62ae67b2009-11-18 18:42:05 +0100695 ieee80211_tx_skb(sdata, skb);
Johannes Berg965beda2009-04-16 13:17:24 +0200696}
697
Felix Fietkaud5242152010-01-08 18:06:26 +0100698static void ieee80211_send_4addr_nullfunc(struct ieee80211_local *local,
699 struct ieee80211_sub_if_data *sdata)
700{
701 struct sk_buff *skb;
702 struct ieee80211_hdr *nullfunc;
703 __le16 fc;
704
705 if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION))
706 return;
707
708 skb = dev_alloc_skb(local->hw.extra_tx_headroom + 30);
Joe Perchesd15b8452011-08-29 14:17:31 -0700709 if (!skb)
Felix Fietkaud5242152010-01-08 18:06:26 +0100710 return;
Joe Perchesd15b8452011-08-29 14:17:31 -0700711
Felix Fietkaud5242152010-01-08 18:06:26 +0100712 skb_reserve(skb, local->hw.extra_tx_headroom);
713
714 nullfunc = (struct ieee80211_hdr *) skb_put(skb, 30);
715 memset(nullfunc, 0, 30);
716 fc = cpu_to_le16(IEEE80211_FTYPE_DATA | IEEE80211_STYPE_NULLFUNC |
717 IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS);
718 nullfunc->frame_control = fc;
719 memcpy(nullfunc->addr1, sdata->u.mgd.bssid, ETH_ALEN);
720 memcpy(nullfunc->addr2, sdata->vif.addr, ETH_ALEN);
721 memcpy(nullfunc->addr3, sdata->u.mgd.bssid, ETH_ALEN);
722 memcpy(nullfunc->addr4, sdata->vif.addr, ETH_ALEN);
723
724 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
725 ieee80211_tx_skb(sdata, skb);
726}
727
Johannes Bergcc32abd2009-05-15 11:52:31 +0200728/* spectrum management related things */
729static void ieee80211_chswitch_work(struct work_struct *work)
730{
731 struct ieee80211_sub_if_data *sdata =
732 container_of(work, struct ieee80211_sub_if_data, u.mgd.chswitch_work);
Johannes Bergcc32abd2009-05-15 11:52:31 +0200733 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
734
Johannes Berg9607e6b2009-12-23 13:15:31 +0100735 if (!ieee80211_sdata_running(sdata))
Johannes Bergcc32abd2009-05-15 11:52:31 +0200736 return;
737
Johannes Berg77fdaa12009-07-07 03:45:17 +0200738 mutex_lock(&ifmgd->mtx);
739 if (!ifmgd->associated)
740 goto out;
Johannes Bergcc32abd2009-05-15 11:52:31 +0200741
Johannes Berg55de9082012-07-26 17:24:39 +0200742 sdata->local->_oper_channel = sdata->local->csa_channel;
Johannes Berg5ce6e432010-05-11 16:20:57 +0200743 if (!sdata->local->ops->channel_switch) {
744 /* call "hw_config" only if doing sw channel switch */
745 ieee80211_hw_config(sdata->local,
746 IEEE80211_CONF_CHANGE_CHANNEL);
Shahar Levi1ea57b12011-09-08 08:44:05 +0300747 } else {
748 /* update the device channel directly */
Johannes Berg55de9082012-07-26 17:24:39 +0200749 sdata->local->hw.conf.channel = sdata->local->_oper_channel;
Johannes Berg5ce6e432010-05-11 16:20:57 +0200750 }
Johannes Bergcc32abd2009-05-15 11:52:31 +0200751
Johannes Berg77fdaa12009-07-07 03:45:17 +0200752 /* XXX: shouldn't really modify cfg80211-owned data! */
Johannes Berg55de9082012-07-26 17:24:39 +0200753 ifmgd->associated->channel = sdata->local->_oper_channel;
Johannes Berg77fdaa12009-07-07 03:45:17 +0200754
Johannes Berg57eebdf2012-08-01 15:50:46 +0200755 /* XXX: wait for a beacon first? */
Johannes Bergcc32abd2009-05-15 11:52:31 +0200756 ieee80211_wake_queues_by_reason(&sdata->local->hw,
757 IEEE80211_QUEUE_STOP_REASON_CSA);
Johannes Berg77fdaa12009-07-07 03:45:17 +0200758 out:
759 ifmgd->flags &= ~IEEE80211_STA_CSA_RECEIVED;
760 mutex_unlock(&ifmgd->mtx);
Johannes Bergcc32abd2009-05-15 11:52:31 +0200761}
762
Johannes Berg5ce6e432010-05-11 16:20:57 +0200763void ieee80211_chswitch_done(struct ieee80211_vif *vif, bool success)
764{
Johannes Berg55de9082012-07-26 17:24:39 +0200765 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
766 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg5ce6e432010-05-11 16:20:57 +0200767
768 trace_api_chswitch_done(sdata, success);
769 if (!success) {
Johannes Berg882a7c62012-08-01 22:32:45 +0200770 sdata_info(sdata,
771 "driver channel switch failed, disconnecting\n");
772 ieee80211_queue_work(&sdata->local->hw,
773 &ifmgd->csa_connection_drop_work);
774 } else {
775 ieee80211_queue_work(&sdata->local->hw, &ifmgd->chswitch_work);
Johannes Berg5ce6e432010-05-11 16:20:57 +0200776 }
Johannes Berg5ce6e432010-05-11 16:20:57 +0200777}
778EXPORT_SYMBOL(ieee80211_chswitch_done);
779
Johannes Bergcc32abd2009-05-15 11:52:31 +0200780static void ieee80211_chswitch_timer(unsigned long data)
781{
782 struct ieee80211_sub_if_data *sdata =
783 (struct ieee80211_sub_if_data *) data;
784 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
785
Johannes Berg5bb644a2009-05-17 11:40:42 +0200786 if (sdata->local->quiescing) {
787 set_bit(TMR_RUNNING_CHANSW, &ifmgd->timers_running);
788 return;
789 }
790
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -0400791 ieee80211_queue_work(&sdata->local->hw, &ifmgd->chswitch_work);
Johannes Bergcc32abd2009-05-15 11:52:31 +0200792}
793
794void ieee80211_sta_process_chanswitch(struct ieee80211_sub_if_data *sdata,
795 struct ieee80211_channel_sw_ie *sw_elem,
Johannes Berg5ce6e432010-05-11 16:20:57 +0200796 struct ieee80211_bss *bss,
797 u64 timestamp)
Johannes Bergcc32abd2009-05-15 11:52:31 +0200798{
Johannes Berg0c1ad2c2009-12-23 13:15:39 +0100799 struct cfg80211_bss *cbss =
800 container_of((void *)bss, struct cfg80211_bss, priv);
Johannes Bergcc32abd2009-05-15 11:52:31 +0200801 struct ieee80211_channel *new_ch;
802 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Bruno Randolf59eb21a2011-01-17 13:37:28 +0900803 int new_freq = ieee80211_channel_to_frequency(sw_elem->new_ch_num,
804 cbss->channel->band);
Johannes Berg55de9082012-07-26 17:24:39 +0200805 struct ieee80211_chanctx *chanctx;
Johannes Bergcc32abd2009-05-15 11:52:31 +0200806
Johannes Berg77fdaa12009-07-07 03:45:17 +0200807 ASSERT_MGD_MTX(ifmgd);
808
809 if (!ifmgd->associated)
Johannes Bergcc32abd2009-05-15 11:52:31 +0200810 return;
811
Helmut Schaafbe9c422009-07-23 12:14:04 +0200812 if (sdata->local->scanning)
Johannes Bergcc32abd2009-05-15 11:52:31 +0200813 return;
814
815 /* Disregard subsequent beacons if we are already running a timer
816 processing a CSA */
817
818 if (ifmgd->flags & IEEE80211_STA_CSA_RECEIVED)
819 return;
820
821 new_ch = ieee80211_get_channel(sdata->local->hw.wiphy, new_freq);
Johannes Berg882a7c62012-08-01 22:32:45 +0200822 if (!new_ch || new_ch->flags & IEEE80211_CHAN_DISABLED) {
823 sdata_info(sdata,
824 "AP %pM switches to unsupported channel (%d MHz), disconnecting\n",
825 ifmgd->associated->bssid, new_freq);
826 ieee80211_queue_work(&sdata->local->hw,
827 &ifmgd->csa_connection_drop_work);
Johannes Bergcc32abd2009-05-15 11:52:31 +0200828 return;
Johannes Berg882a7c62012-08-01 22:32:45 +0200829 }
Johannes Bergcc32abd2009-05-15 11:52:31 +0200830
Johannes Berg57eebdf2012-08-01 15:50:46 +0200831 ifmgd->flags |= IEEE80211_STA_CSA_RECEIVED;
832
Johannes Berg55de9082012-07-26 17:24:39 +0200833 if (sdata->local->use_chanctx) {
834 sdata_info(sdata,
835 "not handling channel switch with channel contexts\n");
836 ieee80211_queue_work(&sdata->local->hw,
837 &ifmgd->csa_connection_drop_work);
Simon Wunderlich246dc3f2012-11-30 19:17:27 +0100838 return;
Johannes Berg55de9082012-07-26 17:24:39 +0200839 }
840
841 mutex_lock(&sdata->local->chanctx_mtx);
842 if (WARN_ON(!rcu_access_pointer(sdata->vif.chanctx_conf))) {
843 mutex_unlock(&sdata->local->chanctx_mtx);
844 return;
845 }
846 chanctx = container_of(rcu_access_pointer(sdata->vif.chanctx_conf),
847 struct ieee80211_chanctx, conf);
848 if (chanctx->refcount > 1) {
849 sdata_info(sdata,
850 "channel switch with multiple interfaces on the same channel, disconnecting\n");
851 ieee80211_queue_work(&sdata->local->hw,
852 &ifmgd->csa_connection_drop_work);
853 mutex_unlock(&sdata->local->chanctx_mtx);
854 return;
855 }
856 mutex_unlock(&sdata->local->chanctx_mtx);
857
858 sdata->local->csa_channel = new_ch;
859
Johannes Berg57eebdf2012-08-01 15:50:46 +0200860 if (sw_elem->mode)
861 ieee80211_stop_queues_by_reason(&sdata->local->hw,
862 IEEE80211_QUEUE_STOP_REASON_CSA);
863
Johannes Berg5ce6e432010-05-11 16:20:57 +0200864 if (sdata->local->ops->channel_switch) {
865 /* use driver's channel switch callback */
Johannes Berg57eebdf2012-08-01 15:50:46 +0200866 struct ieee80211_channel_switch ch_switch = {
867 .timestamp = timestamp,
868 .block_tx = sw_elem->mode,
869 .channel = new_ch,
870 .count = sw_elem->count,
871 };
872
Johannes Berg5ce6e432010-05-11 16:20:57 +0200873 drv_channel_switch(sdata->local, &ch_switch);
874 return;
875 }
876
877 /* channel switch handled in software */
Johannes Berg57eebdf2012-08-01 15:50:46 +0200878 if (sw_elem->count <= 1)
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -0400879 ieee80211_queue_work(&sdata->local->hw, &ifmgd->chswitch_work);
Johannes Berg57eebdf2012-08-01 15:50:46 +0200880 else
Johannes Bergcc32abd2009-05-15 11:52:31 +0200881 mod_timer(&ifmgd->chswitch_timer,
Johannes Berg30490002012-08-01 15:53:45 +0200882 TU_TO_EXP_TIME(sw_elem->count *
883 cbss->beacon_interval));
Johannes Bergcc32abd2009-05-15 11:52:31 +0200884}
885
Johannes Berg1ea6f9c2012-10-24 10:59:25 +0200886static u32 ieee80211_handle_pwr_constr(struct ieee80211_sub_if_data *sdata,
887 struct ieee80211_channel *channel,
888 const u8 *country_ie, u8 country_ie_len,
889 const u8 *pwr_constr_elem)
Johannes Bergcc32abd2009-05-15 11:52:31 +0200890{
Johannes Berg04b7b2f2012-09-05 13:41:37 +0200891 struct ieee80211_country_ie_triplet *triplet;
892 int chan = ieee80211_frequency_to_channel(channel->center_freq);
893 int i, chan_pwr, chan_increment, new_ap_level;
894 bool have_chan_pwr = false;
Johannes Bergcc32abd2009-05-15 11:52:31 +0200895
Johannes Berg04b7b2f2012-09-05 13:41:37 +0200896 /* Invalid IE */
897 if (country_ie_len % 2 || country_ie_len < IEEE80211_COUNTRY_IE_MIN_LEN)
Johannes Berg1ea6f9c2012-10-24 10:59:25 +0200898 return 0;
Johannes Bergcc32abd2009-05-15 11:52:31 +0200899
Johannes Berg04b7b2f2012-09-05 13:41:37 +0200900 triplet = (void *)(country_ie + 3);
901 country_ie_len -= 3;
902
903 switch (channel->band) {
904 default:
905 WARN_ON_ONCE(1);
906 /* fall through */
907 case IEEE80211_BAND_2GHZ:
908 case IEEE80211_BAND_60GHZ:
909 chan_increment = 1;
910 break;
911 case IEEE80211_BAND_5GHZ:
912 chan_increment = 4;
913 break;
Johannes Bergcc32abd2009-05-15 11:52:31 +0200914 }
Johannes Berg04b7b2f2012-09-05 13:41:37 +0200915
916 /* find channel */
917 while (country_ie_len >= 3) {
918 u8 first_channel = triplet->chans.first_channel;
919
920 if (first_channel >= IEEE80211_COUNTRY_EXTENSION_ID)
921 goto next;
922
923 for (i = 0; i < triplet->chans.num_channels; i++) {
924 if (first_channel + i * chan_increment == chan) {
925 have_chan_pwr = true;
926 chan_pwr = triplet->chans.max_power;
927 break;
928 }
929 }
930 if (have_chan_pwr)
931 break;
932
933 next:
934 triplet++;
935 country_ie_len -= 3;
936 }
937
938 if (!have_chan_pwr)
Johannes Berg1ea6f9c2012-10-24 10:59:25 +0200939 return 0;
Johannes Berg04b7b2f2012-09-05 13:41:37 +0200940
941 new_ap_level = max_t(int, 0, chan_pwr - *pwr_constr_elem);
942
Johannes Berg1ea6f9c2012-10-24 10:59:25 +0200943 if (sdata->ap_power_level == new_ap_level)
944 return 0;
Johannes Berg04b7b2f2012-09-05 13:41:37 +0200945
946 sdata_info(sdata,
947 "Limiting TX power to %d (%d - %d) dBm as advertised by %pM\n",
948 new_ap_level, chan_pwr, *pwr_constr_elem,
949 sdata->u.mgd.bssid);
Johannes Berg1ea6f9c2012-10-24 10:59:25 +0200950 sdata->ap_power_level = new_ap_level;
951 if (__ieee80211_recalc_txpower(sdata))
952 return BSS_CHANGED_TXPOWER;
953 return 0;
Johannes Bergcc32abd2009-05-15 11:52:31 +0200954}
955
Johannes Berg965beda2009-04-16 13:17:24 +0200956/* powersave */
957static void ieee80211_enable_ps(struct ieee80211_local *local,
958 struct ieee80211_sub_if_data *sdata)
959{
960 struct ieee80211_conf *conf = &local->hw.conf;
961
Johannes Bergd5edaed2009-04-22 23:02:51 +0200962 /*
963 * If we are scanning right now then the parameters will
964 * take effect when scan finishes.
965 */
Helmut Schaafbe9c422009-07-23 12:14:04 +0200966 if (local->scanning)
Johannes Bergd5edaed2009-04-22 23:02:51 +0200967 return;
968
Johannes Berg965beda2009-04-16 13:17:24 +0200969 if (conf->dynamic_ps_timeout > 0 &&
970 !(local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS)) {
971 mod_timer(&local->dynamic_ps_timer, jiffies +
972 msecs_to_jiffies(conf->dynamic_ps_timeout));
973 } else {
974 if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)
975 ieee80211_send_nullfunc(local, sdata, 1);
Vivek Natarajan375177b2010-02-09 14:50:28 +0530976
Juuso Oikarinen2a130522010-03-09 14:25:02 +0200977 if ((local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK) &&
978 (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS))
979 return;
980
981 conf->flags |= IEEE80211_CONF_PS;
982 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
Johannes Berg965beda2009-04-16 13:17:24 +0200983 }
984}
985
986static void ieee80211_change_ps(struct ieee80211_local *local)
987{
988 struct ieee80211_conf *conf = &local->hw.conf;
989
990 if (local->ps_sdata) {
Johannes Berg965beda2009-04-16 13:17:24 +0200991 ieee80211_enable_ps(local, local->ps_sdata);
992 } else if (conf->flags & IEEE80211_CONF_PS) {
993 conf->flags &= ~IEEE80211_CONF_PS;
994 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
995 del_timer_sync(&local->dynamic_ps_timer);
996 cancel_work_sync(&local->dynamic_ps_enable_work);
997 }
998}
999
Jason Young808118c2011-03-10 16:43:19 -08001000static bool ieee80211_powersave_allowed(struct ieee80211_sub_if_data *sdata)
1001{
1002 struct ieee80211_if_managed *mgd = &sdata->u.mgd;
1003 struct sta_info *sta = NULL;
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001004 bool authorized = false;
Jason Young808118c2011-03-10 16:43:19 -08001005
1006 if (!mgd->powersave)
1007 return false;
1008
Johannes Berg05cb9102011-10-28 11:59:47 +02001009 if (mgd->broken_ap)
1010 return false;
1011
Jason Young808118c2011-03-10 16:43:19 -08001012 if (!mgd->associated)
1013 return false;
1014
Jason Young808118c2011-03-10 16:43:19 -08001015 if (mgd->flags & (IEEE80211_STA_BEACON_POLL |
1016 IEEE80211_STA_CONNECTION_POLL))
1017 return false;
1018
1019 rcu_read_lock();
1020 sta = sta_info_get(sdata, mgd->bssid);
1021 if (sta)
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001022 authorized = test_sta_flag(sta, WLAN_STA_AUTHORIZED);
Jason Young808118c2011-03-10 16:43:19 -08001023 rcu_read_unlock();
1024
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001025 return authorized;
Jason Young808118c2011-03-10 16:43:19 -08001026}
1027
Johannes Berg965beda2009-04-16 13:17:24 +02001028/* need to hold RTNL or interface lock */
Johannes Berg10f644a2009-04-16 13:17:25 +02001029void ieee80211_recalc_ps(struct ieee80211_local *local, s32 latency)
Johannes Berg965beda2009-04-16 13:17:24 +02001030{
1031 struct ieee80211_sub_if_data *sdata, *found = NULL;
1032 int count = 0;
Juuso Oikarinen195e2942010-04-27 12:47:40 +03001033 int timeout;
Johannes Berg965beda2009-04-16 13:17:24 +02001034
1035 if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_PS)) {
1036 local->ps_sdata = NULL;
1037 return;
1038 }
1039
1040 list_for_each_entry(sdata, &local->interfaces, list) {
Johannes Berg9607e6b2009-12-23 13:15:31 +01001041 if (!ieee80211_sdata_running(sdata))
Johannes Berg965beda2009-04-16 13:17:24 +02001042 continue;
Rajkumar Manoharan8c7914d2011-02-01 00:28:59 +05301043 if (sdata->vif.type == NL80211_IFTYPE_AP) {
1044 /* If an AP vif is found, then disable PS
1045 * by setting the count to zero thereby setting
1046 * ps_sdata to NULL.
1047 */
1048 count = 0;
1049 break;
1050 }
Johannes Berg965beda2009-04-16 13:17:24 +02001051 if (sdata->vif.type != NL80211_IFTYPE_STATION)
1052 continue;
1053 found = sdata;
1054 count++;
1055 }
1056
Jason Young808118c2011-03-10 16:43:19 -08001057 if (count == 1 && ieee80211_powersave_allowed(found)) {
Johannes Berg10f644a2009-04-16 13:17:25 +02001058 s32 beaconint_us;
1059
1060 if (latency < 0)
Mark Grossed771342010-05-06 01:59:26 +02001061 latency = pm_qos_request(PM_QOS_NETWORK_LATENCY);
Johannes Berg10f644a2009-04-16 13:17:25 +02001062
1063 beaconint_us = ieee80211_tu_to_usec(
1064 found->vif.bss_conf.beacon_int);
1065
Juuso Oikarinenff616382010-06-09 09:51:52 +03001066 timeout = local->dynamic_ps_forced_timeout;
Juuso Oikarinen195e2942010-04-27 12:47:40 +03001067 if (timeout < 0) {
1068 /*
Juuso Oikarinenff616382010-06-09 09:51:52 +03001069 * Go to full PSM if the user configures a very low
1070 * latency requirement.
Eliad Peller0ab82b02010-12-03 02:16:23 +02001071 * The 2000 second value is there for compatibility
1072 * until the PM_QOS_NETWORK_LATENCY is configured
1073 * with real values.
Juuso Oikarinen195e2942010-04-27 12:47:40 +03001074 */
Eliad Peller0ab82b02010-12-03 02:16:23 +02001075 if (latency > (1900 * USEC_PER_MSEC) &&
1076 latency != (2000 * USEC_PER_SEC))
Juuso Oikarinen195e2942010-04-27 12:47:40 +03001077 timeout = 0;
Juuso Oikarinenff616382010-06-09 09:51:52 +03001078 else
1079 timeout = 100;
Juuso Oikarinen195e2942010-04-27 12:47:40 +03001080 }
Johannes Berg09b85562013-02-06 23:07:41 +01001081 local->hw.conf.dynamic_ps_timeout = timeout;
Juuso Oikarinen195e2942010-04-27 12:47:40 +03001082
Johannes Berg04fe2032009-04-22 18:44:37 +02001083 if (beaconint_us > latency) {
Johannes Berg10f644a2009-04-16 13:17:25 +02001084 local->ps_sdata = NULL;
Johannes Berg04fe2032009-04-22 18:44:37 +02001085 } else {
Johannes Berg04fe2032009-04-22 18:44:37 +02001086 int maxslp = 1;
Johannes Berg826262c2012-12-10 16:38:14 +02001087 u8 dtimper = found->u.mgd.dtim_period;
Johannes Berg56007a02010-01-26 14:19:52 +01001088
1089 /* If the TIM IE is invalid, pretend the value is 1 */
1090 if (!dtimper)
1091 dtimper = 1;
1092 else if (dtimper > 1)
Johannes Berg04fe2032009-04-22 18:44:37 +02001093 maxslp = min_t(int, dtimper,
1094 latency / beaconint_us);
1095
Johannes Berg9ccebe62009-04-23 10:32:36 +02001096 local->hw.conf.max_sleep_period = maxslp;
Johannes Berg56007a02010-01-26 14:19:52 +01001097 local->hw.conf.ps_dtim_period = dtimper;
Johannes Berg10f644a2009-04-16 13:17:25 +02001098 local->ps_sdata = found;
Johannes Berg04fe2032009-04-22 18:44:37 +02001099 }
Johannes Berg10f644a2009-04-16 13:17:25 +02001100 } else {
Johannes Berg965beda2009-04-16 13:17:24 +02001101 local->ps_sdata = NULL;
Johannes Berg10f644a2009-04-16 13:17:25 +02001102 }
Johannes Berg965beda2009-04-16 13:17:24 +02001103
1104 ieee80211_change_ps(local);
1105}
1106
Eliad Pellerab095872012-07-27 12:33:22 +03001107void ieee80211_recalc_ps_vif(struct ieee80211_sub_if_data *sdata)
1108{
1109 bool ps_allowed = ieee80211_powersave_allowed(sdata);
1110
1111 if (sdata->vif.bss_conf.ps != ps_allowed) {
1112 sdata->vif.bss_conf.ps = ps_allowed;
1113 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_PS);
1114 }
1115}
1116
Johannes Berg965beda2009-04-16 13:17:24 +02001117void ieee80211_dynamic_ps_disable_work(struct work_struct *work)
1118{
1119 struct ieee80211_local *local =
1120 container_of(work, struct ieee80211_local,
1121 dynamic_ps_disable_work);
1122
1123 if (local->hw.conf.flags & IEEE80211_CONF_PS) {
1124 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
1125 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
1126 }
1127
1128 ieee80211_wake_queues_by_reason(&local->hw,
1129 IEEE80211_QUEUE_STOP_REASON_PS);
1130}
1131
1132void ieee80211_dynamic_ps_enable_work(struct work_struct *work)
1133{
1134 struct ieee80211_local *local =
1135 container_of(work, struct ieee80211_local,
1136 dynamic_ps_enable_work);
1137 struct ieee80211_sub_if_data *sdata = local->ps_sdata;
Christian Lamparter5e340692011-06-30 21:08:43 +02001138 struct ieee80211_if_managed *ifmgd;
Rajkumar Manoharan1ddc2862011-05-03 17:03:59 +05301139 unsigned long flags;
1140 int q;
Johannes Berg965beda2009-04-16 13:17:24 +02001141
1142 /* can only happen when PS was just disabled anyway */
1143 if (!sdata)
1144 return;
1145
Christian Lamparter5e340692011-06-30 21:08:43 +02001146 ifmgd = &sdata->u.mgd;
1147
Johannes Berg965beda2009-04-16 13:17:24 +02001148 if (local->hw.conf.flags & IEEE80211_CONF_PS)
1149 return;
1150
Johannes Berg09b85562013-02-06 23:07:41 +01001151 if (local->hw.conf.dynamic_ps_timeout > 0) {
Arik Nemtsov77b70232011-06-26 12:06:54 +03001152 /* don't enter PS if TX frames are pending */
1153 if (drv_tx_frames_pending(local)) {
Rajkumar Manoharan1ddc2862011-05-03 17:03:59 +05301154 mod_timer(&local->dynamic_ps_timer, jiffies +
1155 msecs_to_jiffies(
1156 local->hw.conf.dynamic_ps_timeout));
1157 return;
1158 }
Arik Nemtsov77b70232011-06-26 12:06:54 +03001159
1160 /*
1161 * transmission can be stopped by others which leads to
1162 * dynamic_ps_timer expiry. Postpone the ps timer if it
1163 * is not the actual idle state.
1164 */
1165 spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
1166 for (q = 0; q < local->hw.queues; q++) {
1167 if (local->queue_stop_reasons[q]) {
1168 spin_unlock_irqrestore(&local->queue_stop_reason_lock,
1169 flags);
1170 mod_timer(&local->dynamic_ps_timer, jiffies +
1171 msecs_to_jiffies(
1172 local->hw.conf.dynamic_ps_timeout));
1173 return;
1174 }
1175 }
1176 spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
Rajkumar Manoharan1ddc2862011-05-03 17:03:59 +05301177 }
Rajkumar Manoharan1ddc2862011-05-03 17:03:59 +05301178
Vivek Natarajan375177b2010-02-09 14:50:28 +05301179 if ((local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK) &&
Mohammed Shafi Shajakhan9c38a8b2011-12-14 19:46:07 +05301180 !(ifmgd->flags & IEEE80211_STA_NULLFUNC_ACKED)) {
Vivek Natarajanf3e85b92011-02-23 13:04:32 +05301181 netif_tx_stop_all_queues(sdata->dev);
Johannes Berg965beda2009-04-16 13:17:24 +02001182
Vivek Natarajane8306f92011-04-06 11:41:10 +05301183 if (drv_tx_frames_pending(local))
1184 mod_timer(&local->dynamic_ps_timer, jiffies +
1185 msecs_to_jiffies(
1186 local->hw.conf.dynamic_ps_timeout));
1187 else {
1188 ieee80211_send_nullfunc(local, sdata, 1);
1189 /* Flush to get the tx status of nullfunc frame */
1190 drv_flush(local, false);
1191 }
Vivek Natarajanf3e85b92011-02-23 13:04:32 +05301192 }
1193
Juuso Oikarinen2a130522010-03-09 14:25:02 +02001194 if (!((local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS) &&
1195 (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)) ||
Vivek Natarajan375177b2010-02-09 14:50:28 +05301196 (ifmgd->flags & IEEE80211_STA_NULLFUNC_ACKED)) {
1197 ifmgd->flags &= ~IEEE80211_STA_NULLFUNC_ACKED;
1198 local->hw.conf.flags |= IEEE80211_CONF_PS;
1199 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
1200 }
Vivek Natarajanf3e85b92011-02-23 13:04:32 +05301201
Arik Nemtsov77b70232011-06-26 12:06:54 +03001202 if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)
1203 netif_tx_wake_all_queues(sdata->dev);
Johannes Berg965beda2009-04-16 13:17:24 +02001204}
1205
1206void ieee80211_dynamic_ps_timer(unsigned long data)
1207{
1208 struct ieee80211_local *local = (void *) data;
1209
Luis R. Rodriguez78f1a8b2009-07-27 08:38:25 -07001210 if (local->quiescing || local->suspended)
Johannes Berg5bb644a2009-05-17 11:40:42 +02001211 return;
1212
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04001213 ieee80211_queue_work(&local->hw, &local->dynamic_ps_enable_work);
Johannes Berg965beda2009-04-16 13:17:24 +02001214}
1215
Simon Wunderlich164eb022013-02-08 18:16:20 +01001216void ieee80211_dfs_cac_timer_work(struct work_struct *work)
1217{
1218 struct delayed_work *delayed_work =
1219 container_of(work, struct delayed_work, work);
1220 struct ieee80211_sub_if_data *sdata =
1221 container_of(delayed_work, struct ieee80211_sub_if_data,
1222 dfs_cac_timer_work);
1223
1224 ieee80211_vif_release_channel(sdata);
1225
1226 cfg80211_cac_event(sdata->dev, NL80211_RADAR_CAC_FINISHED, GFP_KERNEL);
1227}
1228
Johannes Berg60f8b392008-09-08 17:44:22 +02001229/* MLME */
Johannes Berg7d257452012-07-06 17:37:43 +02001230static bool ieee80211_sta_wmm_params(struct ieee80211_local *local,
Johannes Berg4ced3f72010-07-19 16:39:04 +02001231 struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07001232 u8 *wmm_param, size_t wmm_param_len)
1233{
Jiri Bencf0706e82007-05-05 11:45:53 -07001234 struct ieee80211_tx_queue_params params;
Johannes Berg4ced3f72010-07-19 16:39:04 +02001235 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jiri Bencf0706e82007-05-05 11:45:53 -07001236 size_t left;
1237 int count;
Kalle Valoab133152010-01-12 10:42:31 +02001238 u8 *pos, uapsd_queues = 0;
Jiri Bencf0706e82007-05-05 11:45:53 -07001239
Stanislaw Gruszkae1b3ec12010-03-29 12:18:34 +02001240 if (!local->ops->conf_tx)
Johannes Berg7d257452012-07-06 17:37:43 +02001241 return false;
Stanislaw Gruszkae1b3ec12010-03-29 12:18:34 +02001242
Johannes Berg32c50572012-03-28 11:04:29 +02001243 if (local->hw.queues < IEEE80211_NUM_ACS)
Johannes Berg7d257452012-07-06 17:37:43 +02001244 return false;
Johannes Berg3434fbd2008-05-03 00:59:37 +02001245
1246 if (!wmm_param)
Johannes Berg7d257452012-07-06 17:37:43 +02001247 return false;
Johannes Berg3434fbd2008-05-03 00:59:37 +02001248
Jiri Bencf0706e82007-05-05 11:45:53 -07001249 if (wmm_param_len < 8 || wmm_param[5] /* version */ != 1)
Johannes Berg7d257452012-07-06 17:37:43 +02001250 return false;
Kalle Valoab133152010-01-12 10:42:31 +02001251
1252 if (ifmgd->flags & IEEE80211_STA_UAPSD_ENABLED)
Eliad Pellerdc41e4d2012-03-14 16:15:03 +02001253 uapsd_queues = ifmgd->uapsd_queues;
Kalle Valoab133152010-01-12 10:42:31 +02001254
Jiri Bencf0706e82007-05-05 11:45:53 -07001255 count = wmm_param[6] & 0x0f;
Johannes Berg46900292009-02-15 12:44:28 +01001256 if (count == ifmgd->wmm_last_param_set)
Johannes Berg7d257452012-07-06 17:37:43 +02001257 return false;
Johannes Berg46900292009-02-15 12:44:28 +01001258 ifmgd->wmm_last_param_set = count;
Jiri Bencf0706e82007-05-05 11:45:53 -07001259
1260 pos = wmm_param + 8;
1261 left = wmm_param_len - 8;
1262
1263 memset(&params, 0, sizeof(params));
1264
Yoni Divinsky00e96de2012-06-20 15:39:13 +03001265 sdata->wmm_acm = 0;
Jiri Bencf0706e82007-05-05 11:45:53 -07001266 for (; left >= 4; left -= 4, pos += 4) {
1267 int aci = (pos[0] >> 5) & 0x03;
1268 int acm = (pos[0] >> 4) & 0x01;
Kalle Valoab133152010-01-12 10:42:31 +02001269 bool uapsd = false;
Jiri Bencf0706e82007-05-05 11:45:53 -07001270 int queue;
1271
1272 switch (aci) {
Jouni Malinen0eeb59f2009-03-05 17:23:46 +02001273 case 1: /* AC_BK */
Johannes Berge100bb62008-04-30 18:51:21 +02001274 queue = 3;
Johannes Berg988c0f72008-04-17 19:21:22 +02001275 if (acm)
Yoni Divinsky00e96de2012-06-20 15:39:13 +03001276 sdata->wmm_acm |= BIT(1) | BIT(2); /* BK/- */
Kalle Valoab133152010-01-12 10:42:31 +02001277 if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_BK)
1278 uapsd = true;
Jiri Bencf0706e82007-05-05 11:45:53 -07001279 break;
Jouni Malinen0eeb59f2009-03-05 17:23:46 +02001280 case 2: /* AC_VI */
Johannes Berge100bb62008-04-30 18:51:21 +02001281 queue = 1;
Johannes Berg988c0f72008-04-17 19:21:22 +02001282 if (acm)
Yoni Divinsky00e96de2012-06-20 15:39:13 +03001283 sdata->wmm_acm |= BIT(4) | BIT(5); /* CL/VI */
Kalle Valoab133152010-01-12 10:42:31 +02001284 if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_VI)
1285 uapsd = true;
Jiri Bencf0706e82007-05-05 11:45:53 -07001286 break;
Jouni Malinen0eeb59f2009-03-05 17:23:46 +02001287 case 3: /* AC_VO */
Johannes Berge100bb62008-04-30 18:51:21 +02001288 queue = 0;
Johannes Berg988c0f72008-04-17 19:21:22 +02001289 if (acm)
Yoni Divinsky00e96de2012-06-20 15:39:13 +03001290 sdata->wmm_acm |= BIT(6) | BIT(7); /* VO/NC */
Kalle Valoab133152010-01-12 10:42:31 +02001291 if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_VO)
1292 uapsd = true;
Jiri Bencf0706e82007-05-05 11:45:53 -07001293 break;
Jouni Malinen0eeb59f2009-03-05 17:23:46 +02001294 case 0: /* AC_BE */
Jiri Bencf0706e82007-05-05 11:45:53 -07001295 default:
Johannes Berge100bb62008-04-30 18:51:21 +02001296 queue = 2;
Johannes Berg988c0f72008-04-17 19:21:22 +02001297 if (acm)
Yoni Divinsky00e96de2012-06-20 15:39:13 +03001298 sdata->wmm_acm |= BIT(0) | BIT(3); /* BE/EE */
Kalle Valoab133152010-01-12 10:42:31 +02001299 if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_BE)
1300 uapsd = true;
Jiri Bencf0706e82007-05-05 11:45:53 -07001301 break;
1302 }
1303
1304 params.aifs = pos[0] & 0x0f;
1305 params.cw_max = ecw2cw((pos[1] & 0xf0) >> 4);
1306 params.cw_min = ecw2cw(pos[1] & 0x0f);
Johannes Bergf434b2d2008-07-10 11:22:31 +02001307 params.txop = get_unaligned_le16(pos + 2);
Kalle Valoab133152010-01-12 10:42:31 +02001308 params.uapsd = uapsd;
1309
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02001310 mlme_dbg(sdata,
1311 "WMM queue=%d aci=%d acm=%d aifs=%d cWmin=%d cWmax=%d txop=%d uapsd=%d\n",
1312 queue, aci, acm,
1313 params.aifs, params.cw_min, params.cw_max,
1314 params.txop, params.uapsd);
Eliad Pellerf6f3def2011-09-25 20:06:54 +03001315 sdata->tx_conf[queue] = params;
1316 if (drv_conf_tx(local, sdata, queue, &params))
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02001317 sdata_err(sdata,
1318 "failed to set TX queue parameters for queue %d\n",
1319 queue);
Jiri Bencf0706e82007-05-05 11:45:53 -07001320 }
Stanislaw Gruszkae1b3ec12010-03-29 12:18:34 +02001321
1322 /* enable WMM or activate new settings */
Johannes Berg4ced3f72010-07-19 16:39:04 +02001323 sdata->vif.bss_conf.qos = true;
Johannes Berg7d257452012-07-06 17:37:43 +02001324 return true;
Jiri Bencf0706e82007-05-05 11:45:53 -07001325}
1326
Stanislaw Gruszka925e64c2012-05-16 15:27:20 +02001327static void __ieee80211_stop_poll(struct ieee80211_sub_if_data *sdata)
1328{
1329 lockdep_assert_held(&sdata->local->mtx);
1330
1331 sdata->u.mgd.flags &= ~(IEEE80211_STA_CONNECTION_POLL |
1332 IEEE80211_STA_BEACON_POLL);
1333 ieee80211_run_deferred_scan(sdata->local);
1334}
1335
1336static void ieee80211_stop_poll(struct ieee80211_sub_if_data *sdata)
1337{
1338 mutex_lock(&sdata->local->mtx);
1339 __ieee80211_stop_poll(sdata);
1340 mutex_unlock(&sdata->local->mtx);
1341}
1342
Johannes Berg7a5158e2008-10-08 10:59:33 +02001343static u32 ieee80211_handle_bss_capability(struct ieee80211_sub_if_data *sdata,
1344 u16 capab, bool erp_valid, u8 erp)
Daniel Drake56282212007-07-10 19:32:10 +02001345{
Johannes Bergbda39332008-10-11 01:51:51 +02001346 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
Johannes Berg471b3ef2007-12-28 14:32:58 +01001347 u32 changed = 0;
Johannes Berg7a5158e2008-10-08 10:59:33 +02001348 bool use_protection;
1349 bool use_short_preamble;
1350 bool use_short_slot;
1351
1352 if (erp_valid) {
1353 use_protection = (erp & WLAN_ERP_USE_PROTECTION) != 0;
1354 use_short_preamble = (erp & WLAN_ERP_BARKER_PREAMBLE) == 0;
1355 } else {
1356 use_protection = false;
1357 use_short_preamble = !!(capab & WLAN_CAPABILITY_SHORT_PREAMBLE);
1358 }
1359
1360 use_short_slot = !!(capab & WLAN_CAPABILITY_SHORT_SLOT_TIME);
Johannes Berg55de9082012-07-26 17:24:39 +02001361 if (ieee80211_get_sdata_band(sdata) == IEEE80211_BAND_5GHZ)
Felix Fietkau43d35342010-01-15 03:00:48 +01001362 use_short_slot = true;
Daniel Drake56282212007-07-10 19:32:10 +02001363
Johannes Berg471b3ef2007-12-28 14:32:58 +01001364 if (use_protection != bss_conf->use_cts_prot) {
Johannes Berg471b3ef2007-12-28 14:32:58 +01001365 bss_conf->use_cts_prot = use_protection;
1366 changed |= BSS_CHANGED_ERP_CTS_PROT;
Daniel Drake56282212007-07-10 19:32:10 +02001367 }
Daniel Drake7e9ed182007-07-27 15:43:24 +02001368
Vladimir Koutnyd43c7b32008-03-31 17:05:03 +02001369 if (use_short_preamble != bss_conf->use_short_preamble) {
Vladimir Koutnyd43c7b32008-03-31 17:05:03 +02001370 bss_conf->use_short_preamble = use_short_preamble;
Johannes Berg471b3ef2007-12-28 14:32:58 +01001371 changed |= BSS_CHANGED_ERP_PREAMBLE;
Daniel Drake7e9ed182007-07-27 15:43:24 +02001372 }
Daniel Draked9430a32007-07-27 15:43:24 +02001373
Johannes Berg7a5158e2008-10-08 10:59:33 +02001374 if (use_short_slot != bss_conf->use_short_slot) {
Johannes Berg7a5158e2008-10-08 10:59:33 +02001375 bss_conf->use_short_slot = use_short_slot;
1376 changed |= BSS_CHANGED_ERP_SLOT;
John W. Linville50c4afb2008-04-15 14:09:27 -04001377 }
1378
1379 return changed;
1380}
1381
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001382static void ieee80211_set_associated(struct ieee80211_sub_if_data *sdata,
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01001383 struct cfg80211_bss *cbss,
Johannes Bergae5eb022008-10-14 16:58:37 +02001384 u32 bss_info_changed)
Jiri Bencf0706e82007-05-05 11:45:53 -07001385{
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01001386 struct ieee80211_bss *bss = (void *)cbss->priv;
Johannes Berg471b3ef2007-12-28 14:32:58 +01001387 struct ieee80211_local *local = sdata->local;
Juuso Oikarinen68542962010-06-09 13:43:26 +03001388 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
Jiri Slabyd6f2da52007-08-28 17:01:54 -04001389
Johannes Bergae5eb022008-10-14 16:58:37 +02001390 bss_info_changed |= BSS_CHANGED_ASSOC;
Johannes Berg77fdaa12009-07-07 03:45:17 +02001391 bss_info_changed |= ieee80211_handle_bss_capability(sdata,
Luciano Coelho50ae34a2012-06-20 17:23:24 +03001392 bss_conf->assoc_capability, bss->has_erp_value, bss->erp_value);
Tomas Winkler21c0cbe2008-03-28 16:33:34 -07001393
Felix Fietkau7ccc8bd2010-11-19 22:55:38 +01001394 sdata->u.mgd.beacon_timeout = usecs_to_jiffies(ieee80211_tu_to_usec(
1395 IEEE80211_BEACON_LOSS_COUNT * bss_conf->beacon_int));
1396
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01001397 sdata->u.mgd.associated = cbss;
1398 memcpy(sdata->u.mgd.bssid, cbss->bssid, ETH_ALEN);
Johannes Berg471b3ef2007-12-28 14:32:58 +01001399
Jouni Malinen17e4ec12010-03-29 23:28:30 -07001400 sdata->u.mgd.flags |= IEEE80211_STA_RESET_SIGNAL_AVE;
1401
Johannes Berg488dd7b2012-10-29 20:08:01 +01001402 if (sdata->vif.p2p) {
Johannes Berg9caf0362012-11-29 01:25:20 +01001403 const struct cfg80211_bss_ies *ies;
Johannes Berg488dd7b2012-10-29 20:08:01 +01001404
Johannes Berg9caf0362012-11-29 01:25:20 +01001405 rcu_read_lock();
1406 ies = rcu_dereference(cbss->ies);
1407 if (ies) {
1408 u8 noa[2];
1409 int ret;
1410
1411 ret = cfg80211_get_p2p_attr(
1412 ies->data, ies->len,
1413 IEEE80211_P2P_ATTR_ABSENCE_NOTICE,
1414 noa, sizeof(noa));
1415 if (ret >= 2) {
1416 bss_conf->p2p_oppps = noa[1] & 0x80;
1417 bss_conf->p2p_ctwindow = noa[1] & 0x7f;
1418 bss_info_changed |= BSS_CHANGED_P2P_PS;
1419 sdata->u.mgd.p2p_noa_index = noa[0];
1420 }
Johannes Berg488dd7b2012-10-29 20:08:01 +01001421 }
Johannes Berg9caf0362012-11-29 01:25:20 +01001422 rcu_read_unlock();
Johannes Berg488dd7b2012-10-29 20:08:01 +01001423 }
1424
Johannes Bergb291ba12009-07-10 15:29:03 +02001425 /* just to be sure */
Stanislaw Gruszka925e64c2012-05-16 15:27:20 +02001426 ieee80211_stop_poll(sdata);
Johannes Bergb291ba12009-07-10 15:29:03 +02001427
Tomas Winklerf5e5bf22008-09-08 17:33:39 +02001428 ieee80211_led_assoc(local, 1);
1429
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02001430 if (sdata->u.mgd.assoc_data->have_beacon) {
Johannes Berg826262c2012-12-10 16:38:14 +02001431 /*
1432 * If the AP is buggy we may get here with no DTIM period
1433 * known, so assume it's 1 which is the only safe assumption
1434 * in that case, although if the TIM IE is broken powersave
1435 * probably just won't work at all.
1436 */
1437 bss_conf->dtim_period = sdata->u.mgd.dtim_period ?: 1;
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02001438 bss_info_changed |= BSS_CHANGED_DTIM_PERIOD;
Johannes Berg826262c2012-12-10 16:38:14 +02001439 } else {
Johannes Berge5b900d2010-07-29 16:08:55 +02001440 bss_conf->dtim_period = 0;
Johannes Berg826262c2012-12-10 16:38:14 +02001441 }
Johannes Berge5b900d2010-07-29 16:08:55 +02001442
Juuso Oikarinen68542962010-06-09 13:43:26 +03001443 bss_conf->assoc = 1;
Johannes Berg9cef8732009-05-14 13:10:14 +02001444
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02001445 /* Tell the driver to monitor connection quality (if supported) */
Johannes Bergea086352012-01-19 09:29:58 +01001446 if (sdata->vif.driver_flags & IEEE80211_VIF_SUPPORTS_CQM_RSSI &&
Juuso Oikarinen68542962010-06-09 13:43:26 +03001447 bss_conf->cqm_rssi_thold)
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02001448 bss_info_changed |= BSS_CHANGED_CQM;
1449
Juuso Oikarinen68542962010-06-09 13:43:26 +03001450 /* Enable ARP filtering */
Johannes Berg0f19b412013-01-14 16:39:07 +01001451 if (bss_conf->arp_addr_cnt)
Juuso Oikarinen68542962010-06-09 13:43:26 +03001452 bss_info_changed |= BSS_CHANGED_ARP_FILTER;
Juuso Oikarinen68542962010-06-09 13:43:26 +03001453
Johannes Bergae5eb022008-10-14 16:58:37 +02001454 ieee80211_bss_info_change_notify(sdata, bss_info_changed);
Guy Cohen8db93692008-07-03 19:56:13 +03001455
Johannes Berg056508d2009-07-30 21:43:55 +02001456 mutex_lock(&local->iflist_mtx);
1457 ieee80211_recalc_ps(local, -1);
1458 mutex_unlock(&local->iflist_mtx);
Kalle Valoe0cb6862008-12-18 23:35:13 +02001459
Johannes Berg04ecd252012-09-11 14:34:12 +02001460 ieee80211_recalc_smps(sdata);
Eliad Pellerab095872012-07-27 12:33:22 +03001461 ieee80211_recalc_ps_vif(sdata);
1462
John W. Linville8a5b33f2010-01-06 15:39:39 -05001463 netif_tx_start_all_queues(sdata->dev);
Tomas Winklerf5e5bf22008-09-08 17:33:39 +02001464 netif_carrier_on(sdata->dev);
Jiri Bencf0706e82007-05-05 11:45:53 -07001465}
1466
Jouni Malinene69e95d2010-03-29 23:29:31 -07001467static void ieee80211_set_disassoc(struct ieee80211_sub_if_data *sdata,
Johannes Berg37ad3882012-02-24 13:50:54 +01001468 u16 stype, u16 reason, bool tx,
1469 u8 *frame_buf)
Tomas Winkleraa458d12008-09-09 00:32:12 +03001470{
Johannes Berg46900292009-02-15 12:44:28 +01001471 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Tomas Winkleraa458d12008-09-09 00:32:12 +03001472 struct ieee80211_local *local = sdata->local;
Johannes Berg3cc52402012-03-09 13:12:35 +01001473 u32 changed = 0;
Tomas Winkleraa458d12008-09-09 00:32:12 +03001474
Johannes Berg77fdaa12009-07-07 03:45:17 +02001475 ASSERT_MGD_MTX(ifmgd);
1476
Johannes Berg37ad3882012-02-24 13:50:54 +01001477 if (WARN_ON_ONCE(tx && !frame_buf))
1478 return;
1479
Johannes Bergb291ba12009-07-10 15:29:03 +02001480 if (WARN_ON(!ifmgd->associated))
1481 return;
1482
David Spinadel79543d82012-06-12 09:59:45 +03001483 ieee80211_stop_poll(sdata);
1484
Johannes Berg77fdaa12009-07-07 03:45:17 +02001485 ifmgd->associated = NULL;
Johannes Berg77fdaa12009-07-07 03:45:17 +02001486
1487 /*
1488 * we need to commit the associated = NULL change because the
1489 * scan code uses that to determine whether this iface should
1490 * go to/wake up from powersave or not -- and could otherwise
1491 * wake the queues erroneously.
1492 */
1493 smp_mb();
1494
1495 /*
1496 * Thus, we can only afterwards stop the queues -- to account
1497 * for the case where another CPU is finishing a scan at this
1498 * time -- we don't want the scan code to enable queues.
1499 */
Tomas Winkleraa458d12008-09-09 00:32:12 +03001500
John W. Linville8a5b33f2010-01-06 15:39:39 -05001501 netif_tx_stop_all_queues(sdata->dev);
Tomas Winkleraa458d12008-09-09 00:32:12 +03001502 netif_carrier_off(sdata->dev);
1503
Eliad Peller88bc40e2012-07-12 17:35:33 +03001504 /*
1505 * if we want to get out of ps before disassoc (why?) we have
1506 * to do it before sending disassoc, as otherwise the null-packet
1507 * won't be valid.
1508 */
1509 if (local->hw.conf.flags & IEEE80211_CONF_PS) {
1510 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
1511 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
1512 }
1513 local->ps_sdata = NULL;
1514
Eliad Pellerab095872012-07-27 12:33:22 +03001515 /* disable per-vif ps */
1516 ieee80211_recalc_ps_vif(sdata);
1517
Eliad Pellerf8239812012-06-27 14:18:22 +03001518 /* flush out any pending frame (e.g. DELBA) before deauth/disassoc */
1519 if (tx)
1520 drv_flush(local, false);
1521
Johannes Berg37ad3882012-02-24 13:50:54 +01001522 /* deauthenticate/disassociate now */
1523 if (tx || frame_buf)
Eliad Peller88a9e312012-06-01 11:14:03 +03001524 ieee80211_send_deauth_disassoc(sdata, ifmgd->bssid, stype,
1525 reason, tx, frame_buf);
Johannes Berg37ad3882012-02-24 13:50:54 +01001526
1527 /* flush out frame */
1528 if (tx)
1529 drv_flush(local, false);
1530
Eliad Peller88a9e312012-06-01 11:14:03 +03001531 /* clear bssid only after building the needed mgmt frames */
1532 memset(ifmgd->bssid, 0, ETH_ALEN);
1533
Johannes Berg37ad3882012-02-24 13:50:54 +01001534 /* remove AP and TDLS peers */
Johannes Berg051007d2012-12-13 23:49:02 +01001535 sta_info_flush_defer(sdata);
Johannes Berg37ad3882012-02-24 13:50:54 +01001536
1537 /* finally reset all BSS / config parameters */
Tomas Winklerf5e5bf22008-09-08 17:33:39 +02001538 changed |= ieee80211_reset_erp_info(sdata);
1539
Tomas Winklerf5e5bf22008-09-08 17:33:39 +02001540 ieee80211_led_assoc(local, 0);
Johannes Bergae5eb022008-10-14 16:58:37 +02001541 changed |= BSS_CHANGED_ASSOC;
1542 sdata->vif.bss_conf.assoc = false;
Tomas Winklerf5e5bf22008-09-08 17:33:39 +02001543
Johannes Berg488dd7b2012-10-29 20:08:01 +01001544 sdata->vif.bss_conf.p2p_ctwindow = 0;
1545 sdata->vif.bss_conf.p2p_oppps = false;
1546
Johannes Berg413ad502009-05-08 21:21:06 +02001547 /* on the next assoc, re-program HT parameters */
Ben Greearef96a8422011-11-18 11:32:00 -08001548 memset(&ifmgd->ht_capa, 0, sizeof(ifmgd->ht_capa));
1549 memset(&ifmgd->ht_capa_mask, 0, sizeof(ifmgd->ht_capa_mask));
Johannes Berg413ad502009-05-08 21:21:06 +02001550
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02001551 sdata->ap_power_level = IEEE80211_UNSET_POWER_LEVEL;
Vasanthakumar Thiagarajana8302de2009-01-09 18:14:15 +05301552
Kalle Valo520eb822008-12-18 23:35:27 +02001553 del_timer_sync(&local->dynamic_ps_timer);
1554 cancel_work_sync(&local->dynamic_ps_enable_work);
1555
Juuso Oikarinen68542962010-06-09 13:43:26 +03001556 /* Disable ARP filtering */
Johannes Berg0f19b412013-01-14 16:39:07 +01001557 if (sdata->vif.bss_conf.arp_addr_cnt)
Juuso Oikarinen68542962010-06-09 13:43:26 +03001558 changed |= BSS_CHANGED_ARP_FILTER;
Juuso Oikarinen68542962010-06-09 13:43:26 +03001559
Johannes Berg3abead52012-03-02 15:56:59 +01001560 sdata->vif.bss_conf.qos = false;
1561 changed |= BSS_CHANGED_QOS;
1562
Johannes Berg0aaffa92010-05-05 15:28:27 +02001563 /* The BSSID (not really interesting) and HT changed */
1564 changed |= BSS_CHANGED_BSSID | BSS_CHANGED_HT;
Johannes Bergae5eb022008-10-14 16:58:37 +02001565 ieee80211_bss_info_change_notify(sdata, changed);
Tomas Winkler8e268e42008-11-25 13:05:44 +02001566
Johannes Berg3abead52012-03-02 15:56:59 +01001567 /* disassociated - set to defaults now */
1568 ieee80211_set_wmm_default(sdata, false);
1569
Johannes Bergb9dcf712010-08-27 12:35:54 +02001570 del_timer_sync(&sdata->u.mgd.conn_mon_timer);
1571 del_timer_sync(&sdata->u.mgd.bcn_mon_timer);
1572 del_timer_sync(&sdata->u.mgd.timer);
1573 del_timer_sync(&sdata->u.mgd.chswitch_timer);
Johannes Berg2d9957c2012-08-01 20:54:52 +02001574
1575 sdata->u.mgd.timers_running = 0;
Johannes Berg028e8da02012-11-26 11:57:41 +01001576
Johannes Berg826262c2012-12-10 16:38:14 +02001577 sdata->vif.bss_conf.dtim_period = 0;
1578
Johannes Berg028e8da02012-11-26 11:57:41 +01001579 ifmgd->flags = 0;
1580 ieee80211_vif_release_channel(sdata);
Tomas Winkleraa458d12008-09-09 00:32:12 +03001581}
Jiri Bencf0706e82007-05-05 11:45:53 -07001582
Kalle Valo3cf335d2009-03-22 21:57:06 +02001583void ieee80211_sta_rx_notify(struct ieee80211_sub_if_data *sdata,
1584 struct ieee80211_hdr *hdr)
1585{
1586 /*
1587 * We can postpone the mgd.timer whenever receiving unicast frames
1588 * from AP because we know that the connection is working both ways
1589 * at that time. But multicast frames (and hence also beacons) must
1590 * be ignored here, because we need to trigger the timer during
Johannes Bergb291ba12009-07-10 15:29:03 +02001591 * data idle periods for sending the periodic probe request to the
1592 * AP we're connected to.
Kalle Valo3cf335d2009-03-22 21:57:06 +02001593 */
Johannes Bergb291ba12009-07-10 15:29:03 +02001594 if (is_multicast_ether_addr(hdr->addr1))
1595 return;
1596
Luis R. Rodriguezbe099e82010-09-16 15:12:29 -04001597 ieee80211_sta_reset_conn_monitor(sdata);
Kalle Valo3cf335d2009-03-22 21:57:06 +02001598}
Jiri Bencf0706e82007-05-05 11:45:53 -07001599
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001600static void ieee80211_reset_ap_probe(struct ieee80211_sub_if_data *sdata)
1601{
1602 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001603 struct ieee80211_local *local = sdata->local;
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001604
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001605 mutex_lock(&local->mtx);
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001606 if (!(ifmgd->flags & (IEEE80211_STA_BEACON_POLL |
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001607 IEEE80211_STA_CONNECTION_POLL))) {
1608 mutex_unlock(&local->mtx);
1609 return;
1610 }
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001611
Stanislaw Gruszka925e64c2012-05-16 15:27:20 +02001612 __ieee80211_stop_poll(sdata);
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001613
1614 mutex_lock(&local->iflist_mtx);
1615 ieee80211_recalc_ps(local, -1);
1616 mutex_unlock(&local->iflist_mtx);
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001617
1618 if (sdata->local->hw.flags & IEEE80211_HW_CONNECTION_MONITOR)
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001619 goto out;
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001620
1621 /*
1622 * We've received a probe response, but are not sure whether
1623 * we have or will be receiving any beacons or data, so let's
1624 * schedule the timers again, just in case.
1625 */
1626 ieee80211_sta_reset_beacon_monitor(sdata);
1627
1628 mod_timer(&ifmgd->conn_mon_timer,
1629 round_jiffies_up(jiffies +
1630 IEEE80211_CONNECTION_IDLE_TIME));
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001631out:
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001632 mutex_unlock(&local->mtx);
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001633}
1634
1635void ieee80211_sta_tx_notify(struct ieee80211_sub_if_data *sdata,
Felix Fietkau04ac3c02010-12-02 21:01:08 +01001636 struct ieee80211_hdr *hdr, bool ack)
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001637{
Felix Fietkau75706d02010-12-02 21:01:07 +01001638 if (!ieee80211_is_data(hdr->frame_control))
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001639 return;
1640
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001641 if (ieee80211_is_nullfunc(hdr->frame_control) &&
1642 sdata->u.mgd.probe_send_count > 0) {
Felix Fietkau04ac3c02010-12-02 21:01:08 +01001643 if (ack)
Wojciech Dubowikcab1c7f2013-02-14 14:08:37 +01001644 ieee80211_sta_reset_conn_monitor(sdata);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01001645 else
1646 sdata->u.mgd.nullfunc_failed = true;
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001647 ieee80211_queue_work(&sdata->local->hw, &sdata->work);
Wojciech Dubowikcab1c7f2013-02-14 14:08:37 +01001648 return;
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001649 }
Wojciech Dubowikcab1c7f2013-02-14 14:08:37 +01001650
1651 if (ack)
1652 ieee80211_sta_reset_conn_monitor(sdata);
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001653}
1654
Maxim Levitskya43abf22009-07-31 18:54:12 +03001655static void ieee80211_mgd_probe_ap_send(struct ieee80211_sub_if_data *sdata)
1656{
1657 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1658 const u8 *ssid;
Luis R. Rodriguezf01a0672010-09-16 15:12:34 -04001659 u8 *dst = ifmgd->associated->bssid;
Ben Greear180205b2011-02-04 15:30:24 -08001660 u8 unicast_limit = max(1, max_probe_tries - 3);
Luis R. Rodriguezf01a0672010-09-16 15:12:34 -04001661
1662 /*
1663 * Try sending broadcast probe requests for the last three
1664 * probe requests after the first ones failed since some
1665 * buggy APs only support broadcast probe requests.
1666 */
1667 if (ifmgd->probe_send_count >= unicast_limit)
1668 dst = NULL;
Maxim Levitskya43abf22009-07-31 18:54:12 +03001669
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001670 /*
1671 * When the hardware reports an accurate Tx ACK status, it's
1672 * better to send a nullfunc frame instead of a probe request,
1673 * as it will kick us off the AP quickly if we aren't associated
1674 * anymore. The timeout will be reset if the frame is ACKed by
1675 * the AP.
1676 */
Soumik Das992e68b2012-05-20 15:31:13 +05301677 ifmgd->probe_send_count++;
1678
Felix Fietkau04ac3c02010-12-02 21:01:08 +01001679 if (sdata->local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS) {
1680 ifmgd->nullfunc_failed = false;
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001681 ieee80211_send_nullfunc(sdata->local, sdata, 0);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01001682 } else {
Stanislaw Gruszka88c868c2012-03-29 16:30:41 +02001683 int ssid_len;
1684
Johannes Berg9caf0362012-11-29 01:25:20 +01001685 rcu_read_lock();
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001686 ssid = ieee80211_bss_get_ie(ifmgd->associated, WLAN_EID_SSID);
Stanislaw Gruszka88c868c2012-03-29 16:30:41 +02001687 if (WARN_ON_ONCE(ssid == NULL))
1688 ssid_len = 0;
1689 else
1690 ssid_len = ssid[1];
1691
1692 ieee80211_send_probe_req(sdata, dst, ssid + 2, ssid_len, NULL,
Johannes Berg1672c0e32013-01-29 15:02:27 +01001693 0, (u32) -1, true, 0,
Johannes Berg55de9082012-07-26 17:24:39 +02001694 ifmgd->associated->channel, false);
Johannes Berg9caf0362012-11-29 01:25:20 +01001695 rcu_read_unlock();
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001696 }
Maxim Levitskya43abf22009-07-31 18:54:12 +03001697
Ben Greear180205b2011-02-04 15:30:24 -08001698 ifmgd->probe_timeout = jiffies + msecs_to_jiffies(probe_wait_ms);
Maxim Levitskya43abf22009-07-31 18:54:12 +03001699 run_again(ifmgd, ifmgd->probe_timeout);
Rajkumar Manoharanf69b9c72012-03-15 06:15:26 +05301700 if (sdata->local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS)
1701 drv_flush(sdata->local, false);
Maxim Levitskya43abf22009-07-31 18:54:12 +03001702}
1703
Johannes Bergb291ba12009-07-10 15:29:03 +02001704static void ieee80211_mgd_probe_ap(struct ieee80211_sub_if_data *sdata,
1705 bool beacon)
Kalle Valo04de8382009-03-22 21:57:35 +02001706{
Kalle Valo04de8382009-03-22 21:57:35 +02001707 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Bergb291ba12009-07-10 15:29:03 +02001708 bool already = false;
Johannes Berg34bfc412009-05-12 19:58:12 +02001709
Johannes Berg9607e6b2009-12-23 13:15:31 +01001710 if (!ieee80211_sdata_running(sdata))
Johannes Berg0e2b6282009-07-13 13:23:39 +02001711 return;
1712
Johannes Berg77fdaa12009-07-07 03:45:17 +02001713 mutex_lock(&ifmgd->mtx);
1714
1715 if (!ifmgd->associated)
1716 goto out;
1717
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001718 mutex_lock(&sdata->local->mtx);
1719
1720 if (sdata->local->tmp_channel || sdata->local->scanning) {
1721 mutex_unlock(&sdata->local->mtx);
1722 goto out;
1723 }
1724
Joe Perchese87cc472012-05-13 21:56:26 +00001725 if (beacon)
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02001726 mlme_dbg_ratelimited(sdata,
Johannes Berg112c31f2013-02-08 22:59:00 +01001727 "detected beacon loss from AP - probing\n");
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02001728
Holger Schurig6efb71b2012-05-15 15:38:59 +02001729 ieee80211_cqm_rssi_notify(&sdata->vif,
1730 NL80211_CQM_RSSI_BEACON_LOSS_EVENT, GFP_KERNEL);
Kalle Valo04de8382009-03-22 21:57:35 +02001731
Johannes Bergb291ba12009-07-10 15:29:03 +02001732 /*
1733 * The driver/our work has already reported this event or the
1734 * connection monitoring has kicked in and we have already sent
1735 * a probe request. Or maybe the AP died and the driver keeps
1736 * reporting until we disassociate...
1737 *
1738 * In either case we have to ignore the current call to this
1739 * function (except for setting the correct probe reason bit)
1740 * because otherwise we would reset the timer every time and
1741 * never check whether we received a probe response!
1742 */
1743 if (ifmgd->flags & (IEEE80211_STA_BEACON_POLL |
1744 IEEE80211_STA_CONNECTION_POLL))
1745 already = true;
1746
1747 if (beacon)
1748 ifmgd->flags |= IEEE80211_STA_BEACON_POLL;
1749 else
1750 ifmgd->flags |= IEEE80211_STA_CONNECTION_POLL;
1751
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001752 mutex_unlock(&sdata->local->mtx);
1753
Johannes Bergb291ba12009-07-10 15:29:03 +02001754 if (already)
1755 goto out;
1756
Johannes Berg4e751842009-06-10 15:16:52 +02001757 mutex_lock(&sdata->local->iflist_mtx);
1758 ieee80211_recalc_ps(sdata->local, -1);
1759 mutex_unlock(&sdata->local->iflist_mtx);
1760
Maxim Levitskya43abf22009-07-31 18:54:12 +03001761 ifmgd->probe_send_count = 0;
1762 ieee80211_mgd_probe_ap_send(sdata);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001763 out:
1764 mutex_unlock(&ifmgd->mtx);
Kalle Valo04de8382009-03-22 21:57:35 +02001765}
1766
Juuso Oikarinena619a4c2010-11-11 08:50:18 +02001767struct sk_buff *ieee80211_ap_probereq_get(struct ieee80211_hw *hw,
1768 struct ieee80211_vif *vif)
1769{
1770 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
1771 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Eliad Pellerd9b3b282012-06-28 15:03:13 +03001772 struct cfg80211_bss *cbss;
Juuso Oikarinena619a4c2010-11-11 08:50:18 +02001773 struct sk_buff *skb;
1774 const u8 *ssid;
Stanislaw Gruszka88c868c2012-03-29 16:30:41 +02001775 int ssid_len;
Juuso Oikarinena619a4c2010-11-11 08:50:18 +02001776
1777 if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION))
1778 return NULL;
1779
1780 ASSERT_MGD_MTX(ifmgd);
1781
Eliad Pellerd9b3b282012-06-28 15:03:13 +03001782 if (ifmgd->associated)
1783 cbss = ifmgd->associated;
1784 else if (ifmgd->auth_data)
1785 cbss = ifmgd->auth_data->bss;
1786 else if (ifmgd->assoc_data)
1787 cbss = ifmgd->assoc_data->bss;
1788 else
Juuso Oikarinena619a4c2010-11-11 08:50:18 +02001789 return NULL;
1790
Johannes Berg9caf0362012-11-29 01:25:20 +01001791 rcu_read_lock();
Eliad Pellerd9b3b282012-06-28 15:03:13 +03001792 ssid = ieee80211_bss_get_ie(cbss, WLAN_EID_SSID);
Stanislaw Gruszka88c868c2012-03-29 16:30:41 +02001793 if (WARN_ON_ONCE(ssid == NULL))
1794 ssid_len = 0;
1795 else
1796 ssid_len = ssid[1];
1797
Eliad Pellerd9b3b282012-06-28 15:03:13 +03001798 skb = ieee80211_build_probe_req(sdata, cbss->bssid,
Johannes Berg55de9082012-07-26 17:24:39 +02001799 (u32) -1, cbss->channel,
Johannes Berg6b778632012-07-23 14:53:27 +02001800 ssid + 2, ssid_len,
Johannes Berg85a237f2011-07-18 18:08:36 +02001801 NULL, 0, true);
Johannes Berg9caf0362012-11-29 01:25:20 +01001802 rcu_read_unlock();
Juuso Oikarinena619a4c2010-11-11 08:50:18 +02001803
1804 return skb;
1805}
1806EXPORT_SYMBOL(ieee80211_ap_probereq_get);
1807
Johannes Bergeef9e542013-01-29 13:09:34 +01001808static void __ieee80211_disconnect(struct ieee80211_sub_if_data *sdata)
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02001809{
1810 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Antonio Quartulli6ae16772012-09-07 13:28:52 +02001811 u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN];
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02001812
1813 mutex_lock(&ifmgd->mtx);
1814 if (!ifmgd->associated) {
1815 mutex_unlock(&ifmgd->mtx);
1816 return;
1817 }
1818
Johannes Berg37ad3882012-02-24 13:50:54 +01001819 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH,
1820 WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY,
Johannes Bergeef9e542013-01-29 13:09:34 +01001821 true, frame_buf);
Johannes Berg882a7c62012-08-01 22:32:45 +02001822 ifmgd->flags &= ~IEEE80211_STA_CSA_RECEIVED;
Johannes Berg5b36ebd2013-02-13 14:21:45 +01001823 ieee80211_wake_queues_by_reason(&sdata->local->hw,
1824 IEEE80211_QUEUE_STOP_REASON_CSA);
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02001825 mutex_unlock(&ifmgd->mtx);
Johannes Berg7da7cc12010-08-05 17:02:38 +02001826
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02001827 /*
1828 * must be outside lock due to cfg80211,
1829 * but that's not a problem.
1830 */
Antonio Quartulli6ae16772012-09-07 13:28:52 +02001831 cfg80211_send_deauth(sdata->dev, frame_buf, IEEE80211_DEAUTH_FRAME_LEN);
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02001832}
1833
Johannes Bergcc74c0c2012-08-01 16:49:34 +02001834static void ieee80211_beacon_connection_loss_work(struct work_struct *work)
Johannes Bergb291ba12009-07-10 15:29:03 +02001835{
1836 struct ieee80211_sub_if_data *sdata =
1837 container_of(work, struct ieee80211_sub_if_data,
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02001838 u.mgd.beacon_connection_loss_work);
Paul Stewarta85e1d52011-12-09 11:01:49 -08001839 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1840 struct sta_info *sta;
1841
1842 if (ifmgd->associated) {
Mohammed Shafi Shajakhan30fa9042011-12-27 18:54:07 +05301843 rcu_read_lock();
Paul Stewarta85e1d52011-12-09 11:01:49 -08001844 sta = sta_info_get(sdata, ifmgd->bssid);
1845 if (sta)
1846 sta->beacon_loss_count++;
Mohammed Shafi Shajakhan30fa9042011-12-27 18:54:07 +05301847 rcu_read_unlock();
Paul Stewarta85e1d52011-12-09 11:01:49 -08001848 }
Johannes Bergb291ba12009-07-10 15:29:03 +02001849
Johannes Berg682bd382013-01-29 13:13:50 +01001850 if (ifmgd->connection_loss) {
Johannes Berg882a7c62012-08-01 22:32:45 +02001851 sdata_info(sdata, "Connection to AP %pM lost\n",
1852 ifmgd->bssid);
Johannes Bergeef9e542013-01-29 13:09:34 +01001853 __ieee80211_disconnect(sdata);
Johannes Berg882a7c62012-08-01 22:32:45 +02001854 } else {
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02001855 ieee80211_mgd_probe_ap(sdata, true);
Johannes Berg882a7c62012-08-01 22:32:45 +02001856 }
1857}
1858
1859static void ieee80211_csa_connection_drop_work(struct work_struct *work)
1860{
1861 struct ieee80211_sub_if_data *sdata =
1862 container_of(work, struct ieee80211_sub_if_data,
1863 u.mgd.csa_connection_drop_work);
1864
Johannes Bergeef9e542013-01-29 13:09:34 +01001865 __ieee80211_disconnect(sdata);
Johannes Bergb291ba12009-07-10 15:29:03 +02001866}
1867
Kalle Valo04de8382009-03-22 21:57:35 +02001868void ieee80211_beacon_loss(struct ieee80211_vif *vif)
1869{
1870 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02001871 struct ieee80211_hw *hw = &sdata->local->hw;
Kalle Valo04de8382009-03-22 21:57:35 +02001872
Johannes Bergb5878a22010-04-07 16:48:40 +02001873 trace_api_beacon_loss(sdata);
1874
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02001875 WARN_ON(hw->flags & IEEE80211_HW_CONNECTION_MONITOR);
Johannes Berg682bd382013-01-29 13:13:50 +01001876 sdata->u.mgd.connection_loss = false;
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02001877 ieee80211_queue_work(hw, &sdata->u.mgd.beacon_connection_loss_work);
Kalle Valo04de8382009-03-22 21:57:35 +02001878}
1879EXPORT_SYMBOL(ieee80211_beacon_loss);
1880
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02001881void ieee80211_connection_loss(struct ieee80211_vif *vif)
1882{
1883 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
1884 struct ieee80211_hw *hw = &sdata->local->hw;
1885
Johannes Bergb5878a22010-04-07 16:48:40 +02001886 trace_api_connection_loss(sdata);
1887
Johannes Berg682bd382013-01-29 13:13:50 +01001888 sdata->u.mgd.connection_loss = true;
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02001889 ieee80211_queue_work(hw, &sdata->u.mgd.beacon_connection_loss_work);
1890}
1891EXPORT_SYMBOL(ieee80211_connection_loss);
1892
1893
Johannes Berg66e67e42012-01-20 13:55:27 +01001894static void ieee80211_destroy_auth_data(struct ieee80211_sub_if_data *sdata,
1895 bool assoc)
1896{
1897 struct ieee80211_mgd_auth_data *auth_data = sdata->u.mgd.auth_data;
1898
1899 lockdep_assert_held(&sdata->u.mgd.mtx);
1900
Johannes Berg66e67e42012-01-20 13:55:27 +01001901 if (!assoc) {
1902 sta_info_destroy_addr(sdata, auth_data->bss->bssid);
1903
1904 memset(sdata->u.mgd.bssid, 0, ETH_ALEN);
1905 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BSSID);
Johannes Berg028e8da02012-11-26 11:57:41 +01001906 sdata->u.mgd.flags = 0;
Johannes Berg55de9082012-07-26 17:24:39 +02001907 ieee80211_vif_release_channel(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01001908 }
1909
Johannes Berg5b112d32013-02-01 01:49:58 +01001910 cfg80211_put_bss(sdata->local->hw.wiphy, auth_data->bss);
Johannes Berg66e67e42012-01-20 13:55:27 +01001911 kfree(auth_data);
1912 sdata->u.mgd.auth_data = NULL;
1913}
1914
1915static void ieee80211_auth_challenge(struct ieee80211_sub_if_data *sdata,
1916 struct ieee80211_mgmt *mgmt, size_t len)
1917{
Johannes Berg1672c0e32013-01-29 15:02:27 +01001918 struct ieee80211_local *local = sdata->local;
Johannes Berg66e67e42012-01-20 13:55:27 +01001919 struct ieee80211_mgd_auth_data *auth_data = sdata->u.mgd.auth_data;
1920 u8 *pos;
1921 struct ieee802_11_elems elems;
Johannes Berg1672c0e32013-01-29 15:02:27 +01001922 u32 tx_flags = 0;
Johannes Berg66e67e42012-01-20 13:55:27 +01001923
1924 pos = mgmt->u.auth.variable;
1925 ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), &elems);
1926 if (!elems.challenge)
1927 return;
1928 auth_data->expected_transaction = 4;
Johannes Berga1845fc2012-06-27 13:18:36 +02001929 drv_mgd_prepare_tx(sdata->local, sdata);
Johannes Berg1672c0e32013-01-29 15:02:27 +01001930 if (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS)
1931 tx_flags = IEEE80211_TX_CTL_REQ_TX_STATUS |
1932 IEEE80211_TX_INTFL_MLME_CONN_TX;
Jouni Malinen700e8ea2012-09-30 19:29:37 +03001933 ieee80211_send_auth(sdata, 3, auth_data->algorithm, 0,
Johannes Berg66e67e42012-01-20 13:55:27 +01001934 elems.challenge - 2, elems.challenge_len + 2,
1935 auth_data->bss->bssid, auth_data->bss->bssid,
1936 auth_data->key, auth_data->key_len,
Johannes Berg1672c0e32013-01-29 15:02:27 +01001937 auth_data->key_idx, tx_flags);
Johannes Berg66e67e42012-01-20 13:55:27 +01001938}
1939
1940static enum rx_mgmt_action __must_check
1941ieee80211_rx_mgmt_auth(struct ieee80211_sub_if_data *sdata,
1942 struct ieee80211_mgmt *mgmt, size_t len)
1943{
1944 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1945 u8 bssid[ETH_ALEN];
1946 u16 auth_alg, auth_transaction, status_code;
1947 struct sta_info *sta;
1948
1949 lockdep_assert_held(&ifmgd->mtx);
1950
1951 if (len < 24 + 6)
1952 return RX_MGMT_NONE;
1953
1954 if (!ifmgd->auth_data || ifmgd->auth_data->done)
1955 return RX_MGMT_NONE;
1956
1957 memcpy(bssid, ifmgd->auth_data->bss->bssid, ETH_ALEN);
1958
Joe Perchesb203ca32012-05-08 18:56:52 +00001959 if (!ether_addr_equal(bssid, mgmt->bssid))
Johannes Berg66e67e42012-01-20 13:55:27 +01001960 return RX_MGMT_NONE;
1961
1962 auth_alg = le16_to_cpu(mgmt->u.auth.auth_alg);
1963 auth_transaction = le16_to_cpu(mgmt->u.auth.auth_transaction);
1964 status_code = le16_to_cpu(mgmt->u.auth.status_code);
1965
1966 if (auth_alg != ifmgd->auth_data->algorithm ||
Jouni Malinen0f4126e2012-09-30 19:29:38 +03001967 auth_transaction != ifmgd->auth_data->expected_transaction) {
1968 sdata_info(sdata, "%pM unexpected authentication state: alg %d (expected %d) transact %d (expected %d)\n",
1969 mgmt->sa, auth_alg, ifmgd->auth_data->algorithm,
1970 auth_transaction,
1971 ifmgd->auth_data->expected_transaction);
Johannes Berg66e67e42012-01-20 13:55:27 +01001972 return RX_MGMT_NONE;
Jouni Malinen0f4126e2012-09-30 19:29:38 +03001973 }
Johannes Berg66e67e42012-01-20 13:55:27 +01001974
1975 if (status_code != WLAN_STATUS_SUCCESS) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02001976 sdata_info(sdata, "%pM denied authentication (status %d)\n",
1977 mgmt->sa, status_code);
Eliad Pellerdac211e2012-05-13 18:07:04 +03001978 ieee80211_destroy_auth_data(sdata, false);
1979 return RX_MGMT_CFG80211_RX_AUTH;
Johannes Berg66e67e42012-01-20 13:55:27 +01001980 }
1981
1982 switch (ifmgd->auth_data->algorithm) {
1983 case WLAN_AUTH_OPEN:
1984 case WLAN_AUTH_LEAP:
1985 case WLAN_AUTH_FT:
Jouni Malinen6b8ece32012-09-30 19:29:40 +03001986 case WLAN_AUTH_SAE:
Johannes Berg66e67e42012-01-20 13:55:27 +01001987 break;
1988 case WLAN_AUTH_SHARED_KEY:
1989 if (ifmgd->auth_data->expected_transaction != 4) {
1990 ieee80211_auth_challenge(sdata, mgmt, len);
1991 /* need another frame */
1992 return RX_MGMT_NONE;
1993 }
1994 break;
1995 default:
1996 WARN_ONCE(1, "invalid auth alg %d",
1997 ifmgd->auth_data->algorithm);
1998 return RX_MGMT_NONE;
1999 }
2000
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002001 sdata_info(sdata, "authenticated\n");
Johannes Berg66e67e42012-01-20 13:55:27 +01002002 ifmgd->auth_data->done = true;
2003 ifmgd->auth_data->timeout = jiffies + IEEE80211_AUTH_WAIT_ASSOC;
Johannes Berg89afe612013-02-13 15:39:57 +01002004 ifmgd->auth_data->timeout_started = true;
Johannes Berg66e67e42012-01-20 13:55:27 +01002005 run_again(ifmgd, ifmgd->auth_data->timeout);
2006
Jouni Malinen6b8ece32012-09-30 19:29:40 +03002007 if (ifmgd->auth_data->algorithm == WLAN_AUTH_SAE &&
2008 ifmgd->auth_data->expected_transaction != 2) {
2009 /*
2010 * Report auth frame to user space for processing since another
2011 * round of Authentication frames is still needed.
2012 */
2013 return RX_MGMT_CFG80211_RX_AUTH;
2014 }
2015
Johannes Berg66e67e42012-01-20 13:55:27 +01002016 /* move station state to auth */
2017 mutex_lock(&sdata->local->sta_mtx);
2018 sta = sta_info_get(sdata, bssid);
2019 if (!sta) {
2020 WARN_ONCE(1, "%s: STA %pM not found", sdata->name, bssid);
2021 goto out_err;
2022 }
2023 if (sta_info_move_state(sta, IEEE80211_STA_AUTH)) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002024 sdata_info(sdata, "failed moving %pM to auth\n", bssid);
Johannes Berg66e67e42012-01-20 13:55:27 +01002025 goto out_err;
2026 }
2027 mutex_unlock(&sdata->local->sta_mtx);
2028
2029 return RX_MGMT_CFG80211_RX_AUTH;
2030 out_err:
2031 mutex_unlock(&sdata->local->sta_mtx);
2032 /* ignore frame -- wait for timeout */
2033 return RX_MGMT_NONE;
2034}
2035
2036
Johannes Berg77fdaa12009-07-07 03:45:17 +02002037static enum rx_mgmt_action __must_check
2038ieee80211_rx_mgmt_deauth(struct ieee80211_sub_if_data *sdata,
Johannes Berg77fdaa12009-07-07 03:45:17 +02002039 struct ieee80211_mgmt *mgmt, size_t len)
Jiri Bencf0706e82007-05-05 11:45:53 -07002040{
Johannes Berg46900292009-02-15 12:44:28 +01002041 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg77fdaa12009-07-07 03:45:17 +02002042 const u8 *bssid = NULL;
Jiri Bencf0706e82007-05-05 11:45:53 -07002043 u16 reason_code;
2044
Johannes Berg66e67e42012-01-20 13:55:27 +01002045 lockdep_assert_held(&ifmgd->mtx);
2046
Johannes Bergf4ea83d2008-06-30 15:10:46 +02002047 if (len < 24 + 2)
Johannes Berg77fdaa12009-07-07 03:45:17 +02002048 return RX_MGMT_NONE;
Jiri Bencf0706e82007-05-05 11:45:53 -07002049
Johannes Berg66e67e42012-01-20 13:55:27 +01002050 if (!ifmgd->associated ||
Joe Perchesb203ca32012-05-08 18:56:52 +00002051 !ether_addr_equal(mgmt->bssid, ifmgd->associated->bssid))
Johannes Berg66e67e42012-01-20 13:55:27 +01002052 return RX_MGMT_NONE;
Johannes Berg77fdaa12009-07-07 03:45:17 +02002053
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01002054 bssid = ifmgd->associated->bssid;
Jiri Bencf0706e82007-05-05 11:45:53 -07002055
2056 reason_code = le16_to_cpu(mgmt->u.deauth.reason_code);
2057
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002058 sdata_info(sdata, "deauthenticated from %pM (Reason: %u)\n",
2059 bssid, reason_code);
Jiri Bencf0706e82007-05-05 11:45:53 -07002060
Johannes Berg37ad3882012-02-24 13:50:54 +01002061 ieee80211_set_disassoc(sdata, 0, 0, false, NULL);
2062
Johannes Berg77fdaa12009-07-07 03:45:17 +02002063 return RX_MGMT_CFG80211_DEAUTH;
Jiri Bencf0706e82007-05-05 11:45:53 -07002064}
2065
2066
Johannes Berg77fdaa12009-07-07 03:45:17 +02002067static enum rx_mgmt_action __must_check
2068ieee80211_rx_mgmt_disassoc(struct ieee80211_sub_if_data *sdata,
2069 struct ieee80211_mgmt *mgmt, size_t len)
Jiri Bencf0706e82007-05-05 11:45:53 -07002070{
Johannes Berg46900292009-02-15 12:44:28 +01002071 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jiri Bencf0706e82007-05-05 11:45:53 -07002072 u16 reason_code;
2073
Johannes Berg66e67e42012-01-20 13:55:27 +01002074 lockdep_assert_held(&ifmgd->mtx);
2075
Johannes Bergf4ea83d2008-06-30 15:10:46 +02002076 if (len < 24 + 2)
Johannes Berg77fdaa12009-07-07 03:45:17 +02002077 return RX_MGMT_NONE;
Jiri Bencf0706e82007-05-05 11:45:53 -07002078
Johannes Berg66e67e42012-01-20 13:55:27 +01002079 if (!ifmgd->associated ||
Joe Perchesb203ca32012-05-08 18:56:52 +00002080 !ether_addr_equal(mgmt->bssid, ifmgd->associated->bssid))
Johannes Berg77fdaa12009-07-07 03:45:17 +02002081 return RX_MGMT_NONE;
Jiri Bencf0706e82007-05-05 11:45:53 -07002082
2083 reason_code = le16_to_cpu(mgmt->u.disassoc.reason_code);
2084
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002085 sdata_info(sdata, "disassociated from %pM (Reason: %u)\n",
2086 mgmt->sa, reason_code);
Jiri Bencf0706e82007-05-05 11:45:53 -07002087
Johannes Berg37ad3882012-02-24 13:50:54 +01002088 ieee80211_set_disassoc(sdata, 0, 0, false, NULL);
2089
Johannes Berg77fdaa12009-07-07 03:45:17 +02002090 return RX_MGMT_CFG80211_DISASSOC;
Jiri Bencf0706e82007-05-05 11:45:53 -07002091}
2092
Christian Lamparterc74d0842011-10-15 00:14:49 +02002093static void ieee80211_get_rates(struct ieee80211_supported_band *sband,
2094 u8 *supp_rates, unsigned int supp_rates_len,
2095 u32 *rates, u32 *basic_rates,
2096 bool *have_higher_than_11mbit,
2097 int *min_rate, int *min_rate_index)
2098{
2099 int i, j;
2100
2101 for (i = 0; i < supp_rates_len; i++) {
2102 int rate = (supp_rates[i] & 0x7f) * 5;
2103 bool is_basic = !!(supp_rates[i] & 0x80);
2104
2105 if (rate > 110)
2106 *have_higher_than_11mbit = true;
2107
2108 /*
2109 * BSS_MEMBERSHIP_SELECTOR_HT_PHY is defined in 802.11n-2009
2110 * 7.3.2.2 as a magic value instead of a rate. Hence, skip it.
2111 *
2112 * Note: Even through the membership selector and the basic
2113 * rate flag share the same bit, they are not exactly
2114 * the same.
2115 */
2116 if (!!(supp_rates[i] & 0x80) &&
2117 (supp_rates[i] & 0x7f) == BSS_MEMBERSHIP_SELECTOR_HT_PHY)
2118 continue;
2119
2120 for (j = 0; j < sband->n_bitrates; j++) {
2121 if (sband->bitrates[j].bitrate == rate) {
2122 *rates |= BIT(j);
2123 if (is_basic)
2124 *basic_rates |= BIT(j);
2125 if (rate < *min_rate) {
2126 *min_rate = rate;
2127 *min_rate_index = j;
2128 }
2129 break;
2130 }
2131 }
2132 }
2133}
Jiri Bencf0706e82007-05-05 11:45:53 -07002134
Johannes Berg66e67e42012-01-20 13:55:27 +01002135static void ieee80211_destroy_assoc_data(struct ieee80211_sub_if_data *sdata,
2136 bool assoc)
2137{
2138 struct ieee80211_mgd_assoc_data *assoc_data = sdata->u.mgd.assoc_data;
2139
2140 lockdep_assert_held(&sdata->u.mgd.mtx);
2141
Johannes Berg66e67e42012-01-20 13:55:27 +01002142 if (!assoc) {
2143 sta_info_destroy_addr(sdata, assoc_data->bss->bssid);
2144
2145 memset(sdata->u.mgd.bssid, 0, ETH_ALEN);
2146 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BSSID);
Johannes Berg028e8da02012-11-26 11:57:41 +01002147 sdata->u.mgd.flags = 0;
Johannes Berg55de9082012-07-26 17:24:39 +02002148 ieee80211_vif_release_channel(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01002149 }
2150
2151 kfree(assoc_data);
2152 sdata->u.mgd.assoc_data = NULL;
2153}
2154
2155static bool ieee80211_assoc_success(struct ieee80211_sub_if_data *sdata,
2156 struct cfg80211_bss *cbss,
Johannes Bergaf6b6372009-12-23 13:15:35 +01002157 struct ieee80211_mgmt *mgmt, size_t len)
Jiri Bencf0706e82007-05-05 11:45:53 -07002158{
Johannes Berg46900292009-02-15 12:44:28 +01002159 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg471b3ef2007-12-28 14:32:58 +01002160 struct ieee80211_local *local = sdata->local;
Johannes Berg8318d782008-01-24 19:38:38 +01002161 struct ieee80211_supported_band *sband;
Jiri Bencf0706e82007-05-05 11:45:53 -07002162 struct sta_info *sta;
Johannes Bergaf6b6372009-12-23 13:15:35 +01002163 u8 *pos;
Johannes Bergaf6b6372009-12-23 13:15:35 +01002164 u16 capab_info, aid;
Jiri Bencf0706e82007-05-05 11:45:53 -07002165 struct ieee802_11_elems elems;
Johannes Bergbda39332008-10-11 01:51:51 +02002166 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
Johannes Bergae5eb022008-10-14 16:58:37 +02002167 u32 changed = 0;
Christian Lamparterc74d0842011-10-15 00:14:49 +02002168 int err;
Jiri Bencf0706e82007-05-05 11:45:53 -07002169
Johannes Bergaf6b6372009-12-23 13:15:35 +01002170 /* AssocResp and ReassocResp have identical structure */
Jiri Bencf0706e82007-05-05 11:45:53 -07002171
Jiri Bencf0706e82007-05-05 11:45:53 -07002172 aid = le16_to_cpu(mgmt->u.assoc_resp.aid);
Johannes Bergaf6b6372009-12-23 13:15:35 +01002173 capab_info = le16_to_cpu(mgmt->u.assoc_resp.capab_info);
Jiri Bencf0706e82007-05-05 11:45:53 -07002174
Johannes Berg1dd84aa2007-10-10 12:03:41 +02002175 if ((aid & (BIT(15) | BIT(14))) != (BIT(15) | BIT(14)))
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002176 sdata_info(sdata, "invalid AID value 0x%x; bits 15:14 not set\n",
2177 aid);
Johannes Berg1dd84aa2007-10-10 12:03:41 +02002178 aid &= ~(BIT(15) | BIT(14));
2179
Johannes Berg05cb9102011-10-28 11:59:47 +02002180 ifmgd->broken_ap = false;
2181
2182 if (aid == 0 || aid > IEEE80211_MAX_AID) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002183 sdata_info(sdata, "invalid AID value %d (out of range), turn off PS\n",
2184 aid);
Johannes Berg05cb9102011-10-28 11:59:47 +02002185 aid = 0;
2186 ifmgd->broken_ap = true;
2187 }
2188
Johannes Bergaf6b6372009-12-23 13:15:35 +01002189 pos = mgmt->u.assoc_resp.variable;
2190 ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), &elems);
2191
Jiri Bencf0706e82007-05-05 11:45:53 -07002192 if (!elems.supp_rates) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002193 sdata_info(sdata, "no SuppRates element in AssocResp\n");
Johannes Bergaf6b6372009-12-23 13:15:35 +01002194 return false;
Jiri Bencf0706e82007-05-05 11:45:53 -07002195 }
2196
Johannes Berg46900292009-02-15 12:44:28 +01002197 ifmgd->aid = aid;
Jiri Bencf0706e82007-05-05 11:45:53 -07002198
Guy Eilam2a33bee2011-08-17 15:18:15 +03002199 mutex_lock(&sdata->local->sta_mtx);
2200 /*
2201 * station info was already allocated and inserted before
2202 * the association and should be available to us
2203 */
Johannes Berg7852e362012-01-20 13:55:24 +01002204 sta = sta_info_get(sdata, cbss->bssid);
Guy Eilam2a33bee2011-08-17 15:18:15 +03002205 if (WARN_ON(!sta)) {
2206 mutex_unlock(&sdata->local->sta_mtx);
Johannes Bergaf6b6372009-12-23 13:15:35 +01002207 return false;
Jiri Bencf0706e82007-05-05 11:45:53 -07002208 }
2209
Johannes Berg55de9082012-07-26 17:24:39 +02002210 sband = local->hw.wiphy->bands[ieee80211_get_sdata_band(sdata)];
Johannes Berg8318d782008-01-24 19:38:38 +01002211
Johannes Berga8243b72012-11-22 14:32:09 +01002212 if (elems.ht_cap_elem && !(ifmgd->flags & IEEE80211_STA_DISABLE_HT))
Ben Greearef96a8422011-11-18 11:32:00 -08002213 ieee80211_ht_cap_ie_to_sta_ht_cap(sdata, sband,
Johannes Berge1a0c6b2013-02-07 11:47:44 +01002214 elems.ht_cap_elem, sta);
Johannes Berg64f68e52012-03-28 10:58:37 +02002215
Mahesh Palivela818255e2012-10-10 11:33:04 +00002216 if (elems.vht_cap_elem && !(ifmgd->flags & IEEE80211_STA_DISABLE_VHT))
2217 ieee80211_vht_cap_ie_to_sta_vht_cap(sdata, sband,
Johannes Berg4a342152013-02-07 11:58:58 +01002218 elems.vht_cap_elem, sta);
Mahesh Palivela818255e2012-10-10 11:33:04 +00002219
Johannes Berg4b7679a2008-09-18 18:14:18 +02002220 rate_control_rate_init(sta);
Jiri Bencf0706e82007-05-05 11:45:53 -07002221
Johannes Berg46900292009-02-15 12:44:28 +01002222 if (ifmgd->flags & IEEE80211_STA_MFP_ENABLED)
Johannes Bergc2c98fd2011-09-29 16:04:36 +02002223 set_sta_flag(sta, WLAN_STA_MFP);
Jouni Malinen5394af42009-01-08 13:31:59 +02002224
Johannes Bergddf4ac52008-10-22 11:41:38 +02002225 if (elems.wmm_param)
Johannes Bergc2c98fd2011-09-29 16:04:36 +02002226 set_sta_flag(sta, WLAN_STA_WME);
Johannes Bergddf4ac52008-10-22 11:41:38 +02002227
Johannes Berg3e4d40f2013-02-07 17:19:08 +01002228 err = sta_info_move_state(sta, IEEE80211_STA_ASSOC);
Johannes Bergc8987872012-01-20 13:55:17 +01002229 if (!err && !(ifmgd->flags & IEEE80211_STA_CONTROL_PORT))
2230 err = sta_info_move_state(sta, IEEE80211_STA_AUTHORIZED);
2231 if (err) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002232 sdata_info(sdata,
2233 "failed to move station %pM to desired state\n",
2234 sta->sta.addr);
Johannes Bergc8987872012-01-20 13:55:17 +01002235 WARN_ON(__sta_info_destroy(sta));
2236 mutex_unlock(&sdata->local->sta_mtx);
2237 return false;
2238 }
2239
Johannes Berg7852e362012-01-20 13:55:24 +01002240 mutex_unlock(&sdata->local->sta_mtx);
Johannes Bergddf4ac52008-10-22 11:41:38 +02002241
Juuso Oikarinenf2176d72010-09-28 14:39:32 +03002242 /*
2243 * Always handle WMM once after association regardless
2244 * of the first value the AP uses. Setting -1 here has
2245 * that effect because the AP values is an unsigned
2246 * 4-bit value.
2247 */
2248 ifmgd->wmm_last_param_set = -1;
2249
Johannes Bergddf4ac52008-10-22 11:41:38 +02002250 if (elems.wmm_param)
Johannes Berg4ced3f72010-07-19 16:39:04 +02002251 ieee80211_sta_wmm_params(local, sdata, elems.wmm_param,
Jiri Bencf0706e82007-05-05 11:45:53 -07002252 elems.wmm_param_len);
Johannes Bergaa837e12009-05-07 16:16:24 +02002253 else
Johannes Berg3abead52012-03-02 15:56:59 +01002254 ieee80211_set_wmm_default(sdata, false);
2255 changed |= BSS_CHANGED_QOS;
Jiri Bencf0706e82007-05-05 11:45:53 -07002256
Johannes Berg074d46d2012-03-15 19:45:16 +01002257 if (elems.ht_operation && elems.wmm_param &&
Johannes Berga8243b72012-11-22 14:32:09 +01002258 !(ifmgd->flags & IEEE80211_STA_DISABLE_HT))
Johannes Berg24398e32012-03-28 10:58:36 +02002259 changed |= ieee80211_config_ht_tx(sdata, elems.ht_operation,
2260 cbss->bssid, false);
Johannes Bergae5eb022008-10-14 16:58:37 +02002261
Tomas Winkler21c0cbe2008-03-28 16:33:34 -07002262 /* set AID and assoc capability,
2263 * ieee80211_set_associated() will tell the driver */
Johannes Berg8318d782008-01-24 19:38:38 +01002264 bss_conf->aid = aid;
Tomas Winkler21c0cbe2008-03-28 16:33:34 -07002265 bss_conf->assoc_capability = capab_info;
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01002266 ieee80211_set_associated(sdata, cbss, changed);
Jiri Bencf0706e82007-05-05 11:45:53 -07002267
Kalle Valo15b7b062009-03-22 21:57:14 +02002268 /*
Felix Fietkaud5242152010-01-08 18:06:26 +01002269 * If we're using 4-addr mode, let the AP know that we're
2270 * doing so, so that it can create the STA VLAN on its side
2271 */
2272 if (ifmgd->use_4addr)
2273 ieee80211_send_4addr_nullfunc(local, sdata);
2274
2275 /*
Johannes Bergb291ba12009-07-10 15:29:03 +02002276 * Start timer to probe the connection to the AP now.
2277 * Also start the timer that will detect beacon loss.
Kalle Valo15b7b062009-03-22 21:57:14 +02002278 */
Johannes Bergb291ba12009-07-10 15:29:03 +02002279 ieee80211_sta_rx_notify(sdata, (struct ieee80211_hdr *)mgmt);
Luis R. Rodriguezd3a910a2010-09-16 15:12:32 -04002280 ieee80211_sta_reset_beacon_monitor(sdata);
Kalle Valo15b7b062009-03-22 21:57:14 +02002281
Johannes Bergaf6b6372009-12-23 13:15:35 +01002282 return true;
Jiri Bencf0706e82007-05-05 11:45:53 -07002283}
2284
Johannes Berg66e67e42012-01-20 13:55:27 +01002285static enum rx_mgmt_action __must_check
2286ieee80211_rx_mgmt_assoc_resp(struct ieee80211_sub_if_data *sdata,
2287 struct ieee80211_mgmt *mgmt, size_t len,
2288 struct cfg80211_bss **bss)
2289{
2290 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2291 struct ieee80211_mgd_assoc_data *assoc_data = ifmgd->assoc_data;
2292 u16 capab_info, status_code, aid;
2293 struct ieee802_11_elems elems;
2294 u8 *pos;
2295 bool reassoc;
Jiri Bencf0706e82007-05-05 11:45:53 -07002296
Johannes Berg66e67e42012-01-20 13:55:27 +01002297 lockdep_assert_held(&ifmgd->mtx);
2298
2299 if (!assoc_data)
2300 return RX_MGMT_NONE;
Joe Perchesb203ca32012-05-08 18:56:52 +00002301 if (!ether_addr_equal(assoc_data->bss->bssid, mgmt->bssid))
Johannes Berg66e67e42012-01-20 13:55:27 +01002302 return RX_MGMT_NONE;
2303
2304 /*
2305 * AssocResp and ReassocResp have identical structure, so process both
2306 * of them in this function.
2307 */
2308
2309 if (len < 24 + 6)
2310 return RX_MGMT_NONE;
2311
2312 reassoc = ieee80211_is_reassoc_req(mgmt->frame_control);
2313 capab_info = le16_to_cpu(mgmt->u.assoc_resp.capab_info);
2314 status_code = le16_to_cpu(mgmt->u.assoc_resp.status_code);
2315 aid = le16_to_cpu(mgmt->u.assoc_resp.aid);
2316
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002317 sdata_info(sdata,
2318 "RX %sssocResp from %pM (capab=0x%x status=%d aid=%d)\n",
2319 reassoc ? "Rea" : "A", mgmt->sa,
2320 capab_info, status_code, (u16)(aid & ~(BIT(15) | BIT(14))));
Johannes Berg66e67e42012-01-20 13:55:27 +01002321
2322 pos = mgmt->u.assoc_resp.variable;
2323 ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), &elems);
2324
2325 if (status_code == WLAN_STATUS_ASSOC_REJECTED_TEMPORARILY &&
2326 elems.timeout_int && elems.timeout_int_len == 5 &&
2327 elems.timeout_int[0] == WLAN_TIMEOUT_ASSOC_COMEBACK) {
2328 u32 tu, ms;
2329 tu = get_unaligned_le32(elems.timeout_int + 1);
2330 ms = tu * 1024 / 1000;
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002331 sdata_info(sdata,
2332 "%pM rejected association temporarily; comeback duration %u TU (%u ms)\n",
2333 mgmt->sa, tu, ms);
Johannes Berg66e67e42012-01-20 13:55:27 +01002334 assoc_data->timeout = jiffies + msecs_to_jiffies(ms);
Johannes Berg89afe612013-02-13 15:39:57 +01002335 assoc_data->timeout_started = true;
Johannes Berg66e67e42012-01-20 13:55:27 +01002336 if (ms > IEEE80211_ASSOC_TIMEOUT)
2337 run_again(ifmgd, assoc_data->timeout);
2338 return RX_MGMT_NONE;
2339 }
2340
2341 *bss = assoc_data->bss;
2342
2343 if (status_code != WLAN_STATUS_SUCCESS) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002344 sdata_info(sdata, "%pM denied association (code=%d)\n",
2345 mgmt->sa, status_code);
Johannes Berg66e67e42012-01-20 13:55:27 +01002346 ieee80211_destroy_assoc_data(sdata, false);
2347 } else {
Johannes Berg66e67e42012-01-20 13:55:27 +01002348 if (!ieee80211_assoc_success(sdata, *bss, mgmt, len)) {
2349 /* oops -- internal error -- send timeout for now */
Eliad Peller10a91092012-07-02 14:42:03 +03002350 ieee80211_destroy_assoc_data(sdata, false);
Johannes Berg5b112d32013-02-01 01:49:58 +01002351 cfg80211_put_bss(sdata->local->hw.wiphy, *bss);
Johannes Berg66e67e42012-01-20 13:55:27 +01002352 return RX_MGMT_CFG80211_ASSOC_TIMEOUT;
2353 }
John W. Linville635d9992012-07-09 16:34:34 -04002354 sdata_info(sdata, "associated\n");
Johannes Berg79ebfb82012-02-20 14:19:58 +01002355
2356 /*
2357 * destroy assoc_data afterwards, as otherwise an idle
2358 * recalc after assoc_data is NULL but before associated
2359 * is set can cause the interface to go idle
2360 */
2361 ieee80211_destroy_assoc_data(sdata, true);
Johannes Berg66e67e42012-01-20 13:55:27 +01002362 }
2363
2364 return RX_MGMT_CFG80211_RX_ASSOC;
2365}
Johannes Berg8e3c1b72012-12-10 13:44:19 +01002366
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002367static void ieee80211_rx_bss_info(struct ieee80211_sub_if_data *sdata,
Johannes Berg8e3c1b72012-12-10 13:44:19 +01002368 struct ieee80211_mgmt *mgmt, size_t len,
Jiri Bencf0706e82007-05-05 11:45:53 -07002369 struct ieee80211_rx_status *rx_status,
Emmanuel Grumbachd45c4172012-12-10 16:19:13 +02002370 struct ieee802_11_elems *elems)
Jiri Bencf0706e82007-05-05 11:45:53 -07002371{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002372 struct ieee80211_local *local = sdata->local;
Johannes Berg98c8fcc2008-09-08 17:44:26 +02002373 int freq;
Johannes Bergc2b13452008-09-11 00:01:55 +02002374 struct ieee80211_bss *bss;
Johannes Bergfab7d4a2008-03-16 18:42:44 +01002375 struct ieee80211_channel *channel;
Johannes Berg56007a02010-01-26 14:19:52 +01002376 bool need_ps = false;
2377
Johannes Berg826262c2012-12-10 16:38:14 +02002378 if ((sdata->u.mgd.associated &&
2379 ether_addr_equal(mgmt->bssid, sdata->u.mgd.associated->bssid)) ||
2380 (sdata->u.mgd.assoc_data &&
2381 ether_addr_equal(mgmt->bssid,
2382 sdata->u.mgd.assoc_data->bss->bssid))) {
Johannes Berg56007a02010-01-26 14:19:52 +01002383 /* not previously set so we may need to recalc */
Johannes Berg826262c2012-12-10 16:38:14 +02002384 need_ps = sdata->u.mgd.associated && !sdata->u.mgd.dtim_period;
2385
2386 if (elems->tim && !elems->parse_error) {
2387 struct ieee80211_tim_ie *tim_ie = elems->tim;
2388 sdata->u.mgd.dtim_period = tim_ie->dtim_period;
2389 }
Johannes Berg56007a02010-01-26 14:19:52 +01002390 }
Jiri Bencf0706e82007-05-05 11:45:53 -07002391
Johannes Berg5bda6172008-09-08 11:05:10 +02002392 if (elems->ds_params && elems->ds_params_len == 1)
Bruno Randolf59eb21a2011-01-17 13:37:28 +09002393 freq = ieee80211_channel_to_frequency(elems->ds_params[0],
2394 rx_status->band);
Johannes Berg5bda6172008-09-08 11:05:10 +02002395 else
2396 freq = rx_status->freq;
2397
2398 channel = ieee80211_get_channel(local->hw.wiphy, freq);
2399
2400 if (!channel || channel->flags & IEEE80211_CHAN_DISABLED)
2401 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07002402
Johannes Berg98c8fcc2008-09-08 17:44:26 +02002403 bss = ieee80211_bss_info_update(local, rx_status, mgmt, len, elems,
Emmanuel Grumbachd45c4172012-12-10 16:19:13 +02002404 channel);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002405 if (bss)
2406 ieee80211_rx_bss_put(local, bss);
2407
2408 if (!sdata->u.mgd.associated)
Johannes Berg98c8fcc2008-09-08 17:44:26 +02002409 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07002410
Johannes Berg56007a02010-01-26 14:19:52 +01002411 if (need_ps) {
2412 mutex_lock(&local->iflist_mtx);
2413 ieee80211_recalc_ps(local, -1);
2414 mutex_unlock(&local->iflist_mtx);
2415 }
2416
Johannes Berg5bc14202012-08-01 16:13:02 +02002417 if (elems->ch_switch_ie &&
2418 memcmp(mgmt->bssid, sdata->u.mgd.associated->bssid, ETH_ALEN) == 0)
2419 ieee80211_sta_process_chanswitch(sdata, elems->ch_switch_ie,
Johannes Berg5ce6e432010-05-11 16:20:57 +02002420 bss, rx_status->mactime);
Jiri Bencf0706e82007-05-05 11:45:53 -07002421}
2422
2423
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002424static void ieee80211_rx_mgmt_probe_resp(struct ieee80211_sub_if_data *sdata,
Johannes Bergaf6b6372009-12-23 13:15:35 +01002425 struct sk_buff *skb)
Jiri Bencf0706e82007-05-05 11:45:53 -07002426{
Johannes Bergaf6b6372009-12-23 13:15:35 +01002427 struct ieee80211_mgmt *mgmt = (void *)skb->data;
Kalle Valo15b7b062009-03-22 21:57:14 +02002428 struct ieee80211_if_managed *ifmgd;
Johannes Bergaf6b6372009-12-23 13:15:35 +01002429 struct ieee80211_rx_status *rx_status = (void *) skb->cb;
2430 size_t baselen, len = skb->len;
Ester Kummerae6a44e2008-06-27 18:54:48 +03002431 struct ieee802_11_elems elems;
2432
Kalle Valo15b7b062009-03-22 21:57:14 +02002433 ifmgd = &sdata->u.mgd;
2434
Johannes Berg77fdaa12009-07-07 03:45:17 +02002435 ASSERT_MGD_MTX(ifmgd);
2436
Joe Perchesb203ca32012-05-08 18:56:52 +00002437 if (!ether_addr_equal(mgmt->da, sdata->vif.addr))
Tomas Winkler8e7cdbb2008-08-03 14:32:01 +03002438 return; /* ignore ProbeResp to foreign address */
2439
Ester Kummerae6a44e2008-06-27 18:54:48 +03002440 baselen = (u8 *) mgmt->u.probe_resp.variable - (u8 *) mgmt;
2441 if (baselen > len)
2442 return;
2443
2444 ieee802_11_parse_elems(mgmt->u.probe_resp.variable, len - baselen,
2445 &elems);
2446
Emmanuel Grumbachd45c4172012-12-10 16:19:13 +02002447 ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems);
Ron Rindjunsky9859b812008-08-09 03:02:19 +03002448
Johannes Berg77fdaa12009-07-07 03:45:17 +02002449 if (ifmgd->associated &&
Joe Perchesb203ca32012-05-08 18:56:52 +00002450 ether_addr_equal(mgmt->bssid, ifmgd->associated->bssid))
Felix Fietkau4e5ff372010-11-23 03:10:31 +01002451 ieee80211_reset_ap_probe(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01002452
2453 if (ifmgd->auth_data && !ifmgd->auth_data->bss->proberesp_ies &&
Joe Perchesb203ca32012-05-08 18:56:52 +00002454 ether_addr_equal(mgmt->bssid, ifmgd->auth_data->bss->bssid)) {
Johannes Berg66e67e42012-01-20 13:55:27 +01002455 /* got probe response, continue with auth */
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002456 sdata_info(sdata, "direct probe responded\n");
Johannes Berg66e67e42012-01-20 13:55:27 +01002457 ifmgd->auth_data->tries = 0;
2458 ifmgd->auth_data->timeout = jiffies;
Johannes Berg89afe612013-02-13 15:39:57 +01002459 ifmgd->auth_data->timeout_started = true;
Johannes Berg66e67e42012-01-20 13:55:27 +01002460 run_again(ifmgd, ifmgd->auth_data->timeout);
2461 }
Jiri Bencf0706e82007-05-05 11:45:53 -07002462}
2463
Johannes Bergd91f36d2009-04-16 13:17:26 +02002464/*
2465 * This is the canonical list of information elements we care about,
2466 * the filter code also gives us all changes to the Microsoft OUI
2467 * (00:50:F2) vendor IE which is used for WMM which we need to track.
2468 *
2469 * We implement beacon filtering in software since that means we can
2470 * avoid processing the frame here and in cfg80211, and userspace
2471 * will not be able to tell whether the hardware supports it or not.
2472 *
2473 * XXX: This list needs to be dynamic -- userspace needs to be able to
2474 * add items it requires. It also needs to be able to tell us to
2475 * look out for other vendor IEs.
2476 */
2477static const u64 care_about_ies =
Johannes Berg1d4df3a2009-04-22 11:25:43 +02002478 (1ULL << WLAN_EID_COUNTRY) |
2479 (1ULL << WLAN_EID_ERP_INFO) |
2480 (1ULL << WLAN_EID_CHANNEL_SWITCH) |
2481 (1ULL << WLAN_EID_PWR_CONSTRAINT) |
2482 (1ULL << WLAN_EID_HT_CAPABILITY) |
Johannes Berg074d46d2012-03-15 19:45:16 +01002483 (1ULL << WLAN_EID_HT_OPERATION);
Johannes Bergd91f36d2009-04-16 13:17:26 +02002484
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002485static void ieee80211_rx_mgmt_beacon(struct ieee80211_sub_if_data *sdata,
Jiri Bencf0706e82007-05-05 11:45:53 -07002486 struct ieee80211_mgmt *mgmt,
2487 size_t len,
2488 struct ieee80211_rx_status *rx_status)
2489{
Johannes Bergd91f36d2009-04-16 13:17:26 +02002490 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jouni Malinen17e4ec12010-03-29 23:28:30 -07002491 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
Jiri Bencf0706e82007-05-05 11:45:53 -07002492 size_t baselen;
2493 struct ieee802_11_elems elems;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002494 struct ieee80211_local *local = sdata->local;
Johannes Berg55de9082012-07-26 17:24:39 +02002495 struct ieee80211_chanctx_conf *chanctx_conf;
2496 struct ieee80211_channel *chan;
Johannes Berg471b3ef2007-12-28 14:32:58 +01002497 u32 changed = 0;
Rami Rosenf87ad632012-10-25 10:16:23 +02002498 bool erp_valid;
Johannes Berg7a5158e2008-10-08 10:59:33 +02002499 u8 erp_value = 0;
Johannes Bergd91f36d2009-04-16 13:17:26 +02002500 u32 ncrc;
Johannes Berg77fdaa12009-07-07 03:45:17 +02002501 u8 *bssid;
2502
Johannes Berg66e67e42012-01-20 13:55:27 +01002503 lockdep_assert_held(&ifmgd->mtx);
Jiri Bencf0706e82007-05-05 11:45:53 -07002504
Ester Kummerae6a44e2008-06-27 18:54:48 +03002505 /* Process beacon from the current BSS */
2506 baselen = (u8 *) mgmt->u.beacon.variable - (u8 *) mgmt;
2507 if (baselen > len)
2508 return;
2509
Johannes Berg55de9082012-07-26 17:24:39 +02002510 rcu_read_lock();
2511 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
2512 if (!chanctx_conf) {
2513 rcu_read_unlock();
Jiri Bencf0706e82007-05-05 11:45:53 -07002514 return;
Johannes Berg55de9082012-07-26 17:24:39 +02002515 }
2516
Johannes Berg4bf88532012-11-09 11:39:59 +01002517 if (rx_status->freq != chanctx_conf->def.chan->center_freq) {
Johannes Berg55de9082012-07-26 17:24:39 +02002518 rcu_read_unlock();
2519 return;
2520 }
Johannes Berg4bf88532012-11-09 11:39:59 +01002521 chan = chanctx_conf->def.chan;
Johannes Berg55de9082012-07-26 17:24:39 +02002522 rcu_read_unlock();
Jiri Bencf0706e82007-05-05 11:45:53 -07002523
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02002524 if (ifmgd->assoc_data && ifmgd->assoc_data->need_beacon &&
Joe Perchesb203ca32012-05-08 18:56:52 +00002525 ether_addr_equal(mgmt->bssid, ifmgd->assoc_data->bss->bssid)) {
Johannes Berg66e67e42012-01-20 13:55:27 +01002526 ieee802_11_parse_elems(mgmt->u.beacon.variable,
2527 len - baselen, &elems);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002528
Emmanuel Grumbachd45c4172012-12-10 16:19:13 +02002529 ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems);
Johannes Berg66e67e42012-01-20 13:55:27 +01002530 ifmgd->assoc_data->have_beacon = true;
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02002531 ifmgd->assoc_data->need_beacon = false;
Johannes Bergef429da2013-02-05 17:48:40 +01002532 if (local->hw.flags & IEEE80211_HW_TIMING_BEACON_ONLY) {
2533 sdata->vif.bss_conf.sync_tsf =
2534 le64_to_cpu(mgmt->u.beacon.timestamp);
2535 sdata->vif.bss_conf.sync_device_ts =
2536 rx_status->device_timestamp;
2537 if (elems.tim)
2538 sdata->vif.bss_conf.sync_dtim_count =
2539 elems.tim->dtim_count;
2540 else
2541 sdata->vif.bss_conf.sync_dtim_count = 0;
2542 }
Johannes Berg66e67e42012-01-20 13:55:27 +01002543 /* continue assoc process */
2544 ifmgd->assoc_data->timeout = jiffies;
Johannes Berg89afe612013-02-13 15:39:57 +01002545 ifmgd->assoc_data->timeout_started = true;
Johannes Berg66e67e42012-01-20 13:55:27 +01002546 run_again(ifmgd, ifmgd->assoc_data->timeout);
2547 return;
2548 }
2549
2550 if (!ifmgd->associated ||
Joe Perchesb203ca32012-05-08 18:56:52 +00002551 !ether_addr_equal(mgmt->bssid, ifmgd->associated->bssid))
Johannes Berg66e67e42012-01-20 13:55:27 +01002552 return;
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01002553 bssid = ifmgd->associated->bssid;
Johannes Berg77fdaa12009-07-07 03:45:17 +02002554
Jouni Malinen17e4ec12010-03-29 23:28:30 -07002555 /* Track average RSSI from the Beacon frames of the current AP */
2556 ifmgd->last_beacon_signal = rx_status->signal;
2557 if (ifmgd->flags & IEEE80211_STA_RESET_SIGNAL_AVE) {
2558 ifmgd->flags &= ~IEEE80211_STA_RESET_SIGNAL_AVE;
Jouni Malinen3ba06c62010-08-27 22:21:13 +03002559 ifmgd->ave_beacon_signal = rx_status->signal * 16;
Jouni Malinen17e4ec12010-03-29 23:28:30 -07002560 ifmgd->last_cqm_event_signal = 0;
Jouni Malinen391a2002010-08-27 22:22:00 +03002561 ifmgd->count_beacon_signal = 1;
Meenakshi Venkataraman615f7b92011-07-08 08:46:22 -07002562 ifmgd->last_ave_beacon_signal = 0;
Jouni Malinen17e4ec12010-03-29 23:28:30 -07002563 } else {
2564 ifmgd->ave_beacon_signal =
2565 (IEEE80211_SIGNAL_AVE_WEIGHT * rx_status->signal * 16 +
2566 (16 - IEEE80211_SIGNAL_AVE_WEIGHT) *
2567 ifmgd->ave_beacon_signal) / 16;
Jouni Malinen391a2002010-08-27 22:22:00 +03002568 ifmgd->count_beacon_signal++;
Jouni Malinen17e4ec12010-03-29 23:28:30 -07002569 }
Meenakshi Venkataraman615f7b92011-07-08 08:46:22 -07002570
2571 if (ifmgd->rssi_min_thold != ifmgd->rssi_max_thold &&
2572 ifmgd->count_beacon_signal >= IEEE80211_SIGNAL_AVE_MIN_COUNT) {
2573 int sig = ifmgd->ave_beacon_signal;
2574 int last_sig = ifmgd->last_ave_beacon_signal;
2575
2576 /*
2577 * if signal crosses either of the boundaries, invoke callback
2578 * with appropriate parameters
2579 */
2580 if (sig > ifmgd->rssi_max_thold &&
2581 (last_sig <= ifmgd->rssi_min_thold || last_sig == 0)) {
2582 ifmgd->last_ave_beacon_signal = sig;
Emmanuel Grumbach887da912013-01-20 17:32:41 +02002583 drv_rssi_callback(local, sdata, RSSI_EVENT_HIGH);
Meenakshi Venkataraman615f7b92011-07-08 08:46:22 -07002584 } else if (sig < ifmgd->rssi_min_thold &&
2585 (last_sig >= ifmgd->rssi_max_thold ||
2586 last_sig == 0)) {
2587 ifmgd->last_ave_beacon_signal = sig;
Emmanuel Grumbach887da912013-01-20 17:32:41 +02002588 drv_rssi_callback(local, sdata, RSSI_EVENT_LOW);
Meenakshi Venkataraman615f7b92011-07-08 08:46:22 -07002589 }
2590 }
2591
Jouni Malinen17e4ec12010-03-29 23:28:30 -07002592 if (bss_conf->cqm_rssi_thold &&
Jouni Malinen391a2002010-08-27 22:22:00 +03002593 ifmgd->count_beacon_signal >= IEEE80211_SIGNAL_AVE_MIN_COUNT &&
Johannes Bergea086352012-01-19 09:29:58 +01002594 !(sdata->vif.driver_flags & IEEE80211_VIF_SUPPORTS_CQM_RSSI)) {
Jouni Malinen17e4ec12010-03-29 23:28:30 -07002595 int sig = ifmgd->ave_beacon_signal / 16;
2596 int last_event = ifmgd->last_cqm_event_signal;
2597 int thold = bss_conf->cqm_rssi_thold;
2598 int hyst = bss_conf->cqm_rssi_hyst;
2599 if (sig < thold &&
2600 (last_event == 0 || sig < last_event - hyst)) {
2601 ifmgd->last_cqm_event_signal = sig;
2602 ieee80211_cqm_rssi_notify(
2603 &sdata->vif,
2604 NL80211_CQM_RSSI_THRESHOLD_EVENT_LOW,
2605 GFP_KERNEL);
2606 } else if (sig > thold &&
2607 (last_event == 0 || sig > last_event + hyst)) {
2608 ifmgd->last_cqm_event_signal = sig;
2609 ieee80211_cqm_rssi_notify(
2610 &sdata->vif,
2611 NL80211_CQM_RSSI_THRESHOLD_EVENT_HIGH,
2612 GFP_KERNEL);
2613 }
2614 }
2615
Johannes Bergb291ba12009-07-10 15:29:03 +02002616 if (ifmgd->flags & IEEE80211_STA_BEACON_POLL) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002617 mlme_dbg_ratelimited(sdata,
Johannes Berg112c31f2013-02-08 22:59:00 +01002618 "cancelling AP probe due to a received beacon\n");
Stanislaw Gruszka925e64c2012-05-16 15:27:20 +02002619 mutex_lock(&local->mtx);
Johannes Bergb291ba12009-07-10 15:29:03 +02002620 ifmgd->flags &= ~IEEE80211_STA_BEACON_POLL;
Stanislaw Gruszka925e64c2012-05-16 15:27:20 +02002621 ieee80211_run_deferred_scan(local);
2622 mutex_unlock(&local->mtx);
2623
Johannes Berg4e751842009-06-10 15:16:52 +02002624 mutex_lock(&local->iflist_mtx);
2625 ieee80211_recalc_ps(local, -1);
2626 mutex_unlock(&local->iflist_mtx);
Jouni Malinen92778182009-05-14 21:15:36 +03002627 }
2628
Johannes Bergb291ba12009-07-10 15:29:03 +02002629 /*
2630 * Push the beacon loss detection into the future since
2631 * we are processing a beacon from the AP just now.
2632 */
Luis R. Rodriguezd3a910a2010-09-16 15:12:32 -04002633 ieee80211_sta_reset_beacon_monitor(sdata);
Johannes Bergb291ba12009-07-10 15:29:03 +02002634
Johannes Bergd91f36d2009-04-16 13:17:26 +02002635 ncrc = crc32_be(0, (void *)&mgmt->u.beacon.beacon_int, 4);
2636 ncrc = ieee802_11_parse_elems_crc(mgmt->u.beacon.variable,
2637 len - baselen, &elems,
2638 care_about_ies, ncrc);
2639
Vivek Natarajan25c9c872009-03-02 20:20:30 +05302640 if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK) {
Rami Rosenf87ad632012-10-25 10:16:23 +02002641 bool directed_tim = ieee80211_check_tim(elems.tim,
2642 elems.tim_len,
2643 ifmgd->aid);
Kalle Valo1fb36062009-02-10 17:09:24 +02002644 if (directed_tim) {
Kalle Valo572e0012009-02-10 17:09:31 +02002645 if (local->hw.conf.dynamic_ps_timeout > 0) {
Ronald Wahl70b12f22012-03-19 14:37:20 +01002646 if (local->hw.conf.flags & IEEE80211_CONF_PS) {
2647 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
2648 ieee80211_hw_config(local,
2649 IEEE80211_CONF_CHANGE_PS);
2650 }
Kalle Valo572e0012009-02-10 17:09:31 +02002651 ieee80211_send_nullfunc(local, sdata, 0);
Rajkumar Manoharan6f0756a2012-03-15 05:50:36 +05302652 } else if (!local->pspolling && sdata->u.mgd.powersave) {
Kalle Valo572e0012009-02-10 17:09:31 +02002653 local->pspolling = true;
2654
2655 /*
2656 * Here is assumed that the driver will be
2657 * able to send ps-poll frame and receive a
2658 * response even though power save mode is
2659 * enabled, but some drivers might require
2660 * to disable power save here. This needs
2661 * to be investigated.
2662 */
2663 ieee80211_send_pspoll(local, sdata);
2664 }
Vivek Natarajana97b77b2008-12-23 18:39:02 -08002665 }
2666 }
Johannes Berg7a5158e2008-10-08 10:59:33 +02002667
Johannes Berg488dd7b2012-10-29 20:08:01 +01002668 if (sdata->vif.p2p) {
2669 u8 noa[2];
2670 int ret;
2671
2672 ret = cfg80211_get_p2p_attr(mgmt->u.beacon.variable,
2673 len - baselen,
2674 IEEE80211_P2P_ATTR_ABSENCE_NOTICE,
2675 noa, sizeof(noa));
2676 if (ret >= 2 && sdata->u.mgd.p2p_noa_index != noa[0]) {
2677 bss_conf->p2p_oppps = noa[1] & 0x80;
2678 bss_conf->p2p_ctwindow = noa[1] & 0x7f;
2679 changed |= BSS_CHANGED_P2P_PS;
2680 sdata->u.mgd.p2p_noa_index = noa[0];
2681 /*
2682 * make sure we update all information, the CRC
2683 * mechanism doesn't look at P2P attributes.
2684 */
2685 ifmgd->beacon_crc_valid = false;
2686 }
2687 }
2688
Juuso Oikarinend8ec4432010-10-01 16:02:31 +03002689 if (ncrc == ifmgd->beacon_crc && ifmgd->beacon_crc_valid)
Jouni Malinen30196672009-05-19 17:01:43 +03002690 return;
2691 ifmgd->beacon_crc = ncrc;
Juuso Oikarinend8ec4432010-10-01 16:02:31 +03002692 ifmgd->beacon_crc_valid = true;
Jouni Malinen30196672009-05-19 17:01:43 +03002693
Emmanuel Grumbachd45c4172012-12-10 16:19:13 +02002694 ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems);
Johannes Berg7d257452012-07-06 17:37:43 +02002695
2696 if (ieee80211_sta_wmm_params(local, sdata, elems.wmm_param,
2697 elems.wmm_param_len))
2698 changed |= BSS_CHANGED_QOS;
2699
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02002700 /*
2701 * If we haven't had a beacon before, tell the driver about the
Johannes Bergef429da2013-02-05 17:48:40 +01002702 * DTIM period (and beacon timing if desired) now.
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02002703 */
2704 if (!bss_conf->dtim_period) {
2705 /* a few bogus AP send dtim_period = 0 or no TIM IE */
2706 if (elems.tim)
2707 bss_conf->dtim_period = elems.tim->dtim_period ?: 1;
2708 else
2709 bss_conf->dtim_period = 1;
Johannes Bergef429da2013-02-05 17:48:40 +01002710
2711 if (local->hw.flags & IEEE80211_HW_TIMING_BEACON_ONLY) {
2712 sdata->vif.bss_conf.sync_tsf =
2713 le64_to_cpu(mgmt->u.beacon.timestamp);
2714 sdata->vif.bss_conf.sync_device_ts =
2715 rx_status->device_timestamp;
2716 if (elems.tim)
2717 sdata->vif.bss_conf.sync_dtim_count =
2718 elems.tim->dtim_count;
2719 else
2720 sdata->vif.bss_conf.sync_dtim_count = 0;
2721 }
2722
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02002723 changed |= BSS_CHANGED_DTIM_PERIOD;
2724 }
2725
Johannes Berg7a5158e2008-10-08 10:59:33 +02002726 if (elems.erp_info && elems.erp_info_len >= 1) {
2727 erp_valid = true;
2728 erp_value = elems.erp_info[0];
2729 } else {
2730 erp_valid = false;
John W. Linville50c4afb2008-04-15 14:09:27 -04002731 }
Johannes Berg7a5158e2008-10-08 10:59:33 +02002732 changed |= ieee80211_handle_bss_capability(sdata,
2733 le16_to_cpu(mgmt->u.beacon.capab_info),
2734 erp_valid, erp_value);
Jiri Bencf0706e82007-05-05 11:45:53 -07002735
Ron Rindjunskyd3c990f2007-11-26 16:14:34 +02002736
Johannes Berg074d46d2012-03-15 19:45:16 +01002737 if (elems.ht_cap_elem && elems.ht_operation && elems.wmm_param &&
Johannes Berga8243b72012-11-22 14:32:09 +01002738 !(ifmgd->flags & IEEE80211_STA_DISABLE_HT))
Johannes Berg24398e32012-03-28 10:58:36 +02002739 changed |= ieee80211_config_ht_tx(sdata, elems.ht_operation,
2740 bssid, true);
Ron Rindjunskyd3c990f2007-11-26 16:14:34 +02002741
Johannes Berg04b7b2f2012-09-05 13:41:37 +02002742 if (elems.country_elem && elems.pwr_constr_elem &&
2743 mgmt->u.probe_resp.capab_info &
2744 cpu_to_le16(WLAN_CAPABILITY_SPECTRUM_MGMT))
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02002745 changed |= ieee80211_handle_pwr_constr(sdata, chan,
2746 elems.country_elem,
2747 elems.country_elem_len,
2748 elems.pwr_constr_elem);
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08002749
Johannes Berg471b3ef2007-12-28 14:32:58 +01002750 ieee80211_bss_info_change_notify(sdata, changed);
Jiri Bencf0706e82007-05-05 11:45:53 -07002751}
2752
Johannes Berg1fa57d02010-06-10 10:21:32 +02002753void ieee80211_sta_rx_queued_mgmt(struct ieee80211_sub_if_data *sdata,
2754 struct sk_buff *skb)
Jiri Bencf0706e82007-05-05 11:45:53 -07002755{
Johannes Berg77fdaa12009-07-07 03:45:17 +02002756 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jiri Bencf0706e82007-05-05 11:45:53 -07002757 struct ieee80211_rx_status *rx_status;
Jiri Bencf0706e82007-05-05 11:45:53 -07002758 struct ieee80211_mgmt *mgmt;
Johannes Berg66e67e42012-01-20 13:55:27 +01002759 struct cfg80211_bss *bss = NULL;
Johannes Berg77fdaa12009-07-07 03:45:17 +02002760 enum rx_mgmt_action rma = RX_MGMT_NONE;
Jiri Bencf0706e82007-05-05 11:45:53 -07002761 u16 fc;
2762
Jiri Bencf0706e82007-05-05 11:45:53 -07002763 rx_status = (struct ieee80211_rx_status *) skb->cb;
2764 mgmt = (struct ieee80211_mgmt *) skb->data;
2765 fc = le16_to_cpu(mgmt->frame_control);
2766
Johannes Berg77fdaa12009-07-07 03:45:17 +02002767 mutex_lock(&ifmgd->mtx);
2768
Johannes Berg66e67e42012-01-20 13:55:27 +01002769 switch (fc & IEEE80211_FCTL_STYPE) {
2770 case IEEE80211_STYPE_BEACON:
2771 ieee80211_rx_mgmt_beacon(sdata, mgmt, skb->len, rx_status);
2772 break;
2773 case IEEE80211_STYPE_PROBE_RESP:
2774 ieee80211_rx_mgmt_probe_resp(sdata, skb);
2775 break;
2776 case IEEE80211_STYPE_AUTH:
2777 rma = ieee80211_rx_mgmt_auth(sdata, mgmt, skb->len);
2778 break;
2779 case IEEE80211_STYPE_DEAUTH:
2780 rma = ieee80211_rx_mgmt_deauth(sdata, mgmt, skb->len);
2781 break;
2782 case IEEE80211_STYPE_DISASSOC:
2783 rma = ieee80211_rx_mgmt_disassoc(sdata, mgmt, skb->len);
2784 break;
2785 case IEEE80211_STYPE_ASSOC_RESP:
2786 case IEEE80211_STYPE_REASSOC_RESP:
2787 rma = ieee80211_rx_mgmt_assoc_resp(sdata, mgmt, skb->len, &bss);
2788 break;
2789 case IEEE80211_STYPE_ACTION:
2790 switch (mgmt->u.action.category) {
2791 case WLAN_CATEGORY_SPECTRUM_MGMT:
2792 ieee80211_sta_process_chanswitch(sdata,
2793 &mgmt->u.action.u.chan_switch.sw_elem,
2794 (void *)ifmgd->associated->priv,
2795 rx_status->mactime);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002796 break;
Johannes Berg77fdaa12009-07-07 03:45:17 +02002797 }
Johannes Berg77fdaa12009-07-07 03:45:17 +02002798 }
Johannes Berg77fdaa12009-07-07 03:45:17 +02002799 mutex_unlock(&ifmgd->mtx);
2800
Johannes Berg66e67e42012-01-20 13:55:27 +01002801 switch (rma) {
2802 case RX_MGMT_NONE:
2803 /* no action */
2804 break;
2805 case RX_MGMT_CFG80211_DEAUTH:
Holger Schurigce470612009-10-13 13:28:13 +02002806 cfg80211_send_deauth(sdata->dev, (u8 *)mgmt, skb->len);
Johannes Berg66e67e42012-01-20 13:55:27 +01002807 break;
2808 case RX_MGMT_CFG80211_DISASSOC:
2809 cfg80211_send_disassoc(sdata->dev, (u8 *)mgmt, skb->len);
2810 break;
2811 case RX_MGMT_CFG80211_RX_AUTH:
2812 cfg80211_send_rx_auth(sdata->dev, (u8 *)mgmt, skb->len);
2813 break;
2814 case RX_MGMT_CFG80211_RX_ASSOC:
2815 cfg80211_send_rx_assoc(sdata->dev, bss, (u8 *)mgmt, skb->len);
2816 break;
2817 case RX_MGMT_CFG80211_ASSOC_TIMEOUT:
2818 cfg80211_send_assoc_timeout(sdata->dev, mgmt->bssid);
2819 break;
2820 default:
2821 WARN(1, "unexpected: %d", rma);
Johannes Bergb054b742010-06-07 21:50:07 +02002822 }
Jiri Bencf0706e82007-05-05 11:45:53 -07002823}
2824
Johannes Berg9c6bd792008-09-11 00:01:52 +02002825static void ieee80211_sta_timer(unsigned long data)
Jiri Bencf0706e82007-05-05 11:45:53 -07002826{
2827 struct ieee80211_sub_if_data *sdata =
2828 (struct ieee80211_sub_if_data *) data;
Johannes Berg46900292009-02-15 12:44:28 +01002829 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002830 struct ieee80211_local *local = sdata->local;
Jiri Bencf0706e82007-05-05 11:45:53 -07002831
Johannes Berg5bb644a2009-05-17 11:40:42 +02002832 if (local->quiescing) {
2833 set_bit(TMR_RUNNING_TIMER, &ifmgd->timers_running);
2834 return;
2835 }
2836
Johannes Berg64592c82010-06-10 10:21:31 +02002837 ieee80211_queue_work(&local->hw, &sdata->work);
Jiri Bencf0706e82007-05-05 11:45:53 -07002838}
2839
Felix Fietkau04ac3c02010-12-02 21:01:08 +01002840static void ieee80211_sta_connection_lost(struct ieee80211_sub_if_data *sdata,
Johannes Berg6b684db2013-01-29 11:35:29 +01002841 u8 *bssid, u8 reason, bool tx)
Felix Fietkau04ac3c02010-12-02 21:01:08 +01002842{
Felix Fietkau04ac3c02010-12-02 21:01:08 +01002843 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Antonio Quartulli6ae16772012-09-07 13:28:52 +02002844 u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN];
Felix Fietkau04ac3c02010-12-02 21:01:08 +01002845
Johannes Berg37ad3882012-02-24 13:50:54 +01002846 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH, reason,
Johannes Berg6b684db2013-01-29 11:35:29 +01002847 tx, frame_buf);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01002848 mutex_unlock(&ifmgd->mtx);
Johannes Berg37ad3882012-02-24 13:50:54 +01002849
Felix Fietkau04ac3c02010-12-02 21:01:08 +01002850 /*
2851 * must be outside lock due to cfg80211,
2852 * but that's not a problem.
2853 */
Antonio Quartulli6ae16772012-09-07 13:28:52 +02002854 cfg80211_send_deauth(sdata->dev, frame_buf, IEEE80211_DEAUTH_FRAME_LEN);
Felix Fietkaufcac4fb2011-11-16 13:34:55 +01002855
Felix Fietkau04ac3c02010-12-02 21:01:08 +01002856 mutex_lock(&ifmgd->mtx);
2857}
2858
Johannes Berg66e67e42012-01-20 13:55:27 +01002859static int ieee80211_probe_auth(struct ieee80211_sub_if_data *sdata)
2860{
2861 struct ieee80211_local *local = sdata->local;
2862 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2863 struct ieee80211_mgd_auth_data *auth_data = ifmgd->auth_data;
Johannes Berg1672c0e32013-01-29 15:02:27 +01002864 u32 tx_flags = 0;
Johannes Berg66e67e42012-01-20 13:55:27 +01002865
2866 lockdep_assert_held(&ifmgd->mtx);
2867
2868 if (WARN_ON_ONCE(!auth_data))
2869 return -EINVAL;
2870
Johannes Berg1672c0e32013-01-29 15:02:27 +01002871 if (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS)
2872 tx_flags = IEEE80211_TX_CTL_REQ_TX_STATUS |
2873 IEEE80211_TX_INTFL_MLME_CONN_TX;
2874
Johannes Berg66e67e42012-01-20 13:55:27 +01002875 auth_data->tries++;
2876
2877 if (auth_data->tries > IEEE80211_AUTH_MAX_TRIES) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002878 sdata_info(sdata, "authentication with %pM timed out\n",
2879 auth_data->bss->bssid);
Johannes Berg66e67e42012-01-20 13:55:27 +01002880
2881 /*
2882 * Most likely AP is not in the range so remove the
2883 * bss struct for that AP.
2884 */
2885 cfg80211_unlink_bss(local->hw.wiphy, auth_data->bss);
2886
2887 return -ETIMEDOUT;
2888 }
2889
Johannes Berga1845fc2012-06-27 13:18:36 +02002890 drv_mgd_prepare_tx(local, sdata);
2891
Johannes Berg66e67e42012-01-20 13:55:27 +01002892 if (auth_data->bss->proberesp_ies) {
Jouni Malinen6b8ece32012-09-30 19:29:40 +03002893 u16 trans = 1;
2894 u16 status = 0;
2895
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002896 sdata_info(sdata, "send auth to %pM (try %d/%d)\n",
2897 auth_data->bss->bssid, auth_data->tries,
2898 IEEE80211_AUTH_MAX_TRIES);
Johannes Berg66e67e42012-01-20 13:55:27 +01002899
2900 auth_data->expected_transaction = 2;
Jouni Malinen6b8ece32012-09-30 19:29:40 +03002901
2902 if (auth_data->algorithm == WLAN_AUTH_SAE) {
2903 trans = auth_data->sae_trans;
2904 status = auth_data->sae_status;
2905 auth_data->expected_transaction = trans;
2906 }
2907
2908 ieee80211_send_auth(sdata, trans, auth_data->algorithm, status,
2909 auth_data->data, auth_data->data_len,
Johannes Berg66e67e42012-01-20 13:55:27 +01002910 auth_data->bss->bssid,
Johannes Berg1672c0e32013-01-29 15:02:27 +01002911 auth_data->bss->bssid, NULL, 0, 0,
2912 tx_flags);
Johannes Berg66e67e42012-01-20 13:55:27 +01002913 } else {
2914 const u8 *ssidie;
2915
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002916 sdata_info(sdata, "direct probe to %pM (try %d/%i)\n",
2917 auth_data->bss->bssid, auth_data->tries,
2918 IEEE80211_AUTH_MAX_TRIES);
Johannes Berg66e67e42012-01-20 13:55:27 +01002919
Johannes Berg9caf0362012-11-29 01:25:20 +01002920 rcu_read_lock();
Johannes Berg66e67e42012-01-20 13:55:27 +01002921 ssidie = ieee80211_bss_get_ie(auth_data->bss, WLAN_EID_SSID);
Johannes Berg9caf0362012-11-29 01:25:20 +01002922 if (!ssidie) {
2923 rcu_read_unlock();
Johannes Berg66e67e42012-01-20 13:55:27 +01002924 return -EINVAL;
Johannes Berg9caf0362012-11-29 01:25:20 +01002925 }
Johannes Berg66e67e42012-01-20 13:55:27 +01002926 /*
2927 * Direct probe is sent to broadcast address as some APs
2928 * will not answer to direct packet in unassociated state.
2929 */
2930 ieee80211_send_probe_req(sdata, NULL, ssidie + 2, ssidie[1],
Johannes Berg1672c0e32013-01-29 15:02:27 +01002931 NULL, 0, (u32) -1, true, tx_flags,
Johannes Berg55de9082012-07-26 17:24:39 +02002932 auth_data->bss->channel, false);
Johannes Berg9caf0362012-11-29 01:25:20 +01002933 rcu_read_unlock();
Johannes Berg66e67e42012-01-20 13:55:27 +01002934 }
2935
Johannes Berg1672c0e32013-01-29 15:02:27 +01002936 if (!(local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS)) {
2937 auth_data->timeout = jiffies + IEEE80211_AUTH_TIMEOUT;
Johannes Berg89afe612013-02-13 15:39:57 +01002938 ifmgd->auth_data->timeout_started = true;
Johannes Berg1672c0e32013-01-29 15:02:27 +01002939 run_again(ifmgd, auth_data->timeout);
Johannes Berg89afe612013-02-13 15:39:57 +01002940 } else {
2941 auth_data->timeout_started = false;
Johannes Berg1672c0e32013-01-29 15:02:27 +01002942 }
Johannes Berg66e67e42012-01-20 13:55:27 +01002943
2944 return 0;
2945}
2946
2947static int ieee80211_do_assoc(struct ieee80211_sub_if_data *sdata)
2948{
2949 struct ieee80211_mgd_assoc_data *assoc_data = sdata->u.mgd.assoc_data;
2950 struct ieee80211_local *local = sdata->local;
2951
2952 lockdep_assert_held(&sdata->u.mgd.mtx);
2953
Johannes Berg66e67e42012-01-20 13:55:27 +01002954 assoc_data->tries++;
2955 if (assoc_data->tries > IEEE80211_ASSOC_MAX_TRIES) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002956 sdata_info(sdata, "association with %pM timed out\n",
2957 assoc_data->bss->bssid);
Johannes Berg66e67e42012-01-20 13:55:27 +01002958
2959 /*
2960 * Most likely AP is not in the range so remove the
2961 * bss struct for that AP.
2962 */
2963 cfg80211_unlink_bss(local->hw.wiphy, assoc_data->bss);
2964
2965 return -ETIMEDOUT;
2966 }
2967
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002968 sdata_info(sdata, "associate with %pM (try %d/%d)\n",
2969 assoc_data->bss->bssid, assoc_data->tries,
2970 IEEE80211_ASSOC_MAX_TRIES);
Johannes Berg66e67e42012-01-20 13:55:27 +01002971 ieee80211_send_assoc(sdata);
2972
Johannes Berg1672c0e32013-01-29 15:02:27 +01002973 if (!(local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS)) {
2974 assoc_data->timeout = jiffies + IEEE80211_ASSOC_TIMEOUT;
Johannes Berg89afe612013-02-13 15:39:57 +01002975 assoc_data->timeout_started = true;
Johannes Berg1672c0e32013-01-29 15:02:27 +01002976 run_again(&sdata->u.mgd, assoc_data->timeout);
Johannes Berg89afe612013-02-13 15:39:57 +01002977 } else {
2978 assoc_data->timeout_started = false;
Johannes Berg1672c0e32013-01-29 15:02:27 +01002979 }
Johannes Berg66e67e42012-01-20 13:55:27 +01002980
2981 return 0;
2982}
2983
Johannes Berg1672c0e32013-01-29 15:02:27 +01002984void ieee80211_mgd_conn_tx_status(struct ieee80211_sub_if_data *sdata,
2985 __le16 fc, bool acked)
2986{
2987 struct ieee80211_local *local = sdata->local;
2988
2989 sdata->u.mgd.status_fc = fc;
2990 sdata->u.mgd.status_acked = acked;
2991 sdata->u.mgd.status_received = true;
2992
2993 ieee80211_queue_work(&local->hw, &sdata->work);
2994}
2995
Johannes Berg1fa57d02010-06-10 10:21:32 +02002996void ieee80211_sta_work(struct ieee80211_sub_if_data *sdata)
Johannes Berg60f8b392008-09-08 17:44:22 +02002997{
Johannes Berg60f8b392008-09-08 17:44:22 +02002998 struct ieee80211_local *local = sdata->local;
Johannes Berg1fa57d02010-06-10 10:21:32 +02002999 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg60f8b392008-09-08 17:44:22 +02003000
Johannes Berg77fdaa12009-07-07 03:45:17 +02003001 mutex_lock(&ifmgd->mtx);
Johannes Berg60f8b392008-09-08 17:44:22 +02003002
Johannes Berg1672c0e32013-01-29 15:02:27 +01003003 if (ifmgd->status_received) {
3004 __le16 fc = ifmgd->status_fc;
3005 bool status_acked = ifmgd->status_acked;
3006
3007 ifmgd->status_received = false;
3008 if (ifmgd->auth_data &&
3009 (ieee80211_is_probe_req(fc) || ieee80211_is_auth(fc))) {
3010 if (status_acked) {
3011 ifmgd->auth_data->timeout =
3012 jiffies + IEEE80211_AUTH_TIMEOUT_SHORT;
3013 run_again(ifmgd, ifmgd->auth_data->timeout);
3014 } else {
3015 ifmgd->auth_data->timeout = jiffies - 1;
3016 }
Johannes Berg89afe612013-02-13 15:39:57 +01003017 ifmgd->auth_data->timeout_started = true;
Johannes Berg1672c0e32013-01-29 15:02:27 +01003018 } else if (ifmgd->assoc_data &&
3019 (ieee80211_is_assoc_req(fc) ||
3020 ieee80211_is_reassoc_req(fc))) {
3021 if (status_acked) {
3022 ifmgd->assoc_data->timeout =
3023 jiffies + IEEE80211_ASSOC_TIMEOUT_SHORT;
3024 run_again(ifmgd, ifmgd->assoc_data->timeout);
3025 } else {
3026 ifmgd->assoc_data->timeout = jiffies - 1;
3027 }
Johannes Berg89afe612013-02-13 15:39:57 +01003028 ifmgd->assoc_data->timeout_started = true;
Johannes Berg1672c0e32013-01-29 15:02:27 +01003029 }
3030 }
3031
Johannes Berg89afe612013-02-13 15:39:57 +01003032 if (ifmgd->auth_data && ifmgd->auth_data->timeout_started &&
Johannes Berg66e67e42012-01-20 13:55:27 +01003033 time_after(jiffies, ifmgd->auth_data->timeout)) {
3034 if (ifmgd->auth_data->done) {
3035 /*
3036 * ok ... we waited for assoc but userspace didn't,
3037 * so let's just kill the auth data
3038 */
3039 ieee80211_destroy_auth_data(sdata, false);
3040 } else if (ieee80211_probe_auth(sdata)) {
3041 u8 bssid[ETH_ALEN];
3042
3043 memcpy(bssid, ifmgd->auth_data->bss->bssid, ETH_ALEN);
3044
3045 ieee80211_destroy_auth_data(sdata, false);
3046
3047 mutex_unlock(&ifmgd->mtx);
3048 cfg80211_send_auth_timeout(sdata->dev, bssid);
3049 mutex_lock(&ifmgd->mtx);
3050 }
Johannes Berg89afe612013-02-13 15:39:57 +01003051 } else if (ifmgd->auth_data && ifmgd->auth_data->timeout_started)
Johannes Berg66e67e42012-01-20 13:55:27 +01003052 run_again(ifmgd, ifmgd->auth_data->timeout);
3053
Johannes Berg89afe612013-02-13 15:39:57 +01003054 if (ifmgd->assoc_data && ifmgd->assoc_data->timeout_started &&
Johannes Berg66e67e42012-01-20 13:55:27 +01003055 time_after(jiffies, ifmgd->assoc_data->timeout)) {
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02003056 if ((ifmgd->assoc_data->need_beacon &&
3057 !ifmgd->assoc_data->have_beacon) ||
Johannes Berg66e67e42012-01-20 13:55:27 +01003058 ieee80211_do_assoc(sdata)) {
3059 u8 bssid[ETH_ALEN];
3060
3061 memcpy(bssid, ifmgd->assoc_data->bss->bssid, ETH_ALEN);
3062
3063 ieee80211_destroy_assoc_data(sdata, false);
3064
3065 mutex_unlock(&ifmgd->mtx);
3066 cfg80211_send_assoc_timeout(sdata->dev, bssid);
3067 mutex_lock(&ifmgd->mtx);
3068 }
Johannes Berg89afe612013-02-13 15:39:57 +01003069 } else if (ifmgd->assoc_data && ifmgd->assoc_data->timeout_started)
Johannes Berg66e67e42012-01-20 13:55:27 +01003070 run_again(ifmgd, ifmgd->assoc_data->timeout);
3071
Johannes Bergb291ba12009-07-10 15:29:03 +02003072 if (ifmgd->flags & (IEEE80211_STA_BEACON_POLL |
3073 IEEE80211_STA_CONNECTION_POLL) &&
3074 ifmgd->associated) {
Maxim Levitskya43abf22009-07-31 18:54:12 +03003075 u8 bssid[ETH_ALEN];
Felix Fietkau72a8a3e2010-11-23 03:10:32 +01003076 int max_tries;
Maxim Levitskya43abf22009-07-31 18:54:12 +03003077
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01003078 memcpy(bssid, ifmgd->associated->bssid, ETH_ALEN);
Felix Fietkau4e5ff372010-11-23 03:10:31 +01003079
Felix Fietkau72a8a3e2010-11-23 03:10:32 +01003080 if (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS)
Ben Greear180205b2011-02-04 15:30:24 -08003081 max_tries = max_nullfunc_tries;
Felix Fietkau72a8a3e2010-11-23 03:10:32 +01003082 else
Ben Greear180205b2011-02-04 15:30:24 -08003083 max_tries = max_probe_tries;
Felix Fietkau72a8a3e2010-11-23 03:10:32 +01003084
Felix Fietkau4e5ff372010-11-23 03:10:31 +01003085 /* ACK received for nullfunc probing frame */
3086 if (!ifmgd->probe_send_count)
3087 ieee80211_reset_ap_probe(sdata);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003088 else if (ifmgd->nullfunc_failed) {
3089 if (ifmgd->probe_send_count < max_tries) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003090 mlme_dbg(sdata,
3091 "No ack for nullfunc frame to AP %pM, try %d/%i\n",
3092 bssid, ifmgd->probe_send_count,
3093 max_tries);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003094 ieee80211_mgd_probe_ap_send(sdata);
3095 } else {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003096 mlme_dbg(sdata,
3097 "No ack for nullfunc frame to AP %pM, disconnecting.\n",
3098 bssid);
Johannes Berg95acac62011-07-12 12:30:59 +02003099 ieee80211_sta_connection_lost(sdata, bssid,
Johannes Berg6b684db2013-01-29 11:35:29 +01003100 WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY,
3101 false);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003102 }
3103 } else if (time_is_after_jiffies(ifmgd->probe_timeout))
Johannes Bergb291ba12009-07-10 15:29:03 +02003104 run_again(ifmgd, ifmgd->probe_timeout);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003105 else if (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003106 mlme_dbg(sdata,
3107 "Failed to send nullfunc to AP %pM after %dms, disconnecting\n",
3108 bssid, probe_wait_ms);
Johannes Berg95acac62011-07-12 12:30:59 +02003109 ieee80211_sta_connection_lost(sdata, bssid,
Johannes Berg6b684db2013-01-29 11:35:29 +01003110 WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY, false);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003111 } else if (ifmgd->probe_send_count < max_tries) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003112 mlme_dbg(sdata,
3113 "No probe response from AP %pM after %dms, try %d/%i\n",
3114 bssid, probe_wait_ms,
3115 ifmgd->probe_send_count, max_tries);
Maxim Levitskya43abf22009-07-31 18:54:12 +03003116 ieee80211_mgd_probe_ap_send(sdata);
3117 } else {
Johannes Bergb291ba12009-07-10 15:29:03 +02003118 /*
3119 * We actually lost the connection ... or did we?
3120 * Let's make sure!
3121 */
Ben Greearb38afa82010-10-07 16:12:06 -07003122 wiphy_debug(local->hw.wiphy,
3123 "%s: No probe response from AP %pM"
3124 " after %dms, disconnecting.\n",
3125 sdata->name,
Ben Greear180205b2011-02-04 15:30:24 -08003126 bssid, probe_wait_ms);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003127
Johannes Berg95acac62011-07-12 12:30:59 +02003128 ieee80211_sta_connection_lost(sdata, bssid,
Johannes Berg6b684db2013-01-29 11:35:29 +01003129 WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY, false);
Johannes Bergb291ba12009-07-10 15:29:03 +02003130 }
3131 }
3132
Johannes Berg77fdaa12009-07-07 03:45:17 +02003133 mutex_unlock(&ifmgd->mtx);
Johannes Berg60f8b392008-09-08 17:44:22 +02003134}
Johannes Berg0a51b272008-09-08 17:44:25 +02003135
Johannes Bergb291ba12009-07-10 15:29:03 +02003136static void ieee80211_sta_bcn_mon_timer(unsigned long data)
3137{
3138 struct ieee80211_sub_if_data *sdata =
3139 (struct ieee80211_sub_if_data *) data;
3140 struct ieee80211_local *local = sdata->local;
3141
3142 if (local->quiescing)
3143 return;
3144
Johannes Berg682bd382013-01-29 13:13:50 +01003145 sdata->u.mgd.connection_loss = false;
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02003146 ieee80211_queue_work(&sdata->local->hw,
3147 &sdata->u.mgd.beacon_connection_loss_work);
Johannes Bergb291ba12009-07-10 15:29:03 +02003148}
3149
3150static void ieee80211_sta_conn_mon_timer(unsigned long data)
3151{
3152 struct ieee80211_sub_if_data *sdata =
3153 (struct ieee80211_sub_if_data *) data;
3154 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3155 struct ieee80211_local *local = sdata->local;
3156
3157 if (local->quiescing)
3158 return;
3159
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04003160 ieee80211_queue_work(&local->hw, &ifmgd->monitor_work);
Johannes Bergb291ba12009-07-10 15:29:03 +02003161}
3162
3163static void ieee80211_sta_monitor_work(struct work_struct *work)
3164{
3165 struct ieee80211_sub_if_data *sdata =
3166 container_of(work, struct ieee80211_sub_if_data,
3167 u.mgd.monitor_work);
3168
3169 ieee80211_mgd_probe_ap(sdata, false);
3170}
3171
Johannes Berga1678f82008-09-11 00:01:47 +02003172static void ieee80211_restart_sta_timer(struct ieee80211_sub_if_data *sdata)
3173{
Eliad Peller494f1fe2012-02-19 15:26:09 +02003174 u32 flags;
3175
Kalle Vaload935682009-04-19 08:47:19 +03003176 if (sdata->vif.type == NL80211_IFTYPE_STATION) {
Stanislaw Gruszka925e64c2012-05-16 15:27:20 +02003177 __ieee80211_stop_poll(sdata);
Kalle Vaload935682009-04-19 08:47:19 +03003178
Johannes Bergb291ba12009-07-10 15:29:03 +02003179 /* let's probe the connection once */
Eliad Peller494f1fe2012-02-19 15:26:09 +02003180 flags = sdata->local->hw.flags;
3181 if (!(flags & IEEE80211_HW_CONNECTION_MONITOR))
3182 ieee80211_queue_work(&sdata->local->hw,
3183 &sdata->u.mgd.monitor_work);
Johannes Bergb291ba12009-07-10 15:29:03 +02003184 /* and do all the other regular work too */
Johannes Berg64592c82010-06-10 10:21:31 +02003185 ieee80211_queue_work(&sdata->local->hw, &sdata->work);
Kalle Vaload935682009-04-19 08:47:19 +03003186 }
Johannes Berga1678f82008-09-11 00:01:47 +02003187}
3188
Johannes Berg5bb644a2009-05-17 11:40:42 +02003189#ifdef CONFIG_PM
3190void ieee80211_sta_quiesce(struct ieee80211_sub_if_data *sdata)
3191{
3192 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3193
3194 /*
3195 * we need to use atomic bitops for the running bits
3196 * only because both timers might fire at the same
3197 * time -- the code here is properly synchronised.
3198 */
3199
Johannes Bergd1f5b7a2010-08-05 17:05:55 +02003200 cancel_work_sync(&ifmgd->request_smps_work);
3201
Johannes Berg0ecfe8062011-11-09 12:14:16 +01003202 cancel_work_sync(&ifmgd->monitor_work);
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02003203 cancel_work_sync(&ifmgd->beacon_connection_loss_work);
Johannes Berg882a7c62012-08-01 22:32:45 +02003204 cancel_work_sync(&ifmgd->csa_connection_drop_work);
Johannes Berg5bb644a2009-05-17 11:40:42 +02003205 if (del_timer_sync(&ifmgd->timer))
3206 set_bit(TMR_RUNNING_TIMER, &ifmgd->timers_running);
3207
3208 cancel_work_sync(&ifmgd->chswitch_work);
3209 if (del_timer_sync(&ifmgd->chswitch_timer))
3210 set_bit(TMR_RUNNING_CHANSW, &ifmgd->timers_running);
Johannes Bergb291ba12009-07-10 15:29:03 +02003211
Johannes Bergb291ba12009-07-10 15:29:03 +02003212 /* these will just be re-established on connection */
3213 del_timer_sync(&ifmgd->conn_mon_timer);
3214 del_timer_sync(&ifmgd->bcn_mon_timer);
Johannes Berg5bb644a2009-05-17 11:40:42 +02003215}
3216
3217void ieee80211_sta_restart(struct ieee80211_sub_if_data *sdata)
3218{
3219 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3220
Johannes Berg782d2672013-01-18 21:21:31 +01003221 mutex_lock(&ifmgd->mtx);
3222 if (!ifmgd->associated) {
3223 mutex_unlock(&ifmgd->mtx);
Rajkumar Manoharan676b58c2011-07-07 23:33:39 +05303224 return;
Johannes Berg782d2672013-01-18 21:21:31 +01003225 }
Rajkumar Manoharan676b58c2011-07-07 23:33:39 +05303226
Johannes Berg95acac62011-07-12 12:30:59 +02003227 if (sdata->flags & IEEE80211_SDATA_DISCONNECT_RESUME) {
3228 sdata->flags &= ~IEEE80211_SDATA_DISCONNECT_RESUME;
Johannes Berg782d2672013-01-18 21:21:31 +01003229 mlme_dbg(sdata, "driver requested disconnect after resume\n");
3230 ieee80211_sta_connection_lost(sdata,
3231 ifmgd->associated->bssid,
Johannes Berg6b684db2013-01-29 11:35:29 +01003232 WLAN_REASON_UNSPECIFIED,
3233 true);
Johannes Berg95acac62011-07-12 12:30:59 +02003234 mutex_unlock(&ifmgd->mtx);
Johannes Berg782d2672013-01-18 21:21:31 +01003235 return;
Johannes Berg95acac62011-07-12 12:30:59 +02003236 }
Johannes Berg782d2672013-01-18 21:21:31 +01003237 mutex_unlock(&ifmgd->mtx);
Johannes Berg95acac62011-07-12 12:30:59 +02003238
Johannes Berg5bb644a2009-05-17 11:40:42 +02003239 if (test_and_clear_bit(TMR_RUNNING_TIMER, &ifmgd->timers_running))
3240 add_timer(&ifmgd->timer);
3241 if (test_and_clear_bit(TMR_RUNNING_CHANSW, &ifmgd->timers_running))
3242 add_timer(&ifmgd->chswitch_timer);
Felix Fietkauc8a79722010-11-19 22:55:37 +01003243 ieee80211_sta_reset_beacon_monitor(sdata);
Stanislaw Gruszka925e64c2012-05-16 15:27:20 +02003244
3245 mutex_lock(&sdata->local->mtx);
Felix Fietkau46090972010-11-23 20:28:03 +01003246 ieee80211_restart_sta_timer(sdata);
Stanislaw Gruszka925e64c2012-05-16 15:27:20 +02003247 mutex_unlock(&sdata->local->mtx);
Johannes Berg5bb644a2009-05-17 11:40:42 +02003248}
3249#endif
3250
Johannes Berg9c6bd792008-09-11 00:01:52 +02003251/* interface setup */
3252void ieee80211_sta_setup_sdata(struct ieee80211_sub_if_data *sdata)
3253{
Johannes Berg46900292009-02-15 12:44:28 +01003254 struct ieee80211_if_managed *ifmgd;
Johannes Berg9c6bd792008-09-11 00:01:52 +02003255
Johannes Berg46900292009-02-15 12:44:28 +01003256 ifmgd = &sdata->u.mgd;
Johannes Bergb291ba12009-07-10 15:29:03 +02003257 INIT_WORK(&ifmgd->monitor_work, ieee80211_sta_monitor_work);
Johannes Berg46900292009-02-15 12:44:28 +01003258 INIT_WORK(&ifmgd->chswitch_work, ieee80211_chswitch_work);
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02003259 INIT_WORK(&ifmgd->beacon_connection_loss_work,
3260 ieee80211_beacon_connection_loss_work);
Johannes Berg882a7c62012-08-01 22:32:45 +02003261 INIT_WORK(&ifmgd->csa_connection_drop_work,
3262 ieee80211_csa_connection_drop_work);
Johannes Bergd1f5b7a2010-08-05 17:05:55 +02003263 INIT_WORK(&ifmgd->request_smps_work, ieee80211_request_smps_work);
Johannes Berg46900292009-02-15 12:44:28 +01003264 setup_timer(&ifmgd->timer, ieee80211_sta_timer,
Johannes Berg9c6bd792008-09-11 00:01:52 +02003265 (unsigned long) sdata);
Johannes Bergb291ba12009-07-10 15:29:03 +02003266 setup_timer(&ifmgd->bcn_mon_timer, ieee80211_sta_bcn_mon_timer,
3267 (unsigned long) sdata);
3268 setup_timer(&ifmgd->conn_mon_timer, ieee80211_sta_conn_mon_timer,
3269 (unsigned long) sdata);
Johannes Berg46900292009-02-15 12:44:28 +01003270 setup_timer(&ifmgd->chswitch_timer, ieee80211_chswitch_timer,
Sujithc481ec92009-01-06 09:28:37 +05303271 (unsigned long) sdata);
Johannes Berg9c6bd792008-09-11 00:01:52 +02003272
Johannes Bergab1faea2009-07-01 21:41:17 +02003273 ifmgd->flags = 0;
Mohammed Shafi Shajakhan1478acb2011-12-14 19:46:08 +05303274 ifmgd->powersave = sdata->wdev.ps;
Eliad Pellerdc41e4d2012-03-14 16:15:03 +02003275 ifmgd->uapsd_queues = IEEE80211_DEFAULT_UAPSD_QUEUES;
3276 ifmgd->uapsd_max_sp_len = IEEE80211_DEFAULT_MAX_SP_LEN;
Johannes Bergbbbdff92009-04-16 13:27:42 +02003277
Johannes Berg77fdaa12009-07-07 03:45:17 +02003278 mutex_init(&ifmgd->mtx);
Johannes Berg0f782312009-12-01 13:37:02 +01003279
3280 if (sdata->local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_SMPS)
3281 ifmgd->req_smps = IEEE80211_SMPS_AUTOMATIC;
3282 else
3283 ifmgd->req_smps = IEEE80211_SMPS_OFF;
Johannes Berg9c6bd792008-09-11 00:01:52 +02003284}
3285
3286/* scan finished notification */
Johannes Berg0a51b272008-09-08 17:44:25 +02003287void ieee80211_mlme_notify_scan_completed(struct ieee80211_local *local)
3288{
Johannes Berg31ee67a2012-07-06 21:18:24 +02003289 struct ieee80211_sub_if_data *sdata;
Johannes Berga1678f82008-09-11 00:01:47 +02003290
3291 /* Restart STA timers */
3292 rcu_read_lock();
3293 list_for_each_entry_rcu(sdata, &local->interfaces, list)
3294 ieee80211_restart_sta_timer(sdata);
3295 rcu_read_unlock();
Johannes Berg0a51b272008-09-08 17:44:25 +02003296}
Johannes Berg10f644a2009-04-16 13:17:25 +02003297
3298int ieee80211_max_network_latency(struct notifier_block *nb,
3299 unsigned long data, void *dummy)
3300{
3301 s32 latency_usec = (s32) data;
3302 struct ieee80211_local *local =
3303 container_of(nb, struct ieee80211_local,
3304 network_latency_notifier);
3305
3306 mutex_lock(&local->iflist_mtx);
3307 ieee80211_recalc_ps(local, latency_usec);
3308 mutex_unlock(&local->iflist_mtx);
3309
3310 return 0;
3311}
Johannes Berg77fdaa12009-07-07 03:45:17 +02003312
Johannes Bergf2d9d272012-11-22 14:11:39 +01003313static u32 chandef_downgrade(struct cfg80211_chan_def *c)
3314{
3315 u32 ret;
3316 int tmp;
3317
3318 switch (c->width) {
3319 case NL80211_CHAN_WIDTH_20:
3320 c->width = NL80211_CHAN_WIDTH_20_NOHT;
3321 ret = IEEE80211_STA_DISABLE_HT | IEEE80211_STA_DISABLE_VHT;
3322 break;
3323 case NL80211_CHAN_WIDTH_40:
3324 c->width = NL80211_CHAN_WIDTH_20;
3325 c->center_freq1 = c->chan->center_freq;
3326 ret = IEEE80211_STA_DISABLE_40MHZ |
3327 IEEE80211_STA_DISABLE_VHT;
3328 break;
3329 case NL80211_CHAN_WIDTH_80:
3330 tmp = (30 + c->chan->center_freq - c->center_freq1)/20;
3331 /* n_P40 */
3332 tmp /= 2;
3333 /* freq_P40 */
3334 c->center_freq1 = c->center_freq1 - 20 + 40 * tmp;
3335 c->width = NL80211_CHAN_WIDTH_40;
3336 ret = IEEE80211_STA_DISABLE_VHT;
3337 break;
3338 case NL80211_CHAN_WIDTH_80P80:
3339 c->center_freq2 = 0;
3340 c->width = NL80211_CHAN_WIDTH_80;
3341 ret = IEEE80211_STA_DISABLE_80P80MHZ |
3342 IEEE80211_STA_DISABLE_160MHZ;
3343 break;
3344 case NL80211_CHAN_WIDTH_160:
3345 /* n_P20 */
3346 tmp = (70 + c->chan->center_freq - c->center_freq1)/20;
3347 /* n_P80 */
3348 tmp /= 4;
3349 c->center_freq1 = c->center_freq1 - 40 + 80 * tmp;
3350 c->width = NL80211_CHAN_WIDTH_80;
3351 ret = IEEE80211_STA_DISABLE_80P80MHZ |
3352 IEEE80211_STA_DISABLE_160MHZ;
3353 break;
3354 default:
3355 case NL80211_CHAN_WIDTH_20_NOHT:
3356 WARN_ON_ONCE(1);
3357 c->width = NL80211_CHAN_WIDTH_20_NOHT;
3358 ret = IEEE80211_STA_DISABLE_HT | IEEE80211_STA_DISABLE_VHT;
3359 break;
3360 }
3361
3362 WARN_ON_ONCE(!cfg80211_chandef_valid(c));
3363
3364 return ret;
3365}
3366
3367static u32
3368ieee80211_determine_chantype(struct ieee80211_sub_if_data *sdata,
3369 struct ieee80211_supported_band *sband,
3370 struct ieee80211_channel *channel,
3371 const struct ieee80211_ht_operation *ht_oper,
3372 const struct ieee80211_vht_operation *vht_oper,
3373 struct cfg80211_chan_def *chandef)
3374{
3375 struct cfg80211_chan_def vht_chandef;
3376 u32 ht_cfreq, ret;
3377
3378 chandef->chan = channel;
3379 chandef->width = NL80211_CHAN_WIDTH_20_NOHT;
3380 chandef->center_freq1 = channel->center_freq;
3381 chandef->center_freq2 = 0;
3382
3383 if (!ht_oper || !sband->ht_cap.ht_supported) {
3384 ret = IEEE80211_STA_DISABLE_HT | IEEE80211_STA_DISABLE_VHT;
3385 goto out;
3386 }
3387
3388 chandef->width = NL80211_CHAN_WIDTH_20;
3389
3390 ht_cfreq = ieee80211_channel_to_frequency(ht_oper->primary_chan,
3391 channel->band);
3392 /* check that channel matches the right operating channel */
3393 if (channel->center_freq != ht_cfreq) {
3394 /*
3395 * It's possible that some APs are confused here;
3396 * Netgear WNDR3700 sometimes reports 4 higher than
3397 * the actual channel in association responses, but
3398 * since we look at probe response/beacon data here
3399 * it should be OK.
3400 */
3401 sdata_info(sdata,
3402 "Wrong control channel: center-freq: %d ht-cfreq: %d ht->primary_chan: %d band: %d - Disabling HT\n",
3403 channel->center_freq, ht_cfreq,
3404 ht_oper->primary_chan, channel->band);
3405 ret = IEEE80211_STA_DISABLE_HT | IEEE80211_STA_DISABLE_VHT;
3406 goto out;
3407 }
3408
3409 /* check 40 MHz support, if we have it */
3410 if (sband->ht_cap.cap & IEEE80211_HT_CAP_SUP_WIDTH_20_40) {
3411 switch (ht_oper->ht_param & IEEE80211_HT_PARAM_CHA_SEC_OFFSET) {
3412 case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
3413 chandef->width = NL80211_CHAN_WIDTH_40;
3414 chandef->center_freq1 += 10;
3415 break;
3416 case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
3417 chandef->width = NL80211_CHAN_WIDTH_40;
3418 chandef->center_freq1 -= 10;
3419 break;
3420 }
3421 } else {
3422 /* 40 MHz (and 80 MHz) must be supported for VHT */
3423 ret = IEEE80211_STA_DISABLE_VHT;
3424 goto out;
3425 }
3426
3427 if (!vht_oper || !sband->vht_cap.vht_supported) {
3428 ret = IEEE80211_STA_DISABLE_VHT;
3429 goto out;
3430 }
3431
3432 vht_chandef.chan = channel;
3433 vht_chandef.center_freq1 =
3434 ieee80211_channel_to_frequency(vht_oper->center_freq_seg1_idx,
3435 channel->band);
3436 vht_chandef.center_freq2 = 0;
3437
3438 if (vht_oper->center_freq_seg2_idx)
3439 vht_chandef.center_freq2 =
3440 ieee80211_channel_to_frequency(
3441 vht_oper->center_freq_seg2_idx,
3442 channel->band);
3443
3444 switch (vht_oper->chan_width) {
3445 case IEEE80211_VHT_CHANWIDTH_USE_HT:
3446 vht_chandef.width = chandef->width;
3447 break;
3448 case IEEE80211_VHT_CHANWIDTH_80MHZ:
3449 vht_chandef.width = NL80211_CHAN_WIDTH_80;
3450 break;
3451 case IEEE80211_VHT_CHANWIDTH_160MHZ:
3452 vht_chandef.width = NL80211_CHAN_WIDTH_160;
3453 break;
3454 case IEEE80211_VHT_CHANWIDTH_80P80MHZ:
3455 vht_chandef.width = NL80211_CHAN_WIDTH_80P80;
3456 break;
3457 default:
3458 sdata_info(sdata,
3459 "AP VHT operation IE has invalid channel width (%d), disable VHT\n",
3460 vht_oper->chan_width);
3461 ret = IEEE80211_STA_DISABLE_VHT;
3462 goto out;
3463 }
3464
3465 if (!cfg80211_chandef_valid(&vht_chandef)) {
3466 sdata_info(sdata,
3467 "AP VHT information is invalid, disable VHT\n");
3468 ret = IEEE80211_STA_DISABLE_VHT;
3469 goto out;
3470 }
3471
3472 if (cfg80211_chandef_identical(chandef, &vht_chandef)) {
3473 ret = 0;
3474 goto out;
3475 }
3476
3477 if (!cfg80211_chandef_compatible(chandef, &vht_chandef)) {
3478 sdata_info(sdata,
3479 "AP VHT information doesn't match HT, disable VHT\n");
3480 ret = IEEE80211_STA_DISABLE_VHT;
3481 goto out;
3482 }
3483
3484 *chandef = vht_chandef;
3485
3486 ret = 0;
3487
Johannes Berg3d9646d2013-02-09 21:46:34 +01003488out:
Johannes Bergf2d9d272012-11-22 14:11:39 +01003489 while (!cfg80211_chandef_usable(sdata->local->hw.wiphy, chandef,
3490 IEEE80211_CHAN_DISABLED)) {
3491 if (WARN_ON(chandef->width == NL80211_CHAN_WIDTH_20_NOHT)) {
3492 ret = IEEE80211_STA_DISABLE_HT |
3493 IEEE80211_STA_DISABLE_VHT;
3494 goto out;
3495 }
3496
Johannes Berg3d9646d2013-02-09 21:46:34 +01003497 ret |= chandef_downgrade(chandef);
Johannes Bergf2d9d272012-11-22 14:11:39 +01003498 }
3499
3500 if (chandef->width != vht_chandef.width)
3501 sdata_info(sdata,
Johannes Berg3d9646d2013-02-09 21:46:34 +01003502 "capabilities/regulatory prevented using AP HT/VHT configuration, downgraded\n");
Johannes Bergf2d9d272012-11-22 14:11:39 +01003503
Johannes Bergf2d9d272012-11-22 14:11:39 +01003504 WARN_ON_ONCE(!cfg80211_chandef_valid(chandef));
3505 return ret;
3506}
3507
3508static u8 ieee80211_ht_vht_rx_chains(struct ieee80211_sub_if_data *sdata,
3509 struct cfg80211_bss *cbss)
3510{
3511 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3512 const u8 *ht_cap_ie, *vht_cap_ie;
3513 const struct ieee80211_ht_cap *ht_cap;
3514 const struct ieee80211_vht_cap *vht_cap;
3515 u8 chains = 1;
3516
3517 if (ifmgd->flags & IEEE80211_STA_DISABLE_HT)
3518 return chains;
3519
Johannes Berg9caf0362012-11-29 01:25:20 +01003520 ht_cap_ie = ieee80211_bss_get_ie(cbss, WLAN_EID_HT_CAPABILITY);
Johannes Bergf2d9d272012-11-22 14:11:39 +01003521 if (ht_cap_ie && ht_cap_ie[1] >= sizeof(*ht_cap)) {
3522 ht_cap = (void *)(ht_cap_ie + 2);
3523 chains = ieee80211_mcs_to_chains(&ht_cap->mcs);
3524 /*
3525 * TODO: use "Tx Maximum Number Spatial Streams Supported" and
3526 * "Tx Unequal Modulation Supported" fields.
3527 */
3528 }
3529
3530 if (ifmgd->flags & IEEE80211_STA_DISABLE_VHT)
3531 return chains;
3532
Johannes Berg9caf0362012-11-29 01:25:20 +01003533 vht_cap_ie = ieee80211_bss_get_ie(cbss, WLAN_EID_VHT_CAPABILITY);
Johannes Bergf2d9d272012-11-22 14:11:39 +01003534 if (vht_cap_ie && vht_cap_ie[1] >= sizeof(*vht_cap)) {
3535 u8 nss;
3536 u16 tx_mcs_map;
3537
3538 vht_cap = (void *)(vht_cap_ie + 2);
3539 tx_mcs_map = le16_to_cpu(vht_cap->supp_mcs.tx_mcs_map);
3540 for (nss = 8; nss > 0; nss--) {
3541 if (((tx_mcs_map >> (2 * (nss - 1))) & 3) !=
3542 IEEE80211_VHT_MCS_NOT_SUPPORTED)
3543 break;
3544 }
3545 /* TODO: use "Tx Highest Supported Long GI Data Rate" field? */
3546 chains = max(chains, nss);
3547 }
3548
3549 return chains;
3550}
3551
Johannes Bergb17166a2012-07-27 11:41:27 +02003552static int ieee80211_prep_channel(struct ieee80211_sub_if_data *sdata,
3553 struct cfg80211_bss *cbss)
Johannes Berga1cf7752012-03-08 15:02:07 +01003554{
3555 struct ieee80211_local *local = sdata->local;
3556 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg24398e32012-03-28 10:58:36 +02003557 const struct ieee80211_ht_operation *ht_oper = NULL;
Johannes Bergf2d9d272012-11-22 14:11:39 +01003558 const struct ieee80211_vht_operation *vht_oper = NULL;
Johannes Berg24398e32012-03-28 10:58:36 +02003559 struct ieee80211_supported_band *sband;
Johannes Berg4bf88532012-11-09 11:39:59 +01003560 struct cfg80211_chan_def chandef;
Johannes Bergf2d9d272012-11-22 14:11:39 +01003561 int ret;
Johannes Berga1cf7752012-03-08 15:02:07 +01003562
Johannes Berg24398e32012-03-28 10:58:36 +02003563 sband = local->hw.wiphy->bands[cbss->channel->band];
3564
Johannes Bergf2d9d272012-11-22 14:11:39 +01003565 ifmgd->flags &= ~(IEEE80211_STA_DISABLE_40MHZ |
3566 IEEE80211_STA_DISABLE_80P80MHZ |
3567 IEEE80211_STA_DISABLE_160MHZ);
Johannes Berg24398e32012-03-28 10:58:36 +02003568
Johannes Berg9caf0362012-11-29 01:25:20 +01003569 rcu_read_lock();
3570
Johannes Bergf2d9d272012-11-22 14:11:39 +01003571 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_HT) &&
3572 sband->ht_cap.ht_supported) {
3573 const u8 *ht_oper_ie;
3574
Johannes Berg9caf0362012-11-29 01:25:20 +01003575 ht_oper_ie = ieee80211_bss_get_ie(cbss, WLAN_EID_HT_OPERATION);
Johannes Berg24398e32012-03-28 10:58:36 +02003576 if (ht_oper_ie && ht_oper_ie[1] >= sizeof(*ht_oper))
3577 ht_oper = (void *)(ht_oper_ie + 2);
3578 }
3579
Johannes Bergf2d9d272012-11-22 14:11:39 +01003580 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_VHT) &&
3581 sband->vht_cap.vht_supported) {
3582 const u8 *vht_oper_ie;
3583
Johannes Berg9caf0362012-11-29 01:25:20 +01003584 vht_oper_ie = ieee80211_bss_get_ie(cbss,
3585 WLAN_EID_VHT_OPERATION);
Johannes Bergf2d9d272012-11-22 14:11:39 +01003586 if (vht_oper_ie && vht_oper_ie[1] >= sizeof(*vht_oper))
3587 vht_oper = (void *)(vht_oper_ie + 2);
3588 if (vht_oper && !ht_oper) {
3589 vht_oper = NULL;
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003590 sdata_info(sdata,
Johannes Bergf2d9d272012-11-22 14:11:39 +01003591 "AP advertised VHT without HT, disabling both\n");
3592 sdata->flags |= IEEE80211_STA_DISABLE_HT;
3593 sdata->flags |= IEEE80211_STA_DISABLE_VHT;
Johannes Berg24398e32012-03-28 10:58:36 +02003594 }
3595 }
3596
Johannes Bergf2d9d272012-11-22 14:11:39 +01003597 ifmgd->flags |= ieee80211_determine_chantype(sdata, sband,
3598 cbss->channel,
3599 ht_oper, vht_oper,
3600 &chandef);
Johannes Berg04ecd252012-09-11 14:34:12 +02003601
Johannes Bergf2d9d272012-11-22 14:11:39 +01003602 sdata->needed_rx_chains = min(ieee80211_ht_vht_rx_chains(sdata, cbss),
3603 local->rx_chains);
Johannes Berg24398e32012-03-28 10:58:36 +02003604
Johannes Berg9caf0362012-11-29 01:25:20 +01003605 rcu_read_unlock();
3606
Johannes Berg04ecd252012-09-11 14:34:12 +02003607 /* will change later if needed */
3608 sdata->smps_mode = IEEE80211_SMPS_OFF;
3609
Johannes Bergf2d9d272012-11-22 14:11:39 +01003610 /*
3611 * If this fails (possibly due to channel context sharing
3612 * on incompatible channels, e.g. 80+80 and 160 sharing the
3613 * same control channel) try to use a smaller bandwidth.
3614 */
3615 ret = ieee80211_vif_use_channel(sdata, &chandef,
3616 IEEE80211_CHANCTX_SHARED);
Johannes Bergd601cd82013-02-07 20:54:51 +01003617 while (ret && chandef.width != NL80211_CHAN_WIDTH_20_NOHT) {
Johannes Bergf2d9d272012-11-22 14:11:39 +01003618 ifmgd->flags |= chandef_downgrade(&chandef);
Johannes Bergd601cd82013-02-07 20:54:51 +01003619 ret = ieee80211_vif_use_channel(sdata, &chandef,
3620 IEEE80211_CHANCTX_SHARED);
3621 }
Johannes Bergf2d9d272012-11-22 14:11:39 +01003622 return ret;
Johannes Bergb17166a2012-07-27 11:41:27 +02003623}
3624
3625static int ieee80211_prep_connection(struct ieee80211_sub_if_data *sdata,
3626 struct cfg80211_bss *cbss, bool assoc)
3627{
3628 struct ieee80211_local *local = sdata->local;
3629 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3630 struct ieee80211_bss *bss = (void *)cbss->priv;
3631 struct sta_info *new_sta = NULL;
3632 bool have_sta = false;
3633 int err;
3634
3635 if (WARN_ON(!ifmgd->auth_data && !ifmgd->assoc_data))
3636 return -EINVAL;
3637
3638 if (assoc) {
3639 rcu_read_lock();
3640 have_sta = sta_info_get(sdata, cbss->bssid);
3641 rcu_read_unlock();
3642 }
3643
3644 if (!have_sta) {
3645 new_sta = sta_info_alloc(sdata, cbss->bssid, GFP_KERNEL);
3646 if (!new_sta)
3647 return -ENOMEM;
3648 }
3649
Johannes Berg13e0c8e2012-07-27 10:43:16 +02003650 if (new_sta) {
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003651 u32 rates = 0, basic_rates = 0;
3652 bool have_higher_than_11mbit;
3653 int min_rate = INT_MAX, min_rate_index = -1;
Johannes Bergb17166a2012-07-27 11:41:27 +02003654 struct ieee80211_supported_band *sband;
Johannes Berg8cef2c92013-02-05 16:54:31 +01003655 const struct cfg80211_bss_ies *ies;
Johannes Bergb17166a2012-07-27 11:41:27 +02003656
3657 sband = local->hw.wiphy->bands[cbss->channel->band];
3658
3659 err = ieee80211_prep_channel(sdata, cbss);
3660 if (err) {
3661 sta_info_free(local, new_sta);
3662 return err;
3663 }
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003664
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003665 ieee80211_get_rates(sband, bss->supp_rates,
3666 bss->supp_rates_len,
3667 &rates, &basic_rates,
3668 &have_higher_than_11mbit,
3669 &min_rate, &min_rate_index);
3670
3671 /*
3672 * This used to be a workaround for basic rates missing
3673 * in the association response frame. Now that we no
3674 * longer use the basic rates from there, it probably
3675 * doesn't happen any more, but keep the workaround so
3676 * in case some *other* APs are buggy in different ways
3677 * we can connect -- with a warning.
3678 */
3679 if (!basic_rates && min_rate_index >= 0) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003680 sdata_info(sdata,
3681 "No basic rates, using min rate instead\n");
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003682 basic_rates = BIT(min_rate_index);
3683 }
3684
Johannes Berg13e0c8e2012-07-27 10:43:16 +02003685 new_sta->sta.supp_rates[cbss->channel->band] = rates;
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003686 sdata->vif.bss_conf.basic_rates = basic_rates;
3687
3688 /* cf. IEEE 802.11 9.2.12 */
Johannes Berg55de9082012-07-26 17:24:39 +02003689 if (cbss->channel->band == IEEE80211_BAND_2GHZ &&
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003690 have_higher_than_11mbit)
3691 sdata->flags |= IEEE80211_SDATA_OPERATING_GMODE;
3692 else
3693 sdata->flags &= ~IEEE80211_SDATA_OPERATING_GMODE;
3694
3695 memcpy(ifmgd->bssid, cbss->bssid, ETH_ALEN);
3696
Johannes Berg8c358bc2012-05-22 22:13:05 +02003697 /* set timing information */
3698 sdata->vif.bss_conf.beacon_int = cbss->beacon_interval;
Johannes Berg8cef2c92013-02-05 16:54:31 +01003699 rcu_read_lock();
Johannes Bergef429da2013-02-05 17:48:40 +01003700 ies = rcu_dereference(cbss->beacon_ies);
3701 if (ies) {
3702 const u8 *tim_ie;
3703
3704 sdata->vif.bss_conf.sync_tsf = ies->tsf;
3705 sdata->vif.bss_conf.sync_device_ts =
3706 bss->device_ts_beacon;
3707 tim_ie = cfg80211_find_ie(WLAN_EID_TIM,
3708 ies->data, ies->len);
3709 if (tim_ie && tim_ie[1] >= 2)
3710 sdata->vif.bss_conf.sync_dtim_count = tim_ie[2];
3711 else
3712 sdata->vif.bss_conf.sync_dtim_count = 0;
3713 } else if (!(local->hw.flags &
3714 IEEE80211_HW_TIMING_BEACON_ONLY)) {
3715 ies = rcu_dereference(cbss->proberesp_ies);
3716 /* must be non-NULL since beacon IEs were NULL */
3717 sdata->vif.bss_conf.sync_tsf = ies->tsf;
3718 sdata->vif.bss_conf.sync_device_ts =
3719 bss->device_ts_presp;
3720 sdata->vif.bss_conf.sync_dtim_count = 0;
3721 } else {
3722 sdata->vif.bss_conf.sync_tsf = 0;
3723 sdata->vif.bss_conf.sync_device_ts = 0;
3724 sdata->vif.bss_conf.sync_dtim_count = 0;
3725 }
Johannes Berg8cef2c92013-02-05 16:54:31 +01003726 rcu_read_unlock();
Johannes Berg8c358bc2012-05-22 22:13:05 +02003727
3728 /* tell driver about BSSID, basic rates and timing */
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003729 ieee80211_bss_info_change_notify(sdata,
Johannes Berg8c358bc2012-05-22 22:13:05 +02003730 BSS_CHANGED_BSSID | BSS_CHANGED_BASIC_RATES |
3731 BSS_CHANGED_BEACON_INT);
Johannes Berga1cf7752012-03-08 15:02:07 +01003732
3733 if (assoc)
Johannes Berg13e0c8e2012-07-27 10:43:16 +02003734 sta_info_pre_move_state(new_sta, IEEE80211_STA_AUTH);
Johannes Berga1cf7752012-03-08 15:02:07 +01003735
Johannes Berg13e0c8e2012-07-27 10:43:16 +02003736 err = sta_info_insert(new_sta);
3737 new_sta = NULL;
Johannes Berga1cf7752012-03-08 15:02:07 +01003738 if (err) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003739 sdata_info(sdata,
3740 "failed to insert STA entry for the AP (error %d)\n",
3741 err);
Johannes Berga1cf7752012-03-08 15:02:07 +01003742 return err;
3743 }
3744 } else
Joe Perchesb203ca32012-05-08 18:56:52 +00003745 WARN_ON_ONCE(!ether_addr_equal(ifmgd->bssid, cbss->bssid));
Johannes Berga1cf7752012-03-08 15:02:07 +01003746
3747 return 0;
3748}
3749
Johannes Berg77fdaa12009-07-07 03:45:17 +02003750/* config hooks */
3751int ieee80211_mgd_auth(struct ieee80211_sub_if_data *sdata,
3752 struct cfg80211_auth_request *req)
3753{
Johannes Berg66e67e42012-01-20 13:55:27 +01003754 struct ieee80211_local *local = sdata->local;
3755 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3756 struct ieee80211_mgd_auth_data *auth_data;
Johannes Berg77fdaa12009-07-07 03:45:17 +02003757 u16 auth_alg;
Johannes Berg66e67e42012-01-20 13:55:27 +01003758 int err;
3759
3760 /* prepare auth data structure */
Johannes Berg77fdaa12009-07-07 03:45:17 +02003761
3762 switch (req->auth_type) {
3763 case NL80211_AUTHTYPE_OPEN_SYSTEM:
3764 auth_alg = WLAN_AUTH_OPEN;
3765 break;
3766 case NL80211_AUTHTYPE_SHARED_KEY:
Johannes Berg66e67e42012-01-20 13:55:27 +01003767 if (IS_ERR(local->wep_tx_tfm))
Johannes Berg9dca9c42010-07-21 10:09:25 +02003768 return -EOPNOTSUPP;
Johannes Berg77fdaa12009-07-07 03:45:17 +02003769 auth_alg = WLAN_AUTH_SHARED_KEY;
3770 break;
3771 case NL80211_AUTHTYPE_FT:
3772 auth_alg = WLAN_AUTH_FT;
3773 break;
3774 case NL80211_AUTHTYPE_NETWORK_EAP:
3775 auth_alg = WLAN_AUTH_LEAP;
3776 break;
Jouni Malinen6b8ece32012-09-30 19:29:40 +03003777 case NL80211_AUTHTYPE_SAE:
3778 auth_alg = WLAN_AUTH_SAE;
3779 break;
Johannes Berg77fdaa12009-07-07 03:45:17 +02003780 default:
3781 return -EOPNOTSUPP;
3782 }
3783
Jouni Malinen6b8ece32012-09-30 19:29:40 +03003784 auth_data = kzalloc(sizeof(*auth_data) + req->sae_data_len +
3785 req->ie_len, GFP_KERNEL);
Johannes Berg66e67e42012-01-20 13:55:27 +01003786 if (!auth_data)
Johannes Berg77fdaa12009-07-07 03:45:17 +02003787 return -ENOMEM;
3788
Johannes Berg66e67e42012-01-20 13:55:27 +01003789 auth_data->bss = req->bss;
Johannes Berg77fdaa12009-07-07 03:45:17 +02003790
Jouni Malinen6b8ece32012-09-30 19:29:40 +03003791 if (req->sae_data_len >= 4) {
3792 __le16 *pos = (__le16 *) req->sae_data;
3793 auth_data->sae_trans = le16_to_cpu(pos[0]);
3794 auth_data->sae_status = le16_to_cpu(pos[1]);
3795 memcpy(auth_data->data, req->sae_data + 4,
3796 req->sae_data_len - 4);
3797 auth_data->data_len += req->sae_data_len - 4;
3798 }
3799
Johannes Berg77fdaa12009-07-07 03:45:17 +02003800 if (req->ie && req->ie_len) {
Jouni Malinen6b8ece32012-09-30 19:29:40 +03003801 memcpy(&auth_data->data[auth_data->data_len],
3802 req->ie, req->ie_len);
3803 auth_data->data_len += req->ie_len;
Johannes Berg77fdaa12009-07-07 03:45:17 +02003804 }
3805
Johannes Bergfffd0932009-07-08 14:22:54 +02003806 if (req->key && req->key_len) {
Johannes Berg66e67e42012-01-20 13:55:27 +01003807 auth_data->key_len = req->key_len;
3808 auth_data->key_idx = req->key_idx;
3809 memcpy(auth_data->key, req->key, req->key_len);
Johannes Bergfffd0932009-07-08 14:22:54 +02003810 }
3811
Johannes Berg66e67e42012-01-20 13:55:27 +01003812 auth_data->algorithm = auth_alg;
Johannes Berg77fdaa12009-07-07 03:45:17 +02003813
Johannes Berg66e67e42012-01-20 13:55:27 +01003814 /* try to authenticate/probe */
Johannes Bergf679f652009-12-23 13:15:34 +01003815
Johannes Berg66e67e42012-01-20 13:55:27 +01003816 mutex_lock(&ifmgd->mtx);
Johannes Berg77fdaa12009-07-07 03:45:17 +02003817
Johannes Berg66e67e42012-01-20 13:55:27 +01003818 if ((ifmgd->auth_data && !ifmgd->auth_data->done) ||
3819 ifmgd->assoc_data) {
3820 err = -EBUSY;
3821 goto err_free;
3822 }
Johannes Berg77fdaa12009-07-07 03:45:17 +02003823
Johannes Berg66e67e42012-01-20 13:55:27 +01003824 if (ifmgd->auth_data)
3825 ieee80211_destroy_auth_data(sdata, false);
Guy Eilam2a33bee2011-08-17 15:18:15 +03003826
Johannes Berg66e67e42012-01-20 13:55:27 +01003827 /* prep auth_data so we don't go into idle on disassoc */
3828 ifmgd->auth_data = auth_data;
3829
3830 if (ifmgd->associated)
Johannes Berg37ad3882012-02-24 13:50:54 +01003831 ieee80211_set_disassoc(sdata, 0, 0, false, NULL);
Johannes Berg66e67e42012-01-20 13:55:27 +01003832
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003833 sdata_info(sdata, "authenticate with %pM\n", req->bss->bssid);
Johannes Berg66e67e42012-01-20 13:55:27 +01003834
Johannes Berga1cf7752012-03-08 15:02:07 +01003835 err = ieee80211_prep_connection(sdata, req->bss, false);
3836 if (err)
Johannes Berg66e67e42012-01-20 13:55:27 +01003837 goto err_clear;
Guy Eilam2a33bee2011-08-17 15:18:15 +03003838
Johannes Berg66e67e42012-01-20 13:55:27 +01003839 err = ieee80211_probe_auth(sdata);
3840 if (err) {
Johannes Berg66e67e42012-01-20 13:55:27 +01003841 sta_info_destroy_addr(sdata, req->bss->bssid);
3842 goto err_clear;
Johannes Bergaf6b6372009-12-23 13:15:35 +01003843 }
3844
Johannes Berg66e67e42012-01-20 13:55:27 +01003845 /* hold our own reference */
Johannes Berg5b112d32013-02-01 01:49:58 +01003846 cfg80211_ref_bss(local->hw.wiphy, auth_data->bss);
Johannes Berg66e67e42012-01-20 13:55:27 +01003847 err = 0;
3848 goto out_unlock;
Johannes Berge5b900d2010-07-29 16:08:55 +02003849
Johannes Berg66e67e42012-01-20 13:55:27 +01003850 err_clear:
Eliad Peller3d2abdf2012-09-04 17:44:45 +03003851 memset(ifmgd->bssid, 0, ETH_ALEN);
3852 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BSSID);
Johannes Berg66e67e42012-01-20 13:55:27 +01003853 ifmgd->auth_data = NULL;
3854 err_free:
3855 kfree(auth_data);
3856 out_unlock:
3857 mutex_unlock(&ifmgd->mtx);
Johannes Berge5b900d2010-07-29 16:08:55 +02003858
Johannes Berg66e67e42012-01-20 13:55:27 +01003859 return err;
Johannes Bergaf6b6372009-12-23 13:15:35 +01003860}
3861
Johannes Berg77fdaa12009-07-07 03:45:17 +02003862int ieee80211_mgd_assoc(struct ieee80211_sub_if_data *sdata,
3863 struct cfg80211_assoc_request *req)
3864{
Johannes Berg66e67e42012-01-20 13:55:27 +01003865 struct ieee80211_local *local = sdata->local;
Johannes Berg77fdaa12009-07-07 03:45:17 +02003866 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01003867 struct ieee80211_bss *bss = (void *)req->bss->priv;
Johannes Berg66e67e42012-01-20 13:55:27 +01003868 struct ieee80211_mgd_assoc_data *assoc_data;
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02003869 const struct cfg80211_bss_ies *beacon_ies;
Johannes Berg4e74bfd2012-03-08 15:02:04 +01003870 struct ieee80211_supported_band *sband;
Johannes Bergb08fbbd2012-12-07 13:06:48 +01003871 const u8 *ssidie, *ht_ie, *vht_ie;
Guy Eilam2a33bee2011-08-17 15:18:15 +03003872 int i, err;
Johannes Berg77fdaa12009-07-07 03:45:17 +02003873
Johannes Berg66e67e42012-01-20 13:55:27 +01003874 assoc_data = kzalloc(sizeof(*assoc_data) + req->ie_len, GFP_KERNEL);
3875 if (!assoc_data)
Johannes Bergaf6b6372009-12-23 13:15:35 +01003876 return -ENOMEM;
Johannes Berg77fdaa12009-07-07 03:45:17 +02003877
Johannes Berg9caf0362012-11-29 01:25:20 +01003878 rcu_read_lock();
3879 ssidie = ieee80211_bss_get_ie(req->bss, WLAN_EID_SSID);
3880 if (!ssidie) {
3881 rcu_read_unlock();
3882 kfree(assoc_data);
3883 return -EINVAL;
3884 }
3885 memcpy(assoc_data->ssid, ssidie + 2, ssidie[1]);
3886 assoc_data->ssid_len = ssidie[1];
3887 rcu_read_unlock();
3888
Johannes Berg66e67e42012-01-20 13:55:27 +01003889 mutex_lock(&ifmgd->mtx);
3890
3891 if (ifmgd->associated)
Johannes Berg37ad3882012-02-24 13:50:54 +01003892 ieee80211_set_disassoc(sdata, 0, 0, false, NULL);
Johannes Berg66e67e42012-01-20 13:55:27 +01003893
3894 if (ifmgd->auth_data && !ifmgd->auth_data->done) {
3895 err = -EBUSY;
3896 goto err_free;
Guy Eilam2a33bee2011-08-17 15:18:15 +03003897 }
3898
Johannes Berg66e67e42012-01-20 13:55:27 +01003899 if (ifmgd->assoc_data) {
3900 err = -EBUSY;
3901 goto err_free;
3902 }
3903
3904 if (ifmgd->auth_data) {
3905 bool match;
3906
3907 /* keep sta info, bssid if matching */
Joe Perchesb203ca32012-05-08 18:56:52 +00003908 match = ether_addr_equal(ifmgd->bssid, req->bss->bssid);
Johannes Berg66e67e42012-01-20 13:55:27 +01003909 ieee80211_destroy_auth_data(sdata, match);
3910 }
3911
3912 /* prepare assoc data */
Johannes Berg19c3b832012-08-01 20:13:36 +02003913
Juuso Oikarinend8ec4432010-10-01 16:02:31 +03003914 ifmgd->beacon_crc_valid = false;
3915
Johannes Bergde5036a2012-03-08 15:02:03 +01003916 /*
3917 * IEEE802.11n does not allow TKIP/WEP as pairwise ciphers in HT mode.
3918 * We still associate in non-HT mode (11a/b/g) if any one of these
3919 * ciphers is configured as pairwise.
3920 * We can set this to true for non-11n hardware, that'll be checked
3921 * separately along with the peer capabilities.
3922 */
Johannes Berg1c4cb922012-05-30 15:57:00 +02003923 for (i = 0; i < req->crypto.n_ciphers_pairwise; i++) {
Johannes Berg77fdaa12009-07-07 03:45:17 +02003924 if (req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_WEP40 ||
3925 req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_TKIP ||
Johannes Berg1c4cb922012-05-30 15:57:00 +02003926 req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_WEP104) {
Johannes Berga8243b72012-11-22 14:32:09 +01003927 ifmgd->flags |= IEEE80211_STA_DISABLE_HT;
Mahesh Palivelad545dab2012-07-24 03:33:10 +00003928 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
Johannes Berg1c4cb922012-05-30 15:57:00 +02003929 netdev_info(sdata->dev,
Mahesh Palivelad545dab2012-07-24 03:33:10 +00003930 "disabling HT/VHT due to WEP/TKIP use\n");
Johannes Berg1c4cb922012-05-30 15:57:00 +02003931 }
3932 }
Johannes Berg77fdaa12009-07-07 03:45:17 +02003933
Mahesh Palivelad545dab2012-07-24 03:33:10 +00003934 if (req->flags & ASSOC_REQ_DISABLE_HT) {
Johannes Berga8243b72012-11-22 14:32:09 +01003935 ifmgd->flags |= IEEE80211_STA_DISABLE_HT;
Mahesh Palivelad545dab2012-07-24 03:33:10 +00003936 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
3937 }
Ben Greearef96a8422011-11-18 11:32:00 -08003938
Johannes Berg4e74bfd2012-03-08 15:02:04 +01003939 /* Also disable HT if we don't support it or the AP doesn't use WMM */
3940 sband = local->hw.wiphy->bands[req->bss->channel->band];
3941 if (!sband->ht_cap.ht_supported ||
Johannes Berg1c4cb922012-05-30 15:57:00 +02003942 local->hw.queues < IEEE80211_NUM_ACS || !bss->wmm_used) {
Johannes Berga8243b72012-11-22 14:32:09 +01003943 ifmgd->flags |= IEEE80211_STA_DISABLE_HT;
Johannes Berg1b49de22012-07-27 10:29:14 +02003944 if (!bss->wmm_used)
3945 netdev_info(sdata->dev,
3946 "disabling HT as WMM/QoS is not supported by the AP\n");
Johannes Berg1c4cb922012-05-30 15:57:00 +02003947 }
Johannes Berg4e74bfd2012-03-08 15:02:04 +01003948
Mahesh Palivelad545dab2012-07-24 03:33:10 +00003949 /* disable VHT if we don't support it or the AP doesn't use WMM */
3950 if (!sband->vht_cap.vht_supported ||
3951 local->hw.queues < IEEE80211_NUM_ACS || !bss->wmm_used) {
3952 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
Johannes Berg1b49de22012-07-27 10:29:14 +02003953 if (!bss->wmm_used)
3954 netdev_info(sdata->dev,
3955 "disabling VHT as WMM/QoS is not supported by the AP\n");
Mahesh Palivelad545dab2012-07-24 03:33:10 +00003956 }
3957
Ben Greearef96a8422011-11-18 11:32:00 -08003958 memcpy(&ifmgd->ht_capa, &req->ht_capa, sizeof(ifmgd->ht_capa));
3959 memcpy(&ifmgd->ht_capa_mask, &req->ht_capa_mask,
3960 sizeof(ifmgd->ht_capa_mask));
3961
Johannes Berg77fdaa12009-07-07 03:45:17 +02003962 if (req->ie && req->ie_len) {
Johannes Berg66e67e42012-01-20 13:55:27 +01003963 memcpy(assoc_data->ie, req->ie, req->ie_len);
3964 assoc_data->ie_len = req->ie_len;
3965 }
Johannes Berg77fdaa12009-07-07 03:45:17 +02003966
Johannes Berg66e67e42012-01-20 13:55:27 +01003967 assoc_data->bss = req->bss;
Johannes Bergf679f652009-12-23 13:15:34 +01003968
Johannes Bergaf6b6372009-12-23 13:15:35 +01003969 if (ifmgd->req_smps == IEEE80211_SMPS_AUTOMATIC) {
3970 if (ifmgd->powersave)
Johannes Berg04ecd252012-09-11 14:34:12 +02003971 sdata->smps_mode = IEEE80211_SMPS_DYNAMIC;
Johannes Bergaf6b6372009-12-23 13:15:35 +01003972 else
Johannes Berg04ecd252012-09-11 14:34:12 +02003973 sdata->smps_mode = IEEE80211_SMPS_OFF;
Johannes Bergaf6b6372009-12-23 13:15:35 +01003974 } else
Johannes Berg04ecd252012-09-11 14:34:12 +02003975 sdata->smps_mode = ifmgd->req_smps;
Johannes Bergaf6b6372009-12-23 13:15:35 +01003976
Johannes Berg66e67e42012-01-20 13:55:27 +01003977 assoc_data->capability = req->bss->capability;
Johannes Berg32c50572012-03-28 11:04:29 +02003978 assoc_data->wmm = bss->wmm_used &&
3979 (local->hw.queues >= IEEE80211_NUM_ACS);
Johannes Berg66e67e42012-01-20 13:55:27 +01003980 assoc_data->supp_rates = bss->supp_rates;
3981 assoc_data->supp_rates_len = bss->supp_rates_len;
Johannes Berg9dde6422012-05-16 23:43:19 +02003982
Johannes Berg9caf0362012-11-29 01:25:20 +01003983 rcu_read_lock();
Johannes Berg9dde6422012-05-16 23:43:19 +02003984 ht_ie = ieee80211_bss_get_ie(req->bss, WLAN_EID_HT_OPERATION);
3985 if (ht_ie && ht_ie[1] >= sizeof(struct ieee80211_ht_operation))
3986 assoc_data->ap_ht_param =
3987 ((struct ieee80211_ht_operation *)(ht_ie + 2))->ht_param;
3988 else
Johannes Berga8243b72012-11-22 14:32:09 +01003989 ifmgd->flags |= IEEE80211_STA_DISABLE_HT;
Johannes Bergb08fbbd2012-12-07 13:06:48 +01003990 vht_ie = ieee80211_bss_get_ie(req->bss, WLAN_EID_VHT_CAPABILITY);
3991 if (vht_ie && vht_ie[1] >= sizeof(struct ieee80211_vht_cap))
3992 memcpy(&assoc_data->ap_vht_cap, vht_ie + 2,
3993 sizeof(struct ieee80211_vht_cap));
3994 else
3995 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
Johannes Berg9caf0362012-11-29 01:25:20 +01003996 rcu_read_unlock();
Johannes Berg63f170e2009-12-23 13:15:33 +01003997
Kalle Valoab133152010-01-12 10:42:31 +02003998 if (bss->wmm_used && bss->uapsd_supported &&
3999 (sdata->local->hw.flags & IEEE80211_HW_SUPPORTS_UAPSD)) {
Johannes Berg76f03032012-03-08 15:02:05 +01004000 assoc_data->uapsd = true;
Kalle Valoab133152010-01-12 10:42:31 +02004001 ifmgd->flags |= IEEE80211_STA_UAPSD_ENABLED;
4002 } else {
Johannes Berg76f03032012-03-08 15:02:05 +01004003 assoc_data->uapsd = false;
Kalle Valoab133152010-01-12 10:42:31 +02004004 ifmgd->flags &= ~IEEE80211_STA_UAPSD_ENABLED;
4005 }
4006
Johannes Berg77fdaa12009-07-07 03:45:17 +02004007 if (req->prev_bssid)
Johannes Berg66e67e42012-01-20 13:55:27 +01004008 memcpy(assoc_data->prev_bssid, req->prev_bssid, ETH_ALEN);
Johannes Berg77fdaa12009-07-07 03:45:17 +02004009
4010 if (req->use_mfp) {
4011 ifmgd->mfp = IEEE80211_MFP_REQUIRED;
4012 ifmgd->flags |= IEEE80211_STA_MFP_ENABLED;
4013 } else {
4014 ifmgd->mfp = IEEE80211_MFP_DISABLED;
4015 ifmgd->flags &= ~IEEE80211_STA_MFP_ENABLED;
4016 }
4017
4018 if (req->crypto.control_port)
4019 ifmgd->flags |= IEEE80211_STA_CONTROL_PORT;
4020 else
4021 ifmgd->flags &= ~IEEE80211_STA_CONTROL_PORT;
4022
Johannes Berga621fa42010-08-27 14:26:54 +03004023 sdata->control_port_protocol = req->crypto.control_port_ethertype;
4024 sdata->control_port_no_encrypt = req->crypto.control_port_no_encrypt;
4025
Johannes Berg66e67e42012-01-20 13:55:27 +01004026 /* kick off associate process */
4027
4028 ifmgd->assoc_data = assoc_data;
Johannes Berg826262c2012-12-10 16:38:14 +02004029 ifmgd->dtim_period = 0;
Johannes Berg66e67e42012-01-20 13:55:27 +01004030
Johannes Berga1cf7752012-03-08 15:02:07 +01004031 err = ieee80211_prep_connection(sdata, req->bss, true);
4032 if (err)
4033 goto err_clear;
Johannes Berg66e67e42012-01-20 13:55:27 +01004034
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02004035 rcu_read_lock();
4036 beacon_ies = rcu_dereference(req->bss->beacon_ies);
Johannes Berg826262c2012-12-10 16:38:14 +02004037
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02004038 if (sdata->local->hw.flags & IEEE80211_HW_NEED_DTIM_BEFORE_ASSOC &&
4039 !beacon_ies) {
4040 /*
4041 * Wait up to one beacon interval ...
4042 * should this be more if we miss one?
4043 */
4044 sdata_info(sdata, "waiting for beacon from %pM\n",
4045 ifmgd->bssid);
4046 assoc_data->timeout = TU_TO_EXP_TIME(req->bss->beacon_interval);
Johannes Berg89afe612013-02-13 15:39:57 +01004047 assoc_data->timeout_started = true;
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02004048 assoc_data->need_beacon = true;
4049 } else if (beacon_ies) {
4050 const u8 *tim_ie = cfg80211_find_ie(WLAN_EID_TIM,
4051 beacon_ies->data,
4052 beacon_ies->len);
Johannes Bergef429da2013-02-05 17:48:40 +01004053 u8 dtim_count = 0;
4054
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02004055 if (tim_ie && tim_ie[1] >= sizeof(struct ieee80211_tim_ie)) {
4056 const struct ieee80211_tim_ie *tim;
4057 tim = (void *)(tim_ie + 2);
4058 ifmgd->dtim_period = tim->dtim_period;
Johannes Bergef429da2013-02-05 17:48:40 +01004059 dtim_count = tim->dtim_count;
Johannes Berg826262c2012-12-10 16:38:14 +02004060 }
Johannes Berg66e67e42012-01-20 13:55:27 +01004061 assoc_data->have_beacon = true;
Johannes Berg66e67e42012-01-20 13:55:27 +01004062 assoc_data->timeout = jiffies;
Johannes Berg89afe612013-02-13 15:39:57 +01004063 assoc_data->timeout_started = true;
Johannes Bergef429da2013-02-05 17:48:40 +01004064
4065 if (local->hw.flags & IEEE80211_HW_TIMING_BEACON_ONLY) {
4066 sdata->vif.bss_conf.sync_tsf = beacon_ies->tsf;
4067 sdata->vif.bss_conf.sync_device_ts =
4068 bss->device_ts_beacon;
4069 sdata->vif.bss_conf.sync_dtim_count = dtim_count;
4070 }
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02004071 } else {
4072 assoc_data->timeout = jiffies;
Johannes Berg89afe612013-02-13 15:39:57 +01004073 assoc_data->timeout_started = true;
Johannes Berg66e67e42012-01-20 13:55:27 +01004074 }
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02004075 rcu_read_unlock();
4076
Johannes Berg66e67e42012-01-20 13:55:27 +01004077 run_again(ifmgd, assoc_data->timeout);
4078
Paul Stewartfcff4f12012-02-23 17:59:53 -08004079 if (bss->corrupt_data) {
4080 char *corrupt_type = "data";
4081 if (bss->corrupt_data & IEEE80211_BSS_CORRUPT_BEACON) {
4082 if (bss->corrupt_data &
4083 IEEE80211_BSS_CORRUPT_PROBE_RESP)
4084 corrupt_type = "beacon and probe response";
4085 else
4086 corrupt_type = "beacon";
4087 } else if (bss->corrupt_data & IEEE80211_BSS_CORRUPT_PROBE_RESP)
4088 corrupt_type = "probe response";
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02004089 sdata_info(sdata, "associating with AP with corrupt %s\n",
4090 corrupt_type);
Paul Stewartfcff4f12012-02-23 17:59:53 -08004091 }
4092
Johannes Berg66e67e42012-01-20 13:55:27 +01004093 err = 0;
4094 goto out;
4095 err_clear:
Eliad Peller3d2abdf2012-09-04 17:44:45 +03004096 memset(ifmgd->bssid, 0, ETH_ALEN);
4097 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BSSID);
Johannes Berg66e67e42012-01-20 13:55:27 +01004098 ifmgd->assoc_data = NULL;
4099 err_free:
4100 kfree(assoc_data);
4101 out:
4102 mutex_unlock(&ifmgd->mtx);
4103
4104 return err;
Johannes Berg77fdaa12009-07-07 03:45:17 +02004105}
4106
4107int ieee80211_mgd_deauth(struct ieee80211_sub_if_data *sdata,
Johannes Berg63c9c5e2012-02-24 13:50:51 +01004108 struct cfg80211_deauth_request *req)
Johannes Berg77fdaa12009-07-07 03:45:17 +02004109{
4110 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Antonio Quartulli6ae16772012-09-07 13:28:52 +02004111 u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN];
Stanislaw Gruszka68632552012-10-15 14:52:41 +02004112 bool tx = !req->local_state_change;
Johannes Berg86552012012-10-29 09:46:31 +01004113 bool sent_frame = false;
Johannes Berg77fdaa12009-07-07 03:45:17 +02004114
Johannes Berg77fdaa12009-07-07 03:45:17 +02004115 mutex_lock(&ifmgd->mtx);
4116
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02004117 sdata_info(sdata,
4118 "deauthenticating from %pM by local choice (reason=%d)\n",
4119 req->bssid, req->reason_code);
Johannes Berg0ff71612009-09-26 14:45:41 +02004120
Johannes Berg86552012012-10-29 09:46:31 +01004121 if (ifmgd->auth_data) {
Emmanuel Grumbach8c7d8572012-07-25 01:42:36 +03004122 drv_mgd_prepare_tx(sdata->local, sdata);
Johannes Berg37ad3882012-02-24 13:50:54 +01004123 ieee80211_send_deauth_disassoc(sdata, req->bssid,
4124 IEEE80211_STYPE_DEAUTH,
Stanislaw Gruszka68632552012-10-15 14:52:41 +02004125 req->reason_code, tx,
Johannes Berg37ad3882012-02-24 13:50:54 +01004126 frame_buf);
Johannes Berg86552012012-10-29 09:46:31 +01004127 ieee80211_destroy_auth_data(sdata, false);
4128 mutex_unlock(&ifmgd->mtx);
4129
4130 sent_frame = tx;
4131 goto out;
Emmanuel Grumbach8c7d8572012-07-25 01:42:36 +03004132 }
4133
Johannes Berg86552012012-10-29 09:46:31 +01004134 if (ifmgd->associated &&
4135 ether_addr_equal(ifmgd->associated->bssid, req->bssid)) {
4136 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH,
4137 req->reason_code, tx, frame_buf);
4138 sent_frame = tx;
4139 }
Johannes Berg37ad3882012-02-24 13:50:54 +01004140 mutex_unlock(&ifmgd->mtx);
4141
Johannes Berg86552012012-10-29 09:46:31 +01004142 out:
Johannes Berg86552012012-10-29 09:46:31 +01004143 if (sent_frame)
4144 __cfg80211_send_deauth(sdata->dev, frame_buf,
4145 IEEE80211_DEAUTH_FRAME_LEN);
4146
Johannes Berg77fdaa12009-07-07 03:45:17 +02004147 return 0;
4148}
4149
4150int ieee80211_mgd_disassoc(struct ieee80211_sub_if_data *sdata,
Johannes Berg63c9c5e2012-02-24 13:50:51 +01004151 struct cfg80211_disassoc_request *req)
Johannes Berg77fdaa12009-07-07 03:45:17 +02004152{
4153 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jouni Malinene69e95d2010-03-29 23:29:31 -07004154 u8 bssid[ETH_ALEN];
Antonio Quartulli6ae16772012-09-07 13:28:52 +02004155 u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN];
Johannes Berg77fdaa12009-07-07 03:45:17 +02004156
Johannes Berg77fdaa12009-07-07 03:45:17 +02004157 mutex_lock(&ifmgd->mtx);
4158
Johannes Berg8d8b2612009-07-25 11:58:36 +02004159 /*
4160 * cfg80211 should catch this ... but it's racy since
4161 * we can receive a disassoc frame, process it, hand it
4162 * to cfg80211 while that's in a locked section already
4163 * trying to tell us that the user wants to disconnect.
4164 */
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01004165 if (ifmgd->associated != req->bss) {
Johannes Berg77fdaa12009-07-07 03:45:17 +02004166 mutex_unlock(&ifmgd->mtx);
4167 return -ENOLINK;
4168 }
4169
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02004170 sdata_info(sdata,
4171 "disassociating from %pM by local choice (reason=%d)\n",
4172 req->bss->bssid, req->reason_code);
Johannes Berg0ff71612009-09-26 14:45:41 +02004173
Jouni Malinene69e95d2010-03-29 23:29:31 -07004174 memcpy(bssid, req->bss->bssid, ETH_ALEN);
Johannes Berg37ad3882012-02-24 13:50:54 +01004175 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DISASSOC,
4176 req->reason_code, !req->local_state_change,
4177 frame_buf);
Johannes Berg77fdaa12009-07-07 03:45:17 +02004178 mutex_unlock(&ifmgd->mtx);
4179
Antonio Quartulli6ae16772012-09-07 13:28:52 +02004180 __cfg80211_send_disassoc(sdata->dev, frame_buf,
4181 IEEE80211_DEAUTH_FRAME_LEN);
Johannes Bergbc83b682009-11-29 12:19:06 +01004182
Johannes Berg77fdaa12009-07-07 03:45:17 +02004183 return 0;
4184}
Jouni Malinen026331c2010-02-15 12:53:10 +02004185
Eliad Pellerafa762f2012-04-23 14:45:15 +03004186void ieee80211_mgd_stop(struct ieee80211_sub_if_data *sdata)
Johannes Berg54e4ffb2012-02-25 21:48:08 +01004187{
4188 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
4189
4190 mutex_lock(&ifmgd->mtx);
4191 if (ifmgd->assoc_data)
4192 ieee80211_destroy_assoc_data(sdata, false);
4193 if (ifmgd->auth_data)
4194 ieee80211_destroy_auth_data(sdata, false);
4195 del_timer_sync(&ifmgd->timer);
4196 mutex_unlock(&ifmgd->mtx);
4197}
4198
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02004199void ieee80211_cqm_rssi_notify(struct ieee80211_vif *vif,
4200 enum nl80211_cqm_rssi_threshold_event rssi_event,
4201 gfp_t gfp)
4202{
4203 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
4204
Johannes Bergb5878a22010-04-07 16:48:40 +02004205 trace_api_cqm_rssi_notify(sdata, rssi_event);
4206
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02004207 cfg80211_cqm_rssi_notify(sdata->dev, rssi_event, gfp);
4208}
4209EXPORT_SYMBOL(ieee80211_cqm_rssi_notify);