mac80211: remove probe response temporary buffer allocation
[linux-2.6-block.git] / net / mac80211 / mlme.c
... / ...
CommitLineData
1/*
2 * BSS client mode implementation
3 * Copyright 2003-2008, Jouni Malinen <j@w1.fi>
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>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 */
13
14#include <linux/delay.h>
15#include <linux/if_ether.h>
16#include <linux/skbuff.h>
17#include <linux/if_arp.h>
18#include <linux/etherdevice.h>
19#include <linux/moduleparam.h>
20#include <linux/rtnetlink.h>
21#include <linux/pm_qos.h>
22#include <linux/crc32.h>
23#include <linux/slab.h>
24#include <linux/export.h>
25#include <net/mac80211.h>
26#include <asm/unaligned.h>
27
28#include "ieee80211_i.h"
29#include "driver-ops.h"
30#include "rate.h"
31#include "led.h"
32
33#define IEEE80211_AUTH_TIMEOUT (HZ / 5)
34#define IEEE80211_AUTH_MAX_TRIES 3
35#define IEEE80211_AUTH_WAIT_ASSOC (HZ * 5)
36#define IEEE80211_ASSOC_TIMEOUT (HZ / 5)
37#define IEEE80211_ASSOC_MAX_TRIES 3
38
39static int max_nullfunc_tries = 2;
40module_param(max_nullfunc_tries, int, 0644);
41MODULE_PARM_DESC(max_nullfunc_tries,
42 "Maximum nullfunc tx tries before disconnecting (reason 4).");
43
44static int max_probe_tries = 5;
45module_param(max_probe_tries, int, 0644);
46MODULE_PARM_DESC(max_probe_tries,
47 "Maximum probe tries before disconnecting (reason 4).");
48
49/*
50 * Beacon loss timeout is calculated as N frames times the
51 * advertised beacon interval. This may need to be somewhat
52 * higher than what hardware might detect to account for
53 * delays in the host processing frames. But since we also
54 * probe on beacon miss before declaring the connection lost
55 * default to what we want.
56 */
57#define IEEE80211_BEACON_LOSS_COUNT 7
58
59/*
60 * Time the connection can be idle before we probe
61 * it to see if we can still talk to the AP.
62 */
63#define IEEE80211_CONNECTION_IDLE_TIME (30 * HZ)
64/*
65 * Time we wait for a probe response after sending
66 * a probe request because of beacon loss or for
67 * checking the connection still works.
68 */
69static int probe_wait_ms = 500;
70module_param(probe_wait_ms, int, 0644);
71MODULE_PARM_DESC(probe_wait_ms,
72 "Maximum time(ms) to wait for probe response"
73 " before disconnecting (reason 4).");
74
75/*
76 * Weight given to the latest Beacon frame when calculating average signal
77 * strength for Beacon frames received in the current BSS. This must be
78 * between 1 and 15.
79 */
80#define IEEE80211_SIGNAL_AVE_WEIGHT 3
81
82/*
83 * How many Beacon frames need to have been used in average signal strength
84 * before starting to indicate signal change events.
85 */
86#define IEEE80211_SIGNAL_AVE_MIN_COUNT 4
87
88#define TMR_RUNNING_TIMER 0
89#define TMR_RUNNING_CHANSW 1
90
91/*
92 * All cfg80211 functions have to be called outside a locked
93 * section so that they can acquire a lock themselves... This
94 * is much simpler than queuing up things in cfg80211, but we
95 * do need some indirection for that here.
96 */
97enum rx_mgmt_action {
98 /* no action required */
99 RX_MGMT_NONE,
100
101 /* caller must call cfg80211_send_deauth() */
102 RX_MGMT_CFG80211_DEAUTH,
103
104 /* caller must call cfg80211_send_disassoc() */
105 RX_MGMT_CFG80211_DISASSOC,
106
107 /* caller must call cfg80211_send_rx_auth() */
108 RX_MGMT_CFG80211_RX_AUTH,
109
110 /* caller must call cfg80211_send_rx_assoc() */
111 RX_MGMT_CFG80211_RX_ASSOC,
112
113 /* caller must call cfg80211_send_assoc_timeout() */
114 RX_MGMT_CFG80211_ASSOC_TIMEOUT,
115};
116
117/* utils */
118static inline void ASSERT_MGD_MTX(struct ieee80211_if_managed *ifmgd)
119{
120 lockdep_assert_held(&ifmgd->mtx);
121}
122
123/*
124 * We can have multiple work items (and connection probing)
125 * scheduling this timer, but we need to take care to only
126 * reschedule it when it should fire _earlier_ than it was
127 * asked for before, or if it's not pending right now. This
128 * function ensures that. Note that it then is required to
129 * run this function for all timeouts after the first one
130 * has happened -- the work that runs from this timer will
131 * do that.
132 */
133static void run_again(struct ieee80211_if_managed *ifmgd, unsigned long timeout)
134{
135 ASSERT_MGD_MTX(ifmgd);
136
137 if (!timer_pending(&ifmgd->timer) ||
138 time_before(timeout, ifmgd->timer.expires))
139 mod_timer(&ifmgd->timer, timeout);
140}
141
142void ieee80211_sta_reset_beacon_monitor(struct ieee80211_sub_if_data *sdata)
143{
144 if (sdata->vif.driver_flags & IEEE80211_VIF_BEACON_FILTER)
145 return;
146
147 if (sdata->local->hw.flags & IEEE80211_HW_CONNECTION_MONITOR)
148 return;
149
150 mod_timer(&sdata->u.mgd.bcn_mon_timer,
151 round_jiffies_up(jiffies + sdata->u.mgd.beacon_timeout));
152}
153
154void ieee80211_sta_reset_conn_monitor(struct ieee80211_sub_if_data *sdata)
155{
156 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
157
158 if (unlikely(!sdata->u.mgd.associated))
159 return;
160
161 if (sdata->local->hw.flags & IEEE80211_HW_CONNECTION_MONITOR)
162 return;
163
164 mod_timer(&sdata->u.mgd.conn_mon_timer,
165 round_jiffies_up(jiffies + IEEE80211_CONNECTION_IDLE_TIME));
166
167 ifmgd->probe_send_count = 0;
168}
169
170static int ecw2cw(int ecw)
171{
172 return (1 << ecw) - 1;
173}
174
175static u32 ieee80211_config_ht_tx(struct ieee80211_sub_if_data *sdata,
176 struct ieee80211_ht_operation *ht_oper,
177 const u8 *bssid, bool reconfig)
178{
179 struct ieee80211_local *local = sdata->local;
180 struct ieee80211_supported_band *sband;
181 struct ieee80211_chanctx_conf *chanctx_conf;
182 struct ieee80211_channel *chan;
183 struct sta_info *sta;
184 u32 changed = 0;
185 u16 ht_opmode;
186 bool disable_40 = false;
187
188 rcu_read_lock();
189 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
190 if (WARN_ON(!chanctx_conf)) {
191 rcu_read_unlock();
192 return 0;
193 }
194 chan = chanctx_conf->def.chan;
195 rcu_read_unlock();
196 sband = local->hw.wiphy->bands[chan->band];
197
198 switch (sdata->vif.bss_conf.chandef.width) {
199 case NL80211_CHAN_WIDTH_40:
200 if (sdata->vif.bss_conf.chandef.chan->center_freq >
201 sdata->vif.bss_conf.chandef.center_freq1 &&
202 chan->flags & IEEE80211_CHAN_NO_HT40PLUS)
203 disable_40 = true;
204 if (sdata->vif.bss_conf.chandef.chan->center_freq <
205 sdata->vif.bss_conf.chandef.center_freq1 &&
206 chan->flags & IEEE80211_CHAN_NO_HT40MINUS)
207 disable_40 = true;
208 break;
209 default:
210 break;
211 }
212
213 /* This can change during the lifetime of the BSS */
214 if (!(ht_oper->ht_param & IEEE80211_HT_PARAM_CHAN_WIDTH_ANY))
215 disable_40 = true;
216
217 mutex_lock(&local->sta_mtx);
218 sta = sta_info_get(sdata, bssid);
219
220 WARN_ON_ONCE(!sta);
221
222 if (sta && !sta->supports_40mhz)
223 disable_40 = true;
224
225 if (sta && (!reconfig ||
226 (disable_40 != !(sta->sta.ht_cap.cap &
227 IEEE80211_HT_CAP_SUP_WIDTH_20_40)))) {
228
229 if (disable_40)
230 sta->sta.ht_cap.cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
231 else
232 sta->sta.ht_cap.cap |= IEEE80211_HT_CAP_SUP_WIDTH_20_40;
233
234 rate_control_rate_update(local, sband, sta,
235 IEEE80211_RC_BW_CHANGED);
236 }
237 mutex_unlock(&local->sta_mtx);
238
239 ht_opmode = le16_to_cpu(ht_oper->operation_mode);
240
241 /* if bss configuration changed store the new one */
242 if (!reconfig || (sdata->vif.bss_conf.ht_operation_mode != ht_opmode)) {
243 changed |= BSS_CHANGED_HT;
244 sdata->vif.bss_conf.ht_operation_mode = ht_opmode;
245 }
246
247 return changed;
248}
249
250/* frame sending functions */
251
252static int ieee80211_compatible_rates(const u8 *supp_rates, int supp_rates_len,
253 struct ieee80211_supported_band *sband,
254 u32 *rates)
255{
256 int i, j, count;
257 *rates = 0;
258 count = 0;
259 for (i = 0; i < supp_rates_len; i++) {
260 int rate = (supp_rates[i] & 0x7F) * 5;
261
262 for (j = 0; j < sband->n_bitrates; j++)
263 if (sband->bitrates[j].bitrate == rate) {
264 *rates |= BIT(j);
265 count++;
266 break;
267 }
268 }
269
270 return count;
271}
272
273static void ieee80211_add_ht_ie(struct ieee80211_sub_if_data *sdata,
274 struct sk_buff *skb, u8 ap_ht_param,
275 struct ieee80211_supported_band *sband,
276 struct ieee80211_channel *channel,
277 enum ieee80211_smps_mode smps)
278{
279 u8 *pos;
280 u32 flags = channel->flags;
281 u16 cap;
282 struct ieee80211_sta_ht_cap ht_cap;
283
284 BUILD_BUG_ON(sizeof(ht_cap) != sizeof(sband->ht_cap));
285
286 memcpy(&ht_cap, &sband->ht_cap, sizeof(ht_cap));
287 ieee80211_apply_htcap_overrides(sdata, &ht_cap);
288
289 /* determine capability flags */
290 cap = ht_cap.cap;
291
292 switch (ap_ht_param & IEEE80211_HT_PARAM_CHA_SEC_OFFSET) {
293 case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
294 if (flags & IEEE80211_CHAN_NO_HT40PLUS) {
295 cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
296 cap &= ~IEEE80211_HT_CAP_SGI_40;
297 }
298 break;
299 case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
300 if (flags & IEEE80211_CHAN_NO_HT40MINUS) {
301 cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
302 cap &= ~IEEE80211_HT_CAP_SGI_40;
303 }
304 break;
305 }
306
307 /*
308 * If 40 MHz was disabled associate as though we weren't
309 * capable of 40 MHz -- some broken APs will never fall
310 * back to trying to transmit in 20 MHz.
311 */
312 if (sdata->u.mgd.flags & IEEE80211_STA_DISABLE_40MHZ) {
313 cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
314 cap &= ~IEEE80211_HT_CAP_SGI_40;
315 }
316
317 /* set SM PS mode properly */
318 cap &= ~IEEE80211_HT_CAP_SM_PS;
319 switch (smps) {
320 case IEEE80211_SMPS_AUTOMATIC:
321 case IEEE80211_SMPS_NUM_MODES:
322 WARN_ON(1);
323 case IEEE80211_SMPS_OFF:
324 cap |= WLAN_HT_CAP_SM_PS_DISABLED <<
325 IEEE80211_HT_CAP_SM_PS_SHIFT;
326 break;
327 case IEEE80211_SMPS_STATIC:
328 cap |= WLAN_HT_CAP_SM_PS_STATIC <<
329 IEEE80211_HT_CAP_SM_PS_SHIFT;
330 break;
331 case IEEE80211_SMPS_DYNAMIC:
332 cap |= WLAN_HT_CAP_SM_PS_DYNAMIC <<
333 IEEE80211_HT_CAP_SM_PS_SHIFT;
334 break;
335 }
336
337 /* reserve and fill IE */
338 pos = skb_put(skb, sizeof(struct ieee80211_ht_cap) + 2);
339 ieee80211_ie_build_ht_cap(pos, &ht_cap, cap);
340}
341
342static void ieee80211_add_vht_ie(struct ieee80211_sub_if_data *sdata,
343 struct sk_buff *skb,
344 struct ieee80211_supported_band *sband)
345{
346 u8 *pos;
347 u32 cap;
348 struct ieee80211_sta_vht_cap vht_cap;
349
350 BUILD_BUG_ON(sizeof(vht_cap) != sizeof(sband->vht_cap));
351
352 memcpy(&vht_cap, &sband->vht_cap, sizeof(vht_cap));
353
354 /* determine capability flags */
355 cap = vht_cap.cap;
356
357 if (sdata->u.mgd.flags & IEEE80211_STA_DISABLE_80P80MHZ) {
358 cap &= ~IEEE80211_VHT_CAP_SUPP_CHAN_WIDTH_160_80PLUS80MHZ;
359 cap |= IEEE80211_VHT_CAP_SUPP_CHAN_WIDTH_160MHZ;
360 }
361
362 if (sdata->u.mgd.flags & IEEE80211_STA_DISABLE_160MHZ) {
363 cap &= ~IEEE80211_VHT_CAP_SHORT_GI_160;
364 cap &= ~IEEE80211_VHT_CAP_SUPP_CHAN_WIDTH_160MHZ;
365 }
366
367 /* reserve and fill IE */
368 pos = skb_put(skb, sizeof(struct ieee80211_vht_cap) + 2);
369 ieee80211_ie_build_vht_cap(pos, &vht_cap, cap);
370}
371
372static void ieee80211_send_assoc(struct ieee80211_sub_if_data *sdata)
373{
374 struct ieee80211_local *local = sdata->local;
375 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
376 struct ieee80211_mgd_assoc_data *assoc_data = ifmgd->assoc_data;
377 struct sk_buff *skb;
378 struct ieee80211_mgmt *mgmt;
379 u8 *pos, qos_info;
380 size_t offset = 0, noffset;
381 int i, count, rates_len, supp_rates_len;
382 u16 capab;
383 struct ieee80211_supported_band *sband;
384 struct ieee80211_chanctx_conf *chanctx_conf;
385 struct ieee80211_channel *chan;
386 u32 rates = 0;
387
388 lockdep_assert_held(&ifmgd->mtx);
389
390 rcu_read_lock();
391 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
392 if (WARN_ON(!chanctx_conf)) {
393 rcu_read_unlock();
394 return;
395 }
396 chan = chanctx_conf->def.chan;
397 rcu_read_unlock();
398 sband = local->hw.wiphy->bands[chan->band];
399
400 if (assoc_data->supp_rates_len) {
401 /*
402 * Get all rates supported by the device and the AP as
403 * some APs don't like getting a superset of their rates
404 * in the association request (e.g. D-Link DAP 1353 in
405 * b-only mode)...
406 */
407 rates_len = ieee80211_compatible_rates(assoc_data->supp_rates,
408 assoc_data->supp_rates_len,
409 sband, &rates);
410 } else {
411 /*
412 * In case AP not provide any supported rates information
413 * before association, we send information element(s) with
414 * all rates that we support.
415 */
416 rates = ~0;
417 rates_len = sband->n_bitrates;
418 }
419
420 skb = alloc_skb(local->hw.extra_tx_headroom +
421 sizeof(*mgmt) + /* bit too much but doesn't matter */
422 2 + assoc_data->ssid_len + /* SSID */
423 4 + rates_len + /* (extended) rates */
424 4 + /* power capability */
425 2 + 2 * sband->n_channels + /* supported channels */
426 2 + sizeof(struct ieee80211_ht_cap) + /* HT */
427 2 + sizeof(struct ieee80211_vht_cap) + /* VHT */
428 assoc_data->ie_len + /* extra IEs */
429 9, /* WMM */
430 GFP_KERNEL);
431 if (!skb)
432 return;
433
434 skb_reserve(skb, local->hw.extra_tx_headroom);
435
436 capab = WLAN_CAPABILITY_ESS;
437
438 if (sband->band == IEEE80211_BAND_2GHZ) {
439 if (!(local->hw.flags & IEEE80211_HW_2GHZ_SHORT_SLOT_INCAPABLE))
440 capab |= WLAN_CAPABILITY_SHORT_SLOT_TIME;
441 if (!(local->hw.flags & IEEE80211_HW_2GHZ_SHORT_PREAMBLE_INCAPABLE))
442 capab |= WLAN_CAPABILITY_SHORT_PREAMBLE;
443 }
444
445 if (assoc_data->capability & WLAN_CAPABILITY_PRIVACY)
446 capab |= WLAN_CAPABILITY_PRIVACY;
447
448 if ((assoc_data->capability & WLAN_CAPABILITY_SPECTRUM_MGMT) &&
449 (local->hw.flags & IEEE80211_HW_SPECTRUM_MGMT))
450 capab |= WLAN_CAPABILITY_SPECTRUM_MGMT;
451
452 mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24);
453 memset(mgmt, 0, 24);
454 memcpy(mgmt->da, assoc_data->bss->bssid, ETH_ALEN);
455 memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN);
456 memcpy(mgmt->bssid, assoc_data->bss->bssid, ETH_ALEN);
457
458 if (!is_zero_ether_addr(assoc_data->prev_bssid)) {
459 skb_put(skb, 10);
460 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
461 IEEE80211_STYPE_REASSOC_REQ);
462 mgmt->u.reassoc_req.capab_info = cpu_to_le16(capab);
463 mgmt->u.reassoc_req.listen_interval =
464 cpu_to_le16(local->hw.conf.listen_interval);
465 memcpy(mgmt->u.reassoc_req.current_ap, assoc_data->prev_bssid,
466 ETH_ALEN);
467 } else {
468 skb_put(skb, 4);
469 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
470 IEEE80211_STYPE_ASSOC_REQ);
471 mgmt->u.assoc_req.capab_info = cpu_to_le16(capab);
472 mgmt->u.assoc_req.listen_interval =
473 cpu_to_le16(local->hw.conf.listen_interval);
474 }
475
476 /* SSID */
477 pos = skb_put(skb, 2 + assoc_data->ssid_len);
478 *pos++ = WLAN_EID_SSID;
479 *pos++ = assoc_data->ssid_len;
480 memcpy(pos, assoc_data->ssid, assoc_data->ssid_len);
481
482 /* add all rates which were marked to be used above */
483 supp_rates_len = rates_len;
484 if (supp_rates_len > 8)
485 supp_rates_len = 8;
486
487 pos = skb_put(skb, supp_rates_len + 2);
488 *pos++ = WLAN_EID_SUPP_RATES;
489 *pos++ = supp_rates_len;
490
491 count = 0;
492 for (i = 0; i < sband->n_bitrates; i++) {
493 if (BIT(i) & rates) {
494 int rate = sband->bitrates[i].bitrate;
495 *pos++ = (u8) (rate / 5);
496 if (++count == 8)
497 break;
498 }
499 }
500
501 if (rates_len > count) {
502 pos = skb_put(skb, rates_len - count + 2);
503 *pos++ = WLAN_EID_EXT_SUPP_RATES;
504 *pos++ = rates_len - count;
505
506 for (i++; i < sband->n_bitrates; i++) {
507 if (BIT(i) & rates) {
508 int rate = sband->bitrates[i].bitrate;
509 *pos++ = (u8) (rate / 5);
510 }
511 }
512 }
513
514 if (capab & WLAN_CAPABILITY_SPECTRUM_MGMT) {
515 /* 1. power capabilities */
516 pos = skb_put(skb, 4);
517 *pos++ = WLAN_EID_PWR_CAPABILITY;
518 *pos++ = 2;
519 *pos++ = 0; /* min tx power */
520 *pos++ = chan->max_power; /* max tx power */
521
522 /* 2. supported channels */
523 /* TODO: get this in reg domain format */
524 pos = skb_put(skb, 2 * sband->n_channels + 2);
525 *pos++ = WLAN_EID_SUPPORTED_CHANNELS;
526 *pos++ = 2 * sband->n_channels;
527 for (i = 0; i < sband->n_channels; i++) {
528 *pos++ = ieee80211_frequency_to_channel(
529 sband->channels[i].center_freq);
530 *pos++ = 1; /* one channel in the subband*/
531 }
532 }
533
534 /* if present, add any custom IEs that go before HT */
535 if (assoc_data->ie_len && assoc_data->ie) {
536 static const u8 before_ht[] = {
537 WLAN_EID_SSID,
538 WLAN_EID_SUPP_RATES,
539 WLAN_EID_EXT_SUPP_RATES,
540 WLAN_EID_PWR_CAPABILITY,
541 WLAN_EID_SUPPORTED_CHANNELS,
542 WLAN_EID_RSN,
543 WLAN_EID_QOS_CAPA,
544 WLAN_EID_RRM_ENABLED_CAPABILITIES,
545 WLAN_EID_MOBILITY_DOMAIN,
546 WLAN_EID_SUPPORTED_REGULATORY_CLASSES,
547 };
548 noffset = ieee80211_ie_split(assoc_data->ie, assoc_data->ie_len,
549 before_ht, ARRAY_SIZE(before_ht),
550 offset);
551 pos = skb_put(skb, noffset - offset);
552 memcpy(pos, assoc_data->ie + offset, noffset - offset);
553 offset = noffset;
554 }
555
556 if (WARN_ON_ONCE((ifmgd->flags & IEEE80211_STA_DISABLE_HT) &&
557 !(ifmgd->flags & IEEE80211_STA_DISABLE_VHT)))
558 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
559
560 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_HT))
561 ieee80211_add_ht_ie(sdata, skb, assoc_data->ap_ht_param,
562 sband, chan, sdata->smps_mode);
563
564 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_VHT))
565 ieee80211_add_vht_ie(sdata, skb, sband);
566
567 /* if present, add any custom non-vendor IEs that go after HT */
568 if (assoc_data->ie_len && assoc_data->ie) {
569 noffset = ieee80211_ie_split_vendor(assoc_data->ie,
570 assoc_data->ie_len,
571 offset);
572 pos = skb_put(skb, noffset - offset);
573 memcpy(pos, assoc_data->ie + offset, noffset - offset);
574 offset = noffset;
575 }
576
577 if (assoc_data->wmm) {
578 if (assoc_data->uapsd) {
579 qos_info = ifmgd->uapsd_queues;
580 qos_info |= (ifmgd->uapsd_max_sp_len <<
581 IEEE80211_WMM_IE_STA_QOSINFO_SP_SHIFT);
582 } else {
583 qos_info = 0;
584 }
585
586 pos = skb_put(skb, 9);
587 *pos++ = WLAN_EID_VENDOR_SPECIFIC;
588 *pos++ = 7; /* len */
589 *pos++ = 0x00; /* Microsoft OUI 00:50:F2 */
590 *pos++ = 0x50;
591 *pos++ = 0xf2;
592 *pos++ = 2; /* WME */
593 *pos++ = 0; /* WME info */
594 *pos++ = 1; /* WME ver */
595 *pos++ = qos_info;
596 }
597
598 /* add any remaining custom (i.e. vendor specific here) IEs */
599 if (assoc_data->ie_len && assoc_data->ie) {
600 noffset = assoc_data->ie_len;
601 pos = skb_put(skb, noffset - offset);
602 memcpy(pos, assoc_data->ie + offset, noffset - offset);
603 }
604
605 drv_mgd_prepare_tx(local, sdata);
606
607 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
608 ieee80211_tx_skb(sdata, skb);
609}
610
611void ieee80211_send_pspoll(struct ieee80211_local *local,
612 struct ieee80211_sub_if_data *sdata)
613{
614 struct ieee80211_pspoll *pspoll;
615 struct sk_buff *skb;
616
617 skb = ieee80211_pspoll_get(&local->hw, &sdata->vif);
618 if (!skb)
619 return;
620
621 pspoll = (struct ieee80211_pspoll *) skb->data;
622 pspoll->frame_control |= cpu_to_le16(IEEE80211_FCTL_PM);
623
624 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
625 ieee80211_tx_skb(sdata, skb);
626}
627
628void ieee80211_send_nullfunc(struct ieee80211_local *local,
629 struct ieee80211_sub_if_data *sdata,
630 int powersave)
631{
632 struct sk_buff *skb;
633 struct ieee80211_hdr_3addr *nullfunc;
634 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
635
636 skb = ieee80211_nullfunc_get(&local->hw, &sdata->vif);
637 if (!skb)
638 return;
639
640 nullfunc = (struct ieee80211_hdr_3addr *) skb->data;
641 if (powersave)
642 nullfunc->frame_control |= cpu_to_le16(IEEE80211_FCTL_PM);
643
644 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
645 if (ifmgd->flags & (IEEE80211_STA_BEACON_POLL |
646 IEEE80211_STA_CONNECTION_POLL))
647 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_CTL_USE_MINRATE;
648
649 ieee80211_tx_skb(sdata, skb);
650}
651
652static void ieee80211_send_4addr_nullfunc(struct ieee80211_local *local,
653 struct ieee80211_sub_if_data *sdata)
654{
655 struct sk_buff *skb;
656 struct ieee80211_hdr *nullfunc;
657 __le16 fc;
658
659 if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION))
660 return;
661
662 skb = dev_alloc_skb(local->hw.extra_tx_headroom + 30);
663 if (!skb)
664 return;
665
666 skb_reserve(skb, local->hw.extra_tx_headroom);
667
668 nullfunc = (struct ieee80211_hdr *) skb_put(skb, 30);
669 memset(nullfunc, 0, 30);
670 fc = cpu_to_le16(IEEE80211_FTYPE_DATA | IEEE80211_STYPE_NULLFUNC |
671 IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS);
672 nullfunc->frame_control = fc;
673 memcpy(nullfunc->addr1, sdata->u.mgd.bssid, ETH_ALEN);
674 memcpy(nullfunc->addr2, sdata->vif.addr, ETH_ALEN);
675 memcpy(nullfunc->addr3, sdata->u.mgd.bssid, ETH_ALEN);
676 memcpy(nullfunc->addr4, sdata->vif.addr, ETH_ALEN);
677
678 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_DONT_ENCRYPT;
679 ieee80211_tx_skb(sdata, skb);
680}
681
682/* spectrum management related things */
683static void ieee80211_chswitch_work(struct work_struct *work)
684{
685 struct ieee80211_sub_if_data *sdata =
686 container_of(work, struct ieee80211_sub_if_data, u.mgd.chswitch_work);
687 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
688
689 if (!ieee80211_sdata_running(sdata))
690 return;
691
692 mutex_lock(&ifmgd->mtx);
693 if (!ifmgd->associated)
694 goto out;
695
696 sdata->local->_oper_channel = sdata->local->csa_channel;
697 if (!sdata->local->ops->channel_switch) {
698 /* call "hw_config" only if doing sw channel switch */
699 ieee80211_hw_config(sdata->local,
700 IEEE80211_CONF_CHANGE_CHANNEL);
701 } else {
702 /* update the device channel directly */
703 sdata->local->hw.conf.channel = sdata->local->_oper_channel;
704 }
705
706 /* XXX: shouldn't really modify cfg80211-owned data! */
707 ifmgd->associated->channel = sdata->local->_oper_channel;
708
709 /* XXX: wait for a beacon first? */
710 ieee80211_wake_queues_by_reason(&sdata->local->hw,
711 IEEE80211_QUEUE_STOP_REASON_CSA);
712 out:
713 ifmgd->flags &= ~IEEE80211_STA_CSA_RECEIVED;
714 mutex_unlock(&ifmgd->mtx);
715}
716
717void ieee80211_chswitch_done(struct ieee80211_vif *vif, bool success)
718{
719 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
720 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
721
722 trace_api_chswitch_done(sdata, success);
723 if (!success) {
724 sdata_info(sdata,
725 "driver channel switch failed, disconnecting\n");
726 ieee80211_queue_work(&sdata->local->hw,
727 &ifmgd->csa_connection_drop_work);
728 } else {
729 ieee80211_queue_work(&sdata->local->hw, &ifmgd->chswitch_work);
730 }
731}
732EXPORT_SYMBOL(ieee80211_chswitch_done);
733
734static void ieee80211_chswitch_timer(unsigned long data)
735{
736 struct ieee80211_sub_if_data *sdata =
737 (struct ieee80211_sub_if_data *) data;
738 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
739
740 if (sdata->local->quiescing) {
741 set_bit(TMR_RUNNING_CHANSW, &ifmgd->timers_running);
742 return;
743 }
744
745 ieee80211_queue_work(&sdata->local->hw, &ifmgd->chswitch_work);
746}
747
748void ieee80211_sta_process_chanswitch(struct ieee80211_sub_if_data *sdata,
749 struct ieee80211_channel_sw_ie *sw_elem,
750 struct ieee80211_bss *bss,
751 u64 timestamp)
752{
753 struct cfg80211_bss *cbss =
754 container_of((void *)bss, struct cfg80211_bss, priv);
755 struct ieee80211_channel *new_ch;
756 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
757 int new_freq = ieee80211_channel_to_frequency(sw_elem->new_ch_num,
758 cbss->channel->band);
759 struct ieee80211_chanctx *chanctx;
760
761 ASSERT_MGD_MTX(ifmgd);
762
763 if (!ifmgd->associated)
764 return;
765
766 if (sdata->local->scanning)
767 return;
768
769 /* Disregard subsequent beacons if we are already running a timer
770 processing a CSA */
771
772 if (ifmgd->flags & IEEE80211_STA_CSA_RECEIVED)
773 return;
774
775 new_ch = ieee80211_get_channel(sdata->local->hw.wiphy, new_freq);
776 if (!new_ch || new_ch->flags & IEEE80211_CHAN_DISABLED) {
777 sdata_info(sdata,
778 "AP %pM switches to unsupported channel (%d MHz), disconnecting\n",
779 ifmgd->associated->bssid, new_freq);
780 ieee80211_queue_work(&sdata->local->hw,
781 &ifmgd->csa_connection_drop_work);
782 return;
783 }
784
785 ifmgd->flags |= IEEE80211_STA_CSA_RECEIVED;
786
787 if (sdata->local->use_chanctx) {
788 sdata_info(sdata,
789 "not handling channel switch with channel contexts\n");
790 ieee80211_queue_work(&sdata->local->hw,
791 &ifmgd->csa_connection_drop_work);
792 }
793
794 mutex_lock(&sdata->local->chanctx_mtx);
795 if (WARN_ON(!rcu_access_pointer(sdata->vif.chanctx_conf))) {
796 mutex_unlock(&sdata->local->chanctx_mtx);
797 return;
798 }
799 chanctx = container_of(rcu_access_pointer(sdata->vif.chanctx_conf),
800 struct ieee80211_chanctx, conf);
801 if (chanctx->refcount > 1) {
802 sdata_info(sdata,
803 "channel switch with multiple interfaces on the same channel, disconnecting\n");
804 ieee80211_queue_work(&sdata->local->hw,
805 &ifmgd->csa_connection_drop_work);
806 mutex_unlock(&sdata->local->chanctx_mtx);
807 return;
808 }
809 mutex_unlock(&sdata->local->chanctx_mtx);
810
811 sdata->local->csa_channel = new_ch;
812
813 if (sw_elem->mode)
814 ieee80211_stop_queues_by_reason(&sdata->local->hw,
815 IEEE80211_QUEUE_STOP_REASON_CSA);
816
817 if (sdata->local->ops->channel_switch) {
818 /* use driver's channel switch callback */
819 struct ieee80211_channel_switch ch_switch = {
820 .timestamp = timestamp,
821 .block_tx = sw_elem->mode,
822 .channel = new_ch,
823 .count = sw_elem->count,
824 };
825
826 drv_channel_switch(sdata->local, &ch_switch);
827 return;
828 }
829
830 /* channel switch handled in software */
831 if (sw_elem->count <= 1)
832 ieee80211_queue_work(&sdata->local->hw, &ifmgd->chswitch_work);
833 else
834 mod_timer(&ifmgd->chswitch_timer,
835 TU_TO_EXP_TIME(sw_elem->count *
836 cbss->beacon_interval));
837}
838
839static u32 ieee80211_handle_pwr_constr(struct ieee80211_sub_if_data *sdata,
840 struct ieee80211_channel *channel,
841 const u8 *country_ie, u8 country_ie_len,
842 const u8 *pwr_constr_elem)
843{
844 struct ieee80211_country_ie_triplet *triplet;
845 int chan = ieee80211_frequency_to_channel(channel->center_freq);
846 int i, chan_pwr, chan_increment, new_ap_level;
847 bool have_chan_pwr = false;
848
849 /* Invalid IE */
850 if (country_ie_len % 2 || country_ie_len < IEEE80211_COUNTRY_IE_MIN_LEN)
851 return 0;
852
853 triplet = (void *)(country_ie + 3);
854 country_ie_len -= 3;
855
856 switch (channel->band) {
857 default:
858 WARN_ON_ONCE(1);
859 /* fall through */
860 case IEEE80211_BAND_2GHZ:
861 case IEEE80211_BAND_60GHZ:
862 chan_increment = 1;
863 break;
864 case IEEE80211_BAND_5GHZ:
865 chan_increment = 4;
866 break;
867 }
868
869 /* find channel */
870 while (country_ie_len >= 3) {
871 u8 first_channel = triplet->chans.first_channel;
872
873 if (first_channel >= IEEE80211_COUNTRY_EXTENSION_ID)
874 goto next;
875
876 for (i = 0; i < triplet->chans.num_channels; i++) {
877 if (first_channel + i * chan_increment == chan) {
878 have_chan_pwr = true;
879 chan_pwr = triplet->chans.max_power;
880 break;
881 }
882 }
883 if (have_chan_pwr)
884 break;
885
886 next:
887 triplet++;
888 country_ie_len -= 3;
889 }
890
891 if (!have_chan_pwr)
892 return 0;
893
894 new_ap_level = max_t(int, 0, chan_pwr - *pwr_constr_elem);
895
896 if (sdata->ap_power_level == new_ap_level)
897 return 0;
898
899 sdata_info(sdata,
900 "Limiting TX power to %d (%d - %d) dBm as advertised by %pM\n",
901 new_ap_level, chan_pwr, *pwr_constr_elem,
902 sdata->u.mgd.bssid);
903 sdata->ap_power_level = new_ap_level;
904 if (__ieee80211_recalc_txpower(sdata))
905 return BSS_CHANGED_TXPOWER;
906 return 0;
907}
908
909void ieee80211_enable_dyn_ps(struct ieee80211_vif *vif)
910{
911 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
912 struct ieee80211_local *local = sdata->local;
913 struct ieee80211_conf *conf = &local->hw.conf;
914
915 WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION ||
916 !(local->hw.flags & IEEE80211_HW_SUPPORTS_PS) ||
917 (local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS));
918
919 local->disable_dynamic_ps = false;
920 conf->dynamic_ps_timeout = local->dynamic_ps_user_timeout;
921}
922EXPORT_SYMBOL(ieee80211_enable_dyn_ps);
923
924void ieee80211_disable_dyn_ps(struct ieee80211_vif *vif)
925{
926 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
927 struct ieee80211_local *local = sdata->local;
928 struct ieee80211_conf *conf = &local->hw.conf;
929
930 WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION ||
931 !(local->hw.flags & IEEE80211_HW_SUPPORTS_PS) ||
932 (local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS));
933
934 local->disable_dynamic_ps = true;
935 conf->dynamic_ps_timeout = 0;
936 del_timer_sync(&local->dynamic_ps_timer);
937 ieee80211_queue_work(&local->hw,
938 &local->dynamic_ps_enable_work);
939}
940EXPORT_SYMBOL(ieee80211_disable_dyn_ps);
941
942/* powersave */
943static void ieee80211_enable_ps(struct ieee80211_local *local,
944 struct ieee80211_sub_if_data *sdata)
945{
946 struct ieee80211_conf *conf = &local->hw.conf;
947
948 /*
949 * If we are scanning right now then the parameters will
950 * take effect when scan finishes.
951 */
952 if (local->scanning)
953 return;
954
955 if (conf->dynamic_ps_timeout > 0 &&
956 !(local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS)) {
957 mod_timer(&local->dynamic_ps_timer, jiffies +
958 msecs_to_jiffies(conf->dynamic_ps_timeout));
959 } else {
960 if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)
961 ieee80211_send_nullfunc(local, sdata, 1);
962
963 if ((local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK) &&
964 (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS))
965 return;
966
967 conf->flags |= IEEE80211_CONF_PS;
968 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
969 }
970}
971
972static void ieee80211_change_ps(struct ieee80211_local *local)
973{
974 struct ieee80211_conf *conf = &local->hw.conf;
975
976 if (local->ps_sdata) {
977 ieee80211_enable_ps(local, local->ps_sdata);
978 } else if (conf->flags & IEEE80211_CONF_PS) {
979 conf->flags &= ~IEEE80211_CONF_PS;
980 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
981 del_timer_sync(&local->dynamic_ps_timer);
982 cancel_work_sync(&local->dynamic_ps_enable_work);
983 }
984}
985
986static bool ieee80211_powersave_allowed(struct ieee80211_sub_if_data *sdata)
987{
988 struct ieee80211_if_managed *mgd = &sdata->u.mgd;
989 struct sta_info *sta = NULL;
990 bool authorized = false;
991
992 if (!mgd->powersave)
993 return false;
994
995 if (mgd->broken_ap)
996 return false;
997
998 if (!mgd->associated)
999 return false;
1000
1001 if (mgd->flags & (IEEE80211_STA_BEACON_POLL |
1002 IEEE80211_STA_CONNECTION_POLL))
1003 return false;
1004
1005 rcu_read_lock();
1006 sta = sta_info_get(sdata, mgd->bssid);
1007 if (sta)
1008 authorized = test_sta_flag(sta, WLAN_STA_AUTHORIZED);
1009 rcu_read_unlock();
1010
1011 return authorized;
1012}
1013
1014/* need to hold RTNL or interface lock */
1015void ieee80211_recalc_ps(struct ieee80211_local *local, s32 latency)
1016{
1017 struct ieee80211_sub_if_data *sdata, *found = NULL;
1018 int count = 0;
1019 int timeout;
1020
1021 if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_PS)) {
1022 local->ps_sdata = NULL;
1023 return;
1024 }
1025
1026 list_for_each_entry(sdata, &local->interfaces, list) {
1027 if (!ieee80211_sdata_running(sdata))
1028 continue;
1029 if (sdata->vif.type == NL80211_IFTYPE_AP) {
1030 /* If an AP vif is found, then disable PS
1031 * by setting the count to zero thereby setting
1032 * ps_sdata to NULL.
1033 */
1034 count = 0;
1035 break;
1036 }
1037 if (sdata->vif.type != NL80211_IFTYPE_STATION)
1038 continue;
1039 found = sdata;
1040 count++;
1041 }
1042
1043 if (count == 1 && ieee80211_powersave_allowed(found)) {
1044 struct ieee80211_conf *conf = &local->hw.conf;
1045 s32 beaconint_us;
1046
1047 if (latency < 0)
1048 latency = pm_qos_request(PM_QOS_NETWORK_LATENCY);
1049
1050 beaconint_us = ieee80211_tu_to_usec(
1051 found->vif.bss_conf.beacon_int);
1052
1053 timeout = local->dynamic_ps_forced_timeout;
1054 if (timeout < 0) {
1055 /*
1056 * Go to full PSM if the user configures a very low
1057 * latency requirement.
1058 * The 2000 second value is there for compatibility
1059 * until the PM_QOS_NETWORK_LATENCY is configured
1060 * with real values.
1061 */
1062 if (latency > (1900 * USEC_PER_MSEC) &&
1063 latency != (2000 * USEC_PER_SEC))
1064 timeout = 0;
1065 else
1066 timeout = 100;
1067 }
1068 local->dynamic_ps_user_timeout = timeout;
1069 if (!local->disable_dynamic_ps)
1070 conf->dynamic_ps_timeout =
1071 local->dynamic_ps_user_timeout;
1072
1073 if (beaconint_us > latency) {
1074 local->ps_sdata = NULL;
1075 } else {
1076 struct ieee80211_bss *bss;
1077 int maxslp = 1;
1078 u8 dtimper;
1079
1080 bss = (void *)found->u.mgd.associated->priv;
1081 dtimper = bss->dtim_period;
1082
1083 /* If the TIM IE is invalid, pretend the value is 1 */
1084 if (!dtimper)
1085 dtimper = 1;
1086 else if (dtimper > 1)
1087 maxslp = min_t(int, dtimper,
1088 latency / beaconint_us);
1089
1090 local->hw.conf.max_sleep_period = maxslp;
1091 local->hw.conf.ps_dtim_period = dtimper;
1092 local->ps_sdata = found;
1093 }
1094 } else {
1095 local->ps_sdata = NULL;
1096 }
1097
1098 ieee80211_change_ps(local);
1099}
1100
1101void ieee80211_recalc_ps_vif(struct ieee80211_sub_if_data *sdata)
1102{
1103 bool ps_allowed = ieee80211_powersave_allowed(sdata);
1104
1105 if (sdata->vif.bss_conf.ps != ps_allowed) {
1106 sdata->vif.bss_conf.ps = ps_allowed;
1107 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_PS);
1108 }
1109}
1110
1111void ieee80211_dynamic_ps_disable_work(struct work_struct *work)
1112{
1113 struct ieee80211_local *local =
1114 container_of(work, struct ieee80211_local,
1115 dynamic_ps_disable_work);
1116
1117 if (local->hw.conf.flags & IEEE80211_CONF_PS) {
1118 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
1119 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
1120 }
1121
1122 ieee80211_wake_queues_by_reason(&local->hw,
1123 IEEE80211_QUEUE_STOP_REASON_PS);
1124}
1125
1126void ieee80211_dynamic_ps_enable_work(struct work_struct *work)
1127{
1128 struct ieee80211_local *local =
1129 container_of(work, struct ieee80211_local,
1130 dynamic_ps_enable_work);
1131 struct ieee80211_sub_if_data *sdata = local->ps_sdata;
1132 struct ieee80211_if_managed *ifmgd;
1133 unsigned long flags;
1134 int q;
1135
1136 /* can only happen when PS was just disabled anyway */
1137 if (!sdata)
1138 return;
1139
1140 ifmgd = &sdata->u.mgd;
1141
1142 if (local->hw.conf.flags & IEEE80211_CONF_PS)
1143 return;
1144
1145 if (!local->disable_dynamic_ps &&
1146 local->hw.conf.dynamic_ps_timeout > 0) {
1147 /* don't enter PS if TX frames are pending */
1148 if (drv_tx_frames_pending(local)) {
1149 mod_timer(&local->dynamic_ps_timer, jiffies +
1150 msecs_to_jiffies(
1151 local->hw.conf.dynamic_ps_timeout));
1152 return;
1153 }
1154
1155 /*
1156 * transmission can be stopped by others which leads to
1157 * dynamic_ps_timer expiry. Postpone the ps timer if it
1158 * is not the actual idle state.
1159 */
1160 spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
1161 for (q = 0; q < local->hw.queues; q++) {
1162 if (local->queue_stop_reasons[q]) {
1163 spin_unlock_irqrestore(&local->queue_stop_reason_lock,
1164 flags);
1165 mod_timer(&local->dynamic_ps_timer, jiffies +
1166 msecs_to_jiffies(
1167 local->hw.conf.dynamic_ps_timeout));
1168 return;
1169 }
1170 }
1171 spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
1172 }
1173
1174 if ((local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK) &&
1175 !(ifmgd->flags & IEEE80211_STA_NULLFUNC_ACKED)) {
1176 netif_tx_stop_all_queues(sdata->dev);
1177
1178 if (drv_tx_frames_pending(local))
1179 mod_timer(&local->dynamic_ps_timer, jiffies +
1180 msecs_to_jiffies(
1181 local->hw.conf.dynamic_ps_timeout));
1182 else {
1183 ieee80211_send_nullfunc(local, sdata, 1);
1184 /* Flush to get the tx status of nullfunc frame */
1185 drv_flush(local, false);
1186 }
1187 }
1188
1189 if (!((local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS) &&
1190 (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)) ||
1191 (ifmgd->flags & IEEE80211_STA_NULLFUNC_ACKED)) {
1192 ifmgd->flags &= ~IEEE80211_STA_NULLFUNC_ACKED;
1193 local->hw.conf.flags |= IEEE80211_CONF_PS;
1194 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
1195 }
1196
1197 if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK)
1198 netif_tx_wake_all_queues(sdata->dev);
1199}
1200
1201void ieee80211_dynamic_ps_timer(unsigned long data)
1202{
1203 struct ieee80211_local *local = (void *) data;
1204
1205 if (local->quiescing || local->suspended)
1206 return;
1207
1208 ieee80211_queue_work(&local->hw, &local->dynamic_ps_enable_work);
1209}
1210
1211/* MLME */
1212static bool ieee80211_sta_wmm_params(struct ieee80211_local *local,
1213 struct ieee80211_sub_if_data *sdata,
1214 u8 *wmm_param, size_t wmm_param_len)
1215{
1216 struct ieee80211_tx_queue_params params;
1217 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1218 size_t left;
1219 int count;
1220 u8 *pos, uapsd_queues = 0;
1221
1222 if (!local->ops->conf_tx)
1223 return false;
1224
1225 if (local->hw.queues < IEEE80211_NUM_ACS)
1226 return false;
1227
1228 if (!wmm_param)
1229 return false;
1230
1231 if (wmm_param_len < 8 || wmm_param[5] /* version */ != 1)
1232 return false;
1233
1234 if (ifmgd->flags & IEEE80211_STA_UAPSD_ENABLED)
1235 uapsd_queues = ifmgd->uapsd_queues;
1236
1237 count = wmm_param[6] & 0x0f;
1238 if (count == ifmgd->wmm_last_param_set)
1239 return false;
1240 ifmgd->wmm_last_param_set = count;
1241
1242 pos = wmm_param + 8;
1243 left = wmm_param_len - 8;
1244
1245 memset(&params, 0, sizeof(params));
1246
1247 sdata->wmm_acm = 0;
1248 for (; left >= 4; left -= 4, pos += 4) {
1249 int aci = (pos[0] >> 5) & 0x03;
1250 int acm = (pos[0] >> 4) & 0x01;
1251 bool uapsd = false;
1252 int queue;
1253
1254 switch (aci) {
1255 case 1: /* AC_BK */
1256 queue = 3;
1257 if (acm)
1258 sdata->wmm_acm |= BIT(1) | BIT(2); /* BK/- */
1259 if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_BK)
1260 uapsd = true;
1261 break;
1262 case 2: /* AC_VI */
1263 queue = 1;
1264 if (acm)
1265 sdata->wmm_acm |= BIT(4) | BIT(5); /* CL/VI */
1266 if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_VI)
1267 uapsd = true;
1268 break;
1269 case 3: /* AC_VO */
1270 queue = 0;
1271 if (acm)
1272 sdata->wmm_acm |= BIT(6) | BIT(7); /* VO/NC */
1273 if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_VO)
1274 uapsd = true;
1275 break;
1276 case 0: /* AC_BE */
1277 default:
1278 queue = 2;
1279 if (acm)
1280 sdata->wmm_acm |= BIT(0) | BIT(3); /* BE/EE */
1281 if (uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_BE)
1282 uapsd = true;
1283 break;
1284 }
1285
1286 params.aifs = pos[0] & 0x0f;
1287 params.cw_max = ecw2cw((pos[1] & 0xf0) >> 4);
1288 params.cw_min = ecw2cw(pos[1] & 0x0f);
1289 params.txop = get_unaligned_le16(pos + 2);
1290 params.uapsd = uapsd;
1291
1292 mlme_dbg(sdata,
1293 "WMM queue=%d aci=%d acm=%d aifs=%d cWmin=%d cWmax=%d txop=%d uapsd=%d\n",
1294 queue, aci, acm,
1295 params.aifs, params.cw_min, params.cw_max,
1296 params.txop, params.uapsd);
1297 sdata->tx_conf[queue] = params;
1298 if (drv_conf_tx(local, sdata, queue, &params))
1299 sdata_err(sdata,
1300 "failed to set TX queue parameters for queue %d\n",
1301 queue);
1302 }
1303
1304 /* enable WMM or activate new settings */
1305 sdata->vif.bss_conf.qos = true;
1306 return true;
1307}
1308
1309static void __ieee80211_stop_poll(struct ieee80211_sub_if_data *sdata)
1310{
1311 lockdep_assert_held(&sdata->local->mtx);
1312
1313 sdata->u.mgd.flags &= ~(IEEE80211_STA_CONNECTION_POLL |
1314 IEEE80211_STA_BEACON_POLL);
1315 ieee80211_run_deferred_scan(sdata->local);
1316}
1317
1318static void ieee80211_stop_poll(struct ieee80211_sub_if_data *sdata)
1319{
1320 mutex_lock(&sdata->local->mtx);
1321 __ieee80211_stop_poll(sdata);
1322 mutex_unlock(&sdata->local->mtx);
1323}
1324
1325static u32 ieee80211_handle_bss_capability(struct ieee80211_sub_if_data *sdata,
1326 u16 capab, bool erp_valid, u8 erp)
1327{
1328 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
1329 u32 changed = 0;
1330 bool use_protection;
1331 bool use_short_preamble;
1332 bool use_short_slot;
1333
1334 if (erp_valid) {
1335 use_protection = (erp & WLAN_ERP_USE_PROTECTION) != 0;
1336 use_short_preamble = (erp & WLAN_ERP_BARKER_PREAMBLE) == 0;
1337 } else {
1338 use_protection = false;
1339 use_short_preamble = !!(capab & WLAN_CAPABILITY_SHORT_PREAMBLE);
1340 }
1341
1342 use_short_slot = !!(capab & WLAN_CAPABILITY_SHORT_SLOT_TIME);
1343 if (ieee80211_get_sdata_band(sdata) == IEEE80211_BAND_5GHZ)
1344 use_short_slot = true;
1345
1346 if (use_protection != bss_conf->use_cts_prot) {
1347 bss_conf->use_cts_prot = use_protection;
1348 changed |= BSS_CHANGED_ERP_CTS_PROT;
1349 }
1350
1351 if (use_short_preamble != bss_conf->use_short_preamble) {
1352 bss_conf->use_short_preamble = use_short_preamble;
1353 changed |= BSS_CHANGED_ERP_PREAMBLE;
1354 }
1355
1356 if (use_short_slot != bss_conf->use_short_slot) {
1357 bss_conf->use_short_slot = use_short_slot;
1358 changed |= BSS_CHANGED_ERP_SLOT;
1359 }
1360
1361 return changed;
1362}
1363
1364static void ieee80211_set_associated(struct ieee80211_sub_if_data *sdata,
1365 struct cfg80211_bss *cbss,
1366 u32 bss_info_changed)
1367{
1368 struct ieee80211_bss *bss = (void *)cbss->priv;
1369 struct ieee80211_local *local = sdata->local;
1370 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
1371
1372 bss_info_changed |= BSS_CHANGED_ASSOC;
1373 bss_info_changed |= ieee80211_handle_bss_capability(sdata,
1374 bss_conf->assoc_capability, bss->has_erp_value, bss->erp_value);
1375
1376 sdata->u.mgd.beacon_timeout = usecs_to_jiffies(ieee80211_tu_to_usec(
1377 IEEE80211_BEACON_LOSS_COUNT * bss_conf->beacon_int));
1378
1379 sdata->u.mgd.associated = cbss;
1380 memcpy(sdata->u.mgd.bssid, cbss->bssid, ETH_ALEN);
1381
1382 sdata->u.mgd.flags |= IEEE80211_STA_RESET_SIGNAL_AVE;
1383
1384 if (sdata->vif.p2p) {
1385 u8 noa[2];
1386 int ret;
1387
1388 ret = cfg80211_get_p2p_attr(cbss->information_elements,
1389 cbss->len_information_elements,
1390 IEEE80211_P2P_ATTR_ABSENCE_NOTICE,
1391 noa, sizeof(noa));
1392 if (ret >= 2) {
1393 bss_conf->p2p_oppps = noa[1] & 0x80;
1394 bss_conf->p2p_ctwindow = noa[1] & 0x7f;
1395 bss_info_changed |= BSS_CHANGED_P2P_PS;
1396 sdata->u.mgd.p2p_noa_index = noa[0];
1397 }
1398 }
1399
1400 /* just to be sure */
1401 ieee80211_stop_poll(sdata);
1402
1403 ieee80211_led_assoc(local, 1);
1404
1405 if (local->hw.flags & IEEE80211_HW_NEED_DTIM_PERIOD)
1406 bss_conf->dtim_period = bss->dtim_period;
1407 else
1408 bss_conf->dtim_period = 0;
1409
1410 bss_conf->assoc = 1;
1411
1412 /* Tell the driver to monitor connection quality (if supported) */
1413 if (sdata->vif.driver_flags & IEEE80211_VIF_SUPPORTS_CQM_RSSI &&
1414 bss_conf->cqm_rssi_thold)
1415 bss_info_changed |= BSS_CHANGED_CQM;
1416
1417 /* Enable ARP filtering */
1418 if (bss_conf->arp_filter_enabled != sdata->arp_filter_state) {
1419 bss_conf->arp_filter_enabled = sdata->arp_filter_state;
1420 bss_info_changed |= BSS_CHANGED_ARP_FILTER;
1421 }
1422
1423 ieee80211_bss_info_change_notify(sdata, bss_info_changed);
1424
1425 mutex_lock(&local->iflist_mtx);
1426 ieee80211_recalc_ps(local, -1);
1427 mutex_unlock(&local->iflist_mtx);
1428
1429 ieee80211_recalc_smps(sdata);
1430 ieee80211_recalc_ps_vif(sdata);
1431
1432 netif_tx_start_all_queues(sdata->dev);
1433 netif_carrier_on(sdata->dev);
1434}
1435
1436static void ieee80211_set_disassoc(struct ieee80211_sub_if_data *sdata,
1437 u16 stype, u16 reason, bool tx,
1438 u8 *frame_buf)
1439{
1440 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1441 struct ieee80211_local *local = sdata->local;
1442 struct sta_info *sta;
1443 u32 changed = 0;
1444
1445 ASSERT_MGD_MTX(ifmgd);
1446
1447 if (WARN_ON_ONCE(tx && !frame_buf))
1448 return;
1449
1450 if (WARN_ON(!ifmgd->associated))
1451 return;
1452
1453 ieee80211_stop_poll(sdata);
1454
1455 ifmgd->associated = NULL;
1456
1457 /*
1458 * we need to commit the associated = NULL change because the
1459 * scan code uses that to determine whether this iface should
1460 * go to/wake up from powersave or not -- and could otherwise
1461 * wake the queues erroneously.
1462 */
1463 smp_mb();
1464
1465 /*
1466 * Thus, we can only afterwards stop the queues -- to account
1467 * for the case where another CPU is finishing a scan at this
1468 * time -- we don't want the scan code to enable queues.
1469 */
1470
1471 netif_tx_stop_all_queues(sdata->dev);
1472 netif_carrier_off(sdata->dev);
1473
1474 mutex_lock(&local->sta_mtx);
1475 sta = sta_info_get(sdata, ifmgd->bssid);
1476 if (sta) {
1477 set_sta_flag(sta, WLAN_STA_BLOCK_BA);
1478 ieee80211_sta_tear_down_BA_sessions(sta, false);
1479 }
1480 mutex_unlock(&local->sta_mtx);
1481
1482 /*
1483 * if we want to get out of ps before disassoc (why?) we have
1484 * to do it before sending disassoc, as otherwise the null-packet
1485 * won't be valid.
1486 */
1487 if (local->hw.conf.flags & IEEE80211_CONF_PS) {
1488 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
1489 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
1490 }
1491 local->ps_sdata = NULL;
1492
1493 /* disable per-vif ps */
1494 ieee80211_recalc_ps_vif(sdata);
1495
1496 /* flush out any pending frame (e.g. DELBA) before deauth/disassoc */
1497 if (tx)
1498 drv_flush(local, false);
1499
1500 /* deauthenticate/disassociate now */
1501 if (tx || frame_buf)
1502 ieee80211_send_deauth_disassoc(sdata, ifmgd->bssid, stype,
1503 reason, tx, frame_buf);
1504
1505 /* flush out frame */
1506 if (tx)
1507 drv_flush(local, false);
1508
1509 /* clear bssid only after building the needed mgmt frames */
1510 memset(ifmgd->bssid, 0, ETH_ALEN);
1511
1512 /* remove AP and TDLS peers */
1513 sta_info_flush(local, sdata);
1514
1515 /* finally reset all BSS / config parameters */
1516 changed |= ieee80211_reset_erp_info(sdata);
1517
1518 ieee80211_led_assoc(local, 0);
1519 changed |= BSS_CHANGED_ASSOC;
1520 sdata->vif.bss_conf.assoc = false;
1521
1522 sdata->vif.bss_conf.p2p_ctwindow = 0;
1523 sdata->vif.bss_conf.p2p_oppps = false;
1524
1525 /* on the next assoc, re-program HT parameters */
1526 memset(&ifmgd->ht_capa, 0, sizeof(ifmgd->ht_capa));
1527 memset(&ifmgd->ht_capa_mask, 0, sizeof(ifmgd->ht_capa_mask));
1528
1529 sdata->ap_power_level = IEEE80211_UNSET_POWER_LEVEL;
1530
1531 del_timer_sync(&local->dynamic_ps_timer);
1532 cancel_work_sync(&local->dynamic_ps_enable_work);
1533
1534 /* Disable ARP filtering */
1535 if (sdata->vif.bss_conf.arp_filter_enabled) {
1536 sdata->vif.bss_conf.arp_filter_enabled = false;
1537 changed |= BSS_CHANGED_ARP_FILTER;
1538 }
1539
1540 sdata->vif.bss_conf.qos = false;
1541 changed |= BSS_CHANGED_QOS;
1542
1543 /* The BSSID (not really interesting) and HT changed */
1544 changed |= BSS_CHANGED_BSSID | BSS_CHANGED_HT;
1545 ieee80211_bss_info_change_notify(sdata, changed);
1546
1547 /* disassociated - set to defaults now */
1548 ieee80211_set_wmm_default(sdata, false);
1549
1550 del_timer_sync(&sdata->u.mgd.conn_mon_timer);
1551 del_timer_sync(&sdata->u.mgd.bcn_mon_timer);
1552 del_timer_sync(&sdata->u.mgd.timer);
1553 del_timer_sync(&sdata->u.mgd.chswitch_timer);
1554
1555 sdata->u.mgd.timers_running = 0;
1556
1557 ifmgd->flags = 0;
1558 ieee80211_vif_release_channel(sdata);
1559}
1560
1561void ieee80211_sta_rx_notify(struct ieee80211_sub_if_data *sdata,
1562 struct ieee80211_hdr *hdr)
1563{
1564 /*
1565 * We can postpone the mgd.timer whenever receiving unicast frames
1566 * from AP because we know that the connection is working both ways
1567 * at that time. But multicast frames (and hence also beacons) must
1568 * be ignored here, because we need to trigger the timer during
1569 * data idle periods for sending the periodic probe request to the
1570 * AP we're connected to.
1571 */
1572 if (is_multicast_ether_addr(hdr->addr1))
1573 return;
1574
1575 ieee80211_sta_reset_conn_monitor(sdata);
1576}
1577
1578static void ieee80211_reset_ap_probe(struct ieee80211_sub_if_data *sdata)
1579{
1580 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1581 struct ieee80211_local *local = sdata->local;
1582
1583 mutex_lock(&local->mtx);
1584 if (!(ifmgd->flags & (IEEE80211_STA_BEACON_POLL |
1585 IEEE80211_STA_CONNECTION_POLL))) {
1586 mutex_unlock(&local->mtx);
1587 return;
1588 }
1589
1590 __ieee80211_stop_poll(sdata);
1591
1592 mutex_lock(&local->iflist_mtx);
1593 ieee80211_recalc_ps(local, -1);
1594 mutex_unlock(&local->iflist_mtx);
1595
1596 if (sdata->local->hw.flags & IEEE80211_HW_CONNECTION_MONITOR)
1597 goto out;
1598
1599 /*
1600 * We've received a probe response, but are not sure whether
1601 * we have or will be receiving any beacons or data, so let's
1602 * schedule the timers again, just in case.
1603 */
1604 ieee80211_sta_reset_beacon_monitor(sdata);
1605
1606 mod_timer(&ifmgd->conn_mon_timer,
1607 round_jiffies_up(jiffies +
1608 IEEE80211_CONNECTION_IDLE_TIME));
1609out:
1610 mutex_unlock(&local->mtx);
1611}
1612
1613void ieee80211_sta_tx_notify(struct ieee80211_sub_if_data *sdata,
1614 struct ieee80211_hdr *hdr, bool ack)
1615{
1616 if (!ieee80211_is_data(hdr->frame_control))
1617 return;
1618
1619 if (ack)
1620 ieee80211_sta_reset_conn_monitor(sdata);
1621
1622 if (ieee80211_is_nullfunc(hdr->frame_control) &&
1623 sdata->u.mgd.probe_send_count > 0) {
1624 if (ack)
1625 sdata->u.mgd.probe_send_count = 0;
1626 else
1627 sdata->u.mgd.nullfunc_failed = true;
1628 ieee80211_queue_work(&sdata->local->hw, &sdata->work);
1629 }
1630}
1631
1632static void ieee80211_mgd_probe_ap_send(struct ieee80211_sub_if_data *sdata)
1633{
1634 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1635 const u8 *ssid;
1636 u8 *dst = ifmgd->associated->bssid;
1637 u8 unicast_limit = max(1, max_probe_tries - 3);
1638
1639 /*
1640 * Try sending broadcast probe requests for the last three
1641 * probe requests after the first ones failed since some
1642 * buggy APs only support broadcast probe requests.
1643 */
1644 if (ifmgd->probe_send_count >= unicast_limit)
1645 dst = NULL;
1646
1647 /*
1648 * When the hardware reports an accurate Tx ACK status, it's
1649 * better to send a nullfunc frame instead of a probe request,
1650 * as it will kick us off the AP quickly if we aren't associated
1651 * anymore. The timeout will be reset if the frame is ACKed by
1652 * the AP.
1653 */
1654 ifmgd->probe_send_count++;
1655
1656 if (sdata->local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS) {
1657 ifmgd->nullfunc_failed = false;
1658 ieee80211_send_nullfunc(sdata->local, sdata, 0);
1659 } else {
1660 int ssid_len;
1661
1662 ssid = ieee80211_bss_get_ie(ifmgd->associated, WLAN_EID_SSID);
1663 if (WARN_ON_ONCE(ssid == NULL))
1664 ssid_len = 0;
1665 else
1666 ssid_len = ssid[1];
1667
1668 ieee80211_send_probe_req(sdata, dst, ssid + 2, ssid_len, NULL,
1669 0, (u32) -1, true, false,
1670 ifmgd->associated->channel, false);
1671 }
1672
1673 ifmgd->probe_timeout = jiffies + msecs_to_jiffies(probe_wait_ms);
1674 run_again(ifmgd, ifmgd->probe_timeout);
1675 if (sdata->local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS)
1676 drv_flush(sdata->local, false);
1677}
1678
1679static void ieee80211_mgd_probe_ap(struct ieee80211_sub_if_data *sdata,
1680 bool beacon)
1681{
1682 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1683 bool already = false;
1684
1685 if (!ieee80211_sdata_running(sdata))
1686 return;
1687
1688 mutex_lock(&ifmgd->mtx);
1689
1690 if (!ifmgd->associated)
1691 goto out;
1692
1693 mutex_lock(&sdata->local->mtx);
1694
1695 if (sdata->local->tmp_channel || sdata->local->scanning) {
1696 mutex_unlock(&sdata->local->mtx);
1697 goto out;
1698 }
1699
1700 if (beacon)
1701 mlme_dbg_ratelimited(sdata,
1702 "detected beacon loss from AP - sending probe request\n");
1703
1704 ieee80211_cqm_rssi_notify(&sdata->vif,
1705 NL80211_CQM_RSSI_BEACON_LOSS_EVENT, GFP_KERNEL);
1706
1707 /*
1708 * The driver/our work has already reported this event or the
1709 * connection monitoring has kicked in and we have already sent
1710 * a probe request. Or maybe the AP died and the driver keeps
1711 * reporting until we disassociate...
1712 *
1713 * In either case we have to ignore the current call to this
1714 * function (except for setting the correct probe reason bit)
1715 * because otherwise we would reset the timer every time and
1716 * never check whether we received a probe response!
1717 */
1718 if (ifmgd->flags & (IEEE80211_STA_BEACON_POLL |
1719 IEEE80211_STA_CONNECTION_POLL))
1720 already = true;
1721
1722 if (beacon)
1723 ifmgd->flags |= IEEE80211_STA_BEACON_POLL;
1724 else
1725 ifmgd->flags |= IEEE80211_STA_CONNECTION_POLL;
1726
1727 mutex_unlock(&sdata->local->mtx);
1728
1729 if (already)
1730 goto out;
1731
1732 mutex_lock(&sdata->local->iflist_mtx);
1733 ieee80211_recalc_ps(sdata->local, -1);
1734 mutex_unlock(&sdata->local->iflist_mtx);
1735
1736 ifmgd->probe_send_count = 0;
1737 ieee80211_mgd_probe_ap_send(sdata);
1738 out:
1739 mutex_unlock(&ifmgd->mtx);
1740}
1741
1742struct sk_buff *ieee80211_ap_probereq_get(struct ieee80211_hw *hw,
1743 struct ieee80211_vif *vif)
1744{
1745 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
1746 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1747 struct cfg80211_bss *cbss;
1748 struct sk_buff *skb;
1749 const u8 *ssid;
1750 int ssid_len;
1751
1752 if (WARN_ON(sdata->vif.type != NL80211_IFTYPE_STATION))
1753 return NULL;
1754
1755 ASSERT_MGD_MTX(ifmgd);
1756
1757 if (ifmgd->associated)
1758 cbss = ifmgd->associated;
1759 else if (ifmgd->auth_data)
1760 cbss = ifmgd->auth_data->bss;
1761 else if (ifmgd->assoc_data)
1762 cbss = ifmgd->assoc_data->bss;
1763 else
1764 return NULL;
1765
1766 ssid = ieee80211_bss_get_ie(cbss, WLAN_EID_SSID);
1767 if (WARN_ON_ONCE(ssid == NULL))
1768 ssid_len = 0;
1769 else
1770 ssid_len = ssid[1];
1771
1772 skb = ieee80211_build_probe_req(sdata, cbss->bssid,
1773 (u32) -1, cbss->channel,
1774 ssid + 2, ssid_len,
1775 NULL, 0, true);
1776
1777 return skb;
1778}
1779EXPORT_SYMBOL(ieee80211_ap_probereq_get);
1780
1781static void __ieee80211_disconnect(struct ieee80211_sub_if_data *sdata,
1782 bool transmit_frame)
1783{
1784 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1785 struct ieee80211_local *local = sdata->local;
1786 u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN];
1787
1788 mutex_lock(&ifmgd->mtx);
1789 if (!ifmgd->associated) {
1790 mutex_unlock(&ifmgd->mtx);
1791 return;
1792 }
1793
1794 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH,
1795 WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY,
1796 transmit_frame, frame_buf);
1797 ifmgd->flags &= ~IEEE80211_STA_CSA_RECEIVED;
1798 mutex_unlock(&ifmgd->mtx);
1799
1800 /*
1801 * must be outside lock due to cfg80211,
1802 * but that's not a problem.
1803 */
1804 cfg80211_send_deauth(sdata->dev, frame_buf, IEEE80211_DEAUTH_FRAME_LEN);
1805
1806 mutex_lock(&local->mtx);
1807 ieee80211_recalc_idle(local);
1808 mutex_unlock(&local->mtx);
1809}
1810
1811static void ieee80211_beacon_connection_loss_work(struct work_struct *work)
1812{
1813 struct ieee80211_sub_if_data *sdata =
1814 container_of(work, struct ieee80211_sub_if_data,
1815 u.mgd.beacon_connection_loss_work);
1816 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1817 struct sta_info *sta;
1818
1819 if (ifmgd->associated) {
1820 rcu_read_lock();
1821 sta = sta_info_get(sdata, ifmgd->bssid);
1822 if (sta)
1823 sta->beacon_loss_count++;
1824 rcu_read_unlock();
1825 }
1826
1827 if (sdata->local->hw.flags & IEEE80211_HW_CONNECTION_MONITOR) {
1828 sdata_info(sdata, "Connection to AP %pM lost\n",
1829 ifmgd->bssid);
1830 __ieee80211_disconnect(sdata, false);
1831 } else {
1832 ieee80211_mgd_probe_ap(sdata, true);
1833 }
1834}
1835
1836static void ieee80211_csa_connection_drop_work(struct work_struct *work)
1837{
1838 struct ieee80211_sub_if_data *sdata =
1839 container_of(work, struct ieee80211_sub_if_data,
1840 u.mgd.csa_connection_drop_work);
1841
1842 ieee80211_wake_queues_by_reason(&sdata->local->hw,
1843 IEEE80211_QUEUE_STOP_REASON_CSA);
1844 __ieee80211_disconnect(sdata, true);
1845}
1846
1847void ieee80211_beacon_loss(struct ieee80211_vif *vif)
1848{
1849 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
1850 struct ieee80211_hw *hw = &sdata->local->hw;
1851
1852 trace_api_beacon_loss(sdata);
1853
1854 WARN_ON(hw->flags & IEEE80211_HW_CONNECTION_MONITOR);
1855 ieee80211_queue_work(hw, &sdata->u.mgd.beacon_connection_loss_work);
1856}
1857EXPORT_SYMBOL(ieee80211_beacon_loss);
1858
1859void ieee80211_connection_loss(struct ieee80211_vif *vif)
1860{
1861 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
1862 struct ieee80211_hw *hw = &sdata->local->hw;
1863
1864 trace_api_connection_loss(sdata);
1865
1866 WARN_ON(!(hw->flags & IEEE80211_HW_CONNECTION_MONITOR));
1867 ieee80211_queue_work(hw, &sdata->u.mgd.beacon_connection_loss_work);
1868}
1869EXPORT_SYMBOL(ieee80211_connection_loss);
1870
1871
1872static void ieee80211_destroy_auth_data(struct ieee80211_sub_if_data *sdata,
1873 bool assoc)
1874{
1875 struct ieee80211_mgd_auth_data *auth_data = sdata->u.mgd.auth_data;
1876
1877 lockdep_assert_held(&sdata->u.mgd.mtx);
1878
1879 if (!assoc) {
1880 sta_info_destroy_addr(sdata, auth_data->bss->bssid);
1881
1882 memset(sdata->u.mgd.bssid, 0, ETH_ALEN);
1883 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BSSID);
1884 sdata->u.mgd.flags = 0;
1885 ieee80211_vif_release_channel(sdata);
1886 }
1887
1888 cfg80211_put_bss(auth_data->bss);
1889 kfree(auth_data);
1890 sdata->u.mgd.auth_data = NULL;
1891}
1892
1893static void ieee80211_auth_challenge(struct ieee80211_sub_if_data *sdata,
1894 struct ieee80211_mgmt *mgmt, size_t len)
1895{
1896 struct ieee80211_mgd_auth_data *auth_data = sdata->u.mgd.auth_data;
1897 u8 *pos;
1898 struct ieee802_11_elems elems;
1899
1900 pos = mgmt->u.auth.variable;
1901 ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), &elems);
1902 if (!elems.challenge)
1903 return;
1904 auth_data->expected_transaction = 4;
1905 drv_mgd_prepare_tx(sdata->local, sdata);
1906 ieee80211_send_auth(sdata, 3, auth_data->algorithm, 0,
1907 elems.challenge - 2, elems.challenge_len + 2,
1908 auth_data->bss->bssid, auth_data->bss->bssid,
1909 auth_data->key, auth_data->key_len,
1910 auth_data->key_idx);
1911}
1912
1913static enum rx_mgmt_action __must_check
1914ieee80211_rx_mgmt_auth(struct ieee80211_sub_if_data *sdata,
1915 struct ieee80211_mgmt *mgmt, size_t len)
1916{
1917 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
1918 u8 bssid[ETH_ALEN];
1919 u16 auth_alg, auth_transaction, status_code;
1920 struct sta_info *sta;
1921
1922 lockdep_assert_held(&ifmgd->mtx);
1923
1924 if (len < 24 + 6)
1925 return RX_MGMT_NONE;
1926
1927 if (!ifmgd->auth_data || ifmgd->auth_data->done)
1928 return RX_MGMT_NONE;
1929
1930 memcpy(bssid, ifmgd->auth_data->bss->bssid, ETH_ALEN);
1931
1932 if (!ether_addr_equal(bssid, mgmt->bssid))
1933 return RX_MGMT_NONE;
1934
1935 auth_alg = le16_to_cpu(mgmt->u.auth.auth_alg);
1936 auth_transaction = le16_to_cpu(mgmt->u.auth.auth_transaction);
1937 status_code = le16_to_cpu(mgmt->u.auth.status_code);
1938
1939 if (auth_alg != ifmgd->auth_data->algorithm ||
1940 auth_transaction != ifmgd->auth_data->expected_transaction) {
1941 sdata_info(sdata, "%pM unexpected authentication state: alg %d (expected %d) transact %d (expected %d)\n",
1942 mgmt->sa, auth_alg, ifmgd->auth_data->algorithm,
1943 auth_transaction,
1944 ifmgd->auth_data->expected_transaction);
1945 return RX_MGMT_NONE;
1946 }
1947
1948 if (status_code != WLAN_STATUS_SUCCESS) {
1949 sdata_info(sdata, "%pM denied authentication (status %d)\n",
1950 mgmt->sa, status_code);
1951 ieee80211_destroy_auth_data(sdata, false);
1952 return RX_MGMT_CFG80211_RX_AUTH;
1953 }
1954
1955 switch (ifmgd->auth_data->algorithm) {
1956 case WLAN_AUTH_OPEN:
1957 case WLAN_AUTH_LEAP:
1958 case WLAN_AUTH_FT:
1959 case WLAN_AUTH_SAE:
1960 break;
1961 case WLAN_AUTH_SHARED_KEY:
1962 if (ifmgd->auth_data->expected_transaction != 4) {
1963 ieee80211_auth_challenge(sdata, mgmt, len);
1964 /* need another frame */
1965 return RX_MGMT_NONE;
1966 }
1967 break;
1968 default:
1969 WARN_ONCE(1, "invalid auth alg %d",
1970 ifmgd->auth_data->algorithm);
1971 return RX_MGMT_NONE;
1972 }
1973
1974 sdata_info(sdata, "authenticated\n");
1975 ifmgd->auth_data->done = true;
1976 ifmgd->auth_data->timeout = jiffies + IEEE80211_AUTH_WAIT_ASSOC;
1977 run_again(ifmgd, ifmgd->auth_data->timeout);
1978
1979 if (ifmgd->auth_data->algorithm == WLAN_AUTH_SAE &&
1980 ifmgd->auth_data->expected_transaction != 2) {
1981 /*
1982 * Report auth frame to user space for processing since another
1983 * round of Authentication frames is still needed.
1984 */
1985 return RX_MGMT_CFG80211_RX_AUTH;
1986 }
1987
1988 /* move station state to auth */
1989 mutex_lock(&sdata->local->sta_mtx);
1990 sta = sta_info_get(sdata, bssid);
1991 if (!sta) {
1992 WARN_ONCE(1, "%s: STA %pM not found", sdata->name, bssid);
1993 goto out_err;
1994 }
1995 if (sta_info_move_state(sta, IEEE80211_STA_AUTH)) {
1996 sdata_info(sdata, "failed moving %pM to auth\n", bssid);
1997 goto out_err;
1998 }
1999 mutex_unlock(&sdata->local->sta_mtx);
2000
2001 return RX_MGMT_CFG80211_RX_AUTH;
2002 out_err:
2003 mutex_unlock(&sdata->local->sta_mtx);
2004 /* ignore frame -- wait for timeout */
2005 return RX_MGMT_NONE;
2006}
2007
2008
2009static enum rx_mgmt_action __must_check
2010ieee80211_rx_mgmt_deauth(struct ieee80211_sub_if_data *sdata,
2011 struct ieee80211_mgmt *mgmt, size_t len)
2012{
2013 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2014 const u8 *bssid = NULL;
2015 u16 reason_code;
2016
2017 lockdep_assert_held(&ifmgd->mtx);
2018
2019 if (len < 24 + 2)
2020 return RX_MGMT_NONE;
2021
2022 if (!ifmgd->associated ||
2023 !ether_addr_equal(mgmt->bssid, ifmgd->associated->bssid))
2024 return RX_MGMT_NONE;
2025
2026 bssid = ifmgd->associated->bssid;
2027
2028 reason_code = le16_to_cpu(mgmt->u.deauth.reason_code);
2029
2030 sdata_info(sdata, "deauthenticated from %pM (Reason: %u)\n",
2031 bssid, reason_code);
2032
2033 ieee80211_set_disassoc(sdata, 0, 0, false, NULL);
2034
2035 mutex_lock(&sdata->local->mtx);
2036 ieee80211_recalc_idle(sdata->local);
2037 mutex_unlock(&sdata->local->mtx);
2038
2039 return RX_MGMT_CFG80211_DEAUTH;
2040}
2041
2042
2043static enum rx_mgmt_action __must_check
2044ieee80211_rx_mgmt_disassoc(struct ieee80211_sub_if_data *sdata,
2045 struct ieee80211_mgmt *mgmt, size_t len)
2046{
2047 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2048 u16 reason_code;
2049
2050 lockdep_assert_held(&ifmgd->mtx);
2051
2052 if (len < 24 + 2)
2053 return RX_MGMT_NONE;
2054
2055 if (!ifmgd->associated ||
2056 !ether_addr_equal(mgmt->bssid, ifmgd->associated->bssid))
2057 return RX_MGMT_NONE;
2058
2059 reason_code = le16_to_cpu(mgmt->u.disassoc.reason_code);
2060
2061 sdata_info(sdata, "disassociated from %pM (Reason: %u)\n",
2062 mgmt->sa, reason_code);
2063
2064 ieee80211_set_disassoc(sdata, 0, 0, false, NULL);
2065
2066 mutex_lock(&sdata->local->mtx);
2067 ieee80211_recalc_idle(sdata->local);
2068 mutex_unlock(&sdata->local->mtx);
2069
2070 return RX_MGMT_CFG80211_DISASSOC;
2071}
2072
2073static void ieee80211_get_rates(struct ieee80211_supported_band *sband,
2074 u8 *supp_rates, unsigned int supp_rates_len,
2075 u32 *rates, u32 *basic_rates,
2076 bool *have_higher_than_11mbit,
2077 int *min_rate, int *min_rate_index)
2078{
2079 int i, j;
2080
2081 for (i = 0; i < supp_rates_len; i++) {
2082 int rate = (supp_rates[i] & 0x7f) * 5;
2083 bool is_basic = !!(supp_rates[i] & 0x80);
2084
2085 if (rate > 110)
2086 *have_higher_than_11mbit = true;
2087
2088 /*
2089 * BSS_MEMBERSHIP_SELECTOR_HT_PHY is defined in 802.11n-2009
2090 * 7.3.2.2 as a magic value instead of a rate. Hence, skip it.
2091 *
2092 * Note: Even through the membership selector and the basic
2093 * rate flag share the same bit, they are not exactly
2094 * the same.
2095 */
2096 if (!!(supp_rates[i] & 0x80) &&
2097 (supp_rates[i] & 0x7f) == BSS_MEMBERSHIP_SELECTOR_HT_PHY)
2098 continue;
2099
2100 for (j = 0; j < sband->n_bitrates; j++) {
2101 if (sband->bitrates[j].bitrate == rate) {
2102 *rates |= BIT(j);
2103 if (is_basic)
2104 *basic_rates |= BIT(j);
2105 if (rate < *min_rate) {
2106 *min_rate = rate;
2107 *min_rate_index = j;
2108 }
2109 break;
2110 }
2111 }
2112 }
2113}
2114
2115static void ieee80211_destroy_assoc_data(struct ieee80211_sub_if_data *sdata,
2116 bool assoc)
2117{
2118 struct ieee80211_mgd_assoc_data *assoc_data = sdata->u.mgd.assoc_data;
2119
2120 lockdep_assert_held(&sdata->u.mgd.mtx);
2121
2122 if (!assoc) {
2123 sta_info_destroy_addr(sdata, assoc_data->bss->bssid);
2124
2125 memset(sdata->u.mgd.bssid, 0, ETH_ALEN);
2126 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BSSID);
2127 sdata->u.mgd.flags = 0;
2128 ieee80211_vif_release_channel(sdata);
2129 }
2130
2131 kfree(assoc_data);
2132 sdata->u.mgd.assoc_data = NULL;
2133}
2134
2135static bool ieee80211_assoc_success(struct ieee80211_sub_if_data *sdata,
2136 struct cfg80211_bss *cbss,
2137 struct ieee80211_mgmt *mgmt, size_t len)
2138{
2139 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2140 struct ieee80211_local *local = sdata->local;
2141 struct ieee80211_supported_band *sband;
2142 struct sta_info *sta;
2143 u8 *pos;
2144 u16 capab_info, aid;
2145 struct ieee802_11_elems elems;
2146 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
2147 u32 changed = 0;
2148 int err;
2149
2150 /* AssocResp and ReassocResp have identical structure */
2151
2152 aid = le16_to_cpu(mgmt->u.assoc_resp.aid);
2153 capab_info = le16_to_cpu(mgmt->u.assoc_resp.capab_info);
2154
2155 if ((aid & (BIT(15) | BIT(14))) != (BIT(15) | BIT(14)))
2156 sdata_info(sdata, "invalid AID value 0x%x; bits 15:14 not set\n",
2157 aid);
2158 aid &= ~(BIT(15) | BIT(14));
2159
2160 ifmgd->broken_ap = false;
2161
2162 if (aid == 0 || aid > IEEE80211_MAX_AID) {
2163 sdata_info(sdata, "invalid AID value %d (out of range), turn off PS\n",
2164 aid);
2165 aid = 0;
2166 ifmgd->broken_ap = true;
2167 }
2168
2169 pos = mgmt->u.assoc_resp.variable;
2170 ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), &elems);
2171
2172 if (!elems.supp_rates) {
2173 sdata_info(sdata, "no SuppRates element in AssocResp\n");
2174 return false;
2175 }
2176
2177 ifmgd->aid = aid;
2178
2179 mutex_lock(&sdata->local->sta_mtx);
2180 /*
2181 * station info was already allocated and inserted before
2182 * the association and should be available to us
2183 */
2184 sta = sta_info_get(sdata, cbss->bssid);
2185 if (WARN_ON(!sta)) {
2186 mutex_unlock(&sdata->local->sta_mtx);
2187 return false;
2188 }
2189
2190 sband = local->hw.wiphy->bands[ieee80211_get_sdata_band(sdata)];
2191
2192 if (elems.ht_cap_elem && !(ifmgd->flags & IEEE80211_STA_DISABLE_HT))
2193 ieee80211_ht_cap_ie_to_sta_ht_cap(sdata, sband,
2194 elems.ht_cap_elem, &sta->sta.ht_cap);
2195
2196 sta->supports_40mhz =
2197 sta->sta.ht_cap.cap & IEEE80211_HT_CAP_SUP_WIDTH_20_40;
2198
2199 if (elems.vht_cap_elem && !(ifmgd->flags & IEEE80211_STA_DISABLE_VHT))
2200 ieee80211_vht_cap_ie_to_sta_vht_cap(sdata, sband,
2201 elems.vht_cap_elem,
2202 &sta->sta.vht_cap);
2203
2204 rate_control_rate_init(sta);
2205
2206 if (ifmgd->flags & IEEE80211_STA_MFP_ENABLED)
2207 set_sta_flag(sta, WLAN_STA_MFP);
2208
2209 if (elems.wmm_param)
2210 set_sta_flag(sta, WLAN_STA_WME);
2211
2212 err = sta_info_move_state(sta, IEEE80211_STA_AUTH);
2213 if (!err)
2214 err = sta_info_move_state(sta, IEEE80211_STA_ASSOC);
2215 if (!err && !(ifmgd->flags & IEEE80211_STA_CONTROL_PORT))
2216 err = sta_info_move_state(sta, IEEE80211_STA_AUTHORIZED);
2217 if (err) {
2218 sdata_info(sdata,
2219 "failed to move station %pM to desired state\n",
2220 sta->sta.addr);
2221 WARN_ON(__sta_info_destroy(sta));
2222 mutex_unlock(&sdata->local->sta_mtx);
2223 return false;
2224 }
2225
2226 mutex_unlock(&sdata->local->sta_mtx);
2227
2228 /*
2229 * Always handle WMM once after association regardless
2230 * of the first value the AP uses. Setting -1 here has
2231 * that effect because the AP values is an unsigned
2232 * 4-bit value.
2233 */
2234 ifmgd->wmm_last_param_set = -1;
2235
2236 if (elems.wmm_param)
2237 ieee80211_sta_wmm_params(local, sdata, elems.wmm_param,
2238 elems.wmm_param_len);
2239 else
2240 ieee80211_set_wmm_default(sdata, false);
2241 changed |= BSS_CHANGED_QOS;
2242
2243 if (elems.ht_operation && elems.wmm_param &&
2244 !(ifmgd->flags & IEEE80211_STA_DISABLE_HT))
2245 changed |= ieee80211_config_ht_tx(sdata, elems.ht_operation,
2246 cbss->bssid, false);
2247
2248 /* set AID and assoc capability,
2249 * ieee80211_set_associated() will tell the driver */
2250 bss_conf->aid = aid;
2251 bss_conf->assoc_capability = capab_info;
2252 ieee80211_set_associated(sdata, cbss, changed);
2253
2254 /*
2255 * If we're using 4-addr mode, let the AP know that we're
2256 * doing so, so that it can create the STA VLAN on its side
2257 */
2258 if (ifmgd->use_4addr)
2259 ieee80211_send_4addr_nullfunc(local, sdata);
2260
2261 /*
2262 * Start timer to probe the connection to the AP now.
2263 * Also start the timer that will detect beacon loss.
2264 */
2265 ieee80211_sta_rx_notify(sdata, (struct ieee80211_hdr *)mgmt);
2266 ieee80211_sta_reset_beacon_monitor(sdata);
2267
2268 return true;
2269}
2270
2271static enum rx_mgmt_action __must_check
2272ieee80211_rx_mgmt_assoc_resp(struct ieee80211_sub_if_data *sdata,
2273 struct ieee80211_mgmt *mgmt, size_t len,
2274 struct cfg80211_bss **bss)
2275{
2276 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2277 struct ieee80211_mgd_assoc_data *assoc_data = ifmgd->assoc_data;
2278 u16 capab_info, status_code, aid;
2279 struct ieee802_11_elems elems;
2280 u8 *pos;
2281 bool reassoc;
2282
2283 lockdep_assert_held(&ifmgd->mtx);
2284
2285 if (!assoc_data)
2286 return RX_MGMT_NONE;
2287 if (!ether_addr_equal(assoc_data->bss->bssid, mgmt->bssid))
2288 return RX_MGMT_NONE;
2289
2290 /*
2291 * AssocResp and ReassocResp have identical structure, so process both
2292 * of them in this function.
2293 */
2294
2295 if (len < 24 + 6)
2296 return RX_MGMT_NONE;
2297
2298 reassoc = ieee80211_is_reassoc_req(mgmt->frame_control);
2299 capab_info = le16_to_cpu(mgmt->u.assoc_resp.capab_info);
2300 status_code = le16_to_cpu(mgmt->u.assoc_resp.status_code);
2301 aid = le16_to_cpu(mgmt->u.assoc_resp.aid);
2302
2303 sdata_info(sdata,
2304 "RX %sssocResp from %pM (capab=0x%x status=%d aid=%d)\n",
2305 reassoc ? "Rea" : "A", mgmt->sa,
2306 capab_info, status_code, (u16)(aid & ~(BIT(15) | BIT(14))));
2307
2308 pos = mgmt->u.assoc_resp.variable;
2309 ieee802_11_parse_elems(pos, len - (pos - (u8 *) mgmt), &elems);
2310
2311 if (status_code == WLAN_STATUS_ASSOC_REJECTED_TEMPORARILY &&
2312 elems.timeout_int && elems.timeout_int_len == 5 &&
2313 elems.timeout_int[0] == WLAN_TIMEOUT_ASSOC_COMEBACK) {
2314 u32 tu, ms;
2315 tu = get_unaligned_le32(elems.timeout_int + 1);
2316 ms = tu * 1024 / 1000;
2317 sdata_info(sdata,
2318 "%pM rejected association temporarily; comeback duration %u TU (%u ms)\n",
2319 mgmt->sa, tu, ms);
2320 assoc_data->timeout = jiffies + msecs_to_jiffies(ms);
2321 if (ms > IEEE80211_ASSOC_TIMEOUT)
2322 run_again(ifmgd, assoc_data->timeout);
2323 return RX_MGMT_NONE;
2324 }
2325
2326 *bss = assoc_data->bss;
2327
2328 if (status_code != WLAN_STATUS_SUCCESS) {
2329 sdata_info(sdata, "%pM denied association (code=%d)\n",
2330 mgmt->sa, status_code);
2331 ieee80211_destroy_assoc_data(sdata, false);
2332 } else {
2333 if (!ieee80211_assoc_success(sdata, *bss, mgmt, len)) {
2334 /* oops -- internal error -- send timeout for now */
2335 ieee80211_destroy_assoc_data(sdata, false);
2336 cfg80211_put_bss(*bss);
2337 return RX_MGMT_CFG80211_ASSOC_TIMEOUT;
2338 }
2339 sdata_info(sdata, "associated\n");
2340
2341 /*
2342 * destroy assoc_data afterwards, as otherwise an idle
2343 * recalc after assoc_data is NULL but before associated
2344 * is set can cause the interface to go idle
2345 */
2346 ieee80211_destroy_assoc_data(sdata, true);
2347 }
2348
2349 return RX_MGMT_CFG80211_RX_ASSOC;
2350}
2351static void ieee80211_rx_bss_info(struct ieee80211_sub_if_data *sdata,
2352 struct ieee80211_mgmt *mgmt,
2353 size_t len,
2354 struct ieee80211_rx_status *rx_status,
2355 struct ieee802_11_elems *elems,
2356 bool beacon)
2357{
2358 struct ieee80211_local *local = sdata->local;
2359 int freq;
2360 struct ieee80211_bss *bss;
2361 struct ieee80211_channel *channel;
2362 bool need_ps = false;
2363
2364 if (sdata->u.mgd.associated &&
2365 ether_addr_equal(mgmt->bssid, sdata->u.mgd.associated->bssid)) {
2366 bss = (void *)sdata->u.mgd.associated->priv;
2367 /* not previously set so we may need to recalc */
2368 need_ps = !bss->dtim_period;
2369 }
2370
2371 if (elems->ds_params && elems->ds_params_len == 1)
2372 freq = ieee80211_channel_to_frequency(elems->ds_params[0],
2373 rx_status->band);
2374 else
2375 freq = rx_status->freq;
2376
2377 channel = ieee80211_get_channel(local->hw.wiphy, freq);
2378
2379 if (!channel || channel->flags & IEEE80211_CHAN_DISABLED)
2380 return;
2381
2382 bss = ieee80211_bss_info_update(local, rx_status, mgmt, len, elems,
2383 channel, beacon);
2384 if (bss)
2385 ieee80211_rx_bss_put(local, bss);
2386
2387 if (!sdata->u.mgd.associated)
2388 return;
2389
2390 if (need_ps) {
2391 mutex_lock(&local->iflist_mtx);
2392 ieee80211_recalc_ps(local, -1);
2393 mutex_unlock(&local->iflist_mtx);
2394 }
2395
2396 if (elems->ch_switch_ie &&
2397 memcmp(mgmt->bssid, sdata->u.mgd.associated->bssid, ETH_ALEN) == 0)
2398 ieee80211_sta_process_chanswitch(sdata, elems->ch_switch_ie,
2399 bss, rx_status->mactime);
2400}
2401
2402
2403static void ieee80211_rx_mgmt_probe_resp(struct ieee80211_sub_if_data *sdata,
2404 struct sk_buff *skb)
2405{
2406 struct ieee80211_mgmt *mgmt = (void *)skb->data;
2407 struct ieee80211_if_managed *ifmgd;
2408 struct ieee80211_rx_status *rx_status = (void *) skb->cb;
2409 size_t baselen, len = skb->len;
2410 struct ieee802_11_elems elems;
2411
2412 ifmgd = &sdata->u.mgd;
2413
2414 ASSERT_MGD_MTX(ifmgd);
2415
2416 if (!ether_addr_equal(mgmt->da, sdata->vif.addr))
2417 return; /* ignore ProbeResp to foreign address */
2418
2419 baselen = (u8 *) mgmt->u.probe_resp.variable - (u8 *) mgmt;
2420 if (baselen > len)
2421 return;
2422
2423 ieee802_11_parse_elems(mgmt->u.probe_resp.variable, len - baselen,
2424 &elems);
2425
2426 ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems, false);
2427
2428 if (ifmgd->associated &&
2429 ether_addr_equal(mgmt->bssid, ifmgd->associated->bssid))
2430 ieee80211_reset_ap_probe(sdata);
2431
2432 if (ifmgd->auth_data && !ifmgd->auth_data->bss->proberesp_ies &&
2433 ether_addr_equal(mgmt->bssid, ifmgd->auth_data->bss->bssid)) {
2434 /* got probe response, continue with auth */
2435 sdata_info(sdata, "direct probe responded\n");
2436 ifmgd->auth_data->tries = 0;
2437 ifmgd->auth_data->timeout = jiffies;
2438 run_again(ifmgd, ifmgd->auth_data->timeout);
2439 }
2440}
2441
2442/*
2443 * This is the canonical list of information elements we care about,
2444 * the filter code also gives us all changes to the Microsoft OUI
2445 * (00:50:F2) vendor IE which is used for WMM which we need to track.
2446 *
2447 * We implement beacon filtering in software since that means we can
2448 * avoid processing the frame here and in cfg80211, and userspace
2449 * will not be able to tell whether the hardware supports it or not.
2450 *
2451 * XXX: This list needs to be dynamic -- userspace needs to be able to
2452 * add items it requires. It also needs to be able to tell us to
2453 * look out for other vendor IEs.
2454 */
2455static const u64 care_about_ies =
2456 (1ULL << WLAN_EID_COUNTRY) |
2457 (1ULL << WLAN_EID_ERP_INFO) |
2458 (1ULL << WLAN_EID_CHANNEL_SWITCH) |
2459 (1ULL << WLAN_EID_PWR_CONSTRAINT) |
2460 (1ULL << WLAN_EID_HT_CAPABILITY) |
2461 (1ULL << WLAN_EID_HT_OPERATION);
2462
2463static void ieee80211_rx_mgmt_beacon(struct ieee80211_sub_if_data *sdata,
2464 struct ieee80211_mgmt *mgmt,
2465 size_t len,
2466 struct ieee80211_rx_status *rx_status)
2467{
2468 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2469 struct ieee80211_bss_conf *bss_conf = &sdata->vif.bss_conf;
2470 size_t baselen;
2471 struct ieee802_11_elems elems;
2472 struct ieee80211_local *local = sdata->local;
2473 struct ieee80211_chanctx_conf *chanctx_conf;
2474 struct ieee80211_channel *chan;
2475 u32 changed = 0;
2476 bool erp_valid;
2477 u8 erp_value = 0;
2478 u32 ncrc;
2479 u8 *bssid;
2480
2481 lockdep_assert_held(&ifmgd->mtx);
2482
2483 /* Process beacon from the current BSS */
2484 baselen = (u8 *) mgmt->u.beacon.variable - (u8 *) mgmt;
2485 if (baselen > len)
2486 return;
2487
2488 rcu_read_lock();
2489 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
2490 if (!chanctx_conf) {
2491 rcu_read_unlock();
2492 return;
2493 }
2494
2495 if (rx_status->freq != chanctx_conf->def.chan->center_freq) {
2496 rcu_read_unlock();
2497 return;
2498 }
2499 chan = chanctx_conf->def.chan;
2500 rcu_read_unlock();
2501
2502 if (ifmgd->assoc_data && !ifmgd->assoc_data->have_beacon &&
2503 ether_addr_equal(mgmt->bssid, ifmgd->assoc_data->bss->bssid)) {
2504 ieee802_11_parse_elems(mgmt->u.beacon.variable,
2505 len - baselen, &elems);
2506
2507 ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems,
2508 false);
2509 ifmgd->assoc_data->have_beacon = true;
2510 ifmgd->assoc_data->sent_assoc = false;
2511 /* continue assoc process */
2512 ifmgd->assoc_data->timeout = jiffies;
2513 run_again(ifmgd, ifmgd->assoc_data->timeout);
2514 return;
2515 }
2516
2517 if (!ifmgd->associated ||
2518 !ether_addr_equal(mgmt->bssid, ifmgd->associated->bssid))
2519 return;
2520 bssid = ifmgd->associated->bssid;
2521
2522 /* Track average RSSI from the Beacon frames of the current AP */
2523 ifmgd->last_beacon_signal = rx_status->signal;
2524 if (ifmgd->flags & IEEE80211_STA_RESET_SIGNAL_AVE) {
2525 ifmgd->flags &= ~IEEE80211_STA_RESET_SIGNAL_AVE;
2526 ifmgd->ave_beacon_signal = rx_status->signal * 16;
2527 ifmgd->last_cqm_event_signal = 0;
2528 ifmgd->count_beacon_signal = 1;
2529 ifmgd->last_ave_beacon_signal = 0;
2530 } else {
2531 ifmgd->ave_beacon_signal =
2532 (IEEE80211_SIGNAL_AVE_WEIGHT * rx_status->signal * 16 +
2533 (16 - IEEE80211_SIGNAL_AVE_WEIGHT) *
2534 ifmgd->ave_beacon_signal) / 16;
2535 ifmgd->count_beacon_signal++;
2536 }
2537
2538 if (ifmgd->rssi_min_thold != ifmgd->rssi_max_thold &&
2539 ifmgd->count_beacon_signal >= IEEE80211_SIGNAL_AVE_MIN_COUNT) {
2540 int sig = ifmgd->ave_beacon_signal;
2541 int last_sig = ifmgd->last_ave_beacon_signal;
2542
2543 /*
2544 * if signal crosses either of the boundaries, invoke callback
2545 * with appropriate parameters
2546 */
2547 if (sig > ifmgd->rssi_max_thold &&
2548 (last_sig <= ifmgd->rssi_min_thold || last_sig == 0)) {
2549 ifmgd->last_ave_beacon_signal = sig;
2550 drv_rssi_callback(local, RSSI_EVENT_HIGH);
2551 } else if (sig < ifmgd->rssi_min_thold &&
2552 (last_sig >= ifmgd->rssi_max_thold ||
2553 last_sig == 0)) {
2554 ifmgd->last_ave_beacon_signal = sig;
2555 drv_rssi_callback(local, RSSI_EVENT_LOW);
2556 }
2557 }
2558
2559 if (bss_conf->cqm_rssi_thold &&
2560 ifmgd->count_beacon_signal >= IEEE80211_SIGNAL_AVE_MIN_COUNT &&
2561 !(sdata->vif.driver_flags & IEEE80211_VIF_SUPPORTS_CQM_RSSI)) {
2562 int sig = ifmgd->ave_beacon_signal / 16;
2563 int last_event = ifmgd->last_cqm_event_signal;
2564 int thold = bss_conf->cqm_rssi_thold;
2565 int hyst = bss_conf->cqm_rssi_hyst;
2566 if (sig < thold &&
2567 (last_event == 0 || sig < last_event - hyst)) {
2568 ifmgd->last_cqm_event_signal = sig;
2569 ieee80211_cqm_rssi_notify(
2570 &sdata->vif,
2571 NL80211_CQM_RSSI_THRESHOLD_EVENT_LOW,
2572 GFP_KERNEL);
2573 } else if (sig > thold &&
2574 (last_event == 0 || sig > last_event + hyst)) {
2575 ifmgd->last_cqm_event_signal = sig;
2576 ieee80211_cqm_rssi_notify(
2577 &sdata->vif,
2578 NL80211_CQM_RSSI_THRESHOLD_EVENT_HIGH,
2579 GFP_KERNEL);
2580 }
2581 }
2582
2583 if (ifmgd->flags & IEEE80211_STA_BEACON_POLL) {
2584 mlme_dbg_ratelimited(sdata,
2585 "cancelling probereq poll due to a received beacon\n");
2586 mutex_lock(&local->mtx);
2587 ifmgd->flags &= ~IEEE80211_STA_BEACON_POLL;
2588 ieee80211_run_deferred_scan(local);
2589 mutex_unlock(&local->mtx);
2590
2591 mutex_lock(&local->iflist_mtx);
2592 ieee80211_recalc_ps(local, -1);
2593 mutex_unlock(&local->iflist_mtx);
2594 }
2595
2596 /*
2597 * Push the beacon loss detection into the future since
2598 * we are processing a beacon from the AP just now.
2599 */
2600 ieee80211_sta_reset_beacon_monitor(sdata);
2601
2602 ncrc = crc32_be(0, (void *)&mgmt->u.beacon.beacon_int, 4);
2603 ncrc = ieee802_11_parse_elems_crc(mgmt->u.beacon.variable,
2604 len - baselen, &elems,
2605 care_about_ies, ncrc);
2606
2607 if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK) {
2608 bool directed_tim = ieee80211_check_tim(elems.tim,
2609 elems.tim_len,
2610 ifmgd->aid);
2611 if (directed_tim) {
2612 if (local->hw.conf.dynamic_ps_timeout > 0) {
2613 if (local->hw.conf.flags & IEEE80211_CONF_PS) {
2614 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
2615 ieee80211_hw_config(local,
2616 IEEE80211_CONF_CHANGE_PS);
2617 }
2618 ieee80211_send_nullfunc(local, sdata, 0);
2619 } else if (!local->pspolling && sdata->u.mgd.powersave) {
2620 local->pspolling = true;
2621
2622 /*
2623 * Here is assumed that the driver will be
2624 * able to send ps-poll frame and receive a
2625 * response even though power save mode is
2626 * enabled, but some drivers might require
2627 * to disable power save here. This needs
2628 * to be investigated.
2629 */
2630 ieee80211_send_pspoll(local, sdata);
2631 }
2632 }
2633 }
2634
2635 if (sdata->vif.p2p) {
2636 u8 noa[2];
2637 int ret;
2638
2639 ret = cfg80211_get_p2p_attr(mgmt->u.beacon.variable,
2640 len - baselen,
2641 IEEE80211_P2P_ATTR_ABSENCE_NOTICE,
2642 noa, sizeof(noa));
2643 if (ret >= 2 && sdata->u.mgd.p2p_noa_index != noa[0]) {
2644 bss_conf->p2p_oppps = noa[1] & 0x80;
2645 bss_conf->p2p_ctwindow = noa[1] & 0x7f;
2646 changed |= BSS_CHANGED_P2P_PS;
2647 sdata->u.mgd.p2p_noa_index = noa[0];
2648 /*
2649 * make sure we update all information, the CRC
2650 * mechanism doesn't look at P2P attributes.
2651 */
2652 ifmgd->beacon_crc_valid = false;
2653 }
2654 }
2655
2656 if (ncrc == ifmgd->beacon_crc && ifmgd->beacon_crc_valid)
2657 return;
2658 ifmgd->beacon_crc = ncrc;
2659 ifmgd->beacon_crc_valid = true;
2660
2661 ieee80211_rx_bss_info(sdata, mgmt, len, rx_status, &elems,
2662 true);
2663
2664 if (ieee80211_sta_wmm_params(local, sdata, elems.wmm_param,
2665 elems.wmm_param_len))
2666 changed |= BSS_CHANGED_QOS;
2667
2668 if (elems.erp_info && elems.erp_info_len >= 1) {
2669 erp_valid = true;
2670 erp_value = elems.erp_info[0];
2671 } else {
2672 erp_valid = false;
2673 }
2674 changed |= ieee80211_handle_bss_capability(sdata,
2675 le16_to_cpu(mgmt->u.beacon.capab_info),
2676 erp_valid, erp_value);
2677
2678
2679 if (elems.ht_cap_elem && elems.ht_operation && elems.wmm_param &&
2680 !(ifmgd->flags & IEEE80211_STA_DISABLE_HT))
2681 changed |= ieee80211_config_ht_tx(sdata, elems.ht_operation,
2682 bssid, true);
2683
2684 if (elems.country_elem && elems.pwr_constr_elem &&
2685 mgmt->u.probe_resp.capab_info &
2686 cpu_to_le16(WLAN_CAPABILITY_SPECTRUM_MGMT))
2687 changed |= ieee80211_handle_pwr_constr(sdata, chan,
2688 elems.country_elem,
2689 elems.country_elem_len,
2690 elems.pwr_constr_elem);
2691
2692 ieee80211_bss_info_change_notify(sdata, changed);
2693}
2694
2695void ieee80211_sta_rx_queued_mgmt(struct ieee80211_sub_if_data *sdata,
2696 struct sk_buff *skb)
2697{
2698 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2699 struct ieee80211_rx_status *rx_status;
2700 struct ieee80211_mgmt *mgmt;
2701 struct cfg80211_bss *bss = NULL;
2702 enum rx_mgmt_action rma = RX_MGMT_NONE;
2703 u16 fc;
2704
2705 rx_status = (struct ieee80211_rx_status *) skb->cb;
2706 mgmt = (struct ieee80211_mgmt *) skb->data;
2707 fc = le16_to_cpu(mgmt->frame_control);
2708
2709 mutex_lock(&ifmgd->mtx);
2710
2711 switch (fc & IEEE80211_FCTL_STYPE) {
2712 case IEEE80211_STYPE_BEACON:
2713 ieee80211_rx_mgmt_beacon(sdata, mgmt, skb->len, rx_status);
2714 break;
2715 case IEEE80211_STYPE_PROBE_RESP:
2716 ieee80211_rx_mgmt_probe_resp(sdata, skb);
2717 break;
2718 case IEEE80211_STYPE_AUTH:
2719 rma = ieee80211_rx_mgmt_auth(sdata, mgmt, skb->len);
2720 break;
2721 case IEEE80211_STYPE_DEAUTH:
2722 rma = ieee80211_rx_mgmt_deauth(sdata, mgmt, skb->len);
2723 break;
2724 case IEEE80211_STYPE_DISASSOC:
2725 rma = ieee80211_rx_mgmt_disassoc(sdata, mgmt, skb->len);
2726 break;
2727 case IEEE80211_STYPE_ASSOC_RESP:
2728 case IEEE80211_STYPE_REASSOC_RESP:
2729 rma = ieee80211_rx_mgmt_assoc_resp(sdata, mgmt, skb->len, &bss);
2730 break;
2731 case IEEE80211_STYPE_ACTION:
2732 switch (mgmt->u.action.category) {
2733 case WLAN_CATEGORY_SPECTRUM_MGMT:
2734 ieee80211_sta_process_chanswitch(sdata,
2735 &mgmt->u.action.u.chan_switch.sw_elem,
2736 (void *)ifmgd->associated->priv,
2737 rx_status->mactime);
2738 break;
2739 }
2740 }
2741 mutex_unlock(&ifmgd->mtx);
2742
2743 switch (rma) {
2744 case RX_MGMT_NONE:
2745 /* no action */
2746 break;
2747 case RX_MGMT_CFG80211_DEAUTH:
2748 cfg80211_send_deauth(sdata->dev, (u8 *)mgmt, skb->len);
2749 break;
2750 case RX_MGMT_CFG80211_DISASSOC:
2751 cfg80211_send_disassoc(sdata->dev, (u8 *)mgmt, skb->len);
2752 break;
2753 case RX_MGMT_CFG80211_RX_AUTH:
2754 cfg80211_send_rx_auth(sdata->dev, (u8 *)mgmt, skb->len);
2755 break;
2756 case RX_MGMT_CFG80211_RX_ASSOC:
2757 cfg80211_send_rx_assoc(sdata->dev, bss, (u8 *)mgmt, skb->len);
2758 break;
2759 case RX_MGMT_CFG80211_ASSOC_TIMEOUT:
2760 cfg80211_send_assoc_timeout(sdata->dev, mgmt->bssid);
2761 break;
2762 default:
2763 WARN(1, "unexpected: %d", rma);
2764 }
2765}
2766
2767static void ieee80211_sta_timer(unsigned long data)
2768{
2769 struct ieee80211_sub_if_data *sdata =
2770 (struct ieee80211_sub_if_data *) data;
2771 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2772 struct ieee80211_local *local = sdata->local;
2773
2774 if (local->quiescing) {
2775 set_bit(TMR_RUNNING_TIMER, &ifmgd->timers_running);
2776 return;
2777 }
2778
2779 ieee80211_queue_work(&local->hw, &sdata->work);
2780}
2781
2782static void ieee80211_sta_connection_lost(struct ieee80211_sub_if_data *sdata,
2783 u8 *bssid, u8 reason)
2784{
2785 struct ieee80211_local *local = sdata->local;
2786 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2787 u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN];
2788
2789 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH, reason,
2790 false, frame_buf);
2791 mutex_unlock(&ifmgd->mtx);
2792
2793 /*
2794 * must be outside lock due to cfg80211,
2795 * but that's not a problem.
2796 */
2797 cfg80211_send_deauth(sdata->dev, frame_buf, IEEE80211_DEAUTH_FRAME_LEN);
2798
2799 mutex_lock(&local->mtx);
2800 ieee80211_recalc_idle(local);
2801 mutex_unlock(&local->mtx);
2802
2803 mutex_lock(&ifmgd->mtx);
2804}
2805
2806static int ieee80211_probe_auth(struct ieee80211_sub_if_data *sdata)
2807{
2808 struct ieee80211_local *local = sdata->local;
2809 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2810 struct ieee80211_mgd_auth_data *auth_data = ifmgd->auth_data;
2811
2812 lockdep_assert_held(&ifmgd->mtx);
2813
2814 if (WARN_ON_ONCE(!auth_data))
2815 return -EINVAL;
2816
2817 auth_data->tries++;
2818
2819 if (auth_data->tries > IEEE80211_AUTH_MAX_TRIES) {
2820 sdata_info(sdata, "authentication with %pM timed out\n",
2821 auth_data->bss->bssid);
2822
2823 /*
2824 * Most likely AP is not in the range so remove the
2825 * bss struct for that AP.
2826 */
2827 cfg80211_unlink_bss(local->hw.wiphy, auth_data->bss);
2828
2829 return -ETIMEDOUT;
2830 }
2831
2832 drv_mgd_prepare_tx(local, sdata);
2833
2834 if (auth_data->bss->proberesp_ies) {
2835 u16 trans = 1;
2836 u16 status = 0;
2837
2838 sdata_info(sdata, "send auth to %pM (try %d/%d)\n",
2839 auth_data->bss->bssid, auth_data->tries,
2840 IEEE80211_AUTH_MAX_TRIES);
2841
2842 auth_data->expected_transaction = 2;
2843
2844 if (auth_data->algorithm == WLAN_AUTH_SAE) {
2845 trans = auth_data->sae_trans;
2846 status = auth_data->sae_status;
2847 auth_data->expected_transaction = trans;
2848 }
2849
2850 ieee80211_send_auth(sdata, trans, auth_data->algorithm, status,
2851 auth_data->data, auth_data->data_len,
2852 auth_data->bss->bssid,
2853 auth_data->bss->bssid, NULL, 0, 0);
2854 } else {
2855 const u8 *ssidie;
2856
2857 sdata_info(sdata, "direct probe to %pM (try %d/%i)\n",
2858 auth_data->bss->bssid, auth_data->tries,
2859 IEEE80211_AUTH_MAX_TRIES);
2860
2861 ssidie = ieee80211_bss_get_ie(auth_data->bss, WLAN_EID_SSID);
2862 if (!ssidie)
2863 return -EINVAL;
2864 /*
2865 * Direct probe is sent to broadcast address as some APs
2866 * will not answer to direct packet in unassociated state.
2867 */
2868 ieee80211_send_probe_req(sdata, NULL, ssidie + 2, ssidie[1],
2869 NULL, 0, (u32) -1, true, false,
2870 auth_data->bss->channel, false);
2871 }
2872
2873 auth_data->timeout = jiffies + IEEE80211_AUTH_TIMEOUT;
2874 run_again(ifmgd, auth_data->timeout);
2875
2876 return 0;
2877}
2878
2879static int ieee80211_do_assoc(struct ieee80211_sub_if_data *sdata)
2880{
2881 struct ieee80211_mgd_assoc_data *assoc_data = sdata->u.mgd.assoc_data;
2882 struct ieee80211_local *local = sdata->local;
2883
2884 lockdep_assert_held(&sdata->u.mgd.mtx);
2885
2886 assoc_data->tries++;
2887 if (assoc_data->tries > IEEE80211_ASSOC_MAX_TRIES) {
2888 sdata_info(sdata, "association with %pM timed out\n",
2889 assoc_data->bss->bssid);
2890
2891 /*
2892 * Most likely AP is not in the range so remove the
2893 * bss struct for that AP.
2894 */
2895 cfg80211_unlink_bss(local->hw.wiphy, assoc_data->bss);
2896
2897 return -ETIMEDOUT;
2898 }
2899
2900 sdata_info(sdata, "associate with %pM (try %d/%d)\n",
2901 assoc_data->bss->bssid, assoc_data->tries,
2902 IEEE80211_ASSOC_MAX_TRIES);
2903 ieee80211_send_assoc(sdata);
2904
2905 assoc_data->timeout = jiffies + IEEE80211_ASSOC_TIMEOUT;
2906 run_again(&sdata->u.mgd, assoc_data->timeout);
2907
2908 return 0;
2909}
2910
2911void ieee80211_sta_work(struct ieee80211_sub_if_data *sdata)
2912{
2913 struct ieee80211_local *local = sdata->local;
2914 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
2915
2916 mutex_lock(&ifmgd->mtx);
2917
2918 if (ifmgd->auth_data &&
2919 time_after(jiffies, ifmgd->auth_data->timeout)) {
2920 if (ifmgd->auth_data->done) {
2921 /*
2922 * ok ... we waited for assoc but userspace didn't,
2923 * so let's just kill the auth data
2924 */
2925 ieee80211_destroy_auth_data(sdata, false);
2926 } else if (ieee80211_probe_auth(sdata)) {
2927 u8 bssid[ETH_ALEN];
2928
2929 memcpy(bssid, ifmgd->auth_data->bss->bssid, ETH_ALEN);
2930
2931 ieee80211_destroy_auth_data(sdata, false);
2932
2933 mutex_unlock(&ifmgd->mtx);
2934 cfg80211_send_auth_timeout(sdata->dev, bssid);
2935 mutex_lock(&ifmgd->mtx);
2936 }
2937 } else if (ifmgd->auth_data)
2938 run_again(ifmgd, ifmgd->auth_data->timeout);
2939
2940 if (ifmgd->assoc_data &&
2941 time_after(jiffies, ifmgd->assoc_data->timeout)) {
2942 if (!ifmgd->assoc_data->have_beacon ||
2943 ieee80211_do_assoc(sdata)) {
2944 u8 bssid[ETH_ALEN];
2945
2946 memcpy(bssid, ifmgd->assoc_data->bss->bssid, ETH_ALEN);
2947
2948 ieee80211_destroy_assoc_data(sdata, false);
2949
2950 mutex_unlock(&ifmgd->mtx);
2951 cfg80211_send_assoc_timeout(sdata->dev, bssid);
2952 mutex_lock(&ifmgd->mtx);
2953 }
2954 } else if (ifmgd->assoc_data)
2955 run_again(ifmgd, ifmgd->assoc_data->timeout);
2956
2957 if (ifmgd->flags & (IEEE80211_STA_BEACON_POLL |
2958 IEEE80211_STA_CONNECTION_POLL) &&
2959 ifmgd->associated) {
2960 u8 bssid[ETH_ALEN];
2961 int max_tries;
2962
2963 memcpy(bssid, ifmgd->associated->bssid, ETH_ALEN);
2964
2965 if (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS)
2966 max_tries = max_nullfunc_tries;
2967 else
2968 max_tries = max_probe_tries;
2969
2970 /* ACK received for nullfunc probing frame */
2971 if (!ifmgd->probe_send_count)
2972 ieee80211_reset_ap_probe(sdata);
2973 else if (ifmgd->nullfunc_failed) {
2974 if (ifmgd->probe_send_count < max_tries) {
2975 mlme_dbg(sdata,
2976 "No ack for nullfunc frame to AP %pM, try %d/%i\n",
2977 bssid, ifmgd->probe_send_count,
2978 max_tries);
2979 ieee80211_mgd_probe_ap_send(sdata);
2980 } else {
2981 mlme_dbg(sdata,
2982 "No ack for nullfunc frame to AP %pM, disconnecting.\n",
2983 bssid);
2984 ieee80211_sta_connection_lost(sdata, bssid,
2985 WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY);
2986 }
2987 } else if (time_is_after_jiffies(ifmgd->probe_timeout))
2988 run_again(ifmgd, ifmgd->probe_timeout);
2989 else if (local->hw.flags & IEEE80211_HW_REPORTS_TX_ACK_STATUS) {
2990 mlme_dbg(sdata,
2991 "Failed to send nullfunc to AP %pM after %dms, disconnecting\n",
2992 bssid, probe_wait_ms);
2993 ieee80211_sta_connection_lost(sdata, bssid,
2994 WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY);
2995 } else if (ifmgd->probe_send_count < max_tries) {
2996 mlme_dbg(sdata,
2997 "No probe response from AP %pM after %dms, try %d/%i\n",
2998 bssid, probe_wait_ms,
2999 ifmgd->probe_send_count, max_tries);
3000 ieee80211_mgd_probe_ap_send(sdata);
3001 } else {
3002 /*
3003 * We actually lost the connection ... or did we?
3004 * Let's make sure!
3005 */
3006 wiphy_debug(local->hw.wiphy,
3007 "%s: No probe response from AP %pM"
3008 " after %dms, disconnecting.\n",
3009 sdata->name,
3010 bssid, probe_wait_ms);
3011
3012 ieee80211_sta_connection_lost(sdata, bssid,
3013 WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY);
3014 }
3015 }
3016
3017 mutex_unlock(&ifmgd->mtx);
3018
3019 mutex_lock(&local->mtx);
3020 ieee80211_recalc_idle(local);
3021 mutex_unlock(&local->mtx);
3022}
3023
3024static void ieee80211_sta_bcn_mon_timer(unsigned long data)
3025{
3026 struct ieee80211_sub_if_data *sdata =
3027 (struct ieee80211_sub_if_data *) data;
3028 struct ieee80211_local *local = sdata->local;
3029
3030 if (local->quiescing)
3031 return;
3032
3033 ieee80211_queue_work(&sdata->local->hw,
3034 &sdata->u.mgd.beacon_connection_loss_work);
3035}
3036
3037static void ieee80211_sta_conn_mon_timer(unsigned long data)
3038{
3039 struct ieee80211_sub_if_data *sdata =
3040 (struct ieee80211_sub_if_data *) data;
3041 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3042 struct ieee80211_local *local = sdata->local;
3043
3044 if (local->quiescing)
3045 return;
3046
3047 ieee80211_queue_work(&local->hw, &ifmgd->monitor_work);
3048}
3049
3050static void ieee80211_sta_monitor_work(struct work_struct *work)
3051{
3052 struct ieee80211_sub_if_data *sdata =
3053 container_of(work, struct ieee80211_sub_if_data,
3054 u.mgd.monitor_work);
3055
3056 ieee80211_mgd_probe_ap(sdata, false);
3057}
3058
3059static void ieee80211_restart_sta_timer(struct ieee80211_sub_if_data *sdata)
3060{
3061 u32 flags;
3062
3063 if (sdata->vif.type == NL80211_IFTYPE_STATION) {
3064 __ieee80211_stop_poll(sdata);
3065
3066 /* let's probe the connection once */
3067 flags = sdata->local->hw.flags;
3068 if (!(flags & IEEE80211_HW_CONNECTION_MONITOR))
3069 ieee80211_queue_work(&sdata->local->hw,
3070 &sdata->u.mgd.monitor_work);
3071 /* and do all the other regular work too */
3072 ieee80211_queue_work(&sdata->local->hw, &sdata->work);
3073 }
3074}
3075
3076#ifdef CONFIG_PM
3077void ieee80211_sta_quiesce(struct ieee80211_sub_if_data *sdata)
3078{
3079 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3080
3081 /*
3082 * we need to use atomic bitops for the running bits
3083 * only because both timers might fire at the same
3084 * time -- the code here is properly synchronised.
3085 */
3086
3087 cancel_work_sync(&ifmgd->request_smps_work);
3088
3089 cancel_work_sync(&ifmgd->monitor_work);
3090 cancel_work_sync(&ifmgd->beacon_connection_loss_work);
3091 cancel_work_sync(&ifmgd->csa_connection_drop_work);
3092 if (del_timer_sync(&ifmgd->timer))
3093 set_bit(TMR_RUNNING_TIMER, &ifmgd->timers_running);
3094
3095 cancel_work_sync(&ifmgd->chswitch_work);
3096 if (del_timer_sync(&ifmgd->chswitch_timer))
3097 set_bit(TMR_RUNNING_CHANSW, &ifmgd->timers_running);
3098
3099 /* these will just be re-established on connection */
3100 del_timer_sync(&ifmgd->conn_mon_timer);
3101 del_timer_sync(&ifmgd->bcn_mon_timer);
3102}
3103
3104void ieee80211_sta_restart(struct ieee80211_sub_if_data *sdata)
3105{
3106 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3107
3108 if (!ifmgd->associated)
3109 return;
3110
3111 if (sdata->flags & IEEE80211_SDATA_DISCONNECT_RESUME) {
3112 sdata->flags &= ~IEEE80211_SDATA_DISCONNECT_RESUME;
3113 mutex_lock(&ifmgd->mtx);
3114 if (ifmgd->associated) {
3115 mlme_dbg(sdata,
3116 "driver requested disconnect after resume\n");
3117 ieee80211_sta_connection_lost(sdata,
3118 ifmgd->associated->bssid,
3119 WLAN_REASON_UNSPECIFIED);
3120 mutex_unlock(&ifmgd->mtx);
3121 return;
3122 }
3123 mutex_unlock(&ifmgd->mtx);
3124 }
3125
3126 if (test_and_clear_bit(TMR_RUNNING_TIMER, &ifmgd->timers_running))
3127 add_timer(&ifmgd->timer);
3128 if (test_and_clear_bit(TMR_RUNNING_CHANSW, &ifmgd->timers_running))
3129 add_timer(&ifmgd->chswitch_timer);
3130 ieee80211_sta_reset_beacon_monitor(sdata);
3131
3132 mutex_lock(&sdata->local->mtx);
3133 ieee80211_restart_sta_timer(sdata);
3134 mutex_unlock(&sdata->local->mtx);
3135}
3136#endif
3137
3138/* interface setup */
3139void ieee80211_sta_setup_sdata(struct ieee80211_sub_if_data *sdata)
3140{
3141 struct ieee80211_if_managed *ifmgd;
3142
3143 ifmgd = &sdata->u.mgd;
3144 INIT_WORK(&ifmgd->monitor_work, ieee80211_sta_monitor_work);
3145 INIT_WORK(&ifmgd->chswitch_work, ieee80211_chswitch_work);
3146 INIT_WORK(&ifmgd->beacon_connection_loss_work,
3147 ieee80211_beacon_connection_loss_work);
3148 INIT_WORK(&ifmgd->csa_connection_drop_work,
3149 ieee80211_csa_connection_drop_work);
3150 INIT_WORK(&ifmgd->request_smps_work, ieee80211_request_smps_work);
3151 setup_timer(&ifmgd->timer, ieee80211_sta_timer,
3152 (unsigned long) sdata);
3153 setup_timer(&ifmgd->bcn_mon_timer, ieee80211_sta_bcn_mon_timer,
3154 (unsigned long) sdata);
3155 setup_timer(&ifmgd->conn_mon_timer, ieee80211_sta_conn_mon_timer,
3156 (unsigned long) sdata);
3157 setup_timer(&ifmgd->chswitch_timer, ieee80211_chswitch_timer,
3158 (unsigned long) sdata);
3159
3160 ifmgd->flags = 0;
3161 ifmgd->powersave = sdata->wdev.ps;
3162 ifmgd->uapsd_queues = IEEE80211_DEFAULT_UAPSD_QUEUES;
3163 ifmgd->uapsd_max_sp_len = IEEE80211_DEFAULT_MAX_SP_LEN;
3164
3165 mutex_init(&ifmgd->mtx);
3166
3167 if (sdata->local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_SMPS)
3168 ifmgd->req_smps = IEEE80211_SMPS_AUTOMATIC;
3169 else
3170 ifmgd->req_smps = IEEE80211_SMPS_OFF;
3171}
3172
3173/* scan finished notification */
3174void ieee80211_mlme_notify_scan_completed(struct ieee80211_local *local)
3175{
3176 struct ieee80211_sub_if_data *sdata;
3177
3178 /* Restart STA timers */
3179 rcu_read_lock();
3180 list_for_each_entry_rcu(sdata, &local->interfaces, list)
3181 ieee80211_restart_sta_timer(sdata);
3182 rcu_read_unlock();
3183}
3184
3185int ieee80211_max_network_latency(struct notifier_block *nb,
3186 unsigned long data, void *dummy)
3187{
3188 s32 latency_usec = (s32) data;
3189 struct ieee80211_local *local =
3190 container_of(nb, struct ieee80211_local,
3191 network_latency_notifier);
3192
3193 mutex_lock(&local->iflist_mtx);
3194 ieee80211_recalc_ps(local, latency_usec);
3195 mutex_unlock(&local->iflist_mtx);
3196
3197 return 0;
3198}
3199
3200static u32 chandef_downgrade(struct cfg80211_chan_def *c)
3201{
3202 u32 ret;
3203 int tmp;
3204
3205 switch (c->width) {
3206 case NL80211_CHAN_WIDTH_20:
3207 c->width = NL80211_CHAN_WIDTH_20_NOHT;
3208 ret = IEEE80211_STA_DISABLE_HT | IEEE80211_STA_DISABLE_VHT;
3209 break;
3210 case NL80211_CHAN_WIDTH_40:
3211 c->width = NL80211_CHAN_WIDTH_20;
3212 c->center_freq1 = c->chan->center_freq;
3213 ret = IEEE80211_STA_DISABLE_40MHZ |
3214 IEEE80211_STA_DISABLE_VHT;
3215 break;
3216 case NL80211_CHAN_WIDTH_80:
3217 tmp = (30 + c->chan->center_freq - c->center_freq1)/20;
3218 /* n_P40 */
3219 tmp /= 2;
3220 /* freq_P40 */
3221 c->center_freq1 = c->center_freq1 - 20 + 40 * tmp;
3222 c->width = NL80211_CHAN_WIDTH_40;
3223 ret = IEEE80211_STA_DISABLE_VHT;
3224 break;
3225 case NL80211_CHAN_WIDTH_80P80:
3226 c->center_freq2 = 0;
3227 c->width = NL80211_CHAN_WIDTH_80;
3228 ret = IEEE80211_STA_DISABLE_80P80MHZ |
3229 IEEE80211_STA_DISABLE_160MHZ;
3230 break;
3231 case NL80211_CHAN_WIDTH_160:
3232 /* n_P20 */
3233 tmp = (70 + c->chan->center_freq - c->center_freq1)/20;
3234 /* n_P80 */
3235 tmp /= 4;
3236 c->center_freq1 = c->center_freq1 - 40 + 80 * tmp;
3237 c->width = NL80211_CHAN_WIDTH_80;
3238 ret = IEEE80211_STA_DISABLE_80P80MHZ |
3239 IEEE80211_STA_DISABLE_160MHZ;
3240 break;
3241 default:
3242 case NL80211_CHAN_WIDTH_20_NOHT:
3243 WARN_ON_ONCE(1);
3244 c->width = NL80211_CHAN_WIDTH_20_NOHT;
3245 ret = IEEE80211_STA_DISABLE_HT | IEEE80211_STA_DISABLE_VHT;
3246 break;
3247 }
3248
3249 WARN_ON_ONCE(!cfg80211_chandef_valid(c));
3250
3251 return ret;
3252}
3253
3254static u32
3255ieee80211_determine_chantype(struct ieee80211_sub_if_data *sdata,
3256 struct ieee80211_supported_band *sband,
3257 struct ieee80211_channel *channel,
3258 const struct ieee80211_ht_operation *ht_oper,
3259 const struct ieee80211_vht_operation *vht_oper,
3260 struct cfg80211_chan_def *chandef)
3261{
3262 struct cfg80211_chan_def vht_chandef;
3263 u32 ht_cfreq, ret;
3264
3265 chandef->chan = channel;
3266 chandef->width = NL80211_CHAN_WIDTH_20_NOHT;
3267 chandef->center_freq1 = channel->center_freq;
3268 chandef->center_freq2 = 0;
3269
3270 if (!ht_oper || !sband->ht_cap.ht_supported) {
3271 ret = IEEE80211_STA_DISABLE_HT | IEEE80211_STA_DISABLE_VHT;
3272 goto out;
3273 }
3274
3275 chandef->width = NL80211_CHAN_WIDTH_20;
3276
3277 ht_cfreq = ieee80211_channel_to_frequency(ht_oper->primary_chan,
3278 channel->band);
3279 /* check that channel matches the right operating channel */
3280 if (channel->center_freq != ht_cfreq) {
3281 /*
3282 * It's possible that some APs are confused here;
3283 * Netgear WNDR3700 sometimes reports 4 higher than
3284 * the actual channel in association responses, but
3285 * since we look at probe response/beacon data here
3286 * it should be OK.
3287 */
3288 sdata_info(sdata,
3289 "Wrong control channel: center-freq: %d ht-cfreq: %d ht->primary_chan: %d band: %d - Disabling HT\n",
3290 channel->center_freq, ht_cfreq,
3291 ht_oper->primary_chan, channel->band);
3292 ret = IEEE80211_STA_DISABLE_HT | IEEE80211_STA_DISABLE_VHT;
3293 goto out;
3294 }
3295
3296 /* check 40 MHz support, if we have it */
3297 if (sband->ht_cap.cap & IEEE80211_HT_CAP_SUP_WIDTH_20_40) {
3298 switch (ht_oper->ht_param & IEEE80211_HT_PARAM_CHA_SEC_OFFSET) {
3299 case IEEE80211_HT_PARAM_CHA_SEC_ABOVE:
3300 chandef->width = NL80211_CHAN_WIDTH_40;
3301 chandef->center_freq1 += 10;
3302 break;
3303 case IEEE80211_HT_PARAM_CHA_SEC_BELOW:
3304 chandef->width = NL80211_CHAN_WIDTH_40;
3305 chandef->center_freq1 -= 10;
3306 break;
3307 }
3308 } else {
3309 /* 40 MHz (and 80 MHz) must be supported for VHT */
3310 ret = IEEE80211_STA_DISABLE_VHT;
3311 goto out;
3312 }
3313
3314 if (!vht_oper || !sband->vht_cap.vht_supported) {
3315 ret = IEEE80211_STA_DISABLE_VHT;
3316 goto out;
3317 }
3318
3319 vht_chandef.chan = channel;
3320 vht_chandef.center_freq1 =
3321 ieee80211_channel_to_frequency(vht_oper->center_freq_seg1_idx,
3322 channel->band);
3323 vht_chandef.center_freq2 = 0;
3324
3325 if (vht_oper->center_freq_seg2_idx)
3326 vht_chandef.center_freq2 =
3327 ieee80211_channel_to_frequency(
3328 vht_oper->center_freq_seg2_idx,
3329 channel->band);
3330
3331 switch (vht_oper->chan_width) {
3332 case IEEE80211_VHT_CHANWIDTH_USE_HT:
3333 vht_chandef.width = chandef->width;
3334 break;
3335 case IEEE80211_VHT_CHANWIDTH_80MHZ:
3336 vht_chandef.width = NL80211_CHAN_WIDTH_80;
3337 break;
3338 case IEEE80211_VHT_CHANWIDTH_160MHZ:
3339 vht_chandef.width = NL80211_CHAN_WIDTH_160;
3340 break;
3341 case IEEE80211_VHT_CHANWIDTH_80P80MHZ:
3342 vht_chandef.width = NL80211_CHAN_WIDTH_80P80;
3343 break;
3344 default:
3345 sdata_info(sdata,
3346 "AP VHT operation IE has invalid channel width (%d), disable VHT\n",
3347 vht_oper->chan_width);
3348 ret = IEEE80211_STA_DISABLE_VHT;
3349 goto out;
3350 }
3351
3352 if (!cfg80211_chandef_valid(&vht_chandef)) {
3353 sdata_info(sdata,
3354 "AP VHT information is invalid, disable VHT\n");
3355 ret = IEEE80211_STA_DISABLE_VHT;
3356 goto out;
3357 }
3358
3359 if (cfg80211_chandef_identical(chandef, &vht_chandef)) {
3360 ret = 0;
3361 goto out;
3362 }
3363
3364 if (!cfg80211_chandef_compatible(chandef, &vht_chandef)) {
3365 sdata_info(sdata,
3366 "AP VHT information doesn't match HT, disable VHT\n");
3367 ret = IEEE80211_STA_DISABLE_VHT;
3368 goto out;
3369 }
3370
3371 *chandef = vht_chandef;
3372
3373 ret = 0;
3374
3375 while (!cfg80211_chandef_usable(sdata->local->hw.wiphy, chandef,
3376 IEEE80211_CHAN_DISABLED)) {
3377 if (WARN_ON(chandef->width == NL80211_CHAN_WIDTH_20_NOHT)) {
3378 ret = IEEE80211_STA_DISABLE_HT |
3379 IEEE80211_STA_DISABLE_VHT;
3380 goto out;
3381 }
3382
3383 ret = chandef_downgrade(chandef);
3384 }
3385
3386 if (chandef->width != vht_chandef.width)
3387 sdata_info(sdata,
3388 "local regulatory prevented using AP HT/VHT configuration, downgraded\n");
3389
3390out:
3391 WARN_ON_ONCE(!cfg80211_chandef_valid(chandef));
3392 return ret;
3393}
3394
3395static u8 ieee80211_ht_vht_rx_chains(struct ieee80211_sub_if_data *sdata,
3396 struct cfg80211_bss *cbss)
3397{
3398 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3399 const u8 *ht_cap_ie, *vht_cap_ie;
3400 const struct ieee80211_ht_cap *ht_cap;
3401 const struct ieee80211_vht_cap *vht_cap;
3402 u8 chains = 1;
3403
3404 if (ifmgd->flags & IEEE80211_STA_DISABLE_HT)
3405 return chains;
3406
3407 ht_cap_ie = cfg80211_find_ie(WLAN_EID_HT_CAPABILITY,
3408 cbss->information_elements,
3409 cbss->len_information_elements);
3410 if (ht_cap_ie && ht_cap_ie[1] >= sizeof(*ht_cap)) {
3411 ht_cap = (void *)(ht_cap_ie + 2);
3412 chains = ieee80211_mcs_to_chains(&ht_cap->mcs);
3413 /*
3414 * TODO: use "Tx Maximum Number Spatial Streams Supported" and
3415 * "Tx Unequal Modulation Supported" fields.
3416 */
3417 }
3418
3419 if (ifmgd->flags & IEEE80211_STA_DISABLE_VHT)
3420 return chains;
3421
3422 vht_cap_ie = cfg80211_find_ie(WLAN_EID_VHT_CAPABILITY,
3423 cbss->information_elements,
3424 cbss->len_information_elements);
3425 if (vht_cap_ie && vht_cap_ie[1] >= sizeof(*vht_cap)) {
3426 u8 nss;
3427 u16 tx_mcs_map;
3428
3429 vht_cap = (void *)(vht_cap_ie + 2);
3430 tx_mcs_map = le16_to_cpu(vht_cap->supp_mcs.tx_mcs_map);
3431 for (nss = 8; nss > 0; nss--) {
3432 if (((tx_mcs_map >> (2 * (nss - 1))) & 3) !=
3433 IEEE80211_VHT_MCS_NOT_SUPPORTED)
3434 break;
3435 }
3436 /* TODO: use "Tx Highest Supported Long GI Data Rate" field? */
3437 chains = max(chains, nss);
3438 }
3439
3440 return chains;
3441}
3442
3443static int ieee80211_prep_channel(struct ieee80211_sub_if_data *sdata,
3444 struct cfg80211_bss *cbss)
3445{
3446 struct ieee80211_local *local = sdata->local;
3447 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3448 const struct ieee80211_ht_operation *ht_oper = NULL;
3449 const struct ieee80211_vht_operation *vht_oper = NULL;
3450 struct ieee80211_supported_band *sband;
3451 struct cfg80211_chan_def chandef;
3452 int ret;
3453
3454 sband = local->hw.wiphy->bands[cbss->channel->band];
3455
3456 ifmgd->flags &= ~(IEEE80211_STA_DISABLE_40MHZ |
3457 IEEE80211_STA_DISABLE_80P80MHZ |
3458 IEEE80211_STA_DISABLE_160MHZ);
3459
3460 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_HT) &&
3461 sband->ht_cap.ht_supported) {
3462 const u8 *ht_oper_ie;
3463
3464 ht_oper_ie = cfg80211_find_ie(WLAN_EID_HT_OPERATION,
3465 cbss->information_elements,
3466 cbss->len_information_elements);
3467 if (ht_oper_ie && ht_oper_ie[1] >= sizeof(*ht_oper))
3468 ht_oper = (void *)(ht_oper_ie + 2);
3469 }
3470
3471 if (!(ifmgd->flags & IEEE80211_STA_DISABLE_VHT) &&
3472 sband->vht_cap.vht_supported) {
3473 const u8 *vht_oper_ie;
3474
3475 vht_oper_ie = cfg80211_find_ie(WLAN_EID_VHT_OPERATION,
3476 cbss->information_elements,
3477 cbss->len_information_elements);
3478 if (vht_oper_ie && vht_oper_ie[1] >= sizeof(*vht_oper))
3479 vht_oper = (void *)(vht_oper_ie + 2);
3480 if (vht_oper && !ht_oper) {
3481 vht_oper = NULL;
3482 sdata_info(sdata,
3483 "AP advertised VHT without HT, disabling both\n");
3484 sdata->flags |= IEEE80211_STA_DISABLE_HT;
3485 sdata->flags |= IEEE80211_STA_DISABLE_VHT;
3486 }
3487 }
3488
3489 ifmgd->flags |= ieee80211_determine_chantype(sdata, sband,
3490 cbss->channel,
3491 ht_oper, vht_oper,
3492 &chandef);
3493
3494 sdata->needed_rx_chains = min(ieee80211_ht_vht_rx_chains(sdata, cbss),
3495 local->rx_chains);
3496
3497 /* will change later if needed */
3498 sdata->smps_mode = IEEE80211_SMPS_OFF;
3499
3500 /*
3501 * If this fails (possibly due to channel context sharing
3502 * on incompatible channels, e.g. 80+80 and 160 sharing the
3503 * same control channel) try to use a smaller bandwidth.
3504 */
3505 ret = ieee80211_vif_use_channel(sdata, &chandef,
3506 IEEE80211_CHANCTX_SHARED);
3507 while (ret && chandef.width != NL80211_CHAN_WIDTH_20_NOHT)
3508 ifmgd->flags |= chandef_downgrade(&chandef);
3509 return ret;
3510}
3511
3512static int ieee80211_prep_connection(struct ieee80211_sub_if_data *sdata,
3513 struct cfg80211_bss *cbss, bool assoc)
3514{
3515 struct ieee80211_local *local = sdata->local;
3516 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3517 struct ieee80211_bss *bss = (void *)cbss->priv;
3518 struct sta_info *new_sta = NULL;
3519 bool have_sta = false;
3520 int err;
3521
3522 if (WARN_ON(!ifmgd->auth_data && !ifmgd->assoc_data))
3523 return -EINVAL;
3524
3525 if (assoc) {
3526 rcu_read_lock();
3527 have_sta = sta_info_get(sdata, cbss->bssid);
3528 rcu_read_unlock();
3529 }
3530
3531 if (!have_sta) {
3532 new_sta = sta_info_alloc(sdata, cbss->bssid, GFP_KERNEL);
3533 if (!new_sta)
3534 return -ENOMEM;
3535 }
3536
3537 mutex_lock(&local->mtx);
3538 ieee80211_recalc_idle(sdata->local);
3539 mutex_unlock(&local->mtx);
3540
3541 if (new_sta) {
3542 u32 rates = 0, basic_rates = 0;
3543 bool have_higher_than_11mbit;
3544 int min_rate = INT_MAX, min_rate_index = -1;
3545 struct ieee80211_supported_band *sband;
3546
3547 sband = local->hw.wiphy->bands[cbss->channel->band];
3548
3549 err = ieee80211_prep_channel(sdata, cbss);
3550 if (err) {
3551 sta_info_free(local, new_sta);
3552 return err;
3553 }
3554
3555 ieee80211_get_rates(sband, bss->supp_rates,
3556 bss->supp_rates_len,
3557 &rates, &basic_rates,
3558 &have_higher_than_11mbit,
3559 &min_rate, &min_rate_index);
3560
3561 /*
3562 * This used to be a workaround for basic rates missing
3563 * in the association response frame. Now that we no
3564 * longer use the basic rates from there, it probably
3565 * doesn't happen any more, but keep the workaround so
3566 * in case some *other* APs are buggy in different ways
3567 * we can connect -- with a warning.
3568 */
3569 if (!basic_rates && min_rate_index >= 0) {
3570 sdata_info(sdata,
3571 "No basic rates, using min rate instead\n");
3572 basic_rates = BIT(min_rate_index);
3573 }
3574
3575 new_sta->sta.supp_rates[cbss->channel->band] = rates;
3576 sdata->vif.bss_conf.basic_rates = basic_rates;
3577
3578 /* cf. IEEE 802.11 9.2.12 */
3579 if (cbss->channel->band == IEEE80211_BAND_2GHZ &&
3580 have_higher_than_11mbit)
3581 sdata->flags |= IEEE80211_SDATA_OPERATING_GMODE;
3582 else
3583 sdata->flags &= ~IEEE80211_SDATA_OPERATING_GMODE;
3584
3585 memcpy(ifmgd->bssid, cbss->bssid, ETH_ALEN);
3586
3587 /* set timing information */
3588 sdata->vif.bss_conf.beacon_int = cbss->beacon_interval;
3589 sdata->vif.bss_conf.sync_tsf = cbss->tsf;
3590 sdata->vif.bss_conf.sync_device_ts = bss->device_ts;
3591
3592 /* tell driver about BSSID, basic rates and timing */
3593 ieee80211_bss_info_change_notify(sdata,
3594 BSS_CHANGED_BSSID | BSS_CHANGED_BASIC_RATES |
3595 BSS_CHANGED_BEACON_INT);
3596
3597 if (assoc)
3598 sta_info_pre_move_state(new_sta, IEEE80211_STA_AUTH);
3599
3600 err = sta_info_insert(new_sta);
3601 new_sta = NULL;
3602 if (err) {
3603 sdata_info(sdata,
3604 "failed to insert STA entry for the AP (error %d)\n",
3605 err);
3606 return err;
3607 }
3608 } else
3609 WARN_ON_ONCE(!ether_addr_equal(ifmgd->bssid, cbss->bssid));
3610
3611 return 0;
3612}
3613
3614/* config hooks */
3615int ieee80211_mgd_auth(struct ieee80211_sub_if_data *sdata,
3616 struct cfg80211_auth_request *req)
3617{
3618 struct ieee80211_local *local = sdata->local;
3619 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3620 struct ieee80211_mgd_auth_data *auth_data;
3621 u16 auth_alg;
3622 int err;
3623
3624 /* prepare auth data structure */
3625
3626 switch (req->auth_type) {
3627 case NL80211_AUTHTYPE_OPEN_SYSTEM:
3628 auth_alg = WLAN_AUTH_OPEN;
3629 break;
3630 case NL80211_AUTHTYPE_SHARED_KEY:
3631 if (IS_ERR(local->wep_tx_tfm))
3632 return -EOPNOTSUPP;
3633 auth_alg = WLAN_AUTH_SHARED_KEY;
3634 break;
3635 case NL80211_AUTHTYPE_FT:
3636 auth_alg = WLAN_AUTH_FT;
3637 break;
3638 case NL80211_AUTHTYPE_NETWORK_EAP:
3639 auth_alg = WLAN_AUTH_LEAP;
3640 break;
3641 case NL80211_AUTHTYPE_SAE:
3642 auth_alg = WLAN_AUTH_SAE;
3643 break;
3644 default:
3645 return -EOPNOTSUPP;
3646 }
3647
3648 auth_data = kzalloc(sizeof(*auth_data) + req->sae_data_len +
3649 req->ie_len, GFP_KERNEL);
3650 if (!auth_data)
3651 return -ENOMEM;
3652
3653 auth_data->bss = req->bss;
3654
3655 if (req->sae_data_len >= 4) {
3656 __le16 *pos = (__le16 *) req->sae_data;
3657 auth_data->sae_trans = le16_to_cpu(pos[0]);
3658 auth_data->sae_status = le16_to_cpu(pos[1]);
3659 memcpy(auth_data->data, req->sae_data + 4,
3660 req->sae_data_len - 4);
3661 auth_data->data_len += req->sae_data_len - 4;
3662 }
3663
3664 if (req->ie && req->ie_len) {
3665 memcpy(&auth_data->data[auth_data->data_len],
3666 req->ie, req->ie_len);
3667 auth_data->data_len += req->ie_len;
3668 }
3669
3670 if (req->key && req->key_len) {
3671 auth_data->key_len = req->key_len;
3672 auth_data->key_idx = req->key_idx;
3673 memcpy(auth_data->key, req->key, req->key_len);
3674 }
3675
3676 auth_data->algorithm = auth_alg;
3677
3678 /* try to authenticate/probe */
3679
3680 mutex_lock(&ifmgd->mtx);
3681
3682 if ((ifmgd->auth_data && !ifmgd->auth_data->done) ||
3683 ifmgd->assoc_data) {
3684 err = -EBUSY;
3685 goto err_free;
3686 }
3687
3688 if (ifmgd->auth_data)
3689 ieee80211_destroy_auth_data(sdata, false);
3690
3691 /* prep auth_data so we don't go into idle on disassoc */
3692 ifmgd->auth_data = auth_data;
3693
3694 if (ifmgd->associated)
3695 ieee80211_set_disassoc(sdata, 0, 0, false, NULL);
3696
3697 sdata_info(sdata, "authenticate with %pM\n", req->bss->bssid);
3698
3699 err = ieee80211_prep_connection(sdata, req->bss, false);
3700 if (err)
3701 goto err_clear;
3702
3703 err = ieee80211_probe_auth(sdata);
3704 if (err) {
3705 sta_info_destroy_addr(sdata, req->bss->bssid);
3706 goto err_clear;
3707 }
3708
3709 /* hold our own reference */
3710 cfg80211_ref_bss(auth_data->bss);
3711 err = 0;
3712 goto out_unlock;
3713
3714 err_clear:
3715 memset(ifmgd->bssid, 0, ETH_ALEN);
3716 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BSSID);
3717 ifmgd->auth_data = NULL;
3718 err_free:
3719 kfree(auth_data);
3720 out_unlock:
3721 mutex_unlock(&ifmgd->mtx);
3722
3723 return err;
3724}
3725
3726int ieee80211_mgd_assoc(struct ieee80211_sub_if_data *sdata,
3727 struct cfg80211_assoc_request *req)
3728{
3729 struct ieee80211_local *local = sdata->local;
3730 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3731 struct ieee80211_bss *bss = (void *)req->bss->priv;
3732 struct ieee80211_mgd_assoc_data *assoc_data;
3733 struct ieee80211_supported_band *sband;
3734 const u8 *ssidie, *ht_ie;
3735 int i, err;
3736
3737 ssidie = ieee80211_bss_get_ie(req->bss, WLAN_EID_SSID);
3738 if (!ssidie)
3739 return -EINVAL;
3740
3741 assoc_data = kzalloc(sizeof(*assoc_data) + req->ie_len, GFP_KERNEL);
3742 if (!assoc_data)
3743 return -ENOMEM;
3744
3745 mutex_lock(&ifmgd->mtx);
3746
3747 if (ifmgd->associated)
3748 ieee80211_set_disassoc(sdata, 0, 0, false, NULL);
3749
3750 if (ifmgd->auth_data && !ifmgd->auth_data->done) {
3751 err = -EBUSY;
3752 goto err_free;
3753 }
3754
3755 if (ifmgd->assoc_data) {
3756 err = -EBUSY;
3757 goto err_free;
3758 }
3759
3760 if (ifmgd->auth_data) {
3761 bool match;
3762
3763 /* keep sta info, bssid if matching */
3764 match = ether_addr_equal(ifmgd->bssid, req->bss->bssid);
3765 ieee80211_destroy_auth_data(sdata, match);
3766 }
3767
3768 /* prepare assoc data */
3769
3770 ifmgd->beacon_crc_valid = false;
3771
3772 /*
3773 * IEEE802.11n does not allow TKIP/WEP as pairwise ciphers in HT mode.
3774 * We still associate in non-HT mode (11a/b/g) if any one of these
3775 * ciphers is configured as pairwise.
3776 * We can set this to true for non-11n hardware, that'll be checked
3777 * separately along with the peer capabilities.
3778 */
3779 for (i = 0; i < req->crypto.n_ciphers_pairwise; i++) {
3780 if (req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_WEP40 ||
3781 req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_TKIP ||
3782 req->crypto.ciphers_pairwise[i] == WLAN_CIPHER_SUITE_WEP104) {
3783 ifmgd->flags |= IEEE80211_STA_DISABLE_HT;
3784 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
3785 netdev_info(sdata->dev,
3786 "disabling HT/VHT due to WEP/TKIP use\n");
3787 }
3788 }
3789
3790 if (req->flags & ASSOC_REQ_DISABLE_HT) {
3791 ifmgd->flags |= IEEE80211_STA_DISABLE_HT;
3792 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
3793 }
3794
3795 /* Also disable HT if we don't support it or the AP doesn't use WMM */
3796 sband = local->hw.wiphy->bands[req->bss->channel->band];
3797 if (!sband->ht_cap.ht_supported ||
3798 local->hw.queues < IEEE80211_NUM_ACS || !bss->wmm_used) {
3799 ifmgd->flags |= IEEE80211_STA_DISABLE_HT;
3800 if (!bss->wmm_used)
3801 netdev_info(sdata->dev,
3802 "disabling HT as WMM/QoS is not supported by the AP\n");
3803 }
3804
3805 /* disable VHT if we don't support it or the AP doesn't use WMM */
3806 if (!sband->vht_cap.vht_supported ||
3807 local->hw.queues < IEEE80211_NUM_ACS || !bss->wmm_used) {
3808 ifmgd->flags |= IEEE80211_STA_DISABLE_VHT;
3809 if (!bss->wmm_used)
3810 netdev_info(sdata->dev,
3811 "disabling VHT as WMM/QoS is not supported by the AP\n");
3812 }
3813
3814 memcpy(&ifmgd->ht_capa, &req->ht_capa, sizeof(ifmgd->ht_capa));
3815 memcpy(&ifmgd->ht_capa_mask, &req->ht_capa_mask,
3816 sizeof(ifmgd->ht_capa_mask));
3817
3818 if (req->ie && req->ie_len) {
3819 memcpy(assoc_data->ie, req->ie, req->ie_len);
3820 assoc_data->ie_len = req->ie_len;
3821 }
3822
3823 assoc_data->bss = req->bss;
3824
3825 if (ifmgd->req_smps == IEEE80211_SMPS_AUTOMATIC) {
3826 if (ifmgd->powersave)
3827 sdata->smps_mode = IEEE80211_SMPS_DYNAMIC;
3828 else
3829 sdata->smps_mode = IEEE80211_SMPS_OFF;
3830 } else
3831 sdata->smps_mode = ifmgd->req_smps;
3832
3833 assoc_data->capability = req->bss->capability;
3834 assoc_data->wmm = bss->wmm_used &&
3835 (local->hw.queues >= IEEE80211_NUM_ACS);
3836 assoc_data->supp_rates = bss->supp_rates;
3837 assoc_data->supp_rates_len = bss->supp_rates_len;
3838
3839 ht_ie = ieee80211_bss_get_ie(req->bss, WLAN_EID_HT_OPERATION);
3840 if (ht_ie && ht_ie[1] >= sizeof(struct ieee80211_ht_operation))
3841 assoc_data->ap_ht_param =
3842 ((struct ieee80211_ht_operation *)(ht_ie + 2))->ht_param;
3843 else
3844 ifmgd->flags |= IEEE80211_STA_DISABLE_HT;
3845
3846 if (bss->wmm_used && bss->uapsd_supported &&
3847 (sdata->local->hw.flags & IEEE80211_HW_SUPPORTS_UAPSD)) {
3848 assoc_data->uapsd = true;
3849 ifmgd->flags |= IEEE80211_STA_UAPSD_ENABLED;
3850 } else {
3851 assoc_data->uapsd = false;
3852 ifmgd->flags &= ~IEEE80211_STA_UAPSD_ENABLED;
3853 }
3854
3855 memcpy(assoc_data->ssid, ssidie + 2, ssidie[1]);
3856 assoc_data->ssid_len = ssidie[1];
3857
3858 if (req->prev_bssid)
3859 memcpy(assoc_data->prev_bssid, req->prev_bssid, ETH_ALEN);
3860
3861 if (req->use_mfp) {
3862 ifmgd->mfp = IEEE80211_MFP_REQUIRED;
3863 ifmgd->flags |= IEEE80211_STA_MFP_ENABLED;
3864 } else {
3865 ifmgd->mfp = IEEE80211_MFP_DISABLED;
3866 ifmgd->flags &= ~IEEE80211_STA_MFP_ENABLED;
3867 }
3868
3869 if (req->crypto.control_port)
3870 ifmgd->flags |= IEEE80211_STA_CONTROL_PORT;
3871 else
3872 ifmgd->flags &= ~IEEE80211_STA_CONTROL_PORT;
3873
3874 sdata->control_port_protocol = req->crypto.control_port_ethertype;
3875 sdata->control_port_no_encrypt = req->crypto.control_port_no_encrypt;
3876
3877 /* kick off associate process */
3878
3879 ifmgd->assoc_data = assoc_data;
3880
3881 err = ieee80211_prep_connection(sdata, req->bss, true);
3882 if (err)
3883 goto err_clear;
3884
3885 if (!bss->dtim_period &&
3886 sdata->local->hw.flags & IEEE80211_HW_NEED_DTIM_PERIOD) {
3887 /*
3888 * Wait up to one beacon interval ...
3889 * should this be more if we miss one?
3890 */
3891 sdata_info(sdata, "waiting for beacon from %pM\n",
3892 ifmgd->bssid);
3893 assoc_data->timeout = TU_TO_EXP_TIME(req->bss->beacon_interval);
3894 } else {
3895 assoc_data->have_beacon = true;
3896 assoc_data->sent_assoc = false;
3897 assoc_data->timeout = jiffies;
3898 }
3899 run_again(ifmgd, assoc_data->timeout);
3900
3901 if (bss->corrupt_data) {
3902 char *corrupt_type = "data";
3903 if (bss->corrupt_data & IEEE80211_BSS_CORRUPT_BEACON) {
3904 if (bss->corrupt_data &
3905 IEEE80211_BSS_CORRUPT_PROBE_RESP)
3906 corrupt_type = "beacon and probe response";
3907 else
3908 corrupt_type = "beacon";
3909 } else if (bss->corrupt_data & IEEE80211_BSS_CORRUPT_PROBE_RESP)
3910 corrupt_type = "probe response";
3911 sdata_info(sdata, "associating with AP with corrupt %s\n",
3912 corrupt_type);
3913 }
3914
3915 err = 0;
3916 goto out;
3917 err_clear:
3918 memset(ifmgd->bssid, 0, ETH_ALEN);
3919 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BSSID);
3920 ifmgd->assoc_data = NULL;
3921 err_free:
3922 kfree(assoc_data);
3923 out:
3924 mutex_unlock(&ifmgd->mtx);
3925
3926 return err;
3927}
3928
3929int ieee80211_mgd_deauth(struct ieee80211_sub_if_data *sdata,
3930 struct cfg80211_deauth_request *req)
3931{
3932 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3933 u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN];
3934 bool tx = !req->local_state_change;
3935 bool sent_frame = false;
3936
3937 mutex_lock(&ifmgd->mtx);
3938
3939 sdata_info(sdata,
3940 "deauthenticating from %pM by local choice (reason=%d)\n",
3941 req->bssid, req->reason_code);
3942
3943 if (ifmgd->auth_data) {
3944 drv_mgd_prepare_tx(sdata->local, sdata);
3945 ieee80211_send_deauth_disassoc(sdata, req->bssid,
3946 IEEE80211_STYPE_DEAUTH,
3947 req->reason_code, tx,
3948 frame_buf);
3949 ieee80211_destroy_auth_data(sdata, false);
3950 mutex_unlock(&ifmgd->mtx);
3951
3952 sent_frame = tx;
3953 goto out;
3954 }
3955
3956 if (ifmgd->associated &&
3957 ether_addr_equal(ifmgd->associated->bssid, req->bssid)) {
3958 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DEAUTH,
3959 req->reason_code, tx, frame_buf);
3960 sent_frame = tx;
3961 }
3962 mutex_unlock(&ifmgd->mtx);
3963
3964 out:
3965 mutex_lock(&sdata->local->mtx);
3966 ieee80211_recalc_idle(sdata->local);
3967 mutex_unlock(&sdata->local->mtx);
3968
3969 if (sent_frame)
3970 __cfg80211_send_deauth(sdata->dev, frame_buf,
3971 IEEE80211_DEAUTH_FRAME_LEN);
3972
3973 return 0;
3974}
3975
3976int ieee80211_mgd_disassoc(struct ieee80211_sub_if_data *sdata,
3977 struct cfg80211_disassoc_request *req)
3978{
3979 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3980 u8 bssid[ETH_ALEN];
3981 u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN];
3982
3983 mutex_lock(&ifmgd->mtx);
3984
3985 /*
3986 * cfg80211 should catch this ... but it's racy since
3987 * we can receive a disassoc frame, process it, hand it
3988 * to cfg80211 while that's in a locked section already
3989 * trying to tell us that the user wants to disconnect.
3990 */
3991 if (ifmgd->associated != req->bss) {
3992 mutex_unlock(&ifmgd->mtx);
3993 return -ENOLINK;
3994 }
3995
3996 sdata_info(sdata,
3997 "disassociating from %pM by local choice (reason=%d)\n",
3998 req->bss->bssid, req->reason_code);
3999
4000 memcpy(bssid, req->bss->bssid, ETH_ALEN);
4001 ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DISASSOC,
4002 req->reason_code, !req->local_state_change,
4003 frame_buf);
4004 mutex_unlock(&ifmgd->mtx);
4005
4006 __cfg80211_send_disassoc(sdata->dev, frame_buf,
4007 IEEE80211_DEAUTH_FRAME_LEN);
4008
4009 mutex_lock(&sdata->local->mtx);
4010 ieee80211_recalc_idle(sdata->local);
4011 mutex_unlock(&sdata->local->mtx);
4012
4013 return 0;
4014}
4015
4016void ieee80211_mgd_stop(struct ieee80211_sub_if_data *sdata)
4017{
4018 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
4019
4020 mutex_lock(&ifmgd->mtx);
4021 if (ifmgd->assoc_data)
4022 ieee80211_destroy_assoc_data(sdata, false);
4023 if (ifmgd->auth_data)
4024 ieee80211_destroy_auth_data(sdata, false);
4025 del_timer_sync(&ifmgd->timer);
4026 mutex_unlock(&ifmgd->mtx);
4027}
4028
4029void ieee80211_cqm_rssi_notify(struct ieee80211_vif *vif,
4030 enum nl80211_cqm_rssi_threshold_event rssi_event,
4031 gfp_t gfp)
4032{
4033 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
4034
4035 trace_api_cqm_rssi_notify(sdata, rssi_event);
4036
4037 cfg80211_cqm_rssi_notify(sdata->dev, rssi_event, gfp);
4038}
4039EXPORT_SYMBOL(ieee80211_cqm_rssi_notify);