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-2016 Intel Deutschland GmbH
8 * This file is GPLv2 as found in COPYING.
11 #include <linux/ieee80211.h>
12 #include <linux/nl80211.h>
13 #include <linux/rtnetlink.h>
14 #include <linux/slab.h>
15 #include <net/net_namespace.h>
16 #include <linux/rcupdate.h>
17 #include <linux/if_ether.h>
18 #include <net/cfg80211.h>
19 #include "ieee80211_i.h"
20 #include "driver-ops.h"
25 static struct wireless_dev
*ieee80211_add_iface(struct wiphy
*wiphy
,
27 unsigned char name_assign_type
,
28 enum nl80211_iftype type
,
30 struct vif_params
*params
)
32 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
33 struct wireless_dev
*wdev
;
34 struct ieee80211_sub_if_data
*sdata
;
37 err
= ieee80211_if_add(local
, name
, name_assign_type
, &wdev
, type
, params
);
41 if (type
== NL80211_IFTYPE_MONITOR
&& flags
) {
42 sdata
= IEEE80211_WDEV_TO_SUB_IF(wdev
);
43 sdata
->u
.mntr
.flags
= *flags
;
49 static int ieee80211_del_iface(struct wiphy
*wiphy
, struct wireless_dev
*wdev
)
51 ieee80211_if_remove(IEEE80211_WDEV_TO_SUB_IF(wdev
));
56 static int ieee80211_change_iface(struct wiphy
*wiphy
,
57 struct net_device
*dev
,
58 enum nl80211_iftype type
, u32
*flags
,
59 struct vif_params
*params
)
61 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
64 ret
= ieee80211_if_change_type(sdata
, type
);
68 if (type
== NL80211_IFTYPE_AP_VLAN
&&
69 params
&& params
->use_4addr
== 0) {
70 RCU_INIT_POINTER(sdata
->u
.vlan
.sta
, NULL
);
71 ieee80211_check_fast_rx_iface(sdata
);
72 } else if (type
== NL80211_IFTYPE_STATION
&&
73 params
&& params
->use_4addr
>= 0) {
74 sdata
->u
.mgd
.use_4addr
= params
->use_4addr
;
77 if (sdata
->vif
.type
== NL80211_IFTYPE_MONITOR
) {
78 struct ieee80211_local
*local
= sdata
->local
;
79 struct ieee80211_sub_if_data
*monitor_sdata
;
80 u32 mu_mntr_cap_flag
= NL80211_EXT_FEATURE_MU_MIMO_AIR_SNIFFER
;
82 monitor_sdata
= rtnl_dereference(local
->monitor_sdata
);
84 wiphy_ext_feature_isset(wiphy
, mu_mntr_cap_flag
)) {
85 memcpy(monitor_sdata
->vif
.bss_conf
.mu_group
.membership
,
86 params
->vht_mumimo_groups
, WLAN_MEMBERSHIP_LEN
);
87 memcpy(monitor_sdata
->vif
.bss_conf
.mu_group
.position
,
88 params
->vht_mumimo_groups
+ WLAN_MEMBERSHIP_LEN
,
89 WLAN_USER_POSITION_LEN
);
90 monitor_sdata
->vif
.mu_mimo_owner
= true;
91 ieee80211_bss_info_change_notify(monitor_sdata
,
92 BSS_CHANGED_MU_GROUPS
);
94 ether_addr_copy(monitor_sdata
->u
.mntr
.mu_follow_addr
,
101 if (ieee80211_sdata_running(sdata
)) {
102 u32 mask
= MONITOR_FLAG_COOK_FRAMES
|
106 * Prohibit MONITOR_FLAG_COOK_FRAMES and
107 * MONITOR_FLAG_ACTIVE to be changed while the
109 * Else we would need to add a lot of cruft
110 * to update everything:
111 * cooked_mntrs, monitor and all fif_* counters
112 * reconfigure hardware
114 if ((*flags
& mask
) != (sdata
->u
.mntr
.flags
& mask
))
117 ieee80211_adjust_monitor_flags(sdata
, -1);
118 sdata
->u
.mntr
.flags
= *flags
;
119 ieee80211_adjust_monitor_flags(sdata
, 1);
121 ieee80211_configure_filter(local
);
124 * Because the interface is down, ieee80211_do_stop
125 * and ieee80211_do_open take care of "everything"
126 * mentioned in the comment above.
128 sdata
->u
.mntr
.flags
= *flags
;
135 static int ieee80211_start_p2p_device(struct wiphy
*wiphy
,
136 struct wireless_dev
*wdev
)
138 struct ieee80211_sub_if_data
*sdata
= IEEE80211_WDEV_TO_SUB_IF(wdev
);
141 mutex_lock(&sdata
->local
->chanctx_mtx
);
142 ret
= ieee80211_check_combinations(sdata
, NULL
, 0, 0);
143 mutex_unlock(&sdata
->local
->chanctx_mtx
);
147 return ieee80211_do_open(wdev
, true);
150 static void ieee80211_stop_p2p_device(struct wiphy
*wiphy
,
151 struct wireless_dev
*wdev
)
153 ieee80211_sdata_stop(IEEE80211_WDEV_TO_SUB_IF(wdev
));
156 static int ieee80211_start_nan(struct wiphy
*wiphy
,
157 struct wireless_dev
*wdev
,
158 struct cfg80211_nan_conf
*conf
)
160 struct ieee80211_sub_if_data
*sdata
= IEEE80211_WDEV_TO_SUB_IF(wdev
);
163 mutex_lock(&sdata
->local
->chanctx_mtx
);
164 ret
= ieee80211_check_combinations(sdata
, NULL
, 0, 0);
165 mutex_unlock(&sdata
->local
->chanctx_mtx
);
169 ret
= ieee80211_do_open(wdev
, true);
173 ret
= drv_start_nan(sdata
->local
, sdata
, conf
);
175 ieee80211_sdata_stop(sdata
);
177 sdata
->u
.nan
.conf
= *conf
;
182 static void ieee80211_stop_nan(struct wiphy
*wiphy
,
183 struct wireless_dev
*wdev
)
185 struct ieee80211_sub_if_data
*sdata
= IEEE80211_WDEV_TO_SUB_IF(wdev
);
187 drv_stop_nan(sdata
->local
, sdata
);
188 ieee80211_sdata_stop(sdata
);
191 static int ieee80211_nan_change_conf(struct wiphy
*wiphy
,
192 struct wireless_dev
*wdev
,
193 struct cfg80211_nan_conf
*conf
,
196 struct ieee80211_sub_if_data
*sdata
= IEEE80211_WDEV_TO_SUB_IF(wdev
);
197 struct cfg80211_nan_conf new_conf
;
200 if (sdata
->vif
.type
!= NL80211_IFTYPE_NAN
)
203 if (!ieee80211_sdata_running(sdata
))
206 new_conf
= sdata
->u
.nan
.conf
;
208 if (changes
& CFG80211_NAN_CONF_CHANGED_PREF
)
209 new_conf
.master_pref
= conf
->master_pref
;
211 if (changes
& CFG80211_NAN_CONF_CHANGED_BANDS
)
212 new_conf
.bands
= conf
->bands
;
214 ret
= drv_nan_change_conf(sdata
->local
, sdata
, &new_conf
, changes
);
216 sdata
->u
.nan
.conf
= new_conf
;
221 static int ieee80211_add_nan_func(struct wiphy
*wiphy
,
222 struct wireless_dev
*wdev
,
223 struct cfg80211_nan_func
*nan_func
)
225 struct ieee80211_sub_if_data
*sdata
= IEEE80211_WDEV_TO_SUB_IF(wdev
);
228 if (sdata
->vif
.type
!= NL80211_IFTYPE_NAN
)
231 if (!ieee80211_sdata_running(sdata
))
234 spin_lock_bh(&sdata
->u
.nan
.func_lock
);
236 ret
= idr_alloc(&sdata
->u
.nan
.function_inst_ids
,
237 nan_func
, 1, sdata
->local
->hw
.max_nan_de_entries
+ 1,
239 spin_unlock_bh(&sdata
->u
.nan
.func_lock
);
244 nan_func
->instance_id
= ret
;
246 WARN_ON(nan_func
->instance_id
== 0);
248 ret
= drv_add_nan_func(sdata
->local
, sdata
, nan_func
);
250 spin_lock_bh(&sdata
->u
.nan
.func_lock
);
251 idr_remove(&sdata
->u
.nan
.function_inst_ids
,
252 nan_func
->instance_id
);
253 spin_unlock_bh(&sdata
->u
.nan
.func_lock
);
259 static struct cfg80211_nan_func
*
260 ieee80211_find_nan_func_by_cookie(struct ieee80211_sub_if_data
*sdata
,
263 struct cfg80211_nan_func
*func
;
266 lockdep_assert_held(&sdata
->u
.nan
.func_lock
);
268 idr_for_each_entry(&sdata
->u
.nan
.function_inst_ids
, func
, id
) {
269 if (func
->cookie
== cookie
)
276 static void ieee80211_del_nan_func(struct wiphy
*wiphy
,
277 struct wireless_dev
*wdev
, u64 cookie
)
279 struct ieee80211_sub_if_data
*sdata
= IEEE80211_WDEV_TO_SUB_IF(wdev
);
280 struct cfg80211_nan_func
*func
;
283 if (sdata
->vif
.type
!= NL80211_IFTYPE_NAN
||
284 !ieee80211_sdata_running(sdata
))
287 spin_lock_bh(&sdata
->u
.nan
.func_lock
);
289 func
= ieee80211_find_nan_func_by_cookie(sdata
, cookie
);
291 instance_id
= func
->instance_id
;
293 spin_unlock_bh(&sdata
->u
.nan
.func_lock
);
296 drv_del_nan_func(sdata
->local
, sdata
, instance_id
);
299 static int ieee80211_set_noack_map(struct wiphy
*wiphy
,
300 struct net_device
*dev
,
303 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
305 sdata
->noack_map
= noack_map
;
307 ieee80211_check_fast_xmit_iface(sdata
);
312 static int ieee80211_add_key(struct wiphy
*wiphy
, struct net_device
*dev
,
313 u8 key_idx
, bool pairwise
, const u8
*mac_addr
,
314 struct key_params
*params
)
316 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
317 struct ieee80211_local
*local
= sdata
->local
;
318 struct sta_info
*sta
= NULL
;
319 const struct ieee80211_cipher_scheme
*cs
= NULL
;
320 struct ieee80211_key
*key
;
323 if (!ieee80211_sdata_running(sdata
))
326 /* reject WEP and TKIP keys if WEP failed to initialize */
327 switch (params
->cipher
) {
328 case WLAN_CIPHER_SUITE_WEP40
:
329 case WLAN_CIPHER_SUITE_TKIP
:
330 case WLAN_CIPHER_SUITE_WEP104
:
331 if (IS_ERR(local
->wep_tx_tfm
))
334 case WLAN_CIPHER_SUITE_CCMP
:
335 case WLAN_CIPHER_SUITE_CCMP_256
:
336 case WLAN_CIPHER_SUITE_AES_CMAC
:
337 case WLAN_CIPHER_SUITE_BIP_CMAC_256
:
338 case WLAN_CIPHER_SUITE_BIP_GMAC_128
:
339 case WLAN_CIPHER_SUITE_BIP_GMAC_256
:
340 case WLAN_CIPHER_SUITE_GCMP
:
341 case WLAN_CIPHER_SUITE_GCMP_256
:
344 cs
= ieee80211_cs_get(local
, params
->cipher
, sdata
->vif
.type
);
348 key
= ieee80211_key_alloc(params
->cipher
, key_idx
, params
->key_len
,
349 params
->key
, params
->seq_len
, params
->seq
,
355 key
->conf
.flags
|= IEEE80211_KEY_FLAG_PAIRWISE
;
357 mutex_lock(&local
->sta_mtx
);
360 sta
= sta_info_get_bss(sdata
, mac_addr
);
362 * The ASSOC test makes sure the driver is ready to
363 * receive the key. When wpa_supplicant has roamed
364 * using FT, it attempts to set the key before
365 * association has completed, this rejects that attempt
366 * so it will set the key again after association.
368 * TODO: accept the key if we have a station entry and
369 * add it to the device after the station.
371 if (!sta
|| !test_sta_flag(sta
, WLAN_STA_ASSOC
)) {
372 ieee80211_key_free_unused(key
);
378 switch (sdata
->vif
.type
) {
379 case NL80211_IFTYPE_STATION
:
380 if (sdata
->u
.mgd
.mfp
!= IEEE80211_MFP_DISABLED
)
381 key
->conf
.flags
|= IEEE80211_KEY_FLAG_RX_MGMT
;
383 case NL80211_IFTYPE_AP
:
384 case NL80211_IFTYPE_AP_VLAN
:
385 /* Keys without a station are used for TX only */
386 if (key
->sta
&& test_sta_flag(key
->sta
, WLAN_STA_MFP
))
387 key
->conf
.flags
|= IEEE80211_KEY_FLAG_RX_MGMT
;
389 case NL80211_IFTYPE_ADHOC
:
392 case NL80211_IFTYPE_MESH_POINT
:
393 #ifdef CONFIG_MAC80211_MESH
394 if (sdata
->u
.mesh
.security
!= IEEE80211_MESH_SEC_NONE
)
395 key
->conf
.flags
|= IEEE80211_KEY_FLAG_RX_MGMT
;
398 case NL80211_IFTYPE_WDS
:
399 case NL80211_IFTYPE_MONITOR
:
400 case NL80211_IFTYPE_P2P_DEVICE
:
401 case NL80211_IFTYPE_NAN
:
402 case NL80211_IFTYPE_UNSPECIFIED
:
403 case NUM_NL80211_IFTYPES
:
404 case NL80211_IFTYPE_P2P_CLIENT
:
405 case NL80211_IFTYPE_P2P_GO
:
406 case NL80211_IFTYPE_OCB
:
407 /* shouldn't happen */
413 sta
->cipher_scheme
= cs
;
415 err
= ieee80211_key_link(key
, sdata
, sta
);
418 mutex_unlock(&local
->sta_mtx
);
423 static int ieee80211_del_key(struct wiphy
*wiphy
, struct net_device
*dev
,
424 u8 key_idx
, bool pairwise
, const u8
*mac_addr
)
426 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
427 struct ieee80211_local
*local
= sdata
->local
;
428 struct sta_info
*sta
;
429 struct ieee80211_key
*key
= NULL
;
432 mutex_lock(&local
->sta_mtx
);
433 mutex_lock(&local
->key_mtx
);
438 sta
= sta_info_get_bss(sdata
, mac_addr
);
443 key
= key_mtx_dereference(local
, sta
->ptk
[key_idx
]);
445 key
= key_mtx_dereference(local
, sta
->gtk
[key_idx
]);
447 key
= key_mtx_dereference(local
, sdata
->keys
[key_idx
]);
454 ieee80211_key_free(key
, true);
458 mutex_unlock(&local
->key_mtx
);
459 mutex_unlock(&local
->sta_mtx
);
464 static int ieee80211_get_key(struct wiphy
*wiphy
, struct net_device
*dev
,
465 u8 key_idx
, bool pairwise
, const u8
*mac_addr
,
467 void (*callback
)(void *cookie
,
468 struct key_params
*params
))
470 struct ieee80211_sub_if_data
*sdata
;
471 struct sta_info
*sta
= NULL
;
473 struct key_params params
;
474 struct ieee80211_key
*key
= NULL
;
479 struct ieee80211_key_seq kseq
= {};
481 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
486 sta
= sta_info_get_bss(sdata
, mac_addr
);
490 if (pairwise
&& key_idx
< NUM_DEFAULT_KEYS
)
491 key
= rcu_dereference(sta
->ptk
[key_idx
]);
492 else if (!pairwise
&&
493 key_idx
< NUM_DEFAULT_KEYS
+ NUM_DEFAULT_MGMT_KEYS
)
494 key
= rcu_dereference(sta
->gtk
[key_idx
]);
496 key
= rcu_dereference(sdata
->keys
[key_idx
]);
501 memset(¶ms
, 0, sizeof(params
));
503 params
.cipher
= key
->conf
.cipher
;
505 switch (key
->conf
.cipher
) {
506 case WLAN_CIPHER_SUITE_TKIP
:
507 pn64
= atomic64_read(&key
->conf
.tx_pn
);
508 iv32
= TKIP_PN_TO_IV32(pn64
);
509 iv16
= TKIP_PN_TO_IV16(pn64
);
511 if (key
->flags
& KEY_FLAG_UPLOADED_TO_HARDWARE
&&
512 !(key
->conf
.flags
& IEEE80211_KEY_FLAG_GENERATE_IV
)) {
513 drv_get_key_seq(sdata
->local
, key
, &kseq
);
514 iv32
= kseq
.tkip
.iv32
;
515 iv16
= kseq
.tkip
.iv16
;
518 seq
[0] = iv16
& 0xff;
519 seq
[1] = (iv16
>> 8) & 0xff;
520 seq
[2] = iv32
& 0xff;
521 seq
[3] = (iv32
>> 8) & 0xff;
522 seq
[4] = (iv32
>> 16) & 0xff;
523 seq
[5] = (iv32
>> 24) & 0xff;
527 case WLAN_CIPHER_SUITE_CCMP
:
528 case WLAN_CIPHER_SUITE_CCMP_256
:
529 case WLAN_CIPHER_SUITE_AES_CMAC
:
530 case WLAN_CIPHER_SUITE_BIP_CMAC_256
:
531 BUILD_BUG_ON(offsetof(typeof(kseq
), ccmp
) !=
532 offsetof(typeof(kseq
), aes_cmac
));
533 case WLAN_CIPHER_SUITE_BIP_GMAC_128
:
534 case WLAN_CIPHER_SUITE_BIP_GMAC_256
:
535 BUILD_BUG_ON(offsetof(typeof(kseq
), ccmp
) !=
536 offsetof(typeof(kseq
), aes_gmac
));
537 case WLAN_CIPHER_SUITE_GCMP
:
538 case WLAN_CIPHER_SUITE_GCMP_256
:
539 BUILD_BUG_ON(offsetof(typeof(kseq
), ccmp
) !=
540 offsetof(typeof(kseq
), gcmp
));
542 if (key
->flags
& KEY_FLAG_UPLOADED_TO_HARDWARE
&&
543 !(key
->conf
.flags
& IEEE80211_KEY_FLAG_GENERATE_IV
)) {
544 drv_get_key_seq(sdata
->local
, key
, &kseq
);
545 memcpy(seq
, kseq
.ccmp
.pn
, 6);
547 pn64
= atomic64_read(&key
->conf
.tx_pn
);
559 if (!(key
->flags
& KEY_FLAG_UPLOADED_TO_HARDWARE
))
561 if (WARN_ON(key
->conf
.flags
& IEEE80211_KEY_FLAG_GENERATE_IV
))
563 drv_get_key_seq(sdata
->local
, key
, &kseq
);
564 params
.seq
= kseq
.hw
.seq
;
565 params
.seq_len
= kseq
.hw
.seq_len
;
569 params
.key
= key
->conf
.key
;
570 params
.key_len
= key
->conf
.keylen
;
572 callback(cookie
, ¶ms
);
580 static int ieee80211_config_default_key(struct wiphy
*wiphy
,
581 struct net_device
*dev
,
582 u8 key_idx
, bool uni
,
585 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
587 ieee80211_set_default_key(sdata
, key_idx
, uni
, multi
);
592 static int ieee80211_config_default_mgmt_key(struct wiphy
*wiphy
,
593 struct net_device
*dev
,
596 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
598 ieee80211_set_default_mgmt_key(sdata
, key_idx
);
603 void sta_set_rate_info_tx(struct sta_info
*sta
,
604 const struct ieee80211_tx_rate
*rate
,
605 struct rate_info
*rinfo
)
608 if (rate
->flags
& IEEE80211_TX_RC_MCS
) {
609 rinfo
->flags
|= RATE_INFO_FLAGS_MCS
;
610 rinfo
->mcs
= rate
->idx
;
611 } else if (rate
->flags
& IEEE80211_TX_RC_VHT_MCS
) {
612 rinfo
->flags
|= RATE_INFO_FLAGS_VHT_MCS
;
613 rinfo
->mcs
= ieee80211_rate_get_vht_mcs(rate
);
614 rinfo
->nss
= ieee80211_rate_get_vht_nss(rate
);
616 struct ieee80211_supported_band
*sband
;
617 int shift
= ieee80211_vif_get_shift(&sta
->sdata
->vif
);
620 sband
= sta
->local
->hw
.wiphy
->bands
[
621 ieee80211_get_sdata_band(sta
->sdata
)];
622 brate
= sband
->bitrates
[rate
->idx
].bitrate
;
623 rinfo
->legacy
= DIV_ROUND_UP(brate
, 1 << shift
);
625 if (rate
->flags
& IEEE80211_TX_RC_40_MHZ_WIDTH
)
626 rinfo
->bw
= RATE_INFO_BW_40
;
627 else if (rate
->flags
& IEEE80211_TX_RC_80_MHZ_WIDTH
)
628 rinfo
->bw
= RATE_INFO_BW_80
;
629 else if (rate
->flags
& IEEE80211_TX_RC_160_MHZ_WIDTH
)
630 rinfo
->bw
= RATE_INFO_BW_160
;
632 rinfo
->bw
= RATE_INFO_BW_20
;
633 if (rate
->flags
& IEEE80211_TX_RC_SHORT_GI
)
634 rinfo
->flags
|= RATE_INFO_FLAGS_SHORT_GI
;
637 static int ieee80211_dump_station(struct wiphy
*wiphy
, struct net_device
*dev
,
638 int idx
, u8
*mac
, struct station_info
*sinfo
)
640 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
641 struct ieee80211_local
*local
= sdata
->local
;
642 struct sta_info
*sta
;
645 mutex_lock(&local
->sta_mtx
);
647 sta
= sta_info_get_by_idx(sdata
, idx
);
650 memcpy(mac
, sta
->sta
.addr
, ETH_ALEN
);
651 sta_set_sinfo(sta
, sinfo
);
654 mutex_unlock(&local
->sta_mtx
);
659 static int ieee80211_dump_survey(struct wiphy
*wiphy
, struct net_device
*dev
,
660 int idx
, struct survey_info
*survey
)
662 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
664 return drv_get_survey(local
, idx
, survey
);
667 static int ieee80211_get_station(struct wiphy
*wiphy
, struct net_device
*dev
,
668 const u8
*mac
, struct station_info
*sinfo
)
670 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
671 struct ieee80211_local
*local
= sdata
->local
;
672 struct sta_info
*sta
;
675 mutex_lock(&local
->sta_mtx
);
677 sta
= sta_info_get_bss(sdata
, mac
);
680 sta_set_sinfo(sta
, sinfo
);
683 mutex_unlock(&local
->sta_mtx
);
688 static int ieee80211_set_monitor_channel(struct wiphy
*wiphy
,
689 struct cfg80211_chan_def
*chandef
)
691 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
692 struct ieee80211_sub_if_data
*sdata
;
695 if (cfg80211_chandef_identical(&local
->monitor_chandef
, chandef
))
698 mutex_lock(&local
->mtx
);
699 mutex_lock(&local
->iflist_mtx
);
700 if (local
->use_chanctx
) {
701 sdata
= rcu_dereference_protected(
702 local
->monitor_sdata
,
703 lockdep_is_held(&local
->iflist_mtx
));
705 ieee80211_vif_release_channel(sdata
);
706 ret
= ieee80211_vif_use_channel(sdata
, chandef
,
707 IEEE80211_CHANCTX_EXCLUSIVE
);
709 } else if (local
->open_count
== local
->monitors
) {
710 local
->_oper_chandef
= *chandef
;
711 ieee80211_hw_config(local
, 0);
715 local
->monitor_chandef
= *chandef
;
716 mutex_unlock(&local
->iflist_mtx
);
717 mutex_unlock(&local
->mtx
);
722 static int ieee80211_set_probe_resp(struct ieee80211_sub_if_data
*sdata
,
723 const u8
*resp
, size_t resp_len
,
724 const struct ieee80211_csa_settings
*csa
)
726 struct probe_resp
*new, *old
;
728 if (!resp
|| !resp_len
)
731 old
= sdata_dereference(sdata
->u
.ap
.probe_resp
, sdata
);
733 new = kzalloc(sizeof(struct probe_resp
) + resp_len
, GFP_KERNEL
);
738 memcpy(new->data
, resp
, resp_len
);
741 memcpy(new->csa_counter_offsets
, csa
->counter_offsets_presp
,
742 csa
->n_counter_offsets_presp
*
743 sizeof(new->csa_counter_offsets
[0]));
745 rcu_assign_pointer(sdata
->u
.ap
.probe_resp
, new);
747 kfree_rcu(old
, rcu_head
);
752 static int ieee80211_assign_beacon(struct ieee80211_sub_if_data
*sdata
,
753 struct cfg80211_beacon_data
*params
,
754 const struct ieee80211_csa_settings
*csa
)
756 struct beacon_data
*new, *old
;
757 int new_head_len
, new_tail_len
;
759 u32 changed
= BSS_CHANGED_BEACON
;
761 old
= sdata_dereference(sdata
->u
.ap
.beacon
, sdata
);
764 /* Need to have a beacon head if we don't have one yet */
765 if (!params
->head
&& !old
)
768 /* new or old head? */
770 new_head_len
= params
->head_len
;
772 new_head_len
= old
->head_len
;
774 /* new or old tail? */
775 if (params
->tail
|| !old
)
776 /* params->tail_len will be zero for !params->tail */
777 new_tail_len
= params
->tail_len
;
779 new_tail_len
= old
->tail_len
;
781 size
= sizeof(*new) + new_head_len
+ new_tail_len
;
783 new = kzalloc(size
, GFP_KERNEL
);
787 /* start filling the new info now */
790 * pointers go into the block we allocated,
791 * memory is | beacon_data | head | tail |
793 new->head
= ((u8
*) new) + sizeof(*new);
794 new->tail
= new->head
+ new_head_len
;
795 new->head_len
= new_head_len
;
796 new->tail_len
= new_tail_len
;
799 new->csa_current_counter
= csa
->count
;
800 memcpy(new->csa_counter_offsets
, csa
->counter_offsets_beacon
,
801 csa
->n_counter_offsets_beacon
*
802 sizeof(new->csa_counter_offsets
[0]));
807 memcpy(new->head
, params
->head
, new_head_len
);
809 memcpy(new->head
, old
->head
, new_head_len
);
811 /* copy in optional tail */
813 memcpy(new->tail
, params
->tail
, new_tail_len
);
816 memcpy(new->tail
, old
->tail
, new_tail_len
);
818 err
= ieee80211_set_probe_resp(sdata
, params
->probe_resp
,
819 params
->probe_resp_len
, csa
);
823 changed
|= BSS_CHANGED_AP_PROBE_RESP
;
825 rcu_assign_pointer(sdata
->u
.ap
.beacon
, new);
828 kfree_rcu(old
, rcu_head
);
833 static int ieee80211_start_ap(struct wiphy
*wiphy
, struct net_device
*dev
,
834 struct cfg80211_ap_settings
*params
)
836 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
837 struct ieee80211_local
*local
= sdata
->local
;
838 struct beacon_data
*old
;
839 struct ieee80211_sub_if_data
*vlan
;
840 u32 changed
= BSS_CHANGED_BEACON_INT
|
841 BSS_CHANGED_BEACON_ENABLED
|
848 old
= sdata_dereference(sdata
->u
.ap
.beacon
, sdata
);
852 switch (params
->smps_mode
) {
853 case NL80211_SMPS_OFF
:
854 sdata
->smps_mode
= IEEE80211_SMPS_OFF
;
856 case NL80211_SMPS_STATIC
:
857 sdata
->smps_mode
= IEEE80211_SMPS_STATIC
;
859 case NL80211_SMPS_DYNAMIC
:
860 sdata
->smps_mode
= IEEE80211_SMPS_DYNAMIC
;
865 sdata
->needed_rx_chains
= sdata
->local
->rx_chains
;
867 sdata
->vif
.bss_conf
.beacon_int
= params
->beacon_interval
;
869 mutex_lock(&local
->mtx
);
870 err
= ieee80211_vif_use_channel(sdata
, ¶ms
->chandef
,
871 IEEE80211_CHANCTX_SHARED
);
873 ieee80211_vif_copy_chanctx_to_vlans(sdata
, false);
874 mutex_unlock(&local
->mtx
);
879 * Apply control port protocol, this allows us to
880 * not encrypt dynamic WEP control frames.
882 sdata
->control_port_protocol
= params
->crypto
.control_port_ethertype
;
883 sdata
->control_port_no_encrypt
= params
->crypto
.control_port_no_encrypt
;
884 sdata
->encrypt_headroom
= ieee80211_cs_headroom(sdata
->local
,
888 list_for_each_entry(vlan
, &sdata
->u
.ap
.vlans
, u
.vlan
.list
) {
889 vlan
->control_port_protocol
=
890 params
->crypto
.control_port_ethertype
;
891 vlan
->control_port_no_encrypt
=
892 params
->crypto
.control_port_no_encrypt
;
893 vlan
->encrypt_headroom
=
894 ieee80211_cs_headroom(sdata
->local
,
899 sdata
->vif
.bss_conf
.dtim_period
= params
->dtim_period
;
900 sdata
->vif
.bss_conf
.enable_beacon
= true;
901 sdata
->vif
.bss_conf
.allow_p2p_go_ps
= sdata
->vif
.p2p
;
903 sdata
->vif
.bss_conf
.ssid_len
= params
->ssid_len
;
904 if (params
->ssid_len
)
905 memcpy(sdata
->vif
.bss_conf
.ssid
, params
->ssid
,
907 sdata
->vif
.bss_conf
.hidden_ssid
=
908 (params
->hidden_ssid
!= NL80211_HIDDEN_SSID_NOT_IN_USE
);
910 memset(&sdata
->vif
.bss_conf
.p2p_noa_attr
, 0,
911 sizeof(sdata
->vif
.bss_conf
.p2p_noa_attr
));
912 sdata
->vif
.bss_conf
.p2p_noa_attr
.oppps_ctwindow
=
913 params
->p2p_ctwindow
& IEEE80211_P2P_OPPPS_CTWINDOW_MASK
;
914 if (params
->p2p_opp_ps
)
915 sdata
->vif
.bss_conf
.p2p_noa_attr
.oppps_ctwindow
|=
916 IEEE80211_P2P_OPPPS_ENABLE_BIT
;
918 err
= ieee80211_assign_beacon(sdata
, ¶ms
->beacon
, NULL
);
920 ieee80211_vif_release_channel(sdata
);
925 err
= drv_start_ap(sdata
->local
, sdata
);
927 old
= sdata_dereference(sdata
->u
.ap
.beacon
, sdata
);
930 kfree_rcu(old
, rcu_head
);
931 RCU_INIT_POINTER(sdata
->u
.ap
.beacon
, NULL
);
932 ieee80211_vif_release_channel(sdata
);
936 ieee80211_recalc_dtim(local
, sdata
);
937 ieee80211_bss_info_change_notify(sdata
, changed
);
939 netif_carrier_on(dev
);
940 list_for_each_entry(vlan
, &sdata
->u
.ap
.vlans
, u
.vlan
.list
)
941 netif_carrier_on(vlan
->dev
);
946 static int ieee80211_change_beacon(struct wiphy
*wiphy
, struct net_device
*dev
,
947 struct cfg80211_beacon_data
*params
)
949 struct ieee80211_sub_if_data
*sdata
;
950 struct beacon_data
*old
;
953 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
954 sdata_assert_lock(sdata
);
956 /* don't allow changing the beacon while CSA is in place - offset
957 * of channel switch counter may change
959 if (sdata
->vif
.csa_active
)
962 old
= sdata_dereference(sdata
->u
.ap
.beacon
, sdata
);
966 err
= ieee80211_assign_beacon(sdata
, params
, NULL
);
969 ieee80211_bss_info_change_notify(sdata
, err
);
973 static int ieee80211_stop_ap(struct wiphy
*wiphy
, struct net_device
*dev
)
975 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
976 struct ieee80211_sub_if_data
*vlan
;
977 struct ieee80211_local
*local
= sdata
->local
;
978 struct beacon_data
*old_beacon
;
979 struct probe_resp
*old_probe_resp
;
980 struct cfg80211_chan_def chandef
;
982 sdata_assert_lock(sdata
);
984 old_beacon
= sdata_dereference(sdata
->u
.ap
.beacon
, sdata
);
987 old_probe_resp
= sdata_dereference(sdata
->u
.ap
.probe_resp
, sdata
);
989 /* abort any running channel switch */
990 mutex_lock(&local
->mtx
);
991 sdata
->vif
.csa_active
= false;
992 if (sdata
->csa_block_tx
) {
993 ieee80211_wake_vif_queues(local
, sdata
,
994 IEEE80211_QUEUE_STOP_REASON_CSA
);
995 sdata
->csa_block_tx
= false;
998 mutex_unlock(&local
->mtx
);
1000 kfree(sdata
->u
.ap
.next_beacon
);
1001 sdata
->u
.ap
.next_beacon
= NULL
;
1003 /* turn off carrier for this interface and dependent VLANs */
1004 list_for_each_entry(vlan
, &sdata
->u
.ap
.vlans
, u
.vlan
.list
)
1005 netif_carrier_off(vlan
->dev
);
1006 netif_carrier_off(dev
);
1008 /* remove beacon and probe response */
1009 RCU_INIT_POINTER(sdata
->u
.ap
.beacon
, NULL
);
1010 RCU_INIT_POINTER(sdata
->u
.ap
.probe_resp
, NULL
);
1011 kfree_rcu(old_beacon
, rcu_head
);
1013 kfree_rcu(old_probe_resp
, rcu_head
);
1014 sdata
->u
.ap
.driver_smps_mode
= IEEE80211_SMPS_OFF
;
1016 __sta_info_flush(sdata
, true);
1017 ieee80211_free_keys(sdata
, true);
1019 sdata
->vif
.bss_conf
.enable_beacon
= false;
1020 sdata
->vif
.bss_conf
.ssid_len
= 0;
1021 clear_bit(SDATA_STATE_OFFCHANNEL_BEACON_STOPPED
, &sdata
->state
);
1022 ieee80211_bss_info_change_notify(sdata
, BSS_CHANGED_BEACON_ENABLED
);
1024 if (sdata
->wdev
.cac_started
) {
1025 chandef
= sdata
->vif
.bss_conf
.chandef
;
1026 cancel_delayed_work_sync(&sdata
->dfs_cac_timer_work
);
1027 cfg80211_cac_event(sdata
->dev
, &chandef
,
1028 NL80211_RADAR_CAC_ABORTED
,
1032 drv_stop_ap(sdata
->local
, sdata
);
1034 /* free all potentially still buffered bcast frames */
1035 local
->total_ps_buffered
-= skb_queue_len(&sdata
->u
.ap
.ps
.bc_buf
);
1036 ieee80211_purge_tx_queue(&local
->hw
, &sdata
->u
.ap
.ps
.bc_buf
);
1038 mutex_lock(&local
->mtx
);
1039 ieee80211_vif_copy_chanctx_to_vlans(sdata
, true);
1040 ieee80211_vif_release_channel(sdata
);
1041 mutex_unlock(&local
->mtx
);
1046 /* Layer 2 Update frame (802.2 Type 1 LLC XID Update response) */
1047 struct iapp_layer2_update
{
1048 u8 da
[ETH_ALEN
]; /* broadcast */
1049 u8 sa
[ETH_ALEN
]; /* STA addr */
1057 static void ieee80211_send_layer2_update(struct sta_info
*sta
)
1059 struct iapp_layer2_update
*msg
;
1060 struct sk_buff
*skb
;
1062 /* Send Level 2 Update Frame to update forwarding tables in layer 2
1065 skb
= dev_alloc_skb(sizeof(*msg
));
1068 msg
= (struct iapp_layer2_update
*)skb_put(skb
, sizeof(*msg
));
1070 /* 802.2 Type 1 Logical Link Control (LLC) Exchange Identifier (XID)
1071 * Update response frame; IEEE Std 802.2-1998, 5.4.1.2.1 */
1073 eth_broadcast_addr(msg
->da
);
1074 memcpy(msg
->sa
, sta
->sta
.addr
, ETH_ALEN
);
1075 msg
->len
= htons(6);
1077 msg
->ssap
= 0x01; /* NULL LSAP, CR Bit: Response */
1078 msg
->control
= 0xaf; /* XID response lsb.1111F101.
1079 * F=0 (no poll command; unsolicited frame) */
1080 msg
->xid_info
[0] = 0x81; /* XID format identifier */
1081 msg
->xid_info
[1] = 1; /* LLC types/classes: Type 1 LLC */
1082 msg
->xid_info
[2] = 0; /* XID sender's receive window size (RW) */
1084 skb
->dev
= sta
->sdata
->dev
;
1085 skb
->protocol
= eth_type_trans(skb
, sta
->sdata
->dev
);
1086 memset(skb
->cb
, 0, sizeof(skb
->cb
));
1090 static int sta_apply_auth_flags(struct ieee80211_local
*local
,
1091 struct sta_info
*sta
,
1096 if (mask
& BIT(NL80211_STA_FLAG_AUTHENTICATED
) &&
1097 set
& BIT(NL80211_STA_FLAG_AUTHENTICATED
) &&
1098 !test_sta_flag(sta
, WLAN_STA_AUTH
)) {
1099 ret
= sta_info_move_state(sta
, IEEE80211_STA_AUTH
);
1104 if (mask
& BIT(NL80211_STA_FLAG_ASSOCIATED
) &&
1105 set
& BIT(NL80211_STA_FLAG_ASSOCIATED
) &&
1106 !test_sta_flag(sta
, WLAN_STA_ASSOC
)) {
1108 * When peer becomes associated, init rate control as
1109 * well. Some drivers require rate control initialized
1110 * before drv_sta_state() is called.
1112 if (!test_sta_flag(sta
, WLAN_STA_RATE_CONTROL
))
1113 rate_control_rate_init(sta
);
1115 ret
= sta_info_move_state(sta
, IEEE80211_STA_ASSOC
);
1120 if (mask
& BIT(NL80211_STA_FLAG_AUTHORIZED
)) {
1121 if (set
& BIT(NL80211_STA_FLAG_AUTHORIZED
))
1122 ret
= sta_info_move_state(sta
, IEEE80211_STA_AUTHORIZED
);
1123 else if (test_sta_flag(sta
, WLAN_STA_AUTHORIZED
))
1124 ret
= sta_info_move_state(sta
, IEEE80211_STA_ASSOC
);
1131 if (mask
& BIT(NL80211_STA_FLAG_ASSOCIATED
) &&
1132 !(set
& BIT(NL80211_STA_FLAG_ASSOCIATED
)) &&
1133 test_sta_flag(sta
, WLAN_STA_ASSOC
)) {
1134 ret
= sta_info_move_state(sta
, IEEE80211_STA_AUTH
);
1139 if (mask
& BIT(NL80211_STA_FLAG_AUTHENTICATED
) &&
1140 !(set
& BIT(NL80211_STA_FLAG_AUTHENTICATED
)) &&
1141 test_sta_flag(sta
, WLAN_STA_AUTH
)) {
1142 ret
= sta_info_move_state(sta
, IEEE80211_STA_NONE
);
1150 static void sta_apply_mesh_params(struct ieee80211_local
*local
,
1151 struct sta_info
*sta
,
1152 struct station_parameters
*params
)
1154 #ifdef CONFIG_MAC80211_MESH
1155 struct ieee80211_sub_if_data
*sdata
= sta
->sdata
;
1158 if (params
->sta_modify_mask
& STATION_PARAM_APPLY_PLINK_STATE
) {
1159 switch (params
->plink_state
) {
1160 case NL80211_PLINK_ESTAB
:
1161 if (sta
->mesh
->plink_state
!= NL80211_PLINK_ESTAB
)
1162 changed
= mesh_plink_inc_estab_count(sdata
);
1163 sta
->mesh
->plink_state
= params
->plink_state
;
1164 sta
->mesh
->aid
= params
->peer_aid
;
1166 ieee80211_mps_sta_status_update(sta
);
1167 changed
|= ieee80211_mps_set_sta_local_pm(sta
,
1168 sdata
->u
.mesh
.mshcfg
.power_mode
);
1170 case NL80211_PLINK_LISTEN
:
1171 case NL80211_PLINK_BLOCKED
:
1172 case NL80211_PLINK_OPN_SNT
:
1173 case NL80211_PLINK_OPN_RCVD
:
1174 case NL80211_PLINK_CNF_RCVD
:
1175 case NL80211_PLINK_HOLDING
:
1176 if (sta
->mesh
->plink_state
== NL80211_PLINK_ESTAB
)
1177 changed
= mesh_plink_dec_estab_count(sdata
);
1178 sta
->mesh
->plink_state
= params
->plink_state
;
1180 ieee80211_mps_sta_status_update(sta
);
1181 changed
|= ieee80211_mps_set_sta_local_pm(sta
,
1182 NL80211_MESH_POWER_UNKNOWN
);
1190 switch (params
->plink_action
) {
1191 case NL80211_PLINK_ACTION_NO_ACTION
:
1194 case NL80211_PLINK_ACTION_OPEN
:
1195 changed
|= mesh_plink_open(sta
);
1197 case NL80211_PLINK_ACTION_BLOCK
:
1198 changed
|= mesh_plink_block(sta
);
1202 if (params
->local_pm
)
1203 changed
|= ieee80211_mps_set_sta_local_pm(sta
,
1206 ieee80211_mbss_info_change_notify(sdata
, changed
);
1210 static int sta_apply_parameters(struct ieee80211_local
*local
,
1211 struct sta_info
*sta
,
1212 struct station_parameters
*params
)
1215 struct ieee80211_supported_band
*sband
;
1216 struct ieee80211_sub_if_data
*sdata
= sta
->sdata
;
1217 enum nl80211_band band
= ieee80211_get_sdata_band(sdata
);
1220 sband
= local
->hw
.wiphy
->bands
[band
];
1222 mask
= params
->sta_flags_mask
;
1223 set
= params
->sta_flags_set
;
1225 if (ieee80211_vif_is_mesh(&sdata
->vif
)) {
1227 * In mesh mode, ASSOCIATED isn't part of the nl80211
1228 * API but must follow AUTHENTICATED for driver state.
1230 if (mask
& BIT(NL80211_STA_FLAG_AUTHENTICATED
))
1231 mask
|= BIT(NL80211_STA_FLAG_ASSOCIATED
);
1232 if (set
& BIT(NL80211_STA_FLAG_AUTHENTICATED
))
1233 set
|= BIT(NL80211_STA_FLAG_ASSOCIATED
);
1234 } else if (test_sta_flag(sta
, WLAN_STA_TDLS_PEER
)) {
1236 * TDLS -- everything follows authorized, but
1237 * only becoming authorized is possible, not
1240 if (set
& BIT(NL80211_STA_FLAG_AUTHORIZED
)) {
1241 set
|= BIT(NL80211_STA_FLAG_AUTHENTICATED
) |
1242 BIT(NL80211_STA_FLAG_ASSOCIATED
);
1243 mask
|= BIT(NL80211_STA_FLAG_AUTHENTICATED
) |
1244 BIT(NL80211_STA_FLAG_ASSOCIATED
);
1248 if (mask
& BIT(NL80211_STA_FLAG_WME
) &&
1249 local
->hw
.queues
>= IEEE80211_NUM_ACS
)
1250 sta
->sta
.wme
= set
& BIT(NL80211_STA_FLAG_WME
);
1252 /* auth flags will be set later for TDLS,
1253 * and for unassociated stations that move to assocaited */
1254 if (!test_sta_flag(sta
, WLAN_STA_TDLS_PEER
) &&
1255 !((mask
& BIT(NL80211_STA_FLAG_ASSOCIATED
)) &&
1256 (set
& BIT(NL80211_STA_FLAG_ASSOCIATED
)))) {
1257 ret
= sta_apply_auth_flags(local
, sta
, mask
, set
);
1262 if (mask
& BIT(NL80211_STA_FLAG_SHORT_PREAMBLE
)) {
1263 if (set
& BIT(NL80211_STA_FLAG_SHORT_PREAMBLE
))
1264 set_sta_flag(sta
, WLAN_STA_SHORT_PREAMBLE
);
1266 clear_sta_flag(sta
, WLAN_STA_SHORT_PREAMBLE
);
1269 if (mask
& BIT(NL80211_STA_FLAG_MFP
)) {
1270 sta
->sta
.mfp
= !!(set
& BIT(NL80211_STA_FLAG_MFP
));
1271 if (set
& BIT(NL80211_STA_FLAG_MFP
))
1272 set_sta_flag(sta
, WLAN_STA_MFP
);
1274 clear_sta_flag(sta
, WLAN_STA_MFP
);
1277 if (mask
& BIT(NL80211_STA_FLAG_TDLS_PEER
)) {
1278 if (set
& BIT(NL80211_STA_FLAG_TDLS_PEER
))
1279 set_sta_flag(sta
, WLAN_STA_TDLS_PEER
);
1281 clear_sta_flag(sta
, WLAN_STA_TDLS_PEER
);
1284 /* mark TDLS channel switch support, if the AP allows it */
1285 if (test_sta_flag(sta
, WLAN_STA_TDLS_PEER
) &&
1286 !sdata
->u
.mgd
.tdls_chan_switch_prohibited
&&
1287 params
->ext_capab_len
>= 4 &&
1288 params
->ext_capab
[3] & WLAN_EXT_CAPA4_TDLS_CHAN_SWITCH
)
1289 set_sta_flag(sta
, WLAN_STA_TDLS_CHAN_SWITCH
);
1291 if (test_sta_flag(sta
, WLAN_STA_TDLS_PEER
) &&
1292 !sdata
->u
.mgd
.tdls_wider_bw_prohibited
&&
1293 ieee80211_hw_check(&local
->hw
, TDLS_WIDER_BW
) &&
1294 params
->ext_capab_len
>= 8 &&
1295 params
->ext_capab
[7] & WLAN_EXT_CAPA8_TDLS_WIDE_BW_ENABLED
)
1296 set_sta_flag(sta
, WLAN_STA_TDLS_WIDER_BW
);
1298 if (params
->sta_modify_mask
& STATION_PARAM_APPLY_UAPSD
) {
1299 sta
->sta
.uapsd_queues
= params
->uapsd_queues
;
1300 sta
->sta
.max_sp
= params
->max_sp
;
1303 /* The sender might not have sent the last bit, consider it to be 0 */
1304 if (params
->ext_capab_len
>= 8) {
1305 u8 val
= (params
->ext_capab
[7] &
1306 WLAN_EXT_CAPA8_MAX_MSDU_IN_AMSDU_LSB
) >> 7;
1308 /* we did get all the bits, take the MSB as well */
1309 if (params
->ext_capab_len
>= 9) {
1310 u8 val_msb
= params
->ext_capab
[8] &
1311 WLAN_EXT_CAPA9_MAX_MSDU_IN_AMSDU_MSB
;
1318 sta
->sta
.max_amsdu_subframes
= 32;
1321 sta
->sta
.max_amsdu_subframes
= 16;
1324 sta
->sta
.max_amsdu_subframes
= 8;
1327 sta
->sta
.max_amsdu_subframes
= 0;
1332 * cfg80211 validates this (1-2007) and allows setting the AID
1333 * only when creating a new station entry
1336 sta
->sta
.aid
= params
->aid
;
1339 * Some of the following updates would be racy if called on an
1340 * existing station, via ieee80211_change_station(). However,
1341 * all such changes are rejected by cfg80211 except for updates
1342 * changing the supported rates on an existing but not yet used
1346 if (params
->listen_interval
>= 0)
1347 sta
->listen_interval
= params
->listen_interval
;
1349 if (params
->supported_rates
) {
1350 ieee80211_parse_bitrates(&sdata
->vif
.bss_conf
.chandef
,
1351 sband
, params
->supported_rates
,
1352 params
->supported_rates_len
,
1353 &sta
->sta
.supp_rates
[band
]);
1356 if (params
->ht_capa
)
1357 ieee80211_ht_cap_ie_to_sta_ht_cap(sdata
, sband
,
1358 params
->ht_capa
, sta
);
1360 /* VHT can override some HT caps such as the A-MSDU max length */
1361 if (params
->vht_capa
)
1362 ieee80211_vht_cap_ie_to_sta_vht_cap(sdata
, sband
,
1363 params
->vht_capa
, sta
);
1365 if (params
->opmode_notif_used
) {
1366 /* returned value is only needed for rc update, but the
1367 * rc isn't initialized here yet, so ignore it
1369 __ieee80211_vht_handle_opmode(sdata
, sta
,
1370 params
->opmode_notif
, band
);
1373 if (params
->support_p2p_ps
>= 0)
1374 sta
->sta
.support_p2p_ps
= params
->support_p2p_ps
;
1376 if (ieee80211_vif_is_mesh(&sdata
->vif
))
1377 sta_apply_mesh_params(local
, sta
, params
);
1379 /* set the STA state after all sta info from usermode has been set */
1380 if (test_sta_flag(sta
, WLAN_STA_TDLS_PEER
) ||
1381 set
& BIT(NL80211_STA_FLAG_ASSOCIATED
)) {
1382 ret
= sta_apply_auth_flags(local
, sta
, mask
, set
);
1390 static int ieee80211_add_station(struct wiphy
*wiphy
, struct net_device
*dev
,
1392 struct station_parameters
*params
)
1394 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
1395 struct sta_info
*sta
;
1396 struct ieee80211_sub_if_data
*sdata
;
1401 sdata
= IEEE80211_DEV_TO_SUB_IF(params
->vlan
);
1403 if (sdata
->vif
.type
!= NL80211_IFTYPE_AP_VLAN
&&
1404 sdata
->vif
.type
!= NL80211_IFTYPE_AP
)
1407 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1409 if (ether_addr_equal(mac
, sdata
->vif
.addr
))
1412 if (is_multicast_ether_addr(mac
))
1415 sta
= sta_info_alloc(sdata
, mac
, GFP_KERNEL
);
1419 if (params
->sta_flags_set
& BIT(NL80211_STA_FLAG_TDLS_PEER
))
1420 sta
->sta
.tdls
= true;
1422 err
= sta_apply_parameters(local
, sta
, params
);
1424 sta_info_free(local
, sta
);
1429 * for TDLS and for unassociated station, rate control should be
1430 * initialized only when rates are known and station is marked
1431 * authorized/associated
1433 if (!test_sta_flag(sta
, WLAN_STA_TDLS_PEER
) &&
1434 test_sta_flag(sta
, WLAN_STA_ASSOC
))
1435 rate_control_rate_init(sta
);
1437 layer2_update
= sdata
->vif
.type
== NL80211_IFTYPE_AP_VLAN
||
1438 sdata
->vif
.type
== NL80211_IFTYPE_AP
;
1440 err
= sta_info_insert_rcu(sta
);
1447 ieee80211_send_layer2_update(sta
);
1454 static int ieee80211_del_station(struct wiphy
*wiphy
, struct net_device
*dev
,
1455 struct station_del_parameters
*params
)
1457 struct ieee80211_sub_if_data
*sdata
;
1459 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1462 return sta_info_destroy_addr_bss(sdata
, params
->mac
);
1464 sta_info_flush(sdata
);
1468 static int ieee80211_change_station(struct wiphy
*wiphy
,
1469 struct net_device
*dev
, const u8
*mac
,
1470 struct station_parameters
*params
)
1472 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1473 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
1474 struct sta_info
*sta
;
1475 struct ieee80211_sub_if_data
*vlansdata
;
1476 enum cfg80211_station_type statype
;
1479 mutex_lock(&local
->sta_mtx
);
1481 sta
= sta_info_get_bss(sdata
, mac
);
1487 switch (sdata
->vif
.type
) {
1488 case NL80211_IFTYPE_MESH_POINT
:
1489 if (sdata
->u
.mesh
.user_mpm
)
1490 statype
= CFG80211_STA_MESH_PEER_USER
;
1492 statype
= CFG80211_STA_MESH_PEER_KERNEL
;
1494 case NL80211_IFTYPE_ADHOC
:
1495 statype
= CFG80211_STA_IBSS
;
1497 case NL80211_IFTYPE_STATION
:
1498 if (!test_sta_flag(sta
, WLAN_STA_TDLS_PEER
)) {
1499 statype
= CFG80211_STA_AP_STA
;
1502 if (test_sta_flag(sta
, WLAN_STA_AUTHORIZED
))
1503 statype
= CFG80211_STA_TDLS_PEER_ACTIVE
;
1505 statype
= CFG80211_STA_TDLS_PEER_SETUP
;
1507 case NL80211_IFTYPE_AP
:
1508 case NL80211_IFTYPE_AP_VLAN
:
1509 if (test_sta_flag(sta
, WLAN_STA_ASSOC
))
1510 statype
= CFG80211_STA_AP_CLIENT
;
1512 statype
= CFG80211_STA_AP_CLIENT_UNASSOC
;
1519 err
= cfg80211_check_station_change(wiphy
, params
, statype
);
1523 if (params
->vlan
&& params
->vlan
!= sta
->sdata
->dev
) {
1524 vlansdata
= IEEE80211_DEV_TO_SUB_IF(params
->vlan
);
1526 if (params
->vlan
->ieee80211_ptr
->use_4addr
) {
1527 if (vlansdata
->u
.vlan
.sta
) {
1532 rcu_assign_pointer(vlansdata
->u
.vlan
.sta
, sta
);
1533 __ieee80211_check_fast_rx_iface(vlansdata
);
1536 if (sta
->sdata
->vif
.type
== NL80211_IFTYPE_AP_VLAN
&&
1537 sta
->sdata
->u
.vlan
.sta
)
1538 RCU_INIT_POINTER(sta
->sdata
->u
.vlan
.sta
, NULL
);
1540 if (test_sta_flag(sta
, WLAN_STA_AUTHORIZED
))
1541 ieee80211_vif_dec_num_mcast(sta
->sdata
);
1543 sta
->sdata
= vlansdata
;
1544 ieee80211_check_fast_xmit(sta
);
1546 if (test_sta_flag(sta
, WLAN_STA_AUTHORIZED
))
1547 ieee80211_vif_inc_num_mcast(sta
->sdata
);
1549 ieee80211_send_layer2_update(sta
);
1552 err
= sta_apply_parameters(local
, sta
, params
);
1556 mutex_unlock(&local
->sta_mtx
);
1558 if ((sdata
->vif
.type
== NL80211_IFTYPE_AP
||
1559 sdata
->vif
.type
== NL80211_IFTYPE_AP_VLAN
) &&
1560 sta
->known_smps_mode
!= sta
->sdata
->bss
->req_smps
&&
1561 test_sta_flag(sta
, WLAN_STA_AUTHORIZED
) &&
1562 sta_info_tx_streams(sta
) != 1) {
1564 "%pM just authorized and MIMO capable - update SMPS\n",
1566 ieee80211_send_smps_action(sta
->sdata
,
1567 sta
->sdata
->bss
->req_smps
,
1569 sta
->sdata
->vif
.bss_conf
.bssid
);
1572 if (sdata
->vif
.type
== NL80211_IFTYPE_STATION
&&
1573 params
->sta_flags_mask
& BIT(NL80211_STA_FLAG_AUTHORIZED
)) {
1574 ieee80211_recalc_ps(local
);
1575 ieee80211_recalc_ps_vif(sdata
);
1580 mutex_unlock(&local
->sta_mtx
);
1584 #ifdef CONFIG_MAC80211_MESH
1585 static int ieee80211_add_mpath(struct wiphy
*wiphy
, struct net_device
*dev
,
1586 const u8
*dst
, const u8
*next_hop
)
1588 struct ieee80211_sub_if_data
*sdata
;
1589 struct mesh_path
*mpath
;
1590 struct sta_info
*sta
;
1592 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1595 sta
= sta_info_get(sdata
, next_hop
);
1601 mpath
= mesh_path_add(sdata
, dst
);
1602 if (IS_ERR(mpath
)) {
1604 return PTR_ERR(mpath
);
1607 mesh_path_fix_nexthop(mpath
, sta
);
1613 static int ieee80211_del_mpath(struct wiphy
*wiphy
, struct net_device
*dev
,
1616 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1619 return mesh_path_del(sdata
, dst
);
1621 mesh_path_flush_by_iface(sdata
);
1625 static int ieee80211_change_mpath(struct wiphy
*wiphy
, struct net_device
*dev
,
1626 const u8
*dst
, const u8
*next_hop
)
1628 struct ieee80211_sub_if_data
*sdata
;
1629 struct mesh_path
*mpath
;
1630 struct sta_info
*sta
;
1632 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1636 sta
= sta_info_get(sdata
, next_hop
);
1642 mpath
= mesh_path_lookup(sdata
, dst
);
1648 mesh_path_fix_nexthop(mpath
, sta
);
1654 static void mpath_set_pinfo(struct mesh_path
*mpath
, u8
*next_hop
,
1655 struct mpath_info
*pinfo
)
1657 struct sta_info
*next_hop_sta
= rcu_dereference(mpath
->next_hop
);
1660 memcpy(next_hop
, next_hop_sta
->sta
.addr
, ETH_ALEN
);
1662 eth_zero_addr(next_hop
);
1664 memset(pinfo
, 0, sizeof(*pinfo
));
1666 pinfo
->generation
= mpath
->sdata
->u
.mesh
.mesh_paths_generation
;
1668 pinfo
->filled
= MPATH_INFO_FRAME_QLEN
|
1671 MPATH_INFO_EXPTIME
|
1672 MPATH_INFO_DISCOVERY_TIMEOUT
|
1673 MPATH_INFO_DISCOVERY_RETRIES
|
1676 pinfo
->frame_qlen
= mpath
->frame_queue
.qlen
;
1677 pinfo
->sn
= mpath
->sn
;
1678 pinfo
->metric
= mpath
->metric
;
1679 if (time_before(jiffies
, mpath
->exp_time
))
1680 pinfo
->exptime
= jiffies_to_msecs(mpath
->exp_time
- jiffies
);
1681 pinfo
->discovery_timeout
=
1682 jiffies_to_msecs(mpath
->discovery_timeout
);
1683 pinfo
->discovery_retries
= mpath
->discovery_retries
;
1684 if (mpath
->flags
& MESH_PATH_ACTIVE
)
1685 pinfo
->flags
|= NL80211_MPATH_FLAG_ACTIVE
;
1686 if (mpath
->flags
& MESH_PATH_RESOLVING
)
1687 pinfo
->flags
|= NL80211_MPATH_FLAG_RESOLVING
;
1688 if (mpath
->flags
& MESH_PATH_SN_VALID
)
1689 pinfo
->flags
|= NL80211_MPATH_FLAG_SN_VALID
;
1690 if (mpath
->flags
& MESH_PATH_FIXED
)
1691 pinfo
->flags
|= NL80211_MPATH_FLAG_FIXED
;
1692 if (mpath
->flags
& MESH_PATH_RESOLVED
)
1693 pinfo
->flags
|= NL80211_MPATH_FLAG_RESOLVED
;
1696 static int ieee80211_get_mpath(struct wiphy
*wiphy
, struct net_device
*dev
,
1697 u8
*dst
, u8
*next_hop
, struct mpath_info
*pinfo
)
1700 struct ieee80211_sub_if_data
*sdata
;
1701 struct mesh_path
*mpath
;
1703 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1706 mpath
= mesh_path_lookup(sdata
, dst
);
1711 memcpy(dst
, mpath
->dst
, ETH_ALEN
);
1712 mpath_set_pinfo(mpath
, next_hop
, pinfo
);
1717 static int ieee80211_dump_mpath(struct wiphy
*wiphy
, struct net_device
*dev
,
1718 int idx
, u8
*dst
, u8
*next_hop
,
1719 struct mpath_info
*pinfo
)
1721 struct ieee80211_sub_if_data
*sdata
;
1722 struct mesh_path
*mpath
;
1724 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1727 mpath
= mesh_path_lookup_by_idx(sdata
, idx
);
1732 memcpy(dst
, mpath
->dst
, ETH_ALEN
);
1733 mpath_set_pinfo(mpath
, next_hop
, pinfo
);
1738 static void mpp_set_pinfo(struct mesh_path
*mpath
, u8
*mpp
,
1739 struct mpath_info
*pinfo
)
1741 memset(pinfo
, 0, sizeof(*pinfo
));
1742 memcpy(mpp
, mpath
->mpp
, ETH_ALEN
);
1744 pinfo
->generation
= mpath
->sdata
->u
.mesh
.mpp_paths_generation
;
1747 static int ieee80211_get_mpp(struct wiphy
*wiphy
, struct net_device
*dev
,
1748 u8
*dst
, u8
*mpp
, struct mpath_info
*pinfo
)
1751 struct ieee80211_sub_if_data
*sdata
;
1752 struct mesh_path
*mpath
;
1754 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1757 mpath
= mpp_path_lookup(sdata
, dst
);
1762 memcpy(dst
, mpath
->dst
, ETH_ALEN
);
1763 mpp_set_pinfo(mpath
, mpp
, pinfo
);
1768 static int ieee80211_dump_mpp(struct wiphy
*wiphy
, struct net_device
*dev
,
1769 int idx
, u8
*dst
, u8
*mpp
,
1770 struct mpath_info
*pinfo
)
1772 struct ieee80211_sub_if_data
*sdata
;
1773 struct mesh_path
*mpath
;
1775 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1778 mpath
= mpp_path_lookup_by_idx(sdata
, idx
);
1783 memcpy(dst
, mpath
->dst
, ETH_ALEN
);
1784 mpp_set_pinfo(mpath
, mpp
, pinfo
);
1789 static int ieee80211_get_mesh_config(struct wiphy
*wiphy
,
1790 struct net_device
*dev
,
1791 struct mesh_config
*conf
)
1793 struct ieee80211_sub_if_data
*sdata
;
1794 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1796 memcpy(conf
, &(sdata
->u
.mesh
.mshcfg
), sizeof(struct mesh_config
));
1800 static inline bool _chg_mesh_attr(enum nl80211_meshconf_params parm
, u32 mask
)
1802 return (mask
>> (parm
-1)) & 0x1;
1805 static int copy_mesh_setup(struct ieee80211_if_mesh
*ifmsh
,
1806 const struct mesh_setup
*setup
)
1810 struct ieee80211_sub_if_data
*sdata
= container_of(ifmsh
,
1811 struct ieee80211_sub_if_data
, u
.mesh
);
1813 /* allocate information elements */
1817 if (setup
->ie_len
) {
1818 new_ie
= kmemdup(setup
->ie
, setup
->ie_len
,
1823 ifmsh
->ie_len
= setup
->ie_len
;
1827 /* now copy the rest of the setup parameters */
1828 ifmsh
->mesh_id_len
= setup
->mesh_id_len
;
1829 memcpy(ifmsh
->mesh_id
, setup
->mesh_id
, ifmsh
->mesh_id_len
);
1830 ifmsh
->mesh_sp_id
= setup
->sync_method
;
1831 ifmsh
->mesh_pp_id
= setup
->path_sel_proto
;
1832 ifmsh
->mesh_pm_id
= setup
->path_metric
;
1833 ifmsh
->user_mpm
= setup
->user_mpm
;
1834 ifmsh
->mesh_auth_id
= setup
->auth_id
;
1835 ifmsh
->security
= IEEE80211_MESH_SEC_NONE
;
1836 if (setup
->is_authenticated
)
1837 ifmsh
->security
|= IEEE80211_MESH_SEC_AUTHED
;
1838 if (setup
->is_secure
)
1839 ifmsh
->security
|= IEEE80211_MESH_SEC_SECURED
;
1841 /* mcast rate setting in Mesh Node */
1842 memcpy(sdata
->vif
.bss_conf
.mcast_rate
, setup
->mcast_rate
,
1843 sizeof(setup
->mcast_rate
));
1844 sdata
->vif
.bss_conf
.basic_rates
= setup
->basic_rates
;
1846 sdata
->vif
.bss_conf
.beacon_int
= setup
->beacon_interval
;
1847 sdata
->vif
.bss_conf
.dtim_period
= setup
->dtim_period
;
1852 static int ieee80211_update_mesh_config(struct wiphy
*wiphy
,
1853 struct net_device
*dev
, u32 mask
,
1854 const struct mesh_config
*nconf
)
1856 struct mesh_config
*conf
;
1857 struct ieee80211_sub_if_data
*sdata
;
1858 struct ieee80211_if_mesh
*ifmsh
;
1860 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1861 ifmsh
= &sdata
->u
.mesh
;
1863 /* Set the config options which we are interested in setting */
1864 conf
= &(sdata
->u
.mesh
.mshcfg
);
1865 if (_chg_mesh_attr(NL80211_MESHCONF_RETRY_TIMEOUT
, mask
))
1866 conf
->dot11MeshRetryTimeout
= nconf
->dot11MeshRetryTimeout
;
1867 if (_chg_mesh_attr(NL80211_MESHCONF_CONFIRM_TIMEOUT
, mask
))
1868 conf
->dot11MeshConfirmTimeout
= nconf
->dot11MeshConfirmTimeout
;
1869 if (_chg_mesh_attr(NL80211_MESHCONF_HOLDING_TIMEOUT
, mask
))
1870 conf
->dot11MeshHoldingTimeout
= nconf
->dot11MeshHoldingTimeout
;
1871 if (_chg_mesh_attr(NL80211_MESHCONF_MAX_PEER_LINKS
, mask
))
1872 conf
->dot11MeshMaxPeerLinks
= nconf
->dot11MeshMaxPeerLinks
;
1873 if (_chg_mesh_attr(NL80211_MESHCONF_MAX_RETRIES
, mask
))
1874 conf
->dot11MeshMaxRetries
= nconf
->dot11MeshMaxRetries
;
1875 if (_chg_mesh_attr(NL80211_MESHCONF_TTL
, mask
))
1876 conf
->dot11MeshTTL
= nconf
->dot11MeshTTL
;
1877 if (_chg_mesh_attr(NL80211_MESHCONF_ELEMENT_TTL
, mask
))
1878 conf
->element_ttl
= nconf
->element_ttl
;
1879 if (_chg_mesh_attr(NL80211_MESHCONF_AUTO_OPEN_PLINKS
, mask
)) {
1880 if (ifmsh
->user_mpm
)
1882 conf
->auto_open_plinks
= nconf
->auto_open_plinks
;
1884 if (_chg_mesh_attr(NL80211_MESHCONF_SYNC_OFFSET_MAX_NEIGHBOR
, mask
))
1885 conf
->dot11MeshNbrOffsetMaxNeighbor
=
1886 nconf
->dot11MeshNbrOffsetMaxNeighbor
;
1887 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES
, mask
))
1888 conf
->dot11MeshHWMPmaxPREQretries
=
1889 nconf
->dot11MeshHWMPmaxPREQretries
;
1890 if (_chg_mesh_attr(NL80211_MESHCONF_PATH_REFRESH_TIME
, mask
))
1891 conf
->path_refresh_time
= nconf
->path_refresh_time
;
1892 if (_chg_mesh_attr(NL80211_MESHCONF_MIN_DISCOVERY_TIMEOUT
, mask
))
1893 conf
->min_discovery_timeout
= nconf
->min_discovery_timeout
;
1894 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_ACTIVE_PATH_TIMEOUT
, mask
))
1895 conf
->dot11MeshHWMPactivePathTimeout
=
1896 nconf
->dot11MeshHWMPactivePathTimeout
;
1897 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_PREQ_MIN_INTERVAL
, mask
))
1898 conf
->dot11MeshHWMPpreqMinInterval
=
1899 nconf
->dot11MeshHWMPpreqMinInterval
;
1900 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_PERR_MIN_INTERVAL
, mask
))
1901 conf
->dot11MeshHWMPperrMinInterval
=
1902 nconf
->dot11MeshHWMPperrMinInterval
;
1903 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME
,
1905 conf
->dot11MeshHWMPnetDiameterTraversalTime
=
1906 nconf
->dot11MeshHWMPnetDiameterTraversalTime
;
1907 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_ROOTMODE
, mask
)) {
1908 conf
->dot11MeshHWMPRootMode
= nconf
->dot11MeshHWMPRootMode
;
1909 ieee80211_mesh_root_setup(ifmsh
);
1911 if (_chg_mesh_attr(NL80211_MESHCONF_GATE_ANNOUNCEMENTS
, mask
)) {
1912 /* our current gate announcement implementation rides on root
1913 * announcements, so require this ifmsh to also be a root node
1915 if (nconf
->dot11MeshGateAnnouncementProtocol
&&
1916 !(conf
->dot11MeshHWMPRootMode
> IEEE80211_ROOTMODE_ROOT
)) {
1917 conf
->dot11MeshHWMPRootMode
= IEEE80211_PROACTIVE_RANN
;
1918 ieee80211_mesh_root_setup(ifmsh
);
1920 conf
->dot11MeshGateAnnouncementProtocol
=
1921 nconf
->dot11MeshGateAnnouncementProtocol
;
1923 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_RANN_INTERVAL
, mask
))
1924 conf
->dot11MeshHWMPRannInterval
=
1925 nconf
->dot11MeshHWMPRannInterval
;
1926 if (_chg_mesh_attr(NL80211_MESHCONF_FORWARDING
, mask
))
1927 conf
->dot11MeshForwarding
= nconf
->dot11MeshForwarding
;
1928 if (_chg_mesh_attr(NL80211_MESHCONF_RSSI_THRESHOLD
, mask
)) {
1929 /* our RSSI threshold implementation is supported only for
1930 * devices that report signal in dBm.
1932 if (!ieee80211_hw_check(&sdata
->local
->hw
, SIGNAL_DBM
))
1934 conf
->rssi_threshold
= nconf
->rssi_threshold
;
1936 if (_chg_mesh_attr(NL80211_MESHCONF_HT_OPMODE
, mask
)) {
1937 conf
->ht_opmode
= nconf
->ht_opmode
;
1938 sdata
->vif
.bss_conf
.ht_operation_mode
= nconf
->ht_opmode
;
1939 ieee80211_bss_info_change_notify(sdata
, BSS_CHANGED_HT
);
1941 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_PATH_TO_ROOT_TIMEOUT
, mask
))
1942 conf
->dot11MeshHWMPactivePathToRootTimeout
=
1943 nconf
->dot11MeshHWMPactivePathToRootTimeout
;
1944 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_ROOT_INTERVAL
, mask
))
1945 conf
->dot11MeshHWMProotInterval
=
1946 nconf
->dot11MeshHWMProotInterval
;
1947 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_CONFIRMATION_INTERVAL
, mask
))
1948 conf
->dot11MeshHWMPconfirmationInterval
=
1949 nconf
->dot11MeshHWMPconfirmationInterval
;
1950 if (_chg_mesh_attr(NL80211_MESHCONF_POWER_MODE
, mask
)) {
1951 conf
->power_mode
= nconf
->power_mode
;
1952 ieee80211_mps_local_status_update(sdata
);
1954 if (_chg_mesh_attr(NL80211_MESHCONF_AWAKE_WINDOW
, mask
))
1955 conf
->dot11MeshAwakeWindowDuration
=
1956 nconf
->dot11MeshAwakeWindowDuration
;
1957 if (_chg_mesh_attr(NL80211_MESHCONF_PLINK_TIMEOUT
, mask
))
1958 conf
->plink_timeout
= nconf
->plink_timeout
;
1959 ieee80211_mbss_info_change_notify(sdata
, BSS_CHANGED_BEACON
);
1963 static int ieee80211_join_mesh(struct wiphy
*wiphy
, struct net_device
*dev
,
1964 const struct mesh_config
*conf
,
1965 const struct mesh_setup
*setup
)
1967 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1968 struct ieee80211_if_mesh
*ifmsh
= &sdata
->u
.mesh
;
1971 memcpy(&ifmsh
->mshcfg
, conf
, sizeof(struct mesh_config
));
1972 err
= copy_mesh_setup(ifmsh
, setup
);
1976 /* can mesh use other SMPS modes? */
1977 sdata
->smps_mode
= IEEE80211_SMPS_OFF
;
1978 sdata
->needed_rx_chains
= sdata
->local
->rx_chains
;
1980 mutex_lock(&sdata
->local
->mtx
);
1981 err
= ieee80211_vif_use_channel(sdata
, &setup
->chandef
,
1982 IEEE80211_CHANCTX_SHARED
);
1983 mutex_unlock(&sdata
->local
->mtx
);
1987 return ieee80211_start_mesh(sdata
);
1990 static int ieee80211_leave_mesh(struct wiphy
*wiphy
, struct net_device
*dev
)
1992 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1994 ieee80211_stop_mesh(sdata
);
1995 mutex_lock(&sdata
->local
->mtx
);
1996 ieee80211_vif_release_channel(sdata
);
1997 mutex_unlock(&sdata
->local
->mtx
);
2003 static int ieee80211_change_bss(struct wiphy
*wiphy
,
2004 struct net_device
*dev
,
2005 struct bss_parameters
*params
)
2007 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
2008 enum nl80211_band band
;
2011 if (!sdata_dereference(sdata
->u
.ap
.beacon
, sdata
))
2014 band
= ieee80211_get_sdata_band(sdata
);
2016 if (params
->use_cts_prot
>= 0) {
2017 sdata
->vif
.bss_conf
.use_cts_prot
= params
->use_cts_prot
;
2018 changed
|= BSS_CHANGED_ERP_CTS_PROT
;
2020 if (params
->use_short_preamble
>= 0) {
2021 sdata
->vif
.bss_conf
.use_short_preamble
=
2022 params
->use_short_preamble
;
2023 changed
|= BSS_CHANGED_ERP_PREAMBLE
;
2026 if (!sdata
->vif
.bss_conf
.use_short_slot
&&
2027 band
== NL80211_BAND_5GHZ
) {
2028 sdata
->vif
.bss_conf
.use_short_slot
= true;
2029 changed
|= BSS_CHANGED_ERP_SLOT
;
2032 if (params
->use_short_slot_time
>= 0) {
2033 sdata
->vif
.bss_conf
.use_short_slot
=
2034 params
->use_short_slot_time
;
2035 changed
|= BSS_CHANGED_ERP_SLOT
;
2038 if (params
->basic_rates
) {
2039 ieee80211_parse_bitrates(&sdata
->vif
.bss_conf
.chandef
,
2041 params
->basic_rates
,
2042 params
->basic_rates_len
,
2043 &sdata
->vif
.bss_conf
.basic_rates
);
2044 changed
|= BSS_CHANGED_BASIC_RATES
;
2047 if (params
->ap_isolate
>= 0) {
2048 if (params
->ap_isolate
)
2049 sdata
->flags
|= IEEE80211_SDATA_DONT_BRIDGE_PACKETS
;
2051 sdata
->flags
&= ~IEEE80211_SDATA_DONT_BRIDGE_PACKETS
;
2052 ieee80211_check_fast_rx_iface(sdata
);
2055 if (params
->ht_opmode
>= 0) {
2056 sdata
->vif
.bss_conf
.ht_operation_mode
=
2057 (u16
) params
->ht_opmode
;
2058 changed
|= BSS_CHANGED_HT
;
2061 if (params
->p2p_ctwindow
>= 0) {
2062 sdata
->vif
.bss_conf
.p2p_noa_attr
.oppps_ctwindow
&=
2063 ~IEEE80211_P2P_OPPPS_CTWINDOW_MASK
;
2064 sdata
->vif
.bss_conf
.p2p_noa_attr
.oppps_ctwindow
|=
2065 params
->p2p_ctwindow
& IEEE80211_P2P_OPPPS_CTWINDOW_MASK
;
2066 changed
|= BSS_CHANGED_P2P_PS
;
2069 if (params
->p2p_opp_ps
> 0) {
2070 sdata
->vif
.bss_conf
.p2p_noa_attr
.oppps_ctwindow
|=
2071 IEEE80211_P2P_OPPPS_ENABLE_BIT
;
2072 changed
|= BSS_CHANGED_P2P_PS
;
2073 } else if (params
->p2p_opp_ps
== 0) {
2074 sdata
->vif
.bss_conf
.p2p_noa_attr
.oppps_ctwindow
&=
2075 ~IEEE80211_P2P_OPPPS_ENABLE_BIT
;
2076 changed
|= BSS_CHANGED_P2P_PS
;
2079 ieee80211_bss_info_change_notify(sdata
, changed
);
2084 static int ieee80211_set_txq_params(struct wiphy
*wiphy
,
2085 struct net_device
*dev
,
2086 struct ieee80211_txq_params
*params
)
2088 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
2089 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
2090 struct ieee80211_tx_queue_params p
;
2092 if (!local
->ops
->conf_tx
)
2095 if (local
->hw
.queues
< IEEE80211_NUM_ACS
)
2098 memset(&p
, 0, sizeof(p
));
2099 p
.aifs
= params
->aifs
;
2100 p
.cw_max
= params
->cwmax
;
2101 p
.cw_min
= params
->cwmin
;
2102 p
.txop
= params
->txop
;
2105 * Setting tx queue params disables u-apsd because it's only
2106 * called in master mode.
2110 sdata
->tx_conf
[params
->ac
] = p
;
2111 if (drv_conf_tx(local
, sdata
, params
->ac
, &p
)) {
2112 wiphy_debug(local
->hw
.wiphy
,
2113 "failed to set TX queue parameters for AC %d\n",
2118 ieee80211_bss_info_change_notify(sdata
, BSS_CHANGED_QOS
);
2124 static int ieee80211_suspend(struct wiphy
*wiphy
,
2125 struct cfg80211_wowlan
*wowlan
)
2127 return __ieee80211_suspend(wiphy_priv(wiphy
), wowlan
);
2130 static int ieee80211_resume(struct wiphy
*wiphy
)
2132 return __ieee80211_resume(wiphy_priv(wiphy
));
2135 #define ieee80211_suspend NULL
2136 #define ieee80211_resume NULL
2139 static int ieee80211_scan(struct wiphy
*wiphy
,
2140 struct cfg80211_scan_request
*req
)
2142 struct ieee80211_sub_if_data
*sdata
;
2144 sdata
= IEEE80211_WDEV_TO_SUB_IF(req
->wdev
);
2146 switch (ieee80211_vif_type_p2p(&sdata
->vif
)) {
2147 case NL80211_IFTYPE_STATION
:
2148 case NL80211_IFTYPE_ADHOC
:
2149 case NL80211_IFTYPE_MESH_POINT
:
2150 case NL80211_IFTYPE_P2P_CLIENT
:
2151 case NL80211_IFTYPE_P2P_DEVICE
:
2153 case NL80211_IFTYPE_P2P_GO
:
2154 if (sdata
->local
->ops
->hw_scan
)
2157 * FIXME: implement NoA while scanning in software,
2158 * for now fall through to allow scanning only when
2159 * beaconing hasn't been configured yet
2161 case NL80211_IFTYPE_AP
:
2163 * If the scan has been forced (and the driver supports
2164 * forcing), don't care about being beaconing already.
2165 * This will create problems to the attached stations (e.g. all
2166 * the frames sent while scanning on other channel will be
2169 if (sdata
->u
.ap
.beacon
&&
2170 (!(wiphy
->features
& NL80211_FEATURE_AP_SCAN
) ||
2171 !(req
->flags
& NL80211_SCAN_FLAG_AP
)))
2174 case NL80211_IFTYPE_NAN
:
2179 return ieee80211_request_scan(sdata
, req
);
2182 static void ieee80211_abort_scan(struct wiphy
*wiphy
, struct wireless_dev
*wdev
)
2184 ieee80211_scan_cancel(wiphy_priv(wiphy
));
2188 ieee80211_sched_scan_start(struct wiphy
*wiphy
,
2189 struct net_device
*dev
,
2190 struct cfg80211_sched_scan_request
*req
)
2192 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
2194 if (!sdata
->local
->ops
->sched_scan_start
)
2197 return ieee80211_request_sched_scan_start(sdata
, req
);
2201 ieee80211_sched_scan_stop(struct wiphy
*wiphy
, struct net_device
*dev
)
2203 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
2205 if (!local
->ops
->sched_scan_stop
)
2208 return ieee80211_request_sched_scan_stop(local
);
2211 static int ieee80211_auth(struct wiphy
*wiphy
, struct net_device
*dev
,
2212 struct cfg80211_auth_request
*req
)
2214 return ieee80211_mgd_auth(IEEE80211_DEV_TO_SUB_IF(dev
), req
);
2217 static int ieee80211_assoc(struct wiphy
*wiphy
, struct net_device
*dev
,
2218 struct cfg80211_assoc_request
*req
)
2220 return ieee80211_mgd_assoc(IEEE80211_DEV_TO_SUB_IF(dev
), req
);
2223 static int ieee80211_deauth(struct wiphy
*wiphy
, struct net_device
*dev
,
2224 struct cfg80211_deauth_request
*req
)
2226 return ieee80211_mgd_deauth(IEEE80211_DEV_TO_SUB_IF(dev
), req
);
2229 static int ieee80211_disassoc(struct wiphy
*wiphy
, struct net_device
*dev
,
2230 struct cfg80211_disassoc_request
*req
)
2232 return ieee80211_mgd_disassoc(IEEE80211_DEV_TO_SUB_IF(dev
), req
);
2235 static int ieee80211_join_ibss(struct wiphy
*wiphy
, struct net_device
*dev
,
2236 struct cfg80211_ibss_params
*params
)
2238 return ieee80211_ibss_join(IEEE80211_DEV_TO_SUB_IF(dev
), params
);
2241 static int ieee80211_leave_ibss(struct wiphy
*wiphy
, struct net_device
*dev
)
2243 return ieee80211_ibss_leave(IEEE80211_DEV_TO_SUB_IF(dev
));
2246 static int ieee80211_join_ocb(struct wiphy
*wiphy
, struct net_device
*dev
,
2247 struct ocb_setup
*setup
)
2249 return ieee80211_ocb_join(IEEE80211_DEV_TO_SUB_IF(dev
), setup
);
2252 static int ieee80211_leave_ocb(struct wiphy
*wiphy
, struct net_device
*dev
)
2254 return ieee80211_ocb_leave(IEEE80211_DEV_TO_SUB_IF(dev
));
2257 static int ieee80211_set_mcast_rate(struct wiphy
*wiphy
, struct net_device
*dev
,
2258 int rate
[NUM_NL80211_BANDS
])
2260 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
2262 memcpy(sdata
->vif
.bss_conf
.mcast_rate
, rate
,
2263 sizeof(int) * NUM_NL80211_BANDS
);
2268 static int ieee80211_set_wiphy_params(struct wiphy
*wiphy
, u32 changed
)
2270 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
2273 if (changed
& WIPHY_PARAM_FRAG_THRESHOLD
) {
2274 ieee80211_check_fast_xmit_all(local
);
2276 err
= drv_set_frag_threshold(local
, wiphy
->frag_threshold
);
2279 ieee80211_check_fast_xmit_all(local
);
2284 if ((changed
& WIPHY_PARAM_COVERAGE_CLASS
) ||
2285 (changed
& WIPHY_PARAM_DYN_ACK
)) {
2288 coverage_class
= changed
& WIPHY_PARAM_COVERAGE_CLASS
?
2289 wiphy
->coverage_class
: -1;
2290 err
= drv_set_coverage_class(local
, coverage_class
);
2296 if (changed
& WIPHY_PARAM_RTS_THRESHOLD
) {
2297 err
= drv_set_rts_threshold(local
, wiphy
->rts_threshold
);
2303 if (changed
& WIPHY_PARAM_RETRY_SHORT
) {
2304 if (wiphy
->retry_short
> IEEE80211_MAX_TX_RETRY
)
2306 local
->hw
.conf
.short_frame_max_tx_count
= wiphy
->retry_short
;
2308 if (changed
& WIPHY_PARAM_RETRY_LONG
) {
2309 if (wiphy
->retry_long
> IEEE80211_MAX_TX_RETRY
)
2311 local
->hw
.conf
.long_frame_max_tx_count
= wiphy
->retry_long
;
2314 (WIPHY_PARAM_RETRY_SHORT
| WIPHY_PARAM_RETRY_LONG
))
2315 ieee80211_hw_config(local
, IEEE80211_CONF_CHANGE_RETRY_LIMITS
);
2320 static int ieee80211_set_tx_power(struct wiphy
*wiphy
,
2321 struct wireless_dev
*wdev
,
2322 enum nl80211_tx_power_setting type
, int mbm
)
2324 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
2325 struct ieee80211_sub_if_data
*sdata
;
2326 enum nl80211_tx_power_setting txp_type
= type
;
2327 bool update_txp_type
= false;
2330 sdata
= IEEE80211_WDEV_TO_SUB_IF(wdev
);
2333 case NL80211_TX_POWER_AUTOMATIC
:
2334 sdata
->user_power_level
= IEEE80211_UNSET_POWER_LEVEL
;
2335 txp_type
= NL80211_TX_POWER_LIMITED
;
2337 case NL80211_TX_POWER_LIMITED
:
2338 case NL80211_TX_POWER_FIXED
:
2339 if (mbm
< 0 || (mbm
% 100))
2341 sdata
->user_power_level
= MBM_TO_DBM(mbm
);
2345 if (txp_type
!= sdata
->vif
.bss_conf
.txpower_type
) {
2346 update_txp_type
= true;
2347 sdata
->vif
.bss_conf
.txpower_type
= txp_type
;
2350 ieee80211_recalc_txpower(sdata
, update_txp_type
);
2356 case NL80211_TX_POWER_AUTOMATIC
:
2357 local
->user_power_level
= IEEE80211_UNSET_POWER_LEVEL
;
2358 txp_type
= NL80211_TX_POWER_LIMITED
;
2360 case NL80211_TX_POWER_LIMITED
:
2361 case NL80211_TX_POWER_FIXED
:
2362 if (mbm
< 0 || (mbm
% 100))
2364 local
->user_power_level
= MBM_TO_DBM(mbm
);
2368 mutex_lock(&local
->iflist_mtx
);
2369 list_for_each_entry(sdata
, &local
->interfaces
, list
) {
2370 sdata
->user_power_level
= local
->user_power_level
;
2371 if (txp_type
!= sdata
->vif
.bss_conf
.txpower_type
)
2372 update_txp_type
= true;
2373 sdata
->vif
.bss_conf
.txpower_type
= txp_type
;
2375 list_for_each_entry(sdata
, &local
->interfaces
, list
)
2376 ieee80211_recalc_txpower(sdata
, update_txp_type
);
2377 mutex_unlock(&local
->iflist_mtx
);
2382 static int ieee80211_get_tx_power(struct wiphy
*wiphy
,
2383 struct wireless_dev
*wdev
,
2386 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
2387 struct ieee80211_sub_if_data
*sdata
= IEEE80211_WDEV_TO_SUB_IF(wdev
);
2389 if (local
->ops
->get_txpower
)
2390 return drv_get_txpower(local
, sdata
, dbm
);
2392 if (!local
->use_chanctx
)
2393 *dbm
= local
->hw
.conf
.power_level
;
2395 *dbm
= sdata
->vif
.bss_conf
.txpower
;
2400 static int ieee80211_set_wds_peer(struct wiphy
*wiphy
, struct net_device
*dev
,
2403 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
2405 memcpy(&sdata
->u
.wds
.remote_addr
, addr
, ETH_ALEN
);
2410 static void ieee80211_rfkill_poll(struct wiphy
*wiphy
)
2412 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
2414 drv_rfkill_poll(local
);
2417 #ifdef CONFIG_NL80211_TESTMODE
2418 static int ieee80211_testmode_cmd(struct wiphy
*wiphy
,
2419 struct wireless_dev
*wdev
,
2420 void *data
, int len
)
2422 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
2423 struct ieee80211_vif
*vif
= NULL
;
2425 if (!local
->ops
->testmode_cmd
)
2429 struct ieee80211_sub_if_data
*sdata
;
2431 sdata
= IEEE80211_WDEV_TO_SUB_IF(wdev
);
2432 if (sdata
->flags
& IEEE80211_SDATA_IN_DRIVER
)
2436 return local
->ops
->testmode_cmd(&local
->hw
, vif
, data
, len
);
2439 static int ieee80211_testmode_dump(struct wiphy
*wiphy
,
2440 struct sk_buff
*skb
,
2441 struct netlink_callback
*cb
,
2442 void *data
, int len
)
2444 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
2446 if (!local
->ops
->testmode_dump
)
2449 return local
->ops
->testmode_dump(&local
->hw
, skb
, cb
, data
, len
);
2453 int __ieee80211_request_smps_ap(struct ieee80211_sub_if_data
*sdata
,
2454 enum ieee80211_smps_mode smps_mode
)
2456 struct sta_info
*sta
;
2457 enum ieee80211_smps_mode old_req
;
2459 if (WARN_ON_ONCE(sdata
->vif
.type
!= NL80211_IFTYPE_AP
))
2462 if (sdata
->vif
.bss_conf
.chandef
.width
== NL80211_CHAN_WIDTH_20_NOHT
)
2465 old_req
= sdata
->u
.ap
.req_smps
;
2466 sdata
->u
.ap
.req_smps
= smps_mode
;
2468 /* AUTOMATIC doesn't mean much for AP - don't allow it */
2469 if (old_req
== smps_mode
||
2470 smps_mode
== IEEE80211_SMPS_AUTOMATIC
)
2474 "SMPS %d requested in AP mode, sending Action frame to %d stations\n",
2475 smps_mode
, atomic_read(&sdata
->u
.ap
.num_mcast_sta
));
2477 mutex_lock(&sdata
->local
->sta_mtx
);
2478 list_for_each_entry(sta
, &sdata
->local
->sta_list
, list
) {
2480 * Only stations associated to our AP and
2483 if (sta
->sdata
->bss
!= &sdata
->u
.ap
)
2486 /* This station doesn't support MIMO - skip it */
2487 if (sta_info_tx_streams(sta
) == 1)
2491 * Don't wake up a STA just to send the action frame
2492 * unless we are getting more restrictive.
2494 if (test_sta_flag(sta
, WLAN_STA_PS_STA
) &&
2495 !ieee80211_smps_is_restrictive(sta
->known_smps_mode
,
2497 ht_dbg(sdata
, "Won't send SMPS to sleeping STA %pM\n",
2503 * If the STA is not authorized, wait until it gets
2504 * authorized and the action frame will be sent then.
2506 if (!test_sta_flag(sta
, WLAN_STA_AUTHORIZED
))
2509 ht_dbg(sdata
, "Sending SMPS to %pM\n", sta
->sta
.addr
);
2510 ieee80211_send_smps_action(sdata
, smps_mode
, sta
->sta
.addr
,
2511 sdata
->vif
.bss_conf
.bssid
);
2513 mutex_unlock(&sdata
->local
->sta_mtx
);
2515 sdata
->smps_mode
= smps_mode
;
2516 ieee80211_queue_work(&sdata
->local
->hw
, &sdata
->recalc_smps
);
2521 int __ieee80211_request_smps_mgd(struct ieee80211_sub_if_data
*sdata
,
2522 enum ieee80211_smps_mode smps_mode
)
2525 enum ieee80211_smps_mode old_req
;
2527 struct sta_info
*sta
;
2528 bool tdls_peer_found
= false;
2530 lockdep_assert_held(&sdata
->wdev
.mtx
);
2532 if (WARN_ON_ONCE(sdata
->vif
.type
!= NL80211_IFTYPE_STATION
))
2535 old_req
= sdata
->u
.mgd
.req_smps
;
2536 sdata
->u
.mgd
.req_smps
= smps_mode
;
2538 if (old_req
== smps_mode
&&
2539 smps_mode
!= IEEE80211_SMPS_AUTOMATIC
)
2543 * If not associated, or current association is not an HT
2544 * association, there's no need to do anything, just store
2545 * the new value until we associate.
2547 if (!sdata
->u
.mgd
.associated
||
2548 sdata
->vif
.bss_conf
.chandef
.width
== NL80211_CHAN_WIDTH_20_NOHT
)
2551 ap
= sdata
->u
.mgd
.associated
->bssid
;
2554 list_for_each_entry_rcu(sta
, &sdata
->local
->sta_list
, list
) {
2555 if (!sta
->sta
.tdls
|| sta
->sdata
!= sdata
|| !sta
->uploaded
||
2556 !test_sta_flag(sta
, WLAN_STA_AUTHORIZED
))
2559 tdls_peer_found
= true;
2564 if (smps_mode
== IEEE80211_SMPS_AUTOMATIC
) {
2565 if (tdls_peer_found
|| !sdata
->u
.mgd
.powersave
)
2566 smps_mode
= IEEE80211_SMPS_OFF
;
2568 smps_mode
= IEEE80211_SMPS_DYNAMIC
;
2571 /* send SM PS frame to AP */
2572 err
= ieee80211_send_smps_action(sdata
, smps_mode
,
2575 sdata
->u
.mgd
.req_smps
= old_req
;
2576 else if (smps_mode
!= IEEE80211_SMPS_OFF
&& tdls_peer_found
)
2577 ieee80211_teardown_tdls_peers(sdata
);
2582 static int ieee80211_set_power_mgmt(struct wiphy
*wiphy
, struct net_device
*dev
,
2583 bool enabled
, int timeout
)
2585 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
2586 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
2588 if (sdata
->vif
.type
!= NL80211_IFTYPE_STATION
)
2591 if (!ieee80211_hw_check(&local
->hw
, SUPPORTS_PS
))
2594 if (enabled
== sdata
->u
.mgd
.powersave
&&
2595 timeout
== local
->dynamic_ps_forced_timeout
)
2598 sdata
->u
.mgd
.powersave
= enabled
;
2599 local
->dynamic_ps_forced_timeout
= timeout
;
2601 /* no change, but if automatic follow powersave */
2603 __ieee80211_request_smps_mgd(sdata
, sdata
->u
.mgd
.req_smps
);
2604 sdata_unlock(sdata
);
2606 if (ieee80211_hw_check(&local
->hw
, SUPPORTS_DYNAMIC_PS
))
2607 ieee80211_hw_config(local
, IEEE80211_CONF_CHANGE_PS
);
2609 ieee80211_recalc_ps(local
);
2610 ieee80211_recalc_ps_vif(sdata
);
2615 static int ieee80211_set_cqm_rssi_config(struct wiphy
*wiphy
,
2616 struct net_device
*dev
,
2617 s32 rssi_thold
, u32 rssi_hyst
)
2619 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
2620 struct ieee80211_vif
*vif
= &sdata
->vif
;
2621 struct ieee80211_bss_conf
*bss_conf
= &vif
->bss_conf
;
2623 if (rssi_thold
== bss_conf
->cqm_rssi_thold
&&
2624 rssi_hyst
== bss_conf
->cqm_rssi_hyst
)
2627 if (sdata
->vif
.driver_flags
& IEEE80211_VIF_BEACON_FILTER
&&
2628 !(sdata
->vif
.driver_flags
& IEEE80211_VIF_SUPPORTS_CQM_RSSI
))
2631 bss_conf
->cqm_rssi_thold
= rssi_thold
;
2632 bss_conf
->cqm_rssi_hyst
= rssi_hyst
;
2633 sdata
->u
.mgd
.last_cqm_event_signal
= 0;
2635 /* tell the driver upon association, unless already associated */
2636 if (sdata
->u
.mgd
.associated
&&
2637 sdata
->vif
.driver_flags
& IEEE80211_VIF_SUPPORTS_CQM_RSSI
)
2638 ieee80211_bss_info_change_notify(sdata
, BSS_CHANGED_CQM
);
2643 static int ieee80211_set_bitrate_mask(struct wiphy
*wiphy
,
2644 struct net_device
*dev
,
2646 const struct cfg80211_bitrate_mask
*mask
)
2648 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
2649 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
2652 if (!ieee80211_sdata_running(sdata
))
2655 if (ieee80211_hw_check(&local
->hw
, HAS_RATE_CONTROL
)) {
2656 ret
= drv_set_bitrate_mask(local
, sdata
, mask
);
2661 for (i
= 0; i
< NUM_NL80211_BANDS
; i
++) {
2662 struct ieee80211_supported_band
*sband
= wiphy
->bands
[i
];
2665 sdata
->rc_rateidx_mask
[i
] = mask
->control
[i
].legacy
;
2666 memcpy(sdata
->rc_rateidx_mcs_mask
[i
], mask
->control
[i
].ht_mcs
,
2667 sizeof(mask
->control
[i
].ht_mcs
));
2668 memcpy(sdata
->rc_rateidx_vht_mcs_mask
[i
],
2669 mask
->control
[i
].vht_mcs
,
2670 sizeof(mask
->control
[i
].vht_mcs
));
2672 sdata
->rc_has_mcs_mask
[i
] = false;
2673 sdata
->rc_has_vht_mcs_mask
[i
] = false;
2677 for (j
= 0; j
< IEEE80211_HT_MCS_MASK_LEN
; j
++) {
2678 if (~sdata
->rc_rateidx_mcs_mask
[i
][j
]) {
2679 sdata
->rc_has_mcs_mask
[i
] = true;
2684 for (j
= 0; j
< NL80211_VHT_NSS_MAX
; j
++) {
2685 if (~sdata
->rc_rateidx_vht_mcs_mask
[i
][j
]) {
2686 sdata
->rc_has_vht_mcs_mask
[i
] = true;
2695 static int ieee80211_start_radar_detection(struct wiphy
*wiphy
,
2696 struct net_device
*dev
,
2697 struct cfg80211_chan_def
*chandef
,
2700 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
2701 struct ieee80211_local
*local
= sdata
->local
;
2704 mutex_lock(&local
->mtx
);
2705 if (!list_empty(&local
->roc_list
) || local
->scanning
) {
2710 /* whatever, but channel contexts should not complain about that one */
2711 sdata
->smps_mode
= IEEE80211_SMPS_OFF
;
2712 sdata
->needed_rx_chains
= local
->rx_chains
;
2714 err
= ieee80211_vif_use_channel(sdata
, chandef
,
2715 IEEE80211_CHANCTX_SHARED
);
2719 ieee80211_queue_delayed_work(&sdata
->local
->hw
,
2720 &sdata
->dfs_cac_timer_work
,
2721 msecs_to_jiffies(cac_time_ms
));
2724 mutex_unlock(&local
->mtx
);
2728 static struct cfg80211_beacon_data
*
2729 cfg80211_beacon_dup(struct cfg80211_beacon_data
*beacon
)
2731 struct cfg80211_beacon_data
*new_beacon
;
2735 len
= beacon
->head_len
+ beacon
->tail_len
+ beacon
->beacon_ies_len
+
2736 beacon
->proberesp_ies_len
+ beacon
->assocresp_ies_len
+
2737 beacon
->probe_resp_len
;
2739 new_beacon
= kzalloc(sizeof(*new_beacon
) + len
, GFP_KERNEL
);
2743 pos
= (u8
*)(new_beacon
+ 1);
2744 if (beacon
->head_len
) {
2745 new_beacon
->head_len
= beacon
->head_len
;
2746 new_beacon
->head
= pos
;
2747 memcpy(pos
, beacon
->head
, beacon
->head_len
);
2748 pos
+= beacon
->head_len
;
2750 if (beacon
->tail_len
) {
2751 new_beacon
->tail_len
= beacon
->tail_len
;
2752 new_beacon
->tail
= pos
;
2753 memcpy(pos
, beacon
->tail
, beacon
->tail_len
);
2754 pos
+= beacon
->tail_len
;
2756 if (beacon
->beacon_ies_len
) {
2757 new_beacon
->beacon_ies_len
= beacon
->beacon_ies_len
;
2758 new_beacon
->beacon_ies
= pos
;
2759 memcpy(pos
, beacon
->beacon_ies
, beacon
->beacon_ies_len
);
2760 pos
+= beacon
->beacon_ies_len
;
2762 if (beacon
->proberesp_ies_len
) {
2763 new_beacon
->proberesp_ies_len
= beacon
->proberesp_ies_len
;
2764 new_beacon
->proberesp_ies
= pos
;
2765 memcpy(pos
, beacon
->proberesp_ies
, beacon
->proberesp_ies_len
);
2766 pos
+= beacon
->proberesp_ies_len
;
2768 if (beacon
->assocresp_ies_len
) {
2769 new_beacon
->assocresp_ies_len
= beacon
->assocresp_ies_len
;
2770 new_beacon
->assocresp_ies
= pos
;
2771 memcpy(pos
, beacon
->assocresp_ies
, beacon
->assocresp_ies_len
);
2772 pos
+= beacon
->assocresp_ies_len
;
2774 if (beacon
->probe_resp_len
) {
2775 new_beacon
->probe_resp_len
= beacon
->probe_resp_len
;
2776 beacon
->probe_resp
= pos
;
2777 memcpy(pos
, beacon
->probe_resp
, beacon
->probe_resp_len
);
2778 pos
+= beacon
->probe_resp_len
;
2784 void ieee80211_csa_finish(struct ieee80211_vif
*vif
)
2786 struct ieee80211_sub_if_data
*sdata
= vif_to_sdata(vif
);
2788 ieee80211_queue_work(&sdata
->local
->hw
,
2789 &sdata
->csa_finalize_work
);
2791 EXPORT_SYMBOL(ieee80211_csa_finish
);
2793 static int ieee80211_set_after_csa_beacon(struct ieee80211_sub_if_data
*sdata
,
2798 switch (sdata
->vif
.type
) {
2799 case NL80211_IFTYPE_AP
:
2800 err
= ieee80211_assign_beacon(sdata
, sdata
->u
.ap
.next_beacon
,
2802 kfree(sdata
->u
.ap
.next_beacon
);
2803 sdata
->u
.ap
.next_beacon
= NULL
;
2809 case NL80211_IFTYPE_ADHOC
:
2810 err
= ieee80211_ibss_finish_csa(sdata
);
2815 #ifdef CONFIG_MAC80211_MESH
2816 case NL80211_IFTYPE_MESH_POINT
:
2817 err
= ieee80211_mesh_finish_csa(sdata
);
2831 static int __ieee80211_csa_finalize(struct ieee80211_sub_if_data
*sdata
)
2833 struct ieee80211_local
*local
= sdata
->local
;
2837 sdata_assert_lock(sdata
);
2838 lockdep_assert_held(&local
->mtx
);
2839 lockdep_assert_held(&local
->chanctx_mtx
);
2842 * using reservation isn't immediate as it may be deferred until later
2843 * with multi-vif. once reservation is complete it will re-schedule the
2844 * work with no reserved_chanctx so verify chandef to check if it
2845 * completed successfully
2848 if (sdata
->reserved_chanctx
) {
2850 * with multi-vif csa driver may call ieee80211_csa_finish()
2851 * many times while waiting for other interfaces to use their
2854 if (sdata
->reserved_ready
)
2857 return ieee80211_vif_use_reserved_context(sdata
);
2860 if (!cfg80211_chandef_identical(&sdata
->vif
.bss_conf
.chandef
,
2861 &sdata
->csa_chandef
))
2864 sdata
->vif
.csa_active
= false;
2866 err
= ieee80211_set_after_csa_beacon(sdata
, &changed
);
2870 ieee80211_bss_info_change_notify(sdata
, changed
);
2872 if (sdata
->csa_block_tx
) {
2873 ieee80211_wake_vif_queues(local
, sdata
,
2874 IEEE80211_QUEUE_STOP_REASON_CSA
);
2875 sdata
->csa_block_tx
= false;
2878 err
= drv_post_channel_switch(sdata
);
2882 cfg80211_ch_switch_notify(sdata
->dev
, &sdata
->csa_chandef
);
2887 static void ieee80211_csa_finalize(struct ieee80211_sub_if_data
*sdata
)
2889 if (__ieee80211_csa_finalize(sdata
)) {
2890 sdata_info(sdata
, "failed to finalize CSA, disconnecting\n");
2891 cfg80211_stop_iface(sdata
->local
->hw
.wiphy
, &sdata
->wdev
,
2896 void ieee80211_csa_finalize_work(struct work_struct
*work
)
2898 struct ieee80211_sub_if_data
*sdata
=
2899 container_of(work
, struct ieee80211_sub_if_data
,
2901 struct ieee80211_local
*local
= sdata
->local
;
2904 mutex_lock(&local
->mtx
);
2905 mutex_lock(&local
->chanctx_mtx
);
2907 /* AP might have been stopped while waiting for the lock. */
2908 if (!sdata
->vif
.csa_active
)
2911 if (!ieee80211_sdata_running(sdata
))
2914 ieee80211_csa_finalize(sdata
);
2917 mutex_unlock(&local
->chanctx_mtx
);
2918 mutex_unlock(&local
->mtx
);
2919 sdata_unlock(sdata
);
2922 static int ieee80211_set_csa_beacon(struct ieee80211_sub_if_data
*sdata
,
2923 struct cfg80211_csa_settings
*params
,
2926 struct ieee80211_csa_settings csa
= {};
2929 switch (sdata
->vif
.type
) {
2930 case NL80211_IFTYPE_AP
:
2931 sdata
->u
.ap
.next_beacon
=
2932 cfg80211_beacon_dup(¶ms
->beacon_after
);
2933 if (!sdata
->u
.ap
.next_beacon
)
2937 * With a count of 0, we don't have to wait for any
2938 * TBTT before switching, so complete the CSA
2939 * immediately. In theory, with a count == 1 we
2940 * should delay the switch until just before the next
2941 * TBTT, but that would complicate things so we switch
2942 * immediately too. If we would delay the switch
2943 * until the next TBTT, we would have to set the probe
2946 * TODO: A channel switch with count <= 1 without
2947 * sending a CSA action frame is kind of useless,
2948 * because the clients won't know we're changing
2949 * channels. The action frame must be implemented
2950 * either here or in the userspace.
2952 if (params
->count
<= 1)
2955 if ((params
->n_counter_offsets_beacon
>
2956 IEEE80211_MAX_CSA_COUNTERS_NUM
) ||
2957 (params
->n_counter_offsets_presp
>
2958 IEEE80211_MAX_CSA_COUNTERS_NUM
))
2961 csa
.counter_offsets_beacon
= params
->counter_offsets_beacon
;
2962 csa
.counter_offsets_presp
= params
->counter_offsets_presp
;
2963 csa
.n_counter_offsets_beacon
= params
->n_counter_offsets_beacon
;
2964 csa
.n_counter_offsets_presp
= params
->n_counter_offsets_presp
;
2965 csa
.count
= params
->count
;
2967 err
= ieee80211_assign_beacon(sdata
, ¶ms
->beacon_csa
, &csa
);
2969 kfree(sdata
->u
.ap
.next_beacon
);
2975 case NL80211_IFTYPE_ADHOC
:
2976 if (!sdata
->vif
.bss_conf
.ibss_joined
)
2979 if (params
->chandef
.width
!= sdata
->u
.ibss
.chandef
.width
)
2982 switch (params
->chandef
.width
) {
2983 case NL80211_CHAN_WIDTH_40
:
2984 if (cfg80211_get_chandef_type(¶ms
->chandef
) !=
2985 cfg80211_get_chandef_type(&sdata
->u
.ibss
.chandef
))
2987 case NL80211_CHAN_WIDTH_5
:
2988 case NL80211_CHAN_WIDTH_10
:
2989 case NL80211_CHAN_WIDTH_20_NOHT
:
2990 case NL80211_CHAN_WIDTH_20
:
2996 /* changes into another band are not supported */
2997 if (sdata
->u
.ibss
.chandef
.chan
->band
!=
2998 params
->chandef
.chan
->band
)
3001 /* see comments in the NL80211_IFTYPE_AP block */
3002 if (params
->count
> 1) {
3003 err
= ieee80211_ibss_csa_beacon(sdata
, params
);
3009 ieee80211_send_action_csa(sdata
, params
);
3012 #ifdef CONFIG_MAC80211_MESH
3013 case NL80211_IFTYPE_MESH_POINT
: {
3014 struct ieee80211_if_mesh
*ifmsh
= &sdata
->u
.mesh
;
3016 if (params
->chandef
.width
!= sdata
->vif
.bss_conf
.chandef
.width
)
3019 /* changes into another band are not supported */
3020 if (sdata
->vif
.bss_conf
.chandef
.chan
->band
!=
3021 params
->chandef
.chan
->band
)
3024 if (ifmsh
->csa_role
== IEEE80211_MESH_CSA_ROLE_NONE
) {
3025 ifmsh
->csa_role
= IEEE80211_MESH_CSA_ROLE_INIT
;
3026 if (!ifmsh
->pre_value
)
3027 ifmsh
->pre_value
= 1;
3032 /* see comments in the NL80211_IFTYPE_AP block */
3033 if (params
->count
> 1) {
3034 err
= ieee80211_mesh_csa_beacon(sdata
, params
);
3036 ifmsh
->csa_role
= IEEE80211_MESH_CSA_ROLE_NONE
;
3042 if (ifmsh
->csa_role
== IEEE80211_MESH_CSA_ROLE_INIT
)
3043 ieee80211_send_action_csa(sdata
, params
);
3056 __ieee80211_channel_switch(struct wiphy
*wiphy
, struct net_device
*dev
,
3057 struct cfg80211_csa_settings
*params
)
3059 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
3060 struct ieee80211_local
*local
= sdata
->local
;
3061 struct ieee80211_channel_switch ch_switch
;
3062 struct ieee80211_chanctx_conf
*conf
;
3063 struct ieee80211_chanctx
*chanctx
;
3067 sdata_assert_lock(sdata
);
3068 lockdep_assert_held(&local
->mtx
);
3070 if (!list_empty(&local
->roc_list
) || local
->scanning
)
3073 if (sdata
->wdev
.cac_started
)
3076 if (cfg80211_chandef_identical(¶ms
->chandef
,
3077 &sdata
->vif
.bss_conf
.chandef
))
3080 /* don't allow another channel switch if one is already active. */
3081 if (sdata
->vif
.csa_active
)
3084 mutex_lock(&local
->chanctx_mtx
);
3085 conf
= rcu_dereference_protected(sdata
->vif
.chanctx_conf
,
3086 lockdep_is_held(&local
->chanctx_mtx
));
3092 chanctx
= container_of(conf
, struct ieee80211_chanctx
, conf
);
3094 ch_switch
.timestamp
= 0;
3095 ch_switch
.device_timestamp
= 0;
3096 ch_switch
.block_tx
= params
->block_tx
;
3097 ch_switch
.chandef
= params
->chandef
;
3098 ch_switch
.count
= params
->count
;
3100 err
= drv_pre_channel_switch(sdata
, &ch_switch
);
3104 err
= ieee80211_vif_reserve_chanctx(sdata
, ¶ms
->chandef
,
3106 params
->radar_required
);
3110 /* if reservation is invalid then this will fail */
3111 err
= ieee80211_check_combinations(sdata
, NULL
, chanctx
->mode
, 0);
3113 ieee80211_vif_unreserve_chanctx(sdata
);
3117 err
= ieee80211_set_csa_beacon(sdata
, params
, &changed
);
3119 ieee80211_vif_unreserve_chanctx(sdata
);
3123 sdata
->csa_chandef
= params
->chandef
;
3124 sdata
->csa_block_tx
= params
->block_tx
;
3125 sdata
->vif
.csa_active
= true;
3127 if (sdata
->csa_block_tx
)
3128 ieee80211_stop_vif_queues(local
, sdata
,
3129 IEEE80211_QUEUE_STOP_REASON_CSA
);
3131 cfg80211_ch_switch_started_notify(sdata
->dev
, &sdata
->csa_chandef
,
3135 ieee80211_bss_info_change_notify(sdata
, changed
);
3136 drv_channel_switch_beacon(sdata
, ¶ms
->chandef
);
3138 /* if the beacon didn't change, we can finalize immediately */
3139 ieee80211_csa_finalize(sdata
);
3143 mutex_unlock(&local
->chanctx_mtx
);
3147 int ieee80211_channel_switch(struct wiphy
*wiphy
, struct net_device
*dev
,
3148 struct cfg80211_csa_settings
*params
)
3150 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
3151 struct ieee80211_local
*local
= sdata
->local
;
3154 mutex_lock(&local
->mtx
);
3155 err
= __ieee80211_channel_switch(wiphy
, dev
, params
);
3156 mutex_unlock(&local
->mtx
);
3161 u64
ieee80211_mgmt_tx_cookie(struct ieee80211_local
*local
)
3163 lockdep_assert_held(&local
->mtx
);
3165 local
->roc_cookie_counter
++;
3167 /* wow, you wrapped 64 bits ... more likely a bug */
3168 if (WARN_ON(local
->roc_cookie_counter
== 0))
3169 local
->roc_cookie_counter
++;
3171 return local
->roc_cookie_counter
;
3174 int ieee80211_attach_ack_skb(struct ieee80211_local
*local
, struct sk_buff
*skb
,
3175 u64
*cookie
, gfp_t gfp
)
3177 unsigned long spin_flags
;
3178 struct sk_buff
*ack_skb
;
3181 ack_skb
= skb_copy(skb
, gfp
);
3185 spin_lock_irqsave(&local
->ack_status_lock
, spin_flags
);
3186 id
= idr_alloc(&local
->ack_status_frames
, ack_skb
,
3187 1, 0x10000, GFP_ATOMIC
);
3188 spin_unlock_irqrestore(&local
->ack_status_lock
, spin_flags
);
3195 IEEE80211_SKB_CB(skb
)->ack_frame_id
= id
;
3197 *cookie
= ieee80211_mgmt_tx_cookie(local
);
3198 IEEE80211_SKB_CB(ack_skb
)->ack
.cookie
= *cookie
;
3203 static void ieee80211_mgmt_frame_register(struct wiphy
*wiphy
,
3204 struct wireless_dev
*wdev
,
3205 u16 frame_type
, bool reg
)
3207 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
3208 struct ieee80211_sub_if_data
*sdata
= IEEE80211_WDEV_TO_SUB_IF(wdev
);
3210 switch (frame_type
) {
3211 case IEEE80211_FTYPE_MGMT
| IEEE80211_STYPE_PROBE_REQ
:
3213 local
->probe_req_reg
++;
3214 sdata
->vif
.probe_req_reg
++;
3216 if (local
->probe_req_reg
)
3217 local
->probe_req_reg
--;
3219 if (sdata
->vif
.probe_req_reg
)
3220 sdata
->vif
.probe_req_reg
--;
3223 if (!local
->open_count
)
3226 if (sdata
->vif
.probe_req_reg
== 1)
3227 drv_config_iface_filter(local
, sdata
, FIF_PROBE_REQ
,
3229 else if (sdata
->vif
.probe_req_reg
== 0)
3230 drv_config_iface_filter(local
, sdata
, 0,
3233 ieee80211_configure_filter(local
);
3240 static int ieee80211_set_antenna(struct wiphy
*wiphy
, u32 tx_ant
, u32 rx_ant
)
3242 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
3247 return drv_set_antenna(local
, tx_ant
, rx_ant
);
3250 static int ieee80211_get_antenna(struct wiphy
*wiphy
, u32
*tx_ant
, u32
*rx_ant
)
3252 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
3254 return drv_get_antenna(local
, tx_ant
, rx_ant
);
3257 static int ieee80211_set_rekey_data(struct wiphy
*wiphy
,
3258 struct net_device
*dev
,
3259 struct cfg80211_gtk_rekey_data
*data
)
3261 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
3262 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
3264 if (!local
->ops
->set_rekey_data
)
3267 drv_set_rekey_data(local
, sdata
, data
);
3272 static int ieee80211_probe_client(struct wiphy
*wiphy
, struct net_device
*dev
,
3273 const u8
*peer
, u64
*cookie
)
3275 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
3276 struct ieee80211_local
*local
= sdata
->local
;
3277 struct ieee80211_qos_hdr
*nullfunc
;
3278 struct sk_buff
*skb
;
3279 int size
= sizeof(*nullfunc
);
3282 struct ieee80211_tx_info
*info
;
3283 struct sta_info
*sta
;
3284 struct ieee80211_chanctx_conf
*chanctx_conf
;
3285 enum nl80211_band band
;
3288 /* the lock is needed to assign the cookie later */
3289 mutex_lock(&local
->mtx
);
3292 chanctx_conf
= rcu_dereference(sdata
->vif
.chanctx_conf
);
3293 if (WARN_ON(!chanctx_conf
)) {
3297 band
= chanctx_conf
->def
.chan
->band
;
3298 sta
= sta_info_get_bss(sdata
, peer
);
3307 fc
= cpu_to_le16(IEEE80211_FTYPE_DATA
|
3308 IEEE80211_STYPE_QOS_NULLFUNC
|
3309 IEEE80211_FCTL_FROMDS
);
3312 fc
= cpu_to_le16(IEEE80211_FTYPE_DATA
|
3313 IEEE80211_STYPE_NULLFUNC
|
3314 IEEE80211_FCTL_FROMDS
);
3317 skb
= dev_alloc_skb(local
->hw
.extra_tx_headroom
+ size
);
3325 skb_reserve(skb
, local
->hw
.extra_tx_headroom
);
3327 nullfunc
= (void *) skb_put(skb
, size
);
3328 nullfunc
->frame_control
= fc
;
3329 nullfunc
->duration_id
= 0;
3330 memcpy(nullfunc
->addr1
, sta
->sta
.addr
, ETH_ALEN
);
3331 memcpy(nullfunc
->addr2
, sdata
->vif
.addr
, ETH_ALEN
);
3332 memcpy(nullfunc
->addr3
, sdata
->vif
.addr
, ETH_ALEN
);
3333 nullfunc
->seq_ctrl
= 0;
3335 info
= IEEE80211_SKB_CB(skb
);
3337 info
->flags
|= IEEE80211_TX_CTL_REQ_TX_STATUS
|
3338 IEEE80211_TX_INTFL_NL80211_FRAME_TX
;
3341 skb_set_queue_mapping(skb
, IEEE80211_AC_VO
);
3344 nullfunc
->qos_ctrl
= cpu_to_le16(7);
3346 ret
= ieee80211_attach_ack_skb(local
, skb
, cookie
, GFP_ATOMIC
);
3353 ieee80211_xmit(sdata
, sta
, skb
);
3359 mutex_unlock(&local
->mtx
);
3364 static int ieee80211_cfg_get_channel(struct wiphy
*wiphy
,
3365 struct wireless_dev
*wdev
,
3366 struct cfg80211_chan_def
*chandef
)
3368 struct ieee80211_sub_if_data
*sdata
= IEEE80211_WDEV_TO_SUB_IF(wdev
);
3369 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
3370 struct ieee80211_chanctx_conf
*chanctx_conf
;
3374 chanctx_conf
= rcu_dereference(sdata
->vif
.chanctx_conf
);
3376 *chandef
= sdata
->vif
.bss_conf
.chandef
;
3378 } else if (local
->open_count
> 0 &&
3379 local
->open_count
== local
->monitors
&&
3380 sdata
->vif
.type
== NL80211_IFTYPE_MONITOR
) {
3381 if (local
->use_chanctx
)
3382 *chandef
= local
->monitor_chandef
;
3384 *chandef
= local
->_oper_chandef
;
3393 static void ieee80211_set_wakeup(struct wiphy
*wiphy
, bool enabled
)
3395 drv_set_wakeup(wiphy_priv(wiphy
), enabled
);
3399 static int ieee80211_set_qos_map(struct wiphy
*wiphy
,
3400 struct net_device
*dev
,
3401 struct cfg80211_qos_map
*qos_map
)
3403 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
3404 struct mac80211_qos_map
*new_qos_map
, *old_qos_map
;
3407 new_qos_map
= kzalloc(sizeof(*new_qos_map
), GFP_KERNEL
);
3410 memcpy(&new_qos_map
->qos_map
, qos_map
, sizeof(*qos_map
));
3412 /* A NULL qos_map was passed to disable QoS mapping */
3416 old_qos_map
= sdata_dereference(sdata
->qos_map
, sdata
);
3417 rcu_assign_pointer(sdata
->qos_map
, new_qos_map
);
3419 kfree_rcu(old_qos_map
, rcu_head
);
3424 static int ieee80211_set_ap_chanwidth(struct wiphy
*wiphy
,
3425 struct net_device
*dev
,
3426 struct cfg80211_chan_def
*chandef
)
3428 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
3432 ret
= ieee80211_vif_change_bandwidth(sdata
, chandef
, &changed
);
3434 ieee80211_bss_info_change_notify(sdata
, changed
);
3439 static int ieee80211_add_tx_ts(struct wiphy
*wiphy
, struct net_device
*dev
,
3440 u8 tsid
, const u8
*peer
, u8 up
,
3443 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
3444 struct ieee80211_if_managed
*ifmgd
= &sdata
->u
.mgd
;
3445 int ac
= ieee802_1d_to_ac
[up
];
3447 if (sdata
->vif
.type
!= NL80211_IFTYPE_STATION
)
3450 if (!(sdata
->wmm_acm
& BIT(up
)))
3453 if (ifmgd
->tx_tspec
[ac
].admitted_time
)
3456 if (admitted_time
) {
3457 ifmgd
->tx_tspec
[ac
].admitted_time
= 32 * admitted_time
;
3458 ifmgd
->tx_tspec
[ac
].tsid
= tsid
;
3459 ifmgd
->tx_tspec
[ac
].up
= up
;
3465 static int ieee80211_del_tx_ts(struct wiphy
*wiphy
, struct net_device
*dev
,
3466 u8 tsid
, const u8
*peer
)
3468 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
3469 struct ieee80211_if_managed
*ifmgd
= &sdata
->u
.mgd
;
3470 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
3473 for (ac
= 0; ac
< IEEE80211_NUM_ACS
; ac
++) {
3474 struct ieee80211_sta_tx_tspec
*tx_tspec
= &ifmgd
->tx_tspec
[ac
];
3476 /* skip unused entries */
3477 if (!tx_tspec
->admitted_time
)
3480 if (tx_tspec
->tsid
!= tsid
)
3483 /* due to this new packets will be reassigned to non-ACM ACs */
3486 /* Make sure that all packets have been sent to avoid to
3487 * restore the QoS params on packets that are still on the
3491 ieee80211_flush_queues(local
, sdata
, false);
3493 /* restore the normal QoS parameters
3494 * (unconditionally to avoid races)
3496 tx_tspec
->action
= TX_TSPEC_ACTION_STOP_DOWNGRADE
;
3497 tx_tspec
->downgraded
= false;
3498 ieee80211_sta_handle_tspec_ac_params(sdata
);
3500 /* finally clear all the data */
3501 memset(tx_tspec
, 0, sizeof(*tx_tspec
));
3509 void ieee80211_nan_func_terminated(struct ieee80211_vif
*vif
,
3511 enum nl80211_nan_func_term_reason reason
,
3514 struct ieee80211_sub_if_data
*sdata
= vif_to_sdata(vif
);
3515 struct cfg80211_nan_func
*func
;
3518 if (WARN_ON(vif
->type
!= NL80211_IFTYPE_NAN
))
3521 spin_lock_bh(&sdata
->u
.nan
.func_lock
);
3523 func
= idr_find(&sdata
->u
.nan
.function_inst_ids
, inst_id
);
3524 if (WARN_ON(!func
)) {
3525 spin_unlock_bh(&sdata
->u
.nan
.func_lock
);
3529 cookie
= func
->cookie
;
3530 idr_remove(&sdata
->u
.nan
.function_inst_ids
, inst_id
);
3532 spin_unlock_bh(&sdata
->u
.nan
.func_lock
);
3534 cfg80211_free_nan_func(func
);
3536 cfg80211_nan_func_terminated(ieee80211_vif_to_wdev(vif
), inst_id
,
3537 reason
, cookie
, gfp
);
3539 EXPORT_SYMBOL(ieee80211_nan_func_terminated
);
3541 void ieee80211_nan_func_match(struct ieee80211_vif
*vif
,
3542 struct cfg80211_nan_match_params
*match
,
3545 struct ieee80211_sub_if_data
*sdata
= vif_to_sdata(vif
);
3546 struct cfg80211_nan_func
*func
;
3548 if (WARN_ON(vif
->type
!= NL80211_IFTYPE_NAN
))
3551 spin_lock_bh(&sdata
->u
.nan
.func_lock
);
3553 func
= idr_find(&sdata
->u
.nan
.function_inst_ids
, match
->inst_id
);
3554 if (WARN_ON(!func
)) {
3555 spin_unlock_bh(&sdata
->u
.nan
.func_lock
);
3558 match
->cookie
= func
->cookie
;
3560 spin_unlock_bh(&sdata
->u
.nan
.func_lock
);
3562 cfg80211_nan_match(ieee80211_vif_to_wdev(vif
), match
, gfp
);
3564 EXPORT_SYMBOL(ieee80211_nan_func_match
);
3566 static int ieee80211_set_multicast_to_unicast(struct wiphy
*wiphy
,
3567 struct net_device
*dev
,
3570 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
3572 sdata
->u
.ap
.multicast_to_unicast
= enabled
;
3577 const struct cfg80211_ops mac80211_config_ops
= {
3578 .add_virtual_intf
= ieee80211_add_iface
,
3579 .del_virtual_intf
= ieee80211_del_iface
,
3580 .change_virtual_intf
= ieee80211_change_iface
,
3581 .start_p2p_device
= ieee80211_start_p2p_device
,
3582 .stop_p2p_device
= ieee80211_stop_p2p_device
,
3583 .add_key
= ieee80211_add_key
,
3584 .del_key
= ieee80211_del_key
,
3585 .get_key
= ieee80211_get_key
,
3586 .set_default_key
= ieee80211_config_default_key
,
3587 .set_default_mgmt_key
= ieee80211_config_default_mgmt_key
,
3588 .start_ap
= ieee80211_start_ap
,
3589 .change_beacon
= ieee80211_change_beacon
,
3590 .stop_ap
= ieee80211_stop_ap
,
3591 .add_station
= ieee80211_add_station
,
3592 .del_station
= ieee80211_del_station
,
3593 .change_station
= ieee80211_change_station
,
3594 .get_station
= ieee80211_get_station
,
3595 .dump_station
= ieee80211_dump_station
,
3596 .dump_survey
= ieee80211_dump_survey
,
3597 #ifdef CONFIG_MAC80211_MESH
3598 .add_mpath
= ieee80211_add_mpath
,
3599 .del_mpath
= ieee80211_del_mpath
,
3600 .change_mpath
= ieee80211_change_mpath
,
3601 .get_mpath
= ieee80211_get_mpath
,
3602 .dump_mpath
= ieee80211_dump_mpath
,
3603 .get_mpp
= ieee80211_get_mpp
,
3604 .dump_mpp
= ieee80211_dump_mpp
,
3605 .update_mesh_config
= ieee80211_update_mesh_config
,
3606 .get_mesh_config
= ieee80211_get_mesh_config
,
3607 .join_mesh
= ieee80211_join_mesh
,
3608 .leave_mesh
= ieee80211_leave_mesh
,
3610 .join_ocb
= ieee80211_join_ocb
,
3611 .leave_ocb
= ieee80211_leave_ocb
,
3612 .change_bss
= ieee80211_change_bss
,
3613 .set_txq_params
= ieee80211_set_txq_params
,
3614 .set_monitor_channel
= ieee80211_set_monitor_channel
,
3615 .suspend
= ieee80211_suspend
,
3616 .resume
= ieee80211_resume
,
3617 .scan
= ieee80211_scan
,
3618 .abort_scan
= ieee80211_abort_scan
,
3619 .sched_scan_start
= ieee80211_sched_scan_start
,
3620 .sched_scan_stop
= ieee80211_sched_scan_stop
,
3621 .auth
= ieee80211_auth
,
3622 .assoc
= ieee80211_assoc
,
3623 .deauth
= ieee80211_deauth
,
3624 .disassoc
= ieee80211_disassoc
,
3625 .join_ibss
= ieee80211_join_ibss
,
3626 .leave_ibss
= ieee80211_leave_ibss
,
3627 .set_mcast_rate
= ieee80211_set_mcast_rate
,
3628 .set_wiphy_params
= ieee80211_set_wiphy_params
,
3629 .set_tx_power
= ieee80211_set_tx_power
,
3630 .get_tx_power
= ieee80211_get_tx_power
,
3631 .set_wds_peer
= ieee80211_set_wds_peer
,
3632 .rfkill_poll
= ieee80211_rfkill_poll
,
3633 CFG80211_TESTMODE_CMD(ieee80211_testmode_cmd
)
3634 CFG80211_TESTMODE_DUMP(ieee80211_testmode_dump
)
3635 .set_power_mgmt
= ieee80211_set_power_mgmt
,
3636 .set_bitrate_mask
= ieee80211_set_bitrate_mask
,
3637 .remain_on_channel
= ieee80211_remain_on_channel
,
3638 .cancel_remain_on_channel
= ieee80211_cancel_remain_on_channel
,
3639 .mgmt_tx
= ieee80211_mgmt_tx
,
3640 .mgmt_tx_cancel_wait
= ieee80211_mgmt_tx_cancel_wait
,
3641 .set_cqm_rssi_config
= ieee80211_set_cqm_rssi_config
,
3642 .mgmt_frame_register
= ieee80211_mgmt_frame_register
,
3643 .set_antenna
= ieee80211_set_antenna
,
3644 .get_antenna
= ieee80211_get_antenna
,
3645 .set_rekey_data
= ieee80211_set_rekey_data
,
3646 .tdls_oper
= ieee80211_tdls_oper
,
3647 .tdls_mgmt
= ieee80211_tdls_mgmt
,
3648 .tdls_channel_switch
= ieee80211_tdls_channel_switch
,
3649 .tdls_cancel_channel_switch
= ieee80211_tdls_cancel_channel_switch
,
3650 .probe_client
= ieee80211_probe_client
,
3651 .set_noack_map
= ieee80211_set_noack_map
,
3653 .set_wakeup
= ieee80211_set_wakeup
,
3655 .get_channel
= ieee80211_cfg_get_channel
,
3656 .start_radar_detection
= ieee80211_start_radar_detection
,
3657 .channel_switch
= ieee80211_channel_switch
,
3658 .set_qos_map
= ieee80211_set_qos_map
,
3659 .set_ap_chanwidth
= ieee80211_set_ap_chanwidth
,
3660 .add_tx_ts
= ieee80211_add_tx_ts
,
3661 .del_tx_ts
= ieee80211_del_tx_ts
,
3662 .start_nan
= ieee80211_start_nan
,
3663 .stop_nan
= ieee80211_stop_nan
,
3664 .nan_change_conf
= ieee80211_nan_change_conf
,
3665 .add_nan_func
= ieee80211_add_nan_func
,
3666 .del_nan_func
= ieee80211_del_nan_func
,
3667 .set_multicast_to_unicast
= ieee80211_set_multicast_to_unicast
,