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>
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.
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>
28 #include "ieee80211_i.h"
29 #include "driver-ops.h"
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
39 static int max_nullfunc_tries
= 2;
40 module_param(max_nullfunc_tries
, int, 0644);
41 MODULE_PARM_DESC(max_nullfunc_tries
,
42 "Maximum nullfunc tx tries before disconnecting (reason 4).");
44 static int max_probe_tries
= 5;
45 module_param(max_probe_tries
, int, 0644);
46 MODULE_PARM_DESC(max_probe_tries
,
47 "Maximum probe tries before disconnecting (reason 4).");
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.
57 #define IEEE80211_BEACON_LOSS_COUNT 7
60 * Time the connection can be idle before we probe
61 * it to see if we can still talk to the AP.
63 #define IEEE80211_CONNECTION_IDLE_TIME (30 * HZ)
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.
69 static int probe_wait_ms
= 500;
70 module_param(probe_wait_ms
, int, 0644);
71 MODULE_PARM_DESC(probe_wait_ms
,
72 "Maximum time(ms) to wait for probe response"
73 " before disconnecting (reason 4).");
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
80 #define IEEE80211_SIGNAL_AVE_WEIGHT 3
83 * How many Beacon frames need to have been used in average signal strength
84 * before starting to indicate signal change events.
86 #define IEEE80211_SIGNAL_AVE_MIN_COUNT 4
88 #define TMR_RUNNING_TIMER 0
89 #define TMR_RUNNING_CHANSW 1
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.
98 /* no action required */
101 /* caller must call cfg80211_send_deauth() */
102 RX_MGMT_CFG80211_DEAUTH
,
104 /* caller must call cfg80211_send_disassoc() */
105 RX_MGMT_CFG80211_DISASSOC
,
107 /* caller must call cfg80211_send_rx_auth() */
108 RX_MGMT_CFG80211_RX_AUTH
,
110 /* caller must call cfg80211_send_rx_assoc() */
111 RX_MGMT_CFG80211_RX_ASSOC
,
113 /* caller must call cfg80211_send_assoc_timeout() */
114 RX_MGMT_CFG80211_ASSOC_TIMEOUT
,
118 static inline void ASSERT_MGD_MTX(struct ieee80211_if_managed
*ifmgd
)
120 lockdep_assert_held(&ifmgd
->mtx
);
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
133 static void run_again(struct ieee80211_if_managed
*ifmgd
, unsigned long timeout
)
135 ASSERT_MGD_MTX(ifmgd
);
137 if (!timer_pending(&ifmgd
->timer
) ||
138 time_before(timeout
, ifmgd
->timer
.expires
))
139 mod_timer(&ifmgd
->timer
, timeout
);
142 void ieee80211_sta_reset_beacon_monitor(struct ieee80211_sub_if_data
*sdata
)
144 if (sdata
->vif
.driver_flags
& IEEE80211_VIF_BEACON_FILTER
)
147 if (sdata
->local
->hw
.flags
& IEEE80211_HW_CONNECTION_MONITOR
)
150 mod_timer(&sdata
->u
.mgd
.bcn_mon_timer
,
151 round_jiffies_up(jiffies
+ sdata
->u
.mgd
.beacon_timeout
));
154 void ieee80211_sta_reset_conn_monitor(struct ieee80211_sub_if_data
*sdata
)
156 struct ieee80211_if_managed
*ifmgd
= &sdata
->u
.mgd
;
158 if (unlikely(!sdata
->u
.mgd
.associated
))
161 if (sdata
->local
->hw
.flags
& IEEE80211_HW_CONNECTION_MONITOR
)
164 mod_timer(&sdata
->u
.mgd
.conn_mon_timer
,
165 round_jiffies_up(jiffies
+ IEEE80211_CONNECTION_IDLE_TIME
));
167 ifmgd
->probe_send_count
= 0;
170 static int ecw2cw(int ecw
)
172 return (1 << ecw
) - 1;
175 static u32
ieee80211_config_ht_tx(struct ieee80211_sub_if_data
*sdata
,
176 struct ieee80211_ht_operation
*ht_oper
,
177 const u8
*bssid
, bool reconfig
)
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
;
186 bool disable_40
= false;
189 chanctx_conf
= rcu_dereference(sdata
->vif
.chanctx_conf
);
190 if (WARN_ON(!chanctx_conf
)) {
194 chan
= chanctx_conf
->def
.chan
;
196 sband
= local
->hw
.wiphy
->bands
[chan
->band
];
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
)
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
)
213 /* This can change during the lifetime of the BSS */
214 if (!(ht_oper
->ht_param
& IEEE80211_HT_PARAM_CHAN_WIDTH_ANY
))
217 mutex_lock(&local
->sta_mtx
);
218 sta
= sta_info_get(sdata
, bssid
);
222 if (sta
&& !sta
->supports_40mhz
)
225 if (sta
&& (!reconfig
||
226 (disable_40
!= !(sta
->sta
.ht_cap
.cap
&
227 IEEE80211_HT_CAP_SUP_WIDTH_20_40
)))) {
230 sta
->sta
.ht_cap
.cap
&= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40
;
232 sta
->sta
.ht_cap
.cap
|= IEEE80211_HT_CAP_SUP_WIDTH_20_40
;
234 rate_control_rate_update(local
, sband
, sta
,
235 IEEE80211_RC_BW_CHANGED
);
237 mutex_unlock(&local
->sta_mtx
);
239 ht_opmode
= le16_to_cpu(ht_oper
->operation_mode
);
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
;
250 /* frame sending functions */
252 static int ieee80211_compatible_rates(const u8
*supp_rates
, int supp_rates_len
,
253 struct ieee80211_supported_band
*sband
,
259 for (i
= 0; i
< supp_rates_len
; i
++) {
260 int rate
= (supp_rates
[i
] & 0x7F) * 5;
262 for (j
= 0; j
< sband
->n_bitrates
; j
++)
263 if (sband
->bitrates
[j
].bitrate
== rate
) {
273 static 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
)
280 u32 flags
= channel
->flags
;
282 struct ieee80211_sta_ht_cap ht_cap
;
284 BUILD_BUG_ON(sizeof(ht_cap
) != sizeof(sband
->ht_cap
));
286 memcpy(&ht_cap
, &sband
->ht_cap
, sizeof(ht_cap
));
287 ieee80211_apply_htcap_overrides(sdata
, &ht_cap
);
289 /* determine capability flags */
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
;
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
;
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.
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
;
317 /* set SM PS mode properly */
318 cap
&= ~IEEE80211_HT_CAP_SM_PS
;
320 case IEEE80211_SMPS_AUTOMATIC
:
321 case IEEE80211_SMPS_NUM_MODES
:
323 case IEEE80211_SMPS_OFF
:
324 cap
|= WLAN_HT_CAP_SM_PS_DISABLED
<<
325 IEEE80211_HT_CAP_SM_PS_SHIFT
;
327 case IEEE80211_SMPS_STATIC
:
328 cap
|= WLAN_HT_CAP_SM_PS_STATIC
<<
329 IEEE80211_HT_CAP_SM_PS_SHIFT
;
331 case IEEE80211_SMPS_DYNAMIC
:
332 cap
|= WLAN_HT_CAP_SM_PS_DYNAMIC
<<
333 IEEE80211_HT_CAP_SM_PS_SHIFT
;
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
);
342 static void ieee80211_add_vht_ie(struct ieee80211_sub_if_data
*sdata
,
344 struct ieee80211_supported_band
*sband
)
348 struct ieee80211_sta_vht_cap vht_cap
;
350 BUILD_BUG_ON(sizeof(vht_cap
) != sizeof(sband
->vht_cap
));
352 memcpy(&vht_cap
, &sband
->vht_cap
, sizeof(vht_cap
));
354 /* determine capability flags */
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
;
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
;
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
);
372 static void ieee80211_send_assoc(struct ieee80211_sub_if_data
*sdata
)
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
;
378 struct ieee80211_mgmt
*mgmt
;
380 size_t offset
= 0, noffset
;
381 int i
, count
, rates_len
, supp_rates_len
;
383 struct ieee80211_supported_band
*sband
;
384 struct ieee80211_chanctx_conf
*chanctx_conf
;
385 struct ieee80211_channel
*chan
;
388 lockdep_assert_held(&ifmgd
->mtx
);
391 chanctx_conf
= rcu_dereference(sdata
->vif
.chanctx_conf
);
392 if (WARN_ON(!chanctx_conf
)) {
396 chan
= chanctx_conf
->def
.chan
;
398 sband
= local
->hw
.wiphy
->bands
[chan
->band
];
400 if (assoc_data
->supp_rates_len
) {
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
407 rates_len
= ieee80211_compatible_rates(assoc_data
->supp_rates
,
408 assoc_data
->supp_rates_len
,
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.
417 rates_len
= sband
->n_bitrates
;
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 */
434 skb_reserve(skb
, local
->hw
.extra_tx_headroom
);
436 capab
= WLAN_CAPABILITY_ESS
;
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
;
445 if (assoc_data
->capability
& WLAN_CAPABILITY_PRIVACY
)
446 capab
|= WLAN_CAPABILITY_PRIVACY
;
448 if ((assoc_data
->capability
& WLAN_CAPABILITY_SPECTRUM_MGMT
) &&
449 (local
->hw
.flags
& IEEE80211_HW_SPECTRUM_MGMT
))
450 capab
|= WLAN_CAPABILITY_SPECTRUM_MGMT
;
452 mgmt
= (struct ieee80211_mgmt
*) skb_put(skb
, 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
);
458 if (!is_zero_ether_addr(assoc_data
->prev_bssid
)) {
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
,
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
);
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
);
482 /* add all rates which were marked to be used above */
483 supp_rates_len
= rates_len
;
484 if (supp_rates_len
> 8)
487 pos
= skb_put(skb
, supp_rates_len
+ 2);
488 *pos
++ = WLAN_EID_SUPP_RATES
;
489 *pos
++ = supp_rates_len
;
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);
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
;
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);
514 if (capab
& WLAN_CAPABILITY_SPECTRUM_MGMT
) {
515 /* 1. power capabilities */
516 pos
= skb_put(skb
, 4);
517 *pos
++ = WLAN_EID_PWR_CAPABILITY
;
519 *pos
++ = 0; /* min tx power */
520 *pos
++ = chan
->max_power
; /* max tx power */
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*/
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
[] = {
539 WLAN_EID_EXT_SUPP_RATES
,
540 WLAN_EID_PWR_CAPABILITY
,
541 WLAN_EID_SUPPORTED_CHANNELS
,
544 WLAN_EID_RRM_ENABLED_CAPABILITIES
,
545 WLAN_EID_MOBILITY_DOMAIN
,
546 WLAN_EID_SUPPORTED_REGULATORY_CLASSES
,
548 noffset
= ieee80211_ie_split(assoc_data
->ie
, assoc_data
->ie_len
,
549 before_ht
, ARRAY_SIZE(before_ht
),
551 pos
= skb_put(skb
, noffset
- offset
);
552 memcpy(pos
, assoc_data
->ie
+ offset
, noffset
- offset
);
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
;
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
);
564 if (!(ifmgd
->flags
& IEEE80211_STA_DISABLE_VHT
))
565 ieee80211_add_vht_ie(sdata
, skb
, sband
);
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
,
572 pos
= skb_put(skb
, noffset
- offset
);
573 memcpy(pos
, assoc_data
->ie
+ offset
, noffset
- offset
);
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
);
586 pos
= skb_put(skb
, 9);
587 *pos
++ = WLAN_EID_VENDOR_SPECIFIC
;
588 *pos
++ = 7; /* len */
589 *pos
++ = 0x00; /* Microsoft OUI 00:50:F2 */
592 *pos
++ = 2; /* WME */
593 *pos
++ = 0; /* WME info */
594 *pos
++ = 1; /* WME ver */
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
);
605 drv_mgd_prepare_tx(local
, sdata
);
607 IEEE80211_SKB_CB(skb
)->flags
|= IEEE80211_TX_INTFL_DONT_ENCRYPT
;
608 ieee80211_tx_skb(sdata
, skb
);
611 void ieee80211_send_pspoll(struct ieee80211_local
*local
,
612 struct ieee80211_sub_if_data
*sdata
)
614 struct ieee80211_pspoll
*pspoll
;
617 skb
= ieee80211_pspoll_get(&local
->hw
, &sdata
->vif
);
621 pspoll
= (struct ieee80211_pspoll
*) skb
->data
;
622 pspoll
->frame_control
|= cpu_to_le16(IEEE80211_FCTL_PM
);
624 IEEE80211_SKB_CB(skb
)->flags
|= IEEE80211_TX_INTFL_DONT_ENCRYPT
;
625 ieee80211_tx_skb(sdata
, skb
);
628 void ieee80211_send_nullfunc(struct ieee80211_local
*local
,
629 struct ieee80211_sub_if_data
*sdata
,
633 struct ieee80211_hdr_3addr
*nullfunc
;
634 struct ieee80211_if_managed
*ifmgd
= &sdata
->u
.mgd
;
636 skb
= ieee80211_nullfunc_get(&local
->hw
, &sdata
->vif
);
640 nullfunc
= (struct ieee80211_hdr_3addr
*) skb
->data
;
642 nullfunc
->frame_control
|= cpu_to_le16(IEEE80211_FCTL_PM
);
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
;
649 ieee80211_tx_skb(sdata
, skb
);
652 static void ieee80211_send_4addr_nullfunc(struct ieee80211_local
*local
,
653 struct ieee80211_sub_if_data
*sdata
)
656 struct ieee80211_hdr
*nullfunc
;
659 if (WARN_ON(sdata
->vif
.type
!= NL80211_IFTYPE_STATION
))
662 skb
= dev_alloc_skb(local
->hw
.extra_tx_headroom
+ 30);
666 skb_reserve(skb
, local
->hw
.extra_tx_headroom
);
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
);
678 IEEE80211_SKB_CB(skb
)->flags
|= IEEE80211_TX_INTFL_DONT_ENCRYPT
;
679 ieee80211_tx_skb(sdata
, skb
);
682 /* spectrum management related things */
683 static void ieee80211_chswitch_work(struct work_struct
*work
)
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
;
689 if (!ieee80211_sdata_running(sdata
))
692 mutex_lock(&ifmgd
->mtx
);
693 if (!ifmgd
->associated
)
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
);
702 /* update the device channel directly */
703 sdata
->local
->hw
.conf
.channel
= sdata
->local
->_oper_channel
;
706 /* XXX: shouldn't really modify cfg80211-owned data! */
707 ifmgd
->associated
->channel
= sdata
->local
->_oper_channel
;
709 /* XXX: wait for a beacon first? */
710 ieee80211_wake_queues_by_reason(&sdata
->local
->hw
,
711 IEEE80211_QUEUE_STOP_REASON_CSA
);
713 ifmgd
->flags
&= ~IEEE80211_STA_CSA_RECEIVED
;
714 mutex_unlock(&ifmgd
->mtx
);
717 void ieee80211_chswitch_done(struct ieee80211_vif
*vif
, bool success
)
719 struct ieee80211_sub_if_data
*sdata
= vif_to_sdata(vif
);
720 struct ieee80211_if_managed
*ifmgd
= &sdata
->u
.mgd
;
722 trace_api_chswitch_done(sdata
, success
);
725 "driver channel switch failed, disconnecting\n");
726 ieee80211_queue_work(&sdata
->local
->hw
,
727 &ifmgd
->csa_connection_drop_work
);
729 ieee80211_queue_work(&sdata
->local
->hw
, &ifmgd
->chswitch_work
);
732 EXPORT_SYMBOL(ieee80211_chswitch_done
);
734 static void ieee80211_chswitch_timer(unsigned long data
)
736 struct ieee80211_sub_if_data
*sdata
=
737 (struct ieee80211_sub_if_data
*) data
;
738 struct ieee80211_if_managed
*ifmgd
= &sdata
->u
.mgd
;
740 if (sdata
->local
->quiescing
) {
741 set_bit(TMR_RUNNING_CHANSW
, &ifmgd
->timers_running
);
745 ieee80211_queue_work(&sdata
->local
->hw
, &ifmgd
->chswitch_work
);
748 void ieee80211_sta_process_chanswitch(struct ieee80211_sub_if_data
*sdata
,
749 struct ieee80211_channel_sw_ie
*sw_elem
,
750 struct ieee80211_bss
*bss
,
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
;
761 ASSERT_MGD_MTX(ifmgd
);
763 if (!ifmgd
->associated
)
766 if (sdata
->local
->scanning
)
769 /* Disregard subsequent beacons if we are already running a timer
772 if (ifmgd
->flags
& IEEE80211_STA_CSA_RECEIVED
)
775 new_ch
= ieee80211_get_channel(sdata
->local
->hw
.wiphy
, new_freq
);
776 if (!new_ch
|| new_ch
->flags
& IEEE80211_CHAN_DISABLED
) {
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
);
785 ifmgd
->flags
|= IEEE80211_STA_CSA_RECEIVED
;
787 if (sdata
->local
->use_chanctx
) {
789 "not handling channel switch with channel contexts\n");
790 ieee80211_queue_work(&sdata
->local
->hw
,
791 &ifmgd
->csa_connection_drop_work
);
795 mutex_lock(&sdata
->local
->chanctx_mtx
);
796 if (WARN_ON(!rcu_access_pointer(sdata
->vif
.chanctx_conf
))) {
797 mutex_unlock(&sdata
->local
->chanctx_mtx
);
800 chanctx
= container_of(rcu_access_pointer(sdata
->vif
.chanctx_conf
),
801 struct ieee80211_chanctx
, conf
);
802 if (chanctx
->refcount
> 1) {
804 "channel switch with multiple interfaces on the same channel, disconnecting\n");
805 ieee80211_queue_work(&sdata
->local
->hw
,
806 &ifmgd
->csa_connection_drop_work
);
807 mutex_unlock(&sdata
->local
->chanctx_mtx
);
810 mutex_unlock(&sdata
->local
->chanctx_mtx
);
812 sdata
->local
->csa_channel
= new_ch
;
815 ieee80211_stop_queues_by_reason(&sdata
->local
->hw
,
816 IEEE80211_QUEUE_STOP_REASON_CSA
);
818 if (sdata
->local
->ops
->channel_switch
) {
819 /* use driver's channel switch callback */
820 struct ieee80211_channel_switch ch_switch
= {
821 .timestamp
= timestamp
,
822 .block_tx
= sw_elem
->mode
,
824 .count
= sw_elem
->count
,
827 drv_channel_switch(sdata
->local
, &ch_switch
);
831 /* channel switch handled in software */
832 if (sw_elem
->count
<= 1)
833 ieee80211_queue_work(&sdata
->local
->hw
, &ifmgd
->chswitch_work
);
835 mod_timer(&ifmgd
->chswitch_timer
,
836 TU_TO_EXP_TIME(sw_elem
->count
*
837 cbss
->beacon_interval
));
840 static u32
ieee80211_handle_pwr_constr(struct ieee80211_sub_if_data
*sdata
,
841 struct ieee80211_channel
*channel
,
842 const u8
*country_ie
, u8 country_ie_len
,
843 const u8
*pwr_constr_elem
)
845 struct ieee80211_country_ie_triplet
*triplet
;
846 int chan
= ieee80211_frequency_to_channel(channel
->center_freq
);
847 int i
, chan_pwr
, chan_increment
, new_ap_level
;
848 bool have_chan_pwr
= false;
851 if (country_ie_len
% 2 || country_ie_len
< IEEE80211_COUNTRY_IE_MIN_LEN
)
854 triplet
= (void *)(country_ie
+ 3);
857 switch (channel
->band
) {
861 case IEEE80211_BAND_2GHZ
:
862 case IEEE80211_BAND_60GHZ
:
865 case IEEE80211_BAND_5GHZ
:
871 while (country_ie_len
>= 3) {
872 u8 first_channel
= triplet
->chans
.first_channel
;
874 if (first_channel
>= IEEE80211_COUNTRY_EXTENSION_ID
)
877 for (i
= 0; i
< triplet
->chans
.num_channels
; i
++) {
878 if (first_channel
+ i
* chan_increment
== chan
) {
879 have_chan_pwr
= true;
880 chan_pwr
= triplet
->chans
.max_power
;
895 new_ap_level
= max_t(int, 0, chan_pwr
- *pwr_constr_elem
);
897 if (sdata
->ap_power_level
== new_ap_level
)
901 "Limiting TX power to %d (%d - %d) dBm as advertised by %pM\n",
902 new_ap_level
, chan_pwr
, *pwr_constr_elem
,
904 sdata
->ap_power_level
= new_ap_level
;
905 if (__ieee80211_recalc_txpower(sdata
))
906 return BSS_CHANGED_TXPOWER
;
910 void ieee80211_enable_dyn_ps(struct ieee80211_vif
*vif
)
912 struct ieee80211_sub_if_data
*sdata
= vif_to_sdata(vif
);
913 struct ieee80211_local
*local
= sdata
->local
;
914 struct ieee80211_conf
*conf
= &local
->hw
.conf
;
916 WARN_ON(sdata
->vif
.type
!= NL80211_IFTYPE_STATION
||
917 !(local
->hw
.flags
& IEEE80211_HW_SUPPORTS_PS
) ||
918 (local
->hw
.flags
& IEEE80211_HW_SUPPORTS_DYNAMIC_PS
));
920 local
->disable_dynamic_ps
= false;
921 conf
->dynamic_ps_timeout
= local
->dynamic_ps_user_timeout
;
923 EXPORT_SYMBOL(ieee80211_enable_dyn_ps
);
925 void ieee80211_disable_dyn_ps(struct ieee80211_vif
*vif
)
927 struct ieee80211_sub_if_data
*sdata
= vif_to_sdata(vif
);
928 struct ieee80211_local
*local
= sdata
->local
;
929 struct ieee80211_conf
*conf
= &local
->hw
.conf
;
931 WARN_ON(sdata
->vif
.type
!= NL80211_IFTYPE_STATION
||
932 !(local
->hw
.flags
& IEEE80211_HW_SUPPORTS_PS
) ||
933 (local
->hw
.flags
& IEEE80211_HW_SUPPORTS_DYNAMIC_PS
));
935 local
->disable_dynamic_ps
= true;
936 conf
->dynamic_ps_timeout
= 0;
937 del_timer_sync(&local
->dynamic_ps_timer
);
938 ieee80211_queue_work(&local
->hw
,
939 &local
->dynamic_ps_enable_work
);
941 EXPORT_SYMBOL(ieee80211_disable_dyn_ps
);
944 static void ieee80211_enable_ps(struct ieee80211_local
*local
,
945 struct ieee80211_sub_if_data
*sdata
)
947 struct ieee80211_conf
*conf
= &local
->hw
.conf
;
950 * If we are scanning right now then the parameters will
951 * take effect when scan finishes.
956 if (conf
->dynamic_ps_timeout
> 0 &&
957 !(local
->hw
.flags
& IEEE80211_HW_SUPPORTS_DYNAMIC_PS
)) {
958 mod_timer(&local
->dynamic_ps_timer
, jiffies
+
959 msecs_to_jiffies(conf
->dynamic_ps_timeout
));
961 if (local
->hw
.flags
& IEEE80211_HW_PS_NULLFUNC_STACK
)
962 ieee80211_send_nullfunc(local
, sdata
, 1);
964 if ((local
->hw
.flags
& IEEE80211_HW_PS_NULLFUNC_STACK
) &&
965 (local
->hw
.flags
& IEEE80211_HW_REPORTS_TX_ACK_STATUS
))
968 conf
->flags
|= IEEE80211_CONF_PS
;
969 ieee80211_hw_config(local
, IEEE80211_CONF_CHANGE_PS
);
973 static void ieee80211_change_ps(struct ieee80211_local
*local
)
975 struct ieee80211_conf
*conf
= &local
->hw
.conf
;
977 if (local
->ps_sdata
) {
978 ieee80211_enable_ps(local
, local
->ps_sdata
);
979 } else if (conf
->flags
& IEEE80211_CONF_PS
) {
980 conf
->flags
&= ~IEEE80211_CONF_PS
;
981 ieee80211_hw_config(local
, IEEE80211_CONF_CHANGE_PS
);
982 del_timer_sync(&local
->dynamic_ps_timer
);
983 cancel_work_sync(&local
->dynamic_ps_enable_work
);
987 static bool ieee80211_powersave_allowed(struct ieee80211_sub_if_data
*sdata
)
989 struct ieee80211_if_managed
*mgd
= &sdata
->u
.mgd
;
990 struct sta_info
*sta
= NULL
;
991 bool authorized
= false;
999 if (!mgd
->associated
)
1002 if (mgd
->flags
& (IEEE80211_STA_BEACON_POLL
|
1003 IEEE80211_STA_CONNECTION_POLL
))
1007 sta
= sta_info_get(sdata
, mgd
->bssid
);
1009 authorized
= test_sta_flag(sta
, WLAN_STA_AUTHORIZED
);
1015 /* need to hold RTNL or interface lock */
1016 void ieee80211_recalc_ps(struct ieee80211_local
*local
, s32 latency
)
1018 struct ieee80211_sub_if_data
*sdata
, *found
= NULL
;
1022 if (!(local
->hw
.flags
& IEEE80211_HW_SUPPORTS_PS
)) {
1023 local
->ps_sdata
= NULL
;
1027 list_for_each_entry(sdata
, &local
->interfaces
, list
) {
1028 if (!ieee80211_sdata_running(sdata
))
1030 if (sdata
->vif
.type
== NL80211_IFTYPE_AP
) {
1031 /* If an AP vif is found, then disable PS
1032 * by setting the count to zero thereby setting
1038 if (sdata
->vif
.type
!= NL80211_IFTYPE_STATION
)
1044 if (count
== 1 && ieee80211_powersave_allowed(found
)) {
1045 struct ieee80211_conf
*conf
= &local
->hw
.conf
;
1049 latency
= pm_qos_request(PM_QOS_NETWORK_LATENCY
);
1051 beaconint_us
= ieee80211_tu_to_usec(
1052 found
->vif
.bss_conf
.beacon_int
);
1054 timeout
= local
->dynamic_ps_forced_timeout
;
1057 * Go to full PSM if the user configures a very low
1058 * latency requirement.
1059 * The 2000 second value is there for compatibility
1060 * until the PM_QOS_NETWORK_LATENCY is configured
1063 if (latency
> (1900 * USEC_PER_MSEC
) &&
1064 latency
!= (2000 * USEC_PER_SEC
))
1069 local
->dynamic_ps_user_timeout
= timeout
;
1070 if (!local
->disable_dynamic_ps
)
1071 conf
->dynamic_ps_timeout
=
1072 local
->dynamic_ps_user_timeout
;
1074 if (beaconint_us
> latency
) {
1075 local
->ps_sdata
= NULL
;
1078 u8 dtimper
= found
->u
.mgd
.dtim_period
;
1080 /* If the TIM IE is invalid, pretend the value is 1 */
1083 else if (dtimper
> 1)
1084 maxslp
= min_t(int, dtimper
,
1085 latency
/ beaconint_us
);
1087 local
->hw
.conf
.max_sleep_period
= maxslp
;
1088 local
->hw
.conf
.ps_dtim_period
= dtimper
;
1089 local
->ps_sdata
= found
;
1092 local
->ps_sdata
= NULL
;
1095 ieee80211_change_ps(local
);
1098 void ieee80211_recalc_ps_vif(struct ieee80211_sub_if_data
*sdata
)
1100 bool ps_allowed
= ieee80211_powersave_allowed(sdata
);
1102 if (sdata
->vif
.bss_conf
.ps
!= ps_allowed
) {
1103 sdata
->vif
.bss_conf
.ps
= ps_allowed
;
1104 ieee80211_bss_info_change_notify(sdata
, BSS_CHANGED_PS
);
1108 void ieee80211_dynamic_ps_disable_work(struct work_struct
*work
)
1110 struct ieee80211_local
*local
=
1111 container_of(work
, struct ieee80211_local
,
1112 dynamic_ps_disable_work
);
1114 if (local
->hw
.conf
.flags
& IEEE80211_CONF_PS
) {
1115 local
->hw
.conf
.flags
&= ~IEEE80211_CONF_PS
;
1116 ieee80211_hw_config(local
, IEEE80211_CONF_CHANGE_PS
);
1119 ieee80211_wake_queues_by_reason(&local
->hw
,
1120 IEEE80211_QUEUE_STOP_REASON_PS
);
1123 void ieee80211_dynamic_ps_enable_work(struct work_struct
*work
)
1125 struct ieee80211_local
*local
=
1126 container_of(work
, struct ieee80211_local
,
1127 dynamic_ps_enable_work
);
1128 struct ieee80211_sub_if_data
*sdata
= local
->ps_sdata
;
1129 struct ieee80211_if_managed
*ifmgd
;
1130 unsigned long flags
;
1133 /* can only happen when PS was just disabled anyway */
1137 ifmgd
= &sdata
->u
.mgd
;
1139 if (local
->hw
.conf
.flags
& IEEE80211_CONF_PS
)
1142 if (!local
->disable_dynamic_ps
&&
1143 local
->hw
.conf
.dynamic_ps_timeout
> 0) {
1144 /* don't enter PS if TX frames are pending */
1145 if (drv_tx_frames_pending(local
)) {
1146 mod_timer(&local
->dynamic_ps_timer
, jiffies
+
1148 local
->hw
.conf
.dynamic_ps_timeout
));
1153 * transmission can be stopped by others which leads to
1154 * dynamic_ps_timer expiry. Postpone the ps timer if it
1155 * is not the actual idle state.
1157 spin_lock_irqsave(&local
->queue_stop_reason_lock
, flags
);
1158 for (q
= 0; q
< local
->hw
.queues
; q
++) {
1159 if (local
->queue_stop_reasons
[q
]) {
1160 spin_unlock_irqrestore(&local
->queue_stop_reason_lock
,
1162 mod_timer(&local
->dynamic_ps_timer
, jiffies
+
1164 local
->hw
.conf
.dynamic_ps_timeout
));
1168 spin_unlock_irqrestore(&local
->queue_stop_reason_lock
, flags
);
1171 if ((local
->hw
.flags
& IEEE80211_HW_PS_NULLFUNC_STACK
) &&
1172 !(ifmgd
->flags
& IEEE80211_STA_NULLFUNC_ACKED
)) {
1173 netif_tx_stop_all_queues(sdata
->dev
);
1175 if (drv_tx_frames_pending(local
))
1176 mod_timer(&local
->dynamic_ps_timer
, jiffies
+
1178 local
->hw
.conf
.dynamic_ps_timeout
));
1180 ieee80211_send_nullfunc(local
, sdata
, 1);
1181 /* Flush to get the tx status of nullfunc frame */
1182 drv_flush(local
, false);
1186 if (!((local
->hw
.flags
& IEEE80211_HW_REPORTS_TX_ACK_STATUS
) &&
1187 (local
->hw
.flags
& IEEE80211_HW_PS_NULLFUNC_STACK
)) ||
1188 (ifmgd
->flags
& IEEE80211_STA_NULLFUNC_ACKED
)) {
1189 ifmgd
->flags
&= ~IEEE80211_STA_NULLFUNC_ACKED
;
1190 local
->hw
.conf
.flags
|= IEEE80211_CONF_PS
;
1191 ieee80211_hw_config(local
, IEEE80211_CONF_CHANGE_PS
);
1194 if (local
->hw
.flags
& IEEE80211_HW_PS_NULLFUNC_STACK
)
1195 netif_tx_wake_all_queues(sdata
->dev
);
1198 void ieee80211_dynamic_ps_timer(unsigned long data
)
1200 struct ieee80211_local
*local
= (void *) data
;
1202 if (local
->quiescing
|| local
->suspended
)
1205 ieee80211_queue_work(&local
->hw
, &local
->dynamic_ps_enable_work
);
1209 static bool ieee80211_sta_wmm_params(struct ieee80211_local
*local
,
1210 struct ieee80211_sub_if_data
*sdata
,
1211 u8
*wmm_param
, size_t wmm_param_len
)
1213 struct ieee80211_tx_queue_params params
;
1214 struct ieee80211_if_managed
*ifmgd
= &sdata
->u
.mgd
;
1217 u8
*pos
, uapsd_queues
= 0;
1219 if (!local
->ops
->conf_tx
)
1222 if (local
->hw
.queues
< IEEE80211_NUM_ACS
)
1228 if (wmm_param_len
< 8 || wmm_param
[5] /* version */ != 1)
1231 if (ifmgd
->flags
& IEEE80211_STA_UAPSD_ENABLED
)
1232 uapsd_queues
= ifmgd
->uapsd_queues
;
1234 count
= wmm_param
[6] & 0x0f;
1235 if (count
== ifmgd
->wmm_last_param_set
)
1237 ifmgd
->wmm_last_param_set
= count
;
1239 pos
= wmm_param
+ 8;
1240 left
= wmm_param_len
- 8;
1242 memset(¶ms
, 0, sizeof(params
));
1245 for (; left
>= 4; left
-= 4, pos
+= 4) {
1246 int aci
= (pos
[0] >> 5) & 0x03;
1247 int acm
= (pos
[0] >> 4) & 0x01;
1255 sdata
->wmm_acm
|= BIT(1) | BIT(2); /* BK/- */
1256 if (uapsd_queues
& IEEE80211_WMM_IE_STA_QOSINFO_AC_BK
)
1262 sdata
->wmm_acm
|= BIT(4) | BIT(5); /* CL/VI */
1263 if (uapsd_queues
& IEEE80211_WMM_IE_STA_QOSINFO_AC_VI
)
1269 sdata
->wmm_acm
|= BIT(6) | BIT(7); /* VO/NC */
1270 if (uapsd_queues
& IEEE80211_WMM_IE_STA_QOSINFO_AC_VO
)
1277 sdata
->wmm_acm
|= BIT(0) | BIT(3); /* BE/EE */
1278 if (uapsd_queues
& IEEE80211_WMM_IE_STA_QOSINFO_AC_BE
)
1283 params
.aifs
= pos
[0] & 0x0f;
1284 params
.cw_max
= ecw2cw((pos
[1] & 0xf0) >> 4);
1285 params
.cw_min
= ecw2cw(pos
[1] & 0x0f);
1286 params
.txop
= get_unaligned_le16(pos
+ 2);
1287 params
.uapsd
= uapsd
;
1290 "WMM queue=%d aci=%d acm=%d aifs=%d cWmin=%d cWmax=%d txop=%d uapsd=%d\n",
1292 params
.aifs
, params
.cw_min
, params
.cw_max
,
1293 params
.txop
, params
.uapsd
);
1294 sdata
->tx_conf
[queue
] = params
;
1295 if (drv_conf_tx(local
, sdata
, queue
, ¶ms
))
1297 "failed to set TX queue parameters for queue %d\n",
1301 /* enable WMM or activate new settings */
1302 sdata
->vif
.bss_conf
.qos
= true;
1306 static void __ieee80211_stop_poll(struct ieee80211_sub_if_data
*sdata
)
1308 lockdep_assert_held(&sdata
->local
->mtx
);
1310 sdata
->u
.mgd
.flags
&= ~(IEEE80211_STA_CONNECTION_POLL
|
1311 IEEE80211_STA_BEACON_POLL
);
1312 ieee80211_run_deferred_scan(sdata
->local
);
1315 static void ieee80211_stop_poll(struct ieee80211_sub_if_data
*sdata
)
1317 mutex_lock(&sdata
->local
->mtx
);
1318 __ieee80211_stop_poll(sdata
);
1319 mutex_unlock(&sdata
->local
->mtx
);
1322 static u32
ieee80211_handle_bss_capability(struct ieee80211_sub_if_data
*sdata
,
1323 u16 capab
, bool erp_valid
, u8 erp
)
1325 struct ieee80211_bss_conf
*bss_conf
= &sdata
->vif
.bss_conf
;
1327 bool use_protection
;
1328 bool use_short_preamble
;
1329 bool use_short_slot
;
1332 use_protection
= (erp
& WLAN_ERP_USE_PROTECTION
) != 0;
1333 use_short_preamble
= (erp
& WLAN_ERP_BARKER_PREAMBLE
) == 0;
1335 use_protection
= false;
1336 use_short_preamble
= !!(capab
& WLAN_CAPABILITY_SHORT_PREAMBLE
);
1339 use_short_slot
= !!(capab
& WLAN_CAPABILITY_SHORT_SLOT_TIME
);
1340 if (ieee80211_get_sdata_band(sdata
) == IEEE80211_BAND_5GHZ
)
1341 use_short_slot
= true;
1343 if (use_protection
!= bss_conf
->use_cts_prot
) {
1344 bss_conf
->use_cts_prot
= use_protection
;
1345 changed
|= BSS_CHANGED_ERP_CTS_PROT
;
1348 if (use_short_preamble
!= bss_conf
->use_short_preamble
) {
1349 bss_conf
->use_short_preamble
= use_short_preamble
;
1350 changed
|= BSS_CHANGED_ERP_PREAMBLE
;
1353 if (use_short_slot
!= bss_conf
->use_short_slot
) {
1354 bss_conf
->use_short_slot
= use_short_slot
;
1355 changed
|= BSS_CHANGED_ERP_SLOT
;
1361 static void ieee80211_set_associated(struct ieee80211_sub_if_data
*sdata
,
1362 struct cfg80211_bss
*cbss
,
1363 u32 bss_info_changed
)
1365 struct ieee80211_bss
*bss
= (void *)cbss
->priv
;
1366 struct ieee80211_local
*local
= sdata
->local
;
1367 struct ieee80211_bss_conf
*bss_conf
= &sdata
->vif
.bss_conf
;
1369 bss_info_changed
|= BSS_CHANGED_ASSOC
;
1370 bss_info_changed
|= ieee80211_handle_bss_capability(sdata
,
1371 bss_conf
->assoc_capability
, bss
->has_erp_value
, bss
->erp_value
);
1373 sdata
->u
.mgd
.beacon_timeout
= usecs_to_jiffies(ieee80211_tu_to_usec(
1374 IEEE80211_BEACON_LOSS_COUNT
* bss_conf
->beacon_int
));
1376 sdata
->u
.mgd
.associated
= cbss
;
1377 memcpy(sdata
->u
.mgd
.bssid
, cbss
->bssid
, ETH_ALEN
);
1379 sdata
->u
.mgd
.flags
|= IEEE80211_STA_RESET_SIGNAL_AVE
;
1381 if (sdata
->vif
.p2p
) {
1382 const struct cfg80211_bss_ies
*ies
;
1385 ies
= rcu_dereference(cbss
->ies
);
1390 ret
= cfg80211_get_p2p_attr(
1391 ies
->data
, ies
->len
,
1392 IEEE80211_P2P_ATTR_ABSENCE_NOTICE
,
1395 bss_conf
->p2p_oppps
= noa
[1] & 0x80;
1396 bss_conf
->p2p_ctwindow
= noa
[1] & 0x7f;
1397 bss_info_changed
|= BSS_CHANGED_P2P_PS
;
1398 sdata
->u
.mgd
.p2p_noa_index
= noa
[0];
1404 /* just to be sure */
1405 ieee80211_stop_poll(sdata
);
1407 ieee80211_led_assoc(local
, 1);
1409 if (local
->hw
.flags
& IEEE80211_HW_NEED_DTIM_PERIOD
) {
1411 * If the AP is buggy we may get here with no DTIM period
1412 * known, so assume it's 1 which is the only safe assumption
1413 * in that case, although if the TIM IE is broken powersave
1414 * probably just won't work at all.
1416 bss_conf
->dtim_period
= sdata
->u
.mgd
.dtim_period
?: 1;
1418 bss_conf
->dtim_period
= 0;
1421 bss_conf
->assoc
= 1;
1423 /* Tell the driver to monitor connection quality (if supported) */
1424 if (sdata
->vif
.driver_flags
& IEEE80211_VIF_SUPPORTS_CQM_RSSI
&&
1425 bss_conf
->cqm_rssi_thold
)
1426 bss_info_changed
|= BSS_CHANGED_CQM
;
1428 /* Enable ARP filtering */
1429 if (bss_conf
->arp_filter_enabled
!= sdata
->arp_filter_state
) {
1430 bss_conf
->arp_filter_enabled
= sdata
->arp_filter_state
;
1431 bss_info_changed
|= BSS_CHANGED_ARP_FILTER
;
1434 ieee80211_bss_info_change_notify(sdata
, bss_info_changed
);
1436 mutex_lock(&local
->iflist_mtx
);
1437 ieee80211_recalc_ps(local
, -1);
1438 mutex_unlock(&local
->iflist_mtx
);
1440 ieee80211_recalc_smps(sdata
);
1441 ieee80211_recalc_ps_vif(sdata
);
1443 netif_tx_start_all_queues(sdata
->dev
);
1444 netif_carrier_on(sdata
->dev
);
1447 static void ieee80211_set_disassoc(struct ieee80211_sub_if_data
*sdata
,
1448 u16 stype
, u16 reason
, bool tx
,
1451 struct ieee80211_if_managed
*ifmgd
= &sdata
->u
.mgd
;
1452 struct ieee80211_local
*local
= sdata
->local
;
1453 struct sta_info
*sta
;
1456 ASSERT_MGD_MTX(ifmgd
);
1458 if (WARN_ON_ONCE(tx
&& !frame_buf
))
1461 if (WARN_ON(!ifmgd
->associated
))
1464 ieee80211_stop_poll(sdata
);
1466 ifmgd
->associated
= NULL
;
1469 * we need to commit the associated = NULL change because the
1470 * scan code uses that to determine whether this iface should
1471 * go to/wake up from powersave or not -- and could otherwise
1472 * wake the queues erroneously.
1477 * Thus, we can only afterwards stop the queues -- to account
1478 * for the case where another CPU is finishing a scan at this
1479 * time -- we don't want the scan code to enable queues.
1482 netif_tx_stop_all_queues(sdata
->dev
);
1483 netif_carrier_off(sdata
->dev
);
1485 mutex_lock(&local
->sta_mtx
);
1486 sta
= sta_info_get(sdata
, ifmgd
->bssid
);
1488 set_sta_flag(sta
, WLAN_STA_BLOCK_BA
);
1489 ieee80211_sta_tear_down_BA_sessions(sta
, false);
1491 mutex_unlock(&local
->sta_mtx
);
1494 * if we want to get out of ps before disassoc (why?) we have
1495 * to do it before sending disassoc, as otherwise the null-packet
1498 if (local
->hw
.conf
.flags
& IEEE80211_CONF_PS
) {
1499 local
->hw
.conf
.flags
&= ~IEEE80211_CONF_PS
;
1500 ieee80211_hw_config(local
, IEEE80211_CONF_CHANGE_PS
);
1502 local
->ps_sdata
= NULL
;
1504 /* disable per-vif ps */
1505 ieee80211_recalc_ps_vif(sdata
);
1507 /* flush out any pending frame (e.g. DELBA) before deauth/disassoc */
1509 drv_flush(local
, false);
1511 /* deauthenticate/disassociate now */
1512 if (tx
|| frame_buf
)
1513 ieee80211_send_deauth_disassoc(sdata
, ifmgd
->bssid
, stype
,
1514 reason
, tx
, frame_buf
);
1516 /* flush out frame */
1518 drv_flush(local
, false);
1520 /* clear bssid only after building the needed mgmt frames */
1521 memset(ifmgd
->bssid
, 0, ETH_ALEN
);
1523 /* remove AP and TDLS peers */
1524 sta_info_flush(local
, sdata
);
1526 /* finally reset all BSS / config parameters */
1527 changed
|= ieee80211_reset_erp_info(sdata
);
1529 ieee80211_led_assoc(local
, 0);
1530 changed
|= BSS_CHANGED_ASSOC
;
1531 sdata
->vif
.bss_conf
.assoc
= false;
1533 sdata
->vif
.bss_conf
.p2p_ctwindow
= 0;
1534 sdata
->vif
.bss_conf
.p2p_oppps
= false;
1536 /* on the next assoc, re-program HT parameters */
1537 memset(&ifmgd
->ht_capa
, 0, sizeof(ifmgd
->ht_capa
));
1538 memset(&ifmgd
->ht_capa_mask
, 0, sizeof(ifmgd
->ht_capa_mask
));
1540 sdata
->ap_power_level
= IEEE80211_UNSET_POWER_LEVEL
;
1542 del_timer_sync(&local
->dynamic_ps_timer
);
1543 cancel_work_sync(&local
->dynamic_ps_enable_work
);
1545 /* Disable ARP filtering */
1546 if (sdata
->vif
.bss_conf
.arp_filter_enabled
) {
1547 sdata
->vif
.bss_conf
.arp_filter_enabled
= false;
1548 changed
|= BSS_CHANGED_ARP_FILTER
;
1551 sdata
->vif
.bss_conf
.qos
= false;
1552 changed
|= BSS_CHANGED_QOS
;
1554 /* The BSSID (not really interesting) and HT changed */
1555 changed
|= BSS_CHANGED_BSSID
| BSS_CHANGED_HT
;
1556 ieee80211_bss_info_change_notify(sdata
, changed
);
1558 /* disassociated - set to defaults now */
1559 ieee80211_set_wmm_default(sdata
, false);
1561 del_timer_sync(&sdata
->u
.mgd
.conn_mon_timer
);
1562 del_timer_sync(&sdata
->u
.mgd
.bcn_mon_timer
);
1563 del_timer_sync(&sdata
->u
.mgd
.timer
);
1564 del_timer_sync(&sdata
->u
.mgd
.chswitch_timer
);
1566 sdata
->u
.mgd
.timers_running
= 0;
1568 sdata
->vif
.bss_conf
.dtim_period
= 0;
1571 ieee80211_vif_release_channel(sdata
);
1574 void ieee80211_sta_rx_notify(struct ieee80211_sub_if_data
*sdata
,
1575 struct ieee80211_hdr
*hdr
)
1578 * We can postpone the mgd.timer whenever receiving unicast frames
1579 * from AP because we know that the connection is working both ways
1580 * at that time. But multicast frames (and hence also beacons) must
1581 * be ignored here, because we need to trigger the timer during
1582 * data idle periods for sending the periodic probe request to the
1583 * AP we're connected to.
1585 if (is_multicast_ether_addr(hdr
->addr1
))
1588 ieee80211_sta_reset_conn_monitor(sdata
);
1591 static void ieee80211_reset_ap_probe(struct ieee80211_sub_if_data
*sdata
)
1593 struct ieee80211_if_managed
*ifmgd
= &sdata
->u
.mgd
;
1594 struct ieee80211_local
*local
= sdata
->local
;
1596 mutex_lock(&local
->mtx
);
1597 if (!(ifmgd
->flags
& (IEEE80211_STA_BEACON_POLL
|
1598 IEEE80211_STA_CONNECTION_POLL
))) {
1599 mutex_unlock(&local
->mtx
);
1603 __ieee80211_stop_poll(sdata
);
1605 mutex_lock(&local
->iflist_mtx
);
1606 ieee80211_recalc_ps(local
, -1);
1607 mutex_unlock(&local
->iflist_mtx
);
1609 if (sdata
->local
->hw
.flags
& IEEE80211_HW_CONNECTION_MONITOR
)
1613 * We've received a probe response, but are not sure whether
1614 * we have or will be receiving any beacons or data, so let's
1615 * schedule the timers again, just in case.
1617 ieee80211_sta_reset_beacon_monitor(sdata
);
1619 mod_timer(&ifmgd
->conn_mon_timer
,
1620 round_jiffies_up(jiffies
+
1621 IEEE80211_CONNECTION_IDLE_TIME
));
1623 mutex_unlock(&local
->mtx
);
1626 void ieee80211_sta_tx_notify(struct ieee80211_sub_if_data
*sdata
,
1627 struct ieee80211_hdr
*hdr
, bool ack
)
1629 if (!ieee80211_is_data(hdr
->frame_control
))
1633 ieee80211_sta_reset_conn_monitor(sdata
);
1635 if (ieee80211_is_nullfunc(hdr
->frame_control
) &&
1636 sdata
->u
.mgd
.probe_send_count
> 0) {
1638 sdata
->u
.mgd
.probe_send_count
= 0;
1640 sdata
->u
.mgd
.nullfunc_failed
= true;
1641 ieee80211_queue_work(&sdata
->local
->hw
, &sdata
->work
);
1645 static void ieee80211_mgd_probe_ap_send(struct ieee80211_sub_if_data
*sdata
)
1647 struct ieee80211_if_managed
*ifmgd
= &sdata
->u
.mgd
;
1649 u8
*dst
= ifmgd
->associated
->bssid
;
1650 u8 unicast_limit
= max(1, max_probe_tries
- 3);
1653 * Try sending broadcast probe requests for the last three
1654 * probe requests after the first ones failed since some
1655 * buggy APs only support broadcast probe requests.
1657 if (ifmgd
->probe_send_count
>= unicast_limit
)
1661 * When the hardware reports an accurate Tx ACK status, it's
1662 * better to send a nullfunc frame instead of a probe request,
1663 * as it will kick us off the AP quickly if we aren't associated
1664 * anymore. The timeout will be reset if the frame is ACKed by
1667 ifmgd
->probe_send_count
++;
1669 if (sdata
->local
->hw
.flags
& IEEE80211_HW_REPORTS_TX_ACK_STATUS
) {
1670 ifmgd
->nullfunc_failed
= false;
1671 ieee80211_send_nullfunc(sdata
->local
, sdata
, 0);
1676 ssid
= ieee80211_bss_get_ie(ifmgd
->associated
, WLAN_EID_SSID
);
1677 if (WARN_ON_ONCE(ssid
== NULL
))
1682 ieee80211_send_probe_req(sdata
, dst
, ssid
+ 2, ssid_len
, NULL
,
1683 0, (u32
) -1, true, false,
1684 ifmgd
->associated
->channel
, false);
1688 ifmgd
->probe_timeout
= jiffies
+ msecs_to_jiffies(probe_wait_ms
);
1689 run_again(ifmgd
, ifmgd
->probe_timeout
);
1690 if (sdata
->local
->hw
.flags
& IEEE80211_HW_REPORTS_TX_ACK_STATUS
)
1691 drv_flush(sdata
->local
, false);
1694 static void ieee80211_mgd_probe_ap(struct ieee80211_sub_if_data
*sdata
,
1697 struct ieee80211_if_managed
*ifmgd
= &sdata
->u
.mgd
;
1698 bool already
= false;
1700 if (!ieee80211_sdata_running(sdata
))
1703 mutex_lock(&ifmgd
->mtx
);
1705 if (!ifmgd
->associated
)
1708 mutex_lock(&sdata
->local
->mtx
);
1710 if (sdata
->local
->tmp_channel
|| sdata
->local
->scanning
) {
1711 mutex_unlock(&sdata
->local
->mtx
);
1716 mlme_dbg_ratelimited(sdata
,
1717 "detected beacon loss from AP - sending probe request\n");
1719 ieee80211_cqm_rssi_notify(&sdata
->vif
,
1720 NL80211_CQM_RSSI_BEACON_LOSS_EVENT
, GFP_KERNEL
);
1723 * The driver/our work has already reported this event or the
1724 * connection monitoring has kicked in and we have already sent
1725 * a probe request. Or maybe the AP died and the driver keeps
1726 * reporting until we disassociate...
1728 * In either case we have to ignore the current call to this
1729 * function (except for setting the correct probe reason bit)
1730 * because otherwise we would reset the timer every time and
1731 * never check whether we received a probe response!
1733 if (ifmgd
->flags
& (IEEE80211_STA_BEACON_POLL
|
1734 IEEE80211_STA_CONNECTION_POLL
))
1738 ifmgd
->flags
|= IEEE80211_STA_BEACON_POLL
;
1740 ifmgd
->flags
|= IEEE80211_STA_CONNECTION_POLL
;
1742 mutex_unlock(&sdata
->local
->mtx
);
1747 mutex_lock(&sdata
->local
->iflist_mtx
);
1748 ieee80211_recalc_ps(sdata
->local
, -1);
1749 mutex_unlock(&sdata
->local
->iflist_mtx
);
1751 ifmgd
->probe_send_count
= 0;
1752 ieee80211_mgd_probe_ap_send(sdata
);
1754 mutex_unlock(&ifmgd
->mtx
);
1757 struct sk_buff
*ieee80211_ap_probereq_get(struct ieee80211_hw
*hw
,
1758 struct ieee80211_vif
*vif
)
1760 struct ieee80211_sub_if_data
*sdata
= vif_to_sdata(vif
);
1761 struct ieee80211_if_managed
*ifmgd
= &sdata
->u
.mgd
;
1762 struct cfg80211_bss
*cbss
;
1763 struct sk_buff
*skb
;
1767 if (WARN_ON(sdata
->vif
.type
!= NL80211_IFTYPE_STATION
))
1770 ASSERT_MGD_MTX(ifmgd
);
1772 if (ifmgd
->associated
)
1773 cbss
= ifmgd
->associated
;
1774 else if (ifmgd
->auth_data
)
1775 cbss
= ifmgd
->auth_data
->bss
;
1776 else if (ifmgd
->assoc_data
)
1777 cbss
= ifmgd
->assoc_data
->bss
;
1782 ssid
= ieee80211_bss_get_ie(cbss
, WLAN_EID_SSID
);
1783 if (WARN_ON_ONCE(ssid
== NULL
))
1788 skb
= ieee80211_build_probe_req(sdata
, cbss
->bssid
,
1789 (u32
) -1, cbss
->channel
,
1796 EXPORT_SYMBOL(ieee80211_ap_probereq_get
);
1798 static void __ieee80211_disconnect(struct ieee80211_sub_if_data
*sdata
,
1799 bool transmit_frame
)
1801 struct ieee80211_if_managed
*ifmgd
= &sdata
->u
.mgd
;
1802 struct ieee80211_local
*local
= sdata
->local
;
1803 u8 frame_buf
[IEEE80211_DEAUTH_FRAME_LEN
];
1805 mutex_lock(&ifmgd
->mtx
);
1806 if (!ifmgd
->associated
) {
1807 mutex_unlock(&ifmgd
->mtx
);
1811 ieee80211_set_disassoc(sdata
, IEEE80211_STYPE_DEAUTH
,
1812 WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY
,
1813 transmit_frame
, frame_buf
);
1814 ifmgd
->flags
&= ~IEEE80211_STA_CSA_RECEIVED
;
1815 mutex_unlock(&ifmgd
->mtx
);
1818 * must be outside lock due to cfg80211,
1819 * but that's not a problem.
1821 cfg80211_send_deauth(sdata
->dev
, frame_buf
, IEEE80211_DEAUTH_FRAME_LEN
);
1823 mutex_lock(&local
->mtx
);
1824 ieee80211_recalc_idle(local
);
1825 mutex_unlock(&local
->mtx
);
1828 static void ieee80211_beacon_connection_loss_work(struct work_struct
*work
)
1830 struct ieee80211_sub_if_data
*sdata
=
1831 container_of(work
, struct ieee80211_sub_if_data
,
1832 u
.mgd
.beacon_connection_loss_work
);
1833 struct ieee80211_if_managed
*ifmgd
= &sdata
->u
.mgd
;
1834 struct sta_info
*sta
;
1836 if (ifmgd
->associated
) {
1838 sta
= sta_info_get(sdata
, ifmgd
->bssid
);
1840 sta
->beacon_loss_count
++;
1844 if (sdata
->local
->hw
.flags
& IEEE80211_HW_CONNECTION_MONITOR
) {
1845 sdata_info(sdata
, "Connection to AP %pM lost\n",
1847 __ieee80211_disconnect(sdata
, false);
1849 ieee80211_mgd_probe_ap(sdata
, true);
1853 static void ieee80211_csa_connection_drop_work(struct work_struct
*work
)
1855 struct ieee80211_sub_if_data
*sdata
=
1856 container_of(work
, struct ieee80211_sub_if_data
,
1857 u
.mgd
.csa_connection_drop_work
);
1859 ieee80211_wake_queues_by_reason(&sdata
->local
->hw
,
1860 IEEE80211_QUEUE_STOP_REASON_CSA
);
1861 __ieee80211_disconnect(sdata
, true);
1864 void ieee80211_beacon_loss(struct ieee80211_vif
*vif
)
1866 struct ieee80211_sub_if_data
*sdata
= vif_to_sdata(vif
);
1867 struct ieee80211_hw
*hw
= &sdata
->local
->hw
;
1869 trace_api_beacon_loss(sdata
);
1871 WARN_ON(hw
->flags
& IEEE80211_HW_CONNECTION_MONITOR
);
1872 ieee80211_queue_work(hw
, &sdata
->u
.mgd
.beacon_connection_loss_work
);
1874 EXPORT_SYMBOL(ieee80211_beacon_loss
);
1876 void ieee80211_connection_loss(struct ieee80211_vif
*vif
)
1878 struct ieee80211_sub_if_data
*sdata
= vif_to_sdata(vif
);
1879 struct ieee80211_hw
*hw
= &sdata
->local
->hw
;
1881 trace_api_connection_loss(sdata
);
1883 WARN_ON(!(hw
->flags
& IEEE80211_HW_CONNECTION_MONITOR
));
1884 ieee80211_queue_work(hw
, &sdata
->u
.mgd
.beacon_connection_loss_work
);
1886 EXPORT_SYMBOL(ieee80211_connection_loss
);
1889 static void ieee80211_destroy_auth_data(struct ieee80211_sub_if_data
*sdata
,
1892 struct ieee80211_mgd_auth_data
*auth_data
= sdata
->u
.mgd
.auth_data
;
1894 lockdep_assert_held(&sdata
->u
.mgd
.mtx
);
1897 sta_info_destroy_addr(sdata
, auth_data
->bss
->bssid
);
1899 memset(sdata
->u
.mgd
.bssid
, 0, ETH_ALEN
);
1900 ieee80211_bss_info_change_notify(sdata
, BSS_CHANGED_BSSID
);
1901 sdata
->u
.mgd
.flags
= 0;
1902 ieee80211_vif_release_channel(sdata
);
1905 cfg80211_put_bss(auth_data
->bss
);
1907 sdata
->u
.mgd
.auth_data
= NULL
;
1910 static void ieee80211_auth_challenge(struct ieee80211_sub_if_data
*sdata
,
1911 struct ieee80211_mgmt
*mgmt
, size_t len
)
1913 struct ieee80211_mgd_auth_data
*auth_data
= sdata
->u
.mgd
.auth_data
;
1915 struct ieee802_11_elems elems
;
1917 pos
= mgmt
->u
.auth
.variable
;
1918 ieee802_11_parse_elems(pos
, len
- (pos
- (u8
*) mgmt
), &elems
);
1919 if (!elems
.challenge
)
1921 auth_data
->expected_transaction
= 4;
1922 drv_mgd_prepare_tx(sdata
->local
, sdata
);
1923 ieee80211_send_auth(sdata
, 3, auth_data
->algorithm
, 0,
1924 elems
.challenge
- 2, elems
.challenge_len
+ 2,
1925 auth_data
->bss
->bssid
, auth_data
->bss
->bssid
,
1926 auth_data
->key
, auth_data
->key_len
,
1927 auth_data
->key_idx
);
1930 static enum rx_mgmt_action __must_check
1931 ieee80211_rx_mgmt_auth(struct ieee80211_sub_if_data
*sdata
,
1932 struct ieee80211_mgmt
*mgmt
, size_t len
)
1934 struct ieee80211_if_managed
*ifmgd
= &sdata
->u
.mgd
;
1936 u16 auth_alg
, auth_transaction
, status_code
;
1937 struct sta_info
*sta
;
1939 lockdep_assert_held(&ifmgd
->mtx
);
1942 return RX_MGMT_NONE
;
1944 if (!ifmgd
->auth_data
|| ifmgd
->auth_data
->done
)
1945 return RX_MGMT_NONE
;
1947 memcpy(bssid
, ifmgd
->auth_data
->bss
->bssid
, ETH_ALEN
);
1949 if (!ether_addr_equal(bssid
, mgmt
->bssid
))
1950 return RX_MGMT_NONE
;
1952 auth_alg
= le16_to_cpu(mgmt
->u
.auth
.auth_alg
);
1953 auth_transaction
= le16_to_cpu(mgmt
->u
.auth
.auth_transaction
);
1954 status_code
= le16_to_cpu(mgmt
->u
.auth
.status_code
);
1956 if (auth_alg
!= ifmgd
->auth_data
->algorithm
||
1957 auth_transaction
!= ifmgd
->auth_data
->expected_transaction
) {
1958 sdata_info(sdata
, "%pM unexpected authentication state: alg %d (expected %d) transact %d (expected %d)\n",
1959 mgmt
->sa
, auth_alg
, ifmgd
->auth_data
->algorithm
,
1961 ifmgd
->auth_data
->expected_transaction
);
1962 return RX_MGMT_NONE
;
1965 if (status_code
!= WLAN_STATUS_SUCCESS
) {
1966 sdata_info(sdata
, "%pM denied authentication (status %d)\n",
1967 mgmt
->sa
, status_code
);
1968 ieee80211_destroy_auth_data(sdata
, false);
1969 return RX_MGMT_CFG80211_RX_AUTH
;
1972 switch (ifmgd
->auth_data
->algorithm
) {
1973 case WLAN_AUTH_OPEN
:
1974 case WLAN_AUTH_LEAP
:
1978 case WLAN_AUTH_SHARED_KEY
:
1979 if (ifmgd
->auth_data
->expected_transaction
!= 4) {
1980 ieee80211_auth_challenge(sdata
, mgmt
, len
);
1981 /* need another frame */
1982 return RX_MGMT_NONE
;
1986 WARN_ONCE(1, "invalid auth alg %d",
1987 ifmgd
->auth_data
->algorithm
);
1988 return RX_MGMT_NONE
;
1991 sdata_info(sdata
, "authenticated\n");
1992 ifmgd
->auth_data
->done
= true;
1993 ifmgd
->auth_data
->timeout
= jiffies
+ IEEE80211_AUTH_WAIT_ASSOC
;
1994 run_again(ifmgd
, ifmgd
->auth_data
->timeout
);
1996 if (ifmgd
->auth_data
->algorithm
== WLAN_AUTH_SAE
&&
1997 ifmgd
->auth_data
->expected_transaction
!= 2) {
1999 * Report auth frame to user space for processing since another
2000 * round of Authentication frames is still needed.
2002 return RX_MGMT_CFG80211_RX_AUTH
;
2005 /* move station state to auth */
2006 mutex_lock(&sdata
->local
->sta_mtx
);
2007 sta
= sta_info_get(sdata
, bssid
);
2009 WARN_ONCE(1, "%s: STA %pM not found", sdata
->name
, bssid
);
2012 if (sta_info_move_state(sta
, IEEE80211_STA_AUTH
)) {
2013 sdata_info(sdata
, "failed moving %pM to auth\n", bssid
);
2016 mutex_unlock(&sdata
->local
->sta_mtx
);
2018 return RX_MGMT_CFG80211_RX_AUTH
;
2020 mutex_unlock(&sdata
->local
->sta_mtx
);
2021 /* ignore frame -- wait for timeout */
2022 return RX_MGMT_NONE
;
2026 static enum rx_mgmt_action __must_check
2027 ieee80211_rx_mgmt_deauth(struct ieee80211_sub_if_data
*sdata
,
2028 struct ieee80211_mgmt
*mgmt
, size_t len
)
2030 struct ieee80211_if_managed
*ifmgd
= &sdata
->u
.mgd
;
2031 const u8
*bssid
= NULL
;
2034 lockdep_assert_held(&ifmgd
->mtx
);
2037 return RX_MGMT_NONE
;
2039 if (!ifmgd
->associated
||
2040 !ether_addr_equal(mgmt
->bssid
, ifmgd
->associated
->bssid
))
2041 return RX_MGMT_NONE
;
2043 bssid
= ifmgd
->associated
->bssid
;
2045 reason_code
= le16_to_cpu(mgmt
->u
.deauth
.reason_code
);
2047 sdata_info(sdata
, "deauthenticated from %pM (Reason: %u)\n",
2048 bssid
, reason_code
);
2050 ieee80211_set_disassoc(sdata
, 0, 0, false, NULL
);
2052 mutex_lock(&sdata
->local
->mtx
);
2053 ieee80211_recalc_idle(sdata
->local
);
2054 mutex_unlock(&sdata
->local
->mtx
);
2056 return RX_MGMT_CFG80211_DEAUTH
;
2060 static enum rx_mgmt_action __must_check
2061 ieee80211_rx_mgmt_disassoc(struct ieee80211_sub_if_data
*sdata
,
2062 struct ieee80211_mgmt
*mgmt
, size_t len
)
2064 struct ieee80211_if_managed
*ifmgd
= &sdata
->u
.mgd
;
2067 lockdep_assert_held(&ifmgd
->mtx
);
2070 return RX_MGMT_NONE
;
2072 if (!ifmgd
->associated
||
2073 !ether_addr_equal(mgmt
->bssid
, ifmgd
->associated
->bssid
))
2074 return RX_MGMT_NONE
;
2076 reason_code
= le16_to_cpu(mgmt
->u
.disassoc
.reason_code
);
2078 sdata_info(sdata
, "disassociated from %pM (Reason: %u)\n",
2079 mgmt
->sa
, reason_code
);
2081 ieee80211_set_disassoc(sdata
, 0, 0, false, NULL
);
2083 mutex_lock(&sdata
->local
->mtx
);
2084 ieee80211_recalc_idle(sdata
->local
);
2085 mutex_unlock(&sdata
->local
->mtx
);
2087 return RX_MGMT_CFG80211_DISASSOC
;
2090 static void ieee80211_get_rates(struct ieee80211_supported_band
*sband
,
2091 u8
*supp_rates
, unsigned int supp_rates_len
,
2092 u32
*rates
, u32
*basic_rates
,
2093 bool *have_higher_than_11mbit
,
2094 int *min_rate
, int *min_rate_index
)
2098 for (i
= 0; i
< supp_rates_len
; i
++) {
2099 int rate
= (supp_rates
[i
] & 0x7f) * 5;
2100 bool is_basic
= !!(supp_rates
[i
] & 0x80);
2103 *have_higher_than_11mbit
= true;
2106 * BSS_MEMBERSHIP_SELECTOR_HT_PHY is defined in 802.11n-2009
2107 * 7.3.2.2 as a magic value instead of a rate. Hence, skip it.
2109 * Note: Even through the membership selector and the basic
2110 * rate flag share the same bit, they are not exactly
2113 if (!!(supp_rates
[i
] & 0x80) &&
2114 (supp_rates
[i
] & 0x7f) == BSS_MEMBERSHIP_SELECTOR_HT_PHY
)
2117 for (j
= 0; j
< sband
->n_bitrates
; j
++) {
2118 if (sband
->bitrates
[j
].bitrate
== rate
) {
2121 *basic_rates
|= BIT(j
);
2122 if (rate
< *min_rate
) {
2124 *min_rate_index
= j
;
2132 static void ieee80211_destroy_assoc_data(struct ieee80211_sub_if_data
*sdata
,
2135 struct ieee80211_mgd_assoc_data
*assoc_data
= sdata
->u
.mgd
.assoc_data
;
2137 lockdep_assert_held(&sdata
->u
.mgd
.mtx
);
2140 sta_info_destroy_addr(sdata
, assoc_data
->bss
->bssid
);
2142 memset(sdata
->u
.mgd
.bssid
, 0, ETH_ALEN
);
2143 ieee80211_bss_info_change_notify(sdata
, BSS_CHANGED_BSSID
);
2144 sdata
->u
.mgd
.flags
= 0;
2145 ieee80211_vif_release_channel(sdata
);
2149 sdata
->u
.mgd
.assoc_data
= NULL
;
2152 static bool ieee80211_assoc_success(struct ieee80211_sub_if_data
*sdata
,
2153 struct cfg80211_bss
*cbss
,
2154 struct ieee80211_mgmt
*mgmt
, size_t len
)
2156 struct ieee80211_if_managed
*ifmgd
= &sdata
->u
.mgd
;
2157 struct ieee80211_local
*local
= sdata
->local
;
2158 struct ieee80211_supported_band
*sband
;
2159 struct sta_info
*sta
;
2161 u16 capab_info
, aid
;
2162 struct ieee802_11_elems elems
;
2163 struct ieee80211_bss_conf
*bss_conf
= &sdata
->vif
.bss_conf
;
2167 /* AssocResp and ReassocResp have identical structure */
2169 aid
= le16_to_cpu(mgmt
->u
.assoc_resp
.aid
);
2170 capab_info
= le16_to_cpu(mgmt
->u
.assoc_resp
.capab_info
);
2172 if ((aid
& (BIT(15) | BIT(14))) != (BIT(15) | BIT(14)))
2173 sdata_info(sdata
, "invalid AID value 0x%x; bits 15:14 not set\n",
2175 aid
&= ~(BIT(15) | BIT(14));
2177 ifmgd
->broken_ap
= false;
2179 if (aid
== 0 || aid
> IEEE80211_MAX_AID
) {
2180 sdata_info(sdata
, "invalid AID value %d (out of range), turn off PS\n",
2183 ifmgd
->broken_ap
= true;
2186 pos
= mgmt
->u
.assoc_resp
.variable
;
2187 ieee802_11_parse_elems(pos
, len
- (pos
- (u8
*) mgmt
), &elems
);
2189 if (!elems
.supp_rates
) {
2190 sdata_info(sdata
, "no SuppRates element in AssocResp\n");
2196 mutex_lock(&sdata
->local
->sta_mtx
);
2198 * station info was already allocated and inserted before
2199 * the association and should be available to us
2201 sta
= sta_info_get(sdata
, cbss
->bssid
);
2202 if (WARN_ON(!sta
)) {
2203 mutex_unlock(&sdata
->local
->sta_mtx
);
2207 sband
= local
->hw
.wiphy
->bands
[ieee80211_get_sdata_band(sdata
)];
2209 if (elems
.ht_cap_elem
&& !(ifmgd
->flags
& IEEE80211_STA_DISABLE_HT
))
2210 ieee80211_ht_cap_ie_to_sta_ht_cap(sdata
, sband
,
2211 elems
.ht_cap_elem
, &sta
->sta
.ht_cap
);
2213 sta
->supports_40mhz
=
2214 sta
->sta
.ht_cap
.cap
& IEEE80211_HT_CAP_SUP_WIDTH_20_40
;
2216 if (elems
.vht_cap_elem
&& !(ifmgd
->flags
& IEEE80211_STA_DISABLE_VHT
))
2217 ieee80211_vht_cap_ie_to_sta_vht_cap(sdata
, sband
,
2221 rate_control_rate_init(sta
);
2223 if (ifmgd
->flags
& IEEE80211_STA_MFP_ENABLED
)
2224 set_sta_flag(sta
, WLAN_STA_MFP
);
2226 if (elems
.wmm_param
)
2227 set_sta_flag(sta
, WLAN_STA_WME
);
2229 err
= sta_info_move_state(sta
, IEEE80211_STA_AUTH
);
2231 err
= sta_info_move_state(sta
, IEEE80211_STA_ASSOC
);
2232 if (!err
&& !(ifmgd
->flags
& IEEE80211_STA_CONTROL_PORT
))
2233 err
= sta_info_move_state(sta
, IEEE80211_STA_AUTHORIZED
);
2236 "failed to move station %pM to desired state\n",
2238 WARN_ON(__sta_info_destroy(sta
));
2239 mutex_unlock(&sdata
->local
->sta_mtx
);
2243 mutex_unlock(&sdata
->local
->sta_mtx
);
2246 * Always handle WMM once after association regardless
2247 * of the first value the AP uses. Setting -1 here has
2248 * that effect because the AP values is an unsigned
2251 ifmgd
->wmm_last_param_set
= -1;
2253 if (elems
.wmm_param
)
2254 ieee80211_sta_wmm_params(local
, sdata
, elems
.wmm_param
,
2255 elems
.wmm_param_len
);
2257 ieee80211_set_wmm_default(sdata
, false);
2258 changed
|= BSS_CHANGED_QOS
;
2260 if (elems
.ht_operation
&& elems
.wmm_param
&&
2261 !(ifmgd
->flags
& IEEE80211_STA_DISABLE_HT
))
2262 changed
|= ieee80211_config_ht_tx(sdata
, elems
.ht_operation
,
2263 cbss
->bssid
, false);
2265 /* set AID and assoc capability,
2266 * ieee80211_set_associated() will tell the driver */
2267 bss_conf
->aid
= aid
;
2268 bss_conf
->assoc_capability
= capab_info
;
2269 ieee80211_set_associated(sdata
, cbss
, changed
);
2272 * If we're using 4-addr mode, let the AP know that we're
2273 * doing so, so that it can create the STA VLAN on its side
2275 if (ifmgd
->use_4addr
)
2276 ieee80211_send_4addr_nullfunc(local
, sdata
);
2279 * Start timer to probe the connection to the AP now.
2280 * Also start the timer that will detect beacon loss.
2282 ieee80211_sta_rx_notify(sdata
, (struct ieee80211_hdr
*)mgmt
);
2283 ieee80211_sta_reset_beacon_monitor(sdata
);
2288 static enum rx_mgmt_action __must_check
2289 ieee80211_rx_mgmt_assoc_resp(struct ieee80211_sub_if_data
*sdata
,
2290 struct ieee80211_mgmt
*mgmt
, size_t len
,
2291 struct cfg80211_bss
**bss
)
2293 struct ieee80211_if_managed
*ifmgd
= &sdata
->u
.mgd
;
2294 struct ieee80211_mgd_assoc_data
*assoc_data
= ifmgd
->assoc_data
;
2295 u16 capab_info
, status_code
, aid
;
2296 struct ieee802_11_elems elems
;
2300 lockdep_assert_held(&ifmgd
->mtx
);
2303 return RX_MGMT_NONE
;
2304 if (!ether_addr_equal(assoc_data
->bss
->bssid
, mgmt
->bssid
))
2305 return RX_MGMT_NONE
;
2308 * AssocResp and ReassocResp have identical structure, so process both
2309 * of them in this function.
2313 return RX_MGMT_NONE
;
2315 reassoc
= ieee80211_is_reassoc_req(mgmt
->frame_control
);
2316 capab_info
= le16_to_cpu(mgmt
->u
.assoc_resp
.capab_info
);
2317 status_code
= le16_to_cpu(mgmt
->u
.assoc_resp
.status_code
);
2318 aid
= le16_to_cpu(mgmt
->u
.assoc_resp
.aid
);
2321 "RX %sssocResp from %pM (capab=0x%x status=%d aid=%d)\n",
2322 reassoc
? "Rea" : "A", mgmt
->sa
,
2323 capab_info
, status_code
, (u16
)(aid
& ~(BIT(15) | BIT(14))));
2325 pos
= mgmt
->u
.assoc_resp
.variable
;
2326 ieee802_11_parse_elems(pos
, len
- (pos
- (u8
*) mgmt
), &elems
);
2328 if (status_code
== WLAN_STATUS_ASSOC_REJECTED_TEMPORARILY
&&
2329 elems
.timeout_int
&& elems
.timeout_int_len
== 5 &&
2330 elems
.timeout_int
[0] == WLAN_TIMEOUT_ASSOC_COMEBACK
) {
2332 tu
= get_unaligned_le32(elems
.timeout_int
+ 1);
2333 ms
= tu
* 1024 / 1000;
2335 "%pM rejected association temporarily; comeback duration %u TU (%u ms)\n",
2337 assoc_data
->timeout
= jiffies
+ msecs_to_jiffies(ms
);
2338 if (ms
> IEEE80211_ASSOC_TIMEOUT
)
2339 run_again(ifmgd
, assoc_data
->timeout
);
2340 return RX_MGMT_NONE
;
2343 *bss
= assoc_data
->bss
;
2345 if (status_code
!= WLAN_STATUS_SUCCESS
) {
2346 sdata_info(sdata
, "%pM denied association (code=%d)\n",
2347 mgmt
->sa
, status_code
);
2348 ieee80211_destroy_assoc_data(sdata
, false);
2350 if (!ieee80211_assoc_success(sdata
, *bss
, mgmt
, len
)) {
2351 /* oops -- internal error -- send timeout for now */
2352 ieee80211_destroy_assoc_data(sdata
, false);
2353 cfg80211_put_bss(*bss
);
2354 return RX_MGMT_CFG80211_ASSOC_TIMEOUT
;
2356 sdata_info(sdata
, "associated\n");
2359 * destroy assoc_data afterwards, as otherwise an idle
2360 * recalc after assoc_data is NULL but before associated
2361 * is set can cause the interface to go idle
2363 ieee80211_destroy_assoc_data(sdata
, true);
2366 return RX_MGMT_CFG80211_RX_ASSOC
;
2369 static void ieee80211_rx_bss_info(struct ieee80211_sub_if_data
*sdata
,
2370 struct ieee80211_mgmt
*mgmt
, size_t len
,
2371 struct ieee80211_rx_status
*rx_status
,
2372 struct ieee802_11_elems
*elems
,
2375 struct ieee80211_local
*local
= sdata
->local
;
2377 struct ieee80211_bss
*bss
;
2378 struct ieee80211_channel
*channel
;
2379 bool need_ps
= false;
2381 if ((sdata
->u
.mgd
.associated
&&
2382 ether_addr_equal(mgmt
->bssid
, sdata
->u
.mgd
.associated
->bssid
)) ||
2383 (sdata
->u
.mgd
.assoc_data
&&
2384 ether_addr_equal(mgmt
->bssid
,
2385 sdata
->u
.mgd
.assoc_data
->bss
->bssid
))) {
2386 /* not previously set so we may need to recalc */
2387 need_ps
= sdata
->u
.mgd
.associated
&& !sdata
->u
.mgd
.dtim_period
;
2389 if (elems
->tim
&& !elems
->parse_error
) {
2390 struct ieee80211_tim_ie
*tim_ie
= elems
->tim
;
2391 sdata
->u
.mgd
.dtim_period
= tim_ie
->dtim_period
;
2395 if (elems
->ds_params
&& elems
->ds_params_len
== 1)
2396 freq
= ieee80211_channel_to_frequency(elems
->ds_params
[0],
2399 freq
= rx_status
->freq
;
2401 channel
= ieee80211_get_channel(local
->hw
.wiphy
, freq
);
2403 if (!channel
|| channel
->flags
& IEEE80211_CHAN_DISABLED
)
2406 bss
= ieee80211_bss_info_update(local
, rx_status
, mgmt
, len
, elems
,
2409 ieee80211_rx_bss_put(local
, bss
);
2411 if (!sdata
->u
.mgd
.associated
)
2415 mutex_lock(&local
->iflist_mtx
);
2416 ieee80211_recalc_ps(local
, -1);
2417 mutex_unlock(&local
->iflist_mtx
);
2420 if (elems
->ch_switch_ie
&&
2421 memcmp(mgmt
->bssid
, sdata
->u
.mgd
.associated
->bssid
, ETH_ALEN
) == 0)
2422 ieee80211_sta_process_chanswitch(sdata
, elems
->ch_switch_ie
,
2423 bss
, rx_status
->mactime
);
2427 static void ieee80211_rx_mgmt_probe_resp(struct ieee80211_sub_if_data
*sdata
,
2428 struct sk_buff
*skb
)
2430 struct ieee80211_mgmt
*mgmt
= (void *)skb
->data
;
2431 struct ieee80211_if_managed
*ifmgd
;
2432 struct ieee80211_rx_status
*rx_status
= (void *) skb
->cb
;
2433 size_t baselen
, len
= skb
->len
;
2434 struct ieee802_11_elems elems
;
2436 ifmgd
= &sdata
->u
.mgd
;
2438 ASSERT_MGD_MTX(ifmgd
);
2440 if (!ether_addr_equal(mgmt
->da
, sdata
->vif
.addr
))
2441 return; /* ignore ProbeResp to foreign address */
2443 baselen
= (u8
*) mgmt
->u
.probe_resp
.variable
- (u8
*) mgmt
;
2447 ieee802_11_parse_elems(mgmt
->u
.probe_resp
.variable
, len
- baselen
,
2450 ieee80211_rx_bss_info(sdata
, mgmt
, len
, rx_status
, &elems
, false);
2452 if (ifmgd
->associated
&&
2453 ether_addr_equal(mgmt
->bssid
, ifmgd
->associated
->bssid
))
2454 ieee80211_reset_ap_probe(sdata
);
2456 if (ifmgd
->auth_data
&& !ifmgd
->auth_data
->bss
->proberesp_ies
&&
2457 ether_addr_equal(mgmt
->bssid
, ifmgd
->auth_data
->bss
->bssid
)) {
2458 /* got probe response, continue with auth */
2459 sdata_info(sdata
, "direct probe responded\n");
2460 ifmgd
->auth_data
->tries
= 0;
2461 ifmgd
->auth_data
->timeout
= jiffies
;
2462 run_again(ifmgd
, ifmgd
->auth_data
->timeout
);
2467 * This is the canonical list of information elements we care about,
2468 * the filter code also gives us all changes to the Microsoft OUI
2469 * (00:50:F2) vendor IE which is used for WMM which we need to track.
2471 * We implement beacon filtering in software since that means we can
2472 * avoid processing the frame here and in cfg80211, and userspace
2473 * will not be able to tell whether the hardware supports it or not.
2475 * XXX: This list needs to be dynamic -- userspace needs to be able to
2476 * add items it requires. It also needs to be able to tell us to
2477 * look out for other vendor IEs.
2479 static const u64 care_about_ies
=
2480 (1ULL << WLAN_EID_COUNTRY
) |
2481 (1ULL << WLAN_EID_ERP_INFO
) |
2482 (1ULL << WLAN_EID_CHANNEL_SWITCH
) |
2483 (1ULL << WLAN_EID_PWR_CONSTRAINT
) |
2484 (1ULL << WLAN_EID_HT_CAPABILITY
) |
2485 (1ULL << WLAN_EID_HT_OPERATION
);
2487 static void ieee80211_rx_mgmt_beacon(struct ieee80211_sub_if_data
*sdata
,
2488 struct ieee80211_mgmt
*mgmt
,
2490 struct ieee80211_rx_status
*rx_status
)
2492 struct ieee80211_if_managed
*ifmgd
= &sdata
->u
.mgd
;
2493 struct ieee80211_bss_conf
*bss_conf
= &sdata
->vif
.bss_conf
;
2495 struct ieee802_11_elems elems
;
2496 struct ieee80211_local
*local
= sdata
->local
;
2497 struct ieee80211_chanctx_conf
*chanctx_conf
;
2498 struct ieee80211_channel
*chan
;
2505 lockdep_assert_held(&ifmgd
->mtx
);
2507 /* Process beacon from the current BSS */
2508 baselen
= (u8
*) mgmt
->u
.beacon
.variable
- (u8
*) mgmt
;
2513 chanctx_conf
= rcu_dereference(sdata
->vif
.chanctx_conf
);
2514 if (!chanctx_conf
) {
2519 if (rx_status
->freq
!= chanctx_conf
->def
.chan
->center_freq
) {
2523 chan
= chanctx_conf
->def
.chan
;
2526 if (ifmgd
->assoc_data
&& !ifmgd
->assoc_data
->have_beacon
&&
2527 ether_addr_equal(mgmt
->bssid
, ifmgd
->assoc_data
->bss
->bssid
)) {
2528 ieee802_11_parse_elems(mgmt
->u
.beacon
.variable
,
2529 len
- baselen
, &elems
);
2531 ieee80211_rx_bss_info(sdata
, mgmt
, len
, rx_status
, &elems
,
2533 ifmgd
->assoc_data
->have_beacon
= true;
2534 ifmgd
->assoc_data
->sent_assoc
= false;
2535 /* continue assoc process */
2536 ifmgd
->assoc_data
->timeout
= jiffies
;
2537 run_again(ifmgd
, ifmgd
->assoc_data
->timeout
);
2541 if (!ifmgd
->associated
||
2542 !ether_addr_equal(mgmt
->bssid
, ifmgd
->associated
->bssid
))
2544 bssid
= ifmgd
->associated
->bssid
;
2546 /* Track average RSSI from the Beacon frames of the current AP */
2547 ifmgd
->last_beacon_signal
= rx_status
->signal
;
2548 if (ifmgd
->flags
& IEEE80211_STA_RESET_SIGNAL_AVE
) {
2549 ifmgd
->flags
&= ~IEEE80211_STA_RESET_SIGNAL_AVE
;
2550 ifmgd
->ave_beacon_signal
= rx_status
->signal
* 16;
2551 ifmgd
->last_cqm_event_signal
= 0;
2552 ifmgd
->count_beacon_signal
= 1;
2553 ifmgd
->last_ave_beacon_signal
= 0;
2555 ifmgd
->ave_beacon_signal
=
2556 (IEEE80211_SIGNAL_AVE_WEIGHT
* rx_status
->signal
* 16 +
2557 (16 - IEEE80211_SIGNAL_AVE_WEIGHT
) *
2558 ifmgd
->ave_beacon_signal
) / 16;
2559 ifmgd
->count_beacon_signal
++;
2562 if (ifmgd
->rssi_min_thold
!= ifmgd
->rssi_max_thold
&&
2563 ifmgd
->count_beacon_signal
>= IEEE80211_SIGNAL_AVE_MIN_COUNT
) {
2564 int sig
= ifmgd
->ave_beacon_signal
;
2565 int last_sig
= ifmgd
->last_ave_beacon_signal
;
2568 * if signal crosses either of the boundaries, invoke callback
2569 * with appropriate parameters
2571 if (sig
> ifmgd
->rssi_max_thold
&&
2572 (last_sig
<= ifmgd
->rssi_min_thold
|| last_sig
== 0)) {
2573 ifmgd
->last_ave_beacon_signal
= sig
;
2574 drv_rssi_callback(local
, RSSI_EVENT_HIGH
);
2575 } else if (sig
< ifmgd
->rssi_min_thold
&&
2576 (last_sig
>= ifmgd
->rssi_max_thold
||
2578 ifmgd
->last_ave_beacon_signal
= sig
;
2579 drv_rssi_callback(local
, RSSI_EVENT_LOW
);
2583 if (bss_conf
->cqm_rssi_thold
&&
2584 ifmgd
->count_beacon_signal
>= IEEE80211_SIGNAL_AVE_MIN_COUNT
&&
2585 !(sdata
->vif
.driver_flags
& IEEE80211_VIF_SUPPORTS_CQM_RSSI
)) {
2586 int sig
= ifmgd
->ave_beacon_signal
/ 16;
2587 int last_event
= ifmgd
->last_cqm_event_signal
;
2588 int thold
= bss_conf
->cqm_rssi_thold
;
2589 int hyst
= bss_conf
->cqm_rssi_hyst
;
2591 (last_event
== 0 || sig
< last_event
- hyst
)) {
2592 ifmgd
->last_cqm_event_signal
= sig
;
2593 ieee80211_cqm_rssi_notify(
2595 NL80211_CQM_RSSI_THRESHOLD_EVENT_LOW
,
2597 } else if (sig
> thold
&&
2598 (last_event
== 0 || sig
> last_event
+ hyst
)) {
2599 ifmgd
->last_cqm_event_signal
= sig
;
2600 ieee80211_cqm_rssi_notify(
2602 NL80211_CQM_RSSI_THRESHOLD_EVENT_HIGH
,
2607 if (ifmgd
->flags
& IEEE80211_STA_BEACON_POLL
) {
2608 mlme_dbg_ratelimited(sdata
,
2609 "cancelling probereq poll due to a received beacon\n");
2610 mutex_lock(&local
->mtx
);
2611 ifmgd
->flags
&= ~IEEE80211_STA_BEACON_POLL
;
2612 ieee80211_run_deferred_scan(local
);
2613 mutex_unlock(&local
->mtx
);
2615 mutex_lock(&local
->iflist_mtx
);
2616 ieee80211_recalc_ps(local
, -1);
2617 mutex_unlock(&local
->iflist_mtx
);
2621 * Push the beacon loss detection into the future since
2622 * we are processing a beacon from the AP just now.
2624 ieee80211_sta_reset_beacon_monitor(sdata
);
2626 ncrc
= crc32_be(0, (void *)&mgmt
->u
.beacon
.beacon_int
, 4);
2627 ncrc
= ieee802_11_parse_elems_crc(mgmt
->u
.beacon
.variable
,
2628 len
- baselen
, &elems
,
2629 care_about_ies
, ncrc
);
2631 if (local
->hw
.flags
& IEEE80211_HW_PS_NULLFUNC_STACK
) {
2632 bool directed_tim
= ieee80211_check_tim(elems
.tim
,
2636 if (local
->hw
.conf
.dynamic_ps_timeout
> 0) {
2637 if (local
->hw
.conf
.flags
& IEEE80211_CONF_PS
) {
2638 local
->hw
.conf
.flags
&= ~IEEE80211_CONF_PS
;
2639 ieee80211_hw_config(local
,
2640 IEEE80211_CONF_CHANGE_PS
);
2642 ieee80211_send_nullfunc(local
, sdata
, 0);
2643 } else if (!local
->pspolling
&& sdata
->u
.mgd
.powersave
) {
2644 local
->pspolling
= true;
2647 * Here is assumed that the driver will be
2648 * able to send ps-poll frame and receive a
2649 * response even though power save mode is
2650 * enabled, but some drivers might require
2651 * to disable power save here. This needs
2652 * to be investigated.
2654 ieee80211_send_pspoll(local
, sdata
);
2659 if (sdata
->vif
.p2p
) {
2663 ret
= cfg80211_get_p2p_attr(mgmt
->u
.beacon
.variable
,
2665 IEEE80211_P2P_ATTR_ABSENCE_NOTICE
,
2667 if (ret
>= 2 && sdata
->u
.mgd
.p2p_noa_index
!= noa
[0]) {
2668 bss_conf
->p2p_oppps
= noa
[1] & 0x80;
2669 bss_conf
->p2p_ctwindow
= noa
[1] & 0x7f;
2670 changed
|= BSS_CHANGED_P2P_PS
;
2671 sdata
->u
.mgd
.p2p_noa_index
= noa
[0];
2673 * make sure we update all information, the CRC
2674 * mechanism doesn't look at P2P attributes.
2676 ifmgd
->beacon_crc_valid
= false;
2680 if (ncrc
== ifmgd
->beacon_crc
&& ifmgd
->beacon_crc_valid
)
2682 ifmgd
->beacon_crc
= ncrc
;
2683 ifmgd
->beacon_crc_valid
= true;
2685 ieee80211_rx_bss_info(sdata
, mgmt
, len
, rx_status
, &elems
,
2688 if (ieee80211_sta_wmm_params(local
, sdata
, elems
.wmm_param
,
2689 elems
.wmm_param_len
))
2690 changed
|= BSS_CHANGED_QOS
;
2692 if (elems
.erp_info
&& elems
.erp_info_len
>= 1) {
2694 erp_value
= elems
.erp_info
[0];
2698 changed
|= ieee80211_handle_bss_capability(sdata
,
2699 le16_to_cpu(mgmt
->u
.beacon
.capab_info
),
2700 erp_valid
, erp_value
);
2703 if (elems
.ht_cap_elem
&& elems
.ht_operation
&& elems
.wmm_param
&&
2704 !(ifmgd
->flags
& IEEE80211_STA_DISABLE_HT
))
2705 changed
|= ieee80211_config_ht_tx(sdata
, elems
.ht_operation
,
2708 if (elems
.country_elem
&& elems
.pwr_constr_elem
&&
2709 mgmt
->u
.probe_resp
.capab_info
&
2710 cpu_to_le16(WLAN_CAPABILITY_SPECTRUM_MGMT
))
2711 changed
|= ieee80211_handle_pwr_constr(sdata
, chan
,
2713 elems
.country_elem_len
,
2714 elems
.pwr_constr_elem
);
2716 ieee80211_bss_info_change_notify(sdata
, changed
);
2719 void ieee80211_sta_rx_queued_mgmt(struct ieee80211_sub_if_data
*sdata
,
2720 struct sk_buff
*skb
)
2722 struct ieee80211_if_managed
*ifmgd
= &sdata
->u
.mgd
;
2723 struct ieee80211_rx_status
*rx_status
;
2724 struct ieee80211_mgmt
*mgmt
;
2725 struct cfg80211_bss
*bss
= NULL
;
2726 enum rx_mgmt_action rma
= RX_MGMT_NONE
;
2729 rx_status
= (struct ieee80211_rx_status
*) skb
->cb
;
2730 mgmt
= (struct ieee80211_mgmt
*) skb
->data
;
2731 fc
= le16_to_cpu(mgmt
->frame_control
);
2733 mutex_lock(&ifmgd
->mtx
);
2735 switch (fc
& IEEE80211_FCTL_STYPE
) {
2736 case IEEE80211_STYPE_BEACON
:
2737 ieee80211_rx_mgmt_beacon(sdata
, mgmt
, skb
->len
, rx_status
);
2739 case IEEE80211_STYPE_PROBE_RESP
:
2740 ieee80211_rx_mgmt_probe_resp(sdata
, skb
);
2742 case IEEE80211_STYPE_AUTH
:
2743 rma
= ieee80211_rx_mgmt_auth(sdata
, mgmt
, skb
->len
);
2745 case IEEE80211_STYPE_DEAUTH
:
2746 rma
= ieee80211_rx_mgmt_deauth(sdata
, mgmt
, skb
->len
);
2748 case IEEE80211_STYPE_DISASSOC
:
2749 rma
= ieee80211_rx_mgmt_disassoc(sdata
, mgmt
, skb
->len
);
2751 case IEEE80211_STYPE_ASSOC_RESP
:
2752 case IEEE80211_STYPE_REASSOC_RESP
:
2753 rma
= ieee80211_rx_mgmt_assoc_resp(sdata
, mgmt
, skb
->len
, &bss
);
2755 case IEEE80211_STYPE_ACTION
:
2756 switch (mgmt
->u
.action
.category
) {
2757 case WLAN_CATEGORY_SPECTRUM_MGMT
:
2758 ieee80211_sta_process_chanswitch(sdata
,
2759 &mgmt
->u
.action
.u
.chan_switch
.sw_elem
,
2760 (void *)ifmgd
->associated
->priv
,
2761 rx_status
->mactime
);
2765 mutex_unlock(&ifmgd
->mtx
);
2771 case RX_MGMT_CFG80211_DEAUTH
:
2772 cfg80211_send_deauth(sdata
->dev
, (u8
*)mgmt
, skb
->len
);
2774 case RX_MGMT_CFG80211_DISASSOC
:
2775 cfg80211_send_disassoc(sdata
->dev
, (u8
*)mgmt
, skb
->len
);
2777 case RX_MGMT_CFG80211_RX_AUTH
:
2778 cfg80211_send_rx_auth(sdata
->dev
, (u8
*)mgmt
, skb
->len
);
2780 case RX_MGMT_CFG80211_RX_ASSOC
:
2781 cfg80211_send_rx_assoc(sdata
->dev
, bss
, (u8
*)mgmt
, skb
->len
);
2783 case RX_MGMT_CFG80211_ASSOC_TIMEOUT
:
2784 cfg80211_send_assoc_timeout(sdata
->dev
, mgmt
->bssid
);
2787 WARN(1, "unexpected: %d", rma
);
2791 static void ieee80211_sta_timer(unsigned long data
)
2793 struct ieee80211_sub_if_data
*sdata
=
2794 (struct ieee80211_sub_if_data
*) data
;
2795 struct ieee80211_if_managed
*ifmgd
= &sdata
->u
.mgd
;
2796 struct ieee80211_local
*local
= sdata
->local
;
2798 if (local
->quiescing
) {
2799 set_bit(TMR_RUNNING_TIMER
, &ifmgd
->timers_running
);
2803 ieee80211_queue_work(&local
->hw
, &sdata
->work
);
2806 static void ieee80211_sta_connection_lost(struct ieee80211_sub_if_data
*sdata
,
2807 u8
*bssid
, u8 reason
)
2809 struct ieee80211_local
*local
= sdata
->local
;
2810 struct ieee80211_if_managed
*ifmgd
= &sdata
->u
.mgd
;
2811 u8 frame_buf
[IEEE80211_DEAUTH_FRAME_LEN
];
2813 ieee80211_set_disassoc(sdata
, IEEE80211_STYPE_DEAUTH
, reason
,
2815 mutex_unlock(&ifmgd
->mtx
);
2818 * must be outside lock due to cfg80211,
2819 * but that's not a problem.
2821 cfg80211_send_deauth(sdata
->dev
, frame_buf
, IEEE80211_DEAUTH_FRAME_LEN
);
2823 mutex_lock(&local
->mtx
);
2824 ieee80211_recalc_idle(local
);
2825 mutex_unlock(&local
->mtx
);
2827 mutex_lock(&ifmgd
->mtx
);
2830 static int ieee80211_probe_auth(struct ieee80211_sub_if_data
*sdata
)
2832 struct ieee80211_local
*local
= sdata
->local
;
2833 struct ieee80211_if_managed
*ifmgd
= &sdata
->u
.mgd
;
2834 struct ieee80211_mgd_auth_data
*auth_data
= ifmgd
->auth_data
;
2836 lockdep_assert_held(&ifmgd
->mtx
);
2838 if (WARN_ON_ONCE(!auth_data
))
2843 if (auth_data
->tries
> IEEE80211_AUTH_MAX_TRIES
) {
2844 sdata_info(sdata
, "authentication with %pM timed out\n",
2845 auth_data
->bss
->bssid
);
2848 * Most likely AP is not in the range so remove the
2849 * bss struct for that AP.
2851 cfg80211_unlink_bss(local
->hw
.wiphy
, auth_data
->bss
);
2856 drv_mgd_prepare_tx(local
, sdata
);
2858 if (auth_data
->bss
->proberesp_ies
) {
2862 sdata_info(sdata
, "send auth to %pM (try %d/%d)\n",
2863 auth_data
->bss
->bssid
, auth_data
->tries
,
2864 IEEE80211_AUTH_MAX_TRIES
);
2866 auth_data
->expected_transaction
= 2;
2868 if (auth_data
->algorithm
== WLAN_AUTH_SAE
) {
2869 trans
= auth_data
->sae_trans
;
2870 status
= auth_data
->sae_status
;
2871 auth_data
->expected_transaction
= trans
;
2874 ieee80211_send_auth(sdata
, trans
, auth_data
->algorithm
, status
,
2875 auth_data
->data
, auth_data
->data_len
,
2876 auth_data
->bss
->bssid
,
2877 auth_data
->bss
->bssid
, NULL
, 0, 0);
2881 sdata_info(sdata
, "direct probe to %pM (try %d/%i)\n",
2882 auth_data
->bss
->bssid
, auth_data
->tries
,
2883 IEEE80211_AUTH_MAX_TRIES
);
2886 ssidie
= ieee80211_bss_get_ie(auth_data
->bss
, WLAN_EID_SSID
);
2892 * Direct probe is sent to broadcast address as some APs
2893 * will not answer to direct packet in unassociated state.
2895 ieee80211_send_probe_req(sdata
, NULL
, ssidie
+ 2, ssidie
[1],
2896 NULL
, 0, (u32
) -1, true, false,
2897 auth_data
->bss
->channel
, false);
2901 auth_data
->timeout
= jiffies
+ IEEE80211_AUTH_TIMEOUT
;
2902 run_again(ifmgd
, auth_data
->timeout
);
2907 static int ieee80211_do_assoc(struct ieee80211_sub_if_data
*sdata
)
2909 struct ieee80211_mgd_assoc_data
*assoc_data
= sdata
->u
.mgd
.assoc_data
;
2910 struct ieee80211_local
*local
= sdata
->local
;
2912 lockdep_assert_held(&sdata
->u
.mgd
.mtx
);
2914 assoc_data
->tries
++;
2915 if (assoc_data
->tries
> IEEE80211_ASSOC_MAX_TRIES
) {
2916 sdata_info(sdata
, "association with %pM timed out\n",
2917 assoc_data
->bss
->bssid
);
2920 * Most likely AP is not in the range so remove the
2921 * bss struct for that AP.
2923 cfg80211_unlink_bss(local
->hw
.wiphy
, assoc_data
->bss
);
2928 sdata_info(sdata
, "associate with %pM (try %d/%d)\n",
2929 assoc_data
->bss
->bssid
, assoc_data
->tries
,
2930 IEEE80211_ASSOC_MAX_TRIES
);
2931 ieee80211_send_assoc(sdata
);
2933 assoc_data
->timeout
= jiffies
+ IEEE80211_ASSOC_TIMEOUT
;
2934 run_again(&sdata
->u
.mgd
, assoc_data
->timeout
);
2939 void ieee80211_sta_work(struct ieee80211_sub_if_data
*sdata
)
2941 struct ieee80211_local
*local
= sdata
->local
;
2942 struct ieee80211_if_managed
*ifmgd
= &sdata
->u
.mgd
;
2944 mutex_lock(&ifmgd
->mtx
);
2946 if (ifmgd
->auth_data
&&
2947 time_after(jiffies
, ifmgd
->auth_data
->timeout
)) {
2948 if (ifmgd
->auth_data
->done
) {
2950 * ok ... we waited for assoc but userspace didn't,
2951 * so let's just kill the auth data
2953 ieee80211_destroy_auth_data(sdata
, false);
2954 } else if (ieee80211_probe_auth(sdata
)) {
2957 memcpy(bssid
, ifmgd
->auth_data
->bss
->bssid
, ETH_ALEN
);
2959 ieee80211_destroy_auth_data(sdata
, false);
2961 mutex_unlock(&ifmgd
->mtx
);
2962 cfg80211_send_auth_timeout(sdata
->dev
, bssid
);
2963 mutex_lock(&ifmgd
->mtx
);
2965 } else if (ifmgd
->auth_data
)
2966 run_again(ifmgd
, ifmgd
->auth_data
->timeout
);
2968 if (ifmgd
->assoc_data
&&
2969 time_after(jiffies
, ifmgd
->assoc_data
->timeout
)) {
2970 if (!ifmgd
->assoc_data
->have_beacon
||
2971 ieee80211_do_assoc(sdata
)) {
2974 memcpy(bssid
, ifmgd
->assoc_data
->bss
->bssid
, ETH_ALEN
);
2976 ieee80211_destroy_assoc_data(sdata
, false);
2978 mutex_unlock(&ifmgd
->mtx
);
2979 cfg80211_send_assoc_timeout(sdata
->dev
, bssid
);
2980 mutex_lock(&ifmgd
->mtx
);
2982 } else if (ifmgd
->assoc_data
)
2983 run_again(ifmgd
, ifmgd
->assoc_data
->timeout
);
2985 if (ifmgd
->flags
& (IEEE80211_STA_BEACON_POLL
|
2986 IEEE80211_STA_CONNECTION_POLL
) &&
2987 ifmgd
->associated
) {
2991 memcpy(bssid
, ifmgd
->associated
->bssid
, ETH_ALEN
);
2993 if (local
->hw
.flags
& IEEE80211_HW_REPORTS_TX_ACK_STATUS
)
2994 max_tries
= max_nullfunc_tries
;
2996 max_tries
= max_probe_tries
;
2998 /* ACK received for nullfunc probing frame */
2999 if (!ifmgd
->probe_send_count
)
3000 ieee80211_reset_ap_probe(sdata
);
3001 else if (ifmgd
->nullfunc_failed
) {
3002 if (ifmgd
->probe_send_count
< max_tries
) {
3004 "No ack for nullfunc frame to AP %pM, try %d/%i\n",
3005 bssid
, ifmgd
->probe_send_count
,
3007 ieee80211_mgd_probe_ap_send(sdata
);
3010 "No ack for nullfunc frame to AP %pM, disconnecting.\n",
3012 ieee80211_sta_connection_lost(sdata
, bssid
,
3013 WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY
);
3015 } else if (time_is_after_jiffies(ifmgd
->probe_timeout
))
3016 run_again(ifmgd
, ifmgd
->probe_timeout
);
3017 else if (local
->hw
.flags
& IEEE80211_HW_REPORTS_TX_ACK_STATUS
) {
3019 "Failed to send nullfunc to AP %pM after %dms, disconnecting\n",
3020 bssid
, probe_wait_ms
);
3021 ieee80211_sta_connection_lost(sdata
, bssid
,
3022 WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY
);
3023 } else if (ifmgd
->probe_send_count
< max_tries
) {
3025 "No probe response from AP %pM after %dms, try %d/%i\n",
3026 bssid
, probe_wait_ms
,
3027 ifmgd
->probe_send_count
, max_tries
);
3028 ieee80211_mgd_probe_ap_send(sdata
);
3031 * We actually lost the connection ... or did we?
3034 wiphy_debug(local
->hw
.wiphy
,
3035 "%s: No probe response from AP %pM"
3036 " after %dms, disconnecting.\n",
3038 bssid
, probe_wait_ms
);
3040 ieee80211_sta_connection_lost(sdata
, bssid
,
3041 WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY
);
3045 mutex_unlock(&ifmgd
->mtx
);
3047 mutex_lock(&local
->mtx
);
3048 ieee80211_recalc_idle(local
);
3049 mutex_unlock(&local
->mtx
);
3052 static void ieee80211_sta_bcn_mon_timer(unsigned long data
)
3054 struct ieee80211_sub_if_data
*sdata
=
3055 (struct ieee80211_sub_if_data
*) data
;
3056 struct ieee80211_local
*local
= sdata
->local
;
3058 if (local
->quiescing
)
3061 ieee80211_queue_work(&sdata
->local
->hw
,
3062 &sdata
->u
.mgd
.beacon_connection_loss_work
);
3065 static void ieee80211_sta_conn_mon_timer(unsigned long data
)
3067 struct ieee80211_sub_if_data
*sdata
=
3068 (struct ieee80211_sub_if_data
*) data
;
3069 struct ieee80211_if_managed
*ifmgd
= &sdata
->u
.mgd
;
3070 struct ieee80211_local
*local
= sdata
->local
;
3072 if (local
->quiescing
)
3075 ieee80211_queue_work(&local
->hw
, &ifmgd
->monitor_work
);
3078 static void ieee80211_sta_monitor_work(struct work_struct
*work
)
3080 struct ieee80211_sub_if_data
*sdata
=
3081 container_of(work
, struct ieee80211_sub_if_data
,
3082 u
.mgd
.monitor_work
);
3084 ieee80211_mgd_probe_ap(sdata
, false);
3087 static void ieee80211_restart_sta_timer(struct ieee80211_sub_if_data
*sdata
)
3091 if (sdata
->vif
.type
== NL80211_IFTYPE_STATION
) {
3092 __ieee80211_stop_poll(sdata
);
3094 /* let's probe the connection once */
3095 flags
= sdata
->local
->hw
.flags
;
3096 if (!(flags
& IEEE80211_HW_CONNECTION_MONITOR
))
3097 ieee80211_queue_work(&sdata
->local
->hw
,
3098 &sdata
->u
.mgd
.monitor_work
);
3099 /* and do all the other regular work too */
3100 ieee80211_queue_work(&sdata
->local
->hw
, &sdata
->work
);
3105 void ieee80211_sta_quiesce(struct ieee80211_sub_if_data
*sdata
)
3107 struct ieee80211_if_managed
*ifmgd
= &sdata
->u
.mgd
;
3110 * we need to use atomic bitops for the running bits
3111 * only because both timers might fire at the same
3112 * time -- the code here is properly synchronised.
3115 cancel_work_sync(&ifmgd
->request_smps_work
);
3117 cancel_work_sync(&ifmgd
->monitor_work
);
3118 cancel_work_sync(&ifmgd
->beacon_connection_loss_work
);
3119 cancel_work_sync(&ifmgd
->csa_connection_drop_work
);
3120 if (del_timer_sync(&ifmgd
->timer
))
3121 set_bit(TMR_RUNNING_TIMER
, &ifmgd
->timers_running
);
3123 cancel_work_sync(&ifmgd
->chswitch_work
);
3124 if (del_timer_sync(&ifmgd
->chswitch_timer
))
3125 set_bit(TMR_RUNNING_CHANSW
, &ifmgd
->timers_running
);
3127 /* these will just be re-established on connection */
3128 del_timer_sync(&ifmgd
->conn_mon_timer
);
3129 del_timer_sync(&ifmgd
->bcn_mon_timer
);
3132 void ieee80211_sta_restart(struct ieee80211_sub_if_data
*sdata
)
3134 struct ieee80211_if_managed
*ifmgd
= &sdata
->u
.mgd
;
3136 if (!ifmgd
->associated
)
3139 if (sdata
->flags
& IEEE80211_SDATA_DISCONNECT_RESUME
) {
3140 sdata
->flags
&= ~IEEE80211_SDATA_DISCONNECT_RESUME
;
3141 mutex_lock(&ifmgd
->mtx
);
3142 if (ifmgd
->associated
) {
3144 "driver requested disconnect after resume\n");
3145 ieee80211_sta_connection_lost(sdata
,
3146 ifmgd
->associated
->bssid
,
3147 WLAN_REASON_UNSPECIFIED
);
3148 mutex_unlock(&ifmgd
->mtx
);
3151 mutex_unlock(&ifmgd
->mtx
);
3154 if (test_and_clear_bit(TMR_RUNNING_TIMER
, &ifmgd
->timers_running
))
3155 add_timer(&ifmgd
->timer
);
3156 if (test_and_clear_bit(TMR_RUNNING_CHANSW
, &ifmgd
->timers_running
))
3157 add_timer(&ifmgd
->chswitch_timer
);
3158 ieee80211_sta_reset_beacon_monitor(sdata
);
3160 mutex_lock(&sdata
->local
->mtx
);
3161 ieee80211_restart_sta_timer(sdata
);
3162 mutex_unlock(&sdata
->local
->mtx
);
3166 /* interface setup */
3167 void ieee80211_sta_setup_sdata(struct ieee80211_sub_if_data
*sdata
)
3169 struct ieee80211_if_managed
*ifmgd
;
3171 ifmgd
= &sdata
->u
.mgd
;
3172 INIT_WORK(&ifmgd
->monitor_work
, ieee80211_sta_monitor_work
);
3173 INIT_WORK(&ifmgd
->chswitch_work
, ieee80211_chswitch_work
);
3174 INIT_WORK(&ifmgd
->beacon_connection_loss_work
,
3175 ieee80211_beacon_connection_loss_work
);
3176 INIT_WORK(&ifmgd
->csa_connection_drop_work
,
3177 ieee80211_csa_connection_drop_work
);
3178 INIT_WORK(&ifmgd
->request_smps_work
, ieee80211_request_smps_work
);
3179 setup_timer(&ifmgd
->timer
, ieee80211_sta_timer
,
3180 (unsigned long) sdata
);
3181 setup_timer(&ifmgd
->bcn_mon_timer
, ieee80211_sta_bcn_mon_timer
,
3182 (unsigned long) sdata
);
3183 setup_timer(&ifmgd
->conn_mon_timer
, ieee80211_sta_conn_mon_timer
,
3184 (unsigned long) sdata
);
3185 setup_timer(&ifmgd
->chswitch_timer
, ieee80211_chswitch_timer
,
3186 (unsigned long) sdata
);
3189 ifmgd
->powersave
= sdata
->wdev
.ps
;
3190 ifmgd
->uapsd_queues
= IEEE80211_DEFAULT_UAPSD_QUEUES
;
3191 ifmgd
->uapsd_max_sp_len
= IEEE80211_DEFAULT_MAX_SP_LEN
;
3193 mutex_init(&ifmgd
->mtx
);
3195 if (sdata
->local
->hw
.flags
& IEEE80211_HW_SUPPORTS_DYNAMIC_SMPS
)
3196 ifmgd
->req_smps
= IEEE80211_SMPS_AUTOMATIC
;
3198 ifmgd
->req_smps
= IEEE80211_SMPS_OFF
;
3201 /* scan finished notification */
3202 void ieee80211_mlme_notify_scan_completed(struct ieee80211_local
*local
)
3204 struct ieee80211_sub_if_data
*sdata
;
3206 /* Restart STA timers */
3208 list_for_each_entry_rcu(sdata
, &local
->interfaces
, list
)
3209 ieee80211_restart_sta_timer(sdata
);
3213 int ieee80211_max_network_latency(struct notifier_block
*nb
,
3214 unsigned long data
, void *dummy
)
3216 s32 latency_usec
= (s32
) data
;
3217 struct ieee80211_local
*local
=
3218 container_of(nb
, struct ieee80211_local
,
3219 network_latency_notifier
);
3221 mutex_lock(&local
->iflist_mtx
);
3222 ieee80211_recalc_ps(local
, latency_usec
);
3223 mutex_unlock(&local
->iflist_mtx
);
3228 static u32
chandef_downgrade(struct cfg80211_chan_def
*c
)
3234 case NL80211_CHAN_WIDTH_20
:
3235 c
->width
= NL80211_CHAN_WIDTH_20_NOHT
;
3236 ret
= IEEE80211_STA_DISABLE_HT
| IEEE80211_STA_DISABLE_VHT
;
3238 case NL80211_CHAN_WIDTH_40
:
3239 c
->width
= NL80211_CHAN_WIDTH_20
;
3240 c
->center_freq1
= c
->chan
->center_freq
;
3241 ret
= IEEE80211_STA_DISABLE_40MHZ
|
3242 IEEE80211_STA_DISABLE_VHT
;
3244 case NL80211_CHAN_WIDTH_80
:
3245 tmp
= (30 + c
->chan
->center_freq
- c
->center_freq1
)/20;
3249 c
->center_freq1
= c
->center_freq1
- 20 + 40 * tmp
;
3250 c
->width
= NL80211_CHAN_WIDTH_40
;
3251 ret
= IEEE80211_STA_DISABLE_VHT
;
3253 case NL80211_CHAN_WIDTH_80P80
:
3254 c
->center_freq2
= 0;
3255 c
->width
= NL80211_CHAN_WIDTH_80
;
3256 ret
= IEEE80211_STA_DISABLE_80P80MHZ
|
3257 IEEE80211_STA_DISABLE_160MHZ
;
3259 case NL80211_CHAN_WIDTH_160
:
3261 tmp
= (70 + c
->chan
->center_freq
- c
->center_freq1
)/20;
3264 c
->center_freq1
= c
->center_freq1
- 40 + 80 * tmp
;
3265 c
->width
= NL80211_CHAN_WIDTH_80
;
3266 ret
= IEEE80211_STA_DISABLE_80P80MHZ
|
3267 IEEE80211_STA_DISABLE_160MHZ
;
3270 case NL80211_CHAN_WIDTH_20_NOHT
:
3272 c
->width
= NL80211_CHAN_WIDTH_20_NOHT
;
3273 ret
= IEEE80211_STA_DISABLE_HT
| IEEE80211_STA_DISABLE_VHT
;
3277 WARN_ON_ONCE(!cfg80211_chandef_valid(c
));
3283 ieee80211_determine_chantype(struct ieee80211_sub_if_data
*sdata
,
3284 struct ieee80211_supported_band
*sband
,
3285 struct ieee80211_channel
*channel
,
3286 const struct ieee80211_ht_operation
*ht_oper
,
3287 const struct ieee80211_vht_operation
*vht_oper
,
3288 struct cfg80211_chan_def
*chandef
)
3290 struct cfg80211_chan_def vht_chandef
;
3293 chandef
->chan
= channel
;
3294 chandef
->width
= NL80211_CHAN_WIDTH_20_NOHT
;
3295 chandef
->center_freq1
= channel
->center_freq
;
3296 chandef
->center_freq2
= 0;
3298 if (!ht_oper
|| !sband
->ht_cap
.ht_supported
) {
3299 ret
= IEEE80211_STA_DISABLE_HT
| IEEE80211_STA_DISABLE_VHT
;
3303 chandef
->width
= NL80211_CHAN_WIDTH_20
;
3305 ht_cfreq
= ieee80211_channel_to_frequency(ht_oper
->primary_chan
,
3307 /* check that channel matches the right operating channel */
3308 if (channel
->center_freq
!= ht_cfreq
) {
3310 * It's possible that some APs are confused here;
3311 * Netgear WNDR3700 sometimes reports 4 higher than
3312 * the actual channel in association responses, but
3313 * since we look at probe response/beacon data here
3317 "Wrong control channel: center-freq: %d ht-cfreq: %d ht->primary_chan: %d band: %d - Disabling HT\n",
3318 channel
->center_freq
, ht_cfreq
,
3319 ht_oper
->primary_chan
, channel
->band
);
3320 ret
= IEEE80211_STA_DISABLE_HT
| IEEE80211_STA_DISABLE_VHT
;
3324 /* check 40 MHz support, if we have it */
3325 if (sband
->ht_cap
.cap
& IEEE80211_HT_CAP_SUP_WIDTH_20_40
) {
3326 switch (ht_oper
->ht_param
& IEEE80211_HT_PARAM_CHA_SEC_OFFSET
) {
3327 case IEEE80211_HT_PARAM_CHA_SEC_ABOVE
:
3328 chandef
->width
= NL80211_CHAN_WIDTH_40
;
3329 chandef
->center_freq1
+= 10;
3331 case IEEE80211_HT_PARAM_CHA_SEC_BELOW
:
3332 chandef
->width
= NL80211_CHAN_WIDTH_40
;
3333 chandef
->center_freq1
-= 10;
3337 /* 40 MHz (and 80 MHz) must be supported for VHT */
3338 ret
= IEEE80211_STA_DISABLE_VHT
;
3342 if (!vht_oper
|| !sband
->vht_cap
.vht_supported
) {
3343 ret
= IEEE80211_STA_DISABLE_VHT
;
3347 vht_chandef
.chan
= channel
;
3348 vht_chandef
.center_freq1
=
3349 ieee80211_channel_to_frequency(vht_oper
->center_freq_seg1_idx
,
3351 vht_chandef
.center_freq2
= 0;
3353 if (vht_oper
->center_freq_seg2_idx
)
3354 vht_chandef
.center_freq2
=
3355 ieee80211_channel_to_frequency(
3356 vht_oper
->center_freq_seg2_idx
,
3359 switch (vht_oper
->chan_width
) {
3360 case IEEE80211_VHT_CHANWIDTH_USE_HT
:
3361 vht_chandef
.width
= chandef
->width
;
3363 case IEEE80211_VHT_CHANWIDTH_80MHZ
:
3364 vht_chandef
.width
= NL80211_CHAN_WIDTH_80
;
3366 case IEEE80211_VHT_CHANWIDTH_160MHZ
:
3367 vht_chandef
.width
= NL80211_CHAN_WIDTH_160
;
3369 case IEEE80211_VHT_CHANWIDTH_80P80MHZ
:
3370 vht_chandef
.width
= NL80211_CHAN_WIDTH_80P80
;
3374 "AP VHT operation IE has invalid channel width (%d), disable VHT\n",
3375 vht_oper
->chan_width
);
3376 ret
= IEEE80211_STA_DISABLE_VHT
;
3380 if (!cfg80211_chandef_valid(&vht_chandef
)) {
3382 "AP VHT information is invalid, disable VHT\n");
3383 ret
= IEEE80211_STA_DISABLE_VHT
;
3387 if (cfg80211_chandef_identical(chandef
, &vht_chandef
)) {
3392 if (!cfg80211_chandef_compatible(chandef
, &vht_chandef
)) {
3394 "AP VHT information doesn't match HT, disable VHT\n");
3395 ret
= IEEE80211_STA_DISABLE_VHT
;
3399 *chandef
= vht_chandef
;
3403 while (!cfg80211_chandef_usable(sdata
->local
->hw
.wiphy
, chandef
,
3404 IEEE80211_CHAN_DISABLED
)) {
3405 if (WARN_ON(chandef
->width
== NL80211_CHAN_WIDTH_20_NOHT
)) {
3406 ret
= IEEE80211_STA_DISABLE_HT
|
3407 IEEE80211_STA_DISABLE_VHT
;
3411 ret
= chandef_downgrade(chandef
);
3414 if (chandef
->width
!= vht_chandef
.width
)
3416 "local regulatory prevented using AP HT/VHT configuration, downgraded\n");
3419 WARN_ON_ONCE(!cfg80211_chandef_valid(chandef
));
3423 static u8
ieee80211_ht_vht_rx_chains(struct ieee80211_sub_if_data
*sdata
,
3424 struct cfg80211_bss
*cbss
)
3426 struct ieee80211_if_managed
*ifmgd
= &sdata
->u
.mgd
;
3427 const u8
*ht_cap_ie
, *vht_cap_ie
;
3428 const struct ieee80211_ht_cap
*ht_cap
;
3429 const struct ieee80211_vht_cap
*vht_cap
;
3432 if (ifmgd
->flags
& IEEE80211_STA_DISABLE_HT
)
3435 ht_cap_ie
= ieee80211_bss_get_ie(cbss
, WLAN_EID_HT_CAPABILITY
);
3436 if (ht_cap_ie
&& ht_cap_ie
[1] >= sizeof(*ht_cap
)) {
3437 ht_cap
= (void *)(ht_cap_ie
+ 2);
3438 chains
= ieee80211_mcs_to_chains(&ht_cap
->mcs
);
3440 * TODO: use "Tx Maximum Number Spatial Streams Supported" and
3441 * "Tx Unequal Modulation Supported" fields.
3445 if (ifmgd
->flags
& IEEE80211_STA_DISABLE_VHT
)
3448 vht_cap_ie
= ieee80211_bss_get_ie(cbss
, WLAN_EID_VHT_CAPABILITY
);
3449 if (vht_cap_ie
&& vht_cap_ie
[1] >= sizeof(*vht_cap
)) {
3453 vht_cap
= (void *)(vht_cap_ie
+ 2);
3454 tx_mcs_map
= le16_to_cpu(vht_cap
->supp_mcs
.tx_mcs_map
);
3455 for (nss
= 8; nss
> 0; nss
--) {
3456 if (((tx_mcs_map
>> (2 * (nss
- 1))) & 3) !=
3457 IEEE80211_VHT_MCS_NOT_SUPPORTED
)
3460 /* TODO: use "Tx Highest Supported Long GI Data Rate" field? */
3461 chains
= max(chains
, nss
);
3467 static int ieee80211_prep_channel(struct ieee80211_sub_if_data
*sdata
,
3468 struct cfg80211_bss
*cbss
)
3470 struct ieee80211_local
*local
= sdata
->local
;
3471 struct ieee80211_if_managed
*ifmgd
= &sdata
->u
.mgd
;
3472 const struct ieee80211_ht_operation
*ht_oper
= NULL
;
3473 const struct ieee80211_vht_operation
*vht_oper
= NULL
;
3474 struct ieee80211_supported_band
*sband
;
3475 struct cfg80211_chan_def chandef
;
3478 sband
= local
->hw
.wiphy
->bands
[cbss
->channel
->band
];
3480 ifmgd
->flags
&= ~(IEEE80211_STA_DISABLE_40MHZ
|
3481 IEEE80211_STA_DISABLE_80P80MHZ
|
3482 IEEE80211_STA_DISABLE_160MHZ
);
3486 if (!(ifmgd
->flags
& IEEE80211_STA_DISABLE_HT
) &&
3487 sband
->ht_cap
.ht_supported
) {
3488 const u8
*ht_oper_ie
;
3490 ht_oper_ie
= ieee80211_bss_get_ie(cbss
, WLAN_EID_HT_OPERATION
);
3491 if (ht_oper_ie
&& ht_oper_ie
[1] >= sizeof(*ht_oper
))
3492 ht_oper
= (void *)(ht_oper_ie
+ 2);
3495 if (!(ifmgd
->flags
& IEEE80211_STA_DISABLE_VHT
) &&
3496 sband
->vht_cap
.vht_supported
) {
3497 const u8
*vht_oper_ie
;
3499 vht_oper_ie
= ieee80211_bss_get_ie(cbss
,
3500 WLAN_EID_VHT_OPERATION
);
3501 if (vht_oper_ie
&& vht_oper_ie
[1] >= sizeof(*vht_oper
))
3502 vht_oper
= (void *)(vht_oper_ie
+ 2);
3503 if (vht_oper
&& !ht_oper
) {
3506 "AP advertised VHT without HT, disabling both\n");
3507 sdata
->flags
|= IEEE80211_STA_DISABLE_HT
;
3508 sdata
->flags
|= IEEE80211_STA_DISABLE_VHT
;
3512 ifmgd
->flags
|= ieee80211_determine_chantype(sdata
, sband
,
3517 sdata
->needed_rx_chains
= min(ieee80211_ht_vht_rx_chains(sdata
, cbss
),
3522 /* will change later if needed */
3523 sdata
->smps_mode
= IEEE80211_SMPS_OFF
;
3526 * If this fails (possibly due to channel context sharing
3527 * on incompatible channels, e.g. 80+80 and 160 sharing the
3528 * same control channel) try to use a smaller bandwidth.
3530 ret
= ieee80211_vif_use_channel(sdata
, &chandef
,
3531 IEEE80211_CHANCTX_SHARED
);
3532 while (ret
&& chandef
.width
!= NL80211_CHAN_WIDTH_20_NOHT
)
3533 ifmgd
->flags
|= chandef_downgrade(&chandef
);
3537 static int ieee80211_prep_connection(struct ieee80211_sub_if_data
*sdata
,
3538 struct cfg80211_bss
*cbss
, bool assoc
)
3540 struct ieee80211_local
*local
= sdata
->local
;
3541 struct ieee80211_if_managed
*ifmgd
= &sdata
->u
.mgd
;
3542 struct ieee80211_bss
*bss
= (void *)cbss
->priv
;
3543 struct sta_info
*new_sta
= NULL
;
3544 bool have_sta
= false;
3547 if (WARN_ON(!ifmgd
->auth_data
&& !ifmgd
->assoc_data
))
3552 have_sta
= sta_info_get(sdata
, cbss
->bssid
);
3557 new_sta
= sta_info_alloc(sdata
, cbss
->bssid
, GFP_KERNEL
);
3562 mutex_lock(&local
->mtx
);
3563 ieee80211_recalc_idle(sdata
->local
);
3564 mutex_unlock(&local
->mtx
);
3567 u32 rates
= 0, basic_rates
= 0;
3568 bool have_higher_than_11mbit
;
3569 int min_rate
= INT_MAX
, min_rate_index
= -1;
3570 struct ieee80211_supported_band
*sband
;
3572 sband
= local
->hw
.wiphy
->bands
[cbss
->channel
->band
];
3574 err
= ieee80211_prep_channel(sdata
, cbss
);
3576 sta_info_free(local
, new_sta
);
3580 ieee80211_get_rates(sband
, bss
->supp_rates
,
3581 bss
->supp_rates_len
,
3582 &rates
, &basic_rates
,
3583 &have_higher_than_11mbit
,
3584 &min_rate
, &min_rate_index
);
3587 * This used to be a workaround for basic rates missing
3588 * in the association response frame. Now that we no
3589 * longer use the basic rates from there, it probably
3590 * doesn't happen any more, but keep the workaround so
3591 * in case some *other* APs are buggy in different ways
3592 * we can connect -- with a warning.
3594 if (!basic_rates
&& min_rate_index
>= 0) {
3596 "No basic rates, using min rate instead\n");
3597 basic_rates
= BIT(min_rate_index
);
3600 new_sta
->sta
.supp_rates
[cbss
->channel
->band
] = rates
;
3601 sdata
->vif
.bss_conf
.basic_rates
= basic_rates
;
3603 /* cf. IEEE 802.11 9.2.12 */
3604 if (cbss
->channel
->band
== IEEE80211_BAND_2GHZ
&&
3605 have_higher_than_11mbit
)
3606 sdata
->flags
|= IEEE80211_SDATA_OPERATING_GMODE
;
3608 sdata
->flags
&= ~IEEE80211_SDATA_OPERATING_GMODE
;
3610 memcpy(ifmgd
->bssid
, cbss
->bssid
, ETH_ALEN
);
3612 /* set timing information */
3613 sdata
->vif
.bss_conf
.beacon_int
= cbss
->beacon_interval
;
3614 sdata
->vif
.bss_conf
.sync_tsf
= cbss
->tsf
;
3615 sdata
->vif
.bss_conf
.sync_device_ts
= bss
->device_ts
;
3617 /* tell driver about BSSID, basic rates and timing */
3618 ieee80211_bss_info_change_notify(sdata
,
3619 BSS_CHANGED_BSSID
| BSS_CHANGED_BASIC_RATES
|
3620 BSS_CHANGED_BEACON_INT
);
3623 sta_info_pre_move_state(new_sta
, IEEE80211_STA_AUTH
);
3625 err
= sta_info_insert(new_sta
);
3629 "failed to insert STA entry for the AP (error %d)\n",
3634 WARN_ON_ONCE(!ether_addr_equal(ifmgd
->bssid
, cbss
->bssid
));
3640 int ieee80211_mgd_auth(struct ieee80211_sub_if_data
*sdata
,
3641 struct cfg80211_auth_request
*req
)
3643 struct ieee80211_local
*local
= sdata
->local
;
3644 struct ieee80211_if_managed
*ifmgd
= &sdata
->u
.mgd
;
3645 struct ieee80211_mgd_auth_data
*auth_data
;
3649 /* prepare auth data structure */
3651 switch (req
->auth_type
) {
3652 case NL80211_AUTHTYPE_OPEN_SYSTEM
:
3653 auth_alg
= WLAN_AUTH_OPEN
;
3655 case NL80211_AUTHTYPE_SHARED_KEY
:
3656 if (IS_ERR(local
->wep_tx_tfm
))
3658 auth_alg
= WLAN_AUTH_SHARED_KEY
;
3660 case NL80211_AUTHTYPE_FT
:
3661 auth_alg
= WLAN_AUTH_FT
;
3663 case NL80211_AUTHTYPE_NETWORK_EAP
:
3664 auth_alg
= WLAN_AUTH_LEAP
;
3666 case NL80211_AUTHTYPE_SAE
:
3667 auth_alg
= WLAN_AUTH_SAE
;
3673 auth_data
= kzalloc(sizeof(*auth_data
) + req
->sae_data_len
+
3674 req
->ie_len
, GFP_KERNEL
);
3678 auth_data
->bss
= req
->bss
;
3680 if (req
->sae_data_len
>= 4) {
3681 __le16
*pos
= (__le16
*) req
->sae_data
;
3682 auth_data
->sae_trans
= le16_to_cpu(pos
[0]);
3683 auth_data
->sae_status
= le16_to_cpu(pos
[1]);
3684 memcpy(auth_data
->data
, req
->sae_data
+ 4,
3685 req
->sae_data_len
- 4);
3686 auth_data
->data_len
+= req
->sae_data_len
- 4;
3689 if (req
->ie
&& req
->ie_len
) {
3690 memcpy(&auth_data
->data
[auth_data
->data_len
],
3691 req
->ie
, req
->ie_len
);
3692 auth_data
->data_len
+= req
->ie_len
;
3695 if (req
->key
&& req
->key_len
) {
3696 auth_data
->key_len
= req
->key_len
;
3697 auth_data
->key_idx
= req
->key_idx
;
3698 memcpy(auth_data
->key
, req
->key
, req
->key_len
);
3701 auth_data
->algorithm
= auth_alg
;
3703 /* try to authenticate/probe */
3705 mutex_lock(&ifmgd
->mtx
);
3707 if ((ifmgd
->auth_data
&& !ifmgd
->auth_data
->done
) ||
3708 ifmgd
->assoc_data
) {
3713 if (ifmgd
->auth_data
)
3714 ieee80211_destroy_auth_data(sdata
, false);
3716 /* prep auth_data so we don't go into idle on disassoc */
3717 ifmgd
->auth_data
= auth_data
;
3719 if (ifmgd
->associated
)
3720 ieee80211_set_disassoc(sdata
, 0, 0, false, NULL
);
3722 sdata_info(sdata
, "authenticate with %pM\n", req
->bss
->bssid
);
3724 err
= ieee80211_prep_connection(sdata
, req
->bss
, false);
3728 err
= ieee80211_probe_auth(sdata
);
3730 sta_info_destroy_addr(sdata
, req
->bss
->bssid
);
3734 /* hold our own reference */
3735 cfg80211_ref_bss(auth_data
->bss
);
3740 memset(ifmgd
->bssid
, 0, ETH_ALEN
);
3741 ieee80211_bss_info_change_notify(sdata
, BSS_CHANGED_BSSID
);
3742 ifmgd
->auth_data
= NULL
;
3746 mutex_unlock(&ifmgd
->mtx
);
3751 int ieee80211_mgd_assoc(struct ieee80211_sub_if_data
*sdata
,
3752 struct cfg80211_assoc_request
*req
)
3754 struct ieee80211_local
*local
= sdata
->local
;
3755 struct ieee80211_if_managed
*ifmgd
= &sdata
->u
.mgd
;
3756 struct ieee80211_bss
*bss
= (void *)req
->bss
->priv
;
3757 struct ieee80211_mgd_assoc_data
*assoc_data
;
3758 struct ieee80211_supported_band
*sband
;
3759 const u8
*ssidie
, *ht_ie
;
3762 assoc_data
= kzalloc(sizeof(*assoc_data
) + req
->ie_len
, GFP_KERNEL
);
3767 ssidie
= ieee80211_bss_get_ie(req
->bss
, WLAN_EID_SSID
);
3773 memcpy(assoc_data
->ssid
, ssidie
+ 2, ssidie
[1]);
3774 assoc_data
->ssid_len
= ssidie
[1];
3777 mutex_lock(&ifmgd
->mtx
);
3779 if (ifmgd
->associated
)
3780 ieee80211_set_disassoc(sdata
, 0, 0, false, NULL
);
3782 if (ifmgd
->auth_data
&& !ifmgd
->auth_data
->done
) {
3787 if (ifmgd
->assoc_data
) {
3792 if (ifmgd
->auth_data
) {
3795 /* keep sta info, bssid if matching */
3796 match
= ether_addr_equal(ifmgd
->bssid
, req
->bss
->bssid
);
3797 ieee80211_destroy_auth_data(sdata
, match
);
3800 /* prepare assoc data */
3802 ifmgd
->beacon_crc_valid
= false;
3805 * IEEE802.11n does not allow TKIP/WEP as pairwise ciphers in HT mode.
3806 * We still associate in non-HT mode (11a/b/g) if any one of these
3807 * ciphers is configured as pairwise.
3808 * We can set this to true for non-11n hardware, that'll be checked
3809 * separately along with the peer capabilities.
3811 for (i
= 0; i
< req
->crypto
.n_ciphers_pairwise
; i
++) {
3812 if (req
->crypto
.ciphers_pairwise
[i
] == WLAN_CIPHER_SUITE_WEP40
||
3813 req
->crypto
.ciphers_pairwise
[i
] == WLAN_CIPHER_SUITE_TKIP
||
3814 req
->crypto
.ciphers_pairwise
[i
] == WLAN_CIPHER_SUITE_WEP104
) {
3815 ifmgd
->flags
|= IEEE80211_STA_DISABLE_HT
;
3816 ifmgd
->flags
|= IEEE80211_STA_DISABLE_VHT
;
3817 netdev_info(sdata
->dev
,
3818 "disabling HT/VHT due to WEP/TKIP use\n");
3822 if (req
->flags
& ASSOC_REQ_DISABLE_HT
) {
3823 ifmgd
->flags
|= IEEE80211_STA_DISABLE_HT
;
3824 ifmgd
->flags
|= IEEE80211_STA_DISABLE_VHT
;
3827 /* Also disable HT if we don't support it or the AP doesn't use WMM */
3828 sband
= local
->hw
.wiphy
->bands
[req
->bss
->channel
->band
];
3829 if (!sband
->ht_cap
.ht_supported
||
3830 local
->hw
.queues
< IEEE80211_NUM_ACS
|| !bss
->wmm_used
) {
3831 ifmgd
->flags
|= IEEE80211_STA_DISABLE_HT
;
3833 netdev_info(sdata
->dev
,
3834 "disabling HT as WMM/QoS is not supported by the AP\n");
3837 /* disable VHT if we don't support it or the AP doesn't use WMM */
3838 if (!sband
->vht_cap
.vht_supported
||
3839 local
->hw
.queues
< IEEE80211_NUM_ACS
|| !bss
->wmm_used
) {
3840 ifmgd
->flags
|= IEEE80211_STA_DISABLE_VHT
;
3842 netdev_info(sdata
->dev
,
3843 "disabling VHT as WMM/QoS is not supported by the AP\n");
3846 memcpy(&ifmgd
->ht_capa
, &req
->ht_capa
, sizeof(ifmgd
->ht_capa
));
3847 memcpy(&ifmgd
->ht_capa_mask
, &req
->ht_capa_mask
,
3848 sizeof(ifmgd
->ht_capa_mask
));
3850 if (req
->ie
&& req
->ie_len
) {
3851 memcpy(assoc_data
->ie
, req
->ie
, req
->ie_len
);
3852 assoc_data
->ie_len
= req
->ie_len
;
3855 assoc_data
->bss
= req
->bss
;
3857 if (ifmgd
->req_smps
== IEEE80211_SMPS_AUTOMATIC
) {
3858 if (ifmgd
->powersave
)
3859 sdata
->smps_mode
= IEEE80211_SMPS_DYNAMIC
;
3861 sdata
->smps_mode
= IEEE80211_SMPS_OFF
;
3863 sdata
->smps_mode
= ifmgd
->req_smps
;
3865 assoc_data
->capability
= req
->bss
->capability
;
3866 assoc_data
->wmm
= bss
->wmm_used
&&
3867 (local
->hw
.queues
>= IEEE80211_NUM_ACS
);
3868 assoc_data
->supp_rates
= bss
->supp_rates
;
3869 assoc_data
->supp_rates_len
= bss
->supp_rates_len
;
3872 ht_ie
= ieee80211_bss_get_ie(req
->bss
, WLAN_EID_HT_OPERATION
);
3873 if (ht_ie
&& ht_ie
[1] >= sizeof(struct ieee80211_ht_operation
))
3874 assoc_data
->ap_ht_param
=
3875 ((struct ieee80211_ht_operation
*)(ht_ie
+ 2))->ht_param
;
3877 ifmgd
->flags
|= IEEE80211_STA_DISABLE_HT
;
3880 if (bss
->wmm_used
&& bss
->uapsd_supported
&&
3881 (sdata
->local
->hw
.flags
& IEEE80211_HW_SUPPORTS_UAPSD
)) {
3882 assoc_data
->uapsd
= true;
3883 ifmgd
->flags
|= IEEE80211_STA_UAPSD_ENABLED
;
3885 assoc_data
->uapsd
= false;
3886 ifmgd
->flags
&= ~IEEE80211_STA_UAPSD_ENABLED
;
3889 if (req
->prev_bssid
)
3890 memcpy(assoc_data
->prev_bssid
, req
->prev_bssid
, ETH_ALEN
);
3893 ifmgd
->mfp
= IEEE80211_MFP_REQUIRED
;
3894 ifmgd
->flags
|= IEEE80211_STA_MFP_ENABLED
;
3896 ifmgd
->mfp
= IEEE80211_MFP_DISABLED
;
3897 ifmgd
->flags
&= ~IEEE80211_STA_MFP_ENABLED
;
3900 if (req
->crypto
.control_port
)
3901 ifmgd
->flags
|= IEEE80211_STA_CONTROL_PORT
;
3903 ifmgd
->flags
&= ~IEEE80211_STA_CONTROL_PORT
;
3905 sdata
->control_port_protocol
= req
->crypto
.control_port_ethertype
;
3906 sdata
->control_port_no_encrypt
= req
->crypto
.control_port_no_encrypt
;
3908 /* kick off associate process */
3910 ifmgd
->assoc_data
= assoc_data
;
3911 ifmgd
->dtim_period
= 0;
3913 err
= ieee80211_prep_connection(sdata
, req
->bss
, true);
3917 if (sdata
->local
->hw
.flags
& IEEE80211_HW_NEED_DTIM_PERIOD
) {
3918 const struct cfg80211_bss_ies
*beacon_ies
;
3921 beacon_ies
= rcu_dereference(req
->bss
->beacon_ies
);
3924 * Wait up to one beacon interval ...
3925 * should this be more if we miss one?
3927 sdata_info(sdata
, "waiting for beacon from %pM\n",
3929 assoc_data
->timeout
=
3930 TU_TO_EXP_TIME(req
->bss
->beacon_interval
);
3932 const u8
*tim_ie
= cfg80211_find_ie(WLAN_EID_TIM
,
3935 if (tim_ie
&& tim_ie
[1] >=
3936 sizeof(struct ieee80211_tim_ie
)) {
3937 const struct ieee80211_tim_ie
*tim
;
3938 tim
= (void *)(tim_ie
+ 2);
3939 ifmgd
->dtim_period
= tim
->dtim_period
;
3941 assoc_data
->have_beacon
= true;
3942 assoc_data
->sent_assoc
= false;
3943 assoc_data
->timeout
= jiffies
;
3947 assoc_data
->have_beacon
= true;
3948 assoc_data
->sent_assoc
= false;
3949 assoc_data
->timeout
= jiffies
;
3951 run_again(ifmgd
, assoc_data
->timeout
);
3953 if (bss
->corrupt_data
) {
3954 char *corrupt_type
= "data";
3955 if (bss
->corrupt_data
& IEEE80211_BSS_CORRUPT_BEACON
) {
3956 if (bss
->corrupt_data
&
3957 IEEE80211_BSS_CORRUPT_PROBE_RESP
)
3958 corrupt_type
= "beacon and probe response";
3960 corrupt_type
= "beacon";
3961 } else if (bss
->corrupt_data
& IEEE80211_BSS_CORRUPT_PROBE_RESP
)
3962 corrupt_type
= "probe response";
3963 sdata_info(sdata
, "associating with AP with corrupt %s\n",
3970 memset(ifmgd
->bssid
, 0, ETH_ALEN
);
3971 ieee80211_bss_info_change_notify(sdata
, BSS_CHANGED_BSSID
);
3972 ifmgd
->assoc_data
= NULL
;
3976 mutex_unlock(&ifmgd
->mtx
);
3981 int ieee80211_mgd_deauth(struct ieee80211_sub_if_data
*sdata
,
3982 struct cfg80211_deauth_request
*req
)
3984 struct ieee80211_if_managed
*ifmgd
= &sdata
->u
.mgd
;
3985 u8 frame_buf
[IEEE80211_DEAUTH_FRAME_LEN
];
3986 bool tx
= !req
->local_state_change
;
3987 bool sent_frame
= false;
3989 mutex_lock(&ifmgd
->mtx
);
3992 "deauthenticating from %pM by local choice (reason=%d)\n",
3993 req
->bssid
, req
->reason_code
);
3995 if (ifmgd
->auth_data
) {
3996 drv_mgd_prepare_tx(sdata
->local
, sdata
);
3997 ieee80211_send_deauth_disassoc(sdata
, req
->bssid
,
3998 IEEE80211_STYPE_DEAUTH
,
3999 req
->reason_code
, tx
,
4001 ieee80211_destroy_auth_data(sdata
, false);
4002 mutex_unlock(&ifmgd
->mtx
);
4008 if (ifmgd
->associated
&&
4009 ether_addr_equal(ifmgd
->associated
->bssid
, req
->bssid
)) {
4010 ieee80211_set_disassoc(sdata
, IEEE80211_STYPE_DEAUTH
,
4011 req
->reason_code
, tx
, frame_buf
);
4014 mutex_unlock(&ifmgd
->mtx
);
4017 mutex_lock(&sdata
->local
->mtx
);
4018 ieee80211_recalc_idle(sdata
->local
);
4019 mutex_unlock(&sdata
->local
->mtx
);
4022 __cfg80211_send_deauth(sdata
->dev
, frame_buf
,
4023 IEEE80211_DEAUTH_FRAME_LEN
);
4028 int ieee80211_mgd_disassoc(struct ieee80211_sub_if_data
*sdata
,
4029 struct cfg80211_disassoc_request
*req
)
4031 struct ieee80211_if_managed
*ifmgd
= &sdata
->u
.mgd
;
4033 u8 frame_buf
[IEEE80211_DEAUTH_FRAME_LEN
];
4035 mutex_lock(&ifmgd
->mtx
);
4038 * cfg80211 should catch this ... but it's racy since
4039 * we can receive a disassoc frame, process it, hand it
4040 * to cfg80211 while that's in a locked section already
4041 * trying to tell us that the user wants to disconnect.
4043 if (ifmgd
->associated
!= req
->bss
) {
4044 mutex_unlock(&ifmgd
->mtx
);
4049 "disassociating from %pM by local choice (reason=%d)\n",
4050 req
->bss
->bssid
, req
->reason_code
);
4052 memcpy(bssid
, req
->bss
->bssid
, ETH_ALEN
);
4053 ieee80211_set_disassoc(sdata
, IEEE80211_STYPE_DISASSOC
,
4054 req
->reason_code
, !req
->local_state_change
,
4056 mutex_unlock(&ifmgd
->mtx
);
4058 __cfg80211_send_disassoc(sdata
->dev
, frame_buf
,
4059 IEEE80211_DEAUTH_FRAME_LEN
);
4061 mutex_lock(&sdata
->local
->mtx
);
4062 ieee80211_recalc_idle(sdata
->local
);
4063 mutex_unlock(&sdata
->local
->mtx
);
4068 void ieee80211_mgd_stop(struct ieee80211_sub_if_data
*sdata
)
4070 struct ieee80211_if_managed
*ifmgd
= &sdata
->u
.mgd
;
4072 mutex_lock(&ifmgd
->mtx
);
4073 if (ifmgd
->assoc_data
)
4074 ieee80211_destroy_assoc_data(sdata
, false);
4075 if (ifmgd
->auth_data
)
4076 ieee80211_destroy_auth_data(sdata
, false);
4077 del_timer_sync(&ifmgd
->timer
);
4078 mutex_unlock(&ifmgd
->mtx
);
4081 void ieee80211_cqm_rssi_notify(struct ieee80211_vif
*vif
,
4082 enum nl80211_cqm_rssi_threshold_event rssi_event
,
4085 struct ieee80211_sub_if_data
*sdata
= vif_to_sdata(vif
);
4087 trace_api_cqm_rssi_notify(sdata
, rssi_event
);
4089 cfg80211_cqm_rssi_notify(sdata
->dev
, rssi_event
, gfp
);
4091 EXPORT_SYMBOL(ieee80211_cqm_rssi_notify
);