blob: 45a87ee3f1241f419c389e5b0e8167659692dfd3 [file] [log] [blame]
Jiri Bencf0706e82007-05-05 11:45:53 -07001/*
2 * BSS client mode implementation
Jouni Malinen5394af42009-01-08 13:31:59 +02003 * Copyright 2003-2008, Jouni Malinen <j@w1.fi>
Jiri Bencf0706e82007-05-05 11:45:53 -07004 * Copyright 2004, Instant802 Networks, Inc.
5 * Copyright 2005, Devicescape Software, Inc.
6 * Copyright 2006-2007 Jiri Benc <jbenc@suse.cz>
7 * Copyright 2007, Michael Wu <flamingice@sourmilk.net>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 */
13
Geert Uytterhoeven5b323ed2007-05-08 18:40:27 -070014#include <linux/delay.h>
Jiri Bencf0706e82007-05-05 11:45:53 -070015#include <linux/if_ether.h>
16#include <linux/skbuff.h>
Jiri Bencf0706e82007-05-05 11:45:53 -070017#include <linux/if_arp.h>
Jiri Bencf0706e82007-05-05 11:45:53 -070018#include <linux/etherdevice.h>
Paul Gortmakerd9b93842011-09-18 13:21:27 -040019#include <linux/moduleparam.h>
Johannes Bergd0709a62008-02-25 16:27:46 +010020#include <linux/rtnetlink.h>
Jean Pihete8db0be2011-08-25 15:35:03 +020021#include <linux/pm_qos.h>
Johannes Bergd91f36d2009-04-16 13:17:26 +020022#include <linux/crc32.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090023#include <linux/slab.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040024#include <linux/export.h>
Jiri Bencf0706e82007-05-05 11:45:53 -070025#include <net/mac80211.h>
Johannes Berg472dbc42008-09-11 00:01:49 +020026#include <asm/unaligned.h>
Johannes Berg60f8b392008-09-08 17:44:22 +020027
Jiri Bencf0706e82007-05-05 11:45:53 -070028#include "ieee80211_i.h"
Johannes Berg24487982009-04-23 18:52:52 +020029#include "driver-ops.h"
Johannes Berg2c8dccc2008-04-08 15:14:40 -040030#include "rate.h"
31#include "led.h"
Jiri Bencf0706e82007-05-05 11:45:53 -070032
Johannes Berg1672c0e32013-01-29 15:02:27 +010033#define IEEE80211_AUTH_TIMEOUT (HZ / 5)
34#define IEEE80211_AUTH_TIMEOUT_SHORT (HZ / 10)
35#define IEEE80211_AUTH_MAX_TRIES 3
36#define IEEE80211_AUTH_WAIT_ASSOC (HZ * 5)
37#define IEEE80211_ASSOC_TIMEOUT (HZ / 5)
38#define IEEE80211_ASSOC_TIMEOUT_SHORT (HZ / 10)
39#define IEEE80211_ASSOC_MAX_TRIES 3
Johannes Berg66e67e42012-01-20 13:55:27 +010040
Ben Greear180205b2011-02-04 15:30:24 -080041static int max_nullfunc_tries = 2;
42module_param(max_nullfunc_tries, int, 0644);
43MODULE_PARM_DESC(max_nullfunc_tries,
44 "Maximum nullfunc tx tries before disconnecting (reason 4).");
45
46static int max_probe_tries = 5;
47module_param(max_probe_tries, int, 0644);
48MODULE_PARM_DESC(max_probe_tries,
49 "Maximum probe tries before disconnecting (reason 4).");
Johannes Bergb291ba12009-07-10 15:29:03 +020050
51/*
Felix Fietkau7ccc8bd2010-11-19 22:55:38 +010052 * Beacon loss timeout is calculated as N frames times the
53 * advertised beacon interval. This may need to be somewhat
54 * higher than what hardware might detect to account for
55 * delays in the host processing frames. But since we also
56 * probe on beacon miss before declaring the connection lost
57 * default to what we want.
Johannes Bergb291ba12009-07-10 15:29:03 +020058 */
Ben Greear59c1ec22013-03-19 14:19:56 -070059static int beacon_loss_count = 7;
60module_param(beacon_loss_count, int, 0644);
61MODULE_PARM_DESC(beacon_loss_count,
62 "Number of beacon intervals before we decide beacon was lost.");
Felix Fietkau7ccc8bd2010-11-19 22:55:38 +010063
Johannes Bergb291ba12009-07-10 15:29:03 +020064/*
65 * Time the connection can be idle before we probe
66 * it to see if we can still talk to the AP.
67 */
Maxim Levitskyd1c50912009-07-31 18:54:23 +030068#define IEEE80211_CONNECTION_IDLE_TIME (30 * HZ)
Johannes Bergb291ba12009-07-10 15:29:03 +020069/*
70 * Time we wait for a probe response after sending
71 * a probe request because of beacon loss or for
72 * checking the connection still works.
73 */
Ben Greear180205b2011-02-04 15:30:24 -080074static int probe_wait_ms = 500;
75module_param(probe_wait_ms, int, 0644);
76MODULE_PARM_DESC(probe_wait_ms,
77 "Maximum time(ms) to wait for probe response"
78 " before disconnecting (reason 4).");
Jiri Bencf0706e82007-05-05 11:45:53 -070079
Jouni Malinen17e4ec12010-03-29 23:28:30 -070080/*
81 * Weight given to the latest Beacon frame when calculating average signal
82 * strength for Beacon frames received in the current BSS. This must be
83 * between 1 and 15.
84 */
85#define IEEE80211_SIGNAL_AVE_WEIGHT 3
86
Jouni Malinen391a2002010-08-27 22:22:00 +030087/*
88 * How many Beacon frames need to have been used in average signal strength
89 * before starting to indicate signal change events.
90 */
91#define IEEE80211_SIGNAL_AVE_MIN_COUNT 4
92
Johannes Berg77fdaa12009-07-07 03:45:17 +020093/*
Johannes Bergca386f32009-07-10 02:39:48 +020094 * We can have multiple work items (and connection probing)
95 * scheduling this timer, but we need to take care to only
96 * reschedule it when it should fire _earlier_ than it was
97 * asked for before, or if it's not pending right now. This
98 * function ensures that. Note that it then is required to
99 * run this function for all timeouts after the first one
100 * has happened -- the work that runs from this timer will
101 * do that.
102 */
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200103static void run_again(struct ieee80211_sub_if_data *sdata,
104 unsigned long timeout)
Johannes Bergca386f32009-07-10 02:39:48 +0200105{
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200106 sdata_assert_lock(sdata);
Johannes Bergca386f32009-07-10 02:39:48 +0200107
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200108 if (!timer_pending(&sdata->u.mgd.timer) ||
109 time_before(timeout, sdata->u.mgd.timer.expires))
110 mod_timer(&sdata->u.mgd.timer, timeout);
Johannes Bergca386f32009-07-10 02:39:48 +0200111}
112
Luis R. Rodriguezd3a910a2010-09-16 15:12:32 -0400113void ieee80211_sta_reset_beacon_monitor(struct ieee80211_sub_if_data *sdata)
Johannes Bergb291ba12009-07-10 15:29:03 +0200114{
Johannes Bergc1288b12012-01-19 09:29:57 +0100115 if (sdata->vif.driver_flags & IEEE80211_VIF_BEACON_FILTER)
Johannes Bergb291ba12009-07-10 15:29:03 +0200116 return;
117
Johannes Berg7eeff742012-07-18 10:27:27 +0200118 if (sdata->local->hw.flags & IEEE80211_HW_CONNECTION_MONITOR)
119 return;
120
Johannes Bergb291ba12009-07-10 15:29:03 +0200121 mod_timer(&sdata->u.mgd.bcn_mon_timer,
Felix Fietkau7ccc8bd2010-11-19 22:55:38 +0100122 round_jiffies_up(jiffies + sdata->u.mgd.beacon_timeout));
Johannes Bergb291ba12009-07-10 15:29:03 +0200123}
124
Luis R. Rodriguezbe099e82010-09-16 15:12:29 -0400125void ieee80211_sta_reset_conn_monitor(struct ieee80211_sub_if_data *sdata)
126{
Luis R. Rodriguez0c699c32010-09-16 15:12:30 -0400127 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
128
Stanislaw Gruszka86281722011-02-25 14:46:02 +0100129 if (unlikely(!sdata->u.mgd.associated))
130 return;
131
Luis R. Rodriguezbe099e82010-09-16 15:12:29 -0400132 if (sdata->local->hw.flags & IEEE80211_HW_CONNECTION_MONITOR)
133 return;
134
135 mod_timer(&sdata->u.mgd.conn_mon_timer,
136 round_jiffies_up(jiffies + IEEE80211_CONNECTION_IDLE_TIME));
Luis R. Rodriguez0c699c32010-09-16 15:12:30 -0400137
138 ifmgd->probe_send_count = 0;
Luis R. Rodriguezbe099e82010-09-16 15:12:29 -0400139}
140
Johannes Berg5484e232008-09-08 17:44:27 +0200141static int ecw2cw(int ecw)
Johannes Berg60f8b392008-09-08 17:44:22 +0200142{
Johannes Berg5484e232008-09-08 17:44:27 +0200143 return (1 << ecw) - 1;
Johannes Berg60f8b392008-09-08 17:44:22 +0200144}
145
Johannes Berg6565ec92013-02-08 14:52:32 +0100146static u32 chandef_downgrade(struct cfg80211_chan_def *c)
147{
148 u32 ret;
149 int tmp;
150
151 switch (c->width) {
152 case NL80211_CHAN_WIDTH_20:
153 c->width = NL80211_CHAN_WIDTH_20_NOHT;
154 ret = IEEE80211_STA_DISABLE_HT | IEEE80211_STA_DISABLE_VHT;
155 break;
156 case NL80211_CHAN_WIDTH_40:
157 c->width = NL80211_CHAN_WIDTH_20;
158 c->center_freq1 = c->chan->center_freq;
159 ret = IEEE80211_STA_DISABLE_40MHZ |
160 IEEE80211_STA_DISABLE_VHT;
161 break;
162 case NL80211_CHAN_WIDTH_80:
163 tmp = (30 + c->chan->center_freq - c->center_freq1)/20;
164 /* n_P40 */
165 tmp /= 2;
166 /* freq_P40 */
167 c->center_freq1 = c->center_freq1 - 20 + 40 * tmp;
168 c->width = NL80211_CHAN_WIDTH_40;
169 ret = IEEE80211_STA_DISABLE_VHT;
170 break;
171 case NL80211_CHAN_WIDTH_80P80:
172 c->center_freq2 = 0;
173 c->width = NL80211_CHAN_WIDTH_80;
174 ret = IEEE80211_STA_DISABLE_80P80MHZ |
175 IEEE80211_STA_DISABLE_160MHZ;
176 break;
177 case NL80211_CHAN_WIDTH_160:
178 /* n_P20 */
179 tmp = (70 + c->chan->center_freq - c->center_freq1)/20;
180 /* n_P80 */
181 tmp /= 4;
182 c->center_freq1 = c->center_freq1 - 40 + 80 * tmp;
183 c->width = NL80211_CHAN_WIDTH_80;
184 ret = IEEE80211_STA_DISABLE_80P80MHZ |
185 IEEE80211_STA_DISABLE_160MHZ;
186 break;
187 default:
188 case NL80211_CHAN_WIDTH_20_NOHT:
189 WARN_ON_ONCE(1);
190 c->width = NL80211_CHAN_WIDTH_20_NOHT;
191 ret = IEEE80211_STA_DISABLE_HT | IEEE80211_STA_DISABLE_VHT;
192 break;
Simon Wunderlich0418a442013-05-16 13:00:31 +0200193 case NL80211_CHAN_WIDTH_5:
194 case NL80211_CHAN_WIDTH_10:
195 WARN_ON_ONCE(1);
196 /* keep c->width */
197 ret = IEEE80211_STA_DISABLE_HT | IEEE80211_STA_DISABLE_VHT;
198 break;
Johannes Berg6565ec92013-02-08 14:52:32 +0100199 }
200
201 WARN_ON_ONCE(!cfg80211_chandef_valid(c));
202
203 return ret;
204}
205
206static u32
207ieee80211_determine_chantype(struct ieee80211_sub_if_data *sdata,
208 struct ieee80211_supported_band *sband,
209 struct ieee80211_channel *channel,
210 const struct ieee80211_ht_operation *ht_oper,
211 const struct ieee80211_vht_operation *vht_oper,
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100212 struct cfg80211_chan_def *chandef, bool verbose)
Johannes Berg6565ec92013-02-08 14:52:32 +0100213{
214 struct cfg80211_chan_def vht_chandef;
215 u32 ht_cfreq, ret;
216
217 chandef->chan = channel;
218 chandef->width = NL80211_CHAN_WIDTH_20_NOHT;
219 chandef->center_freq1 = channel->center_freq;
220 chandef->center_freq2 = 0;
221
222 if (!ht_oper || !sband->ht_cap.ht_supported) {
223 ret = IEEE80211_STA_DISABLE_HT | IEEE80211_STA_DISABLE_VHT;
224 goto out;
225 }
226
227 chandef->width = NL80211_CHAN_WIDTH_20;
228
229 ht_cfreq = ieee80211_channel_to_frequency(ht_oper->primary_chan,
230 channel->band);
231 /* check that channel matches the right operating channel */
232 if (channel->center_freq != ht_cfreq) {
233 /*
234 * It's possible that some APs are confused here;
235 * Netgear WNDR3700 sometimes reports 4 higher than
236 * the actual channel in association responses, but
237 * since we look at probe response/beacon data here
238 * it should be OK.
239 */
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100240 if (verbose)
241 sdata_info(sdata,
242 "Wrong control channel: center-freq: %d ht-cfreq: %d ht->primary_chan: %d band: %d - Disabling HT\n",
243 channel->center_freq, ht_cfreq,
244 ht_oper->primary_chan, channel->band);
Johannes Berg6565ec92013-02-08 14:52:32 +0100245 ret = IEEE80211_STA_DISABLE_HT | IEEE80211_STA_DISABLE_VHT;
246 goto out;
247 }
248
249 /* check 40 MHz support, if we have it */
250 if (sband->ht_cap.cap & IEEE80211_HT_CAP_SUP_WIDTH_20_40) {
251 switch (ht_oper->ht_param & IEEE80211_HT_PARAM_CHA_SEC_OFFSET) {
252 case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
253 chandef->width = NL80211_CHAN_WIDTH_40;
254 chandef->center_freq1 += 10;
255 break;
256 case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
257 chandef->width = NL80211_CHAN_WIDTH_40;
258 chandef->center_freq1 -= 10;
259 break;
260 }
261 } else {
262 /* 40 MHz (and 80 MHz) must be supported for VHT */
263 ret = IEEE80211_STA_DISABLE_VHT;
Johannes Berg85220d72013-03-25 18:29:27 +0100264 /* also mark 40 MHz disabled */
265 ret |= IEEE80211_STA_DISABLE_40MHZ;
Johannes Berg6565ec92013-02-08 14:52:32 +0100266 goto out;
267 }
268
269 if (!vht_oper || !sband->vht_cap.vht_supported) {
270 ret = IEEE80211_STA_DISABLE_VHT;
271 goto out;
272 }
273
274 vht_chandef.chan = channel;
275 vht_chandef.center_freq1 =
276 ieee80211_channel_to_frequency(vht_oper->center_freq_seg1_idx,
277 channel->band);
278 vht_chandef.center_freq2 = 0;
279
Johannes Berg6565ec92013-02-08 14:52:32 +0100280 switch (vht_oper->chan_width) {
281 case IEEE80211_VHT_CHANWIDTH_USE_HT:
282 vht_chandef.width = chandef->width;
283 break;
284 case IEEE80211_VHT_CHANWIDTH_80MHZ:
285 vht_chandef.width = NL80211_CHAN_WIDTH_80;
286 break;
287 case IEEE80211_VHT_CHANWIDTH_160MHZ:
288 vht_chandef.width = NL80211_CHAN_WIDTH_160;
289 break;
290 case IEEE80211_VHT_CHANWIDTH_80P80MHZ:
291 vht_chandef.width = NL80211_CHAN_WIDTH_80P80;
Johannes Berg6553bf042013-03-28 10:26:17 +0100292 vht_chandef.center_freq2 =
293 ieee80211_channel_to_frequency(
294 vht_oper->center_freq_seg2_idx,
295 channel->band);
Johannes Berg6565ec92013-02-08 14:52:32 +0100296 break;
297 default:
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100298 if (verbose)
299 sdata_info(sdata,
300 "AP VHT operation IE has invalid channel width (%d), disable VHT\n",
301 vht_oper->chan_width);
Johannes Berg6565ec92013-02-08 14:52:32 +0100302 ret = IEEE80211_STA_DISABLE_VHT;
303 goto out;
304 }
305
306 if (!cfg80211_chandef_valid(&vht_chandef)) {
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100307 if (verbose)
308 sdata_info(sdata,
309 "AP VHT information is invalid, disable VHT\n");
Johannes Berg6565ec92013-02-08 14:52:32 +0100310 ret = IEEE80211_STA_DISABLE_VHT;
311 goto out;
312 }
313
314 if (cfg80211_chandef_identical(chandef, &vht_chandef)) {
315 ret = 0;
316 goto out;
317 }
318
319 if (!cfg80211_chandef_compatible(chandef, &vht_chandef)) {
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100320 if (verbose)
321 sdata_info(sdata,
322 "AP VHT information doesn't match HT, disable VHT\n");
Johannes Berg6565ec92013-02-08 14:52:32 +0100323 ret = IEEE80211_STA_DISABLE_VHT;
324 goto out;
325 }
326
327 *chandef = vht_chandef;
328
329 ret = 0;
330
331out:
Johannes Berg586e01e2013-02-14 12:13:53 +0100332 /* don't print the message below for VHT mismatch if VHT is disabled */
333 if (ret & IEEE80211_STA_DISABLE_VHT)
334 vht_chandef = *chandef;
335
Johannes Berg6565ec92013-02-08 14:52:32 +0100336 while (!cfg80211_chandef_usable(sdata->local->hw.wiphy, chandef,
337 IEEE80211_CHAN_DISABLED)) {
338 if (WARN_ON(chandef->width == NL80211_CHAN_WIDTH_20_NOHT)) {
339 ret = IEEE80211_STA_DISABLE_HT |
340 IEEE80211_STA_DISABLE_VHT;
341 goto out;
342 }
343
344 ret |= chandef_downgrade(chandef);
345 }
346
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100347 if (chandef->width != vht_chandef.width && verbose)
Johannes Berg6565ec92013-02-08 14:52:32 +0100348 sdata_info(sdata,
349 "capabilities/regulatory prevented using AP HT/VHT configuration, downgraded\n");
350
351 WARN_ON_ONCE(!cfg80211_chandef_valid(chandef));
352 return ret;
353}
354
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100355static int ieee80211_config_bw(struct ieee80211_sub_if_data *sdata,
356 struct sta_info *sta,
357 const struct ieee80211_ht_operation *ht_oper,
358 const struct ieee80211_vht_operation *vht_oper,
359 const u8 *bssid, u32 *changed)
Johannes Bergd5522e02009-03-30 13:23:35 +0200360{
361 struct ieee80211_local *local = sdata->local;
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100362 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Bergd5522e02009-03-30 13:23:35 +0200363 struct ieee80211_supported_band *sband;
Johannes Berg55de9082012-07-26 17:24:39 +0200364 struct ieee80211_channel *chan;
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100365 struct cfg80211_chan_def chandef;
Johannes Berg9ed6bcc2009-05-08 20:47:39 +0200366 u16 ht_opmode;
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100367 u32 flags;
368 enum ieee80211_sta_rx_bandwidth new_sta_bw;
369 int ret;
370
371 /* if HT was/is disabled, don't track any bandwidth changes */
372 if (ifmgd->flags & IEEE80211_STA_DISABLE_HT || !ht_oper)
373 return 0;
374
375 /* don't check VHT if we associated as non-VHT station */
376 if (ifmgd->flags & IEEE80211_STA_DISABLE_VHT)
377 vht_oper = NULL;
Johannes Bergd5522e02009-03-30 13:23:35 +0200378
Johannes Berg11289582013-02-07 17:36:12 +0100379 if (WARN_ON_ONCE(!sta))
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100380 return -EINVAL;
Johannes Berg11289582013-02-07 17:36:12 +0100381
Johannes Bergf2d93302013-02-08 13:15:55 +0100382 chan = sdata->vif.bss_conf.chandef.chan;
Johannes Berg55de9082012-07-26 17:24:39 +0200383 sband = local->hw.wiphy->bands[chan->band];
Johannes Berg0aaffa92010-05-05 15:28:27 +0200384
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100385 /* calculate new channel (type) based on HT/VHT operation IEs */
386 flags = ieee80211_determine_chantype(sdata, sband, chan, ht_oper,
387 vht_oper, &chandef, false);
388
389 /*
390 * Downgrade the new channel if we associated with restricted
391 * capabilities. For example, if we associated as a 20 MHz STA
392 * to a 40 MHz AP (due to regulatory, capabilities or config
393 * reasons) then switching to a 40 MHz channel now won't do us
394 * any good -- we couldn't use it with the AP.
395 */
396 if (ifmgd->flags & IEEE80211_STA_DISABLE_80P80MHZ &&
397 chandef.width == NL80211_CHAN_WIDTH_80P80)
398 flags |= chandef_downgrade(&chandef);
399 if (ifmgd->flags & IEEE80211_STA_DISABLE_160MHZ &&
400 chandef.width == NL80211_CHAN_WIDTH_160)
401 flags |= chandef_downgrade(&chandef);
402 if (ifmgd->flags & IEEE80211_STA_DISABLE_40MHZ &&
403 chandef.width > NL80211_CHAN_WIDTH_20)
404 flags |= chandef_downgrade(&chandef);
405
406 if (cfg80211_chandef_identical(&chandef, &sdata->vif.bss_conf.chandef))
407 return 0;
408
409 sdata_info(sdata,
410 "AP %pM changed bandwidth, new config is %d MHz, width %d (%d/%d MHz)\n",
411 ifmgd->bssid, chandef.chan->center_freq, chandef.width,
412 chandef.center_freq1, chandef.center_freq2);
413
414 if (flags != (ifmgd->flags & (IEEE80211_STA_DISABLE_HT |
415 IEEE80211_STA_DISABLE_VHT |
416 IEEE80211_STA_DISABLE_40MHZ |
417 IEEE80211_STA_DISABLE_80P80MHZ |
418 IEEE80211_STA_DISABLE_160MHZ)) ||
419 !cfg80211_chandef_valid(&chandef)) {
420 sdata_info(sdata,
421 "AP %pM changed bandwidth in a way we can't support - disconnect\n",
422 ifmgd->bssid);
423 return -EINVAL;
Johannes Berg64f68e52012-03-28 10:58:37 +0200424 }
Johannes Bergd5522e02009-03-30 13:23:35 +0200425
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100426 switch (chandef.width) {
427 case NL80211_CHAN_WIDTH_20_NOHT:
428 case NL80211_CHAN_WIDTH_20:
429 new_sta_bw = IEEE80211_STA_RX_BW_20;
430 break;
431 case NL80211_CHAN_WIDTH_40:
432 new_sta_bw = IEEE80211_STA_RX_BW_40;
433 break;
434 case NL80211_CHAN_WIDTH_80:
435 new_sta_bw = IEEE80211_STA_RX_BW_80;
436 break;
437 case NL80211_CHAN_WIDTH_80P80:
438 case NL80211_CHAN_WIDTH_160:
439 new_sta_bw = IEEE80211_STA_RX_BW_160;
440 break;
441 default:
442 return -EINVAL;
443 }
Johannes Bergd5522e02009-03-30 13:23:35 +0200444
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100445 if (new_sta_bw > sta->cur_max_bandwidth)
446 new_sta_bw = sta->cur_max_bandwidth;
Johannes Berg64f68e52012-03-28 10:58:37 +0200447
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100448 if (new_sta_bw < sta->sta.bandwidth) {
449 sta->sta.bandwidth = new_sta_bw;
450 rate_control_rate_update(local, sband, sta,
451 IEEE80211_RC_BW_CHANGED);
452 }
Rajkumar Manoharan7cc44ed2011-09-16 15:32:34 +0530453
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100454 ret = ieee80211_vif_change_bandwidth(sdata, &chandef, changed);
455 if (ret) {
456 sdata_info(sdata,
457 "AP %pM changed bandwidth to incompatible one - disconnect\n",
458 ifmgd->bssid);
459 return ret;
460 }
461
462 if (new_sta_bw > sta->sta.bandwidth) {
463 sta->sta.bandwidth = new_sta_bw;
464 rate_control_rate_update(local, sband, sta,
465 IEEE80211_RC_BW_CHANGED);
Johannes Berg0aaffa92010-05-05 15:28:27 +0200466 }
Johannes Bergd5522e02009-03-30 13:23:35 +0200467
Johannes Berg074d46d2012-03-15 19:45:16 +0100468 ht_opmode = le16_to_cpu(ht_oper->operation_mode);
Johannes Bergd5522e02009-03-30 13:23:35 +0200469
470 /* if bss configuration changed store the new one */
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100471 if (sdata->vif.bss_conf.ht_operation_mode != ht_opmode) {
472 *changed |= BSS_CHANGED_HT;
Johannes Berg9ed6bcc2009-05-08 20:47:39 +0200473 sdata->vif.bss_conf.ht_operation_mode = ht_opmode;
Johannes Bergd5522e02009-03-30 13:23:35 +0200474 }
475
Johannes Berg30eb1dc2013-02-08 15:12:14 +0100476 return 0;
Johannes Bergd5522e02009-03-30 13:23:35 +0200477}
478
Johannes Berg9c6bd792008-09-11 00:01:52 +0200479/* frame sending functions */
480
Johannes Berg66e67e42012-01-20 13:55:27 +0100481static void ieee80211_add_ht_ie(struct ieee80211_sub_if_data *sdata,
Johannes Berg9dde6422012-05-16 23:43:19 +0200482 struct sk_buff *skb, u8 ap_ht_param,
Johannes Berg66e67e42012-01-20 13:55:27 +0100483 struct ieee80211_supported_band *sband,
484 struct ieee80211_channel *channel,
485 enum ieee80211_smps_mode smps)
486{
Johannes Berg66e67e42012-01-20 13:55:27 +0100487 u8 *pos;
488 u32 flags = channel->flags;
489 u16 cap;
490 struct ieee80211_sta_ht_cap ht_cap;
491
492 BUILD_BUG_ON(sizeof(ht_cap) != sizeof(sband->ht_cap));
493
Johannes Berg66e67e42012-01-20 13:55:27 +0100494 memcpy(&ht_cap, &sband->ht_cap, sizeof(ht_cap));
495 ieee80211_apply_htcap_overrides(sdata, &ht_cap);
496
Johannes Berg66e67e42012-01-20 13:55:27 +0100497 /* determine capability flags */
498 cap = ht_cap.cap;
499
Johannes Berg9dde6422012-05-16 23:43:19 +0200500 switch (ap_ht_param & IEEE80211_HT_PARAM_CHA_SEC_OFFSET) {
Johannes Berg66e67e42012-01-20 13:55:27 +0100501 case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
502 if (flags & IEEE80211_CHAN_NO_HT40PLUS) {
503 cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
504 cap &= ~IEEE80211_HT_CAP_SGI_40;
505 }
506 break;
507 case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
508 if (flags & IEEE80211_CHAN_NO_HT40MINUS) {
509 cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
510 cap &= ~IEEE80211_HT_CAP_SGI_40;
511 }
512 break;
513 }
514
Johannes Berg24398e32012-03-28 10:58:36 +0200515 /*
516 * If 40 MHz was disabled associate as though we weren't
517 * capable of 40 MHz -- some broken APs will never fall
518 * back to trying to transmit in 20 MHz.
519 */
520 if (sdata->u.mgd.flags & IEEE80211_STA_DISABLE_40MHZ) {
521 cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
522 cap &= ~IEEE80211_HT_CAP_SGI_40;
523 }
524
Johannes Berg66e67e42012-01-20 13:55:27 +0100525 /* set SM PS mode properly */
526 cap &= ~IEEE80211_HT_CAP_SM_PS;
527 switch (smps) {
528 case IEEE80211_SMPS_AUTOMATIC:
529 case IEEE80211_SMPS_NUM_MODES:
530 WARN_ON(1);
531 case IEEE80211_SMPS_OFF:
532 cap |= WLAN_HT_CAP_SM_PS_DISABLED <<
533 IEEE80211_HT_CAP_SM_PS_SHIFT;
534 break;
535 case IEEE80211_SMPS_STATIC:
536 cap |= WLAN_HT_CAP_SM_PS_STATIC <<
537 IEEE80211_HT_CAP_SM_PS_SHIFT;
538 break;
539 case IEEE80211_SMPS_DYNAMIC:
540 cap |= WLAN_HT_CAP_SM_PS_DYNAMIC <<
541 IEEE80211_HT_CAP_SM_PS_SHIFT;
542 break;
543 }
544
545 /* reserve and fill IE */
546 pos = skb_put(skb, sizeof(struct ieee80211_ht_cap) + 2);
547 ieee80211_ie_build_ht_cap(pos, &ht_cap, cap);
548}
549
Mahesh Palivelad545dab2012-07-24 03:33:10 +0000550static void ieee80211_add_vht_ie(struct ieee80211_sub_if_data *sdata,
551 struct sk_buff *skb,
Johannes Bergb08fbbd2012-12-07 13:06:48 +0100552 struct ieee80211_supported_band *sband,
553 struct ieee80211_vht_cap *ap_vht_cap)
Mahesh Palivelad545dab2012-07-24 03:33:10 +0000554{
555 u8 *pos;
556 u32 cap;
557 struct ieee80211_sta_vht_cap vht_cap;
558
559 BUILD_BUG_ON(sizeof(vht_cap) != sizeof(sband->vht_cap));
560
561 memcpy(&vht_cap, &sband->vht_cap, sizeof(vht_cap));
Johannes Bergdd5ecfe2013-02-21 17:40:19 +0100562 ieee80211_apply_vhtcap_overrides(sdata, &vht_cap);
Mahesh Palivelad545dab2012-07-24 03:33:10 +0000563
564 /* determine capability flags */
565 cap = vht_cap.cap;
566
Johannes Bergf2d9d272012-11-22 14:11:39 +0100567 if (sdata->u.mgd.flags & IEEE80211_STA_DISABLE_80P80MHZ) {
568 cap &= ~IEEE80211_VHT_CAP_SUPP_CHAN_WIDTH_160_80PLUS80MHZ;
569 cap |= IEEE80211_VHT_CAP_SUPP_CHAN_WIDTH_160MHZ;
570 }
571
572 if (sdata->u.mgd.flags & IEEE80211_STA_DISABLE_160MHZ) {
573 cap &= ~IEEE80211_VHT_CAP_SHORT_GI_160;
574 cap &= ~IEEE80211_VHT_CAP_SUPP_CHAN_WIDTH_160MHZ;
575 }
576
Johannes Bergb08fbbd2012-12-07 13:06:48 +0100577 /*
578 * Some APs apparently get confused if our capabilities are better
579 * than theirs, so restrict what we advertise in the assoc request.
580 */
581 if (!(ap_vht_cap->vht_cap_info &
582 cpu_to_le32(IEEE80211_VHT_CAP_SU_BEAMFORMER_CAPABLE)))
583 cap &= ~IEEE80211_VHT_CAP_SU_BEAMFORMEE_CAPABLE;
584
Mahesh Palivelad545dab2012-07-24 03:33:10 +0000585 /* reserve and fill IE */
Mahesh Palivelad4950282012-10-10 11:25:40 +0000586 pos = skb_put(skb, sizeof(struct ieee80211_vht_cap) + 2);
Mahesh Palivelad545dab2012-07-24 03:33:10 +0000587 ieee80211_ie_build_vht_cap(pos, &vht_cap, cap);
588}
589
Johannes Berg66e67e42012-01-20 13:55:27 +0100590static void ieee80211_send_assoc(struct ieee80211_sub_if_data *sdata)
591{
592 struct ieee80211_local *local = sdata->local;
593 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
594 struct ieee80211_mgd_assoc_data *assoc_data = ifmgd->assoc_data;
595 struct sk_buff *skb;
596 struct ieee80211_mgmt *mgmt;
597 u8 *pos, qos_info;
598 size_t offset = 0, noffset;
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200599 int i, count, rates_len, supp_rates_len, shift;
Johannes Berg66e67e42012-01-20 13:55:27 +0100600 u16 capab;
601 struct ieee80211_supported_band *sband;
Johannes Berg55de9082012-07-26 17:24:39 +0200602 struct ieee80211_chanctx_conf *chanctx_conf;
603 struct ieee80211_channel *chan;
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200604 u32 rate_flags, rates = 0;
Johannes Berg66e67e42012-01-20 13:55:27 +0100605
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200606 sdata_assert_lock(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +0100607
Johannes Berg55de9082012-07-26 17:24:39 +0200608 rcu_read_lock();
609 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
610 if (WARN_ON(!chanctx_conf)) {
611 rcu_read_unlock();
612 return;
613 }
Johannes Berg4bf88532012-11-09 11:39:59 +0100614 chan = chanctx_conf->def.chan;
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200615 rate_flags = ieee80211_chandef_rate_flags(&chanctx_conf->def);
Johannes Berg55de9082012-07-26 17:24:39 +0200616 rcu_read_unlock();
617 sband = local->hw.wiphy->bands[chan->band];
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200618 shift = ieee80211_vif_get_shift(&sdata->vif);
Johannes Berg66e67e42012-01-20 13:55:27 +0100619
620 if (assoc_data->supp_rates_len) {
621 /*
622 * Get all rates supported by the device and the AP as
623 * some APs don't like getting a superset of their rates
624 * in the association request (e.g. D-Link DAP 1353 in
625 * b-only mode)...
626 */
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200627 rates_len = ieee80211_parse_bitrates(&chanctx_conf->def, sband,
628 assoc_data->supp_rates,
629 assoc_data->supp_rates_len,
630 &rates);
Johannes Berg66e67e42012-01-20 13:55:27 +0100631 } else {
632 /*
633 * In case AP not provide any supported rates information
634 * before association, we send information element(s) with
635 * all rates that we support.
636 */
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200637 rates_len = 0;
638 for (i = 0; i < sband->n_bitrates; i++) {
639 if ((rate_flags & sband->bitrates[i].flags)
640 != rate_flags)
641 continue;
642 rates |= BIT(i);
643 rates_len++;
644 }
Johannes Berg66e67e42012-01-20 13:55:27 +0100645 }
646
647 skb = alloc_skb(local->hw.extra_tx_headroom +
648 sizeof(*mgmt) + /* bit too much but doesn't matter */
649 2 + assoc_data->ssid_len + /* SSID */
650 4 + rates_len + /* (extended) rates */
651 4 + /* power capability */
652 2 + 2 * sband->n_channels + /* supported channels */
653 2 + sizeof(struct ieee80211_ht_cap) + /* HT */
Mahesh Palivelad4950282012-10-10 11:25:40 +0000654 2 + sizeof(struct ieee80211_vht_cap) + /* VHT */
Johannes Berg66e67e42012-01-20 13:55:27 +0100655 assoc_data->ie_len + /* extra IEs */
656 9, /* WMM */
657 GFP_KERNEL);
658 if (!skb)
659 return;
660
661 skb_reserve(skb, local->hw.extra_tx_headroom);
662
663 capab = WLAN_CAPABILITY_ESS;
664
665 if (sband->band == IEEE80211_BAND_2GHZ) {
666 if (!(local->hw.flags & IEEE80211_HW_2GHZ_SHORT_SLOT_INCAPABLE))
667 capab |= WLAN_CAPABILITY_SHORT_SLOT_TIME;
668 if (!(local->hw.flags & IEEE80211_HW_2GHZ_SHORT_PREAMBLE_INCAPABLE))
669 capab |= WLAN_CAPABILITY_SHORT_PREAMBLE;
670 }
671
672 if (assoc_data->capability & WLAN_CAPABILITY_PRIVACY)
673 capab |= WLAN_CAPABILITY_PRIVACY;
674
675 if ((assoc_data->capability & WLAN_CAPABILITY_SPECTRUM_MGMT) &&
676 (local->hw.flags & IEEE80211_HW_SPECTRUM_MGMT))
677 capab |= WLAN_CAPABILITY_SPECTRUM_MGMT;
678
679 mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24);
680 memset(mgmt, 0, 24);
681 memcpy(mgmt->da, assoc_data->bss->bssid, ETH_ALEN);
682 memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN);
683 memcpy(mgmt->bssid, assoc_data->bss->bssid, ETH_ALEN);
684
685 if (!is_zero_ether_addr(assoc_data->prev_bssid)) {
686 skb_put(skb, 10);
687 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
688 IEEE80211_STYPE_REASSOC_REQ);
689 mgmt->u.reassoc_req.capab_info = cpu_to_le16(capab);
690 mgmt->u.reassoc_req.listen_interval =
691 cpu_to_le16(local->hw.conf.listen_interval);
692 memcpy(mgmt->u.reassoc_req.current_ap, assoc_data->prev_bssid,
693 ETH_ALEN);
694 } else {
695 skb_put(skb, 4);
696 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
697 IEEE80211_STYPE_ASSOC_REQ);
698 mgmt->u.assoc_req.capab_info = cpu_to_le16(capab);
699 mgmt->u.assoc_req.listen_interval =
700 cpu_to_le16(local->hw.conf.listen_interval);
701 }
702
703 /* SSID */
704 pos = skb_put(skb, 2 + assoc_data->ssid_len);
705 *pos++ = WLAN_EID_SSID;
706 *pos++ = assoc_data->ssid_len;
707 memcpy(pos, assoc_data->ssid, assoc_data->ssid_len);
708
709 /* add all rates which were marked to be used above */
710 supp_rates_len = rates_len;
711 if (supp_rates_len > 8)
712 supp_rates_len = 8;
713
714 pos = skb_put(skb, supp_rates_len + 2);
715 *pos++ = WLAN_EID_SUPP_RATES;
716 *pos++ = supp_rates_len;
717
718 count = 0;
719 for (i = 0; i < sband->n_bitrates; i++) {
720 if (BIT(i) & rates) {
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200721 int rate = DIV_ROUND_UP(sband->bitrates[i].bitrate,
722 5 * (1 << shift));
723 *pos++ = (u8) rate;
Johannes Berg66e67e42012-01-20 13:55:27 +0100724 if (++count == 8)
725 break;
726 }
727 }
728
729 if (rates_len > count) {
730 pos = skb_put(skb, rates_len - count + 2);
731 *pos++ = WLAN_EID_EXT_SUPP_RATES;
732 *pos++ = rates_len - count;
733
734 for (i++; i < sband->n_bitrates; i++) {
735 if (BIT(i) & rates) {
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200736 int rate;
737 rate = DIV_ROUND_UP(sband->bitrates[i].bitrate,
738 5 * (1 << shift));
739 *pos++ = (u8) rate;
Johannes Berg66e67e42012-01-20 13:55:27 +0100740 }
741 }
742 }
743
744 if (capab & WLAN_CAPABILITY_SPECTRUM_MGMT) {
745 /* 1. power capabilities */
746 pos = skb_put(skb, 4);
747 *pos++ = WLAN_EID_PWR_CAPABILITY;
748 *pos++ = 2;
749 *pos++ = 0; /* min tx power */
Simon Wunderlich0430c882013-07-08 16:55:55 +0200750 /* max tx power */
751 *pos++ = ieee80211_chandef_max_power(&chanctx_conf->def);
Johannes Berg66e67e42012-01-20 13:55:27 +0100752
753 /* 2. supported channels */
754 /* TODO: get this in reg domain format */
755 pos = skb_put(skb, 2 * sband->n_channels + 2);
756 *pos++ = WLAN_EID_SUPPORTED_CHANNELS;
757 *pos++ = 2 * sband->n_channels;
758 for (i = 0; i < sband->n_channels; i++) {
759 *pos++ = ieee80211_frequency_to_channel(
760 sband->channels[i].center_freq);
761 *pos++ = 1; /* one channel in the subband*/
762 }
763 }
764
765 /* if present, add any custom IEs that go before HT */
766 if (assoc_data->ie_len && assoc_data->ie) {
767 static const u8 before_ht[] = {
768 WLAN_EID_SSID,
769 WLAN_EID_SUPP_RATES,
770 WLAN_EID_EXT_SUPP_RATES,
771 WLAN_EID_PWR_CAPABILITY,
772 WLAN_EID_SUPPORTED_CHANNELS,
773 WLAN_EID_RSN,
774 WLAN_EID_QOS_CAPA,
775 WLAN_EID_RRM_ENABLED_CAPABILITIES,
776 WLAN_EID_MOBILITY_DOMAIN,
777 WLAN_EID_SUPPORTED_REGULATORY_CLASSES,
778 };
779 noffset = ieee80211_ie_split(assoc_data->ie, assoc_data->ie_len,
780 before_ht, ARRAY_SIZE(before_ht),
781 offset);
782 pos = skb_put(skb, noffset - offset);
783 memcpy(pos, assoc_data->ie + offset, noffset - offset);
784 offset = noffset;
785 }
786
Johannes Bergf2d9d272012-11-22 14:11:39 +0100787 if (WARN_ON_ONCE((ifmgd->flags & IEEE80211_STA_DISABLE_HT) &&
788 !(ifmgd->flags & IEEE80211_STA_DISABLE_VHT)))
789 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
790
Johannes Berga8243b72012-11-22 14:32:09 +0100791 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_HT))
Johannes Berg9dde6422012-05-16 23:43:19 +0200792 ieee80211_add_ht_ie(sdata, skb, assoc_data->ap_ht_param,
Johannes Berg04ecd252012-09-11 14:34:12 +0200793 sband, chan, sdata->smps_mode);
Johannes Berg66e67e42012-01-20 13:55:27 +0100794
Mahesh Palivelad545dab2012-07-24 03:33:10 +0000795 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_VHT))
Johannes Bergb08fbbd2012-12-07 13:06:48 +0100796 ieee80211_add_vht_ie(sdata, skb, sband,
797 &assoc_data->ap_vht_cap);
Mahesh Palivelad545dab2012-07-24 03:33:10 +0000798
Johannes Berg66e67e42012-01-20 13:55:27 +0100799 /* if present, add any custom non-vendor IEs that go after HT */
800 if (assoc_data->ie_len && assoc_data->ie) {
801 noffset = ieee80211_ie_split_vendor(assoc_data->ie,
802 assoc_data->ie_len,
803 offset);
804 pos = skb_put(skb, noffset - offset);
805 memcpy(pos, assoc_data->ie + offset, noffset - offset);
806 offset = noffset;
807 }
808
Johannes Berg76f03032012-03-08 15:02:05 +0100809 if (assoc_data->wmm) {
810 if (assoc_data->uapsd) {
Eliad Pellerdc41e4d2012-03-14 16:15:03 +0200811 qos_info = ifmgd->uapsd_queues;
812 qos_info |= (ifmgd->uapsd_max_sp_len <<
Johannes Berg66e67e42012-01-20 13:55:27 +0100813 IEEE80211_WMM_IE_STA_QOSINFO_SP_SHIFT);
814 } else {
815 qos_info = 0;
816 }
817
818 pos = skb_put(skb, 9);
819 *pos++ = WLAN_EID_VENDOR_SPECIFIC;
820 *pos++ = 7; /* len */
821 *pos++ = 0x00; /* Microsoft OUI 00:50:F2 */
822 *pos++ = 0x50;
823 *pos++ = 0xf2;
824 *pos++ = 2; /* WME */
825 *pos++ = 0; /* WME info */
826 *pos++ = 1; /* WME ver */
827 *pos++ = qos_info;
828 }
829
830 /* add any remaining custom (i.e. vendor specific here) IEs */
831 if (assoc_data->ie_len && assoc_data->ie) {
832 noffset = assoc_data->ie_len;
833 pos = skb_put(skb, noffset - offset);
834 memcpy(pos, assoc_data->ie + offset, noffset - offset);
835 }
836
Johannes Berga1845fc2012-06-27 13:18:36 +0200837 drv_mgd_prepare_tx(local, sdata);
838
Johannes Berg66e67e42012-01-20 13:55:27 +0100839 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
Johannes Berg1672c0e32013-01-29 15:02:27 +0100840 if (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS)
841 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_CTL_REQ_TX_STATUS |
842 IEEE80211_TX_INTFL_MLME_CONN_TX;
Johannes Berg66e67e42012-01-20 13:55:27 +0100843 ieee80211_tx_skb(sdata, skb);
844}
845
Kalle Valo572e0012009-02-10 17:09:31 +0200846void ieee80211_send_pspoll(struct ieee80211_local *local,
847 struct ieee80211_sub_if_data *sdata)
848{
Kalle Valo572e0012009-02-10 17:09:31 +0200849 struct ieee80211_pspoll *pspoll;
850 struct sk_buff *skb;
Kalle Valo572e0012009-02-10 17:09:31 +0200851
Kalle Valod8cd1892010-01-05 20:16:26 +0200852 skb = ieee80211_pspoll_get(&local->hw, &sdata->vif);
853 if (!skb)
Kalle Valo572e0012009-02-10 17:09:31 +0200854 return;
Kalle Valo572e0012009-02-10 17:09:31 +0200855
Kalle Valod8cd1892010-01-05 20:16:26 +0200856 pspoll = (struct ieee80211_pspoll *) skb->data;
857 pspoll->frame_control |= cpu_to_le16(IEEE80211_FCTL_PM);
Kalle Valo572e0012009-02-10 17:09:31 +0200858
Johannes Berg62ae67b2009-11-18 18:42:05 +0100859 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
860 ieee80211_tx_skb(sdata, skb);
Kalle Valo572e0012009-02-10 17:09:31 +0200861}
862
Johannes Berg965beda2009-04-16 13:17:24 +0200863void ieee80211_send_nullfunc(struct ieee80211_local *local,
864 struct ieee80211_sub_if_data *sdata,
865 int powersave)
866{
867 struct sk_buff *skb;
Kalle Valod8cd1892010-01-05 20:16:26 +0200868 struct ieee80211_hdr_3addr *nullfunc;
Rajkumar Manoharanb6f35302011-09-29 20:34:04 +0530869 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg965beda2009-04-16 13:17:24 +0200870
Kalle Valod8cd1892010-01-05 20:16:26 +0200871 skb = ieee80211_nullfunc_get(&local->hw, &sdata->vif);
872 if (!skb)
Johannes Berg965beda2009-04-16 13:17:24 +0200873 return;
874
Kalle Valod8cd1892010-01-05 20:16:26 +0200875 nullfunc = (struct ieee80211_hdr_3addr *) skb->data;
Johannes Berg965beda2009-04-16 13:17:24 +0200876 if (powersave)
Kalle Valod8cd1892010-01-05 20:16:26 +0200877 nullfunc->frame_control |= cpu_to_le16(IEEE80211_FCTL_PM);
Johannes Berg965beda2009-04-16 13:17:24 +0200878
Seth Forshee6c17b772013-02-11 11:21:07 -0600879 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT |
880 IEEE80211_TX_INTFL_OFFCHAN_TX_OK;
Pontus Fuchsff40b422013-06-04 12:44:52 +0200881
882 if (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS)
883 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_CTL_REQ_TX_STATUS;
884
Rajkumar Manoharanb6f35302011-09-29 20:34:04 +0530885 if (ifmgd->flags & (IEEE80211_STA_BEACON_POLL |
886 IEEE80211_STA_CONNECTION_POLL))
887 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_CTL_USE_MINRATE;
888
Johannes Berg62ae67b2009-11-18 18:42:05 +0100889 ieee80211_tx_skb(sdata, skb);
Johannes Berg965beda2009-04-16 13:17:24 +0200890}
891
Felix Fietkaud5242152010-01-08 18:06:26 +0100892static void ieee80211_send_4addr_nullfunc(struct ieee80211_local *local,
893 struct ieee80211_sub_if_data *sdata)
894{
895 struct sk_buff *skb;
896 struct ieee80211_hdr *nullfunc;
897 __le16 fc;
898
899 if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION))
900 return;
901
902 skb = dev_alloc_skb(local->hw.extra_tx_headroom + 30);
Joe Perchesd15b8452011-08-29 14:17:31 -0700903 if (!skb)
Felix Fietkaud5242152010-01-08 18:06:26 +0100904 return;
Joe Perchesd15b8452011-08-29 14:17:31 -0700905
Felix Fietkaud5242152010-01-08 18:06:26 +0100906 skb_reserve(skb, local->hw.extra_tx_headroom);
907
908 nullfunc = (struct ieee80211_hdr *) skb_put(skb, 30);
909 memset(nullfunc, 0, 30);
910 fc = cpu_to_le16(IEEE80211_FTYPE_DATA | IEEE80211_STYPE_NULLFUNC |
911 IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS);
912 nullfunc->frame_control = fc;
913 memcpy(nullfunc->addr1, sdata->u.mgd.bssid, ETH_ALEN);
914 memcpy(nullfunc->addr2, sdata->vif.addr, ETH_ALEN);
915 memcpy(nullfunc->addr3, sdata->u.mgd.bssid, ETH_ALEN);
916 memcpy(nullfunc->addr4, sdata->vif.addr, ETH_ALEN);
917
918 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
919 ieee80211_tx_skb(sdata, skb);
920}
921
Johannes Bergcc32abd2009-05-15 11:52:31 +0200922/* spectrum management related things */
923static void ieee80211_chswitch_work(struct work_struct *work)
924{
925 struct ieee80211_sub_if_data *sdata =
926 container_of(work, struct ieee80211_sub_if_data, u.mgd.chswitch_work);
Karl Beldan675a0b02013-03-25 16:26:57 +0100927 struct ieee80211_local *local = sdata->local;
Johannes Bergcc32abd2009-05-15 11:52:31 +0200928 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
929
Johannes Berg9607e6b2009-12-23 13:15:31 +0100930 if (!ieee80211_sdata_running(sdata))
Johannes Bergcc32abd2009-05-15 11:52:31 +0200931 return;
932
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200933 sdata_lock(sdata);
Johannes Berg77fdaa12009-07-07 03:45:17 +0200934 if (!ifmgd->associated)
935 goto out;
Johannes Bergcc32abd2009-05-15 11:52:31 +0200936
Johannes Berg85220d72013-03-25 18:29:27 +0100937 local->_oper_chandef = local->csa_chandef;
Karl Beldan675a0b02013-03-25 16:26:57 +0100938
939 if (!local->ops->channel_switch) {
Johannes Berg5ce6e432010-05-11 16:20:57 +0200940 /* call "hw_config" only if doing sw channel switch */
Karl Beldan675a0b02013-03-25 16:26:57 +0100941 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_CHANNEL);
Shahar Levi1ea57b12011-09-08 08:44:05 +0300942 } else {
943 /* update the device channel directly */
Karl Beldan675a0b02013-03-25 16:26:57 +0100944 local->hw.conf.chandef = local->_oper_chandef;
Johannes Berg5ce6e432010-05-11 16:20:57 +0200945 }
Johannes Bergcc32abd2009-05-15 11:52:31 +0200946
Johannes Berg77fdaa12009-07-07 03:45:17 +0200947 /* XXX: shouldn't really modify cfg80211-owned data! */
Karl Beldan675a0b02013-03-25 16:26:57 +0100948 ifmgd->associated->channel = local->_oper_chandef.chan;
Johannes Berg77fdaa12009-07-07 03:45:17 +0200949
Johannes Berg57eebdf2012-08-01 15:50:46 +0200950 /* XXX: wait for a beacon first? */
Karl Beldan675a0b02013-03-25 16:26:57 +0100951 ieee80211_wake_queues_by_reason(&local->hw,
Johannes Berg445ea4e2013-02-13 12:25:28 +0100952 IEEE80211_MAX_QUEUE_MAP,
Johannes Bergcc32abd2009-05-15 11:52:31 +0200953 IEEE80211_QUEUE_STOP_REASON_CSA);
Johannes Berg77fdaa12009-07-07 03:45:17 +0200954 out:
955 ifmgd->flags &= ~IEEE80211_STA_CSA_RECEIVED;
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200956 sdata_unlock(sdata);
Johannes Bergcc32abd2009-05-15 11:52:31 +0200957}
958
Johannes Berg5ce6e432010-05-11 16:20:57 +0200959void ieee80211_chswitch_done(struct ieee80211_vif *vif, bool success)
960{
Johannes Berg55de9082012-07-26 17:24:39 +0200961 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
962 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg5ce6e432010-05-11 16:20:57 +0200963
964 trace_api_chswitch_done(sdata, success);
965 if (!success) {
Johannes Berg882a7c62012-08-01 22:32:45 +0200966 sdata_info(sdata,
967 "driver channel switch failed, disconnecting\n");
968 ieee80211_queue_work(&sdata->local->hw,
969 &ifmgd->csa_connection_drop_work);
970 } else {
971 ieee80211_queue_work(&sdata->local->hw, &ifmgd->chswitch_work);
Johannes Berg5ce6e432010-05-11 16:20:57 +0200972 }
Johannes Berg5ce6e432010-05-11 16:20:57 +0200973}
974EXPORT_SYMBOL(ieee80211_chswitch_done);
975
Johannes Bergcc32abd2009-05-15 11:52:31 +0200976static void ieee80211_chswitch_timer(unsigned long data)
977{
978 struct ieee80211_sub_if_data *sdata =
979 (struct ieee80211_sub_if_data *) data;
Johannes Bergcc32abd2009-05-15 11:52:31 +0200980
Stanislaw Gruszka9b7d72c2013-02-28 10:55:27 +0100981 ieee80211_queue_work(&sdata->local->hw, &sdata->u.mgd.chswitch_work);
Johannes Bergcc32abd2009-05-15 11:52:31 +0200982}
983
Johannes Berg37799e52013-03-26 14:02:26 +0100984static void
Johannes Berg4a3cb702013-02-12 16:43:19 +0100985ieee80211_sta_process_chanswitch(struct ieee80211_sub_if_data *sdata,
Johannes Berg04a161f2013-05-03 09:35:35 +0200986 u64 timestamp, struct ieee802_11_elems *elems,
987 bool beacon)
Johannes Bergcc32abd2009-05-15 11:52:31 +0200988{
Johannes Bergb4f286a12013-03-26 14:13:58 +0100989 struct ieee80211_local *local = sdata->local;
Johannes Bergcc32abd2009-05-15 11:52:31 +0200990 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg37799e52013-03-26 14:02:26 +0100991 struct cfg80211_bss *cbss = ifmgd->associated;
992 struct ieee80211_bss *bss;
Johannes Berg55de9082012-07-26 17:24:39 +0200993 struct ieee80211_chanctx *chanctx;
Johannes Bergb4f286a12013-03-26 14:13:58 +0100994 enum ieee80211_band new_band;
995 int new_freq;
996 u8 new_chan_no;
997 u8 count;
998 u8 mode;
Johannes Bergcd64f2a2013-03-28 10:44:18 +0100999 struct ieee80211_channel *new_chan;
Johannes Berg85220d72013-03-25 18:29:27 +01001000 struct cfg80211_chan_def new_chandef = {};
Johannes Bergcd64f2a2013-03-28 10:44:18 +01001001 struct cfg80211_chan_def new_vht_chandef = {};
1002 const struct ieee80211_sec_chan_offs_ie *sec_chan_offs;
1003 const struct ieee80211_wide_bw_chansw_ie *wide_bw_chansw_ie;
Johannes Berg04a161f2013-05-03 09:35:35 +02001004 const struct ieee80211_ht_operation *ht_oper;
Johannes Berg85220d72013-03-25 18:29:27 +01001005 int secondary_channel_offset = -1;
Johannes Bergcc32abd2009-05-15 11:52:31 +02001006
Johannes Berg8d61ffa2013-05-10 12:32:47 +02001007 sdata_assert_lock(sdata);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001008
Johannes Berg37799e52013-03-26 14:02:26 +01001009 if (!cbss)
Johannes Bergcc32abd2009-05-15 11:52:31 +02001010 return;
1011
Johannes Bergb4f286a12013-03-26 14:13:58 +01001012 if (local->scanning)
Johannes Bergcc32abd2009-05-15 11:52:31 +02001013 return;
1014
Johannes Berg37799e52013-03-26 14:02:26 +01001015 /* disregard subsequent announcements if we are already processing */
Johannes Bergcc32abd2009-05-15 11:52:31 +02001016 if (ifmgd->flags & IEEE80211_STA_CSA_RECEIVED)
1017 return;
1018
Johannes Bergcd64f2a2013-03-28 10:44:18 +01001019 sec_chan_offs = elems->sec_chan_offs;
1020 wide_bw_chansw_ie = elems->wide_bw_chansw_ie;
Johannes Berg04a161f2013-05-03 09:35:35 +02001021 ht_oper = elems->ht_operation;
Johannes Bergcd64f2a2013-03-28 10:44:18 +01001022
1023 if (ifmgd->flags & (IEEE80211_STA_DISABLE_HT |
1024 IEEE80211_STA_DISABLE_40MHZ)) {
1025 sec_chan_offs = NULL;
1026 wide_bw_chansw_ie = NULL;
Johannes Berg04a161f2013-05-03 09:35:35 +02001027 /* only used for bandwidth here */
1028 ht_oper = NULL;
Johannes Berg85220d72013-03-25 18:29:27 +01001029 }
1030
Johannes Bergcd64f2a2013-03-28 10:44:18 +01001031 if (ifmgd->flags & IEEE80211_STA_DISABLE_VHT)
1032 wide_bw_chansw_ie = NULL;
Johannes Berg85220d72013-03-25 18:29:27 +01001033
Johannes Bergb4f286a12013-03-26 14:13:58 +01001034 if (elems->ext_chansw_ie) {
1035 if (!ieee80211_operating_class_to_band(
1036 elems->ext_chansw_ie->new_operating_class,
1037 &new_band)) {
1038 sdata_info(sdata,
1039 "cannot understand ECSA IE operating class %d, disconnecting\n",
1040 elems->ext_chansw_ie->new_operating_class);
1041 ieee80211_queue_work(&local->hw,
1042 &ifmgd->csa_connection_drop_work);
1043 }
1044 new_chan_no = elems->ext_chansw_ie->new_ch_num;
1045 count = elems->ext_chansw_ie->count;
1046 mode = elems->ext_chansw_ie->mode;
1047 } else if (elems->ch_switch_ie) {
1048 new_band = cbss->channel->band;
1049 new_chan_no = elems->ch_switch_ie->new_ch_num;
1050 count = elems->ch_switch_ie->count;
1051 mode = elems->ch_switch_ie->mode;
1052 } else {
1053 /* nothing here we understand */
Johannes Berg37799e52013-03-26 14:02:26 +01001054 return;
Johannes Bergb4f286a12013-03-26 14:13:58 +01001055 }
Johannes Berg37799e52013-03-26 14:02:26 +01001056
1057 bss = (void *)cbss->priv;
1058
Johannes Bergb4f286a12013-03-26 14:13:58 +01001059 new_freq = ieee80211_channel_to_frequency(new_chan_no, new_band);
Johannes Bergcd64f2a2013-03-28 10:44:18 +01001060 new_chan = ieee80211_get_channel(sdata->local->hw.wiphy, new_freq);
1061 if (!new_chan || new_chan->flags & IEEE80211_CHAN_DISABLED) {
Johannes Berg882a7c62012-08-01 22:32:45 +02001062 sdata_info(sdata,
1063 "AP %pM switches to unsupported channel (%d MHz), disconnecting\n",
1064 ifmgd->associated->bssid, new_freq);
Johannes Bergb4f286a12013-03-26 14:13:58 +01001065 ieee80211_queue_work(&local->hw,
Johannes Berg882a7c62012-08-01 22:32:45 +02001066 &ifmgd->csa_connection_drop_work);
Johannes Bergcc32abd2009-05-15 11:52:31 +02001067 return;
Johannes Berg882a7c62012-08-01 22:32:45 +02001068 }
Johannes Bergcc32abd2009-05-15 11:52:31 +02001069
Johannes Berg04a161f2013-05-03 09:35:35 +02001070 if (!beacon && sec_chan_offs) {
Johannes Bergcd64f2a2013-03-28 10:44:18 +01001071 secondary_channel_offset = sec_chan_offs->sec_chan_offs;
Johannes Berg04a161f2013-05-03 09:35:35 +02001072 } else if (beacon && ht_oper) {
1073 secondary_channel_offset =
1074 ht_oper->ht_param & IEEE80211_HT_PARAM_CHA_SEC_OFFSET;
Johannes Bergcd64f2a2013-03-28 10:44:18 +01001075 } else if (!(ifmgd->flags & IEEE80211_STA_DISABLE_HT)) {
Johannes Berg04a161f2013-05-03 09:35:35 +02001076 /*
1077 * If it's not a beacon, HT is enabled and the IE not present,
1078 * it's 20 MHz, 802.11-2012 8.5.2.6:
1079 * This element [the Secondary Channel Offset Element] is
1080 * present when switching to a 40 MHz channel. It may be
1081 * present when switching to a 20 MHz channel (in which
1082 * case the secondary channel offset is set to SCN).
1083 */
Johannes Bergcd64f2a2013-03-28 10:44:18 +01001084 secondary_channel_offset = IEEE80211_HT_PARAM_CHA_SEC_NONE;
1085 }
1086
Johannes Berg85220d72013-03-25 18:29:27 +01001087 switch (secondary_channel_offset) {
1088 default:
1089 /* secondary_channel_offset was present but is invalid */
1090 case IEEE80211_HT_PARAM_CHA_SEC_NONE:
Johannes Bergcd64f2a2013-03-28 10:44:18 +01001091 cfg80211_chandef_create(&new_chandef, new_chan,
Johannes Berg85220d72013-03-25 18:29:27 +01001092 NL80211_CHAN_HT20);
1093 break;
1094 case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
Johannes Bergcd64f2a2013-03-28 10:44:18 +01001095 cfg80211_chandef_create(&new_chandef, new_chan,
Johannes Berg85220d72013-03-25 18:29:27 +01001096 NL80211_CHAN_HT40PLUS);
1097 break;
1098 case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
Johannes Bergcd64f2a2013-03-28 10:44:18 +01001099 cfg80211_chandef_create(&new_chandef, new_chan,
Johannes Berg85220d72013-03-25 18:29:27 +01001100 NL80211_CHAN_HT40MINUS);
1101 break;
1102 case -1:
Johannes Bergcd64f2a2013-03-28 10:44:18 +01001103 cfg80211_chandef_create(&new_chandef, new_chan,
Johannes Berg85220d72013-03-25 18:29:27 +01001104 NL80211_CHAN_NO_HT);
Simon Wunderlichab1e8ad2013-08-02 17:38:01 +02001105 /* keep width for 5/10 MHz channels */
1106 switch (sdata->vif.bss_conf.chandef.width) {
1107 case NL80211_CHAN_WIDTH_5:
1108 case NL80211_CHAN_WIDTH_10:
1109 new_chandef.width = sdata->vif.bss_conf.chandef.width;
1110 break;
1111 default:
1112 break;
1113 }
Johannes Berg85220d72013-03-25 18:29:27 +01001114 break;
1115 }
1116
Johannes Bergcd64f2a2013-03-28 10:44:18 +01001117 if (wide_bw_chansw_ie) {
1118 new_vht_chandef.chan = new_chan;
1119 new_vht_chandef.center_freq1 =
1120 ieee80211_channel_to_frequency(
1121 wide_bw_chansw_ie->new_center_freq_seg0,
1122 new_band);
1123
1124 switch (wide_bw_chansw_ie->new_channel_width) {
1125 default:
1126 /* hmmm, ignore VHT and use HT if present */
1127 case IEEE80211_VHT_CHANWIDTH_USE_HT:
1128 new_vht_chandef.chan = NULL;
1129 break;
1130 case IEEE80211_VHT_CHANWIDTH_80MHZ:
1131 new_vht_chandef.width = NL80211_CHAN_WIDTH_80;
1132 break;
1133 case IEEE80211_VHT_CHANWIDTH_160MHZ:
1134 new_vht_chandef.width = NL80211_CHAN_WIDTH_160;
1135 break;
1136 case IEEE80211_VHT_CHANWIDTH_80P80MHZ:
1137 /* field is otherwise reserved */
1138 new_vht_chandef.center_freq2 =
1139 ieee80211_channel_to_frequency(
1140 wide_bw_chansw_ie->new_center_freq_seg1,
1141 new_band);
1142 new_vht_chandef.width = NL80211_CHAN_WIDTH_80P80;
1143 break;
1144 }
1145 if (ifmgd->flags & IEEE80211_STA_DISABLE_80P80MHZ &&
1146 new_vht_chandef.width == NL80211_CHAN_WIDTH_80P80)
1147 chandef_downgrade(&new_vht_chandef);
1148 if (ifmgd->flags & IEEE80211_STA_DISABLE_160MHZ &&
1149 new_vht_chandef.width == NL80211_CHAN_WIDTH_160)
1150 chandef_downgrade(&new_vht_chandef);
1151 if (ifmgd->flags & IEEE80211_STA_DISABLE_40MHZ &&
1152 new_vht_chandef.width > NL80211_CHAN_WIDTH_20)
1153 chandef_downgrade(&new_vht_chandef);
1154 }
1155
1156 /* if VHT data is there validate & use it */
1157 if (new_vht_chandef.chan) {
1158 if (!cfg80211_chandef_compatible(&new_vht_chandef,
1159 &new_chandef)) {
1160 sdata_info(sdata,
1161 "AP %pM CSA has inconsistent channel data, disconnecting\n",
1162 ifmgd->associated->bssid);
1163 ieee80211_queue_work(&local->hw,
1164 &ifmgd->csa_connection_drop_work);
1165 return;
1166 }
1167 new_chandef = new_vht_chandef;
1168 }
1169
Johannes Berg85220d72013-03-25 18:29:27 +01001170 if (!cfg80211_chandef_usable(local->hw.wiphy, &new_chandef,
1171 IEEE80211_CHAN_DISABLED)) {
1172 sdata_info(sdata,
1173 "AP %pM switches to unsupported channel (%d MHz, width:%d, CF1/2: %d/%d MHz), disconnecting\n",
1174 ifmgd->associated->bssid, new_freq,
1175 new_chandef.width, new_chandef.center_freq1,
1176 new_chandef.center_freq2);
1177 ieee80211_queue_work(&local->hw,
1178 &ifmgd->csa_connection_drop_work);
1179 return;
1180 }
1181
Johannes Berg57eebdf2012-08-01 15:50:46 +02001182 ifmgd->flags |= IEEE80211_STA_CSA_RECEIVED;
1183
Johannes Bergb4f286a12013-03-26 14:13:58 +01001184 if (local->use_chanctx) {
Johannes Berg55de9082012-07-26 17:24:39 +02001185 sdata_info(sdata,
1186 "not handling channel switch with channel contexts\n");
Johannes Bergb4f286a12013-03-26 14:13:58 +01001187 ieee80211_queue_work(&local->hw,
Johannes Berg55de9082012-07-26 17:24:39 +02001188 &ifmgd->csa_connection_drop_work);
Simon Wunderlich246dc3f2012-11-30 19:17:27 +01001189 return;
Johannes Berg55de9082012-07-26 17:24:39 +02001190 }
1191
Johannes Bergb4f286a12013-03-26 14:13:58 +01001192 mutex_lock(&local->chanctx_mtx);
Johannes Berg55de9082012-07-26 17:24:39 +02001193 if (WARN_ON(!rcu_access_pointer(sdata->vif.chanctx_conf))) {
Johannes Bergb4f286a12013-03-26 14:13:58 +01001194 mutex_unlock(&local->chanctx_mtx);
Johannes Berg55de9082012-07-26 17:24:39 +02001195 return;
1196 }
1197 chanctx = container_of(rcu_access_pointer(sdata->vif.chanctx_conf),
1198 struct ieee80211_chanctx, conf);
1199 if (chanctx->refcount > 1) {
1200 sdata_info(sdata,
1201 "channel switch with multiple interfaces on the same channel, disconnecting\n");
Johannes Bergb4f286a12013-03-26 14:13:58 +01001202 ieee80211_queue_work(&local->hw,
Johannes Berg55de9082012-07-26 17:24:39 +02001203 &ifmgd->csa_connection_drop_work);
Johannes Bergb4f286a12013-03-26 14:13:58 +01001204 mutex_unlock(&local->chanctx_mtx);
Johannes Berg55de9082012-07-26 17:24:39 +02001205 return;
1206 }
Johannes Bergb4f286a12013-03-26 14:13:58 +01001207 mutex_unlock(&local->chanctx_mtx);
Johannes Berg55de9082012-07-26 17:24:39 +02001208
Johannes Berg85220d72013-03-25 18:29:27 +01001209 local->csa_chandef = new_chandef;
Johannes Berg55de9082012-07-26 17:24:39 +02001210
Johannes Bergb4f286a12013-03-26 14:13:58 +01001211 if (mode)
1212 ieee80211_stop_queues_by_reason(&local->hw,
Johannes Berg445ea4e2013-02-13 12:25:28 +01001213 IEEE80211_MAX_QUEUE_MAP,
Johannes Berg57eebdf2012-08-01 15:50:46 +02001214 IEEE80211_QUEUE_STOP_REASON_CSA);
1215
Johannes Bergb4f286a12013-03-26 14:13:58 +01001216 if (local->ops->channel_switch) {
Johannes Berg5ce6e432010-05-11 16:20:57 +02001217 /* use driver's channel switch callback */
Johannes Berg57eebdf2012-08-01 15:50:46 +02001218 struct ieee80211_channel_switch ch_switch = {
1219 .timestamp = timestamp,
Johannes Bergb4f286a12013-03-26 14:13:58 +01001220 .block_tx = mode,
Johannes Berg85220d72013-03-25 18:29:27 +01001221 .chandef = new_chandef,
Johannes Bergb4f286a12013-03-26 14:13:58 +01001222 .count = count,
Johannes Berg57eebdf2012-08-01 15:50:46 +02001223 };
1224
Johannes Bergb4f286a12013-03-26 14:13:58 +01001225 drv_channel_switch(local, &ch_switch);
Johannes Berg5ce6e432010-05-11 16:20:57 +02001226 return;
1227 }
1228
1229 /* channel switch handled in software */
Johannes Bergb4f286a12013-03-26 14:13:58 +01001230 if (count <= 1)
1231 ieee80211_queue_work(&local->hw, &ifmgd->chswitch_work);
Johannes Berg57eebdf2012-08-01 15:50:46 +02001232 else
Johannes Bergcc32abd2009-05-15 11:52:31 +02001233 mod_timer(&ifmgd->chswitch_timer,
Johannes Bergb4f286a12013-03-26 14:13:58 +01001234 TU_TO_EXP_TIME(count * cbss->beacon_interval));
Johannes Bergcc32abd2009-05-15 11:52:31 +02001235}
1236
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02001237static u32 ieee80211_handle_pwr_constr(struct ieee80211_sub_if_data *sdata,
1238 struct ieee80211_channel *channel,
1239 const u8 *country_ie, u8 country_ie_len,
1240 const u8 *pwr_constr_elem)
Johannes Bergcc32abd2009-05-15 11:52:31 +02001241{
Johannes Berg04b7b2f2012-09-05 13:41:37 +02001242 struct ieee80211_country_ie_triplet *triplet;
1243 int chan = ieee80211_frequency_to_channel(channel->center_freq);
1244 int i, chan_pwr, chan_increment, new_ap_level;
1245 bool have_chan_pwr = false;
Johannes Bergcc32abd2009-05-15 11:52:31 +02001246
Johannes Berg04b7b2f2012-09-05 13:41:37 +02001247 /* Invalid IE */
1248 if (country_ie_len % 2 || country_ie_len < IEEE80211_COUNTRY_IE_MIN_LEN)
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02001249 return 0;
Johannes Bergcc32abd2009-05-15 11:52:31 +02001250
Johannes Berg04b7b2f2012-09-05 13:41:37 +02001251 triplet = (void *)(country_ie + 3);
1252 country_ie_len -= 3;
1253
1254 switch (channel->band) {
1255 default:
1256 WARN_ON_ONCE(1);
1257 /* fall through */
1258 case IEEE80211_BAND_2GHZ:
1259 case IEEE80211_BAND_60GHZ:
1260 chan_increment = 1;
1261 break;
1262 case IEEE80211_BAND_5GHZ:
1263 chan_increment = 4;
1264 break;
Johannes Bergcc32abd2009-05-15 11:52:31 +02001265 }
Johannes Berg04b7b2f2012-09-05 13:41:37 +02001266
1267 /* find channel */
1268 while (country_ie_len >= 3) {
1269 u8 first_channel = triplet->chans.first_channel;
1270
1271 if (first_channel >= IEEE80211_COUNTRY_EXTENSION_ID)
1272 goto next;
1273
1274 for (i = 0; i < triplet->chans.num_channels; i++) {
1275 if (first_channel + i * chan_increment == chan) {
1276 have_chan_pwr = true;
1277 chan_pwr = triplet->chans.max_power;
1278 break;
1279 }
1280 }
1281 if (have_chan_pwr)
1282 break;
1283
1284 next:
1285 triplet++;
1286 country_ie_len -= 3;
1287 }
1288
1289 if (!have_chan_pwr)
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02001290 return 0;
Johannes Berg04b7b2f2012-09-05 13:41:37 +02001291
1292 new_ap_level = max_t(int, 0, chan_pwr - *pwr_constr_elem);
1293
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02001294 if (sdata->ap_power_level == new_ap_level)
1295 return 0;
Johannes Berg04b7b2f2012-09-05 13:41:37 +02001296
1297 sdata_info(sdata,
1298 "Limiting TX power to %d (%d - %d) dBm as advertised by %pM\n",
1299 new_ap_level, chan_pwr, *pwr_constr_elem,
1300 sdata->u.mgd.bssid);
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02001301 sdata->ap_power_level = new_ap_level;
1302 if (__ieee80211_recalc_txpower(sdata))
1303 return BSS_CHANGED_TXPOWER;
1304 return 0;
Johannes Bergcc32abd2009-05-15 11:52:31 +02001305}
1306
Johannes Berg965beda2009-04-16 13:17:24 +02001307/* powersave */
1308static void ieee80211_enable_ps(struct ieee80211_local *local,
1309 struct ieee80211_sub_if_data *sdata)
1310{
1311 struct ieee80211_conf *conf = &local->hw.conf;
1312
Johannes Bergd5edaed2009-04-22 23:02:51 +02001313 /*
1314 * If we are scanning right now then the parameters will
1315 * take effect when scan finishes.
1316 */
Helmut Schaafbe9c422009-07-23 12:14:04 +02001317 if (local->scanning)
Johannes Bergd5edaed2009-04-22 23:02:51 +02001318 return;
1319
Johannes Berg965beda2009-04-16 13:17:24 +02001320 if (conf->dynamic_ps_timeout > 0 &&
1321 !(local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS)) {
1322 mod_timer(&local->dynamic_ps_timer, jiffies +
1323 msecs_to_jiffies(conf->dynamic_ps_timeout));
1324 } else {
1325 if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)
1326 ieee80211_send_nullfunc(local, sdata, 1);
Vivek Natarajan375177b2010-02-09 14:50:28 +05301327
Juuso Oikarinen2a130522010-03-09 14:25:02 +02001328 if ((local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK) &&
1329 (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS))
1330 return;
1331
1332 conf->flags |= IEEE80211_CONF_PS;
1333 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
Johannes Berg965beda2009-04-16 13:17:24 +02001334 }
1335}
1336
1337static void ieee80211_change_ps(struct ieee80211_local *local)
1338{
1339 struct ieee80211_conf *conf = &local->hw.conf;
1340
1341 if (local->ps_sdata) {
Johannes Berg965beda2009-04-16 13:17:24 +02001342 ieee80211_enable_ps(local, local->ps_sdata);
1343 } else if (conf->flags & IEEE80211_CONF_PS) {
1344 conf->flags &= ~IEEE80211_CONF_PS;
1345 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
1346 del_timer_sync(&local->dynamic_ps_timer);
1347 cancel_work_sync(&local->dynamic_ps_enable_work);
1348 }
1349}
1350
Jason Young808118c2011-03-10 16:43:19 -08001351static bool ieee80211_powersave_allowed(struct ieee80211_sub_if_data *sdata)
1352{
1353 struct ieee80211_if_managed *mgd = &sdata->u.mgd;
1354 struct sta_info *sta = NULL;
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001355 bool authorized = false;
Jason Young808118c2011-03-10 16:43:19 -08001356
1357 if (!mgd->powersave)
1358 return false;
1359
Johannes Berg05cb9102011-10-28 11:59:47 +02001360 if (mgd->broken_ap)
1361 return false;
1362
Jason Young808118c2011-03-10 16:43:19 -08001363 if (!mgd->associated)
1364 return false;
1365
Jason Young808118c2011-03-10 16:43:19 -08001366 if (mgd->flags & (IEEE80211_STA_BEACON_POLL |
1367 IEEE80211_STA_CONNECTION_POLL))
1368 return false;
1369
Alexander Bondar989c6502013-05-16 17:34:17 +03001370 if (!mgd->have_beacon)
Alexander Bondarce857882013-05-06 17:17:04 +03001371 return false;
1372
Jason Young808118c2011-03-10 16:43:19 -08001373 rcu_read_lock();
1374 sta = sta_info_get(sdata, mgd->bssid);
1375 if (sta)
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001376 authorized = test_sta_flag(sta, WLAN_STA_AUTHORIZED);
Jason Young808118c2011-03-10 16:43:19 -08001377 rcu_read_unlock();
1378
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001379 return authorized;
Jason Young808118c2011-03-10 16:43:19 -08001380}
1381
Johannes Berg965beda2009-04-16 13:17:24 +02001382/* need to hold RTNL or interface lock */
Johannes Berg10f644a2009-04-16 13:17:25 +02001383void ieee80211_recalc_ps(struct ieee80211_local *local, s32 latency)
Johannes Berg965beda2009-04-16 13:17:24 +02001384{
1385 struct ieee80211_sub_if_data *sdata, *found = NULL;
1386 int count = 0;
Juuso Oikarinen195e2942010-04-27 12:47:40 +03001387 int timeout;
Johannes Berg965beda2009-04-16 13:17:24 +02001388
1389 if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_PS)) {
1390 local->ps_sdata = NULL;
1391 return;
1392 }
1393
1394 list_for_each_entry(sdata, &local->interfaces, list) {
Johannes Berg9607e6b2009-12-23 13:15:31 +01001395 if (!ieee80211_sdata_running(sdata))
Johannes Berg965beda2009-04-16 13:17:24 +02001396 continue;
Rajkumar Manoharan8c7914d2011-02-01 00:28:59 +05301397 if (sdata->vif.type == NL80211_IFTYPE_AP) {
1398 /* If an AP vif is found, then disable PS
1399 * by setting the count to zero thereby setting
1400 * ps_sdata to NULL.
1401 */
1402 count = 0;
1403 break;
1404 }
Johannes Berg965beda2009-04-16 13:17:24 +02001405 if (sdata->vif.type != NL80211_IFTYPE_STATION)
1406 continue;
1407 found = sdata;
1408 count++;
1409 }
1410
Jason Young808118c2011-03-10 16:43:19 -08001411 if (count == 1 && ieee80211_powersave_allowed(found)) {
Johannes Berg10f644a2009-04-16 13:17:25 +02001412 s32 beaconint_us;
1413
1414 if (latency < 0)
Mark Grossed771342010-05-06 01:59:26 +02001415 latency = pm_qos_request(PM_QOS_NETWORK_LATENCY);
Johannes Berg10f644a2009-04-16 13:17:25 +02001416
1417 beaconint_us = ieee80211_tu_to_usec(
1418 found->vif.bss_conf.beacon_int);
1419
Juuso Oikarinenff616382010-06-09 09:51:52 +03001420 timeout = local->dynamic_ps_forced_timeout;
Juuso Oikarinen195e2942010-04-27 12:47:40 +03001421 if (timeout < 0) {
1422 /*
Juuso Oikarinenff616382010-06-09 09:51:52 +03001423 * Go to full PSM if the user configures a very low
1424 * latency requirement.
Eliad Peller0ab82b02010-12-03 02:16:23 +02001425 * The 2000 second value is there for compatibility
1426 * until the PM_QOS_NETWORK_LATENCY is configured
1427 * with real values.
Juuso Oikarinen195e2942010-04-27 12:47:40 +03001428 */
Eliad Peller0ab82b02010-12-03 02:16:23 +02001429 if (latency > (1900 * USEC_PER_MSEC) &&
1430 latency != (2000 * USEC_PER_SEC))
Juuso Oikarinen195e2942010-04-27 12:47:40 +03001431 timeout = 0;
Juuso Oikarinenff616382010-06-09 09:51:52 +03001432 else
1433 timeout = 100;
Juuso Oikarinen195e2942010-04-27 12:47:40 +03001434 }
Johannes Berg09b85562013-02-06 23:07:41 +01001435 local->hw.conf.dynamic_ps_timeout = timeout;
Juuso Oikarinen195e2942010-04-27 12:47:40 +03001436
Johannes Berg04fe2032009-04-22 18:44:37 +02001437 if (beaconint_us > latency) {
Johannes Berg10f644a2009-04-16 13:17:25 +02001438 local->ps_sdata = NULL;
Johannes Berg04fe2032009-04-22 18:44:37 +02001439 } else {
Johannes Berg04fe2032009-04-22 18:44:37 +02001440 int maxslp = 1;
Johannes Berg826262c2012-12-10 16:38:14 +02001441 u8 dtimper = found->u.mgd.dtim_period;
Johannes Berg56007a02010-01-26 14:19:52 +01001442
1443 /* If the TIM IE is invalid, pretend the value is 1 */
1444 if (!dtimper)
1445 dtimper = 1;
1446 else if (dtimper > 1)
Johannes Berg04fe2032009-04-22 18:44:37 +02001447 maxslp = min_t(int, dtimper,
1448 latency / beaconint_us);
1449
Johannes Berg9ccebe62009-04-23 10:32:36 +02001450 local->hw.conf.max_sleep_period = maxslp;
Johannes Berg56007a02010-01-26 14:19:52 +01001451 local->hw.conf.ps_dtim_period = dtimper;
Johannes Berg10f644a2009-04-16 13:17:25 +02001452 local->ps_sdata = found;
Johannes Berg04fe2032009-04-22 18:44:37 +02001453 }
Johannes Berg10f644a2009-04-16 13:17:25 +02001454 } else {
Johannes Berg965beda2009-04-16 13:17:24 +02001455 local->ps_sdata = NULL;
Johannes Berg10f644a2009-04-16 13:17:25 +02001456 }
Johannes Berg965beda2009-04-16 13:17:24 +02001457
1458 ieee80211_change_ps(local);
1459}
1460
Eliad Pellerab095872012-07-27 12:33:22 +03001461void ieee80211_recalc_ps_vif(struct ieee80211_sub_if_data *sdata)
1462{
1463 bool ps_allowed = ieee80211_powersave_allowed(sdata);
1464
1465 if (sdata->vif.bss_conf.ps != ps_allowed) {
1466 sdata->vif.bss_conf.ps = ps_allowed;
1467 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_PS);
1468 }
1469}
1470
Johannes Berg965beda2009-04-16 13:17:24 +02001471void ieee80211_dynamic_ps_disable_work(struct work_struct *work)
1472{
1473 struct ieee80211_local *local =
1474 container_of(work, struct ieee80211_local,
1475 dynamic_ps_disable_work);
1476
1477 if (local->hw.conf.flags & IEEE80211_CONF_PS) {
1478 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
1479 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
1480 }
1481
1482 ieee80211_wake_queues_by_reason(&local->hw,
Johannes Berg445ea4e2013-02-13 12:25:28 +01001483 IEEE80211_MAX_QUEUE_MAP,
Johannes Berg965beda2009-04-16 13:17:24 +02001484 IEEE80211_QUEUE_STOP_REASON_PS);
1485}
1486
1487void ieee80211_dynamic_ps_enable_work(struct work_struct *work)
1488{
1489 struct ieee80211_local *local =
1490 container_of(work, struct ieee80211_local,
1491 dynamic_ps_enable_work);
1492 struct ieee80211_sub_if_data *sdata = local->ps_sdata;
Christian Lamparter5e340692011-06-30 21:08:43 +02001493 struct ieee80211_if_managed *ifmgd;
Rajkumar Manoharan1ddc2862011-05-03 17:03:59 +05301494 unsigned long flags;
1495 int q;
Johannes Berg965beda2009-04-16 13:17:24 +02001496
1497 /* can only happen when PS was just disabled anyway */
1498 if (!sdata)
1499 return;
1500
Christian Lamparter5e340692011-06-30 21:08:43 +02001501 ifmgd = &sdata->u.mgd;
1502
Johannes Berg965beda2009-04-16 13:17:24 +02001503 if (local->hw.conf.flags & IEEE80211_CONF_PS)
1504 return;
1505
Johannes Berg09b85562013-02-06 23:07:41 +01001506 if (local->hw.conf.dynamic_ps_timeout > 0) {
Arik Nemtsov77b70232011-06-26 12:06:54 +03001507 /* don't enter PS if TX frames are pending */
1508 if (drv_tx_frames_pending(local)) {
Rajkumar Manoharan1ddc2862011-05-03 17:03:59 +05301509 mod_timer(&local->dynamic_ps_timer, jiffies +
1510 msecs_to_jiffies(
1511 local->hw.conf.dynamic_ps_timeout));
1512 return;
1513 }
Arik Nemtsov77b70232011-06-26 12:06:54 +03001514
1515 /*
1516 * transmission can be stopped by others which leads to
1517 * dynamic_ps_timer expiry. Postpone the ps timer if it
1518 * is not the actual idle state.
1519 */
1520 spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
1521 for (q = 0; q < local->hw.queues; q++) {
1522 if (local->queue_stop_reasons[q]) {
1523 spin_unlock_irqrestore(&local->queue_stop_reason_lock,
1524 flags);
1525 mod_timer(&local->dynamic_ps_timer, jiffies +
1526 msecs_to_jiffies(
1527 local->hw.conf.dynamic_ps_timeout));
1528 return;
1529 }
1530 }
1531 spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
Rajkumar Manoharan1ddc2862011-05-03 17:03:59 +05301532 }
Rajkumar Manoharan1ddc2862011-05-03 17:03:59 +05301533
Vivek Natarajan375177b2010-02-09 14:50:28 +05301534 if ((local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK) &&
Mohammed Shafi Shajakhan9c38a8b2011-12-14 19:46:07 +05301535 !(ifmgd->flags & IEEE80211_STA_NULLFUNC_ACKED)) {
Johannes Berga1598382013-03-26 22:02:42 +01001536 if (drv_tx_frames_pending(local)) {
Vivek Natarajane8306f92011-04-06 11:41:10 +05301537 mod_timer(&local->dynamic_ps_timer, jiffies +
1538 msecs_to_jiffies(
1539 local->hw.conf.dynamic_ps_timeout));
Johannes Berga1598382013-03-26 22:02:42 +01001540 } else {
Vivek Natarajane8306f92011-04-06 11:41:10 +05301541 ieee80211_send_nullfunc(local, sdata, 1);
1542 /* Flush to get the tx status of nullfunc frame */
Johannes Berg39ecc012013-02-13 12:11:00 +01001543 ieee80211_flush_queues(local, sdata);
Vivek Natarajane8306f92011-04-06 11:41:10 +05301544 }
Vivek Natarajanf3e85b92011-02-23 13:04:32 +05301545 }
1546
Juuso Oikarinen2a130522010-03-09 14:25:02 +02001547 if (!((local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS) &&
1548 (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)) ||
Vivek Natarajan375177b2010-02-09 14:50:28 +05301549 (ifmgd->flags & IEEE80211_STA_NULLFUNC_ACKED)) {
1550 ifmgd->flags &= ~IEEE80211_STA_NULLFUNC_ACKED;
1551 local->hw.conf.flags |= IEEE80211_CONF_PS;
1552 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
1553 }
Johannes Berg965beda2009-04-16 13:17:24 +02001554}
1555
1556void ieee80211_dynamic_ps_timer(unsigned long data)
1557{
1558 struct ieee80211_local *local = (void *) data;
1559
Luis R. Rodriguez78f1a8b2009-07-27 08:38:25 -07001560 if (local->quiescing || local->suspended)
Johannes Berg5bb644a2009-05-17 11:40:42 +02001561 return;
1562
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04001563 ieee80211_queue_work(&local->hw, &local->dynamic_ps_enable_work);
Johannes Berg965beda2009-04-16 13:17:24 +02001564}
1565
Simon Wunderlich164eb022013-02-08 18:16:20 +01001566void ieee80211_dfs_cac_timer_work(struct work_struct *work)
1567{
1568 struct delayed_work *delayed_work =
1569 container_of(work, struct delayed_work, work);
1570 struct ieee80211_sub_if_data *sdata =
1571 container_of(delayed_work, struct ieee80211_sub_if_data,
1572 dfs_cac_timer_work);
1573
1574 ieee80211_vif_release_channel(sdata);
1575
1576 cfg80211_cac_event(sdata->dev, NL80211_RADAR_CAC_FINISHED, GFP_KERNEL);
1577}
1578
Johannes Berg60f8b392008-09-08 17:44:22 +02001579/* MLME */
Johannes Berg7d257452012-07-06 17:37:43 +02001580static bool ieee80211_sta_wmm_params(struct ieee80211_local *local,
Johannes Berg4ced3f72010-07-19 16:39:04 +02001581 struct ieee80211_sub_if_data *sdata,
Johannes Berg4a3cb702013-02-12 16:43:19 +01001582 const u8 *wmm_param, size_t wmm_param_len)
Jiri Bencf0706e82007-05-05 11:45:53 -07001583{
Jiri Bencf0706e82007-05-05 11:45:53 -07001584 struct ieee80211_tx_queue_params params;
Johannes Berg4ced3f72010-07-19 16:39:04 +02001585 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jiri Bencf0706e82007-05-05 11:45:53 -07001586 size_t left;
1587 int count;
Johannes Berg4a3cb702013-02-12 16:43:19 +01001588 const u8 *pos;
1589 u8 uapsd_queues = 0;
Jiri Bencf0706e82007-05-05 11:45:53 -07001590
Stanislaw Gruszkae1b3ec12010-03-29 12:18:34 +02001591 if (!local->ops->conf_tx)
Johannes Berg7d257452012-07-06 17:37:43 +02001592 return false;
Stanislaw Gruszkae1b3ec12010-03-29 12:18:34 +02001593
Johannes Berg32c50572012-03-28 11:04:29 +02001594 if (local->hw.queues < IEEE80211_NUM_ACS)
Johannes Berg7d257452012-07-06 17:37:43 +02001595 return false;
Johannes Berg3434fbd2008-05-03 00:59:37 +02001596
1597 if (!wmm_param)
Johannes Berg7d257452012-07-06 17:37:43 +02001598 return false;
Johannes Berg3434fbd2008-05-03 00:59:37 +02001599
Jiri Bencf0706e82007-05-05 11:45:53 -07001600 if (wmm_param_len < 8 || wmm_param[5] /* version */ != 1)
Johannes Berg7d257452012-07-06 17:37:43 +02001601 return false;
Kalle Valoab133152010-01-12 10:42:31 +02001602
1603 if (ifmgd->flags & IEEE80211_STA_UAPSD_ENABLED)
Eliad Pellerdc41e4d2012-03-14 16:15:03 +02001604 uapsd_queues = ifmgd->uapsd_queues;
Kalle Valoab133152010-01-12 10:42:31 +02001605
Jiri Bencf0706e82007-05-05 11:45:53 -07001606 count = wmm_param[6] & 0x0f;
Johannes Berg46900292009-02-15 12:44:28 +01001607 if (count == ifmgd->wmm_last_param_set)
Johannes Berg7d257452012-07-06 17:37:43 +02001608 return false;
Johannes Berg46900292009-02-15 12:44:28 +01001609 ifmgd->wmm_last_param_set = count;
Jiri Bencf0706e82007-05-05 11:45:53 -07001610
1611 pos = wmm_param + 8;
1612 left = wmm_param_len - 8;
1613
1614 memset(&params, 0, sizeof(params));
1615
Yoni Divinsky00e96de2012-06-20 15:39:13 +03001616 sdata->wmm_acm = 0;
Jiri Bencf0706e82007-05-05 11:45:53 -07001617 for (; left >= 4; left -= 4, pos += 4) {
1618 int aci = (pos[0] >> 5) & 0x03;
1619 int acm = (pos[0] >> 4) & 0x01;
Kalle Valoab133152010-01-12 10:42:31 +02001620 bool uapsd = false;
Jiri Bencf0706e82007-05-05 11:45:53 -07001621 int queue;
1622
1623 switch (aci) {
Jouni Malinen0eeb59f2009-03-05 17:23:46 +02001624 case 1: /* AC_BK */
Johannes Berge100bb62008-04-30 18:51:21 +02001625 queue = 3;
Johannes Berg988c0f72008-04-17 19:21:22 +02001626 if (acm)
Yoni Divinsky00e96de2012-06-20 15:39:13 +03001627 sdata->wmm_acm |= BIT(1) | BIT(2); /* BK/- */
Kalle Valoab133152010-01-12 10:42:31 +02001628 if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_BK)
1629 uapsd = true;
Jiri Bencf0706e82007-05-05 11:45:53 -07001630 break;
Jouni Malinen0eeb59f2009-03-05 17:23:46 +02001631 case 2: /* AC_VI */
Johannes Berge100bb62008-04-30 18:51:21 +02001632 queue = 1;
Johannes Berg988c0f72008-04-17 19:21:22 +02001633 if (acm)
Yoni Divinsky00e96de2012-06-20 15:39:13 +03001634 sdata->wmm_acm |= BIT(4) | BIT(5); /* CL/VI */
Kalle Valoab133152010-01-12 10:42:31 +02001635 if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_VI)
1636 uapsd = true;
Jiri Bencf0706e82007-05-05 11:45:53 -07001637 break;
Jouni Malinen0eeb59f2009-03-05 17:23:46 +02001638 case 3: /* AC_VO */
Johannes Berge100bb62008-04-30 18:51:21 +02001639 queue = 0;
Johannes Berg988c0f72008-04-17 19:21:22 +02001640 if (acm)
Yoni Divinsky00e96de2012-06-20 15:39:13 +03001641 sdata->wmm_acm |= BIT(6) | BIT(7); /* VO/NC */
Kalle Valoab133152010-01-12 10:42:31 +02001642 if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_VO)
1643 uapsd = true;
Jiri Bencf0706e82007-05-05 11:45:53 -07001644 break;
Jouni Malinen0eeb59f2009-03-05 17:23:46 +02001645 case 0: /* AC_BE */
Jiri Bencf0706e82007-05-05 11:45:53 -07001646 default:
Johannes Berge100bb62008-04-30 18:51:21 +02001647 queue = 2;
Johannes Berg988c0f72008-04-17 19:21:22 +02001648 if (acm)
Yoni Divinsky00e96de2012-06-20 15:39:13 +03001649 sdata->wmm_acm |= BIT(0) | BIT(3); /* BE/EE */
Kalle Valoab133152010-01-12 10:42:31 +02001650 if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_BE)
1651 uapsd = true;
Jiri Bencf0706e82007-05-05 11:45:53 -07001652 break;
1653 }
1654
1655 params.aifs = pos[0] & 0x0f;
1656 params.cw_max = ecw2cw((pos[1] & 0xf0) >> 4);
1657 params.cw_min = ecw2cw(pos[1] & 0x0f);
Johannes Bergf434b2d2008-07-10 11:22:31 +02001658 params.txop = get_unaligned_le16(pos + 2);
Alexander Bondar908f8d02013-04-07 09:53:30 +03001659 params.acm = acm;
Kalle Valoab133152010-01-12 10:42:31 +02001660 params.uapsd = uapsd;
1661
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02001662 mlme_dbg(sdata,
1663 "WMM queue=%d aci=%d acm=%d aifs=%d cWmin=%d cWmax=%d txop=%d uapsd=%d\n",
1664 queue, aci, acm,
1665 params.aifs, params.cw_min, params.cw_max,
1666 params.txop, params.uapsd);
Eliad Pellerf6f3def2011-09-25 20:06:54 +03001667 sdata->tx_conf[queue] = params;
1668 if (drv_conf_tx(local, sdata, queue, &params))
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02001669 sdata_err(sdata,
1670 "failed to set TX queue parameters for queue %d\n",
1671 queue);
Jiri Bencf0706e82007-05-05 11:45:53 -07001672 }
Stanislaw Gruszkae1b3ec12010-03-29 12:18:34 +02001673
1674 /* enable WMM or activate new settings */
Johannes Berg4ced3f72010-07-19 16:39:04 +02001675 sdata->vif.bss_conf.qos = true;
Johannes Berg7d257452012-07-06 17:37:43 +02001676 return true;
Jiri Bencf0706e82007-05-05 11:45:53 -07001677}
1678
Stanislaw Gruszka925e64c2012-05-16 15:27:20 +02001679static void __ieee80211_stop_poll(struct ieee80211_sub_if_data *sdata)
1680{
1681 lockdep_assert_held(&sdata->local->mtx);
1682
1683 sdata->u.mgd.flags &= ~(IEEE80211_STA_CONNECTION_POLL |
1684 IEEE80211_STA_BEACON_POLL);
1685 ieee80211_run_deferred_scan(sdata->local);
1686}
1687
1688static void ieee80211_stop_poll(struct ieee80211_sub_if_data *sdata)
1689{
1690 mutex_lock(&sdata->local->mtx);
1691 __ieee80211_stop_poll(sdata);
1692 mutex_unlock(&sdata->local->mtx);
1693}
1694
Johannes Berg7a5158e2008-10-08 10:59:33 +02001695static u32 ieee80211_handle_bss_capability(struct ieee80211_sub_if_data *sdata,
1696 u16 capab, bool erp_valid, u8 erp)
Daniel Drake56282212007-07-10 19:32:10 +02001697{
Johannes Bergbda39332008-10-11 01:51:51 +02001698 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
Johannes Berg471b3ef2007-12-28 14:32:58 +01001699 u32 changed = 0;
Johannes Berg7a5158e2008-10-08 10:59:33 +02001700 bool use_protection;
1701 bool use_short_preamble;
1702 bool use_short_slot;
1703
1704 if (erp_valid) {
1705 use_protection = (erp & WLAN_ERP_USE_PROTECTION) != 0;
1706 use_short_preamble = (erp & WLAN_ERP_BARKER_PREAMBLE) == 0;
1707 } else {
1708 use_protection = false;
1709 use_short_preamble = !!(capab & WLAN_CAPABILITY_SHORT_PREAMBLE);
1710 }
1711
1712 use_short_slot = !!(capab & WLAN_CAPABILITY_SHORT_SLOT_TIME);
Johannes Berg55de9082012-07-26 17:24:39 +02001713 if (ieee80211_get_sdata_band(sdata) == IEEE80211_BAND_5GHZ)
Felix Fietkau43d35342010-01-15 03:00:48 +01001714 use_short_slot = true;
Daniel Drake56282212007-07-10 19:32:10 +02001715
Johannes Berg471b3ef2007-12-28 14:32:58 +01001716 if (use_protection != bss_conf->use_cts_prot) {
Johannes Berg471b3ef2007-12-28 14:32:58 +01001717 bss_conf->use_cts_prot = use_protection;
1718 changed |= BSS_CHANGED_ERP_CTS_PROT;
Daniel Drake56282212007-07-10 19:32:10 +02001719 }
Daniel Drake7e9ed182007-07-27 15:43:24 +02001720
Vladimir Koutnyd43c7b32008-03-31 17:05:03 +02001721 if (use_short_preamble != bss_conf->use_short_preamble) {
Vladimir Koutnyd43c7b32008-03-31 17:05:03 +02001722 bss_conf->use_short_preamble = use_short_preamble;
Johannes Berg471b3ef2007-12-28 14:32:58 +01001723 changed |= BSS_CHANGED_ERP_PREAMBLE;
Daniel Drake7e9ed182007-07-27 15:43:24 +02001724 }
Daniel Draked9430a32007-07-27 15:43:24 +02001725
Johannes Berg7a5158e2008-10-08 10:59:33 +02001726 if (use_short_slot != bss_conf->use_short_slot) {
Johannes Berg7a5158e2008-10-08 10:59:33 +02001727 bss_conf->use_short_slot = use_short_slot;
1728 changed |= BSS_CHANGED_ERP_SLOT;
John W. Linville50c4afb2008-04-15 14:09:27 -04001729 }
1730
1731 return changed;
1732}
1733
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001734static void ieee80211_set_associated(struct ieee80211_sub_if_data *sdata,
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01001735 struct cfg80211_bss *cbss,
Johannes Bergae5eb022008-10-14 16:58:37 +02001736 u32 bss_info_changed)
Jiri Bencf0706e82007-05-05 11:45:53 -07001737{
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01001738 struct ieee80211_bss *bss = (void *)cbss->priv;
Johannes Berg471b3ef2007-12-28 14:32:58 +01001739 struct ieee80211_local *local = sdata->local;
Juuso Oikarinen68542962010-06-09 13:43:26 +03001740 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
Jiri Slabyd6f2da52007-08-28 17:01:54 -04001741
Johannes Bergae5eb022008-10-14 16:58:37 +02001742 bss_info_changed |= BSS_CHANGED_ASSOC;
Johannes Berg77fdaa12009-07-07 03:45:17 +02001743 bss_info_changed |= ieee80211_handle_bss_capability(sdata,
Luciano Coelho50ae34a2012-06-20 17:23:24 +03001744 bss_conf->assoc_capability, bss->has_erp_value, bss->erp_value);
Tomas Winkler21c0cbe2008-03-28 16:33:34 -07001745
Felix Fietkau7ccc8bd2010-11-19 22:55:38 +01001746 sdata->u.mgd.beacon_timeout = usecs_to_jiffies(ieee80211_tu_to_usec(
Ben Greear59c1ec22013-03-19 14:19:56 -07001747 beacon_loss_count * bss_conf->beacon_int));
Felix Fietkau7ccc8bd2010-11-19 22:55:38 +01001748
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01001749 sdata->u.mgd.associated = cbss;
1750 memcpy(sdata->u.mgd.bssid, cbss->bssid, ETH_ALEN);
Johannes Berg471b3ef2007-12-28 14:32:58 +01001751
Jouni Malinen17e4ec12010-03-29 23:28:30 -07001752 sdata->u.mgd.flags |= IEEE80211_STA_RESET_SIGNAL_AVE;
1753
Johannes Berg488dd7b2012-10-29 20:08:01 +01001754 if (sdata->vif.p2p) {
Johannes Berg9caf0362012-11-29 01:25:20 +01001755 const struct cfg80211_bss_ies *ies;
Johannes Berg488dd7b2012-10-29 20:08:01 +01001756
Johannes Berg9caf0362012-11-29 01:25:20 +01001757 rcu_read_lock();
1758 ies = rcu_dereference(cbss->ies);
1759 if (ies) {
Johannes Berg9caf0362012-11-29 01:25:20 +01001760 int ret;
1761
1762 ret = cfg80211_get_p2p_attr(
1763 ies->data, ies->len,
1764 IEEE80211_P2P_ATTR_ABSENCE_NOTICE,
Janusz Dziedzic67baf662013-03-21 15:47:56 +01001765 (u8 *) &bss_conf->p2p_noa_attr,
1766 sizeof(bss_conf->p2p_noa_attr));
Johannes Berg9caf0362012-11-29 01:25:20 +01001767 if (ret >= 2) {
Janusz Dziedzic67baf662013-03-21 15:47:56 +01001768 sdata->u.mgd.p2p_noa_index =
1769 bss_conf->p2p_noa_attr.index;
Johannes Berg9caf0362012-11-29 01:25:20 +01001770 bss_info_changed |= BSS_CHANGED_P2P_PS;
Johannes Berg9caf0362012-11-29 01:25:20 +01001771 }
Johannes Berg488dd7b2012-10-29 20:08:01 +01001772 }
Johannes Berg9caf0362012-11-29 01:25:20 +01001773 rcu_read_unlock();
Johannes Berg488dd7b2012-10-29 20:08:01 +01001774 }
1775
Johannes Bergb291ba12009-07-10 15:29:03 +02001776 /* just to be sure */
Stanislaw Gruszka925e64c2012-05-16 15:27:20 +02001777 ieee80211_stop_poll(sdata);
Johannes Bergb291ba12009-07-10 15:29:03 +02001778
Tomas Winklerf5e5bf22008-09-08 17:33:39 +02001779 ieee80211_led_assoc(local, 1);
1780
Alexander Bondar989c6502013-05-16 17:34:17 +03001781 if (sdata->u.mgd.have_beacon) {
Johannes Berg826262c2012-12-10 16:38:14 +02001782 /*
1783 * If the AP is buggy we may get here with no DTIM period
1784 * known, so assume it's 1 which is the only safe assumption
1785 * in that case, although if the TIM IE is broken powersave
1786 * probably just won't work at all.
1787 */
1788 bss_conf->dtim_period = sdata->u.mgd.dtim_period ?: 1;
Alexander Bondar817cee72013-05-19 14:23:57 +03001789 bss_conf->beacon_rate = bss->beacon_rate;
Alexander Bondar989c6502013-05-16 17:34:17 +03001790 bss_info_changed |= BSS_CHANGED_BEACON_INFO;
Johannes Berg826262c2012-12-10 16:38:14 +02001791 } else {
Alexander Bondar817cee72013-05-19 14:23:57 +03001792 bss_conf->beacon_rate = NULL;
Johannes Berge5b900d2010-07-29 16:08:55 +02001793 bss_conf->dtim_period = 0;
Johannes Berg826262c2012-12-10 16:38:14 +02001794 }
Johannes Berge5b900d2010-07-29 16:08:55 +02001795
Juuso Oikarinen68542962010-06-09 13:43:26 +03001796 bss_conf->assoc = 1;
Johannes Berg9cef8732009-05-14 13:10:14 +02001797
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02001798 /* Tell the driver to monitor connection quality (if supported) */
Johannes Bergea086352012-01-19 09:29:58 +01001799 if (sdata->vif.driver_flags & IEEE80211_VIF_SUPPORTS_CQM_RSSI &&
Juuso Oikarinen68542962010-06-09 13:43:26 +03001800 bss_conf->cqm_rssi_thold)
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02001801 bss_info_changed |= BSS_CHANGED_CQM;
1802
Juuso Oikarinen68542962010-06-09 13:43:26 +03001803 /* Enable ARP filtering */
Johannes Berg0f19b412013-01-14 16:39:07 +01001804 if (bss_conf->arp_addr_cnt)
Juuso Oikarinen68542962010-06-09 13:43:26 +03001805 bss_info_changed |= BSS_CHANGED_ARP_FILTER;
Juuso Oikarinen68542962010-06-09 13:43:26 +03001806
Johannes Bergae5eb022008-10-14 16:58:37 +02001807 ieee80211_bss_info_change_notify(sdata, bss_info_changed);
Guy Cohen8db93692008-07-03 19:56:13 +03001808
Johannes Berg056508d2009-07-30 21:43:55 +02001809 mutex_lock(&local->iflist_mtx);
1810 ieee80211_recalc_ps(local, -1);
1811 mutex_unlock(&local->iflist_mtx);
Kalle Valoe0cb6862008-12-18 23:35:13 +02001812
Johannes Berg04ecd252012-09-11 14:34:12 +02001813 ieee80211_recalc_smps(sdata);
Eliad Pellerab095872012-07-27 12:33:22 +03001814 ieee80211_recalc_ps_vif(sdata);
1815
Tomas Winklerf5e5bf22008-09-08 17:33:39 +02001816 netif_carrier_on(sdata->dev);
Jiri Bencf0706e82007-05-05 11:45:53 -07001817}
1818
Jouni Malinene69e95d2010-03-29 23:29:31 -07001819static void ieee80211_set_disassoc(struct ieee80211_sub_if_data *sdata,
Johannes Berg37ad3882012-02-24 13:50:54 +01001820 u16 stype, u16 reason, bool tx,
1821 u8 *frame_buf)
Tomas Winkleraa458d12008-09-09 00:32:12 +03001822{
Johannes Berg46900292009-02-15 12:44:28 +01001823 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Tomas Winkleraa458d12008-09-09 00:32:12 +03001824 struct ieee80211_local *local = sdata->local;
Johannes Berg3cc52402012-03-09 13:12:35 +01001825 u32 changed = 0;
Tomas Winkleraa458d12008-09-09 00:32:12 +03001826
Johannes Berg8d61ffa2013-05-10 12:32:47 +02001827 sdata_assert_lock(sdata);
Johannes Berg77fdaa12009-07-07 03:45:17 +02001828
Johannes Berg37ad3882012-02-24 13:50:54 +01001829 if (WARN_ON_ONCE(tx && !frame_buf))
1830 return;
1831
Johannes Bergb291ba12009-07-10 15:29:03 +02001832 if (WARN_ON(!ifmgd->associated))
1833 return;
1834
David Spinadel79543d82012-06-12 09:59:45 +03001835 ieee80211_stop_poll(sdata);
1836
Johannes Berg77fdaa12009-07-07 03:45:17 +02001837 ifmgd->associated = NULL;
Tomas Winkleraa458d12008-09-09 00:32:12 +03001838 netif_carrier_off(sdata->dev);
1839
Eliad Peller88bc40e2012-07-12 17:35:33 +03001840 /*
1841 * if we want to get out of ps before disassoc (why?) we have
1842 * to do it before sending disassoc, as otherwise the null-packet
1843 * won't be valid.
1844 */
1845 if (local->hw.conf.flags & IEEE80211_CONF_PS) {
1846 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
1847 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
1848 }
1849 local->ps_sdata = NULL;
1850
Eliad Pellerab095872012-07-27 12:33:22 +03001851 /* disable per-vif ps */
1852 ieee80211_recalc_ps_vif(sdata);
1853
Eliad Pellerf8239812012-06-27 14:18:22 +03001854 /* flush out any pending frame (e.g. DELBA) before deauth/disassoc */
1855 if (tx)
Johannes Berg39ecc012013-02-13 12:11:00 +01001856 ieee80211_flush_queues(local, sdata);
Eliad Pellerf8239812012-06-27 14:18:22 +03001857
Johannes Berg37ad3882012-02-24 13:50:54 +01001858 /* deauthenticate/disassociate now */
1859 if (tx || frame_buf)
Eliad Peller88a9e312012-06-01 11:14:03 +03001860 ieee80211_send_deauth_disassoc(sdata, ifmgd->bssid, stype,
1861 reason, tx, frame_buf);
Johannes Berg37ad3882012-02-24 13:50:54 +01001862
1863 /* flush out frame */
1864 if (tx)
Johannes Berg39ecc012013-02-13 12:11:00 +01001865 ieee80211_flush_queues(local, sdata);
Johannes Berg37ad3882012-02-24 13:50:54 +01001866
Eliad Peller88a9e312012-06-01 11:14:03 +03001867 /* clear bssid only after building the needed mgmt frames */
1868 memset(ifmgd->bssid, 0, ETH_ALEN);
1869
Johannes Berg37ad3882012-02-24 13:50:54 +01001870 /* remove AP and TDLS peers */
Johannes Berg051007d2012-12-13 23:49:02 +01001871 sta_info_flush_defer(sdata);
Johannes Berg37ad3882012-02-24 13:50:54 +01001872
1873 /* finally reset all BSS / config parameters */
Tomas Winklerf5e5bf22008-09-08 17:33:39 +02001874 changed |= ieee80211_reset_erp_info(sdata);
1875
Tomas Winklerf5e5bf22008-09-08 17:33:39 +02001876 ieee80211_led_assoc(local, 0);
Johannes Bergae5eb022008-10-14 16:58:37 +02001877 changed |= BSS_CHANGED_ASSOC;
1878 sdata->vif.bss_conf.assoc = false;
Tomas Winklerf5e5bf22008-09-08 17:33:39 +02001879
Janusz Dziedzic67baf662013-03-21 15:47:56 +01001880 ifmgd->p2p_noa_index = -1;
1881 memset(&sdata->vif.bss_conf.p2p_noa_attr, 0,
1882 sizeof(sdata->vif.bss_conf.p2p_noa_attr));
Johannes Berg488dd7b2012-10-29 20:08:01 +01001883
Johannes Bergdd5ecfe2013-02-21 17:40:19 +01001884 /* on the next assoc, re-program HT/VHT parameters */
Ben Greearef96a8422011-11-18 11:32:00 -08001885 memset(&ifmgd->ht_capa, 0, sizeof(ifmgd->ht_capa));
1886 memset(&ifmgd->ht_capa_mask, 0, sizeof(ifmgd->ht_capa_mask));
Johannes Bergdd5ecfe2013-02-21 17:40:19 +01001887 memset(&ifmgd->vht_capa, 0, sizeof(ifmgd->vht_capa));
1888 memset(&ifmgd->vht_capa_mask, 0, sizeof(ifmgd->vht_capa_mask));
Johannes Berg413ad502009-05-08 21:21:06 +02001889
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02001890 sdata->ap_power_level = IEEE80211_UNSET_POWER_LEVEL;
Vasanthakumar Thiagarajana8302de2009-01-09 18:14:15 +05301891
Kalle Valo520eb822008-12-18 23:35:27 +02001892 del_timer_sync(&local->dynamic_ps_timer);
1893 cancel_work_sync(&local->dynamic_ps_enable_work);
1894
Juuso Oikarinen68542962010-06-09 13:43:26 +03001895 /* Disable ARP filtering */
Johannes Berg0f19b412013-01-14 16:39:07 +01001896 if (sdata->vif.bss_conf.arp_addr_cnt)
Juuso Oikarinen68542962010-06-09 13:43:26 +03001897 changed |= BSS_CHANGED_ARP_FILTER;
Juuso Oikarinen68542962010-06-09 13:43:26 +03001898
Johannes Berg3abead52012-03-02 15:56:59 +01001899 sdata->vif.bss_conf.qos = false;
1900 changed |= BSS_CHANGED_QOS;
1901
Johannes Berg0aaffa92010-05-05 15:28:27 +02001902 /* The BSSID (not really interesting) and HT changed */
1903 changed |= BSS_CHANGED_BSSID | BSS_CHANGED_HT;
Johannes Bergae5eb022008-10-14 16:58:37 +02001904 ieee80211_bss_info_change_notify(sdata, changed);
Tomas Winkler8e268e42008-11-25 13:05:44 +02001905
Johannes Berg3abead52012-03-02 15:56:59 +01001906 /* disassociated - set to defaults now */
1907 ieee80211_set_wmm_default(sdata, false);
1908
Johannes Bergb9dcf712010-08-27 12:35:54 +02001909 del_timer_sync(&sdata->u.mgd.conn_mon_timer);
1910 del_timer_sync(&sdata->u.mgd.bcn_mon_timer);
1911 del_timer_sync(&sdata->u.mgd.timer);
1912 del_timer_sync(&sdata->u.mgd.chswitch_timer);
Johannes Berg2d9957c2012-08-01 20:54:52 +02001913
Johannes Berg826262c2012-12-10 16:38:14 +02001914 sdata->vif.bss_conf.dtim_period = 0;
Alexander Bondar817cee72013-05-19 14:23:57 +03001915 sdata->vif.bss_conf.beacon_rate = NULL;
1916
Alexander Bondar989c6502013-05-16 17:34:17 +03001917 ifmgd->have_beacon = false;
Johannes Berg826262c2012-12-10 16:38:14 +02001918
Johannes Berg028e8da02012-11-26 11:57:41 +01001919 ifmgd->flags = 0;
1920 ieee80211_vif_release_channel(sdata);
Tomas Winkleraa458d12008-09-09 00:32:12 +03001921}
Jiri Bencf0706e82007-05-05 11:45:53 -07001922
Kalle Valo3cf335d2009-03-22 21:57:06 +02001923void ieee80211_sta_rx_notify(struct ieee80211_sub_if_data *sdata,
1924 struct ieee80211_hdr *hdr)
1925{
1926 /*
1927 * We can postpone the mgd.timer whenever receiving unicast frames
1928 * from AP because we know that the connection is working both ways
1929 * at that time. But multicast frames (and hence also beacons) must
1930 * be ignored here, because we need to trigger the timer during
Johannes Bergb291ba12009-07-10 15:29:03 +02001931 * data idle periods for sending the periodic probe request to the
1932 * AP we're connected to.
Kalle Valo3cf335d2009-03-22 21:57:06 +02001933 */
Johannes Bergb291ba12009-07-10 15:29:03 +02001934 if (is_multicast_ether_addr(hdr->addr1))
1935 return;
1936
Luis R. Rodriguezbe099e82010-09-16 15:12:29 -04001937 ieee80211_sta_reset_conn_monitor(sdata);
Kalle Valo3cf335d2009-03-22 21:57:06 +02001938}
Jiri Bencf0706e82007-05-05 11:45:53 -07001939
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001940static void ieee80211_reset_ap_probe(struct ieee80211_sub_if_data *sdata)
1941{
1942 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001943 struct ieee80211_local *local = sdata->local;
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001944
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001945 mutex_lock(&local->mtx);
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001946 if (!(ifmgd->flags & (IEEE80211_STA_BEACON_POLL |
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001947 IEEE80211_STA_CONNECTION_POLL))) {
1948 mutex_unlock(&local->mtx);
1949 return;
1950 }
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001951
Stanislaw Gruszka925e64c2012-05-16 15:27:20 +02001952 __ieee80211_stop_poll(sdata);
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001953
1954 mutex_lock(&local->iflist_mtx);
1955 ieee80211_recalc_ps(local, -1);
1956 mutex_unlock(&local->iflist_mtx);
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001957
1958 if (sdata->local->hw.flags & IEEE80211_HW_CONNECTION_MONITOR)
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001959 goto out;
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001960
1961 /*
1962 * We've received a probe response, but are not sure whether
1963 * we have or will be receiving any beacons or data, so let's
1964 * schedule the timers again, just in case.
1965 */
1966 ieee80211_sta_reset_beacon_monitor(sdata);
1967
1968 mod_timer(&ifmgd->conn_mon_timer,
1969 round_jiffies_up(jiffies +
1970 IEEE80211_CONNECTION_IDLE_TIME));
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001971out:
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02001972 mutex_unlock(&local->mtx);
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001973}
1974
1975void ieee80211_sta_tx_notify(struct ieee80211_sub_if_data *sdata,
Felix Fietkau04ac3c02010-12-02 21:01:08 +01001976 struct ieee80211_hdr *hdr, bool ack)
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001977{
Felix Fietkau75706d02010-12-02 21:01:07 +01001978 if (!ieee80211_is_data(hdr->frame_control))
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001979 return;
1980
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001981 if (ieee80211_is_nullfunc(hdr->frame_control) &&
1982 sdata->u.mgd.probe_send_count > 0) {
Felix Fietkau04ac3c02010-12-02 21:01:08 +01001983 if (ack)
Wojciech Dubowikcab1c7f2013-02-14 14:08:37 +01001984 ieee80211_sta_reset_conn_monitor(sdata);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01001985 else
1986 sdata->u.mgd.nullfunc_failed = true;
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001987 ieee80211_queue_work(&sdata->local->hw, &sdata->work);
Wojciech Dubowikcab1c7f2013-02-14 14:08:37 +01001988 return;
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001989 }
Wojciech Dubowikcab1c7f2013-02-14 14:08:37 +01001990
1991 if (ack)
1992 ieee80211_sta_reset_conn_monitor(sdata);
Felix Fietkau4e5ff372010-11-23 03:10:31 +01001993}
1994
Maxim Levitskya43abf22009-07-31 18:54:12 +03001995static void ieee80211_mgd_probe_ap_send(struct ieee80211_sub_if_data *sdata)
1996{
1997 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1998 const u8 *ssid;
Luis R. Rodriguezf01a0672010-09-16 15:12:34 -04001999 u8 *dst = ifmgd->associated->bssid;
Ben Greear180205b2011-02-04 15:30:24 -08002000 u8 unicast_limit = max(1, max_probe_tries - 3);
Luis R. Rodriguezf01a0672010-09-16 15:12:34 -04002001
2002 /*
2003 * Try sending broadcast probe requests for the last three
2004 * probe requests after the first ones failed since some
2005 * buggy APs only support broadcast probe requests.
2006 */
2007 if (ifmgd->probe_send_count >= unicast_limit)
2008 dst = NULL;
Maxim Levitskya43abf22009-07-31 18:54:12 +03002009
Felix Fietkau4e5ff372010-11-23 03:10:31 +01002010 /*
2011 * When the hardware reports an accurate Tx ACK status, it's
2012 * better to send a nullfunc frame instead of a probe request,
2013 * as it will kick us off the AP quickly if we aren't associated
2014 * anymore. The timeout will be reset if the frame is ACKed by
2015 * the AP.
2016 */
Soumik Das992e68b2012-05-20 15:31:13 +05302017 ifmgd->probe_send_count++;
2018
Felix Fietkau04ac3c02010-12-02 21:01:08 +01002019 if (sdata->local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS) {
2020 ifmgd->nullfunc_failed = false;
Felix Fietkau4e5ff372010-11-23 03:10:31 +01002021 ieee80211_send_nullfunc(sdata->local, sdata, 0);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01002022 } else {
Stanislaw Gruszka88c868c2012-03-29 16:30:41 +02002023 int ssid_len;
2024
Johannes Berg9caf0362012-11-29 01:25:20 +01002025 rcu_read_lock();
Felix Fietkau4e5ff372010-11-23 03:10:31 +01002026 ssid = ieee80211_bss_get_ie(ifmgd->associated, WLAN_EID_SSID);
Stanislaw Gruszka88c868c2012-03-29 16:30:41 +02002027 if (WARN_ON_ONCE(ssid == NULL))
2028 ssid_len = 0;
2029 else
2030 ssid_len = ssid[1];
2031
2032 ieee80211_send_probe_req(sdata, dst, ssid + 2, ssid_len, NULL,
Johannes Berg1672c0e32013-01-29 15:02:27 +01002033 0, (u32) -1, true, 0,
Johannes Berg55de9082012-07-26 17:24:39 +02002034 ifmgd->associated->channel, false);
Johannes Berg9caf0362012-11-29 01:25:20 +01002035 rcu_read_unlock();
Felix Fietkau4e5ff372010-11-23 03:10:31 +01002036 }
Maxim Levitskya43abf22009-07-31 18:54:12 +03002037
Ben Greear180205b2011-02-04 15:30:24 -08002038 ifmgd->probe_timeout = jiffies + msecs_to_jiffies(probe_wait_ms);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002039 run_again(sdata, ifmgd->probe_timeout);
Rajkumar Manoharanf69b9c72012-03-15 06:15:26 +05302040 if (sdata->local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS)
Johannes Berg39ecc012013-02-13 12:11:00 +01002041 ieee80211_flush_queues(sdata->local, sdata);
Maxim Levitskya43abf22009-07-31 18:54:12 +03002042}
2043
Johannes Bergb291ba12009-07-10 15:29:03 +02002044static void ieee80211_mgd_probe_ap(struct ieee80211_sub_if_data *sdata,
2045 bool beacon)
Kalle Valo04de8382009-03-22 21:57:35 +02002046{
Kalle Valo04de8382009-03-22 21:57:35 +02002047 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Bergb291ba12009-07-10 15:29:03 +02002048 bool already = false;
Johannes Berg34bfc412009-05-12 19:58:12 +02002049
Johannes Berg9607e6b2009-12-23 13:15:31 +01002050 if (!ieee80211_sdata_running(sdata))
Johannes Berg0e2b6282009-07-13 13:23:39 +02002051 return;
2052
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002053 sdata_lock(sdata);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002054
2055 if (!ifmgd->associated)
2056 goto out;
2057
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02002058 mutex_lock(&sdata->local->mtx);
2059
2060 if (sdata->local->tmp_channel || sdata->local->scanning) {
2061 mutex_unlock(&sdata->local->mtx);
2062 goto out;
2063 }
2064
Ben Greeara13fbe52013-03-25 11:19:35 -07002065 if (beacon) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002066 mlme_dbg_ratelimited(sdata,
Ben Greear59c1ec22013-03-19 14:19:56 -07002067 "detected beacon loss from AP (missed %d beacons) - probing\n",
2068 beacon_loss_count);
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002069
Ben Greeara13fbe52013-03-25 11:19:35 -07002070 ieee80211_cqm_rssi_notify(&sdata->vif,
2071 NL80211_CQM_RSSI_BEACON_LOSS_EVENT,
2072 GFP_KERNEL);
2073 }
Kalle Valo04de8382009-03-22 21:57:35 +02002074
Johannes Bergb291ba12009-07-10 15:29:03 +02002075 /*
2076 * The driver/our work has already reported this event or the
2077 * connection monitoring has kicked in and we have already sent
2078 * a probe request. Or maybe the AP died and the driver keeps
2079 * reporting until we disassociate...
2080 *
2081 * In either case we have to ignore the current call to this
2082 * function (except for setting the correct probe reason bit)
2083 * because otherwise we would reset the timer every time and
2084 * never check whether we received a probe response!
2085 */
2086 if (ifmgd->flags & (IEEE80211_STA_BEACON_POLL |
2087 IEEE80211_STA_CONNECTION_POLL))
2088 already = true;
2089
2090 if (beacon)
2091 ifmgd->flags |= IEEE80211_STA_BEACON_POLL;
2092 else
2093 ifmgd->flags |= IEEE80211_STA_CONNECTION_POLL;
2094
Stanislaw Gruszka133d40f2012-03-28 16:01:19 +02002095 mutex_unlock(&sdata->local->mtx);
2096
Johannes Bergb291ba12009-07-10 15:29:03 +02002097 if (already)
2098 goto out;
2099
Johannes Berg4e751842009-06-10 15:16:52 +02002100 mutex_lock(&sdata->local->iflist_mtx);
2101 ieee80211_recalc_ps(sdata->local, -1);
2102 mutex_unlock(&sdata->local->iflist_mtx);
2103
Maxim Levitskya43abf22009-07-31 18:54:12 +03002104 ifmgd->probe_send_count = 0;
2105 ieee80211_mgd_probe_ap_send(sdata);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002106 out:
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002107 sdata_unlock(sdata);
Kalle Valo04de8382009-03-22 21:57:35 +02002108}
2109
Juuso Oikarinena619a4c2010-11-11 08:50:18 +02002110struct sk_buff *ieee80211_ap_probereq_get(struct ieee80211_hw *hw,
2111 struct ieee80211_vif *vif)
2112{
2113 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
2114 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Eliad Pellerd9b3b282012-06-28 15:03:13 +03002115 struct cfg80211_bss *cbss;
Juuso Oikarinena619a4c2010-11-11 08:50:18 +02002116 struct sk_buff *skb;
2117 const u8 *ssid;
Stanislaw Gruszka88c868c2012-03-29 16:30:41 +02002118 int ssid_len;
Juuso Oikarinena619a4c2010-11-11 08:50:18 +02002119
2120 if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION))
2121 return NULL;
2122
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002123 sdata_assert_lock(sdata);
Juuso Oikarinena619a4c2010-11-11 08:50:18 +02002124
Eliad Pellerd9b3b282012-06-28 15:03:13 +03002125 if (ifmgd->associated)
2126 cbss = ifmgd->associated;
2127 else if (ifmgd->auth_data)
2128 cbss = ifmgd->auth_data->bss;
2129 else if (ifmgd->assoc_data)
2130 cbss = ifmgd->assoc_data->bss;
2131 else
Juuso Oikarinena619a4c2010-11-11 08:50:18 +02002132 return NULL;
2133
Johannes Berg9caf0362012-11-29 01:25:20 +01002134 rcu_read_lock();
Eliad Pellerd9b3b282012-06-28 15:03:13 +03002135 ssid = ieee80211_bss_get_ie(cbss, WLAN_EID_SSID);
Stanislaw Gruszka88c868c2012-03-29 16:30:41 +02002136 if (WARN_ON_ONCE(ssid == NULL))
2137 ssid_len = 0;
2138 else
2139 ssid_len = ssid[1];
2140
Eliad Pellerd9b3b282012-06-28 15:03:13 +03002141 skb = ieee80211_build_probe_req(sdata, cbss->bssid,
Johannes Berg55de9082012-07-26 17:24:39 +02002142 (u32) -1, cbss->channel,
Johannes Berg6b778632012-07-23 14:53:27 +02002143 ssid + 2, ssid_len,
Johannes Berg85a237f2011-07-18 18:08:36 +02002144 NULL, 0, true);
Johannes Berg9caf0362012-11-29 01:25:20 +01002145 rcu_read_unlock();
Juuso Oikarinena619a4c2010-11-11 08:50:18 +02002146
2147 return skb;
2148}
2149EXPORT_SYMBOL(ieee80211_ap_probereq_get);
2150
Johannes Bergeef9e542013-01-29 13:09:34 +01002151static void __ieee80211_disconnect(struct ieee80211_sub_if_data *sdata)
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02002152{
2153 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Antonio Quartulli6ae16772012-09-07 13:28:52 +02002154 u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN];
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02002155
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002156 sdata_lock(sdata);
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02002157 if (!ifmgd->associated) {
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002158 sdata_unlock(sdata);
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02002159 return;
2160 }
2161
Johannes Berg37ad3882012-02-24 13:50:54 +01002162 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH,
2163 WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY,
Johannes Bergeef9e542013-01-29 13:09:34 +01002164 true, frame_buf);
Johannes Berg882a7c62012-08-01 22:32:45 +02002165 ifmgd->flags &= ~IEEE80211_STA_CSA_RECEIVED;
Johannes Berg5b36ebd2013-02-13 14:21:45 +01002166 ieee80211_wake_queues_by_reason(&sdata->local->hw,
Johannes Berg445ea4e2013-02-13 12:25:28 +01002167 IEEE80211_MAX_QUEUE_MAP,
Johannes Berg5b36ebd2013-02-13 14:21:45 +01002168 IEEE80211_QUEUE_STOP_REASON_CSA);
Johannes Berg7da7cc12010-08-05 17:02:38 +02002169
Johannes Berg6ff57cf2013-05-16 00:55:00 +02002170 cfg80211_tx_mlme_mgmt(sdata->dev, frame_buf,
2171 IEEE80211_DEAUTH_FRAME_LEN);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002172 sdata_unlock(sdata);
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02002173}
2174
Johannes Bergcc74c0c2012-08-01 16:49:34 +02002175static void ieee80211_beacon_connection_loss_work(struct work_struct *work)
Johannes Bergb291ba12009-07-10 15:29:03 +02002176{
2177 struct ieee80211_sub_if_data *sdata =
2178 container_of(work, struct ieee80211_sub_if_data,
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02002179 u.mgd.beacon_connection_loss_work);
Paul Stewarta85e1d52011-12-09 11:01:49 -08002180 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2181 struct sta_info *sta;
2182
2183 if (ifmgd->associated) {
Mohammed Shafi Shajakhan30fa9042011-12-27 18:54:07 +05302184 rcu_read_lock();
Paul Stewarta85e1d52011-12-09 11:01:49 -08002185 sta = sta_info_get(sdata, ifmgd->bssid);
2186 if (sta)
2187 sta->beacon_loss_count++;
Mohammed Shafi Shajakhan30fa9042011-12-27 18:54:07 +05302188 rcu_read_unlock();
Paul Stewarta85e1d52011-12-09 11:01:49 -08002189 }
Johannes Bergb291ba12009-07-10 15:29:03 +02002190
Johannes Berg682bd382013-01-29 13:13:50 +01002191 if (ifmgd->connection_loss) {
Johannes Berg882a7c62012-08-01 22:32:45 +02002192 sdata_info(sdata, "Connection to AP %pM lost\n",
2193 ifmgd->bssid);
Johannes Bergeef9e542013-01-29 13:09:34 +01002194 __ieee80211_disconnect(sdata);
Johannes Berg882a7c62012-08-01 22:32:45 +02002195 } else {
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02002196 ieee80211_mgd_probe_ap(sdata, true);
Johannes Berg882a7c62012-08-01 22:32:45 +02002197 }
2198}
2199
2200static void ieee80211_csa_connection_drop_work(struct work_struct *work)
2201{
2202 struct ieee80211_sub_if_data *sdata =
2203 container_of(work, struct ieee80211_sub_if_data,
2204 u.mgd.csa_connection_drop_work);
2205
Johannes Bergeef9e542013-01-29 13:09:34 +01002206 __ieee80211_disconnect(sdata);
Johannes Bergb291ba12009-07-10 15:29:03 +02002207}
2208
Kalle Valo04de8382009-03-22 21:57:35 +02002209void ieee80211_beacon_loss(struct ieee80211_vif *vif)
2210{
2211 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02002212 struct ieee80211_hw *hw = &sdata->local->hw;
Kalle Valo04de8382009-03-22 21:57:35 +02002213
Johannes Bergb5878a22010-04-07 16:48:40 +02002214 trace_api_beacon_loss(sdata);
2215
Johannes Berg682bd382013-01-29 13:13:50 +01002216 sdata->u.mgd.connection_loss = false;
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02002217 ieee80211_queue_work(hw, &sdata->u.mgd.beacon_connection_loss_work);
Kalle Valo04de8382009-03-22 21:57:35 +02002218}
2219EXPORT_SYMBOL(ieee80211_beacon_loss);
2220
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02002221void ieee80211_connection_loss(struct ieee80211_vif *vif)
2222{
2223 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
2224 struct ieee80211_hw *hw = &sdata->local->hw;
2225
Johannes Bergb5878a22010-04-07 16:48:40 +02002226 trace_api_connection_loss(sdata);
2227
Johannes Berg682bd382013-01-29 13:13:50 +01002228 sdata->u.mgd.connection_loss = true;
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02002229 ieee80211_queue_work(hw, &sdata->u.mgd.beacon_connection_loss_work);
2230}
2231EXPORT_SYMBOL(ieee80211_connection_loss);
2232
2233
Johannes Berg66e67e42012-01-20 13:55:27 +01002234static void ieee80211_destroy_auth_data(struct ieee80211_sub_if_data *sdata,
2235 bool assoc)
2236{
2237 struct ieee80211_mgd_auth_data *auth_data = sdata->u.mgd.auth_data;
2238
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002239 sdata_assert_lock(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01002240
Johannes Berg66e67e42012-01-20 13:55:27 +01002241 if (!assoc) {
2242 sta_info_destroy_addr(sdata, auth_data->bss->bssid);
2243
2244 memset(sdata->u.mgd.bssid, 0, ETH_ALEN);
2245 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BSSID);
Johannes Berg028e8da02012-11-26 11:57:41 +01002246 sdata->u.mgd.flags = 0;
Johannes Berg55de9082012-07-26 17:24:39 +02002247 ieee80211_vif_release_channel(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01002248 }
2249
Johannes Berg5b112d32013-02-01 01:49:58 +01002250 cfg80211_put_bss(sdata->local->hw.wiphy, auth_data->bss);
Johannes Berg66e67e42012-01-20 13:55:27 +01002251 kfree(auth_data);
2252 sdata->u.mgd.auth_data = NULL;
2253}
2254
2255static void ieee80211_auth_challenge(struct ieee80211_sub_if_data *sdata,
2256 struct ieee80211_mgmt *mgmt, size_t len)
2257{
Johannes Berg1672c0e32013-01-29 15:02:27 +01002258 struct ieee80211_local *local = sdata->local;
Johannes Berg66e67e42012-01-20 13:55:27 +01002259 struct ieee80211_mgd_auth_data *auth_data = sdata->u.mgd.auth_data;
2260 u8 *pos;
2261 struct ieee802_11_elems elems;
Johannes Berg1672c0e32013-01-29 15:02:27 +01002262 u32 tx_flags = 0;
Johannes Berg66e67e42012-01-20 13:55:27 +01002263
2264 pos = mgmt->u.auth.variable;
Johannes Bergb2e506b2013-03-26 14:54:16 +01002265 ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), false, &elems);
Johannes Berg66e67e42012-01-20 13:55:27 +01002266 if (!elems.challenge)
2267 return;
2268 auth_data->expected_transaction = 4;
Johannes Berga1845fc2012-06-27 13:18:36 +02002269 drv_mgd_prepare_tx(sdata->local, sdata);
Johannes Berg1672c0e32013-01-29 15:02:27 +01002270 if (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS)
2271 tx_flags = IEEE80211_TX_CTL_REQ_TX_STATUS |
2272 IEEE80211_TX_INTFL_MLME_CONN_TX;
Jouni Malinen700e8ea2012-09-30 19:29:37 +03002273 ieee80211_send_auth(sdata, 3, auth_data->algorithm, 0,
Johannes Berg66e67e42012-01-20 13:55:27 +01002274 elems.challenge - 2, elems.challenge_len + 2,
2275 auth_data->bss->bssid, auth_data->bss->bssid,
2276 auth_data->key, auth_data->key_len,
Johannes Berg1672c0e32013-01-29 15:02:27 +01002277 auth_data->key_idx, tx_flags);
Johannes Berg66e67e42012-01-20 13:55:27 +01002278}
2279
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002280static void ieee80211_rx_mgmt_auth(struct ieee80211_sub_if_data *sdata,
2281 struct ieee80211_mgmt *mgmt, size_t len)
Johannes Berg66e67e42012-01-20 13:55:27 +01002282{
2283 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2284 u8 bssid[ETH_ALEN];
2285 u16 auth_alg, auth_transaction, status_code;
2286 struct sta_info *sta;
2287
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002288 sdata_assert_lock(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01002289
2290 if (len < 24 + 6)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002291 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002292
2293 if (!ifmgd->auth_data || ifmgd->auth_data->done)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002294 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002295
2296 memcpy(bssid, ifmgd->auth_data->bss->bssid, ETH_ALEN);
2297
Joe Perchesb203ca32012-05-08 18:56:52 +00002298 if (!ether_addr_equal(bssid, mgmt->bssid))
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002299 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002300
2301 auth_alg = le16_to_cpu(mgmt->u.auth.auth_alg);
2302 auth_transaction = le16_to_cpu(mgmt->u.auth.auth_transaction);
2303 status_code = le16_to_cpu(mgmt->u.auth.status_code);
2304
2305 if (auth_alg != ifmgd->auth_data->algorithm ||
Jouni Malinen0f4126e2012-09-30 19:29:38 +03002306 auth_transaction != ifmgd->auth_data->expected_transaction) {
2307 sdata_info(sdata, "%pM unexpected authentication state: alg %d (expected %d) transact %d (expected %d)\n",
2308 mgmt->sa, auth_alg, ifmgd->auth_data->algorithm,
2309 auth_transaction,
2310 ifmgd->auth_data->expected_transaction);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002311 return;
Jouni Malinen0f4126e2012-09-30 19:29:38 +03002312 }
Johannes Berg66e67e42012-01-20 13:55:27 +01002313
2314 if (status_code != WLAN_STATUS_SUCCESS) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002315 sdata_info(sdata, "%pM denied authentication (status %d)\n",
2316 mgmt->sa, status_code);
Eliad Pellerdac211e2012-05-13 18:07:04 +03002317 ieee80211_destroy_auth_data(sdata, false);
Johannes Berg6ff57cf2013-05-16 00:55:00 +02002318 cfg80211_rx_mlme_mgmt(sdata->dev, (u8 *)mgmt, len);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002319 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002320 }
2321
2322 switch (ifmgd->auth_data->algorithm) {
2323 case WLAN_AUTH_OPEN:
2324 case WLAN_AUTH_LEAP:
2325 case WLAN_AUTH_FT:
Jouni Malinen6b8ece32012-09-30 19:29:40 +03002326 case WLAN_AUTH_SAE:
Johannes Berg66e67e42012-01-20 13:55:27 +01002327 break;
2328 case WLAN_AUTH_SHARED_KEY:
2329 if (ifmgd->auth_data->expected_transaction != 4) {
2330 ieee80211_auth_challenge(sdata, mgmt, len);
2331 /* need another frame */
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002332 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002333 }
2334 break;
2335 default:
2336 WARN_ONCE(1, "invalid auth alg %d",
2337 ifmgd->auth_data->algorithm);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002338 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002339 }
2340
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002341 sdata_info(sdata, "authenticated\n");
Johannes Berg66e67e42012-01-20 13:55:27 +01002342 ifmgd->auth_data->done = true;
2343 ifmgd->auth_data->timeout = jiffies + IEEE80211_AUTH_WAIT_ASSOC;
Johannes Berg89afe612013-02-13 15:39:57 +01002344 ifmgd->auth_data->timeout_started = true;
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002345 run_again(sdata, ifmgd->auth_data->timeout);
Johannes Berg66e67e42012-01-20 13:55:27 +01002346
Jouni Malinen6b8ece32012-09-30 19:29:40 +03002347 if (ifmgd->auth_data->algorithm == WLAN_AUTH_SAE &&
2348 ifmgd->auth_data->expected_transaction != 2) {
2349 /*
2350 * Report auth frame to user space for processing since another
2351 * round of Authentication frames is still needed.
2352 */
Johannes Berg6ff57cf2013-05-16 00:55:00 +02002353 cfg80211_rx_mlme_mgmt(sdata->dev, (u8 *)mgmt, len);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002354 return;
Jouni Malinen6b8ece32012-09-30 19:29:40 +03002355 }
2356
Johannes Berg66e67e42012-01-20 13:55:27 +01002357 /* move station state to auth */
2358 mutex_lock(&sdata->local->sta_mtx);
2359 sta = sta_info_get(sdata, bssid);
2360 if (!sta) {
2361 WARN_ONCE(1, "%s: STA %pM not found", sdata->name, bssid);
2362 goto out_err;
2363 }
2364 if (sta_info_move_state(sta, IEEE80211_STA_AUTH)) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002365 sdata_info(sdata, "failed moving %pM to auth\n", bssid);
Johannes Berg66e67e42012-01-20 13:55:27 +01002366 goto out_err;
2367 }
2368 mutex_unlock(&sdata->local->sta_mtx);
2369
Johannes Berg6ff57cf2013-05-16 00:55:00 +02002370 cfg80211_rx_mlme_mgmt(sdata->dev, (u8 *)mgmt, len);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002371 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002372 out_err:
2373 mutex_unlock(&sdata->local->sta_mtx);
2374 /* ignore frame -- wait for timeout */
Johannes Berg66e67e42012-01-20 13:55:27 +01002375}
2376
2377
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002378static void ieee80211_rx_mgmt_deauth(struct ieee80211_sub_if_data *sdata,
2379 struct ieee80211_mgmt *mgmt, size_t len)
Jiri Bencf0706e82007-05-05 11:45:53 -07002380{
Johannes Berg46900292009-02-15 12:44:28 +01002381 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg77fdaa12009-07-07 03:45:17 +02002382 const u8 *bssid = NULL;
Jiri Bencf0706e82007-05-05 11:45:53 -07002383 u16 reason_code;
2384
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002385 sdata_assert_lock(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01002386
Johannes Bergf4ea83d2008-06-30 15:10:46 +02002387 if (len < 24 + 2)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002388 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07002389
Johannes Berg66e67e42012-01-20 13:55:27 +01002390 if (!ifmgd->associated ||
Joe Perchesb203ca32012-05-08 18:56:52 +00002391 !ether_addr_equal(mgmt->bssid, ifmgd->associated->bssid))
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002392 return;
Johannes Berg77fdaa12009-07-07 03:45:17 +02002393
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01002394 bssid = ifmgd->associated->bssid;
Jiri Bencf0706e82007-05-05 11:45:53 -07002395
2396 reason_code = le16_to_cpu(mgmt->u.deauth.reason_code);
2397
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002398 sdata_info(sdata, "deauthenticated from %pM (Reason: %u)\n",
2399 bssid, reason_code);
Jiri Bencf0706e82007-05-05 11:45:53 -07002400
Johannes Berg37ad3882012-02-24 13:50:54 +01002401 ieee80211_set_disassoc(sdata, 0, 0, false, NULL);
2402
Johannes Berg6ff57cf2013-05-16 00:55:00 +02002403 cfg80211_rx_mlme_mgmt(sdata->dev, (u8 *)mgmt, len);
Jiri Bencf0706e82007-05-05 11:45:53 -07002404}
2405
2406
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002407static void ieee80211_rx_mgmt_disassoc(struct ieee80211_sub_if_data *sdata,
2408 struct ieee80211_mgmt *mgmt, size_t len)
Jiri Bencf0706e82007-05-05 11:45:53 -07002409{
Johannes Berg46900292009-02-15 12:44:28 +01002410 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jiri Bencf0706e82007-05-05 11:45:53 -07002411 u16 reason_code;
2412
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002413 sdata_assert_lock(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01002414
Johannes Bergf4ea83d2008-06-30 15:10:46 +02002415 if (len < 24 + 2)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002416 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07002417
Johannes Berg66e67e42012-01-20 13:55:27 +01002418 if (!ifmgd->associated ||
Joe Perchesb203ca32012-05-08 18:56:52 +00002419 !ether_addr_equal(mgmt->bssid, ifmgd->associated->bssid))
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002420 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07002421
2422 reason_code = le16_to_cpu(mgmt->u.disassoc.reason_code);
2423
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002424 sdata_info(sdata, "disassociated from %pM (Reason: %u)\n",
2425 mgmt->sa, reason_code);
Jiri Bencf0706e82007-05-05 11:45:53 -07002426
Johannes Berg37ad3882012-02-24 13:50:54 +01002427 ieee80211_set_disassoc(sdata, 0, 0, false, NULL);
2428
Johannes Berg6ff57cf2013-05-16 00:55:00 +02002429 cfg80211_rx_mlme_mgmt(sdata->dev, (u8 *)mgmt, len);
Jiri Bencf0706e82007-05-05 11:45:53 -07002430}
2431
Christian Lamparterc74d0842011-10-15 00:14:49 +02002432static void ieee80211_get_rates(struct ieee80211_supported_band *sband,
2433 u8 *supp_rates, unsigned int supp_rates_len,
2434 u32 *rates, u32 *basic_rates,
2435 bool *have_higher_than_11mbit,
Simon Wunderlich2103dec2013-07-08 16:55:53 +02002436 int *min_rate, int *min_rate_index,
2437 int shift, u32 rate_flags)
Christian Lamparterc74d0842011-10-15 00:14:49 +02002438{
2439 int i, j;
2440
2441 for (i = 0; i < supp_rates_len; i++) {
Simon Wunderlich2103dec2013-07-08 16:55:53 +02002442 int rate = supp_rates[i] & 0x7f;
Christian Lamparterc74d0842011-10-15 00:14:49 +02002443 bool is_basic = !!(supp_rates[i] & 0x80);
2444
Simon Wunderlich2103dec2013-07-08 16:55:53 +02002445 if ((rate * 5 * (1 << shift)) > 110)
Christian Lamparterc74d0842011-10-15 00:14:49 +02002446 *have_higher_than_11mbit = true;
2447
2448 /*
2449 * BSS_MEMBERSHIP_SELECTOR_HT_PHY is defined in 802.11n-2009
2450 * 7.3.2.2 as a magic value instead of a rate. Hence, skip it.
2451 *
2452 * Note: Even through the membership selector and the basic
2453 * rate flag share the same bit, they are not exactly
2454 * the same.
2455 */
2456 if (!!(supp_rates[i] & 0x80) &&
2457 (supp_rates[i] & 0x7f) == BSS_MEMBERSHIP_SELECTOR_HT_PHY)
2458 continue;
2459
2460 for (j = 0; j < sband->n_bitrates; j++) {
Simon Wunderlich2103dec2013-07-08 16:55:53 +02002461 struct ieee80211_rate *br;
2462 int brate;
2463
2464 br = &sband->bitrates[j];
2465 if ((rate_flags & br->flags) != rate_flags)
2466 continue;
2467
2468 brate = DIV_ROUND_UP(br->bitrate, (1 << shift) * 5);
2469 if (brate == rate) {
Christian Lamparterc74d0842011-10-15 00:14:49 +02002470 *rates |= BIT(j);
2471 if (is_basic)
2472 *basic_rates |= BIT(j);
Simon Wunderlich2103dec2013-07-08 16:55:53 +02002473 if ((rate * 5) < *min_rate) {
2474 *min_rate = rate * 5;
Christian Lamparterc74d0842011-10-15 00:14:49 +02002475 *min_rate_index = j;
2476 }
2477 break;
2478 }
2479 }
2480 }
2481}
Jiri Bencf0706e82007-05-05 11:45:53 -07002482
Johannes Berg66e67e42012-01-20 13:55:27 +01002483static void ieee80211_destroy_assoc_data(struct ieee80211_sub_if_data *sdata,
2484 bool assoc)
2485{
2486 struct ieee80211_mgd_assoc_data *assoc_data = sdata->u.mgd.assoc_data;
2487
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002488 sdata_assert_lock(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01002489
Johannes Berg66e67e42012-01-20 13:55:27 +01002490 if (!assoc) {
2491 sta_info_destroy_addr(sdata, assoc_data->bss->bssid);
2492
2493 memset(sdata->u.mgd.bssid, 0, ETH_ALEN);
2494 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BSSID);
Johannes Berg028e8da02012-11-26 11:57:41 +01002495 sdata->u.mgd.flags = 0;
Johannes Berg55de9082012-07-26 17:24:39 +02002496 ieee80211_vif_release_channel(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01002497 }
2498
2499 kfree(assoc_data);
2500 sdata->u.mgd.assoc_data = NULL;
2501}
2502
2503static bool ieee80211_assoc_success(struct ieee80211_sub_if_data *sdata,
2504 struct cfg80211_bss *cbss,
Johannes Bergaf6b6372009-12-23 13:15:35 +01002505 struct ieee80211_mgmt *mgmt, size_t len)
Jiri Bencf0706e82007-05-05 11:45:53 -07002506{
Johannes Berg46900292009-02-15 12:44:28 +01002507 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg471b3ef2007-12-28 14:32:58 +01002508 struct ieee80211_local *local = sdata->local;
Johannes Berg8318d782008-01-24 19:38:38 +01002509 struct ieee80211_supported_band *sband;
Jiri Bencf0706e82007-05-05 11:45:53 -07002510 struct sta_info *sta;
Johannes Bergaf6b6372009-12-23 13:15:35 +01002511 u8 *pos;
Johannes Bergaf6b6372009-12-23 13:15:35 +01002512 u16 capab_info, aid;
Jiri Bencf0706e82007-05-05 11:45:53 -07002513 struct ieee802_11_elems elems;
Johannes Bergbda39332008-10-11 01:51:51 +02002514 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
Johannes Berg35d865a2013-05-28 10:54:03 +02002515 const struct cfg80211_bss_ies *bss_ies = NULL;
2516 struct ieee80211_mgd_assoc_data *assoc_data = ifmgd->assoc_data;
Johannes Bergae5eb022008-10-14 16:58:37 +02002517 u32 changed = 0;
Christian Lamparterc74d0842011-10-15 00:14:49 +02002518 int err;
Johannes Berg35d865a2013-05-28 10:54:03 +02002519 bool ret;
Jiri Bencf0706e82007-05-05 11:45:53 -07002520
Johannes Bergaf6b6372009-12-23 13:15:35 +01002521 /* AssocResp and ReassocResp have identical structure */
Jiri Bencf0706e82007-05-05 11:45:53 -07002522
Jiri Bencf0706e82007-05-05 11:45:53 -07002523 aid = le16_to_cpu(mgmt->u.assoc_resp.aid);
Johannes Bergaf6b6372009-12-23 13:15:35 +01002524 capab_info = le16_to_cpu(mgmt->u.assoc_resp.capab_info);
Jiri Bencf0706e82007-05-05 11:45:53 -07002525
Johannes Berg1dd84aa2007-10-10 12:03:41 +02002526 if ((aid & (BIT(15) | BIT(14))) != (BIT(15) | BIT(14)))
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002527 sdata_info(sdata, "invalid AID value 0x%x; bits 15:14 not set\n",
2528 aid);
Johannes Berg1dd84aa2007-10-10 12:03:41 +02002529 aid &= ~(BIT(15) | BIT(14));
2530
Johannes Berg05cb9102011-10-28 11:59:47 +02002531 ifmgd->broken_ap = false;
2532
2533 if (aid == 0 || aid > IEEE80211_MAX_AID) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002534 sdata_info(sdata, "invalid AID value %d (out of range), turn off PS\n",
2535 aid);
Johannes Berg05cb9102011-10-28 11:59:47 +02002536 aid = 0;
2537 ifmgd->broken_ap = true;
2538 }
2539
Johannes Bergaf6b6372009-12-23 13:15:35 +01002540 pos = mgmt->u.assoc_resp.variable;
Johannes Bergb2e506b2013-03-26 14:54:16 +01002541 ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), false, &elems);
Johannes Bergaf6b6372009-12-23 13:15:35 +01002542
Jiri Bencf0706e82007-05-05 11:45:53 -07002543 if (!elems.supp_rates) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002544 sdata_info(sdata, "no SuppRates element in AssocResp\n");
Johannes Bergaf6b6372009-12-23 13:15:35 +01002545 return false;
Jiri Bencf0706e82007-05-05 11:45:53 -07002546 }
2547
Johannes Berg46900292009-02-15 12:44:28 +01002548 ifmgd->aid = aid;
Jiri Bencf0706e82007-05-05 11:45:53 -07002549
Johannes Berg30eb1dc2013-02-08 15:12:14 +01002550 /*
Johannes Berg35d865a2013-05-28 10:54:03 +02002551 * Some APs are erroneously not including some information in their
2552 * (re)association response frames. Try to recover by using the data
2553 * from the beacon or probe response. This seems to afflict mobile
2554 * 2G/3G/4G wifi routers, reported models include the "Onda PN51T",
2555 * "Vodafone PocketWiFi 2", "ZTE MF60" and a similar T-Mobile device.
2556 */
2557 if ((assoc_data->wmm && !elems.wmm_param) ||
2558 (!(ifmgd->flags & IEEE80211_STA_DISABLE_HT) &&
2559 (!elems.ht_cap_elem || !elems.ht_operation)) ||
2560 (!(ifmgd->flags & IEEE80211_STA_DISABLE_VHT) &&
2561 (!elems.vht_cap_elem || !elems.vht_operation))) {
2562 const struct cfg80211_bss_ies *ies;
2563 struct ieee802_11_elems bss_elems;
2564
2565 rcu_read_lock();
2566 ies = rcu_dereference(cbss->ies);
2567 if (ies)
2568 bss_ies = kmemdup(ies, sizeof(*ies) + ies->len,
2569 GFP_ATOMIC);
2570 rcu_read_unlock();
2571 if (!bss_ies)
2572 return false;
2573
2574 ieee802_11_parse_elems(bss_ies->data, bss_ies->len,
2575 false, &bss_elems);
2576 if (assoc_data->wmm &&
2577 !elems.wmm_param && bss_elems.wmm_param) {
2578 elems.wmm_param = bss_elems.wmm_param;
2579 sdata_info(sdata,
2580 "AP bug: WMM param missing from AssocResp\n");
2581 }
2582
2583 /*
2584 * Also check if we requested HT/VHT, otherwise the AP doesn't
2585 * have to include the IEs in the (re)association response.
2586 */
2587 if (!elems.ht_cap_elem && bss_elems.ht_cap_elem &&
2588 !(ifmgd->flags & IEEE80211_STA_DISABLE_HT)) {
2589 elems.ht_cap_elem = bss_elems.ht_cap_elem;
2590 sdata_info(sdata,
2591 "AP bug: HT capability missing from AssocResp\n");
2592 }
2593 if (!elems.ht_operation && bss_elems.ht_operation &&
2594 !(ifmgd->flags & IEEE80211_STA_DISABLE_HT)) {
2595 elems.ht_operation = bss_elems.ht_operation;
2596 sdata_info(sdata,
2597 "AP bug: HT operation missing from AssocResp\n");
2598 }
2599 if (!elems.vht_cap_elem && bss_elems.vht_cap_elem &&
2600 !(ifmgd->flags & IEEE80211_STA_DISABLE_VHT)) {
2601 elems.vht_cap_elem = bss_elems.vht_cap_elem;
2602 sdata_info(sdata,
2603 "AP bug: VHT capa missing from AssocResp\n");
2604 }
2605 if (!elems.vht_operation && bss_elems.vht_operation &&
2606 !(ifmgd->flags & IEEE80211_STA_DISABLE_VHT)) {
2607 elems.vht_operation = bss_elems.vht_operation;
2608 sdata_info(sdata,
2609 "AP bug: VHT operation missing from AssocResp\n");
2610 }
2611 }
2612
2613 /*
Johannes Berg30eb1dc2013-02-08 15:12:14 +01002614 * We previously checked these in the beacon/probe response, so
2615 * they should be present here. This is just a safety net.
2616 */
2617 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_HT) &&
2618 (!elems.wmm_param || !elems.ht_cap_elem || !elems.ht_operation)) {
2619 sdata_info(sdata,
Johannes Berg35d865a2013-05-28 10:54:03 +02002620 "HT AP is missing WMM params or HT capability/operation\n");
2621 ret = false;
2622 goto out;
Johannes Berg30eb1dc2013-02-08 15:12:14 +01002623 }
2624
2625 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_VHT) &&
2626 (!elems.vht_cap_elem || !elems.vht_operation)) {
2627 sdata_info(sdata,
Johannes Berg35d865a2013-05-28 10:54:03 +02002628 "VHT AP is missing VHT capability/operation\n");
2629 ret = false;
2630 goto out;
Johannes Berg30eb1dc2013-02-08 15:12:14 +01002631 }
2632
Guy Eilam2a33bee2011-08-17 15:18:15 +03002633 mutex_lock(&sdata->local->sta_mtx);
2634 /*
2635 * station info was already allocated and inserted before
2636 * the association and should be available to us
2637 */
Johannes Berg7852e362012-01-20 13:55:24 +01002638 sta = sta_info_get(sdata, cbss->bssid);
Guy Eilam2a33bee2011-08-17 15:18:15 +03002639 if (WARN_ON(!sta)) {
2640 mutex_unlock(&sdata->local->sta_mtx);
Johannes Berg35d865a2013-05-28 10:54:03 +02002641 ret = false;
2642 goto out;
Jiri Bencf0706e82007-05-05 11:45:53 -07002643 }
2644
Johannes Berg55de9082012-07-26 17:24:39 +02002645 sband = local->hw.wiphy->bands[ieee80211_get_sdata_band(sdata)];
Johannes Berg8318d782008-01-24 19:38:38 +01002646
Johannes Berg30eb1dc2013-02-08 15:12:14 +01002647 /* Set up internal HT/VHT capabilities */
Johannes Berga8243b72012-11-22 14:32:09 +01002648 if (elems.ht_cap_elem && !(ifmgd->flags & IEEE80211_STA_DISABLE_HT))
Ben Greearef96a8422011-11-18 11:32:00 -08002649 ieee80211_ht_cap_ie_to_sta_ht_cap(sdata, sband,
Johannes Berge1a0c6b2013-02-07 11:47:44 +01002650 elems.ht_cap_elem, sta);
Johannes Berg64f68e52012-03-28 10:58:37 +02002651
Mahesh Palivela818255e2012-10-10 11:33:04 +00002652 if (elems.vht_cap_elem && !(ifmgd->flags & IEEE80211_STA_DISABLE_VHT))
2653 ieee80211_vht_cap_ie_to_sta_vht_cap(sdata, sband,
Johannes Berg4a342152013-02-07 11:58:58 +01002654 elems.vht_cap_elem, sta);
Mahesh Palivela818255e2012-10-10 11:33:04 +00002655
Johannes Berg30eb1dc2013-02-08 15:12:14 +01002656 /*
2657 * Some APs, e.g. Netgear WNDR3700, report invalid HT operation data
2658 * in their association response, so ignore that data for our own
2659 * configuration. If it changed since the last beacon, we'll get the
2660 * next beacon and update then.
2661 */
Johannes Berg11289582013-02-07 17:36:12 +01002662
Johannes Bergbee7f582013-02-07 22:24:55 +01002663 /*
2664 * If an operating mode notification IE is present, override the
2665 * NSS calculation (that would be done in rate_control_rate_init())
2666 * and use the # of streams from that element.
2667 */
2668 if (elems.opmode_notif &&
2669 !(*elems.opmode_notif & IEEE80211_OPMODE_NOTIF_RX_NSS_TYPE_BF)) {
2670 u8 nss;
2671
2672 nss = *elems.opmode_notif & IEEE80211_OPMODE_NOTIF_RX_NSS_MASK;
2673 nss >>= IEEE80211_OPMODE_NOTIF_RX_NSS_SHIFT;
2674 nss += 1;
2675 sta->sta.rx_nss = nss;
2676 }
2677
Johannes Berg4b7679a2008-09-18 18:14:18 +02002678 rate_control_rate_init(sta);
Jiri Bencf0706e82007-05-05 11:45:53 -07002679
Johannes Berg46900292009-02-15 12:44:28 +01002680 if (ifmgd->flags & IEEE80211_STA_MFP_ENABLED)
Johannes Bergc2c98fd2011-09-29 16:04:36 +02002681 set_sta_flag(sta, WLAN_STA_MFP);
Jouni Malinen5394af42009-01-08 13:31:59 +02002682
Johannes Bergddf4ac52008-10-22 11:41:38 +02002683 if (elems.wmm_param)
Johannes Bergc2c98fd2011-09-29 16:04:36 +02002684 set_sta_flag(sta, WLAN_STA_WME);
Johannes Bergddf4ac52008-10-22 11:41:38 +02002685
Johannes Berg3e4d40f2013-02-07 17:19:08 +01002686 err = sta_info_move_state(sta, IEEE80211_STA_ASSOC);
Johannes Bergc8987872012-01-20 13:55:17 +01002687 if (!err && !(ifmgd->flags & IEEE80211_STA_CONTROL_PORT))
2688 err = sta_info_move_state(sta, IEEE80211_STA_AUTHORIZED);
2689 if (err) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002690 sdata_info(sdata,
2691 "failed to move station %pM to desired state\n",
2692 sta->sta.addr);
Johannes Bergc8987872012-01-20 13:55:17 +01002693 WARN_ON(__sta_info_destroy(sta));
2694 mutex_unlock(&sdata->local->sta_mtx);
Johannes Berg35d865a2013-05-28 10:54:03 +02002695 ret = false;
2696 goto out;
Johannes Bergc8987872012-01-20 13:55:17 +01002697 }
2698
Johannes Berg7852e362012-01-20 13:55:24 +01002699 mutex_unlock(&sdata->local->sta_mtx);
Johannes Bergddf4ac52008-10-22 11:41:38 +02002700
Juuso Oikarinenf2176d72010-09-28 14:39:32 +03002701 /*
2702 * Always handle WMM once after association regardless
2703 * of the first value the AP uses. Setting -1 here has
2704 * that effect because the AP values is an unsigned
2705 * 4-bit value.
2706 */
2707 ifmgd->wmm_last_param_set = -1;
2708
Johannes Bergddf4ac52008-10-22 11:41:38 +02002709 if (elems.wmm_param)
Johannes Berg4ced3f72010-07-19 16:39:04 +02002710 ieee80211_sta_wmm_params(local, sdata, elems.wmm_param,
Jiri Bencf0706e82007-05-05 11:45:53 -07002711 elems.wmm_param_len);
Johannes Bergaa837e12009-05-07 16:16:24 +02002712 else
Johannes Berg3abead52012-03-02 15:56:59 +01002713 ieee80211_set_wmm_default(sdata, false);
2714 changed |= BSS_CHANGED_QOS;
Jiri Bencf0706e82007-05-05 11:45:53 -07002715
Tomas Winkler21c0cbe2008-03-28 16:33:34 -07002716 /* set AID and assoc capability,
2717 * ieee80211_set_associated() will tell the driver */
Johannes Berg8318d782008-01-24 19:38:38 +01002718 bss_conf->aid = aid;
Tomas Winkler21c0cbe2008-03-28 16:33:34 -07002719 bss_conf->assoc_capability = capab_info;
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01002720 ieee80211_set_associated(sdata, cbss, changed);
Jiri Bencf0706e82007-05-05 11:45:53 -07002721
Kalle Valo15b7b062009-03-22 21:57:14 +02002722 /*
Felix Fietkaud5242152010-01-08 18:06:26 +01002723 * If we're using 4-addr mode, let the AP know that we're
2724 * doing so, so that it can create the STA VLAN on its side
2725 */
2726 if (ifmgd->use_4addr)
2727 ieee80211_send_4addr_nullfunc(local, sdata);
2728
2729 /*
Johannes Bergb291ba12009-07-10 15:29:03 +02002730 * Start timer to probe the connection to the AP now.
2731 * Also start the timer that will detect beacon loss.
Kalle Valo15b7b062009-03-22 21:57:14 +02002732 */
Johannes Bergb291ba12009-07-10 15:29:03 +02002733 ieee80211_sta_rx_notify(sdata, (struct ieee80211_hdr *)mgmt);
Luis R. Rodriguezd3a910a2010-09-16 15:12:32 -04002734 ieee80211_sta_reset_beacon_monitor(sdata);
Kalle Valo15b7b062009-03-22 21:57:14 +02002735
Johannes Berg35d865a2013-05-28 10:54:03 +02002736 ret = true;
2737 out:
2738 kfree(bss_ies);
2739 return ret;
Jiri Bencf0706e82007-05-05 11:45:53 -07002740}
2741
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002742static void ieee80211_rx_mgmt_assoc_resp(struct ieee80211_sub_if_data *sdata,
2743 struct ieee80211_mgmt *mgmt,
2744 size_t len)
Johannes Berg66e67e42012-01-20 13:55:27 +01002745{
2746 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2747 struct ieee80211_mgd_assoc_data *assoc_data = ifmgd->assoc_data;
2748 u16 capab_info, status_code, aid;
2749 struct ieee802_11_elems elems;
2750 u8 *pos;
2751 bool reassoc;
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002752 struct cfg80211_bss *bss;
Jiri Bencf0706e82007-05-05 11:45:53 -07002753
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002754 sdata_assert_lock(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01002755
2756 if (!assoc_data)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002757 return;
Joe Perchesb203ca32012-05-08 18:56:52 +00002758 if (!ether_addr_equal(assoc_data->bss->bssid, mgmt->bssid))
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002759 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002760
2761 /*
2762 * AssocResp and ReassocResp have identical structure, so process both
2763 * of them in this function.
2764 */
2765
2766 if (len < 24 + 6)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002767 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002768
2769 reassoc = ieee80211_is_reassoc_req(mgmt->frame_control);
2770 capab_info = le16_to_cpu(mgmt->u.assoc_resp.capab_info);
2771 status_code = le16_to_cpu(mgmt->u.assoc_resp.status_code);
2772 aid = le16_to_cpu(mgmt->u.assoc_resp.aid);
2773
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002774 sdata_info(sdata,
2775 "RX %sssocResp from %pM (capab=0x%x status=%d aid=%d)\n",
2776 reassoc ? "Rea" : "A", mgmt->sa,
2777 capab_info, status_code, (u16)(aid & ~(BIT(15) | BIT(14))));
Johannes Berg66e67e42012-01-20 13:55:27 +01002778
2779 pos = mgmt->u.assoc_resp.variable;
Johannes Bergb2e506b2013-03-26 14:54:16 +01002780 ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), false, &elems);
Johannes Berg66e67e42012-01-20 13:55:27 +01002781
2782 if (status_code == WLAN_STATUS_ASSOC_REJECTED_TEMPORARILY &&
Johannes Berg79ba1d82013-03-27 14:38:07 +01002783 elems.timeout_int &&
2784 elems.timeout_int->type == WLAN_TIMEOUT_ASSOC_COMEBACK) {
Johannes Berg66e67e42012-01-20 13:55:27 +01002785 u32 tu, ms;
Johannes Berg79ba1d82013-03-27 14:38:07 +01002786 tu = le32_to_cpu(elems.timeout_int->value);
Johannes Berg66e67e42012-01-20 13:55:27 +01002787 ms = tu * 1024 / 1000;
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002788 sdata_info(sdata,
2789 "%pM rejected association temporarily; comeback duration %u TU (%u ms)\n",
2790 mgmt->sa, tu, ms);
Johannes Berg66e67e42012-01-20 13:55:27 +01002791 assoc_data->timeout = jiffies + msecs_to_jiffies(ms);
Johannes Berg89afe612013-02-13 15:39:57 +01002792 assoc_data->timeout_started = true;
Johannes Berg66e67e42012-01-20 13:55:27 +01002793 if (ms > IEEE80211_ASSOC_TIMEOUT)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002794 run_again(sdata, assoc_data->timeout);
2795 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002796 }
2797
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002798 bss = assoc_data->bss;
Johannes Berg66e67e42012-01-20 13:55:27 +01002799
2800 if (status_code != WLAN_STATUS_SUCCESS) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002801 sdata_info(sdata, "%pM denied association (code=%d)\n",
2802 mgmt->sa, status_code);
Johannes Berg66e67e42012-01-20 13:55:27 +01002803 ieee80211_destroy_assoc_data(sdata, false);
2804 } else {
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002805 if (!ieee80211_assoc_success(sdata, bss, mgmt, len)) {
Johannes Berg66e67e42012-01-20 13:55:27 +01002806 /* oops -- internal error -- send timeout for now */
Eliad Peller10a91092012-07-02 14:42:03 +03002807 ieee80211_destroy_assoc_data(sdata, false);
Johannes Berg959867f2013-06-19 13:05:42 +02002808 cfg80211_assoc_timeout(sdata->dev, bss);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002809 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002810 }
John W. Linville635d9992012-07-09 16:34:34 -04002811 sdata_info(sdata, "associated\n");
Johannes Berg79ebfb82012-02-20 14:19:58 +01002812
2813 /*
2814 * destroy assoc_data afterwards, as otherwise an idle
2815 * recalc after assoc_data is NULL but before associated
2816 * is set can cause the interface to go idle
2817 */
2818 ieee80211_destroy_assoc_data(sdata, true);
Johannes Berg66e67e42012-01-20 13:55:27 +01002819 }
2820
Johannes Berg6ff57cf2013-05-16 00:55:00 +02002821 cfg80211_rx_assoc_resp(sdata->dev, bss, (u8 *)mgmt, len);
Johannes Berg66e67e42012-01-20 13:55:27 +01002822}
Johannes Berg8e3c1b72012-12-10 13:44:19 +01002823
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002824static void ieee80211_rx_bss_info(struct ieee80211_sub_if_data *sdata,
Johannes Berg8e3c1b72012-12-10 13:44:19 +01002825 struct ieee80211_mgmt *mgmt, size_t len,
Jiri Bencf0706e82007-05-05 11:45:53 -07002826 struct ieee80211_rx_status *rx_status,
Emmanuel Grumbachd45c4172012-12-10 16:19:13 +02002827 struct ieee802_11_elems *elems)
Jiri Bencf0706e82007-05-05 11:45:53 -07002828{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002829 struct ieee80211_local *local = sdata->local;
Johannes Berg98c8fcc2008-09-08 17:44:26 +02002830 int freq;
Johannes Bergc2b13452008-09-11 00:01:55 +02002831 struct ieee80211_bss *bss;
Johannes Bergfab7d4a2008-03-16 18:42:44 +01002832 struct ieee80211_channel *channel;
Johannes Berg56007a02010-01-26 14:19:52 +01002833
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002834 sdata_assert_lock(sdata);
Johannes Bergb4f286a12013-03-26 14:13:58 +01002835
Johannes Berg1cd8e882013-03-27 14:30:12 +01002836 if (elems->ds_params)
Bruno Randolf59eb21a2011-01-17 13:37:28 +09002837 freq = ieee80211_channel_to_frequency(elems->ds_params[0],
2838 rx_status->band);
Johannes Berg5bda6172008-09-08 11:05:10 +02002839 else
2840 freq = rx_status->freq;
2841
2842 channel = ieee80211_get_channel(local->hw.wiphy, freq);
2843
2844 if (!channel || channel->flags & IEEE80211_CHAN_DISABLED)
2845 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07002846
Johannes Berg98c8fcc2008-09-08 17:44:26 +02002847 bss = ieee80211_bss_info_update(local, rx_status, mgmt, len, elems,
Emmanuel Grumbachd45c4172012-12-10 16:19:13 +02002848 channel);
Alexander Bondar817cee72013-05-19 14:23:57 +03002849 if (bss) {
Johannes Berg77fdaa12009-07-07 03:45:17 +02002850 ieee80211_rx_bss_put(local, bss);
Alexander Bondar817cee72013-05-19 14:23:57 +03002851 sdata->vif.bss_conf.beacon_rate = bss->beacon_rate;
2852 }
Johannes Berg77fdaa12009-07-07 03:45:17 +02002853
Johannes Berg37799e52013-03-26 14:02:26 +01002854 if (!sdata->u.mgd.associated ||
2855 !ether_addr_equal(mgmt->bssid, sdata->u.mgd.associated->bssid))
Johannes Berg98c8fcc2008-09-08 17:44:26 +02002856 return;
Jiri Bencf0706e82007-05-05 11:45:53 -07002857
Johannes Berg04a161f2013-05-03 09:35:35 +02002858 ieee80211_sta_process_chanswitch(sdata, rx_status->mactime,
2859 elems, true);
Johannes Bergb4f286a12013-03-26 14:13:58 +01002860
Jiri Bencf0706e82007-05-05 11:45:53 -07002861}
2862
2863
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002864static void ieee80211_rx_mgmt_probe_resp(struct ieee80211_sub_if_data *sdata,
Johannes Bergaf6b6372009-12-23 13:15:35 +01002865 struct sk_buff *skb)
Jiri Bencf0706e82007-05-05 11:45:53 -07002866{
Johannes Bergaf6b6372009-12-23 13:15:35 +01002867 struct ieee80211_mgmt *mgmt = (void *)skb->data;
Kalle Valo15b7b062009-03-22 21:57:14 +02002868 struct ieee80211_if_managed *ifmgd;
Johannes Bergaf6b6372009-12-23 13:15:35 +01002869 struct ieee80211_rx_status *rx_status = (void *) skb->cb;
2870 size_t baselen, len = skb->len;
Ester Kummerae6a44e2008-06-27 18:54:48 +03002871 struct ieee802_11_elems elems;
2872
Kalle Valo15b7b062009-03-22 21:57:14 +02002873 ifmgd = &sdata->u.mgd;
2874
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002875 sdata_assert_lock(sdata);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002876
Joe Perchesb203ca32012-05-08 18:56:52 +00002877 if (!ether_addr_equal(mgmt->da, sdata->vif.addr))
Tomas Winkler8e7cdbb2008-08-03 14:32:01 +03002878 return; /* ignore ProbeResp to foreign address */
2879
Ester Kummerae6a44e2008-06-27 18:54:48 +03002880 baselen = (u8 *) mgmt->u.probe_resp.variable - (u8 *) mgmt;
2881 if (baselen > len)
2882 return;
2883
2884 ieee802_11_parse_elems(mgmt->u.probe_resp.variable, len - baselen,
Johannes Bergb2e506b2013-03-26 14:54:16 +01002885 false, &elems);
Ester Kummerae6a44e2008-06-27 18:54:48 +03002886
Emmanuel Grumbachd45c4172012-12-10 16:19:13 +02002887 ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems);
Ron Rindjunsky9859b812008-08-09 03:02:19 +03002888
Johannes Berg77fdaa12009-07-07 03:45:17 +02002889 if (ifmgd->associated &&
Joe Perchesb203ca32012-05-08 18:56:52 +00002890 ether_addr_equal(mgmt->bssid, ifmgd->associated->bssid))
Felix Fietkau4e5ff372010-11-23 03:10:31 +01002891 ieee80211_reset_ap_probe(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01002892
2893 if (ifmgd->auth_data && !ifmgd->auth_data->bss->proberesp_ies &&
Joe Perchesb203ca32012-05-08 18:56:52 +00002894 ether_addr_equal(mgmt->bssid, ifmgd->auth_data->bss->bssid)) {
Johannes Berg66e67e42012-01-20 13:55:27 +01002895 /* got probe response, continue with auth */
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002896 sdata_info(sdata, "direct probe responded\n");
Johannes Berg66e67e42012-01-20 13:55:27 +01002897 ifmgd->auth_data->tries = 0;
2898 ifmgd->auth_data->timeout = jiffies;
Johannes Berg89afe612013-02-13 15:39:57 +01002899 ifmgd->auth_data->timeout_started = true;
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002900 run_again(sdata, ifmgd->auth_data->timeout);
Johannes Berg66e67e42012-01-20 13:55:27 +01002901 }
Jiri Bencf0706e82007-05-05 11:45:53 -07002902}
2903
Johannes Bergd91f36d2009-04-16 13:17:26 +02002904/*
2905 * This is the canonical list of information elements we care about,
2906 * the filter code also gives us all changes to the Microsoft OUI
2907 * (00:50:F2) vendor IE which is used for WMM which we need to track.
2908 *
2909 * We implement beacon filtering in software since that means we can
2910 * avoid processing the frame here and in cfg80211, and userspace
2911 * will not be able to tell whether the hardware supports it or not.
2912 *
2913 * XXX: This list needs to be dynamic -- userspace needs to be able to
2914 * add items it requires. It also needs to be able to tell us to
2915 * look out for other vendor IEs.
2916 */
2917static const u64 care_about_ies =
Johannes Berg1d4df3a2009-04-22 11:25:43 +02002918 (1ULL << WLAN_EID_COUNTRY) |
2919 (1ULL << WLAN_EID_ERP_INFO) |
2920 (1ULL << WLAN_EID_CHANNEL_SWITCH) |
2921 (1ULL << WLAN_EID_PWR_CONSTRAINT) |
2922 (1ULL << WLAN_EID_HT_CAPABILITY) |
Johannes Berg074d46d2012-03-15 19:45:16 +01002923 (1ULL << WLAN_EID_HT_OPERATION);
Johannes Bergd91f36d2009-04-16 13:17:26 +02002924
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002925static void ieee80211_rx_mgmt_beacon(struct ieee80211_sub_if_data *sdata,
2926 struct ieee80211_mgmt *mgmt, size_t len,
2927 struct ieee80211_rx_status *rx_status)
Jiri Bencf0706e82007-05-05 11:45:53 -07002928{
Johannes Bergd91f36d2009-04-16 13:17:26 +02002929 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jouni Malinen17e4ec12010-03-29 23:28:30 -07002930 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
Jiri Bencf0706e82007-05-05 11:45:53 -07002931 size_t baselen;
2932 struct ieee802_11_elems elems;
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12002933 struct ieee80211_local *local = sdata->local;
Johannes Berg55de9082012-07-26 17:24:39 +02002934 struct ieee80211_chanctx_conf *chanctx_conf;
2935 struct ieee80211_channel *chan;
Johannes Bergbee7f582013-02-07 22:24:55 +01002936 struct sta_info *sta;
Johannes Berg471b3ef2007-12-28 14:32:58 +01002937 u32 changed = 0;
Rami Rosenf87ad632012-10-25 10:16:23 +02002938 bool erp_valid;
Johannes Berg7a5158e2008-10-08 10:59:33 +02002939 u8 erp_value = 0;
Johannes Bergd91f36d2009-04-16 13:17:26 +02002940 u32 ncrc;
Johannes Berg77fdaa12009-07-07 03:45:17 +02002941 u8 *bssid;
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002942 u8 deauth_buf[IEEE80211_DEAUTH_FRAME_LEN];
Johannes Berg77fdaa12009-07-07 03:45:17 +02002943
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002944 sdata_assert_lock(sdata);
Jiri Bencf0706e82007-05-05 11:45:53 -07002945
Ester Kummerae6a44e2008-06-27 18:54:48 +03002946 /* Process beacon from the current BSS */
2947 baselen = (u8 *) mgmt->u.beacon.variable - (u8 *) mgmt;
2948 if (baselen > len)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002949 return;
Ester Kummerae6a44e2008-06-27 18:54:48 +03002950
Johannes Berg55de9082012-07-26 17:24:39 +02002951 rcu_read_lock();
2952 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
2953 if (!chanctx_conf) {
2954 rcu_read_unlock();
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002955 return;
Johannes Berg55de9082012-07-26 17:24:39 +02002956 }
2957
Johannes Berg4bf88532012-11-09 11:39:59 +01002958 if (rx_status->freq != chanctx_conf->def.chan->center_freq) {
Johannes Berg55de9082012-07-26 17:24:39 +02002959 rcu_read_unlock();
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002960 return;
Johannes Berg55de9082012-07-26 17:24:39 +02002961 }
Johannes Berg4bf88532012-11-09 11:39:59 +01002962 chan = chanctx_conf->def.chan;
Johannes Berg55de9082012-07-26 17:24:39 +02002963 rcu_read_unlock();
Jiri Bencf0706e82007-05-05 11:45:53 -07002964
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02002965 if (ifmgd->assoc_data && ifmgd->assoc_data->need_beacon &&
Joe Perchesb203ca32012-05-08 18:56:52 +00002966 ether_addr_equal(mgmt->bssid, ifmgd->assoc_data->bss->bssid)) {
Johannes Berg66e67e42012-01-20 13:55:27 +01002967 ieee802_11_parse_elems(mgmt->u.beacon.variable,
Johannes Bergb2e506b2013-03-26 14:54:16 +01002968 len - baselen, false, &elems);
Johannes Berg77fdaa12009-07-07 03:45:17 +02002969
Emmanuel Grumbachd45c4172012-12-10 16:19:13 +02002970 ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems);
Alexander Bondar482a9c72013-06-03 17:29:33 +03002971 if (elems.tim && !elems.parse_error) {
2972 const struct ieee80211_tim_ie *tim_ie = elems.tim;
2973 ifmgd->dtim_period = tim_ie->dtim_period;
2974 }
Alexander Bondar989c6502013-05-16 17:34:17 +03002975 ifmgd->have_beacon = true;
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02002976 ifmgd->assoc_data->need_beacon = false;
Johannes Bergef429da2013-02-05 17:48:40 +01002977 if (local->hw.flags & IEEE80211_HW_TIMING_BEACON_ONLY) {
2978 sdata->vif.bss_conf.sync_tsf =
2979 le64_to_cpu(mgmt->u.beacon.timestamp);
2980 sdata->vif.bss_conf.sync_device_ts =
2981 rx_status->device_timestamp;
2982 if (elems.tim)
2983 sdata->vif.bss_conf.sync_dtim_count =
2984 elems.tim->dtim_count;
2985 else
2986 sdata->vif.bss_conf.sync_dtim_count = 0;
2987 }
Johannes Berg66e67e42012-01-20 13:55:27 +01002988 /* continue assoc process */
2989 ifmgd->assoc_data->timeout = jiffies;
Johannes Berg89afe612013-02-13 15:39:57 +01002990 ifmgd->assoc_data->timeout_started = true;
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002991 run_again(sdata, ifmgd->assoc_data->timeout);
2992 return;
Johannes Berg66e67e42012-01-20 13:55:27 +01002993 }
2994
2995 if (!ifmgd->associated ||
Joe Perchesb203ca32012-05-08 18:56:52 +00002996 !ether_addr_equal(mgmt->bssid, ifmgd->associated->bssid))
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002997 return;
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01002998 bssid = ifmgd->associated->bssid;
Johannes Berg77fdaa12009-07-07 03:45:17 +02002999
Jouni Malinen17e4ec12010-03-29 23:28:30 -07003000 /* Track average RSSI from the Beacon frames of the current AP */
3001 ifmgd->last_beacon_signal = rx_status->signal;
3002 if (ifmgd->flags & IEEE80211_STA_RESET_SIGNAL_AVE) {
3003 ifmgd->flags &= ~IEEE80211_STA_RESET_SIGNAL_AVE;
Jouni Malinen3ba06c62010-08-27 22:21:13 +03003004 ifmgd->ave_beacon_signal = rx_status->signal * 16;
Jouni Malinen17e4ec12010-03-29 23:28:30 -07003005 ifmgd->last_cqm_event_signal = 0;
Jouni Malinen391a2002010-08-27 22:22:00 +03003006 ifmgd->count_beacon_signal = 1;
Meenakshi Venkataraman615f7b92011-07-08 08:46:22 -07003007 ifmgd->last_ave_beacon_signal = 0;
Jouni Malinen17e4ec12010-03-29 23:28:30 -07003008 } else {
3009 ifmgd->ave_beacon_signal =
3010 (IEEE80211_SIGNAL_AVE_WEIGHT * rx_status->signal * 16 +
3011 (16 - IEEE80211_SIGNAL_AVE_WEIGHT) *
3012 ifmgd->ave_beacon_signal) / 16;
Jouni Malinen391a2002010-08-27 22:22:00 +03003013 ifmgd->count_beacon_signal++;
Jouni Malinen17e4ec12010-03-29 23:28:30 -07003014 }
Meenakshi Venkataraman615f7b92011-07-08 08:46:22 -07003015
3016 if (ifmgd->rssi_min_thold != ifmgd->rssi_max_thold &&
3017 ifmgd->count_beacon_signal >= IEEE80211_SIGNAL_AVE_MIN_COUNT) {
3018 int sig = ifmgd->ave_beacon_signal;
3019 int last_sig = ifmgd->last_ave_beacon_signal;
3020
3021 /*
3022 * if signal crosses either of the boundaries, invoke callback
3023 * with appropriate parameters
3024 */
3025 if (sig > ifmgd->rssi_max_thold &&
3026 (last_sig <= ifmgd->rssi_min_thold || last_sig == 0)) {
3027 ifmgd->last_ave_beacon_signal = sig;
Emmanuel Grumbach887da912013-01-20 17:32:41 +02003028 drv_rssi_callback(local, sdata, RSSI_EVENT_HIGH);
Meenakshi Venkataraman615f7b92011-07-08 08:46:22 -07003029 } else if (sig < ifmgd->rssi_min_thold &&
3030 (last_sig >= ifmgd->rssi_max_thold ||
3031 last_sig == 0)) {
3032 ifmgd->last_ave_beacon_signal = sig;
Emmanuel Grumbach887da912013-01-20 17:32:41 +02003033 drv_rssi_callback(local, sdata, RSSI_EVENT_LOW);
Meenakshi Venkataraman615f7b92011-07-08 08:46:22 -07003034 }
3035 }
3036
Jouni Malinen17e4ec12010-03-29 23:28:30 -07003037 if (bss_conf->cqm_rssi_thold &&
Jouni Malinen391a2002010-08-27 22:22:00 +03003038 ifmgd->count_beacon_signal >= IEEE80211_SIGNAL_AVE_MIN_COUNT &&
Johannes Bergea086352012-01-19 09:29:58 +01003039 !(sdata->vif.driver_flags & IEEE80211_VIF_SUPPORTS_CQM_RSSI)) {
Jouni Malinen17e4ec12010-03-29 23:28:30 -07003040 int sig = ifmgd->ave_beacon_signal / 16;
3041 int last_event = ifmgd->last_cqm_event_signal;
3042 int thold = bss_conf->cqm_rssi_thold;
3043 int hyst = bss_conf->cqm_rssi_hyst;
3044 if (sig < thold &&
3045 (last_event == 0 || sig < last_event - hyst)) {
3046 ifmgd->last_cqm_event_signal = sig;
3047 ieee80211_cqm_rssi_notify(
3048 &sdata->vif,
3049 NL80211_CQM_RSSI_THRESHOLD_EVENT_LOW,
3050 GFP_KERNEL);
3051 } else if (sig > thold &&
3052 (last_event == 0 || sig > last_event + hyst)) {
3053 ifmgd->last_cqm_event_signal = sig;
3054 ieee80211_cqm_rssi_notify(
3055 &sdata->vif,
3056 NL80211_CQM_RSSI_THRESHOLD_EVENT_HIGH,
3057 GFP_KERNEL);
3058 }
3059 }
3060
Johannes Bergb291ba12009-07-10 15:29:03 +02003061 if (ifmgd->flags & IEEE80211_STA_BEACON_POLL) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003062 mlme_dbg_ratelimited(sdata,
Johannes Berg112c31f2013-02-08 22:59:00 +01003063 "cancelling AP probe due to a received beacon\n");
Stanislaw Gruszka925e64c2012-05-16 15:27:20 +02003064 mutex_lock(&local->mtx);
Johannes Bergb291ba12009-07-10 15:29:03 +02003065 ifmgd->flags &= ~IEEE80211_STA_BEACON_POLL;
Stanislaw Gruszka925e64c2012-05-16 15:27:20 +02003066 ieee80211_run_deferred_scan(local);
3067 mutex_unlock(&local->mtx);
3068
Johannes Berg4e751842009-06-10 15:16:52 +02003069 mutex_lock(&local->iflist_mtx);
3070 ieee80211_recalc_ps(local, -1);
3071 mutex_unlock(&local->iflist_mtx);
Jouni Malinen92778182009-05-14 21:15:36 +03003072 }
3073
Johannes Bergb291ba12009-07-10 15:29:03 +02003074 /*
3075 * Push the beacon loss detection into the future since
3076 * we are processing a beacon from the AP just now.
3077 */
Luis R. Rodriguezd3a910a2010-09-16 15:12:32 -04003078 ieee80211_sta_reset_beacon_monitor(sdata);
Johannes Bergb291ba12009-07-10 15:29:03 +02003079
Johannes Bergd91f36d2009-04-16 13:17:26 +02003080 ncrc = crc32_be(0, (void *)&mgmt->u.beacon.beacon_int, 4);
3081 ncrc = ieee802_11_parse_elems_crc(mgmt->u.beacon.variable,
Johannes Bergb2e506b2013-03-26 14:54:16 +01003082 len - baselen, false, &elems,
Johannes Bergd91f36d2009-04-16 13:17:26 +02003083 care_about_ies, ncrc);
3084
Vivek Natarajan25c9c872009-03-02 20:20:30 +05303085 if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK) {
Rami Rosenf87ad632012-10-25 10:16:23 +02003086 bool directed_tim = ieee80211_check_tim(elems.tim,
3087 elems.tim_len,
3088 ifmgd->aid);
Kalle Valo1fb36062009-02-10 17:09:24 +02003089 if (directed_tim) {
Kalle Valo572e0012009-02-10 17:09:31 +02003090 if (local->hw.conf.dynamic_ps_timeout > 0) {
Ronald Wahl70b12f22012-03-19 14:37:20 +01003091 if (local->hw.conf.flags & IEEE80211_CONF_PS) {
3092 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
3093 ieee80211_hw_config(local,
3094 IEEE80211_CONF_CHANGE_PS);
3095 }
Kalle Valo572e0012009-02-10 17:09:31 +02003096 ieee80211_send_nullfunc(local, sdata, 0);
Rajkumar Manoharan6f0756a2012-03-15 05:50:36 +05303097 } else if (!local->pspolling && sdata->u.mgd.powersave) {
Kalle Valo572e0012009-02-10 17:09:31 +02003098 local->pspolling = true;
3099
3100 /*
3101 * Here is assumed that the driver will be
3102 * able to send ps-poll frame and receive a
3103 * response even though power save mode is
3104 * enabled, but some drivers might require
3105 * to disable power save here. This needs
3106 * to be investigated.
3107 */
3108 ieee80211_send_pspoll(local, sdata);
3109 }
Vivek Natarajana97b77b2008-12-23 18:39:02 -08003110 }
3111 }
Johannes Berg7a5158e2008-10-08 10:59:33 +02003112
Johannes Berg488dd7b2012-10-29 20:08:01 +01003113 if (sdata->vif.p2p) {
Janusz Dziedzic67baf662013-03-21 15:47:56 +01003114 struct ieee80211_p2p_noa_attr noa = {};
Johannes Berg488dd7b2012-10-29 20:08:01 +01003115 int ret;
3116
3117 ret = cfg80211_get_p2p_attr(mgmt->u.beacon.variable,
3118 len - baselen,
3119 IEEE80211_P2P_ATTR_ABSENCE_NOTICE,
Janusz Dziedzic934457e2013-03-21 15:47:55 +01003120 (u8 *) &noa, sizeof(noa));
Janusz Dziedzic67baf662013-03-21 15:47:56 +01003121 if (ret >= 2) {
3122 if (sdata->u.mgd.p2p_noa_index != noa.index) {
3123 /* valid noa_attr and index changed */
3124 sdata->u.mgd.p2p_noa_index = noa.index;
3125 memcpy(&bss_conf->p2p_noa_attr, &noa, sizeof(noa));
3126 changed |= BSS_CHANGED_P2P_PS;
3127 /*
3128 * make sure we update all information, the CRC
3129 * mechanism doesn't look at P2P attributes.
3130 */
3131 ifmgd->beacon_crc_valid = false;
3132 }
3133 } else if (sdata->u.mgd.p2p_noa_index != -1) {
3134 /* noa_attr not found and we had valid noa_attr before */
3135 sdata->u.mgd.p2p_noa_index = -1;
3136 memset(&bss_conf->p2p_noa_attr, 0, sizeof(bss_conf->p2p_noa_attr));
Johannes Berg488dd7b2012-10-29 20:08:01 +01003137 changed |= BSS_CHANGED_P2P_PS;
Johannes Berg488dd7b2012-10-29 20:08:01 +01003138 ifmgd->beacon_crc_valid = false;
3139 }
3140 }
3141
Juuso Oikarinend8ec4432010-10-01 16:02:31 +03003142 if (ncrc == ifmgd->beacon_crc && ifmgd->beacon_crc_valid)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003143 return;
Jouni Malinen30196672009-05-19 17:01:43 +03003144 ifmgd->beacon_crc = ncrc;
Juuso Oikarinend8ec4432010-10-01 16:02:31 +03003145 ifmgd->beacon_crc_valid = true;
Jouni Malinen30196672009-05-19 17:01:43 +03003146
Emmanuel Grumbachd45c4172012-12-10 16:19:13 +02003147 ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems);
Johannes Berg7d257452012-07-06 17:37:43 +02003148
3149 if (ieee80211_sta_wmm_params(local, sdata, elems.wmm_param,
3150 elems.wmm_param_len))
3151 changed |= BSS_CHANGED_QOS;
3152
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02003153 /*
3154 * If we haven't had a beacon before, tell the driver about the
Johannes Bergef429da2013-02-05 17:48:40 +01003155 * DTIM period (and beacon timing if desired) now.
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02003156 */
Alexander Bondar989c6502013-05-16 17:34:17 +03003157 if (!ifmgd->have_beacon) {
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02003158 /* a few bogus AP send dtim_period = 0 or no TIM IE */
3159 if (elems.tim)
3160 bss_conf->dtim_period = elems.tim->dtim_period ?: 1;
3161 else
3162 bss_conf->dtim_period = 1;
Johannes Bergef429da2013-02-05 17:48:40 +01003163
3164 if (local->hw.flags & IEEE80211_HW_TIMING_BEACON_ONLY) {
3165 sdata->vif.bss_conf.sync_tsf =
3166 le64_to_cpu(mgmt->u.beacon.timestamp);
3167 sdata->vif.bss_conf.sync_device_ts =
3168 rx_status->device_timestamp;
3169 if (elems.tim)
3170 sdata->vif.bss_conf.sync_dtim_count =
3171 elems.tim->dtim_count;
3172 else
3173 sdata->vif.bss_conf.sync_dtim_count = 0;
3174 }
3175
Alexander Bondar989c6502013-05-16 17:34:17 +03003176 changed |= BSS_CHANGED_BEACON_INFO;
3177 ifmgd->have_beacon = true;
Alexander Bondar482a9c72013-06-03 17:29:33 +03003178
3179 mutex_lock(&local->iflist_mtx);
3180 ieee80211_recalc_ps(local, -1);
3181 mutex_unlock(&local->iflist_mtx);
3182
Alexander Bondarce857882013-05-06 17:17:04 +03003183 ieee80211_recalc_ps_vif(sdata);
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02003184 }
3185
Johannes Berg1946bed2013-03-27 14:31:53 +01003186 if (elems.erp_info) {
Johannes Berg7a5158e2008-10-08 10:59:33 +02003187 erp_valid = true;
3188 erp_value = elems.erp_info[0];
3189 } else {
3190 erp_valid = false;
John W. Linville50c4afb2008-04-15 14:09:27 -04003191 }
Johannes Berg7a5158e2008-10-08 10:59:33 +02003192 changed |= ieee80211_handle_bss_capability(sdata,
3193 le16_to_cpu(mgmt->u.beacon.capab_info),
3194 erp_valid, erp_value);
Jiri Bencf0706e82007-05-05 11:45:53 -07003195
Johannes Berg11289582013-02-07 17:36:12 +01003196 mutex_lock(&local->sta_mtx);
Johannes Bergbee7f582013-02-07 22:24:55 +01003197 sta = sta_info_get(sdata, bssid);
3198
Johannes Berg30eb1dc2013-02-08 15:12:14 +01003199 if (ieee80211_config_bw(sdata, sta, elems.ht_operation,
3200 elems.vht_operation, bssid, &changed)) {
3201 mutex_unlock(&local->sta_mtx);
3202 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH,
3203 WLAN_REASON_DEAUTH_LEAVING,
3204 true, deauth_buf);
Johannes Berg6ff57cf2013-05-16 00:55:00 +02003205 cfg80211_tx_mlme_mgmt(sdata->dev, deauth_buf,
3206 sizeof(deauth_buf));
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003207 return;
Johannes Berg30eb1dc2013-02-08 15:12:14 +01003208 }
Johannes Bergbee7f582013-02-07 22:24:55 +01003209
3210 if (sta && elems.opmode_notif)
3211 ieee80211_vht_handle_opmode(sdata, sta, *elems.opmode_notif,
3212 rx_status->band, true);
Johannes Berg11289582013-02-07 17:36:12 +01003213 mutex_unlock(&local->sta_mtx);
Ron Rindjunskyd3c990f2007-11-26 16:14:34 +02003214
Johannes Berg04b7b2f2012-09-05 13:41:37 +02003215 if (elems.country_elem && elems.pwr_constr_elem &&
3216 mgmt->u.probe_resp.capab_info &
3217 cpu_to_le16(WLAN_CAPABILITY_SPECTRUM_MGMT))
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02003218 changed |= ieee80211_handle_pwr_constr(sdata, chan,
3219 elems.country_elem,
3220 elems.country_elem_len,
3221 elems.pwr_constr_elem);
Luis R. Rodriguez3f2355c2008-11-12 14:22:02 -08003222
Johannes Berg471b3ef2007-12-28 14:32:58 +01003223 ieee80211_bss_info_change_notify(sdata, changed);
Jiri Bencf0706e82007-05-05 11:45:53 -07003224}
3225
Johannes Berg1fa57d02010-06-10 10:21:32 +02003226void ieee80211_sta_rx_queued_mgmt(struct ieee80211_sub_if_data *sdata,
3227 struct sk_buff *skb)
Jiri Bencf0706e82007-05-05 11:45:53 -07003228{
3229 struct ieee80211_rx_status *rx_status;
Jiri Bencf0706e82007-05-05 11:45:53 -07003230 struct ieee80211_mgmt *mgmt;
3231 u16 fc;
Johannes Berg1b3a2e42013-03-26 15:17:18 +01003232 struct ieee802_11_elems elems;
3233 int ies_len;
Jiri Bencf0706e82007-05-05 11:45:53 -07003234
Jiri Bencf0706e82007-05-05 11:45:53 -07003235 rx_status = (struct ieee80211_rx_status *) skb->cb;
3236 mgmt = (struct ieee80211_mgmt *) skb->data;
3237 fc = le16_to_cpu(mgmt->frame_control);
3238
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003239 sdata_lock(sdata);
Johannes Berg77fdaa12009-07-07 03:45:17 +02003240
Johannes Berg66e67e42012-01-20 13:55:27 +01003241 switch (fc & IEEE80211_FCTL_STYPE) {
3242 case IEEE80211_STYPE_BEACON:
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003243 ieee80211_rx_mgmt_beacon(sdata, mgmt, skb->len, rx_status);
Johannes Berg66e67e42012-01-20 13:55:27 +01003244 break;
3245 case IEEE80211_STYPE_PROBE_RESP:
3246 ieee80211_rx_mgmt_probe_resp(sdata, skb);
3247 break;
3248 case IEEE80211_STYPE_AUTH:
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003249 ieee80211_rx_mgmt_auth(sdata, mgmt, skb->len);
Johannes Berg66e67e42012-01-20 13:55:27 +01003250 break;
3251 case IEEE80211_STYPE_DEAUTH:
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003252 ieee80211_rx_mgmt_deauth(sdata, mgmt, skb->len);
Johannes Berg66e67e42012-01-20 13:55:27 +01003253 break;
3254 case IEEE80211_STYPE_DISASSOC:
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003255 ieee80211_rx_mgmt_disassoc(sdata, mgmt, skb->len);
Johannes Berg66e67e42012-01-20 13:55:27 +01003256 break;
3257 case IEEE80211_STYPE_ASSOC_RESP:
3258 case IEEE80211_STYPE_REASSOC_RESP:
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003259 ieee80211_rx_mgmt_assoc_resp(sdata, mgmt, skb->len);
Johannes Berg66e67e42012-01-20 13:55:27 +01003260 break;
3261 case IEEE80211_STYPE_ACTION:
Johannes Berg37799e52013-03-26 14:02:26 +01003262 if (mgmt->u.action.category == WLAN_CATEGORY_SPECTRUM_MGMT) {
Johannes Berg1b3a2e42013-03-26 15:17:18 +01003263 ies_len = skb->len -
3264 offsetof(struct ieee80211_mgmt,
3265 u.action.u.chan_switch.variable);
Johannes Berg37799e52013-03-26 14:02:26 +01003266
3267 if (ies_len < 0)
3268 break;
3269
3270 ieee802_11_parse_elems(
3271 mgmt->u.action.u.chan_switch.variable,
Johannes Bergb2e506b2013-03-26 14:54:16 +01003272 ies_len, true, &elems);
Johannes Berg37799e52013-03-26 14:02:26 +01003273
3274 if (elems.parse_error)
3275 break;
3276
Johannes Berg66e67e42012-01-20 13:55:27 +01003277 ieee80211_sta_process_chanswitch(sdata,
Johannes Berg37799e52013-03-26 14:02:26 +01003278 rx_status->mactime,
Johannes Berg04a161f2013-05-03 09:35:35 +02003279 &elems, false);
Johannes Berg1b3a2e42013-03-26 15:17:18 +01003280 } else if (mgmt->u.action.category == WLAN_CATEGORY_PUBLIC) {
3281 ies_len = skb->len -
3282 offsetof(struct ieee80211_mgmt,
3283 u.action.u.ext_chan_switch.variable);
3284
3285 if (ies_len < 0)
3286 break;
3287
3288 ieee802_11_parse_elems(
3289 mgmt->u.action.u.ext_chan_switch.variable,
Johannes Bergb2e506b2013-03-26 14:54:16 +01003290 ies_len, true, &elems);
Johannes Berg1b3a2e42013-03-26 15:17:18 +01003291
3292 if (elems.parse_error)
3293 break;
3294
3295 /* for the handling code pretend this was also an IE */
3296 elems.ext_chansw_ie =
3297 &mgmt->u.action.u.ext_chan_switch.data;
3298
3299 ieee80211_sta_process_chanswitch(sdata,
3300 rx_status->mactime,
Johannes Berg04a161f2013-05-03 09:35:35 +02003301 &elems, false);
Johannes Berg77fdaa12009-07-07 03:45:17 +02003302 }
Johannes Berg37799e52013-03-26 14:02:26 +01003303 break;
Johannes Berg77fdaa12009-07-07 03:45:17 +02003304 }
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003305 sdata_unlock(sdata);
Jiri Bencf0706e82007-05-05 11:45:53 -07003306}
3307
Johannes Berg9c6bd792008-09-11 00:01:52 +02003308static void ieee80211_sta_timer(unsigned long data)
Jiri Bencf0706e82007-05-05 11:45:53 -07003309{
3310 struct ieee80211_sub_if_data *sdata =
3311 (struct ieee80211_sub_if_data *) data;
Jiri Bencf0706e82007-05-05 11:45:53 -07003312
Stanislaw Gruszka9b7d72c2013-02-28 10:55:27 +01003313 ieee80211_queue_work(&sdata->local->hw, &sdata->work);
Jiri Bencf0706e82007-05-05 11:45:53 -07003314}
3315
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003316static void ieee80211_sta_connection_lost(struct ieee80211_sub_if_data *sdata,
Johannes Berg6b684db2013-01-29 11:35:29 +01003317 u8 *bssid, u8 reason, bool tx)
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003318{
Antonio Quartulli6ae16772012-09-07 13:28:52 +02003319 u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN];
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003320
Johannes Berg37ad3882012-02-24 13:50:54 +01003321 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH, reason,
Johannes Berg6b684db2013-01-29 11:35:29 +01003322 tx, frame_buf);
Johannes Berg37ad3882012-02-24 13:50:54 +01003323
Johannes Berg6ff57cf2013-05-16 00:55:00 +02003324 cfg80211_tx_mlme_mgmt(sdata->dev, frame_buf,
3325 IEEE80211_DEAUTH_FRAME_LEN);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003326}
3327
Johannes Berg66e67e42012-01-20 13:55:27 +01003328static int ieee80211_probe_auth(struct ieee80211_sub_if_data *sdata)
3329{
3330 struct ieee80211_local *local = sdata->local;
3331 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3332 struct ieee80211_mgd_auth_data *auth_data = ifmgd->auth_data;
Johannes Berg1672c0e32013-01-29 15:02:27 +01003333 u32 tx_flags = 0;
Johannes Berg66e67e42012-01-20 13:55:27 +01003334
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003335 sdata_assert_lock(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01003336
3337 if (WARN_ON_ONCE(!auth_data))
3338 return -EINVAL;
3339
Johannes Berg66e67e42012-01-20 13:55:27 +01003340 auth_data->tries++;
3341
3342 if (auth_data->tries > IEEE80211_AUTH_MAX_TRIES) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003343 sdata_info(sdata, "authentication with %pM timed out\n",
3344 auth_data->bss->bssid);
Johannes Berg66e67e42012-01-20 13:55:27 +01003345
3346 /*
3347 * Most likely AP is not in the range so remove the
3348 * bss struct for that AP.
3349 */
3350 cfg80211_unlink_bss(local->hw.wiphy, auth_data->bss);
3351
3352 return -ETIMEDOUT;
3353 }
3354
Johannes Berga1845fc2012-06-27 13:18:36 +02003355 drv_mgd_prepare_tx(local, sdata);
3356
Johannes Berg66e67e42012-01-20 13:55:27 +01003357 if (auth_data->bss->proberesp_ies) {
Jouni Malinen6b8ece32012-09-30 19:29:40 +03003358 u16 trans = 1;
3359 u16 status = 0;
3360
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003361 sdata_info(sdata, "send auth to %pM (try %d/%d)\n",
3362 auth_data->bss->bssid, auth_data->tries,
3363 IEEE80211_AUTH_MAX_TRIES);
Johannes Berg66e67e42012-01-20 13:55:27 +01003364
3365 auth_data->expected_transaction = 2;
Jouni Malinen6b8ece32012-09-30 19:29:40 +03003366
3367 if (auth_data->algorithm == WLAN_AUTH_SAE) {
3368 trans = auth_data->sae_trans;
3369 status = auth_data->sae_status;
3370 auth_data->expected_transaction = trans;
3371 }
3372
Stanislaw Gruszka6211dd12013-05-17 13:43:04 +02003373 if (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS)
3374 tx_flags = IEEE80211_TX_CTL_REQ_TX_STATUS |
3375 IEEE80211_TX_INTFL_MLME_CONN_TX;
3376
Jouni Malinen6b8ece32012-09-30 19:29:40 +03003377 ieee80211_send_auth(sdata, trans, auth_data->algorithm, status,
3378 auth_data->data, auth_data->data_len,
Johannes Berg66e67e42012-01-20 13:55:27 +01003379 auth_data->bss->bssid,
Johannes Berg1672c0e32013-01-29 15:02:27 +01003380 auth_data->bss->bssid, NULL, 0, 0,
3381 tx_flags);
Johannes Berg66e67e42012-01-20 13:55:27 +01003382 } else {
3383 const u8 *ssidie;
3384
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003385 sdata_info(sdata, "direct probe to %pM (try %d/%i)\n",
3386 auth_data->bss->bssid, auth_data->tries,
3387 IEEE80211_AUTH_MAX_TRIES);
Johannes Berg66e67e42012-01-20 13:55:27 +01003388
Johannes Berg9caf0362012-11-29 01:25:20 +01003389 rcu_read_lock();
Johannes Berg66e67e42012-01-20 13:55:27 +01003390 ssidie = ieee80211_bss_get_ie(auth_data->bss, WLAN_EID_SSID);
Johannes Berg9caf0362012-11-29 01:25:20 +01003391 if (!ssidie) {
3392 rcu_read_unlock();
Johannes Berg66e67e42012-01-20 13:55:27 +01003393 return -EINVAL;
Johannes Berg9caf0362012-11-29 01:25:20 +01003394 }
Johannes Berg66e67e42012-01-20 13:55:27 +01003395 /*
3396 * Direct probe is sent to broadcast address as some APs
3397 * will not answer to direct packet in unassociated state.
3398 */
3399 ieee80211_send_probe_req(sdata, NULL, ssidie + 2, ssidie[1],
Stanislaw Gruszka6211dd12013-05-17 13:43:04 +02003400 NULL, 0, (u32) -1, true, 0,
Johannes Berg55de9082012-07-26 17:24:39 +02003401 auth_data->bss->channel, false);
Johannes Berg9caf0362012-11-29 01:25:20 +01003402 rcu_read_unlock();
Johannes Berg66e67e42012-01-20 13:55:27 +01003403 }
3404
Stanislaw Gruszka6211dd12013-05-17 13:43:04 +02003405 if (tx_flags == 0) {
Johannes Berg1672c0e32013-01-29 15:02:27 +01003406 auth_data->timeout = jiffies + IEEE80211_AUTH_TIMEOUT;
Johannes Berg89afe612013-02-13 15:39:57 +01003407 ifmgd->auth_data->timeout_started = true;
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003408 run_again(sdata, auth_data->timeout);
Johannes Berg89afe612013-02-13 15:39:57 +01003409 } else {
3410 auth_data->timeout_started = false;
Johannes Berg1672c0e32013-01-29 15:02:27 +01003411 }
Johannes Berg66e67e42012-01-20 13:55:27 +01003412
3413 return 0;
3414}
3415
3416static int ieee80211_do_assoc(struct ieee80211_sub_if_data *sdata)
3417{
3418 struct ieee80211_mgd_assoc_data *assoc_data = sdata->u.mgd.assoc_data;
3419 struct ieee80211_local *local = sdata->local;
3420
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003421 sdata_assert_lock(sdata);
Johannes Berg66e67e42012-01-20 13:55:27 +01003422
Johannes Berg66e67e42012-01-20 13:55:27 +01003423 assoc_data->tries++;
3424 if (assoc_data->tries > IEEE80211_ASSOC_MAX_TRIES) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003425 sdata_info(sdata, "association with %pM timed out\n",
3426 assoc_data->bss->bssid);
Johannes Berg66e67e42012-01-20 13:55:27 +01003427
3428 /*
3429 * Most likely AP is not in the range so remove the
3430 * bss struct for that AP.
3431 */
3432 cfg80211_unlink_bss(local->hw.wiphy, assoc_data->bss);
3433
3434 return -ETIMEDOUT;
3435 }
3436
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003437 sdata_info(sdata, "associate with %pM (try %d/%d)\n",
3438 assoc_data->bss->bssid, assoc_data->tries,
3439 IEEE80211_ASSOC_MAX_TRIES);
Johannes Berg66e67e42012-01-20 13:55:27 +01003440 ieee80211_send_assoc(sdata);
3441
Johannes Berg1672c0e32013-01-29 15:02:27 +01003442 if (!(local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS)) {
3443 assoc_data->timeout = jiffies + IEEE80211_ASSOC_TIMEOUT;
Johannes Berg89afe612013-02-13 15:39:57 +01003444 assoc_data->timeout_started = true;
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003445 run_again(sdata, assoc_data->timeout);
Johannes Berg89afe612013-02-13 15:39:57 +01003446 } else {
3447 assoc_data->timeout_started = false;
Johannes Berg1672c0e32013-01-29 15:02:27 +01003448 }
Johannes Berg66e67e42012-01-20 13:55:27 +01003449
3450 return 0;
3451}
3452
Johannes Berg1672c0e32013-01-29 15:02:27 +01003453void ieee80211_mgd_conn_tx_status(struct ieee80211_sub_if_data *sdata,
3454 __le16 fc, bool acked)
3455{
3456 struct ieee80211_local *local = sdata->local;
3457
3458 sdata->u.mgd.status_fc = fc;
3459 sdata->u.mgd.status_acked = acked;
3460 sdata->u.mgd.status_received = true;
3461
3462 ieee80211_queue_work(&local->hw, &sdata->work);
3463}
3464
Johannes Berg1fa57d02010-06-10 10:21:32 +02003465void ieee80211_sta_work(struct ieee80211_sub_if_data *sdata)
Johannes Berg60f8b392008-09-08 17:44:22 +02003466{
Johannes Berg60f8b392008-09-08 17:44:22 +02003467 struct ieee80211_local *local = sdata->local;
Johannes Berg1fa57d02010-06-10 10:21:32 +02003468 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg60f8b392008-09-08 17:44:22 +02003469
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003470 sdata_lock(sdata);
Johannes Berg60f8b392008-09-08 17:44:22 +02003471
Johannes Berg1672c0e32013-01-29 15:02:27 +01003472 if (ifmgd->status_received) {
3473 __le16 fc = ifmgd->status_fc;
3474 bool status_acked = ifmgd->status_acked;
3475
3476 ifmgd->status_received = false;
3477 if (ifmgd->auth_data &&
3478 (ieee80211_is_probe_req(fc) || ieee80211_is_auth(fc))) {
3479 if (status_acked) {
3480 ifmgd->auth_data->timeout =
3481 jiffies + IEEE80211_AUTH_TIMEOUT_SHORT;
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003482 run_again(sdata, ifmgd->auth_data->timeout);
Johannes Berg1672c0e32013-01-29 15:02:27 +01003483 } else {
3484 ifmgd->auth_data->timeout = jiffies - 1;
3485 }
Johannes Berg89afe612013-02-13 15:39:57 +01003486 ifmgd->auth_data->timeout_started = true;
Johannes Berg1672c0e32013-01-29 15:02:27 +01003487 } else if (ifmgd->assoc_data &&
3488 (ieee80211_is_assoc_req(fc) ||
3489 ieee80211_is_reassoc_req(fc))) {
3490 if (status_acked) {
3491 ifmgd->assoc_data->timeout =
3492 jiffies + IEEE80211_ASSOC_TIMEOUT_SHORT;
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003493 run_again(sdata, ifmgd->assoc_data->timeout);
Johannes Berg1672c0e32013-01-29 15:02:27 +01003494 } else {
3495 ifmgd->assoc_data->timeout = jiffies - 1;
3496 }
Johannes Berg89afe612013-02-13 15:39:57 +01003497 ifmgd->assoc_data->timeout_started = true;
Johannes Berg1672c0e32013-01-29 15:02:27 +01003498 }
3499 }
3500
Johannes Berg89afe612013-02-13 15:39:57 +01003501 if (ifmgd->auth_data && ifmgd->auth_data->timeout_started &&
Johannes Berg66e67e42012-01-20 13:55:27 +01003502 time_after(jiffies, ifmgd->auth_data->timeout)) {
3503 if (ifmgd->auth_data->done) {
3504 /*
3505 * ok ... we waited for assoc but userspace didn't,
3506 * so let's just kill the auth data
3507 */
3508 ieee80211_destroy_auth_data(sdata, false);
3509 } else if (ieee80211_probe_auth(sdata)) {
3510 u8 bssid[ETH_ALEN];
3511
3512 memcpy(bssid, ifmgd->auth_data->bss->bssid, ETH_ALEN);
3513
3514 ieee80211_destroy_auth_data(sdata, false);
3515
Johannes Berg6ff57cf2013-05-16 00:55:00 +02003516 cfg80211_auth_timeout(sdata->dev, bssid);
Johannes Berg66e67e42012-01-20 13:55:27 +01003517 }
Johannes Berg89afe612013-02-13 15:39:57 +01003518 } else if (ifmgd->auth_data && ifmgd->auth_data->timeout_started)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003519 run_again(sdata, ifmgd->auth_data->timeout);
Johannes Berg66e67e42012-01-20 13:55:27 +01003520
Johannes Berg89afe612013-02-13 15:39:57 +01003521 if (ifmgd->assoc_data && ifmgd->assoc_data->timeout_started &&
Johannes Berg66e67e42012-01-20 13:55:27 +01003522 time_after(jiffies, ifmgd->assoc_data->timeout)) {
Alexander Bondar989c6502013-05-16 17:34:17 +03003523 if ((ifmgd->assoc_data->need_beacon && !ifmgd->have_beacon) ||
Johannes Berg66e67e42012-01-20 13:55:27 +01003524 ieee80211_do_assoc(sdata)) {
Johannes Berg959867f2013-06-19 13:05:42 +02003525 struct cfg80211_bss *bss = ifmgd->assoc_data->bss;
Johannes Berg66e67e42012-01-20 13:55:27 +01003526
3527 ieee80211_destroy_assoc_data(sdata, false);
Johannes Berg959867f2013-06-19 13:05:42 +02003528 cfg80211_assoc_timeout(sdata->dev, bss);
Johannes Berg66e67e42012-01-20 13:55:27 +01003529 }
Johannes Berg89afe612013-02-13 15:39:57 +01003530 } else if (ifmgd->assoc_data && ifmgd->assoc_data->timeout_started)
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003531 run_again(sdata, ifmgd->assoc_data->timeout);
Johannes Berg66e67e42012-01-20 13:55:27 +01003532
Johannes Bergb291ba12009-07-10 15:29:03 +02003533 if (ifmgd->flags & (IEEE80211_STA_BEACON_POLL |
3534 IEEE80211_STA_CONNECTION_POLL) &&
3535 ifmgd->associated) {
Maxim Levitskya43abf22009-07-31 18:54:12 +03003536 u8 bssid[ETH_ALEN];
Felix Fietkau72a8a3e2010-11-23 03:10:32 +01003537 int max_tries;
Maxim Levitskya43abf22009-07-31 18:54:12 +03003538
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01003539 memcpy(bssid, ifmgd->associated->bssid, ETH_ALEN);
Felix Fietkau4e5ff372010-11-23 03:10:31 +01003540
Felix Fietkau72a8a3e2010-11-23 03:10:32 +01003541 if (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS)
Ben Greear180205b2011-02-04 15:30:24 -08003542 max_tries = max_nullfunc_tries;
Felix Fietkau72a8a3e2010-11-23 03:10:32 +01003543 else
Ben Greear180205b2011-02-04 15:30:24 -08003544 max_tries = max_probe_tries;
Felix Fietkau72a8a3e2010-11-23 03:10:32 +01003545
Felix Fietkau4e5ff372010-11-23 03:10:31 +01003546 /* ACK received for nullfunc probing frame */
3547 if (!ifmgd->probe_send_count)
3548 ieee80211_reset_ap_probe(sdata);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003549 else if (ifmgd->nullfunc_failed) {
3550 if (ifmgd->probe_send_count < max_tries) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003551 mlme_dbg(sdata,
3552 "No ack for nullfunc frame to AP %pM, try %d/%i\n",
3553 bssid, ifmgd->probe_send_count,
3554 max_tries);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003555 ieee80211_mgd_probe_ap_send(sdata);
3556 } else {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003557 mlme_dbg(sdata,
3558 "No ack for nullfunc frame to AP %pM, disconnecting.\n",
3559 bssid);
Johannes Berg95acac62011-07-12 12:30:59 +02003560 ieee80211_sta_connection_lost(sdata, bssid,
Johannes Berg6b684db2013-01-29 11:35:29 +01003561 WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY,
3562 false);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003563 }
3564 } else if (time_is_after_jiffies(ifmgd->probe_timeout))
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003565 run_again(sdata, ifmgd->probe_timeout);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003566 else if (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003567 mlme_dbg(sdata,
3568 "Failed to send nullfunc to AP %pM after %dms, disconnecting\n",
3569 bssid, probe_wait_ms);
Johannes Berg95acac62011-07-12 12:30:59 +02003570 ieee80211_sta_connection_lost(sdata, bssid,
Johannes Berg6b684db2013-01-29 11:35:29 +01003571 WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY, false);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003572 } else if (ifmgd->probe_send_count < max_tries) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003573 mlme_dbg(sdata,
3574 "No probe response from AP %pM after %dms, try %d/%i\n",
3575 bssid, probe_wait_ms,
3576 ifmgd->probe_send_count, max_tries);
Maxim Levitskya43abf22009-07-31 18:54:12 +03003577 ieee80211_mgd_probe_ap_send(sdata);
3578 } else {
Johannes Bergb291ba12009-07-10 15:29:03 +02003579 /*
3580 * We actually lost the connection ... or did we?
3581 * Let's make sure!
3582 */
Ben Greearb38afa82010-10-07 16:12:06 -07003583 wiphy_debug(local->hw.wiphy,
3584 "%s: No probe response from AP %pM"
3585 " after %dms, disconnecting.\n",
3586 sdata->name,
Ben Greear180205b2011-02-04 15:30:24 -08003587 bssid, probe_wait_ms);
Felix Fietkau04ac3c02010-12-02 21:01:08 +01003588
Johannes Berg95acac62011-07-12 12:30:59 +02003589 ieee80211_sta_connection_lost(sdata, bssid,
Johannes Berg6b684db2013-01-29 11:35:29 +01003590 WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY, false);
Johannes Bergb291ba12009-07-10 15:29:03 +02003591 }
3592 }
3593
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003594 sdata_unlock(sdata);
Johannes Berg60f8b392008-09-08 17:44:22 +02003595}
Johannes Berg0a51b272008-09-08 17:44:25 +02003596
Johannes Bergb291ba12009-07-10 15:29:03 +02003597static void ieee80211_sta_bcn_mon_timer(unsigned long data)
3598{
3599 struct ieee80211_sub_if_data *sdata =
3600 (struct ieee80211_sub_if_data *) data;
3601 struct ieee80211_local *local = sdata->local;
3602
3603 if (local->quiescing)
3604 return;
3605
Johannes Berg682bd382013-01-29 13:13:50 +01003606 sdata->u.mgd.connection_loss = false;
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02003607 ieee80211_queue_work(&sdata->local->hw,
3608 &sdata->u.mgd.beacon_connection_loss_work);
Johannes Bergb291ba12009-07-10 15:29:03 +02003609}
3610
3611static void ieee80211_sta_conn_mon_timer(unsigned long data)
3612{
3613 struct ieee80211_sub_if_data *sdata =
3614 (struct ieee80211_sub_if_data *) data;
3615 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3616 struct ieee80211_local *local = sdata->local;
3617
3618 if (local->quiescing)
3619 return;
3620
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -04003621 ieee80211_queue_work(&local->hw, &ifmgd->monitor_work);
Johannes Bergb291ba12009-07-10 15:29:03 +02003622}
3623
3624static void ieee80211_sta_monitor_work(struct work_struct *work)
3625{
3626 struct ieee80211_sub_if_data *sdata =
3627 container_of(work, struct ieee80211_sub_if_data,
3628 u.mgd.monitor_work);
3629
3630 ieee80211_mgd_probe_ap(sdata, false);
3631}
3632
Johannes Berga1678f82008-09-11 00:01:47 +02003633static void ieee80211_restart_sta_timer(struct ieee80211_sub_if_data *sdata)
3634{
Eliad Peller494f1fe2012-02-19 15:26:09 +02003635 u32 flags;
3636
Kalle Vaload935682009-04-19 08:47:19 +03003637 if (sdata->vif.type == NL80211_IFTYPE_STATION) {
Stanislaw Gruszka925e64c2012-05-16 15:27:20 +02003638 __ieee80211_stop_poll(sdata);
Kalle Vaload935682009-04-19 08:47:19 +03003639
Johannes Bergb291ba12009-07-10 15:29:03 +02003640 /* let's probe the connection once */
Eliad Peller494f1fe2012-02-19 15:26:09 +02003641 flags = sdata->local->hw.flags;
3642 if (!(flags & IEEE80211_HW_CONNECTION_MONITOR))
3643 ieee80211_queue_work(&sdata->local->hw,
3644 &sdata->u.mgd.monitor_work);
Johannes Bergb291ba12009-07-10 15:29:03 +02003645 /* and do all the other regular work too */
Johannes Berg64592c82010-06-10 10:21:31 +02003646 ieee80211_queue_work(&sdata->local->hw, &sdata->work);
Kalle Vaload935682009-04-19 08:47:19 +03003647 }
Johannes Berga1678f82008-09-11 00:01:47 +02003648}
3649
Johannes Bergb8360ab2013-04-29 14:57:44 +02003650#ifdef CONFIG_PM
3651void ieee80211_sta_restart(struct ieee80211_sub_if_data *sdata)
3652{
3653 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3654
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003655 sdata_lock(sdata);
Johannes Bergb8360ab2013-04-29 14:57:44 +02003656 if (!ifmgd->associated) {
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003657 sdata_unlock(sdata);
Johannes Bergb8360ab2013-04-29 14:57:44 +02003658 return;
3659 }
3660
3661 if (sdata->flags & IEEE80211_SDATA_DISCONNECT_RESUME) {
3662 sdata->flags &= ~IEEE80211_SDATA_DISCONNECT_RESUME;
3663 mlme_dbg(sdata, "driver requested disconnect after resume\n");
3664 ieee80211_sta_connection_lost(sdata,
3665 ifmgd->associated->bssid,
3666 WLAN_REASON_UNSPECIFIED,
3667 true);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003668 sdata_unlock(sdata);
Johannes Bergb8360ab2013-04-29 14:57:44 +02003669 return;
3670 }
Johannes Berg8d61ffa2013-05-10 12:32:47 +02003671 sdata_unlock(sdata);
Johannes Bergb8360ab2013-04-29 14:57:44 +02003672}
3673#endif
3674
Johannes Berg9c6bd792008-09-11 00:01:52 +02003675/* interface setup */
3676void ieee80211_sta_setup_sdata(struct ieee80211_sub_if_data *sdata)
3677{
Johannes Berg46900292009-02-15 12:44:28 +01003678 struct ieee80211_if_managed *ifmgd;
Johannes Berg9c6bd792008-09-11 00:01:52 +02003679
Johannes Berg46900292009-02-15 12:44:28 +01003680 ifmgd = &sdata->u.mgd;
Johannes Bergb291ba12009-07-10 15:29:03 +02003681 INIT_WORK(&ifmgd->monitor_work, ieee80211_sta_monitor_work);
Johannes Berg46900292009-02-15 12:44:28 +01003682 INIT_WORK(&ifmgd->chswitch_work, ieee80211_chswitch_work);
Juuso Oikarinen1e4dcd02010-03-19 07:14:53 +02003683 INIT_WORK(&ifmgd->beacon_connection_loss_work,
3684 ieee80211_beacon_connection_loss_work);
Johannes Berg882a7c62012-08-01 22:32:45 +02003685 INIT_WORK(&ifmgd->csa_connection_drop_work,
3686 ieee80211_csa_connection_drop_work);
Johannes Bergd1f5b7a2010-08-05 17:05:55 +02003687 INIT_WORK(&ifmgd->request_smps_work, ieee80211_request_smps_work);
Johannes Berg46900292009-02-15 12:44:28 +01003688 setup_timer(&ifmgd->timer, ieee80211_sta_timer,
Johannes Berg9c6bd792008-09-11 00:01:52 +02003689 (unsigned long) sdata);
Johannes Bergb291ba12009-07-10 15:29:03 +02003690 setup_timer(&ifmgd->bcn_mon_timer, ieee80211_sta_bcn_mon_timer,
3691 (unsigned long) sdata);
3692 setup_timer(&ifmgd->conn_mon_timer, ieee80211_sta_conn_mon_timer,
3693 (unsigned long) sdata);
Johannes Berg46900292009-02-15 12:44:28 +01003694 setup_timer(&ifmgd->chswitch_timer, ieee80211_chswitch_timer,
Sujithc481ec92009-01-06 09:28:37 +05303695 (unsigned long) sdata);
Johannes Berg9c6bd792008-09-11 00:01:52 +02003696
Johannes Bergab1faea2009-07-01 21:41:17 +02003697 ifmgd->flags = 0;
Mohammed Shafi Shajakhan1478acb2011-12-14 19:46:08 +05303698 ifmgd->powersave = sdata->wdev.ps;
Alexander Bondar219c3862013-01-22 16:52:23 +02003699 ifmgd->uapsd_queues = sdata->local->hw.uapsd_queues;
3700 ifmgd->uapsd_max_sp_len = sdata->local->hw.uapsd_max_sp_len;
Janusz Dziedzic67baf662013-03-21 15:47:56 +01003701 ifmgd->p2p_noa_index = -1;
Johannes Bergbbbdff92009-04-16 13:27:42 +02003702
Johannes Berg0f782312009-12-01 13:37:02 +01003703 if (sdata->local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_SMPS)
3704 ifmgd->req_smps = IEEE80211_SMPS_AUTOMATIC;
3705 else
3706 ifmgd->req_smps = IEEE80211_SMPS_OFF;
Johannes Berg9c6bd792008-09-11 00:01:52 +02003707}
3708
3709/* scan finished notification */
Johannes Berg0a51b272008-09-08 17:44:25 +02003710void ieee80211_mlme_notify_scan_completed(struct ieee80211_local *local)
3711{
Johannes Berg31ee67a2012-07-06 21:18:24 +02003712 struct ieee80211_sub_if_data *sdata;
Johannes Berga1678f82008-09-11 00:01:47 +02003713
3714 /* Restart STA timers */
3715 rcu_read_lock();
Ben Greear370bd002013-03-19 17:50:50 -07003716 list_for_each_entry_rcu(sdata, &local->interfaces, list) {
3717 if (ieee80211_sdata_running(sdata))
3718 ieee80211_restart_sta_timer(sdata);
3719 }
Johannes Berga1678f82008-09-11 00:01:47 +02003720 rcu_read_unlock();
Johannes Berg0a51b272008-09-08 17:44:25 +02003721}
Johannes Berg10f644a2009-04-16 13:17:25 +02003722
3723int ieee80211_max_network_latency(struct notifier_block *nb,
3724 unsigned long data, void *dummy)
3725{
3726 s32 latency_usec = (s32) data;
3727 struct ieee80211_local *local =
3728 container_of(nb, struct ieee80211_local,
3729 network_latency_notifier);
3730
3731 mutex_lock(&local->iflist_mtx);
3732 ieee80211_recalc_ps(local, latency_usec);
3733 mutex_unlock(&local->iflist_mtx);
3734
3735 return 0;
3736}
Johannes Berg77fdaa12009-07-07 03:45:17 +02003737
Johannes Bergf2d9d272012-11-22 14:11:39 +01003738static u8 ieee80211_ht_vht_rx_chains(struct ieee80211_sub_if_data *sdata,
3739 struct cfg80211_bss *cbss)
3740{
3741 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3742 const u8 *ht_cap_ie, *vht_cap_ie;
3743 const struct ieee80211_ht_cap *ht_cap;
3744 const struct ieee80211_vht_cap *vht_cap;
3745 u8 chains = 1;
3746
3747 if (ifmgd->flags & IEEE80211_STA_DISABLE_HT)
3748 return chains;
3749
Johannes Berg9caf0362012-11-29 01:25:20 +01003750 ht_cap_ie = ieee80211_bss_get_ie(cbss, WLAN_EID_HT_CAPABILITY);
Johannes Bergf2d9d272012-11-22 14:11:39 +01003751 if (ht_cap_ie && ht_cap_ie[1] >= sizeof(*ht_cap)) {
3752 ht_cap = (void *)(ht_cap_ie + 2);
3753 chains = ieee80211_mcs_to_chains(&ht_cap->mcs);
3754 /*
3755 * TODO: use "Tx Maximum Number Spatial Streams Supported" and
3756 * "Tx Unequal Modulation Supported" fields.
3757 */
3758 }
3759
3760 if (ifmgd->flags & IEEE80211_STA_DISABLE_VHT)
3761 return chains;
3762
Johannes Berg9caf0362012-11-29 01:25:20 +01003763 vht_cap_ie = ieee80211_bss_get_ie(cbss, WLAN_EID_VHT_CAPABILITY);
Johannes Bergf2d9d272012-11-22 14:11:39 +01003764 if (vht_cap_ie && vht_cap_ie[1] >= sizeof(*vht_cap)) {
3765 u8 nss;
3766 u16 tx_mcs_map;
3767
3768 vht_cap = (void *)(vht_cap_ie + 2);
3769 tx_mcs_map = le16_to_cpu(vht_cap->supp_mcs.tx_mcs_map);
3770 for (nss = 8; nss > 0; nss--) {
3771 if (((tx_mcs_map >> (2 * (nss - 1))) & 3) !=
3772 IEEE80211_VHT_MCS_NOT_SUPPORTED)
3773 break;
3774 }
3775 /* TODO: use "Tx Highest Supported Long GI Data Rate" field? */
3776 chains = max(chains, nss);
3777 }
3778
3779 return chains;
3780}
3781
Johannes Bergb17166a2012-07-27 11:41:27 +02003782static int ieee80211_prep_channel(struct ieee80211_sub_if_data *sdata,
3783 struct cfg80211_bss *cbss)
Johannes Berga1cf7752012-03-08 15:02:07 +01003784{
3785 struct ieee80211_local *local = sdata->local;
3786 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg24398e32012-03-28 10:58:36 +02003787 const struct ieee80211_ht_operation *ht_oper = NULL;
Johannes Bergf2d9d272012-11-22 14:11:39 +01003788 const struct ieee80211_vht_operation *vht_oper = NULL;
Johannes Berg24398e32012-03-28 10:58:36 +02003789 struct ieee80211_supported_band *sband;
Johannes Berg4bf88532012-11-09 11:39:59 +01003790 struct cfg80211_chan_def chandef;
Johannes Bergf2d9d272012-11-22 14:11:39 +01003791 int ret;
Johannes Berga1cf7752012-03-08 15:02:07 +01003792
Johannes Berg24398e32012-03-28 10:58:36 +02003793 sband = local->hw.wiphy->bands[cbss->channel->band];
3794
Johannes Bergf2d9d272012-11-22 14:11:39 +01003795 ifmgd->flags &= ~(IEEE80211_STA_DISABLE_40MHZ |
3796 IEEE80211_STA_DISABLE_80P80MHZ |
3797 IEEE80211_STA_DISABLE_160MHZ);
Johannes Berg24398e32012-03-28 10:58:36 +02003798
Johannes Berg9caf0362012-11-29 01:25:20 +01003799 rcu_read_lock();
3800
Johannes Bergf2d9d272012-11-22 14:11:39 +01003801 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_HT) &&
3802 sband->ht_cap.ht_supported) {
Johannes Berg08e6eff2013-02-07 23:33:32 +01003803 const u8 *ht_oper_ie, *ht_cap;
Johannes Bergf2d9d272012-11-22 14:11:39 +01003804
Johannes Berg9caf0362012-11-29 01:25:20 +01003805 ht_oper_ie = ieee80211_bss_get_ie(cbss, WLAN_EID_HT_OPERATION);
Johannes Berg24398e32012-03-28 10:58:36 +02003806 if (ht_oper_ie && ht_oper_ie[1] >= sizeof(*ht_oper))
3807 ht_oper = (void *)(ht_oper_ie + 2);
Johannes Berg08e6eff2013-02-07 23:33:32 +01003808
3809 ht_cap = ieee80211_bss_get_ie(cbss, WLAN_EID_HT_CAPABILITY);
3810 if (!ht_cap || ht_cap[1] < sizeof(struct ieee80211_ht_cap)) {
3811 ifmgd->flags |= IEEE80211_STA_DISABLE_HT;
3812 ht_oper = NULL;
3813 }
Johannes Berg24398e32012-03-28 10:58:36 +02003814 }
3815
Johannes Bergf2d9d272012-11-22 14:11:39 +01003816 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_VHT) &&
3817 sband->vht_cap.vht_supported) {
Johannes Berg08e6eff2013-02-07 23:33:32 +01003818 const u8 *vht_oper_ie, *vht_cap;
Johannes Bergf2d9d272012-11-22 14:11:39 +01003819
Johannes Berg9caf0362012-11-29 01:25:20 +01003820 vht_oper_ie = ieee80211_bss_get_ie(cbss,
3821 WLAN_EID_VHT_OPERATION);
Johannes Bergf2d9d272012-11-22 14:11:39 +01003822 if (vht_oper_ie && vht_oper_ie[1] >= sizeof(*vht_oper))
3823 vht_oper = (void *)(vht_oper_ie + 2);
3824 if (vht_oper && !ht_oper) {
3825 vht_oper = NULL;
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003826 sdata_info(sdata,
Johannes Bergf2d9d272012-11-22 14:11:39 +01003827 "AP advertised VHT without HT, disabling both\n");
Johannes Bergcb145022013-02-07 20:41:50 +01003828 ifmgd->flags |= IEEE80211_STA_DISABLE_HT;
3829 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
Johannes Berg24398e32012-03-28 10:58:36 +02003830 }
Johannes Berg08e6eff2013-02-07 23:33:32 +01003831
3832 vht_cap = ieee80211_bss_get_ie(cbss, WLAN_EID_VHT_CAPABILITY);
3833 if (!vht_cap || vht_cap[1] < sizeof(struct ieee80211_vht_cap)) {
3834 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
3835 vht_oper = NULL;
3836 }
Johannes Berg24398e32012-03-28 10:58:36 +02003837 }
3838
Johannes Bergf2d9d272012-11-22 14:11:39 +01003839 ifmgd->flags |= ieee80211_determine_chantype(sdata, sband,
3840 cbss->channel,
3841 ht_oper, vht_oper,
Johannes Berg30eb1dc2013-02-08 15:12:14 +01003842 &chandef, true);
Johannes Berg04ecd252012-09-11 14:34:12 +02003843
Johannes Bergf2d9d272012-11-22 14:11:39 +01003844 sdata->needed_rx_chains = min(ieee80211_ht_vht_rx_chains(sdata, cbss),
3845 local->rx_chains);
Johannes Berg24398e32012-03-28 10:58:36 +02003846
Johannes Berg9caf0362012-11-29 01:25:20 +01003847 rcu_read_unlock();
3848
Johannes Berg04ecd252012-09-11 14:34:12 +02003849 /* will change later if needed */
3850 sdata->smps_mode = IEEE80211_SMPS_OFF;
3851
Johannes Bergf2d9d272012-11-22 14:11:39 +01003852 /*
3853 * If this fails (possibly due to channel context sharing
3854 * on incompatible channels, e.g. 80+80 and 160 sharing the
3855 * same control channel) try to use a smaller bandwidth.
3856 */
3857 ret = ieee80211_vif_use_channel(sdata, &chandef,
3858 IEEE80211_CHANCTX_SHARED);
Simon Wunderlich0418a442013-05-16 13:00:31 +02003859
3860 /* don't downgrade for 5 and 10 MHz channels, though. */
3861 if (chandef.width == NL80211_CHAN_WIDTH_5 ||
3862 chandef.width == NL80211_CHAN_WIDTH_10)
3863 return ret;
3864
Johannes Bergd601cd82013-02-07 20:54:51 +01003865 while (ret && chandef.width != NL80211_CHAN_WIDTH_20_NOHT) {
Johannes Bergf2d9d272012-11-22 14:11:39 +01003866 ifmgd->flags |= chandef_downgrade(&chandef);
Johannes Bergd601cd82013-02-07 20:54:51 +01003867 ret = ieee80211_vif_use_channel(sdata, &chandef,
3868 IEEE80211_CHANCTX_SHARED);
3869 }
Johannes Bergf2d9d272012-11-22 14:11:39 +01003870 return ret;
Johannes Bergb17166a2012-07-27 11:41:27 +02003871}
3872
3873static int ieee80211_prep_connection(struct ieee80211_sub_if_data *sdata,
3874 struct cfg80211_bss *cbss, bool assoc)
3875{
3876 struct ieee80211_local *local = sdata->local;
3877 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3878 struct ieee80211_bss *bss = (void *)cbss->priv;
3879 struct sta_info *new_sta = NULL;
3880 bool have_sta = false;
3881 int err;
3882
3883 if (WARN_ON(!ifmgd->auth_data && !ifmgd->assoc_data))
3884 return -EINVAL;
3885
3886 if (assoc) {
3887 rcu_read_lock();
3888 have_sta = sta_info_get(sdata, cbss->bssid);
3889 rcu_read_unlock();
3890 }
3891
3892 if (!have_sta) {
3893 new_sta = sta_info_alloc(sdata, cbss->bssid, GFP_KERNEL);
3894 if (!new_sta)
3895 return -ENOMEM;
3896 }
Johannes Berg13e0c8e2012-07-27 10:43:16 +02003897 if (new_sta) {
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003898 u32 rates = 0, basic_rates = 0;
3899 bool have_higher_than_11mbit;
3900 int min_rate = INT_MAX, min_rate_index = -1;
Simon Wunderlich2103dec2013-07-08 16:55:53 +02003901 struct ieee80211_chanctx_conf *chanctx_conf;
Johannes Bergb17166a2012-07-27 11:41:27 +02003902 struct ieee80211_supported_band *sband;
Johannes Berg8cef2c92013-02-05 16:54:31 +01003903 const struct cfg80211_bss_ies *ies;
Simon Wunderlich2103dec2013-07-08 16:55:53 +02003904 int shift;
3905 u32 rate_flags;
Johannes Bergb17166a2012-07-27 11:41:27 +02003906
3907 sband = local->hw.wiphy->bands[cbss->channel->band];
3908
3909 err = ieee80211_prep_channel(sdata, cbss);
3910 if (err) {
3911 sta_info_free(local, new_sta);
Simon Wunderlich2103dec2013-07-08 16:55:53 +02003912 return -EINVAL;
Johannes Bergb17166a2012-07-27 11:41:27 +02003913 }
Simon Wunderlich2103dec2013-07-08 16:55:53 +02003914 shift = ieee80211_vif_get_shift(&sdata->vif);
3915
3916 rcu_read_lock();
3917 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
3918 if (WARN_ON(!chanctx_conf)) {
3919 rcu_read_unlock();
3920 return -EINVAL;
3921 }
3922 rate_flags = ieee80211_chandef_rate_flags(&chanctx_conf->def);
3923 rcu_read_unlock();
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003924
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003925 ieee80211_get_rates(sband, bss->supp_rates,
3926 bss->supp_rates_len,
3927 &rates, &basic_rates,
3928 &have_higher_than_11mbit,
Simon Wunderlich2103dec2013-07-08 16:55:53 +02003929 &min_rate, &min_rate_index,
3930 shift, rate_flags);
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003931
3932 /*
3933 * This used to be a workaround for basic rates missing
3934 * in the association response frame. Now that we no
3935 * longer use the basic rates from there, it probably
3936 * doesn't happen any more, but keep the workaround so
3937 * in case some *other* APs are buggy in different ways
3938 * we can connect -- with a warning.
3939 */
3940 if (!basic_rates && min_rate_index >= 0) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003941 sdata_info(sdata,
3942 "No basic rates, using min rate instead\n");
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003943 basic_rates = BIT(min_rate_index);
3944 }
3945
Johannes Berg13e0c8e2012-07-27 10:43:16 +02003946 new_sta->sta.supp_rates[cbss->channel->band] = rates;
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003947 sdata->vif.bss_conf.basic_rates = basic_rates;
3948
3949 /* cf. IEEE 802.11 9.2.12 */
Johannes Berg55de9082012-07-26 17:24:39 +02003950 if (cbss->channel->band == IEEE80211_BAND_2GHZ &&
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003951 have_higher_than_11mbit)
3952 sdata->flags |= IEEE80211_SDATA_OPERATING_GMODE;
3953 else
3954 sdata->flags &= ~IEEE80211_SDATA_OPERATING_GMODE;
3955
3956 memcpy(ifmgd->bssid, cbss->bssid, ETH_ALEN);
3957
Johannes Berg8c358bc2012-05-22 22:13:05 +02003958 /* set timing information */
3959 sdata->vif.bss_conf.beacon_int = cbss->beacon_interval;
Johannes Berg8cef2c92013-02-05 16:54:31 +01003960 rcu_read_lock();
Johannes Bergef429da2013-02-05 17:48:40 +01003961 ies = rcu_dereference(cbss->beacon_ies);
3962 if (ies) {
3963 const u8 *tim_ie;
3964
3965 sdata->vif.bss_conf.sync_tsf = ies->tsf;
3966 sdata->vif.bss_conf.sync_device_ts =
3967 bss->device_ts_beacon;
3968 tim_ie = cfg80211_find_ie(WLAN_EID_TIM,
3969 ies->data, ies->len);
3970 if (tim_ie && tim_ie[1] >= 2)
3971 sdata->vif.bss_conf.sync_dtim_count = tim_ie[2];
3972 else
3973 sdata->vif.bss_conf.sync_dtim_count = 0;
3974 } else if (!(local->hw.flags &
3975 IEEE80211_HW_TIMING_BEACON_ONLY)) {
3976 ies = rcu_dereference(cbss->proberesp_ies);
3977 /* must be non-NULL since beacon IEs were NULL */
3978 sdata->vif.bss_conf.sync_tsf = ies->tsf;
3979 sdata->vif.bss_conf.sync_device_ts =
3980 bss->device_ts_presp;
3981 sdata->vif.bss_conf.sync_dtim_count = 0;
3982 } else {
3983 sdata->vif.bss_conf.sync_tsf = 0;
3984 sdata->vif.bss_conf.sync_device_ts = 0;
3985 sdata->vif.bss_conf.sync_dtim_count = 0;
3986 }
Johannes Berg8cef2c92013-02-05 16:54:31 +01003987 rcu_read_unlock();
Johannes Berg8c358bc2012-05-22 22:13:05 +02003988
3989 /* tell driver about BSSID, basic rates and timing */
Johannes Berg5d6a1b02012-03-08 15:02:08 +01003990 ieee80211_bss_info_change_notify(sdata,
Johannes Berg8c358bc2012-05-22 22:13:05 +02003991 BSS_CHANGED_BSSID | BSS_CHANGED_BASIC_RATES |
3992 BSS_CHANGED_BEACON_INT);
Johannes Berga1cf7752012-03-08 15:02:07 +01003993
3994 if (assoc)
Johannes Berg13e0c8e2012-07-27 10:43:16 +02003995 sta_info_pre_move_state(new_sta, IEEE80211_STA_AUTH);
Johannes Berga1cf7752012-03-08 15:02:07 +01003996
Johannes Berg13e0c8e2012-07-27 10:43:16 +02003997 err = sta_info_insert(new_sta);
3998 new_sta = NULL;
Johannes Berga1cf7752012-03-08 15:02:07 +01003999 if (err) {
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02004000 sdata_info(sdata,
4001 "failed to insert STA entry for the AP (error %d)\n",
4002 err);
Johannes Berga1cf7752012-03-08 15:02:07 +01004003 return err;
4004 }
4005 } else
Joe Perchesb203ca32012-05-08 18:56:52 +00004006 WARN_ON_ONCE(!ether_addr_equal(ifmgd->bssid, cbss->bssid));
Johannes Berga1cf7752012-03-08 15:02:07 +01004007
4008 return 0;
4009}
4010
Johannes Berg77fdaa12009-07-07 03:45:17 +02004011/* config hooks */
4012int ieee80211_mgd_auth(struct ieee80211_sub_if_data *sdata,
4013 struct cfg80211_auth_request *req)
4014{
Johannes Berg66e67e42012-01-20 13:55:27 +01004015 struct ieee80211_local *local = sdata->local;
4016 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
4017 struct ieee80211_mgd_auth_data *auth_data;
Johannes Berg77fdaa12009-07-07 03:45:17 +02004018 u16 auth_alg;
Johannes Berg66e67e42012-01-20 13:55:27 +01004019 int err;
4020
4021 /* prepare auth data structure */
Johannes Berg77fdaa12009-07-07 03:45:17 +02004022
4023 switch (req->auth_type) {
4024 case NL80211_AUTHTYPE_OPEN_SYSTEM:
4025 auth_alg = WLAN_AUTH_OPEN;
4026 break;
4027 case NL80211_AUTHTYPE_SHARED_KEY:
Johannes Berg66e67e42012-01-20 13:55:27 +01004028 if (IS_ERR(local->wep_tx_tfm))
Johannes Berg9dca9c42010-07-21 10:09:25 +02004029 return -EOPNOTSUPP;
Johannes Berg77fdaa12009-07-07 03:45:17 +02004030 auth_alg = WLAN_AUTH_SHARED_KEY;
4031 break;
4032 case NL80211_AUTHTYPE_FT:
4033 auth_alg = WLAN_AUTH_FT;
4034 break;
4035 case NL80211_AUTHTYPE_NETWORK_EAP:
4036 auth_alg = WLAN_AUTH_LEAP;
4037 break;
Jouni Malinen6b8ece32012-09-30 19:29:40 +03004038 case NL80211_AUTHTYPE_SAE:
4039 auth_alg = WLAN_AUTH_SAE;
4040 break;
Johannes Berg77fdaa12009-07-07 03:45:17 +02004041 default:
4042 return -EOPNOTSUPP;
4043 }
4044
Jouni Malinen6b8ece32012-09-30 19:29:40 +03004045 auth_data = kzalloc(sizeof(*auth_data) + req->sae_data_len +
4046 req->ie_len, GFP_KERNEL);
Johannes Berg66e67e42012-01-20 13:55:27 +01004047 if (!auth_data)
Johannes Berg77fdaa12009-07-07 03:45:17 +02004048 return -ENOMEM;
4049
Johannes Berg66e67e42012-01-20 13:55:27 +01004050 auth_data->bss = req->bss;
Johannes Berg77fdaa12009-07-07 03:45:17 +02004051
Jouni Malinen6b8ece32012-09-30 19:29:40 +03004052 if (req->sae_data_len >= 4) {
4053 __le16 *pos = (__le16 *) req->sae_data;
4054 auth_data->sae_trans = le16_to_cpu(pos[0]);
4055 auth_data->sae_status = le16_to_cpu(pos[1]);
4056 memcpy(auth_data->data, req->sae_data + 4,
4057 req->sae_data_len - 4);
4058 auth_data->data_len += req->sae_data_len - 4;
4059 }
4060
Johannes Berg77fdaa12009-07-07 03:45:17 +02004061 if (req->ie && req->ie_len) {
Jouni Malinen6b8ece32012-09-30 19:29:40 +03004062 memcpy(&auth_data->data[auth_data->data_len],
4063 req->ie, req->ie_len);
4064 auth_data->data_len += req->ie_len;
Johannes Berg77fdaa12009-07-07 03:45:17 +02004065 }
4066
Johannes Bergfffd0932009-07-08 14:22:54 +02004067 if (req->key && req->key_len) {
Johannes Berg66e67e42012-01-20 13:55:27 +01004068 auth_data->key_len = req->key_len;
4069 auth_data->key_idx = req->key_idx;
4070 memcpy(auth_data->key, req->key, req->key_len);
Johannes Bergfffd0932009-07-08 14:22:54 +02004071 }
4072
Johannes Berg66e67e42012-01-20 13:55:27 +01004073 auth_data->algorithm = auth_alg;
Johannes Berg77fdaa12009-07-07 03:45:17 +02004074
Johannes Berg66e67e42012-01-20 13:55:27 +01004075 /* try to authenticate/probe */
Johannes Bergf679f652009-12-23 13:15:34 +01004076
Johannes Berg66e67e42012-01-20 13:55:27 +01004077 if ((ifmgd->auth_data && !ifmgd->auth_data->done) ||
4078 ifmgd->assoc_data) {
4079 err = -EBUSY;
4080 goto err_free;
4081 }
Johannes Berg77fdaa12009-07-07 03:45:17 +02004082
Johannes Berg66e67e42012-01-20 13:55:27 +01004083 if (ifmgd->auth_data)
4084 ieee80211_destroy_auth_data(sdata, false);
Guy Eilam2a33bee2011-08-17 15:18:15 +03004085
Johannes Berg66e67e42012-01-20 13:55:27 +01004086 /* prep auth_data so we don't go into idle on disassoc */
4087 ifmgd->auth_data = auth_data;
4088
Johannes Berg7b119dc2013-04-10 21:38:36 +02004089 if (ifmgd->associated) {
4090 u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN];
4091
4092 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH,
4093 WLAN_REASON_UNSPECIFIED,
4094 false, frame_buf);
4095
Johannes Berg6ff57cf2013-05-16 00:55:00 +02004096 cfg80211_tx_mlme_mgmt(sdata->dev, frame_buf,
4097 sizeof(frame_buf));
Johannes Berg7b119dc2013-04-10 21:38:36 +02004098 }
Johannes Berg66e67e42012-01-20 13:55:27 +01004099
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02004100 sdata_info(sdata, "authenticate with %pM\n", req->bss->bssid);
Johannes Berg66e67e42012-01-20 13:55:27 +01004101
Johannes Berga1cf7752012-03-08 15:02:07 +01004102 err = ieee80211_prep_connection(sdata, req->bss, false);
4103 if (err)
Johannes Berg66e67e42012-01-20 13:55:27 +01004104 goto err_clear;
Guy Eilam2a33bee2011-08-17 15:18:15 +03004105
Johannes Berg66e67e42012-01-20 13:55:27 +01004106 err = ieee80211_probe_auth(sdata);
4107 if (err) {
Johannes Berg66e67e42012-01-20 13:55:27 +01004108 sta_info_destroy_addr(sdata, req->bss->bssid);
4109 goto err_clear;
Johannes Bergaf6b6372009-12-23 13:15:35 +01004110 }
4111
Johannes Berg66e67e42012-01-20 13:55:27 +01004112 /* hold our own reference */
Johannes Berg5b112d32013-02-01 01:49:58 +01004113 cfg80211_ref_bss(local->hw.wiphy, auth_data->bss);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02004114 return 0;
Johannes Berge5b900d2010-07-29 16:08:55 +02004115
Johannes Berg66e67e42012-01-20 13:55:27 +01004116 err_clear:
Eliad Peller3d2abdf2012-09-04 17:44:45 +03004117 memset(ifmgd->bssid, 0, ETH_ALEN);
4118 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BSSID);
Johannes Berg66e67e42012-01-20 13:55:27 +01004119 ifmgd->auth_data = NULL;
4120 err_free:
4121 kfree(auth_data);
Johannes Berg66e67e42012-01-20 13:55:27 +01004122 return err;
Johannes Bergaf6b6372009-12-23 13:15:35 +01004123}
4124
Johannes Berg77fdaa12009-07-07 03:45:17 +02004125int ieee80211_mgd_assoc(struct ieee80211_sub_if_data *sdata,
4126 struct cfg80211_assoc_request *req)
4127{
Johannes Berg66e67e42012-01-20 13:55:27 +01004128 struct ieee80211_local *local = sdata->local;
Johannes Berg77fdaa12009-07-07 03:45:17 +02004129 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01004130 struct ieee80211_bss *bss = (void *)req->bss->priv;
Johannes Berg66e67e42012-01-20 13:55:27 +01004131 struct ieee80211_mgd_assoc_data *assoc_data;
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02004132 const struct cfg80211_bss_ies *beacon_ies;
Johannes Berg4e74bfd2012-03-08 15:02:04 +01004133 struct ieee80211_supported_band *sband;
Johannes Bergb08fbbd2012-12-07 13:06:48 +01004134 const u8 *ssidie, *ht_ie, *vht_ie;
Guy Eilam2a33bee2011-08-17 15:18:15 +03004135 int i, err;
Johannes Berg77fdaa12009-07-07 03:45:17 +02004136
Johannes Berg66e67e42012-01-20 13:55:27 +01004137 assoc_data = kzalloc(sizeof(*assoc_data) + req->ie_len, GFP_KERNEL);
4138 if (!assoc_data)
Johannes Bergaf6b6372009-12-23 13:15:35 +01004139 return -ENOMEM;
Johannes Berg77fdaa12009-07-07 03:45:17 +02004140
Johannes Berg9caf0362012-11-29 01:25:20 +01004141 rcu_read_lock();
4142 ssidie = ieee80211_bss_get_ie(req->bss, WLAN_EID_SSID);
4143 if (!ssidie) {
4144 rcu_read_unlock();
4145 kfree(assoc_data);
4146 return -EINVAL;
4147 }
4148 memcpy(assoc_data->ssid, ssidie + 2, ssidie[1]);
4149 assoc_data->ssid_len = ssidie[1];
4150 rcu_read_unlock();
4151
Johannes Berg7b119dc2013-04-10 21:38:36 +02004152 if (ifmgd->associated) {
4153 u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN];
4154
4155 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH,
4156 WLAN_REASON_UNSPECIFIED,
4157 false, frame_buf);
4158
Johannes Berg6ff57cf2013-05-16 00:55:00 +02004159 cfg80211_tx_mlme_mgmt(sdata->dev, frame_buf,
4160 sizeof(frame_buf));
Johannes Berg7b119dc2013-04-10 21:38:36 +02004161 }
Johannes Berg66e67e42012-01-20 13:55:27 +01004162
4163 if (ifmgd->auth_data && !ifmgd->auth_data->done) {
4164 err = -EBUSY;
4165 goto err_free;
Guy Eilam2a33bee2011-08-17 15:18:15 +03004166 }
4167
Johannes Berg66e67e42012-01-20 13:55:27 +01004168 if (ifmgd->assoc_data) {
4169 err = -EBUSY;
4170 goto err_free;
4171 }
4172
4173 if (ifmgd->auth_data) {
4174 bool match;
4175
4176 /* keep sta info, bssid if matching */
Joe Perchesb203ca32012-05-08 18:56:52 +00004177 match = ether_addr_equal(ifmgd->bssid, req->bss->bssid);
Johannes Berg66e67e42012-01-20 13:55:27 +01004178 ieee80211_destroy_auth_data(sdata, match);
4179 }
4180
4181 /* prepare assoc data */
Johannes Berg19c3b832012-08-01 20:13:36 +02004182
Juuso Oikarinend8ec4432010-10-01 16:02:31 +03004183 ifmgd->beacon_crc_valid = false;
4184
Johannes Bergde5036a2012-03-08 15:02:03 +01004185 /*
4186 * IEEE802.11n does not allow TKIP/WEP as pairwise ciphers in HT mode.
4187 * We still associate in non-HT mode (11a/b/g) if any one of these
4188 * ciphers is configured as pairwise.
4189 * We can set this to true for non-11n hardware, that'll be checked
4190 * separately along with the peer capabilities.
4191 */
Johannes Berg1c4cb922012-05-30 15:57:00 +02004192 for (i = 0; i < req->crypto.n_ciphers_pairwise; i++) {
Johannes Berg77fdaa12009-07-07 03:45:17 +02004193 if (req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_WEP40 ||
4194 req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_TKIP ||
Johannes Berg1c4cb922012-05-30 15:57:00 +02004195 req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_WEP104) {
Johannes Berga8243b72012-11-22 14:32:09 +01004196 ifmgd->flags |= IEEE80211_STA_DISABLE_HT;
Mahesh Palivelad545dab2012-07-24 03:33:10 +00004197 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
Johannes Berg1c4cb922012-05-30 15:57:00 +02004198 netdev_info(sdata->dev,
Mahesh Palivelad545dab2012-07-24 03:33:10 +00004199 "disabling HT/VHT due to WEP/TKIP use\n");
Johannes Berg1c4cb922012-05-30 15:57:00 +02004200 }
4201 }
Johannes Berg77fdaa12009-07-07 03:45:17 +02004202
Mahesh Palivelad545dab2012-07-24 03:33:10 +00004203 if (req->flags & ASSOC_REQ_DISABLE_HT) {
Johannes Berga8243b72012-11-22 14:32:09 +01004204 ifmgd->flags |= IEEE80211_STA_DISABLE_HT;
Mahesh Palivelad545dab2012-07-24 03:33:10 +00004205 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
4206 }
Ben Greearef96a8422011-11-18 11:32:00 -08004207
Johannes Bergdd5ecfe2013-02-21 17:40:19 +01004208 if (req->flags & ASSOC_REQ_DISABLE_VHT)
4209 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
4210
Johannes Berg4e74bfd2012-03-08 15:02:04 +01004211 /* Also disable HT if we don't support it or the AP doesn't use WMM */
4212 sband = local->hw.wiphy->bands[req->bss->channel->band];
4213 if (!sband->ht_cap.ht_supported ||
Johannes Berg1c4cb922012-05-30 15:57:00 +02004214 local->hw.queues < IEEE80211_NUM_ACS || !bss->wmm_used) {
Johannes Berga8243b72012-11-22 14:32:09 +01004215 ifmgd->flags |= IEEE80211_STA_DISABLE_HT;
Johannes Berg1b49de22012-07-27 10:29:14 +02004216 if (!bss->wmm_used)
4217 netdev_info(sdata->dev,
4218 "disabling HT as WMM/QoS is not supported by the AP\n");
Johannes Berg1c4cb922012-05-30 15:57:00 +02004219 }
Johannes Berg4e74bfd2012-03-08 15:02:04 +01004220
Mahesh Palivelad545dab2012-07-24 03:33:10 +00004221 /* disable VHT if we don't support it or the AP doesn't use WMM */
4222 if (!sband->vht_cap.vht_supported ||
4223 local->hw.queues < IEEE80211_NUM_ACS || !bss->wmm_used) {
4224 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
Johannes Berg1b49de22012-07-27 10:29:14 +02004225 if (!bss->wmm_used)
4226 netdev_info(sdata->dev,
4227 "disabling VHT as WMM/QoS is not supported by the AP\n");
Mahesh Palivelad545dab2012-07-24 03:33:10 +00004228 }
4229
Ben Greearef96a8422011-11-18 11:32:00 -08004230 memcpy(&ifmgd->ht_capa, &req->ht_capa, sizeof(ifmgd->ht_capa));
4231 memcpy(&ifmgd->ht_capa_mask, &req->ht_capa_mask,
4232 sizeof(ifmgd->ht_capa_mask));
4233
Johannes Bergdd5ecfe2013-02-21 17:40:19 +01004234 memcpy(&ifmgd->vht_capa, &req->vht_capa, sizeof(ifmgd->vht_capa));
4235 memcpy(&ifmgd->vht_capa_mask, &req->vht_capa_mask,
4236 sizeof(ifmgd->vht_capa_mask));
4237
Johannes Berg77fdaa12009-07-07 03:45:17 +02004238 if (req->ie && req->ie_len) {
Johannes Berg66e67e42012-01-20 13:55:27 +01004239 memcpy(assoc_data->ie, req->ie, req->ie_len);
4240 assoc_data->ie_len = req->ie_len;
4241 }
Johannes Berg77fdaa12009-07-07 03:45:17 +02004242
Johannes Berg66e67e42012-01-20 13:55:27 +01004243 assoc_data->bss = req->bss;
Johannes Bergf679f652009-12-23 13:15:34 +01004244
Johannes Bergaf6b6372009-12-23 13:15:35 +01004245 if (ifmgd->req_smps == IEEE80211_SMPS_AUTOMATIC) {
4246 if (ifmgd->powersave)
Johannes Berg04ecd252012-09-11 14:34:12 +02004247 sdata->smps_mode = IEEE80211_SMPS_DYNAMIC;
Johannes Bergaf6b6372009-12-23 13:15:35 +01004248 else
Johannes Berg04ecd252012-09-11 14:34:12 +02004249 sdata->smps_mode = IEEE80211_SMPS_OFF;
Johannes Bergaf6b6372009-12-23 13:15:35 +01004250 } else
Johannes Berg04ecd252012-09-11 14:34:12 +02004251 sdata->smps_mode = ifmgd->req_smps;
Johannes Bergaf6b6372009-12-23 13:15:35 +01004252
Johannes Berg66e67e42012-01-20 13:55:27 +01004253 assoc_data->capability = req->bss->capability;
Johannes Berg32c50572012-03-28 11:04:29 +02004254 assoc_data->wmm = bss->wmm_used &&
4255 (local->hw.queues >= IEEE80211_NUM_ACS);
Johannes Berg66e67e42012-01-20 13:55:27 +01004256 assoc_data->supp_rates = bss->supp_rates;
4257 assoc_data->supp_rates_len = bss->supp_rates_len;
Johannes Berg9dde6422012-05-16 23:43:19 +02004258
Johannes Berg9caf0362012-11-29 01:25:20 +01004259 rcu_read_lock();
Johannes Berg9dde6422012-05-16 23:43:19 +02004260 ht_ie = ieee80211_bss_get_ie(req->bss, WLAN_EID_HT_OPERATION);
4261 if (ht_ie && ht_ie[1] >= sizeof(struct ieee80211_ht_operation))
4262 assoc_data->ap_ht_param =
4263 ((struct ieee80211_ht_operation *)(ht_ie + 2))->ht_param;
4264 else
Johannes Berga8243b72012-11-22 14:32:09 +01004265 ifmgd->flags |= IEEE80211_STA_DISABLE_HT;
Johannes Bergb08fbbd2012-12-07 13:06:48 +01004266 vht_ie = ieee80211_bss_get_ie(req->bss, WLAN_EID_VHT_CAPABILITY);
4267 if (vht_ie && vht_ie[1] >= sizeof(struct ieee80211_vht_cap))
4268 memcpy(&assoc_data->ap_vht_cap, vht_ie + 2,
4269 sizeof(struct ieee80211_vht_cap));
4270 else
4271 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
Johannes Berg9caf0362012-11-29 01:25:20 +01004272 rcu_read_unlock();
Johannes Berg63f170e2009-12-23 13:15:33 +01004273
Kalle Valoab133152010-01-12 10:42:31 +02004274 if (bss->wmm_used && bss->uapsd_supported &&
Alexander Bondar24aa11a2013-04-02 15:30:14 +03004275 (sdata->local->hw.flags & IEEE80211_HW_SUPPORTS_UAPSD) &&
4276 sdata->wmm_acm != 0xff) {
Johannes Berg76f03032012-03-08 15:02:05 +01004277 assoc_data->uapsd = true;
Kalle Valoab133152010-01-12 10:42:31 +02004278 ifmgd->flags |= IEEE80211_STA_UAPSD_ENABLED;
4279 } else {
Johannes Berg76f03032012-03-08 15:02:05 +01004280 assoc_data->uapsd = false;
Kalle Valoab133152010-01-12 10:42:31 +02004281 ifmgd->flags &= ~IEEE80211_STA_UAPSD_ENABLED;
4282 }
4283
Johannes Berg77fdaa12009-07-07 03:45:17 +02004284 if (req->prev_bssid)
Johannes Berg66e67e42012-01-20 13:55:27 +01004285 memcpy(assoc_data->prev_bssid, req->prev_bssid, ETH_ALEN);
Johannes Berg77fdaa12009-07-07 03:45:17 +02004286
4287 if (req->use_mfp) {
4288 ifmgd->mfp = IEEE80211_MFP_REQUIRED;
4289 ifmgd->flags |= IEEE80211_STA_MFP_ENABLED;
4290 } else {
4291 ifmgd->mfp = IEEE80211_MFP_DISABLED;
4292 ifmgd->flags &= ~IEEE80211_STA_MFP_ENABLED;
4293 }
4294
4295 if (req->crypto.control_port)
4296 ifmgd->flags |= IEEE80211_STA_CONTROL_PORT;
4297 else
4298 ifmgd->flags &= ~IEEE80211_STA_CONTROL_PORT;
4299
Johannes Berga621fa42010-08-27 14:26:54 +03004300 sdata->control_port_protocol = req->crypto.control_port_ethertype;
4301 sdata->control_port_no_encrypt = req->crypto.control_port_no_encrypt;
4302
Johannes Berg66e67e42012-01-20 13:55:27 +01004303 /* kick off associate process */
4304
4305 ifmgd->assoc_data = assoc_data;
Johannes Berg826262c2012-12-10 16:38:14 +02004306 ifmgd->dtim_period = 0;
Alexander Bondar989c6502013-05-16 17:34:17 +03004307 ifmgd->have_beacon = false;
Johannes Berg66e67e42012-01-20 13:55:27 +01004308
Johannes Berga1cf7752012-03-08 15:02:07 +01004309 err = ieee80211_prep_connection(sdata, req->bss, true);
4310 if (err)
4311 goto err_clear;
Johannes Berg66e67e42012-01-20 13:55:27 +01004312
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02004313 rcu_read_lock();
4314 beacon_ies = rcu_dereference(req->bss->beacon_ies);
Johannes Berg826262c2012-12-10 16:38:14 +02004315
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02004316 if (sdata->local->hw.flags & IEEE80211_HW_NEED_DTIM_BEFORE_ASSOC &&
4317 !beacon_ies) {
4318 /*
4319 * Wait up to one beacon interval ...
4320 * should this be more if we miss one?
4321 */
4322 sdata_info(sdata, "waiting for beacon from %pM\n",
4323 ifmgd->bssid);
4324 assoc_data->timeout = TU_TO_EXP_TIME(req->bss->beacon_interval);
Johannes Berg89afe612013-02-13 15:39:57 +01004325 assoc_data->timeout_started = true;
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02004326 assoc_data->need_beacon = true;
4327 } else if (beacon_ies) {
4328 const u8 *tim_ie = cfg80211_find_ie(WLAN_EID_TIM,
4329 beacon_ies->data,
4330 beacon_ies->len);
Johannes Bergef429da2013-02-05 17:48:40 +01004331 u8 dtim_count = 0;
4332
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02004333 if (tim_ie && tim_ie[1] >= sizeof(struct ieee80211_tim_ie)) {
4334 const struct ieee80211_tim_ie *tim;
4335 tim = (void *)(tim_ie + 2);
4336 ifmgd->dtim_period = tim->dtim_period;
Johannes Bergef429da2013-02-05 17:48:40 +01004337 dtim_count = tim->dtim_count;
Johannes Berg826262c2012-12-10 16:38:14 +02004338 }
Alexander Bondar989c6502013-05-16 17:34:17 +03004339 ifmgd->have_beacon = true;
Johannes Berg66e67e42012-01-20 13:55:27 +01004340 assoc_data->timeout = jiffies;
Johannes Berg89afe612013-02-13 15:39:57 +01004341 assoc_data->timeout_started = true;
Johannes Bergef429da2013-02-05 17:48:40 +01004342
4343 if (local->hw.flags & IEEE80211_HW_TIMING_BEACON_ONLY) {
4344 sdata->vif.bss_conf.sync_tsf = beacon_ies->tsf;
4345 sdata->vif.bss_conf.sync_device_ts =
4346 bss->device_ts_beacon;
4347 sdata->vif.bss_conf.sync_dtim_count = dtim_count;
4348 }
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02004349 } else {
4350 assoc_data->timeout = jiffies;
Johannes Berg89afe612013-02-13 15:39:57 +01004351 assoc_data->timeout_started = true;
Johannes Berg66e67e42012-01-20 13:55:27 +01004352 }
Emmanuel Grumbachc65dd142012-12-12 10:12:24 +02004353 rcu_read_unlock();
4354
Johannes Berg8d61ffa2013-05-10 12:32:47 +02004355 run_again(sdata, assoc_data->timeout);
Johannes Berg66e67e42012-01-20 13:55:27 +01004356
Paul Stewartfcff4f12012-02-23 17:59:53 -08004357 if (bss->corrupt_data) {
4358 char *corrupt_type = "data";
4359 if (bss->corrupt_data & IEEE80211_BSS_CORRUPT_BEACON) {
4360 if (bss->corrupt_data &
4361 IEEE80211_BSS_CORRUPT_PROBE_RESP)
4362 corrupt_type = "beacon and probe response";
4363 else
4364 corrupt_type = "beacon";
4365 } else if (bss->corrupt_data & IEEE80211_BSS_CORRUPT_PROBE_RESP)
4366 corrupt_type = "probe response";
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02004367 sdata_info(sdata, "associating with AP with corrupt %s\n",
4368 corrupt_type);
Paul Stewartfcff4f12012-02-23 17:59:53 -08004369 }
4370
Johannes Berg8d61ffa2013-05-10 12:32:47 +02004371 return 0;
Johannes Berg66e67e42012-01-20 13:55:27 +01004372 err_clear:
Eliad Peller3d2abdf2012-09-04 17:44:45 +03004373 memset(ifmgd->bssid, 0, ETH_ALEN);
4374 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BSSID);
Johannes Berg66e67e42012-01-20 13:55:27 +01004375 ifmgd->assoc_data = NULL;
4376 err_free:
4377 kfree(assoc_data);
Johannes Berg66e67e42012-01-20 13:55:27 +01004378 return err;
Johannes Berg77fdaa12009-07-07 03:45:17 +02004379}
4380
4381int ieee80211_mgd_deauth(struct ieee80211_sub_if_data *sdata,
Johannes Berg63c9c5e2012-02-24 13:50:51 +01004382 struct cfg80211_deauth_request *req)
Johannes Berg77fdaa12009-07-07 03:45:17 +02004383{
4384 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Antonio Quartulli6ae16772012-09-07 13:28:52 +02004385 u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN];
Stanislaw Gruszka68632552012-10-15 14:52:41 +02004386 bool tx = !req->local_state_change;
Johannes Bergde3d43a2013-05-14 09:39:02 +02004387 bool report_frame = false;
Johannes Berg77fdaa12009-07-07 03:45:17 +02004388
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02004389 sdata_info(sdata,
4390 "deauthenticating from %pM by local choice (reason=%d)\n",
4391 req->bssid, req->reason_code);
Johannes Berg0ff71612009-09-26 14:45:41 +02004392
Johannes Berg86552012012-10-29 09:46:31 +01004393 if (ifmgd->auth_data) {
Emmanuel Grumbach8c7d8572012-07-25 01:42:36 +03004394 drv_mgd_prepare_tx(sdata->local, sdata);
Johannes Berg37ad3882012-02-24 13:50:54 +01004395 ieee80211_send_deauth_disassoc(sdata, req->bssid,
4396 IEEE80211_STYPE_DEAUTH,
Stanislaw Gruszka68632552012-10-15 14:52:41 +02004397 req->reason_code, tx,
Johannes Berg37ad3882012-02-24 13:50:54 +01004398 frame_buf);
Johannes Berg86552012012-10-29 09:46:31 +01004399 ieee80211_destroy_auth_data(sdata, false);
Johannes Berg86552012012-10-29 09:46:31 +01004400
Johannes Bergde3d43a2013-05-14 09:39:02 +02004401 report_frame = true;
Johannes Berg86552012012-10-29 09:46:31 +01004402 goto out;
Emmanuel Grumbach8c7d8572012-07-25 01:42:36 +03004403 }
4404
Johannes Berg86552012012-10-29 09:46:31 +01004405 if (ifmgd->associated &&
4406 ether_addr_equal(ifmgd->associated->bssid, req->bssid)) {
4407 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH,
4408 req->reason_code, tx, frame_buf);
Johannes Bergde3d43a2013-05-14 09:39:02 +02004409 report_frame = true;
Johannes Berg86552012012-10-29 09:46:31 +01004410 }
Johannes Berg37ad3882012-02-24 13:50:54 +01004411
Johannes Berg86552012012-10-29 09:46:31 +01004412 out:
Johannes Bergde3d43a2013-05-14 09:39:02 +02004413 if (report_frame)
Johannes Berg6ff57cf2013-05-16 00:55:00 +02004414 cfg80211_tx_mlme_mgmt(sdata->dev, frame_buf,
4415 IEEE80211_DEAUTH_FRAME_LEN);
Johannes Berg86552012012-10-29 09:46:31 +01004416
Johannes Berg77fdaa12009-07-07 03:45:17 +02004417 return 0;
4418}
4419
4420int ieee80211_mgd_disassoc(struct ieee80211_sub_if_data *sdata,
Johannes Berg63c9c5e2012-02-24 13:50:51 +01004421 struct cfg80211_disassoc_request *req)
Johannes Berg77fdaa12009-07-07 03:45:17 +02004422{
4423 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
Jouni Malinene69e95d2010-03-29 23:29:31 -07004424 u8 bssid[ETH_ALEN];
Antonio Quartulli6ae16772012-09-07 13:28:52 +02004425 u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN];
Johannes Berg77fdaa12009-07-07 03:45:17 +02004426
Johannes Berg8d8b2612009-07-25 11:58:36 +02004427 /*
4428 * cfg80211 should catch this ... but it's racy since
4429 * we can receive a disassoc frame, process it, hand it
4430 * to cfg80211 while that's in a locked section already
4431 * trying to tell us that the user wants to disconnect.
4432 */
Johannes Berg8d61ffa2013-05-10 12:32:47 +02004433 if (ifmgd->associated != req->bss)
Johannes Berg77fdaa12009-07-07 03:45:17 +02004434 return -ENOLINK;
Johannes Berg77fdaa12009-07-07 03:45:17 +02004435
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02004436 sdata_info(sdata,
4437 "disassociating from %pM by local choice (reason=%d)\n",
4438 req->bss->bssid, req->reason_code);
Johannes Berg0ff71612009-09-26 14:45:41 +02004439
Jouni Malinene69e95d2010-03-29 23:29:31 -07004440 memcpy(bssid, req->bss->bssid, ETH_ALEN);
Johannes Berg37ad3882012-02-24 13:50:54 +01004441 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DISASSOC,
4442 req->reason_code, !req->local_state_change,
4443 frame_buf);
Johannes Berg77fdaa12009-07-07 03:45:17 +02004444
Johannes Berg6ff57cf2013-05-16 00:55:00 +02004445 cfg80211_tx_mlme_mgmt(sdata->dev, frame_buf,
4446 IEEE80211_DEAUTH_FRAME_LEN);
Johannes Bergbc83b682009-11-29 12:19:06 +01004447
Johannes Berg77fdaa12009-07-07 03:45:17 +02004448 return 0;
4449}
Jouni Malinen026331c2010-02-15 12:53:10 +02004450
Eliad Pellerafa762f2012-04-23 14:45:15 +03004451void ieee80211_mgd_stop(struct ieee80211_sub_if_data *sdata)
Johannes Berg54e4ffb2012-02-25 21:48:08 +01004452{
4453 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
4454
Ben Greear49921852013-02-20 09:41:09 -08004455 /*
4456 * Make sure some work items will not run after this,
4457 * they will not do anything but might not have been
4458 * cancelled when disconnecting.
4459 */
4460 cancel_work_sync(&ifmgd->monitor_work);
4461 cancel_work_sync(&ifmgd->beacon_connection_loss_work);
4462 cancel_work_sync(&ifmgd->request_smps_work);
4463 cancel_work_sync(&ifmgd->csa_connection_drop_work);
4464 cancel_work_sync(&ifmgd->chswitch_work);
4465
Johannes Berg8d61ffa2013-05-10 12:32:47 +02004466 sdata_lock(sdata);
Johannes Berg959867f2013-06-19 13:05:42 +02004467 if (ifmgd->assoc_data) {
4468 struct cfg80211_bss *bss = ifmgd->assoc_data->bss;
Johannes Berg54e4ffb2012-02-25 21:48:08 +01004469 ieee80211_destroy_assoc_data(sdata, false);
Johannes Berg959867f2013-06-19 13:05:42 +02004470 cfg80211_assoc_timeout(sdata->dev, bss);
4471 }
Johannes Berg54e4ffb2012-02-25 21:48:08 +01004472 if (ifmgd->auth_data)
4473 ieee80211_destroy_auth_data(sdata, false);
4474 del_timer_sync(&ifmgd->timer);
Johannes Berg8d61ffa2013-05-10 12:32:47 +02004475 sdata_unlock(sdata);
Johannes Berg54e4ffb2012-02-25 21:48:08 +01004476}
4477
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02004478void ieee80211_cqm_rssi_notify(struct ieee80211_vif *vif,
4479 enum nl80211_cqm_rssi_threshold_event rssi_event,
4480 gfp_t gfp)
4481{
4482 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
4483
Johannes Bergb5878a22010-04-07 16:48:40 +02004484 trace_api_cqm_rssi_notify(sdata, rssi_event);
4485
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02004486 cfg80211_cqm_rssi_notify(sdata->dev, rssi_event, gfp);
4487}
4488EXPORT_SYMBOL(ieee80211_cqm_rssi_notify);