2 * mac80211 configuration hooks for cfg80211
4 * Copyright 2006-2010 Johannes Berg <johannes@sipsolutions.net>
5 * Copyright 2013-2015 Intel Mobile Communications GmbH
6 * Copyright (C) 2015-2017 Intel Deutschland GmbH
7 * Copyright (C) 2018 Intel Corporation
9 * This file is GPLv2 as found in COPYING.
12 #include <linux/ieee80211.h>
13 #include <linux/nl80211.h>
14 #include <linux/rtnetlink.h>
15 #include <linux/slab.h>
16 #include <net/net_namespace.h>
17 #include <linux/rcupdate.h>
18 #include <linux/if_ether.h>
19 #include <net/cfg80211.h>
20 #include "ieee80211_i.h"
21 #include "driver-ops.h"
26 static void ieee80211_set_mu_mimo_follow(struct ieee80211_sub_if_data
*sdata
,
27 struct vif_params
*params
)
29 bool mu_mimo_groups
= false;
30 bool mu_mimo_follow
= false;
32 if (params
->vht_mumimo_groups
) {
35 BUILD_BUG_ON(sizeof(membership
) != WLAN_MEMBERSHIP_LEN
);
37 memcpy(sdata
->vif
.bss_conf
.mu_group
.membership
,
38 params
->vht_mumimo_groups
, WLAN_MEMBERSHIP_LEN
);
39 memcpy(sdata
->vif
.bss_conf
.mu_group
.position
,
40 params
->vht_mumimo_groups
+ WLAN_MEMBERSHIP_LEN
,
41 WLAN_USER_POSITION_LEN
);
42 ieee80211_bss_info_change_notify(sdata
, BSS_CHANGED_MU_GROUPS
);
43 /* don't care about endianness - just check for 0 */
44 memcpy(&membership
, params
->vht_mumimo_groups
,
46 mu_mimo_groups
= membership
!= 0;
49 if (params
->vht_mumimo_follow_addr
) {
51 is_valid_ether_addr(params
->vht_mumimo_follow_addr
);
52 ether_addr_copy(sdata
->u
.mntr
.mu_follow_addr
,
53 params
->vht_mumimo_follow_addr
);
56 sdata
->vif
.mu_mimo_owner
= mu_mimo_groups
|| mu_mimo_follow
;
59 static int ieee80211_set_mon_options(struct ieee80211_sub_if_data
*sdata
,
60 struct vif_params
*params
)
62 struct ieee80211_local
*local
= sdata
->local
;
63 struct ieee80211_sub_if_data
*monitor_sdata
;
65 /* check flags first */
66 if (params
->flags
&& ieee80211_sdata_running(sdata
)) {
67 u32 mask
= MONITOR_FLAG_COOK_FRAMES
| MONITOR_FLAG_ACTIVE
;
70 * Prohibit MONITOR_FLAG_COOK_FRAMES and
71 * MONITOR_FLAG_ACTIVE to be changed while the
73 * Else we would need to add a lot of cruft
74 * to update everything:
75 * cooked_mntrs, monitor and all fif_* counters
76 * reconfigure hardware
78 if ((params
->flags
& mask
) != (sdata
->u
.mntr
.flags
& mask
))
82 /* also validate MU-MIMO change */
83 monitor_sdata
= rtnl_dereference(local
->monitor_sdata
);
86 (params
->vht_mumimo_groups
|| params
->vht_mumimo_follow_addr
))
89 /* apply all changes now - no failures allowed */
92 ieee80211_set_mu_mimo_follow(monitor_sdata
, params
);
95 if (ieee80211_sdata_running(sdata
)) {
96 ieee80211_adjust_monitor_flags(sdata
, -1);
97 sdata
->u
.mntr
.flags
= params
->flags
;
98 ieee80211_adjust_monitor_flags(sdata
, 1);
100 ieee80211_configure_filter(local
);
103 * Because the interface is down, ieee80211_do_stop
104 * and ieee80211_do_open take care of "everything"
105 * mentioned in the comment above.
107 sdata
->u
.mntr
.flags
= params
->flags
;
114 static struct wireless_dev
*ieee80211_add_iface(struct wiphy
*wiphy
,
116 unsigned char name_assign_type
,
117 enum nl80211_iftype type
,
118 struct vif_params
*params
)
120 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
121 struct wireless_dev
*wdev
;
122 struct ieee80211_sub_if_data
*sdata
;
125 err
= ieee80211_if_add(local
, name
, name_assign_type
, &wdev
, type
, params
);
129 sdata
= IEEE80211_WDEV_TO_SUB_IF(wdev
);
131 if (type
== NL80211_IFTYPE_MONITOR
) {
132 err
= ieee80211_set_mon_options(sdata
, params
);
134 ieee80211_if_remove(sdata
);
142 static int ieee80211_del_iface(struct wiphy
*wiphy
, struct wireless_dev
*wdev
)
144 ieee80211_if_remove(IEEE80211_WDEV_TO_SUB_IF(wdev
));
149 static int ieee80211_change_iface(struct wiphy
*wiphy
,
150 struct net_device
*dev
,
151 enum nl80211_iftype type
,
152 struct vif_params
*params
)
154 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
157 ret
= ieee80211_if_change_type(sdata
, type
);
161 if (type
== NL80211_IFTYPE_AP_VLAN
&& params
->use_4addr
== 0) {
162 RCU_INIT_POINTER(sdata
->u
.vlan
.sta
, NULL
);
163 ieee80211_check_fast_rx_iface(sdata
);
164 } else if (type
== NL80211_IFTYPE_STATION
&& params
->use_4addr
>= 0) {
165 sdata
->u
.mgd
.use_4addr
= params
->use_4addr
;
168 if (sdata
->vif
.type
== NL80211_IFTYPE_MONITOR
) {
169 ret
= ieee80211_set_mon_options(sdata
, params
);
177 static int ieee80211_start_p2p_device(struct wiphy
*wiphy
,
178 struct wireless_dev
*wdev
)
180 struct ieee80211_sub_if_data
*sdata
= IEEE80211_WDEV_TO_SUB_IF(wdev
);
183 mutex_lock(&sdata
->local
->chanctx_mtx
);
184 ret
= ieee80211_check_combinations(sdata
, NULL
, 0, 0);
185 mutex_unlock(&sdata
->local
->chanctx_mtx
);
189 return ieee80211_do_open(wdev
, true);
192 static void ieee80211_stop_p2p_device(struct wiphy
*wiphy
,
193 struct wireless_dev
*wdev
)
195 ieee80211_sdata_stop(IEEE80211_WDEV_TO_SUB_IF(wdev
));
198 static int ieee80211_start_nan(struct wiphy
*wiphy
,
199 struct wireless_dev
*wdev
,
200 struct cfg80211_nan_conf
*conf
)
202 struct ieee80211_sub_if_data
*sdata
= IEEE80211_WDEV_TO_SUB_IF(wdev
);
205 mutex_lock(&sdata
->local
->chanctx_mtx
);
206 ret
= ieee80211_check_combinations(sdata
, NULL
, 0, 0);
207 mutex_unlock(&sdata
->local
->chanctx_mtx
);
211 ret
= ieee80211_do_open(wdev
, true);
215 ret
= drv_start_nan(sdata
->local
, sdata
, conf
);
217 ieee80211_sdata_stop(sdata
);
219 sdata
->u
.nan
.conf
= *conf
;
224 static void ieee80211_stop_nan(struct wiphy
*wiphy
,
225 struct wireless_dev
*wdev
)
227 struct ieee80211_sub_if_data
*sdata
= IEEE80211_WDEV_TO_SUB_IF(wdev
);
229 drv_stop_nan(sdata
->local
, sdata
);
230 ieee80211_sdata_stop(sdata
);
233 static int ieee80211_nan_change_conf(struct wiphy
*wiphy
,
234 struct wireless_dev
*wdev
,
235 struct cfg80211_nan_conf
*conf
,
238 struct ieee80211_sub_if_data
*sdata
= IEEE80211_WDEV_TO_SUB_IF(wdev
);
239 struct cfg80211_nan_conf new_conf
;
242 if (sdata
->vif
.type
!= NL80211_IFTYPE_NAN
)
245 if (!ieee80211_sdata_running(sdata
))
248 new_conf
= sdata
->u
.nan
.conf
;
250 if (changes
& CFG80211_NAN_CONF_CHANGED_PREF
)
251 new_conf
.master_pref
= conf
->master_pref
;
253 if (changes
& CFG80211_NAN_CONF_CHANGED_BANDS
)
254 new_conf
.bands
= conf
->bands
;
256 ret
= drv_nan_change_conf(sdata
->local
, sdata
, &new_conf
, changes
);
258 sdata
->u
.nan
.conf
= new_conf
;
263 static int ieee80211_add_nan_func(struct wiphy
*wiphy
,
264 struct wireless_dev
*wdev
,
265 struct cfg80211_nan_func
*nan_func
)
267 struct ieee80211_sub_if_data
*sdata
= IEEE80211_WDEV_TO_SUB_IF(wdev
);
270 if (sdata
->vif
.type
!= NL80211_IFTYPE_NAN
)
273 if (!ieee80211_sdata_running(sdata
))
276 spin_lock_bh(&sdata
->u
.nan
.func_lock
);
278 ret
= idr_alloc(&sdata
->u
.nan
.function_inst_ids
,
279 nan_func
, 1, sdata
->local
->hw
.max_nan_de_entries
+ 1,
281 spin_unlock_bh(&sdata
->u
.nan
.func_lock
);
286 nan_func
->instance_id
= ret
;
288 WARN_ON(nan_func
->instance_id
== 0);
290 ret
= drv_add_nan_func(sdata
->local
, sdata
, nan_func
);
292 spin_lock_bh(&sdata
->u
.nan
.func_lock
);
293 idr_remove(&sdata
->u
.nan
.function_inst_ids
,
294 nan_func
->instance_id
);
295 spin_unlock_bh(&sdata
->u
.nan
.func_lock
);
301 static struct cfg80211_nan_func
*
302 ieee80211_find_nan_func_by_cookie(struct ieee80211_sub_if_data
*sdata
,
305 struct cfg80211_nan_func
*func
;
308 lockdep_assert_held(&sdata
->u
.nan
.func_lock
);
310 idr_for_each_entry(&sdata
->u
.nan
.function_inst_ids
, func
, id
) {
311 if (func
->cookie
== cookie
)
318 static void ieee80211_del_nan_func(struct wiphy
*wiphy
,
319 struct wireless_dev
*wdev
, u64 cookie
)
321 struct ieee80211_sub_if_data
*sdata
= IEEE80211_WDEV_TO_SUB_IF(wdev
);
322 struct cfg80211_nan_func
*func
;
325 if (sdata
->vif
.type
!= NL80211_IFTYPE_NAN
||
326 !ieee80211_sdata_running(sdata
))
329 spin_lock_bh(&sdata
->u
.nan
.func_lock
);
331 func
= ieee80211_find_nan_func_by_cookie(sdata
, cookie
);
333 instance_id
= func
->instance_id
;
335 spin_unlock_bh(&sdata
->u
.nan
.func_lock
);
338 drv_del_nan_func(sdata
->local
, sdata
, instance_id
);
341 static int ieee80211_set_noack_map(struct wiphy
*wiphy
,
342 struct net_device
*dev
,
345 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
347 sdata
->noack_map
= noack_map
;
349 ieee80211_check_fast_xmit_iface(sdata
);
354 static int ieee80211_add_key(struct wiphy
*wiphy
, struct net_device
*dev
,
355 u8 key_idx
, bool pairwise
, const u8
*mac_addr
,
356 struct key_params
*params
)
358 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
359 struct ieee80211_local
*local
= sdata
->local
;
360 struct sta_info
*sta
= NULL
;
361 const struct ieee80211_cipher_scheme
*cs
= NULL
;
362 struct ieee80211_key
*key
;
365 if (!ieee80211_sdata_running(sdata
))
368 /* reject WEP and TKIP keys if WEP failed to initialize */
369 switch (params
->cipher
) {
370 case WLAN_CIPHER_SUITE_WEP40
:
371 case WLAN_CIPHER_SUITE_TKIP
:
372 case WLAN_CIPHER_SUITE_WEP104
:
373 if (IS_ERR(local
->wep_tx_tfm
))
376 case WLAN_CIPHER_SUITE_CCMP
:
377 case WLAN_CIPHER_SUITE_CCMP_256
:
378 case WLAN_CIPHER_SUITE_AES_CMAC
:
379 case WLAN_CIPHER_SUITE_BIP_CMAC_256
:
380 case WLAN_CIPHER_SUITE_BIP_GMAC_128
:
381 case WLAN_CIPHER_SUITE_BIP_GMAC_256
:
382 case WLAN_CIPHER_SUITE_GCMP
:
383 case WLAN_CIPHER_SUITE_GCMP_256
:
386 cs
= ieee80211_cs_get(local
, params
->cipher
, sdata
->vif
.type
);
390 key
= ieee80211_key_alloc(params
->cipher
, key_idx
, params
->key_len
,
391 params
->key
, params
->seq_len
, params
->seq
,
397 key
->conf
.flags
|= IEEE80211_KEY_FLAG_PAIRWISE
;
399 mutex_lock(&local
->sta_mtx
);
402 sta
= sta_info_get_bss(sdata
, mac_addr
);
404 * The ASSOC test makes sure the driver is ready to
405 * receive the key. When wpa_supplicant has roamed
406 * using FT, it attempts to set the key before
407 * association has completed, this rejects that attempt
408 * so it will set the key again after association.
410 * TODO: accept the key if we have a station entry and
411 * add it to the device after the station.
413 if (!sta
|| !test_sta_flag(sta
, WLAN_STA_ASSOC
)) {
414 ieee80211_key_free_unused(key
);
420 switch (sdata
->vif
.type
) {
421 case NL80211_IFTYPE_STATION
:
422 if (sdata
->u
.mgd
.mfp
!= IEEE80211_MFP_DISABLED
)
423 key
->conf
.flags
|= IEEE80211_KEY_FLAG_RX_MGMT
;
425 case NL80211_IFTYPE_AP
:
426 case NL80211_IFTYPE_AP_VLAN
:
427 /* Keys without a station are used for TX only */
428 if (sta
&& test_sta_flag(sta
, WLAN_STA_MFP
))
429 key
->conf
.flags
|= IEEE80211_KEY_FLAG_RX_MGMT
;
431 case NL80211_IFTYPE_ADHOC
:
434 case NL80211_IFTYPE_MESH_POINT
:
435 #ifdef CONFIG_MAC80211_MESH
436 if (sdata
->u
.mesh
.security
!= IEEE80211_MESH_SEC_NONE
)
437 key
->conf
.flags
|= IEEE80211_KEY_FLAG_RX_MGMT
;
440 case NL80211_IFTYPE_WDS
:
441 case NL80211_IFTYPE_MONITOR
:
442 case NL80211_IFTYPE_P2P_DEVICE
:
443 case NL80211_IFTYPE_NAN
:
444 case NL80211_IFTYPE_UNSPECIFIED
:
445 case NUM_NL80211_IFTYPES
:
446 case NL80211_IFTYPE_P2P_CLIENT
:
447 case NL80211_IFTYPE_P2P_GO
:
448 case NL80211_IFTYPE_OCB
:
449 /* shouldn't happen */
455 sta
->cipher_scheme
= cs
;
457 err
= ieee80211_key_link(key
, sdata
, sta
);
460 mutex_unlock(&local
->sta_mtx
);
465 static int ieee80211_del_key(struct wiphy
*wiphy
, struct net_device
*dev
,
466 u8 key_idx
, bool pairwise
, const u8
*mac_addr
)
468 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
469 struct ieee80211_local
*local
= sdata
->local
;
470 struct sta_info
*sta
;
471 struct ieee80211_key
*key
= NULL
;
474 mutex_lock(&local
->sta_mtx
);
475 mutex_lock(&local
->key_mtx
);
480 sta
= sta_info_get_bss(sdata
, mac_addr
);
485 key
= key_mtx_dereference(local
, sta
->ptk
[key_idx
]);
487 key
= key_mtx_dereference(local
, sta
->gtk
[key_idx
]);
489 key
= key_mtx_dereference(local
, sdata
->keys
[key_idx
]);
496 ieee80211_key_free(key
, sdata
->vif
.type
== NL80211_IFTYPE_STATION
);
500 mutex_unlock(&local
->key_mtx
);
501 mutex_unlock(&local
->sta_mtx
);
506 static int ieee80211_get_key(struct wiphy
*wiphy
, struct net_device
*dev
,
507 u8 key_idx
, bool pairwise
, const u8
*mac_addr
,
509 void (*callback
)(void *cookie
,
510 struct key_params
*params
))
512 struct ieee80211_sub_if_data
*sdata
;
513 struct sta_info
*sta
= NULL
;
515 struct key_params params
;
516 struct ieee80211_key
*key
= NULL
;
521 struct ieee80211_key_seq kseq
= {};
523 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
528 sta
= sta_info_get_bss(sdata
, mac_addr
);
532 if (pairwise
&& key_idx
< NUM_DEFAULT_KEYS
)
533 key
= rcu_dereference(sta
->ptk
[key_idx
]);
534 else if (!pairwise
&&
535 key_idx
< NUM_DEFAULT_KEYS
+ NUM_DEFAULT_MGMT_KEYS
)
536 key
= rcu_dereference(sta
->gtk
[key_idx
]);
538 key
= rcu_dereference(sdata
->keys
[key_idx
]);
543 memset(¶ms
, 0, sizeof(params
));
545 params
.cipher
= key
->conf
.cipher
;
547 switch (key
->conf
.cipher
) {
548 case WLAN_CIPHER_SUITE_TKIP
:
549 pn64
= atomic64_read(&key
->conf
.tx_pn
);
550 iv32
= TKIP_PN_TO_IV32(pn64
);
551 iv16
= TKIP_PN_TO_IV16(pn64
);
553 if (key
->flags
& KEY_FLAG_UPLOADED_TO_HARDWARE
&&
554 !(key
->conf
.flags
& IEEE80211_KEY_FLAG_GENERATE_IV
)) {
555 drv_get_key_seq(sdata
->local
, key
, &kseq
);
556 iv32
= kseq
.tkip
.iv32
;
557 iv16
= kseq
.tkip
.iv16
;
560 seq
[0] = iv16
& 0xff;
561 seq
[1] = (iv16
>> 8) & 0xff;
562 seq
[2] = iv32
& 0xff;
563 seq
[3] = (iv32
>> 8) & 0xff;
564 seq
[4] = (iv32
>> 16) & 0xff;
565 seq
[5] = (iv32
>> 24) & 0xff;
569 case WLAN_CIPHER_SUITE_CCMP
:
570 case WLAN_CIPHER_SUITE_CCMP_256
:
571 case WLAN_CIPHER_SUITE_AES_CMAC
:
572 case WLAN_CIPHER_SUITE_BIP_CMAC_256
:
573 BUILD_BUG_ON(offsetof(typeof(kseq
), ccmp
) !=
574 offsetof(typeof(kseq
), aes_cmac
));
576 case WLAN_CIPHER_SUITE_BIP_GMAC_128
:
577 case WLAN_CIPHER_SUITE_BIP_GMAC_256
:
578 BUILD_BUG_ON(offsetof(typeof(kseq
), ccmp
) !=
579 offsetof(typeof(kseq
), aes_gmac
));
581 case WLAN_CIPHER_SUITE_GCMP
:
582 case WLAN_CIPHER_SUITE_GCMP_256
:
583 BUILD_BUG_ON(offsetof(typeof(kseq
), ccmp
) !=
584 offsetof(typeof(kseq
), gcmp
));
586 if (key
->flags
& KEY_FLAG_UPLOADED_TO_HARDWARE
&&
587 !(key
->conf
.flags
& IEEE80211_KEY_FLAG_GENERATE_IV
)) {
588 drv_get_key_seq(sdata
->local
, key
, &kseq
);
589 memcpy(seq
, kseq
.ccmp
.pn
, 6);
591 pn64
= atomic64_read(&key
->conf
.tx_pn
);
603 if (!(key
->flags
& KEY_FLAG_UPLOADED_TO_HARDWARE
))
605 if (WARN_ON(key
->conf
.flags
& IEEE80211_KEY_FLAG_GENERATE_IV
))
607 drv_get_key_seq(sdata
->local
, key
, &kseq
);
608 params
.seq
= kseq
.hw
.seq
;
609 params
.seq_len
= kseq
.hw
.seq_len
;
613 params
.key
= key
->conf
.key
;
614 params
.key_len
= key
->conf
.keylen
;
616 callback(cookie
, ¶ms
);
624 static int ieee80211_config_default_key(struct wiphy
*wiphy
,
625 struct net_device
*dev
,
626 u8 key_idx
, bool uni
,
629 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
631 ieee80211_set_default_key(sdata
, key_idx
, uni
, multi
);
636 static int ieee80211_config_default_mgmt_key(struct wiphy
*wiphy
,
637 struct net_device
*dev
,
640 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
642 ieee80211_set_default_mgmt_key(sdata
, key_idx
);
647 void sta_set_rate_info_tx(struct sta_info
*sta
,
648 const struct ieee80211_tx_rate
*rate
,
649 struct rate_info
*rinfo
)
652 if (rate
->flags
& IEEE80211_TX_RC_MCS
) {
653 rinfo
->flags
|= RATE_INFO_FLAGS_MCS
;
654 rinfo
->mcs
= rate
->idx
;
655 } else if (rate
->flags
& IEEE80211_TX_RC_VHT_MCS
) {
656 rinfo
->flags
|= RATE_INFO_FLAGS_VHT_MCS
;
657 rinfo
->mcs
= ieee80211_rate_get_vht_mcs(rate
);
658 rinfo
->nss
= ieee80211_rate_get_vht_nss(rate
);
660 struct ieee80211_supported_band
*sband
;
661 int shift
= ieee80211_vif_get_shift(&sta
->sdata
->vif
);
664 sband
= ieee80211_get_sband(sta
->sdata
);
666 brate
= sband
->bitrates
[rate
->idx
].bitrate
;
667 rinfo
->legacy
= DIV_ROUND_UP(brate
, 1 << shift
);
670 if (rate
->flags
& IEEE80211_TX_RC_40_MHZ_WIDTH
)
671 rinfo
->bw
= RATE_INFO_BW_40
;
672 else if (rate
->flags
& IEEE80211_TX_RC_80_MHZ_WIDTH
)
673 rinfo
->bw
= RATE_INFO_BW_80
;
674 else if (rate
->flags
& IEEE80211_TX_RC_160_MHZ_WIDTH
)
675 rinfo
->bw
= RATE_INFO_BW_160
;
677 rinfo
->bw
= RATE_INFO_BW_20
;
678 if (rate
->flags
& IEEE80211_TX_RC_SHORT_GI
)
679 rinfo
->flags
|= RATE_INFO_FLAGS_SHORT_GI
;
682 static int ieee80211_dump_station(struct wiphy
*wiphy
, struct net_device
*dev
,
683 int idx
, u8
*mac
, struct station_info
*sinfo
)
685 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
686 struct ieee80211_local
*local
= sdata
->local
;
687 struct sta_info
*sta
;
690 mutex_lock(&local
->sta_mtx
);
692 sta
= sta_info_get_by_idx(sdata
, idx
);
695 memcpy(mac
, sta
->sta
.addr
, ETH_ALEN
);
696 sta_set_sinfo(sta
, sinfo
, true);
699 mutex_unlock(&local
->sta_mtx
);
704 static int ieee80211_dump_survey(struct wiphy
*wiphy
, struct net_device
*dev
,
705 int idx
, struct survey_info
*survey
)
707 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
709 return drv_get_survey(local
, idx
, survey
);
712 static int ieee80211_get_station(struct wiphy
*wiphy
, struct net_device
*dev
,
713 const u8
*mac
, struct station_info
*sinfo
)
715 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
716 struct ieee80211_local
*local
= sdata
->local
;
717 struct sta_info
*sta
;
720 mutex_lock(&local
->sta_mtx
);
722 sta
= sta_info_get_bss(sdata
, mac
);
725 sta_set_sinfo(sta
, sinfo
, true);
728 mutex_unlock(&local
->sta_mtx
);
733 static int ieee80211_set_monitor_channel(struct wiphy
*wiphy
,
734 struct cfg80211_chan_def
*chandef
)
736 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
737 struct ieee80211_sub_if_data
*sdata
;
740 if (cfg80211_chandef_identical(&local
->monitor_chandef
, chandef
))
743 mutex_lock(&local
->mtx
);
744 if (local
->use_chanctx
) {
745 sdata
= rtnl_dereference(local
->monitor_sdata
);
747 ieee80211_vif_release_channel(sdata
);
748 ret
= ieee80211_vif_use_channel(sdata
, chandef
,
749 IEEE80211_CHANCTX_EXCLUSIVE
);
751 } else if (local
->open_count
== local
->monitors
) {
752 local
->_oper_chandef
= *chandef
;
753 ieee80211_hw_config(local
, 0);
757 local
->monitor_chandef
= *chandef
;
758 mutex_unlock(&local
->mtx
);
763 static int ieee80211_set_probe_resp(struct ieee80211_sub_if_data
*sdata
,
764 const u8
*resp
, size_t resp_len
,
765 const struct ieee80211_csa_settings
*csa
)
767 struct probe_resp
*new, *old
;
769 if (!resp
|| !resp_len
)
772 old
= sdata_dereference(sdata
->u
.ap
.probe_resp
, sdata
);
774 new = kzalloc(sizeof(struct probe_resp
) + resp_len
, GFP_KERNEL
);
779 memcpy(new->data
, resp
, resp_len
);
782 memcpy(new->csa_counter_offsets
, csa
->counter_offsets_presp
,
783 csa
->n_counter_offsets_presp
*
784 sizeof(new->csa_counter_offsets
[0]));
786 rcu_assign_pointer(sdata
->u
.ap
.probe_resp
, new);
788 kfree_rcu(old
, rcu_head
);
793 static int ieee80211_set_ftm_responder_params(
794 struct ieee80211_sub_if_data
*sdata
,
795 const u8
*lci
, size_t lci_len
,
796 const u8
*civicloc
, size_t civicloc_len
)
798 struct ieee80211_ftm_responder_params
*new, *old
;
799 struct ieee80211_bss_conf
*bss_conf
;
803 if (!lci_len
&& !civicloc_len
)
806 bss_conf
= &sdata
->vif
.bss_conf
;
807 old
= bss_conf
->ftmr_params
;
808 len
= lci_len
+ civicloc_len
;
810 new = kzalloc(sizeof(*new) + len
, GFP_KERNEL
);
814 pos
= (u8
*)(new + 1);
816 new->lci_len
= lci_len
;
818 memcpy(pos
, lci
, lci_len
);
823 new->civicloc_len
= civicloc_len
;
825 memcpy(pos
, civicloc
, civicloc_len
);
829 bss_conf
->ftmr_params
= new;
835 static int ieee80211_assign_beacon(struct ieee80211_sub_if_data
*sdata
,
836 struct cfg80211_beacon_data
*params
,
837 const struct ieee80211_csa_settings
*csa
)
839 struct beacon_data
*new, *old
;
840 int new_head_len
, new_tail_len
;
842 u32 changed
= BSS_CHANGED_BEACON
;
844 old
= sdata_dereference(sdata
->u
.ap
.beacon
, sdata
);
847 /* Need to have a beacon head if we don't have one yet */
848 if (!params
->head
&& !old
)
851 /* new or old head? */
853 new_head_len
= params
->head_len
;
855 new_head_len
= old
->head_len
;
857 /* new or old tail? */
858 if (params
->tail
|| !old
)
859 /* params->tail_len will be zero for !params->tail */
860 new_tail_len
= params
->tail_len
;
862 new_tail_len
= old
->tail_len
;
864 size
= sizeof(*new) + new_head_len
+ new_tail_len
;
866 new = kzalloc(size
, GFP_KERNEL
);
870 /* start filling the new info now */
873 * pointers go into the block we allocated,
874 * memory is | beacon_data | head | tail |
876 new->head
= ((u8
*) new) + sizeof(*new);
877 new->tail
= new->head
+ new_head_len
;
878 new->head_len
= new_head_len
;
879 new->tail_len
= new_tail_len
;
882 new->csa_current_counter
= csa
->count
;
883 memcpy(new->csa_counter_offsets
, csa
->counter_offsets_beacon
,
884 csa
->n_counter_offsets_beacon
*
885 sizeof(new->csa_counter_offsets
[0]));
890 memcpy(new->head
, params
->head
, new_head_len
);
892 memcpy(new->head
, old
->head
, new_head_len
);
894 /* copy in optional tail */
896 memcpy(new->tail
, params
->tail
, new_tail_len
);
899 memcpy(new->tail
, old
->tail
, new_tail_len
);
901 err
= ieee80211_set_probe_resp(sdata
, params
->probe_resp
,
902 params
->probe_resp_len
, csa
);
906 changed
|= BSS_CHANGED_AP_PROBE_RESP
;
908 if (params
->ftm_responder
!= -1) {
909 sdata
->vif
.bss_conf
.ftm_responder
= params
->ftm_responder
;
910 err
= ieee80211_set_ftm_responder_params(sdata
,
914 params
->civicloc_len
);
919 changed
|= BSS_CHANGED_FTM_RESPONDER
;
922 rcu_assign_pointer(sdata
->u
.ap
.beacon
, new);
925 kfree_rcu(old
, rcu_head
);
930 static int ieee80211_start_ap(struct wiphy
*wiphy
, struct net_device
*dev
,
931 struct cfg80211_ap_settings
*params
)
933 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
934 struct ieee80211_local
*local
= sdata
->local
;
935 struct beacon_data
*old
;
936 struct ieee80211_sub_if_data
*vlan
;
937 u32 changed
= BSS_CHANGED_BEACON_INT
|
938 BSS_CHANGED_BEACON_ENABLED
|
946 old
= sdata_dereference(sdata
->u
.ap
.beacon
, sdata
);
950 switch (params
->smps_mode
) {
951 case NL80211_SMPS_OFF
:
952 sdata
->smps_mode
= IEEE80211_SMPS_OFF
;
954 case NL80211_SMPS_STATIC
:
955 sdata
->smps_mode
= IEEE80211_SMPS_STATIC
;
957 case NL80211_SMPS_DYNAMIC
:
958 sdata
->smps_mode
= IEEE80211_SMPS_DYNAMIC
;
963 sdata
->u
.ap
.req_smps
= sdata
->smps_mode
;
965 sdata
->needed_rx_chains
= sdata
->local
->rx_chains
;
967 prev_beacon_int
= sdata
->vif
.bss_conf
.beacon_int
;
968 sdata
->vif
.bss_conf
.beacon_int
= params
->beacon_interval
;
971 sdata
->vif
.bss_conf
.he_support
= true;
973 mutex_lock(&local
->mtx
);
974 err
= ieee80211_vif_use_channel(sdata
, ¶ms
->chandef
,
975 IEEE80211_CHANCTX_SHARED
);
977 ieee80211_vif_copy_chanctx_to_vlans(sdata
, false);
978 mutex_unlock(&local
->mtx
);
980 sdata
->vif
.bss_conf
.beacon_int
= prev_beacon_int
;
985 * Apply control port protocol, this allows us to
986 * not encrypt dynamic WEP control frames.
988 sdata
->control_port_protocol
= params
->crypto
.control_port_ethertype
;
989 sdata
->control_port_no_encrypt
= params
->crypto
.control_port_no_encrypt
;
990 sdata
->control_port_over_nl80211
=
991 params
->crypto
.control_port_over_nl80211
;
992 sdata
->encrypt_headroom
= ieee80211_cs_headroom(sdata
->local
,
996 list_for_each_entry(vlan
, &sdata
->u
.ap
.vlans
, u
.vlan
.list
) {
997 vlan
->control_port_protocol
=
998 params
->crypto
.control_port_ethertype
;
999 vlan
->control_port_no_encrypt
=
1000 params
->crypto
.control_port_no_encrypt
;
1001 vlan
->control_port_over_nl80211
=
1002 params
->crypto
.control_port_over_nl80211
;
1003 vlan
->encrypt_headroom
=
1004 ieee80211_cs_headroom(sdata
->local
,
1009 sdata
->vif
.bss_conf
.dtim_period
= params
->dtim_period
;
1010 sdata
->vif
.bss_conf
.enable_beacon
= true;
1011 sdata
->vif
.bss_conf
.allow_p2p_go_ps
= sdata
->vif
.p2p
;
1013 sdata
->vif
.bss_conf
.ssid_len
= params
->ssid_len
;
1014 if (params
->ssid_len
)
1015 memcpy(sdata
->vif
.bss_conf
.ssid
, params
->ssid
,
1017 sdata
->vif
.bss_conf
.hidden_ssid
=
1018 (params
->hidden_ssid
!= NL80211_HIDDEN_SSID_NOT_IN_USE
);
1020 memset(&sdata
->vif
.bss_conf
.p2p_noa_attr
, 0,
1021 sizeof(sdata
->vif
.bss_conf
.p2p_noa_attr
));
1022 sdata
->vif
.bss_conf
.p2p_noa_attr
.oppps_ctwindow
=
1023 params
->p2p_ctwindow
& IEEE80211_P2P_OPPPS_CTWINDOW_MASK
;
1024 if (params
->p2p_opp_ps
)
1025 sdata
->vif
.bss_conf
.p2p_noa_attr
.oppps_ctwindow
|=
1026 IEEE80211_P2P_OPPPS_ENABLE_BIT
;
1028 err
= ieee80211_assign_beacon(sdata
, ¶ms
->beacon
, NULL
);
1030 ieee80211_vif_release_channel(sdata
);
1035 err
= drv_start_ap(sdata
->local
, sdata
);
1037 old
= sdata_dereference(sdata
->u
.ap
.beacon
, sdata
);
1040 kfree_rcu(old
, rcu_head
);
1041 RCU_INIT_POINTER(sdata
->u
.ap
.beacon
, NULL
);
1042 ieee80211_vif_release_channel(sdata
);
1046 ieee80211_recalc_dtim(local
, sdata
);
1047 ieee80211_bss_info_change_notify(sdata
, changed
);
1049 netif_carrier_on(dev
);
1050 list_for_each_entry(vlan
, &sdata
->u
.ap
.vlans
, u
.vlan
.list
)
1051 netif_carrier_on(vlan
->dev
);
1056 static int ieee80211_change_beacon(struct wiphy
*wiphy
, struct net_device
*dev
,
1057 struct cfg80211_beacon_data
*params
)
1059 struct ieee80211_sub_if_data
*sdata
;
1060 struct beacon_data
*old
;
1063 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1064 sdata_assert_lock(sdata
);
1066 /* don't allow changing the beacon while CSA is in place - offset
1067 * of channel switch counter may change
1069 if (sdata
->vif
.csa_active
)
1072 old
= sdata_dereference(sdata
->u
.ap
.beacon
, sdata
);
1076 err
= ieee80211_assign_beacon(sdata
, params
, NULL
);
1079 ieee80211_bss_info_change_notify(sdata
, err
);
1083 static int ieee80211_stop_ap(struct wiphy
*wiphy
, struct net_device
*dev
)
1085 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1086 struct ieee80211_sub_if_data
*vlan
;
1087 struct ieee80211_local
*local
= sdata
->local
;
1088 struct beacon_data
*old_beacon
;
1089 struct probe_resp
*old_probe_resp
;
1090 struct cfg80211_chan_def chandef
;
1092 sdata_assert_lock(sdata
);
1094 old_beacon
= sdata_dereference(sdata
->u
.ap
.beacon
, sdata
);
1097 old_probe_resp
= sdata_dereference(sdata
->u
.ap
.probe_resp
, sdata
);
1099 /* abort any running channel switch */
1100 mutex_lock(&local
->mtx
);
1101 sdata
->vif
.csa_active
= false;
1102 if (sdata
->csa_block_tx
) {
1103 ieee80211_wake_vif_queues(local
, sdata
,
1104 IEEE80211_QUEUE_STOP_REASON_CSA
);
1105 sdata
->csa_block_tx
= false;
1108 mutex_unlock(&local
->mtx
);
1110 kfree(sdata
->u
.ap
.next_beacon
);
1111 sdata
->u
.ap
.next_beacon
= NULL
;
1113 /* turn off carrier for this interface and dependent VLANs */
1114 list_for_each_entry(vlan
, &sdata
->u
.ap
.vlans
, u
.vlan
.list
)
1115 netif_carrier_off(vlan
->dev
);
1116 netif_carrier_off(dev
);
1118 /* remove beacon and probe response */
1119 RCU_INIT_POINTER(sdata
->u
.ap
.beacon
, NULL
);
1120 RCU_INIT_POINTER(sdata
->u
.ap
.probe_resp
, NULL
);
1121 kfree_rcu(old_beacon
, rcu_head
);
1123 kfree_rcu(old_probe_resp
, rcu_head
);
1124 sdata
->u
.ap
.driver_smps_mode
= IEEE80211_SMPS_OFF
;
1126 kfree(sdata
->vif
.bss_conf
.ftmr_params
);
1127 sdata
->vif
.bss_conf
.ftmr_params
= NULL
;
1129 __sta_info_flush(sdata
, true);
1130 ieee80211_free_keys(sdata
, true);
1132 sdata
->vif
.bss_conf
.enable_beacon
= false;
1133 sdata
->vif
.bss_conf
.ssid_len
= 0;
1134 clear_bit(SDATA_STATE_OFFCHANNEL_BEACON_STOPPED
, &sdata
->state
);
1135 ieee80211_bss_info_change_notify(sdata
, BSS_CHANGED_BEACON_ENABLED
);
1137 if (sdata
->wdev
.cac_started
) {
1138 chandef
= sdata
->vif
.bss_conf
.chandef
;
1139 cancel_delayed_work_sync(&sdata
->dfs_cac_timer_work
);
1140 cfg80211_cac_event(sdata
->dev
, &chandef
,
1141 NL80211_RADAR_CAC_ABORTED
,
1145 drv_stop_ap(sdata
->local
, sdata
);
1147 /* free all potentially still buffered bcast frames */
1148 local
->total_ps_buffered
-= skb_queue_len(&sdata
->u
.ap
.ps
.bc_buf
);
1149 ieee80211_purge_tx_queue(&local
->hw
, &sdata
->u
.ap
.ps
.bc_buf
);
1151 mutex_lock(&local
->mtx
);
1152 ieee80211_vif_copy_chanctx_to_vlans(sdata
, true);
1153 ieee80211_vif_release_channel(sdata
);
1154 mutex_unlock(&local
->mtx
);
1159 static int sta_apply_auth_flags(struct ieee80211_local
*local
,
1160 struct sta_info
*sta
,
1165 if (mask
& BIT(NL80211_STA_FLAG_AUTHENTICATED
) &&
1166 set
& BIT(NL80211_STA_FLAG_AUTHENTICATED
) &&
1167 !test_sta_flag(sta
, WLAN_STA_AUTH
)) {
1168 ret
= sta_info_move_state(sta
, IEEE80211_STA_AUTH
);
1173 if (mask
& BIT(NL80211_STA_FLAG_ASSOCIATED
) &&
1174 set
& BIT(NL80211_STA_FLAG_ASSOCIATED
) &&
1175 !test_sta_flag(sta
, WLAN_STA_ASSOC
)) {
1177 * When peer becomes associated, init rate control as
1178 * well. Some drivers require rate control initialized
1179 * before drv_sta_state() is called.
1181 if (!test_sta_flag(sta
, WLAN_STA_RATE_CONTROL
))
1182 rate_control_rate_init(sta
);
1184 ret
= sta_info_move_state(sta
, IEEE80211_STA_ASSOC
);
1189 if (mask
& BIT(NL80211_STA_FLAG_AUTHORIZED
)) {
1190 if (set
& BIT(NL80211_STA_FLAG_AUTHORIZED
))
1191 ret
= sta_info_move_state(sta
, IEEE80211_STA_AUTHORIZED
);
1192 else if (test_sta_flag(sta
, WLAN_STA_AUTHORIZED
))
1193 ret
= sta_info_move_state(sta
, IEEE80211_STA_ASSOC
);
1200 if (mask
& BIT(NL80211_STA_FLAG_ASSOCIATED
) &&
1201 !(set
& BIT(NL80211_STA_FLAG_ASSOCIATED
)) &&
1202 test_sta_flag(sta
, WLAN_STA_ASSOC
)) {
1203 ret
= sta_info_move_state(sta
, IEEE80211_STA_AUTH
);
1208 if (mask
& BIT(NL80211_STA_FLAG_AUTHENTICATED
) &&
1209 !(set
& BIT(NL80211_STA_FLAG_AUTHENTICATED
)) &&
1210 test_sta_flag(sta
, WLAN_STA_AUTH
)) {
1211 ret
= sta_info_move_state(sta
, IEEE80211_STA_NONE
);
1219 static void sta_apply_mesh_params(struct ieee80211_local
*local
,
1220 struct sta_info
*sta
,
1221 struct station_parameters
*params
)
1223 #ifdef CONFIG_MAC80211_MESH
1224 struct ieee80211_sub_if_data
*sdata
= sta
->sdata
;
1227 if (params
->sta_modify_mask
& STATION_PARAM_APPLY_PLINK_STATE
) {
1228 switch (params
->plink_state
) {
1229 case NL80211_PLINK_ESTAB
:
1230 if (sta
->mesh
->plink_state
!= NL80211_PLINK_ESTAB
)
1231 changed
= mesh_plink_inc_estab_count(sdata
);
1232 sta
->mesh
->plink_state
= params
->plink_state
;
1233 sta
->mesh
->aid
= params
->peer_aid
;
1235 ieee80211_mps_sta_status_update(sta
);
1236 changed
|= ieee80211_mps_set_sta_local_pm(sta
,
1237 sdata
->u
.mesh
.mshcfg
.power_mode
);
1239 ewma_mesh_tx_rate_avg_init(&sta
->mesh
->tx_rate_avg
);
1240 /* init at low value */
1241 ewma_mesh_tx_rate_avg_add(&sta
->mesh
->tx_rate_avg
, 10);
1244 case NL80211_PLINK_LISTEN
:
1245 case NL80211_PLINK_BLOCKED
:
1246 case NL80211_PLINK_OPN_SNT
:
1247 case NL80211_PLINK_OPN_RCVD
:
1248 case NL80211_PLINK_CNF_RCVD
:
1249 case NL80211_PLINK_HOLDING
:
1250 if (sta
->mesh
->plink_state
== NL80211_PLINK_ESTAB
)
1251 changed
= mesh_plink_dec_estab_count(sdata
);
1252 sta
->mesh
->plink_state
= params
->plink_state
;
1254 ieee80211_mps_sta_status_update(sta
);
1255 changed
|= ieee80211_mps_set_sta_local_pm(sta
,
1256 NL80211_MESH_POWER_UNKNOWN
);
1264 switch (params
->plink_action
) {
1265 case NL80211_PLINK_ACTION_NO_ACTION
:
1268 case NL80211_PLINK_ACTION_OPEN
:
1269 changed
|= mesh_plink_open(sta
);
1271 case NL80211_PLINK_ACTION_BLOCK
:
1272 changed
|= mesh_plink_block(sta
);
1276 if (params
->local_pm
)
1277 changed
|= ieee80211_mps_set_sta_local_pm(sta
,
1280 ieee80211_mbss_info_change_notify(sdata
, changed
);
1284 static int sta_apply_parameters(struct ieee80211_local
*local
,
1285 struct sta_info
*sta
,
1286 struct station_parameters
*params
)
1289 struct ieee80211_supported_band
*sband
;
1290 struct ieee80211_sub_if_data
*sdata
= sta
->sdata
;
1293 sband
= ieee80211_get_sband(sdata
);
1297 mask
= params
->sta_flags_mask
;
1298 set
= params
->sta_flags_set
;
1300 if (ieee80211_vif_is_mesh(&sdata
->vif
)) {
1302 * In mesh mode, ASSOCIATED isn't part of the nl80211
1303 * API but must follow AUTHENTICATED for driver state.
1305 if (mask
& BIT(NL80211_STA_FLAG_AUTHENTICATED
))
1306 mask
|= BIT(NL80211_STA_FLAG_ASSOCIATED
);
1307 if (set
& BIT(NL80211_STA_FLAG_AUTHENTICATED
))
1308 set
|= BIT(NL80211_STA_FLAG_ASSOCIATED
);
1309 } else if (test_sta_flag(sta
, WLAN_STA_TDLS_PEER
)) {
1311 * TDLS -- everything follows authorized, but
1312 * only becoming authorized is possible, not
1315 if (set
& BIT(NL80211_STA_FLAG_AUTHORIZED
)) {
1316 set
|= BIT(NL80211_STA_FLAG_AUTHENTICATED
) |
1317 BIT(NL80211_STA_FLAG_ASSOCIATED
);
1318 mask
|= BIT(NL80211_STA_FLAG_AUTHENTICATED
) |
1319 BIT(NL80211_STA_FLAG_ASSOCIATED
);
1323 if (mask
& BIT(NL80211_STA_FLAG_WME
) &&
1324 local
->hw
.queues
>= IEEE80211_NUM_ACS
)
1325 sta
->sta
.wme
= set
& BIT(NL80211_STA_FLAG_WME
);
1327 /* auth flags will be set later for TDLS,
1328 * and for unassociated stations that move to assocaited */
1329 if (!test_sta_flag(sta
, WLAN_STA_TDLS_PEER
) &&
1330 !((mask
& BIT(NL80211_STA_FLAG_ASSOCIATED
)) &&
1331 (set
& BIT(NL80211_STA_FLAG_ASSOCIATED
)))) {
1332 ret
= sta_apply_auth_flags(local
, sta
, mask
, set
);
1337 if (mask
& BIT(NL80211_STA_FLAG_SHORT_PREAMBLE
)) {
1338 if (set
& BIT(NL80211_STA_FLAG_SHORT_PREAMBLE
))
1339 set_sta_flag(sta
, WLAN_STA_SHORT_PREAMBLE
);
1341 clear_sta_flag(sta
, WLAN_STA_SHORT_PREAMBLE
);
1344 if (mask
& BIT(NL80211_STA_FLAG_MFP
)) {
1345 sta
->sta
.mfp
= !!(set
& BIT(NL80211_STA_FLAG_MFP
));
1346 if (set
& BIT(NL80211_STA_FLAG_MFP
))
1347 set_sta_flag(sta
, WLAN_STA_MFP
);
1349 clear_sta_flag(sta
, WLAN_STA_MFP
);
1352 if (mask
& BIT(NL80211_STA_FLAG_TDLS_PEER
)) {
1353 if (set
& BIT(NL80211_STA_FLAG_TDLS_PEER
))
1354 set_sta_flag(sta
, WLAN_STA_TDLS_PEER
);
1356 clear_sta_flag(sta
, WLAN_STA_TDLS_PEER
);
1359 /* mark TDLS channel switch support, if the AP allows it */
1360 if (test_sta_flag(sta
, WLAN_STA_TDLS_PEER
) &&
1361 !sdata
->u
.mgd
.tdls_chan_switch_prohibited
&&
1362 params
->ext_capab_len
>= 4 &&
1363 params
->ext_capab
[3] & WLAN_EXT_CAPA4_TDLS_CHAN_SWITCH
)
1364 set_sta_flag(sta
, WLAN_STA_TDLS_CHAN_SWITCH
);
1366 if (test_sta_flag(sta
, WLAN_STA_TDLS_PEER
) &&
1367 !sdata
->u
.mgd
.tdls_wider_bw_prohibited
&&
1368 ieee80211_hw_check(&local
->hw
, TDLS_WIDER_BW
) &&
1369 params
->ext_capab_len
>= 8 &&
1370 params
->ext_capab
[7] & WLAN_EXT_CAPA8_TDLS_WIDE_BW_ENABLED
)
1371 set_sta_flag(sta
, WLAN_STA_TDLS_WIDER_BW
);
1373 if (params
->sta_modify_mask
& STATION_PARAM_APPLY_UAPSD
) {
1374 sta
->sta
.uapsd_queues
= params
->uapsd_queues
;
1375 sta
->sta
.max_sp
= params
->max_sp
;
1378 /* The sender might not have sent the last bit, consider it to be 0 */
1379 if (params
->ext_capab_len
>= 8) {
1380 u8 val
= (params
->ext_capab
[7] &
1381 WLAN_EXT_CAPA8_MAX_MSDU_IN_AMSDU_LSB
) >> 7;
1383 /* we did get all the bits, take the MSB as well */
1384 if (params
->ext_capab_len
>= 9) {
1385 u8 val_msb
= params
->ext_capab
[8] &
1386 WLAN_EXT_CAPA9_MAX_MSDU_IN_AMSDU_MSB
;
1393 sta
->sta
.max_amsdu_subframes
= 32;
1396 sta
->sta
.max_amsdu_subframes
= 16;
1399 sta
->sta
.max_amsdu_subframes
= 8;
1402 sta
->sta
.max_amsdu_subframes
= 0;
1407 * cfg80211 validates this (1-2007) and allows setting the AID
1408 * only when creating a new station entry
1411 sta
->sta
.aid
= params
->aid
;
1414 * Some of the following updates would be racy if called on an
1415 * existing station, via ieee80211_change_station(). However,
1416 * all such changes are rejected by cfg80211 except for updates
1417 * changing the supported rates on an existing but not yet used
1421 if (params
->listen_interval
>= 0)
1422 sta
->listen_interval
= params
->listen_interval
;
1424 if (params
->supported_rates
) {
1425 ieee80211_parse_bitrates(&sdata
->vif
.bss_conf
.chandef
,
1426 sband
, params
->supported_rates
,
1427 params
->supported_rates_len
,
1428 &sta
->sta
.supp_rates
[sband
->band
]);
1431 if (params
->ht_capa
)
1432 ieee80211_ht_cap_ie_to_sta_ht_cap(sdata
, sband
,
1433 params
->ht_capa
, sta
);
1435 /* VHT can override some HT caps such as the A-MSDU max length */
1436 if (params
->vht_capa
)
1437 ieee80211_vht_cap_ie_to_sta_vht_cap(sdata
, sband
,
1438 params
->vht_capa
, sta
);
1440 if (params
->he_capa
)
1441 ieee80211_he_cap_ie_to_sta_he_cap(sdata
, sband
,
1442 (void *)params
->he_capa
,
1443 params
->he_capa_len
, sta
);
1445 if (params
->opmode_notif_used
) {
1446 /* returned value is only needed for rc update, but the
1447 * rc isn't initialized here yet, so ignore it
1449 __ieee80211_vht_handle_opmode(sdata
, sta
, params
->opmode_notif
,
1453 if (params
->support_p2p_ps
>= 0)
1454 sta
->sta
.support_p2p_ps
= params
->support_p2p_ps
;
1456 if (ieee80211_vif_is_mesh(&sdata
->vif
))
1457 sta_apply_mesh_params(local
, sta
, params
);
1459 if (params
->airtime_weight
)
1460 sta
->airtime_weight
= params
->airtime_weight
;
1462 /* set the STA state after all sta info from usermode has been set */
1463 if (test_sta_flag(sta
, WLAN_STA_TDLS_PEER
) ||
1464 set
& BIT(NL80211_STA_FLAG_ASSOCIATED
)) {
1465 ret
= sta_apply_auth_flags(local
, sta
, mask
, set
);
1473 static int ieee80211_add_station(struct wiphy
*wiphy
, struct net_device
*dev
,
1475 struct station_parameters
*params
)
1477 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
1478 struct sta_info
*sta
;
1479 struct ieee80211_sub_if_data
*sdata
;
1484 sdata
= IEEE80211_DEV_TO_SUB_IF(params
->vlan
);
1486 if (sdata
->vif
.type
!= NL80211_IFTYPE_AP_VLAN
&&
1487 sdata
->vif
.type
!= NL80211_IFTYPE_AP
)
1490 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1492 if (ether_addr_equal(mac
, sdata
->vif
.addr
))
1495 if (is_multicast_ether_addr(mac
))
1498 sta
= sta_info_alloc(sdata
, mac
, GFP_KERNEL
);
1502 if (params
->sta_flags_set
& BIT(NL80211_STA_FLAG_TDLS_PEER
))
1503 sta
->sta
.tdls
= true;
1505 if (sta
->sta
.tdls
&& sdata
->vif
.type
== NL80211_IFTYPE_STATION
&&
1506 !sdata
->u
.mgd
.associated
)
1509 err
= sta_apply_parameters(local
, sta
, params
);
1511 sta_info_free(local
, sta
);
1516 * for TDLS and for unassociated station, rate control should be
1517 * initialized only when rates are known and station is marked
1518 * authorized/associated
1520 if (!test_sta_flag(sta
, WLAN_STA_TDLS_PEER
) &&
1521 test_sta_flag(sta
, WLAN_STA_ASSOC
))
1522 rate_control_rate_init(sta
);
1524 layer2_update
= sdata
->vif
.type
== NL80211_IFTYPE_AP_VLAN
||
1525 sdata
->vif
.type
== NL80211_IFTYPE_AP
;
1527 err
= sta_info_insert_rcu(sta
);
1534 cfg80211_send_layer2_update(sta
->sdata
->dev
, sta
->sta
.addr
);
1541 static int ieee80211_del_station(struct wiphy
*wiphy
, struct net_device
*dev
,
1542 struct station_del_parameters
*params
)
1544 struct ieee80211_sub_if_data
*sdata
;
1546 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1549 return sta_info_destroy_addr_bss(sdata
, params
->mac
);
1551 sta_info_flush(sdata
);
1555 static int ieee80211_change_station(struct wiphy
*wiphy
,
1556 struct net_device
*dev
, const u8
*mac
,
1557 struct station_parameters
*params
)
1559 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1560 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
1561 struct sta_info
*sta
;
1562 struct ieee80211_sub_if_data
*vlansdata
;
1563 enum cfg80211_station_type statype
;
1566 mutex_lock(&local
->sta_mtx
);
1568 sta
= sta_info_get_bss(sdata
, mac
);
1574 switch (sdata
->vif
.type
) {
1575 case NL80211_IFTYPE_MESH_POINT
:
1576 if (sdata
->u
.mesh
.user_mpm
)
1577 statype
= CFG80211_STA_MESH_PEER_USER
;
1579 statype
= CFG80211_STA_MESH_PEER_KERNEL
;
1581 case NL80211_IFTYPE_ADHOC
:
1582 statype
= CFG80211_STA_IBSS
;
1584 case NL80211_IFTYPE_STATION
:
1585 if (!test_sta_flag(sta
, WLAN_STA_TDLS_PEER
)) {
1586 statype
= CFG80211_STA_AP_STA
;
1589 if (test_sta_flag(sta
, WLAN_STA_AUTHORIZED
))
1590 statype
= CFG80211_STA_TDLS_PEER_ACTIVE
;
1592 statype
= CFG80211_STA_TDLS_PEER_SETUP
;
1594 case NL80211_IFTYPE_AP
:
1595 case NL80211_IFTYPE_AP_VLAN
:
1596 if (test_sta_flag(sta
, WLAN_STA_ASSOC
))
1597 statype
= CFG80211_STA_AP_CLIENT
;
1599 statype
= CFG80211_STA_AP_CLIENT_UNASSOC
;
1606 err
= cfg80211_check_station_change(wiphy
, params
, statype
);
1610 if (params
->vlan
&& params
->vlan
!= sta
->sdata
->dev
) {
1611 vlansdata
= IEEE80211_DEV_TO_SUB_IF(params
->vlan
);
1613 if (params
->vlan
->ieee80211_ptr
->use_4addr
) {
1614 if (vlansdata
->u
.vlan
.sta
) {
1619 rcu_assign_pointer(vlansdata
->u
.vlan
.sta
, sta
);
1620 __ieee80211_check_fast_rx_iface(vlansdata
);
1623 if (sta
->sdata
->vif
.type
== NL80211_IFTYPE_AP_VLAN
&&
1624 sta
->sdata
->u
.vlan
.sta
)
1625 RCU_INIT_POINTER(sta
->sdata
->u
.vlan
.sta
, NULL
);
1627 if (test_sta_flag(sta
, WLAN_STA_AUTHORIZED
))
1628 ieee80211_vif_dec_num_mcast(sta
->sdata
);
1630 sta
->sdata
= vlansdata
;
1631 ieee80211_check_fast_xmit(sta
);
1633 if (test_sta_flag(sta
, WLAN_STA_AUTHORIZED
))
1634 ieee80211_vif_inc_num_mcast(sta
->sdata
);
1636 cfg80211_send_layer2_update(sta
->sdata
->dev
, sta
->sta
.addr
);
1639 err
= sta_apply_parameters(local
, sta
, params
);
1643 mutex_unlock(&local
->sta_mtx
);
1645 if ((sdata
->vif
.type
== NL80211_IFTYPE_AP
||
1646 sdata
->vif
.type
== NL80211_IFTYPE_AP_VLAN
) &&
1647 sta
->known_smps_mode
!= sta
->sdata
->bss
->req_smps
&&
1648 test_sta_flag(sta
, WLAN_STA_AUTHORIZED
) &&
1649 sta_info_tx_streams(sta
) != 1) {
1651 "%pM just authorized and MIMO capable - update SMPS\n",
1653 ieee80211_send_smps_action(sta
->sdata
,
1654 sta
->sdata
->bss
->req_smps
,
1656 sta
->sdata
->vif
.bss_conf
.bssid
);
1659 if (sdata
->vif
.type
== NL80211_IFTYPE_STATION
&&
1660 params
->sta_flags_mask
& BIT(NL80211_STA_FLAG_AUTHORIZED
)) {
1661 ieee80211_recalc_ps(local
);
1662 ieee80211_recalc_ps_vif(sdata
);
1667 mutex_unlock(&local
->sta_mtx
);
1671 #ifdef CONFIG_MAC80211_MESH
1672 static int ieee80211_add_mpath(struct wiphy
*wiphy
, struct net_device
*dev
,
1673 const u8
*dst
, const u8
*next_hop
)
1675 struct ieee80211_sub_if_data
*sdata
;
1676 struct mesh_path
*mpath
;
1677 struct sta_info
*sta
;
1679 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1682 sta
= sta_info_get(sdata
, next_hop
);
1688 mpath
= mesh_path_add(sdata
, dst
);
1689 if (IS_ERR(mpath
)) {
1691 return PTR_ERR(mpath
);
1694 mesh_path_fix_nexthop(mpath
, sta
);
1700 static int ieee80211_del_mpath(struct wiphy
*wiphy
, struct net_device
*dev
,
1703 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1706 return mesh_path_del(sdata
, dst
);
1708 mesh_path_flush_by_iface(sdata
);
1712 static int ieee80211_change_mpath(struct wiphy
*wiphy
, struct net_device
*dev
,
1713 const u8
*dst
, const u8
*next_hop
)
1715 struct ieee80211_sub_if_data
*sdata
;
1716 struct mesh_path
*mpath
;
1717 struct sta_info
*sta
;
1719 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1723 sta
= sta_info_get(sdata
, next_hop
);
1729 mpath
= mesh_path_lookup(sdata
, dst
);
1735 mesh_path_fix_nexthop(mpath
, sta
);
1741 static void mpath_set_pinfo(struct mesh_path
*mpath
, u8
*next_hop
,
1742 struct mpath_info
*pinfo
)
1744 struct sta_info
*next_hop_sta
= rcu_dereference(mpath
->next_hop
);
1747 memcpy(next_hop
, next_hop_sta
->sta
.addr
, ETH_ALEN
);
1749 eth_zero_addr(next_hop
);
1751 memset(pinfo
, 0, sizeof(*pinfo
));
1753 pinfo
->generation
= mpath
->sdata
->u
.mesh
.mesh_paths_generation
;
1755 pinfo
->filled
= MPATH_INFO_FRAME_QLEN
|
1758 MPATH_INFO_EXPTIME
|
1759 MPATH_INFO_DISCOVERY_TIMEOUT
|
1760 MPATH_INFO_DISCOVERY_RETRIES
|
1762 MPATH_INFO_HOP_COUNT
|
1763 MPATH_INFO_PATH_CHANGE
;
1765 pinfo
->frame_qlen
= mpath
->frame_queue
.qlen
;
1766 pinfo
->sn
= mpath
->sn
;
1767 pinfo
->metric
= mpath
->metric
;
1768 if (time_before(jiffies
, mpath
->exp_time
))
1769 pinfo
->exptime
= jiffies_to_msecs(mpath
->exp_time
- jiffies
);
1770 pinfo
->discovery_timeout
=
1771 jiffies_to_msecs(mpath
->discovery_timeout
);
1772 pinfo
->discovery_retries
= mpath
->discovery_retries
;
1773 if (mpath
->flags
& MESH_PATH_ACTIVE
)
1774 pinfo
->flags
|= NL80211_MPATH_FLAG_ACTIVE
;
1775 if (mpath
->flags
& MESH_PATH_RESOLVING
)
1776 pinfo
->flags
|= NL80211_MPATH_FLAG_RESOLVING
;
1777 if (mpath
->flags
& MESH_PATH_SN_VALID
)
1778 pinfo
->flags
|= NL80211_MPATH_FLAG_SN_VALID
;
1779 if (mpath
->flags
& MESH_PATH_FIXED
)
1780 pinfo
->flags
|= NL80211_MPATH_FLAG_FIXED
;
1781 if (mpath
->flags
& MESH_PATH_RESOLVED
)
1782 pinfo
->flags
|= NL80211_MPATH_FLAG_RESOLVED
;
1783 pinfo
->hop_count
= mpath
->hop_count
;
1784 pinfo
->path_change_count
= mpath
->path_change_count
;
1787 static int ieee80211_get_mpath(struct wiphy
*wiphy
, struct net_device
*dev
,
1788 u8
*dst
, u8
*next_hop
, struct mpath_info
*pinfo
)
1791 struct ieee80211_sub_if_data
*sdata
;
1792 struct mesh_path
*mpath
;
1794 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1797 mpath
= mesh_path_lookup(sdata
, dst
);
1802 memcpy(dst
, mpath
->dst
, ETH_ALEN
);
1803 mpath_set_pinfo(mpath
, next_hop
, pinfo
);
1808 static int ieee80211_dump_mpath(struct wiphy
*wiphy
, struct net_device
*dev
,
1809 int idx
, u8
*dst
, u8
*next_hop
,
1810 struct mpath_info
*pinfo
)
1812 struct ieee80211_sub_if_data
*sdata
;
1813 struct mesh_path
*mpath
;
1815 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1818 mpath
= mesh_path_lookup_by_idx(sdata
, idx
);
1823 memcpy(dst
, mpath
->dst
, ETH_ALEN
);
1824 mpath_set_pinfo(mpath
, next_hop
, pinfo
);
1829 static void mpp_set_pinfo(struct mesh_path
*mpath
, u8
*mpp
,
1830 struct mpath_info
*pinfo
)
1832 memset(pinfo
, 0, sizeof(*pinfo
));
1833 memcpy(mpp
, mpath
->mpp
, ETH_ALEN
);
1835 pinfo
->generation
= mpath
->sdata
->u
.mesh
.mpp_paths_generation
;
1838 static int ieee80211_get_mpp(struct wiphy
*wiphy
, struct net_device
*dev
,
1839 u8
*dst
, u8
*mpp
, struct mpath_info
*pinfo
)
1842 struct ieee80211_sub_if_data
*sdata
;
1843 struct mesh_path
*mpath
;
1845 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1848 mpath
= mpp_path_lookup(sdata
, dst
);
1853 memcpy(dst
, mpath
->dst
, ETH_ALEN
);
1854 mpp_set_pinfo(mpath
, mpp
, pinfo
);
1859 static int ieee80211_dump_mpp(struct wiphy
*wiphy
, struct net_device
*dev
,
1860 int idx
, u8
*dst
, u8
*mpp
,
1861 struct mpath_info
*pinfo
)
1863 struct ieee80211_sub_if_data
*sdata
;
1864 struct mesh_path
*mpath
;
1866 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1869 mpath
= mpp_path_lookup_by_idx(sdata
, idx
);
1874 memcpy(dst
, mpath
->dst
, ETH_ALEN
);
1875 mpp_set_pinfo(mpath
, mpp
, pinfo
);
1880 static int ieee80211_get_mesh_config(struct wiphy
*wiphy
,
1881 struct net_device
*dev
,
1882 struct mesh_config
*conf
)
1884 struct ieee80211_sub_if_data
*sdata
;
1885 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1887 memcpy(conf
, &(sdata
->u
.mesh
.mshcfg
), sizeof(struct mesh_config
));
1891 static inline bool _chg_mesh_attr(enum nl80211_meshconf_params parm
, u32 mask
)
1893 return (mask
>> (parm
-1)) & 0x1;
1896 static int copy_mesh_setup(struct ieee80211_if_mesh
*ifmsh
,
1897 const struct mesh_setup
*setup
)
1901 struct ieee80211_sub_if_data
*sdata
= container_of(ifmsh
,
1902 struct ieee80211_sub_if_data
, u
.mesh
);
1904 /* allocate information elements */
1908 if (setup
->ie_len
) {
1909 new_ie
= kmemdup(setup
->ie
, setup
->ie_len
,
1914 ifmsh
->ie_len
= setup
->ie_len
;
1918 /* now copy the rest of the setup parameters */
1919 ifmsh
->mesh_id_len
= setup
->mesh_id_len
;
1920 memcpy(ifmsh
->mesh_id
, setup
->mesh_id
, ifmsh
->mesh_id_len
);
1921 ifmsh
->mesh_sp_id
= setup
->sync_method
;
1922 ifmsh
->mesh_pp_id
= setup
->path_sel_proto
;
1923 ifmsh
->mesh_pm_id
= setup
->path_metric
;
1924 ifmsh
->user_mpm
= setup
->user_mpm
;
1925 ifmsh
->mesh_auth_id
= setup
->auth_id
;
1926 ifmsh
->security
= IEEE80211_MESH_SEC_NONE
;
1927 ifmsh
->userspace_handles_dfs
= setup
->userspace_handles_dfs
;
1928 if (setup
->is_authenticated
)
1929 ifmsh
->security
|= IEEE80211_MESH_SEC_AUTHED
;
1930 if (setup
->is_secure
)
1931 ifmsh
->security
|= IEEE80211_MESH_SEC_SECURED
;
1933 /* mcast rate setting in Mesh Node */
1934 memcpy(sdata
->vif
.bss_conf
.mcast_rate
, setup
->mcast_rate
,
1935 sizeof(setup
->mcast_rate
));
1936 sdata
->vif
.bss_conf
.basic_rates
= setup
->basic_rates
;
1938 sdata
->vif
.bss_conf
.beacon_int
= setup
->beacon_interval
;
1939 sdata
->vif
.bss_conf
.dtim_period
= setup
->dtim_period
;
1944 static int ieee80211_update_mesh_config(struct wiphy
*wiphy
,
1945 struct net_device
*dev
, u32 mask
,
1946 const struct mesh_config
*nconf
)
1948 struct mesh_config
*conf
;
1949 struct ieee80211_sub_if_data
*sdata
;
1950 struct ieee80211_if_mesh
*ifmsh
;
1952 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1953 ifmsh
= &sdata
->u
.mesh
;
1955 /* Set the config options which we are interested in setting */
1956 conf
= &(sdata
->u
.mesh
.mshcfg
);
1957 if (_chg_mesh_attr(NL80211_MESHCONF_RETRY_TIMEOUT
, mask
))
1958 conf
->dot11MeshRetryTimeout
= nconf
->dot11MeshRetryTimeout
;
1959 if (_chg_mesh_attr(NL80211_MESHCONF_CONFIRM_TIMEOUT
, mask
))
1960 conf
->dot11MeshConfirmTimeout
= nconf
->dot11MeshConfirmTimeout
;
1961 if (_chg_mesh_attr(NL80211_MESHCONF_HOLDING_TIMEOUT
, mask
))
1962 conf
->dot11MeshHoldingTimeout
= nconf
->dot11MeshHoldingTimeout
;
1963 if (_chg_mesh_attr(NL80211_MESHCONF_MAX_PEER_LINKS
, mask
))
1964 conf
->dot11MeshMaxPeerLinks
= nconf
->dot11MeshMaxPeerLinks
;
1965 if (_chg_mesh_attr(NL80211_MESHCONF_MAX_RETRIES
, mask
))
1966 conf
->dot11MeshMaxRetries
= nconf
->dot11MeshMaxRetries
;
1967 if (_chg_mesh_attr(NL80211_MESHCONF_TTL
, mask
))
1968 conf
->dot11MeshTTL
= nconf
->dot11MeshTTL
;
1969 if (_chg_mesh_attr(NL80211_MESHCONF_ELEMENT_TTL
, mask
))
1970 conf
->element_ttl
= nconf
->element_ttl
;
1971 if (_chg_mesh_attr(NL80211_MESHCONF_AUTO_OPEN_PLINKS
, mask
)) {
1972 if (ifmsh
->user_mpm
)
1974 conf
->auto_open_plinks
= nconf
->auto_open_plinks
;
1976 if (_chg_mesh_attr(NL80211_MESHCONF_SYNC_OFFSET_MAX_NEIGHBOR
, mask
))
1977 conf
->dot11MeshNbrOffsetMaxNeighbor
=
1978 nconf
->dot11MeshNbrOffsetMaxNeighbor
;
1979 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES
, mask
))
1980 conf
->dot11MeshHWMPmaxPREQretries
=
1981 nconf
->dot11MeshHWMPmaxPREQretries
;
1982 if (_chg_mesh_attr(NL80211_MESHCONF_PATH_REFRESH_TIME
, mask
))
1983 conf
->path_refresh_time
= nconf
->path_refresh_time
;
1984 if (_chg_mesh_attr(NL80211_MESHCONF_MIN_DISCOVERY_TIMEOUT
, mask
))
1985 conf
->min_discovery_timeout
= nconf
->min_discovery_timeout
;
1986 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_ACTIVE_PATH_TIMEOUT
, mask
))
1987 conf
->dot11MeshHWMPactivePathTimeout
=
1988 nconf
->dot11MeshHWMPactivePathTimeout
;
1989 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_PREQ_MIN_INTERVAL
, mask
))
1990 conf
->dot11MeshHWMPpreqMinInterval
=
1991 nconf
->dot11MeshHWMPpreqMinInterval
;
1992 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_PERR_MIN_INTERVAL
, mask
))
1993 conf
->dot11MeshHWMPperrMinInterval
=
1994 nconf
->dot11MeshHWMPperrMinInterval
;
1995 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME
,
1997 conf
->dot11MeshHWMPnetDiameterTraversalTime
=
1998 nconf
->dot11MeshHWMPnetDiameterTraversalTime
;
1999 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_ROOTMODE
, mask
)) {
2000 conf
->dot11MeshHWMPRootMode
= nconf
->dot11MeshHWMPRootMode
;
2001 ieee80211_mesh_root_setup(ifmsh
);
2003 if (_chg_mesh_attr(NL80211_MESHCONF_GATE_ANNOUNCEMENTS
, mask
)) {
2004 /* our current gate announcement implementation rides on root
2005 * announcements, so require this ifmsh to also be a root node
2007 if (nconf
->dot11MeshGateAnnouncementProtocol
&&
2008 !(conf
->dot11MeshHWMPRootMode
> IEEE80211_ROOTMODE_ROOT
)) {
2009 conf
->dot11MeshHWMPRootMode
= IEEE80211_PROACTIVE_RANN
;
2010 ieee80211_mesh_root_setup(ifmsh
);
2012 conf
->dot11MeshGateAnnouncementProtocol
=
2013 nconf
->dot11MeshGateAnnouncementProtocol
;
2015 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_RANN_INTERVAL
, mask
))
2016 conf
->dot11MeshHWMPRannInterval
=
2017 nconf
->dot11MeshHWMPRannInterval
;
2018 if (_chg_mesh_attr(NL80211_MESHCONF_FORWARDING
, mask
))
2019 conf
->dot11MeshForwarding
= nconf
->dot11MeshForwarding
;
2020 if (_chg_mesh_attr(NL80211_MESHCONF_RSSI_THRESHOLD
, mask
)) {
2021 /* our RSSI threshold implementation is supported only for
2022 * devices that report signal in dBm.
2024 if (!ieee80211_hw_check(&sdata
->local
->hw
, SIGNAL_DBM
))
2026 conf
->rssi_threshold
= nconf
->rssi_threshold
;
2028 if (_chg_mesh_attr(NL80211_MESHCONF_HT_OPMODE
, mask
)) {
2029 conf
->ht_opmode
= nconf
->ht_opmode
;
2030 sdata
->vif
.bss_conf
.ht_operation_mode
= nconf
->ht_opmode
;
2031 ieee80211_bss_info_change_notify(sdata
, BSS_CHANGED_HT
);
2033 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_PATH_TO_ROOT_TIMEOUT
, mask
))
2034 conf
->dot11MeshHWMPactivePathToRootTimeout
=
2035 nconf
->dot11MeshHWMPactivePathToRootTimeout
;
2036 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_ROOT_INTERVAL
, mask
))
2037 conf
->dot11MeshHWMProotInterval
=
2038 nconf
->dot11MeshHWMProotInterval
;
2039 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_CONFIRMATION_INTERVAL
, mask
))
2040 conf
->dot11MeshHWMPconfirmationInterval
=
2041 nconf
->dot11MeshHWMPconfirmationInterval
;
2042 if (_chg_mesh_attr(NL80211_MESHCONF_POWER_MODE
, mask
)) {
2043 conf
->power_mode
= nconf
->power_mode
;
2044 ieee80211_mps_local_status_update(sdata
);
2046 if (_chg_mesh_attr(NL80211_MESHCONF_AWAKE_WINDOW
, mask
))
2047 conf
->dot11MeshAwakeWindowDuration
=
2048 nconf
->dot11MeshAwakeWindowDuration
;
2049 if (_chg_mesh_attr(NL80211_MESHCONF_PLINK_TIMEOUT
, mask
))
2050 conf
->plink_timeout
= nconf
->plink_timeout
;
2051 if (_chg_mesh_attr(NL80211_MESHCONF_CONNECTED_TO_GATE
, mask
))
2052 conf
->dot11MeshConnectedToMeshGate
=
2053 nconf
->dot11MeshConnectedToMeshGate
;
2054 ieee80211_mbss_info_change_notify(sdata
, BSS_CHANGED_BEACON
);
2058 static int ieee80211_join_mesh(struct wiphy
*wiphy
, struct net_device
*dev
,
2059 const struct mesh_config
*conf
,
2060 const struct mesh_setup
*setup
)
2062 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
2063 struct ieee80211_if_mesh
*ifmsh
= &sdata
->u
.mesh
;
2066 memcpy(&ifmsh
->mshcfg
, conf
, sizeof(struct mesh_config
));
2067 err
= copy_mesh_setup(ifmsh
, setup
);
2071 sdata
->control_port_over_nl80211
= setup
->control_port_over_nl80211
;
2073 /* can mesh use other SMPS modes? */
2074 sdata
->smps_mode
= IEEE80211_SMPS_OFF
;
2075 sdata
->needed_rx_chains
= sdata
->local
->rx_chains
;
2077 mutex_lock(&sdata
->local
->mtx
);
2078 err
= ieee80211_vif_use_channel(sdata
, &setup
->chandef
,
2079 IEEE80211_CHANCTX_SHARED
);
2080 mutex_unlock(&sdata
->local
->mtx
);
2084 return ieee80211_start_mesh(sdata
);
2087 static int ieee80211_leave_mesh(struct wiphy
*wiphy
, struct net_device
*dev
)
2089 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
2091 ieee80211_stop_mesh(sdata
);
2092 mutex_lock(&sdata
->local
->mtx
);
2093 ieee80211_vif_release_channel(sdata
);
2094 mutex_unlock(&sdata
->local
->mtx
);
2100 static int ieee80211_change_bss(struct wiphy
*wiphy
,
2101 struct net_device
*dev
,
2102 struct bss_parameters
*params
)
2104 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
2105 struct ieee80211_supported_band
*sband
;
2108 if (!sdata_dereference(sdata
->u
.ap
.beacon
, sdata
))
2111 sband
= ieee80211_get_sband(sdata
);
2115 if (params
->use_cts_prot
>= 0) {
2116 sdata
->vif
.bss_conf
.use_cts_prot
= params
->use_cts_prot
;
2117 changed
|= BSS_CHANGED_ERP_CTS_PROT
;
2119 if (params
->use_short_preamble
>= 0) {
2120 sdata
->vif
.bss_conf
.use_short_preamble
=
2121 params
->use_short_preamble
;
2122 changed
|= BSS_CHANGED_ERP_PREAMBLE
;
2125 if (!sdata
->vif
.bss_conf
.use_short_slot
&&
2126 sband
->band
== NL80211_BAND_5GHZ
) {
2127 sdata
->vif
.bss_conf
.use_short_slot
= true;
2128 changed
|= BSS_CHANGED_ERP_SLOT
;
2131 if (params
->use_short_slot_time
>= 0) {
2132 sdata
->vif
.bss_conf
.use_short_slot
=
2133 params
->use_short_slot_time
;
2134 changed
|= BSS_CHANGED_ERP_SLOT
;
2137 if (params
->basic_rates
) {
2138 ieee80211_parse_bitrates(&sdata
->vif
.bss_conf
.chandef
,
2139 wiphy
->bands
[sband
->band
],
2140 params
->basic_rates
,
2141 params
->basic_rates_len
,
2142 &sdata
->vif
.bss_conf
.basic_rates
);
2143 changed
|= BSS_CHANGED_BASIC_RATES
;
2144 ieee80211_check_rate_mask(sdata
);
2147 if (params
->ap_isolate
>= 0) {
2148 if (params
->ap_isolate
)
2149 sdata
->flags
|= IEEE80211_SDATA_DONT_BRIDGE_PACKETS
;
2151 sdata
->flags
&= ~IEEE80211_SDATA_DONT_BRIDGE_PACKETS
;
2152 ieee80211_check_fast_rx_iface(sdata
);
2155 if (params
->ht_opmode
>= 0) {
2156 sdata
->vif
.bss_conf
.ht_operation_mode
=
2157 (u16
) params
->ht_opmode
;
2158 changed
|= BSS_CHANGED_HT
;
2161 if (params
->p2p_ctwindow
>= 0) {
2162 sdata
->vif
.bss_conf
.p2p_noa_attr
.oppps_ctwindow
&=
2163 ~IEEE80211_P2P_OPPPS_CTWINDOW_MASK
;
2164 sdata
->vif
.bss_conf
.p2p_noa_attr
.oppps_ctwindow
|=
2165 params
->p2p_ctwindow
& IEEE80211_P2P_OPPPS_CTWINDOW_MASK
;
2166 changed
|= BSS_CHANGED_P2P_PS
;
2169 if (params
->p2p_opp_ps
> 0) {
2170 sdata
->vif
.bss_conf
.p2p_noa_attr
.oppps_ctwindow
|=
2171 IEEE80211_P2P_OPPPS_ENABLE_BIT
;
2172 changed
|= BSS_CHANGED_P2P_PS
;
2173 } else if (params
->p2p_opp_ps
== 0) {
2174 sdata
->vif
.bss_conf
.p2p_noa_attr
.oppps_ctwindow
&=
2175 ~IEEE80211_P2P_OPPPS_ENABLE_BIT
;
2176 changed
|= BSS_CHANGED_P2P_PS
;
2179 ieee80211_bss_info_change_notify(sdata
, changed
);
2184 static int ieee80211_set_txq_params(struct wiphy
*wiphy
,
2185 struct net_device
*dev
,
2186 struct ieee80211_txq_params
*params
)
2188 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
2189 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
2190 struct ieee80211_tx_queue_params p
;
2192 if (!local
->ops
->conf_tx
)
2195 if (local
->hw
.queues
< IEEE80211_NUM_ACS
)
2198 memset(&p
, 0, sizeof(p
));
2199 p
.aifs
= params
->aifs
;
2200 p
.cw_max
= params
->cwmax
;
2201 p
.cw_min
= params
->cwmin
;
2202 p
.txop
= params
->txop
;
2205 * Setting tx queue params disables u-apsd because it's only
2206 * called in master mode.
2210 ieee80211_regulatory_limit_wmm_params(sdata
, &p
, params
->ac
);
2212 sdata
->tx_conf
[params
->ac
] = p
;
2213 if (drv_conf_tx(local
, sdata
, params
->ac
, &p
)) {
2214 wiphy_debug(local
->hw
.wiphy
,
2215 "failed to set TX queue parameters for AC %d\n",
2220 ieee80211_bss_info_change_notify(sdata
, BSS_CHANGED_QOS
);
2226 static int ieee80211_suspend(struct wiphy
*wiphy
,
2227 struct cfg80211_wowlan
*wowlan
)
2229 return __ieee80211_suspend(wiphy_priv(wiphy
), wowlan
);
2232 static int ieee80211_resume(struct wiphy
*wiphy
)
2234 return __ieee80211_resume(wiphy_priv(wiphy
));
2237 #define ieee80211_suspend NULL
2238 #define ieee80211_resume NULL
2241 static int ieee80211_scan(struct wiphy
*wiphy
,
2242 struct cfg80211_scan_request
*req
)
2244 struct ieee80211_sub_if_data
*sdata
;
2246 sdata
= IEEE80211_WDEV_TO_SUB_IF(req
->wdev
);
2248 switch (ieee80211_vif_type_p2p(&sdata
->vif
)) {
2249 case NL80211_IFTYPE_STATION
:
2250 case NL80211_IFTYPE_ADHOC
:
2251 case NL80211_IFTYPE_MESH_POINT
:
2252 case NL80211_IFTYPE_P2P_CLIENT
:
2253 case NL80211_IFTYPE_P2P_DEVICE
:
2255 case NL80211_IFTYPE_P2P_GO
:
2256 if (sdata
->local
->ops
->hw_scan
)
2259 * FIXME: implement NoA while scanning in software,
2260 * for now fall through to allow scanning only when
2261 * beaconing hasn't been configured yet
2264 case NL80211_IFTYPE_AP
:
2266 * If the scan has been forced (and the driver supports
2267 * forcing), don't care about being beaconing already.
2268 * This will create problems to the attached stations (e.g. all
2269 * the frames sent while scanning on other channel will be
2272 if (sdata
->u
.ap
.beacon
&&
2273 (!(wiphy
->features
& NL80211_FEATURE_AP_SCAN
) ||
2274 !(req
->flags
& NL80211_SCAN_FLAG_AP
)))
2277 case NL80211_IFTYPE_NAN
:
2282 return ieee80211_request_scan(sdata
, req
);
2285 static void ieee80211_abort_scan(struct wiphy
*wiphy
, struct wireless_dev
*wdev
)
2287 ieee80211_scan_cancel(wiphy_priv(wiphy
));
2291 ieee80211_sched_scan_start(struct wiphy
*wiphy
,
2292 struct net_device
*dev
,
2293 struct cfg80211_sched_scan_request
*req
)
2295 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
2297 if (!sdata
->local
->ops
->sched_scan_start
)
2300 return ieee80211_request_sched_scan_start(sdata
, req
);
2304 ieee80211_sched_scan_stop(struct wiphy
*wiphy
, struct net_device
*dev
,
2307 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
2309 if (!local
->ops
->sched_scan_stop
)
2312 return ieee80211_request_sched_scan_stop(local
);
2315 static int ieee80211_auth(struct wiphy
*wiphy
, struct net_device
*dev
,
2316 struct cfg80211_auth_request
*req
)
2318 return ieee80211_mgd_auth(IEEE80211_DEV_TO_SUB_IF(dev
), req
);
2321 static int ieee80211_assoc(struct wiphy
*wiphy
, struct net_device
*dev
,
2322 struct cfg80211_assoc_request
*req
)
2324 return ieee80211_mgd_assoc(IEEE80211_DEV_TO_SUB_IF(dev
), req
);
2327 static int ieee80211_deauth(struct wiphy
*wiphy
, struct net_device
*dev
,
2328 struct cfg80211_deauth_request
*req
)
2330 return ieee80211_mgd_deauth(IEEE80211_DEV_TO_SUB_IF(dev
), req
);
2333 static int ieee80211_disassoc(struct wiphy
*wiphy
, struct net_device
*dev
,
2334 struct cfg80211_disassoc_request
*req
)
2336 return ieee80211_mgd_disassoc(IEEE80211_DEV_TO_SUB_IF(dev
), req
);
2339 static int ieee80211_join_ibss(struct wiphy
*wiphy
, struct net_device
*dev
,
2340 struct cfg80211_ibss_params
*params
)
2342 return ieee80211_ibss_join(IEEE80211_DEV_TO_SUB_IF(dev
), params
);
2345 static int ieee80211_leave_ibss(struct wiphy
*wiphy
, struct net_device
*dev
)
2347 return ieee80211_ibss_leave(IEEE80211_DEV_TO_SUB_IF(dev
));
2350 static int ieee80211_join_ocb(struct wiphy
*wiphy
, struct net_device
*dev
,
2351 struct ocb_setup
*setup
)
2353 return ieee80211_ocb_join(IEEE80211_DEV_TO_SUB_IF(dev
), setup
);
2356 static int ieee80211_leave_ocb(struct wiphy
*wiphy
, struct net_device
*dev
)
2358 return ieee80211_ocb_leave(IEEE80211_DEV_TO_SUB_IF(dev
));
2361 static int ieee80211_set_mcast_rate(struct wiphy
*wiphy
, struct net_device
*dev
,
2362 int rate
[NUM_NL80211_BANDS
])
2364 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
2366 memcpy(sdata
->vif
.bss_conf
.mcast_rate
, rate
,
2367 sizeof(int) * NUM_NL80211_BANDS
);
2369 ieee80211_bss_info_change_notify(sdata
, BSS_CHANGED_MCAST_RATE
);
2374 static int ieee80211_set_wiphy_params(struct wiphy
*wiphy
, u32 changed
)
2376 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
2379 if (changed
& WIPHY_PARAM_FRAG_THRESHOLD
) {
2380 ieee80211_check_fast_xmit_all(local
);
2382 err
= drv_set_frag_threshold(local
, wiphy
->frag_threshold
);
2385 ieee80211_check_fast_xmit_all(local
);
2390 if ((changed
& WIPHY_PARAM_COVERAGE_CLASS
) ||
2391 (changed
& WIPHY_PARAM_DYN_ACK
)) {
2394 coverage_class
= changed
& WIPHY_PARAM_COVERAGE_CLASS
?
2395 wiphy
->coverage_class
: -1;
2396 err
= drv_set_coverage_class(local
, coverage_class
);
2402 if (changed
& WIPHY_PARAM_RTS_THRESHOLD
) {
2403 err
= drv_set_rts_threshold(local
, wiphy
->rts_threshold
);
2409 if (changed
& WIPHY_PARAM_RETRY_SHORT
) {
2410 if (wiphy
->retry_short
> IEEE80211_MAX_TX_RETRY
)
2412 local
->hw
.conf
.short_frame_max_tx_count
= wiphy
->retry_short
;
2414 if (changed
& WIPHY_PARAM_RETRY_LONG
) {
2415 if (wiphy
->retry_long
> IEEE80211_MAX_TX_RETRY
)
2417 local
->hw
.conf
.long_frame_max_tx_count
= wiphy
->retry_long
;
2420 (WIPHY_PARAM_RETRY_SHORT
| WIPHY_PARAM_RETRY_LONG
))
2421 ieee80211_hw_config(local
, IEEE80211_CONF_CHANGE_RETRY_LIMITS
);
2423 if (changed
& (WIPHY_PARAM_TXQ_LIMIT
|
2424 WIPHY_PARAM_TXQ_MEMORY_LIMIT
|
2425 WIPHY_PARAM_TXQ_QUANTUM
))
2426 ieee80211_txq_set_params(local
);
2431 static int ieee80211_set_tx_power(struct wiphy
*wiphy
,
2432 struct wireless_dev
*wdev
,
2433 enum nl80211_tx_power_setting type
, int mbm
)
2435 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
2436 struct ieee80211_sub_if_data
*sdata
;
2437 enum nl80211_tx_power_setting txp_type
= type
;
2438 bool update_txp_type
= false;
2439 bool has_monitor
= false;
2442 sdata
= IEEE80211_WDEV_TO_SUB_IF(wdev
);
2444 if (sdata
->vif
.type
== NL80211_IFTYPE_MONITOR
) {
2445 sdata
= rtnl_dereference(local
->monitor_sdata
);
2451 case NL80211_TX_POWER_AUTOMATIC
:
2452 sdata
->user_power_level
= IEEE80211_UNSET_POWER_LEVEL
;
2453 txp_type
= NL80211_TX_POWER_LIMITED
;
2455 case NL80211_TX_POWER_LIMITED
:
2456 case NL80211_TX_POWER_FIXED
:
2457 if (mbm
< 0 || (mbm
% 100))
2459 sdata
->user_power_level
= MBM_TO_DBM(mbm
);
2463 if (txp_type
!= sdata
->vif
.bss_conf
.txpower_type
) {
2464 update_txp_type
= true;
2465 sdata
->vif
.bss_conf
.txpower_type
= txp_type
;
2468 ieee80211_recalc_txpower(sdata
, update_txp_type
);
2474 case NL80211_TX_POWER_AUTOMATIC
:
2475 local
->user_power_level
= IEEE80211_UNSET_POWER_LEVEL
;
2476 txp_type
= NL80211_TX_POWER_LIMITED
;
2478 case NL80211_TX_POWER_LIMITED
:
2479 case NL80211_TX_POWER_FIXED
:
2480 if (mbm
< 0 || (mbm
% 100))
2482 local
->user_power_level
= MBM_TO_DBM(mbm
);
2486 mutex_lock(&local
->iflist_mtx
);
2487 list_for_each_entry(sdata
, &local
->interfaces
, list
) {
2488 if (sdata
->vif
.type
== NL80211_IFTYPE_MONITOR
) {
2492 sdata
->user_power_level
= local
->user_power_level
;
2493 if (txp_type
!= sdata
->vif
.bss_conf
.txpower_type
)
2494 update_txp_type
= true;
2495 sdata
->vif
.bss_conf
.txpower_type
= txp_type
;
2497 list_for_each_entry(sdata
, &local
->interfaces
, list
) {
2498 if (sdata
->vif
.type
== NL80211_IFTYPE_MONITOR
)
2500 ieee80211_recalc_txpower(sdata
, update_txp_type
);
2502 mutex_unlock(&local
->iflist_mtx
);
2505 sdata
= rtnl_dereference(local
->monitor_sdata
);
2507 sdata
->user_power_level
= local
->user_power_level
;
2508 if (txp_type
!= sdata
->vif
.bss_conf
.txpower_type
)
2509 update_txp_type
= true;
2510 sdata
->vif
.bss_conf
.txpower_type
= txp_type
;
2512 ieee80211_recalc_txpower(sdata
, update_txp_type
);
2519 static int ieee80211_get_tx_power(struct wiphy
*wiphy
,
2520 struct wireless_dev
*wdev
,
2523 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
2524 struct ieee80211_sub_if_data
*sdata
= IEEE80211_WDEV_TO_SUB_IF(wdev
);
2526 if (local
->ops
->get_txpower
)
2527 return drv_get_txpower(local
, sdata
, dbm
);
2529 if (!local
->use_chanctx
)
2530 *dbm
= local
->hw
.conf
.power_level
;
2532 *dbm
= sdata
->vif
.bss_conf
.txpower
;
2537 static int ieee80211_set_wds_peer(struct wiphy
*wiphy
, struct net_device
*dev
,
2540 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
2542 memcpy(&sdata
->u
.wds
.remote_addr
, addr
, ETH_ALEN
);
2547 static void ieee80211_rfkill_poll(struct wiphy
*wiphy
)
2549 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
2551 drv_rfkill_poll(local
);
2554 #ifdef CONFIG_NL80211_TESTMODE
2555 static int ieee80211_testmode_cmd(struct wiphy
*wiphy
,
2556 struct wireless_dev
*wdev
,
2557 void *data
, int len
)
2559 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
2560 struct ieee80211_vif
*vif
= NULL
;
2562 if (!local
->ops
->testmode_cmd
)
2566 struct ieee80211_sub_if_data
*sdata
;
2568 sdata
= IEEE80211_WDEV_TO_SUB_IF(wdev
);
2569 if (sdata
->flags
& IEEE80211_SDATA_IN_DRIVER
)
2573 return local
->ops
->testmode_cmd(&local
->hw
, vif
, data
, len
);
2576 static int ieee80211_testmode_dump(struct wiphy
*wiphy
,
2577 struct sk_buff
*skb
,
2578 struct netlink_callback
*cb
,
2579 void *data
, int len
)
2581 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
2583 if (!local
->ops
->testmode_dump
)
2586 return local
->ops
->testmode_dump(&local
->hw
, skb
, cb
, data
, len
);
2590 int __ieee80211_request_smps_ap(struct ieee80211_sub_if_data
*sdata
,
2591 enum ieee80211_smps_mode smps_mode
)
2593 struct sta_info
*sta
;
2594 enum ieee80211_smps_mode old_req
;
2596 if (WARN_ON_ONCE(sdata
->vif
.type
!= NL80211_IFTYPE_AP
))
2599 if (sdata
->vif
.bss_conf
.chandef
.width
== NL80211_CHAN_WIDTH_20_NOHT
)
2602 old_req
= sdata
->u
.ap
.req_smps
;
2603 sdata
->u
.ap
.req_smps
= smps_mode
;
2605 /* AUTOMATIC doesn't mean much for AP - don't allow it */
2606 if (old_req
== smps_mode
||
2607 smps_mode
== IEEE80211_SMPS_AUTOMATIC
)
2611 "SMPS %d requested in AP mode, sending Action frame to %d stations\n",
2612 smps_mode
, atomic_read(&sdata
->u
.ap
.num_mcast_sta
));
2614 mutex_lock(&sdata
->local
->sta_mtx
);
2615 list_for_each_entry(sta
, &sdata
->local
->sta_list
, list
) {
2617 * Only stations associated to our AP and
2620 if (sta
->sdata
->bss
!= &sdata
->u
.ap
)
2623 /* This station doesn't support MIMO - skip it */
2624 if (sta_info_tx_streams(sta
) == 1)
2628 * Don't wake up a STA just to send the action frame
2629 * unless we are getting more restrictive.
2631 if (test_sta_flag(sta
, WLAN_STA_PS_STA
) &&
2632 !ieee80211_smps_is_restrictive(sta
->known_smps_mode
,
2634 ht_dbg(sdata
, "Won't send SMPS to sleeping STA %pM\n",
2640 * If the STA is not authorized, wait until it gets
2641 * authorized and the action frame will be sent then.
2643 if (!test_sta_flag(sta
, WLAN_STA_AUTHORIZED
))
2646 ht_dbg(sdata
, "Sending SMPS to %pM\n", sta
->sta
.addr
);
2647 ieee80211_send_smps_action(sdata
, smps_mode
, sta
->sta
.addr
,
2648 sdata
->vif
.bss_conf
.bssid
);
2650 mutex_unlock(&sdata
->local
->sta_mtx
);
2652 sdata
->smps_mode
= smps_mode
;
2653 ieee80211_queue_work(&sdata
->local
->hw
, &sdata
->recalc_smps
);
2658 int __ieee80211_request_smps_mgd(struct ieee80211_sub_if_data
*sdata
,
2659 enum ieee80211_smps_mode smps_mode
)
2662 enum ieee80211_smps_mode old_req
;
2664 struct sta_info
*sta
;
2665 bool tdls_peer_found
= false;
2667 lockdep_assert_held(&sdata
->wdev
.mtx
);
2669 if (WARN_ON_ONCE(sdata
->vif
.type
!= NL80211_IFTYPE_STATION
))
2672 old_req
= sdata
->u
.mgd
.req_smps
;
2673 sdata
->u
.mgd
.req_smps
= smps_mode
;
2675 if (old_req
== smps_mode
&&
2676 smps_mode
!= IEEE80211_SMPS_AUTOMATIC
)
2680 * If not associated, or current association is not an HT
2681 * association, there's no need to do anything, just store
2682 * the new value until we associate.
2684 if (!sdata
->u
.mgd
.associated
||
2685 sdata
->vif
.bss_conf
.chandef
.width
== NL80211_CHAN_WIDTH_20_NOHT
)
2688 ap
= sdata
->u
.mgd
.associated
->bssid
;
2691 list_for_each_entry_rcu(sta
, &sdata
->local
->sta_list
, list
) {
2692 if (!sta
->sta
.tdls
|| sta
->sdata
!= sdata
|| !sta
->uploaded
||
2693 !test_sta_flag(sta
, WLAN_STA_AUTHORIZED
))
2696 tdls_peer_found
= true;
2701 if (smps_mode
== IEEE80211_SMPS_AUTOMATIC
) {
2702 if (tdls_peer_found
|| !sdata
->u
.mgd
.powersave
)
2703 smps_mode
= IEEE80211_SMPS_OFF
;
2705 smps_mode
= IEEE80211_SMPS_DYNAMIC
;
2708 /* send SM PS frame to AP */
2709 err
= ieee80211_send_smps_action(sdata
, smps_mode
,
2712 sdata
->u
.mgd
.req_smps
= old_req
;
2713 else if (smps_mode
!= IEEE80211_SMPS_OFF
&& tdls_peer_found
)
2714 ieee80211_teardown_tdls_peers(sdata
);
2719 static int ieee80211_set_power_mgmt(struct wiphy
*wiphy
, struct net_device
*dev
,
2720 bool enabled
, int timeout
)
2722 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
2723 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
2725 if (sdata
->vif
.type
!= NL80211_IFTYPE_STATION
)
2728 if (!ieee80211_hw_check(&local
->hw
, SUPPORTS_PS
))
2731 if (enabled
== sdata
->u
.mgd
.powersave
&&
2732 timeout
== local
->dynamic_ps_forced_timeout
)
2735 sdata
->u
.mgd
.powersave
= enabled
;
2736 local
->dynamic_ps_forced_timeout
= timeout
;
2738 /* no change, but if automatic follow powersave */
2740 __ieee80211_request_smps_mgd(sdata
, sdata
->u
.mgd
.req_smps
);
2741 sdata_unlock(sdata
);
2743 if (ieee80211_hw_check(&local
->hw
, SUPPORTS_DYNAMIC_PS
))
2744 ieee80211_hw_config(local
, IEEE80211_CONF_CHANGE_PS
);
2746 ieee80211_recalc_ps(local
);
2747 ieee80211_recalc_ps_vif(sdata
);
2748 ieee80211_check_fast_rx_iface(sdata
);
2753 static int ieee80211_set_cqm_rssi_config(struct wiphy
*wiphy
,
2754 struct net_device
*dev
,
2755 s32 rssi_thold
, u32 rssi_hyst
)
2757 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
2758 struct ieee80211_vif
*vif
= &sdata
->vif
;
2759 struct ieee80211_bss_conf
*bss_conf
= &vif
->bss_conf
;
2761 if (rssi_thold
== bss_conf
->cqm_rssi_thold
&&
2762 rssi_hyst
== bss_conf
->cqm_rssi_hyst
)
2765 if (sdata
->vif
.driver_flags
& IEEE80211_VIF_BEACON_FILTER
&&
2766 !(sdata
->vif
.driver_flags
& IEEE80211_VIF_SUPPORTS_CQM_RSSI
))
2769 bss_conf
->cqm_rssi_thold
= rssi_thold
;
2770 bss_conf
->cqm_rssi_hyst
= rssi_hyst
;
2771 bss_conf
->cqm_rssi_low
= 0;
2772 bss_conf
->cqm_rssi_high
= 0;
2773 sdata
->u
.mgd
.last_cqm_event_signal
= 0;
2775 /* tell the driver upon association, unless already associated */
2776 if (sdata
->u
.mgd
.associated
&&
2777 sdata
->vif
.driver_flags
& IEEE80211_VIF_SUPPORTS_CQM_RSSI
)
2778 ieee80211_bss_info_change_notify(sdata
, BSS_CHANGED_CQM
);
2783 static int ieee80211_set_cqm_rssi_range_config(struct wiphy
*wiphy
,
2784 struct net_device
*dev
,
2785 s32 rssi_low
, s32 rssi_high
)
2787 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
2788 struct ieee80211_vif
*vif
= &sdata
->vif
;
2789 struct ieee80211_bss_conf
*bss_conf
= &vif
->bss_conf
;
2791 if (sdata
->vif
.driver_flags
& IEEE80211_VIF_BEACON_FILTER
)
2794 bss_conf
->cqm_rssi_low
= rssi_low
;
2795 bss_conf
->cqm_rssi_high
= rssi_high
;
2796 bss_conf
->cqm_rssi_thold
= 0;
2797 bss_conf
->cqm_rssi_hyst
= 0;
2798 sdata
->u
.mgd
.last_cqm_event_signal
= 0;
2800 /* tell the driver upon association, unless already associated */
2801 if (sdata
->u
.mgd
.associated
&&
2802 sdata
->vif
.driver_flags
& IEEE80211_VIF_SUPPORTS_CQM_RSSI
)
2803 ieee80211_bss_info_change_notify(sdata
, BSS_CHANGED_CQM
);
2808 static int ieee80211_set_bitrate_mask(struct wiphy
*wiphy
,
2809 struct net_device
*dev
,
2811 const struct cfg80211_bitrate_mask
*mask
)
2813 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
2814 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
2817 if (!ieee80211_sdata_running(sdata
))
2821 * If active validate the setting and reject it if it doesn't leave
2822 * at least one basic rate usable, since we really have to be able
2823 * to send something, and if we're an AP we have to be able to do
2824 * so at a basic rate so that all clients can receive it.
2826 if (rcu_access_pointer(sdata
->vif
.chanctx_conf
) &&
2827 sdata
->vif
.bss_conf
.chandef
.chan
) {
2828 u32 basic_rates
= sdata
->vif
.bss_conf
.basic_rates
;
2829 enum nl80211_band band
= sdata
->vif
.bss_conf
.chandef
.chan
->band
;
2831 if (!(mask
->control
[band
].legacy
& basic_rates
))
2835 if (ieee80211_hw_check(&local
->hw
, HAS_RATE_CONTROL
)) {
2836 ret
= drv_set_bitrate_mask(local
, sdata
, mask
);
2841 for (i
= 0; i
< NUM_NL80211_BANDS
; i
++) {
2842 struct ieee80211_supported_band
*sband
= wiphy
->bands
[i
];
2845 sdata
->rc_rateidx_mask
[i
] = mask
->control
[i
].legacy
;
2846 memcpy(sdata
->rc_rateidx_mcs_mask
[i
], mask
->control
[i
].ht_mcs
,
2847 sizeof(mask
->control
[i
].ht_mcs
));
2848 memcpy(sdata
->rc_rateidx_vht_mcs_mask
[i
],
2849 mask
->control
[i
].vht_mcs
,
2850 sizeof(mask
->control
[i
].vht_mcs
));
2852 sdata
->rc_has_mcs_mask
[i
] = false;
2853 sdata
->rc_has_vht_mcs_mask
[i
] = false;
2857 for (j
= 0; j
< IEEE80211_HT_MCS_MASK_LEN
; j
++) {
2858 if (~sdata
->rc_rateidx_mcs_mask
[i
][j
]) {
2859 sdata
->rc_has_mcs_mask
[i
] = true;
2864 for (j
= 0; j
< NL80211_VHT_NSS_MAX
; j
++) {
2865 if (~sdata
->rc_rateidx_vht_mcs_mask
[i
][j
]) {
2866 sdata
->rc_has_vht_mcs_mask
[i
] = true;
2875 static int ieee80211_start_radar_detection(struct wiphy
*wiphy
,
2876 struct net_device
*dev
,
2877 struct cfg80211_chan_def
*chandef
,
2880 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
2881 struct ieee80211_local
*local
= sdata
->local
;
2884 mutex_lock(&local
->mtx
);
2885 if (!list_empty(&local
->roc_list
) || local
->scanning
) {
2890 /* whatever, but channel contexts should not complain about that one */
2891 sdata
->smps_mode
= IEEE80211_SMPS_OFF
;
2892 sdata
->needed_rx_chains
= local
->rx_chains
;
2894 err
= ieee80211_vif_use_channel(sdata
, chandef
,
2895 IEEE80211_CHANCTX_SHARED
);
2899 ieee80211_queue_delayed_work(&sdata
->local
->hw
,
2900 &sdata
->dfs_cac_timer_work
,
2901 msecs_to_jiffies(cac_time_ms
));
2904 mutex_unlock(&local
->mtx
);
2908 static struct cfg80211_beacon_data
*
2909 cfg80211_beacon_dup(struct cfg80211_beacon_data
*beacon
)
2911 struct cfg80211_beacon_data
*new_beacon
;
2915 len
= beacon
->head_len
+ beacon
->tail_len
+ beacon
->beacon_ies_len
+
2916 beacon
->proberesp_ies_len
+ beacon
->assocresp_ies_len
+
2917 beacon
->probe_resp_len
+ beacon
->lci_len
+ beacon
->civicloc_len
;
2919 new_beacon
= kzalloc(sizeof(*new_beacon
) + len
, GFP_KERNEL
);
2923 pos
= (u8
*)(new_beacon
+ 1);
2924 if (beacon
->head_len
) {
2925 new_beacon
->head_len
= beacon
->head_len
;
2926 new_beacon
->head
= pos
;
2927 memcpy(pos
, beacon
->head
, beacon
->head_len
);
2928 pos
+= beacon
->head_len
;
2930 if (beacon
->tail_len
) {
2931 new_beacon
->tail_len
= beacon
->tail_len
;
2932 new_beacon
->tail
= pos
;
2933 memcpy(pos
, beacon
->tail
, beacon
->tail_len
);
2934 pos
+= beacon
->tail_len
;
2936 if (beacon
->beacon_ies_len
) {
2937 new_beacon
->beacon_ies_len
= beacon
->beacon_ies_len
;
2938 new_beacon
->beacon_ies
= pos
;
2939 memcpy(pos
, beacon
->beacon_ies
, beacon
->beacon_ies_len
);
2940 pos
+= beacon
->beacon_ies_len
;
2942 if (beacon
->proberesp_ies_len
) {
2943 new_beacon
->proberesp_ies_len
= beacon
->proberesp_ies_len
;
2944 new_beacon
->proberesp_ies
= pos
;
2945 memcpy(pos
, beacon
->proberesp_ies
, beacon
->proberesp_ies_len
);
2946 pos
+= beacon
->proberesp_ies_len
;
2948 if (beacon
->assocresp_ies_len
) {
2949 new_beacon
->assocresp_ies_len
= beacon
->assocresp_ies_len
;
2950 new_beacon
->assocresp_ies
= pos
;
2951 memcpy(pos
, beacon
->assocresp_ies
, beacon
->assocresp_ies_len
);
2952 pos
+= beacon
->assocresp_ies_len
;
2954 if (beacon
->probe_resp_len
) {
2955 new_beacon
->probe_resp_len
= beacon
->probe_resp_len
;
2956 new_beacon
->probe_resp
= pos
;
2957 memcpy(pos
, beacon
->probe_resp
, beacon
->probe_resp_len
);
2958 pos
+= beacon
->probe_resp_len
;
2961 /* might copy -1, meaning no changes requested */
2962 new_beacon
->ftm_responder
= beacon
->ftm_responder
;
2964 new_beacon
->lci_len
= beacon
->lci_len
;
2965 new_beacon
->lci
= pos
;
2966 memcpy(pos
, beacon
->lci
, beacon
->lci_len
);
2967 pos
+= beacon
->lci_len
;
2969 if (beacon
->civicloc
) {
2970 new_beacon
->civicloc_len
= beacon
->civicloc_len
;
2971 new_beacon
->civicloc
= pos
;
2972 memcpy(pos
, beacon
->civicloc
, beacon
->civicloc_len
);
2973 pos
+= beacon
->civicloc_len
;
2979 void ieee80211_csa_finish(struct ieee80211_vif
*vif
)
2981 struct ieee80211_sub_if_data
*sdata
= vif_to_sdata(vif
);
2983 ieee80211_queue_work(&sdata
->local
->hw
,
2984 &sdata
->csa_finalize_work
);
2986 EXPORT_SYMBOL(ieee80211_csa_finish
);
2988 static int ieee80211_set_after_csa_beacon(struct ieee80211_sub_if_data
*sdata
,
2993 switch (sdata
->vif
.type
) {
2994 case NL80211_IFTYPE_AP
:
2995 err
= ieee80211_assign_beacon(sdata
, sdata
->u
.ap
.next_beacon
,
2997 kfree(sdata
->u
.ap
.next_beacon
);
2998 sdata
->u
.ap
.next_beacon
= NULL
;
3004 case NL80211_IFTYPE_ADHOC
:
3005 err
= ieee80211_ibss_finish_csa(sdata
);
3010 #ifdef CONFIG_MAC80211_MESH
3011 case NL80211_IFTYPE_MESH_POINT
:
3012 err
= ieee80211_mesh_finish_csa(sdata
);
3026 static int __ieee80211_csa_finalize(struct ieee80211_sub_if_data
*sdata
)
3028 struct ieee80211_local
*local
= sdata
->local
;
3032 sdata_assert_lock(sdata
);
3033 lockdep_assert_held(&local
->mtx
);
3034 lockdep_assert_held(&local
->chanctx_mtx
);
3037 * using reservation isn't immediate as it may be deferred until later
3038 * with multi-vif. once reservation is complete it will re-schedule the
3039 * work with no reserved_chanctx so verify chandef to check if it
3040 * completed successfully
3043 if (sdata
->reserved_chanctx
) {
3045 * with multi-vif csa driver may call ieee80211_csa_finish()
3046 * many times while waiting for other interfaces to use their
3049 if (sdata
->reserved_ready
)
3052 return ieee80211_vif_use_reserved_context(sdata
);
3055 if (!cfg80211_chandef_identical(&sdata
->vif
.bss_conf
.chandef
,
3056 &sdata
->csa_chandef
))
3059 sdata
->vif
.csa_active
= false;
3061 err
= ieee80211_set_after_csa_beacon(sdata
, &changed
);
3065 ieee80211_bss_info_change_notify(sdata
, changed
);
3067 if (sdata
->csa_block_tx
) {
3068 ieee80211_wake_vif_queues(local
, sdata
,
3069 IEEE80211_QUEUE_STOP_REASON_CSA
);
3070 sdata
->csa_block_tx
= false;
3073 err
= drv_post_channel_switch(sdata
);
3077 cfg80211_ch_switch_notify(sdata
->dev
, &sdata
->csa_chandef
);
3082 static void ieee80211_csa_finalize(struct ieee80211_sub_if_data
*sdata
)
3084 if (__ieee80211_csa_finalize(sdata
)) {
3085 sdata_info(sdata
, "failed to finalize CSA, disconnecting\n");
3086 cfg80211_stop_iface(sdata
->local
->hw
.wiphy
, &sdata
->wdev
,
3091 void ieee80211_csa_finalize_work(struct work_struct
*work
)
3093 struct ieee80211_sub_if_data
*sdata
=
3094 container_of(work
, struct ieee80211_sub_if_data
,
3096 struct ieee80211_local
*local
= sdata
->local
;
3099 mutex_lock(&local
->mtx
);
3100 mutex_lock(&local
->chanctx_mtx
);
3102 /* AP might have been stopped while waiting for the lock. */
3103 if (!sdata
->vif
.csa_active
)
3106 if (!ieee80211_sdata_running(sdata
))
3109 ieee80211_csa_finalize(sdata
);
3112 mutex_unlock(&local
->chanctx_mtx
);
3113 mutex_unlock(&local
->mtx
);
3114 sdata_unlock(sdata
);
3117 static int ieee80211_set_csa_beacon(struct ieee80211_sub_if_data
*sdata
,
3118 struct cfg80211_csa_settings
*params
,
3121 struct ieee80211_csa_settings csa
= {};
3124 switch (sdata
->vif
.type
) {
3125 case NL80211_IFTYPE_AP
:
3126 sdata
->u
.ap
.next_beacon
=
3127 cfg80211_beacon_dup(¶ms
->beacon_after
);
3128 if (!sdata
->u
.ap
.next_beacon
)
3132 * With a count of 0, we don't have to wait for any
3133 * TBTT before switching, so complete the CSA
3134 * immediately. In theory, with a count == 1 we
3135 * should delay the switch until just before the next
3136 * TBTT, but that would complicate things so we switch
3137 * immediately too. If we would delay the switch
3138 * until the next TBTT, we would have to set the probe
3141 * TODO: A channel switch with count <= 1 without
3142 * sending a CSA action frame is kind of useless,
3143 * because the clients won't know we're changing
3144 * channels. The action frame must be implemented
3145 * either here or in the userspace.
3147 if (params
->count
<= 1)
3150 if ((params
->n_counter_offsets_beacon
>
3151 IEEE80211_MAX_CSA_COUNTERS_NUM
) ||
3152 (params
->n_counter_offsets_presp
>
3153 IEEE80211_MAX_CSA_COUNTERS_NUM
))
3156 csa
.counter_offsets_beacon
= params
->counter_offsets_beacon
;
3157 csa
.counter_offsets_presp
= params
->counter_offsets_presp
;
3158 csa
.n_counter_offsets_beacon
= params
->n_counter_offsets_beacon
;
3159 csa
.n_counter_offsets_presp
= params
->n_counter_offsets_presp
;
3160 csa
.count
= params
->count
;
3162 err
= ieee80211_assign_beacon(sdata
, ¶ms
->beacon_csa
, &csa
);
3164 kfree(sdata
->u
.ap
.next_beacon
);
3170 case NL80211_IFTYPE_ADHOC
:
3171 if (!sdata
->vif
.bss_conf
.ibss_joined
)
3174 if (params
->chandef
.width
!= sdata
->u
.ibss
.chandef
.width
)
3177 switch (params
->chandef
.width
) {
3178 case NL80211_CHAN_WIDTH_40
:
3179 if (cfg80211_get_chandef_type(¶ms
->chandef
) !=
3180 cfg80211_get_chandef_type(&sdata
->u
.ibss
.chandef
))
3182 case NL80211_CHAN_WIDTH_5
:
3183 case NL80211_CHAN_WIDTH_10
:
3184 case NL80211_CHAN_WIDTH_20_NOHT
:
3185 case NL80211_CHAN_WIDTH_20
:
3191 /* changes into another band are not supported */
3192 if (sdata
->u
.ibss
.chandef
.chan
->band
!=
3193 params
->chandef
.chan
->band
)
3196 /* see comments in the NL80211_IFTYPE_AP block */
3197 if (params
->count
> 1) {
3198 err
= ieee80211_ibss_csa_beacon(sdata
, params
);
3204 ieee80211_send_action_csa(sdata
, params
);
3207 #ifdef CONFIG_MAC80211_MESH
3208 case NL80211_IFTYPE_MESH_POINT
: {
3209 struct ieee80211_if_mesh
*ifmsh
= &sdata
->u
.mesh
;
3211 if (params
->chandef
.width
!= sdata
->vif
.bss_conf
.chandef
.width
)
3214 /* changes into another band are not supported */
3215 if (sdata
->vif
.bss_conf
.chandef
.chan
->band
!=
3216 params
->chandef
.chan
->band
)
3219 if (ifmsh
->csa_role
== IEEE80211_MESH_CSA_ROLE_NONE
) {
3220 ifmsh
->csa_role
= IEEE80211_MESH_CSA_ROLE_INIT
;
3221 if (!ifmsh
->pre_value
)
3222 ifmsh
->pre_value
= 1;
3227 /* see comments in the NL80211_IFTYPE_AP block */
3228 if (params
->count
> 1) {
3229 err
= ieee80211_mesh_csa_beacon(sdata
, params
);
3231 ifmsh
->csa_role
= IEEE80211_MESH_CSA_ROLE_NONE
;
3237 if (ifmsh
->csa_role
== IEEE80211_MESH_CSA_ROLE_INIT
)
3238 ieee80211_send_action_csa(sdata
, params
);
3251 __ieee80211_channel_switch(struct wiphy
*wiphy
, struct net_device
*dev
,
3252 struct cfg80211_csa_settings
*params
)
3254 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
3255 struct ieee80211_local
*local
= sdata
->local
;
3256 struct ieee80211_channel_switch ch_switch
;
3257 struct ieee80211_chanctx_conf
*conf
;
3258 struct ieee80211_chanctx
*chanctx
;
3262 sdata_assert_lock(sdata
);
3263 lockdep_assert_held(&local
->mtx
);
3265 if (!list_empty(&local
->roc_list
) || local
->scanning
)
3268 if (sdata
->wdev
.cac_started
)
3271 if (cfg80211_chandef_identical(¶ms
->chandef
,
3272 &sdata
->vif
.bss_conf
.chandef
))
3275 /* don't allow another channel switch if one is already active. */
3276 if (sdata
->vif
.csa_active
)
3279 mutex_lock(&local
->chanctx_mtx
);
3280 conf
= rcu_dereference_protected(sdata
->vif
.chanctx_conf
,
3281 lockdep_is_held(&local
->chanctx_mtx
));
3287 chanctx
= container_of(conf
, struct ieee80211_chanctx
, conf
);
3289 ch_switch
.timestamp
= 0;
3290 ch_switch
.device_timestamp
= 0;
3291 ch_switch
.block_tx
= params
->block_tx
;
3292 ch_switch
.chandef
= params
->chandef
;
3293 ch_switch
.count
= params
->count
;
3295 err
= drv_pre_channel_switch(sdata
, &ch_switch
);
3299 err
= ieee80211_vif_reserve_chanctx(sdata
, ¶ms
->chandef
,
3301 params
->radar_required
);
3305 /* if reservation is invalid then this will fail */
3306 err
= ieee80211_check_combinations(sdata
, NULL
, chanctx
->mode
, 0);
3308 ieee80211_vif_unreserve_chanctx(sdata
);
3312 err
= ieee80211_set_csa_beacon(sdata
, params
, &changed
);
3314 ieee80211_vif_unreserve_chanctx(sdata
);
3318 sdata
->csa_chandef
= params
->chandef
;
3319 sdata
->csa_block_tx
= params
->block_tx
;
3320 sdata
->vif
.csa_active
= true;
3322 if (sdata
->csa_block_tx
)
3323 ieee80211_stop_vif_queues(local
, sdata
,
3324 IEEE80211_QUEUE_STOP_REASON_CSA
);
3326 cfg80211_ch_switch_started_notify(sdata
->dev
, &sdata
->csa_chandef
,
3330 ieee80211_bss_info_change_notify(sdata
, changed
);
3331 drv_channel_switch_beacon(sdata
, ¶ms
->chandef
);
3333 /* if the beacon didn't change, we can finalize immediately */
3334 ieee80211_csa_finalize(sdata
);
3338 mutex_unlock(&local
->chanctx_mtx
);
3342 int ieee80211_channel_switch(struct wiphy
*wiphy
, struct net_device
*dev
,
3343 struct cfg80211_csa_settings
*params
)
3345 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
3346 struct ieee80211_local
*local
= sdata
->local
;
3349 mutex_lock(&local
->mtx
);
3350 err
= __ieee80211_channel_switch(wiphy
, dev
, params
);
3351 mutex_unlock(&local
->mtx
);
3356 u64
ieee80211_mgmt_tx_cookie(struct ieee80211_local
*local
)
3358 lockdep_assert_held(&local
->mtx
);
3360 local
->roc_cookie_counter
++;
3362 /* wow, you wrapped 64 bits ... more likely a bug */
3363 if (WARN_ON(local
->roc_cookie_counter
== 0))
3364 local
->roc_cookie_counter
++;
3366 return local
->roc_cookie_counter
;
3369 int ieee80211_attach_ack_skb(struct ieee80211_local
*local
, struct sk_buff
*skb
,
3370 u64
*cookie
, gfp_t gfp
)
3372 unsigned long spin_flags
;
3373 struct sk_buff
*ack_skb
;
3376 ack_skb
= skb_copy(skb
, gfp
);
3380 spin_lock_irqsave(&local
->ack_status_lock
, spin_flags
);
3381 id
= idr_alloc(&local
->ack_status_frames
, ack_skb
,
3382 1, 0x10000, GFP_ATOMIC
);
3383 spin_unlock_irqrestore(&local
->ack_status_lock
, spin_flags
);
3390 IEEE80211_SKB_CB(skb
)->ack_frame_id
= id
;
3392 *cookie
= ieee80211_mgmt_tx_cookie(local
);
3393 IEEE80211_SKB_CB(ack_skb
)->ack
.cookie
= *cookie
;
3398 static void ieee80211_mgmt_frame_register(struct wiphy
*wiphy
,
3399 struct wireless_dev
*wdev
,
3400 u16 frame_type
, bool reg
)
3402 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
3403 struct ieee80211_sub_if_data
*sdata
= IEEE80211_WDEV_TO_SUB_IF(wdev
);
3405 switch (frame_type
) {
3406 case IEEE80211_FTYPE_MGMT
| IEEE80211_STYPE_PROBE_REQ
:
3408 local
->probe_req_reg
++;
3409 sdata
->vif
.probe_req_reg
++;
3411 if (local
->probe_req_reg
)
3412 local
->probe_req_reg
--;
3414 if (sdata
->vif
.probe_req_reg
)
3415 sdata
->vif
.probe_req_reg
--;
3418 if (!local
->open_count
)
3421 if (sdata
->vif
.probe_req_reg
== 1)
3422 drv_config_iface_filter(local
, sdata
, FIF_PROBE_REQ
,
3424 else if (sdata
->vif
.probe_req_reg
== 0)
3425 drv_config_iface_filter(local
, sdata
, 0,
3428 ieee80211_configure_filter(local
);
3435 static int ieee80211_set_antenna(struct wiphy
*wiphy
, u32 tx_ant
, u32 rx_ant
)
3437 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
3442 return drv_set_antenna(local
, tx_ant
, rx_ant
);
3445 static int ieee80211_get_antenna(struct wiphy
*wiphy
, u32
*tx_ant
, u32
*rx_ant
)
3447 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
3449 return drv_get_antenna(local
, tx_ant
, rx_ant
);
3452 static int ieee80211_set_rekey_data(struct wiphy
*wiphy
,
3453 struct net_device
*dev
,
3454 struct cfg80211_gtk_rekey_data
*data
)
3456 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
3457 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
3459 if (!local
->ops
->set_rekey_data
)
3462 drv_set_rekey_data(local
, sdata
, data
);
3467 static int ieee80211_probe_client(struct wiphy
*wiphy
, struct net_device
*dev
,
3468 const u8
*peer
, u64
*cookie
)
3470 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
3471 struct ieee80211_local
*local
= sdata
->local
;
3472 struct ieee80211_qos_hdr
*nullfunc
;
3473 struct sk_buff
*skb
;
3474 int size
= sizeof(*nullfunc
);
3477 struct ieee80211_tx_info
*info
;
3478 struct sta_info
*sta
;
3479 struct ieee80211_chanctx_conf
*chanctx_conf
;
3480 enum nl80211_band band
;
3483 /* the lock is needed to assign the cookie later */
3484 mutex_lock(&local
->mtx
);
3487 chanctx_conf
= rcu_dereference(sdata
->vif
.chanctx_conf
);
3488 if (WARN_ON(!chanctx_conf
)) {
3492 band
= chanctx_conf
->def
.chan
->band
;
3493 sta
= sta_info_get_bss(sdata
, peer
);
3502 fc
= cpu_to_le16(IEEE80211_FTYPE_DATA
|
3503 IEEE80211_STYPE_QOS_NULLFUNC
|
3504 IEEE80211_FCTL_FROMDS
);
3507 fc
= cpu_to_le16(IEEE80211_FTYPE_DATA
|
3508 IEEE80211_STYPE_NULLFUNC
|
3509 IEEE80211_FCTL_FROMDS
);
3512 skb
= dev_alloc_skb(local
->hw
.extra_tx_headroom
+ size
);
3520 skb_reserve(skb
, local
->hw
.extra_tx_headroom
);
3522 nullfunc
= skb_put(skb
, size
);
3523 nullfunc
->frame_control
= fc
;
3524 nullfunc
->duration_id
= 0;
3525 memcpy(nullfunc
->addr1
, sta
->sta
.addr
, ETH_ALEN
);
3526 memcpy(nullfunc
->addr2
, sdata
->vif
.addr
, ETH_ALEN
);
3527 memcpy(nullfunc
->addr3
, sdata
->vif
.addr
, ETH_ALEN
);
3528 nullfunc
->seq_ctrl
= 0;
3530 info
= IEEE80211_SKB_CB(skb
);
3532 info
->flags
|= IEEE80211_TX_CTL_REQ_TX_STATUS
|
3533 IEEE80211_TX_INTFL_NL80211_FRAME_TX
;
3536 skb_set_queue_mapping(skb
, IEEE80211_AC_VO
);
3539 nullfunc
->qos_ctrl
= cpu_to_le16(7);
3541 ret
= ieee80211_attach_ack_skb(local
, skb
, cookie
, GFP_ATOMIC
);
3548 ieee80211_xmit(sdata
, sta
, skb
, 0);
3554 mutex_unlock(&local
->mtx
);
3559 static int ieee80211_cfg_get_channel(struct wiphy
*wiphy
,
3560 struct wireless_dev
*wdev
,
3561 struct cfg80211_chan_def
*chandef
)
3563 struct ieee80211_sub_if_data
*sdata
= IEEE80211_WDEV_TO_SUB_IF(wdev
);
3564 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
3565 struct ieee80211_chanctx_conf
*chanctx_conf
;
3569 chanctx_conf
= rcu_dereference(sdata
->vif
.chanctx_conf
);
3571 *chandef
= sdata
->vif
.bss_conf
.chandef
;
3573 } else if (local
->open_count
> 0 &&
3574 local
->open_count
== local
->monitors
&&
3575 sdata
->vif
.type
== NL80211_IFTYPE_MONITOR
) {
3576 if (local
->use_chanctx
)
3577 *chandef
= local
->monitor_chandef
;
3579 *chandef
= local
->_oper_chandef
;
3588 static void ieee80211_set_wakeup(struct wiphy
*wiphy
, bool enabled
)
3590 drv_set_wakeup(wiphy_priv(wiphy
), enabled
);
3594 static int ieee80211_set_qos_map(struct wiphy
*wiphy
,
3595 struct net_device
*dev
,
3596 struct cfg80211_qos_map
*qos_map
)
3598 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
3599 struct mac80211_qos_map
*new_qos_map
, *old_qos_map
;
3602 new_qos_map
= kzalloc(sizeof(*new_qos_map
), GFP_KERNEL
);
3605 memcpy(&new_qos_map
->qos_map
, qos_map
, sizeof(*qos_map
));
3607 /* A NULL qos_map was passed to disable QoS mapping */
3611 old_qos_map
= sdata_dereference(sdata
->qos_map
, sdata
);
3612 rcu_assign_pointer(sdata
->qos_map
, new_qos_map
);
3614 kfree_rcu(old_qos_map
, rcu_head
);
3619 static int ieee80211_set_ap_chanwidth(struct wiphy
*wiphy
,
3620 struct net_device
*dev
,
3621 struct cfg80211_chan_def
*chandef
)
3623 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
3627 ret
= ieee80211_vif_change_bandwidth(sdata
, chandef
, &changed
);
3629 ieee80211_bss_info_change_notify(sdata
, changed
);
3634 static int ieee80211_add_tx_ts(struct wiphy
*wiphy
, struct net_device
*dev
,
3635 u8 tsid
, const u8
*peer
, u8 up
,
3638 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
3639 struct ieee80211_if_managed
*ifmgd
= &sdata
->u
.mgd
;
3640 int ac
= ieee802_1d_to_ac
[up
];
3642 if (sdata
->vif
.type
!= NL80211_IFTYPE_STATION
)
3645 if (!(sdata
->wmm_acm
& BIT(up
)))
3648 if (ifmgd
->tx_tspec
[ac
].admitted_time
)
3651 if (admitted_time
) {
3652 ifmgd
->tx_tspec
[ac
].admitted_time
= 32 * admitted_time
;
3653 ifmgd
->tx_tspec
[ac
].tsid
= tsid
;
3654 ifmgd
->tx_tspec
[ac
].up
= up
;
3660 static int ieee80211_del_tx_ts(struct wiphy
*wiphy
, struct net_device
*dev
,
3661 u8 tsid
, const u8
*peer
)
3663 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
3664 struct ieee80211_if_managed
*ifmgd
= &sdata
->u
.mgd
;
3665 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
3668 for (ac
= 0; ac
< IEEE80211_NUM_ACS
; ac
++) {
3669 struct ieee80211_sta_tx_tspec
*tx_tspec
= &ifmgd
->tx_tspec
[ac
];
3671 /* skip unused entries */
3672 if (!tx_tspec
->admitted_time
)
3675 if (tx_tspec
->tsid
!= tsid
)
3678 /* due to this new packets will be reassigned to non-ACM ACs */
3681 /* Make sure that all packets have been sent to avoid to
3682 * restore the QoS params on packets that are still on the
3686 ieee80211_flush_queues(local
, sdata
, false);
3688 /* restore the normal QoS parameters
3689 * (unconditionally to avoid races)
3691 tx_tspec
->action
= TX_TSPEC_ACTION_STOP_DOWNGRADE
;
3692 tx_tspec
->downgraded
= false;
3693 ieee80211_sta_handle_tspec_ac_params(sdata
);
3695 /* finally clear all the data */
3696 memset(tx_tspec
, 0, sizeof(*tx_tspec
));
3704 void ieee80211_nan_func_terminated(struct ieee80211_vif
*vif
,
3706 enum nl80211_nan_func_term_reason reason
,
3709 struct ieee80211_sub_if_data
*sdata
= vif_to_sdata(vif
);
3710 struct cfg80211_nan_func
*func
;
3713 if (WARN_ON(vif
->type
!= NL80211_IFTYPE_NAN
))
3716 spin_lock_bh(&sdata
->u
.nan
.func_lock
);
3718 func
= idr_find(&sdata
->u
.nan
.function_inst_ids
, inst_id
);
3719 if (WARN_ON(!func
)) {
3720 spin_unlock_bh(&sdata
->u
.nan
.func_lock
);
3724 cookie
= func
->cookie
;
3725 idr_remove(&sdata
->u
.nan
.function_inst_ids
, inst_id
);
3727 spin_unlock_bh(&sdata
->u
.nan
.func_lock
);
3729 cfg80211_free_nan_func(func
);
3731 cfg80211_nan_func_terminated(ieee80211_vif_to_wdev(vif
), inst_id
,
3732 reason
, cookie
, gfp
);
3734 EXPORT_SYMBOL(ieee80211_nan_func_terminated
);
3736 void ieee80211_nan_func_match(struct ieee80211_vif
*vif
,
3737 struct cfg80211_nan_match_params
*match
,
3740 struct ieee80211_sub_if_data
*sdata
= vif_to_sdata(vif
);
3741 struct cfg80211_nan_func
*func
;
3743 if (WARN_ON(vif
->type
!= NL80211_IFTYPE_NAN
))
3746 spin_lock_bh(&sdata
->u
.nan
.func_lock
);
3748 func
= idr_find(&sdata
->u
.nan
.function_inst_ids
, match
->inst_id
);
3749 if (WARN_ON(!func
)) {
3750 spin_unlock_bh(&sdata
->u
.nan
.func_lock
);
3753 match
->cookie
= func
->cookie
;
3755 spin_unlock_bh(&sdata
->u
.nan
.func_lock
);
3757 cfg80211_nan_match(ieee80211_vif_to_wdev(vif
), match
, gfp
);
3759 EXPORT_SYMBOL(ieee80211_nan_func_match
);
3761 static int ieee80211_set_multicast_to_unicast(struct wiphy
*wiphy
,
3762 struct net_device
*dev
,
3765 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
3767 sdata
->u
.ap
.multicast_to_unicast
= enabled
;
3772 void ieee80211_fill_txq_stats(struct cfg80211_txq_stats
*txqstats
,
3773 struct txq_info
*txqi
)
3775 if (!(txqstats
->filled
& BIT(NL80211_TXQ_STATS_BACKLOG_BYTES
))) {
3776 txqstats
->filled
|= BIT(NL80211_TXQ_STATS_BACKLOG_BYTES
);
3777 txqstats
->backlog_bytes
= txqi
->tin
.backlog_bytes
;
3780 if (!(txqstats
->filled
& BIT(NL80211_TXQ_STATS_BACKLOG_PACKETS
))) {
3781 txqstats
->filled
|= BIT(NL80211_TXQ_STATS_BACKLOG_PACKETS
);
3782 txqstats
->backlog_packets
= txqi
->tin
.backlog_packets
;
3785 if (!(txqstats
->filled
& BIT(NL80211_TXQ_STATS_FLOWS
))) {
3786 txqstats
->filled
|= BIT(NL80211_TXQ_STATS_FLOWS
);
3787 txqstats
->flows
= txqi
->tin
.flows
;
3790 if (!(txqstats
->filled
& BIT(NL80211_TXQ_STATS_DROPS
))) {
3791 txqstats
->filled
|= BIT(NL80211_TXQ_STATS_DROPS
);
3792 txqstats
->drops
= txqi
->cstats
.drop_count
;
3795 if (!(txqstats
->filled
& BIT(NL80211_TXQ_STATS_ECN_MARKS
))) {
3796 txqstats
->filled
|= BIT(NL80211_TXQ_STATS_ECN_MARKS
);
3797 txqstats
->ecn_marks
= txqi
->cstats
.ecn_mark
;
3800 if (!(txqstats
->filled
& BIT(NL80211_TXQ_STATS_OVERLIMIT
))) {
3801 txqstats
->filled
|= BIT(NL80211_TXQ_STATS_OVERLIMIT
);
3802 txqstats
->overlimit
= txqi
->tin
.overlimit
;
3805 if (!(txqstats
->filled
& BIT(NL80211_TXQ_STATS_COLLISIONS
))) {
3806 txqstats
->filled
|= BIT(NL80211_TXQ_STATS_COLLISIONS
);
3807 txqstats
->collisions
= txqi
->tin
.collisions
;
3810 if (!(txqstats
->filled
& BIT(NL80211_TXQ_STATS_TX_BYTES
))) {
3811 txqstats
->filled
|= BIT(NL80211_TXQ_STATS_TX_BYTES
);
3812 txqstats
->tx_bytes
= txqi
->tin
.tx_bytes
;
3815 if (!(txqstats
->filled
& BIT(NL80211_TXQ_STATS_TX_PACKETS
))) {
3816 txqstats
->filled
|= BIT(NL80211_TXQ_STATS_TX_PACKETS
);
3817 txqstats
->tx_packets
= txqi
->tin
.tx_packets
;
3821 static int ieee80211_get_txq_stats(struct wiphy
*wiphy
,
3822 struct wireless_dev
*wdev
,
3823 struct cfg80211_txq_stats
*txqstats
)
3825 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
3826 struct ieee80211_sub_if_data
*sdata
;
3829 if (!local
->ops
->wake_tx_queue
)
3832 spin_lock_bh(&local
->fq
.lock
);
3836 sdata
= IEEE80211_WDEV_TO_SUB_IF(wdev
);
3837 if (!sdata
->vif
.txq
) {
3841 ieee80211_fill_txq_stats(txqstats
, to_txq_info(sdata
->vif
.txq
));
3844 txqstats
->filled
|= BIT(NL80211_TXQ_STATS_BACKLOG_PACKETS
) |
3845 BIT(NL80211_TXQ_STATS_BACKLOG_BYTES
) |
3846 BIT(NL80211_TXQ_STATS_OVERLIMIT
) |
3847 BIT(NL80211_TXQ_STATS_OVERMEMORY
) |
3848 BIT(NL80211_TXQ_STATS_COLLISIONS
) |
3849 BIT(NL80211_TXQ_STATS_MAX_FLOWS
);
3850 txqstats
->backlog_packets
= local
->fq
.backlog
;
3851 txqstats
->backlog_bytes
= local
->fq
.memory_usage
;
3852 txqstats
->overlimit
= local
->fq
.overlimit
;
3853 txqstats
->overmemory
= local
->fq
.overmemory
;
3854 txqstats
->collisions
= local
->fq
.collisions
;
3855 txqstats
->max_flows
= local
->fq
.flows_cnt
;
3860 spin_unlock_bh(&local
->fq
.lock
);
3866 ieee80211_get_ftm_responder_stats(struct wiphy
*wiphy
,
3867 struct net_device
*dev
,
3868 struct cfg80211_ftm_responder_stats
*ftm_stats
)
3870 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
3871 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
3873 return drv_get_ftm_responder_stats(local
, sdata
, ftm_stats
);
3877 ieee80211_start_pmsr(struct wiphy
*wiphy
, struct wireless_dev
*dev
,
3878 struct cfg80211_pmsr_request
*request
)
3880 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
3881 struct ieee80211_sub_if_data
*sdata
= IEEE80211_WDEV_TO_SUB_IF(dev
);
3883 return drv_start_pmsr(local
, sdata
, request
);
3887 ieee80211_abort_pmsr(struct wiphy
*wiphy
, struct wireless_dev
*dev
,
3888 struct cfg80211_pmsr_request
*request
)
3890 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
3891 struct ieee80211_sub_if_data
*sdata
= IEEE80211_WDEV_TO_SUB_IF(dev
);
3893 return drv_abort_pmsr(local
, sdata
, request
);
3896 const struct cfg80211_ops mac80211_config_ops
= {
3897 .add_virtual_intf
= ieee80211_add_iface
,
3898 .del_virtual_intf
= ieee80211_del_iface
,
3899 .change_virtual_intf
= ieee80211_change_iface
,
3900 .start_p2p_device
= ieee80211_start_p2p_device
,
3901 .stop_p2p_device
= ieee80211_stop_p2p_device
,
3902 .add_key
= ieee80211_add_key
,
3903 .del_key
= ieee80211_del_key
,
3904 .get_key
= ieee80211_get_key
,
3905 .set_default_key
= ieee80211_config_default_key
,
3906 .set_default_mgmt_key
= ieee80211_config_default_mgmt_key
,
3907 .start_ap
= ieee80211_start_ap
,
3908 .change_beacon
= ieee80211_change_beacon
,
3909 .stop_ap
= ieee80211_stop_ap
,
3910 .add_station
= ieee80211_add_station
,
3911 .del_station
= ieee80211_del_station
,
3912 .change_station
= ieee80211_change_station
,
3913 .get_station
= ieee80211_get_station
,
3914 .dump_station
= ieee80211_dump_station
,
3915 .dump_survey
= ieee80211_dump_survey
,
3916 #ifdef CONFIG_MAC80211_MESH
3917 .add_mpath
= ieee80211_add_mpath
,
3918 .del_mpath
= ieee80211_del_mpath
,
3919 .change_mpath
= ieee80211_change_mpath
,
3920 .get_mpath
= ieee80211_get_mpath
,
3921 .dump_mpath
= ieee80211_dump_mpath
,
3922 .get_mpp
= ieee80211_get_mpp
,
3923 .dump_mpp
= ieee80211_dump_mpp
,
3924 .update_mesh_config
= ieee80211_update_mesh_config
,
3925 .get_mesh_config
= ieee80211_get_mesh_config
,
3926 .join_mesh
= ieee80211_join_mesh
,
3927 .leave_mesh
= ieee80211_leave_mesh
,
3929 .join_ocb
= ieee80211_join_ocb
,
3930 .leave_ocb
= ieee80211_leave_ocb
,
3931 .change_bss
= ieee80211_change_bss
,
3932 .set_txq_params
= ieee80211_set_txq_params
,
3933 .set_monitor_channel
= ieee80211_set_monitor_channel
,
3934 .suspend
= ieee80211_suspend
,
3935 .resume
= ieee80211_resume
,
3936 .scan
= ieee80211_scan
,
3937 .abort_scan
= ieee80211_abort_scan
,
3938 .sched_scan_start
= ieee80211_sched_scan_start
,
3939 .sched_scan_stop
= ieee80211_sched_scan_stop
,
3940 .auth
= ieee80211_auth
,
3941 .assoc
= ieee80211_assoc
,
3942 .deauth
= ieee80211_deauth
,
3943 .disassoc
= ieee80211_disassoc
,
3944 .join_ibss
= ieee80211_join_ibss
,
3945 .leave_ibss
= ieee80211_leave_ibss
,
3946 .set_mcast_rate
= ieee80211_set_mcast_rate
,
3947 .set_wiphy_params
= ieee80211_set_wiphy_params
,
3948 .set_tx_power
= ieee80211_set_tx_power
,
3949 .get_tx_power
= ieee80211_get_tx_power
,
3950 .set_wds_peer
= ieee80211_set_wds_peer
,
3951 .rfkill_poll
= ieee80211_rfkill_poll
,
3952 CFG80211_TESTMODE_CMD(ieee80211_testmode_cmd
)
3953 CFG80211_TESTMODE_DUMP(ieee80211_testmode_dump
)
3954 .set_power_mgmt
= ieee80211_set_power_mgmt
,
3955 .set_bitrate_mask
= ieee80211_set_bitrate_mask
,
3956 .remain_on_channel
= ieee80211_remain_on_channel
,
3957 .cancel_remain_on_channel
= ieee80211_cancel_remain_on_channel
,
3958 .mgmt_tx
= ieee80211_mgmt_tx
,
3959 .mgmt_tx_cancel_wait
= ieee80211_mgmt_tx_cancel_wait
,
3960 .set_cqm_rssi_config
= ieee80211_set_cqm_rssi_config
,
3961 .set_cqm_rssi_range_config
= ieee80211_set_cqm_rssi_range_config
,
3962 .mgmt_frame_register
= ieee80211_mgmt_frame_register
,
3963 .set_antenna
= ieee80211_set_antenna
,
3964 .get_antenna
= ieee80211_get_antenna
,
3965 .set_rekey_data
= ieee80211_set_rekey_data
,
3966 .tdls_oper
= ieee80211_tdls_oper
,
3967 .tdls_mgmt
= ieee80211_tdls_mgmt
,
3968 .tdls_channel_switch
= ieee80211_tdls_channel_switch
,
3969 .tdls_cancel_channel_switch
= ieee80211_tdls_cancel_channel_switch
,
3970 .probe_client
= ieee80211_probe_client
,
3971 .set_noack_map
= ieee80211_set_noack_map
,
3973 .set_wakeup
= ieee80211_set_wakeup
,
3975 .get_channel
= ieee80211_cfg_get_channel
,
3976 .start_radar_detection
= ieee80211_start_radar_detection
,
3977 .channel_switch
= ieee80211_channel_switch
,
3978 .set_qos_map
= ieee80211_set_qos_map
,
3979 .set_ap_chanwidth
= ieee80211_set_ap_chanwidth
,
3980 .add_tx_ts
= ieee80211_add_tx_ts
,
3981 .del_tx_ts
= ieee80211_del_tx_ts
,
3982 .start_nan
= ieee80211_start_nan
,
3983 .stop_nan
= ieee80211_stop_nan
,
3984 .nan_change_conf
= ieee80211_nan_change_conf
,
3985 .add_nan_func
= ieee80211_add_nan_func
,
3986 .del_nan_func
= ieee80211_del_nan_func
,
3987 .set_multicast_to_unicast
= ieee80211_set_multicast_to_unicast
,
3988 .tx_control_port
= ieee80211_tx_control_port
,
3989 .get_txq_stats
= ieee80211_get_txq_stats
,
3990 .get_ftm_responder_stats
= ieee80211_get_ftm_responder_stats
,
3991 .start_pmsr
= ieee80211_start_pmsr
,
3992 .abort_pmsr
= ieee80211_abort_pmsr
,