2 * mac80211 configuration hooks for cfg80211
4 * Copyright 2006, 2007 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 <net/net_namespace.h>
13 #include <linux/rcupdate.h>
14 #include <net/cfg80211.h>
15 #include "ieee80211_i.h"
16 #include "driver-ops.h"
21 static bool nl80211_type_check(enum nl80211_iftype type
)
24 case NL80211_IFTYPE_ADHOC
:
25 case NL80211_IFTYPE_STATION
:
26 case NL80211_IFTYPE_MONITOR
:
27 #ifdef CONFIG_MAC80211_MESH
28 case NL80211_IFTYPE_MESH_POINT
:
30 case NL80211_IFTYPE_AP
:
31 case NL80211_IFTYPE_AP_VLAN
:
32 case NL80211_IFTYPE_WDS
:
39 static bool nl80211_params_check(enum nl80211_iftype type
,
40 struct vif_params
*params
)
42 if (!nl80211_type_check(type
))
48 static int ieee80211_add_iface(struct wiphy
*wiphy
, char *name
,
49 enum nl80211_iftype type
, u32
*flags
,
50 struct vif_params
*params
)
52 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
53 struct net_device
*dev
;
54 struct ieee80211_sub_if_data
*sdata
;
57 if (!nl80211_params_check(type
, params
))
60 err
= ieee80211_if_add(local
, name
, &dev
, type
, params
);
61 if (err
|| type
!= NL80211_IFTYPE_MONITOR
|| !flags
)
64 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
65 sdata
->u
.mntr_flags
= *flags
;
69 static int ieee80211_del_iface(struct wiphy
*wiphy
, struct net_device
*dev
)
71 ieee80211_if_remove(IEEE80211_DEV_TO_SUB_IF(dev
));
76 static int ieee80211_change_iface(struct wiphy
*wiphy
,
77 struct net_device
*dev
,
78 enum nl80211_iftype type
, u32
*flags
,
79 struct vif_params
*params
)
81 struct ieee80211_sub_if_data
*sdata
;
84 if (netif_running(dev
))
87 if (!nl80211_params_check(type
, params
))
90 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
92 ret
= ieee80211_if_change_type(sdata
, type
);
96 if (ieee80211_vif_is_mesh(&sdata
->vif
) && params
->mesh_id_len
)
97 ieee80211_sdata_set_mesh_id(sdata
,
101 if (sdata
->vif
.type
!= NL80211_IFTYPE_MONITOR
|| !flags
)
104 if (type
== NL80211_IFTYPE_AP_VLAN
&&
105 params
&& params
->use_4addr
== 0)
106 rcu_assign_pointer(sdata
->u
.vlan
.sta
, NULL
);
107 else if (type
== NL80211_IFTYPE_STATION
&&
108 params
&& params
->use_4addr
>= 0)
109 sdata
->u
.mgd
.use_4addr
= params
->use_4addr
;
111 sdata
->u
.mntr_flags
= *flags
;
115 static int ieee80211_add_key(struct wiphy
*wiphy
, struct net_device
*dev
,
116 u8 key_idx
, const u8
*mac_addr
,
117 struct key_params
*params
)
119 struct ieee80211_sub_if_data
*sdata
;
120 struct sta_info
*sta
= NULL
;
121 enum ieee80211_key_alg alg
;
122 struct ieee80211_key
*key
;
125 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
127 switch (params
->cipher
) {
128 case WLAN_CIPHER_SUITE_WEP40
:
129 case WLAN_CIPHER_SUITE_WEP104
:
132 case WLAN_CIPHER_SUITE_TKIP
:
135 case WLAN_CIPHER_SUITE_CCMP
:
138 case WLAN_CIPHER_SUITE_AES_CMAC
:
145 key
= ieee80211_key_alloc(alg
, key_idx
, params
->key_len
, params
->key
,
146 params
->seq_len
, params
->seq
);
153 sta
= sta_info_get(sdata
->local
, mac_addr
);
155 ieee80211_key_free(key
);
161 ieee80211_key_link(key
, sdata
, sta
);
170 static int ieee80211_del_key(struct wiphy
*wiphy
, struct net_device
*dev
,
171 u8 key_idx
, const u8
*mac_addr
)
173 struct ieee80211_sub_if_data
*sdata
;
174 struct sta_info
*sta
;
177 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
184 sta
= sta_info_get(sdata
->local
, mac_addr
);
189 ieee80211_key_free(sta
->key
);
197 if (!sdata
->keys
[key_idx
]) {
202 ieee80211_key_free(sdata
->keys
[key_idx
]);
203 WARN_ON(sdata
->keys
[key_idx
]);
212 static int ieee80211_get_key(struct wiphy
*wiphy
, struct net_device
*dev
,
213 u8 key_idx
, const u8
*mac_addr
, void *cookie
,
214 void (*callback
)(void *cookie
,
215 struct key_params
*params
))
217 struct ieee80211_sub_if_data
*sdata
;
218 struct sta_info
*sta
= NULL
;
220 struct key_params params
;
221 struct ieee80211_key
*key
;
226 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
231 sta
= sta_info_get(sdata
->local
, mac_addr
);
237 key
= sdata
->keys
[key_idx
];
242 memset(¶ms
, 0, sizeof(params
));
244 switch (key
->conf
.alg
) {
246 params
.cipher
= WLAN_CIPHER_SUITE_TKIP
;
248 iv32
= key
->u
.tkip
.tx
.iv32
;
249 iv16
= key
->u
.tkip
.tx
.iv16
;
251 if (key
->flags
& KEY_FLAG_UPLOADED_TO_HARDWARE
)
252 drv_get_tkip_seq(sdata
->local
,
253 key
->conf
.hw_key_idx
,
256 seq
[0] = iv16
& 0xff;
257 seq
[1] = (iv16
>> 8) & 0xff;
258 seq
[2] = iv32
& 0xff;
259 seq
[3] = (iv32
>> 8) & 0xff;
260 seq
[4] = (iv32
>> 16) & 0xff;
261 seq
[5] = (iv32
>> 24) & 0xff;
266 params
.cipher
= WLAN_CIPHER_SUITE_CCMP
;
267 seq
[0] = key
->u
.ccmp
.tx_pn
[5];
268 seq
[1] = key
->u
.ccmp
.tx_pn
[4];
269 seq
[2] = key
->u
.ccmp
.tx_pn
[3];
270 seq
[3] = key
->u
.ccmp
.tx_pn
[2];
271 seq
[4] = key
->u
.ccmp
.tx_pn
[1];
272 seq
[5] = key
->u
.ccmp
.tx_pn
[0];
277 if (key
->conf
.keylen
== 5)
278 params
.cipher
= WLAN_CIPHER_SUITE_WEP40
;
280 params
.cipher
= WLAN_CIPHER_SUITE_WEP104
;
283 params
.cipher
= WLAN_CIPHER_SUITE_AES_CMAC
;
284 seq
[0] = key
->u
.aes_cmac
.tx_pn
[5];
285 seq
[1] = key
->u
.aes_cmac
.tx_pn
[4];
286 seq
[2] = key
->u
.aes_cmac
.tx_pn
[3];
287 seq
[3] = key
->u
.aes_cmac
.tx_pn
[2];
288 seq
[4] = key
->u
.aes_cmac
.tx_pn
[1];
289 seq
[5] = key
->u
.aes_cmac
.tx_pn
[0];
295 params
.key
= key
->conf
.key
;
296 params
.key_len
= key
->conf
.keylen
;
298 callback(cookie
, ¶ms
);
306 static int ieee80211_config_default_key(struct wiphy
*wiphy
,
307 struct net_device
*dev
,
310 struct ieee80211_sub_if_data
*sdata
;
314 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
315 ieee80211_set_default_key(sdata
, key_idx
);
322 static int ieee80211_config_default_mgmt_key(struct wiphy
*wiphy
,
323 struct net_device
*dev
,
326 struct ieee80211_sub_if_data
*sdata
;
330 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
331 ieee80211_set_default_mgmt_key(sdata
, key_idx
);
338 static void sta_set_sinfo(struct sta_info
*sta
, struct station_info
*sinfo
)
340 struct ieee80211_sub_if_data
*sdata
= sta
->sdata
;
342 sinfo
->generation
= sdata
->local
->sta_generation
;
344 sinfo
->filled
= STATION_INFO_INACTIVE_TIME
|
345 STATION_INFO_RX_BYTES
|
346 STATION_INFO_TX_BYTES
|
347 STATION_INFO_RX_PACKETS
|
348 STATION_INFO_TX_PACKETS
|
349 STATION_INFO_TX_BITRATE
;
351 sinfo
->inactive_time
= jiffies_to_msecs(jiffies
- sta
->last_rx
);
352 sinfo
->rx_bytes
= sta
->rx_bytes
;
353 sinfo
->tx_bytes
= sta
->tx_bytes
;
354 sinfo
->rx_packets
= sta
->rx_packets
;
355 sinfo
->tx_packets
= sta
->tx_packets
;
357 if (sta
->local
->hw
.flags
& IEEE80211_HW_SIGNAL_DBM
) {
358 sinfo
->filled
|= STATION_INFO_SIGNAL
;
359 sinfo
->signal
= (s8
)sta
->last_signal
;
362 sinfo
->txrate
.flags
= 0;
363 if (sta
->last_tx_rate
.flags
& IEEE80211_TX_RC_MCS
)
364 sinfo
->txrate
.flags
|= RATE_INFO_FLAGS_MCS
;
365 if (sta
->last_tx_rate
.flags
& IEEE80211_TX_RC_40_MHZ_WIDTH
)
366 sinfo
->txrate
.flags
|= RATE_INFO_FLAGS_40_MHZ_WIDTH
;
367 if (sta
->last_tx_rate
.flags
& IEEE80211_TX_RC_SHORT_GI
)
368 sinfo
->txrate
.flags
|= RATE_INFO_FLAGS_SHORT_GI
;
370 if (!(sta
->last_tx_rate
.flags
& IEEE80211_TX_RC_MCS
)) {
371 struct ieee80211_supported_band
*sband
;
372 sband
= sta
->local
->hw
.wiphy
->bands
[
373 sta
->local
->hw
.conf
.channel
->band
];
374 sinfo
->txrate
.legacy
=
375 sband
->bitrates
[sta
->last_tx_rate
.idx
].bitrate
;
377 sinfo
->txrate
.mcs
= sta
->last_tx_rate
.idx
;
379 if (ieee80211_vif_is_mesh(&sdata
->vif
)) {
380 #ifdef CONFIG_MAC80211_MESH
381 sinfo
->filled
|= STATION_INFO_LLID
|
383 STATION_INFO_PLINK_STATE
;
385 sinfo
->llid
= le16_to_cpu(sta
->llid
);
386 sinfo
->plid
= le16_to_cpu(sta
->plid
);
387 sinfo
->plink_state
= sta
->plink_state
;
393 static int ieee80211_dump_station(struct wiphy
*wiphy
, struct net_device
*dev
,
394 int idx
, u8
*mac
, struct station_info
*sinfo
)
396 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
397 struct sta_info
*sta
;
402 sta
= sta_info_get_by_idx(sdata
, idx
);
405 memcpy(mac
, sta
->sta
.addr
, ETH_ALEN
);
406 sta_set_sinfo(sta
, sinfo
);
414 static int ieee80211_get_station(struct wiphy
*wiphy
, struct net_device
*dev
,
415 u8
*mac
, struct station_info
*sinfo
)
417 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
418 struct sta_info
*sta
;
423 /* XXX: verify sta->dev == dev */
425 sta
= sta_info_get(local
, mac
);
428 sta_set_sinfo(sta
, sinfo
);
437 * This handles both adding a beacon and setting new beacon info
439 static int ieee80211_config_beacon(struct ieee80211_sub_if_data
*sdata
,
440 struct beacon_parameters
*params
)
442 struct beacon_data
*new, *old
;
443 int new_head_len
, new_tail_len
;
447 old
= sdata
->u
.ap
.beacon
;
449 /* head must not be zero-length */
450 if (params
->head
&& !params
->head_len
)
454 * This is a kludge. beacon interval should really be part
455 * of the beacon information.
457 if (params
->interval
&&
458 (sdata
->vif
.bss_conf
.beacon_int
!= params
->interval
)) {
459 sdata
->vif
.bss_conf
.beacon_int
= params
->interval
;
460 ieee80211_bss_info_change_notify(sdata
,
461 BSS_CHANGED_BEACON_INT
);
464 /* Need to have a beacon head if we don't have one yet */
465 if (!params
->head
&& !old
)
468 /* sorry, no way to start beaconing without dtim period */
469 if (!params
->dtim_period
&& !old
)
472 /* new or old head? */
474 new_head_len
= params
->head_len
;
476 new_head_len
= old
->head_len
;
478 /* new or old tail? */
479 if (params
->tail
|| !old
)
480 /* params->tail_len will be zero for !params->tail */
481 new_tail_len
= params
->tail_len
;
483 new_tail_len
= old
->tail_len
;
485 size
= sizeof(*new) + new_head_len
+ new_tail_len
;
487 new = kzalloc(size
, GFP_KERNEL
);
491 /* start filling the new info now */
493 /* new or old dtim period? */
494 if (params
->dtim_period
)
495 new->dtim_period
= params
->dtim_period
;
497 new->dtim_period
= old
->dtim_period
;
500 * pointers go into the block we allocated,
501 * memory is | beacon_data | head | tail |
503 new->head
= ((u8
*) new) + sizeof(*new);
504 new->tail
= new->head
+ new_head_len
;
505 new->head_len
= new_head_len
;
506 new->tail_len
= new_tail_len
;
510 memcpy(new->head
, params
->head
, new_head_len
);
512 memcpy(new->head
, old
->head
, new_head_len
);
514 /* copy in optional tail */
516 memcpy(new->tail
, params
->tail
, new_tail_len
);
519 memcpy(new->tail
, old
->tail
, new_tail_len
);
521 rcu_assign_pointer(sdata
->u
.ap
.beacon
, new);
527 ieee80211_bss_info_change_notify(sdata
, BSS_CHANGED_BEACON_ENABLED
|
532 static int ieee80211_add_beacon(struct wiphy
*wiphy
, struct net_device
*dev
,
533 struct beacon_parameters
*params
)
535 struct ieee80211_sub_if_data
*sdata
;
536 struct beacon_data
*old
;
538 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
540 old
= sdata
->u
.ap
.beacon
;
545 return ieee80211_config_beacon(sdata
, params
);
548 static int ieee80211_set_beacon(struct wiphy
*wiphy
, struct net_device
*dev
,
549 struct beacon_parameters
*params
)
551 struct ieee80211_sub_if_data
*sdata
;
552 struct beacon_data
*old
;
554 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
556 old
= sdata
->u
.ap
.beacon
;
561 return ieee80211_config_beacon(sdata
, params
);
564 static int ieee80211_del_beacon(struct wiphy
*wiphy
, struct net_device
*dev
)
566 struct ieee80211_sub_if_data
*sdata
;
567 struct beacon_data
*old
;
569 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
571 old
= sdata
->u
.ap
.beacon
;
576 rcu_assign_pointer(sdata
->u
.ap
.beacon
, NULL
);
580 ieee80211_bss_info_change_notify(sdata
, BSS_CHANGED_BEACON_ENABLED
);
584 /* Layer 2 Update frame (802.2 Type 1 LLC XID Update response) */
585 struct iapp_layer2_update
{
586 u8 da
[ETH_ALEN
]; /* broadcast */
587 u8 sa
[ETH_ALEN
]; /* STA addr */
593 } __attribute__ ((packed
));
595 static void ieee80211_send_layer2_update(struct sta_info
*sta
)
597 struct iapp_layer2_update
*msg
;
600 /* Send Level 2 Update Frame to update forwarding tables in layer 2
603 skb
= dev_alloc_skb(sizeof(*msg
));
606 msg
= (struct iapp_layer2_update
*)skb_put(skb
, sizeof(*msg
));
608 /* 802.2 Type 1 Logical Link Control (LLC) Exchange Identifier (XID)
609 * Update response frame; IEEE Std 802.2-1998, 5.4.1.2.1 */
611 memset(msg
->da
, 0xff, ETH_ALEN
);
612 memcpy(msg
->sa
, sta
->sta
.addr
, ETH_ALEN
);
615 msg
->ssap
= 0x01; /* NULL LSAP, CR Bit: Response */
616 msg
->control
= 0xaf; /* XID response lsb.1111F101.
617 * F=0 (no poll command; unsolicited frame) */
618 msg
->xid_info
[0] = 0x81; /* XID format identifier */
619 msg
->xid_info
[1] = 1; /* LLC types/classes: Type 1 LLC */
620 msg
->xid_info
[2] = 0; /* XID sender's receive window size (RW) */
622 skb
->dev
= sta
->sdata
->dev
;
623 skb
->protocol
= eth_type_trans(skb
, sta
->sdata
->dev
);
624 memset(skb
->cb
, 0, sizeof(skb
->cb
));
628 static void sta_apply_parameters(struct ieee80211_local
*local
,
629 struct sta_info
*sta
,
630 struct station_parameters
*params
)
634 struct ieee80211_supported_band
*sband
;
635 struct ieee80211_sub_if_data
*sdata
= sta
->sdata
;
638 sband
= local
->hw
.wiphy
->bands
[local
->oper_channel
->band
];
640 spin_lock_bh(&sta
->lock
);
641 mask
= params
->sta_flags_mask
;
642 set
= params
->sta_flags_set
;
644 if (mask
& BIT(NL80211_STA_FLAG_AUTHORIZED
)) {
645 sta
->flags
&= ~WLAN_STA_AUTHORIZED
;
646 if (set
& BIT(NL80211_STA_FLAG_AUTHORIZED
))
647 sta
->flags
|= WLAN_STA_AUTHORIZED
;
650 if (mask
& BIT(NL80211_STA_FLAG_SHORT_PREAMBLE
)) {
651 sta
->flags
&= ~WLAN_STA_SHORT_PREAMBLE
;
652 if (set
& BIT(NL80211_STA_FLAG_SHORT_PREAMBLE
))
653 sta
->flags
|= WLAN_STA_SHORT_PREAMBLE
;
656 if (mask
& BIT(NL80211_STA_FLAG_WME
)) {
657 sta
->flags
&= ~WLAN_STA_WME
;
658 if (set
& BIT(NL80211_STA_FLAG_WME
))
659 sta
->flags
|= WLAN_STA_WME
;
662 if (mask
& BIT(NL80211_STA_FLAG_MFP
)) {
663 sta
->flags
&= ~WLAN_STA_MFP
;
664 if (set
& BIT(NL80211_STA_FLAG_MFP
))
665 sta
->flags
|= WLAN_STA_MFP
;
667 spin_unlock_bh(&sta
->lock
);
670 * cfg80211 validates this (1-2007) and allows setting the AID
671 * only when creating a new station entry
674 sta
->sta
.aid
= params
->aid
;
677 * FIXME: updating the following information is racy when this
678 * function is called from ieee80211_change_station().
679 * However, all this information should be static so
680 * maybe we should just reject attemps to change it.
683 if (params
->listen_interval
>= 0)
684 sta
->listen_interval
= params
->listen_interval
;
686 if (params
->supported_rates
) {
689 for (i
= 0; i
< params
->supported_rates_len
; i
++) {
690 int rate
= (params
->supported_rates
[i
] & 0x7f) * 5;
691 for (j
= 0; j
< sband
->n_bitrates
; j
++) {
692 if (sband
->bitrates
[j
].bitrate
== rate
)
696 sta
->sta
.supp_rates
[local
->oper_channel
->band
] = rates
;
700 ieee80211_ht_cap_ie_to_sta_ht_cap(sband
,
704 if (ieee80211_vif_is_mesh(&sdata
->vif
) && params
->plink_action
) {
705 switch (params
->plink_action
) {
706 case PLINK_ACTION_OPEN
:
707 mesh_plink_open(sta
);
709 case PLINK_ACTION_BLOCK
:
710 mesh_plink_block(sta
);
716 static int ieee80211_add_station(struct wiphy
*wiphy
, struct net_device
*dev
,
717 u8
*mac
, struct station_parameters
*params
)
719 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
720 struct sta_info
*sta
;
721 struct ieee80211_sub_if_data
*sdata
;
726 sdata
= IEEE80211_DEV_TO_SUB_IF(params
->vlan
);
728 if (sdata
->vif
.type
!= NL80211_IFTYPE_AP_VLAN
&&
729 sdata
->vif
.type
!= NL80211_IFTYPE_AP
)
732 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
734 if (compare_ether_addr(mac
, dev
->dev_addr
) == 0)
737 if (is_multicast_ether_addr(mac
))
740 sta
= sta_info_alloc(sdata
, mac
, GFP_KERNEL
);
744 sta
->flags
= WLAN_STA_AUTH
| WLAN_STA_ASSOC
;
746 sta_apply_parameters(local
, sta
, params
);
748 rate_control_rate_init(sta
);
750 layer2_update
= sdata
->vif
.type
== NL80211_IFTYPE_AP_VLAN
||
751 sdata
->vif
.type
== NL80211_IFTYPE_AP
;
755 err
= sta_info_insert(sta
);
762 ieee80211_send_layer2_update(sta
);
769 static int ieee80211_del_station(struct wiphy
*wiphy
, struct net_device
*dev
,
772 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
773 struct ieee80211_sub_if_data
*sdata
;
774 struct sta_info
*sta
;
776 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
781 /* XXX: get sta belonging to dev */
782 sta
= sta_info_get(local
, mac
);
788 sta_info_unlink(&sta
);
791 sta_info_destroy(sta
);
793 sta_info_flush(local
, sdata
);
798 static int ieee80211_change_station(struct wiphy
*wiphy
,
799 struct net_device
*dev
,
801 struct station_parameters
*params
)
803 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
804 struct sta_info
*sta
;
805 struct ieee80211_sub_if_data
*vlansdata
;
809 /* XXX: get sta belonging to dev */
810 sta
= sta_info_get(local
, mac
);
816 if (params
->vlan
&& params
->vlan
!= sta
->sdata
->dev
) {
817 vlansdata
= IEEE80211_DEV_TO_SUB_IF(params
->vlan
);
819 if (vlansdata
->vif
.type
!= NL80211_IFTYPE_AP_VLAN
&&
820 vlansdata
->vif
.type
!= NL80211_IFTYPE_AP
) {
825 if (params
->vlan
->ieee80211_ptr
->use_4addr
) {
826 if (vlansdata
->u
.vlan
.sta
) {
831 rcu_assign_pointer(vlansdata
->u
.vlan
.sta
, sta
);
834 sta
->sdata
= vlansdata
;
835 ieee80211_send_layer2_update(sta
);
838 sta_apply_parameters(local
, sta
, params
);
845 #ifdef CONFIG_MAC80211_MESH
846 static int ieee80211_add_mpath(struct wiphy
*wiphy
, struct net_device
*dev
,
847 u8
*dst
, u8
*next_hop
)
849 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
850 struct ieee80211_sub_if_data
*sdata
;
851 struct mesh_path
*mpath
;
852 struct sta_info
*sta
;
855 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
858 sta
= sta_info_get(local
, next_hop
);
864 err
= mesh_path_add(dst
, sdata
);
870 mpath
= mesh_path_lookup(dst
, sdata
);
875 mesh_path_fix_nexthop(mpath
, sta
);
881 static int ieee80211_del_mpath(struct wiphy
*wiphy
, struct net_device
*dev
,
884 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
887 return mesh_path_del(dst
, sdata
);
889 mesh_path_flush(sdata
);
893 static int ieee80211_change_mpath(struct wiphy
*wiphy
,
894 struct net_device
*dev
,
895 u8
*dst
, u8
*next_hop
)
897 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
898 struct ieee80211_sub_if_data
*sdata
;
899 struct mesh_path
*mpath
;
900 struct sta_info
*sta
;
902 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
906 sta
= sta_info_get(local
, next_hop
);
912 mpath
= mesh_path_lookup(dst
, sdata
);
918 mesh_path_fix_nexthop(mpath
, sta
);
924 static void mpath_set_pinfo(struct mesh_path
*mpath
, u8
*next_hop
,
925 struct mpath_info
*pinfo
)
928 memcpy(next_hop
, mpath
->next_hop
->sta
.addr
, ETH_ALEN
);
930 memset(next_hop
, 0, ETH_ALEN
);
932 pinfo
->generation
= mesh_paths_generation
;
934 pinfo
->filled
= MPATH_INFO_FRAME_QLEN
|
938 MPATH_INFO_DISCOVERY_TIMEOUT
|
939 MPATH_INFO_DISCOVERY_RETRIES
|
942 pinfo
->frame_qlen
= mpath
->frame_queue
.qlen
;
943 pinfo
->sn
= mpath
->sn
;
944 pinfo
->metric
= mpath
->metric
;
945 if (time_before(jiffies
, mpath
->exp_time
))
946 pinfo
->exptime
= jiffies_to_msecs(mpath
->exp_time
- jiffies
);
947 pinfo
->discovery_timeout
=
948 jiffies_to_msecs(mpath
->discovery_timeout
);
949 pinfo
->discovery_retries
= mpath
->discovery_retries
;
951 if (mpath
->flags
& MESH_PATH_ACTIVE
)
952 pinfo
->flags
|= NL80211_MPATH_FLAG_ACTIVE
;
953 if (mpath
->flags
& MESH_PATH_RESOLVING
)
954 pinfo
->flags
|= NL80211_MPATH_FLAG_RESOLVING
;
955 if (mpath
->flags
& MESH_PATH_SN_VALID
)
956 pinfo
->flags
|= NL80211_MPATH_FLAG_SN_VALID
;
957 if (mpath
->flags
& MESH_PATH_FIXED
)
958 pinfo
->flags
|= NL80211_MPATH_FLAG_FIXED
;
959 if (mpath
->flags
& MESH_PATH_RESOLVING
)
960 pinfo
->flags
|= NL80211_MPATH_FLAG_RESOLVING
;
962 pinfo
->flags
= mpath
->flags
;
965 static int ieee80211_get_mpath(struct wiphy
*wiphy
, struct net_device
*dev
,
966 u8
*dst
, u8
*next_hop
, struct mpath_info
*pinfo
)
969 struct ieee80211_sub_if_data
*sdata
;
970 struct mesh_path
*mpath
;
972 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
975 mpath
= mesh_path_lookup(dst
, sdata
);
980 memcpy(dst
, mpath
->dst
, ETH_ALEN
);
981 mpath_set_pinfo(mpath
, next_hop
, pinfo
);
986 static int ieee80211_dump_mpath(struct wiphy
*wiphy
, struct net_device
*dev
,
987 int idx
, u8
*dst
, u8
*next_hop
,
988 struct mpath_info
*pinfo
)
990 struct ieee80211_sub_if_data
*sdata
;
991 struct mesh_path
*mpath
;
993 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
996 mpath
= mesh_path_lookup_by_idx(idx
, sdata
);
1001 memcpy(dst
, mpath
->dst
, ETH_ALEN
);
1002 mpath_set_pinfo(mpath
, next_hop
, pinfo
);
1007 static int ieee80211_get_mesh_params(struct wiphy
*wiphy
,
1008 struct net_device
*dev
,
1009 struct mesh_config
*conf
)
1011 struct ieee80211_sub_if_data
*sdata
;
1012 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1014 memcpy(conf
, &(sdata
->u
.mesh
.mshcfg
), sizeof(struct mesh_config
));
1018 static inline bool _chg_mesh_attr(enum nl80211_meshconf_params parm
, u32 mask
)
1020 return (mask
>> (parm
-1)) & 0x1;
1023 static int ieee80211_set_mesh_params(struct wiphy
*wiphy
,
1024 struct net_device
*dev
,
1025 const struct mesh_config
*nconf
, u32 mask
)
1027 struct mesh_config
*conf
;
1028 struct ieee80211_sub_if_data
*sdata
;
1029 struct ieee80211_if_mesh
*ifmsh
;
1031 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1032 ifmsh
= &sdata
->u
.mesh
;
1034 /* Set the config options which we are interested in setting */
1035 conf
= &(sdata
->u
.mesh
.mshcfg
);
1036 if (_chg_mesh_attr(NL80211_MESHCONF_RETRY_TIMEOUT
, mask
))
1037 conf
->dot11MeshRetryTimeout
= nconf
->dot11MeshRetryTimeout
;
1038 if (_chg_mesh_attr(NL80211_MESHCONF_CONFIRM_TIMEOUT
, mask
))
1039 conf
->dot11MeshConfirmTimeout
= nconf
->dot11MeshConfirmTimeout
;
1040 if (_chg_mesh_attr(NL80211_MESHCONF_HOLDING_TIMEOUT
, mask
))
1041 conf
->dot11MeshHoldingTimeout
= nconf
->dot11MeshHoldingTimeout
;
1042 if (_chg_mesh_attr(NL80211_MESHCONF_MAX_PEER_LINKS
, mask
))
1043 conf
->dot11MeshMaxPeerLinks
= nconf
->dot11MeshMaxPeerLinks
;
1044 if (_chg_mesh_attr(NL80211_MESHCONF_MAX_RETRIES
, mask
))
1045 conf
->dot11MeshMaxRetries
= nconf
->dot11MeshMaxRetries
;
1046 if (_chg_mesh_attr(NL80211_MESHCONF_TTL
, mask
))
1047 conf
->dot11MeshTTL
= nconf
->dot11MeshTTL
;
1048 if (_chg_mesh_attr(NL80211_MESHCONF_AUTO_OPEN_PLINKS
, mask
))
1049 conf
->auto_open_plinks
= nconf
->auto_open_plinks
;
1050 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES
, mask
))
1051 conf
->dot11MeshHWMPmaxPREQretries
=
1052 nconf
->dot11MeshHWMPmaxPREQretries
;
1053 if (_chg_mesh_attr(NL80211_MESHCONF_PATH_REFRESH_TIME
, mask
))
1054 conf
->path_refresh_time
= nconf
->path_refresh_time
;
1055 if (_chg_mesh_attr(NL80211_MESHCONF_MIN_DISCOVERY_TIMEOUT
, mask
))
1056 conf
->min_discovery_timeout
= nconf
->min_discovery_timeout
;
1057 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_ACTIVE_PATH_TIMEOUT
, mask
))
1058 conf
->dot11MeshHWMPactivePathTimeout
=
1059 nconf
->dot11MeshHWMPactivePathTimeout
;
1060 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_PREQ_MIN_INTERVAL
, mask
))
1061 conf
->dot11MeshHWMPpreqMinInterval
=
1062 nconf
->dot11MeshHWMPpreqMinInterval
;
1063 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME
,
1065 conf
->dot11MeshHWMPnetDiameterTraversalTime
=
1066 nconf
->dot11MeshHWMPnetDiameterTraversalTime
;
1067 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_ROOTMODE
, mask
)) {
1068 conf
->dot11MeshHWMPRootMode
= nconf
->dot11MeshHWMPRootMode
;
1069 ieee80211_mesh_root_setup(ifmsh
);
1076 static int ieee80211_change_bss(struct wiphy
*wiphy
,
1077 struct net_device
*dev
,
1078 struct bss_parameters
*params
)
1080 struct ieee80211_sub_if_data
*sdata
;
1083 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1085 if (params
->use_cts_prot
>= 0) {
1086 sdata
->vif
.bss_conf
.use_cts_prot
= params
->use_cts_prot
;
1087 changed
|= BSS_CHANGED_ERP_CTS_PROT
;
1089 if (params
->use_short_preamble
>= 0) {
1090 sdata
->vif
.bss_conf
.use_short_preamble
=
1091 params
->use_short_preamble
;
1092 changed
|= BSS_CHANGED_ERP_PREAMBLE
;
1094 if (params
->use_short_slot_time
>= 0) {
1095 sdata
->vif
.bss_conf
.use_short_slot
=
1096 params
->use_short_slot_time
;
1097 changed
|= BSS_CHANGED_ERP_SLOT
;
1100 if (params
->basic_rates
) {
1103 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
1104 struct ieee80211_supported_band
*sband
=
1105 wiphy
->bands
[local
->oper_channel
->band
];
1107 for (i
= 0; i
< params
->basic_rates_len
; i
++) {
1108 int rate
= (params
->basic_rates
[i
] & 0x7f) * 5;
1109 for (j
= 0; j
< sband
->n_bitrates
; j
++) {
1110 if (sband
->bitrates
[j
].bitrate
== rate
)
1114 sdata
->vif
.bss_conf
.basic_rates
= rates
;
1115 changed
|= BSS_CHANGED_BASIC_RATES
;
1118 ieee80211_bss_info_change_notify(sdata
, changed
);
1123 static int ieee80211_set_txq_params(struct wiphy
*wiphy
,
1124 struct ieee80211_txq_params
*params
)
1126 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
1127 struct ieee80211_tx_queue_params p
;
1129 if (!local
->ops
->conf_tx
)
1132 memset(&p
, 0, sizeof(p
));
1133 p
.aifs
= params
->aifs
;
1134 p
.cw_max
= params
->cwmax
;
1135 p
.cw_min
= params
->cwmin
;
1136 p
.txop
= params
->txop
;
1137 if (drv_conf_tx(local
, params
->queue
, &p
)) {
1138 printk(KERN_DEBUG
"%s: failed to set TX queue "
1139 "parameters for queue %d\n",
1140 wiphy_name(local
->hw
.wiphy
), params
->queue
);
1147 static int ieee80211_set_channel(struct wiphy
*wiphy
,
1148 struct ieee80211_channel
*chan
,
1149 enum nl80211_channel_type channel_type
)
1151 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
1153 local
->oper_channel
= chan
;
1154 local
->oper_channel_type
= channel_type
;
1156 return ieee80211_hw_config(local
, IEEE80211_CONF_CHANGE_CHANNEL
);
1160 static int ieee80211_suspend(struct wiphy
*wiphy
)
1162 return __ieee80211_suspend(wiphy_priv(wiphy
));
1165 static int ieee80211_resume(struct wiphy
*wiphy
)
1167 return __ieee80211_resume(wiphy_priv(wiphy
));
1170 #define ieee80211_suspend NULL
1171 #define ieee80211_resume NULL
1174 static int ieee80211_scan(struct wiphy
*wiphy
,
1175 struct net_device
*dev
,
1176 struct cfg80211_scan_request
*req
)
1178 struct ieee80211_sub_if_data
*sdata
;
1180 sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1182 if (sdata
->vif
.type
!= NL80211_IFTYPE_STATION
&&
1183 sdata
->vif
.type
!= NL80211_IFTYPE_ADHOC
&&
1184 sdata
->vif
.type
!= NL80211_IFTYPE_MESH_POINT
&&
1185 (sdata
->vif
.type
!= NL80211_IFTYPE_AP
|| sdata
->u
.ap
.beacon
))
1188 return ieee80211_request_scan(sdata
, req
);
1191 static int ieee80211_auth(struct wiphy
*wiphy
, struct net_device
*dev
,
1192 struct cfg80211_auth_request
*req
)
1194 return ieee80211_mgd_auth(IEEE80211_DEV_TO_SUB_IF(dev
), req
);
1197 static int ieee80211_assoc(struct wiphy
*wiphy
, struct net_device
*dev
,
1198 struct cfg80211_assoc_request
*req
)
1200 return ieee80211_mgd_assoc(IEEE80211_DEV_TO_SUB_IF(dev
), req
);
1203 static int ieee80211_deauth(struct wiphy
*wiphy
, struct net_device
*dev
,
1204 struct cfg80211_deauth_request
*req
,
1207 return ieee80211_mgd_deauth(IEEE80211_DEV_TO_SUB_IF(dev
),
1211 static int ieee80211_disassoc(struct wiphy
*wiphy
, struct net_device
*dev
,
1212 struct cfg80211_disassoc_request
*req
,
1215 return ieee80211_mgd_disassoc(IEEE80211_DEV_TO_SUB_IF(dev
),
1219 static int ieee80211_join_ibss(struct wiphy
*wiphy
, struct net_device
*dev
,
1220 struct cfg80211_ibss_params
*params
)
1222 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1224 return ieee80211_ibss_join(sdata
, params
);
1227 static int ieee80211_leave_ibss(struct wiphy
*wiphy
, struct net_device
*dev
)
1229 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1231 return ieee80211_ibss_leave(sdata
);
1234 static int ieee80211_set_wiphy_params(struct wiphy
*wiphy
, u32 changed
)
1236 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
1239 if (changed
& WIPHY_PARAM_RTS_THRESHOLD
) {
1240 err
= drv_set_rts_threshold(local
, wiphy
->rts_threshold
);
1246 if (changed
& WIPHY_PARAM_RETRY_SHORT
)
1247 local
->hw
.conf
.short_frame_max_tx_count
= wiphy
->retry_short
;
1248 if (changed
& WIPHY_PARAM_RETRY_LONG
)
1249 local
->hw
.conf
.long_frame_max_tx_count
= wiphy
->retry_long
;
1251 (WIPHY_PARAM_RETRY_SHORT
| WIPHY_PARAM_RETRY_LONG
))
1252 ieee80211_hw_config(local
, IEEE80211_CONF_CHANGE_RETRY_LIMITS
);
1257 static int ieee80211_set_tx_power(struct wiphy
*wiphy
,
1258 enum tx_power_setting type
, int dbm
)
1260 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
1261 struct ieee80211_channel
*chan
= local
->hw
.conf
.channel
;
1265 case TX_POWER_AUTOMATIC
:
1266 local
->user_power_level
= -1;
1268 case TX_POWER_LIMITED
:
1271 local
->user_power_level
= dbm
;
1273 case TX_POWER_FIXED
:
1276 /* TODO: move to cfg80211 when it knows the channel */
1277 if (dbm
> chan
->max_power
)
1279 local
->user_power_level
= dbm
;
1283 ieee80211_hw_config(local
, changes
);
1288 static int ieee80211_get_tx_power(struct wiphy
*wiphy
, int *dbm
)
1290 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
1292 *dbm
= local
->hw
.conf
.power_level
;
1297 static int ieee80211_set_wds_peer(struct wiphy
*wiphy
, struct net_device
*dev
,
1300 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1302 memcpy(&sdata
->u
.wds
.remote_addr
, addr
, ETH_ALEN
);
1307 static void ieee80211_rfkill_poll(struct wiphy
*wiphy
)
1309 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
1311 drv_rfkill_poll(local
);
1314 #ifdef CONFIG_NL80211_TESTMODE
1315 static int ieee80211_testmode_cmd(struct wiphy
*wiphy
, void *data
, int len
)
1317 struct ieee80211_local
*local
= wiphy_priv(wiphy
);
1319 if (!local
->ops
->testmode_cmd
)
1322 return local
->ops
->testmode_cmd(&local
->hw
, data
, len
);
1326 static int ieee80211_set_power_mgmt(struct wiphy
*wiphy
, struct net_device
*dev
,
1327 bool enabled
, int timeout
)
1329 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1330 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
1331 struct ieee80211_conf
*conf
= &local
->hw
.conf
;
1333 if (!(local
->hw
.flags
& IEEE80211_HW_SUPPORTS_PS
))
1336 if (enabled
== sdata
->u
.mgd
.powersave
&&
1337 timeout
== conf
->dynamic_ps_timeout
)
1340 sdata
->u
.mgd
.powersave
= enabled
;
1341 conf
->dynamic_ps_timeout
= timeout
;
1343 if (local
->hw
.flags
& IEEE80211_HW_SUPPORTS_DYNAMIC_PS
)
1344 ieee80211_hw_config(local
, IEEE80211_CONF_CHANGE_PS
);
1346 ieee80211_recalc_ps(local
, -1);
1351 static int ieee80211_set_bitrate_mask(struct wiphy
*wiphy
,
1352 struct net_device
*dev
,
1354 const struct cfg80211_bitrate_mask
*mask
)
1356 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1357 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
1358 int i
, err
= -EINVAL
;
1360 struct ieee80211_supported_band
*sband
;
1362 sband
= local
->hw
.wiphy
->bands
[local
->hw
.conf
.channel
->band
];
1364 /* target_rate = -1, rate->fixed = 0 means auto only, so use all rates
1365 * target_rate = X, rate->fixed = 1 means only rate X
1366 * target_rate = X, rate->fixed = 0 means all rates <= X */
1367 sdata
->max_ratectrl_rateidx
= -1;
1368 sdata
->force_unicast_rateidx
= -1;
1371 target_rate
= mask
->fixed
/ 100;
1372 else if (mask
->maxrate
)
1373 target_rate
= mask
->maxrate
/ 100;
1377 for (i
=0; i
< sband
->n_bitrates
; i
++) {
1378 struct ieee80211_rate
*brate
= &sband
->bitrates
[i
];
1379 int this_rate
= brate
->bitrate
;
1381 if (target_rate
== this_rate
) {
1382 sdata
->max_ratectrl_rateidx
= i
;
1384 sdata
->force_unicast_rateidx
= i
;
1393 struct cfg80211_ops mac80211_config_ops
= {
1394 .add_virtual_intf
= ieee80211_add_iface
,
1395 .del_virtual_intf
= ieee80211_del_iface
,
1396 .change_virtual_intf
= ieee80211_change_iface
,
1397 .add_key
= ieee80211_add_key
,
1398 .del_key
= ieee80211_del_key
,
1399 .get_key
= ieee80211_get_key
,
1400 .set_default_key
= ieee80211_config_default_key
,
1401 .set_default_mgmt_key
= ieee80211_config_default_mgmt_key
,
1402 .add_beacon
= ieee80211_add_beacon
,
1403 .set_beacon
= ieee80211_set_beacon
,
1404 .del_beacon
= ieee80211_del_beacon
,
1405 .add_station
= ieee80211_add_station
,
1406 .del_station
= ieee80211_del_station
,
1407 .change_station
= ieee80211_change_station
,
1408 .get_station
= ieee80211_get_station
,
1409 .dump_station
= ieee80211_dump_station
,
1410 #ifdef CONFIG_MAC80211_MESH
1411 .add_mpath
= ieee80211_add_mpath
,
1412 .del_mpath
= ieee80211_del_mpath
,
1413 .change_mpath
= ieee80211_change_mpath
,
1414 .get_mpath
= ieee80211_get_mpath
,
1415 .dump_mpath
= ieee80211_dump_mpath
,
1416 .set_mesh_params
= ieee80211_set_mesh_params
,
1417 .get_mesh_params
= ieee80211_get_mesh_params
,
1419 .change_bss
= ieee80211_change_bss
,
1420 .set_txq_params
= ieee80211_set_txq_params
,
1421 .set_channel
= ieee80211_set_channel
,
1422 .suspend
= ieee80211_suspend
,
1423 .resume
= ieee80211_resume
,
1424 .scan
= ieee80211_scan
,
1425 .auth
= ieee80211_auth
,
1426 .assoc
= ieee80211_assoc
,
1427 .deauth
= ieee80211_deauth
,
1428 .disassoc
= ieee80211_disassoc
,
1429 .join_ibss
= ieee80211_join_ibss
,
1430 .leave_ibss
= ieee80211_leave_ibss
,
1431 .set_wiphy_params
= ieee80211_set_wiphy_params
,
1432 .set_tx_power
= ieee80211_set_tx_power
,
1433 .get_tx_power
= ieee80211_get_tx_power
,
1434 .set_wds_peer
= ieee80211_set_wds_peer
,
1435 .rfkill_poll
= ieee80211_rfkill_poll
,
1436 CFG80211_TESTMODE_CMD(ieee80211_testmode_cmd
)
1437 .set_power_mgmt
= ieee80211_set_power_mgmt
,
1438 .set_bitrate_mask
= ieee80211_set_bitrate_mask
,