mac80211: use new cfg80211_inform_bss_frame_data() API
[deliverable/linux.git] / net / mac80211 / mlme.c
CommitLineData
f0706e82
JB
1/*
2 * BSS client mode implementation
5394af4d 3 * Copyright 2003-2008, Jouni Malinen <j@w1.fi>
f0706e82
JB
4 * 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>
d98ad83e 8 * Copyright 2013-2014 Intel Mobile Communications GmbH
322cd406 9 * Copyright (C) 2015 Intel Deutschland GmbH
f0706e82
JB
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License version 2 as
13 * published by the Free Software Foundation.
14 */
15
5b323edb 16#include <linux/delay.h>
f0706e82
JB
17#include <linux/if_ether.h>
18#include <linux/skbuff.h>
f0706e82 19#include <linux/if_arp.h>
f0706e82 20#include <linux/etherdevice.h>
d9b93842 21#include <linux/moduleparam.h>
d0709a65 22#include <linux/rtnetlink.h>
e8db0be1 23#include <linux/pm_qos.h>
d91f36db 24#include <linux/crc32.h>
5a0e3ad6 25#include <linux/slab.h>
bc3b2d7f 26#include <linux/export.h>
f0706e82 27#include <net/mac80211.h>
472dbc45 28#include <asm/unaligned.h>
60f8b39c 29
f0706e82 30#include "ieee80211_i.h"
24487981 31#include "driver-ops.h"
2c8dccc7
JB
32#include "rate.h"
33#include "led.h"
f0706e82 34
1672c0e3 35#define IEEE80211_AUTH_TIMEOUT (HZ / 5)
cb236d2d 36#define IEEE80211_AUTH_TIMEOUT_LONG (HZ / 2)
1672c0e3
JB
37#define IEEE80211_AUTH_TIMEOUT_SHORT (HZ / 10)
38#define IEEE80211_AUTH_MAX_TRIES 3
39#define IEEE80211_AUTH_WAIT_ASSOC (HZ * 5)
40#define IEEE80211_ASSOC_TIMEOUT (HZ / 5)
cb236d2d 41#define IEEE80211_ASSOC_TIMEOUT_LONG (HZ / 2)
1672c0e3
JB
42#define IEEE80211_ASSOC_TIMEOUT_SHORT (HZ / 10)
43#define IEEE80211_ASSOC_MAX_TRIES 3
66e67e41 44
180205bd
BG
45static int max_nullfunc_tries = 2;
46module_param(max_nullfunc_tries, int, 0644);
47MODULE_PARM_DESC(max_nullfunc_tries,
48 "Maximum nullfunc tx tries before disconnecting (reason 4).");
49
50static int max_probe_tries = 5;
51module_param(max_probe_tries, int, 0644);
52MODULE_PARM_DESC(max_probe_tries,
53 "Maximum probe tries before disconnecting (reason 4).");
b291ba11
JB
54
55/*
7ccc8bd7
FF
56 * Beacon loss timeout is calculated as N frames times the
57 * advertised beacon interval. This may need to be somewhat
58 * higher than what hardware might detect to account for
59 * delays in the host processing frames. But since we also
60 * probe on beacon miss before declaring the connection lost
61 * default to what we want.
b291ba11 62 */
59c1ec2b
BG
63static int beacon_loss_count = 7;
64module_param(beacon_loss_count, int, 0644);
65MODULE_PARM_DESC(beacon_loss_count,
66 "Number of beacon intervals before we decide beacon was lost.");
7ccc8bd7 67
b291ba11
JB
68/*
69 * Time the connection can be idle before we probe
70 * it to see if we can still talk to the AP.
71 */
d1c5091f 72#define IEEE80211_CONNECTION_IDLE_TIME (30 * HZ)
b291ba11
JB
73/*
74 * Time we wait for a probe response after sending
75 * a probe request because of beacon loss or for
76 * checking the connection still works.
77 */
180205bd
BG
78static int probe_wait_ms = 500;
79module_param(probe_wait_ms, int, 0644);
80MODULE_PARM_DESC(probe_wait_ms,
81 "Maximum time(ms) to wait for probe response"
82 " before disconnecting (reason 4).");
f0706e82 83
391a200a
JM
84/*
85 * How many Beacon frames need to have been used in average signal strength
86 * before starting to indicate signal change events.
87 */
88#define IEEE80211_SIGNAL_AVE_MIN_COUNT 4
89
ca386f31
JB
90/*
91 * We can have multiple work items (and connection probing)
92 * scheduling this timer, but we need to take care to only
93 * reschedule it when it should fire _earlier_ than it was
94 * asked for before, or if it's not pending right now. This
95 * function ensures that. Note that it then is required to
96 * run this function for all timeouts after the first one
97 * has happened -- the work that runs from this timer will
98 * do that.
99 */
8d61ffa5
JB
100static void run_again(struct ieee80211_sub_if_data *sdata,
101 unsigned long timeout)
ca386f31 102{
8d61ffa5 103 sdata_assert_lock(sdata);
ca386f31 104
8d61ffa5
JB
105 if (!timer_pending(&sdata->u.mgd.timer) ||
106 time_before(timeout, sdata->u.mgd.timer.expires))
107 mod_timer(&sdata->u.mgd.timer, timeout);
ca386f31
JB
108}
109
d3a910a8 110void ieee80211_sta_reset_beacon_monitor(struct ieee80211_sub_if_data *sdata)
b291ba11 111{
c1288b12 112 if (sdata->vif.driver_flags & IEEE80211_VIF_BEACON_FILTER)
b291ba11
JB
113 return;
114
30686bf7 115 if (ieee80211_hw_check(&sdata->local->hw, CONNECTION_MONITOR))
7eeff74c
JB
116 return;
117
b291ba11 118 mod_timer(&sdata->u.mgd.bcn_mon_timer,
7ccc8bd7 119 round_jiffies_up(jiffies + sdata->u.mgd.beacon_timeout));
b291ba11
JB
120}
121
be099e82
LR
122void ieee80211_sta_reset_conn_monitor(struct ieee80211_sub_if_data *sdata)
123{
0c699c3a
LR
124 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
125
8628172f
SG
126 if (unlikely(!sdata->u.mgd.associated))
127 return;
128
448cd2e2
EP
129 ifmgd->probe_send_count = 0;
130
30686bf7 131 if (ieee80211_hw_check(&sdata->local->hw, CONNECTION_MONITOR))
be099e82
LR
132 return;
133
134 mod_timer(&sdata->u.mgd.conn_mon_timer,
135 round_jiffies_up(jiffies + IEEE80211_CONNECTION_IDLE_TIME));
136}
137
5484e237 138static int ecw2cw(int ecw)
60f8b39c 139{
5484e237 140 return (1 << ecw) - 1;
60f8b39c
JB
141}
142
6565ec9b
JB
143static u32
144ieee80211_determine_chantype(struct ieee80211_sub_if_data *sdata,
145 struct ieee80211_supported_band *sband,
146 struct ieee80211_channel *channel,
53b954ee 147 const struct ieee80211_ht_cap *ht_cap,
6565ec9b
JB
148 const struct ieee80211_ht_operation *ht_oper,
149 const struct ieee80211_vht_operation *vht_oper,
5cdaed1e 150 struct cfg80211_chan_def *chandef, bool tracking)
6565ec9b 151{
5cdaed1e 152 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
6565ec9b 153 struct cfg80211_chan_def vht_chandef;
179b8fc7 154 struct ieee80211_sta_ht_cap sta_ht_cap;
6565ec9b
JB
155 u32 ht_cfreq, ret;
156
179b8fc7
CRI
157 memcpy(&sta_ht_cap, &sband->ht_cap, sizeof(sta_ht_cap));
158 ieee80211_apply_htcap_overrides(sdata, &sta_ht_cap);
159
6565ec9b
JB
160 chandef->chan = channel;
161 chandef->width = NL80211_CHAN_WIDTH_20_NOHT;
162 chandef->center_freq1 = channel->center_freq;
163 chandef->center_freq2 = 0;
164
179b8fc7 165 if (!ht_cap || !ht_oper || !sta_ht_cap.ht_supported) {
6565ec9b
JB
166 ret = IEEE80211_STA_DISABLE_HT | IEEE80211_STA_DISABLE_VHT;
167 goto out;
168 }
169
170 chandef->width = NL80211_CHAN_WIDTH_20;
171
53b954ee
EP
172 if (!(ht_cap->cap_info &
173 cpu_to_le16(IEEE80211_HT_CAP_SUP_WIDTH_20_40))) {
f3000e1b 174 ret = IEEE80211_STA_DISABLE_40MHZ;
7e6225a1 175 vht_chandef = *chandef;
53b954ee
EP
176 goto out;
177 }
178
6565ec9b
JB
179 ht_cfreq = ieee80211_channel_to_frequency(ht_oper->primary_chan,
180 channel->band);
181 /* check that channel matches the right operating channel */
5cdaed1e 182 if (!tracking && channel->center_freq != ht_cfreq) {
6565ec9b
JB
183 /*
184 * It's possible that some APs are confused here;
185 * Netgear WNDR3700 sometimes reports 4 higher than
186 * the actual channel in association responses, but
187 * since we look at probe response/beacon data here
188 * it should be OK.
189 */
5cdaed1e
JB
190 sdata_info(sdata,
191 "Wrong control channel: center-freq: %d ht-cfreq: %d ht->primary_chan: %d band: %d - Disabling HT\n",
192 channel->center_freq, ht_cfreq,
193 ht_oper->primary_chan, channel->band);
6565ec9b
JB
194 ret = IEEE80211_STA_DISABLE_HT | IEEE80211_STA_DISABLE_VHT;
195 goto out;
196 }
197
198 /* check 40 MHz support, if we have it */
179b8fc7 199 if (sta_ht_cap.cap & IEEE80211_HT_CAP_SUP_WIDTH_20_40) {
6565ec9b
JB
200 switch (ht_oper->ht_param & IEEE80211_HT_PARAM_CHA_SEC_OFFSET) {
201 case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
202 chandef->width = NL80211_CHAN_WIDTH_40;
203 chandef->center_freq1 += 10;
204 break;
205 case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
206 chandef->width = NL80211_CHAN_WIDTH_40;
207 chandef->center_freq1 -= 10;
208 break;
209 }
210 } else {
211 /* 40 MHz (and 80 MHz) must be supported for VHT */
212 ret = IEEE80211_STA_DISABLE_VHT;
85220d71
JB
213 /* also mark 40 MHz disabled */
214 ret |= IEEE80211_STA_DISABLE_40MHZ;
6565ec9b
JB
215 goto out;
216 }
217
218 if (!vht_oper || !sband->vht_cap.vht_supported) {
219 ret = IEEE80211_STA_DISABLE_VHT;
220 goto out;
221 }
222
223 vht_chandef.chan = channel;
224 vht_chandef.center_freq1 =
225 ieee80211_channel_to_frequency(vht_oper->center_freq_seg1_idx,
226 channel->band);
227 vht_chandef.center_freq2 = 0;
228
6565ec9b
JB
229 switch (vht_oper->chan_width) {
230 case IEEE80211_VHT_CHANWIDTH_USE_HT:
231 vht_chandef.width = chandef->width;
cb664981 232 vht_chandef.center_freq1 = chandef->center_freq1;
6565ec9b
JB
233 break;
234 case IEEE80211_VHT_CHANWIDTH_80MHZ:
235 vht_chandef.width = NL80211_CHAN_WIDTH_80;
236 break;
237 case IEEE80211_VHT_CHANWIDTH_160MHZ:
238 vht_chandef.width = NL80211_CHAN_WIDTH_160;
239 break;
240 case IEEE80211_VHT_CHANWIDTH_80P80MHZ:
241 vht_chandef.width = NL80211_CHAN_WIDTH_80P80;
6553bf04
JB
242 vht_chandef.center_freq2 =
243 ieee80211_channel_to_frequency(
244 vht_oper->center_freq_seg2_idx,
245 channel->band);
6565ec9b
JB
246 break;
247 default:
5cdaed1e 248 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_VHT))
30eb1dc2
JB
249 sdata_info(sdata,
250 "AP VHT operation IE has invalid channel width (%d), disable VHT\n",
251 vht_oper->chan_width);
6565ec9b
JB
252 ret = IEEE80211_STA_DISABLE_VHT;
253 goto out;
254 }
255
256 if (!cfg80211_chandef_valid(&vht_chandef)) {
5cdaed1e 257 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_VHT))
30eb1dc2
JB
258 sdata_info(sdata,
259 "AP VHT information is invalid, disable VHT\n");
6565ec9b
JB
260 ret = IEEE80211_STA_DISABLE_VHT;
261 goto out;
262 }
263
264 if (cfg80211_chandef_identical(chandef, &vht_chandef)) {
265 ret = 0;
266 goto out;
267 }
268
269 if (!cfg80211_chandef_compatible(chandef, &vht_chandef)) {
5cdaed1e 270 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_VHT))
30eb1dc2
JB
271 sdata_info(sdata,
272 "AP VHT information doesn't match HT, disable VHT\n");
6565ec9b
JB
273 ret = IEEE80211_STA_DISABLE_VHT;
274 goto out;
275 }
276
277 *chandef = vht_chandef;
278
279 ret = 0;
280
281out:
963a1852
JB
282 /*
283 * When tracking the current AP, don't do any further checks if the
284 * new chandef is identical to the one we're currently using for the
285 * connection. This keeps us from playing ping-pong with regulatory,
286 * without it the following can happen (for example):
287 * - connect to an AP with 80 MHz, world regdom allows 80 MHz
288 * - AP advertises regdom US
289 * - CRDA loads regdom US with 80 MHz prohibited (old database)
290 * - the code below detects an unsupported channel, downgrades, and
291 * we disconnect from the AP in the caller
292 * - disconnect causes CRDA to reload world regdomain and the game
293 * starts anew.
294 * (see https://bugzilla.kernel.org/show_bug.cgi?id=70881)
295 *
296 * It seems possible that there are still scenarios with CSA or real
297 * bandwidth changes where a this could happen, but those cases are
298 * less common and wouldn't completely prevent using the AP.
299 */
300 if (tracking &&
301 cfg80211_chandef_identical(chandef, &sdata->vif.bss_conf.chandef))
302 return ret;
303
586e01ed
JB
304 /* don't print the message below for VHT mismatch if VHT is disabled */
305 if (ret & IEEE80211_STA_DISABLE_VHT)
306 vht_chandef = *chandef;
307
ddfe49b4
JB
308 /*
309 * Ignore the DISABLED flag when we're already connected and only
310 * tracking the APs beacon for bandwidth changes - otherwise we
311 * might get disconnected here if we connect to an AP, update our
312 * regulatory information based on the AP's country IE and the
313 * information we have is wrong/outdated and disables the channel
314 * that we're actually using for the connection to the AP.
315 */
6565ec9b 316 while (!cfg80211_chandef_usable(sdata->local->hw.wiphy, chandef,
ddfe49b4
JB
317 tracking ? 0 :
318 IEEE80211_CHAN_DISABLED)) {
6565ec9b
JB
319 if (WARN_ON(chandef->width == NL80211_CHAN_WIDTH_20_NOHT)) {
320 ret = IEEE80211_STA_DISABLE_HT |
321 IEEE80211_STA_DISABLE_VHT;
b56e4b85 322 break;
6565ec9b
JB
323 }
324
e6b7cde4 325 ret |= ieee80211_chandef_downgrade(chandef);
6565ec9b
JB
326 }
327
5cdaed1e 328 if (chandef->width != vht_chandef.width && !tracking)
6565ec9b
JB
329 sdata_info(sdata,
330 "capabilities/regulatory prevented using AP HT/VHT configuration, downgraded\n");
331
332 WARN_ON_ONCE(!cfg80211_chandef_valid(chandef));
333 return ret;
334}
335
30eb1dc2
JB
336static int ieee80211_config_bw(struct ieee80211_sub_if_data *sdata,
337 struct sta_info *sta,
53b954ee 338 const struct ieee80211_ht_cap *ht_cap,
30eb1dc2
JB
339 const struct ieee80211_ht_operation *ht_oper,
340 const struct ieee80211_vht_operation *vht_oper,
341 const u8 *bssid, u32 *changed)
d5522e03
JB
342{
343 struct ieee80211_local *local = sdata->local;
30eb1dc2 344 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
d5522e03 345 struct ieee80211_supported_band *sband;
55de908a 346 struct ieee80211_channel *chan;
30eb1dc2 347 struct cfg80211_chan_def chandef;
9ed6bcce 348 u16 ht_opmode;
30eb1dc2
JB
349 u32 flags;
350 enum ieee80211_sta_rx_bandwidth new_sta_bw;
351 int ret;
d5522e03 352
30eb1dc2
JB
353 /* if HT was/is disabled, don't track any bandwidth changes */
354 if (ifmgd->flags & IEEE80211_STA_DISABLE_HT || !ht_oper)
1128958d
JB
355 return 0;
356
30eb1dc2
JB
357 /* don't check VHT if we associated as non-VHT station */
358 if (ifmgd->flags & IEEE80211_STA_DISABLE_VHT)
359 vht_oper = NULL;
360
361 if (WARN_ON_ONCE(!sta))
362 return -EINVAL;
363
017b45bb
AA
364 /*
365 * if bss configuration changed store the new one -
366 * this may be applicable even if channel is identical
367 */
368 ht_opmode = le16_to_cpu(ht_oper->operation_mode);
369 if (sdata->vif.bss_conf.ht_operation_mode != ht_opmode) {
370 *changed |= BSS_CHANGED_HT;
371 sdata->vif.bss_conf.ht_operation_mode = ht_opmode;
372 }
373
f2d9330e 374 chan = sdata->vif.bss_conf.chandef.chan;
55de908a 375 sband = local->hw.wiphy->bands[chan->band];
d5522e03 376
30eb1dc2 377 /* calculate new channel (type) based on HT/VHT operation IEs */
53b954ee
EP
378 flags = ieee80211_determine_chantype(sdata, sband, chan,
379 ht_cap, ht_oper, vht_oper,
380 &chandef, true);
30eb1dc2
JB
381
382 /*
383 * Downgrade the new channel if we associated with restricted
384 * capabilities. For example, if we associated as a 20 MHz STA
385 * to a 40 MHz AP (due to regulatory, capabilities or config
386 * reasons) then switching to a 40 MHz channel now won't do us
387 * any good -- we couldn't use it with the AP.
388 */
389 if (ifmgd->flags & IEEE80211_STA_DISABLE_80P80MHZ &&
390 chandef.width == NL80211_CHAN_WIDTH_80P80)
e6b7cde4 391 flags |= ieee80211_chandef_downgrade(&chandef);
30eb1dc2
JB
392 if (ifmgd->flags & IEEE80211_STA_DISABLE_160MHZ &&
393 chandef.width == NL80211_CHAN_WIDTH_160)
e6b7cde4 394 flags |= ieee80211_chandef_downgrade(&chandef);
30eb1dc2
JB
395 if (ifmgd->flags & IEEE80211_STA_DISABLE_40MHZ &&
396 chandef.width > NL80211_CHAN_WIDTH_20)
e6b7cde4 397 flags |= ieee80211_chandef_downgrade(&chandef);
30eb1dc2
JB
398
399 if (cfg80211_chandef_identical(&chandef, &sdata->vif.bss_conf.chandef))
400 return 0;
401
402 sdata_info(sdata,
403 "AP %pM changed bandwidth, new config is %d MHz, width %d (%d/%d MHz)\n",
404 ifmgd->bssid, chandef.chan->center_freq, chandef.width,
405 chandef.center_freq1, chandef.center_freq2);
406
407 if (flags != (ifmgd->flags & (IEEE80211_STA_DISABLE_HT |
408 IEEE80211_STA_DISABLE_VHT |
409 IEEE80211_STA_DISABLE_40MHZ |
410 IEEE80211_STA_DISABLE_80P80MHZ |
411 IEEE80211_STA_DISABLE_160MHZ)) ||
412 !cfg80211_chandef_valid(&chandef)) {
413 sdata_info(sdata,
414 "AP %pM changed bandwidth in a way we can't support - disconnect\n",
415 ifmgd->bssid);
416 return -EINVAL;
417 }
418
419 switch (chandef.width) {
420 case NL80211_CHAN_WIDTH_20_NOHT:
421 case NL80211_CHAN_WIDTH_20:
422 new_sta_bw = IEEE80211_STA_RX_BW_20;
423 break;
4bf88530 424 case NL80211_CHAN_WIDTH_40:
30eb1dc2 425 new_sta_bw = IEEE80211_STA_RX_BW_40;
64f68e5d 426 break;
30eb1dc2
JB
427 case NL80211_CHAN_WIDTH_80:
428 new_sta_bw = IEEE80211_STA_RX_BW_80;
429 break;
430 case NL80211_CHAN_WIDTH_80P80:
431 case NL80211_CHAN_WIDTH_160:
432 new_sta_bw = IEEE80211_STA_RX_BW_160;
64f68e5d 433 break;
30eb1dc2
JB
434 default:
435 return -EINVAL;
64f68e5d 436 }
d5522e03 437
30eb1dc2
JB
438 if (new_sta_bw > sta->cur_max_bandwidth)
439 new_sta_bw = sta->cur_max_bandwidth;
64f68e5d 440
30eb1dc2
JB
441 if (new_sta_bw < sta->sta.bandwidth) {
442 sta->sta.bandwidth = new_sta_bw;
443 rate_control_rate_update(local, sband, sta,
444 IEEE80211_RC_BW_CHANGED);
445 }
64f68e5d 446
30eb1dc2
JB
447 ret = ieee80211_vif_change_bandwidth(sdata, &chandef, changed);
448 if (ret) {
449 sdata_info(sdata,
450 "AP %pM changed bandwidth to incompatible one - disconnect\n",
451 ifmgd->bssid);
452 return ret;
453 }
7cc44ed4 454
30eb1dc2
JB
455 if (new_sta_bw > sta->sta.bandwidth) {
456 sta->sta.bandwidth = new_sta_bw;
457 rate_control_rate_update(local, sband, sta,
458 IEEE80211_RC_BW_CHANGED);
0aaffa9b 459 }
d5522e03 460
30eb1dc2 461 return 0;
d5522e03
JB
462}
463
9c6bd790
JB
464/* frame sending functions */
465
66e67e41 466static void ieee80211_add_ht_ie(struct ieee80211_sub_if_data *sdata,
9dde6423 467 struct sk_buff *skb, u8 ap_ht_param,
66e67e41
JB
468 struct ieee80211_supported_band *sband,
469 struct ieee80211_channel *channel,
470 enum ieee80211_smps_mode smps)
471{
66e67e41
JB
472 u8 *pos;
473 u32 flags = channel->flags;
474 u16 cap;
475 struct ieee80211_sta_ht_cap ht_cap;
476
477 BUILD_BUG_ON(sizeof(ht_cap) != sizeof(sband->ht_cap));
478
66e67e41
JB
479 memcpy(&ht_cap, &sband->ht_cap, sizeof(ht_cap));
480 ieee80211_apply_htcap_overrides(sdata, &ht_cap);
481
66e67e41
JB
482 /* determine capability flags */
483 cap = ht_cap.cap;
484
9dde6423 485 switch (ap_ht_param & IEEE80211_HT_PARAM_CHA_SEC_OFFSET) {
66e67e41
JB
486 case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
487 if (flags & IEEE80211_CHAN_NO_HT40PLUS) {
488 cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
489 cap &= ~IEEE80211_HT_CAP_SGI_40;
490 }
491 break;
492 case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
493 if (flags & IEEE80211_CHAN_NO_HT40MINUS) {
494 cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
495 cap &= ~IEEE80211_HT_CAP_SGI_40;
496 }
497 break;
498 }
499
24398e39
JB
500 /*
501 * If 40 MHz was disabled associate as though we weren't
502 * capable of 40 MHz -- some broken APs will never fall
503 * back to trying to transmit in 20 MHz.
504 */
505 if (sdata->u.mgd.flags & IEEE80211_STA_DISABLE_40MHZ) {
506 cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
507 cap &= ~IEEE80211_HT_CAP_SGI_40;
508 }
509
66e67e41
JB
510 /* set SM PS mode properly */
511 cap &= ~IEEE80211_HT_CAP_SM_PS;
512 switch (smps) {
513 case IEEE80211_SMPS_AUTOMATIC:
514 case IEEE80211_SMPS_NUM_MODES:
515 WARN_ON(1);
516 case IEEE80211_SMPS_OFF:
517 cap |= WLAN_HT_CAP_SM_PS_DISABLED <<
518 IEEE80211_HT_CAP_SM_PS_SHIFT;
519 break;
520 case IEEE80211_SMPS_STATIC:
521 cap |= WLAN_HT_CAP_SM_PS_STATIC <<
522 IEEE80211_HT_CAP_SM_PS_SHIFT;
523 break;
524 case IEEE80211_SMPS_DYNAMIC:
525 cap |= WLAN_HT_CAP_SM_PS_DYNAMIC <<
526 IEEE80211_HT_CAP_SM_PS_SHIFT;
527 break;
528 }
529
530 /* reserve and fill IE */
531 pos = skb_put(skb, sizeof(struct ieee80211_ht_cap) + 2);
532 ieee80211_ie_build_ht_cap(pos, &ht_cap, cap);
533}
534
322cd406
SS
535/* This function determines vht capability flags for the association
536 * and builds the IE.
537 * Note - the function may set the owner of the MU-MIMO capability
538 */
d545daba
MP
539static void ieee80211_add_vht_ie(struct ieee80211_sub_if_data *sdata,
540 struct sk_buff *skb,
b08fbbd8
JB
541 struct ieee80211_supported_band *sband,
542 struct ieee80211_vht_cap *ap_vht_cap)
d545daba 543{
322cd406 544 struct ieee80211_local *local = sdata->local;
d545daba
MP
545 u8 *pos;
546 u32 cap;
547 struct ieee80211_sta_vht_cap vht_cap;
c1cf6d4e 548 u32 mask, ap_bf_sts, our_bf_sts;
d545daba
MP
549
550 BUILD_BUG_ON(sizeof(vht_cap) != sizeof(sband->vht_cap));
551
552 memcpy(&vht_cap, &sband->vht_cap, sizeof(vht_cap));
dd5ecfea 553 ieee80211_apply_vhtcap_overrides(sdata, &vht_cap);
d545daba
MP
554
555 /* determine capability flags */
556 cap = vht_cap.cap;
557
f2d9d270 558 if (sdata->u.mgd.flags & IEEE80211_STA_DISABLE_80P80MHZ) {
575f0530
JB
559 u32 bw = cap & IEEE80211_VHT_CAP_SUPP_CHAN_WIDTH_MASK;
560
561 cap &= ~IEEE80211_VHT_CAP_SUPP_CHAN_WIDTH_MASK;
562 if (bw == IEEE80211_VHT_CAP_SUPP_CHAN_WIDTH_160MHZ ||
563 bw == IEEE80211_VHT_CAP_SUPP_CHAN_WIDTH_160_80PLUS80MHZ)
564 cap |= IEEE80211_VHT_CAP_SUPP_CHAN_WIDTH_160MHZ;
f2d9d270
JB
565 }
566
567 if (sdata->u.mgd.flags & IEEE80211_STA_DISABLE_160MHZ) {
568 cap &= ~IEEE80211_VHT_CAP_SHORT_GI_160;
575f0530 569 cap &= ~IEEE80211_VHT_CAP_SUPP_CHAN_WIDTH_MASK;
f2d9d270
JB
570 }
571
b08fbbd8
JB
572 /*
573 * Some APs apparently get confused if our capabilities are better
574 * than theirs, so restrict what we advertise in the assoc request.
575 */
576 if (!(ap_vht_cap->vht_cap_info &
577 cpu_to_le32(IEEE80211_VHT_CAP_SU_BEAMFORMER_CAPABLE)))
322cd406
SS
578 cap &= ~(IEEE80211_VHT_CAP_SU_BEAMFORMEE_CAPABLE |
579 IEEE80211_VHT_CAP_MU_BEAMFORMEE_CAPABLE);
580 else if (!(ap_vht_cap->vht_cap_info &
581 cpu_to_le32(IEEE80211_VHT_CAP_MU_BEAMFORMER_CAPABLE)))
582 cap &= ~IEEE80211_VHT_CAP_MU_BEAMFORMEE_CAPABLE;
583
584 /*
585 * If some other vif is using the MU-MIMO capablity we cannot associate
586 * using MU-MIMO - this will lead to contradictions in the group-id
587 * mechanism.
588 * Ownership is defined since association request, in order to avoid
589 * simultaneous associations with MU-MIMO.
590 */
591 if (cap & IEEE80211_VHT_CAP_MU_BEAMFORMEE_CAPABLE) {
592 bool disable_mu_mimo = false;
593 struct ieee80211_sub_if_data *other;
594
595 list_for_each_entry_rcu(other, &local->interfaces, list) {
596 if (other->flags & IEEE80211_SDATA_MU_MIMO_OWNER) {
597 disable_mu_mimo = true;
598 break;
599 }
600 }
601 if (disable_mu_mimo)
602 cap &= ~IEEE80211_VHT_CAP_MU_BEAMFORMEE_CAPABLE;
603 else
604 sdata->flags |= IEEE80211_SDATA_MU_MIMO_OWNER;
605 }
b08fbbd8 606
c1cf6d4e
ES
607 mask = IEEE80211_VHT_CAP_BEAMFORMEE_STS_MASK;
608
609 ap_bf_sts = le32_to_cpu(ap_vht_cap->vht_cap_info) & mask;
610 our_bf_sts = cap & mask;
611
612 if (ap_bf_sts < our_bf_sts) {
613 cap &= ~mask;
614 cap |= ap_bf_sts;
615 }
616
d545daba 617 /* reserve and fill IE */
d4950281 618 pos = skb_put(skb, sizeof(struct ieee80211_vht_cap) + 2);
d545daba
MP
619 ieee80211_ie_build_vht_cap(pos, &vht_cap, cap);
620}
621
66e67e41
JB
622static void ieee80211_send_assoc(struct ieee80211_sub_if_data *sdata)
623{
624 struct ieee80211_local *local = sdata->local;
625 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
626 struct ieee80211_mgd_assoc_data *assoc_data = ifmgd->assoc_data;
627 struct sk_buff *skb;
628 struct ieee80211_mgmt *mgmt;
629 u8 *pos, qos_info;
630 size_t offset = 0, noffset;
2103dec1 631 int i, count, rates_len, supp_rates_len, shift;
66e67e41
JB
632 u16 capab;
633 struct ieee80211_supported_band *sband;
55de908a
JB
634 struct ieee80211_chanctx_conf *chanctx_conf;
635 struct ieee80211_channel *chan;
2103dec1 636 u32 rate_flags, rates = 0;
66e67e41 637
8d61ffa5 638 sdata_assert_lock(sdata);
66e67e41 639
55de908a
JB
640 rcu_read_lock();
641 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
642 if (WARN_ON(!chanctx_conf)) {
643 rcu_read_unlock();
644 return;
645 }
4bf88530 646 chan = chanctx_conf->def.chan;
2103dec1 647 rate_flags = ieee80211_chandef_rate_flags(&chanctx_conf->def);
55de908a
JB
648 rcu_read_unlock();
649 sband = local->hw.wiphy->bands[chan->band];
2103dec1 650 shift = ieee80211_vif_get_shift(&sdata->vif);
66e67e41
JB
651
652 if (assoc_data->supp_rates_len) {
653 /*
654 * Get all rates supported by the device and the AP as
655 * some APs don't like getting a superset of their rates
656 * in the association request (e.g. D-Link DAP 1353 in
657 * b-only mode)...
658 */
2103dec1
SW
659 rates_len = ieee80211_parse_bitrates(&chanctx_conf->def, sband,
660 assoc_data->supp_rates,
661 assoc_data->supp_rates_len,
662 &rates);
66e67e41
JB
663 } else {
664 /*
665 * In case AP not provide any supported rates information
666 * before association, we send information element(s) with
667 * all rates that we support.
668 */
2103dec1
SW
669 rates_len = 0;
670 for (i = 0; i < sband->n_bitrates; i++) {
671 if ((rate_flags & sband->bitrates[i].flags)
672 != rate_flags)
673 continue;
674 rates |= BIT(i);
675 rates_len++;
676 }
66e67e41
JB
677 }
678
679 skb = alloc_skb(local->hw.extra_tx_headroom +
680 sizeof(*mgmt) + /* bit too much but doesn't matter */
681 2 + assoc_data->ssid_len + /* SSID */
682 4 + rates_len + /* (extended) rates */
683 4 + /* power capability */
684 2 + 2 * sband->n_channels + /* supported channels */
685 2 + sizeof(struct ieee80211_ht_cap) + /* HT */
d4950281 686 2 + sizeof(struct ieee80211_vht_cap) + /* VHT */
66e67e41
JB
687 assoc_data->ie_len + /* extra IEs */
688 9, /* WMM */
689 GFP_KERNEL);
690 if (!skb)
691 return;
692
693 skb_reserve(skb, local->hw.extra_tx_headroom);
694
695 capab = WLAN_CAPABILITY_ESS;
696
697 if (sband->band == IEEE80211_BAND_2GHZ) {
ea1b2b45
JB
698 capab |= WLAN_CAPABILITY_SHORT_SLOT_TIME;
699 capab |= WLAN_CAPABILITY_SHORT_PREAMBLE;
66e67e41
JB
700 }
701
702 if (assoc_data->capability & WLAN_CAPABILITY_PRIVACY)
703 capab |= WLAN_CAPABILITY_PRIVACY;
704
705 if ((assoc_data->capability & WLAN_CAPABILITY_SPECTRUM_MGMT) &&
30686bf7 706 ieee80211_hw_check(&local->hw, SPECTRUM_MGMT))
66e67e41
JB
707 capab |= WLAN_CAPABILITY_SPECTRUM_MGMT;
708
cd2f5dd7
AK
709 if (ifmgd->flags & IEEE80211_STA_ENABLE_RRM)
710 capab |= WLAN_CAPABILITY_RADIO_MEASURE;
711
66e67e41
JB
712 mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24);
713 memset(mgmt, 0, 24);
714 memcpy(mgmt->da, assoc_data->bss->bssid, ETH_ALEN);
715 memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN);
716 memcpy(mgmt->bssid, assoc_data->bss->bssid, ETH_ALEN);
717
718 if (!is_zero_ether_addr(assoc_data->prev_bssid)) {
719 skb_put(skb, 10);
720 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
721 IEEE80211_STYPE_REASSOC_REQ);
722 mgmt->u.reassoc_req.capab_info = cpu_to_le16(capab);
723 mgmt->u.reassoc_req.listen_interval =
724 cpu_to_le16(local->hw.conf.listen_interval);
725 memcpy(mgmt->u.reassoc_req.current_ap, assoc_data->prev_bssid,
726 ETH_ALEN);
727 } else {
728 skb_put(skb, 4);
729 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
730 IEEE80211_STYPE_ASSOC_REQ);
731 mgmt->u.assoc_req.capab_info = cpu_to_le16(capab);
732 mgmt->u.assoc_req.listen_interval =
733 cpu_to_le16(local->hw.conf.listen_interval);
734 }
735
736 /* SSID */
737 pos = skb_put(skb, 2 + assoc_data->ssid_len);
738 *pos++ = WLAN_EID_SSID;
739 *pos++ = assoc_data->ssid_len;
740 memcpy(pos, assoc_data->ssid, assoc_data->ssid_len);
741
742 /* add all rates which were marked to be used above */
743 supp_rates_len = rates_len;
744 if (supp_rates_len > 8)
745 supp_rates_len = 8;
746
747 pos = skb_put(skb, supp_rates_len + 2);
748 *pos++ = WLAN_EID_SUPP_RATES;
749 *pos++ = supp_rates_len;
750
751 count = 0;
752 for (i = 0; i < sband->n_bitrates; i++) {
753 if (BIT(i) & rates) {
2103dec1
SW
754 int rate = DIV_ROUND_UP(sband->bitrates[i].bitrate,
755 5 * (1 << shift));
756 *pos++ = (u8) rate;
66e67e41
JB
757 if (++count == 8)
758 break;
759 }
760 }
761
762 if (rates_len > count) {
763 pos = skb_put(skb, rates_len - count + 2);
764 *pos++ = WLAN_EID_EXT_SUPP_RATES;
765 *pos++ = rates_len - count;
766
767 for (i++; i < sband->n_bitrates; i++) {
768 if (BIT(i) & rates) {
2103dec1
SW
769 int rate;
770 rate = DIV_ROUND_UP(sband->bitrates[i].bitrate,
771 5 * (1 << shift));
772 *pos++ = (u8) rate;
66e67e41
JB
773 }
774 }
775 }
776
cd2f5dd7
AK
777 if (capab & WLAN_CAPABILITY_SPECTRUM_MGMT ||
778 capab & WLAN_CAPABILITY_RADIO_MEASURE) {
66e67e41
JB
779 pos = skb_put(skb, 4);
780 *pos++ = WLAN_EID_PWR_CAPABILITY;
781 *pos++ = 2;
782 *pos++ = 0; /* min tx power */
0430c883
SW
783 /* max tx power */
784 *pos++ = ieee80211_chandef_max_power(&chanctx_conf->def);
cd2f5dd7 785 }
66e67e41 786
cd2f5dd7 787 if (capab & WLAN_CAPABILITY_SPECTRUM_MGMT) {
66e67e41
JB
788 /* TODO: get this in reg domain format */
789 pos = skb_put(skb, 2 * sband->n_channels + 2);
790 *pos++ = WLAN_EID_SUPPORTED_CHANNELS;
791 *pos++ = 2 * sband->n_channels;
792 for (i = 0; i < sband->n_channels; i++) {
793 *pos++ = ieee80211_frequency_to_channel(
794 sband->channels[i].center_freq);
795 *pos++ = 1; /* one channel in the subband*/
796 }
797 }
798
799 /* if present, add any custom IEs that go before HT */
b3f51e94 800 if (assoc_data->ie_len) {
66e67e41
JB
801 static const u8 before_ht[] = {
802 WLAN_EID_SSID,
803 WLAN_EID_SUPP_RATES,
804 WLAN_EID_EXT_SUPP_RATES,
805 WLAN_EID_PWR_CAPABILITY,
806 WLAN_EID_SUPPORTED_CHANNELS,
807 WLAN_EID_RSN,
808 WLAN_EID_QOS_CAPA,
809 WLAN_EID_RRM_ENABLED_CAPABILITIES,
810 WLAN_EID_MOBILITY_DOMAIN,
8ed28747
JB
811 WLAN_EID_FAST_BSS_TRANSITION, /* reassoc only */
812 WLAN_EID_RIC_DATA, /* reassoc only */
66e67e41
JB
813 WLAN_EID_SUPPORTED_REGULATORY_CLASSES,
814 };
8ed28747
JB
815 static const u8 after_ric[] = {
816 WLAN_EID_SUPPORTED_REGULATORY_CLASSES,
817 WLAN_EID_HT_CAPABILITY,
818 WLAN_EID_BSS_COEX_2040,
819 WLAN_EID_EXT_CAPABILITY,
820 WLAN_EID_QOS_TRAFFIC_CAPA,
821 WLAN_EID_TIM_BCAST_REQ,
822 WLAN_EID_INTERWORKING,
823 /* 60GHz doesn't happen right now */
824 WLAN_EID_VHT_CAPABILITY,
825 WLAN_EID_OPMODE_NOTIF,
826 };
827
828 noffset = ieee80211_ie_split_ric(assoc_data->ie,
829 assoc_data->ie_len,
830 before_ht,
831 ARRAY_SIZE(before_ht),
832 after_ric,
833 ARRAY_SIZE(after_ric),
834 offset);
66e67e41
JB
835 pos = skb_put(skb, noffset - offset);
836 memcpy(pos, assoc_data->ie + offset, noffset - offset);
837 offset = noffset;
838 }
839
f2d9d270
JB
840 if (WARN_ON_ONCE((ifmgd->flags & IEEE80211_STA_DISABLE_HT) &&
841 !(ifmgd->flags & IEEE80211_STA_DISABLE_VHT)))
842 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
843
a8243b72 844 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_HT))
9dde6423 845 ieee80211_add_ht_ie(sdata, skb, assoc_data->ap_ht_param,
04ecd257 846 sband, chan, sdata->smps_mode);
66e67e41 847
3de3802c
JB
848 /* if present, add any custom IEs that go before VHT */
849 if (assoc_data->ie_len) {
850 static const u8 before_vht[] = {
851 WLAN_EID_SSID,
852 WLAN_EID_SUPP_RATES,
853 WLAN_EID_EXT_SUPP_RATES,
854 WLAN_EID_PWR_CAPABILITY,
855 WLAN_EID_SUPPORTED_CHANNELS,
856 WLAN_EID_RSN,
857 WLAN_EID_QOS_CAPA,
858 WLAN_EID_RRM_ENABLED_CAPABILITIES,
859 WLAN_EID_MOBILITY_DOMAIN,
860 WLAN_EID_SUPPORTED_REGULATORY_CLASSES,
861 WLAN_EID_HT_CAPABILITY,
862 WLAN_EID_BSS_COEX_2040,
863 WLAN_EID_EXT_CAPABILITY,
864 WLAN_EID_QOS_TRAFFIC_CAPA,
865 WLAN_EID_TIM_BCAST_REQ,
866 WLAN_EID_INTERWORKING,
867 };
8ed28747
JB
868
869 /* RIC already taken above, so no need to handle here anymore */
3de3802c
JB
870 noffset = ieee80211_ie_split(assoc_data->ie, assoc_data->ie_len,
871 before_vht, ARRAY_SIZE(before_vht),
872 offset);
873 pos = skb_put(skb, noffset - offset);
874 memcpy(pos, assoc_data->ie + offset, noffset - offset);
875 offset = noffset;
876 }
877
d545daba 878 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_VHT))
b08fbbd8
JB
879 ieee80211_add_vht_ie(sdata, skb, sband,
880 &assoc_data->ap_vht_cap);
d545daba 881
66e67e41 882 /* if present, add any custom non-vendor IEs that go after HT */
b3f51e94 883 if (assoc_data->ie_len) {
66e67e41
JB
884 noffset = ieee80211_ie_split_vendor(assoc_data->ie,
885 assoc_data->ie_len,
886 offset);
887 pos = skb_put(skb, noffset - offset);
888 memcpy(pos, assoc_data->ie + offset, noffset - offset);
889 offset = noffset;
890 }
891
76f0303d
JB
892 if (assoc_data->wmm) {
893 if (assoc_data->uapsd) {
dc41e4d4
EP
894 qos_info = ifmgd->uapsd_queues;
895 qos_info |= (ifmgd->uapsd_max_sp_len <<
66e67e41
JB
896 IEEE80211_WMM_IE_STA_QOSINFO_SP_SHIFT);
897 } else {
898 qos_info = 0;
899 }
900
40b861a0 901 pos = ieee80211_add_wmm_info_ie(skb_put(skb, 9), qos_info);
66e67e41
JB
902 }
903
904 /* add any remaining custom (i.e. vendor specific here) IEs */
b3f51e94 905 if (assoc_data->ie_len) {
66e67e41
JB
906 noffset = assoc_data->ie_len;
907 pos = skb_put(skb, noffset - offset);
908 memcpy(pos, assoc_data->ie + offset, noffset - offset);
909 }
910
a1845fc7
JB
911 drv_mgd_prepare_tx(local, sdata);
912
66e67e41 913 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
30686bf7 914 if (ieee80211_hw_check(&local->hw, REPORTS_TX_ACK_STATUS))
1672c0e3
JB
915 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_CTL_REQ_TX_STATUS |
916 IEEE80211_TX_INTFL_MLME_CONN_TX;
66e67e41
JB
917 ieee80211_tx_skb(sdata, skb);
918}
919
572e0012
KV
920void ieee80211_send_pspoll(struct ieee80211_local *local,
921 struct ieee80211_sub_if_data *sdata)
922{
572e0012
KV
923 struct ieee80211_pspoll *pspoll;
924 struct sk_buff *skb;
572e0012 925
d8cd189e
KV
926 skb = ieee80211_pspoll_get(&local->hw, &sdata->vif);
927 if (!skb)
572e0012 928 return;
572e0012 929
d8cd189e
KV
930 pspoll = (struct ieee80211_pspoll *) skb->data;
931 pspoll->frame_control |= cpu_to_le16(IEEE80211_FCTL_PM);
572e0012 932
62ae67be
JB
933 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
934 ieee80211_tx_skb(sdata, skb);
572e0012
KV
935}
936
965bedad
JB
937void ieee80211_send_nullfunc(struct ieee80211_local *local,
938 struct ieee80211_sub_if_data *sdata,
076cdcb1 939 bool powersave)
965bedad
JB
940{
941 struct sk_buff *skb;
d8cd189e 942 struct ieee80211_hdr_3addr *nullfunc;
b6f35301 943 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
965bedad 944
d8cd189e
KV
945 skb = ieee80211_nullfunc_get(&local->hw, &sdata->vif);
946 if (!skb)
965bedad 947 return;
965bedad 948
d8cd189e 949 nullfunc = (struct ieee80211_hdr_3addr *) skb->data;
965bedad 950 if (powersave)
d8cd189e 951 nullfunc->frame_control |= cpu_to_le16(IEEE80211_FCTL_PM);
965bedad 952
6c17b77b
SF
953 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT |
954 IEEE80211_TX_INTFL_OFFCHAN_TX_OK;
ff40b425 955
30686bf7 956 if (ieee80211_hw_check(&local->hw, REPORTS_TX_ACK_STATUS))
ff40b425
PF
957 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_CTL_REQ_TX_STATUS;
958
392b9ffb 959 if (ifmgd->flags & IEEE80211_STA_CONNECTION_POLL)
b6f35301
RM
960 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_CTL_USE_MINRATE;
961
62ae67be 962 ieee80211_tx_skb(sdata, skb);
965bedad
JB
963}
964
d524215f
FF
965static void ieee80211_send_4addr_nullfunc(struct ieee80211_local *local,
966 struct ieee80211_sub_if_data *sdata)
967{
968 struct sk_buff *skb;
969 struct ieee80211_hdr *nullfunc;
970 __le16 fc;
971
972 if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION))
973 return;
974
975 skb = dev_alloc_skb(local->hw.extra_tx_headroom + 30);
d15b8459 976 if (!skb)
d524215f 977 return;
d15b8459 978
d524215f
FF
979 skb_reserve(skb, local->hw.extra_tx_headroom);
980
981 nullfunc = (struct ieee80211_hdr *) skb_put(skb, 30);
982 memset(nullfunc, 0, 30);
983 fc = cpu_to_le16(IEEE80211_FTYPE_DATA | IEEE80211_STYPE_NULLFUNC |
984 IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS);
985 nullfunc->frame_control = fc;
986 memcpy(nullfunc->addr1, sdata->u.mgd.bssid, ETH_ALEN);
987 memcpy(nullfunc->addr2, sdata->vif.addr, ETH_ALEN);
988 memcpy(nullfunc->addr3, sdata->u.mgd.bssid, ETH_ALEN);
989 memcpy(nullfunc->addr4, sdata->vif.addr, ETH_ALEN);
990
991 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
992 ieee80211_tx_skb(sdata, skb);
993}
994
cc32abd4
JB
995/* spectrum management related things */
996static void ieee80211_chswitch_work(struct work_struct *work)
997{
998 struct ieee80211_sub_if_data *sdata =
999 container_of(work, struct ieee80211_sub_if_data, u.mgd.chswitch_work);
675a0b04 1000 struct ieee80211_local *local = sdata->local;
cc32abd4 1001 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
7578d575 1002 int ret;
cc32abd4 1003
9607e6b6 1004 if (!ieee80211_sdata_running(sdata))
cc32abd4
JB
1005 return;
1006
8d61ffa5 1007 sdata_lock(sdata);
4c3ebc56
MK
1008 mutex_lock(&local->mtx);
1009 mutex_lock(&local->chanctx_mtx);
1010
77fdaa12
JB
1011 if (!ifmgd->associated)
1012 goto out;
cc32abd4 1013
4c3ebc56
MK
1014 if (!sdata->vif.csa_active)
1015 goto out;
1016
1017 /*
1018 * using reservation isn't immediate as it may be deferred until later
1019 * with multi-vif. once reservation is complete it will re-schedule the
1020 * work with no reserved_chanctx so verify chandef to check if it
1021 * completed successfully
1022 */
1023
1024 if (sdata->reserved_chanctx) {
1025 /*
1026 * with multi-vif csa driver may call ieee80211_csa_finish()
1027 * many times while waiting for other interfaces to use their
1028 * reservations
1029 */
1030 if (sdata->reserved_ready)
1031 goto out;
1032
1033 ret = ieee80211_vif_use_reserved_context(sdata);
1034 if (ret) {
1035 sdata_info(sdata,
1036 "failed to use reserved channel context, disconnecting (err=%d)\n",
1037 ret);
1038 ieee80211_queue_work(&sdata->local->hw,
1039 &ifmgd->csa_connection_drop_work);
1040 goto out;
1041 }
1042
1043 goto out;
1044 }
1045
1046 if (!cfg80211_chandef_identical(&sdata->vif.bss_conf.chandef,
1047 &sdata->csa_chandef)) {
7578d575 1048 sdata_info(sdata,
4c3ebc56 1049 "failed to finalize channel switch, disconnecting\n");
7578d575
AN
1050 ieee80211_queue_work(&sdata->local->hw,
1051 &ifmgd->csa_connection_drop_work);
1052 goto out;
1053 }
675a0b04 1054
cc32abd4 1055 /* XXX: shouldn't really modify cfg80211-owned data! */
33787fc4 1056 ifmgd->associated->channel = sdata->csa_chandef.chan;
cc32abd4 1057
0c21e632
LC
1058 ifmgd->csa_waiting_bcn = true;
1059
1060 ieee80211_sta_reset_beacon_monitor(sdata);
1061 ieee80211_sta_reset_conn_monitor(sdata);
1062
1063out:
1064 mutex_unlock(&local->chanctx_mtx);
1065 mutex_unlock(&local->mtx);
1066 sdata_unlock(sdata);
1067}
1068
1069static void ieee80211_chswitch_post_beacon(struct ieee80211_sub_if_data *sdata)
1070{
1071 struct ieee80211_local *local = sdata->local;
1072 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1073 int ret;
1074
1075 sdata_assert_lock(sdata);
1076
1077 WARN_ON(!sdata->vif.csa_active);
4c3ebc56 1078
a46992b4
LC
1079 if (sdata->csa_block_tx) {
1080 ieee80211_wake_vif_queues(local, sdata,
1081 IEEE80211_QUEUE_STOP_REASON_CSA);
1082 sdata->csa_block_tx = false;
1083 }
7578d575 1084
0c21e632
LC
1085 sdata->vif.csa_active = false;
1086 ifmgd->csa_waiting_bcn = false;
1087
f1d65583
LC
1088 ret = drv_post_channel_switch(sdata);
1089 if (ret) {
1090 sdata_info(sdata,
1091 "driver post channel switch failed, disconnecting\n");
1092 ieee80211_queue_work(&local->hw,
1093 &ifmgd->csa_connection_drop_work);
0c21e632 1094 return;
f1d65583 1095 }
688b1ecf
LC
1096
1097 cfg80211_ch_switch_notify(sdata->dev, &sdata->reserved_chandef);
cc32abd4
JB
1098}
1099
5ce6e438
JB
1100void ieee80211_chswitch_done(struct ieee80211_vif *vif, bool success)
1101{
55de908a
JB
1102 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
1103 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
5ce6e438
JB
1104
1105 trace_api_chswitch_done(sdata, success);
1106 if (!success) {
882a7c69
JB
1107 sdata_info(sdata,
1108 "driver channel switch failed, disconnecting\n");
1109 ieee80211_queue_work(&sdata->local->hw,
1110 &ifmgd->csa_connection_drop_work);
1111 } else {
1112 ieee80211_queue_work(&sdata->local->hw, &ifmgd->chswitch_work);
5ce6e438 1113 }
5ce6e438
JB
1114}
1115EXPORT_SYMBOL(ieee80211_chswitch_done);
1116
cc32abd4
JB
1117static void ieee80211_chswitch_timer(unsigned long data)
1118{
1119 struct ieee80211_sub_if_data *sdata =
1120 (struct ieee80211_sub_if_data *) data;
5bb644a0 1121
9b7d72c1 1122 ieee80211_queue_work(&sdata->local->hw, &sdata->u.mgd.chswitch_work);
cc32abd4
JB
1123}
1124
37799e52 1125static void
4a3cb702 1126ieee80211_sta_process_chanswitch(struct ieee80211_sub_if_data *sdata,
2ba45384
LC
1127 u64 timestamp, u32 device_timestamp,
1128 struct ieee802_11_elems *elems,
04a161f4 1129 bool beacon)
cc32abd4 1130{
b4f286a1 1131 struct ieee80211_local *local = sdata->local;
cc32abd4 1132 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
37799e52 1133 struct cfg80211_bss *cbss = ifmgd->associated;
4c3ebc56 1134 struct ieee80211_chanctx_conf *conf;
55de908a 1135 struct ieee80211_chanctx *chanctx;
e6b7cde4 1136 enum ieee80211_band current_band;
c0f17eb9 1137 struct ieee80211_csa_ie csa_ie;
6d027bcc 1138 struct ieee80211_channel_switch ch_switch;
e6b7cde4 1139 int res;
cc32abd4 1140
8d61ffa5 1141 sdata_assert_lock(sdata);
77fdaa12 1142
37799e52 1143 if (!cbss)
cc32abd4
JB
1144 return;
1145
b4f286a1 1146 if (local->scanning)
cc32abd4
JB
1147 return;
1148
37799e52 1149 /* disregard subsequent announcements if we are already processing */
3e2a0226 1150 if (sdata->vif.csa_active)
cc32abd4
JB
1151 return;
1152
e6b7cde4 1153 current_band = cbss->channel->band;
c0f17eb9 1154 memset(&csa_ie, 0, sizeof(csa_ie));
84469a45 1155 res = ieee80211_parse_ch_switch_ie(sdata, elems, current_band,
e6b7cde4 1156 ifmgd->flags,
c0f17eb9 1157 ifmgd->associated->bssid, &csa_ie);
e6b7cde4 1158 if (res < 0)
b4f286a1 1159 ieee80211_queue_work(&local->hw,
882a7c69 1160 &ifmgd->csa_connection_drop_work);
e6b7cde4 1161 if (res)
cc32abd4 1162 return;
cd64f2a9 1163
c0f17eb9 1164 if (!cfg80211_chandef_usable(local->hw.wiphy, &csa_ie.chandef,
85220d71
JB
1165 IEEE80211_CHAN_DISABLED)) {
1166 sdata_info(sdata,
1167 "AP %pM switches to unsupported channel (%d MHz, width:%d, CF1/2: %d/%d MHz), disconnecting\n",
e6b7cde4 1168 ifmgd->associated->bssid,
c0f17eb9
CYY
1169 csa_ie.chandef.chan->center_freq,
1170 csa_ie.chandef.width, csa_ie.chandef.center_freq1,
1171 csa_ie.chandef.center_freq2);
85220d71
JB
1172 ieee80211_queue_work(&local->hw,
1173 &ifmgd->csa_connection_drop_work);
1174 return;
1175 }
1176
f84eaa10
JB
1177 if (cfg80211_chandef_identical(&csa_ie.chandef,
1178 &sdata->vif.bss_conf.chandef)) {
1179 if (ifmgd->csa_ignored_same_chan)
1180 return;
1181 sdata_info(sdata,
1182 "AP %pM tries to chanswitch to same channel, ignore\n",
1183 ifmgd->associated->bssid);
1184 ifmgd->csa_ignored_same_chan = true;
1185 return;
1186 }
1187
c5a71688
AN
1188 /*
1189 * Drop all TDLS peers - either we disconnect or move to a different
1190 * channel from this point on. There's no telling what our peer will do.
1191 * The TDLS WIDER_BW scenario is also problematic, as peers might now
1192 * have an incompatible wider chandef.
1193 */
1194 ieee80211_teardown_tdls_peers(sdata);
1195
4c3ebc56 1196 mutex_lock(&local->mtx);
7578d575 1197 mutex_lock(&local->chanctx_mtx);
4c3ebc56
MK
1198 conf = rcu_dereference_protected(sdata->vif.chanctx_conf,
1199 lockdep_is_held(&local->chanctx_mtx));
1200 if (!conf) {
1201 sdata_info(sdata,
1202 "no channel context assigned to vif?, disconnecting\n");
f3b0bbb3 1203 goto drop_connection;
4c3ebc56
MK
1204 }
1205
1206 chanctx = container_of(conf, struct ieee80211_chanctx, conf);
1207
0f791eb4 1208 if (local->use_chanctx &&
30686bf7 1209 !ieee80211_hw_check(&local->hw, CHANCTX_STA_CSA)) {
0f791eb4
LC
1210 sdata_info(sdata,
1211 "driver doesn't support chan-switch with channel contexts\n");
f3b0bbb3 1212 goto drop_connection;
55de908a
JB
1213 }
1214
6d027bcc
LC
1215 ch_switch.timestamp = timestamp;
1216 ch_switch.device_timestamp = device_timestamp;
1217 ch_switch.block_tx = csa_ie.mode;
1218 ch_switch.chandef = csa_ie.chandef;
1219 ch_switch.count = csa_ie.count;
1220
1221 if (drv_pre_channel_switch(sdata, &ch_switch)) {
1222 sdata_info(sdata,
1223 "preparing for channel switch failed, disconnecting\n");
f3b0bbb3 1224 goto drop_connection;
6d027bcc
LC
1225 }
1226
4c3ebc56
MK
1227 res = ieee80211_vif_reserve_chanctx(sdata, &csa_ie.chandef,
1228 chanctx->mode, false);
1229 if (res) {
55de908a 1230 sdata_info(sdata,
4c3ebc56
MK
1231 "failed to reserve channel context for channel switch, disconnecting (err=%d)\n",
1232 res);
f3b0bbb3 1233 goto drop_connection;
55de908a 1234 }
b4f286a1 1235 mutex_unlock(&local->chanctx_mtx);
55de908a 1236
c46a73f3 1237 sdata->vif.csa_active = true;
4c3ebc56 1238 sdata->csa_chandef = csa_ie.chandef;
59af6928 1239 sdata->csa_block_tx = csa_ie.mode;
f84eaa10 1240 ifmgd->csa_ignored_same_chan = false;
55de908a 1241
59af6928 1242 if (sdata->csa_block_tx)
a46992b4
LC
1243 ieee80211_stop_vif_queues(local, sdata,
1244 IEEE80211_QUEUE_STOP_REASON_CSA);
59af6928 1245 mutex_unlock(&local->mtx);
57eebdf3 1246
2f457293
LC
1247 cfg80211_ch_switch_started_notify(sdata->dev, &csa_ie.chandef,
1248 csa_ie.count);
1249
b4f286a1 1250 if (local->ops->channel_switch) {
5ce6e438 1251 /* use driver's channel switch callback */
0f791eb4 1252 drv_channel_switch(local, sdata, &ch_switch);
5ce6e438
JB
1253 return;
1254 }
1255
1256 /* channel switch handled in software */
c0f17eb9 1257 if (csa_ie.count <= 1)
b4f286a1 1258 ieee80211_queue_work(&local->hw, &ifmgd->chswitch_work);
57eebdf3 1259 else
cc32abd4 1260 mod_timer(&ifmgd->chswitch_timer,
ff1e417c
LC
1261 TU_TO_EXP_TIME((csa_ie.count - 1) *
1262 cbss->beacon_interval));
f3b0bbb3
JB
1263 return;
1264 drop_connection:
1265 ieee80211_queue_work(&local->hw, &ifmgd->csa_connection_drop_work);
1266 mutex_unlock(&local->chanctx_mtx);
1267 mutex_unlock(&local->mtx);
cc32abd4
JB
1268}
1269
24a4e400
SG
1270static bool
1271ieee80211_find_80211h_pwr_constr(struct ieee80211_sub_if_data *sdata,
1272 struct ieee80211_channel *channel,
1273 const u8 *country_ie, u8 country_ie_len,
1274 const u8 *pwr_constr_elem,
1275 int *chan_pwr, int *pwr_reduction)
cc32abd4 1276{
04b7b2ff
JB
1277 struct ieee80211_country_ie_triplet *triplet;
1278 int chan = ieee80211_frequency_to_channel(channel->center_freq);
24a4e400 1279 int i, chan_increment;
04b7b2ff 1280 bool have_chan_pwr = false;
cc32abd4 1281
04b7b2ff
JB
1282 /* Invalid IE */
1283 if (country_ie_len % 2 || country_ie_len < IEEE80211_COUNTRY_IE_MIN_LEN)
24a4e400 1284 return false;
cc32abd4 1285
04b7b2ff
JB
1286 triplet = (void *)(country_ie + 3);
1287 country_ie_len -= 3;
1288
1289 switch (channel->band) {
1290 default:
1291 WARN_ON_ONCE(1);
1292 /* fall through */
1293 case IEEE80211_BAND_2GHZ:
1294 case IEEE80211_BAND_60GHZ:
1295 chan_increment = 1;
1296 break;
1297 case IEEE80211_BAND_5GHZ:
1298 chan_increment = 4;
1299 break;
cc32abd4 1300 }
04b7b2ff
JB
1301
1302 /* find channel */
1303 while (country_ie_len >= 3) {
1304 u8 first_channel = triplet->chans.first_channel;
1305
1306 if (first_channel >= IEEE80211_COUNTRY_EXTENSION_ID)
1307 goto next;
1308
1309 for (i = 0; i < triplet->chans.num_channels; i++) {
1310 if (first_channel + i * chan_increment == chan) {
1311 have_chan_pwr = true;
24a4e400 1312 *chan_pwr = triplet->chans.max_power;
04b7b2ff
JB
1313 break;
1314 }
1315 }
1316 if (have_chan_pwr)
1317 break;
1318
1319 next:
1320 triplet++;
1321 country_ie_len -= 3;
1322 }
1323
a5fee9cb 1324 if (have_chan_pwr && pwr_constr_elem)
24a4e400 1325 *pwr_reduction = *pwr_constr_elem;
a5fee9cb
MB
1326 else
1327 *pwr_reduction = 0;
1328
24a4e400
SG
1329 return have_chan_pwr;
1330}
1331
c8d65917
SG
1332static void ieee80211_find_cisco_dtpc(struct ieee80211_sub_if_data *sdata,
1333 struct ieee80211_channel *channel,
1334 const u8 *cisco_dtpc_ie,
1335 int *pwr_level)
1336{
1337 /* From practical testing, the first data byte of the DTPC element
1338 * seems to contain the requested dBm level, and the CLI on Cisco
1339 * APs clearly state the range is -127 to 127 dBm, which indicates
1340 * a signed byte, although it seemingly never actually goes negative.
1341 * The other byte seems to always be zero.
1342 */
1343 *pwr_level = (__s8)cisco_dtpc_ie[4];
1344}
1345
24a4e400
SG
1346static u32 ieee80211_handle_pwr_constr(struct ieee80211_sub_if_data *sdata,
1347 struct ieee80211_channel *channel,
1348 struct ieee80211_mgmt *mgmt,
1349 const u8 *country_ie, u8 country_ie_len,
c8d65917
SG
1350 const u8 *pwr_constr_ie,
1351 const u8 *cisco_dtpc_ie)
24a4e400 1352{
c8d65917
SG
1353 bool has_80211h_pwr = false, has_cisco_pwr = false;
1354 int chan_pwr = 0, pwr_reduction_80211h = 0;
1355 int pwr_level_cisco, pwr_level_80211h;
24a4e400 1356 int new_ap_level;
a5fee9cb 1357 __le16 capab = mgmt->u.probe_resp.capab_info;
04b7b2ff 1358
a5fee9cb
MB
1359 if (country_ie &&
1360 (capab & cpu_to_le16(WLAN_CAPABILITY_SPECTRUM_MGMT) ||
1361 capab & cpu_to_le16(WLAN_CAPABILITY_RADIO_MEASURE))) {
24a4e400
SG
1362 has_80211h_pwr = ieee80211_find_80211h_pwr_constr(
1363 sdata, channel, country_ie, country_ie_len,
1364 pwr_constr_ie, &chan_pwr, &pwr_reduction_80211h);
c8d65917
SG
1365 pwr_level_80211h =
1366 max_t(int, 0, chan_pwr - pwr_reduction_80211h);
1367 }
1368
1369 if (cisco_dtpc_ie) {
1370 ieee80211_find_cisco_dtpc(
1371 sdata, channel, cisco_dtpc_ie, &pwr_level_cisco);
1372 has_cisco_pwr = true;
24a4e400 1373 }
04b7b2ff 1374
c8d65917 1375 if (!has_80211h_pwr && !has_cisco_pwr)
1ea6f9c0 1376 return 0;
04b7b2ff 1377
c8d65917
SG
1378 /* If we have both 802.11h and Cisco DTPC, apply both limits
1379 * by picking the smallest of the two power levels advertised.
1380 */
1381 if (has_80211h_pwr &&
1382 (!has_cisco_pwr || pwr_level_80211h <= pwr_level_cisco)) {
cef2fc1c
JL
1383 sdata_dbg(sdata,
1384 "Limiting TX power to %d (%d - %d) dBm as advertised by %pM\n",
1385 pwr_level_80211h, chan_pwr, pwr_reduction_80211h,
1386 sdata->u.mgd.bssid);
c8d65917
SG
1387 new_ap_level = pwr_level_80211h;
1388 } else { /* has_cisco_pwr is always true here. */
cef2fc1c
JL
1389 sdata_dbg(sdata,
1390 "Limiting TX power to %d dBm as advertised by %pM\n",
1391 pwr_level_cisco, sdata->u.mgd.bssid);
c8d65917
SG
1392 new_ap_level = pwr_level_cisco;
1393 }
04b7b2ff 1394
1ea6f9c0
JB
1395 if (sdata->ap_power_level == new_ap_level)
1396 return 0;
04b7b2ff 1397
1ea6f9c0
JB
1398 sdata->ap_power_level = new_ap_level;
1399 if (__ieee80211_recalc_txpower(sdata))
1400 return BSS_CHANGED_TXPOWER;
1401 return 0;
cc32abd4
JB
1402}
1403
965bedad
JB
1404/* powersave */
1405static void ieee80211_enable_ps(struct ieee80211_local *local,
1406 struct ieee80211_sub_if_data *sdata)
1407{
1408 struct ieee80211_conf *conf = &local->hw.conf;
1409
d5edaedc
JB
1410 /*
1411 * If we are scanning right now then the parameters will
1412 * take effect when scan finishes.
1413 */
fbe9c429 1414 if (local->scanning)
d5edaedc
JB
1415 return;
1416
965bedad 1417 if (conf->dynamic_ps_timeout > 0 &&
30686bf7 1418 !ieee80211_hw_check(&local->hw, SUPPORTS_DYNAMIC_PS)) {
965bedad
JB
1419 mod_timer(&local->dynamic_ps_timer, jiffies +
1420 msecs_to_jiffies(conf->dynamic_ps_timeout));
1421 } else {
30686bf7 1422 if (ieee80211_hw_check(&local->hw, PS_NULLFUNC_STACK))
076cdcb1 1423 ieee80211_send_nullfunc(local, sdata, true);
375177bf 1424
30686bf7
JB
1425 if (ieee80211_hw_check(&local->hw, PS_NULLFUNC_STACK) &&
1426 ieee80211_hw_check(&local->hw, REPORTS_TX_ACK_STATUS))
2a13052f
JO
1427 return;
1428
1429 conf->flags |= IEEE80211_CONF_PS;
1430 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
965bedad
JB
1431 }
1432}
1433
1434static void ieee80211_change_ps(struct ieee80211_local *local)
1435{
1436 struct ieee80211_conf *conf = &local->hw.conf;
1437
1438 if (local->ps_sdata) {
965bedad
JB
1439 ieee80211_enable_ps(local, local->ps_sdata);
1440 } else if (conf->flags & IEEE80211_CONF_PS) {
1441 conf->flags &= ~IEEE80211_CONF_PS;
1442 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
1443 del_timer_sync(&local->dynamic_ps_timer);
1444 cancel_work_sync(&local->dynamic_ps_enable_work);
1445 }
1446}
1447
808118cb
JY
1448static bool ieee80211_powersave_allowed(struct ieee80211_sub_if_data *sdata)
1449{
1450 struct ieee80211_if_managed *mgd = &sdata->u.mgd;
1451 struct sta_info *sta = NULL;
c2c98fde 1452 bool authorized = false;
808118cb
JY
1453
1454 if (!mgd->powersave)
1455 return false;
1456
05cb9108
JB
1457 if (mgd->broken_ap)
1458 return false;
1459
808118cb
JY
1460 if (!mgd->associated)
1461 return false;
1462
392b9ffb 1463 if (mgd->flags & IEEE80211_STA_CONNECTION_POLL)
808118cb
JY
1464 return false;
1465
989c6505 1466 if (!mgd->have_beacon)
ce857888
AB
1467 return false;
1468
808118cb
JY
1469 rcu_read_lock();
1470 sta = sta_info_get(sdata, mgd->bssid);
1471 if (sta)
c2c98fde 1472 authorized = test_sta_flag(sta, WLAN_STA_AUTHORIZED);
808118cb
JY
1473 rcu_read_unlock();
1474
c2c98fde 1475 return authorized;
808118cb
JY
1476}
1477
965bedad 1478/* need to hold RTNL or interface lock */
10f644a4 1479void ieee80211_recalc_ps(struct ieee80211_local *local, s32 latency)
965bedad
JB
1480{
1481 struct ieee80211_sub_if_data *sdata, *found = NULL;
1482 int count = 0;
195e294d 1483 int timeout;
965bedad 1484
30686bf7 1485 if (!ieee80211_hw_check(&local->hw, SUPPORTS_PS)) {
965bedad
JB
1486 local->ps_sdata = NULL;
1487 return;
1488 }
1489
1490 list_for_each_entry(sdata, &local->interfaces, list) {
9607e6b6 1491 if (!ieee80211_sdata_running(sdata))
965bedad 1492 continue;
8c7914de
RM
1493 if (sdata->vif.type == NL80211_IFTYPE_AP) {
1494 /* If an AP vif is found, then disable PS
1495 * by setting the count to zero thereby setting
1496 * ps_sdata to NULL.
1497 */
1498 count = 0;
1499 break;
1500 }
965bedad
JB
1501 if (sdata->vif.type != NL80211_IFTYPE_STATION)
1502 continue;
1503 found = sdata;
1504 count++;
1505 }
1506
808118cb 1507 if (count == 1 && ieee80211_powersave_allowed(found)) {
10f644a4
JB
1508 s32 beaconint_us;
1509
1510 if (latency < 0)
ed77134b 1511 latency = pm_qos_request(PM_QOS_NETWORK_LATENCY);
10f644a4
JB
1512
1513 beaconint_us = ieee80211_tu_to_usec(
1514 found->vif.bss_conf.beacon_int);
1515
ff616381 1516 timeout = local->dynamic_ps_forced_timeout;
195e294d
JO
1517 if (timeout < 0) {
1518 /*
ff616381
JO
1519 * Go to full PSM if the user configures a very low
1520 * latency requirement.
0ab82b04
EP
1521 * The 2000 second value is there for compatibility
1522 * until the PM_QOS_NETWORK_LATENCY is configured
1523 * with real values.
195e294d 1524 */
0ab82b04
EP
1525 if (latency > (1900 * USEC_PER_MSEC) &&
1526 latency != (2000 * USEC_PER_SEC))
195e294d 1527 timeout = 0;
ff616381
JO
1528 else
1529 timeout = 100;
195e294d 1530 }
09b85568 1531 local->hw.conf.dynamic_ps_timeout = timeout;
195e294d 1532
04fe2037 1533 if (beaconint_us > latency) {
10f644a4 1534 local->ps_sdata = NULL;
04fe2037 1535 } else {
04fe2037 1536 int maxslp = 1;
826262c3 1537 u8 dtimper = found->u.mgd.dtim_period;
56007a02
JB
1538
1539 /* If the TIM IE is invalid, pretend the value is 1 */
1540 if (!dtimper)
1541 dtimper = 1;
1542 else if (dtimper > 1)
04fe2037
JB
1543 maxslp = min_t(int, dtimper,
1544 latency / beaconint_us);
1545
9ccebe61 1546 local->hw.conf.max_sleep_period = maxslp;
56007a02 1547 local->hw.conf.ps_dtim_period = dtimper;
10f644a4 1548 local->ps_sdata = found;
04fe2037 1549 }
10f644a4 1550 } else {
965bedad 1551 local->ps_sdata = NULL;
10f644a4 1552 }
965bedad
JB
1553
1554 ieee80211_change_ps(local);
1555}
1556
ab095877
EP
1557void ieee80211_recalc_ps_vif(struct ieee80211_sub_if_data *sdata)
1558{
1559 bool ps_allowed = ieee80211_powersave_allowed(sdata);
1560
1561 if (sdata->vif.bss_conf.ps != ps_allowed) {
1562 sdata->vif.bss_conf.ps = ps_allowed;
1563 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_PS);
1564 }
1565}
1566
965bedad
JB
1567void ieee80211_dynamic_ps_disable_work(struct work_struct *work)
1568{
1569 struct ieee80211_local *local =
1570 container_of(work, struct ieee80211_local,
1571 dynamic_ps_disable_work);
1572
1573 if (local->hw.conf.flags & IEEE80211_CONF_PS) {
1574 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
1575 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
1576 }
1577
1578 ieee80211_wake_queues_by_reason(&local->hw,
445ea4e8 1579 IEEE80211_MAX_QUEUE_MAP,
cca07b00
LC
1580 IEEE80211_QUEUE_STOP_REASON_PS,
1581 false);
965bedad
JB
1582}
1583
1584void ieee80211_dynamic_ps_enable_work(struct work_struct *work)
1585{
1586 struct ieee80211_local *local =
1587 container_of(work, struct ieee80211_local,
1588 dynamic_ps_enable_work);
1589 struct ieee80211_sub_if_data *sdata = local->ps_sdata;
5e34069c 1590 struct ieee80211_if_managed *ifmgd;
1ddc2867
RM
1591 unsigned long flags;
1592 int q;
965bedad
JB
1593
1594 /* can only happen when PS was just disabled anyway */
1595 if (!sdata)
1596 return;
1597
5e34069c
CL
1598 ifmgd = &sdata->u.mgd;
1599
965bedad
JB
1600 if (local->hw.conf.flags & IEEE80211_CONF_PS)
1601 return;
1602
09b85568 1603 if (local->hw.conf.dynamic_ps_timeout > 0) {
77b7023a
AN
1604 /* don't enter PS if TX frames are pending */
1605 if (drv_tx_frames_pending(local)) {
1ddc2867
RM
1606 mod_timer(&local->dynamic_ps_timer, jiffies +
1607 msecs_to_jiffies(
1608 local->hw.conf.dynamic_ps_timeout));
1609 return;
1610 }
77b7023a
AN
1611
1612 /*
1613 * transmission can be stopped by others which leads to
1614 * dynamic_ps_timer expiry. Postpone the ps timer if it
1615 * is not the actual idle state.
1616 */
1617 spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
1618 for (q = 0; q < local->hw.queues; q++) {
1619 if (local->queue_stop_reasons[q]) {
1620 spin_unlock_irqrestore(&local->queue_stop_reason_lock,
1621 flags);
1622 mod_timer(&local->dynamic_ps_timer, jiffies +
1623 msecs_to_jiffies(
1624 local->hw.conf.dynamic_ps_timeout));
1625 return;
1626 }
1627 }
1628 spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
1ddc2867 1629 }
1ddc2867 1630
30686bf7 1631 if (ieee80211_hw_check(&local->hw, PS_NULLFUNC_STACK) &&
9c38a8b4 1632 !(ifmgd->flags & IEEE80211_STA_NULLFUNC_ACKED)) {
a1598383 1633 if (drv_tx_frames_pending(local)) {
e8306f98
VN
1634 mod_timer(&local->dynamic_ps_timer, jiffies +
1635 msecs_to_jiffies(
1636 local->hw.conf.dynamic_ps_timeout));
a1598383 1637 } else {
076cdcb1 1638 ieee80211_send_nullfunc(local, sdata, true);
e8306f98 1639 /* Flush to get the tx status of nullfunc frame */
3b24f4c6 1640 ieee80211_flush_queues(local, sdata, false);
e8306f98 1641 }
f3e85b9e
VN
1642 }
1643
30686bf7
JB
1644 if (!(ieee80211_hw_check(&local->hw, REPORTS_TX_ACK_STATUS) &&
1645 ieee80211_hw_check(&local->hw, PS_NULLFUNC_STACK)) ||
375177bf
VN
1646 (ifmgd->flags & IEEE80211_STA_NULLFUNC_ACKED)) {
1647 ifmgd->flags &= ~IEEE80211_STA_NULLFUNC_ACKED;
1648 local->hw.conf.flags |= IEEE80211_CONF_PS;
1649 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
1650 }
965bedad
JB
1651}
1652
1653void ieee80211_dynamic_ps_timer(unsigned long data)
1654{
1655 struct ieee80211_local *local = (void *) data;
1656
42935eca 1657 ieee80211_queue_work(&local->hw, &local->dynamic_ps_enable_work);
965bedad
JB
1658}
1659
164eb02d
SW
1660void ieee80211_dfs_cac_timer_work(struct work_struct *work)
1661{
1662 struct delayed_work *delayed_work =
1663 container_of(work, struct delayed_work, work);
1664 struct ieee80211_sub_if_data *sdata =
1665 container_of(delayed_work, struct ieee80211_sub_if_data,
1666 dfs_cac_timer_work);
d2859df5 1667 struct cfg80211_chan_def chandef = sdata->vif.bss_conf.chandef;
164eb02d 1668
34a3740d
JB
1669 mutex_lock(&sdata->local->mtx);
1670 if (sdata->wdev.cac_started) {
1671 ieee80211_vif_release_channel(sdata);
1672 cfg80211_cac_event(sdata->dev, &chandef,
1673 NL80211_RADAR_CAC_FINISHED,
1674 GFP_KERNEL);
1675 }
1676 mutex_unlock(&sdata->local->mtx);
164eb02d
SW
1677}
1678
02219b3a
JB
1679static bool
1680__ieee80211_sta_handle_tspec_ac_params(struct ieee80211_sub_if_data *sdata)
1681{
1682 struct ieee80211_local *local = sdata->local;
1683 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
cc72f6e2 1684 bool ret = false;
02219b3a
JB
1685 int ac;
1686
1687 if (local->hw.queues < IEEE80211_NUM_ACS)
1688 return false;
1689
1690 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
1691 struct ieee80211_sta_tx_tspec *tx_tspec = &ifmgd->tx_tspec[ac];
1692 int non_acm_ac;
1693 unsigned long now = jiffies;
1694
1695 if (tx_tspec->action == TX_TSPEC_ACTION_NONE &&
1696 tx_tspec->admitted_time &&
1697 time_after(now, tx_tspec->time_slice_start + HZ)) {
1698 tx_tspec->consumed_tx_time = 0;
1699 tx_tspec->time_slice_start = now;
1700
1701 if (tx_tspec->downgraded)
1702 tx_tspec->action =
1703 TX_TSPEC_ACTION_STOP_DOWNGRADE;
1704 }
1705
1706 switch (tx_tspec->action) {
1707 case TX_TSPEC_ACTION_STOP_DOWNGRADE:
1708 /* take the original parameters */
1709 if (drv_conf_tx(local, sdata, ac, &sdata->tx_conf[ac]))
1710 sdata_err(sdata,
1711 "failed to set TX queue parameters for queue %d\n",
1712 ac);
1713 tx_tspec->action = TX_TSPEC_ACTION_NONE;
1714 tx_tspec->downgraded = false;
1715 ret = true;
1716 break;
1717 case TX_TSPEC_ACTION_DOWNGRADE:
1718 if (time_after(now, tx_tspec->time_slice_start + HZ)) {
1719 tx_tspec->action = TX_TSPEC_ACTION_NONE;
1720 ret = true;
1721 break;
1722 }
1723 /* downgrade next lower non-ACM AC */
1724 for (non_acm_ac = ac + 1;
1725 non_acm_ac < IEEE80211_NUM_ACS;
1726 non_acm_ac++)
1727 if (!(sdata->wmm_acm & BIT(7 - 2 * non_acm_ac)))
1728 break;
1729 /* The loop will result in using BK even if it requires
1730 * admission control, such configuration makes no sense
1731 * and we have to transmit somehow - the AC selection
1732 * does the same thing.
1733 */
1734 if (drv_conf_tx(local, sdata, ac,
1735 &sdata->tx_conf[non_acm_ac]))
1736 sdata_err(sdata,
1737 "failed to set TX queue parameters for queue %d\n",
1738 ac);
1739 tx_tspec->action = TX_TSPEC_ACTION_NONE;
1740 ret = true;
1741 schedule_delayed_work(&ifmgd->tx_tspec_wk,
1742 tx_tspec->time_slice_start + HZ - now + 1);
1743 break;
1744 case TX_TSPEC_ACTION_NONE:
1745 /* nothing now */
1746 break;
1747 }
1748 }
1749
1750 return ret;
1751}
1752
1753void ieee80211_sta_handle_tspec_ac_params(struct ieee80211_sub_if_data *sdata)
1754{
1755 if (__ieee80211_sta_handle_tspec_ac_params(sdata))
1756 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_QOS);
1757}
1758
1759static void ieee80211_sta_handle_tspec_ac_params_wk(struct work_struct *work)
1760{
1761 struct ieee80211_sub_if_data *sdata;
1762
1763 sdata = container_of(work, struct ieee80211_sub_if_data,
1764 u.mgd.tx_tspec_wk.work);
1765 ieee80211_sta_handle_tspec_ac_params(sdata);
1766}
1767
60f8b39c 1768/* MLME */
7d25745d 1769static bool ieee80211_sta_wmm_params(struct ieee80211_local *local,
4ced3f74 1770 struct ieee80211_sub_if_data *sdata,
4a3cb702 1771 const u8 *wmm_param, size_t wmm_param_len)
f0706e82 1772{
f0706e82 1773 struct ieee80211_tx_queue_params params;
4ced3f74 1774 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
f0706e82
JB
1775 size_t left;
1776 int count;
4a3cb702
JB
1777 const u8 *pos;
1778 u8 uapsd_queues = 0;
f0706e82 1779
e1b3ec1a 1780 if (!local->ops->conf_tx)
7d25745d 1781 return false;
e1b3ec1a 1782
32c5057b 1783 if (local->hw.queues < IEEE80211_NUM_ACS)
7d25745d 1784 return false;
3434fbd3
JB
1785
1786 if (!wmm_param)
7d25745d 1787 return false;
3434fbd3 1788
f0706e82 1789 if (wmm_param_len < 8 || wmm_param[5] /* version */ != 1)
7d25745d 1790 return false;
ab13315a
KV
1791
1792 if (ifmgd->flags & IEEE80211_STA_UAPSD_ENABLED)
dc41e4d4 1793 uapsd_queues = ifmgd->uapsd_queues;
ab13315a 1794
f0706e82 1795 count = wmm_param[6] & 0x0f;
46900298 1796 if (count == ifmgd->wmm_last_param_set)
7d25745d 1797 return false;
46900298 1798 ifmgd->wmm_last_param_set = count;
f0706e82
JB
1799
1800 pos = wmm_param + 8;
1801 left = wmm_param_len - 8;
1802
1803 memset(&params, 0, sizeof(params));
1804
00e96dec 1805 sdata->wmm_acm = 0;
f0706e82
JB
1806 for (; left >= 4; left -= 4, pos += 4) {
1807 int aci = (pos[0] >> 5) & 0x03;
1808 int acm = (pos[0] >> 4) & 0x01;
ab13315a 1809 bool uapsd = false;
f0706e82
JB
1810 int queue;
1811
1812 switch (aci) {
0eeb59fe 1813 case 1: /* AC_BK */
e100bb64 1814 queue = 3;
988c0f72 1815 if (acm)
00e96dec 1816 sdata->wmm_acm |= BIT(1) | BIT(2); /* BK/- */
ab13315a
KV
1817 if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_BK)
1818 uapsd = true;
f0706e82 1819 break;
0eeb59fe 1820 case 2: /* AC_VI */
e100bb64 1821 queue = 1;
988c0f72 1822 if (acm)
00e96dec 1823 sdata->wmm_acm |= BIT(4) | BIT(5); /* CL/VI */
ab13315a
KV
1824 if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_VI)
1825 uapsd = true;
f0706e82 1826 break;
0eeb59fe 1827 case 3: /* AC_VO */
e100bb64 1828 queue = 0;
988c0f72 1829 if (acm)
00e96dec 1830 sdata->wmm_acm |= BIT(6) | BIT(7); /* VO/NC */
ab13315a
KV
1831 if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_VO)
1832 uapsd = true;
f0706e82 1833 break;
0eeb59fe 1834 case 0: /* AC_BE */
f0706e82 1835 default:
e100bb64 1836 queue = 2;
988c0f72 1837 if (acm)
00e96dec 1838 sdata->wmm_acm |= BIT(0) | BIT(3); /* BE/EE */
ab13315a
KV
1839 if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_BE)
1840 uapsd = true;
f0706e82
JB
1841 break;
1842 }
1843
1844 params.aifs = pos[0] & 0x0f;
1845 params.cw_max = ecw2cw((pos[1] & 0xf0) >> 4);
1846 params.cw_min = ecw2cw(pos[1] & 0x0f);
f434b2d1 1847 params.txop = get_unaligned_le16(pos + 2);
908f8d07 1848 params.acm = acm;
ab13315a
KV
1849 params.uapsd = uapsd;
1850
bdcbd8e0 1851 mlme_dbg(sdata,
02219b3a 1852 "WMM queue=%d aci=%d acm=%d aifs=%d cWmin=%d cWmax=%d txop=%d uapsd=%d, downgraded=%d\n",
bdcbd8e0
JB
1853 queue, aci, acm,
1854 params.aifs, params.cw_min, params.cw_max,
02219b3a
JB
1855 params.txop, params.uapsd,
1856 ifmgd->tx_tspec[queue].downgraded);
f6f3def3 1857 sdata->tx_conf[queue] = params;
02219b3a
JB
1858 if (!ifmgd->tx_tspec[queue].downgraded &&
1859 drv_conf_tx(local, sdata, queue, &params))
bdcbd8e0
JB
1860 sdata_err(sdata,
1861 "failed to set TX queue parameters for queue %d\n",
1862 queue);
f0706e82 1863 }
e1b3ec1a
SG
1864
1865 /* enable WMM or activate new settings */
4ced3f74 1866 sdata->vif.bss_conf.qos = true;
7d25745d 1867 return true;
f0706e82
JB
1868}
1869
925e64c3
SG
1870static void __ieee80211_stop_poll(struct ieee80211_sub_if_data *sdata)
1871{
1872 lockdep_assert_held(&sdata->local->mtx);
1873
392b9ffb 1874 sdata->u.mgd.flags &= ~IEEE80211_STA_CONNECTION_POLL;
925e64c3
SG
1875 ieee80211_run_deferred_scan(sdata->local);
1876}
1877
1878static void ieee80211_stop_poll(struct ieee80211_sub_if_data *sdata)
1879{
1880 mutex_lock(&sdata->local->mtx);
1881 __ieee80211_stop_poll(sdata);
1882 mutex_unlock(&sdata->local->mtx);
1883}
1884
7a5158ef
JB
1885static u32 ieee80211_handle_bss_capability(struct ieee80211_sub_if_data *sdata,
1886 u16 capab, bool erp_valid, u8 erp)
5628221c 1887{
bda3933a 1888 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
471b3efd 1889 u32 changed = 0;
7a5158ef
JB
1890 bool use_protection;
1891 bool use_short_preamble;
1892 bool use_short_slot;
1893
1894 if (erp_valid) {
1895 use_protection = (erp & WLAN_ERP_USE_PROTECTION) != 0;
1896 use_short_preamble = (erp & WLAN_ERP_BARKER_PREAMBLE) == 0;
1897 } else {
1898 use_protection = false;
1899 use_short_preamble = !!(capab & WLAN_CAPABILITY_SHORT_PREAMBLE);
1900 }
1901
1902 use_short_slot = !!(capab & WLAN_CAPABILITY_SHORT_SLOT_TIME);
55de908a 1903 if (ieee80211_get_sdata_band(sdata) == IEEE80211_BAND_5GHZ)
43d35343 1904 use_short_slot = true;
5628221c 1905
471b3efd 1906 if (use_protection != bss_conf->use_cts_prot) {
471b3efd
JB
1907 bss_conf->use_cts_prot = use_protection;
1908 changed |= BSS_CHANGED_ERP_CTS_PROT;
5628221c 1909 }
7e9ed188 1910
d43c7b37 1911 if (use_short_preamble != bss_conf->use_short_preamble) {
d43c7b37 1912 bss_conf->use_short_preamble = use_short_preamble;
471b3efd 1913 changed |= BSS_CHANGED_ERP_PREAMBLE;
7e9ed188 1914 }
d9430a32 1915
7a5158ef 1916 if (use_short_slot != bss_conf->use_short_slot) {
7a5158ef
JB
1917 bss_conf->use_short_slot = use_short_slot;
1918 changed |= BSS_CHANGED_ERP_SLOT;
50c4afb9
JL
1919 }
1920
1921 return changed;
1922}
1923
f698d856 1924static void ieee80211_set_associated(struct ieee80211_sub_if_data *sdata,
0c1ad2ca 1925 struct cfg80211_bss *cbss,
ae5eb026 1926 u32 bss_info_changed)
f0706e82 1927{
0c1ad2ca 1928 struct ieee80211_bss *bss = (void *)cbss->priv;
471b3efd 1929 struct ieee80211_local *local = sdata->local;
68542962 1930 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
d6f2da5b 1931
ae5eb026 1932 bss_info_changed |= BSS_CHANGED_ASSOC;
77fdaa12 1933 bss_info_changed |= ieee80211_handle_bss_capability(sdata,
50ae34a2 1934 bss_conf->assoc_capability, bss->has_erp_value, bss->erp_value);
21c0cbe7 1935
7ccc8bd7 1936 sdata->u.mgd.beacon_timeout = usecs_to_jiffies(ieee80211_tu_to_usec(
59c1ec2b 1937 beacon_loss_count * bss_conf->beacon_int));
7ccc8bd7 1938
0c1ad2ca
JB
1939 sdata->u.mgd.associated = cbss;
1940 memcpy(sdata->u.mgd.bssid, cbss->bssid, ETH_ALEN);
f0706e82 1941
17e4ec14
JM
1942 sdata->u.mgd.flags |= IEEE80211_STA_RESET_SIGNAL_AVE;
1943
488dd7b5 1944 if (sdata->vif.p2p) {
9caf0364 1945 const struct cfg80211_bss_ies *ies;
488dd7b5 1946
9caf0364
JB
1947 rcu_read_lock();
1948 ies = rcu_dereference(cbss->ies);
1949 if (ies) {
9caf0364
JB
1950 int ret;
1951
1952 ret = cfg80211_get_p2p_attr(
1953 ies->data, ies->len,
1954 IEEE80211_P2P_ATTR_ABSENCE_NOTICE,
67baf663
JD
1955 (u8 *) &bss_conf->p2p_noa_attr,
1956 sizeof(bss_conf->p2p_noa_attr));
9caf0364 1957 if (ret >= 2) {
67baf663
JD
1958 sdata->u.mgd.p2p_noa_index =
1959 bss_conf->p2p_noa_attr.index;
9caf0364 1960 bss_info_changed |= BSS_CHANGED_P2P_PS;
9caf0364 1961 }
488dd7b5 1962 }
9caf0364 1963 rcu_read_unlock();
488dd7b5
JB
1964 }
1965
b291ba11 1966 /* just to be sure */
925e64c3 1967 ieee80211_stop_poll(sdata);
b291ba11 1968
9ac19a90 1969 ieee80211_led_assoc(local, 1);
9306102e 1970
989c6505 1971 if (sdata->u.mgd.have_beacon) {
826262c3
JB
1972 /*
1973 * If the AP is buggy we may get here with no DTIM period
1974 * known, so assume it's 1 which is the only safe assumption
1975 * in that case, although if the TIM IE is broken powersave
1976 * probably just won't work at all.
1977 */
1978 bss_conf->dtim_period = sdata->u.mgd.dtim_period ?: 1;
817cee76 1979 bss_conf->beacon_rate = bss->beacon_rate;
989c6505 1980 bss_info_changed |= BSS_CHANGED_BEACON_INFO;
826262c3 1981 } else {
817cee76 1982 bss_conf->beacon_rate = NULL;
e5b900d2 1983 bss_conf->dtim_period = 0;
826262c3 1984 }
e5b900d2 1985
68542962 1986 bss_conf->assoc = 1;
9cef8737 1987
a97c13c3 1988 /* Tell the driver to monitor connection quality (if supported) */
ea086359 1989 if (sdata->vif.driver_flags & IEEE80211_VIF_SUPPORTS_CQM_RSSI &&
68542962 1990 bss_conf->cqm_rssi_thold)
a97c13c3
JO
1991 bss_info_changed |= BSS_CHANGED_CQM;
1992
68542962 1993 /* Enable ARP filtering */
0f19b41e 1994 if (bss_conf->arp_addr_cnt)
68542962 1995 bss_info_changed |= BSS_CHANGED_ARP_FILTER;
68542962 1996
ae5eb026 1997 ieee80211_bss_info_change_notify(sdata, bss_info_changed);
f0706e82 1998
056508dc
JB
1999 mutex_lock(&local->iflist_mtx);
2000 ieee80211_recalc_ps(local, -1);
2001 mutex_unlock(&local->iflist_mtx);
e0cb686f 2002
04ecd257 2003 ieee80211_recalc_smps(sdata);
ab095877
EP
2004 ieee80211_recalc_ps_vif(sdata);
2005
9ac19a90 2006 netif_carrier_on(sdata->dev);
f0706e82
JB
2007}
2008
e69e95db 2009static void ieee80211_set_disassoc(struct ieee80211_sub_if_data *sdata,
37ad3888
JB
2010 u16 stype, u16 reason, bool tx,
2011 u8 *frame_buf)
aa458d17 2012{
46900298 2013 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
aa458d17 2014 struct ieee80211_local *local = sdata->local;
3cc5240b 2015 u32 changed = 0;
aa458d17 2016
8d61ffa5 2017 sdata_assert_lock(sdata);
77fdaa12 2018
37ad3888
JB
2019 if (WARN_ON_ONCE(tx && !frame_buf))
2020 return;
2021
b291ba11
JB
2022 if (WARN_ON(!ifmgd->associated))
2023 return;
2024
79543d8e
DS
2025 ieee80211_stop_poll(sdata);
2026
77fdaa12 2027 ifmgd->associated = NULL;
aa458d17
TW
2028 netif_carrier_off(sdata->dev);
2029
88bc40e8
EP
2030 /*
2031 * if we want to get out of ps before disassoc (why?) we have
2032 * to do it before sending disassoc, as otherwise the null-packet
2033 * won't be valid.
2034 */
2035 if (local->hw.conf.flags & IEEE80211_CONF_PS) {
2036 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
2037 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
2038 }
2039 local->ps_sdata = NULL;
2040
ab095877
EP
2041 /* disable per-vif ps */
2042 ieee80211_recalc_ps_vif(sdata);
2043
14f2ae83
EG
2044 /* make sure ongoing transmission finishes */
2045 synchronize_net();
2046
3b24f4c6
EG
2047 /*
2048 * drop any frame before deauth/disassoc, this can be data or
2049 * management frame. Since we are disconnecting, we should not
2050 * insist sending these frames which can take time and delay
2051 * the disconnection and possible the roaming.
2052 */
f823981e 2053 if (tx)
3b24f4c6 2054 ieee80211_flush_queues(local, sdata, true);
f823981e 2055
37ad3888
JB
2056 /* deauthenticate/disassociate now */
2057 if (tx || frame_buf)
88a9e31c
EP
2058 ieee80211_send_deauth_disassoc(sdata, ifmgd->bssid, stype,
2059 reason, tx, frame_buf);
37ad3888 2060
3b24f4c6 2061 /* flush out frame - make sure the deauth was actually sent */
37ad3888 2062 if (tx)
3b24f4c6 2063 ieee80211_flush_queues(local, sdata, false);
37ad3888 2064
88a9e31c 2065 /* clear bssid only after building the needed mgmt frames */
c84a67a2 2066 eth_zero_addr(ifmgd->bssid);
88a9e31c 2067
37ad3888 2068 /* remove AP and TDLS peers */
d34ba216 2069 sta_info_flush(sdata);
37ad3888
JB
2070
2071 /* finally reset all BSS / config parameters */
f5e5bf25
TW
2072 changed |= ieee80211_reset_erp_info(sdata);
2073
f5e5bf25 2074 ieee80211_led_assoc(local, 0);
ae5eb026
JB
2075 changed |= BSS_CHANGED_ASSOC;
2076 sdata->vif.bss_conf.assoc = false;
f5e5bf25 2077
67baf663
JD
2078 ifmgd->p2p_noa_index = -1;
2079 memset(&sdata->vif.bss_conf.p2p_noa_attr, 0,
2080 sizeof(sdata->vif.bss_conf.p2p_noa_attr));
488dd7b5 2081
dd5ecfea 2082 /* on the next assoc, re-program HT/VHT parameters */
ef96a842
BG
2083 memset(&ifmgd->ht_capa, 0, sizeof(ifmgd->ht_capa));
2084 memset(&ifmgd->ht_capa_mask, 0, sizeof(ifmgd->ht_capa_mask));
dd5ecfea
JB
2085 memset(&ifmgd->vht_capa, 0, sizeof(ifmgd->vht_capa));
2086 memset(&ifmgd->vht_capa_mask, 0, sizeof(ifmgd->vht_capa_mask));
322cd406 2087 sdata->flags &= ~IEEE80211_SDATA_MU_MIMO_OWNER;
413ad50a 2088
1ea6f9c0 2089 sdata->ap_power_level = IEEE80211_UNSET_POWER_LEVEL;
a8302de9 2090
520eb820
KV
2091 del_timer_sync(&local->dynamic_ps_timer);
2092 cancel_work_sync(&local->dynamic_ps_enable_work);
2093
68542962 2094 /* Disable ARP filtering */
0f19b41e 2095 if (sdata->vif.bss_conf.arp_addr_cnt)
68542962 2096 changed |= BSS_CHANGED_ARP_FILTER;
68542962 2097
3abead59
JB
2098 sdata->vif.bss_conf.qos = false;
2099 changed |= BSS_CHANGED_QOS;
2100
0aaffa9b
JB
2101 /* The BSSID (not really interesting) and HT changed */
2102 changed |= BSS_CHANGED_BSSID | BSS_CHANGED_HT;
ae5eb026 2103 ieee80211_bss_info_change_notify(sdata, changed);
8e268e47 2104
3abead59
JB
2105 /* disassociated - set to defaults now */
2106 ieee80211_set_wmm_default(sdata, false);
2107
b9dcf712
JB
2108 del_timer_sync(&sdata->u.mgd.conn_mon_timer);
2109 del_timer_sync(&sdata->u.mgd.bcn_mon_timer);
2110 del_timer_sync(&sdata->u.mgd.timer);
2111 del_timer_sync(&sdata->u.mgd.chswitch_timer);
2d9957cc 2112
826262c3 2113 sdata->vif.bss_conf.dtim_period = 0;
817cee76
AB
2114 sdata->vif.bss_conf.beacon_rate = NULL;
2115
989c6505 2116 ifmgd->have_beacon = false;
826262c3 2117
028e8da0 2118 ifmgd->flags = 0;
34a3740d 2119 mutex_lock(&local->mtx);
028e8da0 2120 ieee80211_vif_release_channel(sdata);
59af6928
MK
2121
2122 sdata->vif.csa_active = false;
0c21e632 2123 ifmgd->csa_waiting_bcn = false;
f84eaa10 2124 ifmgd->csa_ignored_same_chan = false;
a46992b4
LC
2125 if (sdata->csa_block_tx) {
2126 ieee80211_wake_vif_queues(local, sdata,
2127 IEEE80211_QUEUE_STOP_REASON_CSA);
2128 sdata->csa_block_tx = false;
2129 }
34a3740d 2130 mutex_unlock(&local->mtx);
2475b1cc 2131
02219b3a
JB
2132 /* existing TX TSPEC sessions no longer exist */
2133 memset(ifmgd->tx_tspec, 0, sizeof(ifmgd->tx_tspec));
2134 cancel_delayed_work_sync(&ifmgd->tx_tspec_wk);
2135
2475b1cc 2136 sdata->encrypt_headroom = IEEE80211_ENCRYPT_HEADROOM;
aa458d17 2137}
f0706e82 2138
3cf335d5
KV
2139void ieee80211_sta_rx_notify(struct ieee80211_sub_if_data *sdata,
2140 struct ieee80211_hdr *hdr)
2141{
2142 /*
2143 * We can postpone the mgd.timer whenever receiving unicast frames
2144 * from AP because we know that the connection is working both ways
2145 * at that time. But multicast frames (and hence also beacons) must
2146 * be ignored here, because we need to trigger the timer during
b291ba11
JB
2147 * data idle periods for sending the periodic probe request to the
2148 * AP we're connected to.
3cf335d5 2149 */
b291ba11
JB
2150 if (is_multicast_ether_addr(hdr->addr1))
2151 return;
2152
be099e82 2153 ieee80211_sta_reset_conn_monitor(sdata);
3cf335d5 2154}
f0706e82 2155
4e5ff376
FF
2156static void ieee80211_reset_ap_probe(struct ieee80211_sub_if_data *sdata)
2157{
2158 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
133d40f9 2159 struct ieee80211_local *local = sdata->local;
4e5ff376 2160
133d40f9 2161 mutex_lock(&local->mtx);
392b9ffb
SG
2162 if (!(ifmgd->flags & IEEE80211_STA_CONNECTION_POLL))
2163 goto out;
4e5ff376 2164
925e64c3 2165 __ieee80211_stop_poll(sdata);
133d40f9
SG
2166
2167 mutex_lock(&local->iflist_mtx);
2168 ieee80211_recalc_ps(local, -1);
2169 mutex_unlock(&local->iflist_mtx);
4e5ff376 2170
30686bf7 2171 if (ieee80211_hw_check(&sdata->local->hw, CONNECTION_MONITOR))
133d40f9 2172 goto out;
4e5ff376
FF
2173
2174 /*
2175 * We've received a probe response, but are not sure whether
2176 * we have or will be receiving any beacons or data, so let's
2177 * schedule the timers again, just in case.
2178 */
2179 ieee80211_sta_reset_beacon_monitor(sdata);
2180
2181 mod_timer(&ifmgd->conn_mon_timer,
2182 round_jiffies_up(jiffies +
2183 IEEE80211_CONNECTION_IDLE_TIME));
133d40f9 2184out:
133d40f9 2185 mutex_unlock(&local->mtx);
4e5ff376
FF
2186}
2187
02219b3a
JB
2188static void ieee80211_sta_tx_wmm_ac_notify(struct ieee80211_sub_if_data *sdata,
2189 struct ieee80211_hdr *hdr,
2190 u16 tx_time)
2191{
2192 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2193 u16 tid = *ieee80211_get_qos_ctl(hdr) & IEEE80211_QOS_CTL_TID_MASK;
2194 int ac = ieee80211_ac_from_tid(tid);
2195 struct ieee80211_sta_tx_tspec *tx_tspec = &ifmgd->tx_tspec[ac];
2196 unsigned long now = jiffies;
2197
2198 if (likely(!tx_tspec->admitted_time))
2199 return;
2200
2201 if (time_after(now, tx_tspec->time_slice_start + HZ)) {
2202 tx_tspec->consumed_tx_time = 0;
2203 tx_tspec->time_slice_start = now;
2204
2205 if (tx_tspec->downgraded) {
2206 tx_tspec->action = TX_TSPEC_ACTION_STOP_DOWNGRADE;
2207 schedule_delayed_work(&ifmgd->tx_tspec_wk, 0);
2208 }
2209 }
2210
2211 if (tx_tspec->downgraded)
2212 return;
2213
2214 tx_tspec->consumed_tx_time += tx_time;
2215
2216 if (tx_tspec->consumed_tx_time >= tx_tspec->admitted_time) {
2217 tx_tspec->downgraded = true;
2218 tx_tspec->action = TX_TSPEC_ACTION_DOWNGRADE;
2219 schedule_delayed_work(&ifmgd->tx_tspec_wk, 0);
2220 }
2221}
2222
4e5ff376 2223void ieee80211_sta_tx_notify(struct ieee80211_sub_if_data *sdata,
02219b3a 2224 struct ieee80211_hdr *hdr, bool ack, u16 tx_time)
4e5ff376 2225{
02219b3a
JB
2226 ieee80211_sta_tx_wmm_ac_notify(sdata, hdr, tx_time);
2227
75706d0e 2228 if (!ieee80211_is_data(hdr->frame_control))
4e5ff376
FF
2229 return;
2230
4e5ff376
FF
2231 if (ieee80211_is_nullfunc(hdr->frame_control) &&
2232 sdata->u.mgd.probe_send_count > 0) {
04ac3c0e 2233 if (ack)
cab1c7fd 2234 ieee80211_sta_reset_conn_monitor(sdata);
04ac3c0e
FF
2235 else
2236 sdata->u.mgd.nullfunc_failed = true;
4e5ff376 2237 ieee80211_queue_work(&sdata->local->hw, &sdata->work);
cab1c7fd 2238 return;
4e5ff376 2239 }
cab1c7fd
WD
2240
2241 if (ack)
2242 ieee80211_sta_reset_conn_monitor(sdata);
4e5ff376
FF
2243}
2244
a43abf29
ML
2245static void ieee80211_mgd_probe_ap_send(struct ieee80211_sub_if_data *sdata)
2246{
2247 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2248 const u8 *ssid;
f01a067d 2249 u8 *dst = ifmgd->associated->bssid;
180205bd 2250 u8 unicast_limit = max(1, max_probe_tries - 3);
f01a067d
LR
2251
2252 /*
2253 * Try sending broadcast probe requests for the last three
2254 * probe requests after the first ones failed since some
2255 * buggy APs only support broadcast probe requests.
2256 */
2257 if (ifmgd->probe_send_count >= unicast_limit)
2258 dst = NULL;
a43abf29 2259
4e5ff376
FF
2260 /*
2261 * When the hardware reports an accurate Tx ACK status, it's
2262 * better to send a nullfunc frame instead of a probe request,
2263 * as it will kick us off the AP quickly if we aren't associated
2264 * anymore. The timeout will be reset if the frame is ACKed by
2265 * the AP.
2266 */
992e68bf
SD
2267 ifmgd->probe_send_count++;
2268
30686bf7 2269 if (ieee80211_hw_check(&sdata->local->hw, REPORTS_TX_ACK_STATUS)) {
04ac3c0e 2270 ifmgd->nullfunc_failed = false;
076cdcb1 2271 ieee80211_send_nullfunc(sdata->local, sdata, false);
04ac3c0e 2272 } else {
88c868c4
SG
2273 int ssid_len;
2274
9caf0364 2275 rcu_read_lock();
4e5ff376 2276 ssid = ieee80211_bss_get_ie(ifmgd->associated, WLAN_EID_SSID);
88c868c4
SG
2277 if (WARN_ON_ONCE(ssid == NULL))
2278 ssid_len = 0;
2279 else
2280 ssid_len = ssid[1];
2281
a73f8e21 2282 ieee80211_send_probe_req(sdata, sdata->vif.addr, dst,
a344d677 2283 ssid + 2, ssid_len, NULL,
1672c0e3 2284 0, (u32) -1, true, 0,
55de908a 2285 ifmgd->associated->channel, false);
9caf0364 2286 rcu_read_unlock();
4e5ff376 2287 }
a43abf29 2288
180205bd 2289 ifmgd->probe_timeout = jiffies + msecs_to_jiffies(probe_wait_ms);
8d61ffa5 2290 run_again(sdata, ifmgd->probe_timeout);
a43abf29
ML
2291}
2292
b291ba11
JB
2293static void ieee80211_mgd_probe_ap(struct ieee80211_sub_if_data *sdata,
2294 bool beacon)
04de8381 2295{
04de8381 2296 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
b291ba11 2297 bool already = false;
34bfc411 2298
9607e6b6 2299 if (!ieee80211_sdata_running(sdata))
0e2b6286
JB
2300 return;
2301
8d61ffa5 2302 sdata_lock(sdata);
77fdaa12
JB
2303
2304 if (!ifmgd->associated)
2305 goto out;
2306
133d40f9
SG
2307 mutex_lock(&sdata->local->mtx);
2308
2309 if (sdata->local->tmp_channel || sdata->local->scanning) {
2310 mutex_unlock(&sdata->local->mtx);
2311 goto out;
2312 }
2313
a13fbe54 2314 if (beacon) {
bdcbd8e0 2315 mlme_dbg_ratelimited(sdata,
59c1ec2b
BG
2316 "detected beacon loss from AP (missed %d beacons) - probing\n",
2317 beacon_loss_count);
bdcbd8e0 2318
98f03342 2319 ieee80211_cqm_beacon_loss_notify(&sdata->vif, GFP_KERNEL);
a13fbe54 2320 }
04de8381 2321
b291ba11
JB
2322 /*
2323 * The driver/our work has already reported this event or the
2324 * connection monitoring has kicked in and we have already sent
2325 * a probe request. Or maybe the AP died and the driver keeps
2326 * reporting until we disassociate...
2327 *
2328 * In either case we have to ignore the current call to this
2329 * function (except for setting the correct probe reason bit)
2330 * because otherwise we would reset the timer every time and
2331 * never check whether we received a probe response!
2332 */
392b9ffb 2333 if (ifmgd->flags & IEEE80211_STA_CONNECTION_POLL)
b291ba11
JB
2334 already = true;
2335
12b5f34d
EP
2336 ifmgd->flags |= IEEE80211_STA_CONNECTION_POLL;
2337
133d40f9
SG
2338 mutex_unlock(&sdata->local->mtx);
2339
b291ba11
JB
2340 if (already)
2341 goto out;
2342
4e751843
JB
2343 mutex_lock(&sdata->local->iflist_mtx);
2344 ieee80211_recalc_ps(sdata->local, -1);
2345 mutex_unlock(&sdata->local->iflist_mtx);
2346
a43abf29
ML
2347 ifmgd->probe_send_count = 0;
2348 ieee80211_mgd_probe_ap_send(sdata);
77fdaa12 2349 out:
8d61ffa5 2350 sdata_unlock(sdata);
04de8381
KV
2351}
2352
a619a4c0
JO
2353struct sk_buff *ieee80211_ap_probereq_get(struct ieee80211_hw *hw,
2354 struct ieee80211_vif *vif)
2355{
2356 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
2357 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
d9b3b28b 2358 struct cfg80211_bss *cbss;
a619a4c0
JO
2359 struct sk_buff *skb;
2360 const u8 *ssid;
88c868c4 2361 int ssid_len;
a619a4c0
JO
2362
2363 if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION))
2364 return NULL;
2365
8d61ffa5 2366 sdata_assert_lock(sdata);
a619a4c0 2367
d9b3b28b
EP
2368 if (ifmgd->associated)
2369 cbss = ifmgd->associated;
2370 else if (ifmgd->auth_data)
2371 cbss = ifmgd->auth_data->bss;
2372 else if (ifmgd->assoc_data)
2373 cbss = ifmgd->assoc_data->bss;
2374 else
a619a4c0
JO
2375 return NULL;
2376
9caf0364 2377 rcu_read_lock();
d9b3b28b 2378 ssid = ieee80211_bss_get_ie(cbss, WLAN_EID_SSID);
88c868c4
SG
2379 if (WARN_ON_ONCE(ssid == NULL))
2380 ssid_len = 0;
2381 else
2382 ssid_len = ssid[1];
2383
a344d677 2384 skb = ieee80211_build_probe_req(sdata, sdata->vif.addr, cbss->bssid,
55de908a 2385 (u32) -1, cbss->channel,
6b77863b 2386 ssid + 2, ssid_len,
85a237fe 2387 NULL, 0, true);
9caf0364 2388 rcu_read_unlock();
a619a4c0
JO
2389
2390 return skb;
2391}
2392EXPORT_SYMBOL(ieee80211_ap_probereq_get);
2393
a90faa9d
EG
2394static void ieee80211_report_disconnect(struct ieee80211_sub_if_data *sdata,
2395 const u8 *buf, size_t len, bool tx,
2396 u16 reason)
2397{
2398 struct ieee80211_event event = {
2399 .type = MLME_EVENT,
2400 .u.mlme.data = tx ? DEAUTH_TX_EVENT : DEAUTH_RX_EVENT,
2401 .u.mlme.reason = reason,
2402 };
2403
2404 if (tx)
2405 cfg80211_tx_mlme_mgmt(sdata->dev, buf, len);
2406 else
2407 cfg80211_rx_mlme_mgmt(sdata->dev, buf, len);
2408
2409 drv_event_callback(sdata->local, sdata, &event);
2410}
2411
eef9e54c 2412static void __ieee80211_disconnect(struct ieee80211_sub_if_data *sdata)
1e4dcd01 2413{
59af6928 2414 struct ieee80211_local *local = sdata->local;
1e4dcd01 2415 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
6ae16775 2416 u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN];
1e4dcd01 2417
8d61ffa5 2418 sdata_lock(sdata);
1e4dcd01 2419 if (!ifmgd->associated) {
8d61ffa5 2420 sdata_unlock(sdata);
1e4dcd01
JO
2421 return;
2422 }
2423
37ad3888
JB
2424 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH,
2425 WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY,
eef9e54c 2426 true, frame_buf);
59af6928 2427 mutex_lock(&local->mtx);
7578d575 2428 sdata->vif.csa_active = false;
0c21e632 2429 ifmgd->csa_waiting_bcn = false;
a46992b4
LC
2430 if (sdata->csa_block_tx) {
2431 ieee80211_wake_vif_queues(local, sdata,
2432 IEEE80211_QUEUE_STOP_REASON_CSA);
2433 sdata->csa_block_tx = false;
2434 }
59af6928 2435 mutex_unlock(&local->mtx);
7da7cc1d 2436
a90faa9d
EG
2437 ieee80211_report_disconnect(sdata, frame_buf, sizeof(frame_buf), true,
2438 WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY);
2439
8d61ffa5 2440 sdata_unlock(sdata);
1e4dcd01
JO
2441}
2442
cc74c0c7 2443static void ieee80211_beacon_connection_loss_work(struct work_struct *work)
b291ba11
JB
2444{
2445 struct ieee80211_sub_if_data *sdata =
2446 container_of(work, struct ieee80211_sub_if_data,
1e4dcd01 2447 u.mgd.beacon_connection_loss_work);
a85e1d55
PS
2448 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2449 struct sta_info *sta;
2450
2451 if (ifmgd->associated) {
30fa9047 2452 rcu_read_lock();
a85e1d55
PS
2453 sta = sta_info_get(sdata, ifmgd->bssid);
2454 if (sta)
2455 sta->beacon_loss_count++;
30fa9047 2456 rcu_read_unlock();
a85e1d55 2457 }
b291ba11 2458
682bd38b 2459 if (ifmgd->connection_loss) {
882a7c69
JB
2460 sdata_info(sdata, "Connection to AP %pM lost\n",
2461 ifmgd->bssid);
eef9e54c 2462 __ieee80211_disconnect(sdata);
882a7c69 2463 } else {
1e4dcd01 2464 ieee80211_mgd_probe_ap(sdata, true);
882a7c69
JB
2465 }
2466}
2467
2468static void ieee80211_csa_connection_drop_work(struct work_struct *work)
2469{
2470 struct ieee80211_sub_if_data *sdata =
2471 container_of(work, struct ieee80211_sub_if_data,
2472 u.mgd.csa_connection_drop_work);
2473
eef9e54c 2474 __ieee80211_disconnect(sdata);
b291ba11
JB
2475}
2476
04de8381
KV
2477void ieee80211_beacon_loss(struct ieee80211_vif *vif)
2478{
2479 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
1e4dcd01 2480 struct ieee80211_hw *hw = &sdata->local->hw;
04de8381 2481
b5878a2d
JB
2482 trace_api_beacon_loss(sdata);
2483
682bd38b 2484 sdata->u.mgd.connection_loss = false;
1e4dcd01 2485 ieee80211_queue_work(hw, &sdata->u.mgd.beacon_connection_loss_work);
04de8381
KV
2486}
2487EXPORT_SYMBOL(ieee80211_beacon_loss);
2488
1e4dcd01
JO
2489void ieee80211_connection_loss(struct ieee80211_vif *vif)
2490{
2491 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
2492 struct ieee80211_hw *hw = &sdata->local->hw;
2493
b5878a2d
JB
2494 trace_api_connection_loss(sdata);
2495
682bd38b 2496 sdata->u.mgd.connection_loss = true;
1e4dcd01
JO
2497 ieee80211_queue_work(hw, &sdata->u.mgd.beacon_connection_loss_work);
2498}
2499EXPORT_SYMBOL(ieee80211_connection_loss);
2500
2501
66e67e41
JB
2502static void ieee80211_destroy_auth_data(struct ieee80211_sub_if_data *sdata,
2503 bool assoc)
2504{
2505 struct ieee80211_mgd_auth_data *auth_data = sdata->u.mgd.auth_data;
2506
8d61ffa5 2507 sdata_assert_lock(sdata);
66e67e41 2508
66e67e41 2509 if (!assoc) {
c1e140bf
EG
2510 /*
2511 * we are not authenticated yet, the only timer that could be
2512 * running is the timeout for the authentication response which
2513 * which is not relevant anymore.
2514 */
2515 del_timer_sync(&sdata->u.mgd.timer);
66e67e41
JB
2516 sta_info_destroy_addr(sdata, auth_data->bss->bssid);
2517
c84a67a2 2518 eth_zero_addr(sdata->u.mgd.bssid);
66e67e41 2519 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BSSID);
028e8da0 2520 sdata->u.mgd.flags = 0;
34a3740d 2521 mutex_lock(&sdata->local->mtx);
55de908a 2522 ieee80211_vif_release_channel(sdata);
34a3740d 2523 mutex_unlock(&sdata->local->mtx);
66e67e41
JB
2524 }
2525
5b112d3d 2526 cfg80211_put_bss(sdata->local->hw.wiphy, auth_data->bss);
66e67e41
JB
2527 kfree(auth_data);
2528 sdata->u.mgd.auth_data = NULL;
2529}
2530
c9c99f89
JB
2531static void ieee80211_destroy_assoc_data(struct ieee80211_sub_if_data *sdata,
2532 bool assoc)
2533{
2534 struct ieee80211_mgd_assoc_data *assoc_data = sdata->u.mgd.assoc_data;
2535
2536 sdata_assert_lock(sdata);
2537
2538 if (!assoc) {
2539 /*
2540 * we are not associated yet, the only timer that could be
2541 * running is the timeout for the association response which
2542 * which is not relevant anymore.
2543 */
2544 del_timer_sync(&sdata->u.mgd.timer);
2545 sta_info_destroy_addr(sdata, assoc_data->bss->bssid);
2546
2547 eth_zero_addr(sdata->u.mgd.bssid);
2548 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BSSID);
2549 sdata->u.mgd.flags = 0;
322cd406 2550 sdata->flags &= ~IEEE80211_SDATA_MU_MIMO_OWNER;
c9c99f89
JB
2551 mutex_lock(&sdata->local->mtx);
2552 ieee80211_vif_release_channel(sdata);
2553 mutex_unlock(&sdata->local->mtx);
2554 }
2555
2556 kfree(assoc_data);
2557 sdata->u.mgd.assoc_data = NULL;
2558}
2559
66e67e41
JB
2560static void ieee80211_auth_challenge(struct ieee80211_sub_if_data *sdata,
2561 struct ieee80211_mgmt *mgmt, size_t len)
2562{
1672c0e3 2563 struct ieee80211_local *local = sdata->local;
66e67e41
JB
2564 struct ieee80211_mgd_auth_data *auth_data = sdata->u.mgd.auth_data;
2565 u8 *pos;
2566 struct ieee802_11_elems elems;
1672c0e3 2567 u32 tx_flags = 0;
66e67e41
JB
2568
2569 pos = mgmt->u.auth.variable;
b2e506bf 2570 ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), false, &elems);
66e67e41
JB
2571 if (!elems.challenge)
2572 return;
2573 auth_data->expected_transaction = 4;
a1845fc7 2574 drv_mgd_prepare_tx(sdata->local, sdata);
30686bf7 2575 if (ieee80211_hw_check(&local->hw, REPORTS_TX_ACK_STATUS))
1672c0e3
JB
2576 tx_flags = IEEE80211_TX_CTL_REQ_TX_STATUS |
2577 IEEE80211_TX_INTFL_MLME_CONN_TX;
700e8ea6 2578 ieee80211_send_auth(sdata, 3, auth_data->algorithm, 0,
66e67e41
JB
2579 elems.challenge - 2, elems.challenge_len + 2,
2580 auth_data->bss->bssid, auth_data->bss->bssid,
2581 auth_data->key, auth_data->key_len,
1672c0e3 2582 auth_data->key_idx, tx_flags);
66e67e41
JB
2583}
2584
8d61ffa5
JB
2585static void ieee80211_rx_mgmt_auth(struct ieee80211_sub_if_data *sdata,
2586 struct ieee80211_mgmt *mgmt, size_t len)
66e67e41
JB
2587{
2588 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2589 u8 bssid[ETH_ALEN];
2590 u16 auth_alg, auth_transaction, status_code;
2591 struct sta_info *sta;
a9409093
EG
2592 struct ieee80211_event event = {
2593 .type = MLME_EVENT,
2594 .u.mlme.data = AUTH_EVENT,
2595 };
66e67e41 2596
8d61ffa5 2597 sdata_assert_lock(sdata);
66e67e41
JB
2598
2599 if (len < 24 + 6)
8d61ffa5 2600 return;
66e67e41
JB
2601
2602 if (!ifmgd->auth_data || ifmgd->auth_data->done)
8d61ffa5 2603 return;
66e67e41
JB
2604
2605 memcpy(bssid, ifmgd->auth_data->bss->bssid, ETH_ALEN);
2606
b203ca39 2607 if (!ether_addr_equal(bssid, mgmt->bssid))
8d61ffa5 2608 return;
66e67e41
JB
2609
2610 auth_alg = le16_to_cpu(mgmt->u.auth.auth_alg);
2611 auth_transaction = le16_to_cpu(mgmt->u.auth.auth_transaction);
2612 status_code = le16_to_cpu(mgmt->u.auth.status_code);
2613
2614 if (auth_alg != ifmgd->auth_data->algorithm ||
0f4126e8
JM
2615 auth_transaction != ifmgd->auth_data->expected_transaction) {
2616 sdata_info(sdata, "%pM unexpected authentication state: alg %d (expected %d) transact %d (expected %d)\n",
2617 mgmt->sa, auth_alg, ifmgd->auth_data->algorithm,
2618 auth_transaction,
2619 ifmgd->auth_data->expected_transaction);
8d61ffa5 2620 return;
0f4126e8 2621 }
66e67e41
JB
2622
2623 if (status_code != WLAN_STATUS_SUCCESS) {
bdcbd8e0
JB
2624 sdata_info(sdata, "%pM denied authentication (status %d)\n",
2625 mgmt->sa, status_code);
dac211ec 2626 ieee80211_destroy_auth_data(sdata, false);
6ff57cf8 2627 cfg80211_rx_mlme_mgmt(sdata->dev, (u8 *)mgmt, len);
a9409093
EG
2628 event.u.mlme.status = MLME_DENIED;
2629 event.u.mlme.reason = status_code;
2630 drv_event_callback(sdata->local, sdata, &event);
8d61ffa5 2631 return;
66e67e41
JB
2632 }
2633
2634 switch (ifmgd->auth_data->algorithm) {
2635 case WLAN_AUTH_OPEN:
2636 case WLAN_AUTH_LEAP:
2637 case WLAN_AUTH_FT:
6b8ece3a 2638 case WLAN_AUTH_SAE:
66e67e41
JB
2639 break;
2640 case WLAN_AUTH_SHARED_KEY:
2641 if (ifmgd->auth_data->expected_transaction != 4) {
2642 ieee80211_auth_challenge(sdata, mgmt, len);
2643 /* need another frame */
8d61ffa5 2644 return;
66e67e41
JB
2645 }
2646 break;
2647 default:
2648 WARN_ONCE(1, "invalid auth alg %d",
2649 ifmgd->auth_data->algorithm);
8d61ffa5 2650 return;
66e67e41
JB
2651 }
2652
a9409093
EG
2653 event.u.mlme.status = MLME_SUCCESS;
2654 drv_event_callback(sdata->local, sdata, &event);
bdcbd8e0 2655 sdata_info(sdata, "authenticated\n");
66e67e41
JB
2656 ifmgd->auth_data->done = true;
2657 ifmgd->auth_data->timeout = jiffies + IEEE80211_AUTH_WAIT_ASSOC;
89afe614 2658 ifmgd->auth_data->timeout_started = true;
8d61ffa5 2659 run_again(sdata, ifmgd->auth_data->timeout);
66e67e41 2660
6b8ece3a
JM
2661 if (ifmgd->auth_data->algorithm == WLAN_AUTH_SAE &&
2662 ifmgd->auth_data->expected_transaction != 2) {
2663 /*
2664 * Report auth frame to user space for processing since another
2665 * round of Authentication frames is still needed.
2666 */
6ff57cf8 2667 cfg80211_rx_mlme_mgmt(sdata->dev, (u8 *)mgmt, len);
8d61ffa5 2668 return;
6b8ece3a
JM
2669 }
2670
66e67e41
JB
2671 /* move station state to auth */
2672 mutex_lock(&sdata->local->sta_mtx);
2673 sta = sta_info_get(sdata, bssid);
2674 if (!sta) {
2675 WARN_ONCE(1, "%s: STA %pM not found", sdata->name, bssid);
2676 goto out_err;
2677 }
2678 if (sta_info_move_state(sta, IEEE80211_STA_AUTH)) {
bdcbd8e0 2679 sdata_info(sdata, "failed moving %pM to auth\n", bssid);
66e67e41
JB
2680 goto out_err;
2681 }
2682 mutex_unlock(&sdata->local->sta_mtx);
2683
6ff57cf8 2684 cfg80211_rx_mlme_mgmt(sdata->dev, (u8 *)mgmt, len);
8d61ffa5 2685 return;
66e67e41
JB
2686 out_err:
2687 mutex_unlock(&sdata->local->sta_mtx);
2688 /* ignore frame -- wait for timeout */
66e67e41
JB
2689}
2690
dfa1ad29
CO
2691#define case_WLAN(type) \
2692 case WLAN_REASON_##type: return #type
2693
2694static const char *ieee80211_get_reason_code_string(u16 reason_code)
2695{
2696 switch (reason_code) {
2697 case_WLAN(UNSPECIFIED);
2698 case_WLAN(PREV_AUTH_NOT_VALID);
2699 case_WLAN(DEAUTH_LEAVING);
2700 case_WLAN(DISASSOC_DUE_TO_INACTIVITY);
2701 case_WLAN(DISASSOC_AP_BUSY);
2702 case_WLAN(CLASS2_FRAME_FROM_NONAUTH_STA);
2703 case_WLAN(CLASS3_FRAME_FROM_NONASSOC_STA);
2704 case_WLAN(DISASSOC_STA_HAS_LEFT);
2705 case_WLAN(STA_REQ_ASSOC_WITHOUT_AUTH);
2706 case_WLAN(DISASSOC_BAD_POWER);
2707 case_WLAN(DISASSOC_BAD_SUPP_CHAN);
2708 case_WLAN(INVALID_IE);
2709 case_WLAN(MIC_FAILURE);
2710 case_WLAN(4WAY_HANDSHAKE_TIMEOUT);
2711 case_WLAN(GROUP_KEY_HANDSHAKE_TIMEOUT);
2712 case_WLAN(IE_DIFFERENT);
2713 case_WLAN(INVALID_GROUP_CIPHER);
2714 case_WLAN(INVALID_PAIRWISE_CIPHER);
2715 case_WLAN(INVALID_AKMP);
2716 case_WLAN(UNSUPP_RSN_VERSION);
2717 case_WLAN(INVALID_RSN_IE_CAP);
2718 case_WLAN(IEEE8021X_FAILED);
2719 case_WLAN(CIPHER_SUITE_REJECTED);
2720 case_WLAN(DISASSOC_UNSPECIFIED_QOS);
2721 case_WLAN(DISASSOC_QAP_NO_BANDWIDTH);
2722 case_WLAN(DISASSOC_LOW_ACK);
2723 case_WLAN(DISASSOC_QAP_EXCEED_TXOP);
2724 case_WLAN(QSTA_LEAVE_QBSS);
2725 case_WLAN(QSTA_NOT_USE);
2726 case_WLAN(QSTA_REQUIRE_SETUP);
2727 case_WLAN(QSTA_TIMEOUT);
2728 case_WLAN(QSTA_CIPHER_NOT_SUPP);
2729 case_WLAN(MESH_PEER_CANCELED);
2730 case_WLAN(MESH_MAX_PEERS);
2731 case_WLAN(MESH_CONFIG);
2732 case_WLAN(MESH_CLOSE);
2733 case_WLAN(MESH_MAX_RETRIES);
2734 case_WLAN(MESH_CONFIRM_TIMEOUT);
2735 case_WLAN(MESH_INVALID_GTK);
2736 case_WLAN(MESH_INCONSISTENT_PARAM);
2737 case_WLAN(MESH_INVALID_SECURITY);
2738 case_WLAN(MESH_PATH_ERROR);
2739 case_WLAN(MESH_PATH_NOFORWARD);
2740 case_WLAN(MESH_PATH_DEST_UNREACHABLE);
2741 case_WLAN(MAC_EXISTS_IN_MBSS);
2742 case_WLAN(MESH_CHAN_REGULATORY);
2743 case_WLAN(MESH_CHAN);
2744 default: return "<unknown>";
2745 }
2746}
66e67e41 2747
8d61ffa5
JB
2748static void ieee80211_rx_mgmt_deauth(struct ieee80211_sub_if_data *sdata,
2749 struct ieee80211_mgmt *mgmt, size_t len)
f0706e82 2750{
46900298 2751 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
c9c99f89 2752 u16 reason_code = le16_to_cpu(mgmt->u.deauth.reason_code);
f0706e82 2753
8d61ffa5 2754 sdata_assert_lock(sdata);
66e67e41 2755
f4ea83dd 2756 if (len < 24 + 2)
8d61ffa5 2757 return;
f0706e82 2758
c9c99f89
JB
2759 if (ifmgd->associated &&
2760 ether_addr_equal(mgmt->bssid, ifmgd->associated->bssid)) {
2761 const u8 *bssid = ifmgd->associated->bssid;
77fdaa12 2762
c9c99f89
JB
2763 sdata_info(sdata, "deauthenticated from %pM (Reason: %u=%s)\n",
2764 bssid, reason_code,
2765 ieee80211_get_reason_code_string(reason_code));
f0706e82 2766
c9c99f89 2767 ieee80211_set_disassoc(sdata, 0, 0, false, NULL);
f0706e82 2768
c9c99f89
JB
2769 ieee80211_report_disconnect(sdata, (u8 *)mgmt, len, false,
2770 reason_code);
2771 return;
2772 }
77fdaa12 2773
c9c99f89
JB
2774 if (ifmgd->assoc_data &&
2775 ether_addr_equal(mgmt->bssid, ifmgd->assoc_data->bss->bssid)) {
2776 const u8 *bssid = ifmgd->assoc_data->bss->bssid;
37ad3888 2777
c9c99f89
JB
2778 sdata_info(sdata,
2779 "deauthenticated from %pM while associating (Reason: %u=%s)\n",
2780 bssid, reason_code,
2781 ieee80211_get_reason_code_string(reason_code));
2782
2783 ieee80211_destroy_assoc_data(sdata, false);
2784
2785 cfg80211_rx_mlme_mgmt(sdata->dev, (u8 *)mgmt, len);
2786 return;
2787 }
f0706e82
JB
2788}
2789
2790
8d61ffa5
JB
2791static void ieee80211_rx_mgmt_disassoc(struct ieee80211_sub_if_data *sdata,
2792 struct ieee80211_mgmt *mgmt, size_t len)
f0706e82 2793{
46900298 2794 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
f0706e82
JB
2795 u16 reason_code;
2796
8d61ffa5 2797 sdata_assert_lock(sdata);
77fdaa12 2798
66e67e41 2799 if (len < 24 + 2)
8d61ffa5 2800 return;
77fdaa12 2801
66e67e41 2802 if (!ifmgd->associated ||
b203ca39 2803 !ether_addr_equal(mgmt->bssid, ifmgd->associated->bssid))
8d61ffa5 2804 return;
f0706e82
JB
2805
2806 reason_code = le16_to_cpu(mgmt->u.disassoc.reason_code);
2807
bdcbd8e0
JB
2808 sdata_info(sdata, "disassociated from %pM (Reason: %u)\n",
2809 mgmt->sa, reason_code);
f0706e82 2810
37ad3888
JB
2811 ieee80211_set_disassoc(sdata, 0, 0, false, NULL);
2812
a90faa9d 2813 ieee80211_report_disconnect(sdata, (u8 *)mgmt, len, false, reason_code);
f0706e82
JB
2814}
2815
c74d084f
CL
2816static void ieee80211_get_rates(struct ieee80211_supported_band *sband,
2817 u8 *supp_rates, unsigned int supp_rates_len,
2818 u32 *rates, u32 *basic_rates,
2819 bool *have_higher_than_11mbit,
2103dec1
SW
2820 int *min_rate, int *min_rate_index,
2821 int shift, u32 rate_flags)
c74d084f
CL
2822{
2823 int i, j;
2824
2825 for (i = 0; i < supp_rates_len; i++) {
2103dec1 2826 int rate = supp_rates[i] & 0x7f;
c74d084f
CL
2827 bool is_basic = !!(supp_rates[i] & 0x80);
2828
2103dec1 2829 if ((rate * 5 * (1 << shift)) > 110)
c74d084f
CL
2830 *have_higher_than_11mbit = true;
2831
2832 /*
2833 * BSS_MEMBERSHIP_SELECTOR_HT_PHY is defined in 802.11n-2009
2834 * 7.3.2.2 as a magic value instead of a rate. Hence, skip it.
2835 *
2836 * Note: Even through the membership selector and the basic
2837 * rate flag share the same bit, they are not exactly
2838 * the same.
2839 */
2840 if (!!(supp_rates[i] & 0x80) &&
2841 (supp_rates[i] & 0x7f) == BSS_MEMBERSHIP_SELECTOR_HT_PHY)
2842 continue;
2843
2844 for (j = 0; j < sband->n_bitrates; j++) {
2103dec1
SW
2845 struct ieee80211_rate *br;
2846 int brate;
2847
2848 br = &sband->bitrates[j];
2849 if ((rate_flags & br->flags) != rate_flags)
2850 continue;
2851
2852 brate = DIV_ROUND_UP(br->bitrate, (1 << shift) * 5);
2853 if (brate == rate) {
c74d084f
CL
2854 *rates |= BIT(j);
2855 if (is_basic)
2856 *basic_rates |= BIT(j);
2103dec1
SW
2857 if ((rate * 5) < *min_rate) {
2858 *min_rate = rate * 5;
c74d084f
CL
2859 *min_rate_index = j;
2860 }
2861 break;
2862 }
2863 }
2864 }
2865}
f0706e82 2866
66e67e41
JB
2867static bool ieee80211_assoc_success(struct ieee80211_sub_if_data *sdata,
2868 struct cfg80211_bss *cbss,
af6b6374 2869 struct ieee80211_mgmt *mgmt, size_t len)
f0706e82 2870{
46900298 2871 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
471b3efd 2872 struct ieee80211_local *local = sdata->local;
8318d78a 2873 struct ieee80211_supported_band *sband;
f0706e82 2874 struct sta_info *sta;
af6b6374 2875 u8 *pos;
af6b6374 2876 u16 capab_info, aid;
f0706e82 2877 struct ieee802_11_elems elems;
bda3933a 2878 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
35d865af
JB
2879 const struct cfg80211_bss_ies *bss_ies = NULL;
2880 struct ieee80211_mgd_assoc_data *assoc_data = ifmgd->assoc_data;
ae5eb026 2881 u32 changed = 0;
c74d084f 2882 int err;
35d865af 2883 bool ret;
f0706e82 2884
af6b6374 2885 /* AssocResp and ReassocResp have identical structure */
f0706e82 2886
f0706e82 2887 aid = le16_to_cpu(mgmt->u.assoc_resp.aid);
af6b6374 2888 capab_info = le16_to_cpu(mgmt->u.assoc_resp.capab_info);
f0706e82 2889
1dd84aa2 2890 if ((aid & (BIT(15) | BIT(14))) != (BIT(15) | BIT(14)))
bdcbd8e0
JB
2891 sdata_info(sdata, "invalid AID value 0x%x; bits 15:14 not set\n",
2892 aid);
1dd84aa2
JB
2893 aid &= ~(BIT(15) | BIT(14));
2894
05cb9108
JB
2895 ifmgd->broken_ap = false;
2896
2897 if (aid == 0 || aid > IEEE80211_MAX_AID) {
bdcbd8e0
JB
2898 sdata_info(sdata, "invalid AID value %d (out of range), turn off PS\n",
2899 aid);
05cb9108
JB
2900 aid = 0;
2901 ifmgd->broken_ap = true;
2902 }
2903
af6b6374 2904 pos = mgmt->u.assoc_resp.variable;
b2e506bf 2905 ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), false, &elems);
af6b6374 2906
f0706e82 2907 if (!elems.supp_rates) {
bdcbd8e0 2908 sdata_info(sdata, "no SuppRates element in AssocResp\n");
af6b6374 2909 return false;
f0706e82
JB
2910 }
2911
46900298 2912 ifmgd->aid = aid;
9041c1fa
AN
2913 ifmgd->tdls_chan_switch_prohibited =
2914 elems.ext_capab && elems.ext_capab_len >= 5 &&
2915 (elems.ext_capab[4] & WLAN_EXT_CAPA5_TDLS_CH_SW_PROHIBITED);
f0706e82 2916
35d865af
JB
2917 /*
2918 * Some APs are erroneously not including some information in their
2919 * (re)association response frames. Try to recover by using the data
2920 * from the beacon or probe response. This seems to afflict mobile
2921 * 2G/3G/4G wifi routers, reported models include the "Onda PN51T",
2922 * "Vodafone PocketWiFi 2", "ZTE MF60" and a similar T-Mobile device.
2923 */
2924 if ((assoc_data->wmm && !elems.wmm_param) ||
2925 (!(ifmgd->flags & IEEE80211_STA_DISABLE_HT) &&
2926 (!elems.ht_cap_elem || !elems.ht_operation)) ||
2927 (!(ifmgd->flags & IEEE80211_STA_DISABLE_VHT) &&
2928 (!elems.vht_cap_elem || !elems.vht_operation))) {
2929 const struct cfg80211_bss_ies *ies;
2930 struct ieee802_11_elems bss_elems;
2931
2932 rcu_read_lock();
2933 ies = rcu_dereference(cbss->ies);
2934 if (ies)
2935 bss_ies = kmemdup(ies, sizeof(*ies) + ies->len,
2936 GFP_ATOMIC);
2937 rcu_read_unlock();
2938 if (!bss_ies)
2939 return false;
2940
2941 ieee802_11_parse_elems(bss_ies->data, bss_ies->len,
2942 false, &bss_elems);
2943 if (assoc_data->wmm &&
2944 !elems.wmm_param && bss_elems.wmm_param) {
2945 elems.wmm_param = bss_elems.wmm_param;
2946 sdata_info(sdata,
2947 "AP bug: WMM param missing from AssocResp\n");
2948 }
2949
2950 /*
2951 * Also check if we requested HT/VHT, otherwise the AP doesn't
2952 * have to include the IEs in the (re)association response.
2953 */
2954 if (!elems.ht_cap_elem && bss_elems.ht_cap_elem &&
2955 !(ifmgd->flags & IEEE80211_STA_DISABLE_HT)) {
2956 elems.ht_cap_elem = bss_elems.ht_cap_elem;
2957 sdata_info(sdata,
2958 "AP bug: HT capability missing from AssocResp\n");
2959 }
2960 if (!elems.ht_operation && bss_elems.ht_operation &&
2961 !(ifmgd->flags & IEEE80211_STA_DISABLE_HT)) {
2962 elems.ht_operation = bss_elems.ht_operation;
2963 sdata_info(sdata,
2964 "AP bug: HT operation missing from AssocResp\n");
2965 }
2966 if (!elems.vht_cap_elem && bss_elems.vht_cap_elem &&
2967 !(ifmgd->flags & IEEE80211_STA_DISABLE_VHT)) {
2968 elems.vht_cap_elem = bss_elems.vht_cap_elem;
2969 sdata_info(sdata,
2970 "AP bug: VHT capa missing from AssocResp\n");
2971 }
2972 if (!elems.vht_operation && bss_elems.vht_operation &&
2973 !(ifmgd->flags & IEEE80211_STA_DISABLE_VHT)) {
2974 elems.vht_operation = bss_elems.vht_operation;
2975 sdata_info(sdata,
2976 "AP bug: VHT operation missing from AssocResp\n");
2977 }
2978 }
2979
30eb1dc2
JB
2980 /*
2981 * We previously checked these in the beacon/probe response, so
2982 * they should be present here. This is just a safety net.
2983 */
2984 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_HT) &&
2985 (!elems.wmm_param || !elems.ht_cap_elem || !elems.ht_operation)) {
2986 sdata_info(sdata,
35d865af
JB
2987 "HT AP is missing WMM params or HT capability/operation\n");
2988 ret = false;
2989 goto out;
30eb1dc2
JB
2990 }
2991
2992 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_VHT) &&
2993 (!elems.vht_cap_elem || !elems.vht_operation)) {
2994 sdata_info(sdata,
35d865af
JB
2995 "VHT AP is missing VHT capability/operation\n");
2996 ret = false;
2997 goto out;
30eb1dc2
JB
2998 }
2999
2a33bee2
GE
3000 mutex_lock(&sdata->local->sta_mtx);
3001 /*
3002 * station info was already allocated and inserted before
3003 * the association and should be available to us
3004 */
7852e361 3005 sta = sta_info_get(sdata, cbss->bssid);
2a33bee2
GE
3006 if (WARN_ON(!sta)) {
3007 mutex_unlock(&sdata->local->sta_mtx);
35d865af
JB
3008 ret = false;
3009 goto out;
77fdaa12 3010 }
05e5e883 3011
55de908a 3012 sband = local->hw.wiphy->bands[ieee80211_get_sdata_band(sdata)];
f709fc69 3013
30eb1dc2 3014 /* Set up internal HT/VHT capabilities */
a8243b72 3015 if (elems.ht_cap_elem && !(ifmgd->flags & IEEE80211_STA_DISABLE_HT))
ef96a842 3016 ieee80211_ht_cap_ie_to_sta_ht_cap(sdata, sband,
e1a0c6b3 3017 elems.ht_cap_elem, sta);
64f68e5d 3018
818255ea
MP
3019 if (elems.vht_cap_elem && !(ifmgd->flags & IEEE80211_STA_DISABLE_VHT))
3020 ieee80211_vht_cap_ie_to_sta_vht_cap(sdata, sband,
4a34215e 3021 elems.vht_cap_elem, sta);
818255ea 3022
30eb1dc2
JB
3023 /*
3024 * Some APs, e.g. Netgear WNDR3700, report invalid HT operation data
3025 * in their association response, so ignore that data for our own
3026 * configuration. If it changed since the last beacon, we'll get the
3027 * next beacon and update then.
3028 */
1128958d 3029
bee7f586
JB
3030 /*
3031 * If an operating mode notification IE is present, override the
3032 * NSS calculation (that would be done in rate_control_rate_init())
3033 * and use the # of streams from that element.
3034 */
3035 if (elems.opmode_notif &&
3036 !(*elems.opmode_notif & IEEE80211_OPMODE_NOTIF_RX_NSS_TYPE_BF)) {
3037 u8 nss;
3038
3039 nss = *elems.opmode_notif & IEEE80211_OPMODE_NOTIF_RX_NSS_MASK;
3040 nss >>= IEEE80211_OPMODE_NOTIF_RX_NSS_SHIFT;
3041 nss += 1;
3042 sta->sta.rx_nss = nss;
3043 }
3044
4b7679a5 3045 rate_control_rate_init(sta);
f0706e82 3046
93f0490e 3047 if (ifmgd->flags & IEEE80211_STA_MFP_ENABLED) {
c2c98fde 3048 set_sta_flag(sta, WLAN_STA_MFP);
93f0490e
T
3049 sta->sta.mfp = true;
3050 } else {
3051 sta->sta.mfp = false;
3052 }
5394af4d 3053
527871d7 3054 sta->sta.wme = elems.wmm_param && local->hw.queues >= IEEE80211_NUM_ACS;
ddf4ac53 3055
3e4d40fa 3056 err = sta_info_move_state(sta, IEEE80211_STA_ASSOC);
c8987876
JB
3057 if (!err && !(ifmgd->flags & IEEE80211_STA_CONTROL_PORT))
3058 err = sta_info_move_state(sta, IEEE80211_STA_AUTHORIZED);
3059 if (err) {
bdcbd8e0
JB
3060 sdata_info(sdata,
3061 "failed to move station %pM to desired state\n",
3062 sta->sta.addr);
c8987876
JB
3063 WARN_ON(__sta_info_destroy(sta));
3064 mutex_unlock(&sdata->local->sta_mtx);
35d865af
JB
3065 ret = false;
3066 goto out;
c8987876
JB
3067 }
3068
7852e361 3069 mutex_unlock(&sdata->local->sta_mtx);
ddf4ac53 3070
f2176d72
JO
3071 /*
3072 * Always handle WMM once after association regardless
3073 * of the first value the AP uses. Setting -1 here has
3074 * that effect because the AP values is an unsigned
3075 * 4-bit value.
3076 */
3077 ifmgd->wmm_last_param_set = -1;
3078
095d81ce 3079 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_WMM) && elems.wmm_param)
4ced3f74 3080 ieee80211_sta_wmm_params(local, sdata, elems.wmm_param,
60f8b39c 3081 elems.wmm_param_len);
aa837e1d 3082 else
3abead59
JB
3083 ieee80211_set_wmm_default(sdata, false);
3084 changed |= BSS_CHANGED_QOS;
f0706e82 3085
60f8b39c
JB
3086 /* set AID and assoc capability,
3087 * ieee80211_set_associated() will tell the driver */
3088 bss_conf->aid = aid;
3089 bss_conf->assoc_capability = capab_info;
0c1ad2ca 3090 ieee80211_set_associated(sdata, cbss, changed);
f0706e82 3091
d524215f
FF
3092 /*
3093 * If we're using 4-addr mode, let the AP know that we're
3094 * doing so, so that it can create the STA VLAN on its side
3095 */
3096 if (ifmgd->use_4addr)
3097 ieee80211_send_4addr_nullfunc(local, sdata);
3098
15b7b062 3099 /*
b291ba11
JB
3100 * Start timer to probe the connection to the AP now.
3101 * Also start the timer that will detect beacon loss.
15b7b062 3102 */
b291ba11 3103 ieee80211_sta_rx_notify(sdata, (struct ieee80211_hdr *)mgmt);
d3a910a8 3104 ieee80211_sta_reset_beacon_monitor(sdata);
15b7b062 3105
35d865af
JB
3106 ret = true;
3107 out:
3108 kfree(bss_ies);
3109 return ret;
f0706e82
JB
3110}
3111
8d61ffa5
JB
3112static void ieee80211_rx_mgmt_assoc_resp(struct ieee80211_sub_if_data *sdata,
3113 struct ieee80211_mgmt *mgmt,
3114 size_t len)
66e67e41
JB
3115{
3116 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3117 struct ieee80211_mgd_assoc_data *assoc_data = ifmgd->assoc_data;
3118 u16 capab_info, status_code, aid;
3119 struct ieee802_11_elems elems;
b0b6aa2c 3120 int ac, uapsd_queues = -1;
66e67e41
JB
3121 u8 *pos;
3122 bool reassoc;
8d61ffa5 3123 struct cfg80211_bss *bss;
d0d1a12f
EG
3124 struct ieee80211_event event = {
3125 .type = MLME_EVENT,
3126 .u.mlme.data = ASSOC_EVENT,
3127 };
66e67e41 3128
8d61ffa5 3129 sdata_assert_lock(sdata);
66e67e41
JB
3130
3131 if (!assoc_data)
8d61ffa5 3132 return;
b203ca39 3133 if (!ether_addr_equal(assoc_data->bss->bssid, mgmt->bssid))
8d61ffa5 3134 return;
66e67e41
JB
3135
3136 /*
3137 * AssocResp and ReassocResp have identical structure, so process both
3138 * of them in this function.
3139 */
3140
3141 if (len < 24 + 6)
8d61ffa5 3142 return;
66e67e41
JB
3143
3144 reassoc = ieee80211_is_reassoc_req(mgmt->frame_control);
3145 capab_info = le16_to_cpu(mgmt->u.assoc_resp.capab_info);
3146 status_code = le16_to_cpu(mgmt->u.assoc_resp.status_code);
3147 aid = le16_to_cpu(mgmt->u.assoc_resp.aid);
3148
bdcbd8e0
JB
3149 sdata_info(sdata,
3150 "RX %sssocResp from %pM (capab=0x%x status=%d aid=%d)\n",
3151 reassoc ? "Rea" : "A", mgmt->sa,
3152 capab_info, status_code, (u16)(aid & ~(BIT(15) | BIT(14))));
66e67e41
JB
3153
3154 pos = mgmt->u.assoc_resp.variable;
b2e506bf 3155 ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), false, &elems);
66e67e41
JB
3156
3157 if (status_code == WLAN_STATUS_ASSOC_REJECTED_TEMPORARILY &&
79ba1d89
JB
3158 elems.timeout_int &&
3159 elems.timeout_int->type == WLAN_TIMEOUT_ASSOC_COMEBACK) {
66e67e41 3160 u32 tu, ms;
79ba1d89 3161 tu = le32_to_cpu(elems.timeout_int->value);
66e67e41 3162 ms = tu * 1024 / 1000;
bdcbd8e0
JB
3163 sdata_info(sdata,
3164 "%pM rejected association temporarily; comeback duration %u TU (%u ms)\n",
3165 mgmt->sa, tu, ms);
66e67e41 3166 assoc_data->timeout = jiffies + msecs_to_jiffies(ms);
89afe614 3167 assoc_data->timeout_started = true;
66e67e41 3168 if (ms > IEEE80211_ASSOC_TIMEOUT)
8d61ffa5
JB
3169 run_again(sdata, assoc_data->timeout);
3170 return;
66e67e41
JB
3171 }
3172
8d61ffa5 3173 bss = assoc_data->bss;
66e67e41
JB
3174
3175 if (status_code != WLAN_STATUS_SUCCESS) {
bdcbd8e0
JB
3176 sdata_info(sdata, "%pM denied association (code=%d)\n",
3177 mgmt->sa, status_code);
66e67e41 3178 ieee80211_destroy_assoc_data(sdata, false);
d0d1a12f
EG
3179 event.u.mlme.status = MLME_DENIED;
3180 event.u.mlme.reason = status_code;
3181 drv_event_callback(sdata->local, sdata, &event);
66e67e41 3182 } else {
8d61ffa5 3183 if (!ieee80211_assoc_success(sdata, bss, mgmt, len)) {
66e67e41 3184 /* oops -- internal error -- send timeout for now */
10a9109f 3185 ieee80211_destroy_assoc_data(sdata, false);
959867fa 3186 cfg80211_assoc_timeout(sdata->dev, bss);
8d61ffa5 3187 return;
66e67e41 3188 }
d0d1a12f
EG
3189 event.u.mlme.status = MLME_SUCCESS;
3190 drv_event_callback(sdata->local, sdata, &event);
635d999f 3191 sdata_info(sdata, "associated\n");
79ebfb85
JB
3192
3193 /*
3194 * destroy assoc_data afterwards, as otherwise an idle
3195 * recalc after assoc_data is NULL but before associated
3196 * is set can cause the interface to go idle
3197 */
3198 ieee80211_destroy_assoc_data(sdata, true);
b0b6aa2c
EP
3199
3200 /* get uapsd queues configuration */
3201 uapsd_queues = 0;
3202 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++)
3203 if (sdata->tx_conf[ac].uapsd)
3204 uapsd_queues |= BIT(ac);
66e67e41
JB
3205 }
3206
b0b6aa2c 3207 cfg80211_rx_assoc_resp(sdata->dev, bss, (u8 *)mgmt, len, uapsd_queues);
66e67e41 3208}
8e3c1b77 3209
98c8fccf 3210static void ieee80211_rx_bss_info(struct ieee80211_sub_if_data *sdata,
8e3c1b77 3211 struct ieee80211_mgmt *mgmt, size_t len,
98c8fccf 3212 struct ieee80211_rx_status *rx_status,
d45c4172 3213 struct ieee802_11_elems *elems)
98c8fccf
JB
3214{
3215 struct ieee80211_local *local = sdata->local;
c2b13452 3216 struct ieee80211_bss *bss;
98c8fccf 3217 struct ieee80211_channel *channel;
56007a02 3218
8d61ffa5 3219 sdata_assert_lock(sdata);
b4f286a1 3220
3afc2167
EG
3221 channel = ieee80211_get_channel(local->hw.wiphy, rx_status->freq);
3222 if (!channel)
98c8fccf
JB
3223 return;
3224
98c8fccf 3225 bss = ieee80211_bss_info_update(local, rx_status, mgmt, len, elems,
d45c4172 3226 channel);
817cee76 3227 if (bss) {
817cee76 3228 sdata->vif.bss_conf.beacon_rate = bss->beacon_rate;
d2722f8b 3229 ieee80211_rx_bss_put(local, bss);
817cee76 3230 }
f0706e82
JB
3231}
3232
3233
f698d856 3234static void ieee80211_rx_mgmt_probe_resp(struct ieee80211_sub_if_data *sdata,
af6b6374 3235 struct sk_buff *skb)
f0706e82 3236{
af6b6374 3237 struct ieee80211_mgmt *mgmt = (void *)skb->data;
15b7b062 3238 struct ieee80211_if_managed *ifmgd;
af6b6374
JB
3239 struct ieee80211_rx_status *rx_status = (void *) skb->cb;
3240 size_t baselen, len = skb->len;
ae6a44e3
EK
3241 struct ieee802_11_elems elems;
3242
15b7b062
KV
3243 ifmgd = &sdata->u.mgd;
3244
8d61ffa5 3245 sdata_assert_lock(sdata);
77fdaa12 3246
b203ca39 3247 if (!ether_addr_equal(mgmt->da, sdata->vif.addr))
8e7cdbb6
TW
3248 return; /* ignore ProbeResp to foreign address */
3249
ae6a44e3
EK
3250 baselen = (u8 *) mgmt->u.probe_resp.variable - (u8 *) mgmt;
3251 if (baselen > len)
3252 return;
3253
3254 ieee802_11_parse_elems(mgmt->u.probe_resp.variable, len - baselen,
b2e506bf 3255 false, &elems);
ae6a44e3 3256
d45c4172 3257 ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems);
9859b81e 3258
77fdaa12 3259 if (ifmgd->associated &&
b203ca39 3260 ether_addr_equal(mgmt->bssid, ifmgd->associated->bssid))
4e5ff376 3261 ieee80211_reset_ap_probe(sdata);
f0706e82
JB
3262}
3263
d91f36db
JB
3264/*
3265 * This is the canonical list of information elements we care about,
3266 * the filter code also gives us all changes to the Microsoft OUI
c8d65917
SG
3267 * (00:50:F2) vendor IE which is used for WMM which we need to track,
3268 * as well as the DTPC IE (part of the Cisco OUI) used for signaling
3269 * changes to requested client power.
d91f36db
JB
3270 *
3271 * We implement beacon filtering in software since that means we can
3272 * avoid processing the frame here and in cfg80211, and userspace
3273 * will not be able to tell whether the hardware supports it or not.
3274 *
3275 * XXX: This list needs to be dynamic -- userspace needs to be able to
3276 * add items it requires. It also needs to be able to tell us to
3277 * look out for other vendor IEs.
3278 */
3279static const u64 care_about_ies =
1d4df3a5
JB
3280 (1ULL << WLAN_EID_COUNTRY) |
3281 (1ULL << WLAN_EID_ERP_INFO) |
3282 (1ULL << WLAN_EID_CHANNEL_SWITCH) |
3283 (1ULL << WLAN_EID_PWR_CONSTRAINT) |
3284 (1ULL << WLAN_EID_HT_CAPABILITY) |
70a3fd6c
JB
3285 (1ULL << WLAN_EID_HT_OPERATION) |
3286 (1ULL << WLAN_EID_EXT_CHANSWITCH_ANN);
d91f36db 3287
8d61ffa5
JB
3288static void ieee80211_rx_mgmt_beacon(struct ieee80211_sub_if_data *sdata,
3289 struct ieee80211_mgmt *mgmt, size_t len,
3290 struct ieee80211_rx_status *rx_status)
f0706e82 3291{
d91f36db 3292 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
17e4ec14 3293 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
f0706e82
JB
3294 size_t baselen;
3295 struct ieee802_11_elems elems;
f698d856 3296 struct ieee80211_local *local = sdata->local;
55de908a
JB
3297 struct ieee80211_chanctx_conf *chanctx_conf;
3298 struct ieee80211_channel *chan;
bee7f586 3299 struct sta_info *sta;
471b3efd 3300 u32 changed = 0;
f87ad637 3301 bool erp_valid;
7a5158ef 3302 u8 erp_value = 0;
d91f36db 3303 u32 ncrc;
77fdaa12 3304 u8 *bssid;
8d61ffa5 3305 u8 deauth_buf[IEEE80211_DEAUTH_FRAME_LEN];
77fdaa12 3306
8d61ffa5 3307 sdata_assert_lock(sdata);
f0706e82 3308
ae6a44e3
EK
3309 /* Process beacon from the current BSS */
3310 baselen = (u8 *) mgmt->u.beacon.variable - (u8 *) mgmt;
3311 if (baselen > len)
8d61ffa5 3312 return;
ae6a44e3 3313
55de908a
JB
3314 rcu_read_lock();
3315 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
3316 if (!chanctx_conf) {
3317 rcu_read_unlock();
8d61ffa5 3318 return;
55de908a
JB
3319 }
3320
4bf88530 3321 if (rx_status->freq != chanctx_conf->def.chan->center_freq) {
55de908a 3322 rcu_read_unlock();
8d61ffa5 3323 return;
55de908a 3324 }
4bf88530 3325 chan = chanctx_conf->def.chan;
55de908a 3326 rcu_read_unlock();
f0706e82 3327
c65dd147 3328 if (ifmgd->assoc_data && ifmgd->assoc_data->need_beacon &&
b203ca39 3329 ether_addr_equal(mgmt->bssid, ifmgd->assoc_data->bss->bssid)) {
66e67e41 3330 ieee802_11_parse_elems(mgmt->u.beacon.variable,
b2e506bf 3331 len - baselen, false, &elems);
77fdaa12 3332
d45c4172 3333 ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems);
482a9c74
AB
3334 if (elems.tim && !elems.parse_error) {
3335 const struct ieee80211_tim_ie *tim_ie = elems.tim;
3336 ifmgd->dtim_period = tim_ie->dtim_period;
3337 }
989c6505 3338 ifmgd->have_beacon = true;
c65dd147 3339 ifmgd->assoc_data->need_beacon = false;
30686bf7 3340 if (ieee80211_hw_check(&local->hw, TIMING_BEACON_ONLY)) {
ef429dad
JB
3341 sdata->vif.bss_conf.sync_tsf =
3342 le64_to_cpu(mgmt->u.beacon.timestamp);
3343 sdata->vif.bss_conf.sync_device_ts =
3344 rx_status->device_timestamp;
3345 if (elems.tim)
3346 sdata->vif.bss_conf.sync_dtim_count =
3347 elems.tim->dtim_count;
3348 else
3349 sdata->vif.bss_conf.sync_dtim_count = 0;
3350 }
66e67e41
JB
3351 /* continue assoc process */
3352 ifmgd->assoc_data->timeout = jiffies;
89afe614 3353 ifmgd->assoc_data->timeout_started = true;
8d61ffa5
JB
3354 run_again(sdata, ifmgd->assoc_data->timeout);
3355 return;
66e67e41 3356 }
77fdaa12 3357
66e67e41 3358 if (!ifmgd->associated ||
b203ca39 3359 !ether_addr_equal(mgmt->bssid, ifmgd->associated->bssid))
8d61ffa5 3360 return;
66e67e41 3361 bssid = ifmgd->associated->bssid;
f0706e82 3362
17e4ec14 3363 /* Track average RSSI from the Beacon frames of the current AP */
17e4ec14
JM
3364 if (ifmgd->flags & IEEE80211_STA_RESET_SIGNAL_AVE) {
3365 ifmgd->flags &= ~IEEE80211_STA_RESET_SIGNAL_AVE;
338c17ae 3366 ewma_beacon_signal_init(&ifmgd->ave_beacon_signal);
17e4ec14 3367 ifmgd->last_cqm_event_signal = 0;
391a200a 3368 ifmgd->count_beacon_signal = 1;
615f7b9b 3369 ifmgd->last_ave_beacon_signal = 0;
17e4ec14 3370 } else {
391a200a 3371 ifmgd->count_beacon_signal++;
17e4ec14 3372 }
615f7b9b 3373
338c17ae
JB
3374 ewma_beacon_signal_add(&ifmgd->ave_beacon_signal, -rx_status->signal);
3375
615f7b9b
MV
3376 if (ifmgd->rssi_min_thold != ifmgd->rssi_max_thold &&
3377 ifmgd->count_beacon_signal >= IEEE80211_SIGNAL_AVE_MIN_COUNT) {
338c17ae 3378 int sig = -ewma_beacon_signal_read(&ifmgd->ave_beacon_signal);
615f7b9b 3379 int last_sig = ifmgd->last_ave_beacon_signal;
a8182929
EG
3380 struct ieee80211_event event = {
3381 .type = RSSI_EVENT,
3382 };
615f7b9b
MV
3383
3384 /*
3385 * if signal crosses either of the boundaries, invoke callback
3386 * with appropriate parameters
3387 */
3388 if (sig > ifmgd->rssi_max_thold &&
3389 (last_sig <= ifmgd->rssi_min_thold || last_sig == 0)) {
3390 ifmgd->last_ave_beacon_signal = sig;
a8182929
EG
3391 event.u.rssi.data = RSSI_EVENT_HIGH;
3392 drv_event_callback(local, sdata, &event);
615f7b9b
MV
3393 } else if (sig < ifmgd->rssi_min_thold &&
3394 (last_sig >= ifmgd->rssi_max_thold ||
3395 last_sig == 0)) {
3396 ifmgd->last_ave_beacon_signal = sig;
a8182929
EG
3397 event.u.rssi.data = RSSI_EVENT_LOW;
3398 drv_event_callback(local, sdata, &event);
615f7b9b
MV
3399 }
3400 }
3401
17e4ec14 3402 if (bss_conf->cqm_rssi_thold &&
391a200a 3403 ifmgd->count_beacon_signal >= IEEE80211_SIGNAL_AVE_MIN_COUNT &&
ea086359 3404 !(sdata->vif.driver_flags & IEEE80211_VIF_SUPPORTS_CQM_RSSI)) {
338c17ae 3405 int sig = -ewma_beacon_signal_read(&ifmgd->ave_beacon_signal);
17e4ec14
JM
3406 int last_event = ifmgd->last_cqm_event_signal;
3407 int thold = bss_conf->cqm_rssi_thold;
3408 int hyst = bss_conf->cqm_rssi_hyst;
338c17ae 3409
17e4ec14
JM
3410 if (sig < thold &&
3411 (last_event == 0 || sig < last_event - hyst)) {
3412 ifmgd->last_cqm_event_signal = sig;
3413 ieee80211_cqm_rssi_notify(
3414 &sdata->vif,
3415 NL80211_CQM_RSSI_THRESHOLD_EVENT_LOW,
3416 GFP_KERNEL);
3417 } else if (sig > thold &&
3418 (last_event == 0 || sig > last_event + hyst)) {
3419 ifmgd->last_cqm_event_signal = sig;
3420 ieee80211_cqm_rssi_notify(
3421 &sdata->vif,
3422 NL80211_CQM_RSSI_THRESHOLD_EVENT_HIGH,
3423 GFP_KERNEL);
3424 }
3425 }
3426
392b9ffb 3427 if (ifmgd->flags & IEEE80211_STA_CONNECTION_POLL) {
bdcbd8e0 3428 mlme_dbg_ratelimited(sdata,
112c31f0 3429 "cancelling AP probe due to a received beacon\n");
392b9ffb 3430 ieee80211_reset_ap_probe(sdata);
92778180
JM
3431 }
3432
b291ba11
JB
3433 /*
3434 * Push the beacon loss detection into the future since
3435 * we are processing a beacon from the AP just now.
3436 */
d3a910a8 3437 ieee80211_sta_reset_beacon_monitor(sdata);
b291ba11 3438
d91f36db
JB
3439 ncrc = crc32_be(0, (void *)&mgmt->u.beacon.beacon_int, 4);
3440 ncrc = ieee802_11_parse_elems_crc(mgmt->u.beacon.variable,
b2e506bf 3441 len - baselen, false, &elems,
d91f36db
JB
3442 care_about_ies, ncrc);
3443
90d13e8f
JB
3444 if (ieee80211_hw_check(&local->hw, PS_NULLFUNC_STACK) &&
3445 ieee80211_check_tim(elems.tim, elems.tim_len, ifmgd->aid)) {
3446 if (local->hw.conf.dynamic_ps_timeout > 0) {
3447 if (local->hw.conf.flags & IEEE80211_CONF_PS) {
3448 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
3449 ieee80211_hw_config(local,
3450 IEEE80211_CONF_CHANGE_PS);
572e0012 3451 }
076cdcb1 3452 ieee80211_send_nullfunc(local, sdata, false);
90d13e8f
JB
3453 } else if (!local->pspolling && sdata->u.mgd.powersave) {
3454 local->pspolling = true;
3455
3456 /*
3457 * Here is assumed that the driver will be
3458 * able to send ps-poll frame and receive a
3459 * response even though power save mode is
3460 * enabled, but some drivers might require
3461 * to disable power save here. This needs
3462 * to be investigated.
3463 */
3464 ieee80211_send_pspoll(local, sdata);
a97b77b9
VN
3465 }
3466 }
7a5158ef 3467
488dd7b5 3468 if (sdata->vif.p2p) {
67baf663 3469 struct ieee80211_p2p_noa_attr noa = {};
488dd7b5
JB
3470 int ret;
3471
3472 ret = cfg80211_get_p2p_attr(mgmt->u.beacon.variable,
3473 len - baselen,
3474 IEEE80211_P2P_ATTR_ABSENCE_NOTICE,
934457ee 3475 (u8 *) &noa, sizeof(noa));
67baf663
JD
3476 if (ret >= 2) {
3477 if (sdata->u.mgd.p2p_noa_index != noa.index) {
3478 /* valid noa_attr and index changed */
3479 sdata->u.mgd.p2p_noa_index = noa.index;
3480 memcpy(&bss_conf->p2p_noa_attr, &noa, sizeof(noa));
3481 changed |= BSS_CHANGED_P2P_PS;
3482 /*
3483 * make sure we update all information, the CRC
3484 * mechanism doesn't look at P2P attributes.
3485 */
3486 ifmgd->beacon_crc_valid = false;
3487 }
3488 } else if (sdata->u.mgd.p2p_noa_index != -1) {
3489 /* noa_attr not found and we had valid noa_attr before */
3490 sdata->u.mgd.p2p_noa_index = -1;
3491 memset(&bss_conf->p2p_noa_attr, 0, sizeof(bss_conf->p2p_noa_attr));
488dd7b5 3492 changed |= BSS_CHANGED_P2P_PS;
488dd7b5
JB
3493 ifmgd->beacon_crc_valid = false;
3494 }
3495 }
3496
0c21e632
LC
3497 if (ifmgd->csa_waiting_bcn)
3498 ieee80211_chswitch_post_beacon(sdata);
3499
2ecc3905
AB
3500 /*
3501 * Update beacon timing and dtim count on every beacon appearance. This
3502 * will allow the driver to use the most updated values. Do it before
3503 * comparing this one with last received beacon.
3504 * IMPORTANT: These parameters would possibly be out of sync by the time
3505 * the driver will use them. The synchronized view is currently
3506 * guaranteed only in certain callbacks.
3507 */
30686bf7 3508 if (ieee80211_hw_check(&local->hw, TIMING_BEACON_ONLY)) {
2ecc3905
AB
3509 sdata->vif.bss_conf.sync_tsf =
3510 le64_to_cpu(mgmt->u.beacon.timestamp);
3511 sdata->vif.bss_conf.sync_device_ts =
3512 rx_status->device_timestamp;
3513 if (elems.tim)
3514 sdata->vif.bss_conf.sync_dtim_count =
3515 elems.tim->dtim_count;
3516 else
3517 sdata->vif.bss_conf.sync_dtim_count = 0;
3518 }
3519
d8ec4433 3520 if (ncrc == ifmgd->beacon_crc && ifmgd->beacon_crc_valid)
8d61ffa5 3521 return;
30196673 3522 ifmgd->beacon_crc = ncrc;
d8ec4433 3523 ifmgd->beacon_crc_valid = true;
30196673 3524
d45c4172 3525 ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems);
7d25745d 3526
d70b7616 3527 ieee80211_sta_process_chanswitch(sdata, rx_status->mactime,
2ba45384 3528 rx_status->device_timestamp,
d70b7616
JB
3529 &elems, true);
3530
095d81ce
JB
3531 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_WMM) &&
3532 ieee80211_sta_wmm_params(local, sdata, elems.wmm_param,
7d25745d
JB
3533 elems.wmm_param_len))
3534 changed |= BSS_CHANGED_QOS;
3535
c65dd147
EG
3536 /*
3537 * If we haven't had a beacon before, tell the driver about the
ef429dad 3538 * DTIM period (and beacon timing if desired) now.
c65dd147 3539 */
989c6505 3540 if (!ifmgd->have_beacon) {
c65dd147
EG
3541 /* a few bogus AP send dtim_period = 0 or no TIM IE */
3542 if (elems.tim)
3543 bss_conf->dtim_period = elems.tim->dtim_period ?: 1;
3544 else
3545 bss_conf->dtim_period = 1;
ef429dad 3546
989c6505
AB
3547 changed |= BSS_CHANGED_BEACON_INFO;
3548 ifmgd->have_beacon = true;
482a9c74
AB
3549
3550 mutex_lock(&local->iflist_mtx);
3551 ieee80211_recalc_ps(local, -1);
3552 mutex_unlock(&local->iflist_mtx);
3553
ce857888 3554 ieee80211_recalc_ps_vif(sdata);
c65dd147
EG
3555 }
3556
1946bed9 3557 if (elems.erp_info) {
7a5158ef
JB
3558 erp_valid = true;
3559 erp_value = elems.erp_info[0];
3560 } else {
3561 erp_valid = false;
50c4afb9 3562 }
7a5158ef
JB
3563 changed |= ieee80211_handle_bss_capability(sdata,
3564 le16_to_cpu(mgmt->u.beacon.capab_info),
3565 erp_valid, erp_value);
f0706e82 3566
1128958d 3567 mutex_lock(&local->sta_mtx);
bee7f586
JB
3568 sta = sta_info_get(sdata, bssid);
3569
53b954ee
EP
3570 if (ieee80211_config_bw(sdata, sta,
3571 elems.ht_cap_elem, elems.ht_operation,
30eb1dc2
JB
3572 elems.vht_operation, bssid, &changed)) {
3573 mutex_unlock(&local->sta_mtx);
3574 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH,
3575 WLAN_REASON_DEAUTH_LEAVING,
3576 true, deauth_buf);
a90faa9d
EG
3577 ieee80211_report_disconnect(sdata, deauth_buf,
3578 sizeof(deauth_buf), true,
3579 WLAN_REASON_DEAUTH_LEAVING);
8d61ffa5 3580 return;
30eb1dc2 3581 }
bee7f586
JB
3582
3583 if (sta && elems.opmode_notif)
3584 ieee80211_vht_handle_opmode(sdata, sta, *elems.opmode_notif,
3585 rx_status->band, true);
1128958d 3586 mutex_unlock(&local->sta_mtx);
d3c990fb 3587
24a4e400
SG
3588 changed |= ieee80211_handle_pwr_constr(sdata, chan, mgmt,
3589 elems.country_elem,
3590 elems.country_elem_len,
c8d65917
SG
3591 elems.pwr_constr_elem,
3592 elems.cisco_dtpc_elem);
3f2355cb 3593
471b3efd 3594 ieee80211_bss_info_change_notify(sdata, changed);
f0706e82
JB
3595}
3596
1fa57d01
JB
3597void ieee80211_sta_rx_queued_mgmt(struct ieee80211_sub_if_data *sdata,
3598 struct sk_buff *skb)
f0706e82
JB
3599{
3600 struct ieee80211_rx_status *rx_status;
f0706e82
JB
3601 struct ieee80211_mgmt *mgmt;
3602 u16 fc;
1b3a2e49
JB
3603 struct ieee802_11_elems elems;
3604 int ies_len;
f0706e82 3605
f0706e82
JB
3606 rx_status = (struct ieee80211_rx_status *) skb->cb;
3607 mgmt = (struct ieee80211_mgmt *) skb->data;
3608 fc = le16_to_cpu(mgmt->frame_control);
3609
8d61ffa5 3610 sdata_lock(sdata);
77fdaa12 3611
66e67e41
JB
3612 switch (fc & IEEE80211_FCTL_STYPE) {
3613 case IEEE80211_STYPE_BEACON:
8d61ffa5 3614 ieee80211_rx_mgmt_beacon(sdata, mgmt, skb->len, rx_status);
66e67e41
JB
3615 break;
3616 case IEEE80211_STYPE_PROBE_RESP:
3617 ieee80211_rx_mgmt_probe_resp(sdata, skb);
3618 break;
3619 case IEEE80211_STYPE_AUTH:
8d61ffa5 3620 ieee80211_rx_mgmt_auth(sdata, mgmt, skb->len);
66e67e41
JB
3621 break;
3622 case IEEE80211_STYPE_DEAUTH:
8d61ffa5 3623 ieee80211_rx_mgmt_deauth(sdata, mgmt, skb->len);
66e67e41
JB
3624 break;
3625 case IEEE80211_STYPE_DISASSOC:
8d61ffa5 3626 ieee80211_rx_mgmt_disassoc(sdata, mgmt, skb->len);
66e67e41
JB
3627 break;
3628 case IEEE80211_STYPE_ASSOC_RESP:
3629 case IEEE80211_STYPE_REASSOC_RESP:
8d61ffa5 3630 ieee80211_rx_mgmt_assoc_resp(sdata, mgmt, skb->len);
66e67e41
JB
3631 break;
3632 case IEEE80211_STYPE_ACTION:
37799e52 3633 if (mgmt->u.action.category == WLAN_CATEGORY_SPECTRUM_MGMT) {
1b3a2e49
JB
3634 ies_len = skb->len -
3635 offsetof(struct ieee80211_mgmt,
3636 u.action.u.chan_switch.variable);
37799e52
JB
3637
3638 if (ies_len < 0)
3639 break;
3640
3641 ieee802_11_parse_elems(
3642 mgmt->u.action.u.chan_switch.variable,
b2e506bf 3643 ies_len, true, &elems);
37799e52
JB
3644
3645 if (elems.parse_error)
3646 break;
3647
1b3a2e49 3648 ieee80211_sta_process_chanswitch(sdata,
2ba45384
LC
3649 rx_status->mactime,
3650 rx_status->device_timestamp,
3651 &elems, false);
1b3a2e49
JB
3652 } else if (mgmt->u.action.category == WLAN_CATEGORY_PUBLIC) {
3653 ies_len = skb->len -
3654 offsetof(struct ieee80211_mgmt,
3655 u.action.u.ext_chan_switch.variable);
3656
3657 if (ies_len < 0)
3658 break;
3659
3660 ieee802_11_parse_elems(
3661 mgmt->u.action.u.ext_chan_switch.variable,
b2e506bf 3662 ies_len, true, &elems);
1b3a2e49
JB
3663
3664 if (elems.parse_error)
3665 break;
3666
3667 /* for the handling code pretend this was also an IE */
3668 elems.ext_chansw_ie =
3669 &mgmt->u.action.u.ext_chan_switch.data;
3670
66e67e41 3671 ieee80211_sta_process_chanswitch(sdata,
2ba45384
LC
3672 rx_status->mactime,
3673 rx_status->device_timestamp,
3674 &elems, false);
77fdaa12 3675 }
37799e52 3676 break;
77fdaa12 3677 }
8d61ffa5 3678 sdata_unlock(sdata);
f0706e82
JB
3679}
3680
9c6bd790 3681static void ieee80211_sta_timer(unsigned long data)
f0706e82 3682{
60f8b39c
JB
3683 struct ieee80211_sub_if_data *sdata =
3684 (struct ieee80211_sub_if_data *) data;
5bb644a0 3685
9b7d72c1 3686 ieee80211_queue_work(&sdata->local->hw, &sdata->work);
f0706e82
JB
3687}
3688
04ac3c0e 3689static void ieee80211_sta_connection_lost(struct ieee80211_sub_if_data *sdata,
6b684db1 3690 u8 *bssid, u8 reason, bool tx)
04ac3c0e 3691{
6ae16775 3692 u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN];
04ac3c0e 3693
37ad3888 3694 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH, reason,
6b684db1 3695 tx, frame_buf);
37ad3888 3696
a90faa9d
EG
3697 ieee80211_report_disconnect(sdata, frame_buf, sizeof(frame_buf), true,
3698 reason);
04ac3c0e
FF
3699}
3700
46cad4b7 3701static int ieee80211_auth(struct ieee80211_sub_if_data *sdata)
66e67e41
JB
3702{
3703 struct ieee80211_local *local = sdata->local;
3704 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3705 struct ieee80211_mgd_auth_data *auth_data = ifmgd->auth_data;
1672c0e3 3706 u32 tx_flags = 0;
46cad4b7
JB
3707 u16 trans = 1;
3708 u16 status = 0;
66e67e41 3709
8d61ffa5 3710 sdata_assert_lock(sdata);
66e67e41
JB
3711
3712 if (WARN_ON_ONCE(!auth_data))
3713 return -EINVAL;
3714
66e67e41
JB
3715 auth_data->tries++;
3716
3717 if (auth_data->tries > IEEE80211_AUTH_MAX_TRIES) {
bdcbd8e0
JB
3718 sdata_info(sdata, "authentication with %pM timed out\n",
3719 auth_data->bss->bssid);
66e67e41
JB
3720
3721 /*
3722 * Most likely AP is not in the range so remove the
3723 * bss struct for that AP.
3724 */
3725 cfg80211_unlink_bss(local->hw.wiphy, auth_data->bss);
3726
3727 return -ETIMEDOUT;
3728 }
3729
a1845fc7
JB
3730 drv_mgd_prepare_tx(local, sdata);
3731
46cad4b7
JB
3732 sdata_info(sdata, "send auth to %pM (try %d/%d)\n",
3733 auth_data->bss->bssid, auth_data->tries,
3734 IEEE80211_AUTH_MAX_TRIES);
66e67e41 3735
46cad4b7 3736 auth_data->expected_transaction = 2;
6b8ece3a 3737
46cad4b7
JB
3738 if (auth_data->algorithm == WLAN_AUTH_SAE) {
3739 trans = auth_data->sae_trans;
3740 status = auth_data->sae_status;
3741 auth_data->expected_transaction = trans;
3742 }
66e67e41 3743
46cad4b7
JB
3744 if (ieee80211_hw_check(&local->hw, REPORTS_TX_ACK_STATUS))
3745 tx_flags = IEEE80211_TX_CTL_REQ_TX_STATUS |
3746 IEEE80211_TX_INTFL_MLME_CONN_TX;
66e67e41 3747
46cad4b7
JB
3748 ieee80211_send_auth(sdata, trans, auth_data->algorithm, status,
3749 auth_data->data, auth_data->data_len,
3750 auth_data->bss->bssid,
3751 auth_data->bss->bssid, NULL, 0, 0,
3752 tx_flags);
66e67e41 3753
6211dd12 3754 if (tx_flags == 0) {
1672c0e3 3755 auth_data->timeout = jiffies + IEEE80211_AUTH_TIMEOUT;
cb236d2d 3756 auth_data->timeout_started = true;
8d61ffa5 3757 run_again(sdata, auth_data->timeout);
89afe614 3758 } else {
cb236d2d
JB
3759 auth_data->timeout =
3760 round_jiffies_up(jiffies + IEEE80211_AUTH_TIMEOUT_LONG);
3761 auth_data->timeout_started = true;
3762 run_again(sdata, auth_data->timeout);
1672c0e3 3763 }
66e67e41
JB
3764
3765 return 0;
3766}
3767
3768static int ieee80211_do_assoc(struct ieee80211_sub_if_data *sdata)
3769{
3770 struct ieee80211_mgd_assoc_data *assoc_data = sdata->u.mgd.assoc_data;
3771 struct ieee80211_local *local = sdata->local;
3772
8d61ffa5 3773 sdata_assert_lock(sdata);
66e67e41 3774
66e67e41
JB
3775 assoc_data->tries++;
3776 if (assoc_data->tries > IEEE80211_ASSOC_MAX_TRIES) {
bdcbd8e0
JB
3777 sdata_info(sdata, "association with %pM timed out\n",
3778 assoc_data->bss->bssid);
66e67e41
JB
3779
3780 /*
3781 * Most likely AP is not in the range so remove the
3782 * bss struct for that AP.
3783 */
3784 cfg80211_unlink_bss(local->hw.wiphy, assoc_data->bss);
3785
3786 return -ETIMEDOUT;
3787 }
3788
bdcbd8e0
JB
3789 sdata_info(sdata, "associate with %pM (try %d/%d)\n",
3790 assoc_data->bss->bssid, assoc_data->tries,
3791 IEEE80211_ASSOC_MAX_TRIES);
66e67e41
JB
3792 ieee80211_send_assoc(sdata);
3793
30686bf7 3794 if (!ieee80211_hw_check(&local->hw, REPORTS_TX_ACK_STATUS)) {
1672c0e3 3795 assoc_data->timeout = jiffies + IEEE80211_ASSOC_TIMEOUT;
89afe614 3796 assoc_data->timeout_started = true;
8d61ffa5 3797 run_again(sdata, assoc_data->timeout);
89afe614 3798 } else {
cb236d2d
JB
3799 assoc_data->timeout =
3800 round_jiffies_up(jiffies +
3801 IEEE80211_ASSOC_TIMEOUT_LONG);
3802 assoc_data->timeout_started = true;
3803 run_again(sdata, assoc_data->timeout);
1672c0e3 3804 }
66e67e41
JB
3805
3806 return 0;
3807}
3808
1672c0e3
JB
3809void ieee80211_mgd_conn_tx_status(struct ieee80211_sub_if_data *sdata,
3810 __le16 fc, bool acked)
3811{
3812 struct ieee80211_local *local = sdata->local;
3813
3814 sdata->u.mgd.status_fc = fc;
3815 sdata->u.mgd.status_acked = acked;
3816 sdata->u.mgd.status_received = true;
3817
3818 ieee80211_queue_work(&local->hw, &sdata->work);
3819}
3820
1fa57d01 3821void ieee80211_sta_work(struct ieee80211_sub_if_data *sdata)
9c6bd790 3822{
9c6bd790 3823 struct ieee80211_local *local = sdata->local;
1fa57d01 3824 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
9c6bd790 3825
8d61ffa5 3826 sdata_lock(sdata);
77fdaa12 3827
1672c0e3
JB
3828 if (ifmgd->status_received) {
3829 __le16 fc = ifmgd->status_fc;
3830 bool status_acked = ifmgd->status_acked;
3831
3832 ifmgd->status_received = false;
46cad4b7 3833 if (ifmgd->auth_data && ieee80211_is_auth(fc)) {
1672c0e3
JB
3834 if (status_acked) {
3835 ifmgd->auth_data->timeout =
3836 jiffies + IEEE80211_AUTH_TIMEOUT_SHORT;
8d61ffa5 3837 run_again(sdata, ifmgd->auth_data->timeout);
1672c0e3
JB
3838 } else {
3839 ifmgd->auth_data->timeout = jiffies - 1;
3840 }
89afe614 3841 ifmgd->auth_data->timeout_started = true;
1672c0e3
JB
3842 } else if (ifmgd->assoc_data &&
3843 (ieee80211_is_assoc_req(fc) ||
3844 ieee80211_is_reassoc_req(fc))) {
3845 if (status_acked) {
3846 ifmgd->assoc_data->timeout =
3847 jiffies + IEEE80211_ASSOC_TIMEOUT_SHORT;
8d61ffa5 3848 run_again(sdata, ifmgd->assoc_data->timeout);
1672c0e3
JB
3849 } else {
3850 ifmgd->assoc_data->timeout = jiffies - 1;
3851 }
89afe614 3852 ifmgd->assoc_data->timeout_started = true;
1672c0e3
JB
3853 }
3854 }
3855
89afe614 3856 if (ifmgd->auth_data && ifmgd->auth_data->timeout_started &&
66e67e41
JB
3857 time_after(jiffies, ifmgd->auth_data->timeout)) {
3858 if (ifmgd->auth_data->done) {
3859 /*
3860 * ok ... we waited for assoc but userspace didn't,
3861 * so let's just kill the auth data
3862 */
3863 ieee80211_destroy_auth_data(sdata, false);
46cad4b7 3864 } else if (ieee80211_auth(sdata)) {
66e67e41 3865 u8 bssid[ETH_ALEN];
a9409093
EG
3866 struct ieee80211_event event = {
3867 .type = MLME_EVENT,
3868 .u.mlme.data = AUTH_EVENT,
3869 .u.mlme.status = MLME_TIMEOUT,
3870 };
66e67e41
JB
3871
3872 memcpy(bssid, ifmgd->auth_data->bss->bssid, ETH_ALEN);
3873
3874 ieee80211_destroy_auth_data(sdata, false);
3875
6ff57cf8 3876 cfg80211_auth_timeout(sdata->dev, bssid);
a9409093 3877 drv_event_callback(sdata->local, sdata, &event);
66e67e41 3878 }
89afe614 3879 } else if (ifmgd->auth_data && ifmgd->auth_data->timeout_started)
8d61ffa5 3880 run_again(sdata, ifmgd->auth_data->timeout);
66e67e41 3881
89afe614 3882 if (ifmgd->assoc_data && ifmgd->assoc_data->timeout_started &&
66e67e41 3883 time_after(jiffies, ifmgd->assoc_data->timeout)) {
989c6505 3884 if ((ifmgd->assoc_data->need_beacon && !ifmgd->have_beacon) ||
66e67e41 3885 ieee80211_do_assoc(sdata)) {
959867fa 3886 struct cfg80211_bss *bss = ifmgd->assoc_data->bss;
d0d1a12f
EG
3887 struct ieee80211_event event = {
3888 .type = MLME_EVENT,
3889 .u.mlme.data = ASSOC_EVENT,
3890 .u.mlme.status = MLME_TIMEOUT,
3891 };
66e67e41
JB
3892
3893 ieee80211_destroy_assoc_data(sdata, false);
959867fa 3894 cfg80211_assoc_timeout(sdata->dev, bss);
d0d1a12f 3895 drv_event_callback(sdata->local, sdata, &event);
66e67e41 3896 }
89afe614 3897 } else if (ifmgd->assoc_data && ifmgd->assoc_data->timeout_started)
8d61ffa5 3898 run_again(sdata, ifmgd->assoc_data->timeout);
66e67e41 3899
392b9ffb 3900 if (ifmgd->flags & IEEE80211_STA_CONNECTION_POLL &&
b291ba11 3901 ifmgd->associated) {
a43abf29 3902 u8 bssid[ETH_ALEN];
72a8a3ed 3903 int max_tries;
a43abf29 3904
0c1ad2ca 3905 memcpy(bssid, ifmgd->associated->bssid, ETH_ALEN);
4e5ff376 3906
30686bf7 3907 if (ieee80211_hw_check(&local->hw, REPORTS_TX_ACK_STATUS))
180205bd 3908 max_tries = max_nullfunc_tries;
72a8a3ed 3909 else
180205bd 3910 max_tries = max_probe_tries;
72a8a3ed 3911
4e5ff376
FF
3912 /* ACK received for nullfunc probing frame */
3913 if (!ifmgd->probe_send_count)
3914 ieee80211_reset_ap_probe(sdata);
04ac3c0e
FF
3915 else if (ifmgd->nullfunc_failed) {
3916 if (ifmgd->probe_send_count < max_tries) {
bdcbd8e0
JB
3917 mlme_dbg(sdata,
3918 "No ack for nullfunc frame to AP %pM, try %d/%i\n",
3919 bssid, ifmgd->probe_send_count,
3920 max_tries);
04ac3c0e
FF
3921 ieee80211_mgd_probe_ap_send(sdata);
3922 } else {
bdcbd8e0
JB
3923 mlme_dbg(sdata,
3924 "No ack for nullfunc frame to AP %pM, disconnecting.\n",
3925 bssid);
95acac61 3926 ieee80211_sta_connection_lost(sdata, bssid,
6b684db1
JB
3927 WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY,
3928 false);
04ac3c0e
FF
3929 }
3930 } else if (time_is_after_jiffies(ifmgd->probe_timeout))
8d61ffa5 3931 run_again(sdata, ifmgd->probe_timeout);
30686bf7 3932 else if (ieee80211_hw_check(&local->hw, REPORTS_TX_ACK_STATUS)) {
bdcbd8e0
JB
3933 mlme_dbg(sdata,
3934 "Failed to send nullfunc to AP %pM after %dms, disconnecting\n",
3935 bssid, probe_wait_ms);
95acac61 3936 ieee80211_sta_connection_lost(sdata, bssid,
6b684db1 3937 WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY, false);
04ac3c0e 3938 } else if (ifmgd->probe_send_count < max_tries) {
bdcbd8e0
JB
3939 mlme_dbg(sdata,
3940 "No probe response from AP %pM after %dms, try %d/%i\n",
3941 bssid, probe_wait_ms,
3942 ifmgd->probe_send_count, max_tries);
a43abf29
ML
3943 ieee80211_mgd_probe_ap_send(sdata);
3944 } else {
b291ba11
JB
3945 /*
3946 * We actually lost the connection ... or did we?
3947 * Let's make sure!
3948 */
b38afa87
BG
3949 wiphy_debug(local->hw.wiphy,
3950 "%s: No probe response from AP %pM"
3951 " after %dms, disconnecting.\n",
3952 sdata->name,
180205bd 3953 bssid, probe_wait_ms);
04ac3c0e 3954
95acac61 3955 ieee80211_sta_connection_lost(sdata, bssid,
6b684db1 3956 WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY, false);
b291ba11
JB
3957 }
3958 }
3959
8d61ffa5 3960 sdata_unlock(sdata);
f0706e82
JB
3961}
3962
b291ba11
JB
3963static void ieee80211_sta_bcn_mon_timer(unsigned long data)
3964{
3965 struct ieee80211_sub_if_data *sdata =
3966 (struct ieee80211_sub_if_data *) data;
0c21e632 3967 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
b291ba11 3968
0c21e632 3969 if (sdata->vif.csa_active && !ifmgd->csa_waiting_bcn)
e5593f56
MK
3970 return;
3971
682bd38b 3972 sdata->u.mgd.connection_loss = false;
1e4dcd01
JO
3973 ieee80211_queue_work(&sdata->local->hw,
3974 &sdata->u.mgd.beacon_connection_loss_work);
b291ba11
JB
3975}
3976
3977static void ieee80211_sta_conn_mon_timer(unsigned long data)
3978{
3979 struct ieee80211_sub_if_data *sdata =
3980 (struct ieee80211_sub_if_data *) data;
3981 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3982 struct ieee80211_local *local = sdata->local;
3983
0c21e632 3984 if (sdata->vif.csa_active && !ifmgd->csa_waiting_bcn)
e5593f56
MK
3985 return;
3986
42935eca 3987 ieee80211_queue_work(&local->hw, &ifmgd->monitor_work);
b291ba11
JB
3988}
3989
3990static void ieee80211_sta_monitor_work(struct work_struct *work)
3991{
3992 struct ieee80211_sub_if_data *sdata =
3993 container_of(work, struct ieee80211_sub_if_data,
3994 u.mgd.monitor_work);
3995
3996 ieee80211_mgd_probe_ap(sdata, false);
3997}
3998
9c6bd790
JB
3999static void ieee80211_restart_sta_timer(struct ieee80211_sub_if_data *sdata)
4000{
ad935687 4001 if (sdata->vif.type == NL80211_IFTYPE_STATION) {
925e64c3 4002 __ieee80211_stop_poll(sdata);
ad935687 4003
b291ba11 4004 /* let's probe the connection once */
30686bf7 4005 if (!ieee80211_hw_check(&sdata->local->hw, CONNECTION_MONITOR))
494f1fe5
EP
4006 ieee80211_queue_work(&sdata->local->hw,
4007 &sdata->u.mgd.monitor_work);
b291ba11 4008 /* and do all the other regular work too */
64592c8f 4009 ieee80211_queue_work(&sdata->local->hw, &sdata->work);
ad935687 4010 }
9c6bd790 4011}
f0706e82 4012
b8360ab8 4013#ifdef CONFIG_PM
1a1cb744
JB
4014void ieee80211_mgd_quiesce(struct ieee80211_sub_if_data *sdata)
4015{
4016 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
4017 u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN];
4018
4019 sdata_lock(sdata);
4020
c52666ae
EG
4021 if (ifmgd->auth_data || ifmgd->assoc_data) {
4022 const u8 *bssid = ifmgd->auth_data ?
4023 ifmgd->auth_data->bss->bssid :
4024 ifmgd->assoc_data->bss->bssid;
4025
1a1cb744 4026 /*
c52666ae
EG
4027 * If we are trying to authenticate / associate while suspending,
4028 * cfg80211 won't know and won't actually abort those attempts,
4029 * thus we need to do that ourselves.
1a1cb744 4030 */
c52666ae 4031 ieee80211_send_deauth_disassoc(sdata, bssid,
1a1cb744
JB
4032 IEEE80211_STYPE_DEAUTH,
4033 WLAN_REASON_DEAUTH_LEAVING,
4034 false, frame_buf);
c52666ae
EG
4035 if (ifmgd->assoc_data)
4036 ieee80211_destroy_assoc_data(sdata, false);
4037 if (ifmgd->auth_data)
4038 ieee80211_destroy_auth_data(sdata, false);
1a1cb744
JB
4039 cfg80211_tx_mlme_mgmt(sdata->dev, frame_buf,
4040 IEEE80211_DEAUTH_FRAME_LEN);
4041 }
4042
be72afe0
JB
4043 /* This is a bit of a hack - we should find a better and more generic
4044 * solution to this. Normally when suspending, cfg80211 will in fact
4045 * deauthenticate. However, it doesn't (and cannot) stop an ongoing
4046 * auth (not so important) or assoc (this is the problem) process.
4047 *
4048 * As a consequence, it can happen that we are in the process of both
4049 * associating and suspending, and receive an association response
4050 * after cfg80211 has checked if it needs to disconnect, but before
4051 * we actually set the flag to drop incoming frames. This will then
4052 * cause the workqueue flush to process the association response in
4053 * the suspend, resulting in a successful association just before it
4054 * tries to remove the interface from the driver, which now though
4055 * has a channel context assigned ... this results in issues.
4056 *
4057 * To work around this (for now) simply deauth here again if we're
4058 * now connected.
4059 */
4060 if (ifmgd->associated && !sdata->local->wowlan) {
4061 u8 bssid[ETH_ALEN];
4062 struct cfg80211_deauth_request req = {
4063 .reason_code = WLAN_REASON_DEAUTH_LEAVING,
4064 .bssid = bssid,
4065 };
4066
4067 memcpy(bssid, ifmgd->associated->bssid, ETH_ALEN);
4068 ieee80211_mgd_deauth(sdata, &req);
4069 }
4070
1a1cb744
JB
4071 sdata_unlock(sdata);
4072}
4073
b8360ab8
JB
4074void ieee80211_sta_restart(struct ieee80211_sub_if_data *sdata)
4075{
4076 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
4077
8d61ffa5 4078 sdata_lock(sdata);
b8360ab8 4079 if (!ifmgd->associated) {
8d61ffa5 4080 sdata_unlock(sdata);
b8360ab8
JB
4081 return;
4082 }
4083
4084 if (sdata->flags & IEEE80211_SDATA_DISCONNECT_RESUME) {
4085 sdata->flags &= ~IEEE80211_SDATA_DISCONNECT_RESUME;
4086 mlme_dbg(sdata, "driver requested disconnect after resume\n");
4087 ieee80211_sta_connection_lost(sdata,
4088 ifmgd->associated->bssid,
4089 WLAN_REASON_UNSPECIFIED,
4090 true);
8d61ffa5 4091 sdata_unlock(sdata);
b8360ab8
JB
4092 return;
4093 }
8d61ffa5 4094 sdata_unlock(sdata);
b8360ab8
JB
4095}
4096#endif
4097
9c6bd790
JB
4098/* interface setup */
4099void ieee80211_sta_setup_sdata(struct ieee80211_sub_if_data *sdata)
f0706e82 4100{
46900298 4101 struct ieee80211_if_managed *ifmgd;
988c0f72 4102
46900298 4103 ifmgd = &sdata->u.mgd;
b291ba11 4104 INIT_WORK(&ifmgd->monitor_work, ieee80211_sta_monitor_work);
46900298 4105 INIT_WORK(&ifmgd->chswitch_work, ieee80211_chswitch_work);
1e4dcd01
JO
4106 INIT_WORK(&ifmgd->beacon_connection_loss_work,
4107 ieee80211_beacon_connection_loss_work);
882a7c69
JB
4108 INIT_WORK(&ifmgd->csa_connection_drop_work,
4109 ieee80211_csa_connection_drop_work);
687da132 4110 INIT_WORK(&ifmgd->request_smps_work, ieee80211_request_smps_mgd_work);
81dd2b88
AN
4111 INIT_DELAYED_WORK(&ifmgd->tdls_peer_del_work,
4112 ieee80211_tdls_peer_del_work);
46900298 4113 setup_timer(&ifmgd->timer, ieee80211_sta_timer,
c481ec97 4114 (unsigned long) sdata);
b291ba11
JB
4115 setup_timer(&ifmgd->bcn_mon_timer, ieee80211_sta_bcn_mon_timer,
4116 (unsigned long) sdata);
4117 setup_timer(&ifmgd->conn_mon_timer, ieee80211_sta_conn_mon_timer,
4118 (unsigned long) sdata);
46900298 4119 setup_timer(&ifmgd->chswitch_timer, ieee80211_chswitch_timer,
9c6bd790 4120 (unsigned long) sdata);
02219b3a
JB
4121 INIT_DELAYED_WORK(&ifmgd->tx_tspec_wk,
4122 ieee80211_sta_handle_tspec_ac_params_wk);
9c6bd790 4123
ab1faead 4124 ifmgd->flags = 0;
1478acb3 4125 ifmgd->powersave = sdata->wdev.ps;
219c3867
AB
4126 ifmgd->uapsd_queues = sdata->local->hw.uapsd_queues;
4127 ifmgd->uapsd_max_sp_len = sdata->local->hw.uapsd_max_sp_len;
67baf663 4128 ifmgd->p2p_noa_index = -1;
bbbdff9e 4129
0d8614b4 4130 if (sdata->local->hw.wiphy->features & NL80211_FEATURE_DYNAMIC_SMPS)
0f78231b
JB
4131 ifmgd->req_smps = IEEE80211_SMPS_AUTOMATIC;
4132 else
4133 ifmgd->req_smps = IEEE80211_SMPS_OFF;
1277b4a9
LK
4134
4135 /* Setup TDLS data */
4136 spin_lock_init(&ifmgd->teardown_lock);
4137 ifmgd->teardown_skb = NULL;
4138 ifmgd->orig_teardown_skb = NULL;
f0706e82
JB
4139}
4140
77fdaa12
JB
4141/* scan finished notification */
4142void ieee80211_mlme_notify_scan_completed(struct ieee80211_local *local)
60f8b39c 4143{
31ee67a1 4144 struct ieee80211_sub_if_data *sdata;
60f8b39c 4145
77fdaa12
JB
4146 /* Restart STA timers */
4147 rcu_read_lock();
370bd005
BG
4148 list_for_each_entry_rcu(sdata, &local->interfaces, list) {
4149 if (ieee80211_sdata_running(sdata))
4150 ieee80211_restart_sta_timer(sdata);
4151 }
77fdaa12
JB
4152 rcu_read_unlock();
4153}
60f8b39c 4154
77fdaa12
JB
4155int ieee80211_max_network_latency(struct notifier_block *nb,
4156 unsigned long data, void *dummy)
4157{
4158 s32 latency_usec = (s32) data;
4159 struct ieee80211_local *local =
4160 container_of(nb, struct ieee80211_local,
4161 network_latency_notifier);
1fa6f4af 4162
77fdaa12
JB
4163 mutex_lock(&local->iflist_mtx);
4164 ieee80211_recalc_ps(local, latency_usec);
4165 mutex_unlock(&local->iflist_mtx);
dfe67012 4166
8bd811aa 4167 return NOTIFY_OK;
9c6bd790
JB
4168}
4169
f2d9d270
JB
4170static u8 ieee80211_ht_vht_rx_chains(struct ieee80211_sub_if_data *sdata,
4171 struct cfg80211_bss *cbss)
4172{
4173 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
4174 const u8 *ht_cap_ie, *vht_cap_ie;
4175 const struct ieee80211_ht_cap *ht_cap;
4176 const struct ieee80211_vht_cap *vht_cap;
4177 u8 chains = 1;
4178
4179 if (ifmgd->flags & IEEE80211_STA_DISABLE_HT)
4180 return chains;
4181
9caf0364 4182 ht_cap_ie = ieee80211_bss_get_ie(cbss, WLAN_EID_HT_CAPABILITY);
f2d9d270
JB
4183 if (ht_cap_ie && ht_cap_ie[1] >= sizeof(*ht_cap)) {
4184 ht_cap = (void *)(ht_cap_ie + 2);
4185 chains = ieee80211_mcs_to_chains(&ht_cap->mcs);
4186 /*
4187 * TODO: use "Tx Maximum Number Spatial Streams Supported" and
4188 * "Tx Unequal Modulation Supported" fields.
4189 */
4190 }
4191
4192 if (ifmgd->flags & IEEE80211_STA_DISABLE_VHT)
4193 return chains;
4194
9caf0364 4195 vht_cap_ie = ieee80211_bss_get_ie(cbss, WLAN_EID_VHT_CAPABILITY);
f2d9d270
JB
4196 if (vht_cap_ie && vht_cap_ie[1] >= sizeof(*vht_cap)) {
4197 u8 nss;
4198 u16 tx_mcs_map;
4199
4200 vht_cap = (void *)(vht_cap_ie + 2);
4201 tx_mcs_map = le16_to_cpu(vht_cap->supp_mcs.tx_mcs_map);
4202 for (nss = 8; nss > 0; nss--) {
4203 if (((tx_mcs_map >> (2 * (nss - 1))) & 3) !=
4204 IEEE80211_VHT_MCS_NOT_SUPPORTED)
4205 break;
4206 }
4207 /* TODO: use "Tx Highest Supported Long GI Data Rate" field? */
4208 chains = max(chains, nss);
4209 }
4210
4211 return chains;
4212}
4213
b17166a7
JB
4214static int ieee80211_prep_channel(struct ieee80211_sub_if_data *sdata,
4215 struct cfg80211_bss *cbss)
a1cf775d
JB
4216{
4217 struct ieee80211_local *local = sdata->local;
4218 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
53b954ee 4219 const struct ieee80211_ht_cap *ht_cap = NULL;
24398e39 4220 const struct ieee80211_ht_operation *ht_oper = NULL;
f2d9d270 4221 const struct ieee80211_vht_operation *vht_oper = NULL;
24398e39 4222 struct ieee80211_supported_band *sband;
4bf88530 4223 struct cfg80211_chan_def chandef;
f2d9d270 4224 int ret;
52a45f38
AN
4225 u32 i;
4226 bool have_80mhz;
a1cf775d 4227
24398e39
JB
4228 sband = local->hw.wiphy->bands[cbss->channel->band];
4229
f2d9d270
JB
4230 ifmgd->flags &= ~(IEEE80211_STA_DISABLE_40MHZ |
4231 IEEE80211_STA_DISABLE_80P80MHZ |
4232 IEEE80211_STA_DISABLE_160MHZ);
4233
9caf0364
JB
4234 rcu_read_lock();
4235
f2d9d270
JB
4236 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_HT) &&
4237 sband->ht_cap.ht_supported) {
53b954ee 4238 const u8 *ht_oper_ie, *ht_cap_ie;
24398e39 4239
9caf0364 4240 ht_oper_ie = ieee80211_bss_get_ie(cbss, WLAN_EID_HT_OPERATION);
24398e39
JB
4241 if (ht_oper_ie && ht_oper_ie[1] >= sizeof(*ht_oper))
4242 ht_oper = (void *)(ht_oper_ie + 2);
08e6effa 4243
53b954ee
EP
4244 ht_cap_ie = ieee80211_bss_get_ie(cbss, WLAN_EID_HT_CAPABILITY);
4245 if (ht_cap_ie && ht_cap_ie[1] >= sizeof(*ht_cap))
4246 ht_cap = (void *)(ht_cap_ie + 2);
4247
4248 if (!ht_cap) {
08e6effa
JB
4249 ifmgd->flags |= IEEE80211_STA_DISABLE_HT;
4250 ht_oper = NULL;
4251 }
24398e39
JB
4252 }
4253
f2d9d270
JB
4254 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_VHT) &&
4255 sband->vht_cap.vht_supported) {
08e6effa 4256 const u8 *vht_oper_ie, *vht_cap;
f2d9d270 4257
9caf0364
JB
4258 vht_oper_ie = ieee80211_bss_get_ie(cbss,
4259 WLAN_EID_VHT_OPERATION);
f2d9d270
JB
4260 if (vht_oper_ie && vht_oper_ie[1] >= sizeof(*vht_oper))
4261 vht_oper = (void *)(vht_oper_ie + 2);
4262 if (vht_oper && !ht_oper) {
4263 vht_oper = NULL;
bdcbd8e0 4264 sdata_info(sdata,
f2d9d270 4265 "AP advertised VHT without HT, disabling both\n");
cb145022
JB
4266 ifmgd->flags |= IEEE80211_STA_DISABLE_HT;
4267 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
24398e39 4268 }
08e6effa
JB
4269
4270 vht_cap = ieee80211_bss_get_ie(cbss, WLAN_EID_VHT_CAPABILITY);
4271 if (!vht_cap || vht_cap[1] < sizeof(struct ieee80211_vht_cap)) {
4272 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
4273 vht_oper = NULL;
4274 }
24398e39
JB
4275 }
4276
52a45f38
AN
4277 /* Allow VHT if at least one channel on the sband supports 80 MHz */
4278 have_80mhz = false;
4279 for (i = 0; i < sband->n_channels; i++) {
4280 if (sband->channels[i].flags & (IEEE80211_CHAN_DISABLED |
4281 IEEE80211_CHAN_NO_80MHZ))
4282 continue;
4283
4284 have_80mhz = true;
4285 break;
4286 }
4287
4288 if (!have_80mhz)
4289 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
4290
f2d9d270
JB
4291 ifmgd->flags |= ieee80211_determine_chantype(sdata, sband,
4292 cbss->channel,
53b954ee 4293 ht_cap, ht_oper, vht_oper,
5cdaed1e 4294 &chandef, false);
04ecd257 4295
f2d9d270
JB
4296 sdata->needed_rx_chains = min(ieee80211_ht_vht_rx_chains(sdata, cbss),
4297 local->rx_chains);
24398e39 4298
9caf0364
JB
4299 rcu_read_unlock();
4300
04ecd257
JB
4301 /* will change later if needed */
4302 sdata->smps_mode = IEEE80211_SMPS_OFF;
4303
34a3740d 4304 mutex_lock(&local->mtx);
f2d9d270
JB
4305 /*
4306 * If this fails (possibly due to channel context sharing
4307 * on incompatible channels, e.g. 80+80 and 160 sharing the
4308 * same control channel) try to use a smaller bandwidth.
4309 */
4310 ret = ieee80211_vif_use_channel(sdata, &chandef,
4311 IEEE80211_CHANCTX_SHARED);
0418a445
SW
4312
4313 /* don't downgrade for 5 and 10 MHz channels, though. */
4314 if (chandef.width == NL80211_CHAN_WIDTH_5 ||
4315 chandef.width == NL80211_CHAN_WIDTH_10)
34a3740d 4316 goto out;
0418a445 4317
d601cd8d 4318 while (ret && chandef.width != NL80211_CHAN_WIDTH_20_NOHT) {
e6b7cde4 4319 ifmgd->flags |= ieee80211_chandef_downgrade(&chandef);
d601cd8d
JB
4320 ret = ieee80211_vif_use_channel(sdata, &chandef,
4321 IEEE80211_CHANCTX_SHARED);
4322 }
34a3740d
JB
4323 out:
4324 mutex_unlock(&local->mtx);
f2d9d270 4325 return ret;
b17166a7
JB
4326}
4327
4328static int ieee80211_prep_connection(struct ieee80211_sub_if_data *sdata,
c1041f10
CRI
4329 struct cfg80211_bss *cbss, bool assoc,
4330 bool override)
b17166a7
JB
4331{
4332 struct ieee80211_local *local = sdata->local;
4333 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
4334 struct ieee80211_bss *bss = (void *)cbss->priv;
4335 struct sta_info *new_sta = NULL;
179b8fc7 4336 struct ieee80211_supported_band *sband;
c1041f10 4337 bool have_sta = false;
b17166a7
JB
4338 int err;
4339
179b8fc7
CRI
4340 sband = local->hw.wiphy->bands[cbss->channel->band];
4341
b17166a7
JB
4342 if (WARN_ON(!ifmgd->auth_data && !ifmgd->assoc_data))
4343 return -EINVAL;
4344
4345 if (assoc) {
4346 rcu_read_lock();
4347 have_sta = sta_info_get(sdata, cbss->bssid);
4348 rcu_read_unlock();
4349 }
4350
4351 if (!have_sta) {
4352 new_sta = sta_info_alloc(sdata, cbss->bssid, GFP_KERNEL);
4353 if (!new_sta)
4354 return -ENOMEM;
4355 }
179b8fc7 4356
c1041f10 4357 if (new_sta || override) {
179b8fc7
CRI
4358 err = ieee80211_prep_channel(sdata, cbss);
4359 if (err) {
4360 if (new_sta)
4361 sta_info_free(local, new_sta);
4362 return -EINVAL;
4363 }
4364 }
4365
13e0c8e3 4366 if (new_sta) {
5d6a1b06
JB
4367 u32 rates = 0, basic_rates = 0;
4368 bool have_higher_than_11mbit;
4369 int min_rate = INT_MAX, min_rate_index = -1;
2103dec1 4370 struct ieee80211_chanctx_conf *chanctx_conf;
8cef2c9d 4371 const struct cfg80211_bss_ies *ies;
179b8fc7 4372 int shift = ieee80211_vif_get_shift(&sdata->vif);
2103dec1 4373 u32 rate_flags;
b17166a7 4374
2103dec1
SW
4375 rcu_read_lock();
4376 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
4377 if (WARN_ON(!chanctx_conf)) {
4378 rcu_read_unlock();
c368ddaa 4379 sta_info_free(local, new_sta);
2103dec1
SW
4380 return -EINVAL;
4381 }
4382 rate_flags = ieee80211_chandef_rate_flags(&chanctx_conf->def);
4383 rcu_read_unlock();
5d6a1b06 4384
5d6a1b06
JB
4385 ieee80211_get_rates(sband, bss->supp_rates,
4386 bss->supp_rates_len,
4387 &rates, &basic_rates,
4388 &have_higher_than_11mbit,
2103dec1
SW
4389 &min_rate, &min_rate_index,
4390 shift, rate_flags);
5d6a1b06
JB
4391
4392 /*
4393 * This used to be a workaround for basic rates missing
4394 * in the association response frame. Now that we no
4395 * longer use the basic rates from there, it probably
4396 * doesn't happen any more, but keep the workaround so
4397 * in case some *other* APs are buggy in different ways
4398 * we can connect -- with a warning.
4399 */
4400 if (!basic_rates && min_rate_index >= 0) {
bdcbd8e0
JB
4401 sdata_info(sdata,
4402 "No basic rates, using min rate instead\n");
5d6a1b06
JB
4403 basic_rates = BIT(min_rate_index);
4404 }
4405
13e0c8e3 4406 new_sta->sta.supp_rates[cbss->channel->band] = rates;
5d6a1b06
JB
4407 sdata->vif.bss_conf.basic_rates = basic_rates;
4408
4409 /* cf. IEEE 802.11 9.2.12 */
55de908a 4410 if (cbss->channel->band == IEEE80211_BAND_2GHZ &&
5d6a1b06
JB
4411 have_higher_than_11mbit)
4412 sdata->flags |= IEEE80211_SDATA_OPERATING_GMODE;
4413 else
4414 sdata->flags &= ~IEEE80211_SDATA_OPERATING_GMODE;
4415
4416 memcpy(ifmgd->bssid, cbss->bssid, ETH_ALEN);
4417
8c358bcd
JB
4418 /* set timing information */
4419 sdata->vif.bss_conf.beacon_int = cbss->beacon_interval;
8cef2c9d 4420 rcu_read_lock();
ef429dad
JB
4421 ies = rcu_dereference(cbss->beacon_ies);
4422 if (ies) {
4423 const u8 *tim_ie;
4424
4425 sdata->vif.bss_conf.sync_tsf = ies->tsf;
4426 sdata->vif.bss_conf.sync_device_ts =
4427 bss->device_ts_beacon;
4428 tim_ie = cfg80211_find_ie(WLAN_EID_TIM,
4429 ies->data, ies->len);
4430 if (tim_ie && tim_ie[1] >= 2)
4431 sdata->vif.bss_conf.sync_dtim_count = tim_ie[2];
4432 else
4433 sdata->vif.bss_conf.sync_dtim_count = 0;
30686bf7
JB
4434 } else if (!ieee80211_hw_check(&sdata->local->hw,
4435 TIMING_BEACON_ONLY)) {
ef429dad
JB
4436 ies = rcu_dereference(cbss->proberesp_ies);
4437 /* must be non-NULL since beacon IEs were NULL */
4438 sdata->vif.bss_conf.sync_tsf = ies->tsf;
4439 sdata->vif.bss_conf.sync_device_ts =
4440 bss->device_ts_presp;
4441 sdata->vif.bss_conf.sync_dtim_count = 0;
4442 } else {
4443 sdata->vif.bss_conf.sync_tsf = 0;
4444 sdata->vif.bss_conf.sync_device_ts = 0;
4445 sdata->vif.bss_conf.sync_dtim_count = 0;
4446 }
8cef2c9d 4447 rcu_read_unlock();
8c358bcd
JB
4448
4449 /* tell driver about BSSID, basic rates and timing */
5d6a1b06 4450 ieee80211_bss_info_change_notify(sdata,
8c358bcd
JB
4451 BSS_CHANGED_BSSID | BSS_CHANGED_BASIC_RATES |
4452 BSS_CHANGED_BEACON_INT);
a1cf775d
JB
4453
4454 if (assoc)
13e0c8e3 4455 sta_info_pre_move_state(new_sta, IEEE80211_STA_AUTH);
a1cf775d 4456
13e0c8e3
JB
4457 err = sta_info_insert(new_sta);
4458 new_sta = NULL;
a1cf775d 4459 if (err) {
bdcbd8e0
JB
4460 sdata_info(sdata,
4461 "failed to insert STA entry for the AP (error %d)\n",
4462 err);
a1cf775d
JB
4463 return err;
4464 }
4465 } else
b203ca39 4466 WARN_ON_ONCE(!ether_addr_equal(ifmgd->bssid, cbss->bssid));
a1cf775d 4467
7d830a19
DS
4468 /* Cancel scan to ensure that nothing interferes with connection */
4469 if (local->scanning)
4470 ieee80211_scan_cancel(local);
4471
a1cf775d
JB
4472 return 0;
4473}
4474
77fdaa12
JB
4475/* config hooks */
4476int ieee80211_mgd_auth(struct ieee80211_sub_if_data *sdata,
4477 struct cfg80211_auth_request *req)
9c6bd790 4478{
66e67e41
JB
4479 struct ieee80211_local *local = sdata->local;
4480 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
4481 struct ieee80211_mgd_auth_data *auth_data;
77fdaa12 4482 u16 auth_alg;
66e67e41
JB
4483 int err;
4484
4485 /* prepare auth data structure */
9c6bd790 4486
77fdaa12
JB
4487 switch (req->auth_type) {
4488 case NL80211_AUTHTYPE_OPEN_SYSTEM:
4489 auth_alg = WLAN_AUTH_OPEN;
4490 break;
4491 case NL80211_AUTHTYPE_SHARED_KEY:
66e67e41 4492 if (IS_ERR(local->wep_tx_tfm))
9dca9c49 4493 return -EOPNOTSUPP;
77fdaa12
JB
4494 auth_alg = WLAN_AUTH_SHARED_KEY;
4495 break;
4496 case NL80211_AUTHTYPE_FT:
4497 auth_alg = WLAN_AUTH_FT;
4498 break;
4499 case NL80211_AUTHTYPE_NETWORK_EAP:
4500 auth_alg = WLAN_AUTH_LEAP;
4501 break;
6b8ece3a
JM
4502 case NL80211_AUTHTYPE_SAE:
4503 auth_alg = WLAN_AUTH_SAE;
4504 break;
77fdaa12
JB
4505 default:
4506 return -EOPNOTSUPP;
60f8b39c 4507 }
77fdaa12 4508
6b8ece3a
JM
4509 auth_data = kzalloc(sizeof(*auth_data) + req->sae_data_len +
4510 req->ie_len, GFP_KERNEL);
66e67e41 4511 if (!auth_data)
9c6bd790 4512 return -ENOMEM;
77fdaa12 4513
66e67e41 4514 auth_data->bss = req->bss;
77fdaa12 4515
6b8ece3a
JM
4516 if (req->sae_data_len >= 4) {
4517 __le16 *pos = (__le16 *) req->sae_data;
4518 auth_data->sae_trans = le16_to_cpu(pos[0]);
4519 auth_data->sae_status = le16_to_cpu(pos[1]);
4520 memcpy(auth_data->data, req->sae_data + 4,
4521 req->sae_data_len - 4);
4522 auth_data->data_len += req->sae_data_len - 4;
4523 }
4524
77fdaa12 4525 if (req->ie && req->ie_len) {
6b8ece3a
JM
4526 memcpy(&auth_data->data[auth_data->data_len],
4527 req->ie, req->ie_len);
4528 auth_data->data_len += req->ie_len;
9c6bd790 4529 }
77fdaa12 4530
fffd0934 4531 if (req->key && req->key_len) {
66e67e41
JB
4532 auth_data->key_len = req->key_len;
4533 auth_data->key_idx = req->key_idx;
4534 memcpy(auth_data->key, req->key, req->key_len);
fffd0934
JB
4535 }
4536
66e67e41 4537 auth_data->algorithm = auth_alg;
60f8b39c 4538
66e67e41 4539 /* try to authenticate/probe */
2a33bee2 4540
66e67e41
JB
4541 if ((ifmgd->auth_data && !ifmgd->auth_data->done) ||
4542 ifmgd->assoc_data) {
4543 err = -EBUSY;
4544 goto err_free;
2a33bee2
GE
4545 }
4546
66e67e41
JB
4547 if (ifmgd->auth_data)
4548 ieee80211_destroy_auth_data(sdata, false);
2a33bee2 4549
66e67e41
JB
4550 /* prep auth_data so we don't go into idle on disassoc */
4551 ifmgd->auth_data = auth_data;
af6b6374 4552
7b119dc0
JB
4553 if (ifmgd->associated) {
4554 u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN];
4555
4556 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH,
4557 WLAN_REASON_UNSPECIFIED,
4558 false, frame_buf);
4559
a90faa9d
EG
4560 ieee80211_report_disconnect(sdata, frame_buf,
4561 sizeof(frame_buf), true,
4562 WLAN_REASON_UNSPECIFIED);
7b119dc0 4563 }
af6b6374 4564
bdcbd8e0 4565 sdata_info(sdata, "authenticate with %pM\n", req->bss->bssid);
e5b900d2 4566
c1041f10 4567 err = ieee80211_prep_connection(sdata, req->bss, false, false);
a1cf775d 4568 if (err)
66e67e41 4569 goto err_clear;
af6b6374 4570
46cad4b7 4571 err = ieee80211_auth(sdata);
66e67e41 4572 if (err) {
66e67e41
JB
4573 sta_info_destroy_addr(sdata, req->bss->bssid);
4574 goto err_clear;
4575 }
4576
4577 /* hold our own reference */
5b112d3d 4578 cfg80211_ref_bss(local->hw.wiphy, auth_data->bss);
8d61ffa5 4579 return 0;
66e67e41
JB
4580
4581 err_clear:
c84a67a2 4582 eth_zero_addr(ifmgd->bssid);
3d2abdfd 4583 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BSSID);
66e67e41 4584 ifmgd->auth_data = NULL;
d01f858c
MK
4585 mutex_lock(&sdata->local->mtx);
4586 ieee80211_vif_release_channel(sdata);
4587 mutex_unlock(&sdata->local->mtx);
66e67e41
JB
4588 err_free:
4589 kfree(auth_data);
66e67e41 4590 return err;
af6b6374
JB
4591}
4592
095d81ce
JB
4593static bool ieee80211_usable_wmm_params(struct ieee80211_sub_if_data *sdata,
4594 const u8 *wmm_param, int len)
4595{
4596 const u8 *pos;
4597 size_t left;
4598
4599 if (len < 8)
4600 return false;
4601
4602 if (wmm_param[5] != 1 /* version */)
4603 return false;
4604
4605 pos = wmm_param + 8;
4606 left = len - 8;
4607
4608 for (; left >= 4; left -= 4, pos += 4) {
4609 u8 aifsn = pos[0] & 0x0f;
4610 u8 ecwmin = pos[1] & 0x0f;
4611 u8 ecwmax = (pos[1] & 0xf0) >> 4;
4612 int aci = (pos[0] >> 5) & 0x03;
4613
4614 if (aifsn < 2) {
4615 sdata_info(sdata,
4616 "AP has invalid WMM params (AIFSN=%d for ACI %d), disabling WMM\n",
4617 aifsn, aci);
4618 return false;
4619 }
4620 if (ecwmin > ecwmax) {
4621 sdata_info(sdata,
4622 "AP has invalid WMM params (ECWmin/max=%d/%d for ACI %d), disabling WMM\n",
4623 ecwmin, ecwmax, aci);
4624 return false;
4625 }
4626 }
4627
4628 return true;
4629}
4630
77fdaa12
JB
4631int ieee80211_mgd_assoc(struct ieee80211_sub_if_data *sdata,
4632 struct cfg80211_assoc_request *req)
f0706e82 4633{
66e67e41 4634 struct ieee80211_local *local = sdata->local;
77fdaa12 4635 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
0c1ad2ca 4636 struct ieee80211_bss *bss = (void *)req->bss->priv;
66e67e41 4637 struct ieee80211_mgd_assoc_data *assoc_data;
c65dd147 4638 const struct cfg80211_bss_ies *beacon_ies;
4e74bfdb 4639 struct ieee80211_supported_band *sband;
b08fbbd8 4640 const u8 *ssidie, *ht_ie, *vht_ie;
2a33bee2 4641 int i, err;
c1041f10 4642 bool override = false;
f0706e82 4643
66e67e41
JB
4644 assoc_data = kzalloc(sizeof(*assoc_data) + req->ie_len, GFP_KERNEL);
4645 if (!assoc_data)
4646 return -ENOMEM;
4647
9caf0364
JB
4648 rcu_read_lock();
4649 ssidie = ieee80211_bss_get_ie(req->bss, WLAN_EID_SSID);
4650 if (!ssidie) {
4651 rcu_read_unlock();
4652 kfree(assoc_data);
4653 return -EINVAL;
4654 }
4655 memcpy(assoc_data->ssid, ssidie + 2, ssidie[1]);
4656 assoc_data->ssid_len = ssidie[1];
4657 rcu_read_unlock();
4658
7b119dc0
JB
4659 if (ifmgd->associated) {
4660 u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN];
4661
4662 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH,
4663 WLAN_REASON_UNSPECIFIED,
4664 false, frame_buf);
4665
a90faa9d
EG
4666 ieee80211_report_disconnect(sdata, frame_buf,
4667 sizeof(frame_buf), true,
4668 WLAN_REASON_UNSPECIFIED);
7b119dc0 4669 }
66e67e41
JB
4670
4671 if (ifmgd->auth_data && !ifmgd->auth_data->done) {
4672 err = -EBUSY;
4673 goto err_free;
af6b6374 4674 }
77fdaa12 4675
66e67e41
JB
4676 if (ifmgd->assoc_data) {
4677 err = -EBUSY;
4678 goto err_free;
4679 }
77fdaa12 4680
66e67e41
JB
4681 if (ifmgd->auth_data) {
4682 bool match;
4683
4684 /* keep sta info, bssid if matching */
b203ca39 4685 match = ether_addr_equal(ifmgd->bssid, req->bss->bssid);
66e67e41 4686 ieee80211_destroy_auth_data(sdata, match);
2a33bee2
GE
4687 }
4688
66e67e41 4689 /* prepare assoc data */
095d81ce 4690
d8ec4433
JO
4691 ifmgd->beacon_crc_valid = false;
4692
095d81ce
JB
4693 assoc_data->wmm = bss->wmm_used &&
4694 (local->hw.queues >= IEEE80211_NUM_ACS);
4695 if (assoc_data->wmm) {
4696 /* try to check validity of WMM params IE */
4697 const struct cfg80211_bss_ies *ies;
4698 const u8 *wp, *start, *end;
4699
4700 rcu_read_lock();
4701 ies = rcu_dereference(req->bss->ies);
4702 start = ies->data;
4703 end = start + ies->len;
4704
4705 while (true) {
4706 wp = cfg80211_find_vendor_ie(
4707 WLAN_OUI_MICROSOFT,
4708 WLAN_OUI_TYPE_MICROSOFT_WMM,
4709 start, end - start);
4710 if (!wp)
4711 break;
4712 start = wp + wp[1] + 2;
4713 /* if this IE is too short, try the next */
4714 if (wp[1] <= 4)
4715 continue;
4716 /* if this IE is WMM params, we found what we wanted */
4717 if (wp[6] == 1)
4718 break;
4719 }
4720
4721 if (!wp || !ieee80211_usable_wmm_params(sdata, wp + 2,
4722 wp[1] - 2)) {
4723 assoc_data->wmm = false;
4724 ifmgd->flags |= IEEE80211_STA_DISABLE_WMM;
4725 }
4726 rcu_read_unlock();
4727 }
4728
de5036aa
JB
4729 /*
4730 * IEEE802.11n does not allow TKIP/WEP as pairwise ciphers in HT mode.
4731 * We still associate in non-HT mode (11a/b/g) if any one of these
4732 * ciphers is configured as pairwise.
4733 * We can set this to true for non-11n hardware, that'll be checked
4734 * separately along with the peer capabilities.
4735 */
1c4cb928 4736 for (i = 0; i < req->crypto.n_ciphers_pairwise; i++) {
77fdaa12
JB
4737 if (req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_WEP40 ||
4738 req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_TKIP ||
1c4cb928 4739 req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_WEP104) {
a8243b72 4740 ifmgd->flags |= IEEE80211_STA_DISABLE_HT;
d545daba 4741 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
1c4cb928 4742 netdev_info(sdata->dev,
d545daba 4743 "disabling HT/VHT due to WEP/TKIP use\n");
1c4cb928
JB
4744 }
4745 }
77fdaa12 4746
4e74bfdb
JB
4747 /* Also disable HT if we don't support it or the AP doesn't use WMM */
4748 sband = local->hw.wiphy->bands[req->bss->channel->band];
4749 if (!sband->ht_cap.ht_supported ||
095d81ce
JB
4750 local->hw.queues < IEEE80211_NUM_ACS || !bss->wmm_used ||
4751 ifmgd->flags & IEEE80211_STA_DISABLE_WMM) {
a8243b72 4752 ifmgd->flags |= IEEE80211_STA_DISABLE_HT;
095d81ce
JB
4753 if (!bss->wmm_used &&
4754 !(ifmgd->flags & IEEE80211_STA_DISABLE_WMM))
1b49de26
JB
4755 netdev_info(sdata->dev,
4756 "disabling HT as WMM/QoS is not supported by the AP\n");
1c4cb928 4757 }
4e74bfdb 4758
d545daba
MP
4759 /* disable VHT if we don't support it or the AP doesn't use WMM */
4760 if (!sband->vht_cap.vht_supported ||
095d81ce
JB
4761 local->hw.queues < IEEE80211_NUM_ACS || !bss->wmm_used ||
4762 ifmgd->flags & IEEE80211_STA_DISABLE_WMM) {
d545daba 4763 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
095d81ce
JB
4764 if (!bss->wmm_used &&
4765 !(ifmgd->flags & IEEE80211_STA_DISABLE_WMM))
1b49de26
JB
4766 netdev_info(sdata->dev,
4767 "disabling VHT as WMM/QoS is not supported by the AP\n");
d545daba
MP
4768 }
4769
ef96a842
BG
4770 memcpy(&ifmgd->ht_capa, &req->ht_capa, sizeof(ifmgd->ht_capa));
4771 memcpy(&ifmgd->ht_capa_mask, &req->ht_capa_mask,
4772 sizeof(ifmgd->ht_capa_mask));
4773
dd5ecfea
JB
4774 memcpy(&ifmgd->vht_capa, &req->vht_capa, sizeof(ifmgd->vht_capa));
4775 memcpy(&ifmgd->vht_capa_mask, &req->vht_capa_mask,
4776 sizeof(ifmgd->vht_capa_mask));
4777
77fdaa12 4778 if (req->ie && req->ie_len) {
66e67e41
JB
4779 memcpy(assoc_data->ie, req->ie, req->ie_len);
4780 assoc_data->ie_len = req->ie_len;
4781 }
f679f65d 4782
66e67e41 4783 assoc_data->bss = req->bss;
f679f65d 4784
af6b6374
JB
4785 if (ifmgd->req_smps == IEEE80211_SMPS_AUTOMATIC) {
4786 if (ifmgd->powersave)
04ecd257 4787 sdata->smps_mode = IEEE80211_SMPS_DYNAMIC;
af6b6374 4788 else
04ecd257 4789 sdata->smps_mode = IEEE80211_SMPS_OFF;
af6b6374 4790 } else
04ecd257 4791 sdata->smps_mode = ifmgd->req_smps;
af6b6374 4792
66e67e41 4793 assoc_data->capability = req->bss->capability;
66e67e41
JB
4794 assoc_data->supp_rates = bss->supp_rates;
4795 assoc_data->supp_rates_len = bss->supp_rates_len;
9dde6423 4796
9caf0364 4797 rcu_read_lock();
9dde6423
JB
4798 ht_ie = ieee80211_bss_get_ie(req->bss, WLAN_EID_HT_OPERATION);
4799 if (ht_ie && ht_ie[1] >= sizeof(struct ieee80211_ht_operation))
4800 assoc_data->ap_ht_param =
4801 ((struct ieee80211_ht_operation *)(ht_ie + 2))->ht_param;
4802 else
a8243b72 4803 ifmgd->flags |= IEEE80211_STA_DISABLE_HT;
b08fbbd8
JB
4804 vht_ie = ieee80211_bss_get_ie(req->bss, WLAN_EID_VHT_CAPABILITY);
4805 if (vht_ie && vht_ie[1] >= sizeof(struct ieee80211_vht_cap))
4806 memcpy(&assoc_data->ap_vht_cap, vht_ie + 2,
4807 sizeof(struct ieee80211_vht_cap));
4808 else
4809 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
9caf0364 4810 rcu_read_unlock();
63f170e0 4811
848955cc 4812 if (WARN((sdata->vif.driver_flags & IEEE80211_VIF_SUPPORTS_UAPSD) &&
30686bf7 4813 ieee80211_hw_check(&local->hw, PS_NULLFUNC_STACK),
848955cc
JB
4814 "U-APSD not supported with HW_PS_NULLFUNC_STACK\n"))
4815 sdata->vif.driver_flags &= ~IEEE80211_VIF_SUPPORTS_UAPSD;
4816
ab13315a 4817 if (bss->wmm_used && bss->uapsd_supported &&
848955cc 4818 (sdata->vif.driver_flags & IEEE80211_VIF_SUPPORTS_UAPSD)) {
76f0303d 4819 assoc_data->uapsd = true;
ab13315a
KV
4820 ifmgd->flags |= IEEE80211_STA_UAPSD_ENABLED;
4821 } else {
76f0303d 4822 assoc_data->uapsd = false;
ab13315a
KV
4823 ifmgd->flags &= ~IEEE80211_STA_UAPSD_ENABLED;
4824 }
4825
77fdaa12 4826 if (req->prev_bssid)
66e67e41 4827 memcpy(assoc_data->prev_bssid, req->prev_bssid, ETH_ALEN);
77fdaa12
JB
4828
4829 if (req->use_mfp) {
4830 ifmgd->mfp = IEEE80211_MFP_REQUIRED;
4831 ifmgd->flags |= IEEE80211_STA_MFP_ENABLED;
4832 } else {
4833 ifmgd->mfp = IEEE80211_MFP_DISABLED;
4834 ifmgd->flags &= ~IEEE80211_STA_MFP_ENABLED;
4835 }
4836
cd2f5dd7
AK
4837 if (req->flags & ASSOC_REQ_USE_RRM)
4838 ifmgd->flags |= IEEE80211_STA_ENABLE_RRM;
4839 else
4840 ifmgd->flags &= ~IEEE80211_STA_ENABLE_RRM;
4841
77fdaa12
JB
4842 if (req->crypto.control_port)
4843 ifmgd->flags |= IEEE80211_STA_CONTROL_PORT;
4844 else
4845 ifmgd->flags &= ~IEEE80211_STA_CONTROL_PORT;
4846
a621fa4d
JB
4847 sdata->control_port_protocol = req->crypto.control_port_ethertype;
4848 sdata->control_port_no_encrypt = req->crypto.control_port_no_encrypt;
2475b1cc
MS
4849 sdata->encrypt_headroom = ieee80211_cs_headroom(local, &req->crypto,
4850 sdata->vif.type);
a621fa4d 4851
66e67e41
JB
4852 /* kick off associate process */
4853
4854 ifmgd->assoc_data = assoc_data;
826262c3 4855 ifmgd->dtim_period = 0;
989c6505 4856 ifmgd->have_beacon = false;
66e67e41 4857
c1041f10
CRI
4858 /* override HT/VHT configuration only if the AP and we support it */
4859 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_HT)) {
4860 struct ieee80211_sta_ht_cap sta_ht_cap;
4861
4862 if (req->flags & ASSOC_REQ_DISABLE_HT)
4863 override = true;
4864
4865 memcpy(&sta_ht_cap, &sband->ht_cap, sizeof(sta_ht_cap));
4866 ieee80211_apply_htcap_overrides(sdata, &sta_ht_cap);
4867
4868 /* check for 40 MHz disable override */
4869 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_40MHZ) &&
4870 sband->ht_cap.cap & IEEE80211_HT_CAP_SUP_WIDTH_20_40 &&
4871 !(sta_ht_cap.cap & IEEE80211_HT_CAP_SUP_WIDTH_20_40))
4872 override = true;
4873
4874 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_VHT) &&
4875 req->flags & ASSOC_REQ_DISABLE_VHT)
4876 override = true;
4877 }
4878
4879 if (req->flags & ASSOC_REQ_DISABLE_HT) {
4880 ifmgd->flags |= IEEE80211_STA_DISABLE_HT;
4881 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
4882 }
4883
4884 if (req->flags & ASSOC_REQ_DISABLE_VHT)
4885 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
4886
4887 err = ieee80211_prep_connection(sdata, req->bss, true, override);
a1cf775d
JB
4888 if (err)
4889 goto err_clear;
66e67e41 4890
c65dd147
EG
4891 rcu_read_lock();
4892 beacon_ies = rcu_dereference(req->bss->beacon_ies);
826262c3 4893
30686bf7 4894 if (ieee80211_hw_check(&sdata->local->hw, NEED_DTIM_BEFORE_ASSOC) &&
c65dd147
EG
4895 !beacon_ies) {
4896 /*
4897 * Wait up to one beacon interval ...
4898 * should this be more if we miss one?
4899 */
4900 sdata_info(sdata, "waiting for beacon from %pM\n",
4901 ifmgd->bssid);
4902 assoc_data->timeout = TU_TO_EXP_TIME(req->bss->beacon_interval);
89afe614 4903 assoc_data->timeout_started = true;
c65dd147
EG
4904 assoc_data->need_beacon = true;
4905 } else if (beacon_ies) {
4906 const u8 *tim_ie = cfg80211_find_ie(WLAN_EID_TIM,
4907 beacon_ies->data,
4908 beacon_ies->len);
ef429dad
JB
4909 u8 dtim_count = 0;
4910
c65dd147
EG
4911 if (tim_ie && tim_ie[1] >= sizeof(struct ieee80211_tim_ie)) {
4912 const struct ieee80211_tim_ie *tim;
4913 tim = (void *)(tim_ie + 2);
4914 ifmgd->dtim_period = tim->dtim_period;
ef429dad 4915 dtim_count = tim->dtim_count;
826262c3 4916 }
989c6505 4917 ifmgd->have_beacon = true;
66e67e41 4918 assoc_data->timeout = jiffies;
89afe614 4919 assoc_data->timeout_started = true;
ef429dad 4920
30686bf7 4921 if (ieee80211_hw_check(&local->hw, TIMING_BEACON_ONLY)) {
ef429dad
JB
4922 sdata->vif.bss_conf.sync_tsf = beacon_ies->tsf;
4923 sdata->vif.bss_conf.sync_device_ts =
4924 bss->device_ts_beacon;
4925 sdata->vif.bss_conf.sync_dtim_count = dtim_count;
4926 }
c65dd147
EG
4927 } else {
4928 assoc_data->timeout = jiffies;
89afe614 4929 assoc_data->timeout_started = true;
66e67e41 4930 }
c65dd147
EG
4931 rcu_read_unlock();
4932
8d61ffa5 4933 run_again(sdata, assoc_data->timeout);
66e67e41 4934
fcff4f10
PS
4935 if (bss->corrupt_data) {
4936 char *corrupt_type = "data";
4937 if (bss->corrupt_data & IEEE80211_BSS_CORRUPT_BEACON) {
4938 if (bss->corrupt_data &
4939 IEEE80211_BSS_CORRUPT_PROBE_RESP)
4940 corrupt_type = "beacon and probe response";
4941 else
4942 corrupt_type = "beacon";
4943 } else if (bss->corrupt_data & IEEE80211_BSS_CORRUPT_PROBE_RESP)
4944 corrupt_type = "probe response";
bdcbd8e0
JB
4945 sdata_info(sdata, "associating with AP with corrupt %s\n",
4946 corrupt_type);
fcff4f10
PS
4947 }
4948
8d61ffa5 4949 return 0;
66e67e41 4950 err_clear:
c84a67a2 4951 eth_zero_addr(ifmgd->bssid);
3d2abdfd 4952 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BSSID);
66e67e41
JB
4953 ifmgd->assoc_data = NULL;
4954 err_free:
4955 kfree(assoc_data);
66e67e41 4956 return err;
f0706e82
JB
4957}
4958
77fdaa12 4959int ieee80211_mgd_deauth(struct ieee80211_sub_if_data *sdata,
63c9c5e7 4960 struct cfg80211_deauth_request *req)
f0706e82 4961{
46900298 4962 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
6ae16775 4963 u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN];
6863255b 4964 bool tx = !req->local_state_change;
f0706e82 4965
c9c3a060
JB
4966 if (ifmgd->auth_data &&
4967 ether_addr_equal(ifmgd->auth_data->bss->bssid, req->bssid)) {
4968 sdata_info(sdata,
4969 "aborting authentication with %pM by local choice (Reason: %u=%s)\n",
4970 req->bssid, req->reason_code,
4971 ieee80211_get_reason_code_string(req->reason_code));
0ff71613 4972
8c7d857c 4973 drv_mgd_prepare_tx(sdata->local, sdata);
37ad3888
JB
4974 ieee80211_send_deauth_disassoc(sdata, req->bssid,
4975 IEEE80211_STYPE_DEAUTH,
6863255b 4976 req->reason_code, tx,
37ad3888 4977 frame_buf);
86552017 4978 ieee80211_destroy_auth_data(sdata, false);
a90faa9d
EG
4979 ieee80211_report_disconnect(sdata, frame_buf,
4980 sizeof(frame_buf), true,
4981 req->reason_code);
86552017 4982
c9c3a060 4983 return 0;
8c7d857c
EG
4984 }
4985
86552017
JB
4986 if (ifmgd->associated &&
4987 ether_addr_equal(ifmgd->associated->bssid, req->bssid)) {
c9c3a060
JB
4988 sdata_info(sdata,
4989 "deauthenticating from %pM by local choice (Reason: %u=%s)\n",
4990 req->bssid, req->reason_code,
4991 ieee80211_get_reason_code_string(req->reason_code));
4992
86552017
JB
4993 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH,
4994 req->reason_code, tx, frame_buf);
a90faa9d
EG
4995 ieee80211_report_disconnect(sdata, frame_buf,
4996 sizeof(frame_buf), true,
4997 req->reason_code);
c9c3a060
JB
4998 return 0;
4999 }
86552017 5000
c9c3a060 5001 return -ENOTCONN;
f0706e82 5002}
84363e6e 5003
77fdaa12 5004int ieee80211_mgd_disassoc(struct ieee80211_sub_if_data *sdata,
63c9c5e7 5005 struct cfg80211_disassoc_request *req)
9c6bd790 5006{
77fdaa12 5007 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
e69e95db 5008 u8 bssid[ETH_ALEN];
6ae16775 5009 u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN];
9c6bd790 5010
8d8b261a
JB
5011 /*
5012 * cfg80211 should catch this ... but it's racy since
5013 * we can receive a disassoc frame, process it, hand it
5014 * to cfg80211 while that's in a locked section already
5015 * trying to tell us that the user wants to disconnect.
5016 */
8d61ffa5 5017 if (ifmgd->associated != req->bss)
77fdaa12 5018 return -ENOLINK;
77fdaa12 5019
bdcbd8e0 5020 sdata_info(sdata,
dfa1ad29
CO
5021 "disassociating from %pM by local choice (Reason: %u=%s)\n",
5022 req->bss->bssid, req->reason_code, ieee80211_get_reason_code_string(req->reason_code));
0ff71613 5023
e69e95db 5024 memcpy(bssid, req->bss->bssid, ETH_ALEN);
37ad3888
JB
5025 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DISASSOC,
5026 req->reason_code, !req->local_state_change,
5027 frame_buf);
10f644a4 5028
a90faa9d
EG
5029 ieee80211_report_disconnect(sdata, frame_buf, sizeof(frame_buf), true,
5030 req->reason_code);
bc83b681 5031
10f644a4
JB
5032 return 0;
5033}
026331c4 5034
afa762f6 5035void ieee80211_mgd_stop(struct ieee80211_sub_if_data *sdata)
54e4ffb2
JB
5036{
5037 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
5038
49921859
BG
5039 /*
5040 * Make sure some work items will not run after this,
5041 * they will not do anything but might not have been
5042 * cancelled when disconnecting.
5043 */
5044 cancel_work_sync(&ifmgd->monitor_work);
5045 cancel_work_sync(&ifmgd->beacon_connection_loss_work);
5046 cancel_work_sync(&ifmgd->request_smps_work);
5047 cancel_work_sync(&ifmgd->csa_connection_drop_work);
5048 cancel_work_sync(&ifmgd->chswitch_work);
81dd2b88 5049 cancel_delayed_work_sync(&ifmgd->tdls_peer_del_work);
49921859 5050
8d61ffa5 5051 sdata_lock(sdata);
959867fa
JB
5052 if (ifmgd->assoc_data) {
5053 struct cfg80211_bss *bss = ifmgd->assoc_data->bss;
54e4ffb2 5054 ieee80211_destroy_assoc_data(sdata, false);
959867fa
JB
5055 cfg80211_assoc_timeout(sdata->dev, bss);
5056 }
54e4ffb2
JB
5057 if (ifmgd->auth_data)
5058 ieee80211_destroy_auth_data(sdata, false);
1277b4a9
LK
5059 spin_lock_bh(&ifmgd->teardown_lock);
5060 if (ifmgd->teardown_skb) {
5061 kfree_skb(ifmgd->teardown_skb);
5062 ifmgd->teardown_skb = NULL;
5063 ifmgd->orig_teardown_skb = NULL;
5064 }
5065 spin_unlock_bh(&ifmgd->teardown_lock);
54e4ffb2 5066 del_timer_sync(&ifmgd->timer);
8d61ffa5 5067 sdata_unlock(sdata);
54e4ffb2
JB
5068}
5069
a97c13c3
JO
5070void ieee80211_cqm_rssi_notify(struct ieee80211_vif *vif,
5071 enum nl80211_cqm_rssi_threshold_event rssi_event,
5072 gfp_t gfp)
5073{
5074 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
5075
b5878a2d
JB
5076 trace_api_cqm_rssi_notify(sdata, rssi_event);
5077
a97c13c3
JO
5078 cfg80211_cqm_rssi_notify(sdata->dev, rssi_event, gfp);
5079}
5080EXPORT_SYMBOL(ieee80211_cqm_rssi_notify);
98f03342
JB
5081
5082void ieee80211_cqm_beacon_loss_notify(struct ieee80211_vif *vif, gfp_t gfp)
5083{
5084 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
5085
5086 trace_api_cqm_beacon_loss_notify(sdata->local, sdata);
5087
5088 cfg80211_cqm_beacon_loss_notify(sdata->dev, gfp);
5089}
5090EXPORT_SYMBOL(ieee80211_cqm_beacon_loss_notify);
This page took 1.118032 seconds and 5 git commands to generate.