2 * mac80211 configuration hooks for cfg80211
4 * Copyright 2006-2010 Johannes Berg <johannes@sipsolutions.net>
6 * This file is GPLv2 as found in COPYING.
9 #include <linux/ieee80211.h>
10 #include <linux/nl80211.h>
11 #include <linux/rtnetlink.h>
12 #include <linux/slab.h>
13 #include <net/net_namespace.h>
14 #include <linux/rcupdate.h>
15 #include <linux/if_ether.h>
16 #include <net/cfg80211.h>
17 #include "ieee80211_i.h"
18 #include "driver-ops.h"
23 static struct net_device
*ieee80211_add_iface(struct wiphy
*wiphy
, char *name
,
24 enum nl80211_iftype type
,
26 struct vif_params
*params
)
28 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
29 struct net_device
*dev
;
30 struct ieee80211_sub_if_data
*sdata
;
33 err
= ieee80211_if_add(local
, name
, &dev
, type
, params
);
37 if (type
== NL80211_IFTYPE_MONITOR
&& flags
) {
38 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
39 sdata
->u
.mntr_flags
= *flags
;
45 static int ieee80211_del_iface(struct wiphy
*wiphy
, struct net_device
*dev
)
47 ieee80211_if_remove(IEEE80211_DEV_TO_SUB_IF(dev
));
52 static int ieee80211_change_iface(struct wiphy
*wiphy
,
53 struct net_device
*dev
,
54 enum nl80211_iftype type
, u32
*flags
,
55 struct vif_params
*params
)
57 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
60 ret
= ieee80211_if_change_type(sdata
, type
);
64 if (type
== NL80211_IFTYPE_AP_VLAN
&&
65 params
&& params
->use_4addr
== 0)
66 RCU_INIT_POINTER(sdata
->u
.vlan
.sta
, NULL
);
67 else if (type
== NL80211_IFTYPE_STATION
&&
68 params
&& params
->use_4addr
>= 0)
69 sdata
->u
.mgd
.use_4addr
= params
->use_4addr
;
71 if (sdata
->vif
.type
== NL80211_IFTYPE_MONITOR
&& flags
) {
72 struct ieee80211_local
*local
= sdata
->local
;
74 if (ieee80211_sdata_running(sdata
)) {
76 * Prohibit MONITOR_FLAG_COOK_FRAMES to be
77 * changed while the interface is up.
78 * Else we would need to add a lot of cruft
79 * to update everything:
80 * cooked_mntrs, monitor and all fif_* counters
81 * reconfigure hardware
83 if ((*flags
& MONITOR_FLAG_COOK_FRAMES
) !=
84 (sdata
->u
.mntr_flags
& MONITOR_FLAG_COOK_FRAMES
))
87 ieee80211_adjust_monitor_flags(sdata
, -1);
88 sdata
->u
.mntr_flags
= *flags
;
89 ieee80211_adjust_monitor_flags(sdata
, 1);
91 ieee80211_configure_filter(local
);
94 * Because the interface is down, ieee80211_do_stop
95 * and ieee80211_do_open take care of "everything"
96 * mentioned in the comment above.
98 sdata
->u
.mntr_flags
= *flags
;
105 static int ieee80211_add_key(struct wiphy
*wiphy
, struct net_device
*dev
,
106 u8 key_idx
, bool pairwise
, const u8
*mac_addr
,
107 struct key_params
*params
)
109 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
110 struct sta_info
*sta
= NULL
;
111 struct ieee80211_key
*key
;
114 if (!ieee80211_sdata_running(sdata
))
117 /* reject WEP and TKIP keys if WEP failed to initialize */
118 switch (params
->cipher
) {
119 case WLAN_CIPHER_SUITE_WEP40
:
120 case WLAN_CIPHER_SUITE_TKIP
:
121 case WLAN_CIPHER_SUITE_WEP104
:
122 if (IS_ERR(sdata
->local
->wep_tx_tfm
))
129 key
= ieee80211_key_alloc(params
->cipher
, key_idx
, params
->key_len
,
130 params
->key
, params
->seq_len
, params
->seq
);
135 key
->conf
.flags
|= IEEE80211_KEY_FLAG_PAIRWISE
;
137 mutex_lock(&sdata
->local
->sta_mtx
);
140 if (ieee80211_vif_is_mesh(&sdata
->vif
))
141 sta
= sta_info_get(sdata
, mac_addr
);
143 sta
= sta_info_get_bss(sdata
, mac_addr
);
145 ieee80211_key_free(sdata
->local
, key
);
151 err
= ieee80211_key_link(key
, sdata
, sta
);
153 ieee80211_key_free(sdata
->local
, key
);
156 mutex_unlock(&sdata
->local
->sta_mtx
);
161 static int ieee80211_del_key(struct wiphy
*wiphy
, struct net_device
*dev
,
162 u8 key_idx
, bool pairwise
, const u8
*mac_addr
)
164 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
165 struct ieee80211_local
*local
= sdata
->local
;
166 struct sta_info
*sta
;
167 struct ieee80211_key
*key
= NULL
;
170 mutex_lock(&local
->sta_mtx
);
171 mutex_lock(&local
->key_mtx
);
176 sta
= sta_info_get_bss(sdata
, mac_addr
);
181 key
= key_mtx_dereference(local
, sta
->ptk
);
183 key
= key_mtx_dereference(local
, sta
->gtk
[key_idx
]);
185 key
= key_mtx_dereference(local
, sdata
->keys
[key_idx
]);
192 __ieee80211_key_free(key
);
196 mutex_unlock(&local
->key_mtx
);
197 mutex_unlock(&local
->sta_mtx
);
202 static int ieee80211_get_key(struct wiphy
*wiphy
, struct net_device
*dev
,
203 u8 key_idx
, bool pairwise
, const u8
*mac_addr
,
205 void (*callback
)(void *cookie
,
206 struct key_params
*params
))
208 struct ieee80211_sub_if_data
*sdata
;
209 struct sta_info
*sta
= NULL
;
211 struct key_params params
;
212 struct ieee80211_key
*key
= NULL
;
218 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
223 sta
= sta_info_get_bss(sdata
, mac_addr
);
228 key
= rcu_dereference(sta
->ptk
);
229 else if (key_idx
< NUM_DEFAULT_KEYS
)
230 key
= rcu_dereference(sta
->gtk
[key_idx
]);
232 key
= rcu_dereference(sdata
->keys
[key_idx
]);
237 memset(¶ms
, 0, sizeof(params
));
239 params
.cipher
= key
->conf
.cipher
;
241 switch (key
->conf
.cipher
) {
242 case WLAN_CIPHER_SUITE_TKIP
:
243 iv32
= key
->u
.tkip
.tx
.iv32
;
244 iv16
= key
->u
.tkip
.tx
.iv16
;
246 if (key
->flags
& KEY_FLAG_UPLOADED_TO_HARDWARE
)
247 drv_get_tkip_seq(sdata
->local
,
248 key
->conf
.hw_key_idx
,
251 seq
[0] = iv16
& 0xff;
252 seq
[1] = (iv16
>> 8) & 0xff;
253 seq
[2] = iv32
& 0xff;
254 seq
[3] = (iv32
>> 8) & 0xff;
255 seq
[4] = (iv32
>> 16) & 0xff;
256 seq
[5] = (iv32
>> 24) & 0xff;
260 case WLAN_CIPHER_SUITE_CCMP
:
261 pn64
= atomic64_read(&key
->u
.ccmp
.tx_pn
);
271 case WLAN_CIPHER_SUITE_AES_CMAC
:
272 pn64
= atomic64_read(&key
->u
.aes_cmac
.tx_pn
);
284 params
.key
= key
->conf
.key
;
285 params
.key_len
= key
->conf
.keylen
;
287 callback(cookie
, ¶ms
);
295 static int ieee80211_config_default_key(struct wiphy
*wiphy
,
296 struct net_device
*dev
,
297 u8 key_idx
, bool uni
,
300 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
302 ieee80211_set_default_key(sdata
, key_idx
, uni
, multi
);
307 static int ieee80211_config_default_mgmt_key(struct wiphy
*wiphy
,
308 struct net_device
*dev
,
311 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
313 ieee80211_set_default_mgmt_key(sdata
, key_idx
);
318 static void rate_idx_to_bitrate(struct rate_info
*rate
, struct sta_info
*sta
, int idx
)
320 if (!(rate
->flags
& RATE_INFO_FLAGS_MCS
)) {
321 struct ieee80211_supported_band
*sband
;
322 sband
= sta
->local
->hw
.wiphy
->bands
[
323 sta
->local
->hw
.conf
.channel
->band
];
324 rate
->legacy
= sband
->bitrates
[idx
].bitrate
;
329 static void sta_set_sinfo(struct sta_info
*sta
, struct station_info
*sinfo
)
331 struct ieee80211_sub_if_data
*sdata
= sta
->sdata
;
332 struct timespec uptime
;
334 sinfo
->generation
= sdata
->local
->sta_generation
;
336 sinfo
->filled
= STATION_INFO_INACTIVE_TIME
|
337 STATION_INFO_RX_BYTES
|
338 STATION_INFO_TX_BYTES
|
339 STATION_INFO_RX_PACKETS
|
340 STATION_INFO_TX_PACKETS
|
341 STATION_INFO_TX_RETRIES
|
342 STATION_INFO_TX_FAILED
|
343 STATION_INFO_TX_BITRATE
|
344 STATION_INFO_RX_BITRATE
|
345 STATION_INFO_RX_DROP_MISC
|
346 STATION_INFO_BSS_PARAM
|
347 STATION_INFO_CONNECTED_TIME
|
348 STATION_INFO_STA_FLAGS
;
350 do_posix_clock_monotonic_gettime(&uptime
);
351 sinfo
->connected_time
= uptime
.tv_sec
- sta
->last_connected
;
353 sinfo
->inactive_time
= jiffies_to_msecs(jiffies
- sta
->last_rx
);
354 sinfo
->rx_bytes
= sta
->rx_bytes
;
355 sinfo
->tx_bytes
= sta
->tx_bytes
;
356 sinfo
->rx_packets
= sta
->rx_packets
;
357 sinfo
->tx_packets
= sta
->tx_packets
;
358 sinfo
->tx_retries
= sta
->tx_retry_count
;
359 sinfo
->tx_failed
= sta
->tx_retry_failed
;
360 sinfo
->rx_dropped_misc
= sta
->rx_dropped
;
362 if ((sta
->local
->hw
.flags
& IEEE80211_HW_SIGNAL_DBM
) ||
363 (sta
->local
->hw
.flags
& IEEE80211_HW_SIGNAL_UNSPEC
)) {
364 sinfo
->filled
|= STATION_INFO_SIGNAL
| STATION_INFO_SIGNAL_AVG
;
365 sinfo
->signal
= (s8
)sta
->last_signal
;
366 sinfo
->signal_avg
= (s8
) -ewma_read(&sta
->avg_signal
);
369 sinfo
->txrate
.flags
= 0;
370 if (sta
->last_tx_rate
.flags
& IEEE80211_TX_RC_MCS
)
371 sinfo
->txrate
.flags
|= RATE_INFO_FLAGS_MCS
;
372 if (sta
->last_tx_rate
.flags
& IEEE80211_TX_RC_40_MHZ_WIDTH
)
373 sinfo
->txrate
.flags
|= RATE_INFO_FLAGS_40_MHZ_WIDTH
;
374 if (sta
->last_tx_rate
.flags
& IEEE80211_TX_RC_SHORT_GI
)
375 sinfo
->txrate
.flags
|= RATE_INFO_FLAGS_SHORT_GI
;
376 rate_idx_to_bitrate(&sinfo
->txrate
, sta
, sta
->last_tx_rate
.idx
);
378 sinfo
->rxrate
.flags
= 0;
379 if (sta
->last_rx_rate_flag
& RX_FLAG_HT
)
380 sinfo
->rxrate
.flags
|= RATE_INFO_FLAGS_MCS
;
381 if (sta
->last_rx_rate_flag
& RX_FLAG_40MHZ
)
382 sinfo
->rxrate
.flags
|= RATE_INFO_FLAGS_40_MHZ_WIDTH
;
383 if (sta
->last_rx_rate_flag
& RX_FLAG_SHORT_GI
)
384 sinfo
->rxrate
.flags
|= RATE_INFO_FLAGS_SHORT_GI
;
385 rate_idx_to_bitrate(&sinfo
->rxrate
, sta
, sta
->last_rx_rate_idx
);
387 if (ieee80211_vif_is_mesh(&sdata
->vif
)) {
388 #ifdef CONFIG_MAC80211_MESH
389 sinfo
->filled
|= STATION_INFO_LLID
|
391 STATION_INFO_PLINK_STATE
;
393 sinfo
->llid
= le16_to_cpu(sta
->llid
);
394 sinfo
->plid
= le16_to_cpu(sta
->plid
);
395 sinfo
->plink_state
= sta
->plink_state
;
399 sinfo
->bss_param
.flags
= 0;
400 if (sdata
->vif
.bss_conf
.use_cts_prot
)
401 sinfo
->bss_param
.flags
|= BSS_PARAM_FLAGS_CTS_PROT
;
402 if (sdata
->vif
.bss_conf
.use_short_preamble
)
403 sinfo
->bss_param
.flags
|= BSS_PARAM_FLAGS_SHORT_PREAMBLE
;
404 if (sdata
->vif
.bss_conf
.use_short_slot
)
405 sinfo
->bss_param
.flags
|= BSS_PARAM_FLAGS_SHORT_SLOT_TIME
;
406 sinfo
->bss_param
.dtim_period
= sdata
->local
->hw
.conf
.ps_dtim_period
;
407 sinfo
->bss_param
.beacon_interval
= sdata
->vif
.bss_conf
.beacon_int
;
409 sinfo
->sta_flags
.set
= 0;
410 sinfo
->sta_flags
.mask
= BIT(NL80211_STA_FLAG_AUTHORIZED
) |
411 BIT(NL80211_STA_FLAG_SHORT_PREAMBLE
) |
412 BIT(NL80211_STA_FLAG_WME
) |
413 BIT(NL80211_STA_FLAG_MFP
) |
414 BIT(NL80211_STA_FLAG_AUTHENTICATED
);
415 if (test_sta_flag(sta
, WLAN_STA_AUTHORIZED
))
416 sinfo
->sta_flags
.set
|= BIT(NL80211_STA_FLAG_AUTHORIZED
);
417 if (test_sta_flag(sta
, WLAN_STA_SHORT_PREAMBLE
))
418 sinfo
->sta_flags
.set
|= BIT(NL80211_STA_FLAG_SHORT_PREAMBLE
);
419 if (test_sta_flag(sta
, WLAN_STA_WME
))
420 sinfo
->sta_flags
.set
|= BIT(NL80211_STA_FLAG_WME
);
421 if (test_sta_flag(sta
, WLAN_STA_MFP
))
422 sinfo
->sta_flags
.set
|= BIT(NL80211_STA_FLAG_MFP
);
423 if (test_sta_flag(sta
, WLAN_STA_AUTH
))
424 sinfo
->sta_flags
.set
|= BIT(NL80211_STA_FLAG_AUTHENTICATED
);
428 static int ieee80211_dump_station(struct wiphy
*wiphy
, struct net_device
*dev
,
429 int idx
, u8
*mac
, struct station_info
*sinfo
)
431 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
432 struct sta_info
*sta
;
437 sta
= sta_info_get_by_idx(sdata
, idx
);
440 memcpy(mac
, sta
->sta
.addr
, ETH_ALEN
);
441 sta_set_sinfo(sta
, sinfo
);
449 static int ieee80211_dump_survey(struct wiphy
*wiphy
, struct net_device
*dev
,
450 int idx
, struct survey_info
*survey
)
452 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
454 return drv_get_survey(local
, idx
, survey
);
457 static int ieee80211_get_station(struct wiphy
*wiphy
, struct net_device
*dev
,
458 u8
*mac
, struct station_info
*sinfo
)
460 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
461 struct sta_info
*sta
;
466 sta
= sta_info_get_bss(sdata
, mac
);
469 sta_set_sinfo(sta
, sinfo
);
477 static void ieee80211_config_ap_ssid(struct ieee80211_sub_if_data
*sdata
,
478 struct beacon_parameters
*params
)
480 struct ieee80211_bss_conf
*bss_conf
= &sdata
->vif
.bss_conf
;
482 bss_conf
->ssid_len
= params
->ssid_len
;
484 if (params
->ssid_len
)
485 memcpy(bss_conf
->ssid
, params
->ssid
, params
->ssid_len
);
487 bss_conf
->hidden_ssid
=
488 (params
->hidden_ssid
!= NL80211_HIDDEN_SSID_NOT_IN_USE
);
492 * This handles both adding a beacon and setting new beacon info
494 static int ieee80211_config_beacon(struct ieee80211_sub_if_data
*sdata
,
495 struct beacon_parameters
*params
)
497 struct beacon_data
*new, *old
;
498 int new_head_len
, new_tail_len
;
502 old
= rtnl_dereference(sdata
->u
.ap
.beacon
);
504 /* head must not be zero-length */
505 if (params
->head
&& !params
->head_len
)
509 * This is a kludge. beacon interval should really be part
510 * of the beacon information.
512 if (params
->interval
&&
513 (sdata
->vif
.bss_conf
.beacon_int
!= params
->interval
)) {
514 sdata
->vif
.bss_conf
.beacon_int
= params
->interval
;
515 ieee80211_bss_info_change_notify(sdata
,
516 BSS_CHANGED_BEACON_INT
);
519 /* Need to have a beacon head if we don't have one yet */
520 if (!params
->head
&& !old
)
523 /* sorry, no way to start beaconing without dtim period */
524 if (!params
->dtim_period
&& !old
)
527 /* new or old head? */
529 new_head_len
= params
->head_len
;
531 new_head_len
= old
->head_len
;
533 /* new or old tail? */
534 if (params
->tail
|| !old
)
535 /* params->tail_len will be zero for !params->tail */
536 new_tail_len
= params
->tail_len
;
538 new_tail_len
= old
->tail_len
;
540 size
= sizeof(*new) + new_head_len
+ new_tail_len
;
542 new = kzalloc(size
, GFP_KERNEL
);
546 /* start filling the new info now */
548 /* new or old dtim period? */
549 if (params
->dtim_period
)
550 new->dtim_period
= params
->dtim_period
;
552 new->dtim_period
= old
->dtim_period
;
555 * pointers go into the block we allocated,
556 * memory is | beacon_data | head | tail |
558 new->head
= ((u8
*) new) + sizeof(*new);
559 new->tail
= new->head
+ new_head_len
;
560 new->head_len
= new_head_len
;
561 new->tail_len
= new_tail_len
;
565 memcpy(new->head
, params
->head
, new_head_len
);
567 memcpy(new->head
, old
->head
, new_head_len
);
569 /* copy in optional tail */
571 memcpy(new->tail
, params
->tail
, new_tail_len
);
574 memcpy(new->tail
, old
->tail
, new_tail_len
);
576 sdata
->vif
.bss_conf
.dtim_period
= new->dtim_period
;
578 RCU_INIT_POINTER(sdata
->u
.ap
.beacon
, new);
584 ieee80211_config_ap_ssid(sdata
, params
);
586 ieee80211_bss_info_change_notify(sdata
, BSS_CHANGED_BEACON_ENABLED
|
592 static int ieee80211_add_beacon(struct wiphy
*wiphy
, struct net_device
*dev
,
593 struct beacon_parameters
*params
)
595 struct ieee80211_sub_if_data
*sdata
;
596 struct beacon_data
*old
;
598 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
600 old
= rtnl_dereference(sdata
->u
.ap
.beacon
);
604 return ieee80211_config_beacon(sdata
, params
);
607 static int ieee80211_set_beacon(struct wiphy
*wiphy
, struct net_device
*dev
,
608 struct beacon_parameters
*params
)
610 struct ieee80211_sub_if_data
*sdata
;
611 struct beacon_data
*old
;
613 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
615 old
= rtnl_dereference(sdata
->u
.ap
.beacon
);
619 return ieee80211_config_beacon(sdata
, params
);
622 static int ieee80211_del_beacon(struct wiphy
*wiphy
, struct net_device
*dev
)
624 struct ieee80211_sub_if_data
*sdata
;
625 struct beacon_data
*old
;
627 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
629 old
= rtnl_dereference(sdata
->u
.ap
.beacon
);
633 RCU_INIT_POINTER(sdata
->u
.ap
.beacon
, NULL
);
637 ieee80211_bss_info_change_notify(sdata
, BSS_CHANGED_BEACON_ENABLED
);
641 /* Layer 2 Update frame (802.2 Type 1 LLC XID Update response) */
642 struct iapp_layer2_update
{
643 u8 da
[ETH_ALEN
]; /* broadcast */
644 u8 sa
[ETH_ALEN
]; /* STA addr */
652 static void ieee80211_send_layer2_update(struct sta_info
*sta
)
654 struct iapp_layer2_update
*msg
;
657 /* Send Level 2 Update Frame to update forwarding tables in layer 2
660 skb
= dev_alloc_skb(sizeof(*msg
));
663 msg
= (struct iapp_layer2_update
*)skb_put(skb
, sizeof(*msg
));
665 /* 802.2 Type 1 Logical Link Control (LLC) Exchange Identifier (XID)
666 * Update response frame; IEEE Std 802.2-1998, 5.4.1.2.1 */
668 memset(msg
->da
, 0xff, ETH_ALEN
);
669 memcpy(msg
->sa
, sta
->sta
.addr
, ETH_ALEN
);
672 msg
->ssap
= 0x01; /* NULL LSAP, CR Bit: Response */
673 msg
->control
= 0xaf; /* XID response lsb.1111F101.
674 * F=0 (no poll command; unsolicited frame) */
675 msg
->xid_info
[0] = 0x81; /* XID format identifier */
676 msg
->xid_info
[1] = 1; /* LLC types/classes: Type 1 LLC */
677 msg
->xid_info
[2] = 0; /* XID sender's receive window size (RW) */
679 skb
->dev
= sta
->sdata
->dev
;
680 skb
->protocol
= eth_type_trans(skb
, sta
->sdata
->dev
);
681 memset(skb
->cb
, 0, sizeof(skb
->cb
));
685 static void sta_apply_parameters(struct ieee80211_local
*local
,
686 struct sta_info
*sta
,
687 struct station_parameters
*params
)
691 struct ieee80211_supported_band
*sband
;
692 struct ieee80211_sub_if_data
*sdata
= sta
->sdata
;
695 sband
= local
->hw
.wiphy
->bands
[local
->oper_channel
->band
];
697 mask
= params
->sta_flags_mask
;
698 set
= params
->sta_flags_set
;
700 if (mask
& BIT(NL80211_STA_FLAG_AUTHORIZED
)) {
701 if (set
& BIT(NL80211_STA_FLAG_AUTHORIZED
))
702 set_sta_flag(sta
, WLAN_STA_AUTHORIZED
);
704 clear_sta_flag(sta
, WLAN_STA_AUTHORIZED
);
707 if (mask
& BIT(NL80211_STA_FLAG_SHORT_PREAMBLE
)) {
708 if (set
& BIT(NL80211_STA_FLAG_SHORT_PREAMBLE
))
709 set_sta_flag(sta
, WLAN_STA_SHORT_PREAMBLE
);
711 clear_sta_flag(sta
, WLAN_STA_SHORT_PREAMBLE
);
714 if (mask
& BIT(NL80211_STA_FLAG_WME
)) {
715 if (set
& BIT(NL80211_STA_FLAG_WME
)) {
716 set_sta_flag(sta
, WLAN_STA_WME
);
719 clear_sta_flag(sta
, WLAN_STA_WME
);
720 sta
->sta
.wme
= false;
724 if (mask
& BIT(NL80211_STA_FLAG_MFP
)) {
725 if (set
& BIT(NL80211_STA_FLAG_MFP
))
726 set_sta_flag(sta
, WLAN_STA_MFP
);
728 clear_sta_flag(sta
, WLAN_STA_MFP
);
731 if (mask
& BIT(NL80211_STA_FLAG_AUTHENTICATED
)) {
732 if (set
& BIT(NL80211_STA_FLAG_AUTHENTICATED
))
733 set_sta_flag(sta
, WLAN_STA_AUTH
);
735 clear_sta_flag(sta
, WLAN_STA_AUTH
);
738 if (mask
& BIT(NL80211_STA_FLAG_TDLS_PEER
)) {
739 if (set
& BIT(NL80211_STA_FLAG_TDLS_PEER
))
740 set_sta_flag(sta
, WLAN_STA_TDLS_PEER
);
742 clear_sta_flag(sta
, WLAN_STA_TDLS_PEER
);
745 if (params
->sta_modify_mask
& STATION_PARAM_APPLY_UAPSD
) {
746 sta
->sta
.uapsd_queues
= params
->uapsd_queues
;
747 sta
->sta
.max_sp
= params
->max_sp
;
751 * cfg80211 validates this (1-2007) and allows setting the AID
752 * only when creating a new station entry
755 sta
->sta
.aid
= params
->aid
;
758 * FIXME: updating the following information is racy when this
759 * function is called from ieee80211_change_station().
760 * However, all this information should be static so
761 * maybe we should just reject attemps to change it.
764 if (params
->listen_interval
>= 0)
765 sta
->listen_interval
= params
->listen_interval
;
767 if (params
->supported_rates
) {
770 for (i
= 0; i
< params
->supported_rates_len
; i
++) {
771 int rate
= (params
->supported_rates
[i
] & 0x7f) * 5;
772 for (j
= 0; j
< sband
->n_bitrates
; j
++) {
773 if (sband
->bitrates
[j
].bitrate
== rate
)
777 sta
->sta
.supp_rates
[local
->oper_channel
->band
] = rates
;
781 ieee80211_ht_cap_ie_to_sta_ht_cap(sband
,
785 if (ieee80211_vif_is_mesh(&sdata
->vif
)) {
786 #ifdef CONFIG_MAC80211_MESH
787 if (sdata
->u
.mesh
.security
& IEEE80211_MESH_SEC_SECURED
)
788 switch (params
->plink_state
) {
789 case NL80211_PLINK_LISTEN
:
790 case NL80211_PLINK_ESTAB
:
791 case NL80211_PLINK_BLOCKED
:
792 sta
->plink_state
= params
->plink_state
;
799 switch (params
->plink_action
) {
800 case PLINK_ACTION_OPEN
:
801 mesh_plink_open(sta
);
803 case PLINK_ACTION_BLOCK
:
804 mesh_plink_block(sta
);
811 static int ieee80211_add_station(struct wiphy
*wiphy
, struct net_device
*dev
,
812 u8
*mac
, struct station_parameters
*params
)
814 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
815 struct sta_info
*sta
;
816 struct ieee80211_sub_if_data
*sdata
;
821 sdata
= IEEE80211_DEV_TO_SUB_IF(params
->vlan
);
823 if (sdata
->vif
.type
!= NL80211_IFTYPE_AP_VLAN
&&
824 sdata
->vif
.type
!= NL80211_IFTYPE_AP
)
827 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
829 if (compare_ether_addr(mac
, sdata
->vif
.addr
) == 0)
832 if (is_multicast_ether_addr(mac
))
835 /* Only TDLS-supporting stations can add TDLS peers */
836 if ((params
->sta_flags_set
& BIT(NL80211_STA_FLAG_TDLS_PEER
)) &&
837 !((wiphy
->flags
& WIPHY_FLAG_SUPPORTS_TDLS
) &&
838 sdata
->vif
.type
== NL80211_IFTYPE_STATION
))
841 sta
= sta_info_alloc(sdata
, mac
, GFP_KERNEL
);
845 set_sta_flag(sta
, WLAN_STA_AUTH
);
846 set_sta_flag(sta
, WLAN_STA_ASSOC
);
848 sta_apply_parameters(local
, sta
, params
);
850 rate_control_rate_init(sta
);
852 layer2_update
= sdata
->vif
.type
== NL80211_IFTYPE_AP_VLAN
||
853 sdata
->vif
.type
== NL80211_IFTYPE_AP
;
855 err
= sta_info_insert_rcu(sta
);
862 ieee80211_send_layer2_update(sta
);
869 static int ieee80211_del_station(struct wiphy
*wiphy
, struct net_device
*dev
,
872 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
873 struct ieee80211_sub_if_data
*sdata
;
875 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
878 return sta_info_destroy_addr_bss(sdata
, mac
);
880 sta_info_flush(local
, sdata
);
884 static int ieee80211_change_station(struct wiphy
*wiphy
,
885 struct net_device
*dev
,
887 struct station_parameters
*params
)
889 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
890 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
891 struct sta_info
*sta
;
892 struct ieee80211_sub_if_data
*vlansdata
;
896 sta
= sta_info_get_bss(sdata
, mac
);
902 /* The TDLS bit cannot be toggled after the STA was added */
903 if ((params
->sta_flags_mask
& BIT(NL80211_STA_FLAG_TDLS_PEER
)) &&
904 !!(params
->sta_flags_set
& BIT(NL80211_STA_FLAG_TDLS_PEER
)) !=
905 !!test_sta_flag(sta
, WLAN_STA_TDLS_PEER
)) {
910 if (params
->vlan
&& params
->vlan
!= sta
->sdata
->dev
) {
911 vlansdata
= IEEE80211_DEV_TO_SUB_IF(params
->vlan
);
913 if (vlansdata
->vif
.type
!= NL80211_IFTYPE_AP_VLAN
&&
914 vlansdata
->vif
.type
!= NL80211_IFTYPE_AP
) {
919 if (params
->vlan
->ieee80211_ptr
->use_4addr
) {
920 if (vlansdata
->u
.vlan
.sta
) {
925 RCU_INIT_POINTER(vlansdata
->u
.vlan
.sta
, sta
);
928 sta
->sdata
= vlansdata
;
929 ieee80211_send_layer2_update(sta
);
932 sta_apply_parameters(local
, sta
, params
);
936 if (sdata
->vif
.type
== NL80211_IFTYPE_STATION
&&
937 params
->sta_flags_mask
& BIT(NL80211_STA_FLAG_AUTHORIZED
))
938 ieee80211_recalc_ps(local
, -1);
943 #ifdef CONFIG_MAC80211_MESH
944 static int ieee80211_add_mpath(struct wiphy
*wiphy
, struct net_device
*dev
,
945 u8
*dst
, u8
*next_hop
)
947 struct ieee80211_sub_if_data
*sdata
;
948 struct mesh_path
*mpath
;
949 struct sta_info
*sta
;
952 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
955 sta
= sta_info_get(sdata
, next_hop
);
961 err
= mesh_path_add(dst
, sdata
);
967 mpath
= mesh_path_lookup(dst
, sdata
);
972 mesh_path_fix_nexthop(mpath
, sta
);
978 static int ieee80211_del_mpath(struct wiphy
*wiphy
, struct net_device
*dev
,
981 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
984 return mesh_path_del(dst
, sdata
);
986 mesh_path_flush_by_iface(sdata
);
990 static int ieee80211_change_mpath(struct wiphy
*wiphy
,
991 struct net_device
*dev
,
992 u8
*dst
, u8
*next_hop
)
994 struct ieee80211_sub_if_data
*sdata
;
995 struct mesh_path
*mpath
;
996 struct sta_info
*sta
;
998 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1002 sta
= sta_info_get(sdata
, next_hop
);
1008 mpath
= mesh_path_lookup(dst
, sdata
);
1014 mesh_path_fix_nexthop(mpath
, sta
);
1020 static void mpath_set_pinfo(struct mesh_path
*mpath
, u8
*next_hop
,
1021 struct mpath_info
*pinfo
)
1023 struct sta_info
*next_hop_sta
= rcu_dereference(mpath
->next_hop
);
1026 memcpy(next_hop
, next_hop_sta
->sta
.addr
, ETH_ALEN
);
1028 memset(next_hop
, 0, ETH_ALEN
);
1030 pinfo
->generation
= mesh_paths_generation
;
1032 pinfo
->filled
= MPATH_INFO_FRAME_QLEN
|
1035 MPATH_INFO_EXPTIME
|
1036 MPATH_INFO_DISCOVERY_TIMEOUT
|
1037 MPATH_INFO_DISCOVERY_RETRIES
|
1040 pinfo
->frame_qlen
= mpath
->frame_queue
.qlen
;
1041 pinfo
->sn
= mpath
->sn
;
1042 pinfo
->metric
= mpath
->metric
;
1043 if (time_before(jiffies
, mpath
->exp_time
))
1044 pinfo
->exptime
= jiffies_to_msecs(mpath
->exp_time
- jiffies
);
1045 pinfo
->discovery_timeout
=
1046 jiffies_to_msecs(mpath
->discovery_timeout
);
1047 pinfo
->discovery_retries
= mpath
->discovery_retries
;
1049 if (mpath
->flags
& MESH_PATH_ACTIVE
)
1050 pinfo
->flags
|= NL80211_MPATH_FLAG_ACTIVE
;
1051 if (mpath
->flags
& MESH_PATH_RESOLVING
)
1052 pinfo
->flags
|= NL80211_MPATH_FLAG_RESOLVING
;
1053 if (mpath
->flags
& MESH_PATH_SN_VALID
)
1054 pinfo
->flags
|= NL80211_MPATH_FLAG_SN_VALID
;
1055 if (mpath
->flags
& MESH_PATH_FIXED
)
1056 pinfo
->flags
|= NL80211_MPATH_FLAG_FIXED
;
1057 if (mpath
->flags
& MESH_PATH_RESOLVING
)
1058 pinfo
->flags
|= NL80211_MPATH_FLAG_RESOLVING
;
1060 pinfo
->flags
= mpath
->flags
;
1063 static int ieee80211_get_mpath(struct wiphy
*wiphy
, struct net_device
*dev
,
1064 u8
*dst
, u8
*next_hop
, struct mpath_info
*pinfo
)
1067 struct ieee80211_sub_if_data
*sdata
;
1068 struct mesh_path
*mpath
;
1070 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1073 mpath
= mesh_path_lookup(dst
, sdata
);
1078 memcpy(dst
, mpath
->dst
, ETH_ALEN
);
1079 mpath_set_pinfo(mpath
, next_hop
, pinfo
);
1084 static int ieee80211_dump_mpath(struct wiphy
*wiphy
, struct net_device
*dev
,
1085 int idx
, u8
*dst
, u8
*next_hop
,
1086 struct mpath_info
*pinfo
)
1088 struct ieee80211_sub_if_data
*sdata
;
1089 struct mesh_path
*mpath
;
1091 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1094 mpath
= mesh_path_lookup_by_idx(idx
, sdata
);
1099 memcpy(dst
, mpath
->dst
, ETH_ALEN
);
1100 mpath_set_pinfo(mpath
, next_hop
, pinfo
);
1105 static int ieee80211_get_mesh_config(struct wiphy
*wiphy
,
1106 struct net_device
*dev
,
1107 struct mesh_config
*conf
)
1109 struct ieee80211_sub_if_data
*sdata
;
1110 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1112 memcpy(conf
, &(sdata
->u
.mesh
.mshcfg
), sizeof(struct mesh_config
));
1116 static inline bool _chg_mesh_attr(enum nl80211_meshconf_params parm
, u32 mask
)
1118 return (mask
>> (parm
-1)) & 0x1;
1121 static int copy_mesh_setup(struct ieee80211_if_mesh
*ifmsh
,
1122 const struct mesh_setup
*setup
)
1127 /* allocate information elements */
1131 if (setup
->ie_len
) {
1132 new_ie
= kmemdup(setup
->ie
, setup
->ie_len
,
1137 ifmsh
->ie_len
= setup
->ie_len
;
1141 /* now copy the rest of the setup parameters */
1142 ifmsh
->mesh_id_len
= setup
->mesh_id_len
;
1143 memcpy(ifmsh
->mesh_id
, setup
->mesh_id
, ifmsh
->mesh_id_len
);
1144 ifmsh
->mesh_pp_id
= setup
->path_sel_proto
;
1145 ifmsh
->mesh_pm_id
= setup
->path_metric
;
1146 ifmsh
->security
= IEEE80211_MESH_SEC_NONE
;
1147 if (setup
->is_authenticated
)
1148 ifmsh
->security
|= IEEE80211_MESH_SEC_AUTHED
;
1149 if (setup
->is_secure
)
1150 ifmsh
->security
|= IEEE80211_MESH_SEC_SECURED
;
1155 static int ieee80211_update_mesh_config(struct wiphy
*wiphy
,
1156 struct net_device
*dev
, u32 mask
,
1157 const struct mesh_config
*nconf
)
1159 struct mesh_config
*conf
;
1160 struct ieee80211_sub_if_data
*sdata
;
1161 struct ieee80211_if_mesh
*ifmsh
;
1163 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1164 ifmsh
= &sdata
->u
.mesh
;
1166 /* Set the config options which we are interested in setting */
1167 conf
= &(sdata
->u
.mesh
.mshcfg
);
1168 if (_chg_mesh_attr(NL80211_MESHCONF_RETRY_TIMEOUT
, mask
))
1169 conf
->dot11MeshRetryTimeout
= nconf
->dot11MeshRetryTimeout
;
1170 if (_chg_mesh_attr(NL80211_MESHCONF_CONFIRM_TIMEOUT
, mask
))
1171 conf
->dot11MeshConfirmTimeout
= nconf
->dot11MeshConfirmTimeout
;
1172 if (_chg_mesh_attr(NL80211_MESHCONF_HOLDING_TIMEOUT
, mask
))
1173 conf
->dot11MeshHoldingTimeout
= nconf
->dot11MeshHoldingTimeout
;
1174 if (_chg_mesh_attr(NL80211_MESHCONF_MAX_PEER_LINKS
, mask
))
1175 conf
->dot11MeshMaxPeerLinks
= nconf
->dot11MeshMaxPeerLinks
;
1176 if (_chg_mesh_attr(NL80211_MESHCONF_MAX_RETRIES
, mask
))
1177 conf
->dot11MeshMaxRetries
= nconf
->dot11MeshMaxRetries
;
1178 if (_chg_mesh_attr(NL80211_MESHCONF_TTL
, mask
))
1179 conf
->dot11MeshTTL
= nconf
->dot11MeshTTL
;
1180 if (_chg_mesh_attr(NL80211_MESHCONF_ELEMENT_TTL
, mask
))
1181 conf
->dot11MeshTTL
= nconf
->element_ttl
;
1182 if (_chg_mesh_attr(NL80211_MESHCONF_AUTO_OPEN_PLINKS
, mask
))
1183 conf
->auto_open_plinks
= nconf
->auto_open_plinks
;
1184 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES
, mask
))
1185 conf
->dot11MeshHWMPmaxPREQretries
=
1186 nconf
->dot11MeshHWMPmaxPREQretries
;
1187 if (_chg_mesh_attr(NL80211_MESHCONF_PATH_REFRESH_TIME
, mask
))
1188 conf
->path_refresh_time
= nconf
->path_refresh_time
;
1189 if (_chg_mesh_attr(NL80211_MESHCONF_MIN_DISCOVERY_TIMEOUT
, mask
))
1190 conf
->min_discovery_timeout
= nconf
->min_discovery_timeout
;
1191 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_ACTIVE_PATH_TIMEOUT
, mask
))
1192 conf
->dot11MeshHWMPactivePathTimeout
=
1193 nconf
->dot11MeshHWMPactivePathTimeout
;
1194 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_PREQ_MIN_INTERVAL
, mask
))
1195 conf
->dot11MeshHWMPpreqMinInterval
=
1196 nconf
->dot11MeshHWMPpreqMinInterval
;
1197 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME
,
1199 conf
->dot11MeshHWMPnetDiameterTraversalTime
=
1200 nconf
->dot11MeshHWMPnetDiameterTraversalTime
;
1201 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_ROOTMODE
, mask
)) {
1202 conf
->dot11MeshHWMPRootMode
= nconf
->dot11MeshHWMPRootMode
;
1203 ieee80211_mesh_root_setup(ifmsh
);
1205 if (_chg_mesh_attr(NL80211_MESHCONF_GATE_ANNOUNCEMENTS
, mask
)) {
1206 /* our current gate announcement implementation rides on root
1207 * announcements, so require this ifmsh to also be a root node
1209 if (nconf
->dot11MeshGateAnnouncementProtocol
&&
1210 !conf
->dot11MeshHWMPRootMode
) {
1211 conf
->dot11MeshHWMPRootMode
= 1;
1212 ieee80211_mesh_root_setup(ifmsh
);
1214 conf
->dot11MeshGateAnnouncementProtocol
=
1215 nconf
->dot11MeshGateAnnouncementProtocol
;
1217 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_RANN_INTERVAL
, mask
)) {
1218 conf
->dot11MeshHWMPRannInterval
=
1219 nconf
->dot11MeshHWMPRannInterval
;
1224 static int ieee80211_join_mesh(struct wiphy
*wiphy
, struct net_device
*dev
,
1225 const struct mesh_config
*conf
,
1226 const struct mesh_setup
*setup
)
1228 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1229 struct ieee80211_if_mesh
*ifmsh
= &sdata
->u
.mesh
;
1232 memcpy(&ifmsh
->mshcfg
, conf
, sizeof(struct mesh_config
));
1233 err
= copy_mesh_setup(ifmsh
, setup
);
1236 ieee80211_start_mesh(sdata
);
1241 static int ieee80211_leave_mesh(struct wiphy
*wiphy
, struct net_device
*dev
)
1243 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1245 ieee80211_stop_mesh(sdata
);
1251 static int ieee80211_change_bss(struct wiphy
*wiphy
,
1252 struct net_device
*dev
,
1253 struct bss_parameters
*params
)
1255 struct ieee80211_sub_if_data
*sdata
;
1258 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1260 if (params
->use_cts_prot
>= 0) {
1261 sdata
->vif
.bss_conf
.use_cts_prot
= params
->use_cts_prot
;
1262 changed
|= BSS_CHANGED_ERP_CTS_PROT
;
1264 if (params
->use_short_preamble
>= 0) {
1265 sdata
->vif
.bss_conf
.use_short_preamble
=
1266 params
->use_short_preamble
;
1267 changed
|= BSS_CHANGED_ERP_PREAMBLE
;
1270 if (!sdata
->vif
.bss_conf
.use_short_slot
&&
1271 sdata
->local
->hw
.conf
.channel
->band
== IEEE80211_BAND_5GHZ
) {
1272 sdata
->vif
.bss_conf
.use_short_slot
= true;
1273 changed
|= BSS_CHANGED_ERP_SLOT
;
1276 if (params
->use_short_slot_time
>= 0) {
1277 sdata
->vif
.bss_conf
.use_short_slot
=
1278 params
->use_short_slot_time
;
1279 changed
|= BSS_CHANGED_ERP_SLOT
;
1282 if (params
->basic_rates
) {
1285 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
1286 struct ieee80211_supported_band
*sband
=
1287 wiphy
->bands
[local
->oper_channel
->band
];
1289 for (i
= 0; i
< params
->basic_rates_len
; i
++) {
1290 int rate
= (params
->basic_rates
[i
] & 0x7f) * 5;
1291 for (j
= 0; j
< sband
->n_bitrates
; j
++) {
1292 if (sband
->bitrates
[j
].bitrate
== rate
)
1296 sdata
->vif
.bss_conf
.basic_rates
= rates
;
1297 changed
|= BSS_CHANGED_BASIC_RATES
;
1300 if (params
->ap_isolate
>= 0) {
1301 if (params
->ap_isolate
)
1302 sdata
->flags
|= IEEE80211_SDATA_DONT_BRIDGE_PACKETS
;
1304 sdata
->flags
&= ~IEEE80211_SDATA_DONT_BRIDGE_PACKETS
;
1307 if (params
->ht_opmode
>= 0) {
1308 sdata
->vif
.bss_conf
.ht_operation_mode
=
1309 (u16
) params
->ht_opmode
;
1310 changed
|= BSS_CHANGED_HT
;
1313 ieee80211_bss_info_change_notify(sdata
, changed
);
1318 static int ieee80211_set_txq_params(struct wiphy
*wiphy
,
1319 struct net_device
*dev
,
1320 struct ieee80211_txq_params
*params
)
1322 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
1323 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1324 struct ieee80211_tx_queue_params p
;
1326 if (!local
->ops
->conf_tx
)
1329 memset(&p
, 0, sizeof(p
));
1330 p
.aifs
= params
->aifs
;
1331 p
.cw_max
= params
->cwmax
;
1332 p
.cw_min
= params
->cwmin
;
1333 p
.txop
= params
->txop
;
1336 * Setting tx queue params disables u-apsd because it's only
1337 * called in master mode.
1341 if (params
->queue
>= local
->hw
.queues
)
1344 sdata
->tx_conf
[params
->queue
] = p
;
1345 if (drv_conf_tx(local
, sdata
, params
->queue
, &p
)) {
1346 wiphy_debug(local
->hw
.wiphy
,
1347 "failed to set TX queue parameters for queue %d\n",
1355 static int ieee80211_set_channel(struct wiphy
*wiphy
,
1356 struct net_device
*netdev
,
1357 struct ieee80211_channel
*chan
,
1358 enum nl80211_channel_type channel_type
)
1360 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
1361 struct ieee80211_sub_if_data
*sdata
= NULL
;
1362 struct ieee80211_channel
*old_oper
;
1363 enum nl80211_channel_type old_oper_type
;
1364 enum nl80211_channel_type old_vif_oper_type
= NL80211_CHAN_NO_HT
;
1367 sdata
= IEEE80211_DEV_TO_SUB_IF(netdev
);
1369 switch (ieee80211_get_channel_mode(local
, NULL
)) {
1370 case CHAN_MODE_HOPPING
:
1372 case CHAN_MODE_FIXED
:
1373 if (local
->oper_channel
!= chan
)
1375 if (!sdata
&& local
->_oper_channel_type
== channel_type
)
1378 case CHAN_MODE_UNDEFINED
:
1383 old_vif_oper_type
= sdata
->vif
.bss_conf
.channel_type
;
1384 old_oper_type
= local
->_oper_channel_type
;
1386 if (!ieee80211_set_channel_type(local
, sdata
, channel_type
))
1389 old_oper
= local
->oper_channel
;
1390 local
->oper_channel
= chan
;
1392 /* Update driver if changes were actually made. */
1393 if ((old_oper
!= local
->oper_channel
) ||
1394 (old_oper_type
!= local
->_oper_channel_type
))
1395 ieee80211_hw_config(local
, IEEE80211_CONF_CHANGE_CHANNEL
);
1397 if ((sdata
&& sdata
->vif
.type
!= NL80211_IFTYPE_MONITOR
) &&
1398 old_vif_oper_type
!= sdata
->vif
.bss_conf
.channel_type
)
1399 ieee80211_bss_info_change_notify(sdata
, BSS_CHANGED_HT
);
1405 static int ieee80211_suspend(struct wiphy
*wiphy
,
1406 struct cfg80211_wowlan
*wowlan
)
1408 return __ieee80211_suspend(wiphy_priv(wiphy
), wowlan
);
1411 static int ieee80211_resume(struct wiphy
*wiphy
)
1413 return __ieee80211_resume(wiphy_priv(wiphy
));
1416 #define ieee80211_suspend NULL
1417 #define ieee80211_resume NULL
1420 static int ieee80211_scan(struct wiphy
*wiphy
,
1421 struct net_device
*dev
,
1422 struct cfg80211_scan_request
*req
)
1424 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1426 switch (ieee80211_vif_type_p2p(&sdata
->vif
)) {
1427 case NL80211_IFTYPE_STATION
:
1428 case NL80211_IFTYPE_ADHOC
:
1429 case NL80211_IFTYPE_MESH_POINT
:
1430 case NL80211_IFTYPE_P2P_CLIENT
:
1432 case NL80211_IFTYPE_P2P_GO
:
1433 if (sdata
->local
->ops
->hw_scan
)
1436 * FIXME: implement NoA while scanning in software,
1437 * for now fall through to allow scanning only when
1438 * beaconing hasn't been configured yet
1440 case NL80211_IFTYPE_AP
:
1441 if (sdata
->u
.ap
.beacon
)
1448 return ieee80211_request_scan(sdata
, req
);
1452 ieee80211_sched_scan_start(struct wiphy
*wiphy
,
1453 struct net_device
*dev
,
1454 struct cfg80211_sched_scan_request
*req
)
1456 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1458 if (!sdata
->local
->ops
->sched_scan_start
)
1461 return ieee80211_request_sched_scan_start(sdata
, req
);
1465 ieee80211_sched_scan_stop(struct wiphy
*wiphy
, struct net_device
*dev
)
1467 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1469 if (!sdata
->local
->ops
->sched_scan_stop
)
1472 return ieee80211_request_sched_scan_stop(sdata
);
1475 static int ieee80211_auth(struct wiphy
*wiphy
, struct net_device
*dev
,
1476 struct cfg80211_auth_request
*req
)
1478 return ieee80211_mgd_auth(IEEE80211_DEV_TO_SUB_IF(dev
), req
);
1481 static int ieee80211_assoc(struct wiphy
*wiphy
, struct net_device
*dev
,
1482 struct cfg80211_assoc_request
*req
)
1484 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
1485 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1487 switch (ieee80211_get_channel_mode(local
, sdata
)) {
1488 case CHAN_MODE_HOPPING
:
1490 case CHAN_MODE_FIXED
:
1491 if (local
->oper_channel
== req
->bss
->channel
)
1494 case CHAN_MODE_UNDEFINED
:
1498 return ieee80211_mgd_assoc(IEEE80211_DEV_TO_SUB_IF(dev
), req
);
1501 static int ieee80211_deauth(struct wiphy
*wiphy
, struct net_device
*dev
,
1502 struct cfg80211_deauth_request
*req
,
1505 return ieee80211_mgd_deauth(IEEE80211_DEV_TO_SUB_IF(dev
),
1509 static int ieee80211_disassoc(struct wiphy
*wiphy
, struct net_device
*dev
,
1510 struct cfg80211_disassoc_request
*req
,
1513 return ieee80211_mgd_disassoc(IEEE80211_DEV_TO_SUB_IF(dev
),
1517 static int ieee80211_join_ibss(struct wiphy
*wiphy
, struct net_device
*dev
,
1518 struct cfg80211_ibss_params
*params
)
1520 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
1521 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1523 switch (ieee80211_get_channel_mode(local
, sdata
)) {
1524 case CHAN_MODE_HOPPING
:
1526 case CHAN_MODE_FIXED
:
1527 if (!params
->channel_fixed
)
1529 if (local
->oper_channel
== params
->channel
)
1532 case CHAN_MODE_UNDEFINED
:
1536 return ieee80211_ibss_join(sdata
, params
);
1539 static int ieee80211_leave_ibss(struct wiphy
*wiphy
, struct net_device
*dev
)
1541 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1543 return ieee80211_ibss_leave(sdata
);
1546 static int ieee80211_set_wiphy_params(struct wiphy
*wiphy
, u32 changed
)
1548 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
1551 if (changed
& WIPHY_PARAM_FRAG_THRESHOLD
) {
1552 err
= drv_set_frag_threshold(local
, wiphy
->frag_threshold
);
1558 if (changed
& WIPHY_PARAM_COVERAGE_CLASS
) {
1559 err
= drv_set_coverage_class(local
, wiphy
->coverage_class
);
1565 if (changed
& WIPHY_PARAM_RTS_THRESHOLD
) {
1566 err
= drv_set_rts_threshold(local
, wiphy
->rts_threshold
);
1572 if (changed
& WIPHY_PARAM_RETRY_SHORT
)
1573 local
->hw
.conf
.short_frame_max_tx_count
= wiphy
->retry_short
;
1574 if (changed
& WIPHY_PARAM_RETRY_LONG
)
1575 local
->hw
.conf
.long_frame_max_tx_count
= wiphy
->retry_long
;
1577 (WIPHY_PARAM_RETRY_SHORT
| WIPHY_PARAM_RETRY_LONG
))
1578 ieee80211_hw_config(local
, IEEE80211_CONF_CHANGE_RETRY_LIMITS
);
1583 static int ieee80211_set_tx_power(struct wiphy
*wiphy
,
1584 enum nl80211_tx_power_setting type
, int mbm
)
1586 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
1587 struct ieee80211_channel
*chan
= local
->hw
.conf
.channel
;
1591 case NL80211_TX_POWER_AUTOMATIC
:
1592 local
->user_power_level
= -1;
1594 case NL80211_TX_POWER_LIMITED
:
1595 if (mbm
< 0 || (mbm
% 100))
1597 local
->user_power_level
= MBM_TO_DBM(mbm
);
1599 case NL80211_TX_POWER_FIXED
:
1600 if (mbm
< 0 || (mbm
% 100))
1602 /* TODO: move to cfg80211 when it knows the channel */
1603 if (MBM_TO_DBM(mbm
) > chan
->max_power
)
1605 local
->user_power_level
= MBM_TO_DBM(mbm
);
1609 ieee80211_hw_config(local
, changes
);
1614 static int ieee80211_get_tx_power(struct wiphy
*wiphy
, int *dbm
)
1616 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
1618 *dbm
= local
->hw
.conf
.power_level
;
1623 static int ieee80211_set_wds_peer(struct wiphy
*wiphy
, struct net_device
*dev
,
1626 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1628 memcpy(&sdata
->u
.wds
.remote_addr
, addr
, ETH_ALEN
);
1633 static void ieee80211_rfkill_poll(struct wiphy
*wiphy
)
1635 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
1637 drv_rfkill_poll(local
);
1640 #ifdef CONFIG_NL80211_TESTMODE
1641 static int ieee80211_testmode_cmd(struct wiphy
*wiphy
, void *data
, int len
)
1643 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
1645 if (!local
->ops
->testmode_cmd
)
1648 return local
->ops
->testmode_cmd(&local
->hw
, data
, len
);
1651 static int ieee80211_testmode_dump(struct wiphy
*wiphy
,
1652 struct sk_buff
*skb
,
1653 struct netlink_callback
*cb
,
1654 void *data
, int len
)
1656 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
1658 if (!local
->ops
->testmode_dump
)
1661 return local
->ops
->testmode_dump(&local
->hw
, skb
, cb
, data
, len
);
1665 int __ieee80211_request_smps(struct ieee80211_sub_if_data
*sdata
,
1666 enum ieee80211_smps_mode smps_mode
)
1669 enum ieee80211_smps_mode old_req
;
1672 lockdep_assert_held(&sdata
->u
.mgd
.mtx
);
1674 old_req
= sdata
->u
.mgd
.req_smps
;
1675 sdata
->u
.mgd
.req_smps
= smps_mode
;
1677 if (old_req
== smps_mode
&&
1678 smps_mode
!= IEEE80211_SMPS_AUTOMATIC
)
1682 * If not associated, or current association is not an HT
1683 * association, there's no need to send an action frame.
1685 if (!sdata
->u
.mgd
.associated
||
1686 sdata
->vif
.bss_conf
.channel_type
== NL80211_CHAN_NO_HT
) {
1687 mutex_lock(&sdata
->local
->iflist_mtx
);
1688 ieee80211_recalc_smps(sdata
->local
);
1689 mutex_unlock(&sdata
->local
->iflist_mtx
);
1693 ap
= sdata
->u
.mgd
.associated
->bssid
;
1695 if (smps_mode
== IEEE80211_SMPS_AUTOMATIC
) {
1696 if (sdata
->u
.mgd
.powersave
)
1697 smps_mode
= IEEE80211_SMPS_DYNAMIC
;
1699 smps_mode
= IEEE80211_SMPS_OFF
;
1702 /* send SM PS frame to AP */
1703 err
= ieee80211_send_smps_action(sdata
, smps_mode
,
1706 sdata
->u
.mgd
.req_smps
= old_req
;
1711 static int ieee80211_set_power_mgmt(struct wiphy
*wiphy
, struct net_device
*dev
,
1712 bool enabled
, int timeout
)
1714 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1715 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
1717 if (sdata
->vif
.type
!= NL80211_IFTYPE_STATION
)
1720 if (!(local
->hw
.flags
& IEEE80211_HW_SUPPORTS_PS
))
1723 if (enabled
== sdata
->u
.mgd
.powersave
&&
1724 timeout
== local
->dynamic_ps_forced_timeout
)
1727 sdata
->u
.mgd
.powersave
= enabled
;
1728 local
->dynamic_ps_forced_timeout
= timeout
;
1730 /* no change, but if automatic follow powersave */
1731 mutex_lock(&sdata
->u
.mgd
.mtx
);
1732 __ieee80211_request_smps(sdata
, sdata
->u
.mgd
.req_smps
);
1733 mutex_unlock(&sdata
->u
.mgd
.mtx
);
1735 if (local
->hw
.flags
& IEEE80211_HW_SUPPORTS_DYNAMIC_PS
)
1736 ieee80211_hw_config(local
, IEEE80211_CONF_CHANGE_PS
);
1738 ieee80211_recalc_ps(local
, -1);
1743 static int ieee80211_set_cqm_rssi_config(struct wiphy
*wiphy
,
1744 struct net_device
*dev
,
1745 s32 rssi_thold
, u32 rssi_hyst
)
1747 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1748 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
1749 struct ieee80211_vif
*vif
= &sdata
->vif
;
1750 struct ieee80211_bss_conf
*bss_conf
= &vif
->bss_conf
;
1752 if (rssi_thold
== bss_conf
->cqm_rssi_thold
&&
1753 rssi_hyst
== bss_conf
->cqm_rssi_hyst
)
1756 bss_conf
->cqm_rssi_thold
= rssi_thold
;
1757 bss_conf
->cqm_rssi_hyst
= rssi_hyst
;
1759 if (!(local
->hw
.flags
& IEEE80211_HW_SUPPORTS_CQM_RSSI
)) {
1760 if (sdata
->vif
.type
!= NL80211_IFTYPE_STATION
)
1765 /* tell the driver upon association, unless already associated */
1766 if (sdata
->u
.mgd
.associated
)
1767 ieee80211_bss_info_change_notify(sdata
, BSS_CHANGED_CQM
);
1772 static int ieee80211_set_bitrate_mask(struct wiphy
*wiphy
,
1773 struct net_device
*dev
,
1775 const struct cfg80211_bitrate_mask
*mask
)
1777 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1778 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
1781 if (local
->hw
.flags
& IEEE80211_HW_HAS_RATE_CONTROL
) {
1782 ret
= drv_set_bitrate_mask(local
, sdata
, mask
);
1787 for (i
= 0; i
< IEEE80211_NUM_BANDS
; i
++)
1788 sdata
->rc_rateidx_mask
[i
] = mask
->control
[i
].legacy
;
1793 static int ieee80211_remain_on_channel_hw(struct ieee80211_local
*local
,
1794 struct net_device
*dev
,
1795 struct ieee80211_channel
*chan
,
1796 enum nl80211_channel_type chantype
,
1797 unsigned int duration
, u64
*cookie
)
1802 lockdep_assert_held(&local
->mtx
);
1804 if (local
->hw_roc_cookie
)
1806 /* must be nonzero */
1807 random_cookie
= random32() | 1;
1809 *cookie
= random_cookie
;
1810 local
->hw_roc_dev
= dev
;
1811 local
->hw_roc_cookie
= random_cookie
;
1812 local
->hw_roc_channel
= chan
;
1813 local
->hw_roc_channel_type
= chantype
;
1814 local
->hw_roc_duration
= duration
;
1815 ret
= drv_remain_on_channel(local
, chan
, chantype
, duration
);
1817 local
->hw_roc_channel
= NULL
;
1818 local
->hw_roc_cookie
= 0;
1824 static int ieee80211_remain_on_channel(struct wiphy
*wiphy
,
1825 struct net_device
*dev
,
1826 struct ieee80211_channel
*chan
,
1827 enum nl80211_channel_type channel_type
,
1828 unsigned int duration
,
1831 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1832 struct ieee80211_local
*local
= sdata
->local
;
1834 if (local
->ops
->remain_on_channel
) {
1837 mutex_lock(&local
->mtx
);
1838 ret
= ieee80211_remain_on_channel_hw(local
, dev
,
1841 local
->hw_roc_for_tx
= false;
1842 mutex_unlock(&local
->mtx
);
1847 return ieee80211_wk_remain_on_channel(sdata
, chan
, channel_type
,
1851 static int ieee80211_cancel_remain_on_channel_hw(struct ieee80211_local
*local
,
1856 lockdep_assert_held(&local
->mtx
);
1858 if (local
->hw_roc_cookie
!= cookie
)
1861 ret
= drv_cancel_remain_on_channel(local
);
1865 local
->hw_roc_cookie
= 0;
1866 local
->hw_roc_channel
= NULL
;
1868 ieee80211_recalc_idle(local
);
1873 static int ieee80211_cancel_remain_on_channel(struct wiphy
*wiphy
,
1874 struct net_device
*dev
,
1877 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1878 struct ieee80211_local
*local
= sdata
->local
;
1880 if (local
->ops
->cancel_remain_on_channel
) {
1883 mutex_lock(&local
->mtx
);
1884 ret
= ieee80211_cancel_remain_on_channel_hw(local
, cookie
);
1885 mutex_unlock(&local
->mtx
);
1890 return ieee80211_wk_cancel_remain_on_channel(sdata
, cookie
);
1893 static enum work_done_result
1894 ieee80211_offchan_tx_done(struct ieee80211_work
*wk
, struct sk_buff
*skb
)
1897 * Use the data embedded in the work struct for reporting
1898 * here so if the driver mangled the SKB before dropping
1899 * it (which is the only way we really should get here)
1900 * then we don't report mangled data.
1902 * If there was no wait time, then by the time we get here
1903 * the driver will likely not have reported the status yet,
1904 * so in that case userspace will have to deal with it.
1907 if (wk
->offchan_tx
.wait
&& !wk
->offchan_tx
.status
)
1908 cfg80211_mgmt_tx_status(wk
->sdata
->dev
,
1909 (unsigned long) wk
->offchan_tx
.frame
,
1910 wk
->ie
, wk
->ie_len
, false, GFP_KERNEL
);
1912 return WORK_DONE_DESTROY
;
1915 static int ieee80211_mgmt_tx(struct wiphy
*wiphy
, struct net_device
*dev
,
1916 struct ieee80211_channel
*chan
, bool offchan
,
1917 enum nl80211_channel_type channel_type
,
1918 bool channel_type_valid
, unsigned int wait
,
1919 const u8
*buf
, size_t len
, bool no_cck
,
1922 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1923 struct ieee80211_local
*local
= sdata
->local
;
1924 struct sk_buff
*skb
;
1925 struct sta_info
*sta
;
1926 struct ieee80211_work
*wk
;
1927 const struct ieee80211_mgmt
*mgmt
= (void *)buf
;
1928 u32 flags
= IEEE80211_TX_INTFL_NL80211_FRAME_TX
|
1929 IEEE80211_TX_CTL_REQ_TX_STATUS
;
1930 bool is_offchan
= false;
1932 /* Check that we are on the requested channel for transmission */
1933 if (chan
!= local
->tmp_channel
&&
1934 chan
!= local
->oper_channel
)
1936 if (channel_type_valid
&&
1937 (channel_type
!= local
->tmp_channel_type
&&
1938 channel_type
!= local
->_oper_channel_type
))
1941 if (chan
== local
->hw_roc_channel
) {
1942 /* TODO: check channel type? */
1944 flags
|= IEEE80211_TX_CTL_TX_OFFCHAN
;
1948 flags
|= IEEE80211_TX_CTL_NO_CCK_RATE
;
1950 if (is_offchan
&& !offchan
)
1953 switch (sdata
->vif
.type
) {
1954 case NL80211_IFTYPE_ADHOC
:
1955 case NL80211_IFTYPE_AP
:
1956 case NL80211_IFTYPE_AP_VLAN
:
1957 case NL80211_IFTYPE_P2P_GO
:
1958 case NL80211_IFTYPE_MESH_POINT
:
1959 if (!ieee80211_is_action(mgmt
->frame_control
) ||
1960 mgmt
->u
.action
.category
== WLAN_CATEGORY_PUBLIC
)
1963 sta
= sta_info_get(sdata
, mgmt
->da
);
1968 case NL80211_IFTYPE_STATION
:
1969 case NL80211_IFTYPE_P2P_CLIENT
:
1975 skb
= dev_alloc_skb(local
->hw
.extra_tx_headroom
+ len
);
1978 skb_reserve(skb
, local
->hw
.extra_tx_headroom
);
1980 memcpy(skb_put(skb
, len
), buf
, len
);
1982 IEEE80211_SKB_CB(skb
)->flags
= flags
;
1984 skb
->dev
= sdata
->dev
;
1986 *cookie
= (unsigned long) skb
;
1988 if (is_offchan
&& local
->ops
->remain_on_channel
) {
1989 unsigned int duration
;
1992 mutex_lock(&local
->mtx
);
1994 * If the duration is zero, then the driver
1995 * wouldn't actually do anything. Set it to
1998 * TODO: cancel the off-channel operation
1999 * when we get the SKB's TX status and
2000 * the wait time was zero before.
2005 ret
= ieee80211_remain_on_channel_hw(local
, dev
, chan
,
2010 mutex_unlock(&local
->mtx
);
2014 local
->hw_roc_for_tx
= true;
2015 local
->hw_roc_duration
= wait
;
2018 * queue up frame for transmission after
2019 * ieee80211_ready_on_channel call
2022 /* modify cookie to prevent API mismatches */
2024 IEEE80211_SKB_CB(skb
)->flags
|= IEEE80211_TX_CTL_TX_OFFCHAN
;
2025 local
->hw_roc_skb
= skb
;
2026 local
->hw_roc_skb_for_status
= skb
;
2027 mutex_unlock(&local
->mtx
);
2033 * Can transmit right away if the channel was the
2034 * right one and there's no wait involved... If a
2035 * wait is involved, we might otherwise not be on
2036 * the right channel for long enough!
2038 if (!is_offchan
&& !wait
&& !sdata
->vif
.bss_conf
.idle
) {
2039 ieee80211_tx_skb(sdata
, skb
);
2043 wk
= kzalloc(sizeof(*wk
) + len
, GFP_KERNEL
);
2049 wk
->type
= IEEE80211_WORK_OFFCHANNEL_TX
;
2051 wk
->chan_type
= channel_type
;
2053 wk
->done
= ieee80211_offchan_tx_done
;
2054 wk
->offchan_tx
.frame
= skb
;
2055 wk
->offchan_tx
.wait
= wait
;
2057 memcpy(wk
->ie
, buf
, len
);
2059 ieee80211_add_work(wk
);
2063 static int ieee80211_mgmt_tx_cancel_wait(struct wiphy
*wiphy
,
2064 struct net_device
*dev
,
2067 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
2068 struct ieee80211_local
*local
= sdata
->local
;
2069 struct ieee80211_work
*wk
;
2072 mutex_lock(&local
->mtx
);
2074 if (local
->ops
->cancel_remain_on_channel
) {
2076 ret
= ieee80211_cancel_remain_on_channel_hw(local
, cookie
);
2079 kfree_skb(local
->hw_roc_skb
);
2080 local
->hw_roc_skb
= NULL
;
2081 local
->hw_roc_skb_for_status
= NULL
;
2084 mutex_unlock(&local
->mtx
);
2089 list_for_each_entry(wk
, &local
->work_list
, list
) {
2090 if (wk
->sdata
!= sdata
)
2093 if (wk
->type
!= IEEE80211_WORK_OFFCHANNEL_TX
)
2096 if (cookie
!= (unsigned long) wk
->offchan_tx
.frame
)
2099 wk
->timeout
= jiffies
;
2101 ieee80211_queue_work(&local
->hw
, &local
->work_work
);
2105 mutex_unlock(&local
->mtx
);
2110 static void ieee80211_mgmt_frame_register(struct wiphy
*wiphy
,
2111 struct net_device
*dev
,
2112 u16 frame_type
, bool reg
)
2114 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
2116 if (frame_type
!= (IEEE80211_FTYPE_MGMT
| IEEE80211_STYPE_PROBE_REQ
))
2120 local
->probe_req_reg
++;
2122 local
->probe_req_reg
--;
2124 ieee80211_queue_work(&local
->hw
, &local
->reconfig_filter
);
2127 static int ieee80211_set_antenna(struct wiphy
*wiphy
, u32 tx_ant
, u32 rx_ant
)
2129 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
2134 return drv_set_antenna(local
, tx_ant
, rx_ant
);
2137 static int ieee80211_get_antenna(struct wiphy
*wiphy
, u32
*tx_ant
, u32
*rx_ant
)
2139 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
2141 return drv_get_antenna(local
, tx_ant
, rx_ant
);
2144 static int ieee80211_set_ringparam(struct wiphy
*wiphy
, u32 tx
, u32 rx
)
2146 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
2148 return drv_set_ringparam(local
, tx
, rx
);
2151 static void ieee80211_get_ringparam(struct wiphy
*wiphy
,
2152 u32
*tx
, u32
*tx_max
, u32
*rx
, u32
*rx_max
)
2154 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
2156 drv_get_ringparam(local
, tx
, tx_max
, rx
, rx_max
);
2159 static int ieee80211_set_rekey_data(struct wiphy
*wiphy
,
2160 struct net_device
*dev
,
2161 struct cfg80211_gtk_rekey_data
*data
)
2163 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
2164 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
2166 if (!local
->ops
->set_rekey_data
)
2169 drv_set_rekey_data(local
, sdata
, data
);
2174 static void ieee80211_tdls_add_ext_capab(struct sk_buff
*skb
)
2176 u8
*pos
= (void *)skb_put(skb
, 7);
2178 *pos
++ = WLAN_EID_EXT_CAPABILITY
;
2179 *pos
++ = 5; /* len */
2184 *pos
++ = WLAN_EXT_CAPA5_TDLS_ENABLED
;
2187 static u16
ieee80211_get_tdls_sta_capab(struct ieee80211_sub_if_data
*sdata
)
2189 struct ieee80211_local
*local
= sdata
->local
;
2193 if (local
->oper_channel
->band
!= IEEE80211_BAND_2GHZ
)
2196 if (!(local
->hw
.flags
& IEEE80211_HW_2GHZ_SHORT_SLOT_INCAPABLE
))
2197 capab
|= WLAN_CAPABILITY_SHORT_SLOT_TIME
;
2198 if (!(local
->hw
.flags
& IEEE80211_HW_2GHZ_SHORT_PREAMBLE_INCAPABLE
))
2199 capab
|= WLAN_CAPABILITY_SHORT_PREAMBLE
;
2204 static void ieee80211_tdls_add_link_ie(struct sk_buff
*skb
, u8
*src_addr
,
2205 u8
*peer
, u8
*bssid
)
2207 struct ieee80211_tdls_lnkie
*lnkid
;
2209 lnkid
= (void *)skb_put(skb
, sizeof(struct ieee80211_tdls_lnkie
));
2211 lnkid
->ie_type
= WLAN_EID_LINK_ID
;
2212 lnkid
->ie_len
= sizeof(struct ieee80211_tdls_lnkie
) - 2;
2214 memcpy(lnkid
->bssid
, bssid
, ETH_ALEN
);
2215 memcpy(lnkid
->init_sta
, src_addr
, ETH_ALEN
);
2216 memcpy(lnkid
->resp_sta
, peer
, ETH_ALEN
);
2220 ieee80211_prep_tdls_encap_data(struct wiphy
*wiphy
, struct net_device
*dev
,
2221 u8
*peer
, u8 action_code
, u8 dialog_token
,
2222 u16 status_code
, struct sk_buff
*skb
)
2224 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
2225 struct ieee80211_tdls_data
*tf
;
2227 tf
= (void *)skb_put(skb
, offsetof(struct ieee80211_tdls_data
, u
));
2229 memcpy(tf
->da
, peer
, ETH_ALEN
);
2230 memcpy(tf
->sa
, sdata
->vif
.addr
, ETH_ALEN
);
2231 tf
->ether_type
= cpu_to_be16(ETH_P_TDLS
);
2232 tf
->payload_type
= WLAN_TDLS_SNAP_RFTYPE
;
2234 switch (action_code
) {
2235 case WLAN_TDLS_SETUP_REQUEST
:
2236 tf
->category
= WLAN_CATEGORY_TDLS
;
2237 tf
->action_code
= WLAN_TDLS_SETUP_REQUEST
;
2239 skb_put(skb
, sizeof(tf
->u
.setup_req
));
2240 tf
->u
.setup_req
.dialog_token
= dialog_token
;
2241 tf
->u
.setup_req
.capability
=
2242 cpu_to_le16(ieee80211_get_tdls_sta_capab(sdata
));
2244 ieee80211_add_srates_ie(&sdata
->vif
, skb
);
2245 ieee80211_add_ext_srates_ie(&sdata
->vif
, skb
);
2246 ieee80211_tdls_add_ext_capab(skb
);
2248 case WLAN_TDLS_SETUP_RESPONSE
:
2249 tf
->category
= WLAN_CATEGORY_TDLS
;
2250 tf
->action_code
= WLAN_TDLS_SETUP_RESPONSE
;
2252 skb_put(skb
, sizeof(tf
->u
.setup_resp
));
2253 tf
->u
.setup_resp
.status_code
= cpu_to_le16(status_code
);
2254 tf
->u
.setup_resp
.dialog_token
= dialog_token
;
2255 tf
->u
.setup_resp
.capability
=
2256 cpu_to_le16(ieee80211_get_tdls_sta_capab(sdata
));
2258 ieee80211_add_srates_ie(&sdata
->vif
, skb
);
2259 ieee80211_add_ext_srates_ie(&sdata
->vif
, skb
);
2260 ieee80211_tdls_add_ext_capab(skb
);
2262 case WLAN_TDLS_SETUP_CONFIRM
:
2263 tf
->category
= WLAN_CATEGORY_TDLS
;
2264 tf
->action_code
= WLAN_TDLS_SETUP_CONFIRM
;
2266 skb_put(skb
, sizeof(tf
->u
.setup_cfm
));
2267 tf
->u
.setup_cfm
.status_code
= cpu_to_le16(status_code
);
2268 tf
->u
.setup_cfm
.dialog_token
= dialog_token
;
2270 case WLAN_TDLS_TEARDOWN
:
2271 tf
->category
= WLAN_CATEGORY_TDLS
;
2272 tf
->action_code
= WLAN_TDLS_TEARDOWN
;
2274 skb_put(skb
, sizeof(tf
->u
.teardown
));
2275 tf
->u
.teardown
.reason_code
= cpu_to_le16(status_code
);
2277 case WLAN_TDLS_DISCOVERY_REQUEST
:
2278 tf
->category
= WLAN_CATEGORY_TDLS
;
2279 tf
->action_code
= WLAN_TDLS_DISCOVERY_REQUEST
;
2281 skb_put(skb
, sizeof(tf
->u
.discover_req
));
2282 tf
->u
.discover_req
.dialog_token
= dialog_token
;
2292 ieee80211_prep_tdls_direct(struct wiphy
*wiphy
, struct net_device
*dev
,
2293 u8
*peer
, u8 action_code
, u8 dialog_token
,
2294 u16 status_code
, struct sk_buff
*skb
)
2296 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
2297 struct ieee80211_mgmt
*mgmt
;
2299 mgmt
= (void *)skb_put(skb
, 24);
2300 memset(mgmt
, 0, 24);
2301 memcpy(mgmt
->da
, peer
, ETH_ALEN
);
2302 memcpy(mgmt
->sa
, sdata
->vif
.addr
, ETH_ALEN
);
2303 memcpy(mgmt
->bssid
, sdata
->u
.mgd
.bssid
, ETH_ALEN
);
2305 mgmt
->frame_control
= cpu_to_le16(IEEE80211_FTYPE_MGMT
|
2306 IEEE80211_STYPE_ACTION
);
2308 switch (action_code
) {
2309 case WLAN_PUB_ACTION_TDLS_DISCOVER_RES
:
2310 skb_put(skb
, 1 + sizeof(mgmt
->u
.action
.u
.tdls_discover_resp
));
2311 mgmt
->u
.action
.category
= WLAN_CATEGORY_PUBLIC
;
2312 mgmt
->u
.action
.u
.tdls_discover_resp
.action_code
=
2313 WLAN_PUB_ACTION_TDLS_DISCOVER_RES
;
2314 mgmt
->u
.action
.u
.tdls_discover_resp
.dialog_token
=
2316 mgmt
->u
.action
.u
.tdls_discover_resp
.capability
=
2317 cpu_to_le16(ieee80211_get_tdls_sta_capab(sdata
));
2319 ieee80211_add_srates_ie(&sdata
->vif
, skb
);
2320 ieee80211_add_ext_srates_ie(&sdata
->vif
, skb
);
2321 ieee80211_tdls_add_ext_capab(skb
);
2330 static int ieee80211_tdls_mgmt(struct wiphy
*wiphy
, struct net_device
*dev
,
2331 u8
*peer
, u8 action_code
, u8 dialog_token
,
2332 u16 status_code
, const u8
*extra_ies
,
2333 size_t extra_ies_len
)
2335 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
2336 struct ieee80211_local
*local
= sdata
->local
;
2337 struct ieee80211_tx_info
*info
;
2338 struct sk_buff
*skb
= NULL
;
2342 if (!(wiphy
->flags
& WIPHY_FLAG_SUPPORTS_TDLS
))
2345 /* make sure we are in managed mode, and associated */
2346 if (sdata
->vif
.type
!= NL80211_IFTYPE_STATION
||
2347 !sdata
->u
.mgd
.associated
)
2350 #ifdef CONFIG_MAC80211_VERBOSE_TDLS_DEBUG
2351 printk(KERN_DEBUG
"TDLS mgmt action %d peer %pM\n", action_code
, peer
);
2354 skb
= dev_alloc_skb(local
->hw
.extra_tx_headroom
+
2355 max(sizeof(struct ieee80211_mgmt
),
2356 sizeof(struct ieee80211_tdls_data
)) +
2357 50 + /* supported rates */
2360 sizeof(struct ieee80211_tdls_lnkie
));
2364 info
= IEEE80211_SKB_CB(skb
);
2365 skb_reserve(skb
, local
->hw
.extra_tx_headroom
);
2367 switch (action_code
) {
2368 case WLAN_TDLS_SETUP_REQUEST
:
2369 case WLAN_TDLS_SETUP_RESPONSE
:
2370 case WLAN_TDLS_SETUP_CONFIRM
:
2371 case WLAN_TDLS_TEARDOWN
:
2372 case WLAN_TDLS_DISCOVERY_REQUEST
:
2373 ret
= ieee80211_prep_tdls_encap_data(wiphy
, dev
, peer
,
2374 action_code
, dialog_token
,
2376 send_direct
= false;
2378 case WLAN_PUB_ACTION_TDLS_DISCOVER_RES
:
2379 ret
= ieee80211_prep_tdls_direct(wiphy
, dev
, peer
, action_code
,
2380 dialog_token
, status_code
,
2393 memcpy(skb_put(skb
, extra_ies_len
), extra_ies
, extra_ies_len
);
2395 /* the TDLS link IE is always added last */
2396 switch (action_code
) {
2397 case WLAN_TDLS_SETUP_REQUEST
:
2398 case WLAN_TDLS_SETUP_CONFIRM
:
2399 case WLAN_TDLS_TEARDOWN
:
2400 case WLAN_TDLS_DISCOVERY_REQUEST
:
2401 /* we are the initiator */
2402 ieee80211_tdls_add_link_ie(skb
, sdata
->vif
.addr
, peer
,
2403 sdata
->u
.mgd
.bssid
);
2405 case WLAN_TDLS_SETUP_RESPONSE
:
2406 case WLAN_PUB_ACTION_TDLS_DISCOVER_RES
:
2407 /* we are the responder */
2408 ieee80211_tdls_add_link_ie(skb
, peer
, sdata
->vif
.addr
,
2409 sdata
->u
.mgd
.bssid
);
2417 ieee80211_tx_skb(sdata
, skb
);
2422 * According to 802.11z: Setup req/resp are sent in AC_BK, otherwise
2423 * we should default to AC_VI.
2425 switch (action_code
) {
2426 case WLAN_TDLS_SETUP_REQUEST
:
2427 case WLAN_TDLS_SETUP_RESPONSE
:
2428 skb_set_queue_mapping(skb
, IEEE80211_AC_BK
);
2432 skb_set_queue_mapping(skb
, IEEE80211_AC_VI
);
2437 /* disable bottom halves when entering the Tx path */
2439 ret
= ieee80211_subif_start_xmit(skb
, dev
);
2449 static int ieee80211_tdls_oper(struct wiphy
*wiphy
, struct net_device
*dev
,
2450 u8
*peer
, enum nl80211_tdls_operation oper
)
2452 struct sta_info
*sta
;
2453 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
2455 if (!(wiphy
->flags
& WIPHY_FLAG_SUPPORTS_TDLS
))
2458 if (sdata
->vif
.type
!= NL80211_IFTYPE_STATION
)
2461 #ifdef CONFIG_MAC80211_VERBOSE_TDLS_DEBUG
2462 printk(KERN_DEBUG
"TDLS oper %d peer %pM\n", oper
, peer
);
2466 case NL80211_TDLS_ENABLE_LINK
:
2468 sta
= sta_info_get(sdata
, peer
);
2474 set_sta_flag(sta
, WLAN_STA_TDLS_PEER_AUTH
);
2477 case NL80211_TDLS_DISABLE_LINK
:
2478 return sta_info_destroy_addr(sdata
, peer
);
2479 case NL80211_TDLS_TEARDOWN
:
2480 case NL80211_TDLS_SETUP
:
2481 case NL80211_TDLS_DISCOVERY_REQ
:
2482 /* We don't support in-driver setup/teardown/discovery */
2491 struct cfg80211_ops mac80211_config_ops
= {
2492 .add_virtual_intf
= ieee80211_add_iface
,
2493 .del_virtual_intf
= ieee80211_del_iface
,
2494 .change_virtual_intf
= ieee80211_change_iface
,
2495 .add_key
= ieee80211_add_key
,
2496 .del_key
= ieee80211_del_key
,
2497 .get_key
= ieee80211_get_key
,
2498 .set_default_key
= ieee80211_config_default_key
,
2499 .set_default_mgmt_key
= ieee80211_config_default_mgmt_key
,
2500 .add_beacon
= ieee80211_add_beacon
,
2501 .set_beacon
= ieee80211_set_beacon
,
2502 .del_beacon
= ieee80211_del_beacon
,
2503 .add_station
= ieee80211_add_station
,
2504 .del_station
= ieee80211_del_station
,
2505 .change_station
= ieee80211_change_station
,
2506 .get_station
= ieee80211_get_station
,
2507 .dump_station
= ieee80211_dump_station
,
2508 .dump_survey
= ieee80211_dump_survey
,
2509 #ifdef CONFIG_MAC80211_MESH
2510 .add_mpath
= ieee80211_add_mpath
,
2511 .del_mpath
= ieee80211_del_mpath
,
2512 .change_mpath
= ieee80211_change_mpath
,
2513 .get_mpath
= ieee80211_get_mpath
,
2514 .dump_mpath
= ieee80211_dump_mpath
,
2515 .update_mesh_config
= ieee80211_update_mesh_config
,
2516 .get_mesh_config
= ieee80211_get_mesh_config
,
2517 .join_mesh
= ieee80211_join_mesh
,
2518 .leave_mesh
= ieee80211_leave_mesh
,
2520 .change_bss
= ieee80211_change_bss
,
2521 .set_txq_params
= ieee80211_set_txq_params
,
2522 .set_channel
= ieee80211_set_channel
,
2523 .suspend
= ieee80211_suspend
,
2524 .resume
= ieee80211_resume
,
2525 .scan
= ieee80211_scan
,
2526 .sched_scan_start
= ieee80211_sched_scan_start
,
2527 .sched_scan_stop
= ieee80211_sched_scan_stop
,
2528 .auth
= ieee80211_auth
,
2529 .assoc
= ieee80211_assoc
,
2530 .deauth
= ieee80211_deauth
,
2531 .disassoc
= ieee80211_disassoc
,
2532 .join_ibss
= ieee80211_join_ibss
,
2533 .leave_ibss
= ieee80211_leave_ibss
,
2534 .set_wiphy_params
= ieee80211_set_wiphy_params
,
2535 .set_tx_power
= ieee80211_set_tx_power
,
2536 .get_tx_power
= ieee80211_get_tx_power
,
2537 .set_wds_peer
= ieee80211_set_wds_peer
,
2538 .rfkill_poll
= ieee80211_rfkill_poll
,
2539 CFG80211_TESTMODE_CMD(ieee80211_testmode_cmd
)
2540 CFG80211_TESTMODE_DUMP(ieee80211_testmode_dump
)
2541 .set_power_mgmt
= ieee80211_set_power_mgmt
,
2542 .set_bitrate_mask
= ieee80211_set_bitrate_mask
,
2543 .remain_on_channel
= ieee80211_remain_on_channel
,
2544 .cancel_remain_on_channel
= ieee80211_cancel_remain_on_channel
,
2545 .mgmt_tx
= ieee80211_mgmt_tx
,
2546 .mgmt_tx_cancel_wait
= ieee80211_mgmt_tx_cancel_wait
,
2547 .set_cqm_rssi_config
= ieee80211_set_cqm_rssi_config
,
2548 .mgmt_frame_register
= ieee80211_mgmt_frame_register
,
2549 .set_antenna
= ieee80211_set_antenna
,
2550 .get_antenna
= ieee80211_get_antenna
,
2551 .set_ringparam
= ieee80211_set_ringparam
,
2552 .get_ringparam
= ieee80211_get_ringparam
,
2553 .set_rekey_data
= ieee80211_set_rekey_data
,
2554 .tdls_oper
= ieee80211_tdls_oper
,
2555 .tdls_mgmt
= ieee80211_tdls_mgmt
,