blob: 9fce0f49cd10dbd5f0e43d8fd22ffe39ba812728 [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 Berg60f8b39c2008-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)
Johannes Bergcb236d22013-07-29 23:07:43 +020034#define IEEE80211_AUTH_TIMEOUT_LONG (HZ / 2)
Johannes Berg1672c0e32013-01-29 15:02:27 +010035#define IEEE80211_AUTH_TIMEOUT_SHORT (HZ / 10)
36#define IEEE80211_AUTH_MAX_TRIES 3
37#define IEEE80211_AUTH_WAIT_ASSOC (HZ * 5)
38#define IEEE80211_ASSOC_TIMEOUT (HZ / 5)
Johannes Bergcb236d22013-07-29 23:07:43 +020039#define IEEE80211_ASSOC_TIMEOUT_LONG (HZ / 2)
Johannes Berg1672c0e32013-01-29 15:02:27 +010040#define IEEE80211_ASSOC_TIMEOUT_SHORT (HZ / 10)
41#define IEEE80211_ASSOC_MAX_TRIES 3
Johannes Berg66e67e42012-01-20 13:55:27 +010042
Ben Greear180205b2011-02-04 15:30:24 -080043static int max_nullfunc_tries = 2;
44module_param(max_nullfunc_tries, int, 0644);
45MODULE_PARM_DESC(max_nullfunc_tries,
46 "Maximum nullfunc tx tries before disconnecting (reason 4).");
47
48static int max_probe_tries = 5;
49module_param(max_probe_tries, int, 0644);
50MODULE_PARM_DESC(max_probe_tries,
51 "Maximum probe tries before disconnecting (reason 4).");
Johannes Bergb291ba12009-07-10 15:29:03 +020052
53/*
Felix Fietkau7ccc8bd2010-11-19 22:55:38 +010054 * Beacon loss timeout is calculated as N frames times the
55 * advertised beacon interval. This may need to be somewhat
56 * higher than what hardware might detect to account for
57 * delays in the host processing frames. But since we also
58 * probe on beacon miss before declaring the connection lost
59 * default to what we want.
Johannes Bergb291ba12009-07-10 15:29:03 +020060 */
Ben Greear59c1ec22013-03-19 14:19:56 -070061static int beacon_loss_count = 7;
62module_param(beacon_loss_count, int, 0644);
63MODULE_PARM_DESC(beacon_loss_count,
64 "Number of beacon intervals before we decide beacon was lost.");
Felix Fietkau7ccc8bd2010-11-19 22:55:38 +010065
Johannes Bergb291ba12009-07-10 15:29:03 +020066/*
67 * Time the connection can be idle before we probe
68 * it to see if we can still talk to the AP.
69 */
Maxim Levitskyd1c50912009-07-31 18:54:23 +030070#define IEEE80211_CONNECTION_IDLE_TIME (30 * HZ)
Johannes Bergb291ba12009-07-10 15:29:03 +020071/*
72 * Time we wait for a probe response after sending
73 * a probe request because of beacon loss or for
74 * checking the connection still works.
75 */
Ben Greear180205b2011-02-04 15:30:24 -080076static int probe_wait_ms = 500;
77module_param(probe_wait_ms, int, 0644);
78MODULE_PARM_DESC(probe_wait_ms,
79 "Maximum time(ms) to wait for probe response"
80 " before disconnecting (reason 4).");
Jiri Bencf0706e82007-05-05 11:45:53 -070081
Jouni Malinen17e4ec12010-03-29 23:28:30 -070082/*
83 * Weight given to the latest Beacon frame when calculating average signal
84 * strength for Beacon frames received in the current BSS. This must be
85 * between 1 and 15.
86 */
87#define IEEE80211_SIGNAL_AVE_WEIGHT 3
88
Jouni Malinen391a2002010-08-27 22:22:00 +030089/*
90 * How many Beacon frames need to have been used in average signal strength
91 * before starting to indicate signal change events.
92 */
93#define IEEE80211_SIGNAL_AVE_MIN_COUNT 4
94
Johannes Berg77fdaa12009-07-07 03:45:17 +020095/*
Johannes Bergca386f32009-07-10 02:39:48 +020096 * We can have multiple work items (and connection probing)
97 * scheduling this timer, but we need to take care to only
98 * reschedule it when it should fire _earlier_ than it was
99 * asked for before, or if it's not pending right now. This
100 * function ensures that. Note that it then is required to
101 * run this function for all timeouts after the first one
102 * has happened -- the work that runs from this timer will
103 * do that.
104 */
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200105static void run_again(struct ieee80211_sub_if_data *sdata,
106 unsigned long timeout)
Johannes Bergca386f32009-07-10 02:39:48 +0200107{
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200108 sdata_assert_lock(sdata);
Johannes Bergca386f32009-07-10 02:39:48 +0200109
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200110 if (!timer_pending(&sdata->u.mgd.timer) ||
111 time_before(timeout, sdata->u.mgd.timer.expires))
112 mod_timer(&sdata->u.mgd.timer, timeout);
Johannes Bergca386f32009-07-10 02:39:48 +0200113}
114
Luis R. Rodriguezd3a910a2010-09-16 15:12:32 -0400115void ieee80211_sta_reset_beacon_monitor(struct ieee80211_sub_if_data *sdata)
Johannes Bergb291ba12009-07-10 15:29:03 +0200116{
Johannes Bergc1288b12012-01-19 09:29:57 +0100117 if (sdata->vif.driver_flags & IEEE80211_VIF_BEACON_FILTER)
Johannes Bergb291ba12009-07-10 15:29:03 +0200118 return;
119
Johannes Berg7eeff742012-07-18 10:27:27 +0200120 if (sdata->local->hw.flags & IEEE80211_HW_CONNECTION_MONITOR)
121 return;
122
Johannes Bergb291ba12009-07-10 15:29:03 +0200123 mod_timer(&sdata->u.mgd.bcn_mon_timer,
Felix Fietkau7ccc8bd2010-11-19 22:55:38 +0100124 round_jiffies_up(jiffies + sdata->u.mgd.beacon_timeout));
Johannes Bergb291ba12009-07-10 15:29:03 +0200125}
126
Luis R. Rodriguezbe099e82010-09-16 15:12:29 -0400127void ieee80211_sta_reset_conn_monitor(struct ieee80211_sub_if_data *sdata)
128{
Luis R. Rodriguez0c699c32010-09-16 15:12:30 -0400129 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
130
Stanislaw Gruszka86281722011-02-25 14:46:02 +0100131 if (unlikely(!sdata->u.mgd.associated))
132 return;
133
Luis R. Rodriguezbe099e82010-09-16 15:12:29 -0400134 if (sdata->local->hw.flags & IEEE80211_HW_CONNECTION_MONITOR)
135 return;
136
137 mod_timer(&sdata->u.mgd.conn_mon_timer,
138 round_jiffies_up(jiffies + IEEE80211_CONNECTION_IDLE_TIME));
Luis R. Rodriguez0c699c32010-09-16 15:12:30 -0400139
140 ifmgd->probe_send_count = 0;
Luis R. Rodriguezbe099e82010-09-16 15:12:29 -0400141}
142
Johannes Berg5484e232008-09-08 17:44:27 +0200143static int ecw2cw(int ecw)
Johannes Berg60f8b39c2008-09-08 17:44:22 +0200144{
Johannes Berg5484e232008-09-08 17:44:27 +0200145 return (1 << ecw) - 1;
Johannes Berg60f8b39c2008-09-08 17:44:22 +0200146}
147
Johannes Berg6565ec92013-02-08 14:52:32 +0100148static u32
149ieee80211_determine_chantype(struct ieee80211_sub_if_data *sdata,
150 struct ieee80211_supported_band *sband,
151 struct ieee80211_channel *channel,
152 const struct ieee80211_ht_operation *ht_oper,
153 const struct ieee80211_vht_operation *vht_oper,
Johannes Berg5cdaed12013-07-31 11:23:06 +0200154 struct cfg80211_chan_def *chandef, bool tracking)
Johannes Berg6565ec92013-02-08 14:52:32 +0100155{
Johannes Berg5cdaed12013-07-31 11:23:06 +0200156 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg6565ec92013-02-08 14:52:32 +0100157 struct cfg80211_chan_def vht_chandef;
158 u32 ht_cfreq, ret;
159
160 chandef->chan = channel;
161 chandef->width = NL80211_CHAN_WIDTH_20_NOHT;
162 chandef->center_freq1 = channel->center_freq;
163 chandef->center_freq2 = 0;
164
165 if (!ht_oper || !sband->ht_cap.ht_supported) {
166 ret = IEEE80211_STA_DISABLE_HT | IEEE80211_STA_DISABLE_VHT;
167 goto out;
168 }
169
170 chandef->width = NL80211_CHAN_WIDTH_20;
171
172 ht_cfreq = ieee80211_channel_to_frequency(ht_oper->primary_chan,
173 channel->band);
174 /* check that channel matches the right operating channel */
Johannes Berg5cdaed12013-07-31 11:23:06 +0200175 if (!tracking && channel->center_freq != ht_cfreq) {
Johannes Berg6565ec92013-02-08 14:52:32 +0100176 /*
177 * It's possible that some APs are confused here;
178 * Netgear WNDR3700 sometimes reports 4 higher than
179 * the actual channel in association responses, but
180 * since we look at probe response/beacon data here
181 * it should be OK.
182 */
Johannes Berg5cdaed12013-07-31 11:23:06 +0200183 sdata_info(sdata,
184 "Wrong control channel: center-freq: %d ht-cfreq: %d ht->primary_chan: %d band: %d - Disabling HT\n",
185 channel->center_freq, ht_cfreq,
186 ht_oper->primary_chan, channel->band);
Johannes Berg6565ec92013-02-08 14:52:32 +0100187 ret = IEEE80211_STA_DISABLE_HT | IEEE80211_STA_DISABLE_VHT;
188 goto out;
189 }
190
191 /* check 40 MHz support, if we have it */
192 if (sband->ht_cap.cap & IEEE80211_HT_CAP_SUP_WIDTH_20_40) {
193 switch (ht_oper->ht_param & IEEE80211_HT_PARAM_CHA_SEC_OFFSET) {
194 case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
195 chandef->width = NL80211_CHAN_WIDTH_40;
196 chandef->center_freq1 += 10;
197 break;
198 case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
199 chandef->width = NL80211_CHAN_WIDTH_40;
200 chandef->center_freq1 -= 10;
201 break;
202 }
203 } else {
204 /* 40 MHz (and 80 MHz) must be supported for VHT */
205 ret = IEEE80211_STA_DISABLE_VHT;
Johannes Berg85220d72013-03-25 18:29:27 +0100206 /* also mark 40 MHz disabled */
207 ret |= IEEE80211_STA_DISABLE_40MHZ;
Johannes Berg6565ec92013-02-08 14:52:32 +0100208 goto out;
209 }
210
211 if (!vht_oper || !sband->vht_cap.vht_supported) {
212 ret = IEEE80211_STA_DISABLE_VHT;
213 goto out;
214 }
215
216 vht_chandef.chan = channel;
217 vht_chandef.center_freq1 =
218 ieee80211_channel_to_frequency(vht_oper->center_freq_seg1_idx,
219 channel->band);
220 vht_chandef.center_freq2 = 0;
221
Johannes Berg6565ec92013-02-08 14:52:32 +0100222 switch (vht_oper->chan_width) {
223 case IEEE80211_VHT_CHANWIDTH_USE_HT:
224 vht_chandef.width = chandef->width;
225 break;
226 case IEEE80211_VHT_CHANWIDTH_80MHZ:
227 vht_chandef.width = NL80211_CHAN_WIDTH_80;
228 break;
229 case IEEE80211_VHT_CHANWIDTH_160MHZ:
230 vht_chandef.width = NL80211_CHAN_WIDTH_160;
231 break;
232 case IEEE80211_VHT_CHANWIDTH_80P80MHZ:
233 vht_chandef.width = NL80211_CHAN_WIDTH_80P80;
Johannes Berg6553bf042013-03-28 10:26:17 +0100234 vht_chandef.center_freq2 =
235 ieee80211_channel_to_frequency(
236 vht_oper->center_freq_seg2_idx,
237 channel->band);
Johannes Berg6565ec92013-02-08 14:52:32 +0100238 break;
239 default:
Johannes Berg5cdaed12013-07-31 11:23:06 +0200240 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_VHT))
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100241 sdata_info(sdata,
242 "AP VHT operation IE has invalid channel width (%d), disable VHT\n",
243 vht_oper->chan_width);
Johannes Berg6565ec92013-02-08 14:52:32 +0100244 ret = IEEE80211_STA_DISABLE_VHT;
245 goto out;
246 }
247
248 if (!cfg80211_chandef_valid(&vht_chandef)) {
Johannes Berg5cdaed12013-07-31 11:23:06 +0200249 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_VHT))
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100250 sdata_info(sdata,
251 "AP VHT information is invalid, disable VHT\n");
Johannes Berg6565ec92013-02-08 14:52:32 +0100252 ret = IEEE80211_STA_DISABLE_VHT;
253 goto out;
254 }
255
256 if (cfg80211_chandef_identical(chandef, &vht_chandef)) {
257 ret = 0;
258 goto out;
259 }
260
261 if (!cfg80211_chandef_compatible(chandef, &vht_chandef)) {
Johannes Berg5cdaed12013-07-31 11:23:06 +0200262 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_VHT))
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100263 sdata_info(sdata,
264 "AP VHT information doesn't match HT, disable VHT\n");
Johannes Berg6565ec92013-02-08 14:52:32 +0100265 ret = IEEE80211_STA_DISABLE_VHT;
266 goto out;
267 }
268
269 *chandef = vht_chandef;
270
271 ret = 0;
272
273out:
Johannes Berg586e01e2013-02-14 12:13:53 +0100274 /* don't print the message below for VHT mismatch if VHT is disabled */
275 if (ret & IEEE80211_STA_DISABLE_VHT)
276 vht_chandef = *chandef;
277
Johannes Bergddfe49b2013-07-31 20:52:03 +0200278 /*
279 * Ignore the DISABLED flag when we're already connected and only
280 * tracking the APs beacon for bandwidth changes - otherwise we
281 * might get disconnected here if we connect to an AP, update our
282 * regulatory information based on the AP's country IE and the
283 * information we have is wrong/outdated and disables the channel
284 * that we're actually using for the connection to the AP.
285 */
Johannes Berg6565ec92013-02-08 14:52:32 +0100286 while (!cfg80211_chandef_usable(sdata->local->hw.wiphy, chandef,
Johannes Bergddfe49b2013-07-31 20:52:03 +0200287 tracking ? 0 :
288 IEEE80211_CHAN_DISABLED)) {
Johannes Berg6565ec92013-02-08 14:52:32 +0100289 if (WARN_ON(chandef->width == NL80211_CHAN_WIDTH_20_NOHT)) {
290 ret = IEEE80211_STA_DISABLE_HT |
291 IEEE80211_STA_DISABLE_VHT;
Chris Wrightb56e4b82013-07-31 12:12:24 -0700292 break;
Johannes Berg6565ec92013-02-08 14:52:32 +0100293 }
294
Simon Wunderliche6b7cde2013-08-28 13:41:29 +0200295 ret |= ieee80211_chandef_downgrade(chandef);
Johannes Berg6565ec92013-02-08 14:52:32 +0100296 }
297
Johannes Berg5cdaed12013-07-31 11:23:06 +0200298 if (chandef->width != vht_chandef.width && !tracking)
Johannes Berg6565ec92013-02-08 14:52:32 +0100299 sdata_info(sdata,
300 "capabilities/regulatory prevented using AP HT/VHT configuration, downgraded\n");
301
302 WARN_ON_ONCE(!cfg80211_chandef_valid(chandef));
303 return ret;
304}
305
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100306static int ieee80211_config_bw(struct ieee80211_sub_if_data *sdata,
307 struct sta_info *sta,
308 const struct ieee80211_ht_operation *ht_oper,
309 const struct ieee80211_vht_operation *vht_oper,
310 const u8 *bssid, u32 *changed)
Johannes Bergd5522e02009-03-30 13:23:35 +0200311{
312 struct ieee80211_local *local = sdata->local;
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100313 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Bergd5522e02009-03-30 13:23:35 +0200314 struct ieee80211_supported_band *sband;
Johannes Berg55de9082012-07-26 17:24:39 +0200315 struct ieee80211_channel *chan;
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100316 struct cfg80211_chan_def chandef;
Johannes Berg9ed6bcc2009-05-08 20:47:39 +0200317 u16 ht_opmode;
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100318 u32 flags;
319 enum ieee80211_sta_rx_bandwidth new_sta_bw;
320 int ret;
321
322 /* if HT was/is disabled, don't track any bandwidth changes */
323 if (ifmgd->flags & IEEE80211_STA_DISABLE_HT || !ht_oper)
324 return 0;
325
326 /* don't check VHT if we associated as non-VHT station */
327 if (ifmgd->flags & IEEE80211_STA_DISABLE_VHT)
328 vht_oper = NULL;
Johannes Bergd5522e02009-03-30 13:23:35 +0200329
Johannes Berg11289582013-02-07 17:36:12 +0100330 if (WARN_ON_ONCE(!sta))
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100331 return -EINVAL;
Johannes Berg11289582013-02-07 17:36:12 +0100332
Johannes Bergf2d93302013-02-08 13:15:55 +0100333 chan = sdata->vif.bss_conf.chandef.chan;
Johannes Berg55de9082012-07-26 17:24:39 +0200334 sband = local->hw.wiphy->bands[chan->band];
Johannes Berg0aaffa92010-05-05 15:28:27 +0200335
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100336 /* calculate new channel (type) based on HT/VHT operation IEs */
337 flags = ieee80211_determine_chantype(sdata, sband, chan, ht_oper,
Johannes Berg5cdaed12013-07-31 11:23:06 +0200338 vht_oper, &chandef, true);
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100339
340 /*
341 * Downgrade the new channel if we associated with restricted
342 * capabilities. For example, if we associated as a 20 MHz STA
343 * to a 40 MHz AP (due to regulatory, capabilities or config
344 * reasons) then switching to a 40 MHz channel now won't do us
345 * any good -- we couldn't use it with the AP.
346 */
347 if (ifmgd->flags & IEEE80211_STA_DISABLE_80P80MHZ &&
348 chandef.width == NL80211_CHAN_WIDTH_80P80)
Simon Wunderliche6b7cde2013-08-28 13:41:29 +0200349 flags |= ieee80211_chandef_downgrade(&chandef);
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100350 if (ifmgd->flags & IEEE80211_STA_DISABLE_160MHZ &&
351 chandef.width == NL80211_CHAN_WIDTH_160)
Simon Wunderliche6b7cde2013-08-28 13:41:29 +0200352 flags |= ieee80211_chandef_downgrade(&chandef);
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100353 if (ifmgd->flags & IEEE80211_STA_DISABLE_40MHZ &&
354 chandef.width > NL80211_CHAN_WIDTH_20)
Simon Wunderliche6b7cde2013-08-28 13:41:29 +0200355 flags |= ieee80211_chandef_downgrade(&chandef);
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100356
357 if (cfg80211_chandef_identical(&chandef, &sdata->vif.bss_conf.chandef))
358 return 0;
359
360 sdata_info(sdata,
361 "AP %pM changed bandwidth, new config is %d MHz, width %d (%d/%d MHz)\n",
362 ifmgd->bssid, chandef.chan->center_freq, chandef.width,
363 chandef.center_freq1, chandef.center_freq2);
364
365 if (flags != (ifmgd->flags & (IEEE80211_STA_DISABLE_HT |
366 IEEE80211_STA_DISABLE_VHT |
367 IEEE80211_STA_DISABLE_40MHZ |
368 IEEE80211_STA_DISABLE_80P80MHZ |
369 IEEE80211_STA_DISABLE_160MHZ)) ||
370 !cfg80211_chandef_valid(&chandef)) {
371 sdata_info(sdata,
372 "AP %pM changed bandwidth in a way we can't support - disconnect\n",
373 ifmgd->bssid);
374 return -EINVAL;
Johannes Berg64f68e52012-03-28 10:58:37 +0200375 }
Johannes Bergd5522e02009-03-30 13:23:35 +0200376
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100377 switch (chandef.width) {
378 case NL80211_CHAN_WIDTH_20_NOHT:
379 case NL80211_CHAN_WIDTH_20:
380 new_sta_bw = IEEE80211_STA_RX_BW_20;
381 break;
382 case NL80211_CHAN_WIDTH_40:
383 new_sta_bw = IEEE80211_STA_RX_BW_40;
384 break;
385 case NL80211_CHAN_WIDTH_80:
386 new_sta_bw = IEEE80211_STA_RX_BW_80;
387 break;
388 case NL80211_CHAN_WIDTH_80P80:
389 case NL80211_CHAN_WIDTH_160:
390 new_sta_bw = IEEE80211_STA_RX_BW_160;
391 break;
392 default:
393 return -EINVAL;
394 }
Johannes Bergd5522e02009-03-30 13:23:35 +0200395
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100396 if (new_sta_bw > sta->cur_max_bandwidth)
397 new_sta_bw = sta->cur_max_bandwidth;
Johannes Berg64f68e52012-03-28 10:58:37 +0200398
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100399 if (new_sta_bw < sta->sta.bandwidth) {
400 sta->sta.bandwidth = new_sta_bw;
401 rate_control_rate_update(local, sband, sta,
402 IEEE80211_RC_BW_CHANGED);
403 }
Rajkumar Manoharan7cc44ed2011-09-16 15:32:34 +0530404
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100405 ret = ieee80211_vif_change_bandwidth(sdata, &chandef, changed);
406 if (ret) {
407 sdata_info(sdata,
408 "AP %pM changed bandwidth to incompatible one - disconnect\n",
409 ifmgd->bssid);
410 return ret;
411 }
412
413 if (new_sta_bw > sta->sta.bandwidth) {
414 sta->sta.bandwidth = new_sta_bw;
415 rate_control_rate_update(local, sband, sta,
416 IEEE80211_RC_BW_CHANGED);
Johannes Berg0aaffa92010-05-05 15:28:27 +0200417 }
Johannes Bergd5522e02009-03-30 13:23:35 +0200418
Johannes Berg074d46d2012-03-15 19:45:16 +0100419 ht_opmode = le16_to_cpu(ht_oper->operation_mode);
Johannes Bergd5522e02009-03-30 13:23:35 +0200420
421 /* if bss configuration changed store the new one */
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100422 if (sdata->vif.bss_conf.ht_operation_mode != ht_opmode) {
423 *changed |= BSS_CHANGED_HT;
Johannes Berg9ed6bcc2009-05-08 20:47:39 +0200424 sdata->vif.bss_conf.ht_operation_mode = ht_opmode;
Johannes Bergd5522e02009-03-30 13:23:35 +0200425 }
426
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100427 return 0;
Johannes Bergd5522e02009-03-30 13:23:35 +0200428}
429
Johannes Berg9c6bd792008-09-11 00:01:52 +0200430/* frame sending functions */
431
Johannes Berg66e67e42012-01-20 13:55:27 +0100432static void ieee80211_add_ht_ie(struct ieee80211_sub_if_data *sdata,
Johannes Berg9dde6422012-05-16 23:43:19 +0200433 struct sk_buff *skb, u8 ap_ht_param,
Johannes Berg66e67e42012-01-20 13:55:27 +0100434 struct ieee80211_supported_band *sband,
435 struct ieee80211_channel *channel,
436 enum ieee80211_smps_mode smps)
437{
Johannes Berg66e67e42012-01-20 13:55:27 +0100438 u8 *pos;
439 u32 flags = channel->flags;
440 u16 cap;
441 struct ieee80211_sta_ht_cap ht_cap;
442
443 BUILD_BUG_ON(sizeof(ht_cap) != sizeof(sband->ht_cap));
444
Johannes Berg66e67e42012-01-20 13:55:27 +0100445 memcpy(&ht_cap, &sband->ht_cap, sizeof(ht_cap));
446 ieee80211_apply_htcap_overrides(sdata, &ht_cap);
447
Johannes Berg66e67e42012-01-20 13:55:27 +0100448 /* determine capability flags */
449 cap = ht_cap.cap;
450
Johannes Berg9dde6422012-05-16 23:43:19 +0200451 switch (ap_ht_param & IEEE80211_HT_PARAM_CHA_SEC_OFFSET) {
Johannes Berg66e67e42012-01-20 13:55:27 +0100452 case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
453 if (flags & IEEE80211_CHAN_NO_HT40PLUS) {
454 cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
455 cap &= ~IEEE80211_HT_CAP_SGI_40;
456 }
457 break;
458 case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
459 if (flags & IEEE80211_CHAN_NO_HT40MINUS) {
460 cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
461 cap &= ~IEEE80211_HT_CAP_SGI_40;
462 }
463 break;
464 }
465
Johannes Berg24398e32012-03-28 10:58:36 +0200466 /*
467 * If 40 MHz was disabled associate as though we weren't
468 * capable of 40 MHz -- some broken APs will never fall
469 * back to trying to transmit in 20 MHz.
470 */
471 if (sdata->u.mgd.flags & IEEE80211_STA_DISABLE_40MHZ) {
472 cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
473 cap &= ~IEEE80211_HT_CAP_SGI_40;
474 }
475
Johannes Berg66e67e42012-01-20 13:55:27 +0100476 /* set SM PS mode properly */
477 cap &= ~IEEE80211_HT_CAP_SM_PS;
478 switch (smps) {
479 case IEEE80211_SMPS_AUTOMATIC:
480 case IEEE80211_SMPS_NUM_MODES:
481 WARN_ON(1);
482 case IEEE80211_SMPS_OFF:
483 cap |= WLAN_HT_CAP_SM_PS_DISABLED <<
484 IEEE80211_HT_CAP_SM_PS_SHIFT;
485 break;
486 case IEEE80211_SMPS_STATIC:
487 cap |= WLAN_HT_CAP_SM_PS_STATIC <<
488 IEEE80211_HT_CAP_SM_PS_SHIFT;
489 break;
490 case IEEE80211_SMPS_DYNAMIC:
491 cap |= WLAN_HT_CAP_SM_PS_DYNAMIC <<
492 IEEE80211_HT_CAP_SM_PS_SHIFT;
493 break;
494 }
495
496 /* reserve and fill IE */
497 pos = skb_put(skb, sizeof(struct ieee80211_ht_cap) + 2);
498 ieee80211_ie_build_ht_cap(pos, &ht_cap, cap);
499}
500
Mahesh Palivelad545dab2012-07-24 03:33:10 +0000501static void ieee80211_add_vht_ie(struct ieee80211_sub_if_data *sdata,
502 struct sk_buff *skb,
Johannes Bergb08fbbd2012-12-07 13:06:48 +0100503 struct ieee80211_supported_band *sband,
504 struct ieee80211_vht_cap *ap_vht_cap)
Mahesh Palivelad545dab2012-07-24 03:33:10 +0000505{
506 u8 *pos;
507 u32 cap;
508 struct ieee80211_sta_vht_cap vht_cap;
509
510 BUILD_BUG_ON(sizeof(vht_cap) != sizeof(sband->vht_cap));
511
512 memcpy(&vht_cap, &sband->vht_cap, sizeof(vht_cap));
Johannes Bergdd5ecfe2013-02-21 17:40:19 +0100513 ieee80211_apply_vhtcap_overrides(sdata, &vht_cap);
Mahesh Palivelad545dab2012-07-24 03:33:10 +0000514
515 /* determine capability flags */
516 cap = vht_cap.cap;
517
Johannes Bergf2d9d272012-11-22 14:11:39 +0100518 if (sdata->u.mgd.flags & IEEE80211_STA_DISABLE_80P80MHZ) {
519 cap &= ~IEEE80211_VHT_CAP_SUPP_CHAN_WIDTH_160_80PLUS80MHZ;
520 cap |= IEEE80211_VHT_CAP_SUPP_CHAN_WIDTH_160MHZ;
521 }
522
523 if (sdata->u.mgd.flags & IEEE80211_STA_DISABLE_160MHZ) {
524 cap &= ~IEEE80211_VHT_CAP_SHORT_GI_160;
525 cap &= ~IEEE80211_VHT_CAP_SUPP_CHAN_WIDTH_160MHZ;
526 }
527
Johannes Bergb08fbbd2012-12-07 13:06:48 +0100528 /*
529 * Some APs apparently get confused if our capabilities are better
530 * than theirs, so restrict what we advertise in the assoc request.
531 */
532 if (!(ap_vht_cap->vht_cap_info &
533 cpu_to_le32(IEEE80211_VHT_CAP_SU_BEAMFORMER_CAPABLE)))
534 cap &= ~IEEE80211_VHT_CAP_SU_BEAMFORMEE_CAPABLE;
535
Mahesh Palivelad545dab2012-07-24 03:33:10 +0000536 /* reserve and fill IE */
Mahesh Palivelad4950282012-10-10 11:25:40 +0000537 pos = skb_put(skb, sizeof(struct ieee80211_vht_cap) + 2);
Mahesh Palivelad545dab2012-07-24 03:33:10 +0000538 ieee80211_ie_build_vht_cap(pos, &vht_cap, cap);
539}
540
Johannes Berg66e67e42012-01-20 13:55:27 +0100541static void ieee80211_send_assoc(struct ieee80211_sub_if_data *sdata)
542{
543 struct ieee80211_local *local = sdata->local;
544 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
545 struct ieee80211_mgd_assoc_data *assoc_data = ifmgd->assoc_data;
546 struct sk_buff *skb;
547 struct ieee80211_mgmt *mgmt;
548 u8 *pos, qos_info;
549 size_t offset = 0, noffset;
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200550 int i, count, rates_len, supp_rates_len, shift;
Johannes Berg66e67e42012-01-20 13:55:27 +0100551 u16 capab;
552 struct ieee80211_supported_band *sband;
Johannes Berg55de9082012-07-26 17:24:39 +0200553 struct ieee80211_chanctx_conf *chanctx_conf;
554 struct ieee80211_channel *chan;
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200555 u32 rate_flags, rates = 0;
Johannes Berg66e67e42012-01-20 13:55:27 +0100556
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200557 sdata_assert_lock(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +0100558
Johannes Berg55de9082012-07-26 17:24:39 +0200559 rcu_read_lock();
560 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
561 if (WARN_ON(!chanctx_conf)) {
562 rcu_read_unlock();
563 return;
564 }
Johannes Berg4bf88532012-11-09 11:39:59 +0100565 chan = chanctx_conf->def.chan;
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200566 rate_flags = ieee80211_chandef_rate_flags(&chanctx_conf->def);
Johannes Berg55de9082012-07-26 17:24:39 +0200567 rcu_read_unlock();
568 sband = local->hw.wiphy->bands[chan->band];
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200569 shift = ieee80211_vif_get_shift(&sdata->vif);
Johannes Berg66e67e42012-01-20 13:55:27 +0100570
571 if (assoc_data->supp_rates_len) {
572 /*
573 * Get all rates supported by the device and the AP as
574 * some APs don't like getting a superset of their rates
575 * in the association request (e.g. D-Link DAP 1353 in
576 * b-only mode)...
577 */
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200578 rates_len = ieee80211_parse_bitrates(&chanctx_conf->def, sband,
579 assoc_data->supp_rates,
580 assoc_data->supp_rates_len,
581 &rates);
Johannes Berg66e67e42012-01-20 13:55:27 +0100582 } else {
583 /*
584 * In case AP not provide any supported rates information
585 * before association, we send information element(s) with
586 * all rates that we support.
587 */
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200588 rates_len = 0;
589 for (i = 0; i < sband->n_bitrates; i++) {
590 if ((rate_flags & sband->bitrates[i].flags)
591 != rate_flags)
592 continue;
593 rates |= BIT(i);
594 rates_len++;
595 }
Johannes Berg66e67e42012-01-20 13:55:27 +0100596 }
597
598 skb = alloc_skb(local->hw.extra_tx_headroom +
599 sizeof(*mgmt) + /* bit too much but doesn't matter */
600 2 + assoc_data->ssid_len + /* SSID */
601 4 + rates_len + /* (extended) rates */
602 4 + /* power capability */
603 2 + 2 * sband->n_channels + /* supported channels */
604 2 + sizeof(struct ieee80211_ht_cap) + /* HT */
Mahesh Palivelad4950282012-10-10 11:25:40 +0000605 2 + sizeof(struct ieee80211_vht_cap) + /* VHT */
Johannes Berg66e67e42012-01-20 13:55:27 +0100606 assoc_data->ie_len + /* extra IEs */
607 9, /* WMM */
608 GFP_KERNEL);
609 if (!skb)
610 return;
611
612 skb_reserve(skb, local->hw.extra_tx_headroom);
613
614 capab = WLAN_CAPABILITY_ESS;
615
616 if (sband->band == IEEE80211_BAND_2GHZ) {
617 if (!(local->hw.flags & IEEE80211_HW_2GHZ_SHORT_SLOT_INCAPABLE))
618 capab |= WLAN_CAPABILITY_SHORT_SLOT_TIME;
619 if (!(local->hw.flags & IEEE80211_HW_2GHZ_SHORT_PREAMBLE_INCAPABLE))
620 capab |= WLAN_CAPABILITY_SHORT_PREAMBLE;
621 }
622
623 if (assoc_data->capability & WLAN_CAPABILITY_PRIVACY)
624 capab |= WLAN_CAPABILITY_PRIVACY;
625
626 if ((assoc_data->capability & WLAN_CAPABILITY_SPECTRUM_MGMT) &&
627 (local->hw.flags & IEEE80211_HW_SPECTRUM_MGMT))
628 capab |= WLAN_CAPABILITY_SPECTRUM_MGMT;
629
630 mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24);
631 memset(mgmt, 0, 24);
632 memcpy(mgmt->da, assoc_data->bss->bssid, ETH_ALEN);
633 memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN);
634 memcpy(mgmt->bssid, assoc_data->bss->bssid, ETH_ALEN);
635
636 if (!is_zero_ether_addr(assoc_data->prev_bssid)) {
637 skb_put(skb, 10);
638 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
639 IEEE80211_STYPE_REASSOC_REQ);
640 mgmt->u.reassoc_req.capab_info = cpu_to_le16(capab);
641 mgmt->u.reassoc_req.listen_interval =
642 cpu_to_le16(local->hw.conf.listen_interval);
643 memcpy(mgmt->u.reassoc_req.current_ap, assoc_data->prev_bssid,
644 ETH_ALEN);
645 } else {
646 skb_put(skb, 4);
647 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
648 IEEE80211_STYPE_ASSOC_REQ);
649 mgmt->u.assoc_req.capab_info = cpu_to_le16(capab);
650 mgmt->u.assoc_req.listen_interval =
651 cpu_to_le16(local->hw.conf.listen_interval);
652 }
653
654 /* SSID */
655 pos = skb_put(skb, 2 + assoc_data->ssid_len);
656 *pos++ = WLAN_EID_SSID;
657 *pos++ = assoc_data->ssid_len;
658 memcpy(pos, assoc_data->ssid, assoc_data->ssid_len);
659
660 /* add all rates which were marked to be used above */
661 supp_rates_len = rates_len;
662 if (supp_rates_len > 8)
663 supp_rates_len = 8;
664
665 pos = skb_put(skb, supp_rates_len + 2);
666 *pos++ = WLAN_EID_SUPP_RATES;
667 *pos++ = supp_rates_len;
668
669 count = 0;
670 for (i = 0; i < sband->n_bitrates; i++) {
671 if (BIT(i) & rates) {
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200672 int rate = DIV_ROUND_UP(sband->bitrates[i].bitrate,
673 5 * (1 << shift));
674 *pos++ = (u8) rate;
Johannes Berg66e67e42012-01-20 13:55:27 +0100675 if (++count == 8)
676 break;
677 }
678 }
679
680 if (rates_len > count) {
681 pos = skb_put(skb, rates_len - count + 2);
682 *pos++ = WLAN_EID_EXT_SUPP_RATES;
683 *pos++ = rates_len - count;
684
685 for (i++; i < sband->n_bitrates; i++) {
686 if (BIT(i) & rates) {
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200687 int rate;
688 rate = DIV_ROUND_UP(sband->bitrates[i].bitrate,
689 5 * (1 << shift));
690 *pos++ = (u8) rate;
Johannes Berg66e67e42012-01-20 13:55:27 +0100691 }
692 }
693 }
694
695 if (capab & WLAN_CAPABILITY_SPECTRUM_MGMT) {
696 /* 1. power capabilities */
697 pos = skb_put(skb, 4);
698 *pos++ = WLAN_EID_PWR_CAPABILITY;
699 *pos++ = 2;
700 *pos++ = 0; /* min tx power */
Simon Wunderlich0430c882013-07-08 16:55:55 +0200701 /* max tx power */
702 *pos++ = ieee80211_chandef_max_power(&chanctx_conf->def);
Johannes Berg66e67e42012-01-20 13:55:27 +0100703
704 /* 2. supported channels */
705 /* TODO: get this in reg domain format */
706 pos = skb_put(skb, 2 * sband->n_channels + 2);
707 *pos++ = WLAN_EID_SUPPORTED_CHANNELS;
708 *pos++ = 2 * sband->n_channels;
709 for (i = 0; i < sband->n_channels; i++) {
710 *pos++ = ieee80211_frequency_to_channel(
711 sband->channels[i].center_freq);
712 *pos++ = 1; /* one channel in the subband*/
713 }
714 }
715
716 /* if present, add any custom IEs that go before HT */
717 if (assoc_data->ie_len && assoc_data->ie) {
718 static const u8 before_ht[] = {
719 WLAN_EID_SSID,
720 WLAN_EID_SUPP_RATES,
721 WLAN_EID_EXT_SUPP_RATES,
722 WLAN_EID_PWR_CAPABILITY,
723 WLAN_EID_SUPPORTED_CHANNELS,
724 WLAN_EID_RSN,
725 WLAN_EID_QOS_CAPA,
726 WLAN_EID_RRM_ENABLED_CAPABILITIES,
727 WLAN_EID_MOBILITY_DOMAIN,
728 WLAN_EID_SUPPORTED_REGULATORY_CLASSES,
729 };
730 noffset = ieee80211_ie_split(assoc_data->ie, assoc_data->ie_len,
731 before_ht, ARRAY_SIZE(before_ht),
732 offset);
733 pos = skb_put(skb, noffset - offset);
734 memcpy(pos, assoc_data->ie + offset, noffset - offset);
735 offset = noffset;
736 }
737
Johannes Bergf2d9d272012-11-22 14:11:39 +0100738 if (WARN_ON_ONCE((ifmgd->flags & IEEE80211_STA_DISABLE_HT) &&
739 !(ifmgd->flags & IEEE80211_STA_DISABLE_VHT)))
740 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
741
Johannes Berga8243b72012-11-22 14:32:09 +0100742 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_HT))
Johannes Berg9dde6422012-05-16 23:43:19 +0200743 ieee80211_add_ht_ie(sdata, skb, assoc_data->ap_ht_param,
Johannes Berg04ecd252012-09-11 14:34:12 +0200744 sband, chan, sdata->smps_mode);
Johannes Berg66e67e42012-01-20 13:55:27 +0100745
Mahesh Palivelad545dab2012-07-24 03:33:10 +0000746 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_VHT))
Johannes Bergb08fbbd2012-12-07 13:06:48 +0100747 ieee80211_add_vht_ie(sdata, skb, sband,
748 &assoc_data->ap_vht_cap);
Mahesh Palivelad545dab2012-07-24 03:33:10 +0000749
Johannes Berg66e67e42012-01-20 13:55:27 +0100750 /* if present, add any custom non-vendor IEs that go after HT */
751 if (assoc_data->ie_len && assoc_data->ie) {
752 noffset = ieee80211_ie_split_vendor(assoc_data->ie,
753 assoc_data->ie_len,
754 offset);
755 pos = skb_put(skb, noffset - offset);
756 memcpy(pos, assoc_data->ie + offset, noffset - offset);
757 offset = noffset;
758 }
759
Johannes Berg76f03032012-03-08 15:02:05 +0100760 if (assoc_data->wmm) {
761 if (assoc_data->uapsd) {
Eliad Pellerdc41e4d2012-03-14 16:15:03 +0200762 qos_info = ifmgd->uapsd_queues;
763 qos_info |= (ifmgd->uapsd_max_sp_len <<
Johannes Berg66e67e42012-01-20 13:55:27 +0100764 IEEE80211_WMM_IE_STA_QOSINFO_SP_SHIFT);
765 } else {
766 qos_info = 0;
767 }
768
769 pos = skb_put(skb, 9);
770 *pos++ = WLAN_EID_VENDOR_SPECIFIC;
771 *pos++ = 7; /* len */
772 *pos++ = 0x00; /* Microsoft OUI 00:50:F2 */
773 *pos++ = 0x50;
774 *pos++ = 0xf2;
775 *pos++ = 2; /* WME */
776 *pos++ = 0; /* WME info */
777 *pos++ = 1; /* WME ver */
778 *pos++ = qos_info;
779 }
780
781 /* add any remaining custom (i.e. vendor specific here) IEs */
782 if (assoc_data->ie_len && assoc_data->ie) {
783 noffset = assoc_data->ie_len;
784 pos = skb_put(skb, noffset - offset);
785 memcpy(pos, assoc_data->ie + offset, noffset - offset);
786 }
787
Johannes Berga1845fc2012-06-27 13:18:36 +0200788 drv_mgd_prepare_tx(local, sdata);
789
Johannes Berg66e67e42012-01-20 13:55:27 +0100790 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
Johannes Berg1672c0e32013-01-29 15:02:27 +0100791 if (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS)
792 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_CTL_REQ_TX_STATUS |
793 IEEE80211_TX_INTFL_MLME_CONN_TX;
Johannes Berg66e67e42012-01-20 13:55:27 +0100794 ieee80211_tx_skb(sdata, skb);
795}
796
Kalle Valo572e0012009-02-10 17:09:31 +0200797void ieee80211_send_pspoll(struct ieee80211_local *local,
798 struct ieee80211_sub_if_data *sdata)
799{
Kalle Valo572e0012009-02-10 17:09:31 +0200800 struct ieee80211_pspoll *pspoll;
801 struct sk_buff *skb;
Kalle Valo572e0012009-02-10 17:09:31 +0200802
Kalle Valod8cd1892010-01-05 20:16:26 +0200803 skb = ieee80211_pspoll_get(&local->hw, &sdata->vif);
804 if (!skb)
Kalle Valo572e0012009-02-10 17:09:31 +0200805 return;
Kalle Valo572e0012009-02-10 17:09:31 +0200806
Kalle Valod8cd1892010-01-05 20:16:26 +0200807 pspoll = (struct ieee80211_pspoll *) skb->data;
808 pspoll->frame_control |= cpu_to_le16(IEEE80211_FCTL_PM);
Kalle Valo572e0012009-02-10 17:09:31 +0200809
Johannes Berg62ae67b2009-11-18 18:42:05 +0100810 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
811 ieee80211_tx_skb(sdata, skb);
Kalle Valo572e0012009-02-10 17:09:31 +0200812}
813
Johannes Berg965beda2009-04-16 13:17:24 +0200814void ieee80211_send_nullfunc(struct ieee80211_local *local,
815 struct ieee80211_sub_if_data *sdata,
816 int powersave)
817{
818 struct sk_buff *skb;
Kalle Valod8cd1892010-01-05 20:16:26 +0200819 struct ieee80211_hdr_3addr *nullfunc;
Rajkumar Manoharanb6f35302011-09-29 20:34:04 +0530820 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg965beda2009-04-16 13:17:24 +0200821
Kalle Valod8cd1892010-01-05 20:16:26 +0200822 skb = ieee80211_nullfunc_get(&local->hw, &sdata->vif);
823 if (!skb)
Johannes Berg965beda2009-04-16 13:17:24 +0200824 return;
825
Kalle Valod8cd1892010-01-05 20:16:26 +0200826 nullfunc = (struct ieee80211_hdr_3addr *) skb->data;
Johannes Berg965beda2009-04-16 13:17:24 +0200827 if (powersave)
Kalle Valod8cd1892010-01-05 20:16:26 +0200828 nullfunc->frame_control |= cpu_to_le16(IEEE80211_FCTL_PM);
Johannes Berg965beda2009-04-16 13:17:24 +0200829
Seth Forshee6c17b772013-02-11 11:21:07 -0600830 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT |
831 IEEE80211_TX_INTFL_OFFCHAN_TX_OK;
Pontus Fuchsff40b422013-06-04 12:44:52 +0200832
833 if (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS)
834 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_CTL_REQ_TX_STATUS;
835
Stanislaw Gruszka392b9ff2013-08-27 11:36:35 +0200836 if (ifmgd->flags & IEEE80211_STA_CONNECTION_POLL)
Rajkumar Manoharanb6f35302011-09-29 20:34:04 +0530837 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_CTL_USE_MINRATE;
838
Johannes Berg62ae67b2009-11-18 18:42:05 +0100839 ieee80211_tx_skb(sdata, skb);
Johannes Berg965beda2009-04-16 13:17:24 +0200840}
841
Felix Fietkaud5242152010-01-08 18:06:26 +0100842static void ieee80211_send_4addr_nullfunc(struct ieee80211_local *local,
843 struct ieee80211_sub_if_data *sdata)
844{
845 struct sk_buff *skb;
846 struct ieee80211_hdr *nullfunc;
847 __le16 fc;
848
849 if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION))
850 return;
851
852 skb = dev_alloc_skb(local->hw.extra_tx_headroom + 30);
Joe Perchesd15b8452011-08-29 14:17:31 -0700853 if (!skb)
Felix Fietkaud5242152010-01-08 18:06:26 +0100854 return;
Joe Perchesd15b8452011-08-29 14:17:31 -0700855
Felix Fietkaud5242152010-01-08 18:06:26 +0100856 skb_reserve(skb, local->hw.extra_tx_headroom);
857
858 nullfunc = (struct ieee80211_hdr *) skb_put(skb, 30);
859 memset(nullfunc, 0, 30);
860 fc = cpu_to_le16(IEEE80211_FTYPE_DATA | IEEE80211_STYPE_NULLFUNC |
861 IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS);
862 nullfunc->frame_control = fc;
863 memcpy(nullfunc->addr1, sdata->u.mgd.bssid, ETH_ALEN);
864 memcpy(nullfunc->addr2, sdata->vif.addr, ETH_ALEN);
865 memcpy(nullfunc->addr3, sdata->u.mgd.bssid, ETH_ALEN);
866 memcpy(nullfunc->addr4, sdata->vif.addr, ETH_ALEN);
867
868 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
869 ieee80211_tx_skb(sdata, skb);
870}
871
Johannes Bergcc32abd2009-05-15 11:52:31 +0200872/* spectrum management related things */
873static void ieee80211_chswitch_work(struct work_struct *work)
874{
875 struct ieee80211_sub_if_data *sdata =
876 container_of(work, struct ieee80211_sub_if_data, u.mgd.chswitch_work);
Karl Beldan675a0b02013-03-25 16:26:57 +0100877 struct ieee80211_local *local = sdata->local;
Johannes Bergcc32abd2009-05-15 11:52:31 +0200878 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
879
Johannes Berg9607e6b662009-12-23 13:15:31 +0100880 if (!ieee80211_sdata_running(sdata))
Johannes Bergcc32abd2009-05-15 11:52:31 +0200881 return;
882
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200883 sdata_lock(sdata);
Johannes Berg77fdaa12009-07-07 03:45:17 +0200884 if (!ifmgd->associated)
885 goto out;
Johannes Bergcc32abd2009-05-15 11:52:31 +0200886
Johannes Berg85220d72013-03-25 18:29:27 +0100887 local->_oper_chandef = local->csa_chandef;
Karl Beldan675a0b02013-03-25 16:26:57 +0100888
889 if (!local->ops->channel_switch) {
Johannes Berg5ce6e432010-05-11 16:20:57 +0200890 /* call "hw_config" only if doing sw channel switch */
Karl Beldan675a0b02013-03-25 16:26:57 +0100891 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_CHANNEL);
Shahar Levi1ea57b12011-09-08 08:44:05 +0300892 } else {
893 /* update the device channel directly */
Karl Beldan675a0b02013-03-25 16:26:57 +0100894 local->hw.conf.chandef = local->_oper_chandef;
Johannes Berg5ce6e432010-05-11 16:20:57 +0200895 }
Johannes Bergcc32abd2009-05-15 11:52:31 +0200896
Johannes Berg77fdaa12009-07-07 03:45:17 +0200897 /* XXX: shouldn't really modify cfg80211-owned data! */
Karl Beldan675a0b02013-03-25 16:26:57 +0100898 ifmgd->associated->channel = local->_oper_chandef.chan;
Johannes Berg77fdaa12009-07-07 03:45:17 +0200899
Johannes Berg57eebdf2012-08-01 15:50:46 +0200900 /* XXX: wait for a beacon first? */
Karl Beldan675a0b02013-03-25 16:26:57 +0100901 ieee80211_wake_queues_by_reason(&local->hw,
Johannes Berg445ea4e2013-02-13 12:25:28 +0100902 IEEE80211_MAX_QUEUE_MAP,
Johannes Bergcc32abd2009-05-15 11:52:31 +0200903 IEEE80211_QUEUE_STOP_REASON_CSA);
Johannes Berg77fdaa12009-07-07 03:45:17 +0200904 out:
905 ifmgd->flags &= ~IEEE80211_STA_CSA_RECEIVED;
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200906 sdata_unlock(sdata);
Johannes Bergcc32abd2009-05-15 11:52:31 +0200907}
908
Johannes Berg5ce6e432010-05-11 16:20:57 +0200909void ieee80211_chswitch_done(struct ieee80211_vif *vif, bool success)
910{
Johannes Berg55de9082012-07-26 17:24:39 +0200911 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
912 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg5ce6e432010-05-11 16:20:57 +0200913
914 trace_api_chswitch_done(sdata, success);
915 if (!success) {
Johannes Berg882a7c62012-08-01 22:32:45 +0200916 sdata_info(sdata,
917 "driver channel switch failed, disconnecting\n");
918 ieee80211_queue_work(&sdata->local->hw,
919 &ifmgd->csa_connection_drop_work);
920 } else {
921 ieee80211_queue_work(&sdata->local->hw, &ifmgd->chswitch_work);
Johannes Berg5ce6e432010-05-11 16:20:57 +0200922 }
Johannes Berg5ce6e432010-05-11 16:20:57 +0200923}
924EXPORT_SYMBOL(ieee80211_chswitch_done);
925
Johannes Bergcc32abd2009-05-15 11:52:31 +0200926static void ieee80211_chswitch_timer(unsigned long data)
927{
928 struct ieee80211_sub_if_data *sdata =
929 (struct ieee80211_sub_if_data *) data;
Johannes Bergcc32abd2009-05-15 11:52:31 +0200930
Stanislaw Gruszka9b7d72c2013-02-28 10:55:27 +0100931 ieee80211_queue_work(&sdata->local->hw, &sdata->u.mgd.chswitch_work);
Johannes Bergcc32abd2009-05-15 11:52:31 +0200932}
933
Johannes Berg37799e52013-03-26 14:02:26 +0100934static void
Johannes Berg4a3cb702013-02-12 16:43:19 +0100935ieee80211_sta_process_chanswitch(struct ieee80211_sub_if_data *sdata,
Johannes Berg04a161f2013-05-03 09:35:35 +0200936 u64 timestamp, struct ieee802_11_elems *elems,
937 bool beacon)
Johannes Bergcc32abd2009-05-15 11:52:31 +0200938{
Johannes Bergb4f286a12013-03-26 14:13:58 +0100939 struct ieee80211_local *local = sdata->local;
Johannes Bergcc32abd2009-05-15 11:52:31 +0200940 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg37799e52013-03-26 14:02:26 +0100941 struct cfg80211_bss *cbss = ifmgd->associated;
Johannes Berg55de9082012-07-26 17:24:39 +0200942 struct ieee80211_chanctx *chanctx;
Simon Wunderliche6b7cde2013-08-28 13:41:29 +0200943 enum ieee80211_band current_band;
Johannes Bergb4f286a12013-03-26 14:13:58 +0100944 u8 count;
945 u8 mode;
Johannes Berg85220d72013-03-25 18:29:27 +0100946 struct cfg80211_chan_def new_chandef = {};
Simon Wunderliche6b7cde2013-08-28 13:41:29 +0200947 int res;
Johannes Bergcc32abd2009-05-15 11:52:31 +0200948
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200949 sdata_assert_lock(sdata);
Johannes Berg77fdaa12009-07-07 03:45:17 +0200950
Johannes Berg37799e52013-03-26 14:02:26 +0100951 if (!cbss)
Johannes Bergcc32abd2009-05-15 11:52:31 +0200952 return;
953
Johannes Bergb4f286a12013-03-26 14:13:58 +0100954 if (local->scanning)
Johannes Bergcc32abd2009-05-15 11:52:31 +0200955 return;
956
Johannes Berg37799e52013-03-26 14:02:26 +0100957 /* disregard subsequent announcements if we are already processing */
Johannes Bergcc32abd2009-05-15 11:52:31 +0200958 if (ifmgd->flags & IEEE80211_STA_CSA_RECEIVED)
959 return;
960
Simon Wunderliche6b7cde2013-08-28 13:41:29 +0200961 current_band = cbss->channel->band;
962 res = ieee80211_parse_ch_switch_ie(sdata, elems, beacon, current_band,
963 ifmgd->flags,
964 ifmgd->associated->bssid, &count,
965 &mode, &new_chandef);
966 if (res < 0)
Johannes Bergb4f286a12013-03-26 14:13:58 +0100967 ieee80211_queue_work(&local->hw,
Johannes Berg882a7c62012-08-01 22:32:45 +0200968 &ifmgd->csa_connection_drop_work);
Simon Wunderliche6b7cde2013-08-28 13:41:29 +0200969 if (res)
Johannes Bergcc32abd2009-05-15 11:52:31 +0200970 return;
Johannes Bergcd64f2a2013-03-28 10:44:18 +0100971
Johannes Berg85220d72013-03-25 18:29:27 +0100972 if (!cfg80211_chandef_usable(local->hw.wiphy, &new_chandef,
973 IEEE80211_CHAN_DISABLED)) {
974 sdata_info(sdata,
975 "AP %pM switches to unsupported channel (%d MHz, width:%d, CF1/2: %d/%d MHz), disconnecting\n",
Simon Wunderliche6b7cde2013-08-28 13:41:29 +0200976 ifmgd->associated->bssid,
977 new_chandef.chan->center_freq,
Johannes Berg85220d72013-03-25 18:29:27 +0100978 new_chandef.width, new_chandef.center_freq1,
979 new_chandef.center_freq2);
980 ieee80211_queue_work(&local->hw,
981 &ifmgd->csa_connection_drop_work);
982 return;
983 }
984
Johannes Berg57eebdf2012-08-01 15:50:46 +0200985 ifmgd->flags |= IEEE80211_STA_CSA_RECEIVED;
986
Johannes Bergb4f286a12013-03-26 14:13:58 +0100987 if (local->use_chanctx) {
Johannes Berg55de9082012-07-26 17:24:39 +0200988 sdata_info(sdata,
989 "not handling channel switch with channel contexts\n");
Johannes Bergb4f286a12013-03-26 14:13:58 +0100990 ieee80211_queue_work(&local->hw,
Johannes Berg55de9082012-07-26 17:24:39 +0200991 &ifmgd->csa_connection_drop_work);
Simon Wunderlich246dc3f2012-11-30 19:17:27 +0100992 return;
Johannes Berg55de9082012-07-26 17:24:39 +0200993 }
994
Johannes Bergb4f286a12013-03-26 14:13:58 +0100995 mutex_lock(&local->chanctx_mtx);
Johannes Berg55de9082012-07-26 17:24:39 +0200996 if (WARN_ON(!rcu_access_pointer(sdata->vif.chanctx_conf))) {
Johannes Bergb4f286a12013-03-26 14:13:58 +0100997 mutex_unlock(&local->chanctx_mtx);
Johannes Berg55de9082012-07-26 17:24:39 +0200998 return;
999 }
1000 chanctx = container_of(rcu_access_pointer(sdata->vif.chanctx_conf),
1001 struct ieee80211_chanctx, conf);
1002 if (chanctx->refcount > 1) {
1003 sdata_info(sdata,
1004 "channel switch with multiple interfaces on the same channel, disconnecting\n");
Johannes Bergb4f286a12013-03-26 14:13:58 +01001005 ieee80211_queue_work(&local->hw,
Johannes Berg55de9082012-07-26 17:24:39 +02001006 &ifmgd->csa_connection_drop_work);
Johannes Bergb4f286a12013-03-26 14:13:58 +01001007 mutex_unlock(&local->chanctx_mtx);
Johannes Berg55de9082012-07-26 17:24:39 +02001008 return;
1009 }
Johannes Bergb4f286a12013-03-26 14:13:58 +01001010 mutex_unlock(&local->chanctx_mtx);
Johannes Berg55de9082012-07-26 17:24:39 +02001011
Johannes Berg85220d72013-03-25 18:29:27 +01001012 local->csa_chandef = new_chandef;
Johannes Berg55de9082012-07-26 17:24:39 +02001013
Johannes Bergb4f286a12013-03-26 14:13:58 +01001014 if (mode)
1015 ieee80211_stop_queues_by_reason(&local->hw,
Johannes Berg445ea4e2013-02-13 12:25:28 +01001016 IEEE80211_MAX_QUEUE_MAP,
Johannes Berg57eebdf2012-08-01 15:50:46 +02001017 IEEE80211_QUEUE_STOP_REASON_CSA);
1018
Johannes Bergb4f286a12013-03-26 14:13:58 +01001019 if (local->ops->channel_switch) {
Johannes Berg5ce6e432010-05-11 16:20:57 +02001020 /* use driver's channel switch callback */
Johannes Berg57eebdf2012-08-01 15:50:46 +02001021 struct ieee80211_channel_switch ch_switch = {
1022 .timestamp = timestamp,
Johannes Bergb4f286a12013-03-26 14:13:58 +01001023 .block_tx = mode,
Johannes Berg85220d72013-03-25 18:29:27 +01001024 .chandef = new_chandef,
Johannes Bergb4f286a12013-03-26 14:13:58 +01001025 .count = count,
Johannes Berg57eebdf2012-08-01 15:50:46 +02001026 };
1027
Johannes Bergb4f286a12013-03-26 14:13:58 +01001028 drv_channel_switch(local, &ch_switch);
Johannes Berg5ce6e432010-05-11 16:20:57 +02001029 return;
1030 }
1031
1032 /* channel switch handled in software */
Johannes Bergb4f286a12013-03-26 14:13:58 +01001033 if (count <= 1)
1034 ieee80211_queue_work(&local->hw, &ifmgd->chswitch_work);
Johannes Berg57eebdf2012-08-01 15:50:46 +02001035 else
Johannes Bergcc32abd2009-05-15 11:52:31 +02001036 mod_timer(&ifmgd->chswitch_timer,
Johannes Bergb4f286a12013-03-26 14:13:58 +01001037 TU_TO_EXP_TIME(count * cbss->beacon_interval));
Johannes Bergcc32abd2009-05-15 11:52:31 +02001038}
1039
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02001040static u32 ieee80211_handle_pwr_constr(struct ieee80211_sub_if_data *sdata,
1041 struct ieee80211_channel *channel,
1042 const u8 *country_ie, u8 country_ie_len,
1043 const u8 *pwr_constr_elem)
Johannes Bergcc32abd2009-05-15 11:52:31 +02001044{
Johannes Berg04b7b2f2012-09-05 13:41:37 +02001045 struct ieee80211_country_ie_triplet *triplet;
1046 int chan = ieee80211_frequency_to_channel(channel->center_freq);
1047 int i, chan_pwr, chan_increment, new_ap_level;
1048 bool have_chan_pwr = false;
Johannes Bergcc32abd2009-05-15 11:52:31 +02001049
Johannes Berg04b7b2f2012-09-05 13:41:37 +02001050 /* Invalid IE */
1051 if (country_ie_len % 2 || country_ie_len < IEEE80211_COUNTRY_IE_MIN_LEN)
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02001052 return 0;
Johannes Bergcc32abd2009-05-15 11:52:31 +02001053
Johannes Berg04b7b2f2012-09-05 13:41:37 +02001054 triplet = (void *)(country_ie + 3);
1055 country_ie_len -= 3;
1056
1057 switch (channel->band) {
1058 default:
1059 WARN_ON_ONCE(1);
1060 /* fall through */
1061 case IEEE80211_BAND_2GHZ:
1062 case IEEE80211_BAND_60GHZ:
1063 chan_increment = 1;
1064 break;
1065 case IEEE80211_BAND_5GHZ:
1066 chan_increment = 4;
1067 break;
Johannes Bergcc32abd2009-05-15 11:52:31 +02001068 }
Johannes Berg04b7b2f2012-09-05 13:41:37 +02001069
1070 /* find channel */
1071 while (country_ie_len >= 3) {
1072 u8 first_channel = triplet->chans.first_channel;
1073
1074 if (first_channel >= IEEE80211_COUNTRY_EXTENSION_ID)
1075 goto next;
1076
1077 for (i = 0; i < triplet->chans.num_channels; i++) {
1078 if (first_channel + i * chan_increment == chan) {
1079 have_chan_pwr = true;
1080 chan_pwr = triplet->chans.max_power;
1081 break;
1082 }
1083 }
1084 if (have_chan_pwr)
1085 break;
1086
1087 next:
1088 triplet++;
1089 country_ie_len -= 3;
1090 }
1091
1092 if (!have_chan_pwr)
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02001093 return 0;
Johannes Berg04b7b2f2012-09-05 13:41:37 +02001094
1095 new_ap_level = max_t(int, 0, chan_pwr - *pwr_constr_elem);
1096
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02001097 if (sdata->ap_power_level == new_ap_level)
1098 return 0;
Johannes Berg04b7b2f2012-09-05 13:41:37 +02001099
1100 sdata_info(sdata,
1101 "Limiting TX power to %d (%d - %d) dBm as advertised by %pM\n",
1102 new_ap_level, chan_pwr, *pwr_constr_elem,
1103 sdata->u.mgd.bssid);
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02001104 sdata->ap_power_level = new_ap_level;
1105 if (__ieee80211_recalc_txpower(sdata))
1106 return BSS_CHANGED_TXPOWER;
1107 return 0;
Johannes Bergcc32abd2009-05-15 11:52:31 +02001108}
1109
Johannes Berg965beda2009-04-16 13:17:24 +02001110/* powersave */
1111static void ieee80211_enable_ps(struct ieee80211_local *local,
1112 struct ieee80211_sub_if_data *sdata)
1113{
1114 struct ieee80211_conf *conf = &local->hw.conf;
1115
Johannes Bergd5edaed2009-04-22 23:02:51 +02001116 /*
1117 * If we are scanning right now then the parameters will
1118 * take effect when scan finishes.
1119 */
Helmut Schaafbe9c4292009-07-23 12:14:04 +02001120 if (local->scanning)
Johannes Bergd5edaed2009-04-22 23:02:51 +02001121 return;
1122
Johannes Berg965beda2009-04-16 13:17:24 +02001123 if (conf->dynamic_ps_timeout > 0 &&
1124 !(local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS)) {
1125 mod_timer(&local->dynamic_ps_timer, jiffies +
1126 msecs_to_jiffies(conf->dynamic_ps_timeout));
1127 } else {
1128 if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)
1129 ieee80211_send_nullfunc(local, sdata, 1);
Vivek Natarajan375177b2010-02-09 14:50:28 +05301130
Juuso Oikarinen2a130522010-03-09 14:25:02 +02001131 if ((local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK) &&
1132 (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS))
1133 return;
1134
1135 conf->flags |= IEEE80211_CONF_PS;
1136 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
Johannes Berg965beda2009-04-16 13:17:24 +02001137 }
1138}
1139
1140static void ieee80211_change_ps(struct ieee80211_local *local)
1141{
1142 struct ieee80211_conf *conf = &local->hw.conf;
1143
1144 if (local->ps_sdata) {
Johannes Berg965beda2009-04-16 13:17:24 +02001145 ieee80211_enable_ps(local, local->ps_sdata);
1146 } else if (conf->flags & IEEE80211_CONF_PS) {
1147 conf->flags &= ~IEEE80211_CONF_PS;
1148 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
1149 del_timer_sync(&local->dynamic_ps_timer);
1150 cancel_work_sync(&local->dynamic_ps_enable_work);
1151 }
1152}
1153
Jason Young808118c2011-03-10 16:43:19 -08001154static bool ieee80211_powersave_allowed(struct ieee80211_sub_if_data *sdata)
1155{
1156 struct ieee80211_if_managed *mgd = &sdata->u.mgd;
1157 struct sta_info *sta = NULL;
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001158 bool authorized = false;
Jason Young808118c2011-03-10 16:43:19 -08001159
1160 if (!mgd->powersave)
1161 return false;
1162
Johannes Berg05cb9102011-10-28 11:59:47 +02001163 if (mgd->broken_ap)
1164 return false;
1165
Jason Young808118c2011-03-10 16:43:19 -08001166 if (!mgd->associated)
1167 return false;
1168
Stanislaw Gruszka392b9ff2013-08-27 11:36:35 +02001169 if (mgd->flags & IEEE80211_STA_CONNECTION_POLL)
Jason Young808118c2011-03-10 16:43:19 -08001170 return false;
1171
Alexander Bondar989c6502013-05-16 17:34:17 +03001172 if (!mgd->have_beacon)
Alexander Bondarce857882013-05-06 17:17:04 +03001173 return false;
1174
Jason Young808118c2011-03-10 16:43:19 -08001175 rcu_read_lock();
1176 sta = sta_info_get(sdata, mgd->bssid);
1177 if (sta)
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001178 authorized = test_sta_flag(sta, WLAN_STA_AUTHORIZED);
Jason Young808118c2011-03-10 16:43:19 -08001179 rcu_read_unlock();
1180
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001181 return authorized;
Jason Young808118c2011-03-10 16:43:19 -08001182}
1183
Johannes Berg965beda2009-04-16 13:17:24 +02001184/* need to hold RTNL or interface lock */
Johannes Berg10f644a2009-04-16 13:17:25 +02001185void ieee80211_recalc_ps(struct ieee80211_local *local, s32 latency)
Johannes Berg965beda2009-04-16 13:17:24 +02001186{
1187 struct ieee80211_sub_if_data *sdata, *found = NULL;
1188 int count = 0;
Juuso Oikarinen195e2942010-04-27 12:47:40 +03001189 int timeout;
Johannes Berg965beda2009-04-16 13:17:24 +02001190
1191 if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_PS)) {
1192 local->ps_sdata = NULL;
1193 return;
1194 }
1195
1196 list_for_each_entry(sdata, &local->interfaces, list) {
Johannes Berg9607e6b662009-12-23 13:15:31 +01001197 if (!ieee80211_sdata_running(sdata))
Johannes Berg965beda2009-04-16 13:17:24 +02001198 continue;
Rajkumar Manoharan8c7914d2011-02-01 00:28:59 +05301199 if (sdata->vif.type == NL80211_IFTYPE_AP) {
1200 /* If an AP vif is found, then disable PS
1201 * by setting the count to zero thereby setting
1202 * ps_sdata to NULL.
1203 */
1204 count = 0;
1205 break;
1206 }
Johannes Berg965beda2009-04-16 13:17:24 +02001207 if (sdata->vif.type != NL80211_IFTYPE_STATION)
1208 continue;
1209 found = sdata;
1210 count++;
1211 }
1212
Jason Young808118c2011-03-10 16:43:19 -08001213 if (count == 1 && ieee80211_powersave_allowed(found)) {
Johannes Berg10f644a2009-04-16 13:17:25 +02001214 s32 beaconint_us;
1215
1216 if (latency < 0)
Mark Grossed771342010-05-06 01:59:26 +02001217 latency = pm_qos_request(PM_QOS_NETWORK_LATENCY);
Johannes Berg10f644a2009-04-16 13:17:25 +02001218
1219 beaconint_us = ieee80211_tu_to_usec(
1220 found->vif.bss_conf.beacon_int);
1221
Juuso Oikarinenff616382010-06-09 09:51:52 +03001222 timeout = local->dynamic_ps_forced_timeout;
Juuso Oikarinen195e2942010-04-27 12:47:40 +03001223 if (timeout < 0) {
1224 /*
Juuso Oikarinenff616382010-06-09 09:51:52 +03001225 * Go to full PSM if the user configures a very low
1226 * latency requirement.
Eliad Peller0ab82b02010-12-03 02:16:23 +02001227 * The 2000 second value is there for compatibility
1228 * until the PM_QOS_NETWORK_LATENCY is configured
1229 * with real values.
Juuso Oikarinen195e2942010-04-27 12:47:40 +03001230 */
Eliad Peller0ab82b02010-12-03 02:16:23 +02001231 if (latency > (1900 * USEC_PER_MSEC) &&
1232 latency != (2000 * USEC_PER_SEC))
Juuso Oikarinen195e2942010-04-27 12:47:40 +03001233 timeout = 0;
Juuso Oikarinenff616382010-06-09 09:51:52 +03001234 else
1235 timeout = 100;
Juuso Oikarinen195e2942010-04-27 12:47:40 +03001236 }
Johannes Berg09b85562013-02-06 23:07:41 +01001237 local->hw.conf.dynamic_ps_timeout = timeout;
Juuso Oikarinen195e2942010-04-27 12:47:40 +03001238
Johannes Berg04fe2032009-04-22 18:44:37 +02001239 if (beaconint_us > latency) {
Johannes Berg10f644a2009-04-16 13:17:25 +02001240 local->ps_sdata = NULL;
Johannes Berg04fe2032009-04-22 18:44:37 +02001241 } else {
Johannes Berg04fe2032009-04-22 18:44:37 +02001242 int maxslp = 1;
Johannes Berg826262c2012-12-10 16:38:14 +02001243 u8 dtimper = found->u.mgd.dtim_period;
Johannes Berg56007a02010-01-26 14:19:52 +01001244
1245 /* If the TIM IE is invalid, pretend the value is 1 */
1246 if (!dtimper)
1247 dtimper = 1;
1248 else if (dtimper > 1)
Johannes Berg04fe2032009-04-22 18:44:37 +02001249 maxslp = min_t(int, dtimper,
1250 latency / beaconint_us);
1251
Johannes Berg9ccebe62009-04-23 10:32:36 +02001252 local->hw.conf.max_sleep_period = maxslp;
Johannes Berg56007a02010-01-26 14:19:52 +01001253 local->hw.conf.ps_dtim_period = dtimper;
Johannes Berg10f644a2009-04-16 13:17:25 +02001254 local->ps_sdata = found;
Johannes Berg04fe2032009-04-22 18:44:37 +02001255 }
Johannes Berg10f644a2009-04-16 13:17:25 +02001256 } else {
Johannes Berg965beda2009-04-16 13:17:24 +02001257 local->ps_sdata = NULL;
Johannes Berg10f644a2009-04-16 13:17:25 +02001258 }
Johannes Berg965beda2009-04-16 13:17:24 +02001259
1260 ieee80211_change_ps(local);
1261}
1262
Eliad Pellerab095872012-07-27 12:33:22 +03001263void ieee80211_recalc_ps_vif(struct ieee80211_sub_if_data *sdata)
1264{
1265 bool ps_allowed = ieee80211_powersave_allowed(sdata);
1266
1267 if (sdata->vif.bss_conf.ps != ps_allowed) {
1268 sdata->vif.bss_conf.ps = ps_allowed;
1269 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_PS);
1270 }
1271}
1272
Johannes Berg965beda2009-04-16 13:17:24 +02001273void ieee80211_dynamic_ps_disable_work(struct work_struct *work)
1274{
1275 struct ieee80211_local *local =
1276 container_of(work, struct ieee80211_local,
1277 dynamic_ps_disable_work);
1278
1279 if (local->hw.conf.flags & IEEE80211_CONF_PS) {
1280 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
1281 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
1282 }
1283
1284 ieee80211_wake_queues_by_reason(&local->hw,
Johannes Berg445ea4e2013-02-13 12:25:28 +01001285 IEEE80211_MAX_QUEUE_MAP,
Johannes Berg965beda2009-04-16 13:17:24 +02001286 IEEE80211_QUEUE_STOP_REASON_PS);
1287}
1288
1289void ieee80211_dynamic_ps_enable_work(struct work_struct *work)
1290{
1291 struct ieee80211_local *local =
1292 container_of(work, struct ieee80211_local,
1293 dynamic_ps_enable_work);
1294 struct ieee80211_sub_if_data *sdata = local->ps_sdata;
Christian Lamparter5e340692011-06-30 21:08:43 +02001295 struct ieee80211_if_managed *ifmgd;
Rajkumar Manoharan1ddc2862011-05-03 17:03:59 +05301296 unsigned long flags;
1297 int q;
Johannes Berg965beda2009-04-16 13:17:24 +02001298
1299 /* can only happen when PS was just disabled anyway */
1300 if (!sdata)
1301 return;
1302
Christian Lamparter5e340692011-06-30 21:08:43 +02001303 ifmgd = &sdata->u.mgd;
1304
Johannes Berg965beda2009-04-16 13:17:24 +02001305 if (local->hw.conf.flags & IEEE80211_CONF_PS)
1306 return;
1307
Johannes Berg09b85562013-02-06 23:07:41 +01001308 if (local->hw.conf.dynamic_ps_timeout > 0) {
Arik Nemtsov77b70232011-06-26 12:06:54 +03001309 /* don't enter PS if TX frames are pending */
1310 if (drv_tx_frames_pending(local)) {
Rajkumar Manoharan1ddc2862011-05-03 17:03:59 +05301311 mod_timer(&local->dynamic_ps_timer, jiffies +
1312 msecs_to_jiffies(
1313 local->hw.conf.dynamic_ps_timeout));
1314 return;
1315 }
Arik Nemtsov77b70232011-06-26 12:06:54 +03001316
1317 /*
1318 * transmission can be stopped by others which leads to
1319 * dynamic_ps_timer expiry. Postpone the ps timer if it
1320 * is not the actual idle state.
1321 */
1322 spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
1323 for (q = 0; q < local->hw.queues; q++) {
1324 if (local->queue_stop_reasons[q]) {
1325 spin_unlock_irqrestore(&local->queue_stop_reason_lock,
1326 flags);
1327 mod_timer(&local->dynamic_ps_timer, jiffies +
1328 msecs_to_jiffies(
1329 local->hw.conf.dynamic_ps_timeout));
1330 return;
1331 }
1332 }
1333 spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
Rajkumar Manoharan1ddc2862011-05-03 17:03:59 +05301334 }
Rajkumar Manoharan1ddc2862011-05-03 17:03:59 +05301335
Vivek Natarajan375177b2010-02-09 14:50:28 +05301336 if ((local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK) &&
Mohammed Shafi Shajakhan9c38a8b2011-12-14 19:46:07 +05301337 !(ifmgd->flags & IEEE80211_STA_NULLFUNC_ACKED)) {
Johannes Berga15983832013-03-26 22:02:42 +01001338 if (drv_tx_frames_pending(local)) {
Vivek Natarajane8306f92011-04-06 11:41:10 +05301339 mod_timer(&local->dynamic_ps_timer, jiffies +
1340 msecs_to_jiffies(
1341 local->hw.conf.dynamic_ps_timeout));
Johannes Berga15983832013-03-26 22:02:42 +01001342 } else {
Vivek Natarajane8306f92011-04-06 11:41:10 +05301343 ieee80211_send_nullfunc(local, sdata, 1);
1344 /* Flush to get the tx status of nullfunc frame */
Johannes Berg39ecc012013-02-13 12:11:00 +01001345 ieee80211_flush_queues(local, sdata);
Vivek Natarajane8306f92011-04-06 11:41:10 +05301346 }
Vivek Natarajanf3e85b92011-02-23 13:04:32 +05301347 }
1348
Juuso Oikarinen2a130522010-03-09 14:25:02 +02001349 if (!((local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS) &&
1350 (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)) ||
Vivek Natarajan375177b2010-02-09 14:50:28 +05301351 (ifmgd->flags & IEEE80211_STA_NULLFUNC_ACKED)) {
1352 ifmgd->flags &= ~IEEE80211_STA_NULLFUNC_ACKED;
1353 local->hw.conf.flags |= IEEE80211_CONF_PS;
1354 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
1355 }
Johannes Berg965beda2009-04-16 13:17:24 +02001356}
1357
1358void ieee80211_dynamic_ps_timer(unsigned long data)
1359{
1360 struct ieee80211_local *local = (void *) data;
1361
Luis R. Rodriguez78f1a8b2009-07-27 08:38:25 -07001362 if (local->quiescing || local->suspended)
Johannes Berg5bb644a2009-05-17 11:40:42 +02001363 return;
1364
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04001365 ieee80211_queue_work(&local->hw, &local->dynamic_ps_enable_work);
Johannes Berg965beda2009-04-16 13:17:24 +02001366}
1367
Simon Wunderlich164eb022013-02-08 18:16:20 +01001368void ieee80211_dfs_cac_timer_work(struct work_struct *work)
1369{
1370 struct delayed_work *delayed_work =
1371 container_of(work, struct delayed_work, work);
1372 struct ieee80211_sub_if_data *sdata =
1373 container_of(delayed_work, struct ieee80211_sub_if_data,
1374 dfs_cac_timer_work);
1375
1376 ieee80211_vif_release_channel(sdata);
1377
1378 cfg80211_cac_event(sdata->dev, NL80211_RADAR_CAC_FINISHED, GFP_KERNEL);
1379}
1380
Johannes Berg60f8b39c2008-09-08 17:44:22 +02001381/* MLME */
Johannes Berg7d257452012-07-06 17:37:43 +02001382static bool ieee80211_sta_wmm_params(struct ieee80211_local *local,
Johannes Berg4ced3f72010-07-19 16:39:04 +02001383 struct ieee80211_sub_if_data *sdata,
Johannes Berg4a3cb702013-02-12 16:43:19 +01001384 const u8 *wmm_param, size_t wmm_param_len)
Jiri Bencf0706e82007-05-05 11:45:53 -07001385{
Jiri Bencf0706e82007-05-05 11:45:53 -07001386 struct ieee80211_tx_queue_params params;
Johannes Berg4ced3f72010-07-19 16:39:04 +02001387 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jiri Bencf0706e82007-05-05 11:45:53 -07001388 size_t left;
1389 int count;
Johannes Berg4a3cb702013-02-12 16:43:19 +01001390 const u8 *pos;
1391 u8 uapsd_queues = 0;
Jiri Bencf0706e82007-05-05 11:45:53 -07001392
Stanislaw Gruszkae1b3ec12010-03-29 12:18:34 +02001393 if (!local->ops->conf_tx)
Johannes Berg7d257452012-07-06 17:37:43 +02001394 return false;
Stanislaw Gruszkae1b3ec12010-03-29 12:18:34 +02001395
Johannes Berg32c50572012-03-28 11:04:29 +02001396 if (local->hw.queues < IEEE80211_NUM_ACS)
Johannes Berg7d257452012-07-06 17:37:43 +02001397 return false;
Johannes Berg3434fbd2008-05-03 00:59:37 +02001398
1399 if (!wmm_param)
Johannes Berg7d257452012-07-06 17:37:43 +02001400 return false;
Johannes Berg3434fbd2008-05-03 00:59:37 +02001401
Jiri Bencf0706e82007-05-05 11:45:53 -07001402 if (wmm_param_len < 8 || wmm_param[5] /* version */ != 1)
Johannes Berg7d257452012-07-06 17:37:43 +02001403 return false;
Kalle Valoab133152010-01-12 10:42:31 +02001404
1405 if (ifmgd->flags & IEEE80211_STA_UAPSD_ENABLED)
Eliad Pellerdc41e4d2012-03-14 16:15:03 +02001406 uapsd_queues = ifmgd->uapsd_queues;
Kalle Valoab133152010-01-12 10:42:31 +02001407
Jiri Bencf0706e82007-05-05 11:45:53 -07001408 count = wmm_param[6] & 0x0f;
Johannes Berg46900292009-02-15 12:44:28 +01001409 if (count == ifmgd->wmm_last_param_set)
Johannes Berg7d257452012-07-06 17:37:43 +02001410 return false;
Johannes Berg46900292009-02-15 12:44:28 +01001411 ifmgd->wmm_last_param_set = count;
Jiri Bencf0706e82007-05-05 11:45:53 -07001412
1413 pos = wmm_param + 8;
1414 left = wmm_param_len - 8;
1415
1416 memset(&params, 0, sizeof(params));
1417
Yoni Divinsky00e96de2012-06-20 15:39:13 +03001418 sdata->wmm_acm = 0;
Jiri Bencf0706e82007-05-05 11:45:53 -07001419 for (; left >= 4; left -= 4, pos += 4) {
1420 int aci = (pos[0] >> 5) & 0x03;
1421 int acm = (pos[0] >> 4) & 0x01;
Kalle Valoab133152010-01-12 10:42:31 +02001422 bool uapsd = false;
Jiri Bencf0706e82007-05-05 11:45:53 -07001423 int queue;
1424
1425 switch (aci) {
Jouni Malinen0eeb59f2009-03-05 17:23:46 +02001426 case 1: /* AC_BK */
Johannes Berge100bb62008-04-30 18:51:21 +02001427 queue = 3;
Johannes Berg988c0f72008-04-17 19:21:22 +02001428 if (acm)
Yoni Divinsky00e96de2012-06-20 15:39:13 +03001429 sdata->wmm_acm |= BIT(1) | BIT(2); /* BK/- */
Kalle Valoab133152010-01-12 10:42:31 +02001430 if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_BK)
1431 uapsd = true;
Jiri Bencf0706e82007-05-05 11:45:53 -07001432 break;
Jouni Malinen0eeb59f2009-03-05 17:23:46 +02001433 case 2: /* AC_VI */
Johannes Berge100bb62008-04-30 18:51:21 +02001434 queue = 1;
Johannes Berg988c0f72008-04-17 19:21:22 +02001435 if (acm)
Yoni Divinsky00e96de2012-06-20 15:39:13 +03001436 sdata->wmm_acm |= BIT(4) | BIT(5); /* CL/VI */
Kalle Valoab133152010-01-12 10:42:31 +02001437 if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_VI)
1438 uapsd = true;
Jiri Bencf0706e82007-05-05 11:45:53 -07001439 break;
Jouni Malinen0eeb59f2009-03-05 17:23:46 +02001440 case 3: /* AC_VO */
Johannes Berge100bb62008-04-30 18:51:21 +02001441 queue = 0;
Johannes Berg988c0f72008-04-17 19:21:22 +02001442 if (acm)
Yoni Divinsky00e96de2012-06-20 15:39:13 +03001443 sdata->wmm_acm |= BIT(6) | BIT(7); /* VO/NC */
Kalle Valoab133152010-01-12 10:42:31 +02001444 if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_VO)
1445 uapsd = true;
Jiri Bencf0706e82007-05-05 11:45:53 -07001446 break;
Jouni Malinen0eeb59f2009-03-05 17:23:46 +02001447 case 0: /* AC_BE */
Jiri Bencf0706e82007-05-05 11:45:53 -07001448 default:
Johannes Berge100bb62008-04-30 18:51:21 +02001449 queue = 2;
Johannes Berg988c0f72008-04-17 19:21:22 +02001450 if (acm)
Yoni Divinsky00e96de2012-06-20 15:39:13 +03001451 sdata->wmm_acm |= BIT(0) | BIT(3); /* BE/EE */
Kalle Valoab133152010-01-12 10:42:31 +02001452 if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_BE)
1453 uapsd = true;
Jiri Bencf0706e82007-05-05 11:45:53 -07001454 break;
1455 }
1456
1457 params.aifs = pos[0] & 0x0f;
1458 params.cw_max = ecw2cw((pos[1] & 0xf0) >> 4);
1459 params.cw_min = ecw2cw(pos[1] & 0x0f);
Johannes Bergf434b2d2008-07-10 11:22:31 +02001460 params.txop = get_unaligned_le16(pos + 2);
Alexander Bondar908f8d02013-04-07 09:53:30 +03001461 params.acm = acm;
Kalle Valoab133152010-01-12 10:42:31 +02001462 params.uapsd = uapsd;
1463
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02001464 mlme_dbg(sdata,
1465 "WMM queue=%d aci=%d acm=%d aifs=%d cWmin=%d cWmax=%d txop=%d uapsd=%d\n",
1466 queue, aci, acm,
1467 params.aifs, params.cw_min, params.cw_max,
1468 params.txop, params.uapsd);
Eliad Pellerf6f3def2011-09-25 20:06:54 +03001469 sdata->tx_conf[queue] = params;
1470 if (drv_conf_tx(local, sdata, queue, &params))
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02001471 sdata_err(sdata,
1472 "failed to set TX queue parameters for queue %d\n",
1473 queue);
Jiri Bencf0706e82007-05-05 11:45:53 -07001474 }
Stanislaw Gruszkae1b3ec12010-03-29 12:18:34 +02001475
1476 /* enable WMM or activate new settings */
Johannes Berg4ced3f72010-07-19 16:39:04 +02001477 sdata->vif.bss_conf.qos = true;
Johannes Berg7d257452012-07-06 17:37:43 +02001478 return true;
Jiri Bencf0706e82007-05-05 11:45:53 -07001479}
1480
Stanislaw Gruszka925e64c2012-05-16 15:27:20 +02001481static void __ieee80211_stop_poll(struct ieee80211_sub_if_data *sdata)
1482{
1483 lockdep_assert_held(&sdata->local->mtx);
1484
Stanislaw Gruszka392b9ff2013-08-27 11:36:35 +02001485 sdata->u.mgd.flags &= ~IEEE80211_STA_CONNECTION_POLL;
Stanislaw Gruszka925e64c2012-05-16 15:27:20 +02001486 ieee80211_run_deferred_scan(sdata->local);
1487}
1488
1489static void ieee80211_stop_poll(struct ieee80211_sub_if_data *sdata)
1490{
1491 mutex_lock(&sdata->local->mtx);
1492 __ieee80211_stop_poll(sdata);
1493 mutex_unlock(&sdata->local->mtx);
1494}
1495
Johannes Berg7a5158e2008-10-08 10:59:33 +02001496static u32 ieee80211_handle_bss_capability(struct ieee80211_sub_if_data *sdata,
1497 u16 capab, bool erp_valid, u8 erp)
Daniel Drake56282212007-07-10 19:32:10 +02001498{
Johannes Bergbda39332008-10-11 01:51:51 +02001499 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
Johannes Berg471b3ef2007-12-28 14:32:58 +01001500 u32 changed = 0;
Johannes Berg7a5158e2008-10-08 10:59:33 +02001501 bool use_protection;
1502 bool use_short_preamble;
1503 bool use_short_slot;
1504
1505 if (erp_valid) {
1506 use_protection = (erp & WLAN_ERP_USE_PROTECTION) != 0;
1507 use_short_preamble = (erp & WLAN_ERP_BARKER_PREAMBLE) == 0;
1508 } else {
1509 use_protection = false;
1510 use_short_preamble = !!(capab & WLAN_CAPABILITY_SHORT_PREAMBLE);
1511 }
1512
1513 use_short_slot = !!(capab & WLAN_CAPABILITY_SHORT_SLOT_TIME);
Johannes Berg55de9082012-07-26 17:24:39 +02001514 if (ieee80211_get_sdata_band(sdata) == IEEE80211_BAND_5GHZ)
Felix Fietkau43d35342010-01-15 03:00:48 +01001515 use_short_slot = true;
Daniel Drake56282212007-07-10 19:32:10 +02001516
Johannes Berg471b3ef2007-12-28 14:32:58 +01001517 if (use_protection != bss_conf->use_cts_prot) {
Johannes Berg471b3ef2007-12-28 14:32:58 +01001518 bss_conf->use_cts_prot = use_protection;
1519 changed |= BSS_CHANGED_ERP_CTS_PROT;
Daniel Drake56282212007-07-10 19:32:10 +02001520 }
Daniel Drake7e9ed182007-07-27 15:43:24 +02001521
Vladimir Koutnyd43c7b32008-03-31 17:05:03 +02001522 if (use_short_preamble != bss_conf->use_short_preamble) {
Vladimir Koutnyd43c7b32008-03-31 17:05:03 +02001523 bss_conf->use_short_preamble = use_short_preamble;
Johannes Berg471b3ef2007-12-28 14:32:58 +01001524 changed |= BSS_CHANGED_ERP_PREAMBLE;
Daniel Drake7e9ed182007-07-27 15:43:24 +02001525 }
Daniel Draked9430a32007-07-27 15:43:24 +02001526
Johannes Berg7a5158e2008-10-08 10:59:33 +02001527 if (use_short_slot != bss_conf->use_short_slot) {
Johannes Berg7a5158e2008-10-08 10:59:33 +02001528 bss_conf->use_short_slot = use_short_slot;
1529 changed |= BSS_CHANGED_ERP_SLOT;
John W. Linville50c4afb2008-04-15 14:09:27 -04001530 }
1531
1532 return changed;
1533}
1534
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001535static void ieee80211_set_associated(struct ieee80211_sub_if_data *sdata,
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01001536 struct cfg80211_bss *cbss,
Johannes Bergae5eb022008-10-14 16:58:37 +02001537 u32 bss_info_changed)
Jiri Bencf0706e82007-05-05 11:45:53 -07001538{
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01001539 struct ieee80211_bss *bss = (void *)cbss->priv;
Johannes Berg471b3ef2007-12-28 14:32:58 +01001540 struct ieee80211_local *local = sdata->local;
Juuso Oikarinen68542962010-06-09 13:43:26 +03001541 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
Jiri Slabyd6f2da52007-08-28 17:01:54 -04001542
Johannes Bergae5eb022008-10-14 16:58:37 +02001543 bss_info_changed |= BSS_CHANGED_ASSOC;
Johannes Berg77fdaa12009-07-07 03:45:17 +02001544 bss_info_changed |= ieee80211_handle_bss_capability(sdata,
Luciano Coelho50ae34a2012-06-20 17:23:24 +03001545 bss_conf->assoc_capability, bss->has_erp_value, bss->erp_value);
Tomas Winkler21c0cbe2008-03-28 16:33:34 -07001546
Felix Fietkau7ccc8bd2010-11-19 22:55:38 +01001547 sdata->u.mgd.beacon_timeout = usecs_to_jiffies(ieee80211_tu_to_usec(
Ben Greear59c1ec22013-03-19 14:19:56 -07001548 beacon_loss_count * bss_conf->beacon_int));
Felix Fietkau7ccc8bd2010-11-19 22:55:38 +01001549
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01001550 sdata->u.mgd.associated = cbss;
1551 memcpy(sdata->u.mgd.bssid, cbss->bssid, ETH_ALEN);
Johannes Berg471b3ef2007-12-28 14:32:58 +01001552
Jouni Malinen17e4ec12010-03-29 23:28:30 -07001553 sdata->u.mgd.flags |= IEEE80211_STA_RESET_SIGNAL_AVE;
1554
Johannes Berg488dd7b2012-10-29 20:08:01 +01001555 if (sdata->vif.p2p) {
Johannes Berg9caf0362012-11-29 01:25:20 +01001556 const struct cfg80211_bss_ies *ies;
Johannes Berg488dd7b2012-10-29 20:08:01 +01001557
Johannes Berg9caf0362012-11-29 01:25:20 +01001558 rcu_read_lock();
1559 ies = rcu_dereference(cbss->ies);
1560 if (ies) {
Johannes Berg9caf0362012-11-29 01:25:20 +01001561 int ret;
1562
1563 ret = cfg80211_get_p2p_attr(
1564 ies->data, ies->len,
1565 IEEE80211_P2P_ATTR_ABSENCE_NOTICE,
Janusz Dziedzic67baf662013-03-21 15:47:56 +01001566 (u8 *) &bss_conf->p2p_noa_attr,
1567 sizeof(bss_conf->p2p_noa_attr));
Johannes Berg9caf0362012-11-29 01:25:20 +01001568 if (ret >= 2) {
Janusz Dziedzic67baf662013-03-21 15:47:56 +01001569 sdata->u.mgd.p2p_noa_index =
1570 bss_conf->p2p_noa_attr.index;
Johannes Berg9caf0362012-11-29 01:25:20 +01001571 bss_info_changed |= BSS_CHANGED_P2P_PS;
Johannes Berg9caf0362012-11-29 01:25:20 +01001572 }
Johannes Berg488dd7b2012-10-29 20:08:01 +01001573 }
Johannes Berg9caf0362012-11-29 01:25:20 +01001574 rcu_read_unlock();
Johannes Berg488dd7b2012-10-29 20:08:01 +01001575 }
1576
Johannes Bergb291ba12009-07-10 15:29:03 +02001577 /* just to be sure */
Stanislaw Gruszka925e64c2012-05-16 15:27:20 +02001578 ieee80211_stop_poll(sdata);
Johannes Bergb291ba12009-07-10 15:29:03 +02001579
Tomas Winklerf5e5bf22008-09-08 17:33:39 +02001580 ieee80211_led_assoc(local, 1);
1581
Alexander Bondar989c6502013-05-16 17:34:17 +03001582 if (sdata->u.mgd.have_beacon) {
Johannes Berg826262c2012-12-10 16:38:14 +02001583 /*
1584 * If the AP is buggy we may get here with no DTIM period
1585 * known, so assume it's 1 which is the only safe assumption
1586 * in that case, although if the TIM IE is broken powersave
1587 * probably just won't work at all.
1588 */
1589 bss_conf->dtim_period = sdata->u.mgd.dtim_period ?: 1;
Alexander Bondar817cee72013-05-19 14:23:57 +03001590 bss_conf->beacon_rate = bss->beacon_rate;
Alexander Bondar989c6502013-05-16 17:34:17 +03001591 bss_info_changed |= BSS_CHANGED_BEACON_INFO;
Johannes Berg826262c2012-12-10 16:38:14 +02001592 } else {
Alexander Bondar817cee72013-05-19 14:23:57 +03001593 bss_conf->beacon_rate = NULL;
Johannes Berge5b900d2010-07-29 16:08:55 +02001594 bss_conf->dtim_period = 0;
Johannes Berg826262c2012-12-10 16:38:14 +02001595 }
Johannes Berge5b900d2010-07-29 16:08:55 +02001596
Juuso Oikarinen68542962010-06-09 13:43:26 +03001597 bss_conf->assoc = 1;
Johannes Berg9cef8732009-05-14 13:10:14 +02001598
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02001599 /* Tell the driver to monitor connection quality (if supported) */
Johannes Bergea086352012-01-19 09:29:58 +01001600 if (sdata->vif.driver_flags & IEEE80211_VIF_SUPPORTS_CQM_RSSI &&
Juuso Oikarinen68542962010-06-09 13:43:26 +03001601 bss_conf->cqm_rssi_thold)
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02001602 bss_info_changed |= BSS_CHANGED_CQM;
1603
Juuso Oikarinen68542962010-06-09 13:43:26 +03001604 /* Enable ARP filtering */
Johannes Berg0f19b412013-01-14 16:39:07 +01001605 if (bss_conf->arp_addr_cnt)
Juuso Oikarinen68542962010-06-09 13:43:26 +03001606 bss_info_changed |= BSS_CHANGED_ARP_FILTER;
Juuso Oikarinen68542962010-06-09 13:43:26 +03001607
Johannes Bergae5eb022008-10-14 16:58:37 +02001608 ieee80211_bss_info_change_notify(sdata, bss_info_changed);
Guy Cohen8db93692008-07-03 19:56:13 +03001609
Johannes Berg056508d2009-07-30 21:43:55 +02001610 mutex_lock(&local->iflist_mtx);
1611 ieee80211_recalc_ps(local, -1);
1612 mutex_unlock(&local->iflist_mtx);
Kalle Valoe0cb6862008-12-18 23:35:13 +02001613
Johannes Berg04ecd252012-09-11 14:34:12 +02001614 ieee80211_recalc_smps(sdata);
Eliad Pellerab095872012-07-27 12:33:22 +03001615 ieee80211_recalc_ps_vif(sdata);
1616
Tomas Winklerf5e5bf22008-09-08 17:33:39 +02001617 netif_carrier_on(sdata->dev);
Jiri Bencf0706e82007-05-05 11:45:53 -07001618}
1619
Jouni Malinene69e95d2010-03-29 23:29:31 -07001620static void ieee80211_set_disassoc(struct ieee80211_sub_if_data *sdata,
Johannes Berg37ad3882012-02-24 13:50:54 +01001621 u16 stype, u16 reason, bool tx,
1622 u8 *frame_buf)
Tomas Winkleraa458d12008-09-09 00:32:12 +03001623{
Johannes Berg46900292009-02-15 12:44:28 +01001624 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Tomas Winkleraa458d12008-09-09 00:32:12 +03001625 struct ieee80211_local *local = sdata->local;
Johannes Berg3cc52402012-03-09 13:12:35 +01001626 u32 changed = 0;
Tomas Winkleraa458d12008-09-09 00:32:12 +03001627
Johannes Berg8d61ffa2013-05-10 12:32:47 +02001628 sdata_assert_lock(sdata);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001629
Johannes Berg37ad3882012-02-24 13:50:54 +01001630 if (WARN_ON_ONCE(tx && !frame_buf))
1631 return;
1632
Johannes Bergb291ba12009-07-10 15:29:03 +02001633 if (WARN_ON(!ifmgd->associated))
1634 return;
1635
David Spinadel79543d82012-06-12 09:59:45 +03001636 ieee80211_stop_poll(sdata);
1637
Johannes Berg77fdaa12009-07-07 03:45:17 +02001638 ifmgd->associated = NULL;
Tomas Winkleraa458d12008-09-09 00:32:12 +03001639 netif_carrier_off(sdata->dev);
1640
Eliad Peller88bc40e2012-07-12 17:35:33 +03001641 /*
1642 * if we want to get out of ps before disassoc (why?) we have
1643 * to do it before sending disassoc, as otherwise the null-packet
1644 * won't be valid.
1645 */
1646 if (local->hw.conf.flags & IEEE80211_CONF_PS) {
1647 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
1648 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
1649 }
1650 local->ps_sdata = NULL;
1651
Eliad Pellerab095872012-07-27 12:33:22 +03001652 /* disable per-vif ps */
1653 ieee80211_recalc_ps_vif(sdata);
1654
Eliad Pellerf8239812012-06-27 14:18:22 +03001655 /* flush out any pending frame (e.g. DELBA) before deauth/disassoc */
1656 if (tx)
Johannes Berg39ecc012013-02-13 12:11:00 +01001657 ieee80211_flush_queues(local, sdata);
Eliad Pellerf8239812012-06-27 14:18:22 +03001658
Johannes Berg37ad3882012-02-24 13:50:54 +01001659 /* deauthenticate/disassociate now */
1660 if (tx || frame_buf)
Eliad Peller88a9e312012-06-01 11:14:03 +03001661 ieee80211_send_deauth_disassoc(sdata, ifmgd->bssid, stype,
1662 reason, tx, frame_buf);
Johannes Berg37ad3882012-02-24 13:50:54 +01001663
1664 /* flush out frame */
1665 if (tx)
Johannes Berg39ecc012013-02-13 12:11:00 +01001666 ieee80211_flush_queues(local, sdata);
Johannes Berg37ad3882012-02-24 13:50:54 +01001667
Eliad Peller88a9e312012-06-01 11:14:03 +03001668 /* clear bssid only after building the needed mgmt frames */
1669 memset(ifmgd->bssid, 0, ETH_ALEN);
1670
Johannes Berg37ad3882012-02-24 13:50:54 +01001671 /* remove AP and TDLS peers */
Johannes Berg051007d2012-12-13 23:49:02 +01001672 sta_info_flush_defer(sdata);
Johannes Berg37ad3882012-02-24 13:50:54 +01001673
1674 /* finally reset all BSS / config parameters */
Tomas Winklerf5e5bf22008-09-08 17:33:39 +02001675 changed |= ieee80211_reset_erp_info(sdata);
1676
Tomas Winklerf5e5bf22008-09-08 17:33:39 +02001677 ieee80211_led_assoc(local, 0);
Johannes Bergae5eb022008-10-14 16:58:37 +02001678 changed |= BSS_CHANGED_ASSOC;
1679 sdata->vif.bss_conf.assoc = false;
Tomas Winklerf5e5bf22008-09-08 17:33:39 +02001680
Janusz Dziedzic67baf662013-03-21 15:47:56 +01001681 ifmgd->p2p_noa_index = -1;
1682 memset(&sdata->vif.bss_conf.p2p_noa_attr, 0,
1683 sizeof(sdata->vif.bss_conf.p2p_noa_attr));
Johannes Berg488dd7b2012-10-29 20:08:01 +01001684
Johannes Bergdd5ecfe2013-02-21 17:40:19 +01001685 /* on the next assoc, re-program HT/VHT parameters */
Ben Greearef96a8422011-11-18 11:32:00 -08001686 memset(&ifmgd->ht_capa, 0, sizeof(ifmgd->ht_capa));
1687 memset(&ifmgd->ht_capa_mask, 0, sizeof(ifmgd->ht_capa_mask));
Johannes Bergdd5ecfe2013-02-21 17:40:19 +01001688 memset(&ifmgd->vht_capa, 0, sizeof(ifmgd->vht_capa));
1689 memset(&ifmgd->vht_capa_mask, 0, sizeof(ifmgd->vht_capa_mask));
Johannes Berg413ad502009-05-08 21:21:06 +02001690
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02001691 sdata->ap_power_level = IEEE80211_UNSET_POWER_LEVEL;
Vasanthakumar Thiagarajana8302de2009-01-09 18:14:15 +05301692
Kalle Valo520eb822008-12-18 23:35:27 +02001693 del_timer_sync(&local->dynamic_ps_timer);
1694 cancel_work_sync(&local->dynamic_ps_enable_work);
1695
Juuso Oikarinen68542962010-06-09 13:43:26 +03001696 /* Disable ARP filtering */
Johannes Berg0f19b412013-01-14 16:39:07 +01001697 if (sdata->vif.bss_conf.arp_addr_cnt)
Juuso Oikarinen68542962010-06-09 13:43:26 +03001698 changed |= BSS_CHANGED_ARP_FILTER;
Juuso Oikarinen68542962010-06-09 13:43:26 +03001699
Johannes Berg3abead52012-03-02 15:56:59 +01001700 sdata->vif.bss_conf.qos = false;
1701 changed |= BSS_CHANGED_QOS;
1702
Johannes Berg0aaffa92010-05-05 15:28:27 +02001703 /* The BSSID (not really interesting) and HT changed */
1704 changed |= BSS_CHANGED_BSSID | BSS_CHANGED_HT;
Johannes Bergae5eb022008-10-14 16:58:37 +02001705 ieee80211_bss_info_change_notify(sdata, changed);
Tomas Winkler8e268e42008-11-25 13:05:44 +02001706
Johannes Berg3abead52012-03-02 15:56:59 +01001707 /* disassociated - set to defaults now */
1708 ieee80211_set_wmm_default(sdata, false);
1709
Johannes Bergb9dcf712010-08-27 12:35:54 +02001710 del_timer_sync(&sdata->u.mgd.conn_mon_timer);
1711 del_timer_sync(&sdata->u.mgd.bcn_mon_timer);
1712 del_timer_sync(&sdata->u.mgd.timer);
1713 del_timer_sync(&sdata->u.mgd.chswitch_timer);
Johannes Berg2d9957c2012-08-01 20:54:52 +02001714
Johannes Berg826262c2012-12-10 16:38:14 +02001715 sdata->vif.bss_conf.dtim_period = 0;
Alexander Bondar817cee72013-05-19 14:23:57 +03001716 sdata->vif.bss_conf.beacon_rate = NULL;
1717
Alexander Bondar989c6502013-05-16 17:34:17 +03001718 ifmgd->have_beacon = false;
Johannes Berg826262c2012-12-10 16:38:14 +02001719
Johannes Berg028e8da02012-11-26 11:57:41 +01001720 ifmgd->flags = 0;
1721 ieee80211_vif_release_channel(sdata);
Tomas Winkleraa458d12008-09-09 00:32:12 +03001722}
Jiri Bencf0706e82007-05-05 11:45:53 -07001723
Kalle Valo3cf335d52009-03-22 21:57:06 +02001724void ieee80211_sta_rx_notify(struct ieee80211_sub_if_data *sdata,
1725 struct ieee80211_hdr *hdr)
1726{
1727 /*
1728 * We can postpone the mgd.timer whenever receiving unicast frames
1729 * from AP because we know that the connection is working both ways
1730 * at that time. But multicast frames (and hence also beacons) must
1731 * be ignored here, because we need to trigger the timer during
Johannes Bergb291ba12009-07-10 15:29:03 +02001732 * data idle periods for sending the periodic probe request to the
1733 * AP we're connected to.
Kalle Valo3cf335d52009-03-22 21:57:06 +02001734 */
Johannes Bergb291ba12009-07-10 15:29:03 +02001735 if (is_multicast_ether_addr(hdr->addr1))
1736 return;
1737
Luis R. Rodriguezbe099e82010-09-16 15:12:29 -04001738 ieee80211_sta_reset_conn_monitor(sdata);
Kalle Valo3cf335d52009-03-22 21:57:06 +02001739}
Jiri Bencf0706e82007-05-05 11:45:53 -07001740
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001741static void ieee80211_reset_ap_probe(struct ieee80211_sub_if_data *sdata)
1742{
1743 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001744 struct ieee80211_local *local = sdata->local;
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001745
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001746 mutex_lock(&local->mtx);
Stanislaw Gruszka392b9ff2013-08-27 11:36:35 +02001747 if (!(ifmgd->flags & IEEE80211_STA_CONNECTION_POLL))
1748 goto out;
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001749
Stanislaw Gruszka925e64c2012-05-16 15:27:20 +02001750 __ieee80211_stop_poll(sdata);
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001751
1752 mutex_lock(&local->iflist_mtx);
1753 ieee80211_recalc_ps(local, -1);
1754 mutex_unlock(&local->iflist_mtx);
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001755
1756 if (sdata->local->hw.flags & IEEE80211_HW_CONNECTION_MONITOR)
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001757 goto out;
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001758
1759 /*
1760 * We've received a probe response, but are not sure whether
1761 * we have or will be receiving any beacons or data, so let's
1762 * schedule the timers again, just in case.
1763 */
1764 ieee80211_sta_reset_beacon_monitor(sdata);
1765
1766 mod_timer(&ifmgd->conn_mon_timer,
1767 round_jiffies_up(jiffies +
1768 IEEE80211_CONNECTION_IDLE_TIME));
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001769out:
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001770 mutex_unlock(&local->mtx);
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001771}
1772
1773void ieee80211_sta_tx_notify(struct ieee80211_sub_if_data *sdata,
Felix Fietkau04ac3c02010-12-02 21:01:08 +01001774 struct ieee80211_hdr *hdr, bool ack)
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001775{
Felix Fietkau75706d02010-12-02 21:01:07 +01001776 if (!ieee80211_is_data(hdr->frame_control))
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001777 return;
1778
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001779 if (ieee80211_is_nullfunc(hdr->frame_control) &&
1780 sdata->u.mgd.probe_send_count > 0) {
Felix Fietkau04ac3c02010-12-02 21:01:08 +01001781 if (ack)
Wojciech Dubowikcab1c7f2013-02-14 14:08:37 +01001782 ieee80211_sta_reset_conn_monitor(sdata);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01001783 else
1784 sdata->u.mgd.nullfunc_failed = true;
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001785 ieee80211_queue_work(&sdata->local->hw, &sdata->work);
Wojciech Dubowikcab1c7f2013-02-14 14:08:37 +01001786 return;
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001787 }
Wojciech Dubowikcab1c7f2013-02-14 14:08:37 +01001788
1789 if (ack)
1790 ieee80211_sta_reset_conn_monitor(sdata);
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001791}
1792
Maxim Levitskya43abf22009-07-31 18:54:12 +03001793static void ieee80211_mgd_probe_ap_send(struct ieee80211_sub_if_data *sdata)
1794{
1795 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1796 const u8 *ssid;
Luis R. Rodriguezf01a0672010-09-16 15:12:34 -04001797 u8 *dst = ifmgd->associated->bssid;
Ben Greear180205b2011-02-04 15:30:24 -08001798 u8 unicast_limit = max(1, max_probe_tries - 3);
Luis R. Rodriguezf01a0672010-09-16 15:12:34 -04001799
1800 /*
1801 * Try sending broadcast probe requests for the last three
1802 * probe requests after the first ones failed since some
1803 * buggy APs only support broadcast probe requests.
1804 */
1805 if (ifmgd->probe_send_count >= unicast_limit)
1806 dst = NULL;
Maxim Levitskya43abf22009-07-31 18:54:12 +03001807
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001808 /*
1809 * When the hardware reports an accurate Tx ACK status, it's
1810 * better to send a nullfunc frame instead of a probe request,
1811 * as it will kick us off the AP quickly if we aren't associated
1812 * anymore. The timeout will be reset if the frame is ACKed by
1813 * the AP.
1814 */
Soumik Das992e68b2012-05-20 15:31:13 +05301815 ifmgd->probe_send_count++;
1816
Felix Fietkau04ac3c02010-12-02 21:01:08 +01001817 if (sdata->local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS) {
1818 ifmgd->nullfunc_failed = false;
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001819 ieee80211_send_nullfunc(sdata->local, sdata, 0);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01001820 } else {
Stanislaw Gruszka88c868c2012-03-29 16:30:41 +02001821 int ssid_len;
1822
Johannes Berg9caf0362012-11-29 01:25:20 +01001823 rcu_read_lock();
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001824 ssid = ieee80211_bss_get_ie(ifmgd->associated, WLAN_EID_SSID);
Stanislaw Gruszka88c868c2012-03-29 16:30:41 +02001825 if (WARN_ON_ONCE(ssid == NULL))
1826 ssid_len = 0;
1827 else
1828 ssid_len = ssid[1];
1829
1830 ieee80211_send_probe_req(sdata, dst, ssid + 2, ssid_len, NULL,
Johannes Berg1672c0e32013-01-29 15:02:27 +01001831 0, (u32) -1, true, 0,
Johannes Berg55de9082012-07-26 17:24:39 +02001832 ifmgd->associated->channel, false);
Johannes Berg9caf0362012-11-29 01:25:20 +01001833 rcu_read_unlock();
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001834 }
Maxim Levitskya43abf22009-07-31 18:54:12 +03001835
Ben Greear180205b2011-02-04 15:30:24 -08001836 ifmgd->probe_timeout = jiffies + msecs_to_jiffies(probe_wait_ms);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02001837 run_again(sdata, ifmgd->probe_timeout);
Rajkumar Manoharanf69b9c72012-03-15 06:15:26 +05301838 if (sdata->local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS)
Johannes Berg39ecc012013-02-13 12:11:00 +01001839 ieee80211_flush_queues(sdata->local, sdata);
Maxim Levitskya43abf22009-07-31 18:54:12 +03001840}
1841
Johannes Bergb291ba12009-07-10 15:29:03 +02001842static void ieee80211_mgd_probe_ap(struct ieee80211_sub_if_data *sdata,
1843 bool beacon)
Kalle Valo04de8382009-03-22 21:57:35 +02001844{
Kalle Valo04de8382009-03-22 21:57:35 +02001845 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Bergb291ba12009-07-10 15:29:03 +02001846 bool already = false;
Johannes Berg34bfc412009-05-12 19:58:12 +02001847
Johannes Berg9607e6b662009-12-23 13:15:31 +01001848 if (!ieee80211_sdata_running(sdata))
Johannes Berg0e2b6282009-07-13 13:23:39 +02001849 return;
1850
Johannes Berg8d61ffa2013-05-10 12:32:47 +02001851 sdata_lock(sdata);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001852
1853 if (!ifmgd->associated)
1854 goto out;
1855
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001856 mutex_lock(&sdata->local->mtx);
1857
1858 if (sdata->local->tmp_channel || sdata->local->scanning) {
1859 mutex_unlock(&sdata->local->mtx);
1860 goto out;
1861 }
1862
Ben Greeara13fbe52013-03-25 11:19:35 -07001863 if (beacon) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02001864 mlme_dbg_ratelimited(sdata,
Ben Greear59c1ec22013-03-19 14:19:56 -07001865 "detected beacon loss from AP (missed %d beacons) - probing\n",
1866 beacon_loss_count);
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02001867
Ben Greeara13fbe52013-03-25 11:19:35 -07001868 ieee80211_cqm_rssi_notify(&sdata->vif,
1869 NL80211_CQM_RSSI_BEACON_LOSS_EVENT,
1870 GFP_KERNEL);
1871 }
Kalle Valo04de8382009-03-22 21:57:35 +02001872
Johannes Bergb291ba12009-07-10 15:29:03 +02001873 /*
1874 * The driver/our work has already reported this event or the
1875 * connection monitoring has kicked in and we have already sent
1876 * a probe request. Or maybe the AP died and the driver keeps
1877 * reporting until we disassociate...
1878 *
1879 * In either case we have to ignore the current call to this
1880 * function (except for setting the correct probe reason bit)
1881 * because otherwise we would reset the timer every time and
1882 * never check whether we received a probe response!
1883 */
Stanislaw Gruszka392b9ff2013-08-27 11:36:35 +02001884 if (ifmgd->flags & IEEE80211_STA_CONNECTION_POLL)
Johannes Bergb291ba12009-07-10 15:29:03 +02001885 already = true;
1886
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001887 mutex_unlock(&sdata->local->mtx);
1888
Johannes Bergb291ba12009-07-10 15:29:03 +02001889 if (already)
1890 goto out;
1891
Johannes Berg4e751842009-06-10 15:16:52 +02001892 mutex_lock(&sdata->local->iflist_mtx);
1893 ieee80211_recalc_ps(sdata->local, -1);
1894 mutex_unlock(&sdata->local->iflist_mtx);
1895
Maxim Levitskya43abf22009-07-31 18:54:12 +03001896 ifmgd->probe_send_count = 0;
1897 ieee80211_mgd_probe_ap_send(sdata);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001898 out:
Johannes Berg8d61ffa2013-05-10 12:32:47 +02001899 sdata_unlock(sdata);
Kalle Valo04de8382009-03-22 21:57:35 +02001900}
1901
Juuso Oikarinena619a4c2010-11-11 08:50:18 +02001902struct sk_buff *ieee80211_ap_probereq_get(struct ieee80211_hw *hw,
1903 struct ieee80211_vif *vif)
1904{
1905 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
1906 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Eliad Pellerd9b3b282012-06-28 15:03:13 +03001907 struct cfg80211_bss *cbss;
Juuso Oikarinena619a4c2010-11-11 08:50:18 +02001908 struct sk_buff *skb;
1909 const u8 *ssid;
Stanislaw Gruszka88c868c2012-03-29 16:30:41 +02001910 int ssid_len;
Juuso Oikarinena619a4c2010-11-11 08:50:18 +02001911
1912 if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION))
1913 return NULL;
1914
Johannes Berg8d61ffa2013-05-10 12:32:47 +02001915 sdata_assert_lock(sdata);
Juuso Oikarinena619a4c2010-11-11 08:50:18 +02001916
Eliad Pellerd9b3b282012-06-28 15:03:13 +03001917 if (ifmgd->associated)
1918 cbss = ifmgd->associated;
1919 else if (ifmgd->auth_data)
1920 cbss = ifmgd->auth_data->bss;
1921 else if (ifmgd->assoc_data)
1922 cbss = ifmgd->assoc_data->bss;
1923 else
Juuso Oikarinena619a4c2010-11-11 08:50:18 +02001924 return NULL;
1925
Johannes Berg9caf0362012-11-29 01:25:20 +01001926 rcu_read_lock();
Eliad Pellerd9b3b282012-06-28 15:03:13 +03001927 ssid = ieee80211_bss_get_ie(cbss, WLAN_EID_SSID);
Stanislaw Gruszka88c868c2012-03-29 16:30:41 +02001928 if (WARN_ON_ONCE(ssid == NULL))
1929 ssid_len = 0;
1930 else
1931 ssid_len = ssid[1];
1932
Eliad Pellerd9b3b282012-06-28 15:03:13 +03001933 skb = ieee80211_build_probe_req(sdata, cbss->bssid,
Johannes Berg55de9082012-07-26 17:24:39 +02001934 (u32) -1, cbss->channel,
Johannes Berg6b778632012-07-23 14:53:27 +02001935 ssid + 2, ssid_len,
Johannes Berg85a237f2011-07-18 18:08:36 +02001936 NULL, 0, true);
Johannes Berg9caf0362012-11-29 01:25:20 +01001937 rcu_read_unlock();
Juuso Oikarinena619a4c2010-11-11 08:50:18 +02001938
1939 return skb;
1940}
1941EXPORT_SYMBOL(ieee80211_ap_probereq_get);
1942
Johannes Bergeef9e542013-01-29 13:09:34 +01001943static void __ieee80211_disconnect(struct ieee80211_sub_if_data *sdata)
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02001944{
1945 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Antonio Quartulli6ae16772012-09-07 13:28:52 +02001946 u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN];
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02001947
Johannes Berg8d61ffa2013-05-10 12:32:47 +02001948 sdata_lock(sdata);
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02001949 if (!ifmgd->associated) {
Johannes Berg8d61ffa2013-05-10 12:32:47 +02001950 sdata_unlock(sdata);
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02001951 return;
1952 }
1953
Johannes Berg37ad3882012-02-24 13:50:54 +01001954 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH,
1955 WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY,
Johannes Bergeef9e542013-01-29 13:09:34 +01001956 true, frame_buf);
Johannes Berg882a7c62012-08-01 22:32:45 +02001957 ifmgd->flags &= ~IEEE80211_STA_CSA_RECEIVED;
Johannes Berg5b36ebd2013-02-13 14:21:45 +01001958 ieee80211_wake_queues_by_reason(&sdata->local->hw,
Johannes Berg445ea4e2013-02-13 12:25:28 +01001959 IEEE80211_MAX_QUEUE_MAP,
Johannes Berg5b36ebd2013-02-13 14:21:45 +01001960 IEEE80211_QUEUE_STOP_REASON_CSA);
Johannes Berg7da7cc12010-08-05 17:02:38 +02001961
Johannes Berg6ff57cf2013-05-16 00:55:00 +02001962 cfg80211_tx_mlme_mgmt(sdata->dev, frame_buf,
1963 IEEE80211_DEAUTH_FRAME_LEN);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02001964 sdata_unlock(sdata);
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02001965}
1966
Johannes Bergcc74c0c2012-08-01 16:49:34 +02001967static void ieee80211_beacon_connection_loss_work(struct work_struct *work)
Johannes Bergb291ba12009-07-10 15:29:03 +02001968{
1969 struct ieee80211_sub_if_data *sdata =
1970 container_of(work, struct ieee80211_sub_if_data,
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02001971 u.mgd.beacon_connection_loss_work);
Paul Stewarta85e1d52011-12-09 11:01:49 -08001972 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1973 struct sta_info *sta;
1974
1975 if (ifmgd->associated) {
Mohammed Shafi Shajakhan30fa9042011-12-27 18:54:07 +05301976 rcu_read_lock();
Paul Stewarta85e1d52011-12-09 11:01:49 -08001977 sta = sta_info_get(sdata, ifmgd->bssid);
1978 if (sta)
1979 sta->beacon_loss_count++;
Mohammed Shafi Shajakhan30fa9042011-12-27 18:54:07 +05301980 rcu_read_unlock();
Paul Stewarta85e1d52011-12-09 11:01:49 -08001981 }
Johannes Bergb291ba12009-07-10 15:29:03 +02001982
Johannes Berg682bd382013-01-29 13:13:50 +01001983 if (ifmgd->connection_loss) {
Johannes Berg882a7c62012-08-01 22:32:45 +02001984 sdata_info(sdata, "Connection to AP %pM lost\n",
1985 ifmgd->bssid);
Johannes Bergeef9e542013-01-29 13:09:34 +01001986 __ieee80211_disconnect(sdata);
Johannes Berg882a7c62012-08-01 22:32:45 +02001987 } else {
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02001988 ieee80211_mgd_probe_ap(sdata, true);
Johannes Berg882a7c62012-08-01 22:32:45 +02001989 }
1990}
1991
1992static void ieee80211_csa_connection_drop_work(struct work_struct *work)
1993{
1994 struct ieee80211_sub_if_data *sdata =
1995 container_of(work, struct ieee80211_sub_if_data,
1996 u.mgd.csa_connection_drop_work);
1997
Johannes Bergeef9e542013-01-29 13:09:34 +01001998 __ieee80211_disconnect(sdata);
Johannes Bergb291ba12009-07-10 15:29:03 +02001999}
2000
Kalle Valo04de8382009-03-22 21:57:35 +02002001void ieee80211_beacon_loss(struct ieee80211_vif *vif)
2002{
2003 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02002004 struct ieee80211_hw *hw = &sdata->local->hw;
Kalle Valo04de8382009-03-22 21:57:35 +02002005
Johannes Bergb5878a22010-04-07 16:48:40 +02002006 trace_api_beacon_loss(sdata);
2007
Johannes Berg682bd382013-01-29 13:13:50 +01002008 sdata->u.mgd.connection_loss = false;
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02002009 ieee80211_queue_work(hw, &sdata->u.mgd.beacon_connection_loss_work);
Kalle Valo04de8382009-03-22 21:57:35 +02002010}
2011EXPORT_SYMBOL(ieee80211_beacon_loss);
2012
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02002013void ieee80211_connection_loss(struct ieee80211_vif *vif)
2014{
2015 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
2016 struct ieee80211_hw *hw = &sdata->local->hw;
2017
Johannes Bergb5878a22010-04-07 16:48:40 +02002018 trace_api_connection_loss(sdata);
2019
Johannes Berg682bd382013-01-29 13:13:50 +01002020 sdata->u.mgd.connection_loss = true;
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02002021 ieee80211_queue_work(hw, &sdata->u.mgd.beacon_connection_loss_work);
2022}
2023EXPORT_SYMBOL(ieee80211_connection_loss);
2024
2025
Johannes Berg66e67e42012-01-20 13:55:27 +01002026static void ieee80211_destroy_auth_data(struct ieee80211_sub_if_data *sdata,
2027 bool assoc)
2028{
2029 struct ieee80211_mgd_auth_data *auth_data = sdata->u.mgd.auth_data;
2030
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002031 sdata_assert_lock(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01002032
Johannes Berg66e67e42012-01-20 13:55:27 +01002033 if (!assoc) {
2034 sta_info_destroy_addr(sdata, auth_data->bss->bssid);
2035
2036 memset(sdata->u.mgd.bssid, 0, ETH_ALEN);
2037 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BSSID);
Johannes Berg028e8da02012-11-26 11:57:41 +01002038 sdata->u.mgd.flags = 0;
Johannes Berg55de9082012-07-26 17:24:39 +02002039 ieee80211_vif_release_channel(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01002040 }
2041
Johannes Berg5b112d32013-02-01 01:49:58 +01002042 cfg80211_put_bss(sdata->local->hw.wiphy, auth_data->bss);
Johannes Berg66e67e42012-01-20 13:55:27 +01002043 kfree(auth_data);
2044 sdata->u.mgd.auth_data = NULL;
2045}
2046
2047static void ieee80211_auth_challenge(struct ieee80211_sub_if_data *sdata,
2048 struct ieee80211_mgmt *mgmt, size_t len)
2049{
Johannes Berg1672c0e32013-01-29 15:02:27 +01002050 struct ieee80211_local *local = sdata->local;
Johannes Berg66e67e42012-01-20 13:55:27 +01002051 struct ieee80211_mgd_auth_data *auth_data = sdata->u.mgd.auth_data;
2052 u8 *pos;
2053 struct ieee802_11_elems elems;
Johannes Berg1672c0e32013-01-29 15:02:27 +01002054 u32 tx_flags = 0;
Johannes Berg66e67e42012-01-20 13:55:27 +01002055
2056 pos = mgmt->u.auth.variable;
Johannes Bergb2e506b2013-03-26 14:54:16 +01002057 ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), false, &elems);
Johannes Berg66e67e42012-01-20 13:55:27 +01002058 if (!elems.challenge)
2059 return;
2060 auth_data->expected_transaction = 4;
Johannes Berga1845fc2012-06-27 13:18:36 +02002061 drv_mgd_prepare_tx(sdata->local, sdata);
Johannes Berg1672c0e32013-01-29 15:02:27 +01002062 if (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS)
2063 tx_flags = IEEE80211_TX_CTL_REQ_TX_STATUS |
2064 IEEE80211_TX_INTFL_MLME_CONN_TX;
Jouni Malinen700e8ea2012-09-30 19:29:37 +03002065 ieee80211_send_auth(sdata, 3, auth_data->algorithm, 0,
Johannes Berg66e67e42012-01-20 13:55:27 +01002066 elems.challenge - 2, elems.challenge_len + 2,
2067 auth_data->bss->bssid, auth_data->bss->bssid,
2068 auth_data->key, auth_data->key_len,
Johannes Berg1672c0e32013-01-29 15:02:27 +01002069 auth_data->key_idx, tx_flags);
Johannes Berg66e67e42012-01-20 13:55:27 +01002070}
2071
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002072static void ieee80211_rx_mgmt_auth(struct ieee80211_sub_if_data *sdata,
2073 struct ieee80211_mgmt *mgmt, size_t len)
Johannes Berg66e67e42012-01-20 13:55:27 +01002074{
2075 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2076 u8 bssid[ETH_ALEN];
2077 u16 auth_alg, auth_transaction, status_code;
2078 struct sta_info *sta;
2079
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002080 sdata_assert_lock(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01002081
2082 if (len < 24 + 6)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002083 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002084
2085 if (!ifmgd->auth_data || ifmgd->auth_data->done)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002086 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002087
2088 memcpy(bssid, ifmgd->auth_data->bss->bssid, ETH_ALEN);
2089
Joe Perchesb203ca32012-05-08 18:56:52 +00002090 if (!ether_addr_equal(bssid, mgmt->bssid))
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002091 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002092
2093 auth_alg = le16_to_cpu(mgmt->u.auth.auth_alg);
2094 auth_transaction = le16_to_cpu(mgmt->u.auth.auth_transaction);
2095 status_code = le16_to_cpu(mgmt->u.auth.status_code);
2096
2097 if (auth_alg != ifmgd->auth_data->algorithm ||
Jouni Malinen0f4126e2012-09-30 19:29:38 +03002098 auth_transaction != ifmgd->auth_data->expected_transaction) {
2099 sdata_info(sdata, "%pM unexpected authentication state: alg %d (expected %d) transact %d (expected %d)\n",
2100 mgmt->sa, auth_alg, ifmgd->auth_data->algorithm,
2101 auth_transaction,
2102 ifmgd->auth_data->expected_transaction);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002103 return;
Jouni Malinen0f4126e2012-09-30 19:29:38 +03002104 }
Johannes Berg66e67e42012-01-20 13:55:27 +01002105
2106 if (status_code != WLAN_STATUS_SUCCESS) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002107 sdata_info(sdata, "%pM denied authentication (status %d)\n",
2108 mgmt->sa, status_code);
Eliad Pellerdac211e2012-05-13 18:07:04 +03002109 ieee80211_destroy_auth_data(sdata, false);
Johannes Berg6ff57cf2013-05-16 00:55:00 +02002110 cfg80211_rx_mlme_mgmt(sdata->dev, (u8 *)mgmt, len);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002111 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002112 }
2113
2114 switch (ifmgd->auth_data->algorithm) {
2115 case WLAN_AUTH_OPEN:
2116 case WLAN_AUTH_LEAP:
2117 case WLAN_AUTH_FT:
Jouni Malinen6b8ece32012-09-30 19:29:40 +03002118 case WLAN_AUTH_SAE:
Johannes Berg66e67e42012-01-20 13:55:27 +01002119 break;
2120 case WLAN_AUTH_SHARED_KEY:
2121 if (ifmgd->auth_data->expected_transaction != 4) {
2122 ieee80211_auth_challenge(sdata, mgmt, len);
2123 /* need another frame */
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002124 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002125 }
2126 break;
2127 default:
2128 WARN_ONCE(1, "invalid auth alg %d",
2129 ifmgd->auth_data->algorithm);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002130 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002131 }
2132
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002133 sdata_info(sdata, "authenticated\n");
Johannes Berg66e67e42012-01-20 13:55:27 +01002134 ifmgd->auth_data->done = true;
2135 ifmgd->auth_data->timeout = jiffies + IEEE80211_AUTH_WAIT_ASSOC;
Johannes Berg89afe612013-02-13 15:39:57 +01002136 ifmgd->auth_data->timeout_started = true;
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002137 run_again(sdata, ifmgd->auth_data->timeout);
Johannes Berg66e67e42012-01-20 13:55:27 +01002138
Jouni Malinen6b8ece32012-09-30 19:29:40 +03002139 if (ifmgd->auth_data->algorithm == WLAN_AUTH_SAE &&
2140 ifmgd->auth_data->expected_transaction != 2) {
2141 /*
2142 * Report auth frame to user space for processing since another
2143 * round of Authentication frames is still needed.
2144 */
Johannes Berg6ff57cf2013-05-16 00:55:00 +02002145 cfg80211_rx_mlme_mgmt(sdata->dev, (u8 *)mgmt, len);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002146 return;
Jouni Malinen6b8ece32012-09-30 19:29:40 +03002147 }
2148
Johannes Berg66e67e42012-01-20 13:55:27 +01002149 /* move station state to auth */
2150 mutex_lock(&sdata->local->sta_mtx);
2151 sta = sta_info_get(sdata, bssid);
2152 if (!sta) {
2153 WARN_ONCE(1, "%s: STA %pM not found", sdata->name, bssid);
2154 goto out_err;
2155 }
2156 if (sta_info_move_state(sta, IEEE80211_STA_AUTH)) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002157 sdata_info(sdata, "failed moving %pM to auth\n", bssid);
Johannes Berg66e67e42012-01-20 13:55:27 +01002158 goto out_err;
2159 }
2160 mutex_unlock(&sdata->local->sta_mtx);
2161
Johannes Berg6ff57cf2013-05-16 00:55:00 +02002162 cfg80211_rx_mlme_mgmt(sdata->dev, (u8 *)mgmt, len);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002163 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002164 out_err:
2165 mutex_unlock(&sdata->local->sta_mtx);
2166 /* ignore frame -- wait for timeout */
Johannes Berg66e67e42012-01-20 13:55:27 +01002167}
2168
2169
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002170static void ieee80211_rx_mgmt_deauth(struct ieee80211_sub_if_data *sdata,
2171 struct ieee80211_mgmt *mgmt, size_t len)
Jiri Bencf0706e82007-05-05 11:45:53 -07002172{
Johannes Berg46900292009-02-15 12:44:28 +01002173 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg77fdaa12009-07-07 03:45:17 +02002174 const u8 *bssid = NULL;
Jiri Bencf0706e82007-05-05 11:45:53 -07002175 u16 reason_code;
2176
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002177 sdata_assert_lock(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01002178
Johannes Bergf4ea83d2008-06-30 15:10:46 +02002179 if (len < 24 + 2)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002180 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07002181
Johannes Berg66e67e42012-01-20 13:55:27 +01002182 if (!ifmgd->associated ||
Joe Perchesb203ca32012-05-08 18:56:52 +00002183 !ether_addr_equal(mgmt->bssid, ifmgd->associated->bssid))
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002184 return;
Johannes Berg77fdaa12009-07-07 03:45:17 +02002185
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01002186 bssid = ifmgd->associated->bssid;
Jiri Bencf0706e82007-05-05 11:45:53 -07002187
2188 reason_code = le16_to_cpu(mgmt->u.deauth.reason_code);
2189
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002190 sdata_info(sdata, "deauthenticated from %pM (Reason: %u)\n",
2191 bssid, reason_code);
Jiri Bencf0706e82007-05-05 11:45:53 -07002192
Johannes Berg37ad3882012-02-24 13:50:54 +01002193 ieee80211_set_disassoc(sdata, 0, 0, false, NULL);
2194
Johannes Berg6ff57cf2013-05-16 00:55:00 +02002195 cfg80211_rx_mlme_mgmt(sdata->dev, (u8 *)mgmt, len);
Jiri Bencf0706e82007-05-05 11:45:53 -07002196}
2197
2198
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002199static void ieee80211_rx_mgmt_disassoc(struct ieee80211_sub_if_data *sdata,
2200 struct ieee80211_mgmt *mgmt, size_t len)
Jiri Bencf0706e82007-05-05 11:45:53 -07002201{
Johannes Berg46900292009-02-15 12:44:28 +01002202 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jiri Bencf0706e82007-05-05 11:45:53 -07002203 u16 reason_code;
2204
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002205 sdata_assert_lock(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01002206
Johannes Bergf4ea83d2008-06-30 15:10:46 +02002207 if (len < 24 + 2)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002208 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07002209
Johannes Berg66e67e42012-01-20 13:55:27 +01002210 if (!ifmgd->associated ||
Joe Perchesb203ca32012-05-08 18:56:52 +00002211 !ether_addr_equal(mgmt->bssid, ifmgd->associated->bssid))
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002212 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07002213
2214 reason_code = le16_to_cpu(mgmt->u.disassoc.reason_code);
2215
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002216 sdata_info(sdata, "disassociated from %pM (Reason: %u)\n",
2217 mgmt->sa, reason_code);
Jiri Bencf0706e82007-05-05 11:45:53 -07002218
Johannes Berg37ad3882012-02-24 13:50:54 +01002219 ieee80211_set_disassoc(sdata, 0, 0, false, NULL);
2220
Johannes Berg6ff57cf2013-05-16 00:55:00 +02002221 cfg80211_rx_mlme_mgmt(sdata->dev, (u8 *)mgmt, len);
Jiri Bencf0706e82007-05-05 11:45:53 -07002222}
2223
Christian Lamparterc74d0842011-10-15 00:14:49 +02002224static void ieee80211_get_rates(struct ieee80211_supported_band *sband,
2225 u8 *supp_rates, unsigned int supp_rates_len,
2226 u32 *rates, u32 *basic_rates,
2227 bool *have_higher_than_11mbit,
Simon Wunderlich2103dec2013-07-08 16:55:53 +02002228 int *min_rate, int *min_rate_index,
2229 int shift, u32 rate_flags)
Christian Lamparterc74d0842011-10-15 00:14:49 +02002230{
2231 int i, j;
2232
2233 for (i = 0; i < supp_rates_len; i++) {
Simon Wunderlich2103dec2013-07-08 16:55:53 +02002234 int rate = supp_rates[i] & 0x7f;
Christian Lamparterc74d0842011-10-15 00:14:49 +02002235 bool is_basic = !!(supp_rates[i] & 0x80);
2236
Simon Wunderlich2103dec2013-07-08 16:55:53 +02002237 if ((rate * 5 * (1 << shift)) > 110)
Christian Lamparterc74d0842011-10-15 00:14:49 +02002238 *have_higher_than_11mbit = true;
2239
2240 /*
2241 * BSS_MEMBERSHIP_SELECTOR_HT_PHY is defined in 802.11n-2009
2242 * 7.3.2.2 as a magic value instead of a rate. Hence, skip it.
2243 *
2244 * Note: Even through the membership selector and the basic
2245 * rate flag share the same bit, they are not exactly
2246 * the same.
2247 */
2248 if (!!(supp_rates[i] & 0x80) &&
2249 (supp_rates[i] & 0x7f) == BSS_MEMBERSHIP_SELECTOR_HT_PHY)
2250 continue;
2251
2252 for (j = 0; j < sband->n_bitrates; j++) {
Simon Wunderlich2103dec2013-07-08 16:55:53 +02002253 struct ieee80211_rate *br;
2254 int brate;
2255
2256 br = &sband->bitrates[j];
2257 if ((rate_flags & br->flags) != rate_flags)
2258 continue;
2259
2260 brate = DIV_ROUND_UP(br->bitrate, (1 << shift) * 5);
2261 if (brate == rate) {
Christian Lamparterc74d0842011-10-15 00:14:49 +02002262 *rates |= BIT(j);
2263 if (is_basic)
2264 *basic_rates |= BIT(j);
Simon Wunderlich2103dec2013-07-08 16:55:53 +02002265 if ((rate * 5) < *min_rate) {
2266 *min_rate = rate * 5;
Christian Lamparterc74d0842011-10-15 00:14:49 +02002267 *min_rate_index = j;
2268 }
2269 break;
2270 }
2271 }
2272 }
2273}
Jiri Bencf0706e82007-05-05 11:45:53 -07002274
Johannes Berg66e67e42012-01-20 13:55:27 +01002275static void ieee80211_destroy_assoc_data(struct ieee80211_sub_if_data *sdata,
2276 bool assoc)
2277{
2278 struct ieee80211_mgd_assoc_data *assoc_data = sdata->u.mgd.assoc_data;
2279
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002280 sdata_assert_lock(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01002281
Johannes Berg66e67e42012-01-20 13:55:27 +01002282 if (!assoc) {
2283 sta_info_destroy_addr(sdata, assoc_data->bss->bssid);
2284
2285 memset(sdata->u.mgd.bssid, 0, ETH_ALEN);
2286 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BSSID);
Johannes Berg028e8da02012-11-26 11:57:41 +01002287 sdata->u.mgd.flags = 0;
Johannes Berg55de9082012-07-26 17:24:39 +02002288 ieee80211_vif_release_channel(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01002289 }
2290
2291 kfree(assoc_data);
2292 sdata->u.mgd.assoc_data = NULL;
2293}
2294
2295static bool ieee80211_assoc_success(struct ieee80211_sub_if_data *sdata,
2296 struct cfg80211_bss *cbss,
Johannes Bergaf6b6372009-12-23 13:15:35 +01002297 struct ieee80211_mgmt *mgmt, size_t len)
Jiri Bencf0706e82007-05-05 11:45:53 -07002298{
Johannes Berg46900292009-02-15 12:44:28 +01002299 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg471b3ef2007-12-28 14:32:58 +01002300 struct ieee80211_local *local = sdata->local;
Johannes Berg8318d782008-01-24 19:38:38 +01002301 struct ieee80211_supported_band *sband;
Jiri Bencf0706e82007-05-05 11:45:53 -07002302 struct sta_info *sta;
Johannes Bergaf6b6372009-12-23 13:15:35 +01002303 u8 *pos;
Johannes Bergaf6b6372009-12-23 13:15:35 +01002304 u16 capab_info, aid;
Jiri Bencf0706e82007-05-05 11:45:53 -07002305 struct ieee802_11_elems elems;
Johannes Bergbda39332008-10-11 01:51:51 +02002306 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
Johannes Berg35d865a2013-05-28 10:54:03 +02002307 const struct cfg80211_bss_ies *bss_ies = NULL;
2308 struct ieee80211_mgd_assoc_data *assoc_data = ifmgd->assoc_data;
Johannes Bergae5eb022008-10-14 16:58:37 +02002309 u32 changed = 0;
Christian Lamparterc74d0842011-10-15 00:14:49 +02002310 int err;
Johannes Berg35d865a2013-05-28 10:54:03 +02002311 bool ret;
Jiri Bencf0706e82007-05-05 11:45:53 -07002312
Johannes Bergaf6b6372009-12-23 13:15:35 +01002313 /* AssocResp and ReassocResp have identical structure */
Jiri Bencf0706e82007-05-05 11:45:53 -07002314
Jiri Bencf0706e82007-05-05 11:45:53 -07002315 aid = le16_to_cpu(mgmt->u.assoc_resp.aid);
Johannes Bergaf6b6372009-12-23 13:15:35 +01002316 capab_info = le16_to_cpu(mgmt->u.assoc_resp.capab_info);
Jiri Bencf0706e82007-05-05 11:45:53 -07002317
Johannes Berg1dd84aa2007-10-10 12:03:41 +02002318 if ((aid & (BIT(15) | BIT(14))) != (BIT(15) | BIT(14)))
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002319 sdata_info(sdata, "invalid AID value 0x%x; bits 15:14 not set\n",
2320 aid);
Johannes Berg1dd84aa2007-10-10 12:03:41 +02002321 aid &= ~(BIT(15) | BIT(14));
2322
Johannes Berg05cb9102011-10-28 11:59:47 +02002323 ifmgd->broken_ap = false;
2324
2325 if (aid == 0 || aid > IEEE80211_MAX_AID) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002326 sdata_info(sdata, "invalid AID value %d (out of range), turn off PS\n",
2327 aid);
Johannes Berg05cb9102011-10-28 11:59:47 +02002328 aid = 0;
2329 ifmgd->broken_ap = true;
2330 }
2331
Johannes Bergaf6b6372009-12-23 13:15:35 +01002332 pos = mgmt->u.assoc_resp.variable;
Johannes Bergb2e506b2013-03-26 14:54:16 +01002333 ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), false, &elems);
Johannes Bergaf6b6372009-12-23 13:15:35 +01002334
Jiri Bencf0706e82007-05-05 11:45:53 -07002335 if (!elems.supp_rates) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002336 sdata_info(sdata, "no SuppRates element in AssocResp\n");
Johannes Bergaf6b6372009-12-23 13:15:35 +01002337 return false;
Jiri Bencf0706e82007-05-05 11:45:53 -07002338 }
2339
Johannes Berg46900292009-02-15 12:44:28 +01002340 ifmgd->aid = aid;
Jiri Bencf0706e82007-05-05 11:45:53 -07002341
Johannes Berg30eb1dc2013-02-08 15:12:14 +01002342 /*
Johannes Berg35d865a2013-05-28 10:54:03 +02002343 * Some APs are erroneously not including some information in their
2344 * (re)association response frames. Try to recover by using the data
2345 * from the beacon or probe response. This seems to afflict mobile
2346 * 2G/3G/4G wifi routers, reported models include the "Onda PN51T",
2347 * "Vodafone PocketWiFi 2", "ZTE MF60" and a similar T-Mobile device.
2348 */
2349 if ((assoc_data->wmm && !elems.wmm_param) ||
2350 (!(ifmgd->flags & IEEE80211_STA_DISABLE_HT) &&
2351 (!elems.ht_cap_elem || !elems.ht_operation)) ||
2352 (!(ifmgd->flags & IEEE80211_STA_DISABLE_VHT) &&
2353 (!elems.vht_cap_elem || !elems.vht_operation))) {
2354 const struct cfg80211_bss_ies *ies;
2355 struct ieee802_11_elems bss_elems;
2356
2357 rcu_read_lock();
2358 ies = rcu_dereference(cbss->ies);
2359 if (ies)
2360 bss_ies = kmemdup(ies, sizeof(*ies) + ies->len,
2361 GFP_ATOMIC);
2362 rcu_read_unlock();
2363 if (!bss_ies)
2364 return false;
2365
2366 ieee802_11_parse_elems(bss_ies->data, bss_ies->len,
2367 false, &bss_elems);
2368 if (assoc_data->wmm &&
2369 !elems.wmm_param && bss_elems.wmm_param) {
2370 elems.wmm_param = bss_elems.wmm_param;
2371 sdata_info(sdata,
2372 "AP bug: WMM param missing from AssocResp\n");
2373 }
2374
2375 /*
2376 * Also check if we requested HT/VHT, otherwise the AP doesn't
2377 * have to include the IEs in the (re)association response.
2378 */
2379 if (!elems.ht_cap_elem && bss_elems.ht_cap_elem &&
2380 !(ifmgd->flags & IEEE80211_STA_DISABLE_HT)) {
2381 elems.ht_cap_elem = bss_elems.ht_cap_elem;
2382 sdata_info(sdata,
2383 "AP bug: HT capability missing from AssocResp\n");
2384 }
2385 if (!elems.ht_operation && bss_elems.ht_operation &&
2386 !(ifmgd->flags & IEEE80211_STA_DISABLE_HT)) {
2387 elems.ht_operation = bss_elems.ht_operation;
2388 sdata_info(sdata,
2389 "AP bug: HT operation missing from AssocResp\n");
2390 }
2391 if (!elems.vht_cap_elem && bss_elems.vht_cap_elem &&
2392 !(ifmgd->flags & IEEE80211_STA_DISABLE_VHT)) {
2393 elems.vht_cap_elem = bss_elems.vht_cap_elem;
2394 sdata_info(sdata,
2395 "AP bug: VHT capa missing from AssocResp\n");
2396 }
2397 if (!elems.vht_operation && bss_elems.vht_operation &&
2398 !(ifmgd->flags & IEEE80211_STA_DISABLE_VHT)) {
2399 elems.vht_operation = bss_elems.vht_operation;
2400 sdata_info(sdata,
2401 "AP bug: VHT operation missing from AssocResp\n");
2402 }
2403 }
2404
2405 /*
Johannes Berg30eb1dc2013-02-08 15:12:14 +01002406 * We previously checked these in the beacon/probe response, so
2407 * they should be present here. This is just a safety net.
2408 */
2409 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_HT) &&
2410 (!elems.wmm_param || !elems.ht_cap_elem || !elems.ht_operation)) {
2411 sdata_info(sdata,
Johannes Berg35d865a2013-05-28 10:54:03 +02002412 "HT AP is missing WMM params or HT capability/operation\n");
2413 ret = false;
2414 goto out;
Johannes Berg30eb1dc2013-02-08 15:12:14 +01002415 }
2416
2417 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_VHT) &&
2418 (!elems.vht_cap_elem || !elems.vht_operation)) {
2419 sdata_info(sdata,
Johannes Berg35d865a2013-05-28 10:54:03 +02002420 "VHT AP is missing VHT capability/operation\n");
2421 ret = false;
2422 goto out;
Johannes Berg30eb1dc2013-02-08 15:12:14 +01002423 }
2424
Guy Eilam2a33bee2011-08-17 15:18:15 +03002425 mutex_lock(&sdata->local->sta_mtx);
2426 /*
2427 * station info was already allocated and inserted before
2428 * the association and should be available to us
2429 */
Johannes Berg7852e362012-01-20 13:55:24 +01002430 sta = sta_info_get(sdata, cbss->bssid);
Guy Eilam2a33bee2011-08-17 15:18:15 +03002431 if (WARN_ON(!sta)) {
2432 mutex_unlock(&sdata->local->sta_mtx);
Johannes Berg35d865a2013-05-28 10:54:03 +02002433 ret = false;
2434 goto out;
Jiri Bencf0706e82007-05-05 11:45:53 -07002435 }
2436
Johannes Berg55de9082012-07-26 17:24:39 +02002437 sband = local->hw.wiphy->bands[ieee80211_get_sdata_band(sdata)];
Johannes Berg8318d782008-01-24 19:38:38 +01002438
Johannes Berg30eb1dc2013-02-08 15:12:14 +01002439 /* Set up internal HT/VHT capabilities */
Johannes Berga8243b72012-11-22 14:32:09 +01002440 if (elems.ht_cap_elem && !(ifmgd->flags & IEEE80211_STA_DISABLE_HT))
Ben Greearef96a8422011-11-18 11:32:00 -08002441 ieee80211_ht_cap_ie_to_sta_ht_cap(sdata, sband,
Johannes Berge1a0c6b2013-02-07 11:47:44 +01002442 elems.ht_cap_elem, sta);
Johannes Berg64f68e52012-03-28 10:58:37 +02002443
Mahesh Palivela818255e2012-10-10 11:33:04 +00002444 if (elems.vht_cap_elem && !(ifmgd->flags & IEEE80211_STA_DISABLE_VHT))
2445 ieee80211_vht_cap_ie_to_sta_vht_cap(sdata, sband,
Johannes Berg4a342152013-02-07 11:58:58 +01002446 elems.vht_cap_elem, sta);
Mahesh Palivela818255e2012-10-10 11:33:04 +00002447
Johannes Berg30eb1dc2013-02-08 15:12:14 +01002448 /*
2449 * Some APs, e.g. Netgear WNDR3700, report invalid HT operation data
2450 * in their association response, so ignore that data for our own
2451 * configuration. If it changed since the last beacon, we'll get the
2452 * next beacon and update then.
2453 */
Johannes Berg11289582013-02-07 17:36:12 +01002454
Johannes Bergbee7f5862013-02-07 22:24:55 +01002455 /*
2456 * If an operating mode notification IE is present, override the
2457 * NSS calculation (that would be done in rate_control_rate_init())
2458 * and use the # of streams from that element.
2459 */
2460 if (elems.opmode_notif &&
2461 !(*elems.opmode_notif & IEEE80211_OPMODE_NOTIF_RX_NSS_TYPE_BF)) {
2462 u8 nss;
2463
2464 nss = *elems.opmode_notif & IEEE80211_OPMODE_NOTIF_RX_NSS_MASK;
2465 nss >>= IEEE80211_OPMODE_NOTIF_RX_NSS_SHIFT;
2466 nss += 1;
2467 sta->sta.rx_nss = nss;
2468 }
2469
Johannes Berg4b7679a2008-09-18 18:14:18 +02002470 rate_control_rate_init(sta);
Jiri Bencf0706e82007-05-05 11:45:53 -07002471
Johannes Berg46900292009-02-15 12:44:28 +01002472 if (ifmgd->flags & IEEE80211_STA_MFP_ENABLED)
Johannes Bergc2c98fd2011-09-29 16:04:36 +02002473 set_sta_flag(sta, WLAN_STA_MFP);
Jouni Malinen5394af42009-01-08 13:31:59 +02002474
Johannes Bergddf4ac52008-10-22 11:41:38 +02002475 if (elems.wmm_param)
Johannes Bergc2c98fd2011-09-29 16:04:36 +02002476 set_sta_flag(sta, WLAN_STA_WME);
Johannes Bergddf4ac52008-10-22 11:41:38 +02002477
Johannes Berg3e4d40f2013-02-07 17:19:08 +01002478 err = sta_info_move_state(sta, IEEE80211_STA_ASSOC);
Johannes Bergc8987872012-01-20 13:55:17 +01002479 if (!err && !(ifmgd->flags & IEEE80211_STA_CONTROL_PORT))
2480 err = sta_info_move_state(sta, IEEE80211_STA_AUTHORIZED);
2481 if (err) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002482 sdata_info(sdata,
2483 "failed to move station %pM to desired state\n",
2484 sta->sta.addr);
Johannes Bergc8987872012-01-20 13:55:17 +01002485 WARN_ON(__sta_info_destroy(sta));
2486 mutex_unlock(&sdata->local->sta_mtx);
Johannes Berg35d865a2013-05-28 10:54:03 +02002487 ret = false;
2488 goto out;
Johannes Bergc8987872012-01-20 13:55:17 +01002489 }
2490
Johannes Berg7852e362012-01-20 13:55:24 +01002491 mutex_unlock(&sdata->local->sta_mtx);
Johannes Bergddf4ac52008-10-22 11:41:38 +02002492
Juuso Oikarinenf2176d72010-09-28 14:39:32 +03002493 /*
2494 * Always handle WMM once after association regardless
2495 * of the first value the AP uses. Setting -1 here has
2496 * that effect because the AP values is an unsigned
2497 * 4-bit value.
2498 */
2499 ifmgd->wmm_last_param_set = -1;
2500
Johannes Bergddf4ac52008-10-22 11:41:38 +02002501 if (elems.wmm_param)
Johannes Berg4ced3f72010-07-19 16:39:04 +02002502 ieee80211_sta_wmm_params(local, sdata, elems.wmm_param,
Jiri Bencf0706e82007-05-05 11:45:53 -07002503 elems.wmm_param_len);
Johannes Bergaa837e12009-05-07 16:16:24 +02002504 else
Johannes Berg3abead52012-03-02 15:56:59 +01002505 ieee80211_set_wmm_default(sdata, false);
2506 changed |= BSS_CHANGED_QOS;
Jiri Bencf0706e82007-05-05 11:45:53 -07002507
Tomas Winkler21c0cbe2008-03-28 16:33:34 -07002508 /* set AID and assoc capability,
2509 * ieee80211_set_associated() will tell the driver */
Johannes Berg8318d782008-01-24 19:38:38 +01002510 bss_conf->aid = aid;
Tomas Winkler21c0cbe2008-03-28 16:33:34 -07002511 bss_conf->assoc_capability = capab_info;
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01002512 ieee80211_set_associated(sdata, cbss, changed);
Jiri Bencf0706e82007-05-05 11:45:53 -07002513
Kalle Valo15b7b062009-03-22 21:57:14 +02002514 /*
Felix Fietkaud5242152010-01-08 18:06:26 +01002515 * If we're using 4-addr mode, let the AP know that we're
2516 * doing so, so that it can create the STA VLAN on its side
2517 */
2518 if (ifmgd->use_4addr)
2519 ieee80211_send_4addr_nullfunc(local, sdata);
2520
2521 /*
Johannes Bergb291ba12009-07-10 15:29:03 +02002522 * Start timer to probe the connection to the AP now.
2523 * Also start the timer that will detect beacon loss.
Kalle Valo15b7b062009-03-22 21:57:14 +02002524 */
Johannes Bergb291ba12009-07-10 15:29:03 +02002525 ieee80211_sta_rx_notify(sdata, (struct ieee80211_hdr *)mgmt);
Luis R. Rodriguezd3a910a2010-09-16 15:12:32 -04002526 ieee80211_sta_reset_beacon_monitor(sdata);
Kalle Valo15b7b062009-03-22 21:57:14 +02002527
Johannes Berg35d865a2013-05-28 10:54:03 +02002528 ret = true;
2529 out:
2530 kfree(bss_ies);
2531 return ret;
Jiri Bencf0706e82007-05-05 11:45:53 -07002532}
2533
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002534static void ieee80211_rx_mgmt_assoc_resp(struct ieee80211_sub_if_data *sdata,
2535 struct ieee80211_mgmt *mgmt,
2536 size_t len)
Johannes Berg66e67e42012-01-20 13:55:27 +01002537{
2538 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2539 struct ieee80211_mgd_assoc_data *assoc_data = ifmgd->assoc_data;
2540 u16 capab_info, status_code, aid;
2541 struct ieee802_11_elems elems;
2542 u8 *pos;
2543 bool reassoc;
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002544 struct cfg80211_bss *bss;
Jiri Bencf0706e82007-05-05 11:45:53 -07002545
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002546 sdata_assert_lock(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01002547
2548 if (!assoc_data)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002549 return;
Joe Perchesb203ca32012-05-08 18:56:52 +00002550 if (!ether_addr_equal(assoc_data->bss->bssid, mgmt->bssid))
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002551 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002552
2553 /*
2554 * AssocResp and ReassocResp have identical structure, so process both
2555 * of them in this function.
2556 */
2557
2558 if (len < 24 + 6)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002559 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002560
2561 reassoc = ieee80211_is_reassoc_req(mgmt->frame_control);
2562 capab_info = le16_to_cpu(mgmt->u.assoc_resp.capab_info);
2563 status_code = le16_to_cpu(mgmt->u.assoc_resp.status_code);
2564 aid = le16_to_cpu(mgmt->u.assoc_resp.aid);
2565
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002566 sdata_info(sdata,
2567 "RX %sssocResp from %pM (capab=0x%x status=%d aid=%d)\n",
2568 reassoc ? "Rea" : "A", mgmt->sa,
2569 capab_info, status_code, (u16)(aid & ~(BIT(15) | BIT(14))));
Johannes Berg66e67e42012-01-20 13:55:27 +01002570
2571 pos = mgmt->u.assoc_resp.variable;
Johannes Bergb2e506b2013-03-26 14:54:16 +01002572 ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), false, &elems);
Johannes Berg66e67e42012-01-20 13:55:27 +01002573
2574 if (status_code == WLAN_STATUS_ASSOC_REJECTED_TEMPORARILY &&
Johannes Berg79ba1d82013-03-27 14:38:07 +01002575 elems.timeout_int &&
2576 elems.timeout_int->type == WLAN_TIMEOUT_ASSOC_COMEBACK) {
Johannes Berg66e67e42012-01-20 13:55:27 +01002577 u32 tu, ms;
Johannes Berg79ba1d82013-03-27 14:38:07 +01002578 tu = le32_to_cpu(elems.timeout_int->value);
Johannes Berg66e67e42012-01-20 13:55:27 +01002579 ms = tu * 1024 / 1000;
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002580 sdata_info(sdata,
2581 "%pM rejected association temporarily; comeback duration %u TU (%u ms)\n",
2582 mgmt->sa, tu, ms);
Johannes Berg66e67e42012-01-20 13:55:27 +01002583 assoc_data->timeout = jiffies + msecs_to_jiffies(ms);
Johannes Berg89afe612013-02-13 15:39:57 +01002584 assoc_data->timeout_started = true;
Johannes Berg66e67e42012-01-20 13:55:27 +01002585 if (ms > IEEE80211_ASSOC_TIMEOUT)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002586 run_again(sdata, assoc_data->timeout);
2587 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002588 }
2589
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002590 bss = assoc_data->bss;
Johannes Berg66e67e42012-01-20 13:55:27 +01002591
2592 if (status_code != WLAN_STATUS_SUCCESS) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002593 sdata_info(sdata, "%pM denied association (code=%d)\n",
2594 mgmt->sa, status_code);
Johannes Berg66e67e42012-01-20 13:55:27 +01002595 ieee80211_destroy_assoc_data(sdata, false);
2596 } else {
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002597 if (!ieee80211_assoc_success(sdata, bss, mgmt, len)) {
Johannes Berg66e67e42012-01-20 13:55:27 +01002598 /* oops -- internal error -- send timeout for now */
Eliad Peller10a91092012-07-02 14:42:03 +03002599 ieee80211_destroy_assoc_data(sdata, false);
Johannes Berg959867f2013-06-19 13:05:42 +02002600 cfg80211_assoc_timeout(sdata->dev, bss);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002601 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002602 }
John W. Linville635d9992012-07-09 16:34:34 -04002603 sdata_info(sdata, "associated\n");
Johannes Berg79ebfb82012-02-20 14:19:58 +01002604
2605 /*
2606 * destroy assoc_data afterwards, as otherwise an idle
2607 * recalc after assoc_data is NULL but before associated
2608 * is set can cause the interface to go idle
2609 */
2610 ieee80211_destroy_assoc_data(sdata, true);
Johannes Berg66e67e42012-01-20 13:55:27 +01002611 }
2612
Johannes Berg6ff57cf2013-05-16 00:55:00 +02002613 cfg80211_rx_assoc_resp(sdata->dev, bss, (u8 *)mgmt, len);
Johannes Berg66e67e42012-01-20 13:55:27 +01002614}
Johannes Berg8e3c1b72012-12-10 13:44:19 +01002615
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002616static void ieee80211_rx_bss_info(struct ieee80211_sub_if_data *sdata,
Johannes Berg8e3c1b72012-12-10 13:44:19 +01002617 struct ieee80211_mgmt *mgmt, size_t len,
Jiri Bencf0706e82007-05-05 11:45:53 -07002618 struct ieee80211_rx_status *rx_status,
Emmanuel Grumbachd45c4172012-12-10 16:19:13 +02002619 struct ieee802_11_elems *elems)
Jiri Bencf0706e82007-05-05 11:45:53 -07002620{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002621 struct ieee80211_local *local = sdata->local;
Johannes Berg98c8fcc2008-09-08 17:44:26 +02002622 int freq;
Johannes Bergc2b13452008-09-11 00:01:55 +02002623 struct ieee80211_bss *bss;
Johannes Bergfab7d4a2008-03-16 18:42:44 +01002624 struct ieee80211_channel *channel;
Johannes Berg56007a02010-01-26 14:19:52 +01002625
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002626 sdata_assert_lock(sdata);
Johannes Bergb4f286a12013-03-26 14:13:58 +01002627
Johannes Berg1cd8e882013-03-27 14:30:12 +01002628 if (elems->ds_params)
Bruno Randolf59eb21a2011-01-17 13:37:28 +09002629 freq = ieee80211_channel_to_frequency(elems->ds_params[0],
2630 rx_status->band);
Johannes Berg5bda6172008-09-08 11:05:10 +02002631 else
2632 freq = rx_status->freq;
2633
2634 channel = ieee80211_get_channel(local->hw.wiphy, freq);
2635
2636 if (!channel || channel->flags & IEEE80211_CHAN_DISABLED)
2637 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07002638
Johannes Berg98c8fcc2008-09-08 17:44:26 +02002639 bss = ieee80211_bss_info_update(local, rx_status, mgmt, len, elems,
Emmanuel Grumbachd45c4172012-12-10 16:19:13 +02002640 channel);
Alexander Bondar817cee72013-05-19 14:23:57 +03002641 if (bss) {
Johannes Berg77fdaa12009-07-07 03:45:17 +02002642 ieee80211_rx_bss_put(local, bss);
Alexander Bondar817cee72013-05-19 14:23:57 +03002643 sdata->vif.bss_conf.beacon_rate = bss->beacon_rate;
2644 }
Jiri Bencf0706e82007-05-05 11:45:53 -07002645}
2646
2647
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002648static void ieee80211_rx_mgmt_probe_resp(struct ieee80211_sub_if_data *sdata,
Johannes Bergaf6b6372009-12-23 13:15:35 +01002649 struct sk_buff *skb)
Jiri Bencf0706e82007-05-05 11:45:53 -07002650{
Johannes Bergaf6b6372009-12-23 13:15:35 +01002651 struct ieee80211_mgmt *mgmt = (void *)skb->data;
Kalle Valo15b7b062009-03-22 21:57:14 +02002652 struct ieee80211_if_managed *ifmgd;
Johannes Bergaf6b6372009-12-23 13:15:35 +01002653 struct ieee80211_rx_status *rx_status = (void *) skb->cb;
2654 size_t baselen, len = skb->len;
Ester Kummerae6a44e2008-06-27 18:54:48 +03002655 struct ieee802_11_elems elems;
2656
Kalle Valo15b7b062009-03-22 21:57:14 +02002657 ifmgd = &sdata->u.mgd;
2658
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002659 sdata_assert_lock(sdata);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002660
Joe Perchesb203ca32012-05-08 18:56:52 +00002661 if (!ether_addr_equal(mgmt->da, sdata->vif.addr))
Tomas Winkler8e7cdbb2008-08-03 14:32:01 +03002662 return; /* ignore ProbeResp to foreign address */
2663
Ester Kummerae6a44e2008-06-27 18:54:48 +03002664 baselen = (u8 *) mgmt->u.probe_resp.variable - (u8 *) mgmt;
2665 if (baselen > len)
2666 return;
2667
2668 ieee802_11_parse_elems(mgmt->u.probe_resp.variable, len - baselen,
Johannes Bergb2e506b2013-03-26 14:54:16 +01002669 false, &elems);
Ester Kummerae6a44e2008-06-27 18:54:48 +03002670
Emmanuel Grumbachd45c4172012-12-10 16:19:13 +02002671 ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems);
Ron Rindjunsky9859b812008-08-09 03:02:19 +03002672
Johannes Berg77fdaa12009-07-07 03:45:17 +02002673 if (ifmgd->associated &&
Joe Perchesb203ca32012-05-08 18:56:52 +00002674 ether_addr_equal(mgmt->bssid, ifmgd->associated->bssid))
Felix Fietkau4e5ff372010-11-23 03:10:31 +01002675 ieee80211_reset_ap_probe(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01002676
2677 if (ifmgd->auth_data && !ifmgd->auth_data->bss->proberesp_ies &&
Joe Perchesb203ca32012-05-08 18:56:52 +00002678 ether_addr_equal(mgmt->bssid, ifmgd->auth_data->bss->bssid)) {
Johannes Berg66e67e42012-01-20 13:55:27 +01002679 /* got probe response, continue with auth */
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002680 sdata_info(sdata, "direct probe responded\n");
Johannes Berg66e67e42012-01-20 13:55:27 +01002681 ifmgd->auth_data->tries = 0;
2682 ifmgd->auth_data->timeout = jiffies;
Johannes Berg89afe612013-02-13 15:39:57 +01002683 ifmgd->auth_data->timeout_started = true;
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002684 run_again(sdata, ifmgd->auth_data->timeout);
Johannes Berg66e67e42012-01-20 13:55:27 +01002685 }
Jiri Bencf0706e82007-05-05 11:45:53 -07002686}
2687
Johannes Bergd91f36d2009-04-16 13:17:26 +02002688/*
2689 * This is the canonical list of information elements we care about,
2690 * the filter code also gives us all changes to the Microsoft OUI
2691 * (00:50:F2) vendor IE which is used for WMM which we need to track.
2692 *
2693 * We implement beacon filtering in software since that means we can
2694 * avoid processing the frame here and in cfg80211, and userspace
2695 * will not be able to tell whether the hardware supports it or not.
2696 *
2697 * XXX: This list needs to be dynamic -- userspace needs to be able to
2698 * add items it requires. It also needs to be able to tell us to
2699 * look out for other vendor IEs.
2700 */
2701static const u64 care_about_ies =
Johannes Berg1d4df3a2009-04-22 11:25:43 +02002702 (1ULL << WLAN_EID_COUNTRY) |
2703 (1ULL << WLAN_EID_ERP_INFO) |
2704 (1ULL << WLAN_EID_CHANNEL_SWITCH) |
2705 (1ULL << WLAN_EID_PWR_CONSTRAINT) |
2706 (1ULL << WLAN_EID_HT_CAPABILITY) |
Johannes Berg074d46d2012-03-15 19:45:16 +01002707 (1ULL << WLAN_EID_HT_OPERATION);
Johannes Bergd91f36d2009-04-16 13:17:26 +02002708
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002709static void ieee80211_rx_mgmt_beacon(struct ieee80211_sub_if_data *sdata,
2710 struct ieee80211_mgmt *mgmt, size_t len,
2711 struct ieee80211_rx_status *rx_status)
Jiri Bencf0706e82007-05-05 11:45:53 -07002712{
Johannes Bergd91f36d2009-04-16 13:17:26 +02002713 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jouni Malinen17e4ec12010-03-29 23:28:30 -07002714 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
Jiri Bencf0706e82007-05-05 11:45:53 -07002715 size_t baselen;
2716 struct ieee802_11_elems elems;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002717 struct ieee80211_local *local = sdata->local;
Johannes Berg55de9082012-07-26 17:24:39 +02002718 struct ieee80211_chanctx_conf *chanctx_conf;
2719 struct ieee80211_channel *chan;
Johannes Bergbee7f5862013-02-07 22:24:55 +01002720 struct sta_info *sta;
Johannes Berg471b3ef2007-12-28 14:32:58 +01002721 u32 changed = 0;
Rami Rosenf87ad632012-10-25 10:16:23 +02002722 bool erp_valid;
Johannes Berg7a5158e2008-10-08 10:59:33 +02002723 u8 erp_value = 0;
Johannes Bergd91f36d2009-04-16 13:17:26 +02002724 u32 ncrc;
Johannes Berg77fdaa12009-07-07 03:45:17 +02002725 u8 *bssid;
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002726 u8 deauth_buf[IEEE80211_DEAUTH_FRAME_LEN];
Johannes Berg77fdaa12009-07-07 03:45:17 +02002727
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002728 sdata_assert_lock(sdata);
Jiri Bencf0706e82007-05-05 11:45:53 -07002729
Ester Kummerae6a44e2008-06-27 18:54:48 +03002730 /* Process beacon from the current BSS */
2731 baselen = (u8 *) mgmt->u.beacon.variable - (u8 *) mgmt;
2732 if (baselen > len)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002733 return;
Ester Kummerae6a44e2008-06-27 18:54:48 +03002734
Johannes Berg55de9082012-07-26 17:24:39 +02002735 rcu_read_lock();
2736 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
2737 if (!chanctx_conf) {
2738 rcu_read_unlock();
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002739 return;
Johannes Berg55de9082012-07-26 17:24:39 +02002740 }
2741
Johannes Berg4bf88532012-11-09 11:39:59 +01002742 if (rx_status->freq != chanctx_conf->def.chan->center_freq) {
Johannes Berg55de9082012-07-26 17:24:39 +02002743 rcu_read_unlock();
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002744 return;
Johannes Berg55de9082012-07-26 17:24:39 +02002745 }
Johannes Berg4bf88532012-11-09 11:39:59 +01002746 chan = chanctx_conf->def.chan;
Johannes Berg55de9082012-07-26 17:24:39 +02002747 rcu_read_unlock();
Jiri Bencf0706e82007-05-05 11:45:53 -07002748
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02002749 if (ifmgd->assoc_data && ifmgd->assoc_data->need_beacon &&
Joe Perchesb203ca32012-05-08 18:56:52 +00002750 ether_addr_equal(mgmt->bssid, ifmgd->assoc_data->bss->bssid)) {
Johannes Berg66e67e42012-01-20 13:55:27 +01002751 ieee802_11_parse_elems(mgmt->u.beacon.variable,
Johannes Bergb2e506b2013-03-26 14:54:16 +01002752 len - baselen, false, &elems);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002753
Emmanuel Grumbachd45c4172012-12-10 16:19:13 +02002754 ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems);
Alexander Bondar482a9c72013-06-03 17:29:33 +03002755 if (elems.tim && !elems.parse_error) {
2756 const struct ieee80211_tim_ie *tim_ie = elems.tim;
2757 ifmgd->dtim_period = tim_ie->dtim_period;
2758 }
Alexander Bondar989c6502013-05-16 17:34:17 +03002759 ifmgd->have_beacon = true;
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02002760 ifmgd->assoc_data->need_beacon = false;
Johannes Bergef429da2013-02-05 17:48:40 +01002761 if (local->hw.flags & IEEE80211_HW_TIMING_BEACON_ONLY) {
2762 sdata->vif.bss_conf.sync_tsf =
2763 le64_to_cpu(mgmt->u.beacon.timestamp);
2764 sdata->vif.bss_conf.sync_device_ts =
2765 rx_status->device_timestamp;
2766 if (elems.tim)
2767 sdata->vif.bss_conf.sync_dtim_count =
2768 elems.tim->dtim_count;
2769 else
2770 sdata->vif.bss_conf.sync_dtim_count = 0;
2771 }
Johannes Berg66e67e42012-01-20 13:55:27 +01002772 /* continue assoc process */
2773 ifmgd->assoc_data->timeout = jiffies;
Johannes Berg89afe612013-02-13 15:39:57 +01002774 ifmgd->assoc_data->timeout_started = true;
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002775 run_again(sdata, ifmgd->assoc_data->timeout);
2776 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002777 }
2778
2779 if (!ifmgd->associated ||
Joe Perchesb203ca32012-05-08 18:56:52 +00002780 !ether_addr_equal(mgmt->bssid, ifmgd->associated->bssid))
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002781 return;
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01002782 bssid = ifmgd->associated->bssid;
Johannes Berg77fdaa12009-07-07 03:45:17 +02002783
Jouni Malinen17e4ec12010-03-29 23:28:30 -07002784 /* Track average RSSI from the Beacon frames of the current AP */
2785 ifmgd->last_beacon_signal = rx_status->signal;
2786 if (ifmgd->flags & IEEE80211_STA_RESET_SIGNAL_AVE) {
2787 ifmgd->flags &= ~IEEE80211_STA_RESET_SIGNAL_AVE;
Jouni Malinen3ba06c62010-08-27 22:21:13 +03002788 ifmgd->ave_beacon_signal = rx_status->signal * 16;
Jouni Malinen17e4ec12010-03-29 23:28:30 -07002789 ifmgd->last_cqm_event_signal = 0;
Jouni Malinen391a2002010-08-27 22:22:00 +03002790 ifmgd->count_beacon_signal = 1;
Meenakshi Venkataraman615f7b92011-07-08 08:46:22 -07002791 ifmgd->last_ave_beacon_signal = 0;
Jouni Malinen17e4ec12010-03-29 23:28:30 -07002792 } else {
2793 ifmgd->ave_beacon_signal =
2794 (IEEE80211_SIGNAL_AVE_WEIGHT * rx_status->signal * 16 +
2795 (16 - IEEE80211_SIGNAL_AVE_WEIGHT) *
2796 ifmgd->ave_beacon_signal) / 16;
Jouni Malinen391a2002010-08-27 22:22:00 +03002797 ifmgd->count_beacon_signal++;
Jouni Malinen17e4ec12010-03-29 23:28:30 -07002798 }
Meenakshi Venkataraman615f7b92011-07-08 08:46:22 -07002799
2800 if (ifmgd->rssi_min_thold != ifmgd->rssi_max_thold &&
2801 ifmgd->count_beacon_signal >= IEEE80211_SIGNAL_AVE_MIN_COUNT) {
2802 int sig = ifmgd->ave_beacon_signal;
2803 int last_sig = ifmgd->last_ave_beacon_signal;
2804
2805 /*
2806 * if signal crosses either of the boundaries, invoke callback
2807 * with appropriate parameters
2808 */
2809 if (sig > ifmgd->rssi_max_thold &&
2810 (last_sig <= ifmgd->rssi_min_thold || last_sig == 0)) {
2811 ifmgd->last_ave_beacon_signal = sig;
Emmanuel Grumbach887da912013-01-20 17:32:41 +02002812 drv_rssi_callback(local, sdata, RSSI_EVENT_HIGH);
Meenakshi Venkataraman615f7b92011-07-08 08:46:22 -07002813 } else if (sig < ifmgd->rssi_min_thold &&
2814 (last_sig >= ifmgd->rssi_max_thold ||
2815 last_sig == 0)) {
2816 ifmgd->last_ave_beacon_signal = sig;
Emmanuel Grumbach887da912013-01-20 17:32:41 +02002817 drv_rssi_callback(local, sdata, RSSI_EVENT_LOW);
Meenakshi Venkataraman615f7b92011-07-08 08:46:22 -07002818 }
2819 }
2820
Jouni Malinen17e4ec12010-03-29 23:28:30 -07002821 if (bss_conf->cqm_rssi_thold &&
Jouni Malinen391a2002010-08-27 22:22:00 +03002822 ifmgd->count_beacon_signal >= IEEE80211_SIGNAL_AVE_MIN_COUNT &&
Johannes Bergea086352012-01-19 09:29:58 +01002823 !(sdata->vif.driver_flags & IEEE80211_VIF_SUPPORTS_CQM_RSSI)) {
Jouni Malinen17e4ec12010-03-29 23:28:30 -07002824 int sig = ifmgd->ave_beacon_signal / 16;
2825 int last_event = ifmgd->last_cqm_event_signal;
2826 int thold = bss_conf->cqm_rssi_thold;
2827 int hyst = bss_conf->cqm_rssi_hyst;
2828 if (sig < thold &&
2829 (last_event == 0 || sig < last_event - hyst)) {
2830 ifmgd->last_cqm_event_signal = sig;
2831 ieee80211_cqm_rssi_notify(
2832 &sdata->vif,
2833 NL80211_CQM_RSSI_THRESHOLD_EVENT_LOW,
2834 GFP_KERNEL);
2835 } else if (sig > thold &&
2836 (last_event == 0 || sig > last_event + hyst)) {
2837 ifmgd->last_cqm_event_signal = sig;
2838 ieee80211_cqm_rssi_notify(
2839 &sdata->vif,
2840 NL80211_CQM_RSSI_THRESHOLD_EVENT_HIGH,
2841 GFP_KERNEL);
2842 }
2843 }
2844
Stanislaw Gruszka392b9ff2013-08-27 11:36:35 +02002845 if (ifmgd->flags & IEEE80211_STA_CONNECTION_POLL) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002846 mlme_dbg_ratelimited(sdata,
Johannes Berg112c31f2013-02-08 22:59:00 +01002847 "cancelling AP probe due to a received beacon\n");
Stanislaw Gruszka392b9ff2013-08-27 11:36:35 +02002848 ieee80211_reset_ap_probe(sdata);
Jouni Malinen92778182009-05-14 21:15:36 +03002849 }
2850
Johannes Bergb291ba12009-07-10 15:29:03 +02002851 /*
2852 * Push the beacon loss detection into the future since
2853 * we are processing a beacon from the AP just now.
2854 */
Luis R. Rodriguezd3a910a2010-09-16 15:12:32 -04002855 ieee80211_sta_reset_beacon_monitor(sdata);
Johannes Bergb291ba12009-07-10 15:29:03 +02002856
Johannes Bergd91f36d2009-04-16 13:17:26 +02002857 ncrc = crc32_be(0, (void *)&mgmt->u.beacon.beacon_int, 4);
2858 ncrc = ieee802_11_parse_elems_crc(mgmt->u.beacon.variable,
Johannes Bergb2e506b2013-03-26 14:54:16 +01002859 len - baselen, false, &elems,
Johannes Bergd91f36d2009-04-16 13:17:26 +02002860 care_about_ies, ncrc);
2861
Vivek Natarajan25c9c872009-03-02 20:20:30 +05302862 if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK) {
Rami Rosenf87ad632012-10-25 10:16:23 +02002863 bool directed_tim = ieee80211_check_tim(elems.tim,
2864 elems.tim_len,
2865 ifmgd->aid);
Kalle Valo1fb36062009-02-10 17:09:24 +02002866 if (directed_tim) {
Kalle Valo572e0012009-02-10 17:09:31 +02002867 if (local->hw.conf.dynamic_ps_timeout > 0) {
Ronald Wahl70b12f22012-03-19 14:37:20 +01002868 if (local->hw.conf.flags & IEEE80211_CONF_PS) {
2869 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
2870 ieee80211_hw_config(local,
2871 IEEE80211_CONF_CHANGE_PS);
2872 }
Kalle Valo572e0012009-02-10 17:09:31 +02002873 ieee80211_send_nullfunc(local, sdata, 0);
Rajkumar Manoharan6f0756a2012-03-15 05:50:36 +05302874 } else if (!local->pspolling && sdata->u.mgd.powersave) {
Kalle Valo572e0012009-02-10 17:09:31 +02002875 local->pspolling = true;
2876
2877 /*
2878 * Here is assumed that the driver will be
2879 * able to send ps-poll frame and receive a
2880 * response even though power save mode is
2881 * enabled, but some drivers might require
2882 * to disable power save here. This needs
2883 * to be investigated.
2884 */
2885 ieee80211_send_pspoll(local, sdata);
2886 }
Vivek Natarajana97b77b2008-12-23 18:39:02 -08002887 }
2888 }
Johannes Berg7a5158e2008-10-08 10:59:33 +02002889
Johannes Berg488dd7b2012-10-29 20:08:01 +01002890 if (sdata->vif.p2p) {
Janusz Dziedzic67baf662013-03-21 15:47:56 +01002891 struct ieee80211_p2p_noa_attr noa = {};
Johannes Berg488dd7b2012-10-29 20:08:01 +01002892 int ret;
2893
2894 ret = cfg80211_get_p2p_attr(mgmt->u.beacon.variable,
2895 len - baselen,
2896 IEEE80211_P2P_ATTR_ABSENCE_NOTICE,
Janusz Dziedzic934457e2013-03-21 15:47:55 +01002897 (u8 *) &noa, sizeof(noa));
Janusz Dziedzic67baf662013-03-21 15:47:56 +01002898 if (ret >= 2) {
2899 if (sdata->u.mgd.p2p_noa_index != noa.index) {
2900 /* valid noa_attr and index changed */
2901 sdata->u.mgd.p2p_noa_index = noa.index;
2902 memcpy(&bss_conf->p2p_noa_attr, &noa, sizeof(noa));
2903 changed |= BSS_CHANGED_P2P_PS;
2904 /*
2905 * make sure we update all information, the CRC
2906 * mechanism doesn't look at P2P attributes.
2907 */
2908 ifmgd->beacon_crc_valid = false;
2909 }
2910 } else if (sdata->u.mgd.p2p_noa_index != -1) {
2911 /* noa_attr not found and we had valid noa_attr before */
2912 sdata->u.mgd.p2p_noa_index = -1;
2913 memset(&bss_conf->p2p_noa_attr, 0, sizeof(bss_conf->p2p_noa_attr));
Johannes Berg488dd7b2012-10-29 20:08:01 +01002914 changed |= BSS_CHANGED_P2P_PS;
Johannes Berg488dd7b2012-10-29 20:08:01 +01002915 ifmgd->beacon_crc_valid = false;
2916 }
2917 }
2918
Juuso Oikarinend8ec4432010-10-01 16:02:31 +03002919 if (ncrc == ifmgd->beacon_crc && ifmgd->beacon_crc_valid)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002920 return;
Jouni Malinen30196672009-05-19 17:01:43 +03002921 ifmgd->beacon_crc = ncrc;
Juuso Oikarinend8ec4432010-10-01 16:02:31 +03002922 ifmgd->beacon_crc_valid = true;
Jouni Malinen30196672009-05-19 17:01:43 +03002923
Emmanuel Grumbachd45c4172012-12-10 16:19:13 +02002924 ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems);
Johannes Berg7d257452012-07-06 17:37:43 +02002925
Johannes Bergd70b7612013-08-23 15:48:48 +02002926 ieee80211_sta_process_chanswitch(sdata, rx_status->mactime,
2927 &elems, true);
2928
Johannes Berg7d257452012-07-06 17:37:43 +02002929 if (ieee80211_sta_wmm_params(local, sdata, elems.wmm_param,
2930 elems.wmm_param_len))
2931 changed |= BSS_CHANGED_QOS;
2932
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02002933 /*
2934 * If we haven't had a beacon before, tell the driver about the
Johannes Bergef429da2013-02-05 17:48:40 +01002935 * DTIM period (and beacon timing if desired) now.
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02002936 */
Alexander Bondar989c6502013-05-16 17:34:17 +03002937 if (!ifmgd->have_beacon) {
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02002938 /* a few bogus AP send dtim_period = 0 or no TIM IE */
2939 if (elems.tim)
2940 bss_conf->dtim_period = elems.tim->dtim_period ?: 1;
2941 else
2942 bss_conf->dtim_period = 1;
Johannes Bergef429da2013-02-05 17:48:40 +01002943
2944 if (local->hw.flags & IEEE80211_HW_TIMING_BEACON_ONLY) {
2945 sdata->vif.bss_conf.sync_tsf =
2946 le64_to_cpu(mgmt->u.beacon.timestamp);
2947 sdata->vif.bss_conf.sync_device_ts =
2948 rx_status->device_timestamp;
2949 if (elems.tim)
2950 sdata->vif.bss_conf.sync_dtim_count =
2951 elems.tim->dtim_count;
2952 else
2953 sdata->vif.bss_conf.sync_dtim_count = 0;
2954 }
2955
Alexander Bondar989c6502013-05-16 17:34:17 +03002956 changed |= BSS_CHANGED_BEACON_INFO;
2957 ifmgd->have_beacon = true;
Alexander Bondar482a9c72013-06-03 17:29:33 +03002958
2959 mutex_lock(&local->iflist_mtx);
2960 ieee80211_recalc_ps(local, -1);
2961 mutex_unlock(&local->iflist_mtx);
2962
Alexander Bondarce857882013-05-06 17:17:04 +03002963 ieee80211_recalc_ps_vif(sdata);
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02002964 }
2965
Johannes Berg1946bed2013-03-27 14:31:53 +01002966 if (elems.erp_info) {
Johannes Berg7a5158e2008-10-08 10:59:33 +02002967 erp_valid = true;
2968 erp_value = elems.erp_info[0];
2969 } else {
2970 erp_valid = false;
John W. Linville50c4afb2008-04-15 14:09:27 -04002971 }
Johannes Berg7a5158e2008-10-08 10:59:33 +02002972 changed |= ieee80211_handle_bss_capability(sdata,
2973 le16_to_cpu(mgmt->u.beacon.capab_info),
2974 erp_valid, erp_value);
Jiri Bencf0706e82007-05-05 11:45:53 -07002975
Johannes Berg11289582013-02-07 17:36:12 +01002976 mutex_lock(&local->sta_mtx);
Johannes Bergbee7f5862013-02-07 22:24:55 +01002977 sta = sta_info_get(sdata, bssid);
2978
Johannes Berg30eb1dc2013-02-08 15:12:14 +01002979 if (ieee80211_config_bw(sdata, sta, elems.ht_operation,
2980 elems.vht_operation, bssid, &changed)) {
2981 mutex_unlock(&local->sta_mtx);
2982 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH,
2983 WLAN_REASON_DEAUTH_LEAVING,
2984 true, deauth_buf);
Johannes Berg6ff57cf2013-05-16 00:55:00 +02002985 cfg80211_tx_mlme_mgmt(sdata->dev, deauth_buf,
2986 sizeof(deauth_buf));
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002987 return;
Johannes Berg30eb1dc2013-02-08 15:12:14 +01002988 }
Johannes Bergbee7f5862013-02-07 22:24:55 +01002989
2990 if (sta && elems.opmode_notif)
2991 ieee80211_vht_handle_opmode(sdata, sta, *elems.opmode_notif,
2992 rx_status->band, true);
Johannes Berg11289582013-02-07 17:36:12 +01002993 mutex_unlock(&local->sta_mtx);
Ron Rindjunskyd3c990f2007-11-26 16:14:34 +02002994
Johannes Berg04b7b2f2012-09-05 13:41:37 +02002995 if (elems.country_elem && elems.pwr_constr_elem &&
2996 mgmt->u.probe_resp.capab_info &
2997 cpu_to_le16(WLAN_CAPABILITY_SPECTRUM_MGMT))
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02002998 changed |= ieee80211_handle_pwr_constr(sdata, chan,
2999 elems.country_elem,
3000 elems.country_elem_len,
3001 elems.pwr_constr_elem);
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08003002
Johannes Berg471b3ef2007-12-28 14:32:58 +01003003 ieee80211_bss_info_change_notify(sdata, changed);
Jiri Bencf0706e82007-05-05 11:45:53 -07003004}
3005
Johannes Berg1fa57d02010-06-10 10:21:32 +02003006void ieee80211_sta_rx_queued_mgmt(struct ieee80211_sub_if_data *sdata,
3007 struct sk_buff *skb)
Jiri Bencf0706e82007-05-05 11:45:53 -07003008{
3009 struct ieee80211_rx_status *rx_status;
Jiri Bencf0706e82007-05-05 11:45:53 -07003010 struct ieee80211_mgmt *mgmt;
3011 u16 fc;
Johannes Berg1b3a2e42013-03-26 15:17:18 +01003012 struct ieee802_11_elems elems;
3013 int ies_len;
Jiri Bencf0706e82007-05-05 11:45:53 -07003014
Jiri Bencf0706e82007-05-05 11:45:53 -07003015 rx_status = (struct ieee80211_rx_status *) skb->cb;
3016 mgmt = (struct ieee80211_mgmt *) skb->data;
3017 fc = le16_to_cpu(mgmt->frame_control);
3018
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003019 sdata_lock(sdata);
Johannes Berg77fdaa12009-07-07 03:45:17 +02003020
Johannes Berg66e67e42012-01-20 13:55:27 +01003021 switch (fc & IEEE80211_FCTL_STYPE) {
3022 case IEEE80211_STYPE_BEACON:
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003023 ieee80211_rx_mgmt_beacon(sdata, mgmt, skb->len, rx_status);
Johannes Berg66e67e42012-01-20 13:55:27 +01003024 break;
3025 case IEEE80211_STYPE_PROBE_RESP:
3026 ieee80211_rx_mgmt_probe_resp(sdata, skb);
3027 break;
3028 case IEEE80211_STYPE_AUTH:
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003029 ieee80211_rx_mgmt_auth(sdata, mgmt, skb->len);
Johannes Berg66e67e42012-01-20 13:55:27 +01003030 break;
3031 case IEEE80211_STYPE_DEAUTH:
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003032 ieee80211_rx_mgmt_deauth(sdata, mgmt, skb->len);
Johannes Berg66e67e42012-01-20 13:55:27 +01003033 break;
3034 case IEEE80211_STYPE_DISASSOC:
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003035 ieee80211_rx_mgmt_disassoc(sdata, mgmt, skb->len);
Johannes Berg66e67e42012-01-20 13:55:27 +01003036 break;
3037 case IEEE80211_STYPE_ASSOC_RESP:
3038 case IEEE80211_STYPE_REASSOC_RESP:
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003039 ieee80211_rx_mgmt_assoc_resp(sdata, mgmt, skb->len);
Johannes Berg66e67e42012-01-20 13:55:27 +01003040 break;
3041 case IEEE80211_STYPE_ACTION:
Johannes Berg37799e52013-03-26 14:02:26 +01003042 if (mgmt->u.action.category == WLAN_CATEGORY_SPECTRUM_MGMT) {
Johannes Berg1b3a2e42013-03-26 15:17:18 +01003043 ies_len = skb->len -
3044 offsetof(struct ieee80211_mgmt,
3045 u.action.u.chan_switch.variable);
Johannes Berg37799e52013-03-26 14:02:26 +01003046
3047 if (ies_len < 0)
3048 break;
3049
3050 ieee802_11_parse_elems(
3051 mgmt->u.action.u.chan_switch.variable,
Johannes Bergb2e506b2013-03-26 14:54:16 +01003052 ies_len, true, &elems);
Johannes Berg37799e52013-03-26 14:02:26 +01003053
3054 if (elems.parse_error)
3055 break;
3056
Johannes Berg66e67e42012-01-20 13:55:27 +01003057 ieee80211_sta_process_chanswitch(sdata,
Johannes Berg37799e52013-03-26 14:02:26 +01003058 rx_status->mactime,
Johannes Berg04a161f2013-05-03 09:35:35 +02003059 &elems, false);
Johannes Berg1b3a2e42013-03-26 15:17:18 +01003060 } else if (mgmt->u.action.category == WLAN_CATEGORY_PUBLIC) {
3061 ies_len = skb->len -
3062 offsetof(struct ieee80211_mgmt,
3063 u.action.u.ext_chan_switch.variable);
3064
3065 if (ies_len < 0)
3066 break;
3067
3068 ieee802_11_parse_elems(
3069 mgmt->u.action.u.ext_chan_switch.variable,
Johannes Bergb2e506b2013-03-26 14:54:16 +01003070 ies_len, true, &elems);
Johannes Berg1b3a2e42013-03-26 15:17:18 +01003071
3072 if (elems.parse_error)
3073 break;
3074
3075 /* for the handling code pretend this was also an IE */
3076 elems.ext_chansw_ie =
3077 &mgmt->u.action.u.ext_chan_switch.data;
3078
3079 ieee80211_sta_process_chanswitch(sdata,
3080 rx_status->mactime,
Johannes Berg04a161f2013-05-03 09:35:35 +02003081 &elems, false);
Johannes Berg77fdaa12009-07-07 03:45:17 +02003082 }
Johannes Berg37799e52013-03-26 14:02:26 +01003083 break;
Johannes Berg77fdaa12009-07-07 03:45:17 +02003084 }
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003085 sdata_unlock(sdata);
Jiri Bencf0706e82007-05-05 11:45:53 -07003086}
3087
Johannes Berg9c6bd792008-09-11 00:01:52 +02003088static void ieee80211_sta_timer(unsigned long data)
Jiri Bencf0706e82007-05-05 11:45:53 -07003089{
3090 struct ieee80211_sub_if_data *sdata =
3091 (struct ieee80211_sub_if_data *) data;
Jiri Bencf0706e82007-05-05 11:45:53 -07003092
Stanislaw Gruszka9b7d72c2013-02-28 10:55:27 +01003093 ieee80211_queue_work(&sdata->local->hw, &sdata->work);
Jiri Bencf0706e82007-05-05 11:45:53 -07003094}
3095
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003096static void ieee80211_sta_connection_lost(struct ieee80211_sub_if_data *sdata,
Johannes Berg6b684db2013-01-29 11:35:29 +01003097 u8 *bssid, u8 reason, bool tx)
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003098{
Antonio Quartulli6ae16772012-09-07 13:28:52 +02003099 u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN];
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003100
Johannes Berg37ad3882012-02-24 13:50:54 +01003101 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH, reason,
Johannes Berg6b684db2013-01-29 11:35:29 +01003102 tx, frame_buf);
Johannes Berg37ad3882012-02-24 13:50:54 +01003103
Johannes Berg6ff57cf2013-05-16 00:55:00 +02003104 cfg80211_tx_mlme_mgmt(sdata->dev, frame_buf,
3105 IEEE80211_DEAUTH_FRAME_LEN);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003106}
3107
Johannes Berg66e67e42012-01-20 13:55:27 +01003108static int ieee80211_probe_auth(struct ieee80211_sub_if_data *sdata)
3109{
3110 struct ieee80211_local *local = sdata->local;
3111 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3112 struct ieee80211_mgd_auth_data *auth_data = ifmgd->auth_data;
Johannes Berg1672c0e32013-01-29 15:02:27 +01003113 u32 tx_flags = 0;
Johannes Berg66e67e42012-01-20 13:55:27 +01003114
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003115 sdata_assert_lock(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01003116
3117 if (WARN_ON_ONCE(!auth_data))
3118 return -EINVAL;
3119
Johannes Berg66e67e42012-01-20 13:55:27 +01003120 auth_data->tries++;
3121
3122 if (auth_data->tries > IEEE80211_AUTH_MAX_TRIES) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003123 sdata_info(sdata, "authentication with %pM timed out\n",
3124 auth_data->bss->bssid);
Johannes Berg66e67e42012-01-20 13:55:27 +01003125
3126 /*
3127 * Most likely AP is not in the range so remove the
3128 * bss struct for that AP.
3129 */
3130 cfg80211_unlink_bss(local->hw.wiphy, auth_data->bss);
3131
3132 return -ETIMEDOUT;
3133 }
3134
Johannes Berga1845fc2012-06-27 13:18:36 +02003135 drv_mgd_prepare_tx(local, sdata);
3136
Johannes Berg66e67e42012-01-20 13:55:27 +01003137 if (auth_data->bss->proberesp_ies) {
Jouni Malinen6b8ece32012-09-30 19:29:40 +03003138 u16 trans = 1;
3139 u16 status = 0;
3140
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003141 sdata_info(sdata, "send auth to %pM (try %d/%d)\n",
3142 auth_data->bss->bssid, auth_data->tries,
3143 IEEE80211_AUTH_MAX_TRIES);
Johannes Berg66e67e42012-01-20 13:55:27 +01003144
3145 auth_data->expected_transaction = 2;
Jouni Malinen6b8ece32012-09-30 19:29:40 +03003146
3147 if (auth_data->algorithm == WLAN_AUTH_SAE) {
3148 trans = auth_data->sae_trans;
3149 status = auth_data->sae_status;
3150 auth_data->expected_transaction = trans;
3151 }
3152
Stanislaw Gruszka6211dd12013-05-17 13:43:04 +02003153 if (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS)
3154 tx_flags = IEEE80211_TX_CTL_REQ_TX_STATUS |
3155 IEEE80211_TX_INTFL_MLME_CONN_TX;
3156
Jouni Malinen6b8ece32012-09-30 19:29:40 +03003157 ieee80211_send_auth(sdata, trans, auth_data->algorithm, status,
3158 auth_data->data, auth_data->data_len,
Johannes Berg66e67e42012-01-20 13:55:27 +01003159 auth_data->bss->bssid,
Johannes Berg1672c0e32013-01-29 15:02:27 +01003160 auth_data->bss->bssid, NULL, 0, 0,
3161 tx_flags);
Johannes Berg66e67e42012-01-20 13:55:27 +01003162 } else {
3163 const u8 *ssidie;
3164
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003165 sdata_info(sdata, "direct probe to %pM (try %d/%i)\n",
3166 auth_data->bss->bssid, auth_data->tries,
3167 IEEE80211_AUTH_MAX_TRIES);
Johannes Berg66e67e42012-01-20 13:55:27 +01003168
Johannes Berg9caf0362012-11-29 01:25:20 +01003169 rcu_read_lock();
Johannes Berg66e67e42012-01-20 13:55:27 +01003170 ssidie = ieee80211_bss_get_ie(auth_data->bss, WLAN_EID_SSID);
Johannes Berg9caf0362012-11-29 01:25:20 +01003171 if (!ssidie) {
3172 rcu_read_unlock();
Johannes Berg66e67e42012-01-20 13:55:27 +01003173 return -EINVAL;
Johannes Berg9caf0362012-11-29 01:25:20 +01003174 }
Johannes Berg66e67e42012-01-20 13:55:27 +01003175 /*
3176 * Direct probe is sent to broadcast address as some APs
3177 * will not answer to direct packet in unassociated state.
3178 */
3179 ieee80211_send_probe_req(sdata, NULL, ssidie + 2, ssidie[1],
Stanislaw Gruszka6211dd12013-05-17 13:43:04 +02003180 NULL, 0, (u32) -1, true, 0,
Johannes Berg55de9082012-07-26 17:24:39 +02003181 auth_data->bss->channel, false);
Johannes Berg9caf0362012-11-29 01:25:20 +01003182 rcu_read_unlock();
Johannes Berg66e67e42012-01-20 13:55:27 +01003183 }
3184
Stanislaw Gruszka6211dd12013-05-17 13:43:04 +02003185 if (tx_flags == 0) {
Johannes Berg1672c0e32013-01-29 15:02:27 +01003186 auth_data->timeout = jiffies + IEEE80211_AUTH_TIMEOUT;
Johannes Bergcb236d22013-07-29 23:07:43 +02003187 auth_data->timeout_started = true;
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003188 run_again(sdata, auth_data->timeout);
Johannes Berg89afe612013-02-13 15:39:57 +01003189 } else {
Johannes Bergcb236d22013-07-29 23:07:43 +02003190 auth_data->timeout =
3191 round_jiffies_up(jiffies + IEEE80211_AUTH_TIMEOUT_LONG);
3192 auth_data->timeout_started = true;
3193 run_again(sdata, auth_data->timeout);
Johannes Berg1672c0e32013-01-29 15:02:27 +01003194 }
Johannes Berg66e67e42012-01-20 13:55:27 +01003195
3196 return 0;
3197}
3198
3199static int ieee80211_do_assoc(struct ieee80211_sub_if_data *sdata)
3200{
3201 struct ieee80211_mgd_assoc_data *assoc_data = sdata->u.mgd.assoc_data;
3202 struct ieee80211_local *local = sdata->local;
3203
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003204 sdata_assert_lock(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01003205
Johannes Berg66e67e42012-01-20 13:55:27 +01003206 assoc_data->tries++;
3207 if (assoc_data->tries > IEEE80211_ASSOC_MAX_TRIES) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003208 sdata_info(sdata, "association with %pM timed out\n",
3209 assoc_data->bss->bssid);
Johannes Berg66e67e42012-01-20 13:55:27 +01003210
3211 /*
3212 * Most likely AP is not in the range so remove the
3213 * bss struct for that AP.
3214 */
3215 cfg80211_unlink_bss(local->hw.wiphy, assoc_data->bss);
3216
3217 return -ETIMEDOUT;
3218 }
3219
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003220 sdata_info(sdata, "associate with %pM (try %d/%d)\n",
3221 assoc_data->bss->bssid, assoc_data->tries,
3222 IEEE80211_ASSOC_MAX_TRIES);
Johannes Berg66e67e42012-01-20 13:55:27 +01003223 ieee80211_send_assoc(sdata);
3224
Johannes Berg1672c0e32013-01-29 15:02:27 +01003225 if (!(local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS)) {
3226 assoc_data->timeout = jiffies + IEEE80211_ASSOC_TIMEOUT;
Johannes Berg89afe612013-02-13 15:39:57 +01003227 assoc_data->timeout_started = true;
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003228 run_again(sdata, assoc_data->timeout);
Johannes Berg89afe612013-02-13 15:39:57 +01003229 } else {
Johannes Bergcb236d22013-07-29 23:07:43 +02003230 assoc_data->timeout =
3231 round_jiffies_up(jiffies +
3232 IEEE80211_ASSOC_TIMEOUT_LONG);
3233 assoc_data->timeout_started = true;
3234 run_again(sdata, assoc_data->timeout);
Johannes Berg1672c0e32013-01-29 15:02:27 +01003235 }
Johannes Berg66e67e42012-01-20 13:55:27 +01003236
3237 return 0;
3238}
3239
Johannes Berg1672c0e32013-01-29 15:02:27 +01003240void ieee80211_mgd_conn_tx_status(struct ieee80211_sub_if_data *sdata,
3241 __le16 fc, bool acked)
3242{
3243 struct ieee80211_local *local = sdata->local;
3244
3245 sdata->u.mgd.status_fc = fc;
3246 sdata->u.mgd.status_acked = acked;
3247 sdata->u.mgd.status_received = true;
3248
3249 ieee80211_queue_work(&local->hw, &sdata->work);
3250}
3251
Johannes Berg1fa57d02010-06-10 10:21:32 +02003252void ieee80211_sta_work(struct ieee80211_sub_if_data *sdata)
Johannes Berg60f8b39c2008-09-08 17:44:22 +02003253{
Johannes Berg60f8b39c2008-09-08 17:44:22 +02003254 struct ieee80211_local *local = sdata->local;
Johannes Berg1fa57d02010-06-10 10:21:32 +02003255 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg60f8b39c2008-09-08 17:44:22 +02003256
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003257 sdata_lock(sdata);
Johannes Berg60f8b39c2008-09-08 17:44:22 +02003258
Johannes Berg1672c0e32013-01-29 15:02:27 +01003259 if (ifmgd->status_received) {
3260 __le16 fc = ifmgd->status_fc;
3261 bool status_acked = ifmgd->status_acked;
3262
3263 ifmgd->status_received = false;
3264 if (ifmgd->auth_data &&
3265 (ieee80211_is_probe_req(fc) || ieee80211_is_auth(fc))) {
3266 if (status_acked) {
3267 ifmgd->auth_data->timeout =
3268 jiffies + IEEE80211_AUTH_TIMEOUT_SHORT;
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003269 run_again(sdata, ifmgd->auth_data->timeout);
Johannes Berg1672c0e32013-01-29 15:02:27 +01003270 } else {
3271 ifmgd->auth_data->timeout = jiffies - 1;
3272 }
Johannes Berg89afe612013-02-13 15:39:57 +01003273 ifmgd->auth_data->timeout_started = true;
Johannes Berg1672c0e32013-01-29 15:02:27 +01003274 } else if (ifmgd->assoc_data &&
3275 (ieee80211_is_assoc_req(fc) ||
3276 ieee80211_is_reassoc_req(fc))) {
3277 if (status_acked) {
3278 ifmgd->assoc_data->timeout =
3279 jiffies + IEEE80211_ASSOC_TIMEOUT_SHORT;
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003280 run_again(sdata, ifmgd->assoc_data->timeout);
Johannes Berg1672c0e32013-01-29 15:02:27 +01003281 } else {
3282 ifmgd->assoc_data->timeout = jiffies - 1;
3283 }
Johannes Berg89afe612013-02-13 15:39:57 +01003284 ifmgd->assoc_data->timeout_started = true;
Johannes Berg1672c0e32013-01-29 15:02:27 +01003285 }
3286 }
3287
Johannes Berg89afe612013-02-13 15:39:57 +01003288 if (ifmgd->auth_data && ifmgd->auth_data->timeout_started &&
Johannes Berg66e67e42012-01-20 13:55:27 +01003289 time_after(jiffies, ifmgd->auth_data->timeout)) {
3290 if (ifmgd->auth_data->done) {
3291 /*
3292 * ok ... we waited for assoc but userspace didn't,
3293 * so let's just kill the auth data
3294 */
3295 ieee80211_destroy_auth_data(sdata, false);
3296 } else if (ieee80211_probe_auth(sdata)) {
3297 u8 bssid[ETH_ALEN];
3298
3299 memcpy(bssid, ifmgd->auth_data->bss->bssid, ETH_ALEN);
3300
3301 ieee80211_destroy_auth_data(sdata, false);
3302
Johannes Berg6ff57cf2013-05-16 00:55:00 +02003303 cfg80211_auth_timeout(sdata->dev, bssid);
Johannes Berg66e67e42012-01-20 13:55:27 +01003304 }
Johannes Berg89afe612013-02-13 15:39:57 +01003305 } else if (ifmgd->auth_data && ifmgd->auth_data->timeout_started)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003306 run_again(sdata, ifmgd->auth_data->timeout);
Johannes Berg66e67e42012-01-20 13:55:27 +01003307
Johannes Berg89afe612013-02-13 15:39:57 +01003308 if (ifmgd->assoc_data && ifmgd->assoc_data->timeout_started &&
Johannes Berg66e67e42012-01-20 13:55:27 +01003309 time_after(jiffies, ifmgd->assoc_data->timeout)) {
Alexander Bondar989c6502013-05-16 17:34:17 +03003310 if ((ifmgd->assoc_data->need_beacon && !ifmgd->have_beacon) ||
Johannes Berg66e67e42012-01-20 13:55:27 +01003311 ieee80211_do_assoc(sdata)) {
Johannes Berg959867f2013-06-19 13:05:42 +02003312 struct cfg80211_bss *bss = ifmgd->assoc_data->bss;
Johannes Berg66e67e42012-01-20 13:55:27 +01003313
3314 ieee80211_destroy_assoc_data(sdata, false);
Johannes Berg959867f2013-06-19 13:05:42 +02003315 cfg80211_assoc_timeout(sdata->dev, bss);
Johannes Berg66e67e42012-01-20 13:55:27 +01003316 }
Johannes Berg89afe612013-02-13 15:39:57 +01003317 } else if (ifmgd->assoc_data && ifmgd->assoc_data->timeout_started)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003318 run_again(sdata, ifmgd->assoc_data->timeout);
Johannes Berg66e67e42012-01-20 13:55:27 +01003319
Stanislaw Gruszka392b9ff2013-08-27 11:36:35 +02003320 if (ifmgd->flags & IEEE80211_STA_CONNECTION_POLL &&
Johannes Bergb291ba12009-07-10 15:29:03 +02003321 ifmgd->associated) {
Maxim Levitskya43abf22009-07-31 18:54:12 +03003322 u8 bssid[ETH_ALEN];
Felix Fietkau72a8a3e2010-11-23 03:10:32 +01003323 int max_tries;
Maxim Levitskya43abf22009-07-31 18:54:12 +03003324
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01003325 memcpy(bssid, ifmgd->associated->bssid, ETH_ALEN);
Felix Fietkau4e5ff372010-11-23 03:10:31 +01003326
Felix Fietkau72a8a3e2010-11-23 03:10:32 +01003327 if (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS)
Ben Greear180205b2011-02-04 15:30:24 -08003328 max_tries = max_nullfunc_tries;
Felix Fietkau72a8a3e2010-11-23 03:10:32 +01003329 else
Ben Greear180205b2011-02-04 15:30:24 -08003330 max_tries = max_probe_tries;
Felix Fietkau72a8a3e2010-11-23 03:10:32 +01003331
Felix Fietkau4e5ff372010-11-23 03:10:31 +01003332 /* ACK received for nullfunc probing frame */
3333 if (!ifmgd->probe_send_count)
3334 ieee80211_reset_ap_probe(sdata);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003335 else if (ifmgd->nullfunc_failed) {
3336 if (ifmgd->probe_send_count < max_tries) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003337 mlme_dbg(sdata,
3338 "No ack for nullfunc frame to AP %pM, try %d/%i\n",
3339 bssid, ifmgd->probe_send_count,
3340 max_tries);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003341 ieee80211_mgd_probe_ap_send(sdata);
3342 } else {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003343 mlme_dbg(sdata,
3344 "No ack for nullfunc frame to AP %pM, disconnecting.\n",
3345 bssid);
Johannes Berg95acac62011-07-12 12:30:59 +02003346 ieee80211_sta_connection_lost(sdata, bssid,
Johannes Berg6b684db2013-01-29 11:35:29 +01003347 WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY,
3348 false);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003349 }
3350 } else if (time_is_after_jiffies(ifmgd->probe_timeout))
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003351 run_again(sdata, ifmgd->probe_timeout);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003352 else if (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003353 mlme_dbg(sdata,
3354 "Failed to send nullfunc to AP %pM after %dms, disconnecting\n",
3355 bssid, probe_wait_ms);
Johannes Berg95acac62011-07-12 12:30:59 +02003356 ieee80211_sta_connection_lost(sdata, bssid,
Johannes Berg6b684db2013-01-29 11:35:29 +01003357 WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY, false);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003358 } else if (ifmgd->probe_send_count < max_tries) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003359 mlme_dbg(sdata,
3360 "No probe response from AP %pM after %dms, try %d/%i\n",
3361 bssid, probe_wait_ms,
3362 ifmgd->probe_send_count, max_tries);
Maxim Levitskya43abf22009-07-31 18:54:12 +03003363 ieee80211_mgd_probe_ap_send(sdata);
3364 } else {
Johannes Bergb291ba12009-07-10 15:29:03 +02003365 /*
3366 * We actually lost the connection ... or did we?
3367 * Let's make sure!
3368 */
Ben Greearb38afa82010-10-07 16:12:06 -07003369 wiphy_debug(local->hw.wiphy,
3370 "%s: No probe response from AP %pM"
3371 " after %dms, disconnecting.\n",
3372 sdata->name,
Ben Greear180205b2011-02-04 15:30:24 -08003373 bssid, probe_wait_ms);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003374
Johannes Berg95acac62011-07-12 12:30:59 +02003375 ieee80211_sta_connection_lost(sdata, bssid,
Johannes Berg6b684db2013-01-29 11:35:29 +01003376 WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY, false);
Johannes Bergb291ba12009-07-10 15:29:03 +02003377 }
3378 }
3379
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003380 sdata_unlock(sdata);
Johannes Berg60f8b39c2008-09-08 17:44:22 +02003381}
Johannes Berg0a51b272008-09-08 17:44:25 +02003382
Johannes Bergb291ba12009-07-10 15:29:03 +02003383static void ieee80211_sta_bcn_mon_timer(unsigned long data)
3384{
3385 struct ieee80211_sub_if_data *sdata =
3386 (struct ieee80211_sub_if_data *) data;
3387 struct ieee80211_local *local = sdata->local;
3388
3389 if (local->quiescing)
3390 return;
3391
Johannes Berg682bd382013-01-29 13:13:50 +01003392 sdata->u.mgd.connection_loss = false;
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02003393 ieee80211_queue_work(&sdata->local->hw,
3394 &sdata->u.mgd.beacon_connection_loss_work);
Johannes Bergb291ba12009-07-10 15:29:03 +02003395}
3396
3397static void ieee80211_sta_conn_mon_timer(unsigned long data)
3398{
3399 struct ieee80211_sub_if_data *sdata =
3400 (struct ieee80211_sub_if_data *) data;
3401 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3402 struct ieee80211_local *local = sdata->local;
3403
3404 if (local->quiescing)
3405 return;
3406
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04003407 ieee80211_queue_work(&local->hw, &ifmgd->monitor_work);
Johannes Bergb291ba12009-07-10 15:29:03 +02003408}
3409
3410static void ieee80211_sta_monitor_work(struct work_struct *work)
3411{
3412 struct ieee80211_sub_if_data *sdata =
3413 container_of(work, struct ieee80211_sub_if_data,
3414 u.mgd.monitor_work);
3415
3416 ieee80211_mgd_probe_ap(sdata, false);
3417}
3418
Johannes Berga1678f82008-09-11 00:01:47 +02003419static void ieee80211_restart_sta_timer(struct ieee80211_sub_if_data *sdata)
3420{
Eliad Peller494f1fe2012-02-19 15:26:09 +02003421 u32 flags;
3422
Kalle Vaload935682009-04-19 08:47:19 +03003423 if (sdata->vif.type == NL80211_IFTYPE_STATION) {
Stanislaw Gruszka925e64c2012-05-16 15:27:20 +02003424 __ieee80211_stop_poll(sdata);
Kalle Vaload935682009-04-19 08:47:19 +03003425
Johannes Bergb291ba12009-07-10 15:29:03 +02003426 /* let's probe the connection once */
Eliad Peller494f1fe2012-02-19 15:26:09 +02003427 flags = sdata->local->hw.flags;
3428 if (!(flags & IEEE80211_HW_CONNECTION_MONITOR))
3429 ieee80211_queue_work(&sdata->local->hw,
3430 &sdata->u.mgd.monitor_work);
Johannes Bergb291ba12009-07-10 15:29:03 +02003431 /* and do all the other regular work too */
Johannes Berg64592c82010-06-10 10:21:31 +02003432 ieee80211_queue_work(&sdata->local->hw, &sdata->work);
Kalle Vaload935682009-04-19 08:47:19 +03003433 }
Johannes Berga1678f82008-09-11 00:01:47 +02003434}
3435
Johannes Bergb8360ab2013-04-29 14:57:44 +02003436#ifdef CONFIG_PM
3437void ieee80211_sta_restart(struct ieee80211_sub_if_data *sdata)
3438{
3439 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3440
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003441 sdata_lock(sdata);
Johannes Bergb8360ab2013-04-29 14:57:44 +02003442 if (!ifmgd->associated) {
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003443 sdata_unlock(sdata);
Johannes Bergb8360ab2013-04-29 14:57:44 +02003444 return;
3445 }
3446
3447 if (sdata->flags & IEEE80211_SDATA_DISCONNECT_RESUME) {
3448 sdata->flags &= ~IEEE80211_SDATA_DISCONNECT_RESUME;
3449 mlme_dbg(sdata, "driver requested disconnect after resume\n");
3450 ieee80211_sta_connection_lost(sdata,
3451 ifmgd->associated->bssid,
3452 WLAN_REASON_UNSPECIFIED,
3453 true);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003454 sdata_unlock(sdata);
Johannes Bergb8360ab2013-04-29 14:57:44 +02003455 return;
3456 }
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003457 sdata_unlock(sdata);
Johannes Bergb8360ab2013-04-29 14:57:44 +02003458}
3459#endif
3460
Johannes Berg9c6bd792008-09-11 00:01:52 +02003461/* interface setup */
3462void ieee80211_sta_setup_sdata(struct ieee80211_sub_if_data *sdata)
3463{
Johannes Berg46900292009-02-15 12:44:28 +01003464 struct ieee80211_if_managed *ifmgd;
Johannes Berg9c6bd792008-09-11 00:01:52 +02003465
Johannes Berg46900292009-02-15 12:44:28 +01003466 ifmgd = &sdata->u.mgd;
Johannes Bergb291ba12009-07-10 15:29:03 +02003467 INIT_WORK(&ifmgd->monitor_work, ieee80211_sta_monitor_work);
Johannes Berg46900292009-02-15 12:44:28 +01003468 INIT_WORK(&ifmgd->chswitch_work, ieee80211_chswitch_work);
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02003469 INIT_WORK(&ifmgd->beacon_connection_loss_work,
3470 ieee80211_beacon_connection_loss_work);
Johannes Berg882a7c62012-08-01 22:32:45 +02003471 INIT_WORK(&ifmgd->csa_connection_drop_work,
3472 ieee80211_csa_connection_drop_work);
Johannes Bergd1f5b7a2010-08-05 17:05:55 +02003473 INIT_WORK(&ifmgd->request_smps_work, ieee80211_request_smps_work);
Johannes Berg46900292009-02-15 12:44:28 +01003474 setup_timer(&ifmgd->timer, ieee80211_sta_timer,
Johannes Berg9c6bd792008-09-11 00:01:52 +02003475 (unsigned long) sdata);
Johannes Bergb291ba12009-07-10 15:29:03 +02003476 setup_timer(&ifmgd->bcn_mon_timer, ieee80211_sta_bcn_mon_timer,
3477 (unsigned long) sdata);
3478 setup_timer(&ifmgd->conn_mon_timer, ieee80211_sta_conn_mon_timer,
3479 (unsigned long) sdata);
Johannes Berg46900292009-02-15 12:44:28 +01003480 setup_timer(&ifmgd->chswitch_timer, ieee80211_chswitch_timer,
Sujithc481ec92009-01-06 09:28:37 +05303481 (unsigned long) sdata);
Johannes Berg9c6bd792008-09-11 00:01:52 +02003482
Johannes Bergab1faea2009-07-01 21:41:17 +02003483 ifmgd->flags = 0;
Mohammed Shafi Shajakhan1478acb2011-12-14 19:46:08 +05303484 ifmgd->powersave = sdata->wdev.ps;
Alexander Bondar219c3862013-01-22 16:52:23 +02003485 ifmgd->uapsd_queues = sdata->local->hw.uapsd_queues;
3486 ifmgd->uapsd_max_sp_len = sdata->local->hw.uapsd_max_sp_len;
Janusz Dziedzic67baf662013-03-21 15:47:56 +01003487 ifmgd->p2p_noa_index = -1;
Johannes Bergbbbdff92009-04-16 13:27:42 +02003488
Johannes Berg0f782312009-12-01 13:37:02 +01003489 if (sdata->local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_SMPS)
3490 ifmgd->req_smps = IEEE80211_SMPS_AUTOMATIC;
3491 else
3492 ifmgd->req_smps = IEEE80211_SMPS_OFF;
Johannes Berg9c6bd792008-09-11 00:01:52 +02003493}
3494
3495/* scan finished notification */
Johannes Berg0a51b272008-09-08 17:44:25 +02003496void ieee80211_mlme_notify_scan_completed(struct ieee80211_local *local)
3497{
Johannes Berg31ee67a2012-07-06 21:18:24 +02003498 struct ieee80211_sub_if_data *sdata;
Johannes Berga1678f82008-09-11 00:01:47 +02003499
3500 /* Restart STA timers */
3501 rcu_read_lock();
Ben Greear370bd002013-03-19 17:50:50 -07003502 list_for_each_entry_rcu(sdata, &local->interfaces, list) {
3503 if (ieee80211_sdata_running(sdata))
3504 ieee80211_restart_sta_timer(sdata);
3505 }
Johannes Berga1678f82008-09-11 00:01:47 +02003506 rcu_read_unlock();
Johannes Berg0a51b272008-09-08 17:44:25 +02003507}
Johannes Berg10f644a2009-04-16 13:17:25 +02003508
3509int ieee80211_max_network_latency(struct notifier_block *nb,
3510 unsigned long data, void *dummy)
3511{
3512 s32 latency_usec = (s32) data;
3513 struct ieee80211_local *local =
3514 container_of(nb, struct ieee80211_local,
3515 network_latency_notifier);
3516
3517 mutex_lock(&local->iflist_mtx);
3518 ieee80211_recalc_ps(local, latency_usec);
3519 mutex_unlock(&local->iflist_mtx);
3520
3521 return 0;
3522}
Johannes Berg77fdaa12009-07-07 03:45:17 +02003523
Johannes Bergf2d9d272012-11-22 14:11:39 +01003524static u8 ieee80211_ht_vht_rx_chains(struct ieee80211_sub_if_data *sdata,
3525 struct cfg80211_bss *cbss)
3526{
3527 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3528 const u8 *ht_cap_ie, *vht_cap_ie;
3529 const struct ieee80211_ht_cap *ht_cap;
3530 const struct ieee80211_vht_cap *vht_cap;
3531 u8 chains = 1;
3532
3533 if (ifmgd->flags & IEEE80211_STA_DISABLE_HT)
3534 return chains;
3535
Johannes Berg9caf0362012-11-29 01:25:20 +01003536 ht_cap_ie = ieee80211_bss_get_ie(cbss, WLAN_EID_HT_CAPABILITY);
Johannes Bergf2d9d272012-11-22 14:11:39 +01003537 if (ht_cap_ie && ht_cap_ie[1] >= sizeof(*ht_cap)) {
3538 ht_cap = (void *)(ht_cap_ie + 2);
3539 chains = ieee80211_mcs_to_chains(&ht_cap->mcs);
3540 /*
3541 * TODO: use "Tx Maximum Number Spatial Streams Supported" and
3542 * "Tx Unequal Modulation Supported" fields.
3543 */
3544 }
3545
3546 if (ifmgd->flags & IEEE80211_STA_DISABLE_VHT)
3547 return chains;
3548
Johannes Berg9caf0362012-11-29 01:25:20 +01003549 vht_cap_ie = ieee80211_bss_get_ie(cbss, WLAN_EID_VHT_CAPABILITY);
Johannes Bergf2d9d272012-11-22 14:11:39 +01003550 if (vht_cap_ie && vht_cap_ie[1] >= sizeof(*vht_cap)) {
3551 u8 nss;
3552 u16 tx_mcs_map;
3553
3554 vht_cap = (void *)(vht_cap_ie + 2);
3555 tx_mcs_map = le16_to_cpu(vht_cap->supp_mcs.tx_mcs_map);
3556 for (nss = 8; nss > 0; nss--) {
3557 if (((tx_mcs_map >> (2 * (nss - 1))) & 3) !=
3558 IEEE80211_VHT_MCS_NOT_SUPPORTED)
3559 break;
3560 }
3561 /* TODO: use "Tx Highest Supported Long GI Data Rate" field? */
3562 chains = max(chains, nss);
3563 }
3564
3565 return chains;
3566}
3567
Johannes Bergb17166a2012-07-27 11:41:27 +02003568static int ieee80211_prep_channel(struct ieee80211_sub_if_data *sdata,
3569 struct cfg80211_bss *cbss)
Johannes Berga1cf7752012-03-08 15:02:07 +01003570{
3571 struct ieee80211_local *local = sdata->local;
3572 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg24398e32012-03-28 10:58:36 +02003573 const struct ieee80211_ht_operation *ht_oper = NULL;
Johannes Bergf2d9d272012-11-22 14:11:39 +01003574 const struct ieee80211_vht_operation *vht_oper = NULL;
Johannes Berg24398e32012-03-28 10:58:36 +02003575 struct ieee80211_supported_band *sband;
Johannes Berg4bf88532012-11-09 11:39:59 +01003576 struct cfg80211_chan_def chandef;
Johannes Bergf2d9d272012-11-22 14:11:39 +01003577 int ret;
Johannes Berga1cf7752012-03-08 15:02:07 +01003578
Johannes Berg24398e32012-03-28 10:58:36 +02003579 sband = local->hw.wiphy->bands[cbss->channel->band];
3580
Johannes Bergf2d9d272012-11-22 14:11:39 +01003581 ifmgd->flags &= ~(IEEE80211_STA_DISABLE_40MHZ |
3582 IEEE80211_STA_DISABLE_80P80MHZ |
3583 IEEE80211_STA_DISABLE_160MHZ);
Johannes Berg24398e32012-03-28 10:58:36 +02003584
Johannes Berg9caf0362012-11-29 01:25:20 +01003585 rcu_read_lock();
3586
Johannes Bergf2d9d272012-11-22 14:11:39 +01003587 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_HT) &&
3588 sband->ht_cap.ht_supported) {
Johannes Berg08e6effa2013-02-07 23:33:32 +01003589 const u8 *ht_oper_ie, *ht_cap;
Johannes Bergf2d9d272012-11-22 14:11:39 +01003590
Johannes Berg9caf0362012-11-29 01:25:20 +01003591 ht_oper_ie = ieee80211_bss_get_ie(cbss, WLAN_EID_HT_OPERATION);
Johannes Berg24398e32012-03-28 10:58:36 +02003592 if (ht_oper_ie && ht_oper_ie[1] >= sizeof(*ht_oper))
3593 ht_oper = (void *)(ht_oper_ie + 2);
Johannes Berg08e6effa2013-02-07 23:33:32 +01003594
3595 ht_cap = ieee80211_bss_get_ie(cbss, WLAN_EID_HT_CAPABILITY);
3596 if (!ht_cap || ht_cap[1] < sizeof(struct ieee80211_ht_cap)) {
3597 ifmgd->flags |= IEEE80211_STA_DISABLE_HT;
3598 ht_oper = NULL;
3599 }
Johannes Berg24398e32012-03-28 10:58:36 +02003600 }
3601
Johannes Bergf2d9d272012-11-22 14:11:39 +01003602 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_VHT) &&
3603 sband->vht_cap.vht_supported) {
Johannes Berg08e6effa2013-02-07 23:33:32 +01003604 const u8 *vht_oper_ie, *vht_cap;
Johannes Bergf2d9d272012-11-22 14:11:39 +01003605
Johannes Berg9caf0362012-11-29 01:25:20 +01003606 vht_oper_ie = ieee80211_bss_get_ie(cbss,
3607 WLAN_EID_VHT_OPERATION);
Johannes Bergf2d9d272012-11-22 14:11:39 +01003608 if (vht_oper_ie && vht_oper_ie[1] >= sizeof(*vht_oper))
3609 vht_oper = (void *)(vht_oper_ie + 2);
3610 if (vht_oper && !ht_oper) {
3611 vht_oper = NULL;
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003612 sdata_info(sdata,
Johannes Bergf2d9d272012-11-22 14:11:39 +01003613 "AP advertised VHT without HT, disabling both\n");
Johannes Bergcb145022013-02-07 20:41:50 +01003614 ifmgd->flags |= IEEE80211_STA_DISABLE_HT;
3615 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
Johannes Berg24398e32012-03-28 10:58:36 +02003616 }
Johannes Berg08e6effa2013-02-07 23:33:32 +01003617
3618 vht_cap = ieee80211_bss_get_ie(cbss, WLAN_EID_VHT_CAPABILITY);
3619 if (!vht_cap || vht_cap[1] < sizeof(struct ieee80211_vht_cap)) {
3620 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
3621 vht_oper = NULL;
3622 }
Johannes Berg24398e32012-03-28 10:58:36 +02003623 }
3624
Johannes Bergf2d9d272012-11-22 14:11:39 +01003625 ifmgd->flags |= ieee80211_determine_chantype(sdata, sband,
3626 cbss->channel,
3627 ht_oper, vht_oper,
Johannes Berg5cdaed12013-07-31 11:23:06 +02003628 &chandef, false);
Johannes Berg04ecd252012-09-11 14:34:12 +02003629
Johannes Bergf2d9d272012-11-22 14:11:39 +01003630 sdata->needed_rx_chains = min(ieee80211_ht_vht_rx_chains(sdata, cbss),
3631 local->rx_chains);
Johannes Berg24398e32012-03-28 10:58:36 +02003632
Johannes Berg9caf0362012-11-29 01:25:20 +01003633 rcu_read_unlock();
3634
Johannes Berg04ecd252012-09-11 14:34:12 +02003635 /* will change later if needed */
3636 sdata->smps_mode = IEEE80211_SMPS_OFF;
3637
Johannes Bergf2d9d272012-11-22 14:11:39 +01003638 /*
3639 * If this fails (possibly due to channel context sharing
3640 * on incompatible channels, e.g. 80+80 and 160 sharing the
3641 * same control channel) try to use a smaller bandwidth.
3642 */
3643 ret = ieee80211_vif_use_channel(sdata, &chandef,
3644 IEEE80211_CHANCTX_SHARED);
Simon Wunderlich0418a442013-05-16 13:00:31 +02003645
3646 /* don't downgrade for 5 and 10 MHz channels, though. */
3647 if (chandef.width == NL80211_CHAN_WIDTH_5 ||
3648 chandef.width == NL80211_CHAN_WIDTH_10)
3649 return ret;
3650
Johannes Bergd601cd82013-02-07 20:54:51 +01003651 while (ret && chandef.width != NL80211_CHAN_WIDTH_20_NOHT) {
Simon Wunderliche6b7cde2013-08-28 13:41:29 +02003652 ifmgd->flags |= ieee80211_chandef_downgrade(&chandef);
Johannes Bergd601cd82013-02-07 20:54:51 +01003653 ret = ieee80211_vif_use_channel(sdata, &chandef,
3654 IEEE80211_CHANCTX_SHARED);
3655 }
Johannes Bergf2d9d272012-11-22 14:11:39 +01003656 return ret;
Johannes Bergb17166a2012-07-27 11:41:27 +02003657}
3658
3659static int ieee80211_prep_connection(struct ieee80211_sub_if_data *sdata,
3660 struct cfg80211_bss *cbss, bool assoc)
3661{
3662 struct ieee80211_local *local = sdata->local;
3663 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3664 struct ieee80211_bss *bss = (void *)cbss->priv;
3665 struct sta_info *new_sta = NULL;
3666 bool have_sta = false;
3667 int err;
3668
3669 if (WARN_ON(!ifmgd->auth_data && !ifmgd->assoc_data))
3670 return -EINVAL;
3671
3672 if (assoc) {
3673 rcu_read_lock();
3674 have_sta = sta_info_get(sdata, cbss->bssid);
3675 rcu_read_unlock();
3676 }
3677
3678 if (!have_sta) {
3679 new_sta = sta_info_alloc(sdata, cbss->bssid, GFP_KERNEL);
3680 if (!new_sta)
3681 return -ENOMEM;
3682 }
Johannes Berg13e0c8e2012-07-27 10:43:16 +02003683 if (new_sta) {
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003684 u32 rates = 0, basic_rates = 0;
3685 bool have_higher_than_11mbit;
3686 int min_rate = INT_MAX, min_rate_index = -1;
Simon Wunderlich2103dec2013-07-08 16:55:53 +02003687 struct ieee80211_chanctx_conf *chanctx_conf;
Johannes Bergb17166a2012-07-27 11:41:27 +02003688 struct ieee80211_supported_band *sband;
Johannes Berg8cef2c92013-02-05 16:54:31 +01003689 const struct cfg80211_bss_ies *ies;
Simon Wunderlich2103dec2013-07-08 16:55:53 +02003690 int shift;
3691 u32 rate_flags;
Johannes Bergb17166a2012-07-27 11:41:27 +02003692
3693 sband = local->hw.wiphy->bands[cbss->channel->band];
3694
3695 err = ieee80211_prep_channel(sdata, cbss);
3696 if (err) {
3697 sta_info_free(local, new_sta);
Simon Wunderlich2103dec2013-07-08 16:55:53 +02003698 return -EINVAL;
Johannes Bergb17166a2012-07-27 11:41:27 +02003699 }
Simon Wunderlich2103dec2013-07-08 16:55:53 +02003700 shift = ieee80211_vif_get_shift(&sdata->vif);
3701
3702 rcu_read_lock();
3703 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
3704 if (WARN_ON(!chanctx_conf)) {
3705 rcu_read_unlock();
3706 return -EINVAL;
3707 }
3708 rate_flags = ieee80211_chandef_rate_flags(&chanctx_conf->def);
3709 rcu_read_unlock();
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003710
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003711 ieee80211_get_rates(sband, bss->supp_rates,
3712 bss->supp_rates_len,
3713 &rates, &basic_rates,
3714 &have_higher_than_11mbit,
Simon Wunderlich2103dec2013-07-08 16:55:53 +02003715 &min_rate, &min_rate_index,
3716 shift, rate_flags);
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003717
3718 /*
3719 * This used to be a workaround for basic rates missing
3720 * in the association response frame. Now that we no
3721 * longer use the basic rates from there, it probably
3722 * doesn't happen any more, but keep the workaround so
3723 * in case some *other* APs are buggy in different ways
3724 * we can connect -- with a warning.
3725 */
3726 if (!basic_rates && min_rate_index >= 0) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003727 sdata_info(sdata,
3728 "No basic rates, using min rate instead\n");
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003729 basic_rates = BIT(min_rate_index);
3730 }
3731
Johannes Berg13e0c8e2012-07-27 10:43:16 +02003732 new_sta->sta.supp_rates[cbss->channel->band] = rates;
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003733 sdata->vif.bss_conf.basic_rates = basic_rates;
3734
3735 /* cf. IEEE 802.11 9.2.12 */
Johannes Berg55de9082012-07-26 17:24:39 +02003736 if (cbss->channel->band == IEEE80211_BAND_2GHZ &&
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003737 have_higher_than_11mbit)
3738 sdata->flags |= IEEE80211_SDATA_OPERATING_GMODE;
3739 else
3740 sdata->flags &= ~IEEE80211_SDATA_OPERATING_GMODE;
3741
3742 memcpy(ifmgd->bssid, cbss->bssid, ETH_ALEN);
3743
Johannes Berg8c358bc2012-05-22 22:13:05 +02003744 /* set timing information */
3745 sdata->vif.bss_conf.beacon_int = cbss->beacon_interval;
Johannes Berg8cef2c92013-02-05 16:54:31 +01003746 rcu_read_lock();
Johannes Bergef429da2013-02-05 17:48:40 +01003747 ies = rcu_dereference(cbss->beacon_ies);
3748 if (ies) {
3749 const u8 *tim_ie;
3750
3751 sdata->vif.bss_conf.sync_tsf = ies->tsf;
3752 sdata->vif.bss_conf.sync_device_ts =
3753 bss->device_ts_beacon;
3754 tim_ie = cfg80211_find_ie(WLAN_EID_TIM,
3755 ies->data, ies->len);
3756 if (tim_ie && tim_ie[1] >= 2)
3757 sdata->vif.bss_conf.sync_dtim_count = tim_ie[2];
3758 else
3759 sdata->vif.bss_conf.sync_dtim_count = 0;
3760 } else if (!(local->hw.flags &
3761 IEEE80211_HW_TIMING_BEACON_ONLY)) {
3762 ies = rcu_dereference(cbss->proberesp_ies);
3763 /* must be non-NULL since beacon IEs were NULL */
3764 sdata->vif.bss_conf.sync_tsf = ies->tsf;
3765 sdata->vif.bss_conf.sync_device_ts =
3766 bss->device_ts_presp;
3767 sdata->vif.bss_conf.sync_dtim_count = 0;
3768 } else {
3769 sdata->vif.bss_conf.sync_tsf = 0;
3770 sdata->vif.bss_conf.sync_device_ts = 0;
3771 sdata->vif.bss_conf.sync_dtim_count = 0;
3772 }
Johannes Berg8cef2c92013-02-05 16:54:31 +01003773 rcu_read_unlock();
Johannes Berg8c358bc2012-05-22 22:13:05 +02003774
3775 /* tell driver about BSSID, basic rates and timing */
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003776 ieee80211_bss_info_change_notify(sdata,
Johannes Berg8c358bc2012-05-22 22:13:05 +02003777 BSS_CHANGED_BSSID | BSS_CHANGED_BASIC_RATES |
3778 BSS_CHANGED_BEACON_INT);
Johannes Berga1cf7752012-03-08 15:02:07 +01003779
3780 if (assoc)
Johannes Berg13e0c8e2012-07-27 10:43:16 +02003781 sta_info_pre_move_state(new_sta, IEEE80211_STA_AUTH);
Johannes Berga1cf7752012-03-08 15:02:07 +01003782
Johannes Berg13e0c8e2012-07-27 10:43:16 +02003783 err = sta_info_insert(new_sta);
3784 new_sta = NULL;
Johannes Berga1cf7752012-03-08 15:02:07 +01003785 if (err) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003786 sdata_info(sdata,
3787 "failed to insert STA entry for the AP (error %d)\n",
3788 err);
Johannes Berga1cf7752012-03-08 15:02:07 +01003789 return err;
3790 }
3791 } else
Joe Perchesb203ca32012-05-08 18:56:52 +00003792 WARN_ON_ONCE(!ether_addr_equal(ifmgd->bssid, cbss->bssid));
Johannes Berga1cf7752012-03-08 15:02:07 +01003793
3794 return 0;
3795}
3796
Johannes Berg77fdaa12009-07-07 03:45:17 +02003797/* config hooks */
3798int ieee80211_mgd_auth(struct ieee80211_sub_if_data *sdata,
3799 struct cfg80211_auth_request *req)
3800{
Johannes Berg66e67e42012-01-20 13:55:27 +01003801 struct ieee80211_local *local = sdata->local;
3802 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3803 struct ieee80211_mgd_auth_data *auth_data;
Johannes Berg77fdaa12009-07-07 03:45:17 +02003804 u16 auth_alg;
Johannes Berg66e67e42012-01-20 13:55:27 +01003805 int err;
3806
3807 /* prepare auth data structure */
Johannes Berg77fdaa12009-07-07 03:45:17 +02003808
3809 switch (req->auth_type) {
3810 case NL80211_AUTHTYPE_OPEN_SYSTEM:
3811 auth_alg = WLAN_AUTH_OPEN;
3812 break;
3813 case NL80211_AUTHTYPE_SHARED_KEY:
Johannes Berg66e67e42012-01-20 13:55:27 +01003814 if (IS_ERR(local->wep_tx_tfm))
Johannes Berg9dca9c42010-07-21 10:09:25 +02003815 return -EOPNOTSUPP;
Johannes Berg77fdaa12009-07-07 03:45:17 +02003816 auth_alg = WLAN_AUTH_SHARED_KEY;
3817 break;
3818 case NL80211_AUTHTYPE_FT:
3819 auth_alg = WLAN_AUTH_FT;
3820 break;
3821 case NL80211_AUTHTYPE_NETWORK_EAP:
3822 auth_alg = WLAN_AUTH_LEAP;
3823 break;
Jouni Malinen6b8ece32012-09-30 19:29:40 +03003824 case NL80211_AUTHTYPE_SAE:
3825 auth_alg = WLAN_AUTH_SAE;
3826 break;
Johannes Berg77fdaa12009-07-07 03:45:17 +02003827 default:
3828 return -EOPNOTSUPP;
3829 }
3830
Jouni Malinen6b8ece32012-09-30 19:29:40 +03003831 auth_data = kzalloc(sizeof(*auth_data) + req->sae_data_len +
3832 req->ie_len, GFP_KERNEL);
Johannes Berg66e67e42012-01-20 13:55:27 +01003833 if (!auth_data)
Johannes Berg77fdaa12009-07-07 03:45:17 +02003834 return -ENOMEM;
3835
Johannes Berg66e67e42012-01-20 13:55:27 +01003836 auth_data->bss = req->bss;
Johannes Berg77fdaa12009-07-07 03:45:17 +02003837
Jouni Malinen6b8ece32012-09-30 19:29:40 +03003838 if (req->sae_data_len >= 4) {
3839 __le16 *pos = (__le16 *) req->sae_data;
3840 auth_data->sae_trans = le16_to_cpu(pos[0]);
3841 auth_data->sae_status = le16_to_cpu(pos[1]);
3842 memcpy(auth_data->data, req->sae_data + 4,
3843 req->sae_data_len - 4);
3844 auth_data->data_len += req->sae_data_len - 4;
3845 }
3846
Johannes Berg77fdaa12009-07-07 03:45:17 +02003847 if (req->ie && req->ie_len) {
Jouni Malinen6b8ece32012-09-30 19:29:40 +03003848 memcpy(&auth_data->data[auth_data->data_len],
3849 req->ie, req->ie_len);
3850 auth_data->data_len += req->ie_len;
Johannes Berg77fdaa12009-07-07 03:45:17 +02003851 }
3852
Johannes Bergfffd0932009-07-08 14:22:54 +02003853 if (req->key && req->key_len) {
Johannes Berg66e67e42012-01-20 13:55:27 +01003854 auth_data->key_len = req->key_len;
3855 auth_data->key_idx = req->key_idx;
3856 memcpy(auth_data->key, req->key, req->key_len);
Johannes Bergfffd0932009-07-08 14:22:54 +02003857 }
3858
Johannes Berg66e67e42012-01-20 13:55:27 +01003859 auth_data->algorithm = auth_alg;
Johannes Berg77fdaa12009-07-07 03:45:17 +02003860
Johannes Berg66e67e42012-01-20 13:55:27 +01003861 /* try to authenticate/probe */
Johannes Bergf679f652009-12-23 13:15:34 +01003862
Johannes Berg66e67e42012-01-20 13:55:27 +01003863 if ((ifmgd->auth_data && !ifmgd->auth_data->done) ||
3864 ifmgd->assoc_data) {
3865 err = -EBUSY;
3866 goto err_free;
3867 }
Johannes Berg77fdaa12009-07-07 03:45:17 +02003868
Johannes Berg66e67e42012-01-20 13:55:27 +01003869 if (ifmgd->auth_data)
3870 ieee80211_destroy_auth_data(sdata, false);
Guy Eilam2a33bee2011-08-17 15:18:15 +03003871
Johannes Berg66e67e42012-01-20 13:55:27 +01003872 /* prep auth_data so we don't go into idle on disassoc */
3873 ifmgd->auth_data = auth_data;
3874
Johannes Berg7b119dc2013-04-10 21:38:36 +02003875 if (ifmgd->associated) {
3876 u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN];
3877
3878 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH,
3879 WLAN_REASON_UNSPECIFIED,
3880 false, frame_buf);
3881
Johannes Berg6ff57cf2013-05-16 00:55:00 +02003882 cfg80211_tx_mlme_mgmt(sdata->dev, frame_buf,
3883 sizeof(frame_buf));
Johannes Berg7b119dc2013-04-10 21:38:36 +02003884 }
Johannes Berg66e67e42012-01-20 13:55:27 +01003885
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003886 sdata_info(sdata, "authenticate with %pM\n", req->bss->bssid);
Johannes Berg66e67e42012-01-20 13:55:27 +01003887
Johannes Berga1cf7752012-03-08 15:02:07 +01003888 err = ieee80211_prep_connection(sdata, req->bss, false);
3889 if (err)
Johannes Berg66e67e42012-01-20 13:55:27 +01003890 goto err_clear;
Guy Eilam2a33bee2011-08-17 15:18:15 +03003891
Johannes Berg66e67e42012-01-20 13:55:27 +01003892 err = ieee80211_probe_auth(sdata);
3893 if (err) {
Johannes Berg66e67e42012-01-20 13:55:27 +01003894 sta_info_destroy_addr(sdata, req->bss->bssid);
3895 goto err_clear;
Johannes Bergaf6b6372009-12-23 13:15:35 +01003896 }
3897
Johannes Berg66e67e42012-01-20 13:55:27 +01003898 /* hold our own reference */
Johannes Berg5b112d32013-02-01 01:49:58 +01003899 cfg80211_ref_bss(local->hw.wiphy, auth_data->bss);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003900 return 0;
Johannes Berge5b900d2010-07-29 16:08:55 +02003901
Johannes Berg66e67e42012-01-20 13:55:27 +01003902 err_clear:
Eliad Peller3d2abdf2012-09-04 17:44:45 +03003903 memset(ifmgd->bssid, 0, ETH_ALEN);
3904 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BSSID);
Johannes Berg66e67e42012-01-20 13:55:27 +01003905 ifmgd->auth_data = NULL;
3906 err_free:
3907 kfree(auth_data);
Johannes Berg66e67e42012-01-20 13:55:27 +01003908 return err;
Johannes Bergaf6b6372009-12-23 13:15:35 +01003909}
3910
Johannes Berg77fdaa12009-07-07 03:45:17 +02003911int ieee80211_mgd_assoc(struct ieee80211_sub_if_data *sdata,
3912 struct cfg80211_assoc_request *req)
3913{
Johannes Berg66e67e42012-01-20 13:55:27 +01003914 struct ieee80211_local *local = sdata->local;
Johannes Berg77fdaa12009-07-07 03:45:17 +02003915 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01003916 struct ieee80211_bss *bss = (void *)req->bss->priv;
Johannes Berg66e67e42012-01-20 13:55:27 +01003917 struct ieee80211_mgd_assoc_data *assoc_data;
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02003918 const struct cfg80211_bss_ies *beacon_ies;
Johannes Berg4e74bfd2012-03-08 15:02:04 +01003919 struct ieee80211_supported_band *sband;
Johannes Bergb08fbbd2012-12-07 13:06:48 +01003920 const u8 *ssidie, *ht_ie, *vht_ie;
Guy Eilam2a33bee2011-08-17 15:18:15 +03003921 int i, err;
Johannes Berg77fdaa12009-07-07 03:45:17 +02003922
Johannes Berg66e67e42012-01-20 13:55:27 +01003923 assoc_data = kzalloc(sizeof(*assoc_data) + req->ie_len, GFP_KERNEL);
3924 if (!assoc_data)
Johannes Bergaf6b6372009-12-23 13:15:35 +01003925 return -ENOMEM;
Johannes Berg77fdaa12009-07-07 03:45:17 +02003926
Johannes Berg9caf0362012-11-29 01:25:20 +01003927 rcu_read_lock();
3928 ssidie = ieee80211_bss_get_ie(req->bss, WLAN_EID_SSID);
3929 if (!ssidie) {
3930 rcu_read_unlock();
3931 kfree(assoc_data);
3932 return -EINVAL;
3933 }
3934 memcpy(assoc_data->ssid, ssidie + 2, ssidie[1]);
3935 assoc_data->ssid_len = ssidie[1];
3936 rcu_read_unlock();
3937
Johannes Berg7b119dc2013-04-10 21:38:36 +02003938 if (ifmgd->associated) {
3939 u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN];
3940
3941 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH,
3942 WLAN_REASON_UNSPECIFIED,
3943 false, frame_buf);
3944
Johannes Berg6ff57cf2013-05-16 00:55:00 +02003945 cfg80211_tx_mlme_mgmt(sdata->dev, frame_buf,
3946 sizeof(frame_buf));
Johannes Berg7b119dc2013-04-10 21:38:36 +02003947 }
Johannes Berg66e67e42012-01-20 13:55:27 +01003948
3949 if (ifmgd->auth_data && !ifmgd->auth_data->done) {
3950 err = -EBUSY;
3951 goto err_free;
Guy Eilam2a33bee2011-08-17 15:18:15 +03003952 }
3953
Johannes Berg66e67e42012-01-20 13:55:27 +01003954 if (ifmgd->assoc_data) {
3955 err = -EBUSY;
3956 goto err_free;
3957 }
3958
3959 if (ifmgd->auth_data) {
3960 bool match;
3961
3962 /* keep sta info, bssid if matching */
Joe Perchesb203ca32012-05-08 18:56:52 +00003963 match = ether_addr_equal(ifmgd->bssid, req->bss->bssid);
Johannes Berg66e67e42012-01-20 13:55:27 +01003964 ieee80211_destroy_auth_data(sdata, match);
3965 }
3966
3967 /* prepare assoc data */
Johannes Berg19c3b832012-08-01 20:13:36 +02003968
Juuso Oikarinend8ec4432010-10-01 16:02:31 +03003969 ifmgd->beacon_crc_valid = false;
3970
Johannes Bergde5036a2012-03-08 15:02:03 +01003971 /*
3972 * IEEE802.11n does not allow TKIP/WEP as pairwise ciphers in HT mode.
3973 * We still associate in non-HT mode (11a/b/g) if any one of these
3974 * ciphers is configured as pairwise.
3975 * We can set this to true for non-11n hardware, that'll be checked
3976 * separately along with the peer capabilities.
3977 */
Johannes Berg1c4cb922012-05-30 15:57:00 +02003978 for (i = 0; i < req->crypto.n_ciphers_pairwise; i++) {
Johannes Berg77fdaa12009-07-07 03:45:17 +02003979 if (req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_WEP40 ||
3980 req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_TKIP ||
Johannes Berg1c4cb922012-05-30 15:57:00 +02003981 req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_WEP104) {
Johannes Berga8243b72012-11-22 14:32:09 +01003982 ifmgd->flags |= IEEE80211_STA_DISABLE_HT;
Mahesh Palivelad545dab2012-07-24 03:33:10 +00003983 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
Johannes Berg1c4cb922012-05-30 15:57:00 +02003984 netdev_info(sdata->dev,
Mahesh Palivelad545dab2012-07-24 03:33:10 +00003985 "disabling HT/VHT due to WEP/TKIP use\n");
Johannes Berg1c4cb922012-05-30 15:57:00 +02003986 }
3987 }
Johannes Berg77fdaa12009-07-07 03:45:17 +02003988
Mahesh Palivelad545dab2012-07-24 03:33:10 +00003989 if (req->flags & ASSOC_REQ_DISABLE_HT) {
Johannes Berga8243b72012-11-22 14:32:09 +01003990 ifmgd->flags |= IEEE80211_STA_DISABLE_HT;
Mahesh Palivelad545dab2012-07-24 03:33:10 +00003991 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
3992 }
Ben Greearef96a8422011-11-18 11:32:00 -08003993
Johannes Bergdd5ecfe2013-02-21 17:40:19 +01003994 if (req->flags & ASSOC_REQ_DISABLE_VHT)
3995 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
3996
Johannes Berg4e74bfd2012-03-08 15:02:04 +01003997 /* Also disable HT if we don't support it or the AP doesn't use WMM */
3998 sband = local->hw.wiphy->bands[req->bss->channel->band];
3999 if (!sband->ht_cap.ht_supported ||
Johannes Berg1c4cb922012-05-30 15:57:00 +02004000 local->hw.queues < IEEE80211_NUM_ACS || !bss->wmm_used) {
Johannes Berga8243b72012-11-22 14:32:09 +01004001 ifmgd->flags |= IEEE80211_STA_DISABLE_HT;
Johannes Berg1b49de22012-07-27 10:29:14 +02004002 if (!bss->wmm_used)
4003 netdev_info(sdata->dev,
4004 "disabling HT as WMM/QoS is not supported by the AP\n");
Johannes Berg1c4cb922012-05-30 15:57:00 +02004005 }
Johannes Berg4e74bfd2012-03-08 15:02:04 +01004006
Mahesh Palivelad545dab2012-07-24 03:33:10 +00004007 /* disable VHT if we don't support it or the AP doesn't use WMM */
4008 if (!sband->vht_cap.vht_supported ||
4009 local->hw.queues < IEEE80211_NUM_ACS || !bss->wmm_used) {
4010 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
Johannes Berg1b49de22012-07-27 10:29:14 +02004011 if (!bss->wmm_used)
4012 netdev_info(sdata->dev,
4013 "disabling VHT as WMM/QoS is not supported by the AP\n");
Mahesh Palivelad545dab2012-07-24 03:33:10 +00004014 }
4015
Ben Greearef96a8422011-11-18 11:32:00 -08004016 memcpy(&ifmgd->ht_capa, &req->ht_capa, sizeof(ifmgd->ht_capa));
4017 memcpy(&ifmgd->ht_capa_mask, &req->ht_capa_mask,
4018 sizeof(ifmgd->ht_capa_mask));
4019
Johannes Bergdd5ecfe2013-02-21 17:40:19 +01004020 memcpy(&ifmgd->vht_capa, &req->vht_capa, sizeof(ifmgd->vht_capa));
4021 memcpy(&ifmgd->vht_capa_mask, &req->vht_capa_mask,
4022 sizeof(ifmgd->vht_capa_mask));
4023
Johannes Berg77fdaa12009-07-07 03:45:17 +02004024 if (req->ie && req->ie_len) {
Johannes Berg66e67e42012-01-20 13:55:27 +01004025 memcpy(assoc_data->ie, req->ie, req->ie_len);
4026 assoc_data->ie_len = req->ie_len;
4027 }
Johannes Berg77fdaa12009-07-07 03:45:17 +02004028
Johannes Berg66e67e42012-01-20 13:55:27 +01004029 assoc_data->bss = req->bss;
Johannes Bergf679f652009-12-23 13:15:34 +01004030
Johannes Bergaf6b6372009-12-23 13:15:35 +01004031 if (ifmgd->req_smps == IEEE80211_SMPS_AUTOMATIC) {
4032 if (ifmgd->powersave)
Johannes Berg04ecd252012-09-11 14:34:12 +02004033 sdata->smps_mode = IEEE80211_SMPS_DYNAMIC;
Johannes Bergaf6b6372009-12-23 13:15:35 +01004034 else
Johannes Berg04ecd252012-09-11 14:34:12 +02004035 sdata->smps_mode = IEEE80211_SMPS_OFF;
Johannes Bergaf6b6372009-12-23 13:15:35 +01004036 } else
Johannes Berg04ecd252012-09-11 14:34:12 +02004037 sdata->smps_mode = ifmgd->req_smps;
Johannes Bergaf6b6372009-12-23 13:15:35 +01004038
Johannes Berg66e67e42012-01-20 13:55:27 +01004039 assoc_data->capability = req->bss->capability;
Johannes Berg32c50572012-03-28 11:04:29 +02004040 assoc_data->wmm = bss->wmm_used &&
4041 (local->hw.queues >= IEEE80211_NUM_ACS);
Johannes Berg66e67e42012-01-20 13:55:27 +01004042 assoc_data->supp_rates = bss->supp_rates;
4043 assoc_data->supp_rates_len = bss->supp_rates_len;
Johannes Berg9dde6422012-05-16 23:43:19 +02004044
Johannes Berg9caf0362012-11-29 01:25:20 +01004045 rcu_read_lock();
Johannes Berg9dde6422012-05-16 23:43:19 +02004046 ht_ie = ieee80211_bss_get_ie(req->bss, WLAN_EID_HT_OPERATION);
4047 if (ht_ie && ht_ie[1] >= sizeof(struct ieee80211_ht_operation))
4048 assoc_data->ap_ht_param =
4049 ((struct ieee80211_ht_operation *)(ht_ie + 2))->ht_param;
4050 else
Johannes Berga8243b72012-11-22 14:32:09 +01004051 ifmgd->flags |= IEEE80211_STA_DISABLE_HT;
Johannes Bergb08fbbd2012-12-07 13:06:48 +01004052 vht_ie = ieee80211_bss_get_ie(req->bss, WLAN_EID_VHT_CAPABILITY);
4053 if (vht_ie && vht_ie[1] >= sizeof(struct ieee80211_vht_cap))
4054 memcpy(&assoc_data->ap_vht_cap, vht_ie + 2,
4055 sizeof(struct ieee80211_vht_cap));
4056 else
4057 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
Johannes Berg9caf0362012-11-29 01:25:20 +01004058 rcu_read_unlock();
Johannes Berg63f170e2009-12-23 13:15:33 +01004059
Kalle Valoab133152010-01-12 10:42:31 +02004060 if (bss->wmm_used && bss->uapsd_supported &&
Alexander Bondar24aa11a2013-04-02 15:30:14 +03004061 (sdata->local->hw.flags & IEEE80211_HW_SUPPORTS_UAPSD) &&
4062 sdata->wmm_acm != 0xff) {
Johannes Berg76f03032012-03-08 15:02:05 +01004063 assoc_data->uapsd = true;
Kalle Valoab133152010-01-12 10:42:31 +02004064 ifmgd->flags |= IEEE80211_STA_UAPSD_ENABLED;
4065 } else {
Johannes Berg76f03032012-03-08 15:02:05 +01004066 assoc_data->uapsd = false;
Kalle Valoab133152010-01-12 10:42:31 +02004067 ifmgd->flags &= ~IEEE80211_STA_UAPSD_ENABLED;
4068 }
4069
Johannes Berg77fdaa12009-07-07 03:45:17 +02004070 if (req->prev_bssid)
Johannes Berg66e67e42012-01-20 13:55:27 +01004071 memcpy(assoc_data->prev_bssid, req->prev_bssid, ETH_ALEN);
Johannes Berg77fdaa12009-07-07 03:45:17 +02004072
4073 if (req->use_mfp) {
4074 ifmgd->mfp = IEEE80211_MFP_REQUIRED;
4075 ifmgd->flags |= IEEE80211_STA_MFP_ENABLED;
4076 } else {
4077 ifmgd->mfp = IEEE80211_MFP_DISABLED;
4078 ifmgd->flags &= ~IEEE80211_STA_MFP_ENABLED;
4079 }
4080
4081 if (req->crypto.control_port)
4082 ifmgd->flags |= IEEE80211_STA_CONTROL_PORT;
4083 else
4084 ifmgd->flags &= ~IEEE80211_STA_CONTROL_PORT;
4085
Johannes Berga621fa42010-08-27 14:26:54 +03004086 sdata->control_port_protocol = req->crypto.control_port_ethertype;
4087 sdata->control_port_no_encrypt = req->crypto.control_port_no_encrypt;
4088
Johannes Berg66e67e42012-01-20 13:55:27 +01004089 /* kick off associate process */
4090
4091 ifmgd->assoc_data = assoc_data;
Johannes Berg826262c2012-12-10 16:38:14 +02004092 ifmgd->dtim_period = 0;
Alexander Bondar989c6502013-05-16 17:34:17 +03004093 ifmgd->have_beacon = false;
Johannes Berg66e67e42012-01-20 13:55:27 +01004094
Johannes Berga1cf7752012-03-08 15:02:07 +01004095 err = ieee80211_prep_connection(sdata, req->bss, true);
4096 if (err)
4097 goto err_clear;
Johannes Berg66e67e42012-01-20 13:55:27 +01004098
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02004099 rcu_read_lock();
4100 beacon_ies = rcu_dereference(req->bss->beacon_ies);
Johannes Berg826262c2012-12-10 16:38:14 +02004101
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02004102 if (sdata->local->hw.flags & IEEE80211_HW_NEED_DTIM_BEFORE_ASSOC &&
4103 !beacon_ies) {
4104 /*
4105 * Wait up to one beacon interval ...
4106 * should this be more if we miss one?
4107 */
4108 sdata_info(sdata, "waiting for beacon from %pM\n",
4109 ifmgd->bssid);
4110 assoc_data->timeout = TU_TO_EXP_TIME(req->bss->beacon_interval);
Johannes Berg89afe612013-02-13 15:39:57 +01004111 assoc_data->timeout_started = true;
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02004112 assoc_data->need_beacon = true;
4113 } else if (beacon_ies) {
4114 const u8 *tim_ie = cfg80211_find_ie(WLAN_EID_TIM,
4115 beacon_ies->data,
4116 beacon_ies->len);
Johannes Bergef429da2013-02-05 17:48:40 +01004117 u8 dtim_count = 0;
4118
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02004119 if (tim_ie && tim_ie[1] >= sizeof(struct ieee80211_tim_ie)) {
4120 const struct ieee80211_tim_ie *tim;
4121 tim = (void *)(tim_ie + 2);
4122 ifmgd->dtim_period = tim->dtim_period;
Johannes Bergef429da2013-02-05 17:48:40 +01004123 dtim_count = tim->dtim_count;
Johannes Berg826262c2012-12-10 16:38:14 +02004124 }
Alexander Bondar989c6502013-05-16 17:34:17 +03004125 ifmgd->have_beacon = true;
Johannes Berg66e67e42012-01-20 13:55:27 +01004126 assoc_data->timeout = jiffies;
Johannes Berg89afe612013-02-13 15:39:57 +01004127 assoc_data->timeout_started = true;
Johannes Bergef429da2013-02-05 17:48:40 +01004128
4129 if (local->hw.flags & IEEE80211_HW_TIMING_BEACON_ONLY) {
4130 sdata->vif.bss_conf.sync_tsf = beacon_ies->tsf;
4131 sdata->vif.bss_conf.sync_device_ts =
4132 bss->device_ts_beacon;
4133 sdata->vif.bss_conf.sync_dtim_count = dtim_count;
4134 }
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02004135 } else {
4136 assoc_data->timeout = jiffies;
Johannes Berg89afe612013-02-13 15:39:57 +01004137 assoc_data->timeout_started = true;
Johannes Berg66e67e42012-01-20 13:55:27 +01004138 }
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02004139 rcu_read_unlock();
4140
Johannes Berg8d61ffa2013-05-10 12:32:47 +02004141 run_again(sdata, assoc_data->timeout);
Johannes Berg66e67e42012-01-20 13:55:27 +01004142
Paul Stewartfcff4f12012-02-23 17:59:53 -08004143 if (bss->corrupt_data) {
4144 char *corrupt_type = "data";
4145 if (bss->corrupt_data & IEEE80211_BSS_CORRUPT_BEACON) {
4146 if (bss->corrupt_data &
4147 IEEE80211_BSS_CORRUPT_PROBE_RESP)
4148 corrupt_type = "beacon and probe response";
4149 else
4150 corrupt_type = "beacon";
4151 } else if (bss->corrupt_data & IEEE80211_BSS_CORRUPT_PROBE_RESP)
4152 corrupt_type = "probe response";
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02004153 sdata_info(sdata, "associating with AP with corrupt %s\n",
4154 corrupt_type);
Paul Stewartfcff4f12012-02-23 17:59:53 -08004155 }
4156
Johannes Berg8d61ffa2013-05-10 12:32:47 +02004157 return 0;
Johannes Berg66e67e42012-01-20 13:55:27 +01004158 err_clear:
Eliad Peller3d2abdf2012-09-04 17:44:45 +03004159 memset(ifmgd->bssid, 0, ETH_ALEN);
4160 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BSSID);
Johannes Berg66e67e42012-01-20 13:55:27 +01004161 ifmgd->assoc_data = NULL;
4162 err_free:
4163 kfree(assoc_data);
Johannes Berg66e67e42012-01-20 13:55:27 +01004164 return err;
Johannes Berg77fdaa12009-07-07 03:45:17 +02004165}
4166
4167int ieee80211_mgd_deauth(struct ieee80211_sub_if_data *sdata,
Johannes Berg63c9c5e2012-02-24 13:50:51 +01004168 struct cfg80211_deauth_request *req)
Johannes Berg77fdaa12009-07-07 03:45:17 +02004169{
4170 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Antonio Quartulli6ae16772012-09-07 13:28:52 +02004171 u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN];
Stanislaw Gruszka68632552012-10-15 14:52:41 +02004172 bool tx = !req->local_state_change;
Johannes Bergde3d43a2013-05-14 09:39:02 +02004173 bool report_frame = false;
Johannes Berg77fdaa12009-07-07 03:45:17 +02004174
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02004175 sdata_info(sdata,
4176 "deauthenticating from %pM by local choice (reason=%d)\n",
4177 req->bssid, req->reason_code);
Johannes Berg0ff71612009-09-26 14:45:41 +02004178
Johannes Berg86552012012-10-29 09:46:31 +01004179 if (ifmgd->auth_data) {
Emmanuel Grumbach8c7d8572012-07-25 01:42:36 +03004180 drv_mgd_prepare_tx(sdata->local, sdata);
Johannes Berg37ad3882012-02-24 13:50:54 +01004181 ieee80211_send_deauth_disassoc(sdata, req->bssid,
4182 IEEE80211_STYPE_DEAUTH,
Stanislaw Gruszka68632552012-10-15 14:52:41 +02004183 req->reason_code, tx,
Johannes Berg37ad3882012-02-24 13:50:54 +01004184 frame_buf);
Johannes Berg86552012012-10-29 09:46:31 +01004185 ieee80211_destroy_auth_data(sdata, false);
Johannes Berg86552012012-10-29 09:46:31 +01004186
Johannes Bergde3d43a2013-05-14 09:39:02 +02004187 report_frame = true;
Johannes Berg86552012012-10-29 09:46:31 +01004188 goto out;
Emmanuel Grumbach8c7d8572012-07-25 01:42:36 +03004189 }
4190
Johannes Berg86552012012-10-29 09:46:31 +01004191 if (ifmgd->associated &&
4192 ether_addr_equal(ifmgd->associated->bssid, req->bssid)) {
4193 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH,
4194 req->reason_code, tx, frame_buf);
Johannes Bergde3d43a2013-05-14 09:39:02 +02004195 report_frame = true;
Johannes Berg86552012012-10-29 09:46:31 +01004196 }
Johannes Berg37ad3882012-02-24 13:50:54 +01004197
Johannes Berg86552012012-10-29 09:46:31 +01004198 out:
Johannes Bergde3d43a2013-05-14 09:39:02 +02004199 if (report_frame)
Johannes Berg6ff57cf2013-05-16 00:55:00 +02004200 cfg80211_tx_mlme_mgmt(sdata->dev, frame_buf,
4201 IEEE80211_DEAUTH_FRAME_LEN);
Johannes Berg86552012012-10-29 09:46:31 +01004202
Johannes Berg77fdaa12009-07-07 03:45:17 +02004203 return 0;
4204}
4205
4206int ieee80211_mgd_disassoc(struct ieee80211_sub_if_data *sdata,
Johannes Berg63c9c5e2012-02-24 13:50:51 +01004207 struct cfg80211_disassoc_request *req)
Johannes Berg77fdaa12009-07-07 03:45:17 +02004208{
4209 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jouni Malinene69e95d2010-03-29 23:29:31 -07004210 u8 bssid[ETH_ALEN];
Antonio Quartulli6ae16772012-09-07 13:28:52 +02004211 u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN];
Johannes Berg77fdaa12009-07-07 03:45:17 +02004212
Johannes Berg8d8b2612009-07-25 11:58:36 +02004213 /*
4214 * cfg80211 should catch this ... but it's racy since
4215 * we can receive a disassoc frame, process it, hand it
4216 * to cfg80211 while that's in a locked section already
4217 * trying to tell us that the user wants to disconnect.
4218 */
Johannes Berg8d61ffa2013-05-10 12:32:47 +02004219 if (ifmgd->associated != req->bss)
Johannes Berg77fdaa12009-07-07 03:45:17 +02004220 return -ENOLINK;
Johannes Berg77fdaa12009-07-07 03:45:17 +02004221
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02004222 sdata_info(sdata,
4223 "disassociating from %pM by local choice (reason=%d)\n",
4224 req->bss->bssid, req->reason_code);
Johannes Berg0ff71612009-09-26 14:45:41 +02004225
Jouni Malinene69e95d2010-03-29 23:29:31 -07004226 memcpy(bssid, req->bss->bssid, ETH_ALEN);
Johannes Berg37ad3882012-02-24 13:50:54 +01004227 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DISASSOC,
4228 req->reason_code, !req->local_state_change,
4229 frame_buf);
Johannes Berg77fdaa12009-07-07 03:45:17 +02004230
Johannes Berg6ff57cf2013-05-16 00:55:00 +02004231 cfg80211_tx_mlme_mgmt(sdata->dev, frame_buf,
4232 IEEE80211_DEAUTH_FRAME_LEN);
Johannes Bergbc83b682009-11-29 12:19:06 +01004233
Johannes Berg77fdaa12009-07-07 03:45:17 +02004234 return 0;
4235}
Jouni Malinen026331c2010-02-15 12:53:10 +02004236
Eliad Pellerafa762f2012-04-23 14:45:15 +03004237void ieee80211_mgd_stop(struct ieee80211_sub_if_data *sdata)
Johannes Berg54e4ffb2012-02-25 21:48:08 +01004238{
4239 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
4240
Ben Greear49921852013-02-20 09:41:09 -08004241 /*
4242 * Make sure some work items will not run after this,
4243 * they will not do anything but might not have been
4244 * cancelled when disconnecting.
4245 */
4246 cancel_work_sync(&ifmgd->monitor_work);
4247 cancel_work_sync(&ifmgd->beacon_connection_loss_work);
4248 cancel_work_sync(&ifmgd->request_smps_work);
4249 cancel_work_sync(&ifmgd->csa_connection_drop_work);
4250 cancel_work_sync(&ifmgd->chswitch_work);
4251
Johannes Berg8d61ffa2013-05-10 12:32:47 +02004252 sdata_lock(sdata);
Johannes Berg959867f2013-06-19 13:05:42 +02004253 if (ifmgd->assoc_data) {
4254 struct cfg80211_bss *bss = ifmgd->assoc_data->bss;
Johannes Berg54e4ffb2012-02-25 21:48:08 +01004255 ieee80211_destroy_assoc_data(sdata, false);
Johannes Berg959867f2013-06-19 13:05:42 +02004256 cfg80211_assoc_timeout(sdata->dev, bss);
4257 }
Johannes Berg54e4ffb2012-02-25 21:48:08 +01004258 if (ifmgd->auth_data)
4259 ieee80211_destroy_auth_data(sdata, false);
4260 del_timer_sync(&ifmgd->timer);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02004261 sdata_unlock(sdata);
Johannes Berg54e4ffb2012-02-25 21:48:08 +01004262}
4263
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02004264void ieee80211_cqm_rssi_notify(struct ieee80211_vif *vif,
4265 enum nl80211_cqm_rssi_threshold_event rssi_event,
4266 gfp_t gfp)
4267{
4268 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
4269
Johannes Bergb5878a22010-04-07 16:48:40 +02004270 trace_api_cqm_rssi_notify(sdata, rssi_event);
4271
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02004272 cfg80211_cqm_rssi_notify(sdata->dev, rssi_event, gfp);
4273}
4274EXPORT_SYMBOL(ieee80211_cqm_rssi_notify);